From eeb49e587c63aafc2e42f53c7706724b99b4d1a6 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Sat, 11 Jun 2022 17:20:55 +0200 Subject: [PATCH 001/765] Added parameters for optimized prime tower --- resources/definitions/fdmprinter.def.json | 52 ++++++++++++++++------- 1 file changed, 36 insertions(+), 16 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 9e12d7f7e15..ebbf9faac88 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -983,7 +983,7 @@ "description": "Width of a single prime tower line.", "type": "float", "unit": "mm", - "enabled": "resolveOrValue('prime_tower_enable')", + "enabled": "resolveOrValue('prime_tower_mode') != 'none'", "default_value": 0.4, "value": "line_width", "minimum_value": "0.001", @@ -3188,7 +3188,7 @@ "description": "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal.", "type": "float", "unit": "mm/s", - "enabled": "resolveOrValue('prime_tower_enable')", + "enabled": "resolveOrValue('prime_tower_mode') != 'none'", "default_value": 60, "value": "speed_print", "minimum_value": "0.1", @@ -3525,7 +3525,7 @@ "maximum_value_warning": "10000", "default_value": 3000, "value": "acceleration_print", - "enabled": "resolveOrValue('prime_tower_enable') and resolveOrValue('acceleration_enabled')", + "enabled": "resolveOrValue('prime_tower_mode') != 'none' and resolveOrValue('acceleration_enabled')", "settable_per_mesh": false } } @@ -3805,7 +3805,7 @@ "maximum_value_warning": "50", "default_value": 20, "value": "jerk_print", - "enabled": "resolveOrValue('prime_tower_enable') and resolveOrValue('jerk_enabled')", + "enabled": "resolveOrValue('prime_tower_mode') != 'none' and resolveOrValue('jerk_enabled')", "settable_per_mesh": false } } @@ -6112,14 +6112,21 @@ "description": "Settings used for printing with multiple extruders.", "children": { - "prime_tower_enable": + "prime_tower_mode": { - "label": "Enable Prime Tower", + "label": "Prime Tower Mode", "description": "Print a tower next to the print which serves to prime the material after each nozzle switch.", - "type": "bool", + "type": "enum", + "options": + { + "none": "None", + "default": "Default", + "optimized": "Optimized", + "optimized_consistent": "Optimized consistent" + }, + "default_value": "default", "enabled": "extruders_enabled_count > 1", - "default_value": false, - "resolve": "(extruders_enabled_count > 1) and any(extruderValues('prime_tower_enable'))", + "resolve": "(extruders_enabled_count > 1) and any(extruderValues('prime_tower_mode'))", "settable_per_mesh": false, "settable_per_extruder": false }, @@ -6129,7 +6136,7 @@ "description": "The width of the prime tower.", "type": "float", "unit": "mm", - "enabled": "resolveOrValue('prime_tower_enable')", + "enabled": "resolveOrValue('prime_tower_mode') != 'none'", "default_value": 20, "resolve": "max(extruderValues('prime_tower_size'))", "minimum_value": "0", @@ -6148,7 +6155,20 @@ "default_value": 6, "minimum_value": "0", "maximum_value_warning": "(resolveOrValue('prime_tower_size') * 0.5) ** 2 * 3.14159 * resolveOrValue('layer_height') - sum(extruderValues('prime_tower_min_volume')) + prime_tower_min_volume", - "enabled": "resolveOrValue('prime_tower_enable')", + "enabled": "resolveOrValue('prime_tower_mode') != 'none'", + "settable_per_mesh": false, + "settable_per_extruder": true + }, + "prime_tower_max_bridging_distance": + { + "label": "Prime Tower Maximum Bridging Distance", + "description": "The maximum length of the branches which may be printed over the air.", + "unit": "mm", + "type": "float", + "default_value": 5, + "minimum_value": "line_width", + "maximum_value_warning": "10.0", + "enabled": "resolveOrValue('prime_tower_mode') == 'optimized' or resolveOrValue('prime_tower_mode') == 'optimized_consistent'", "settable_per_mesh": false, "settable_per_extruder": true }, @@ -6158,7 +6178,7 @@ "description": "The x coordinate of the position of the prime tower.", "type": "float", "unit": "mm", - "enabled": "resolveOrValue('prime_tower_enable')", + "enabled": "resolveOrValue('prime_tower_mode') != 'none'", "default_value": 200, "value": "machine_width - max(extruderValue(skirt_brim_extruder_nr, 'brim_width') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 if adhesion_type == 'brim' or (prime_tower_brim_enable and adhesion_type != 'raft') else (extruderValue(adhesion_extruder_nr, 'raft_margin') if adhesion_type == 'raft' else (extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if adhesion_type == 'skirt' else 0)), max(extruderValues('travel_avoid_distance'))) - max(extruderValues('support_offset')) - sum(extruderValues('skirt_brim_line_width')) * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 - (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0) - max(map(abs, extruderValues('machine_nozzle_offset_x'))) - 1", "maximum_value": "machine_width / 2 if machine_center_is_zero else machine_width", @@ -6172,7 +6192,7 @@ "description": "The y coordinate of the position of the prime tower.", "type": "float", "unit": "mm", - "enabled": "resolveOrValue('prime_tower_enable')", + "enabled": "resolveOrValue('prime_tower_mode') != 'none'", "default_value": 200, "value": "machine_depth - prime_tower_size - max(extruderValue(skirt_brim_extruder_nr, 'brim_width') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 if adhesion_type == 'brim' or (prime_tower_brim_enable and adhesion_type != 'raft') else (extruderValue(adhesion_extruder_nr, 'raft_margin') if adhesion_type == 'raft' else (extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if adhesion_type == 'skirt' else 0)), max(extruderValues('travel_avoid_distance'))) - max(extruderValues('support_offset')) - sum(extruderValues('skirt_brim_line_width')) * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 - (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0) - max(map(abs, extruderValues('machine_nozzle_offset_y'))) - 3", "maximum_value": "machine_depth / 2 - resolveOrValue('prime_tower_size') if machine_center_is_zero else machine_depth - resolveOrValue('prime_tower_size')", @@ -6185,7 +6205,7 @@ "label": "Wipe Inactive Nozzle on Prime Tower", "description": "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower.", "type": "bool", - "enabled": "resolveOrValue('prime_tower_enable')", + "enabled": "resolveOrValue('prime_tower_mode') != 'none'", "default_value": true, "settable_per_mesh": false, "settable_per_extruder": true @@ -6195,8 +6215,8 @@ "label": "Prime Tower Brim", "description": "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type.", "type": "bool", - "enabled": "resolveOrValue('prime_tower_enable') and (resolveOrValue('adhesion_type') != 'raft')", - "resolve": "resolveOrValue('prime_tower_enable') and (resolveOrValue('adhesion_type') in ('none', 'skirt'))", + "enabled": "resolveOrValue('prime_tower_mode') != 'none' and (resolveOrValue('adhesion_type') != 'raft')", + "resolve": "resolveOrValue('prime_tower_mode') != 'none' and (resolveOrValue('adhesion_type') in ('none', 'skirt'))", "default_value": false, "settable_per_mesh": false, "settable_per_extruder": false From 6d7d1b838a48ee006c3b0ff34637837551435e18 Mon Sep 17 00:00:00 2001 From: wawanbreton Date: Sun, 26 Mar 2023 13:20:52 +0000 Subject: [PATCH 002/765] Applied printer-linter format --- resources/definitions/lnl3d_base.def.json | 28 +++++++++---------- resources/definitions/lnl3d_d3.def.json | 8 ++++-- .../definitions/lnl3d_d3_vulcan.def.json | 8 ++++-- .../extruders/lnl3d_extruder_left.def.json | 2 +- .../extruders/lnl3d_extruder_right.def.json | 2 +- ...lnl3d_base_0.2_generic_PETG_super.inst.cfg | 1 + ...lnl3d_base_0.2_generic_PETG_ultra.inst.cfg | 1 + .../lnl3d_base_0.2_generic_PLA_super.inst.cfg | 1 + .../lnl3d_base_0.2_generic_PLA_ultra.inst.cfg | 1 + ...3d_base_0.4_generic_PETG_adaptive.inst.cfg | 1 + .../lnl3d_base_0.4_generic_PETG_low.inst.cfg | 1 + ...3d_base_0.4_generic_PETG_standard.inst.cfg | 1 + ...lnl3d_base_0.4_generic_PETG_super.inst.cfg | 1 + ...l3d_base_0.4_generic_PLA_adaptive.inst.cfg | 1 + .../lnl3d_base_0.4_generic_PLA_low.inst.cfg | 1 + ...l3d_base_0.4_generic_PLA_standard.inst.cfg | 1 + .../lnl3d_base_0.4_generic_PLA_super.inst.cfg | 1 + ...l3d_base_0.4_generic_TPU_adaptive.inst.cfg | 1 + ...l3d_base_0.4_generic_TPU_standard.inst.cfg | 1 + .../lnl3d_base_0.4_generic_TPU_super.inst.cfg | 1 + ...3d_base_0.6_generic_PETG_standard.inst.cfg | 1 + .../lnl3d_base_0.6_generic_PLA_draft.inst.cfg | 1 + .../lnl3d_base_0.6_generic_PLA_low.inst.cfg | 1 + ...l3d_base_0.6_generic_PLA_standard.inst.cfg | 1 + ...l3d_base_0.6_generic_TPU_standard.inst.cfg | 1 + ...lnl3d_base_0.8_generic_PETG_draft.inst.cfg | 1 + .../lnl3d_base_0.8_generic_PLA_draft.inst.cfg | 1 + .../lnl3d_base_0.8_generic_TPU_draft.inst.cfg | 1 + .../lnl3d/lnl3d_base_global_adaptive.inst.cfg | 1 + .../lnl3d/lnl3d_base_global_draft.inst.cfg | 1 + .../lnl3d/lnl3d_base_global_low.inst.cfg | 1 + .../lnl3d/lnl3d_base_global_standard.inst.cfg | 1 + .../lnl3d/lnl3d_base_global_super.inst.cfg | 1 + .../lnl3d/lnl3d_base_global_ultra.inst.cfg | 1 + .../variants/lnl3d/lnl3d_d3_0.2.inst.cfg | 1 + .../variants/lnl3d/lnl3d_d3_0.4.inst.cfg | 1 + .../variants/lnl3d/lnl3d_d3_0.6.inst.cfg | 1 + .../variants/lnl3d/lnl3d_d3_0.8.inst.cfg | 1 + .../lnl3d/lnl3d_d3_vulcan_0.2.inst.cfg | 1 + .../lnl3d/lnl3d_d3_vulcan_0.4.inst.cfg | 1 + .../lnl3d/lnl3d_d3_vulcan_0.6.inst.cfg | 1 + .../lnl3d/lnl3d_d3_vulcan_0.8.inst.cfg | 1 + .../variants/lnl3d/lnl3d_d5_0.2.inst.cfg | 1 + .../variants/lnl3d/lnl3d_d5_0.4.inst.cfg | 1 + .../variants/lnl3d/lnl3d_d5_0.6.inst.cfg | 1 + .../variants/lnl3d/lnl3d_d5_0.8.inst.cfg | 1 + .../variants/lnl3d/lnl3d_d6_0.2.inst.cfg | 1 + .../variants/lnl3d/lnl3d_d6_0.4.inst.cfg | 1 + .../variants/lnl3d/lnl3d_d6_0.6.inst.cfg | 1 + .../variants/lnl3d/lnl3d_d6_0.8.inst.cfg | 1 + 50 files changed, 73 insertions(+), 20 deletions(-) diff --git a/resources/definitions/lnl3d_base.def.json b/resources/definitions/lnl3d_base.def.json index c181e80a8e2..5ee0638002d 100644 --- a/resources/definitions/lnl3d_base.def.json +++ b/resources/definitions/lnl3d_base.def.json @@ -7,7 +7,7 @@ "author": "LNL3D", "manufacturer": "LNL3D", "file_formats": "text/x-gcode", - "first_start_actions": ["MachineSettingsAction"], + "first_start_actions": [ "MachineSettingsAction" ], "has_machine_quality": true, "has_materials": true, "has_variants": true, @@ -51,13 +51,13 @@ "machine_max_acceleration_x": { "value": 500 }, "machine_max_acceleration_y": { "value": 500 }, "machine_max_acceleration_z": { "value": 100 }, - "machine_max_jerk_e": { "value": 5 }, - "machine_max_jerk_xy": { "value": 10 }, - "machine_max_jerk_z": { "value": 0.4 }, "machine_max_feedrate_e": { "value": 80 }, "machine_max_feedrate_x": { "value": 500 }, "machine_max_feedrate_y": { "value": 500 }, "machine_max_feedrate_z": { "value": 10 }, + "machine_max_jerk_e": { "value": 5 }, + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 0.4 }, "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 ;move to min endstops\nG92 E0 ;reset extruder\nG1 E15 F1500 ;move extruder 15mm\nG1 Z15.0 F3000 ;move the header up 15mm\nM117 printing... ;LCD message" }, "material_diameter": { "default_value": 1.75 }, "material_final_print_temperature": { "value": "material_print_temperature" }, @@ -70,7 +70,7 @@ "prime_tower_brim_enable": { "default_value": true }, "prime_tower_wipe_enabled": { "default_value": false }, "raft_airgap": { "default_value": 0.2 }, - "raft_margin": {"default_value": 2 }, + "raft_margin": { "default_value": 2 }, "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" }, "retraction_count_max": { "value": 100 }, "retraction_extrusion_window": { "value": 4 }, @@ -79,18 +79,18 @@ "retraction_hop_enabled": { "value": "False" }, "retraction_prime_speed": { - "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", - "maximum_value": 200 + "maximum_value": 200, + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')" }, "retraction_retract_speed": { - "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", - "maximum_value": 200 + "maximum_value": 200, + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')" }, "retraction_speed": { - "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", - "maximum_value": 200 + "maximum_value": 200, + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')" }, "skin_overlap": { "value": 25 }, "skirt_line_count": { "value": 2 }, @@ -117,14 +117,14 @@ "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" }, "switch_extruder_retraction_amount": { "value": 8.0 }, "switch_extruder_retraction_speeds": { "default_value": 60.0 }, - "top_bottom_thickness": { "value": "layer_height_0 + layer_height * 4" }, + "top_bottom_thickness": { "value": "layer_height_0 + layer_height * 4" }, "travel_avoid_other_parts": { "value": false }, "travel_avoid_supports": { "value": true }, "travel_retract_before_outer_wall": { "value": true }, "wall_0_wipe_dist": { "value": 0.0 }, "wall_thickness": { "value": "line_width * 2" }, - "z_seam_type": { "value": "'back'" }, "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, + "z_seam_type": { "value": "'back'" }, "zig_zaggify_infill": { "value": true } } -} +} \ No newline at end of file diff --git a/resources/definitions/lnl3d_d3.def.json b/resources/definitions/lnl3d_d3.def.json index b12e13884b9..52e8042306f 100755 --- a/resources/definitions/lnl3d_d3.def.json +++ b/resources/definitions/lnl3d_d3.def.json @@ -6,7 +6,11 @@ { "visible": true, "platform": "lnl3d_d3.stl", - "platform_offset": [ 0, 0, 0 ] + "platform_offset": [ + 0, + 0, + 0 + ] }, "overrides": { @@ -17,4 +21,4 @@ "prime_tower_position_x": { "value": "155" }, "prime_tower_position_y": { "value": "155" } } -} +} \ No newline at end of file diff --git a/resources/definitions/lnl3d_d3_vulcan.def.json b/resources/definitions/lnl3d_d3_vulcan.def.json index 4b18ef4fc01..f81cae81c50 100755 --- a/resources/definitions/lnl3d_d3_vulcan.def.json +++ b/resources/definitions/lnl3d_d3_vulcan.def.json @@ -6,7 +6,11 @@ { "visible": true, "platform": "lnl3d_d3.stl", - "platform_offset": [ 0, 0, 0 ] + "platform_offset": [ + 0, + 0, + 0 + ] }, "overrides": { @@ -17,4 +21,4 @@ "prime_tower_position_x": { "value": "155" }, "prime_tower_position_y": { "value": "155" } } -} +} \ No newline at end of file diff --git a/resources/extruders/lnl3d_extruder_left.def.json b/resources/extruders/lnl3d_extruder_left.def.json index 03ed857f0ee..7e5d2dfe983 100755 --- a/resources/extruders/lnl3d_extruder_left.def.json +++ b/resources/extruders/lnl3d_extruder_left.def.json @@ -26,4 +26,4 @@ "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/lnl3d_extruder_right.def.json b/resources/extruders/lnl3d_extruder_right.def.json index 62e9cd230c1..6b5e0993de8 100755 --- a/resources/extruders/lnl3d_extruder_right.def.json +++ b/resources/extruders/lnl3d_extruder_right.def.json @@ -26,4 +26,4 @@ "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_super.inst.cfg index ca7c0e514a2..9e1ed6b824a 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_super.inst.cfg @@ -13,3 +13,4 @@ variant = 0.2mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*8 + diff --git a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_ultra.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_ultra.inst.cfg index 4d8f10a6048..f2d08c5351a 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_ultra.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_ultra.inst.cfg @@ -13,3 +13,4 @@ variant = 0.2mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*8 + diff --git a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_super.inst.cfg index ae4d279e171..a26d3eeb2ec 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_super.inst.cfg @@ -11,3 +11,4 @@ type = quality variant = 0.2mm Nozzle [values] + diff --git a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_ultra.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_ultra.inst.cfg index 74616e862e0..2086268efec 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_ultra.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_ultra.inst.cfg @@ -11,3 +11,4 @@ type = quality variant = 0.2mm Nozzle [values] + diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_adaptive.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_adaptive.inst.cfg index 4acfd831713..ea0e83055c0 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_adaptive.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_adaptive.inst.cfg @@ -13,3 +13,4 @@ variant = 0.4mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_low.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_low.inst.cfg index bd30b8ed511..20575a94de0 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_low.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_low.inst.cfg @@ -13,3 +13,4 @@ variant = 0.4mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_standard.inst.cfg index 669ef07d982..f8af1bef082 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_standard.inst.cfg @@ -13,3 +13,4 @@ variant = 0.4mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_super.inst.cfg index c70979a5cb8..52dfb21b4c6 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_super.inst.cfg @@ -13,3 +13,4 @@ variant = 0.4mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_adaptive.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_adaptive.inst.cfg index 4712e4c3ff0..cf38d49ca75 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_adaptive.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_adaptive.inst.cfg @@ -11,3 +11,4 @@ type = quality variant = 0.4mm Nozzle [values] + diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_low.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_low.inst.cfg index 0dd25c760dd..91318eb388c 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_low.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_low.inst.cfg @@ -11,3 +11,4 @@ type = quality variant = 0.4mm Nozzle [values] + diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_standard.inst.cfg index 4a537571d18..6566822054e 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_standard.inst.cfg @@ -11,3 +11,4 @@ type = quality variant = 0.4mm Nozzle [values] + diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_super.inst.cfg index f7862758201..52448a3e17e 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_super.inst.cfg @@ -11,3 +11,4 @@ type = quality variant = 0.4mm Nozzle [values] + diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_adaptive.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_adaptive.inst.cfg index 83603cffdff..ab1fb391e89 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_adaptive.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_adaptive.inst.cfg @@ -11,3 +11,4 @@ type = quality variant = 0.4mm Nozzle [values] + diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_standard.inst.cfg index ab68f0dd733..b1212b7fb74 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_standard.inst.cfg @@ -11,3 +11,4 @@ type = quality variant = 0.4mm Nozzle [values] + diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_super.inst.cfg index cac46549c10..5e0dd99521c 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_super.inst.cfg @@ -11,3 +11,4 @@ type = quality variant = 0.4mm Nozzle [values] + diff --git a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PETG_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PETG_standard.inst.cfg index f686201f7e4..26ca469bf63 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PETG_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PETG_standard.inst.cfg @@ -13,3 +13,4 @@ variant = 0.6mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*3 + diff --git a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_draft.inst.cfg index fd1b4398855..3ca8badcf87 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_draft.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_draft.inst.cfg @@ -11,3 +11,4 @@ type = quality variant = 0.6mm Nozzle [values] + diff --git a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_low.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_low.inst.cfg index eb5732b8dc2..8cd2acf1172 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_low.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_low.inst.cfg @@ -11,3 +11,4 @@ type = quality variant = 0.6mm Nozzle [values] + diff --git a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_standard.inst.cfg index 63a740e8ec1..7297384566b 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_standard.inst.cfg @@ -11,3 +11,4 @@ type = quality variant = 0.6mm Nozzle [values] + diff --git a/resources/quality/lnl3d/lnl3d_base_0.6_generic_TPU_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.6_generic_TPU_standard.inst.cfg index 92f0fdfee09..9e59bbd349f 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.6_generic_TPU_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_TPU_standard.inst.cfg @@ -11,3 +11,4 @@ type = quality variant = 0.6mm Nozzle [values] + diff --git a/resources/quality/lnl3d/lnl3d_base_0.8_generic_PETG_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.8_generic_PETG_draft.inst.cfg index 25dce4e37fd..d6453854681 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.8_generic_PETG_draft.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.8_generic_PETG_draft.inst.cfg @@ -13,3 +13,4 @@ variant = 0.8mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*3 + diff --git a/resources/quality/lnl3d/lnl3d_base_0.8_generic_PLA_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.8_generic_PLA_draft.inst.cfg index 6668b1a129e..1620bd79a89 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.8_generic_PLA_draft.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.8_generic_PLA_draft.inst.cfg @@ -11,3 +11,4 @@ type = quality variant = 0.8mm Nozzle [values] + diff --git a/resources/quality/lnl3d/lnl3d_base_0.8_generic_TPU_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.8_generic_TPU_draft.inst.cfg index 8a6512c09b1..d466d9bd94b 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.8_generic_TPU_draft.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.8_generic_TPU_draft.inst.cfg @@ -11,3 +11,4 @@ type = quality variant = 0.8mm Nozzle [values] + diff --git a/resources/quality/lnl3d/lnl3d_base_global_adaptive.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_adaptive.inst.cfg index 6e566239bf6..569e8c5264e 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_adaptive.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_adaptive.inst.cfg @@ -17,3 +17,4 @@ layer_height_0 = 0.20 support_interface_height = =layer_height*6 top_bottom_thickness = =layer_height_0+layer_height*4 wall_thickness = =line_width*3 + diff --git a/resources/quality/lnl3d/lnl3d_base_global_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_draft.inst.cfg index 34356067f2d..b0d87d19bb9 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_draft.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_draft.inst.cfg @@ -16,3 +16,4 @@ layer_height_0 = 0.32 support_interface_height = =layer_height*4 top_bottom_thickness = =layer_height_0+layer_height*3 wall_thickness = =line_width*2 + diff --git a/resources/quality/lnl3d/lnl3d_base_global_low.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_low.inst.cfg index 000d7729d3c..93d2f918ae7 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_low.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_low.inst.cfg @@ -16,3 +16,4 @@ layer_height_0 = 0.28 support_interface_height = =layer_height*4 top_bottom_thickness = =layer_height_0+layer_height*3 wall_thickness = =line_width*2 + diff --git a/resources/quality/lnl3d/lnl3d_base_global_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_standard.inst.cfg index f96004b8d1e..796a7ce1d01 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_standard.inst.cfg @@ -16,3 +16,4 @@ layer_height_0 = 0.2 support_interface_height = =layer_height*4 top_bottom_thickness = =layer_height_0+layer_height*3 wall_thickness = =line_width*2 + diff --git a/resources/quality/lnl3d/lnl3d_base_global_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_super.inst.cfg index f42fb2c6acc..f9cdb2dbf9f 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_super.inst.cfg @@ -16,3 +16,4 @@ layer_height_0 = 0.12 support_interface_height = =layer_height*8 top_bottom_thickness = =layer_height_0+layer_height*6 wall_thickness = =line_width*3 + diff --git a/resources/quality/lnl3d/lnl3d_base_global_ultra.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_ultra.inst.cfg index 2e97b1b620a..a4dd6be3da5 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_ultra.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_ultra.inst.cfg @@ -16,3 +16,4 @@ layer_height_0 = 0.12 support_interface_height = =layer_height*12 top_bottom_thickness = =layer_height_0+layer_height*10 wall_thickness = =line_width*3 + diff --git a/resources/variants/lnl3d/lnl3d_d3_0.2.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_0.2.inst.cfg index 63a61e894f2..7ae77ff4762 100644 --- a/resources/variants/lnl3d/lnl3d_d3_0.2.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_0.2.inst.cfg @@ -10,3 +10,4 @@ type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/lnl3d/lnl3d_d3_0.4.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_0.4.inst.cfg index 678e48f3b30..e8e0d15f7ec 100644 --- a/resources/variants/lnl3d/lnl3d_d3_0.4.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_0.4.inst.cfg @@ -10,3 +10,4 @@ type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/lnl3d/lnl3d_d3_0.6.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_0.6.inst.cfg index 7aeb9ef7650..fa978ca8c89 100644 --- a/resources/variants/lnl3d/lnl3d_d3_0.6.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_0.6.inst.cfg @@ -10,3 +10,4 @@ type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/lnl3d/lnl3d_d3_0.8.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_0.8.inst.cfg index 5052e08c250..05e72fe6a30 100644 --- a/resources/variants/lnl3d/lnl3d_d3_0.8.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_0.8.inst.cfg @@ -10,3 +10,4 @@ type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.2.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.2.inst.cfg index ac652dbedd5..fee93aaef20 100644 --- a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.2.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.2.inst.cfg @@ -10,3 +10,4 @@ type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.4.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.4.inst.cfg index 3a7c5d26ebf..a76a5aeb761 100644 --- a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.4.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.4.inst.cfg @@ -10,3 +10,4 @@ type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.6.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.6.inst.cfg index ab0e6a9e4d0..71884bf1c90 100644 --- a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.6.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.6.inst.cfg @@ -10,3 +10,4 @@ type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.8.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.8.inst.cfg index 5a7e625a5ec..0a1269d21e2 100644 --- a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.8.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.8.inst.cfg @@ -10,3 +10,4 @@ type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/lnl3d/lnl3d_d5_0.2.inst.cfg b/resources/variants/lnl3d/lnl3d_d5_0.2.inst.cfg index b5410bc8044..62dfd0b0d92 100644 --- a/resources/variants/lnl3d/lnl3d_d5_0.2.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d5_0.2.inst.cfg @@ -10,3 +10,4 @@ type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/lnl3d/lnl3d_d5_0.4.inst.cfg b/resources/variants/lnl3d/lnl3d_d5_0.4.inst.cfg index 4bbdd3af0f6..088b18ed455 100644 --- a/resources/variants/lnl3d/lnl3d_d5_0.4.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d5_0.4.inst.cfg @@ -10,3 +10,4 @@ type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/lnl3d/lnl3d_d5_0.6.inst.cfg b/resources/variants/lnl3d/lnl3d_d5_0.6.inst.cfg index 985b141ee57..f4ecae1dadc 100644 --- a/resources/variants/lnl3d/lnl3d_d5_0.6.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d5_0.6.inst.cfg @@ -10,3 +10,4 @@ type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/lnl3d/lnl3d_d5_0.8.inst.cfg b/resources/variants/lnl3d/lnl3d_d5_0.8.inst.cfg index 3951b27e5b2..da10b5fa7e0 100644 --- a/resources/variants/lnl3d/lnl3d_d5_0.8.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d5_0.8.inst.cfg @@ -10,3 +10,4 @@ type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/lnl3d/lnl3d_d6_0.2.inst.cfg b/resources/variants/lnl3d/lnl3d_d6_0.2.inst.cfg index 522868ce908..886a6bba657 100644 --- a/resources/variants/lnl3d/lnl3d_d6_0.2.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d6_0.2.inst.cfg @@ -10,3 +10,4 @@ type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/lnl3d/lnl3d_d6_0.4.inst.cfg b/resources/variants/lnl3d/lnl3d_d6_0.4.inst.cfg index 9414cd20be2..f7a984cb727 100644 --- a/resources/variants/lnl3d/lnl3d_d6_0.4.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d6_0.4.inst.cfg @@ -10,3 +10,4 @@ type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/lnl3d/lnl3d_d6_0.6.inst.cfg b/resources/variants/lnl3d/lnl3d_d6_0.6.inst.cfg index 204bf57c3d4..5c77bc2d3c6 100644 --- a/resources/variants/lnl3d/lnl3d_d6_0.6.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d6_0.6.inst.cfg @@ -10,3 +10,4 @@ type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/lnl3d/lnl3d_d6_0.8.inst.cfg b/resources/variants/lnl3d/lnl3d_d6_0.8.inst.cfg index 0fcca7db188..f42592214e9 100644 --- a/resources/variants/lnl3d/lnl3d_d6_0.8.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d6_0.8.inst.cfg @@ -10,3 +10,4 @@ type = variant [values] machine_nozzle_size = 0.8 + From b3087d1e6f425f6ade22048e490d36f949b98afb Mon Sep 17 00:00:00 2001 From: Jeremie Date: Fri, 26 May 2023 14:03:45 +0200 Subject: [PATCH 003/765] Definitions for FlashForge Adventure 3 & 4 family --- .../flashforge_adventurer3.def.json | 15 ++++++++ .../flashforge_adventurer3c.def.json | 24 +++++++++++++ .../flashforge_adventurer4.def.json | 25 ++++++++++++++ .../flashforge_adventurer4lite.def.json | 14 ++++++++ .../flashforge_adventurer_base.def.json | 34 +++++++++++++++++++ .../flashforge_adventurer_extruder_0.def.json | 16 +++++++++ .../flashforge_adventurer3_0.3.inst.cfg | 12 +++++++ .../flashforge_adventurer3_0.4.inst.cfg | 12 +++++++ .../flashforge_adventurer3_0.6.inst.cfg | 12 +++++++ .../flashforge_adventurer3c_0.3.inst.cfg | 12 +++++++ .../flashforge_adventurer3c_0.4.inst.cfg | 12 +++++++ .../flashforge_adventurer3c_0.6.inst.cfg | 12 +++++++ .../flashforge_adventurer4_0.3.inst.cfg | 12 +++++++ .../flashforge_adventurer4_0.4.inst.cfg | 12 +++++++ .../flashforge_adventurer4_0.6.inst.cfg | 12 +++++++ .../flashforge_adventurer4lite_0.3.inst.cfg | 12 +++++++ .../flashforge_adventurer4lite_0.4.inst.cfg | 12 +++++++ .../flashforge_adventurer4lite_0.6.inst.cfg | 12 +++++++ 18 files changed, 272 insertions(+) create mode 100644 resources/definitions/flashforge_adventurer3.def.json create mode 100644 resources/definitions/flashforge_adventurer3c.def.json create mode 100644 resources/definitions/flashforge_adventurer4.def.json create mode 100644 resources/definitions/flashforge_adventurer4lite.def.json create mode 100644 resources/definitions/flashforge_adventurer_base.def.json create mode 100644 resources/extruders/flashforge_adventurer_extruder_0.def.json create mode 100644 resources/variants/flashforge/flashforge_adventurer3_0.3.inst.cfg create mode 100644 resources/variants/flashforge/flashforge_adventurer3_0.4.inst.cfg create mode 100644 resources/variants/flashforge/flashforge_adventurer3_0.6.inst.cfg create mode 100644 resources/variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg create mode 100644 resources/variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg create mode 100644 resources/variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg create mode 100644 resources/variants/flashforge/flashforge_adventurer4_0.3.inst.cfg create mode 100644 resources/variants/flashforge/flashforge_adventurer4_0.4.inst.cfg create mode 100644 resources/variants/flashforge/flashforge_adventurer4_0.6.inst.cfg create mode 100644 resources/variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg create mode 100644 resources/variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg create mode 100644 resources/variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg diff --git a/resources/definitions/flashforge_adventurer3.def.json b/resources/definitions/flashforge_adventurer3.def.json new file mode 100644 index 00000000000..57879584010 --- /dev/null +++ b/resources/definitions/flashforge_adventurer3.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Adventurer 3", + "inherits": "flashforge_adventurer3c", + "metadata": + { + "author": "Jeremie-C", + "visible": true, + "supports_network_connection": true + }, + "overrides": + { + "machine_name": {"default_value": "Adventurer 3"} + } +} \ No newline at end of file diff --git a/resources/definitions/flashforge_adventurer3c.def.json b/resources/definitions/flashforge_adventurer3c.def.json new file mode 100644 index 00000000000..9321c2ca400 --- /dev/null +++ b/resources/definitions/flashforge_adventurer3c.def.json @@ -0,0 +1,24 @@ +{ + "version": 2, + "name": "Adventurer 3C", + "inherits": "flashforge_adventurer_base", + "metadata": { + "author": "Jeremie-C", + "visible": true, + "quality_definition": "flashforge_adventurer3" + }, + "overrides": + { + "default_material_bed_temperature": {"maximum_value_warning": "100"}, + "gantry_height": {"value": "150"}, + "machine_center_is_zero": {"default_value": true}, + "machine_depth": {"default_value": 150}, + "machine_end_gcode": {"default_value": ";end gcode\nM104 S0 T0\nM140 S0 T0\nG162 Z F1800\nG28 X Y\nM132 X Y A B\nM652\nG91\nM18"}, + "machine_head_with_fans_polygon": {"default_value": [[-20, 10], [-20, -10], [10, 10], [10, -10]]}, + "machine_height": {"default_value": 150}, + "machine_name": {"default_value": "Adventurer 3C"}, + "machine_start_gcode": {"default_value": ";Start Gcode\nG28\nM132 X Y Z A B\nG1 Z50.000 F420\nG161 X Y F3300\nM7 T0\nM6 T0\nM651 S255\n;End Start"}, + "machine_width": {"default_value": 150}, + "speed_print": {"maximum_value_warning": 100} + } +} \ No newline at end of file diff --git a/resources/definitions/flashforge_adventurer4.def.json b/resources/definitions/flashforge_adventurer4.def.json new file mode 100644 index 00000000000..d3b29c4f4a1 --- /dev/null +++ b/resources/definitions/flashforge_adventurer4.def.json @@ -0,0 +1,25 @@ +{ + "version": 2, + "name": "Adventurer 4", + "inherits": "flashforge_adventurer_base", + "metadata": + { + "author": "Jeremie-C", + "visible": true, + "quality_definition": "flashforge_adventurer4", + "supports_network_connection": true + }, + "overrides": + { + "default_material_bed_temperature": {"maximum_value_warning": "110"}, + "gantry_height": {"value": "250"}, + "machine_depth": {"default_value": 200}, + "machine_end_gcode": {"default_value": ";End Gcode\nM104 S0 T0\nM140 S0 T0\nG162 Z F1800\nG28 X Y\nM132 X Y A B\nM652\nG91\nM18"}, + "machine_head_with_fans_polygon": {"default_value": [[-20, 10], [-20, -10], [10, 10], [10, -10]]}, + "machine_height": {"default_value": 250}, + "machine_name": {"default_value": "Adventurer 4"}, + "machine_start_gcode": {"default_value": ";Start Gcode\nG28\nM132 X Y Z A B\nG1 Z50.000 F420\nG161 X Y F3300\nM7 T0\nM6 T0\nM651 S255\n;End Start"}, + "machine_use_extruder_offset_to_offset_coords": {"default_value": false}, + "machine_width": {"default_value": 220} + } +} \ No newline at end of file diff --git a/resources/definitions/flashforge_adventurer4lite.def.json b/resources/definitions/flashforge_adventurer4lite.def.json new file mode 100644 index 00000000000..05534793d81 --- /dev/null +++ b/resources/definitions/flashforge_adventurer4lite.def.json @@ -0,0 +1,14 @@ +{ + "version": 2, + "name": "Adventurer 4 Lite", + "inherits": "flashforge_adventurer4", + "metadata": + { + "author": "Jeremie-C", + "visible": true + }, + "overrides": + { + "machine_name": { "default_value": "Adventurer 4 Lite" } + } +} \ No newline at end of file diff --git a/resources/definitions/flashforge_adventurer_base.def.json b/resources/definitions/flashforge_adventurer_base.def.json new file mode 100644 index 00000000000..7a31d6400f8 --- /dev/null +++ b/resources/definitions/flashforge_adventurer_base.def.json @@ -0,0 +1,34 @@ +{ + "version": 2, + "name": "Flashforge Adventurer Base", + "inherits": "fdmprinter", + "metadata": + { + "author": "Jeremie-C", + "manufacturer": "Flashforge", + "visible": false, + "file_formats": "application/gx;text/x-gcode", + "first_start_actions": ["MachineSettingsAction"], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": {"0": "flashforge_adventurer_extruder_0"}, + "preferred_material": "generic_pla", + "preferred_quality_type": "normal", + "preferred_variant_name": "0.4mm Nozzle", + "variants_name": "Nozzle Size" + }, + "overrides": + { + "adhesion_type": {"default_value": "skirt"}, + "default_material_print_temperature": {"maximum_value_warning": "265"}, + "layer_height": + { + "minimum_value_warning": "0.1", + "maximum_value_warning": "0.4" + }, + "machine_center_is_zero": {"default_value": true}, + "machine_gcode_flavor": {"default_value": "RepRap (Marlin/Sprinter)"}, + "machine_heated_bed": {"default_value": true} + } +} \ No newline at end of file diff --git a/resources/extruders/flashforge_adventurer_extruder_0.def.json b/resources/extruders/flashforge_adventurer_extruder_0.def.json new file mode 100644 index 00000000000..d8b902a97b9 --- /dev/null +++ b/resources/extruders/flashforge_adventurer_extruder_0.def.json @@ -0,0 +1,16 @@ +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "flashforge_adventurer_base", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/variants/flashforge/flashforge_adventurer3_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3_0.3.inst.cfg new file mode 100644 index 00000000000..98319a87a75 --- /dev/null +++ b/resources/variants/flashforge/flashforge_adventurer3_0.3.inst.cfg @@ -0,0 +1,12 @@ +[general] +definition = flashforge_adventurer3 +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 21 +type = variant + +[values] +machine_nozzle_size = 0.3 diff --git a/resources/variants/flashforge/flashforge_adventurer3_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3_0.4.inst.cfg new file mode 100644 index 00000000000..3357045ab6d --- /dev/null +++ b/resources/variants/flashforge/flashforge_adventurer3_0.4.inst.cfg @@ -0,0 +1,12 @@ +[general] +definition = flashforge_adventurer3 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 21 +type = variant + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/flashforge/flashforge_adventurer3_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3_0.6.inst.cfg new file mode 100644 index 00000000000..aaf69b516df --- /dev/null +++ b/resources/variants/flashforge/flashforge_adventurer3_0.6.inst.cfg @@ -0,0 +1,12 @@ +[general] +definition = flashforge_adventurer3 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 21 +type = variant + +[values] +machine_nozzle_size = 0.6 diff --git a/resources/variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg new file mode 100644 index 00000000000..56f983be94a --- /dev/null +++ b/resources/variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg @@ -0,0 +1,12 @@ +[general] +definition = flashforge_adventurer3c +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 21 +type = variant + +[values] +machine_nozzle_size = 0.3 diff --git a/resources/variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg new file mode 100644 index 00000000000..c45a46dbc66 --- /dev/null +++ b/resources/variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg @@ -0,0 +1,12 @@ +[general] +definition = flashforge_adventurer3c +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 21 +type = variant + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg new file mode 100644 index 00000000000..15bfd3f8be3 --- /dev/null +++ b/resources/variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg @@ -0,0 +1,12 @@ +[general] +definition = flashforge_adventurer3c +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 21 +type = variant + +[values] +machine_nozzle_size = 0.6 diff --git a/resources/variants/flashforge/flashforge_adventurer4_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4_0.3.inst.cfg new file mode 100644 index 00000000000..57a9dab4b14 --- /dev/null +++ b/resources/variants/flashforge/flashforge_adventurer4_0.3.inst.cfg @@ -0,0 +1,12 @@ +[general] +definition = flashforge_adventurer4 +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 21 +type = variant + +[values] +machine_nozzle_size = 0.3 diff --git a/resources/variants/flashforge/flashforge_adventurer4_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4_0.4.inst.cfg new file mode 100644 index 00000000000..b451d4e6815 --- /dev/null +++ b/resources/variants/flashforge/flashforge_adventurer4_0.4.inst.cfg @@ -0,0 +1,12 @@ +[general] +definition = flashforge_adventurer4 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 21 +type = variant + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/flashforge/flashforge_adventurer4_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4_0.6.inst.cfg new file mode 100644 index 00000000000..2f9568d49cf --- /dev/null +++ b/resources/variants/flashforge/flashforge_adventurer4_0.6.inst.cfg @@ -0,0 +1,12 @@ +[general] +definition = flashforge_adventurer4 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 21 +type = variant + +[values] +machine_nozzle_size = 0.6 diff --git a/resources/variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg new file mode 100644 index 00000000000..bc12e7191d8 --- /dev/null +++ b/resources/variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg @@ -0,0 +1,12 @@ +[general] +definition = flashforge_adventurer4lite +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 21 +type = variant + +[values] +machine_nozzle_size = 0.3 diff --git a/resources/variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg new file mode 100644 index 00000000000..2fc42fbb124 --- /dev/null +++ b/resources/variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg @@ -0,0 +1,12 @@ +[general] +definition = flashforge_adventurer4lite +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 21 +type = variant + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg new file mode 100644 index 00000000000..8da55dd9d14 --- /dev/null +++ b/resources/variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg @@ -0,0 +1,12 @@ +[general] +definition = flashforge_adventurer4lite +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 21 +type = variant + +[values] +machine_nozzle_size = 0.6 From 80ab3d22bbba7eea2fc63e1396e90063cb768e5c Mon Sep 17 00:00:00 2001 From: Jeremie Date: Fri, 26 May 2023 14:06:19 +0200 Subject: [PATCH 004/765] Quality for FlashForge Adventure 3 & 4 family --- ...ashforge_adventurer3_abs_0.3_fine.inst.cfg | 16 +++++++++++++++ ...shforge_adventurer3_abs_0.3_vfine.inst.cfg | 16 +++++++++++++++ ...shforge_adventurer3_abs_0.4_draft.inst.cfg | 16 +++++++++++++++ ...ashforge_adventurer3_abs_0.4_fast.inst.cfg | 16 +++++++++++++++ ...ashforge_adventurer3_abs_0.4_fine.inst.cfg | 16 +++++++++++++++ ...hforge_adventurer3_abs_0.4_normal.inst.cfg | 16 +++++++++++++++ ...shforge_adventurer3_abs_0.4_vfast.inst.cfg | 16 +++++++++++++++ ...shforge_adventurer3_abs_0.4_vfine.inst.cfg | 16 +++++++++++++++ ...shforge_adventurer3_abs_0.6_draft.inst.cfg | 16 +++++++++++++++ ...ashforge_adventurer3_abs_0.6_fast.inst.cfg | 16 +++++++++++++++ ...shforge_adventurer3_abs_0.6_vfast.inst.cfg | 16 +++++++++++++++ ...ashforge_adventurer4_abs_0.3_fine.inst.cfg | 18 +++++++++++++++++ ...shforge_adventurer4_abs_0.3_vfine.inst.cfg | 18 +++++++++++++++++ ...shforge_adventurer4_abs_0.4_draft.inst.cfg | 18 +++++++++++++++++ ...ashforge_adventurer4_abs_0.4_fast.inst.cfg | 18 +++++++++++++++++ ...ashforge_adventurer4_abs_0.4_fine.inst.cfg | 18 +++++++++++++++++ ...hforge_adventurer4_abs_0.4_normal.inst.cfg | 18 +++++++++++++++++ ...shforge_adventurer4_abs_0.4_vfast.inst.cfg | 18 +++++++++++++++++ ...shforge_adventurer4_abs_0.4_vfine.inst.cfg | 18 +++++++++++++++++ ...shforge_adventurer4_abs_0.6_draft.inst.cfg | 18 +++++++++++++++++ ...ashforge_adventurer4_abs_0.6_fast.inst.cfg | 18 +++++++++++++++++ ...shforge_adventurer4_abs_0.6_vfast.inst.cfg | 18 +++++++++++++++++ ...ashforge_adventurer4_asa_0.4_fast.inst.cfg | 18 +++++++++++++++++ ...ashforge_adventurer4_asa_0.4_fine.inst.cfg | 18 +++++++++++++++++ ...hforge_adventurer4_asa_0.4_normal.inst.cfg | 18 +++++++++++++++++ .../flashforge_adventurer3_draft.inst.cfg | 20 +++++++++++++++++++ .../flashforge_adventurer3_fast.inst.cfg | 20 +++++++++++++++++++ .../flashforge_adventurer3_fine.inst.cfg | 20 +++++++++++++++++++ .../flashforge_adventurer3_normal.inst.cfg | 20 +++++++++++++++++++ .../flashforge_adventurer3_vfast.inst.cfg | 20 +++++++++++++++++++ .../flashforge_adventurer3_vfine.inst.cfg | 20 +++++++++++++++++++ .../flashforge_adventurer4_draft.inst.cfg | 18 +++++++++++++++++ .../flashforge_adventurer4_fast.inst.cfg | 18 +++++++++++++++++ .../flashforge_adventurer4_fine.inst.cfg | 18 +++++++++++++++++ .../flashforge_adventurer4_normal.inst.cfg | 18 +++++++++++++++++ .../flashforge_adventurer4_vfast.inst.cfg | 18 +++++++++++++++++ .../flashforge_adventurer4_vfine.inst.cfg | 18 +++++++++++++++++ ...ashforge_adventurer3_pc_0.4_draft.inst.cfg | 16 +++++++++++++++ ...lashforge_adventurer3_pc_0.4_fast.inst.cfg | 16 +++++++++++++++ ...shforge_adventurer3_pc_0.4_normal.inst.cfg | 16 +++++++++++++++ ...ashforge_adventurer3_pc_0.4_vfast.inst.cfg | 16 +++++++++++++++ ...ashforge_adventurer3_pc_0.6_draft.inst.cfg | 16 +++++++++++++++ ...lashforge_adventurer3_pc_0.6_fast.inst.cfg | 16 +++++++++++++++ ...ashforge_adventurer3_pc_0.6_vfast.inst.cfg | 16 +++++++++++++++ ...ashforge_adventurer4_pc_0.4_draft.inst.cfg | 18 +++++++++++++++++ ...lashforge_adventurer4_pc_0.4_fast.inst.cfg | 18 +++++++++++++++++ ...shforge_adventurer4_pc_0.4_normal.inst.cfg | 18 +++++++++++++++++ ...ashforge_adventurer4_pc_0.4_vfast.inst.cfg | 18 +++++++++++++++++ ...ashforge_adventurer4_pc_0.6_draft.inst.cfg | 18 +++++++++++++++++ ...lashforge_adventurer4_pc_0.6_fast.inst.cfg | 18 +++++++++++++++++ ...ashforge_adventurer4_pc_0.6_vfast.inst.cfg | 18 +++++++++++++++++ ...shforge_adventurer3_petg_0.3_fine.inst.cfg | 16 +++++++++++++++ ...hforge_adventurer3_petg_0.3_vfine.inst.cfg | 16 +++++++++++++++ ...hforge_adventurer3_petg_0.4_draft.inst.cfg | 16 +++++++++++++++ ...shforge_adventurer3_petg_0.4_fast.inst.cfg | 16 +++++++++++++++ ...shforge_adventurer3_petg_0.4_fine.inst.cfg | 16 +++++++++++++++ ...forge_adventurer3_petg_0.4_normal.inst.cfg | 16 +++++++++++++++ ...hforge_adventurer3_petg_0.4_vfast.inst.cfg | 16 +++++++++++++++ ...hforge_adventurer3_petg_0.4_vfine.inst.cfg | 16 +++++++++++++++ ...hforge_adventurer3_petg_0.6_draft.inst.cfg | 16 +++++++++++++++ ...shforge_adventurer3_petg_0.6_fast.inst.cfg | 16 +++++++++++++++ ...hforge_adventurer3_petg_0.6_vfast.inst.cfg | 16 +++++++++++++++ ...shforge_adventurer4_petg_0.3_fine.inst.cfg | 18 +++++++++++++++++ ...hforge_adventurer4_petg_0.3_vfine.inst.cfg | 18 +++++++++++++++++ ...hforge_adventurer4_petg_0.4_draft.inst.cfg | 18 +++++++++++++++++ ...shforge_adventurer4_petg_0.4_fast.inst.cfg | 18 +++++++++++++++++ ...shforge_adventurer4_petg_0.4_fine.inst.cfg | 18 +++++++++++++++++ ...forge_adventurer4_petg_0.4_normal.inst.cfg | 18 +++++++++++++++++ ...hforge_adventurer4_petg_0.4_vfast.inst.cfg | 18 +++++++++++++++++ ...hforge_adventurer4_petg_0.4_vfine.inst.cfg | 18 +++++++++++++++++ ...hforge_adventurer4_petg_0.6_draft.inst.cfg | 18 +++++++++++++++++ ...shforge_adventurer4_petg_0.6_fast.inst.cfg | 18 +++++++++++++++++ ...hforge_adventurer4_petg_0.6_vfast.inst.cfg | 18 +++++++++++++++++ ...ashforge_adventurer3_pla_0.3_fine.inst.cfg | 16 +++++++++++++++ ...shforge_adventurer3_pla_0.3_vfine.inst.cfg | 16 +++++++++++++++ ...shforge_adventurer3_pla_0.4_draft.inst.cfg | 16 +++++++++++++++ ...ashforge_adventurer3_pla_0.4_fast.inst.cfg | 16 +++++++++++++++ ...ashforge_adventurer3_pla_0.4_fine.inst.cfg | 16 +++++++++++++++ ...hforge_adventurer3_pla_0.4_normal.inst.cfg | 16 +++++++++++++++ ...shforge_adventurer3_pla_0.4_vfast.inst.cfg | 16 +++++++++++++++ ...shforge_adventurer3_pla_0.4_vfine.inst.cfg | 16 +++++++++++++++ ...shforge_adventurer3_pla_0.6_draft.inst.cfg | 16 +++++++++++++++ ...ashforge_adventurer3_pla_0.6_fast.inst.cfg | 16 +++++++++++++++ ...shforge_adventurer3_pla_0.6_vfast.inst.cfg | 16 +++++++++++++++ ...ashforge_adventurer4_pla_0.3_fine.inst.cfg | 18 +++++++++++++++++ ...shforge_adventurer4_pla_0.3_vfine.inst.cfg | 18 +++++++++++++++++ ...shforge_adventurer4_pla_0.4_draft.inst.cfg | 18 +++++++++++++++++ ...ashforge_adventurer4_pla_0.4_fast.inst.cfg | 18 +++++++++++++++++ ...ashforge_adventurer4_pla_0.4_fine.inst.cfg | 18 +++++++++++++++++ ...hforge_adventurer4_pla_0.4_normal.inst.cfg | 18 +++++++++++++++++ ...shforge_adventurer4_pla_0.4_vfast.inst.cfg | 18 +++++++++++++++++ ...shforge_adventurer4_pla_0.4_vfine.inst.cfg | 18 +++++++++++++++++ ...shforge_adventurer4_pla_0.6_draft.inst.cfg | 18 +++++++++++++++++ ...ashforge_adventurer4_pla_0.6_fast.inst.cfg | 18 +++++++++++++++++ ...shforge_adventurer4_pla_0.6_vfast.inst.cfg | 18 +++++++++++++++++ 95 files changed, 1642 insertions(+) create mode 100644 resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg create mode 100644 resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg create mode 100644 resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg create mode 100644 resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg create mode 100644 resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg create mode 100644 resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg create mode 100644 resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg create mode 100644 resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg create mode 100644 resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg create mode 100644 resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg create mode 100644 resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg create mode 100644 resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg create mode 100644 resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg create mode 100644 resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg create mode 100644 resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg create mode 100644 resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg create mode 100644 resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg create mode 100644 resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg create mode 100644 resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg create mode 100644 resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg create mode 100644 resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg create mode 100644 resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg create mode 100644 resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg create mode 100644 resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg create mode 100644 resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg create mode 100644 resources/quality/flashforge/flashforge_adventurer3_draft.inst.cfg create mode 100644 resources/quality/flashforge/flashforge_adventurer3_fast.inst.cfg create mode 100644 resources/quality/flashforge/flashforge_adventurer3_fine.inst.cfg create mode 100644 resources/quality/flashforge/flashforge_adventurer3_normal.inst.cfg create mode 100644 resources/quality/flashforge/flashforge_adventurer3_vfast.inst.cfg create mode 100644 resources/quality/flashforge/flashforge_adventurer3_vfine.inst.cfg create mode 100644 resources/quality/flashforge/flashforge_adventurer4_draft.inst.cfg create mode 100644 resources/quality/flashforge/flashforge_adventurer4_fast.inst.cfg create mode 100644 resources/quality/flashforge/flashforge_adventurer4_fine.inst.cfg create mode 100644 resources/quality/flashforge/flashforge_adventurer4_normal.inst.cfg create mode 100644 resources/quality/flashforge/flashforge_adventurer4_vfast.inst.cfg create mode 100644 resources/quality/flashforge/flashforge_adventurer4_vfine.inst.cfg create mode 100644 resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg create mode 100644 resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg create mode 100644 resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg create mode 100644 resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg create mode 100644 resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg create mode 100644 resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg create mode 100644 resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg create mode 100644 resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg create mode 100644 resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg create mode 100644 resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg create mode 100644 resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg create mode 100644 resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg create mode 100644 resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg create mode 100644 resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg create mode 100644 resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg create mode 100644 resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg create mode 100644 resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg create mode 100644 resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg create mode 100644 resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg create mode 100644 resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg create mode 100644 resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg create mode 100644 resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg create mode 100644 resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg create mode 100644 resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg create mode 100644 resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg create mode 100644 resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg create mode 100644 resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg create mode 100644 resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg create mode 100644 resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg create mode 100644 resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg create mode 100644 resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg create mode 100644 resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg create mode 100644 resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg create mode 100644 resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg create mode 100644 resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg create mode 100644 resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg create mode 100644 resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg create mode 100644 resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg create mode 100644 resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg create mode 100644 resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg create mode 100644 resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg create mode 100644 resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg create mode 100644 resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg create mode 100644 resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg create mode 100644 resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg create mode 100644 resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg create mode 100644 resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg create mode 100644 resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg create mode 100644 resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg create mode 100644 resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg create mode 100644 resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg create mode 100644 resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg create mode 100644 resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg create mode 100644 resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg create mode 100644 resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg create mode 100644 resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg create mode 100644 resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg create mode 100644 resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg new file mode 100644 index 00000000000..17d91298387 --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Fine +version = 4 + +[metadata] +material = generic_abs +quality_type = fine +setting_version = 21 +type = quality +variant = 0.3mm Nozzle +weight = 1 + +[values] +speed_print = 50 +speed_travel = 100 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg new file mode 100644 index 00000000000..d081363cde2 --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Very Fine +version = 4 + +[metadata] +material = generic_abs +quality_type = veryfine +setting_version = 21 +type = quality +variant = 0.3mm Nozzle +weight = 2 + +[values] +speed_print = 45 +speed_travel = 100 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg new file mode 100644 index 00000000000..f392ad07fa0 --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Draft +version = 4 + +[metadata] +material = generic_abs +quality_type = draft +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = -3 + +[values] +speed_print = 70 +speed_travel = 90 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg new file mode 100644 index 00000000000..4bba44bee90 --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Fast +version = 4 + +[metadata] +material = generic_abs +quality_type = fast +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = -1 + +[values] +speed_print = 60 +speed_travel = 80 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg new file mode 100644 index 00000000000..7e46e9dd358 --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Fine +version = 4 + +[metadata] +material = generic_abs +quality_type = fine +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = 1 + +[values] +speed_print = 40 +speed_travel = 70 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg new file mode 100644 index 00000000000..23b4fd2cb3d --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Standard +version = 4 + +[metadata] +material = generic_abs +quality_type = normal +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 60 +speed_travel = 80 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg new file mode 100644 index 00000000000..9370e5d6475 --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Very Fast +version = 4 + +[metadata] +material = generic_abs +quality_type = veryfast +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = -2 + +[values] +speed_print = 60 +speed_travel = 90 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg new file mode 100644 index 00000000000..158014be49c --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Very Fine +version = 4 + +[metadata] +material = generic_abs +quality_type = veryfine +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = 2 + +[values] +speed_print = 35 +speed_travel = 70 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg new file mode 100644 index 00000000000..29bff5b0903 --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Draft +version = 4 + +[metadata] +material = generic_abs +quality_type = draft +setting_version = 21 +type = quality +variant = 0.6mm Nozzle +weight = -3 + +[values] +speed_print = 55 +speed_travel = 100 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg new file mode 100644 index 00000000000..30d4ee5af8b --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Fast +version = 4 + +[metadata] +material = generic_abs +quality_type = fast +setting_version = 21 +type = quality +variant = 0.6mm Nozzle +weight = -1 + +[values] +speed_print = 50 +speed_travel = 100 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg new file mode 100644 index 00000000000..468aeb22442 --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Very Fast +version = 4 + +[metadata] +material = generic_abs +quality_type = veryfast +setting_version = 21 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +speed_print = 50 +speed_travel = 100 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg new file mode 100644 index 00000000000..977fd8a7b4f --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Fine +version = 4 + +[metadata] +material = generic_abs +quality_type = fine +setting_version = 21 +type = quality +variant = 0.3mm Nozzle +weight = 1 + +[values] +speed_print = 50 +speed_travel = 100 +retraction_amount = 5 +retraction_speed = 30 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg new file mode 100644 index 00000000000..880009f3da0 --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Very Fine +version = 4 + +[metadata] +material = generic_abs +quality_type = veryfine +setting_version = 21 +type = quality +variant = 0.3mm Nozzle +weight = 2 + +[values] +speed_print = 45 +speed_travel = 100 +retraction_amount = 5 +retraction_speed = 30 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg new file mode 100644 index 00000000000..2a8c1c2f6c2 --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Draft +version = 4 + +[metadata] +material = generic_abs +quality_type = draft +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = -3 + +[values] +speed_print = 70 +speed_travel = 90 +retraction_amount = 5 +retraction_speed = 30 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg new file mode 100644 index 00000000000..873d134ee3a --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Fast +version = 4 + +[metadata] +material = generic_abs +quality_type = fast +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = -1 + +[values] +speed_print = 60 +speed_travel = 80 +retraction_amount = 5 +retraction_speed = 30 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg new file mode 100644 index 00000000000..36f408498c6 --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer3 +name = Fine +version = 4 + +[metadata] +material = generic_abs +quality_type = fine +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = 1 + +[values] +speed_print = 40 +speed_travel = 70 +retraction_amount = 5 +retraction_speed = 30 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg new file mode 100644 index 00000000000..f027fa295f8 --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Standard +version = 4 + +[metadata] +material = generic_abs +quality_type = normal +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 60 +speed_travel = 80 +retraction_amount = 5 +retraction_speed = 30 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg new file mode 100644 index 00000000000..4ed26f1ded2 --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Very Fast +version = 4 + +[metadata] +material = generic_abs +quality_type = veryfast +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = -2 + +[values] +speed_print = 60 +speed_travel = 90 +retraction_amount = 5 +retraction_speed = 30 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg new file mode 100644 index 00000000000..5bb99865c87 --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Very Fine +version = 4 + +[metadata] +material = generic_abs +quality_type = veryfine +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = 2 + +[values] +speed_print = 35 +speed_travel = 70 +retraction_amount = 5 +retraction_speed = 30 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg new file mode 100644 index 00000000000..29ee87d4ab4 --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Draft +version = 4 + +[metadata] +material = generic_abs +quality_type = draft +setting_version = 21 +type = quality +variant = 0.6mm Nozzle +weight = -3 + +[values] +speed_print = 55 +speed_travel = 100 +retraction_amount = 6 +retraction_speed = 30 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg new file mode 100644 index 00000000000..37d421bcb0d --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Fast +version = 4 + +[metadata] +material = generic_abs +quality_type = fast +setting_version = 21 +type = quality +variant = 0.6mm Nozzle +weight = -1 + +[values] +speed_print = 50 +speed_travel = 100 +retraction_amount = 6 +retraction_speed = 30 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg new file mode 100644 index 00000000000..ede2b19a6d1 --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer3 +name = Very Fast +version = 4 + +[metadata] +material = generic_abs +quality_type = veryfast +setting_version = 21 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +speed_print = 50 +speed_travel = 100 +retraction_amount = 6 +retraction_speed = 30 diff --git a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg new file mode 100644 index 00000000000..498ec3781bf --- /dev/null +++ b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Fast +version = 4 + +[metadata] +material = generic_asa +quality_type = fast +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = -1 + +[values] +speed_print = 45 +speed_travel = 100 +retraction_amount = 4.5 +retraction_speed = 30 diff --git a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg new file mode 100644 index 00000000000..5ad56f447cb --- /dev/null +++ b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Fine +version = 4 + +[metadata] +material = generic_asa +quality_type = fine +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = -1 + +[values] +speed_print = 35 +speed_travel = 100 +retraction_amount = 4.5 +retraction_speed = 30 diff --git a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg new file mode 100644 index 00000000000..210c3e6d6dc --- /dev/null +++ b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Standard +version = 4 + +[metadata] +material = generic_asa +quality_type = normal +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 40 +speed_travel = 100 +retraction_amount = 4.5 +retraction_speed = 30 diff --git a/resources/quality/flashforge/flashforge_adventurer3_draft.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_draft.inst.cfg new file mode 100644 index 00000000000..21033c046b3 --- /dev/null +++ b/resources/quality/flashforge/flashforge_adventurer3_draft.inst.cfg @@ -0,0 +1,20 @@ +[general] +definition = flashforge_adventurer3 +name = Draft +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 21 +type = quality +weight = -3 + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +retraction_amount = 5 +retraction_speed = 25 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) diff --git a/resources/quality/flashforge/flashforge_adventurer3_fast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_fast.inst.cfg new file mode 100644 index 00000000000..cad53fac1d0 --- /dev/null +++ b/resources/quality/flashforge/flashforge_adventurer3_fast.inst.cfg @@ -0,0 +1,20 @@ +[general] +definition = flashforge_adventurer3 +name = Fast +version = 4 + +[metadata] +global_quality = True +quality_type = fast +setting_version = 21 +type = quality +weight = -1 + +[values] +layer_height = 0.25 +layer_height_0 = 0.3 +retraction_amount = 5 +retraction_speed = 25 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) diff --git a/resources/quality/flashforge/flashforge_adventurer3_fine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_fine.inst.cfg new file mode 100644 index 00000000000..0380146a385 --- /dev/null +++ b/resources/quality/flashforge/flashforge_adventurer3_fine.inst.cfg @@ -0,0 +1,20 @@ +[general] +definition = flashforge_adventurer3 +name = Fine +version = 4 + +[metadata] +global_quality = True +quality_type = fine +setting_version = 21 +type = quality +weight = 1 + +[values] +layer_height = 0.15 +layer_height_0 = 0.23 +retraction_amount = 5 +retraction_speed = 25 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) diff --git a/resources/quality/flashforge/flashforge_adventurer3_normal.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_normal.inst.cfg new file mode 100644 index 00000000000..4caa2921160 --- /dev/null +++ b/resources/quality/flashforge/flashforge_adventurer3_normal.inst.cfg @@ -0,0 +1,20 @@ +[general] +definition = flashforge_adventurer3 +name = Standard +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 21 +type = quality +weight = 0 + +[values] +layer_height = 0.2 +layer_height_0 = 0.3 +retraction_amount = 5 +retraction_speed = 25 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) diff --git a/resources/quality/flashforge/flashforge_adventurer3_vfast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_vfast.inst.cfg new file mode 100644 index 00000000000..1b229b4a993 --- /dev/null +++ b/resources/quality/flashforge/flashforge_adventurer3_vfast.inst.cfg @@ -0,0 +1,20 @@ +[general] +definition = flashforge_adventurer3 +name = Very Fast +version = 4 + +[metadata] +global_quality = True +quality_type = veryfast +setting_version = 21 +type = quality +weight = -2 + +[values] +layer_height = 0.3 +layer_height_0 = 0.3 +retraction_amount = 5 +retraction_speed = 25 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) diff --git a/resources/quality/flashforge/flashforge_adventurer3_vfine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_vfine.inst.cfg new file mode 100644 index 00000000000..f379409c4d4 --- /dev/null +++ b/resources/quality/flashforge/flashforge_adventurer3_vfine.inst.cfg @@ -0,0 +1,20 @@ +[general] +definition = flashforge_adventurer3 +name = Very Fine +version = 4 + +[metadata] +global_quality = True +quality_type = veryfine +setting_version = 21 +type = quality +weight = 2 + +[values] +layer_height = 0.1 +layer_height_0 = 0.18 +retraction_amount = 5 +retraction_speed = 25 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) diff --git a/resources/quality/flashforge/flashforge_adventurer4_draft.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_draft.inst.cfg new file mode 100644 index 00000000000..4e03ee768db --- /dev/null +++ b/resources/quality/flashforge/flashforge_adventurer4_draft.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Draft +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 21 +type = quality +weight = -3 + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) diff --git a/resources/quality/flashforge/flashforge_adventurer4_fast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_fast.inst.cfg new file mode 100644 index 00000000000..6a55f7c1e9d --- /dev/null +++ b/resources/quality/flashforge/flashforge_adventurer4_fast.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Fast +version = 4 + +[metadata] +global_quality = True +quality_type = fast +setting_version = 21 +type = quality +weight = -1 + +[values] +layer_height = 0.25 +layer_height_0 = 0.3 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) diff --git a/resources/quality/flashforge/flashforge_adventurer4_fine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_fine.inst.cfg new file mode 100644 index 00000000000..e6d44d631e5 --- /dev/null +++ b/resources/quality/flashforge/flashforge_adventurer4_fine.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Fine +version = 4 + +[metadata] +global_quality = True +quality_type = fine +setting_version = 21 +type = quality +weight = 1 + +[values] +layer_height = 0.15 +layer_height_0 = 0.23 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) diff --git a/resources/quality/flashforge/flashforge_adventurer4_normal.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_normal.inst.cfg new file mode 100644 index 00000000000..0b0e69f8c67 --- /dev/null +++ b/resources/quality/flashforge/flashforge_adventurer4_normal.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Standard +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 21 +type = quality +weight = 0 + +[values] +layer_height = 0.2 +layer_height_0 = 0.3 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) diff --git a/resources/quality/flashforge/flashforge_adventurer4_vfast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_vfast.inst.cfg new file mode 100644 index 00000000000..a38f55477b7 --- /dev/null +++ b/resources/quality/flashforge/flashforge_adventurer4_vfast.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Very Fast +version = 4 + +[metadata] +global_quality = True +quality_type = veryfast +setting_version = 21 +type = quality +weight = -2 + +[values] +layer_height = 0.3 +layer_height_0 = 0.3 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) diff --git a/resources/quality/flashforge/flashforge_adventurer4_vfine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_vfine.inst.cfg new file mode 100644 index 00000000000..9ffcb1e44bb --- /dev/null +++ b/resources/quality/flashforge/flashforge_adventurer4_vfine.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Very Fine +version = 4 + +[metadata] +global_quality = True +quality_type = veryfine +setting_version = 21 +type = quality +weight = 2 + +[values] +layer_height = 0.1 +layer_height_0 = 0.18 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg new file mode 100644 index 00000000000..7a33b8e486e --- /dev/null +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Draft +version = 4 + +[metadata] +material = generic_pc +quality_type = draft +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = -3 + +[values] +speed_print = 50 +speed_travel = 90 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg new file mode 100644 index 00000000000..d6ff4cac8e3 --- /dev/null +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Fast +version = 4 + +[metadata] +material = generic_pc +quality_type = fast +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = -1 + +[values] +speed_print = 40 +speed_travel = 80 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg new file mode 100644 index 00000000000..6b44a5dfc30 --- /dev/null +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Standard +version = 4 + +[metadata] +material = generic_pc +quality_type = normal +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 40 +speed_travel = 80 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg new file mode 100644 index 00000000000..0e7691a28d4 --- /dev/null +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Very Fast +version = 4 + +[metadata] +material = generic_pc +quality_type = veryfast +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = -2 + +[values] +speed_print = 50 +speed_travel = 90 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg new file mode 100644 index 00000000000..d7afbddbcdf --- /dev/null +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Draft +version = 4 + +[metadata] +material = generic_pc +quality_type = draft +setting_version = 21 +type = quality +variant = 0.6mm Nozzle +weight = -3 + +[values] +speed_print = 60 +speed_travel = 100 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg new file mode 100644 index 00000000000..9267502a890 --- /dev/null +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Fast +version = 4 + +[metadata] +material = generic_pc +quality_type = fast +setting_version = 21 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +speed_print = 50 +speed_travel = 100 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg new file mode 100644 index 00000000000..41fbacd6352 --- /dev/null +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Very Fast +version = 4 + +[metadata] +material = generic_pc +quality_type = veryfast +setting_version = 21 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +speed_print = 50 +speed_travel = 100 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg new file mode 100644 index 00000000000..b2927df6684 --- /dev/null +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Draft +version = 4 + +[metadata] +material = generic_pc +quality_type = draft +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = -3 + +[values] +speed_print = 50 +speed_travel = 90 +retraction_amount = 6 +retraction_speed = 30 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg new file mode 100644 index 00000000000..f341d7724fe --- /dev/null +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Fast +version = 4 + +[metadata] +material = generic_pc +quality_type = fast +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = -1 + +[values] +speed_print = 40 +speed_travel = 80 +retraction_amount = 6 +retraction_speed = 30 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg new file mode 100644 index 00000000000..1e886484449 --- /dev/null +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Standard +version = 4 + +[metadata] +material = generic_pc +quality_type = normal +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 40 +speed_travel = 80 +retraction_amount = 6 +retraction_speed = 30 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg new file mode 100644 index 00000000000..2b3e88cdd77 --- /dev/null +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Very Fast +version = 4 + +[metadata] +material = generic_pc +quality_type = veryfast +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = -2 + +[values] +speed_print = 50 +speed_travel = 90 +retraction_amount = 6 +retraction_speed = 30 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg new file mode 100644 index 00000000000..3f6716dcffb --- /dev/null +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Draft +version = 4 + +[metadata] +material = generic_pc +quality_type = draft +setting_version = 21 +type = quality +variant = 0.6mm Nozzle +weight = -3 + +[values] +speed_print = 60 +speed_travel = 100 +retraction_amount = 6 +retraction_speed = 30 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg new file mode 100644 index 00000000000..1b712bfa468 --- /dev/null +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Fast +version = 4 + +[metadata] +material = generic_pc +quality_type = fast +setting_version = 21 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +speed_print = 50 +speed_travel = 100 +retraction_amount = 6 +retraction_speed = 30 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg new file mode 100644 index 00000000000..a39d97af60d --- /dev/null +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Very Fast +version = 4 + +[metadata] +material = generic_pc +quality_type = veryfast +setting_version = 21 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +speed_print = 50 +speed_travel = 100 +retraction_amount = 6 +retraction_speed = 30 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg new file mode 100644 index 00000000000..3214b1e65fb --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Fine +version = 4 + +[metadata] +material = generic_petg +quality_type = fine +setting_version = 21 +type = quality +variant = 0.3mm Nozzle +weight = 1 + +[values] +speed_print = 50 +speed_travel = 80 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg new file mode 100644 index 00000000000..d47b336d628 --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Very Fine +version = 4 + +[metadata] +material = generic_petg +quality_type = veryfine +setting_version = 21 +type = quality +variant = 0.3mm Nozzle +weight = 2 + +[values] +speed_print = 50 +speed_travel = 80 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg new file mode 100644 index 00000000000..ac524079927 --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Draft +version = 4 + +[metadata] +material = generic_petg +quality_type = draft +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = -3 + +[values] +speed_print = 65 +speed_travel = 100 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg new file mode 100644 index 00000000000..3650f3e826d --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Fast +version = 4 + +[metadata] +material = generic_petg +quality_type = fast +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = -1 + +[values] +speed_print = 55 +speed_travel = 85 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg new file mode 100644 index 00000000000..ac4fc97e2e4 --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Fine +version = 4 + +[metadata] +material = generic_petg +quality_type = fine +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = 1 + +[values] +speed_print = 40 +speed_travel = 80 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg new file mode 100644 index 00000000000..7008a176b19 --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Standard +version = 4 + +[metadata] +material = generic_petg +quality_type = normal +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 50 +speed_travel = 80 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg new file mode 100644 index 00000000000..5a694d08049 --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Very Fast +version = 4 + +[metadata] +material = generic_petg +quality_type = veryfast +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = -2 + +[values] +speed_print = 60 +speed_travel = 90 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg new file mode 100644 index 00000000000..1677dbd0be1 --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Very Fine +version = 4 + +[metadata] +material = generic_petg +quality_type = veryfine +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = 2 + +[values] +speed_print = 40 +speed_travel = 80 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg new file mode 100644 index 00000000000..70fad425e8b --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Draft +version = 4 + +[metadata] +material = generic_petg +quality_type = draft +setting_version = 21 +type = quality +variant = 0.6mm Nozzle +weight = -3 + +[values] +speed_print = 65 +speed_travel = 100 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg new file mode 100644 index 00000000000..d13a93b2519 --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Fast +version = 4 + +[metadata] +material = generic_petg +quality_type = fast +setting_version = 21 +type = quality +variant = 0.6mm Nozzle +weight = -1 + +[values] +speed_print = 50 +speed_travel = 100 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg new file mode 100644 index 00000000000..5bbfb6e05ee --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Very Fast +version = 4 + +[metadata] +material = generic_petg +quality_type = veryfast +setting_version = 21 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +speed_print = 50 +speed_travel = 100 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg new file mode 100644 index 00000000000..434fc747178 --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Fine +version = 4 + +[metadata] +material = generic_petg +quality_type = fine +setting_version = 21 +type = quality +variant = 0.3mm Nozzle +weight = 1 + +[values] +speed_print = 50 +speed_travel = 80 +retraction_amount = 5 +retraction_speed = 25 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg new file mode 100644 index 00000000000..e89b76891d1 --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Very Fine +version = 4 + +[metadata] +material = generic_petg +quality_type = veryfine +setting_version = 21 +type = quality +variant = 0.3mm Nozzle +weight = 2 + +[values] +speed_print = 50 +speed_travel = 80 +retraction_amount = 5 +retraction_speed = 25 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg new file mode 100644 index 00000000000..44444a4b1fe --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Draft +version = 4 + +[metadata] +material = generic_petg +quality_type = draft +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = -3 + +[values] +speed_print = 65 +speed_travel = 100 +retraction_amount = 5 +retraction_speed = 25 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg new file mode 100644 index 00000000000..6e5b64cd298 --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Fast +version = 4 + +[metadata] +material = generic_petg +quality_type = fast +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = -1 + +[values] +speed_print = 55 +speed_travel = 85 +retraction_amount = 5 +retraction_speed = 25 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg new file mode 100644 index 00000000000..d3fb7228752 --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Fine +version = 4 + +[metadata] +material = generic_petg +quality_type = fine +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = 1 + +[values] +speed_print = 40 +speed_travel = 80 +retraction_amount = 5 +retraction_speed = 25 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg new file mode 100644 index 00000000000..8ebb7e12b25 --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Standard +version = 4 + +[metadata] +material = generic_petg +quality_type = normal +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 50 +speed_travel = 80 +retraction_amount = 5 +retraction_speed = 25 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg new file mode 100644 index 00000000000..4bf1f7d3a04 --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Very Fast +version = 4 + +[metadata] +material = generic_petg +quality_type = veryfast +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = -2 + +[values] +speed_print = 60 +speed_travel = 90 +retraction_amount = 5 +retraction_speed = 25 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg new file mode 100644 index 00000000000..17f75527f24 --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Very Fine +version = 4 + +[metadata] +material = generic_petg +quality_type = veryfine +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = 2 + +[values] +speed_print = 40 +speed_travel = 80 +retraction_amount = 5 +retraction_speed = 25 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg new file mode 100644 index 00000000000..1d7a88a4df0 --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Draft +version = 4 + +[metadata] +material = generic_petg +quality_type = draft +setting_version = 21 +type = quality +variant = 0.6mm Nozzle +weight = -3 + +[values] +speed_print = 65 +speed_travel = 100 +retraction_amount = 5 +retraction_speed = 20 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg new file mode 100644 index 00000000000..428c853babf --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Fast +version = 4 + +[metadata] +material = generic_petg +quality_type = fast +setting_version = 21 +type = quality +variant = 0.6mm Nozzle +weight = -1 + +[values] +speed_print = 50 +speed_travel = 100 +retraction_amount = 5 +retraction_speed = 20 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg new file mode 100644 index 00000000000..54fd9c2d6a8 --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Very Fast +version = 4 + +[metadata] +material = generic_petg +quality_type = veryfast +setting_version = 21 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +speed_print = 50 +speed_travel = 100 +retraction_amount = 5 +retraction_speed = 20 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg new file mode 100644 index 00000000000..1816945692c --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = fine +setting_version = 21 +type = quality +variant = 0.3mm Nozzle +weight = 1 + +[values] +speed_print = 50 +speed_travel = 100 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg new file mode 100644 index 00000000000..803616ac359 --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Very Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = veryfine +setting_version = 21 +type = quality +variant = 0.3mm Nozzle +weight = 2 + +[values] +speed_print = 45 +speed_travel = 100 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg new file mode 100644 index 00000000000..ea4e0e7e9a2 --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Draft +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = -3 + +[values] +speed_print = 75 +speed_travel = 100 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg new file mode 100644 index 00000000000..54d7d5e4e5a --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = fast +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = -1 + +[values] +speed_print = 65 +speed_travel = 100 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg new file mode 100644 index 00000000000..c8fcf7f4637 --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = fine +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = 1 + +[values] +speed_print = 50 +speed_travel = 80 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg new file mode 100644 index 00000000000..f3c48970d87 --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Standard +version = 4 + +[metadata] +material = generic_pla +quality_type = normal +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 60 +speed_travel = 80 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg new file mode 100644 index 00000000000..101d2f5382d --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Very Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = veryfast +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = -2 + +[values] +speed_print = 70 +speed_travel = 100 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg new file mode 100644 index 00000000000..bd044f5c752 --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Very Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = veryfine +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = 2 + +[values] +speed_print = 40 +speed_travel = 70 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg new file mode 100644 index 00000000000..893f27f740b --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Draft +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 21 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +speed_print = 60 +speed_travel = 100 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg new file mode 100644 index 00000000000..dc1dbb3290f --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = fast +setting_version = 21 +type = quality +variant = 0.6mm Nozzle +weight = -1 + +[values] +speed_print = 50 +speed_travel = 100 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg new file mode 100644 index 00000000000..d125db24b27 --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = flashforge_adventurer3 +name = Very Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = veryfast +setting_version = 21 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +speed_print = 55 +speed_travel = 100 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg new file mode 100644 index 00000000000..73c214ba7ba --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = fine +setting_version = 21 +type = quality +variant = 0.3mm Nozzle +weight = 1 + +[values] +speed_print = 50 +speed_travel = 100 +retraction_amount = 5 +retraction_speed = 30 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg new file mode 100644 index 00000000000..67674a80904 --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Very Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = veryfine +setting_version = 21 +type = quality +variant = 0.3mm Nozzle +weight = 2 + +[values] +speed_print = 45 +speed_travel = 100 +retraction_amount = 5 +retraction_speed = 30 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg new file mode 100644 index 00000000000..38a42fd174b --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Draft +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = -2 + +[values] +speed_print = 65 +speed_travel = 100 +retraction_amount = 5.5 +retraction_speed = 25 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg new file mode 100644 index 00000000000..4f4fc97a512 --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = fine +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = -1 + +[values] +speed_print = 55 +speed_travel = 100 +retraction_amount = 5.5 +retraction_speed = 25 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg new file mode 100644 index 00000000000..e2923e62483 --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = fine +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = 1 + +[values] +speed_print = 45 +speed_travel = 90 +retraction_amount = 5.5 +retraction_speed = 25 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg new file mode 100644 index 00000000000..3c7d6d77ff5 --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Standard +version = 4 + +[metadata] +material = generic_pla +quality_type = normal +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 50 +speed_travel = 100 +retraction_amount = 5.5 +retraction_speed = 25 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg new file mode 100644 index 00000000000..3ec1e8214a6 --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Very Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = veryfast +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = -2 + +[values] +speed_print = 60 +speed_travel = 100 +retraction_amount = 5.5 +retraction_speed = 25 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg new file mode 100644 index 00000000000..51a47cb7394 --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Very Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = veryfine +setting_version = 21 +type = quality +variant = 0.4mm Nozzle +weight = 2 + +[values] +speed_print = 40 +speed_travel = 80 +retraction_amount = 5.5 +retraction_speed = 25 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg new file mode 100644 index 00000000000..9ef5c564347 --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Draft +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 21 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +speed_print = 65 +speed_travel = 100 +retraction_amount = 6 +retraction_speed = 30 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg new file mode 100644 index 00000000000..86790e1c931 --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = fast +setting_version = 21 +type = quality +variant = 0.6mm Nozzle +weight = -1 + +[values] +speed_print = 60 +speed_travel = 100 +retraction_amount = 6 +retraction_speed = 30 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg new file mode 100644 index 00000000000..a29696a8ffb --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = flashforge_adventurer4 +name = Very Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = veryfast +setting_version = 21 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +speed_print = 60 +speed_travel = 100 +retraction_amount = 6 +retraction_speed = 30 From dedfdb1d88b718c8cc92cf83338c53de7cd6e279 Mon Sep 17 00:00:00 2001 From: Jeremie Date: Fri, 26 May 2023 14:34:29 +0200 Subject: [PATCH 005/765] Variants to setting_version 22 --- .../variants/flashforge/flashforge_adventurer3_0.3.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer3_0.4.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer3_0.6.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer4_0.3.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer4_0.4.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer4_0.6.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/resources/variants/flashforge/flashforge_adventurer3_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3_0.3.inst.cfg index 98319a87a75..9233d066d25 100644 --- a/resources/variants/flashforge/flashforge_adventurer3_0.3.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 21 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3_0.4.inst.cfg index 3357045ab6d..9217a0a5187 100644 --- a/resources/variants/flashforge/flashforge_adventurer3_0.4.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 21 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3_0.6.inst.cfg index aaf69b516df..5e712bb0f51 100644 --- a/resources/variants/flashforge/flashforge_adventurer3_0.6.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 21 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg index 56f983be94a..c7162ed63bf 100644 --- a/resources/variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 21 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg index c45a46dbc66..75b8cf227d3 100644 --- a/resources/variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 21 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg index 15bfd3f8be3..07898deed71 100644 --- a/resources/variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 21 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4_0.3.inst.cfg index 57a9dab4b14..36902259f16 100644 --- a/resources/variants/flashforge/flashforge_adventurer4_0.3.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 21 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4_0.4.inst.cfg index b451d4e6815..8433cc42d83 100644 --- a/resources/variants/flashforge/flashforge_adventurer4_0.4.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 21 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4_0.6.inst.cfg index 2f9568d49cf..39604fef550 100644 --- a/resources/variants/flashforge/flashforge_adventurer4_0.6.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 21 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg index bc12e7191d8..8c1a1d6e2f6 100644 --- a/resources/variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 21 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg index 2fc42fbb124..16d88764855 100644 --- a/resources/variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 21 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg index 8da55dd9d14..b9832c7d84d 100644 --- a/resources/variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 21 +setting_version = 22 type = variant [values] From fb5da34a71ca9164ad5685f91092fa00bc3fe84a Mon Sep 17 00:00:00 2001 From: Jeremie Date: Fri, 26 May 2023 14:36:19 +0200 Subject: [PATCH 006/765] Quality to setting_version 22 --- .../flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg | 2 +- .../abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg | 2 +- .../abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg | 2 +- .../flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg | 2 +- .../flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg | 2 +- .../abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg | 2 +- .../abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg | 2 +- .../abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg | 2 +- .../abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg | 2 +- .../flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg | 2 +- .../abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg | 2 +- .../flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg | 2 +- .../abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg | 2 +- .../abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg | 2 +- .../flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg | 2 +- .../flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg | 2 +- .../abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg | 2 +- .../abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg | 2 +- .../abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg | 2 +- .../abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg | 2 +- .../flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg | 2 +- .../abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg | 2 +- .../flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg | 2 +- .../flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg | 2 +- .../asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer3_draft.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer3_fast.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer3_fine.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer3_normal.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer3_vfast.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer3_vfine.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer4_draft.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer4_fast.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer4_fine.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer4_normal.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer4_vfast.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer4_vfine.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg | 2 +- .../flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg | 2 +- .../pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg | 2 +- .../pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg | 2 +- .../flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg | 2 +- .../flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg | 2 +- .../pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg | 2 +- .../pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg | 2 +- .../pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg | 2 +- .../pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg | 2 +- .../flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg | 2 +- .../pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg | 2 +- .../flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg | 2 +- .../pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg | 2 +- .../pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg | 2 +- .../flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg | 2 +- .../flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg | 2 +- .../pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg | 2 +- .../pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg | 2 +- .../pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg | 2 +- .../pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg | 2 +- .../flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg | 2 +- .../pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg | 2 +- 95 files changed, 95 insertions(+), 95 deletions(-) diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg index 17d91298387..63488b25cf3 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 21 +setting_version = 22 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg index d081363cde2..466e76686a1 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfine -setting_version = 21 +setting_version = 22 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg index f392ad07fa0..678ab9d3711 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg index 4bba44bee90..0b2e235d921 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg index 7e46e9dd358..b71dc27d96f 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg index 23b4fd2cb3d..9641fb7befd 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg index 9370e5d6475..5c1c0138e8a 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfast -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg index 158014be49c..465ee99c889 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfine -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg index 29bff5b0903..7fae92a4878 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 21 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg index 30d4ee5af8b..7f99640845c 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 21 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg index 468aeb22442..c0212259a13 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfast -setting_version = 21 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg index 977fd8a7b4f..ac6dfe5a332 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 21 +setting_version = 22 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg index 880009f3da0..4c4a0873d31 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfine -setting_version = 21 +setting_version = 22 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg index 2a8c1c2f6c2..62ad84398cc 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg index 873d134ee3a..b15ad40f221 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg index 36f408498c6..1d325765ff3 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg index f027fa295f8..c4e43d5eac8 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg index 4ed26f1ded2..f3f8ada9d91 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfast -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg index 5bb99865c87..5eefe214071 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfine -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg index 29ee87d4ab4..bf7f894937f 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 21 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg index 37d421bcb0d..e97b00157b7 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 21 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg index ede2b19a6d1..4ccdd810533 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfast -setting_version = 21 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg index 498ec3781bf..5677c663f1b 100644 --- a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa quality_type = fast -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg index 5ad56f447cb..f9f6c6287d4 100644 --- a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa quality_type = fine -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg index 210c3e6d6dc..ba9bb86f37f 100644 --- a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa quality_type = normal -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/flashforge_adventurer3_draft.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_draft.inst.cfg index 21033c046b3..61123554fb0 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_draft.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 21 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/flashforge/flashforge_adventurer3_fast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_fast.inst.cfg index cad53fac1d0..f9d1cda998d 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_fast.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 21 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/flashforge/flashforge_adventurer3_fine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_fine.inst.cfg index 0380146a385..2d0d2d5b81d 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_fine.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 21 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/flashforge/flashforge_adventurer3_normal.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_normal.inst.cfg index 4caa2921160..b70f28c86f4 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_normal.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 21 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/flashforge/flashforge_adventurer3_vfast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_vfast.inst.cfg index 1b229b4a993..3f6379a6f57 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_vfast.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = veryfast -setting_version = 21 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/flashforge/flashforge_adventurer3_vfine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_vfine.inst.cfg index f379409c4d4..b2015d40ea1 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_vfine.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = veryfine -setting_version = 21 +setting_version = 22 type = quality weight = 2 diff --git a/resources/quality/flashforge/flashforge_adventurer4_draft.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_draft.inst.cfg index 4e03ee768db..b2f6dc976ca 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_draft.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 21 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/flashforge/flashforge_adventurer4_fast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_fast.inst.cfg index 6a55f7c1e9d..a0a38c36557 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_fast.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 21 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/flashforge/flashforge_adventurer4_fine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_fine.inst.cfg index e6d44d631e5..8a5615287bd 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_fine.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 21 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/flashforge/flashforge_adventurer4_normal.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_normal.inst.cfg index 0b0e69f8c67..64d0df68fcd 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_normal.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 21 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/flashforge/flashforge_adventurer4_vfast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_vfast.inst.cfg index a38f55477b7..0b78e0e23e4 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_vfast.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = veryfast -setting_version = 21 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/flashforge/flashforge_adventurer4_vfine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_vfine.inst.cfg index 9ffcb1e44bb..d3012d5975a 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_vfine.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = veryfine -setting_version = 21 +setting_version = 22 type = quality weight = 2 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg index 7a33b8e486e..92467d9d577 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg index d6ff4cac8e3..85811430f48 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg index 6b44a5dfc30..53431e511b0 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg index 0e7691a28d4..6d35450f90d 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = veryfast -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg index d7afbddbcdf..bf0c0cce2d6 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 21 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg index 9267502a890..c7599784fab 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 21 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg index 41fbacd6352..7efde414c29 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = veryfast -setting_version = 21 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg index b2927df6684..a593db1ef29 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg index f341d7724fe..7d7e9377262 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg index 1e886484449..0806db424ed 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg index 2b3e88cdd77..3556c8bf062 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = veryfast -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg index 3f6716dcffb..4cd2861cbe9 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 21 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg index 1b712bfa468..14e162a1fc4 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 21 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg index a39d97af60d..f5a918d859f 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = veryfast -setting_version = 21 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg index 3214b1e65fb..e640d316fe7 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 21 +setting_version = 22 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg index d47b336d628..7ef3d79fe8a 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfine -setting_version = 21 +setting_version = 22 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg index ac524079927..c51711ca2df 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg index 3650f3e826d..abc16dfcb70 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg index ac4fc97e2e4..6c39de897c6 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg index 7008a176b19..be51926c7a5 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg index 5a694d08049..1d8286d2047 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfast -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg index 1677dbd0be1..d06baed13c8 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfine -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg index 70fad425e8b..2f54c96ea41 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 21 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg index d13a93b2519..aa55c43ad73 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 21 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg index 5bbfb6e05ee..cb226be3c45 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfast -setting_version = 21 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg index 434fc747178..a17c8d9648d 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 21 +setting_version = 22 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg index e89b76891d1..5091364e724 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfine -setting_version = 21 +setting_version = 22 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg index 44444a4b1fe..3a144895591 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg index 6e5b64cd298..b573bf5ea6f 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg index d3fb7228752..e00ff6968ae 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg index 8ebb7e12b25..56df96187f0 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg index 4bf1f7d3a04..7001124129f 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfast -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg index 17f75527f24..a6249569343 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfine -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg index 1d7a88a4df0..5976fdf2258 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 21 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg index 428c853babf..39d500ea83d 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 21 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg index 54fd9c2d6a8..0d7f397d7e5 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfast -setting_version = 21 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg index 1816945692c..ee221f58146 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 21 +setting_version = 22 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg index 803616ac359..10861d3ac89 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfine -setting_version = 21 +setting_version = 22 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg index ea4e0e7e9a2..b31667ce5f1 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg index 54d7d5e4e5a..1517fb90868 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg index c8fcf7f4637..b92f15246c9 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg index f3c48970d87..cb7476638bb 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg index 101d2f5382d..970670b2113 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfast -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg index bd044f5c752..a38658883b3 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfine -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg index 893f27f740b..620302a4814 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 21 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg index dc1dbb3290f..e2f91de8124 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 21 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg index d125db24b27..b9f6ae4e88f 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfast -setting_version = 21 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg index 73c214ba7ba..3ef15e17363 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 21 +setting_version = 22 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg index 67674a80904..cdd22c946f4 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfine -setting_version = 21 +setting_version = 22 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg index 38a42fd174b..993064a6dfe 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg index 4f4fc97a512..2d4aff0fe66 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg index e2923e62483..37e0731f504 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg index 3c7d6d77ff5..8e2fe1b043e 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg index 3ec1e8214a6..dc887117c00 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfast -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg index 51a47cb7394..cdd5aae558e 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfine -setting_version = 21 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg index 9ef5c564347..ac4966df734 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 21 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg index 86790e1c931..77538fb95e9 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 21 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg index a29696a8ffb..923d526e69b 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfast -setting_version = 21 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -2 From 361937fd38d3634c0d87a245a90e8ecbea12ac3f Mon Sep 17 00:00:00 2001 From: ThatGuyZim <89188660+ThatGuyZim@users.noreply.github.com> Date: Mon, 10 Jul 2023 13:42:39 +0800 Subject: [PATCH 007/765] Add files via upload --- .../definitions/anycubic_kobra2.def.json | 90 ++++++++++++++++++ .../anycubic_kobra2_extruder_0.def.json | 16 ++++ resources/meshes/anycubic_kobra2_platform.stl | Bin 0 -> 22684 bytes 3 files changed, 106 insertions(+) create mode 100644 resources/definitions/anycubic_kobra2.def.json create mode 100644 resources/extruders/anycubic_kobra2_extruder_0.def.json create mode 100644 resources/meshes/anycubic_kobra2_platform.stl diff --git a/resources/definitions/anycubic_kobra2.def.json b/resources/definitions/anycubic_kobra2.def.json new file mode 100644 index 00000000000..1ed3403b846 --- /dev/null +++ b/resources/definitions/anycubic_kobra2.def.json @@ -0,0 +1,90 @@ +{ + "version": 2, + "name": "Anycubic Kobra 2", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "ThatGuyZim", + "manufacturer": "Anycubic", + "file_formats": "text/x-gcode", + "platform": "anycubic_kobra2_platform.stl", + "machine_extruder_trains": { "0": "anycubic_kobra2_extruder_0" } + }, + "overrides": + { + "acceleration_enabled": { "value": true }, + "acceleration_print": { "value": 2500 }, + "acceleration_travel": { "value": 3000 }, + "acceleration_travel_layer_0": { "value": "acceleration_travel" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "gantry_height": { "value": "0" }, + "infill_before_walls": { "value": false }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 220 }, + "machine_height": { "default_value": 250 }, + "machine_width": { "default_value": 220 }, + "machine_end_gcode": { "default_value": "M104 S0 ; turn off extruder\nM140 S0 ; turn off bed\nM107 ; fan off\nG91 ;relative positioning\nG1 E-2 F3000 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 F3000 ;move Z up a bit and retract filament even more\nG28 X0 Y0 F3000 ;move X/Y to min endstops, so the head is out of the way\nG1 Y210 F3000\nM84 ;steppers off\nG90\nM300 S1318 P266" }, + "machine_heated_bed": { "default_value": true }, + "machine_name": { "default_value": "Anycubic Kobra 2" }, + "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ; use absolute coordinates\nM82 ; use absolute distances for extrusion\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 ; home all axes\nM300 S1318 P266\nG1 Z5 F5000 ; lift nozzle\nG1 X5 Y0 F3000\nG1 Z0.3 ; set nozzle height\nG92 E0\nG1 X50 Y0 E20 F500 ; Extrude 20mm of filament in a 5cm line \nG92 E0 ; zero the extruded length again \nG1 E-4.5 F4800 ; Retract a little \nG92 E0\nG1 X120 F4000 ; Quickly wipe away from the filament line\nM117 ; Printing\u2026\nG5" }, + "jerk_enabled": { "value": true }, + "jerk_print": { "value": 8 }, + "jerk_travel": { "value": 10 }, + "jerk_travel_layer_0": { "value": "jerk_travel" }, + "machine_max_acceleration_e": { "value": 2500 }, + "machine_max_acceleration_x": { "value": 2500 }, + "machine_max_acceleration_y": { "value": 2500 }, + "machine_max_acceleration_z": { "value": 800 }, + "machine_max_feedrate_e": { "default_value": 100 }, + "machine_max_feedrate_x": { "default_value": 300 }, + "machine_max_feedrate_y": { "default_value": 250 }, + "machine_max_feedrate_z": { "default_value": 40 }, + "machine_max_jerk_e": { "value": 10 }, + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 2 }, + "material_bed_temperature": { "maximum_value_warning": 110 }, + "material_bed_temperature_layer_0": { "maximum_value_warning": 110 }, + "material_diameter": { "default_value": 1.75 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_print_temperature": { "maximum_value_warning": 260 }, + "material_print_temperature_layer_0": + { + "maximum_value_warning": 260, + "value": "material_print_temperature + 5" + }, + "material_initial_print_temperature": + { + "maximum_value_warning": 260, + "value": "material_print_temperature + 5" + }, + "retraction_amount": { "value": 2 }, + "retraction_combing": { "value": "'off'" }, + "retraction_combing_max_distance": { "value": 30 }, + "retraction_min_travel": { "value": 1 }, + "retraction_prime_speed": { "maximum_value_warning": 100 }, + "retraction_retract_speed": { "maximum_value_warning": 100}, + "retraction_speed": + { + "maximum_value_warning": 100, + "value": 80 + }, + "speed_print": { "value": 80 }, + "speed_support": { "value": "speed_wall_0" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_travel": + { + "maximum_value": 200.0, + "maximum_value_warning": 175.0, + "value": 125 + }, + "speed_travel_layer_0": { "value": "speed_travel" }, + "speed_wall_x": { "value": "speed_wall" }, + "travel_avoid_supports": { "value": true }, + "travel_retract_before_outer_wall": { "value": true }, + "layer_height": { "default_value": 0.2 }, + "wall_line_count": { "value": 3 }, + "top_bottom_pattern": { "default_value": "zigzag" }, + "wall_thickness": { "value": 1.2 } + } +} diff --git a/resources/extruders/anycubic_kobra2_extruder_0.def.json b/resources/extruders/anycubic_kobra2_extruder_0.def.json new file mode 100644 index 00000000000..adfdb45986b --- /dev/null +++ b/resources/extruders/anycubic_kobra2_extruder_0.def.json @@ -0,0 +1,16 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "anycubic_kobra2", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/meshes/anycubic_kobra2_platform.stl b/resources/meshes/anycubic_kobra2_platform.stl new file mode 100644 index 0000000000000000000000000000000000000000..339d8c15eb1c657f50614660689dde74838684bc GIT binary patch literal 22684 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 F{{vu-Q0)K! literal 0 HcmV?d00001 From 3eb4d0257a2cb0fbdd6b6d64c4fa55d8cd754a2a Mon Sep 17 00:00:00 2001 From: ThatGuyZim Date: Mon, 10 Jul 2023 05:43:43 +0000 Subject: [PATCH 008/765] Applied printer-linter format --- .../definitions/anycubic_kobra2.def.json | 58 +++++++++---------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/resources/definitions/anycubic_kobra2.def.json b/resources/definitions/anycubic_kobra2.def.json index 1ed3403b846..aea6b4d344d 100644 --- a/resources/definitions/anycubic_kobra2.def.json +++ b/resources/definitions/anycubic_kobra2.def.json @@ -13,63 +13,64 @@ }, "overrides": { - "acceleration_enabled": { "value": true }, + "acceleration_enabled": { "value": true }, "acceleration_print": { "value": 2500 }, "acceleration_travel": { "value": 3000 }, "acceleration_travel_layer_0": { "value": "acceleration_travel" }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "gantry_height": { "value": "0" }, - "infill_before_walls": { "value": false }, + "infill_before_walls": { "value": false }, + "jerk_enabled": { "value": true }, + "jerk_print": { "value": 8 }, + "jerk_travel": { "value": 10 }, + "jerk_travel_layer_0": { "value": "jerk_travel" }, + "layer_height": { "default_value": 0.2 }, "machine_center_is_zero": { "default_value": false }, "machine_depth": { "default_value": 220 }, - "machine_height": { "default_value": 250 }, - "machine_width": { "default_value": 220 }, "machine_end_gcode": { "default_value": "M104 S0 ; turn off extruder\nM140 S0 ; turn off bed\nM107 ; fan off\nG91 ;relative positioning\nG1 E-2 F3000 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 F3000 ;move Z up a bit and retract filament even more\nG28 X0 Y0 F3000 ;move X/Y to min endstops, so the head is out of the way\nG1 Y210 F3000\nM84 ;steppers off\nG90\nM300 S1318 P266" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_heated_bed": { "default_value": true }, - "machine_name": { "default_value": "Anycubic Kobra 2" }, - "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ; use absolute coordinates\nM82 ; use absolute distances for extrusion\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 ; home all axes\nM300 S1318 P266\nG1 Z5 F5000 ; lift nozzle\nG1 X5 Y0 F3000\nG1 Z0.3 ; set nozzle height\nG92 E0\nG1 X50 Y0 E20 F500 ; Extrude 20mm of filament in a 5cm line \nG92 E0 ; zero the extruded length again \nG1 E-4.5 F4800 ; Retract a little \nG92 E0\nG1 X120 F4000 ; Quickly wipe away from the filament line\nM117 ; Printing\u2026\nG5" }, - "jerk_enabled": { "value": true }, - "jerk_print": { "value": 8 }, - "jerk_travel": { "value": 10 }, - "jerk_travel_layer_0": { "value": "jerk_travel" }, - "machine_max_acceleration_e": { "value": 2500 }, + "machine_height": { "default_value": 250 }, + "machine_max_acceleration_e": { "value": 2500 }, "machine_max_acceleration_x": { "value": 2500 }, "machine_max_acceleration_y": { "value": 2500 }, "machine_max_acceleration_z": { "value": 800 }, - "machine_max_feedrate_e": { "default_value": 100 }, - "machine_max_feedrate_x": { "default_value": 300 }, + "machine_max_feedrate_e": { "default_value": 100 }, + "machine_max_feedrate_x": { "default_value": 300 }, "machine_max_feedrate_y": { "default_value": 250 }, "machine_max_feedrate_z": { "default_value": 40 }, "machine_max_jerk_e": { "value": 10 }, "machine_max_jerk_xy": { "value": 10 }, "machine_max_jerk_z": { "value": 2 }, - "material_bed_temperature": { "maximum_value_warning": 110 }, + "machine_name": { "default_value": "Anycubic Kobra 2" }, + "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ; use absolute coordinates\nM82 ; use absolute distances for extrusion\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 ; home all axes\nM300 S1318 P266\nG1 Z5 F5000 ; lift nozzle\nG1 X5 Y0 F3000\nG1 Z0.3 ; set nozzle height\nG92 E0\nG1 X50 Y0 E20 F500 ; Extrude 20mm of filament in a 5cm line \nG92 E0 ; zero the extruded length again \nG1 E-4.5 F4800 ; Retract a little \nG92 E0\nG1 X120 F4000 ; Quickly wipe away from the filament line\nM117 ; Printing\u2026\nG5" }, + "machine_width": { "default_value": 220 }, + "material_bed_temperature": { "maximum_value_warning": 110 }, "material_bed_temperature_layer_0": { "maximum_value_warning": 110 }, - "material_diameter": { "default_value": 1.75 }, - "material_final_print_temperature": { "value": "material_print_temperature" }, - "material_print_temperature": { "maximum_value_warning": 260 }, - "material_print_temperature_layer_0": + "material_diameter": { "default_value": 1.75 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_initial_print_temperature": { "maximum_value_warning": 260, "value": "material_print_temperature + 5" }, - "material_initial_print_temperature": - { + "material_print_temperature": { "maximum_value_warning": 260 }, + "material_print_temperature_layer_0": + { "maximum_value_warning": 260, "value": "material_print_temperature + 5" }, - "retraction_amount": { "value": 2 }, + "retraction_amount": { "value": 2 }, "retraction_combing": { "value": "'off'" }, "retraction_combing_max_distance": { "value": 30 }, "retraction_min_travel": { "value": 1 }, "retraction_prime_speed": { "maximum_value_warning": 100 }, - "retraction_retract_speed": { "maximum_value_warning": 100}, + "retraction_retract_speed": { "maximum_value_warning": 100 }, "retraction_speed": { "maximum_value_warning": 100, "value": 80 }, - "speed_print": { "value": 80 }, + "speed_print": { "value": 80 }, "speed_support": { "value": "speed_wall_0" }, "speed_support_interface": { "value": "speed_topbottom" }, "speed_travel": @@ -80,11 +81,10 @@ }, "speed_travel_layer_0": { "value": "speed_travel" }, "speed_wall_x": { "value": "speed_wall" }, + "top_bottom_pattern": { "default_value": "zigzag" }, "travel_avoid_supports": { "value": true }, "travel_retract_before_outer_wall": { "value": true }, - "layer_height": { "default_value": 0.2 }, - "wall_line_count": { "value": 3 }, - "top_bottom_pattern": { "default_value": "zigzag" }, - "wall_thickness": { "value": 1.2 } + "wall_line_count": { "value": 3 }, + "wall_thickness": { "value": 1.2 } } -} +} \ No newline at end of file From 40467fb961ccd55c90cb762cca167554c580b641 Mon Sep 17 00:00:00 2001 From: Asterchades Date: Tue, 11 Jul 2023 16:20:32 +1000 Subject: [PATCH 009/765] Update sovol_base_planetary.def.json Removed retraction_speed and material_print_temperature hard values. These should be defined by the material properties, not the printer definition. --- resources/definitions/sovol_base_planetary.def.json | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/resources/definitions/sovol_base_planetary.def.json b/resources/definitions/sovol_base_planetary.def.json index 8deee570120..54fe94eb8ca 100644 --- a/resources/definitions/sovol_base_planetary.def.json +++ b/resources/definitions/sovol_base_planetary.def.json @@ -13,8 +13,6 @@ "machine_acceleration": { "value": 1000 }, "machine_max_feedrate_e": { "value": 40 }, "machine_max_jerk_xy": { "value": 5 }, - "material_print_temperature": { "value": 195 }, - "retraction_speed": { "default_value": 30 }, "z_seam_corner": { "value": "'z_seam_corner_weighted'" } } -} \ No newline at end of file +} From 33d3c2bd84a8052a7405020586c31740db93a43d Mon Sep 17 00:00:00 2001 From: Asterchades Date: Tue, 11 Jul 2023 06:21:30 +0000 Subject: [PATCH 010/765] Applied printer-linter format --- resources/definitions/sovol_base_planetary.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/sovol_base_planetary.def.json b/resources/definitions/sovol_base_planetary.def.json index 54fe94eb8ca..a132f105a8a 100644 --- a/resources/definitions/sovol_base_planetary.def.json +++ b/resources/definitions/sovol_base_planetary.def.json @@ -15,4 +15,4 @@ "machine_max_jerk_xy": { "value": 5 }, "z_seam_corner": { "value": "'z_seam_corner_weighted'" } } -} +} \ No newline at end of file From 10ca5634997f3c5711c082331d67a9a2eda3201b Mon Sep 17 00:00:00 2001 From: GregValiant <64202104+GregValiant@users.noreply.github.com> Date: Thu, 22 Jun 2023 13:21:14 -0400 Subject: [PATCH 011/765] Obsolete DisplayFilename and DisplayProgress These two files become obsolete if DisplayInfoOnLCD is accepted. --- .../scripts/DisplayFilenameAndLayerOnLCD.py | 109 ---------- .../scripts/DisplayProgressOnLCD.py | 198 ------------------ 2 files changed, 307 deletions(-) delete mode 100644 plugins/PostProcessingPlugin/scripts/DisplayFilenameAndLayerOnLCD.py delete mode 100644 plugins/PostProcessingPlugin/scripts/DisplayProgressOnLCD.py diff --git a/plugins/PostProcessingPlugin/scripts/DisplayFilenameAndLayerOnLCD.py b/plugins/PostProcessingPlugin/scripts/DisplayFilenameAndLayerOnLCD.py deleted file mode 100644 index b9184b59c34..00000000000 --- a/plugins/PostProcessingPlugin/scripts/DisplayFilenameAndLayerOnLCD.py +++ /dev/null @@ -1,109 +0,0 @@ -# Cura PostProcessingPlugin -# Author: Amanda de Castilho -# Date: August 28, 2018 -# Modified: November 16, 2018 by Joshua Pope-Lewis - -# Description: This plugin shows custom messages about your print on the Status bar... -# Please look at the 5 options -# - Scrolling (SCROLL_LONG_FILENAMES) if enabled in Marlin and you aren't printing a small item select this option. -# - Name: By default it will use the name generated by Cura (EG: TT_Test_Cube) - Type a custom name in here -# - Start Num: Choose which number you prefer for the initial layer, 0 or 1 -# - Max Layer: Enabling this will show how many layers are in the entire print (EG: Layer 1 of 265!) -# - Add prefix 'Printing': Enabling this will add the prefix 'Printing' - -from ..Script import Script -from UM.Application import Application - -class DisplayFilenameAndLayerOnLCD(Script): - def __init__(self): - super().__init__() - - def getSettingDataString(self): - return """{ - "name": "Display Filename And Layer On LCD", - "key": "DisplayFilenameAndLayerOnLCD", - "metadata": {}, - "version": 2, - "settings": - { - "scroll": - { - "label": "Scroll enabled/Small layers?", - "description": "If SCROLL_LONG_FILENAMES is enabled select this setting however, if the model is small disable this setting!", - "type": "bool", - "default_value": false - }, - "name": - { - "label": "Text to display:", - "description": "By default the current filename will be displayed on the LCD. Enter text here to override the filename and display something else.", - "type": "str", - "default_value": "" - }, - "startNum": - { - "label": "Initial layer number:", - "description": "Choose which number you prefer for the initial layer, 0 or 1", - "type": "int", - "default_value": 0, - "minimum_value": 0, - "maximum_value": 1 - }, - "maxlayer": - { - "label": "Display max layer?:", - "description": "Display how many layers are in the entire print on status bar?", - "type": "bool", - "default_value": true - }, - "addPrefixPrinting": - { - "label": "Add prefix 'Printing'?", - "description": "This will add the prefix 'Printing'", - "type": "bool", - "default_value": true - } - } - }""" - - def execute(self, data): - max_layer = 0 - lcd_text = "M117 " - if self.getSettingValueByKey("name") != "": - name = self.getSettingValueByKey("name") - else: - name = Application.getInstance().getPrintInformation().jobName - if self.getSettingValueByKey("addPrefixPrinting"): - lcd_text += "Printing " - if not self.getSettingValueByKey("scroll"): - lcd_text += "Layer " - else: - lcd_text += name + " - Layer " - i = self.getSettingValueByKey("startNum") - for layer in data: - display_text = lcd_text + str(i) - layer_index = data.index(layer) - lines = layer.split("\n") - for line in lines: - if line.startswith(";LAYER_COUNT:"): - max_layer = line - max_layer = max_layer.split(":")[1] - if self.getSettingValueByKey("startNum") == 0: - max_layer = str(int(max_layer) - 1) - if line.startswith(";LAYER:"): - if self.getSettingValueByKey("maxlayer"): - display_text = display_text + " of " + max_layer - if not self.getSettingValueByKey("scroll"): - display_text = display_text + " " + name - else: - if not self.getSettingValueByKey("scroll"): - display_text = display_text + " " + name + "!" - else: - display_text = display_text + "!" - line_index = lines.index(line) - lines.insert(line_index + 1, display_text) - i += 1 - final_lines = "\n".join(lines) - data[layer_index] = final_lines - - return data diff --git a/plugins/PostProcessingPlugin/scripts/DisplayProgressOnLCD.py b/plugins/PostProcessingPlugin/scripts/DisplayProgressOnLCD.py deleted file mode 100644 index eb749553192..00000000000 --- a/plugins/PostProcessingPlugin/scripts/DisplayProgressOnLCD.py +++ /dev/null @@ -1,198 +0,0 @@ -# Cura PostProcessingPlugin -# Author: Mathias Lyngklip Kjeldgaard, Alexander Gee, Kimmo Toivanen, Inigo Martinez -# Date: July 31, 2019 -# Modified: Nov 30, 2021 - -# Description: This plugin displays progress on the LCD. It can output the estimated time remaining and the completion percentage. - -from ..Script import Script - -import re -import datetime - -class DisplayProgressOnLCD(Script): - - def __init__(self): - super().__init__() - - def getSettingDataString(self): - return """{ - "name": "Display Progress On LCD", - "key": "DisplayProgressOnLCD", - "metadata": {}, - "version": 2, - "settings": - { - "time_remaining": - { - "label": "Time Remaining", - "description": "Select to write remaining time to the display.Select to write remaining time on the display using M117 status line message (almost all printers) or using M73 command (Prusa and Marlin 2 if enabled).", - "type": "bool", - "default_value": false - }, - "time_remaining_method": - { - "label": "Time Reporting Method", - "description": "How should remaining time be shown on the display? It could use a generic message command (M117, almost all printers), or a specialised time remaining command (M73, Prusa and Marlin 2).", - "type": "enum", - "options": { - "m117":"M117 - All printers", - "m73":"M73 - Prusa, Marlin 2", - "m118":"M118 - Octoprint" - }, - "enabled": "time_remaining", - "default_value": "m117" - }, - "update_frequency": - { - "label": "Update frequency", - "description": "Update remaining time for every layer or periodically every minute or faster.", - "type": "enum", - "options": {"0":"Every layer","15":"Every 15 seconds","30":"Every 30 seconds","60":"Every minute"}, - "default_value": "0", - "enabled": "time_remaining" - }, - "percentage": - { - "label": "Percentage", - "description": "When enabled, set the completion bar percentage on the LCD using Marlin's M73 command.", - "type": "bool", - "default_value": false - } - } - }""" - - # Get the time value from a line as a float. - # Example line ;TIME_ELAPSED:1234.6789 or ;TIME:1337 - def getTimeValue(self, line): - list_split = re.split(":", line) # Split at ":" so we can get the numerical value - return float(list_split[1]) # Convert the numerical portion to a float - - def outputTime(self, lines, line_index, time_left, mode): - # Do some math to get the time left in seconds into the right format. (HH,MM,SS) - time_left = max(time_left, 0) - m, s = divmod(time_left, 60) - h, m = divmod(m, 60) - # Create the string - if mode == "m117": - current_time_string = "{:d}h{:02d}m{:02d}s".format(int(h), int(m), int(s)) - # And now insert that into the GCODE - lines.insert(line_index, "M117 Time Left {}".format(current_time_string)) - elif mode == "m118": - current_time_string = "{:d}h{:02d}m{:02d}s".format(int(h), int(m), int(s)) - # And now insert that into the GCODE - lines.insert(line_index, "M118 A1 P0 action:notification Time Left {}".format(current_time_string)) - else: - mins = int(60 * h + m + s / 30) - lines.insert(line_index, "M73 R{}".format(mins)) - - def execute(self, data): - output_time = self.getSettingValueByKey("time_remaining") - output_time_method = self.getSettingValueByKey("time_remaining_method") - output_frequency = int(self.getSettingValueByKey("update_frequency")) - output_percentage = self.getSettingValueByKey("percentage") - line_set = {} - if output_percentage or output_time: - total_time = -1 - previous_layer_end_percentage = 0 - previous_layer_end_time = 0 - for layer in data: - layer_index = data.index(layer) - lines = layer.split("\n") - - for line in lines: - if (line.startswith(";TIME:") or line.startswith(";PRINT.TIME:")) and total_time == -1: - # This line represents the total time required to print the gcode - total_time = self.getTimeValue(line) - line_index = lines.index(line) - - # In the beginning we may have 2 M73 lines, but it makes logic less complicated - if output_time: - self.outputTime(lines, line_index, total_time, output_time_method) - - if output_percentage: - # Emit 0 percent to sure Marlin knows we are overriding the completion percentage - if output_time_method == "m118": - lines.insert(line_index, "M118 A1 P0 action:notification Data Left 0/100") - else: - lines.insert(line_index, "M73 P0") - - elif line.startswith(";TIME_ELAPSED:"): - # We've found one of the time elapsed values which are added at the end of layers - - # If we have seen this line before then skip processing it. We can see lines multiple times because we are adding - # intermediate percentages before the line being processed. This can cause the current line to shift back and be - # encountered more than once - if line in line_set: - continue - line_set[line] = True - - # If total_time was not already found then noop - if total_time == -1: - continue - - current_time = self.getTimeValue(line) - line_index = lines.index(line) - - if output_time: - if output_frequency == 0: - # Here we calculate remaining time - self.outputTime(lines, line_index, total_time - current_time, output_time_method) - else: - # Here we calculate remaining time and how many outputs are expected for the layer - layer_time_delta = int(current_time - previous_layer_end_time) - layer_step_delta = int((current_time - previous_layer_end_time) / output_frequency) - # If this layer represents less than 1 step then we don't need to emit anything, continue to the next layer - if layer_step_delta != 0: - # Grab the index of the current line and figure out how many lines represent one second - step = line_index / layer_time_delta - # Move new lines further as we add new lines above it - lines_added = 1 - # Run through layer in seconds - for seconds in range(1, layer_time_delta + 1): - # Time from start to decide when to update - line_time = int(previous_layer_end_time + seconds) - # Output every X seconds and after last layer - if line_time % output_frequency == 0 or line_time == total_time: - # Line to add the output - time_line_index = int((seconds * step) + lines_added) - - # Insert remaining time into the GCODE - self.outputTime(lines, time_line_index, total_time - line_time, output_time_method) - # Next line will be again lower - lines_added = lines_added + 1 - - previous_layer_end_time = int(current_time) - - if output_percentage: - # Calculate percentage value this layer ends at - layer_end_percentage = int((current_time / total_time) * 100) - - # Figure out how many percent of the total time is spent in this layer - layer_percentage_delta = layer_end_percentage - previous_layer_end_percentage - - # If this layer represents less than 1 percent then we don't need to emit anything, continue to the next layer - if layer_percentage_delta != 0: - # Grab the index of the current line and figure out how many lines represent one percent - step = line_index / layer_percentage_delta - - for percentage in range(1, layer_percentage_delta + 1): - # We add the percentage value here as while processing prior lines we will have inserted - # percentage lines before the current one. Failing to do this will upset the spacing - percentage_line_index = int((percentage * step) + percentage) - - # Due to integer truncation of the total time value in the gcode the percentage we - # calculate may slightly exceed 100, as that is not valid we cap the value here - output = min(percentage + previous_layer_end_percentage, 100) - - # Now insert the sanitized percentage into the GCODE - if output_time_method == "m118": - lines.insert(percentage_line_index, "M118 A1 P0 action:notification Data Left {}/100".format(output)) - else: - lines.insert(percentage_line_index, "M73 P{}".format(output)) - - previous_layer_end_percentage = layer_end_percentage - - # Join up the lines for this layer again and store them in the data array - data[layer_index] = "\n".join(lines) - return data From 5f3b96c26c67ce8780c8d8eae7b7282e03768d6b Mon Sep 17 00:00:00 2001 From: GregValiant <64202104+GregValiant@users.noreply.github.com> Date: Thu, 22 Jun 2023 13:15:38 -0400 Subject: [PATCH 012/765] Update DisplayInfoOnLCD.py Remove code that added the PP name to the gcode. Create DisplayInfoOnLCD.py This post processor combines DisplayLayerAndFilename with DisplayProgress. Those two post processors would be obsolete. --- .../scripts/DisplayInfoOnLCD.py | 273 ++++++++++++++++++ 1 file changed, 273 insertions(+) create mode 100644 plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py diff --git a/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py b/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py new file mode 100644 index 00000000000..341685be1d6 --- /dev/null +++ b/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py @@ -0,0 +1,273 @@ +# Display Filename and Layer on the LCD by Amanda de Castilho on August 28, 2018 +# Modified: Joshua Pope-Lewis on November 16, 2018 +# Display Progress on LCD by Mathias Lyngklip Kjeldgaard, Alexander Gee, Kimmo Toivanen, Inigo Martinez on July 31, 2019 +# Show Progress was adapted from Display Progress by Louis Wooters on January 6, 2020. His changes are included here. +#--------------------------------------------------------------- +# DisplayNameOrProgressOnLCD.py +# Cura Post-Process plugin +# Combines 'Display Filename and Layer on the LCD' with 'Display Progress' +# Combined and adapted by: GregValiant (Greg Foresi) +# Date: March 5, 2023 +# NOTE: This combined post processor will make 'Display Filename and Layer on the LCD' and 'Display Progress' obsolete +# Description: Display Filename and Layer options: +# Status messages sent to the printer... +# - Scrolling (SCROLL_LONG_FILENAMES) if enabled in Marlin and you aren't printing a small item select this option. +# - Name: By default it will use the name generated by Cura (EG: TT_Test_Cube) - You may enter a custom name here +# - Start Num: Choose which number you prefer for the initial layer, 0 or 1 +# - Max Layer: Enabling this will show how many layers are in the entire print (EG: Layer 1 of 265!) +# - Add prefix 'Printing': Enabling this will add the prefix 'Printing' +# - Example Line on LCD: Printing Layer 0 of 395 3DBenchy +# Display Progress options: +# - Display Total Layer Count +# - Disply Time Remaining for the print +# - Time Fudge Factor % - Divide the Actual Print Time by the Cura Estimate. Enter as a percentage and the displayed time will be adjusted. This allows you to bring the displayed time closer to reality (Ex: Entering 87.5 would indicate an adjustement to 87.5% of the Cura estimate). +# - Example line on LCD: 1/479 | ET 2h13m +# - 'Add M118 Line' is available with either option. M118 will bounce the message back to a remote print server through the USB connection. + +from ..Script import Script +from UM.Application import Application + +class DisplayInfoOnLCD(Script): + def __init__(self): + super().__init__() + + def getSettingDataString(self): + return """{ + "name": "Display Info on LCD", + "key": "DisplayInfoOnLCD", + "metadata": {}, + "version": 2, + "settings": + { + "display_option": + { + "label": "LCD display option...", + "description": "Display Filename and Layer was formerly 'Display Filename and Layer on LCD' post-processor. The message format on the LCD is 'Printing Layer 0 of 15 3D Benchy'. Display Progress is similar to the former 'Display Progress on LCD' post-processor. The display format is '1/16 | ET 2hr28m'. Display Progress includes a fudge factor for the print time estimate.", + "type": "enum", + "options": { + "display_progress": "Display Progress", + "filename_layer": "Filename and Layer" + }, + "default_value": "display_progress" + }, + "format_option": + { + "label": "Scroll enabled/Small layers?", + "description": "If SCROLL_LONG_FILENAMES is enabled in your firmware select this setting.", + "type": "bool", + "default_value": false, + "enabled": "display_option == 'filename_layer'" + }, + "name": + { + "label": "Text to display:", + "description": "By default the current filename will be displayed on the LCD. Enter text here to override the filename and display something else.", + "type": "str", + "default_value": "", + "enabled": "display_option == 'filename_layer'" + }, + "startNum": + { + "label": "Initial layer number:", + "description": "Choose which number you prefer for the initial layer, 0 or 1", + "type": "int", + "default_value": 0, + "minimum_value": 0, + "maximum_value": 1, + "enabled": "display_option == 'filename_layer'" + }, + "maxlayer": + { + "label": "Display max layer?:", + "description": "Display how many layers are in the entire print on status bar?", + "type": "bool", + "default_value": true, + "enabled": "display_option == 'filename_layer'" + }, + "addPrefixPrinting": + { + "label": "Add prefix 'Printing'?", + "description": "This will add the prefix 'Printing'", + "type": "bool", + "default_value": true, + "enabled": "display_option == 'filename_layer'" + }, + "display_total_layers": + { + "label": "Display total layers", + "description": "This setting adds the 'Total Layers' to the LCD message as '17/234'.", + "type": "bool", + "default_value": true, + "enabled": "display_option == 'display_progress'" + }, + "display_remaining_time": + { + "label": "Display remaining time", + "description": "This will add the remaining printing time to the LCD message.", + "type": "bool", + "default_value": true, + "enabled": "display_option == 'display_progress'" + }, + "add_m118_line": + { + "label": "Add M118 Line", + "description": "Adds M118 in addition to the M117. It will bounce the message back through the USB port to a computer print server (if a printer server is enabled).", + "type": "bool", + "default_value": false + }, + "speed_factor": + { + "label": "Time Fudge Factor %", + "description": "Tweak this value to get better estimates. ([Actual Print Time]/[Cura Estimate]) x 100 = Time Fudge Factor. If Cura estimated 9hr and the print actually took 10hr30min then enter 117 here to adjust any estimate closer to reality.", + "type": "float", + "unit": "%", + "default_value": 100, + "enabled": "display_option == 'display_progress'" + } + } + }""" + + def execute(self, data): + display_option = self.getSettingValueByKey("display_option") + add_m118_line = self.getSettingValueByKey("add_m118_line") + + # This is Display Filename and Layer on LCD--------------------------------------------------------- + if display_option == "filename_layer": + max_layer = 0 + lcd_text = "M117 " + if self.getSettingValueByKey("name") != "": + name = self.getSettingValueByKey("name") + else: + name = Application.getInstance().getPrintInformation().jobName + if self.getSettingValueByKey("addPrefixPrinting"): + lcd_text += "Printing " + if not self.getSettingValueByKey("scroll"): + lcd_text += "Layer " + else: + lcd_text += name + " - Layer " + i = self.getSettingValueByKey("startNum") + for layer in data: + display_text = lcd_text + str(i) + layer_index = data.index(layer) + lines = layer.split("\n") + for line in lines: + if line.startswith(";LAYER_COUNT:"): + max_layer = line + max_layer = max_layer.split(":")[1] + if self.getSettingValueByKey("startNum") == 0: + max_layer = str(int(max_layer) - 1) + if ";LAYER:" in line: + if self.getSettingValueByKey("maxlayer"): + display_text = display_text + " of " + max_layer + if not self.getSettingValueByKey("scroll"): + display_text = display_text + " " + name + else: + if not self.getSettingValueByKey("scroll"): + display_text = display_text + " " + name + "!" + else: + display_text = display_text + "!" + line_index = lines.index(line) + lines.insert(line_index + 1, display_text) + if add_m118_line: + lines.insert(line_index + 2, str(display_text.replace("M117", "M118", 1))) + i += 1 + final_lines = "\n".join(lines) + data[layer_index] = final_lines + + # Display Progress (from 'Show Progress' and 'Display Progress on LCD')--------------------------------------- + elif display_option == "display_progress": + # get settings + display_total_layers = self.getSettingValueByKey("display_total_layers") + display_remaining_time = self.getSettingValueByKey("display_remaining_time") + speed_factor = self.getSettingValueByKey("speed_factor") / 100 + # initialize global variables + first_layer_index = 0 + time_total = 0 + number_of_layers = 0 + time_elapsed = 0 + # if at least one of the settings is disabled, there is enough room on the display to display "layer" + first_section = data[0] + lines = first_section.split("\n") + for line in lines: + if ";TIME:" in line: + tindex = lines.index(line) + print_time = int(line.split(":")[1]) + print_time = print_time*speed_factor + hhh = print_time/3600 + hr = round(hhh // 1) + mmm = round((hhh % 1) * 60) + if add_m118_line: lines.insert(tindex+1,"M118 Adjusted Print Time " + str(hr) + "hr " + str(mmm) + "min") + lines.insert(tindex+1,"M117 ET " + str(hr) + "hr " + str(mmm) + "min") + data[0] = "\n".join(lines) + data[len(data)-1] += "M117 Orig Est " + str(hr) + "hr " + str(mmm) + "min\n" + if add_m118_line: data[len(data)-1] += "M118 Orig Est w/FudgeFactor at " + str(speed_factor * 100) + "% was " + str(hr) + "hr " + str(mmm) + "min\n" + if not display_total_layers or not display_remaining_time: + base_display_text = "layer " + else: + base_display_text = "" + layer = data[len(data)-1] + data[len(data)-1] = layer.replace(";End of Gcode" + "\n", "") + data[len(data)-1] += ";End of Gcode" + "\n" + # Search for the number of layers and the total time from the start code + for index in range(len(data)): + data_section = data[index] + # We have everything we need, save the index of the first layer and exit the loop + if ";LAYER:" in data_section: + first_layer_index = index + break + else: + for line in data_section.split("\n"): + if line.startswith(";LAYER_COUNT:"): + number_of_layers = int(line.split(":")[1]) + elif line.startswith(";TIME:"): + time_total = int(line.split(":")[1]) + # for all layers... + current_layer = 0 + for layer_counter in range(len(data)-2): + current_layer += 1 + layer_index = first_layer_index + layer_counter + display_text = base_display_text + display_text += str(current_layer) + # create a list where each element is a single line of code within the layer + lines = data[layer_index].split("\n") + if not ";LAYER:" in data[layer_index]: + current_layer -= 1 + continue + # add the total number of layers if this option is checked + if display_total_layers: + display_text += "/" + str(number_of_layers) + # if display_remaining_time is checked, it is calculated in this loop + if display_remaining_time: + time_remaining_display = " | ET " # initialize the time display + m = (time_total - time_elapsed) // 60 # estimated time in minutes + m *= speed_factor # correct for printing time + m = int(m) + h, m = divmod(m, 60) # convert to hours and minutes + # add the time remaining to the display_text + if h > 0: # if it's more than 1 hour left, display format = xhxxm + time_remaining_display += str(h) + "h" + if m < 10: # add trailing zero if necessary + time_remaining_display += "0" + time_remaining_display += str(m) + "m" + else: + time_remaining_display += str(m) + "m" + display_text += time_remaining_display + # find time_elapsed at the end of the layer (used to calculate the remaining time of the next layer) + if not current_layer == number_of_layers: + for line_index in range(len(lines) - 1, -1, -1): + line = lines[line_index] + if line.startswith(";TIME_ELAPSED:"): + # update time_elapsed for the NEXT layer and exit the loop + time_elapsed = int(float(line.split(":")[1])) + break + # insert the text AFTER the first line of the layer (in case other scripts use ";LAYER:") + for l_index, line in enumerate(lines): + if line.startswith(";LAYER:"): + lines[l_index] += "\nM117 " + display_text + if add_m118_line: + lines[l_index] += "\nM118 " + display_text + break + # overwrite the layer with the modified layer + data[layer_index] = "\n".join(lines) + + return data From 51ba3ea61eeed16692c2da4eab9174b54cd609cf Mon Sep 17 00:00:00 2001 From: Frederic Meeuwissen <13856291+Frederic98@users.noreply.github.com> Date: Fri, 21 Jul 2023 10:36:48 +0200 Subject: [PATCH 013/765] Fix printer definitions --- resources/definitions/Geeetech_Base_Dual_Extruder.def.json | 2 +- resources/definitions/Geeetech_Base_Multi_Extruder.def.json | 2 +- resources/definitions/Geeetech_Base_Single_Extruder.def.json | 2 +- resources/definitions/SV02.def.json | 2 +- resources/definitions/flyingbear_base.def.json | 2 +- resources/definitions/lotmaxx_sc10.def.json | 2 +- resources/definitions/mixware_hyper_s.def.json | 2 +- resources/definitions/modix_v3_base.def.json | 2 +- resources/definitions/modix_v4_base.def.json | 2 +- resources/definitions/uni_base.def.json | 2 +- resources/definitions/weedo_base.def.json | 2 +- resources/definitions/zav_base.def.json | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/resources/definitions/Geeetech_Base_Dual_Extruder.def.json b/resources/definitions/Geeetech_Base_Dual_Extruder.def.json index c8ab3ca623e..325e88e7faf 100644 --- a/resources/definitions/Geeetech_Base_Dual_Extruder.def.json +++ b/resources/definitions/Geeetech_Base_Dual_Extruder.def.json @@ -130,7 +130,7 @@ "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, "support_interface_density": { "value": 33.333 }, "support_interface_height": { "value": "layer_height * 3" }, - "support_interface_pattern": { "value": "zigzag" }, + "support_interface_pattern": { "value": "'zigzag'" }, "support_interface_skip_height": { "value": 0.2 }, "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": 0 }, diff --git a/resources/definitions/Geeetech_Base_Multi_Extruder.def.json b/resources/definitions/Geeetech_Base_Multi_Extruder.def.json index 36783200dd0..31ba03f5f71 100644 --- a/resources/definitions/Geeetech_Base_Multi_Extruder.def.json +++ b/resources/definitions/Geeetech_Base_Multi_Extruder.def.json @@ -131,7 +131,7 @@ "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, "support_interface_density": { "value": 33.333 }, "support_interface_height": { "value": "layer_height * 3" }, - "support_interface_pattern": { "value": "zigzag" }, + "support_interface_pattern": { "value": "'zigzag'" }, "support_interface_skip_height": { "value": 0.2 }, "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": 0 }, diff --git a/resources/definitions/Geeetech_Base_Single_Extruder.def.json b/resources/definitions/Geeetech_Base_Single_Extruder.def.json index b901668859a..7a96ee4b91d 100644 --- a/resources/definitions/Geeetech_Base_Single_Extruder.def.json +++ b/resources/definitions/Geeetech_Base_Single_Extruder.def.json @@ -118,7 +118,7 @@ "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, "support_interface_density": { "value": 33.333 }, "support_interface_height": { "value": "layer_height * 3" }, - "support_interface_pattern": { "value": "zigzag" }, + "support_interface_pattern": { "value": "'zigzag'" }, "support_interface_skip_height": { "value": 0.2 }, "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": 0 }, diff --git a/resources/definitions/SV02.def.json b/resources/definitions/SV02.def.json index 95b165075bd..a38812830ba 100644 --- a/resources/definitions/SV02.def.json +++ b/resources/definitions/SV02.def.json @@ -59,7 +59,7 @@ "machine_width": { "default_value": 280 }, "material_diameter": { "default_value": 1.75 }, "material_initial_print_temperature": { "value": "material_print_temperature" }, - "prime_tower_min_volume": { "value": "((reveOrValue('layer_height'))/2" }, + "prime_tower_min_volume": { "value": "resolveOrValue('layer_height')/2" }, "prime_tower_position_x": { "value": "240" }, "prime_tower_position_y": { "value": "190" }, "prime_tower_size": { "value": "30" }, diff --git a/resources/definitions/flyingbear_base.def.json b/resources/definitions/flyingbear_base.def.json index 70ae7e8f96e..d5ec8b0ecc3 100644 --- a/resources/definitions/flyingbear_base.def.json +++ b/resources/definitions/flyingbear_base.def.json @@ -44,7 +44,7 @@ "infill_sparse_density": { "value": 20 }, "infill_wipe_dist": { "value": 0.0 }, "layer_height_0": { "value": 0.2 }, - "machine_buildplate_type": { "value": "glass" }, + "machine_buildplate_type": { "value": "'glass'" }, "machine_center_is_zero": { "default_value": false }, "machine_end_gcode": { "default_value": "G91 ;use relative coordinates\nG1 E-4 F1500 ;retract the filament\nG1 X5 Y5 Z0.2 F5000 ;wipe\nG1 Z5 F1500 ;raise z\nG90 ;use absolute coordinates\nG1 X10 Y{machine_depth} F5000 ;park print head\n\nM107 ;turn off fan\nM104 S0 ;turn off hotend\nM140 S0 ;turn off heatbed\nM84 ;disable motors" }, "machine_heated_bed": { "default_value": true }, diff --git a/resources/definitions/lotmaxx_sc10.def.json b/resources/definitions/lotmaxx_sc10.def.json index f2ef02c664b..c3b47a2cdf1 100644 --- a/resources/definitions/lotmaxx_sc10.def.json +++ b/resources/definitions/lotmaxx_sc10.def.json @@ -23,7 +23,7 @@ "jerk_enabled": { "value": false }, "jerk_print": { "value": 8 }, "jerk_travel": { "value": "jerk_print" }, - "jerk_travel_layer_0": { "value": " jerk_travel" }, + "jerk_travel_layer_0": { "value": "jerk_travel" }, "machine_depth": { "default_value": 235 }, "machine_end_gcode": { "default_value": "; SC-10 Custom End G-code\nG4 ; Wait\nM220 S100 ; Reset Speed factor override percentage to default (100%)\nM221 S100 ; Reset Extrude factor override percentage to default (100%)\nG91 ; Set coordinates to relative\nG1 F1800 E-3 ; Retract filament 3 mm to prevent oozing\nG1 F3000 Z20 ; Move Z Axis up 20 mm to allow filament ooze freely\nG90 ; Set coordinates to absolute\nG1 X0 Y{machine_depth} F1000 ; Move Heat Bed to the front for easy print removal\nM84 ; Disable stepper motors\n; End of custom end GCode" }, "machine_head_with_fans_polygon": diff --git a/resources/definitions/mixware_hyper_s.def.json b/resources/definitions/mixware_hyper_s.def.json index 9268b998080..e3d67de8e09 100644 --- a/resources/definitions/mixware_hyper_s.def.json +++ b/resources/definitions/mixware_hyper_s.def.json @@ -78,7 +78,7 @@ "minimum_value_warning": "0.01" }, "retraction_amount": { "default_value": 2 }, - "retraction_combing": { "value": "off" }, + "retraction_combing": { "value": "'off'" }, "retraction_combing_max_distance": { "default_value": 0.5 }, "retraction_count_max": { "default_value": 100 }, "retraction_extrusion_window": diff --git a/resources/definitions/modix_v3_base.def.json b/resources/definitions/modix_v3_base.def.json index 911d674e68c..80921d32549 100644 --- a/resources/definitions/modix_v3_base.def.json +++ b/resources/definitions/modix_v3_base.def.json @@ -82,6 +82,6 @@ "travel_avoid_supports": { "value": true }, "travel_retract_before_outer_wall": { "value": true }, "wall_thickness": { "value": "line_width * 2" }, - "z_seam_corner": { "value": "z_seam_corner_weighted" } + "z_seam_corner": { "value": "'z_seam_corner_weighted'" } } } \ No newline at end of file diff --git a/resources/definitions/modix_v4_base.def.json b/resources/definitions/modix_v4_base.def.json index 71b99c7caeb..55d901db1c3 100644 --- a/resources/definitions/modix_v4_base.def.json +++ b/resources/definitions/modix_v4_base.def.json @@ -82,6 +82,6 @@ "travel_avoid_supports": { "value": true }, "travel_retract_before_outer_wall": { "value": true }, "wall_thickness": { "value": "line_width * 2" }, - "z_seam_corner": { "value": "z_seam_corner_weighted" } + "z_seam_corner": { "value": "'z_seam_corner_weighted'" } } } \ No newline at end of file diff --git a/resources/definitions/uni_base.def.json b/resources/definitions/uni_base.def.json index c6405d213c9..c79d2fcd872 100644 --- a/resources/definitions/uni_base.def.json +++ b/resources/definitions/uni_base.def.json @@ -50,7 +50,7 @@ "initial_layer_line_width_factor": { "value": "100" }, "layer_height_0": { "value": "layer_height" }, "line_width": { "value": "machine_nozzle_size" }, - "machine_buildplate_type": { "value": "glass" }, + "machine_buildplate_type": { "value": "'glass'" }, "machine_center_is_zero": { "default_value": false }, "machine_depth": { "default_value": 220 }, "machine_end_gcode": { "default_value": "G91\nG1 E-1 F600\nG1 Z+1 E-3 X-20 Y-20 F4800\nM104 S0\nM106 S0\nM140 S0\nM220 S100\nM221 S100\nG28\nG90\nM84\n;\n" }, diff --git a/resources/definitions/weedo_base.def.json b/resources/definitions/weedo_base.def.json index 0a43dae8cc3..8ba06312fea 100644 --- a/resources/definitions/weedo_base.def.json +++ b/resources/definitions/weedo_base.def.json @@ -73,7 +73,7 @@ "raft_surface_fan_speed": { "value": 100 }, "raft_surface_speed": { "value": 40 }, "retraction_amount": { "default_value": 1.5 }, - "retraction_combing": { "value": "off" }, + "retraction_combing": { "value": "'off'" }, "retraction_speed": { "default_value": 28 }, "skirt_brim_speed": { "value": 26.0 }, "speed_layer_0": { "value": 26.0 }, diff --git a/resources/definitions/zav_base.def.json b/resources/definitions/zav_base.def.json index 03178f5eb9f..c8ab0361a81 100644 --- a/resources/definitions/zav_base.def.json +++ b/resources/definitions/zav_base.def.json @@ -49,7 +49,7 @@ "initial_layer_line_width_factor": { "value": "100" }, "layer_height_0": { "value": "layer_height" }, "line_width": { "value": "machine_nozzle_size" }, - "machine_buildplate_type": { "value": "glass" }, + "machine_buildplate_type": { "value": "'glass'" }, "machine_center_is_zero": { "default_value": false }, "machine_depth": { "default_value": 200 }, "machine_end_gcode": { "default_value": ";---- Ending Script Start ----\nM104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-4 F300 ;retract the filament a bit before lifting the nozzle to release some of the pressure\nG1 Z+0.5 E-5 X-20 Y-20 F5000 ;move Z up a bit and retract filament even more\nG28 Z0 ;move bed down\nG28 X0 Y0 ;move X/Y to min endstops so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning\nM107 ;switch off cooling fan\nM355 S0 P0 ;switch off case light\n;---- Ending Script End ----\n" }, From 362b4d894fad76c0671ef5ca25ded1e89cd3472a Mon Sep 17 00:00:00 2001 From: GregValiant <64202104+GregValiant@users.noreply.github.com> Date: Sat, 12 Aug 2023 08:58:34 -0400 Subject: [PATCH 014/765] Update DisplayInfoOnLCD.py Added TimeToPause to DisplayProgress --- .../scripts/DisplayInfoOnLCD.py | 55 ++++++++++++++++++- 1 file changed, 54 insertions(+), 1 deletion(-) diff --git a/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py b/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py index 341685be1d6..8a5533d45a9 100644 --- a/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py +++ b/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py @@ -123,6 +123,14 @@ def getSettingDataString(self): "unit": "%", "default_value": 100, "enabled": "display_option == 'display_progress'" + }, + "countdown_to_pause": + { + "label": "Countdown to Pauses", + "description": "Instead of layer number and remaining print time the LCD will show 'layers remaining before pause' and 'Est Time to Pause' (ETP).", + "type": "bool", + "default_value": false, + "enabled": "display_option == 'display_progress'" } } }""" @@ -269,5 +277,50 @@ def execute(self, data): break # overwrite the layer with the modified layer data[layer_index] = "\n".join(lines) - + + # If enabled then change the ET to TP for 'Time To Pause' + if bool(self.getSettingValueByKey("countdown_to_pause")): + time_list = [] + time_list.append("0") + time_list.append("0") + this_time = 0 + pause_index = 1 + + # Get the layer times + for num in range(2,len(data) - 1): + layer = data[num] + lines = layer.split("\n") + for line in lines: + if line.startswith(";TIME_ELAPSED:"): + this_time = (float(line.split(":")[1]))*speed_factor + time_list.append(str(this_time)) + if "PauseAtHeight.py" in layer: + for qnum in range(num - 1, pause_index, -1): + time_list[qnum] = str(float(this_time) - float(time_list[qnum])) + "P" + pause_index = num-1 + + # Make the adjustments to the M117 (and M118) lines that are prior to a pause + for num in range (2, len(data) - 1,1): + layer = data[num] + lines = layer.split("\n") + for line in lines: + if line.startswith("M117") and "|" in line and "P" in time_list[num]: + M117_line = line.split("|")[0] + "| TP " + alt_time = time_list[num][:-1] + hhh = int(float(alt_time) / 3600) + if hhh > 0: + hhr = str(hhh) + "h" + else: + hhr = "" + mmm = ((float(alt_time) / 3600) - (int(float(alt_time) / 3600))) * 60 + sss = int((mmm - int(mmm)) * 60) + mmm = str(round(mmm)) + "m" + time_to_go = str(hhr) + str(mmm) + if hhr == "": time_to_go = time_to_go + str(sss) + "s" + M117_line = M117_line + time_to_go + layer = layer.replace(line, M117_line) + if line.startswith("M118") and "|" in line and "P" in time_list[num]: + M118_line = line.split("|")[0] + "| TP " + time_to_go + layer = layer.replace(line, M118_line) + data[num] = layer return data From eecdceffdbfd20cf15a8fe6c4c66870cb75686ee Mon Sep 17 00:00:00 2001 From: fieldOfView Date: Mon, 28 Aug 2023 15:42:04 +0200 Subject: [PATCH 015/765] Fix available height when adding modifier mesh in One at a Time printing Cura lowers the available build volume height when more than 1 model is loaded. This count should include grouped nodes as one (since they will be slice as one and thus not affect the gantry), and should not include modifier meshes or support meshes (since support-meshes are always printed with the first model anyway). Fixes https://github.com/Ultimaker/Cura/issues/16566 --- cura/BuildVolume.py | 30 ++++++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/cura/BuildVolume.py b/cura/BuildVolume.py index 0d6ecf5810c..5b4e00e8d60 100755 --- a/cura/BuildVolume.py +++ b/cura/BuildVolume.py @@ -120,6 +120,8 @@ def __init__(self, application: "CuraApplication", parent: Optional[SceneNode] = # Objects loaded at the moment. We are connected to the property changed events of these objects. self._scene_objects = set() # type: Set[SceneNode] + # Number of toplevel printable meshes. If there is more than one, the build volume needs to take account of the gantry height in One at a Time printing. + self._root_printable_object_count = 0 self._scene_change_timer = QTimer() self._scene_change_timer.setInterval(200) @@ -151,6 +153,7 @@ def _onSceneChanged(self, source): def _onSceneChangeTimerFinished(self): root = self._application.getController().getScene().getRoot() new_scene_objects = set(node for node in BreadthFirstIterator(root) if node.callDecoration("isSliceable")) + if new_scene_objects != self._scene_objects: for node in new_scene_objects - self._scene_objects: #Nodes that were added to the scene. self._updateNodeListeners(node) @@ -166,6 +169,26 @@ def _onSceneChangeTimerFinished(self): self.rebuild() self._scene_objects = new_scene_objects + + # This also needs to be called when objects are grouped/ungrouped, + # which is not reflected in a change in self._scene_objects + self._updateRootPrintableObjectCount() + + def _updateRootPrintableObjectCount(self): + # Get the number of models in the scene root, excluding modifier meshes and counting grouped models as 1 + root = self._application.getController().getScene().getRoot() + scene_objects = set(node for node in BreadthFirstIterator(root) if node.callDecoration("isSliceable") or node.callDecoration("isGroup")) + + new_root_printable_object_count = len(list(node for node in scene_objects if node.getParent() == root and not ( + node_stack := node.callDecoration("getStack") and ( + node.callDecoration("getStack").getProperty("anti_overhang_mesh", "value") or + node.callDecoration("getStack").getProperty("support_mesh", "value") or + node.callDecoration("getStack").getProperty("cutting_mesh", "value") or + node.callDecoration("getStack").getProperty("infill_mesh", "value") + )) + )) + if new_root_printable_object_count != self._root_printable_object_count: + self._root_printable_object_count = new_root_printable_object_count self._onSettingPropertyChanged("print_sequence", "value") # Create fake event, so right settings are triggered. def _updateNodeListeners(self, node: SceneNode): @@ -647,7 +670,7 @@ def _onStackChangeTimerFinished(self) -> None: self._width = self._global_container_stack.getProperty("machine_width", "value") machine_height = self._global_container_stack.getProperty("machine_height", "value") - if self._global_container_stack.getProperty("print_sequence", "value") == "one_at_a_time" and len(self._scene_objects) > 1: + if self._global_container_stack.getProperty("print_sequence", "value") == "one_at_a_time" and self._root_printable_object_count > 1: new_height = min(self._global_container_stack.getProperty("gantry_height", "value") * self._scale_vector.z, machine_height) if self._height > new_height: @@ -689,9 +712,12 @@ def _onSettingChangeTimerFinished(self) -> None: update_extra_z_clearance = True for setting_key in self._changed_settings_since_last_rebuild: + if setting_key in ["print_sequence", "support_mesh", "infill_mesh", "cutting_mesh", "anti_overhang_mesh"]: + self._updateRootPrintableObjectCount() + if setting_key == "print_sequence": machine_height = self._global_container_stack.getProperty("machine_height", "value") - if self._application.getGlobalContainerStack().getProperty("print_sequence", "value") == "one_at_a_time" and len(self._scene_objects) > 1: + if self._application.getGlobalContainerStack().getProperty("print_sequence", "value") == "one_at_a_time" and self._root_printable_object_count > 1: new_height = min( self._global_container_stack.getProperty("gantry_height", "value") * self._scale_vector.z, machine_height) From 76c6de66b803330f057cfb58e7ce885e13be0a47 Mon Sep 17 00:00:00 2001 From: Evident Date: Tue, 29 Aug 2023 09:45:25 -0700 Subject: [PATCH 016/765] Created profile for Neptune 4 Pro Create elegoo_neptune_4pro.def.json for Neptune 4 Pro profile. --- .../definitions/elegoo_neptune_4pro.def.json | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 resources/definitions/elegoo_neptune_4pro.def.json diff --git a/resources/definitions/elegoo_neptune_4pro.def.json b/resources/definitions/elegoo_neptune_4pro.def.json new file mode 100644 index 00000000000..281d6007f2b --- /dev/null +++ b/resources/definitions/elegoo_neptune_4pro.def.json @@ -0,0 +1,38 @@ +{ + "version": 2, + "name": "ELEGOO NEPTUNE 4 Pro", + "inherits": "elegoo_base", + "metadata": + { + "visible": true, + "author": "Evident", + "quality_definition": "elegoo_base" + }, + "overrides": + { + "machine_name": { "default_value": "ELEGOO NEPTUNE 4 Pro" }, + "machine_depth": { "default_value": 235 }, + "machine_height": { "default_value": 270 }, + "machine_width": { "default_value": 235 }, + "machine_head_with_fans_polygon": + { + "value": [ + [-55, 30], + [55, 30], + [55, -35], + [-55, -35] + ] + }, + "machine_end_gcode": { "default_value": "G91 ;Relative positionning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F1600 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z2 ;Raise Z more\nG90 ;Absolute positionning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, + "machine_start_gcode": { "default_value": "G28 ;home\nG92 E0 ;Reset Extruder\nG1 Z4.0 F3000 ;Move Z Axis up\nG92 E0 ;Reset Extruder\nG1 X1.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X1.1 Y80.0 Z0.28 F1500.0 E10 ;Draw the first line\nG1 X1.4 Y80.0 Z0.28 F5000.0 ;Move to side a little\nG1 X1.4 Y20 Z0.28 F1500.0 E20 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up" }, + "material_bed_temperature": { "value": "default_material_bed_temperature + 10" }, + "infill_overlap": { "value": "0 if infill_sparse_density < 40.01 and infill_pattern != 'concentric' else -5" }, + "retraction_amount": { "value": 1 }, + "retraction_count_max": { "value": 80 }, + "retraction_prime_speed": { "resolve": 25 }, + "retraction_retract_speed": { "resolve": 25 }, + "retraction_speed": { "resolve": 25 }, + "speed_travel": { "300 if speed_print < 300 else speed_print * 1.25 if speed_print < 400 else 500" }, + "speed_travel_layer_0": { "value": "200" } + } +} From 6aeb59eb1548bb05f40ed525971f7b58888483a5 Mon Sep 17 00:00:00 2001 From: Fernando Pietchaki <6844712+pietchaki@users.noreply.github.com> Date: Tue, 29 Aug 2023 15:06:27 -0300 Subject: [PATCH 017/765] Refactor object reload to handle 3mf files Refactor object reload to better handling of 3mf files Make a single file read for all objects from that file, and then replace the objects in scene to the new ones, matching by name. This is also required for an Uranium update to handle the automatic file reload when a file change is detected. 3mf Files can have multiple objects in them. When that is the case, and the file is updated, all objects from that file where being replaced by the first object in the file. --- cura/CuraApplication.py | 67 ++++++++++++++++++++++++++--------------- 1 file changed, 42 insertions(+), 25 deletions(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 0de3ccc7806..566885b7d7c 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -1529,15 +1529,14 @@ def reloadAll(self) -> None: Logger.log("w", "Unable to reload data because we don't have a filename.") for file_name, nodes in objects_in_filename.items(): - for node in nodes: - file_path = os.path.normpath(os.path.dirname(file_name)) - job = ReadMeshJob(file_name, add_to_recent_files = file_path != tempfile.gettempdir()) # Don't add temp files to the recent files list - job._node = node # type: ignore - job.finished.connect(self._reloadMeshFinished) - if has_merged_nodes: - job.finished.connect(self.updateOriginOfMergedMeshes) - - job.start() + file_path = os.path.normpath(os.path.dirname(file_name)) + job = ReadMeshJob(file_name, + add_to_recent_files=file_path != tempfile.gettempdir()) # Don't add temp files to the recent files list + job._nodes = nodes # type: ignore + job.finished.connect(self._reloadMeshFinished) + if has_merged_nodes: + job.finished.connect(self.updateOriginOfMergedMeshes) + job.start() @pyqtSlot("QStringList") def setExpandedCategories(self, categories: List[str]) -> None: @@ -1709,9 +1708,10 @@ def _onActiveMachineChanged(self): def _reloadMeshFinished(self, job) -> None: """ - Function called whenever a ReadMeshJob finishes in the background. It reloads a specific node object in the + Function called when ReadMeshJob finishes reloading a file in the background, then update node objects in the scene from its source file. The function gets all the nodes that exist in the file through the job result, and - then finds the scene node that it wants to refresh by its object id. Each job refreshes only one node. + then finds the scene nodes that need to be refreshed by their name. Each job refreshes all nodes of a file. + Nodes that are not present in the updated file are kept in the scene. :param job: The :py:class:`Uranium.UM.ReadMeshJob.ReadMeshJob` running in the background that reads all the meshes in a file @@ -1721,21 +1721,37 @@ def _reloadMeshFinished(self, job) -> None: if len(job_result) == 0: Logger.log("e", "Reloading the mesh failed.") return - object_found = False - mesh_data = None + renamed_nodes = {} # type: Dict[str, int] # Find the node to be refreshed based on its id for job_result_node in job_result: - if job_result_node.getId() == job._node.getId(): - mesh_data = job_result_node.getMeshData() - object_found = True - break - if not object_found: - Logger.warning("The object with id {} no longer exists! Keeping the old version in the scene.".format(job_result_node.getId())) - return - if not mesh_data: - Logger.log("w", "Could not find a mesh in reloaded node.") - return - job._node.setMeshData(mesh_data) + mesh_data = job_result_node.getMeshData() + if not mesh_data: + Logger.log("w", "Could not find a mesh in reloaded node.") + continue + + # Solves issues with object naming + result_node_name = job_result_node.getName() + if not result_node_name: + result_node_name = os.path.basename(mesh_data.getFileName()) + if result_node_name in renamed_nodes: # objects may get renamed by ObjectsModel._renameNodes() when loaded + renamed_nodes[result_node_name] += 1 + result_node_name = "{0}({1})".format(result_node_name, renamed_nodes[result_node_name]) + else: + renamed_nodes[job_result_node.getName()] = 0 + + # Find the matching scene node to replace + scene_node = None + for replaced_node in job._nodes: + if replaced_node.getName() == result_node_name: + scene_node = replaced_node + break + + if scene_node: + scene_node.setMeshData(mesh_data) + else: + # Current node is a new one in the file, or it's name has changed + # TODO: Load this mesh into the scene. Also alter the "_reloadJobFinished" action in UM.Scene + Logger.log("w", "Could not find matching node for object '{0}' in the scene.".format(result_node_name)) def _openFile(self, filename): self.readLocalFile(QUrl.fromLocalFile(filename)) @@ -1915,7 +1931,8 @@ def _readMeshFinished(self, job): node.scale(original_node.getScale()) node.setSelectable(True) - node.setName(os.path.basename(file_name)) + if not node.getName(): + node.setName(os.path.basename(file_name)) self.getBuildVolume().checkBoundsAndUpdate(node) is_non_sliceable = "." + file_extension in self._non_sliceable_extensions From 1ec0896678f5a81e1537b6fb6e30b48cfd605b21 Mon Sep 17 00:00:00 2001 From: Evident Date: Tue, 29 Aug 2023 23:58:09 -0700 Subject: [PATCH 018/765] Fix: elegoo_neptune_4pro.def.json Corrected missing "value" key in "speed_travel" object on line 35 --- resources/definitions/elegoo_neptune_4pro.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/elegoo_neptune_4pro.def.json b/resources/definitions/elegoo_neptune_4pro.def.json index 281d6007f2b..c393efd856a 100644 --- a/resources/definitions/elegoo_neptune_4pro.def.json +++ b/resources/definitions/elegoo_neptune_4pro.def.json @@ -32,7 +32,7 @@ "retraction_prime_speed": { "resolve": 25 }, "retraction_retract_speed": { "resolve": 25 }, "retraction_speed": { "resolve": 25 }, - "speed_travel": { "300 if speed_print < 300 else speed_print * 1.25 if speed_print < 400 else 500" }, + "speed_travel": { "value": "300 if speed_print < 300 else speed_print * 1.25 if speed_print < 400 else 500" }, "speed_travel_layer_0": { "value": "200" } } } From 1bdd4a67bdad5d54ff5d260b8c16a6ab149ecd39 Mon Sep 17 00:00:00 2001 From: wawanbreton Date: Tue, 5 Sep 2023 11:20:34 +0000 Subject: [PATCH 019/765] Applied printer-linter format --- resources/definitions/fdmprinter.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index ba47c4977d3..67e203abcf2 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -8198,4 +8198,4 @@ } } } -} +} \ No newline at end of file From 099cfe8294fad6dea9e9e2b4bc53851b574789bd Mon Sep 17 00:00:00 2001 From: GregValiant <64202104+GregValiant@users.noreply.github.com> Date: Fri, 8 Sep 2023 08:59:26 -0400 Subject: [PATCH 020/765] Add 'Print Finish Time' estimate as a message Get the current print time estimate, adjust it by the Fudge Factor, and add it to the current time +10 minutes (to actually start the print.) Update DisplayInfoOnLCD.py Change message format for Finish Time Estimate. --- .../scripts/DisplayInfoOnLCD.py | 102 +++++++++++++++--- 1 file changed, 86 insertions(+), 16 deletions(-) diff --git a/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py b/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py index 8a5533d45a9..4718d55256f 100644 --- a/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py +++ b/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py @@ -1,13 +1,13 @@ # Display Filename and Layer on the LCD by Amanda de Castilho on August 28, 2018 -# Modified: Joshua Pope-Lewis on November 16, 2018 +# Modified: Joshua Pope-Lewis on November 16, 2018 # Display Progress on LCD by Mathias Lyngklip Kjeldgaard, Alexander Gee, Kimmo Toivanen, Inigo Martinez on July 31, 2019 # Show Progress was adapted from Display Progress by Louis Wooters on January 6, 2020. His changes are included here. #--------------------------------------------------------------- # DisplayNameOrProgressOnLCD.py # Cura Post-Process plugin # Combines 'Display Filename and Layer on the LCD' with 'Display Progress' -# Combined and adapted by: GregValiant (Greg Foresi) -# Date: March 5, 2023 +# Combined and with additions by: GregValiant (Greg Foresi) +# Date: September 8, 2023 # NOTE: This combined post processor will make 'Display Filename and Layer on the LCD' and 'Display Progress' obsolete # Description: Display Filename and Layer options: # Status messages sent to the printer... @@ -20,17 +20,24 @@ # Display Progress options: # - Display Total Layer Count # - Disply Time Remaining for the print -# - Time Fudge Factor % - Divide the Actual Print Time by the Cura Estimate. Enter as a percentage and the displayed time will be adjusted. This allows you to bring the displayed time closer to reality (Ex: Entering 87.5 would indicate an adjustement to 87.5% of the Cura estimate). +# - Time Fudge Factor % - Divide the Actual Print Time by the Cura Estimate. Enter as a percentage and the displayed time will be adjusted. This allows you to bring the displayed time closer to reality (Ex: Entering 87.5 would indicate an adjustment to 87.5% of the Cura estimate). # - Example line on LCD: 1/479 | ET 2h13m +# - Time to Pauses changes the M117/M118 lines to countdown to the next pause as 1/479 | TP 2h36m # - 'Add M118 Line' is available with either option. M118 will bounce the message back to a remote print server through the USB connection. +# - Enable 'Finish-Time' Message when checked takes the Print Time, adds 10 minutes for print start-up, and calculates when the print will end. It takes into account the Time Fudge Factor. (Available for Display Filename as well.) from ..Script import Script from UM.Application import Application +from UM.Qt.Duration import DurationFormat +import UM.Util +import configparser +from UM.Preferences import Preferences +import time +import datetime +from UM.Message import Message class DisplayInfoOnLCD(Script): - def __init__(self): - super().__init__() - + def getSettingDataString(self): return """{ "name": "Display Info on LCD", @@ -74,7 +81,7 @@ def getSettingDataString(self): "default_value": 0, "minimum_value": 0, "maximum_value": 1, - "enabled": "display_option == 'filename_layer'" + "enabled": "display_option == 'filename_layer'" }, "maxlayer": { @@ -118,11 +125,11 @@ def getSettingDataString(self): "speed_factor": { "label": "Time Fudge Factor %", - "description": "Tweak this value to get better estimates. ([Actual Print Time]/[Cura Estimate]) x 100 = Time Fudge Factor. If Cura estimated 9hr and the print actually took 10hr30min then enter 117 here to adjust any estimate closer to reality.", + "description": "When using 'Display Progress' tweak this value to get better estimates. ([Actual Print Time]/[Cura Estimate]) x 100 = Time Fudge Factor. If Cura estimated 9hr and the print actually took 10hr30min then enter 117 here to adjust any estimate closer to reality. This Fudge Factor is also used to calculate the time that the print will end if you were to start it 10 minutes after slicing.", "type": "float", "unit": "%", "default_value": 100, - "enabled": "display_option == 'display_progress'" + "enabled": "enable_end_message or display_option == 'display_progress'" }, "countdown_to_pause": { @@ -131,6 +138,14 @@ def getSettingDataString(self): "type": "bool", "default_value": false, "enabled": "display_option == 'display_progress'" + }, + "enable_end_message": + { + "label": "Enable 'Finish-Time' Message", + "description": "Get a message when you save a fresh slice. It will show the estimated date and time that the print would finish (with a 10 minute lag from the end of slicing to the start of the print).", + "type": "bool", + "default_value": true, + "enabled": true } } }""" @@ -181,7 +196,11 @@ def execute(self, data): i += 1 final_lines = "\n".join(lines) data[layer_index] = final_lines - + if bool(self.getSettingValueByKey("enable_end_message")): + message_str = self.message_to_user(self.getSettingValueByKey("speed_factor") / 100) + Message(title = "Display Info on LCD - Estimated Finish Time", text = message_str[0] + "\n\n" + message_str[1] + "\n" + message_str[2] + "\n" + message_str[3]).show() + return data + # Display Progress (from 'Show Progress' and 'Display Progress on LCD')--------------------------------------- elif display_option == "display_progress": # get settings @@ -215,7 +234,7 @@ def execute(self, data): base_display_text = "" layer = data[len(data)-1] data[len(data)-1] = layer.replace(";End of Gcode" + "\n", "") - data[len(data)-1] += ";End of Gcode" + "\n" + data[len(data)-1] += ";End of Gcode" + "\n" # Search for the number of layers and the total time from the start code for index in range(len(data)): data_section = data[index] @@ -277,15 +296,15 @@ def execute(self, data): break # overwrite the layer with the modified layer data[layer_index] = "\n".join(lines) - - # If enabled then change the ET to TP for 'Time To Pause' + + # If enabled then change the ET to TP for 'Time To Pause' if bool(self.getSettingValueByKey("countdown_to_pause")): time_list = [] time_list.append("0") time_list.append("0") this_time = 0 pause_index = 1 - + # Get the layer times for num in range(2,len(data) - 1): layer = data[num] @@ -298,7 +317,7 @@ def execute(self, data): for qnum in range(num - 1, pause_index, -1): time_list[qnum] = str(float(this_time) - float(time_list[qnum])) + "P" pause_index = num-1 - + # Make the adjustments to the M117 (and M118) lines that are prior to a pause for num in range (2, len(data) - 1,1): layer = data[num] @@ -323,4 +342,55 @@ def execute(self, data): M118_line = line.split("|")[0] + "| TP " + time_to_go layer = layer.replace(line, M118_line) data[num] = layer + setting_data = "" + if bool(self.getSettingValueByKey("enable_end_message")): + message_str = self.message_to_user(speed_factor) + Message(title = "Display Info on LCD - Estimated Finish Time", text = message_str[0] + "\n\n" + message_str[1] + "\n" + message_str[2] + "\n" + message_str[3]).show() return data + + def message_to_user(self, speed_factor: float): + # Message the user of the projected finish time of the print (figuring a 10 minute delay from end-of-slice to start-of-print + print_time = Application.getInstance().getPrintInformation().currentPrintTime.getDisplayString(DurationFormat.Format.ISO8601) + #Get the current data/time info + yr = int(time.strftime("%Y")) + day = int(time.strftime("%d")) + mo = int(time.strftime("%m")) + hr = int(time.strftime("%H")) + min = int(time.strftime("%M")) + sec = int(time.strftime("%S")) + date_and_time = datetime.datetime(yr, mo, day, hr, min, sec) + #Split the Cura print time + pr_hr = int(print_time.split(":")[0]) + pr_min = int(print_time.split(":")[1]) + pr_sec = int(print_time.split(":")[2]) + #Adjust the print time by 10 minutes to account for a lag in starting a print + print_seconds = pr_hr*3600 + pr_min*60 + pr_sec + 600 + #Adjust the total seconds by the Fudge Factor + adjusted_print_time = print_seconds * speed_factor + #Break down the adjusted seconds back into hh:mm:ss + adj_hr = int(adjusted_print_time/3600) + print_seconds = adjusted_print_time - (adj_hr * 3600) + adj_min = int(print_seconds) / 60 + adj_sec = int(print_seconds - (adj_min * 60)) + #Get the print time to add to the start time + time_change = datetime.timedelta(hours=adj_hr, minutes=adj_min, seconds=adj_sec) + new_time = date_and_time + time_change + #Get the day of the week that the print will end on + week_day = str(["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"][int(new_time.strftime("%w"))]) + #Get the month that the print will end in + mo_str = str(["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"][int(new_time.strftime("%m"))-1]) + #Make adjustments from 24hr time to 12hr time + if int(new_time.strftime("%H")) > 12: + show_hr = str(int(new_time.strftime("%H")) - 12) + ":" + show_ampm = " PM" + elif int(new_time.strftime("%H")) == 0: + show_hr = "12:" + show_ampm = " AM" + else: + show_hr = str(new_time.strftime("%H")) + ":" + show_ampm = " AM" + message_str = "\n" + "(Finish Time estimate is based on the Cura printing time estimate and using your 'Fudge Factor' of " + str(speed_factor * 100) + "% - and a 10 minute lag between saving the file and starting the print.)" + finish_str = week_day + " " + str(mo_str) + " " + str(new_time.strftime("%d")) + ", " + str(new_time.strftime("%Y")) + " at " + str(show_hr) + str(new_time.strftime("%M")) + str(show_ampm) + estimate_str = "Cura Print Time Estimate: " + str(print_time) + adjusted_str = " Adjusted Time Estimate: " + str(time_change) + " (Fudged plus 10min startup delay)" + return finish_str, estimate_str, adjusted_str, message_str \ No newline at end of file From e0b4a436c1d4775743d75d51177710625188e7b3 Mon Sep 17 00:00:00 2001 From: 0r31 Date: Mon, 28 Aug 2023 16:45:49 +0200 Subject: [PATCH 021/765] Introduces Sigma Pro profiles --- .../definitions/dagoma_sigma_pro.def.json | 29 + .../dagoma_sigma_pro_dual.def.json | 33 + ...goma_sigma_pro_dual_extruder_left.def.json | 18 + ...oma_sigma_pro_dual_extruder_right.def.json | 18 + .../dagoma_sigma_pro_extruder.def.json | 16 + resources/images/dagoma_sigma_pro.png | Bin 0 -> 112233 bytes resources/meshes/dagoma_sigma_pro.obj | 8456 +++++++++++++++++ ...goma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg | 75 + ...goma_sigma_pro_brass_0.4_pla_h0.4.inst.cfg | 14 + ...goma_sigma_pro_brass_0.4_pla_h0.6.inst.cfg | 14 + ...goma_sigma_pro_brass_0.8_pla_h0.8.inst.cfg | 14 + ...goma_sigma_pro_brass_0.8_pla_h1.0.inst.cfg | 14 + ...goma_sigma_pro_brass_0.8_pla_h1.2.inst.cfg | 14 + ...sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg | 76 + ...sigma_pro_dual_brass_0.4_pla_h0.4.inst.cfg | 14 + ...sigma_pro_dual_brass_0.4_pla_h0.6.inst.cfg | 14 + ...sigma_pro_dual_brass_0.8_pla_h0.8.inst.cfg | 14 + ...sigma_pro_dual_brass_0.8_pla_h1.0.inst.cfg | 14 + ...sigma_pro_dual_brass_0.8_pla_h1.2.inst.cfg | 14 + ...dagoma_sigma_pro_dual_global_h0.2.inst.cfg | 16 + ...dagoma_sigma_pro_dual_global_h0.4.inst.cfg | 16 + ...dagoma_sigma_pro_dual_global_h0.6.inst.cfg | 16 + ...dagoma_sigma_pro_dual_global_h0.8.inst.cfg | 16 + ...dagoma_sigma_pro_dual_global_h1.0.inst.cfg | 16 + ...dagoma_sigma_pro_dual_global_h1.2.inst.cfg | 16 + ...sigma_pro_dual_steel_0.4_pla_h0.2.inst.cfg | 14 + ...sigma_pro_dual_steel_0.4_pla_h0.4.inst.cfg | 14 + ...sigma_pro_dual_steel_0.4_pla_h0.6.inst.cfg | 14 + ...sigma_pro_dual_steel_0.8_pla_h0.8.inst.cfg | 14 + ...sigma_pro_dual_steel_0.8_pla_h1.0.inst.cfg | 14 + ...sigma_pro_dual_steel_0.8_pla_h1.2.inst.cfg | 14 + .../dagoma_sigma_pro_global_h0.2.inst.cfg | 16 + .../dagoma_sigma_pro_global_h0.4.inst.cfg | 16 + .../dagoma_sigma_pro_global_h0.6.inst.cfg | 16 + .../dagoma_sigma_pro_global_h0.8.inst.cfg | 16 + .../dagoma_sigma_pro_global_h1.0.inst.cfg | 16 + .../dagoma_sigma_pro_global_h1.2.inst.cfg | 16 + ...goma_sigma_pro_steel_0.4_pla_h0.2.inst.cfg | 14 + ...goma_sigma_pro_steel_0.4_pla_h0.4.inst.cfg | 14 + ...goma_sigma_pro_steel_0.4_pla_h0.6.inst.cfg | 14 + ...goma_sigma_pro_steel_0.8_pla_h0.8.inst.cfg | 14 + ...goma_sigma_pro_steel_0.8_pla_h1.0.inst.cfg | 14 + ...goma_sigma_pro_steel_0.8_pla_h1.2.inst.cfg | 14 + .../dagoma_sigma_pro_brass_0.4.inst.cfg | 14 + .../dagoma_sigma_pro_brass_0.8.inst.cfg | 13 + .../dagoma_sigma_pro_dual_brass_0.4.inst.cfg | 14 + .../dagoma_sigma_pro_dual_brass_0.8.inst.cfg | 13 + .../dagoma_sigma_pro_dual_steel_0.4.inst.cfg | 14 + .../dagoma_sigma_pro_dual_steel_0.8.inst.cfg | 13 + .../dagoma_sigma_pro_steel_0.4.inst.cfg | 14 + .../dagoma_sigma_pro_steel_0.8.inst.cfg | 13 + 51 files changed, 9329 insertions(+) create mode 100644 resources/definitions/dagoma_sigma_pro.def.json create mode 100644 resources/definitions/dagoma_sigma_pro_dual.def.json create mode 100644 resources/extruders/dagoma_sigma_pro_dual_extruder_left.def.json create mode 100644 resources/extruders/dagoma_sigma_pro_dual_extruder_right.def.json create mode 100644 resources/extruders/dagoma_sigma_pro_extruder.def.json create mode 100644 resources/images/dagoma_sigma_pro.png create mode 100644 resources/meshes/dagoma_sigma_pro.obj create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.4.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.6.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.8.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h1.0.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h1.2.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.4.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.6.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.8.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h1.0.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h1.2.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.2.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.4.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.6.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.8.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_dual_global_h1.0.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_dual_global_h1.2.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.2.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.4.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.6.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.8.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h1.0.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h1.2.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_global_h0.2.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_global_h0.4.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_global_h0.6.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_global_h0.8.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_global_h1.0.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_global_h1.2.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.2.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.4.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.6.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.8.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h1.0.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h1.2.inst.cfg create mode 100644 resources/variants/dagoma/dagoma_sigma_pro_brass_0.4.inst.cfg create mode 100644 resources/variants/dagoma/dagoma_sigma_pro_brass_0.8.inst.cfg create mode 100644 resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.4.inst.cfg create mode 100644 resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.8.inst.cfg create mode 100644 resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.4.inst.cfg create mode 100644 resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.8.inst.cfg create mode 100644 resources/variants/dagoma/dagoma_sigma_pro_steel_0.4.inst.cfg create mode 100644 resources/variants/dagoma/dagoma_sigma_pro_steel_0.8.inst.cfg diff --git a/resources/definitions/dagoma_sigma_pro.def.json b/resources/definitions/dagoma_sigma_pro.def.json new file mode 100644 index 00000000000..7369a06564b --- /dev/null +++ b/resources/definitions/dagoma_sigma_pro.def.json @@ -0,0 +1,29 @@ +{ + "version": 2, + "name": "Dagoma Sigma Pro 500Z", + "inherits": "dagoma_delta", + "metadata": + { + "visible": true, + "author": "Dagoma", + "manufacturer": "Dagoma", + "file_formats": "text/x-gcode", + "platform": "dagoma_sigma_pro.obj", + "platform_texture": "dagoma_sigma_pro.png", + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_variants": true, + "variants_name": "Nozzle", + "machine_extruder_trains": { "0": "dagoma_sigma_pro_extruder" } + }, + "overrides": + { + "machine_heated_bed": { "default_value": true }, + "machine_name": { "default_value": "Dagoma Sigma Pro 500Z" }, + "machine_width": { "default_value": 200 }, + "machine_depth": { "default_value": 200 }, + "machine_height": { "default_value": 501 }, + "machine_start_gcode": { "default_value": ";Start Gcode for {machine_name}\n;Author: Dagoma\n;Sliced: {date} {time}\n;Estimated print time: {print_time}\n;Print speed: {speed_print}mm/s\n;Layer height: {layer_height}mm\n;Wall thickness: {wall_thickness}mm\n;Infill density: {infill_sparse_density}%\n;Infill pattern: {infill_pattern}\n;Support: {support_enable}\n;Print temperature: {material_print_temperature}°C\n;Flow: {material_flow}%\n;Retraction amount: {retraction_amount}mm\n;Retraction speed: {retraction_retract_speed}mm/s\nG28 ;\nG90 ;absolute positioning\n;M190 S{material_bed_temperature_layer_0};\nM109 S140;\nG1 F200 E-1.0\nM106 S255 ;Activating layers fans\nG28 ;Homing\nG29 ;Calibration\nM107 ;Off Ventilateur\nM109 S{material_print_temperature_layer_0} ;Temperature for the first layer only\nG4 S30;\nG92 E0 ;Zero the extruded length again\nG1 E98 F3000\nG92 E0 ;Zero the extruded length again\nG1 F200 E-0.5\nG1 F{speed_travel}\nM117 Printing...\n" }, + "machine_end_gcode": { "default_value": ";End Gcode for {machine_name}\n;Author: Dagoma\nM104 S0\nM107 ;stop fan\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG91 ;Relative positioning\nG1 E-100 F6000;\nG1 E2 F500\nG0 Z15 ;Withdraw\nG90 ; Absolute positioning\nM0 Confirm Bed Free ;Wait user confirm to avoid hit\nG0 F2000 Z529\nM0 Click For Homing ;Wait user confirm to avoid hit\nG28" } + } +} diff --git a/resources/definitions/dagoma_sigma_pro_dual.def.json b/resources/definitions/dagoma_sigma_pro_dual.def.json new file mode 100644 index 00000000000..fc9197c2644 --- /dev/null +++ b/resources/definitions/dagoma_sigma_pro_dual.def.json @@ -0,0 +1,33 @@ +{ + "version": 2, + "name": "Dagoma Sigma Pro 500Z", + "inherits": "dagoma_delta", + "metadata": + { + "visible": true, + "author": "Dagoma", + "manufacturer": "Dagoma", + "file_formats": "text/x-gcode", + "platform": "dagoma_sigma_pro.obj", + "platform_texture": "dagoma_sigma_pro.png", + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_variants": true, + "variants_name": "Nozzle", + "machine_extruder_trains": { + "0": "dagoma_sigma_pro_dual_extruder_right", + "1": "dagoma_sigma_pro_dual_extruder_left" + } + }, + "overrides": + { + "machine_heated_bed": { "default_value": true }, + "machine_extruder_count": { "default_value": 2 }, + "machine_name": { "default_value": "Dagoma Sigma Pro 500Z Dual" }, + "machine_width": { "default_value": 200 }, + "machine_depth": { "default_value": 200 }, + "machine_height": { "default_value": 501 }, + "machine_start_gcode": { "default_value": ";Start Gcode for {machine_name}\n;Author: Dagoma\n;Sliced: {date} {time}\n;Estimated print time: {print_time}\n;Print speed: {speed_print}mm/s\n;Layer height: {layer_height}mm\n;Wall thickness: {wall_thickness}mm\n;Infill density: {infill_sparse_density}%\n;Infill pattern: {infill_pattern}\n;Support: {support_enable}\n;Print temperature: {material_print_temperature}°C\n;Flow: {material_flow}%\n;Retraction amount: {retraction_amount}mm\n;Retraction speed: {retraction_retract_speed}mm/s\nG28 ;\nG90 ;absolute positioning\n;M190 S{material_bed_temperature_layer_0};\nM109 S140;\nG1 F200 E-1.0\nM106 S255 ;Activating layers fans\nG28 ;Homing\nG29 ;Calibration\nM107 ;Off Ventilateur\nM109 S{material_print_temperature_layer_0} ;Temperature for the first layer only\nG4 S30;\nG92 E0 ;Zero the extruded length again\nG1 E98 F3000\nG92 E0 ;Zero the extruded length again\nG1 F200 E-0.5\nG1 F{speed_travel}\nM117 Printing...\n" }, + "machine_end_gcode": { "default_value": ";End Gcode for {machine_name}\n;Author: Dagoma\nM104 S0\nM107 ;stop fan\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG91 ;Relative positioning\nG1 E-100 F6000;\nG1 E2 F500\nG0 Z15 ;Withdraw\nG90 ; Absolute positioning\nM0 Confirm Bed Free ;Wait user confirm to avoid hit\nG0 F2000 Z529\nM0 Click For Homing ;Wait user confirm to avoid hit\nG28" } + } +} diff --git a/resources/extruders/dagoma_sigma_pro_dual_extruder_left.def.json b/resources/extruders/dagoma_sigma_pro_dual_extruder_left.def.json new file mode 100644 index 00000000000..1a4d557227d --- /dev/null +++ b/resources/extruders/dagoma_sigma_pro_dual_extruder_left.def.json @@ -0,0 +1,18 @@ +{ + "version": 2, + "name": "Left Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "dagoma_sigma_pro_dual", + "position": "1" + }, + "overrides": + { + "extruder_nr": { "default_value": 1 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 }, + "machine_extruder_start_code": { "default_value": ";START T1\n;No temperature change\nG1 X0 Y77.5 F8000\nG92 E0\nM83\nG1 E100 F1200\nM82\nG92 E0\n" }, + "machine_extruder_end_code": { "default_value": ";END T1\nG92 E0\nM83\nG1 E-100 F4800\nM82\nG92 E0\n" } + } +} diff --git a/resources/extruders/dagoma_sigma_pro_dual_extruder_right.def.json b/resources/extruders/dagoma_sigma_pro_dual_extruder_right.def.json new file mode 100644 index 00000000000..fe6221ae5f6 --- /dev/null +++ b/resources/extruders/dagoma_sigma_pro_dual_extruder_right.def.json @@ -0,0 +1,18 @@ +{ + "version": 2, + "name": "Right Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "dagoma_sigma_pro_dual", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 }, + "machine_extruder_start_code": { "default_value": ";START T0\n;No temperature change\nG1 X0 Y77.5 F8000\nG92 E0\nM83\nG1 E100 F1200\nM82\nG92 E0\n" }, + "machine_extruder_end_code": { "default_value": ";END T0\nG92 E0\nM83\nG1 E-100 F4800\nM82\nG92 E0\n" } + } +} diff --git a/resources/extruders/dagoma_sigma_pro_extruder.def.json b/resources/extruders/dagoma_sigma_pro_extruder.def.json new file mode 100644 index 00000000000..3c2c2b69da3 --- /dev/null +++ b/resources/extruders/dagoma_sigma_pro_extruder.def.json @@ -0,0 +1,16 @@ +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "dagoma_sigma_pro", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} diff --git a/resources/images/dagoma_sigma_pro.png b/resources/images/dagoma_sigma_pro.png new file mode 100644 index 0000000000000000000000000000000000000000..b46c0cfb4b80a8aca556122a11ed4b34f9dbd875 GIT binary patch literal 112233 zcmY&g2|SeR_kX3RY~2gQC}|%TX!k;lEI!DW4T&)=iFTf zb`B`MS-m6le$v_PS2jpL`Sa+;2OLsR-|{U-_w09(o7eJJfPz6n2N z*AidvGW+em|HvPopBy*pXpjEL5Pnp+(&k*XPEP)vETZz?F&=i`9zU8ml^`U4LZ@L%JE21{>;0Ck4Uw&u z9J4F^Th{LJT(JK3YU4kJ?cR~r?53HWJt01*;_~}enURIs85cW^Ak`enc{c||XA(Nw zSLWU&s;p1PCfrr~4~l;qo-=sID^|hTesb?Ud>}9n{=AWMc?n5%DxP-H8oju^1*bv?vIEvLJAeQ!s|9twsL`MdTWV!4E}4 zh!(pkWP zh!J<1*hYL9Xper-6YknM>8-52m-J69let`U(ZZ;vZ(j~j-IuPvsmMK0dNXVPJDU?x zN9~xxYu2Qi`}ODM8@QP{Y;-;5Lo02%S-Q?>)8)1_(!wW-8ehZ`o-0`{e(o1E-KwYT zxp;G$!H>zosfYrubF{a;J%#Hs?mZgyYBG2?*on!dcw{!@H{_4D4+MW5?I{>6_U`A z3^*3U$~#vqMt@heYglS441d(QU2#0($BMS>ALT~jAEsUCQx)c+J)9zTd)bVeWww>A z!d=4yv5zJkL&ryZo{#pt7;IE2Gty3`_{-_Iy03Em%HF3dgkj|NdX4$8tz&fC@+g0~ z(ad&>gsdM_y|S%c6~`a_xXM1sKEcUqdn{T0^)p+PR>MxD8TH?J{rU@g8QZRXi$>-5 z`>*#cKL}6v#V|=JkDJ2#oLBHm{-{_aL3$G+psp&BlH5t%}*l6 zu&VHr)PSAB-RawfCa*=QQl+7Hd+YL={2%QNVdOO+GnVk4|48-7^pC0Rm-IUyJM^a6 z#&wJ;X+Ksh-`XrQU#G%wAA=SZ9-3dc`gL|`=%wC0To&hpmz%5lGT0)}Ts#5(B1wIS zYv?a1Q~Uk#Ug49*cG`_fcjtrIq8sPQex{V|-Z^~t3dgE#mNiE6@9^D z5&SjqXN^v~&P0VxXbZ=f>%S_IiIVcRZ zco??TkCtYav_)0-H~6_uRD?U<$`*CV&RZOqIh|kFzay=5D`Da-=d+)IPgo&s2b@HA z;@K+U=l)x_xH6~GG?ZT0!>B70F~;(0yx1R`OS}@PQg&$$4i!2mJpIq`gDev~GDq!t zY{LuG2JU!Q*Ks@+3dwRd`AH=D#}p0JKy^9xIKYduzS0OReby7%KV9&9Dfd0aQTAmV+U6kM%7>*>q=y3;TBj< z$306nI4YADOckR>+e`WOPc$B+mAn&bJ0EsfsFPpQiqUv+^iB(CUL*)5`V_ z6Y2%fk>#BX+*Xhc`pRkAWm{z?jMc;;ap*5sh@ihVihm9{92ysz6J^Z(#yQTu{!XZC zo7~;Fyr|$%r_hI$L027G%!L8hceKPI(4#aVt{jro#rrRErR*86R9%?822Vp%GAVMH;RD?DhYU= zJoA#t)1rw{Cm(R-TGPt8TV$|6&yKgvj=h`MleobQWP{vB98ZRYI13jK*}2*pR7d^2 z84G;z=I2WU*#66C( z;Er;v;Od3w>KRWE36Rc9d=9Y;%~?rPagef^hv~fP*gti6tHZ2^`dPeXzEUTK-Zx{t z0d~vp&cO;Ql4vs@n@PP1r~ZV!`fJdlt}T`CcjYA7yI)?t2&0dy6~!^4eAE_#;hFY0 zfbyC&EWPc<^5yr(dU5C5fs2ML*a5ZyG{Xmo17V@gR-Q}HLi_MS!^ctkxsI^VU?`ML zqm?@-K+WP(;KTu(UdSm&06dVl&MiWfN5cMb<}A%Qud1lq|a40gQ}iiU06wj3&gfV7oyA-DU}|TpFjd9AGanAn>q-OqNQ(>-hn;pJr!wn+{r@V7}tVmc0 zW8NJR1?LAqFuw%B6*HK~Fh}Paok5yffxPP!gVRBU-9A_`Bb;WoX6G!3RT7G*ga?D_-4wzblzEw;E*QG_g2 zkW;%JfL)I`ChQhltNn8Ux4mq3e1RH-(GHoFcMXLn@C6XVGtNzpEKS`O78!Jp(cFvF z05;3;MStNjymjh$Wlq!)?yEL;A&gWU?ZY)^J3~%Z$iek3H4)ugR(fO(?Kij?btQ1wZa$}tI=LPmdNyFdR=16RSWmm~0%hDf-0p|% zzT!Vuv16AC!E;|@*^OQV2wNtGf0*uTv}6=E2wnkBwLCdyYt-4i=Xvl!Fl6vBLP^X4 zKuJZ^PVNKF2|x++=#L`Ka+>z0ADqwVM&)=_eYgu2-Gv*yF;A0aLCBM5Hvpha`K(F4l)D14oh%{+!@++Rj8@ zb;wQyGT4@lZpf!^XE1&#T9ndlhm1#*hKxVF8G=uifZDkN6!$@zHwxkrtj{?s!XcJdCo1g^j2a_D*Q7X~vAbV*bNF>+}8(^b?GoATy zxs|>kMUcyRwBB4lYU2@JEbl(G0~xe+tdZ7PH2uy7AV7D+FJ^%Pr){uoR1qzZ2tKN9 zur=&5U^Q?8_s&u9&Q*3S4J1^B2CQiBa-af5gu^i};h4Ncbn#3P2yJfEUTy;WJwy$w zdRNLer?!CDI*2ZQ7q6>%&w=wDvYib|ClHRv24Bah4)((!Zt&1HAn8P2we8&7cAAQ9 zCk?8iv7M0{BkZa}{DyhpD7hL))K(-non38Xy}65E6U_g08#TKSOPtLrI#u>~tpM0e1cI^~+X66;neI2o#41lt=C1)^nbqTW2m#vn|f=CM|x$b6gZ$fP=EU~0zQ{77HX-1bJV*VM(cOTCJPW}5gG=z?AGX$$Ub25Eb3H=-X>fE?X8vAd2^Z9olDr2$3wApmN&SU~Vfru6ly& z{OT@0=n1($>xuEhgk%mTEVuCjpe>VjtdlvyF0-?1~-;~Aky2A7NXN|71nstpd>1P z4J`U78Bpl@UB3(z0aALR+NNaNhwRWx;~TR!T`RJz95!@yk&!7HsH=r+C&JTfJ1 z-ECqsP*0J$6H3-IaLE+_ngwzzvu*`yMvCobtehSGf+eK9-)`I)yLd>)euyC{1vf<# zn0N>GIcKI&4R{|T+w|73jfy&eimi|>%J`iJp?3Fh%xT^<@IP~9gcH~K<)ev*OCdA0 zkmH)0H7s{<&$Dgbp>re{)QK-%ZkzVQeUnilI&MTYPaXmLB=QMeDDLsZd(Inv1Vi!r z9sm}~QeEsKo_YcahVoS~pTVAqP!w1C(r04tAwNW^}N%9o&o2g6QYP_K!injhVv^ckvyP zW$TW*b6cpx1@gB5NLX}hKP|g(8rUB3FG&UE7yTfjr^@^&doG4>(xvWV&v=9?0-`6T zCGuIORPcp-1ZcU`Is~|QB5Sx#9^7y|-g-g`F)5c&wq&nuP7f=v) zGpYrW0|6-yzpwgx`MCxUC#pF=P$rX0$4uEqg=(6Mz!hJSvH8bPKb1uFc960L5MbLH zyx1?PNpKJY4nlw(I1VIfcb@%&8od#@Rd#raokWe~xt<=5!ZWb1Eg>h-&d8;G2Qs8J z)X;Wn4_8`vHIN08AEXQ5^#RT&zbVo;e}qS7(b%Q3X;KpcTOphijfkHqf6rik)K2Gw zoGMg;u;>QUww3c4EMwRp0J)|0i~qLy6R$Z9_!e1X-#Lk!;UcYEbdj*TKqbd~7XAFk zWj=a(ntH*$F~CPLh-Bc}&M-nC52d>Wg-Hk1W~t z4vz~kqx@}jP9Vkg0OLXBAs(Px^$`SQ4};r3tei7t%&R=)RikB`Y}+(7URBwK`{Pur z{M`1(6GI#^6g$lFo>6|>{iyO2aFxTjKQJ6eQQQcWoaDCy<+N;|J%l620Cb8EU^&{} zidMZFVVU&m_cP9NC`ky3%_+zuD4UK1Q<`2wdJ3WafHc_-c^K z^Vp1K$k5T#W98f*7ZFNrB_VU zsL_#NcNS;eMr34c2X*bs=3;5^M_4jCND^@B&(^lHvJ-~SyQCTSC&GbuPXq6&AW_C7 zLh_HZ9c&x-;|szfBf0KiYA#xUV~n`@+*@7tL2BAvWN4sEmMbF;QUwSz@LvQDOXyW6 zsrRCYq1uSZFw5trRE2`CJYweQgiJCx-5s2;2RR+Hq(V&u84wPX$s2nm*JxOd%N)l2?sFqB3SXP4tZ4u%3U6ZMjPITo0&RshGPVAL-#1h%^ZZd>7ts-Tkv4w z2`3!9c^)lzg?88`j%G;tQO852a66m-Nu>7JF9+3=4`C@sBj7H3I3=4CO?#G)?n=Mn z<~{|jUWdv&jEU=vZ@i`>m2(#nA?EwHgMIMZ&0GYjHX!S3|!XG9_!Mw5FSW@4ej zfwKpe;S0c1z@D^tKDohEZwGtEnE{JXeG1cqG{7Z_8(WK}ZiDcvrE z-1+!DbVLHEZh(m~z|{b%DY$r<2gvO#LdeEcx_W5w<@L0e;OlK@96)~!6|@RObr5fZ zGg)>xFwKN8-wnuugA$*Awg9O~+2dDO6-eaX^m3cJ2NozJPi|{~Ouk#4J5hxPGjQSW zeoiOQ)j`PhjHdvHR++ZOQ?dKFn|TLFWVudd_0)nkLSn=BZ;woQ>nZCj2^^3=D{oJ{ z22NF;htY>nAWI>y=CN(40Xzq89T7t{GqeIuuSBOezX1_$=Wacvh41coa3+5u0d?lE zfj_NvSCA4O%u2HR1a+*}9d7gU!`_~RS28XGxHeE=w3oP#-v zA_pGDhkBpbR(5zNg)v2{iYAIUuh2M86bsyr>RcXM!%~#$ZEwXp#I<`Xdm~usxDe|K zL5El-K@BRbF5m-tz*D_ox(yBiKGk6(D{WwUAZn*h9m>O_6wQpL_CQ|lUk@LlLaF10 z_xomCKitW5(WyVVRJbOnkH8Ixko8~#Et;vFQ7*p0Pgk}A#2^Zu$A_r{`ADL6x*C`u zy2XBp6&J?AI5`ne5Ox-!U@dAg3N@Rg@O%M@WJ+y;4UWMEDJbuC`c55>GIlm=r{D_liaNP)`rgBFm_6MUFliG%H9G@^tfEJXlFU4J9(!oA2*q5ik0qwC9sH26mf*ni?#%mjSNsuM?GW+_df=)!=rJ6*;)eEq| zM=s#gkG8mI8dsQMC=M694?u$o!((gAp@XDj|0EE981*aUeRAW)x!zeoLJ9?Pf-8iWF z@oOM@=min^G4x%H`PKI)gm`xuoJ!$ngEU+K?$1EdVwwVJ;>dVdna$flv%|&!n&V;0 z9PHsGFwz?s1OH-@1rq?M!2G0F32zx z+)?`AMw9p|ehQFU##x-sD*3rsbQ)|88qVP_H@9|k967C}hSmlzxr$h81{hAda9jx$ zXKa+v0{kDFOAbw51qb8=S$E2j29yb$6cH!MkhYWDl+# zmh8uvL#S`7`lw+kmG9=#?v9^GYOA94fV(%Z$4F!709Wv)o~>0;)-C)tfg9ZpOnn6< z4pM!<5W+zh1E6(s#@V~@cwyOfwQMmcA8xQgIAkN)6)X&~F5YH9 zdpJcrC_s=4IJlFP~vP376B2={=^4k%IA6fE_KWsDqJRI}u4!tZS*> z{#b`l78V>>+7^C0Ga-V7jE`wP^^M$;p&~$?P$2b-2 z^1Giq?+#Ug*-01V3`26|U?c?TOWq3gwHn^*Y{YX0+g7hd(}pPLLk#5c&mjia zKU6OIsn7F{#Ls2ytCLc4F+IQnMVEvzOQYogISEKkCg&M7ns=D*Ln+(N$DoObK*|Wc znY+=ODTDQR-wku6o?WFk;@=Ct3&5tOMSh8bRmxe5g~@LL7tywj#nS=2BVBuwsFTA+ zf#3X0B^A(2OoxjsvjOoO%f3a8zk%bAZu&ccBZU;_LQE$VUjQ!&^z5x(zV$%&XLgL- zKGq3-?u_jIw%RI5h`Ih>PdIW7`1x_v(NH7aVFvJ~EErPWAEMs_HH9e&U26e!`U<$@ z#B!(#)HokdjBqo(XEvS~JpoFBGdGs~mKUgBVi#yb)!=8N?LohqRJwurKfyTz7dzDB05>`dpn}|jF3ljA>Odt{t zvF6;hytK@ut2nd_fp=YzckRKu=!Hn&9Jp0D_YG$w?^ZfT;(721^hGf^2u6>yJ84;H!iSpeXiqk>x$meZrn3zlgvM%)Q?2J8 z|1l4(=t_-<;68`)Q2hncA?+owHbQe(SZmz&0WqqA1D?uV4<=juQoXrT&YA|nroWByW5=^jed=)~G{M>s^@O$*K^I!JZK9T;f*f{~rSuGhpK&TF$u zG^m^);<3k?KZH93e0v~+{kBts$mc=B@`&S1?cr4<`Y606MG0hX0O!VE1yp~m2cb`O zbBQg*=^m5)e2LvN2)--?Uv6I`iury|mBDPm;jf!B-Wl`aV)|NJDtPzcx_{wYAactmqFKmf21QV(2&5`z8-5e*H;q3 z_4YIr{&4=Ky<>=>(-1LrT|hHTUFi-$cFZhbg;-jey%djGNmi8wQ4P>qY@CNhp8#X4 zI#3s7>R^OVoiNPL^>Ta-%stG6nEuG|VWp_En7Ym}<)NL_wuD9lZSkuJT^U~IR9!~9 zzz}V@ePdxY5ziUSu=W;hazH=?W|E-IAu;G1K^a%DtsKJfo)1Q`fw!aTz?jwZu&VQD zn-@r-T%ft##4(6H>k`GK1$RG2caAUS75D&!1=xqoCa!^ zH3N-x;ZGRzKj-g+bRw+<4tU1VqsHSCPI#r(ZB8v2gCiaz&W5R47lp|d|ALFR!L66u8MzPQiXHT8?-A}Gpbo_Fwv*r$Sr4RCpE;=W zuk*IIf*knRVrXS%k0}KwLdicDmRM&#F8FnVR|K8S2@ww(waFnfMAC@VpWn=Lw#4A@R zZQU6;adpPXhL`))mR`)5%u*OFGWl|9k}lOURw;kM=u^dLWecNavec+kk5HZX7qxwbUy3mK z73ezV9UrssBb0I#U7oJPzJ5GIyhimm(gcGkum-+yz`S$JEIfqb(-QZ`90XMIu5W)6 zTp>+4~&pN@_#tPJz8@M=!eEusGnr$vNm6r+Lgh-xN z##A2$r<|i!PG$5RIwUujc?vWnX~))FJq^}LViC`I7=_SiF>)S^(Yk)Fj3va}4LXrj zvn5xL!1_W|Yn4aFtxkQ4tjjkXjQeR)Yk=sBw3Ei1YG4Z74_ zVh0~szSp#s#-H;pRrLZc)#`;`%94_ex6Lq+V2e@qLZk*lHgA@k18+mYUURTFz56n; zqkzYezGu9Z-rKVW^YT(&Z_~vh)&ali-@X%aVQ-KVC5i8yO`)EY9gr{{kT9D>F)5gR zkww|5MV2Fd>;vL|3&*;{hkR9L#ixIcLw>%FX%0@r2uZC|lMROlkiO2}I+`Xu)Rc~HvpaS??v zeijhMY(t~phHUg4ETLr8^KKbJgL1BfIXj?AkD86wqrh4j5$VQ^u#qLgCpNNU|%_ADRvj@GwN=aSp zD~wf{bB>smyHl2{jC=5{ykVfiasZck;Y`Skf!;Vh7<^_nLM0UQBpS9S=m2Gq$35*E zMVY@L-_s9T^ic_E%8|Le&@iVmFLnc2#s$GXYektcXpIf*V=$^kzeqR>(@sXR1(Q%oj~q*DE7&_?TFBjAm6EsMTn%OF3>XC4}{uqT&@ zm9WNh`-<3IlH_s79_H^OX5lWBY>Ob?NC2jJ69*{qTjeGFDRW4M0Q~whcS4j{qN%uR zvC%h5K*{Tbjb{L8KY`$K2`Vb%W4xk<^>=fL(=j*&<~#1GHP^bQcp z?L#Lka0+a)0RR}VQ~k3E-bxh*c(El3XJ#F8;kiFd7n^|a<|JNwGnm#5EXmK$R^vv? zkuOyLfUB0f$5=v5>S&+0sY7JKazX{K8OBIUGOu(G!5T=bwr;E!1Tk6uC?cj7!ng@9 zjAVrMChYSYzRY*V>|@<^8z z$-kC!?=M24L#Q5X6aG?2qYWk!hru^BDK1yL$N6ity3P=jAwfPv6#Ij)dNr_TMKe%A zkR2t3f7apW2UB9adHe=cpn*mkhi!Sp-p!j)W0+R&bApO(=;Ui)|3o>g1mRx<5@b88 zl$gxx(6MxnM5R6;upfPgelF9+4#W2cndgq0jXfpIXtMs`TV!CZ6gmAtr}rgTlMDs; zu&GU@ib{nVt6H!iIDnG$tma8xE|x9DMMGO82O3>QL9WVr677T^iCav-|2SgKIo%FblG=E6>ih-0dbg2iKMvzJ5!8 zW)gTW6yW_5=B->&N^NTdM)O6!ws@E7uf*yj#_>6XbRsjWdlX`?4I7|WUKxk{mWCV_ z6gEt{=?5jI8a7x78%UxJnsA`1jPK)vXWnQgA--yx@#FEQ(?R@Ul89a#jp-T@_0%bAu@?aFPK!{1A==Y zXY??bfQBaYMdgxggP%yVU$`dVRTMyPYwU)Z?q^Moq!F%%rJCC{{y(08GNv` z2CArB1v3T=!Hjk~m_ekx6nwS?(0q&9mT?}Qg;xwrwPV2I_NFFjd?eEQEQup_>hSb- zc-j>`{a?kSd%=f@8#E>7L>z%jNP*m|CN`LlY~#frEBknqIPKvl_rO(>d>slv#3C>~ zIK_ouvYGY0l$g5^9dtZ=BZZ^_ESA!pNpRr1Nh3Jx>LE|Lx%6PPd(QfHGfGLy@6&t- zYxPG{&Vh7*qC9v}xGMv~ACm;(zeC?5~72YbM~_HY29z9S6tRc6ju!``5ScIECGl5?cn@6W{`&$F-aBm>F+cZhv} zF(&3moI|>_HFt7|Fhk^Zh2)B#37nWf2hm1@BT*5iE6=vts}OI>m#{9;Hw<4#DTO2r124WGUpBNCN#i>PfzKuhjv z!s*_yj|*s^J(P_pnS9xZ`6Tas0~HXlcexz%5kUT{y-no?Rz`|GzaPP>YY(Q#fwXkD z0KMFeeTBigMjFV^%D=^KHg%!5oQ3j9(^cD1E^1aaYRrE+T$&VtTZLmLO`NunA*%H(z^ zlko+dQLVSEBUN%tec*$yf7(=jL1mlIX4q)cQDQZ(5jc`4XWR*JVzi|CuV)2QT=*Ih zi|%_*^an;9?K^Z^q{-*yVl23;n=s4=3^{aUsGuVUivqypG+ujinV?|JD>Y<^Kvsl~ z%nR%%OhuZULDra$B=I3ZKcTi#N>rPL{k#NyHsc*0c^Xd%VzL9?E&etbqhyUxlQulI z7t~MGa9%ENt4z;i3nA056sq5FepB>_*5NY?6qkX^uOzSA5rS$*m zX3T)^<$4&hkiJ6Gxs4@ynfFwVshSLU`6X7rID4`1VKbCKkKB3Lj75E&@+ns%U%j_R zNMj@5^h)O`^(CkSj@$6c^-} z_CPdcpr3>(kJMPYf;GVx%!7deM%p2igWZmzn1a#P4@Q$k_ zi3a-B`3`u;-hDxopeEK|O`*hqzHo++O6rme>8e8Xla++wR32@Sb-4`%9Z#{crZS>UThtlPE7K`usi}leSIi z{)5*P!5E_z$`P|}W*G3J9O)%!HZjr@n5xL~nhC!&;nqE{>J*f`OsF{ld=J5ZK}C5S zjw=UFSQUiHdI3BV03O#j^K4~mM|#@_9EEp20FPT>tQlpdfS*kR@1&rOv|`~C2htAs z(3j$VCXK~=vg?Vj)ySLgf!}o3leuMUgygT67*!XOB0wy~ zg+CL)eDhV5DrnR;E0~->w5s5HM6H|9m@M;B_rk3_zmse-Q@ev<;I{4hxp!FD`}=d5 z{u_uz6#g~0vF)4~Y@vbsa7|aZW-md(p2wYPg?%>YWf#<;ZBt5`k|wh3=u4LY_g8j%3I&6QJ9ahd$*pp)SALs3LqLUs1y3cM^jx3{XeiV0jH;?~0+>umQbHY1;9Pru3lUWYE&2xg$pA3EEOBrmrqbI+s`lE z7$e-2@&nkS(_ARYZ`T}0Uwm*7K#>ywtp4Ow$^#gWvcP@^Ni-*+Gtuy~LWd=2OUV@@ zt%NbV(C8`LyQ+7*7LaZj7_pQDdF)b2plO?sOu%(XccE{ixa9HCUC-b(Zp?o*#s8WI z1@k%K@rvS8JiIX1v}Scr0xXv2l56j;5mLQ!Cq&A8WC?Mlz_Y7Wm2_cY#2EHm=*Ll~Iq5zyZe6*84|&mV z*9tn8p3p5N2-WBPKi!E*eYy;y^zCNmZ}6Ee`0N|uac1`?!O>D4*Sfu6f%$%BjMF9T zt2ruO(ERK0od(TCJY_Adauu$`n7=h(6MQN;PITk93m9ECnYbB9114x7pfnV&D3L3I zf+*TAc-CP9C$tZ9zs|2eqqKlz2*r6jEAcY_qtQ3KL^hs@)SUknoVI~g#m{4``AJo? z|3%|Q$m6MI)WH^;kEjaF3jMZk7 zp1%nJm-)=rx-;Mvr*LuaC8Y&9M%UgLY-a_m=YQmTDH!F~3v8;(#Pp+RhJGq+m*Kfs#gUu2fzh~o9`0cHsUXVfgo$#GT3d( z8VOejtIoj6|j()M;X-Y(ecYtx{qir;8E7EQlSC@d?-A9bu!PiMS zJq@x_qV5-k%Cg{WaS$`slyD_oL8p+@lLbmx0lf^!B^N@XIzyuFNA4H!pN44i-VrYE zmCQTxrU$A*z7=3J9xLf-}Q zFuQwD;E~{gL7(z{BrzG0C(Yy4ghsyL!_p5n)^q%pw$3qB5^)A3{0~*q75QwG0WT7^ zIlr{Nf;`E zY~K3zKZtRr{D6@~e=>l*h7Xa?f2vh%RYX1Fh&|t@SQw|!r`(Pt41TNA)nk=-@y~0$ z>+Q`gTj+~rFHVpEGg}D?w*2Z$N^{YG5%LwG=CtJrr0ZLAqa!F|>-dJyUv`v)`OIs6 z4VS zJXK~O_fCkZ$~c`L39O$3g1;+l1qrcdbP;;D*pbm4$Y)QinQa3TvSFlwmeRe&6G&3H zyosX(^EDp4NKRC_3SyRpZzWp|$!+{HH?D1DpQzzLxAF>umOO6Q)D+3mNz z+ro;3^J)8;L*LhHwpxJjOZnYTP~o@t82!_z6?(6xaNTmZUN_mb$HtRBX=xU8gD+38 zjIaL`bR0X;4kSpI1t!Ys9ut&>*2Uf+an)H^RUKqX65dF01)1V|wWYY-|AZ^Nx~&>= zA~x_Fbd2;e^E$h26J0FEOgzlQrc#*|An?7$lIj3`xpQ7*(Vkkxi1|2z!UPC9T-Vm( zU%^a(vX>Zkm|`P9Q2L6z!`v%k`tt!nqVOL1f3zt{nSowRstN1Umo4Zz0rPD|R@Ln5 zFpRl(I}BQ8;FWC|QK+*a?Sx{OlBoW9L(lS_q9NO= zjP3-1uYSIn2QfOlf^->>Y60C0<&n7{tvaGwJ`65D?Xl=%r#a=p>}K}B+3Jhn&IF=O zD@xVCD|KnOL*_T3Y#`bRR>dIy9_<9Nfo; z3R(0Uj}}R8k(#F~;6;@ZOIDCTB$W<&nDeQMLo!eG^^{mw1<|E1@jlEg6Ay+lK)Sg_ zU-eqnjDQu%u7PzCI=}9V*UPGlXolnOMM?#+AGqmI+j0$$^hV2Vl3Rr4>Bt}VXQN4CtC!uKNPNvs?|7cxLu3&`4B&ENGbYiwDM!U z%d!{Wf;OK`jB^$oQ^wSVH=S#QW1%8O-9qBXTu@3#Nl?_QPPu)nG0TScx2ghQwyyE^ z;)Y2ufNp;RFcX!=69|+1w;mW%`oop(ai9vz_35E*;y2aZmflk2n^D$b2y(Kf9^9r? zyuSTl%5SOw7WEgGUr0=7WHD9IhcF*7gx5m?e69$t{a_(`7=8t*Wau5iN>I|sD}MYe z=y>397)lx%4z8vAzA?KWy$5)|_ytpS#B))}e_l;L?%!6g3b0Ipn!1{mDDY~ID330g z1>fO(@M<-&owe(i)+io+Jx0)V6QoqszrPAPDn0H%=4(ObuO`L`Muk{Z z?@!3kcrTJYz||@El3=T!sTtZ@wMi!R=OC(kN8AOz&Uxmh2}^|_el$GS53MOIVhV8Zc-7CBdszq!*D zaqW=E;?39fM@zM0`^;zlRz6DEuY99vfks9v^QFIvpZtfTH)`s(l0K79D)qZe(6!&) zhrdVNqFoKMSIFynXAe(|AC2X0te9P5L_N1jqE71y@pH+yp@kdDoLST<5WRX@cYJCB)=2{Ab9?+pn;yjyukG zSE~DSsaGhGQfwxGihKk~e`U3*20RS={LAuSLhpj%=T7sJOx_i(qm`?SOHl-7 znHp}9mw2o$!a1aQ`oJ=;($wywME++@T2@w_S9kcy$%RITQxa?WKQ?aE&t&NZ=btZL zd}|wACbhd$MVG*DWFYS2gvZr1}W+W~A1B|YWF%w|r;#0klW1hgs8((lf5aKroQuf!$3(2N6!>3O~-j{jm z0!C+c2MaDlE{XAYr`ZY{8zIMPFuBnp67HaJeOI%itruU=3$5b(Th0z zkLRK)`&9M~f_thU4)yi7!0t#*x-6_e*@^$240@(MHT?U)HCVqtl`TOuoQ+TV-3ykT zteWKYBKHpBx6Bj-nxtl^9jh&+_ise&`OU23v%ztZYwT{f^u1i#E)^9M1L4s8uY>T}RuP5<^_fKgGH#5snb^B+=jq*T-rCUpdYn9(XUE zWa8_z&wdx>@vKi&>py>f9jGc&2L5t}`zx~YlmuuJ7Skdu07FujioVX|W0|GZX%Gnzpn6+!Y#LdM@g*OJ#Qu+%4{}5#;ER z%u<3BpvLBAmy4>%_rvn1XHm0-ZKgat`YBUYE@J%Omu9zrJALHCA32Fj6DInP#H1! ztt!IZyU%_jaay0ne#8Ha+!3M1S^@~RSUTmQnIG?;Gz)>Buh>^ZM0)>7GBMcfDmL*a zCE>q^#yu!f2P8OBa8Quye_(SE)#{UMS|Xhgb#on!O>o~EWGv8_P0s4dks%19yT+Wv zITsG@b6_6+?_dStbBdW_Igk2M94P^>p;^it6*+D zC->SXH1B+EA)Qb;Shh~k9AQ0SUdrurw!iSSHicuRH?vj??817!$55UXiiD=r<_vB4 z@0dpwJFbR^_bMittg=mI2T_d7gU)XeI9lwN8|4BdTj;)!q}m++?f=z7l1~xqwvX|% zbt0hY@<+x#W_Iruzy@mzJg9tKc>7Mx{2g~*F&YI$A8S3) z2vL!iDsk?(+U@Ge-vtZna=jWN)jPj7CwbkAV;8%}W^-rYpJ5BV`5|Oa>+p{kyB`XG zOm@}DB8r}nv=-+iTg{e*bfHy$C&Q1(ctTkVu+0?L*BM;X6m-_4{Tu$j7eL37S48cf zJE*36;lqE~jeRv%x$#9+q!bb-z+$9@BC!2y_Y~9| zQ_mwRNhX7%e+bwE3%;GvM^!lNwmlXEM9{);D%XRwtQkvPos{B38q%e)9h093F!RzV$o; zz#k0$Q$T&pIlZb6&ei5fuYYk&iIoO}O98{?95%8T>G*!+q4L=G8ay%C*8QJDzf#rk^HRNBu2^euf6oN z-T_&r!s?v8(UFH$sBU{6kxw#t6(-$9qP?W;0A;Y>J>Df8mtu z%_C5BUxg56Nyb?3kwHq4u*5BycYCw{5U^j4&X>Pc-m z?P>iZW;R^LVtx8s>W$~V+Ly}yLabgh8{J&_m2j;yH&(#4UPkW{cqSfD??<`gW^ctj(DRklo7CnuX2w zp`!0cB6f>&OJpACXwRm8uh6P9^Y)1!fYcWuW?d0j*d%OaRkirtUdw*2eMj+mCkRuJ)T2=QxYz3we92cm!3j#yO@_Hf)RmJDud?bAv! z*}4Jc)T}_lqBu_@wzw?WVF0W95C6CNj^4htwK-9-y9KrxU+A-Zw?{Ky8CsL;-46+T zN0H_A3B#w(4x9_)d*@Sen`0KkJM=l#kl-67kBX#_!A6URW|4;$QPz z&#rV7zg7Y@oANu9BK$@Wg*}u<>4>lbcP#yJQ1i&N|9^^#>9gwjZJQ@@>qTC52F!-7 zOCn^$*LsIDulD`_P6%u0V?f-Vd8Px^{NVnVVwq|FwQ^44*HUg4*r({vdXcOh+7huv zf9brcWNGqi*pt@23vmnpr*=MlVIyqb{pm6dO;w_VwJ%kN=bD~ z6TW`_k7s?a7S+muZ=CTCPj=QftyiM!ZhbncS)W{+^S)}=?B;EEf;A7GHPM2UR%E^X zZ+Tf>Uc1;~u%xWWET}|KXt1)uuX`((*Pr%m@-RpeDe;cPfsx2`(3VxRc669}Afri%s3t48(Ss)&fqPT{pbo+$3~f6kLe8w_OW$u^v6DB7+_KW&u~9 zX<4VX9)9G#Q*fR}@b(pO+5@p&PK-^gO|y4TuW-K8E*`c=^GJAy%IqC0UcYKRd18Lp z9i)^RXX_)WXb4Ei`zbwEIw5RG`M>k7C)Y{Bc^_v5F_vDXvWu>D)UP*7;DX^nSXZxz#GM?MxZP}*}O`GM2#VnM!e7FuQ;VK?*NVE5M(JTs$Kf7-HE7(SS z`{VyHJYu_i&nMc`h8yc>4C1L-SRFaZt3U5mMXtB~A6Z`=5LNd6J-e=m0)m2oAfO;1 z!Vpr@C0zAh8j+Te=iwC204F+BG9PdLCLA&#=qRNofg6P{Gthya&&$F zZ)f@Cc{iYQ&Vv%E*n;0)XGmCGwTVH6jUXLk68qH*&!(5@Uz1%WK57sPPo4f=@|R## zG?F`m56Cz*Vy$w3pM3v)4QbOVssRxc$+HKao5#7j@dHll-Nzeu0fK-bW3Ov2Sd4PHq z9Nh`%$Xw9*cd><9u( zX~*ci7rqwYpAJKwEtrs<2I`&Mrr*yrvmPJ4-v=BKE@+8r^!}%7z<`J_CTvH|m?|); z!4uy&vtp@}Ti%g5>x})U3Dh#&3sb;`;b@6jNZ+9Qr#(|}MhFwJqr^ZJxbbT3cjwWj z0R@I|sq?XP{2J}3VTGAm9ufe-$lY$Y4dBeBi!0Lumg+9=l>^MORSs`rGuylnbZC8^ zl{%E*Km8;fcZ)?vQq6{3udP-bVKWT9_-uGoA5JN-pOZL&Liqzj? z`C=Us7ec)8&zr1%tI-^>_SGeBM1b-0{3V=@jo-j;HWJNqF4!ydR#d z$I;&Tba85{TV_Ky>WKas^wVY6TJw=bponDycM>@63Lsjs>#`W?kN|R>@K~R(D7 zCqXvuTyb;aS)uXx-Cw{B<}%V@HWavlSDgU+RfFYRO=D&t8_PAsj_1PnEHyWEVNGJd?^fMM)~o*>btT36 zN*;M*4fT#g9o|@f;&jUo9LX~q>OwK&J2s6aUsnR+8624FT-Stm4JJt&Q1@q$a`td3 z!N%Wq_eCzbVLXf?klra8|9qbUYvY5!+VejEh?4a%-~0Cf!5ctex@LcNsj-53$K3;O zm_9|oTjNH8%!W`Kcu@$rZR^XLhqz$P-R`8=JFk96&V57Siu6DtlWKo@X|k2t)$=zj z1NzuHyzvskdnsw87-l z+;~>XHt;$WkWy1sGBR#9g!#Wstkbmk_w!p@>g2iM)RI$ei*p~ZR+6eS{Fu@jC0eRL zm!bA#!Ftk?1sT;6Y06l2<+ey97>UYAtzI zuI=L`MN+0FyLTkfY^Z+&FQ@^*FJ+VRz#W-g)8u$sNruBXdo$4t6&Dd-{cok9S-|C7 z`P~c^B;isz4NUm{H2It9i2@XWU6#i;@u|#L=PskqaG}z5i~8NV=3+j5t~6vH)JE{pR^I2vkpi-7cJR zHQ}kwynLZts>e@N4T*(+82#=aD(7yP0wMOQ^ZwnHnP$Sx8n9-UHt?$!koeL9X*pCw z3QSrl)(S<0e;n*=CQ1Y2M_=Lxtl0;V-$Pi^AU&RL>sOBJnN23eH5OPATXkELwPhz zD!Pdj|16~V8Sp4YVE$~S`AhynzlyV1c)CHtFMg(fWWm|g-<)vm`y#>Hx#a*bo_UT@&Lx=!oo8zxVJZFmZQ_5JP~8sut8`JA{BwT-udnXHr}33^%p zp9k^gG61Tppp(D%H=mm)}EL*dJ@6qQ{`0%@#L~6 zo=VBsltwG2)_#$2#(7Gj4G8 zUHmb#yV$#5%7vY+uB>vj^gYa8jLZ}3rB(J$6im`i5+LXe?Eh?1A*4%xzkA8#g9UG3 z|8BpOfIxLarO{#BN^X=;(P%b8XGp{AjN&R~p3V{EQt~k==!@Np+t$h|8zp z9?d=z!*yq_=gt0uS-u5(XPZq%k9W$?&pwf!HI?IPL{jD@W6wpR8AJ!ohDe|ncA(f zTnAN#9r5cTU+N3OTNQ`w@JN@as)I zGf7iIJxp%3t8mL~+1_H2)#+)>6SI}YnGJ8p^x~uD^AE`0)&{p#(PeGlwq>6|p&pko zXoDDbVl5V$P$#CTX`Yv4uaTf@0iOK^X{{7zYPU3(ZnlUcgTv5+?tL49&qrGG$4lO~%I zhbyyo`@9Hy5ScW!`cYfKFiB0}PqbfI$#K_Iu!n#DuU37eZ<5%BJLlfvtYyL!4?CDC z52(i9G%P^|Nhf%1-M+`F_u4%?9YC*42{zj^6K+1S zF>oirYE7-v7wT>xsUjT0FWhrLR>jw_F3Fy{Ero{ml&?LJfPq*^yITp3l9 z@&pIPCC0OpeH)Ok?Coj=v@eJKTg?~R*7YEC%ID{(V>3SGVo(p7Dw zVaw@;@u#dqyp<#SdIgGxyAv1bi>Eg1w_hw9=`0>y>yF`yiG(`B5oymIw z#+@F7k>y0$MhnAEOWl;tVjxv+z1%^sKvVL{XUN5 ztOvIyJGw@MJWV5QuJCJt0$a_%so~v2jBYHWiUStH-6gC+A8n^L#1@~dZL^jQ_~4zaM|mluuvt$x!Jhum7gswCh4hT z2!*g}s5|8pn-p-46d>3$QxA>`xmPrxRG>^93fT~zE_l}+Wa|r!&}f017;HbYzJHsE zEBYdoSs|UmD4Z6d-M#c%6CTwl(CwX3tGbs_Ij%+-zz235#A0B(-fxD+OH)7Ofvrc8 z8F3^Lj>O-KRB)so4dh9O`0JsK8zDhbNZkA$4Iy+VKH7`WR@*NJTaPyR&RCxyt~MDi zXJ7F4!$`yp_Hv`yf%S(1qg81SnBv}IlDTGT9&eRiEji9(N?uLsZA3a^@8w*3rs4`t zo~#jB)}sK9e+Af5X&Xf5Uq8~OrH?j#+~C;8`R?F3FhhgK$~Wfni(Vu`b#Gr48xycZ zEx666k7?^akWUHLv5L9~ByvsIrJJ36S$9*wi!t5twk1j`U)(7bnZ~#{Yc-Sd&3$2( zuU(|h4RTIP4NMHgN0fTU^6!pi`x{h9ym7p?!1oR=L z?ER#r`R+PYgV(pqpz*9ICv?f|y99Y5?h)>nP-DWrRDrQA&t6`1q~+6h-{WnC&OOyx zJ*T?u7Nesk%luyM35$$b+G-%4GNm$rU%xPMp%W z$#0WLh54?&%tmDE5Vkc9hdE5sa+fjB(!`^>(WmCo`Qq-aE#)+d)euKhw~V z5VPx0%AJT6#y(gIbHdF`qy9yn|IaW^FSU)S@@x0@w$eZ#U*#KSwyg}s99BAlz4ECg;27$wbVVT${A7_rL{FT zERH+qZ&@5J%Qq;P<8-ZgTH9)K1@b8bH~YJxx5`@d(C=QQEnfmr-%oW0FAH)RQMd6h zeB8MRF4HndUX-?as9Rd}IoW%e+uyPq^yz|jR4T{DuqdZq7vMLp^((Fy4g#DU2xL*2 z4HslLq;|bAcm)ukkr$b54#!`^EF{k=cC-e$)2zkfkt z;$OI>A-o4$J_NovJCSJ6dx-V!$*EGw#jSQg>7!yY?4%y}7CF5RZ|{~0$Lzr(T|!JY zJ$s8o@BT8mz24E{Yu;g@C3YSrT!t5LALidoU?p3+kj*0h$0bnk7lkU@7IWm>_v%Mk zYL2+~enOwFj?4KmE>7;eGq_f3)oQNaGPLII(@^S7WUm~y*3{}YV$J;s*Hz&~hs`VP zD(=EhF2JOTx`=lK?TqgU1k7dtaPv$e?Y?Y!7VD zzEqMK3#G8n4r|L0Tttjl%XCQwlvsRqwhcg_uiu6kcN6q`a|VAxE{v|shH5G#xfxUG zl&yY0;_2}r81BP0RYCn=lVL{ZqvN4hMPm7JdR#+~l^TRj?m{XQaRY`?5U2vHeDz-K zFWj(7NXA9@R1Z^

kHgl2FU(4&{Whs51ck3TUqtH41n6ti9TP_r2AhAZqtodYiV27SXEi6%5Zhj-^9H zTza$Lij-93ce0k%#$9Av>X2=y8I7;AjRlXr>l5wD$8BAGz$epRI~qteFAAeFB}x^* z17TWJmYr7PME8t3dH)DVuw;{-=0jN2SxSiUij8m%9FFf(uDci1xfJ8xQt`q_cc+XU ziE!~fmovL3oJCpd!&K--;-6*iMMO8M|4P-d)!eNF_ESe})X_aMleXv?MTs=I^fSbn z8i)j}QJ^Y&qB*g?S4Fq0aHFnoijJM{wA;cY1yaLE>zJ*3V_!!ja#rG_@ri@EeK`ki zl>&%1K!h;GugC&px zP4X!(_FpOQV@qv6`_!M9M{}w@nH*3tQ4wktO4usZ$hNii)#j)v`L2Q$g4)fDKKp7^ zx5x{G6SEmL!V)b5svES{1#&kHm4%{b*8hSWJmsG_>It>j-qXg;UH~y1qm=jBF9Aep z7jv&Xf&v+t`cdLQoyNKKdsUBpsQQJ;N3X&??+n9g802-X-j-w0iZ~O_DSXQG+IYea_NJZJ4UxA|Tca(A zjf8(2epneIA!6H@kx66;b)ktFtw;P0OP_d?U8qzhWA%#|ohd-OU z>k|sh0;7Sb9}eD-J{b=>izVVDPMNNoC6mteqz47$J-+o|vq&;Dh-^6etgSN|^TS)4 zWz1t))V6c8l&7mYPA+qI${R7J>$#Y(gg$FhE{Hnpl?bE9jcHK_gu_KDB5W?S>U@|1 zD*Aq{w&%#VM$Kn3hRj~)U)6k3Io+MK0)o{dTm3bR=tHSu8g@ZdxTc5L$6}sFoJwad zkHj7C(RN{*F>eLxOWQ-GZbN~C?ek7G4T;W*poH%fYTl8}<-c_lw;yv8u$WZT+@ecV zU;6mwtg}CI+P_6Y^Jfvxwo~&VBbyZU!VTU&jdT=?DLd)rX=0Y~R{KloWcGS~33BOX zS;mYOI3GOwp>no%QNJjAX^cunpdL4kfWIC|hjb7fUS_YXXpCA0PCBzU=AfN%oX&uq z%#n6R`J-Q%X3eD-wbl5#z!HwoJcCPYf4@`Y8l8NnJHM#d!Thmufd$(&uPXiG#&c*> zc(uH(B3pUKBe;Su`ibD@l?$KCX7EaNK#79Dejdn-#+Afw&W!>ZL5qDb;CJ@asg>*6 zJBoV_X)wwc5xPIGUc7`GQ2jK-~fq#QoBruJYpuvHZjf>$i3Z|8`FJt=bRjIS~T=Z!?p}3GDK+4JTS!>)g zTIkR78Q;T(D`L#6@5OxvKfB6y&Sl0tK~CE55Ax68c*OmQv!2C@Ikw5x6Zra$(NVio z$tfTVtd?TIr&sl>z{|iAZMEZi62FZ^!?c2=q;fkmytvz54L#5CTkSgElx%b^wrqL? zSA6#F^`5R^_X8Zk0nnx&DQQFxaT1x)p$ZD1*jOtbo+7oNYID!6pq5kOuw=S*58BoW zMS23p9&qZP6h^8oYzFOFt8OKilZucFQqFz7;u7wV8T1Hl>oTs&-E$#U`7aD}@8Y)|9_rnd4q!e7v0n zyXm|Ax|UHh6);ik<%B`Q7vQFthZJ0h3PQ~%b$$tCv7HdM;kzPfUAsZk8i8qYZidn# z%~^DCuiq*2y*>M(NUV-t9r;!qJE{(?5U##y$d+GJ>3j=mdSP~nIST;_i2`ef&w+2; z;~dHUtbSUFqV64wwXD7BwJB@pO<<@1KRD-Y1x@O)t(_lSODY~@N4tshMJXzn324Gv z<71!)h+2b6E7c_{NGfR*7)puE2Mh<(= z`ox!{N^O2l!@np+v~?2qBAA7MuWA6-{a3gdHs19lIVA;sm=Lq)KdBB365`TgN}jZQ z8FQpLilI=)^^}xQO3q?YozbZj4jil7f4;!x+N0-ec>6*MWmZ#&4xm1f3u0R+GCV znC!&H?D#cEPD7oT=#SILa2^5}t@WWuOYho@QO*q+aMTank(X$aVmtH zVQWIvZX8|dtjEHgukq$tg|wLcJFgx>hU1N4#^*Zbz+AIJbOCex>?Eghj07=6ged%J zEtOYtrJ4?0UuXK-qn2R4X{mD1dX~ESD}%3^ZS-zrmTYlxd)VH={-);nc(ZOK1WGC3 z11|J{SFBrqmLWl%tH}^iyS3}CI9@f3{gSC0f*p7D|8TUoR;_*9b2TREp1)g!B*U;- z(Dx9Z2p{5hR6FYK1_5X%UK~hhae&1D`+3WUFHmA%QqT%jhB04b(>3(bjD}1KmP<2y zOh>&=lfkFmns~cU?_6V=bBI?a~M{S;DNewbElMqI=Cx zBa02cay12e6x$z2JfPhmh0t8xrKuNSp!RlwilJYR1A%rjq-J5cjIA=eD2oy5x@9?h zwl6{6B|X-d?_X@+7(Ld%(WVu#A*Ew!)@WQ!cdz}-&Sd@D(NgZbeon1be%Ys|i46jI zz~iC1H`EQksH82uH@~+E{mJF3f_>8aYonYNHD%L?t-2%d)O|9>%d)!~Ss>=k@iWUp9iFTE4t5!l6ovoay+kmlWaiT&*?8nC+x)?#XX#+bj!*od#ORF}*=tBu-*qoX!l zJM&8TrP_(P%o4c-82Xl7`9AVBTl6gpfA}Na4xI(_1@pTbEE@z)f}l)N%Xehq%gK}J z830)2aqXVC?Chma5B(ZTq))ne)zo^25-*|+dKI1H1_^){*meCoy{z{?8u+HszWk~0 zz##UFA)BoVNcoHmcS`LiU}7<=lZs3qmj3z@TyTX|Kk@h#%DGL*u~FW~y#p4Xdac#- zFl0@o0QF>qaNO0y^9~UYvKHk{NnSRXQ6)@OHFdbVHodUB#@+$nkdV;ILHhWwA5=sn zfwh4btWN6l8hRT}s&ZIWn!$lIZ4h3zA;aHviV-St!IFU;n(ty$%Nt&rmga-FDV>1M3^1b@pF_Rzf~^$G9<f(_y*MV1J- z#N~F9nqLY`!wt5dZTzi=*EK@qBQ77FZsrlq>sSy~Y}aXInvHJ^z3)PHVT(5vg^Vt&i^ zR|b|Pnm=%r^zQ(_Ysmm2k_@j0bqC>1OI`em?sb!1g(%TsRlm7<1pPwmtVR3k?!1GU z_ke1Yh@pNAAFFEW8>m3wSgjAc+t-?#4377OJ>qeUe1xL(m+r0o9DzuJtvzlED~mVZ zbBKNN>>ag>fp?!1#x_6xKtXKcZ1rlv8D?_JgKVixVZIv{bpxzz#5be5&gPyroNL?b zx|>5L{nDmXCD*_k$U_GqtnF`Y-56k#>H5o7zG}^g3@s;YAUX2D2eKdF$$4x$aDPmn+7k&(6LQ`A)0QtPT zC%ay+mVJsh{nfsg$-)enJKxs0%0{L2gcDTj?!O-WElM4h30 zF-nj;9XlW#*_JNYC_0>=Q)Bi#t&8}D+^xCiadgYpIsGbJR9^>n=(gLfhDqECb{l}v z;T+sk*7B>pFDB8LLv2WBn+TB8v$K{Q7DSdzcvERaMl&c1=oa4XeCuO&udC~QaeL3* zJ*=HP)b`Z~O9wSh!Eu)M?;8ZVx_(RAXVa$*Ie>hQlQV`>^iPY^)5ApbwJeIb)SOV5 zn<~o~5MUF`g<)|rAcSz@7hDU%{_p57`e!4F79ebI%Q=gaw>3G3=SmhCyCsMCGA-smu=x3((O_2JlC z;TeD>+6y_NP--*csYSjE!xrZJ(OZCHS(GSsEZC3Y<2`*EVr3KKh1M1GewKytIel5X zHK8|3x72pojN=>2hlQqrr{->C$H1pTMg55qDcK@kZ}DvL%sJq1kmR5t^ScA=@-_n$ zNi_+?7b#@f3T>A_N5eo8(Jxr5Jl}!uoH)>LmM*IaIs*Xe6-xdz%vckX2Iomw%6D4ZG&=e?4aI4 zMhJJP>>+m=?CuXAw#y`M{o%n~PQuv9*tsegL#9DNkk==P3?d8MOZRRokz@4ZFpmG> ztz_9A7abFQ!-M>v`x3|thJ&Kr0neRyI^o;;rbZ?MV9`Vdy=o077(QZMQn&9VVX9e+ zdCX{t>1u+8LrR<78{--+YGQ7WtZ z3^KxdUvxwHufmi@uk17m;Dm?lU%p5(IKLy?wOn>vJ~X?0L<<@koYoByp-k(19-BsE z0m$WOq1AbZfj=GMxOfxhi_sFx;Cq`j4KFCF+}a6+ICujhiypQ+Bnl4}RKcF}lcU;! zPkz7Uk&I(mtHvxe?Hw(3kuEJ~c;#*ZSnbzGQZ=!1HM*Yji7(vcTa&ee?G)LpygU2# zDdqjmM28PczM@y#_#WpU``q8H&d_+J_-N#8e%z)qe!U#kV-In?*m6^tcD|20KEo+lh?JUs#5rytZlTlm<| z(rl?jJ$&0ExUFw#o)_ zD3nUx$1#`H_w=fKSI{jt%t<^V5RNHO(aYsiRdn(ppV^6z5Z*3C5quy1qZd#MIYOt` z4d=s$1WqC=jv&c4ed73oH^of-e`1bQSYyzE=meyiE4kyWn1tHg36?F4EGZIE%`mNb zd%~>aQd78-L3G0Gj3FE5A<5GH9daB{+TiB2V1;x$w@)jtW{N5^&d#P}$D(GwwOEYK zeXF3lEGDJHv?w&1@a2lfcv#@c?Mj+;UJmhQ>-_oYW=khm6OSl%X#-w8aI+_`^!>yn&S{pThD z$zYpp+y?doPn`kb<|b_QVjK=(?nVK)puh82wI!ycnK6FfP-{>EP~7%Sl$Ah?GsXj> zN8JVl-hq2FKpcED18gX`v3WdTQKMkicKBEnZzQz$eb#c=?ER{SLCm$?eGE9-2=FE7 zNCv@ld)D(c=;3Bk)B$BnC0~Jl=Ii5p?WN*w8`B@<1)A?(4`{((YYq!0jp>AuVW*yP zt#k4}lHqwwaStl?oK4hoxPsw^`3>{k5*d;PSW=@+b`032@=M(3OveAj4ph_>Cc=R=er~q8rJ4}qJ22tVJq64R^^D!28y;+9 z0Ei1xRVPfx>eyu@g*u$NB;zzQ>p13#+hglq!I_$dgvD+XvY7wKB)v!XJikb9xZ41$ zcy9S0pumN!6jV$ecr6X)%1U4ucXiho)xvG0;wpqPyG@J}xH8eBIgRs-YgJQGV|DA0 zJF5C;Pd6w=0F3T%$=UiL0)BhKYHuky%4IaTX0Ch0QJQ;09QN|ju zCO+~#jkUPn&so2=^=9)3*mS!|AhJF19wyh*E65c!EjqVr|EHLFdk@z}VTAAt?y;^~ zT1YPC+G!;j`CXCb=!3V=U$IG=h=K2)TbcGk*mWJ|}9%jz)3xfmR$Hx+jfXEaKv-IxpB zO}J_G@M=~`<<{!1#AN#M34p_T6hktt{1%Rqy=D?$my!YcOOoQqL1RQ#Txo{^3Pubh z3^`kEZF$#zeH<$I|IO3mK$6~pxWRc@_u)YReB72qt@n&18mXVy*D>wxPW3Y7)5orq zWyYh|99s$@HOCfjG5x%BR?2?$(OsPrr$^&2+^u4=GZSh!7g=W9o|S#0Y#zN2Q&M3S zbr2p^oB2rE2PC*N%|#F`3bhoks?tT;bEifoOFGa68zICA2MWByiB(QL<~r_vCdQsS zJ$xe5!^Zz1GTaimo;H{?H@ad4fbfS7di#uuTgUHi*fe2g)?ZZKx;Il_rtKOL5W4-G zd#Qdeb?}vXiwbNY_()x4Y)h0Utvl69cz_c|s(%ZoMUDnq%UDvYd_t$MT1>}FWpJNZ z?AoYTr!JGu*dnAJ=eKDrJh;BwCr|09xRwcG(-{1LjX#$1SJw#^%&J_WyUAQA z=h|kNDk3|-iu`)PzGe=z#h*^Tusq-XPX9SA|Oe`IJA00Z%y9?Bcz8`3LCInwBzjt$n=UgrAGJv1ldLJ3I|kHOa@XZPcJRGb-ul>B5^@Cl<#V zG}-{jsGxlz#jQj(ZB%QF*WN92`ncpzo{jbQ2Y1;oGCyvosO9oSp^OMga6oB(tInFWYfmrk2D#2uOM zaDhyo(mAZQa@cq4+3Hj8Y}4u|*L0(%Y|*#pBO_EMT!7q?6{$m%_E#Y9VV-@Y-Hh4( z76i9p@U>QnO@@u~l@U~Ya^vvtmB{MO6J-{Ds>Xj*hB|y_HB*yia5Ue$#Oi15%gUea zgw}ITIiKw5C$;4hr zF7v#vMpVT1Y+gkK!woRwbw{BUwr^W#n5g5ORV%OoD6bCc75rJh7ctx<>xYvF)9vN= z>5Wvy&y1sJd56jkbo$RXEM3<8wzK8VR_#oFJ^9TFP^i7`04Y};_sc7%L?CLdU4@X^ z@+%sAayQK6g$?2qKc^xEU5Y0eM9gz^Z-9+S0VI0gV$?mF|7QAp4H1D*mKUm`FAxOE19o}gqFqk=15rM_r(d!MtyMoce`RCVhB2(M zcdRq>o6#&={PMUan`ng3fh6#7$AoFL%BngVbS z{RQtXclDx;L7(oHczfOL<)!fmM~A+~&}t=))$ugcbL1|=CD7j?K2VoriP+%qeCzK#>-U_n zGUn_uh`35gXP;H$OJWu{Cln#UvvN7EtR^DVvUfC)VW40&L&UUB{c>;W>kQI_1EO#_ z9S$19d$EyLkF)&dwM5*WwI*m#9J-TYz_oP4Ul$Hn?Ft=x`87{==Urj_S2_pGau8ajIx;eC!tOgWg^Fzg+$K7exJZqN`DE$co;CwkU%Di*e5 zH1L*59(f5wU<5C@TvfwtRkm@J4k%Kah__dEBXy-_+r(7k(((JWyDu&MmiHl$UoC;? z)mudt+qY6z4}tPCORqt4HNi?is&HFh9cvPfRmqq-Sz0cwoQc{+PIqGe0Yu5JG+1?LGMQCs=s6YPzBJ zXZrfeSxhY@$AJMag%G-yujzYd>BW`A)&6GIpE^ZXySn39H$B z=SUITn#?Pv`7Agmy4Y|u6-zx6n)nkT%5OtpqqUt-h-R-wVoE|!<6%tY2^_}XsF zJ4Z_L)?@)+v^x3dm~KPkk5qqNM|b2Ze`sY$WiU#or_lo~-Pr13@e3vgRNtWhR3{a{ z)h^SH9XuIb6@3a9sq53#IERD#*EeEC!zsdUhSPSU z76RpO_QU-!;p8#3;-iXtUuW|fiiZQ?7Hb2Sn@-_XKO3x2wr)q+p#W3Y}03i44&@?sKqd zBPRp3PK0|}*+ebVHve^?7_)rx`!|%^-KKAZV!ibtV+XIqhFijy? ze`tF+VnkcRHm`3+LiHd7;Pl;gtVDeAsd`tn5>NnIh<&ERWcg1O=CT^Q8O*+cR132w zxLi8$hmNHw@qZA*07T-=lBd*s(rtjpGejjVQxNDIqdL%ZK~a1nHa3P|&rdG}H6Wmp z9_IIE_DzcS1{6Z~Bgd<&n$IzZY8pFtJ^g;VisUKy9lxO}9wvP;3U3pJz69^DEEW{E zGoJP8jozxxPt_TLC#g4fE6YRBX_(u8N-PO!My8e86G`)*{q$+vqmn1@C;uEoI#;ga zdcKz63NI|MDTgcztJ9WSsVWk^8@HP5wtZAIS+}~C_KJ0Mx#LZT*1TgBb1JDDmrubQ zu25j*BZ{(XeUE6X^{_cv4mL|w50pH-w^du?A}z4lFa6Z5=~09D6(t|1y7{u|kar%{ zUd_5D)J2>-)h~*Eok(U&wTBBse^#=0i0?gh*t7?5dDYNx2c0kg<^ynaK+*Th$<4CN z-581|F#5~u19bLkN0$z%52HlQ(ZkeqK$3O z1meo5`wJf}&_Jom&tsx(+lG?8Q&N##((iA0;;fY`MXKX}l>&8S;h!h_ua%FQTk6A@ zv7sL-$w;-+mslATk=kb2n?*qF#`(fW)XlE-aoPfrfm`Ie)7%^oFk)@ojoh<0ZtLMs z8UBLZ<@Xv0#6h1f08GdLI-tsm*|Qbo=cQUqwMM&_Jd~b(JkjS<0tNGG_%8q@zq`X% zco8yZt9J~~^1^=l!Zkh~FGgZ^7R})X5=L$n-+5ZvMAE>s8iwhp5`Vv*)sxwv*yC|< z=*NN{pER*#t^#bRv*j zi!d}wN3FJ1z!pyG9830J?Ps@w5IW6j_`MSPyhnL-3&g#$)VQ_2#0N)+XdkDrWiOit+ddA;qzLZw{x*McABP@eI=Z{zuZANChbG4?^eQSpScPF+7#+L-}N{4xXE zz;Tuj(d#v!-ZvTj)GAke&l7kr1?5@q8#_-pB`XvF3eS*C-JQtj1*&=R)K#DQIlft6 z9VZ9eKXFB9P1wQsb2lEtB=qT;O|B>td1<%xU$~&+U|+oLrE8lLU)_UXw@`%}*(Tmg z32ViN`x~jLC&o=Bc^QUCRiFme)RkE9Kj8JJYr4)PgU+$hzB}wdrY1J_oJo&`PK93s z^IYkb;0sax;QiP2P&`L(zXw$WRwq4MX&qTV z7qV=$J#5@}L#(9lFHvqllWaB0sBqJ)!>i5iffC!q4ZlfaoQME*RyR5*$E|gKRzy~LbR^r0=vY}Z`x;Tr^!mp zMopH7vtDfvh*SxrUbF{di&hD`YWgGy|cJ3~YoO?`6Hv*NM%NfQd zf7t8(7wpjf6l?oBQIp!0?erRm+SP&M35BxrLJ?!ToQs<~S)zsRPIS=0*05GtlIp>N zVu_}ks&R0aSTdw(;jq!iBv*Cz0|r~Zi2lrQ=fQw)LDp_AArqPO$({^gV4@a#%|b}U zTfMRq5{tx8lHq4NZ|0_v>|W|;+HC+>B=PuZnyrHNof@_&_r3c%*dE0X;29LY7GMGn zRPoGS39Fuk?Y=NLnfYm94uqgp`=dY%vC1HtVz)O3KmTP?J59o8tu{@gTG~HgX;%6( zs`Ax~Ht)w12S4rd<7F7h)i;-Ag3w%db%c5=R{Mc&O@22xGys>WY<(JKFKkj9PN+zDRU~-y4jt0ev zvkl=^O23t}xoN}n8RO-Bd3ntEzSVmdonuS2T-AKxt9p~-AuqU{;Es&aTDns=hZsRJFb&FN9#pOKRq}z^!L}MQiNbc zbUy!eQ3+LJ5NIA$`a`brAE2*{@kQJ(Z@EVr*~zD{e0CU=??yueY(D# z6NSUUJBl@;itb#?rHI)E6(A}NaykBSufT6=(|~!2@55*mu%RY*q~qSNdNQzKgFd{R z(Ewo1GVo-b2G8UE+5l+-Bp%gaM0CIaWAXZk??GFeF8II zQx~w`XOh1OzAZrn;Dr935A>sgEviSA<$aVBWy91mgBZl(W4De1NF`EU4%C&wI53`_ z-+rahjBUby<-FI>FqGQv@T^`7vbnFBx&c*3v^|TP&jsImckub`oy>G({z+UD7xl zoHB74S2=E0!xbU6n2w0AtB?B>fM>a;*QFj5-V&YDl4Kx+_~R_bRmHYo;~QvsvU12k1)Q|qh)a> zdhp`;K0~RnD$ie>Y&|Y{pX;J5*}Hr^)o&b>$X6}u#$v-FC)^*Ehh*u350^IW7Pamo z>tC7QQ{%ICO0YkiTpQcyE>SE*WkEBWUqhNp@fSwfg2* z+LOz5RS#K2xAP+xN8SUus^eT(Wh<^c;eSy|T~p=aMZMK4I|3KeF$;Civ0m-r+5<$t z1^VEFeG-zi*z4DkE@56*w77NY#V|k)id+kpGkBQXbFb+b!l^^3ZC{&nq_rJ4+Uyu_JnU<+bm49C z$c=gSn0lcUx8JvFkE*odzlj+HBBa*Q4-$z4|0gH|7bRL11xX#Rr~@UFGd2s(3=$4? z5`G3z^Ffx+LS@&3As>glQ=3y(SGDuRs((yWrLoVwx7neRk0p`IxMTETzuzeOoYiMp zt9XXgcdss5cozdy3}|{At2TGDbr`C-lK=CgQ<_8%*y_= zI!-C__gf#@tUP+Jp%XUxb`|#1Uv6vkE%a4+i5yV3t)W7op1;r#YetRIL;BqNTrd$M zmknO~^2YGDyqS< zFhA~ujr(WY8;7BS1Fm|@Jdo-xWlpP*){ncDbzh3-|<8xIj ztil^O$^10;X86IS_i0C0ury+xg{w97Ms`;-Tp+myVtU|{K|}al{O9_ltB2IM%{>xe zv-ZqmvIXo7poTz=JQ$;CQT5S+HjR&!Au z0mas$$Xc(Ny&5#FY-Bgm=xW2#Qd)NXzG-BqG2sxh)oA#%ZU#v8`!4-I!oD(~s^xq8 zsEDW_NH-$VAl)U01_9{~>F#c&TUwBi?(P<8knWZ)0qGKW=it5G`@8=S??yeG?cNh> z)~tBenwiY0TFm><^)RHnSI0mN&9{x|!1NC+-wkBE0Xip@XBkrZ@~gqB^<#_g)b5&T zLPs0&-@*)LkL*@yB*H_IM)nvSzBmy*6R4cut5XC)#aJW`jL#y_mb>k>y0~GL4@wxD zYK)vLYq|Jt;=MDc(E0@ZLpII!`3uxp0GUBJA$A^Smficy0|clwY^*`(TZr#2#4nI) z=v$cxVJJo<>*{3c#ehCpnts_pATyALn$@~ha|_E$^LbM-sRVfVAXKCoL2UO-?{lyh z@nL(}V&hKo>{p@%KAWvKW5(?a!R>}+`J-J8o`!`VmCh(${H~OrR09s6j9Kn5mZ!P< zBZ~;w5Q0$~RIwIq*GlR&+1XG@rS#1sB7p>W#+ zC70)>flwMAwiwZ`pDn-c1~#xa9_t%{Tl@7f?!_x-!!XaNZYZK zL~6>?4JhPGNklGv4jPiy+rebP408u)qmgeyx`;_nNJR!_ZY*JL)yZU~NF6G5&~tRj zKn#UI-;2o`sz)O;*)dEcl70@~DlaePKfc4qQye@L3S!4xx*4l%(#rU_jXf_~HZuZ} z{-LZ6hz#O^{2}+bvj`vV19wI(v1CRmQ{ZYV(7{BaY8j-h40A!FBQ>_?xbiYjf0=qT z5e^Z72_I0;KZ^vxMu|mv&OXAIY`VlQc>`z~S|n~4qs(5T6sQ5B-x?eX_|kB~O5dI|eaP6vxn6=KhABE6Cu6aZ9=#bEh`qXl{isd( zOZe>c;CnT^O%q{BB`wBrNpBav6 z6I#)K6uz#CKr!eE46(Gw#OQ%ih@A5Z4|Ec$ayonLg%+kio)ixG7-FI&8=E}ka+nb9 zd6Ws7G&;;)r^(2eNI!B^X@zoOQkiln|H*3PBfBW9YPd&VHmry zy~8xl@rCuoRPx@7!z#9l39Ehp$~v0Kwca?;Yv}vHf-NA_0&y>X=EH8E<;gt({lb3r z0D?{S$=n&W?wS0u_-r!>S?~HxV+hfeQf`w8M`=jtR=*y20jB7iP+j6(3nbw?UC+ce z_y;m zuM$rn)FwtUr>%iwcyhYCl7!BoCe+*7^_@X?3kxSeudy@~WT8gh&VP8^1 zAg+s;c8qcW22i8*SNp2Pt~RN>kScB5n4+!FZ?vR+;n8(j?Utrds1s zo@0ZypgDqUs|giT*Z!Cli&T)5->N5{_VpRvMtHuqnNUDnh|7sS${QbwWwJ$vzmT^%Odv0TAz#UgYdyFt7IEchN8 z1*suD`&^b>J423!mtU8AQ6ThovRT~Z@MApZWO`bP2Lj!0 z5>e@189$KvCx5=6K#Y95_z=*TK8KJRRb0tFqNqs^wqUHb|H6(d7wOg8qP(`Hwb0{V zg^ug%&ci@pyaM9lmDaE?%60tp;%k}T^cT&RnSo*a6`L6R?_5meNg-+dPkO*_$B9!{+Z^Rw`We)8 ziB?hd!8`IGL)XJY3uHDldnA4O)%LKyPmYY}-mPf>d9_g5<_yvTH^9CMCEY5(xL1>^ zsYCbWFOJ_JD@w}404s@ch_A%_0ym^`=%0dA#SM279b&2bJzrku`=R1vehK7%b@Qy_ zE_^G4R^ZJ~(KOPq7pkxfzJz@T7u_sR>8Eu%4e{rrpjLOFqks2$LF^%MLiVM9IR^ad zCa9TyO1mSk(0^E+)ZugLd83;<$mIvl(2MrC2SJSDF?KF`dI)9VTspOQ=M0v+G&eM=CW_XwlB73h z+H)9qc?X!>pE8oAd4o7xvvGd8IWh9kYEeGfO$+qguN8)K04z}W+N$h4XjAH7IKqI8 zcBpb}{UD^&!0+obFqdw_PmrS|8R9l~SjR~-qK@#u!rRwe@0ce7z~Zd!F;lHI!Rb#g zRq^dFjFxZ>vm_Ybu8KTD8#-f<;Z|OTD!4R1knv-MfEs^(1i_$ifIlRX1df{mBzUAF zVJhRPsOS4PV5~ohaBo|#^}Upi00DNGxZS`rEZFCmaZkXzrM1fXSuBltyklsxI*Ehz z`!?r6yBG1-Nb!ELQWPy~tNeJFd2kcun~B(PqJh|tu`Otc+eE_1R4tp+?GF6Q<5edg z2;s)XaXyg_`@4Kkbd}lQf;va3baka14|DFbh^quMfsuh;`55N#4?TTfGlRML5Y3??86tdpUXs z56ce@tX^x&Lw<&)Ljy59gh9{QL^ORM7Tq)1q;a3ETkiSaa;G!i#J%562SqCx;+0y) zODp~M%@oVTQN?F1)dew0!tTT_vnHi@CiCEj6`ouuFd>P*Qr! z-V+j1Odek3;qi|Fv7v}cfe(cOta%ir?t9C8OEYbxLp%Tr!9LstKp)V+;7?_q0A|rS=_6?)({>bU+f-fRvAiB++ZQ zef9Zk3Fz>f&;Ts+oYgU2Wr1BdRi`}tT5^DO8;$(jJG+^xKXmHuFB?4FOHk@ls6QEP zbQLF0a^83`4<~AR7Z;x8E+I07OD!SKdJm6?5IVVF&6ipyI>tcZH!{c~42%Ij>VEWX zaQ6_PqS;Y|!%0%v**xRw`Qr`a=jl;LA9e>@=j-S5F5LN2ex{;{7P@TBRi>Llr(x`x}PXY&;KHy9AAMtUX!M?CK<^gt>1o?n|E1V1sBa5@-BZ!C*m_fYLgIttV;~t&BZ_&72n<9j=MFq73Pu=nPZc#aK17j1ufj{kC#XBEZaF z+TR5c;>-s7foMOI_d)TOy82{jf{0753GtHo{Fs;(Q^S~5W4*o#tMKdg>+RfwG?tyn zkd$udz(F%hoaF+GrAxu!>Y|^jdg+BL5>6<&y#C?G><(ippW$_Z`#lDn=xmflZUq}jT z#?QRKFFhLv_#{=;=7r)dXBS9~?`elFF_$Lgm`@2PS^0PkYYV=uu8I#*d|=aIO(R8n zNZcSAeCZyo(~TciS;|1(d71M7HfGt_o}%?4ma`>I))f-;t4xGDQnr8-wu}z4Pw41zH0zK zd>J!EVTJ3K@OQt1*LT$80uen>b2@L?^_F438oRppkAiT_Z6o4}w=wjn)*RWG8poWH z@W@<-xn&M_YGn`Ir46_WI%38UUl^f-4P#V8YEz%ZhrzKWJ`!ML$T2x?ZlMer(+dj~ z{cPD)O8+fVK5T)`kCihN$+mHf!{EX!WCmYAhzB0BGPeSpnmaI#SZ9XsGn>nLM9kO* zgxa^4rLxCMkuTDx+Dpl;_L8*Db=y2BuuSDt24WX^_=dXd`K-LYIHFzUXSj6j(0TdX#d=dJcD6;66#0-ReP-_cA&j>+MA zgN}POd};ux(b$aAr@shB!{ZI< zQ;dXywy}L95oGhIPQp1&?h7;QKSLo21fAq~$++u>L0e&a*u-@BAU~aduw+=h3eN)pQhU;mFBl^pP6ot&JBfYS9<`ws zwD@Y`8J~O@qR{)$ZlMVT<*`?uA9UYNazwn4+e9ZW>JIG~{VY(#9R-nO$z%xl!+hS$ z9G5%Urie?}43IBxT*tB;R3ePjMjjq*q^wC=W@>dR`h4uUaBn`JKkECwx2||S$(&d~ zfbH%nUa9TVVejzOPCW3((P&%Dcj1NC4kebd>MzA~NBBju84xz^+0caC6-isBqN5Wg z8JZnb^$jdD?0sW|m_~RHa$s=)&@70v)WE~tLFNjed_`}OoZ%(z{3^QgxQVRKI%eB8o#8kGvxmv|)yQr2ujVDe5AgDz4Q!rs%+U>^ zT7$Wlp1&jL-tK3hkYy?^M|$;D##JGxJG8cI2bM3_*l&ari%?TqPqG~ycA`8 zyXK9htg=f%lbacR%5||xE@SfM4O*~fM*9p8i-FL+{BZoo>EBBPz_3WK3 zxU-M$%lr{PAGovE*X=_2(O~@#@o<*NH`yws8e!S7G)U5Ds-q%V>fEW>YquR?^1e#t zCfOJ1<`;?5A#vecpTa}jrRiF+8u+jzyfEIQ&D-d9>11SVax-D4@xEL7OV0DouM|!N zg%V6LMcRHB=9$+E*y_gmfi`RG7?gbXM}YzVn*!Lk6zChGT!MpOvs%uM_7-=$%FfwI z$r1B9QcS26PUKHU%Uz3W=lY8c-z+0AvnXiRj`!{db}cVvJ?*l}H?HJIu^53hxNkv=Uw5a9GJo_FSR5aM57EC=N@-9{wV2m^CmDYQ#ruDRV|#LPPp>StJ>XsN?pc>iAq{1#wfGWQ%Z<8 zggUjDXFbApc@1aVA9AD=?mzyl-J&p=YWr~!dM5+-I6aRd(;(4`GB$=p5%`N3-;8{L?0gnuaUIr3n%*}AUdvm|UZXgtzT6CBO*!l@&9zJJUDEAp(G8WW0* zw`CSm*foAK2d(pR4p(Lv;pa@ga~5G?J{MfE&M~cJRPXGIYW(%AeJ6X|Nd+hD=^+X2 zxlR&ruA0Gol;<8R%`k@c;YOU)*|+kr7-?uG`x&!k{A)(u(;Lb4Tn0Sx2}TU;U!uh0 zTJ@Q{#I2Guas)s0T($NJG>LN`6We9pSR0k6&MMWb9fWXQm&RKJ0{E9}%VsuXQu&9z z)|-H1{($(GJ~h_Els#6oBK5Jo{V&jcv5&Uvy#QM-MPw0=4dL9(=v5mb?>jEMmP$@9 z!Mnr8pZhPR&}Hl5A!UM?FjXh{6ez9+qao8}8Ggdn_aYXdE4elB?X8F=H*9tR^4bYc0;+!HEchJQ6+*5|Q#gMBO)u@t(N&-@KT<0n*o3Dp6Db?Z(Nsa}>#}1SB?35gJD^0Rw ze}z?7M6c&v&I-s3nQF*gvLGBSNR#A_v~yCh_)h7mt-aa~;t z-8QPYV6)N{W2GI})1mzIL5q!G5>3VPMMsXOeamilMWFq%Ui}ftedp}fhU=yAk40o8 z`^=Mbhq2VH);drGhUDWyHZ!}-hC4r7+m#nMha%Q$$_Xk%1TY~-$Q+m)<2kk225^i7 zI+z68CD4HHK3j_GszO%k)an@W_xL>U>@iZw>IlXz!cGcq32DGG zz6uBD={V#uKUaz*sONrpHm9*D%Cx=mAh}-4(p&_o!*z{QooZPFdD(>Ng!f=J?5!2M zo^f$7s--EkbPw`j&XnxlWq;vuH&`?zDZkT#9dWUD*gnq2soH$;UXWIHSpNNiih}I^ zR(vw^r#Z{|200ZitMc>{rlT0={5bJ(@sgtN2J;R=uCM*F8$1o3muOa{%3zSxOr5@x z2#$3*;BHA|dA<{>#6ni}@oLU)#23Y~xj{ok$!ayeB;nD1j7r$kdl#Yj!T6@=J62<7 z+9E|AeuidLr#5>{O|0i%-MHVhdV3g_%QYB>x=EtQq-ALp+eTv_gP*_c63*Py^--jg zNBegmT^qjV$~TR{NlRJ_H8pG5bf8O2-nIq@k*4RK4$o#bPwi_W2zyb&O*`uEB0f5}nns4;{~ePV6@tH*`zl;~xVG?h4K+05XKsY-6x z14^}b=WF?W5#MY%wlcDR)c&DEnWJP&JIen)oy|$`=X`4z> z`?@+mHp|mK{ZlpRz{WUE?m?$gRUX^xN(n~Ig`uKV#-tDbnj+7Vz!ce{E24t+NE>)2 zFqyhgJ4rcTTgiIdk&iWQmSh%ZW5E1I+C#WB!NX1KCJcp3hHFp&M@Ppb@S<03+MVmv zMO8ZHRC5l$*`pSVlZ2F1)xhSbLz`>FbWe1PnMg2` z-eSzn47LhraAd#3^j>q${>X1*$qdPlp=a{a3!#d*R$*mOM3WteyM#%aVs zWoJ|usPjLb?`@a+#*6_=DvvFQtLCXENmo=l6i81-XqM`_GomG6aFvYm7gxv;@AAkO zx#v@N3i`(ui;P6hPHQSzF*Vzk%D4@n)t;C%?MjG8>`w=O8jHlhWqcVw=Jw*C$a%zd zUzLPr`k-Bhds(g7xo`OBo`^(fGlx#$8B+GdYxt9$ZMB%MUMz$~(W(U*3n~;97D>io z-F6x(B*U7H#^zfG=g`CS2R3st9xhkw6KC;pMW&%DE(JX&IJ8GJH)w}hohJ8JUctn8 z9hq>vB#h9nngKlF^MpqlJvza4eTpw9P z=WNc|VuteH(&Vpcs!b1QBA|-``CgzdZ&&VUf%MX7Sr!ADW0JQ4{)p$9!2V4`G;RN> zTsU}Luj0%q8>i0G@H*{mmVWBxRT#?BmGsIq^&CfKi)hSEMXg$018`N`mZ2J}C*J#X}Y>Ar|g$tGt|FXryS zv(D$8xC*D$l^dCbiRHC43wn)mF*{#s%r)p8dT}e=GIZ<1ST}t`(@ZCUtFhJImarR)x5$jWi_TykFlq**tfgs_7B7l@x{*Xm|Lm zCwCjQRjIr2KXn&aHeNG&Zjr0^-dxL8U9LL!@?a<5AO+2cM_3DxmeApCufnfpz2;+w z23YoEs8(AVi8_y3!Hik6g7BLzTppK#*liEzeh0$i(UpdY_yj7xTCy&6zTFjlPnR1} z^5yyRyKDyZa5at+fK^B(!&t<5PxPA3A57HY$VtF2v3^J;-O93|tInP6y*d*nEp#=Y zpJ2KopAr6+tLxZVM)+V|+zW>PpK zHwmB6x%sbF$?DB=?yOZsyE2G7#X8Y#>*8Y%3rNxld6;`>&!~nFCknq!ZMGu=~b&uo%VmN!OYa7E?Zys8=j7*{IPj>+jR<)+H z1I}|U=o9SdNV5z#bd!)2f9sGG2GS7!8WQHjeWEC=kvL2;U=SB|6u^7HE z5tgWUkF$B7Y1o{09Nw967ocr><{QM+iT}ff1(M{~i&Gt+;|pidi3P)eMPqgSOH|@| zZNIcV35&i~hqUjM##6U6E@r3hHIJgD<_OgS`xxbpsX@JKLhNa1-D1j4RDjYRd^1`MHqzyix8i#&-0!pn7K!U&Wl zQ~%(;l%^V1;+wDR4uYanPeKeWegw(~uq%LGjZi3{Dsa0;XC~x$*GU0XZ0=HRHsfAb zX;&#caVIV*5r-a^lH!ja8Eu_b$+QY$LM@L%zXnJ%o?pn|M&x$>12}#0>V<(m_|9i7 z@&Qrg@YV+;5D3;Yspum#X?e`%p`qt0#n#dz4*E37;aK5;Hs{LKR^abXIjo06PeMx2 zHX^Wc15+phiSh$8Gl9{bmzrfV9#9#HgX3Km=z`gPnAaTMni_dMGXFuTiPA9Mbp&LJ72zM<78j-l0OP{ zR9~M8x!PN&!y#_6%Ted6L0s;-1G6mOlA1Y=odruPm=rhUuo4HHyqc&y#m{&e{}+}6 zYlx`P(q_kJG*4?;C%`s@0LM(>qpvzbw#_2HtQ^-Nom=SPbThG$9h1*B$>+0SLxs+| z=1hJ^`?86T7;`i)u*w;+k>Xyceu{Q@a1(Y%7zbG6m_9Y8^GAgF7@UGSRy)QkTw3P0 zA^|{$-T*=KYb)n@Ma~MZ(sm!>WgGQE++`q2H`tTUu-4nA?{q*Pe~qx$G-)U$qW-2q z@64Ywo-hR>wNA7yX{klh*`Y>s1m(Hz;!U3IMDExpSW*7K)QQXD*+93zJ=|R*sPoJ= zY$N^hkoNfy(XC?tjhIq@pCbH>)||)$tFs)7T>K*bN;lXMX%gN4Qq85yFTG)0FS3bX z;^_1;sPCB~8t?tYel1=ZBfEPf&r$Qqfd_XQwL1Ma3KxO( zGzL*If0PuiH$_plM_7LV{n)AB-P8{R2jCcz2UM&OohoASHX2=cJ6)aP(^SY-xn(k2 zw7XL$SG$^g1DTCc-hlmfmSfsKe8R|Idqb_kU_!h1JNX+{^S8d8eR%PL2)!gmMxVedxyQyxX0lb8?!S5I&%~ zJ1<<+Oa5-;Tv#M{*Q2bgZEdEnA!6L~QE3bIqVM7XY0ZT%XckXbOGUN!VLm*BbBK0_@1YCKC3-%RGgA2W# z$=}$#MRgDS^?Fdb6%Je6eGSOzp}a_m{n=QOH!bPh-3^fj^;M^xu8$?31KxdGV^bhg zo}S%7G^?QTokG@`g`3G~VOKU3S@h)}^hKF$-~^I1i7ij|5&}uoOn6l4o;rA)M6jBf z9>IuS&UoTvaxm6PYOyP!#4RG+T%3wYxk;W(F|j20_9dd!cE2}{p&{)8F=}t|D&FFy zLtGrU#|04Ih#FxmK@LZwXWrqVeQfGX&v0$5@AA~yD(PD*Z_T`g{(+)bFH}9&niD6n znT26}e#thvB+bLn^ixE7MXmMZ#p+FB%6{om)p zu@WwELv}Q!=Dq}6n@vnEEq?g)3XHTLODC>SxQofbxJW1FlPacPuSLHCXjR%#35)Pp zK8r>)=noLvd&|>!-W{;vCg+;%uG#a@)7fPT_Twwq+ZPDO+NMomSS{C~2yZ|jDje9t4J7%^A_IK~myl+(9hX8S@|U~PNyDjL|)r8vTN z{@O_2I;D6pnnn9hV8AN*_Y5#Xvc3ZeDGRgoNttA8`WdUyenDt?l&pOPokQTQEv~~R z-4ewdv<=(23UAa62EnIk^=AtEZa=zmWZgZf*=#-yHNFYwpxXY?upX#>N&SGjQf9%2 z3+ob>V;z|YM~xfB%KOQ!HQSDF8f^{)yyQ$LW|MQpXh0W%qCD{bn+Yi=7V7Gii`&~= zQ2qrSBxe666BQa3iuZxu?|q|wd&&Xf7d z@`j^V63F_K+#h@H$C@!5$P&+2m9xu=2-ikn-i+;*`aVg|8JN~0Ds}a&c63X{+G_jZ zoRRw+)*7enU7f~=M;3#3U`{AWqHbuJD8hbfcG(;j#f9i3qzJR*mAHD8kbXFE!6=Xq+i3 z1)nLhvuWjRw|Fk_@;c^3Z9WZMw}J9p)OY3|61h;#km4#!JtDp(^d!FNsQbjw65CD= zjmLg&DJl72cVjGn0@bGDdT`%@TMg&U@ssl(C7)r~2LCNa&aO0YbeCrYMG!bn+Ilsq zn4XSJlWyCmud2$wY+S6LnaCk8RO`A~lo}!(!)5XuyPcYcD`KWlCWd2-T+t=_ zqAd9Zr9`k;?D2irnLQkx94_H?A3F&B*~*pw7}*AGwP6Q2W~G{lc4C)Ly(oNI&Sd~E z&Y<79^JKr4Zgll5`3}q`xgYQLBWJZ~^AfFmA%T|V?t%Yd)oA&z=1CUbn|ZJ}SR|7x z`X3g40-)RBfCmumNftMzv#l2Kols;+LifFE^>uAgfx$!PQMssv8Q!Xr{Nz2v8CMBe zA#ST0bADP;dwiRfX9Q{RK$~`{WPG=BjzPIW7m? zN`<@!IokT!zPdgMp}pEVDfI=4TU5~RANAKCN!GUC@vNg3f7hzZHsTjuw1IxVh(?JXdM>H zS?uB^xk;?mu*ya>xoR~XA0+HF*~sO~mfo`+92cHp`dW`1y_I6w<=QYp?-qEq{C;z; zoSyeI7;knqG-^(EJiyPv#27ICyutYSXp5Vxi1ey38O-OQNz86n7UQ#eHbY7H&B4PU zG-Zx+cZHm(i6wxKx;NS1)!-+<9WFOvxP#nb*bmNIgZOtq$;rbHr4!Hl_0k;(wjO^0 zS$Wvbj=AdYz2Mktwl^OiS9}W-7Qd*P^X=&EWbE%X;LKz>zs8C)%wPP}GWS3{ly2;} zeA>vZ!T3~K*%I9#p8?*_)2@ zY~a+|HW z?FHsd^eo%tLd1<3ySo5INZ$5X6Yb!5rAu`o_|^p;rV1{%?ydO zWum7k@5Hq~M=w{3XFH*^WU`5VVsKBRdh2d_xXvaixFUgQfInje-I zTgUHRm??9;VYIBRcT0G8+wtFVCo4@x=pZ&6M0uxbT5SJLVH1QVthbd@t|ykV_|%3j5dSo-P0X& zy~N8k^Y!{LhZd1DH*?mB^8r-!0dJV#9BOrt#;HBeS zYF;-q#CD)yHF;oTsbJ_PdtiATr;v}vp~j?P`BfFk6Fn}rHPoG0YdTw*p@G+W_e?9B zrKOrb`WRgpIJGe}64=jN$@cw>mw(^|;PS@@D@iGu%2vN^lVDX^lrllFY zNAGwd9@0pJ$JwV(JUlXLGCY64nRT;6Ix@4Hi&YVS5V37KqR+LlEw}!dr}yS~NB41h zjiwD0BvkvZ#mX8<>O*b0(LQpJ3@cr%X`jZf~@B)AD32{@v3+ zZix2%Ul$SnM8DRUq#q12fb$n)B}p(g$+2Eb(|k-u=@dqvmkm0WI7sC%Xm=S3sZ4xo zs=_lQNh`xlssKVwVW9}p?WM-DCb(JRsHEasLaMV5D{^)>hti6L9^mu*nyBh9wz;>Z zHKTe|ykn*mV5S5Pv*~>?t&lnRu}U}Htkb0>z)nqCUP3}%KvG^(3}bb3f8RPUYrj-X zS1g*sm~M1Q@w30Zba1R2&-BoEE6{72{o5e!Jihm_HWf2`%f;FUokiP_uj=RHRk!p9?s%n-jg(t0ix!z?L;3kXAQvgD^a z8$4Enl_y3nzpVJVy*wG$(sEnIyPM=+T1T0u*3cvFA+g{)fP8qxpgtrfG%_B#NBc;V zd%{5}w7OoA#^;Bx?AbqiU66Msbc5r{|8Kn6cJQ>VtXHL3tncdEhPoev~fxpbWZsV-L_25U=bZ zzdhyX7FGnF+yi~$FgEzmr^ukx@7Nj$){b*VoJP+Uws$;}%uJI1Ro8!5+Dlhu||YJrDLC*14+60dCvXj*u!GF3sysmW zOuqE490GA3&Voy?LTI3vy%TG?r*mT*HQ&|sMPGQu%C#S1*%qvjKcqJ?*k%>NxRuEO z5;~a9{nBJoAjiJHCu!imU8uy?$rhi>xv{s$$u(r5GD6jB!y|$}6RPY0E97>N0oNR+ z=PaFB>wr67a5Rj`x2RcZyV3y~@eCp+$S=>_DK(+U8-MtNucnUG+4kl5gX1fZ&8k&b z!D3(%$b7!PEZM8SdVA&s3>^fe^hb%`4t9T!=hSfCv`azKW(rop;90TKc-Ah6fbqL| zHhUUpbH^N-sT7fmMIYq{XLa`c4`s=5y+J`gy{|ezJX-Slf#tBOOTqPQ?DUGI*%k); zrp(wvQx~PW!VachU6#OHh%39itRjHrZ^s6xY4BSjxdH~%s14RILmO98MvDZCxB=eQ z*D+WH#xVd)Pa&SNF&GVul$uL@)LXbtfHQ;0ewwBs49upysVs^Ym>e5HY9 z{%%-gV>7Rv<;L9mQ#r=@{ERA(!o00QzRQkaHpNWkF@W~I-PPTORSjcX;Nk-Yd~Z~T z0wsqXqrslUra7Iv()Y9BP)I`}nkd;g%$&gS5i&k)#kEJjjlPpsF)nf;7b{DrjqnTo zm%o&0Cjyl{z>5%AKmq_|fL-3&Y0%%ESdqOi!Q^ogSr(-h=BWfw=ahyV-s`W%y`EOA z3)k!SM-GR_Jf+#zb*{$n>e?kUHKizQI(S0HR?z&JG!&nKqF~(on_}wEB(b2_w-h74 zNL4Rrbjngu+4Zz!Syn5a{UJTuq#5qWRyIf1Z;%KRtDC2X2jY4bFpDwHrS=e~wK>6o z#b&NGbp;D{u!z@R(-0dDK9nDPXBU$~*iWgd$n%TMp+3e1p+Jj|W^qL+MsX%Zt3*Fk z=XLEzE>%YmVz;};W~d{q-P;GuUb@DYVSMyPxujQ&^5l%(DS7liG}Xp|*&-0HsH=f4?%(g7qcXf;se@~1ucq-Qzw(JRG^C6xdKEYs7(LWEpvyt zf}o=Y*AV5&_A$_I**3{MF=!{7*Upht&!wUT6=a3vWQ8bN(Ok(#)0^F?X7n*&vI!;- z0X_g`8e{71@O7%|WNuNjvE&7{eX7rke54>T_BP~Z;t3XBHt#!th~1JAmP!nP)Ij{G zeCPvV^JKmx6XZbXgo+k4k$+NICt9Nk7X`OL@xXfrpRo~Qw~cHowy-+feq`Y%TEGhf z4W^aMP=AjN;$N*uhqXd`bWSxW1gpq6Ca`TwLXNoUr+jS_pFC-9e zQxX7*|6-INFSly{>63z_Bt}~41tGxWfQQIf29wF40k<4lf=WXMmSjRgNIL@u-gxtPOu_07dLu7Df3g;p?>CFB{so5wi@u`9+Pfb4z;`vT+zq z|2*rR`H1-S66|&0g+Jhus7yL`^EaX?23Q%?s@5*8;lPj~ zgPmY4>VtwjN@E$CMZSILAuJQn?F-WF_8P-OX?ONOB zWPiCb#8!-#AxKdVC88Xw!{i`FAZ9uRzsrH-D{Q3yu684w99Au`Dp=8AESP9QsW?nW zH`!Q5pJsplWqdUH?FrwP23=RjU0k(>>bG!$F#6mIC-5;SB5mBhiNyEPXHxW5vymZJ z9$THtj;mNcw*U4-vc=)Z7Opgbn_bPMVS68H%c~>L1AF~1Ir(|-i79y95rKI8DXent zluTu@J+-oiqNsg?veF19ounKDVp-x77TY;K0LmV%a!O~ydieMFWH97^14eipGypFE z#ypI@$Zg*_$JWvZQR_G#HS`!8NB)( z?CD8WqQ$(5o>i92gG#a^M;vCyv>O+;qNZhBat8@K@;A*sjFZ4#CBlNL3*YvdSW`AA zB(7iwgB8P7MMKixLV`1B%+8W}rt#FM>e7;cb_wkPc>ix(LewIhvD|)!+y@2gmgY46 zl`eS=E`@Q8b<@2{@a_ffRNzpHbFOWib=z`>J%C8NeFd-o(cyRYePHh!`k?&ob?nUJ zN2S-TXqqQWk#V#$?-&p!5`jxw8+)TSk{13+WqdSJ6Et?zkPxi(Fu2b=YJS_qJVp#M##88n<;Rm;x5NYMP2k zTAoRskvJ841Qiq^0zv3SuIPxo*s{D>tDvN}V5qmKSfg^NYbqw&JzC9!3ZrqkWdaS_ zymoGP;KINpC-~=!Xbv@#TJ;>c4+Sc$@qaFDqY4FLAK_b@_V1fssc8V)jbZ=$`|YQI zkb*A?r}h8b^9w3^M2vnbF#g;}#PCgT`|}O_;ff4l2g-!Jk&HK+c@QW95TidgL-_SmLk%#h} z6lSRWxxTy+Qy>-;{7?T;tzq)`pNrlNRRQ7YEnEM&sh!h?PkJj2|GtHo67ZjX{0szz zi~hH8oBtO6{QpM}lpuLxAL;*;v&8ftBJoC0`5?g5*gqG&{M}o7^UocxMS)xW`R4|` zj}anF$o#qd-h6&U?DpS5P5E!n-s-@-oEVV&r)aetQ3>e1Vm&R^+U$k()Wv|6!{yZ>&IIBfjG^?*5;S!+!CD zN+J*+W#7EPf)DRiOCB{%WH^X9B(#* zj29{&QCU(+IU&K^NT1RKxZDJ%)CBejOvk${7I3OZ(dquk_7yppl#~$$?j^jiqP15> zeSs@H`T}Nlf$K}pkS|Jg49Rkkj!|LX{WT|6=0jm4ik{jlS9D@n#s^C7pzoj=&$tf? zbaLQo;o64E2W?BHkI5UrmM4`+H%)a<+1>C9kjHO_9I<|l={O4o$_yeYz_C}5_dV)I>Oy?XlGP}l_|FChs< zG&+Z(6o-!4H5ocfSJCb@-Om^4|9YYA9^$t!{{!7J(IhUQ&8T+oP3Co+zxl-#XrZv2 zK)`Y+KP>>Hfyn}LT%OCOQbLCW^MIR8>63s4McDp!QwDn{b^R zyXl^40QWTYu9rgTxD<1mSB#wo*^q~cJDsOkZk*O}H{H6JjL*k!7vp;4)fOuGiccz- z`jx`gIFT!uWzokUY~M;Q_!+TKeuCSs7I14wM(2V9*uav54oaB|qWE8$g!x#|#lZ4julxn-|G zt-1s%SUN2L!DquQN0&8@%}&ex%jX*3MWPTuYOF}30{N8*tDd*r)TYKY8`sH=j|t*T zv*jU_HfJ?ji3qV>o_nue7-Ax&#C-W{ zsJ)J0?GA)Zi)TcVk}(ogQrAmmQ8)XFG8a!f@-ZhG4i6kw z6JCGqGl#H?sCaigOH6^;hNoL=XSAlDVr0xO*ps6XtdC*Mofyw5D(@CiCMtmW5s(j) zfK5UiVFnt!S6ar>a8T6EoGIqSuW4a6OX@Z_NPkB~G8J&h1@EqJt*I9@UrkSs*1i8k zjN7Te^zJ;%G&T#i8VDv5e)C<%%46#W1_}_!104T-uu`yA-@N?b-L|P5U9sS-)g3RQ z?*}wd)KOPA}EMD z7kv4}_fjqKVy90kVv`?YWiaAUfObDISm}oDWS3jDtiI^<+H#=YWJ29=%UQ~i+&B`& z&+DC_UoSS?ebhI4(ZPsiZiJ1R?)ZbQaTBCPt`oL6FL|kg?xi6pbz$7U`(jYsOPiBP z5_!|^bdy&uDIwosXaAh!g&jFhVy?+eUjJoftf}$qI?wgXOU0zTM!w5Syu-q3b(#2z zqYq+oai75nNC^Zn;8YEpk)sD2zsVa!*B0*0f9DwV0OA*whG2cAM{=`hNF$}*DToNE z`J6^@a2-JEy7SSp(L+gJU5P}eTH+VY!4mD*0oR1snfLW)KG>_;qHxe(?AYkCx1^{E z&2}B9)8gSfo@Q7`!-ZHiy>DrIM$<r0a5EgmGtJv^RqpksV!;EN7+VlmH+ z)sj1rytubrc-xj&&!Kn&A7|jS`!8z|@twndo=07`8U2Ds=z{&^LHGQcHVkk6zvi$`{9a@Efz* zgNXJpo)aF})tNajbnkl}11ZtmVE~7X#=m~|7&br}Y(vjJ4?egIF8pC0l`QG0E&o>m zC%+5e{$0SxybkqYKG(Dg)g5h~>0O`KkH6lR1c#aSo~ViuvyKx5p%hQ5QfnEDP+h%~ z*+$k@7Ay^bozMKG?g&;6oyOze9nqMOW_`3b{Ua+E&gk|%{r&ve9^{V$f5jMhk z%Z}b$`SKhy{w@Q%f`{kqYsgq8>^R)*;V7K{$J19wMg2X0^D!_0K~O*`>F&;z?nb(# z8|em>P^4QLq`Q{}2|+-*V?nx`r5Ap8@%udI=pS#-aqrx@b0=Oib0@>eUpVC7@4N?H zW%UK>p34Mf4h$AZ}sojY{5`)`e;-z-LnQjGV? zKdbXYi<|8xALT52L8l?augOP;TGY>Q>gql|Dm-n`@7f|)m=gTIiL>r@>YD_xLB=hl z!(EK2Qwcla=dQOzGW>%x73yMluXeG3TV*221iV|+`^_JA>ZA*VdiDs(Nq70_BNlWp z~Y%0qg z6Wv7JE){IfAMXXV^{mo^`4wkfu?tcrZ5KFj;yNfl?+tiKyDU*`=XB3lly8W7w56UD zCcCLkvFjk$fJjovL?abV%rfkwBT?V-kFGaJD0~n|-1<1&< z-1ncfSDjm9uF|XB|CtY-(VO81>!l|CdJKrl^U#IzXI(*mHoC$V))HGcb&?`tf|?^9Z*6ulOE0?F1Jb!#1<7kXuct>m(hu00$YV5Wo2;@^9L<2|Rs% zzSq9bC7X{AB+lwgov57_qU7|TJ{gb=OvCRFqp)w`71uxd{xbp#yU+cTZTI2PNsh4ePgoSL`!n~8Os-CQ!_O4`m}>1 zrYI7_uKe}npITh`3=n^cH!IN`hXS!CLu)G8N@&5$^#hyNOX+D)ertreUtY<>1rHj7 zdRw+}-{}c$+MGTofr)t|e)dw{unVQ&P0UMU{7Yjs@AJA*tnO6QI8DpA`7X5&1XE>LyKor?0t(v)9j$LvfiA?t&QM+i7NO#^M6FSuY$2|zH2NZA@jiCb^Jy^0%zk!I!`WX=HMpx440d>IB3Z{#mhE9A_OG_~^FW{Sp)-U=lY zo!zsw5Hg0?i_+&+g`r3&4Wr|DdGXJ!75F6TLgpPzv}9)|{ckS}JxUicBdF)r3m5I@ z4U&?rXGi498_bGR$B`V9y1eh+-pJiJux7(eIhu5>6ei@s(E581Ec=%>tqF2y!eVhb z)Ta4Z_y;nA(#+{7eT`UT%{wewAb~gy+LYpo9g+A)a{4UG6L`|PV*bqU(dr?LSpH(g zf%5@9oT1c(%+`Nd=FqDY&tf>8kg0!x`){yH+}q&Wji`2!eomiPTam0jh%i;4vWG}2 z&mJ8FnDb_ywuixg*lb^RZF<8$JyS(y4L+ouMzFmV`FczZ+NwIAY$2^faag?+_@TPd z>jMOid0uis>CSfZ`^q@uNtDo};;28J844K={t9HwsXKfsgvYPY9Ik@f+hP4Cxzed8 zap!)B44(bK!WXI-WwdTY;MPYrLr_QqfB-^T8}%n@qzXl|NQ(0K37-I@@FN~%_uqyhU({;J*mmg| zOVkNpLksTBA!{C!sJsxbt&4&zOTQ9$W$5J-5CK*$$3Vi$*Py(awC&t(&a^+MEUz64v7qsCEcuHC zV9n0sE?wGOP=-aNksd=scpVrstStfX&kXmupHgW5yBnX$Vh(EZ@(l|GnZo9{a23#x5zbf;!jdAo-X{4h`Gik)$ zI~LHcJAuX?=(`c%#P9T|1}pwVxnBM}e090`IkxTEN1XfDv;XiP5~xN2{Ux|=1@`sx zlXLdV;uZUidB}dXiOpALMShH^12ud-FjFpq+DZ2XLf8)_;V7xnUhkdVnu)e5A=+UC z_0zb-xAV&dKw{qn9#=vXF;F@4k?tG|zMtpJ9$^t5=fs4Ye9EBHaQ!F-tHH8<&H=nX@@8mu*J#{O`6>lb7&ib2?xc8}8rb^hu zbQZ9O@)zr-erZYW<`0mL1&d*N8Y_%|s$@PuOi@%ZTOjR^eh{9SD5CeXxqR;ZEJIX@ zna4G;xRyz;X$z0eD{S5ucPVFg!jv#zZ_$#|aR0bs+*ZWzA*|)k=rh@(@h-rSadxN7 z7EU7k7}xyuVkOz_D6{QMv!W=gji^E}b)8N`IZjhqoB>Q@?ErtIg0nP(5mI6Pn!ycs z!|99R)rOgQ56$&Bz4LP(9+PYH7wdOPQQ?n0ss6atcQ|je{r<=MdtkIUbANK_AD1M| zICrQqoXccROtfu~$#dd9tS!*w9}9r@(_$mrOflQAm)bwEm%k-+cchejcUK>agaJs? z#|Lu`d^%poFPo*cCSt0*jfx6^Dr2hOWPHVKx|!)&e=DIuCY~?C z3RmjaX;Gx22f3$zwE(P}k1HB!Iu#$2+J(isXIjH=4o#q^VKWE%2Vf{K_u749zj(QgE$pHI?>E^$!J5aT4?24~dGZZv-dj!#!leuG1wP)|Q^kr_;2qmf z*G6hS-U^9`Uxx@*Ri<0#JufO-80pzzu3<0WOc4V^R@pY|PO11y&{%cbGGOY(^BfaZ zXDgnkUB$_4H5TREDzV-EHoSe@uDAhC%T%QE#I%RH-CIN@v#E`1#e4pxy>2iUI`E83 zWIWJ3uWWkHgKrfCr`fzZl#2Elzwd<+#OQUHG?+h$$^j~e7Q|npUeLP#nNi?{LVP${ zr8bCw0_-LQO5N2=Cten*-e>MPsD{VQdzTc=n| z+ramOscuM|o87)i8L{=MGpEXB4U~mA{E7UscJcL?8na8roD0=RX$g&EiK42psc2UX zw~6l6LxMof4<+*zNif7(6YRoQ$27W+PkF-F^sjIYNdf#jK7~K)tfDvBpZhMxG@nTp zEUkr^hsfyLXkU4Za=YqOcvk0$0d*ba>}QDZP@o#Ko6}_Og_hb6u2|pBP<#Lx?2o1e zawL52^Db*>VPir}kCEwFl>29KuNu8ZbG!54zcWl8UeZkP=KShwD1fgOq#;K7;Un4# zj~l*g9%&BAKK*p~10!{3LYEsh_;D;rB>-O*UR*M3PA=m zADFoXsBYG33QFb9`Y{pwH_Za{D?nvh@-$;MxArnlx55NzpV*YQk$Q5gXTg zq6{aHf7hU1s4gppNcM~&aRT|QUk~|(xGT~U(tlVgxcw`F*E67ml#(}@iaQvxNrp-j z_~V93-qSjt2KxdoXG`I3F9=2OTu|&Q<9*?P_V6cwj!C7MFxqhC>Rv2Iv=A%{dm1!J!F%f%-Tf(p#c8+#PXUJ)qKBq9wAbrTH< zJ~FngEZH6a-d78gzJsuEW(B(`6oIOSB*I_aBB zVz6)-!^K)jW8rcF(>%kPqt12Ga8)3B;vK#8rm?MvfJiP)>$QU=s- z-_M(1w|)Jc+(Sr-8(`%GACe|O2U_r zfl%IvL0#Qqf|)y*j47OAHM{fNvfbr%dLBU(YQNB*A0nW*0a4i0aDJu7q(^Ipr(sA; zh%~_cc28Z1S?li~jOv41{-mNxq+72Um}lzC3M(Q!CNR;mD^$F?08~<(G+){>;R;8hOF0+P$GlO~-_+Ec$2mi>2 zJ__epP5vRCQ_*h-%#-ZN4?p;Io55rtZT-r0VeoS5+4l+=z&PpCM-yMt>8>W;t(vJr zU3^y6-XDI=6T7<`>Wh|%>1aMtRw{Sm#!F<7Mj$S3{lH)Na?~Hf{5$ZHz?Ct4`$^E} z04y>&Ln9?{8!>lnarJAf*!J*y7HHx=f%&%~P&HYSmP-A3TZj9On!Hcs(XAfIp=%Fb z-3HL8EIn%28Vc+**;puYM5I3z1r%v6a1m4-sq$M8YlLEFBkBqWG z@EU$j=O}=$w~pFr0^D)(oUiMrS#uq4Ix~>KmF?it`7f#`7}1cw=Kkpb5WBq${T1w! zqaLp@KWf|KHgY@o>7pQ=_>8fT)mz0gQmVXS-q=WKq_mp+o#OeKhMN?%qzmO^>WFDX z>gk<7?B&KCV%c-=(AEG`$d^LL*bS^*j%%=xc8SS!vREs5cVH`ZQFQ$q?xHWr@zB`@ zo}d6= zvh1`{!TD)LjN=b(AraM0+WaXzbH_jTL0d%A@PcI^P{F|UTF>OUz_?eJ zyHhC{-TCL%fA5a#`C1PbAn}c`FvZ}*_jJK1fnGvM%SEXw7D{gf`n- zPu4pamtR;H^=U zQla6{?{N(cqhHTOkcwn5$!5h=I~nrP@pdgu{pMlv|IIqkSPP^moJ6k6x^27 z+|NyB-X-G4mVbVLBi<0j7TXq)o9=D+Yxt_s?~WVWL|(5cWij6YM|A(yO?L$UgF&E# z%FPUT{bDb82Y(4YxQ+C@Q%jMw<F5pL)kk8!a#Plx%p?V(7~$7n(){ zr&Cj}x}8_%viHVY7aNhVCy%6yO{kofdBOwT^M3)gZCbKI{mmJ%nDTh^Fb1 z5V+ChLWre_(kj+b`JU=r9`#O$fOfu`2x!CweoIol;l#R;;t&yzh^}ZqV8q8ZcFL!O z0py;+ml(4%^*>et z$GX&Genz5MG)SkjZ=zLu+~=QsZA=B;EdKf|OkIG)0VC1n!I@eJHGAe{|Ch+JH`tl6 zFf-a~phfkfI-bjHZp?nCD8cV|(L2y7YbAy?npdWHnb}8s2+c9mSFgg{-qG8dVK*`S zIfF-k5;lF(*O!@39QG;>aW>Q7V}7*&6A+o)NwrLFCdcS#Y%KJ08n#fRDyMkt>n^Ij z9F%_DU|Z7KCUi$I($6(jY|buc z54VtzIEAqicSypI)gr=JjN5JH-E}R86Y04Mq zRu2@@@tsAv#titzU0hch6=oh|WBL}#Fi;Uqra9|g1rh{)-=5kdA6HwiGA~h}#1A9b z&3%CL{+cwkZZbCe(KoZ=KlO;Gs36FDG!c^U;@)yYkC`yk1qR?T{;4s1K2TEh(YFpM z(cFaYGtU8qQeVOI>0%d-!~DxtKFGHi5qDAqL0~xbAiN> zGpU%2;u=kbr=rgh)q*Wf8X~2~)hr7rq*Rq$nx&q|p=0j+z%TTPYwHR*Ivqmdztt#t z=&You+aE;lcuQid@YU(mI^jW>U$3X@}0DND6j!3^belC)CTM$1cCD?hEu?F#;add-RM z`AkJLTAE9NxmDC@RAbu&#P15asWC?(`{C64-(N-%Sg_ONp<+a zNJ-N8zp+$B5nfWjNZ{M*glX2BdX+HDesZEFC>Tgrm?gTqnLe&<#e)x9#gN%3D`YGr z^>YH?jD6ZkX>IrK-+xioCJ^qxsD9Hi;i-H;=woz>r!zen>yyh#nQsxq_fC^vYjo0} z6{NrxN{bV6gG^+;6n5IoS^1Jkm!s-z8K2Q$)QN%Qih*=)O(du<9_c}kbm}~`Z?A&sc5p!BIvm6vp6Za z3BuF@LAL3reV*2{(B2iaD#u4^As=JB@$b28m%zQ&d!c3yQ?3v1KZ^8A_dyUm{ zEwI4JtT?++!c$a4WW&GpJ{P!3nmlL|Aidv9(F`Z;SHF>IkI$8+Li~(vo>zm%ayDn#Gxi*nHJz zigbBdQ1JTCb+>5CBnt?TpZJ3=B0f&giIc=5>v0c8ZJB;HYPZ5>zx$5^WKvd}56{3d2a$?;R0!!T0Uj zrcS=FHrpNW(TmG!c*I~09&&~tM>QC2FHLnhmmV&J^SMk<uY)yJ%WJoH{9dm1#kewg{1q$E$rZ7_$=P0eLrWqs`3|4W@naR9{OxF@gJKpQ=DUEVoW@FLt; z%Jq1?iFp+vablHdgYxzjF4*A)q9PE_v*5^KCbS_EjqulwV zEnja?U9S}hUw;Z_$evx;AlUO%N^0s@kH!o4{A!X);^1eZ{{y38y_})sTv9JSNlu?!Y`Lqk3=QE`5;easEc6r zciS5PQ5xSJ_S?I|UZN#u0@C$SXx3hQiyk^51Hv@5QOD`jwr|UEuoCa>F8x9akK9nm z=wZX?4dSYM@cK-06pSI(ZosBFlvK#oCTVb6+QGzSmnSujlz+aonyk&+;Pr98Kp~%Y z?wrJ?U$$gtf6p4X-~o6u6HNL@pVedDv|<>yzm*s~fcVO_EOUYNS&o>J4(rue^2P5C z^9J-}?N944_qp%%H-}IG(F@Vw;n=8;IeMrFppaJALd}b?FHRwtjaFlWt=n~FVkCSi zB|eM8M@=NBXZza0win?}z@}{;v`wXa%XhhVimQ`o0GpkA0fIuId5;XrwuKt2oxxPJ z-M46;HN&ozg8ij}{gr}2+U;H754sAY{0bwBD69Oaq!Ds3sOUJ&CS3g>x=Z=jhlr(ntFv`@!Djlv#PTPU_|^Bi(E?&AmXI>0$AEDsW96qH zC3>CL95w>=re<8eRNzn{a@|}45Pq61XdH|m<{usQH@5Bf`|wcJq1Ur`M_PP_ihit1 zHOj8|@8f`EuIefkpJVju4d(FJwH9UBHM8GtI@(iSbpmHM^z=Ad!R^BQ$3*LI`BeQf zvVxjEUlv(lqsxSnb<#t}dq-0%68Q;UPsW0oC+wMBy@NaXaW8v}^DY*6nPbLqOD3n{zYuS>t(`@Sz*hq1hb*j`=goax8w`h3}-pSf^+t0#^!>1>I zGsW}Z2=O8>4If)Oca3|LrQq6vKgEVd+i-**a=k;90QhRb~zFc9nfOJdk zkW0WD{4x7i{=vf1PJiC|P41a3a`Ombq6|HPu&-%p#NS!rGr5*iMyfSH%o|=z-K|@X zdcz^*e@q)tjJTQz;o>?r-b|ys(%vu2*4dd_#`)ah2-2YZPwopVPU-CMR2Huu80Esv zM;+yp8hnNipsD>D_H&x_z2#}es{~~X57!cKT_Q9zZ?oZ%!NS;6S{D5FDdqfr5bAv| z8Wh8G8*XFx_^h>QV*4R@#9|b9Q3CNxUN69@MLYM{3t0NYRuH@9M& z*hC_2UTCnBI*QDu^>DXTW=69osBq<(#{hN=POvS(YgK-goQS#V!~75h%q-ZkdZ7|6 z|L8=N^KxuhK=lX^5m_y3=EdYj>JfAaIEEtY^oGciJ66D218QzRP;Ut`LhrS2{a@zM zI^pLoENMPB;MW7eCssgKDZSe$;MBnA#g?VPe9Og^Lx;k4$TgsZ*PC;m0a&5Sah;pqkJ6qobA%L@)Ax9PE*p1OrH4qebAZLqKXh=zVi?m7PqG3qwQhSwWS$#+tTIQRYL4mWwtJmg($C zBj5{;I1Dbi=iJn>5wS8#v0VX0EPvs=UD|-Fgn{x?M$cGsCWLDesqmfIfdz*PIUs?| z$~qJ1x+6DJ(ik$y#5QGMWePcNTCv}WDD+yd1fc|WNgs(2?vep9y;>0Ei<811_PNfy z;Y#O|iE_sHR;L%;DP8j-{8&&maQ_jI#OB z_J+KmkTl$eOl&vu=Z~VW^G-CSX)B^fjB88+wTHi*G`-qbrX6$+eT&!oVYhF>hT6x8 zNwu}AZR`z@=w?41?kdvd8NjZ-yrYnald-QzMfQ<`DRH-cMZ5~Y7XI>+^HNWMuzh^) z+FjsXgH3nnc|E;81HF<2OkpYU0I!ez3X6J#_hoydzDzDpTO$q(xe}I;!niokpZ<4eI-1u)TR5c9{K`vmdA5oC3MJJ>hXNJ(``B>V*8OXnDmtEP%ko z>1bc@lNecn2U$Gq{sdhf=Waa&9((mx^{v@gVr1XO&y8du=YwcW6UJ4`hDU)|8mh>e z55tobt6V-m{zjn)&Tqz~H-{BAw%;W*ZN`jq3_WtuYZ{Fw_RvRtkwp?!M6;>R*uG1; zAZ21Y=+fEq5kg(HES`rmjT%m`X&-nngci zV9^Gi>s<&BZL+uRcb}*mt+Ej$w9xzw2B^uC z&|s;W^_}aUd~ZJ}Q}Ga`b}}c|$pWn>vWG2tyShCJLRfxjnqO~^HQygrw+iKzAZ?g7 zrrtk_Xx< zrPeAF({dj8E2v5$PrX_|t%qx3`?--~{+Euk?0t9baKoW9x{hgn^LvzO+nRf7?W+Ej zx%MDjE(j2?owr}GvS_P)UGVm+8kiYp_dDpa=HcK>JiNH4+Pv&nKnDMaqYEVt{x_TM1>@Os<>sU(b#`YPMDE!5qZ_JAuOzQDl6Vw1vc0Equ zullb_+<=~J=V`e?6()Cw8zk<|LiW0J@wPSM1szjD^_PJfh3rIZIh4d*O;JJ1t+u3T zubZxw$qLvZhA<0_!&!CBK^k-dx7`knw3D+y%FDH<%GE^BdgO2?baOkw6M~o`&$+nL zebVd|qAAt|k3{;G?>zp#kSy(ar`osW|SMtWqWA~|585=NAK9nM{bVutF1`2+WV&DvQhx7hJ z)UX?E!1U6#H|ckW+tCjU{UBz-`m>tE5tiayl}x4%zHsia%$x9yE)g}o4g$rqVv0#+ z=;~w7#S!9-!o~Y~jpPFY#4lz*lu{+z;?mu;nf7D_qOf9s>ta8;*}f!OtKL^xZ0S{M zj)qhpptf+|@`Y-UuB2fQ5-S@P$>~1@{CR7a(5&w@&3b~&or-+T8bdnz_zHFzfqt&Q zx$V!zRSH{tSN^%vU)X`6^X&D^5JZ4&Qr>qf%J}#5llCKl5!I|#0c)2pq%TeaAjwdE zYJ$yhhV4YTGlnnf_fS%niIP1x0Vb#oaw6tb8q54h=ZM1XL^3f=Rwd#53(=1>@DD!^ zEIlL+4kdf57OXx9drhtWS@EY}96X?3Ja|CHWHvmGgUOw9qD1~GK=>lWc)Ad;P=(OT z%p&UY2OCZm3Q7cjWO#M@oEkmIrq)AueXlDxaFFFFZyG60J>p-ZUy{O+`Y1^DSB)o$ zZ$8HrEWYdTJ^9<9C+v)V9G;fYWN#$}WuuD0a5X*x|ATTcOL@SQpt5*<>qml-1_}z$ zMWrx!bY>4ck>>IExoY=Oh=3N-tdW*yGYqOgKBQ;=+l9Lc1fA>vEPVGa0PE;A{7S~@ ziykkPm?2!nGlQ}@D7P%46A_g~#OoX0zxg#&82@{#K&ln|p8U6kCj_Z!zrs;agvv{j z6Pw~b+N@98d zUQ3r{%@c%?Z$7ITXNmv&wz~4Al`}VL4v03T` zy6K^9>_A!_Ln#K@zN#@prBqL()^RKX?$oekmzj`D*Op4ya3$eLMpYNSXwGz zST|mR^lzj;6aAE&^5$$>7s0*H+z*2hh6OY6EPQ_@{T$uuJPQYXE3oI5A)K_k#R%b^ zQ53{(I~(_&@yfBKC;ab^7cwZ9#<4zz8vGh^9wP|i^DTfBbrAkSX3-Zb!LdX$i71fp z{q9FXz;8uH`_<0;1bBQ;F(dfHWb!-JOgL646B$%7CDtXRndNTGhbg^eh_^e)$75e$ z`q|1nBBTxq`BujW3iwQ#D_?w{4COuoo{oFJjQp zkEQfyNB#K~){Ff3tsB&gPqdN<|BDv4cm6D#_Mq*}J5v0BwyV=0n=KZyN89*{7e2s& ze~ca)z_O<}g-i`c7K0-!n^mT#kM_B@b?$i{oHb2%SEoXHyf2HuO8_7&#lJW!*vd2L z7Ev#EJUZ&y*w$a-(xJ4l~TfGQ1_WnV}?}B$grl>{FtF%>MmX(of z8GZn$h9b8rZ2wQ5PI@|bon~|RCiVlVrRM}?SYkb2Qk?g!$w-~_U<+DOt{Azm3joA6 zE;RQSlZ=uJTj;a$yYJFfuYE}tvOopqegE3oZ{r#^C2=O(*SY5Bx7$*=1OH^5k+-8N z#c)W#1t}z#^x=2NzJEx;DWqQ$#{M6-(3=3NHu+eKle7WF>-AwZD)l$7@@5+n&dFYo zp7LZ~!s2mD;Uq*|GBy;~%bQyVr(e+RlJas*t{^u<<7R>bvV^Gf0BiVJ~+daED?YA z#IAQs4qZef+;v>3lk9MqWZ5-4L`c{EsnM(Or-TYP(M`-QS3GwKI~JbFY_i=od1M)B z;i=p{d3OrxKVhw1v8I!~A?EYhFs$C3As~4vvXjvQR{y#Bs{)J20MkmaqwK`lFSq2X zd#1rpQSWRv_EFzo$)0sb3C1?E4lP_#9L&f_C{{aK&F`@eF-#7}>U?IuR&<8XF_yU>VYmbP{C$MhiVV(AR06w+>UMN#@ z|MAND=kioc&8-K;cTX&d&u5P)atR9GkF>oJ-5%T?!i<4LkB$T#3yu!2;wzu!Pqqr) zk<`U(yKMr}Mc^`Ch#LRDzTQ2CGue$NTSx&w@n4m}dZR39Qx{f1iQ6iSzRYc9>0`$h%^pj zDVhVVO>@jnRbzO_-$s=U%IXXt>x>oR>ki)3J_7zsu&`9*3mpH;m*__|o&NW8AMCTz zM{!0QxRnh``XI9jm)kxdDR7sv-PSQb8uyxc-NpufEA*SGsayP&X{oRe(!Lp%^JNk) zdqQVAJjjnl7{b7qq>&RLBIT)rm~<-fviI0P6?IqL`!;v@qV_V_riaVe0pU`UMf&x;|rQ-`)czT9oSExV2t&NmQ z61)#OSlctbTb(I*=n5D9N3b!d6-%Gj0&2NG;Y5V<@;Iwr{7z?)n`up_n))PyaFPXE zL_j9&j_?n}j==Q35m8}Tj{1)897bfxHdk$RF*hgXXz~~}xDGNpv?eJ3Ihdv6)%9-~ zEKN(e$6cW&;_#DT|7T;=2H?#ugYpsK1o90)G>Zx`LfO^4N8M5R%xesJi&0Riu|(>G zkGR{9%y_VI{Gq&#*MuS9_dlyW`7Dg!Q`jF?ILd4si&O~ckz#peH$3{;_vQkb=%{g< z4KO!QwlFu*narwjzG4QE>Hl^zotPT;z@PZX0CE8qO(O71ru1WynejMKLP&RLU%xy> z_ecyxfjRUtMxJkzzJi2`pQv4pye9v#>C`1z7Bz`x;_k^=a}+p_a_H&zipwM0nrIs$ z7`)~nB4X9*4)~WCs$}PFxDdPAU~+$9 zEIz5|O8VA&mhBU(oX_H8(h-Tu{bS+mF3d(m`r2JN4Z;4*N^b2+gC(fb@VCmnz&tjK zxN~W~YP*`5Q?_MLxq#Jyj9GbNKk!Fi_#lxHPdUpSqc1A?IRkH^OfZ}voN8zBsjmP(-j+=Jr;1$e??0b`TWtt0m6e>4Pu>!ro)|w0{Y&1>=JM}=Y>)>e zu)3&hjyxdz;zYY6?hcSSv|~W+N+{~^GPVP8WbrDsFFSN~n=r6aW|BY3EWaXp<@K|g z>YqgI^@=(wjt{W4^>3;CQZ@l2-&KCuKL53gEmvO9;Lp1hf;>0A2CSvs#%)T`5VgdK zm)+p4`eE;!b~OpGVkp$q+%+EY&>8e9xR2Iw&(jCgg?s)x#W{`1=JaSoA}_}l&OdD# z<}dGwDn}c1dr$t&On&FNaMNo7a_Fhv$A^!o2YjmvF!X*~Gf;L{e0V>7C!Pn)ufZJDe7rF8OPrPb>6c5Pw z3r8r~|2v67Ybs)@>F=94LG?kij)Jslc7FL?4m3rpl-{Zak4d|}?9gOThvr1Lw(SR6 zIk#`y*A-33p1b5eKAc-RkPCbzOG$Vg8d#UdS0@eBBjVF)UxCP6Ly@}ryLu5@P+*q?kYDk zKL}Ob;Xis|-zaAfLPmFK91{9Qc_mm zBqmssCt7Lzwa;7euXv#tgAYn7ap?(C(q5GLFZbU(T3HjNEIq}3wnQt^^r1b*lkQI} zF+I-aN`zLEpF{b67*ZN?yl(f*+F0-FL0yOhVv2lga~uTd!68h9^hQ+j^+A)URa&HB z|173LO>rscgV__KW|wpE>PO{f>|ix&ej9S*5fv(z5iS!lx4#3Emo8GHL zUj;ps^-1`BY>}^<6Myf88>Di3zUTOkHIn1GLP^k|qM+pkDz|e-?3TJ0i3+IMF(QE8 z{9w611EZN~@NTOqOQmBF+Mv4iK)(BeU;dAtq#Ps~0j{eZL+5lnss1i9KO556N4F6rEQ4eq-sw#h1TQBxXLrl&elbWSDu_4RQHri@>#{by@I7hWEy zj6FKVn@ubM9C{@*4(jVG$rj%M*LvZ*tl4W~B!iZG--jg6NAJqG>8=H9Hy{eC0)7Dk z%9%=dvZ|6o)G@Z6Aqnz#tE1}fM}p=Uv)h!3F~Z={*nw4sg~+93uWm=h%O{Gt_^g-{ zE047;t%~QM&8Z1B3bnD`PM{Si`aL5ECES?s?_)S4GU8>f1xJU-;1i5Q1yr&`05$_% zgNM?bXnI9%a~jym*T}X6_lE6MsYXjty$145ka+c7(k$)zcek}2B+P%cWq^!<52@H& zWO5O>e=RK5E~Y#RazKNQ2yP3`t_a*)eORy5>e@ux?_iFprefRRX6s`*d|=|ixWfo# z1B9tUUjx@wzgaIWxzT(U%Fq2bE7>lcwK13kk21i$OOxKKhH=oOAbomfz{=`K)yh{> z)+PG-3K=7=BPYed^ys&>DJEYOX?|r+Wl&RafAEiM43uEok?QaB9mE~K`IFSpQ&u^odwR>+S-;bbzp>y%3`o8IIsTa&U9TVpV*!MsNCL}9-1jpXk*a6u2;X?CEg@X8;* zIWL&P1JAo9(c&(YNDYzQR&bkl(<$Tn<$|(zXZz;W*}Ij7_v+;W#~P)ja=Mn(?7Y9# z1J0Z2333E~fqJ8cKdv@sd%3tn6^P-l0X)M}(k^3v_C#hc5Qs1prp)hiph3|6>Sf#$ z(HP@zlQ=hwZPMnT8#6+Uh<2WxlT&@Z+RNcO$cE=&QKhw|F?B(IgNJPl*>{0v&PW@6 z4;er{KAeY@=(e4r16T7cXI8TyjeQIMx%AWDv5e@r z#BHZUZpt&iM=ip0@Ss(b6+6|@^(xVsK0aH~MsRGtv5f8F$cQEKOa^&EUde&hT?D*Z zo=Z~WmVM5hWI){%o7cwr9B(WP zf~$tLx2RAb_gB@=ETmL4So_3J$bS2DxW(At9t)DBdxIK^rq<4zhTdKimMyM%-pz)a znU~*oLyRXCHJh2!|4iHzG@N#4Hd&5T+0T#BtS~M_I@r&>MZ3L;g~h*TbnDMfhNSOj zn-+wXcJ<09Tjzj=N<^#TN}(Iq#NL!JsLa_-ZoI3!s3f94(A99nCU!hn_ z3ucw@1iO-WQ{8lsIiiO$hBtrkCl*k1&^Ab{n8j?^`j(DJQ!-v1CukaTG2Z=C7l8A5 z02zYY8*qHD=6{o($O*%1ob zwhJ|azawbawCI~1l?Q8sgYI|Q?kzOIUjM8&4Rt@tQ$c~C}(f*1R@hBjzDpTJbG*2mQC*C;E zZYk7a+?q%p@0VG(1&Z7U!IC!hn5(&nu`wMBbk*}zv(OwE%HJ*2z^B^HV{>V6DsS=R z(`mI;v=>?9j8{#&h)Hf9=}!*$zOUV!czQcH-wc`dN%%tKH^A#Pu3sF2@f1&4B$`S! zDLZn6BU80kF3FOuzdBLQd`4~`;!HJ~cr#*>n>aGW5s2a-iybPD-bvf`k?0<@4WIvG zSVY+Jc9eGT29 zU!Bh=AqwD*PMHojgYAlP)pYjB7U-=WKUlpD>G;zFcO`P*w+i89xtp9m^ohDRaU?Q} zX|ZJUJTEz(%bv>%w`HQ3{@z)tqz?PE{0PGD zGp}d4TR6344$V?@i5BXtE%VbRCe0x`lFHXp7Dd;`_WJYYAoCRInE+dHCP(L6MLO81 zdC#9O@bLPaCM-ZdyxTIcp*1?2Iz8B{*j;ReYqWl|lH{1pam{*X$32sy&O4Kn>Db7j zW)~-$W0Tf%Y)-AduYVfS?|XHWxLD$Me&0A5!jd@O-REbR9DiiurYiE-%go(oNfpKtXzOU9gb_`dk%cfIK3CHW=EGzOTNvBn*$ zJOaN%w;JHR|NIE!;I8y=wlrdlVQzV$Oj|3PCE9<~`N7!2yH4v>sR{SfnS70;ba%V0 z;u69k^TnwXm8!VmZ@JaS8?hCcW~N3a>s2f&mZn@!wdV;-{T!+EY9Auvm`T$4W(TG; zj}Lr~rjAN$>{I3aI4l8|=Mj0__6kjwbj^pL;_?6+a9P(CKX$AT{#DZfnYr+XOAg92 z+K$o7$KYqUb`mk~=%*BzSFim3v|p_L`q6scHFfTby5qpjoc>r}?3QK~OG5pmljC9` zt7@6uL6YR&PFohR=auP3s^mDogP>JGDxg#n%SS97nPh8ApCWRP!72c?@GL;U@m!gc zI{y;trD-DCH>1Fc#oH0`#SHcsjV?wX!&6~3r@z?Abu4|u{5-vnbepy8cuQ`0c(`l4 zKUAe8x{v!#MF_n9_SFvoUG))NRqx>dsR^8hktJt(bk9x?unhYAx}y1cl+mkNeG)5u zw=we05yJwa-9aLl6IE5ji@v%ri5w5a@aC8wZn#~X_E{^>F8l1GKAjG@V#@d5V;BO+ zoeY;XoBA9T>giRpqm+RUvGiR+6B7}`3U`&l@moW$d} zK`-pNDv%JlO_`9<5*CXI z7cPoO)BUb{;oU`?cNR>p!2nK=`283;IIM)$7LM3y$*XD1D?l#GTRlsMhL@-pq~Pq| zew(XRv7B?X8BBy;S$ppF1op&j>*Js8FU4LqcZ|xS5s=SP4SP9lXX)IoPwxmS>~E+S zxXcC%qAgyTPWG2Y*!i4X1UqT@Vge>1d99@3yEYZaLR0WAdGW4Eso==`m|SOEwGmJL zhnv1G(d_l_sGUG8@ya2Fnlc}=!D~;S-^*}Mi!6OheK+^B#9~}WKOsmH{JcH(ZDt7c zb=*W=_@4gMA7Le9$PRF5f1(iXR`Vp3%>BZ1iEsk@kxH;O`#-X-JP@k5YmXEqE!wQ1 z43f$ovX{s%vLwqO$`T@kXi8CuG_tRS>`Vz+n<81Vltftz(MUqb+IQ~E-06Ma@BUSH ze#=>&^PF>j_s*#AO0kHul(_x#Og~p4{I1DQsi2(rAOqK!GhHghzCp!bE~-`=y2qT6 z<@u!W_k&|8pUt0l0#VIbUG;~P$3|RAbf#X9&L`y*M0?G|7xT?QHI>#@@p15y6zh>O zOHk|mC}W#`vQmZgmy>2z&nlF9|8#c*j2e8@d75_jPpfn0#o8}{UT4C!o24tVKJ71Y z4|1DaR%$*roBtxVM~V-2C+0Pp{~DK9x#ex7rppt9P!^ zpUZal1bq8=^UFk4RTjij;KY~eneo{@3ZA!l<&~pj%il|>yljvXe`NmtsBr7Zg3@OS#M*_eTs$f`naWq;Nj3j# zF1D#Np;g~;d<+mTo|9YQ&y7g*JH+2_gtEF< zh`&#Hxwo#o(sAy9^qI_3C(F2Wo$W4@3eS93|M=uMa4mS8t^Ba)&OG0$R3cYy$HngE z=kPMG3X_ww{fLPbt0#Xq&3W`SzPRI4cdXbfX=PwtnDUR%74X;CLj{FR z`eqL*m%s9QD8r5K^EqeXg>=orOFb`L&X?(2{F@^hv$_OM)S1|7H1gI$eR=LnPO)#R z{Sl8lAR^^mfFD-bvdxc*x;#7`t_+p&4)`vDG^Z5oF?Ku93qj@u(!5Kl_5{4m zc)&8y)oc%=!jdi0Gx=xaP3V=?rkzWIHxN}1_dbz(wxYmXloV*|aHUVWX22padn*3i zeDZ4W_DWMdfdS>@yATt@CdEPJSA$wia{?&>j&HAQdwckfZ%6mL0;6%+EfeuqonKBE z4Y)uc2F*1@d!;JNn2xC&qiKDuuvE5hbFgDFvZs%tjaW(0%I&_5zNx*{WAzUv|9O459{gEe_YO$X_OXSUCjOTh}qMHZK?;tX@xvh zeXevuGs%*3;1B6x9?R4Td8&p?X?YVZhOstDe~-hrqaxM1s>N%3240PQd$ID;E1+Mx zM8f)me12yrmrZK9-S@}kY_e~5e0bwnZ}#G%|D_ePs~+C-TdbZOX3Ml|efVyF314EO zb$IEmeM|RIw6ryS`z}Fwf}0eE<3A&n4yGz06bsUw;kG zJGQCE(DhtG=A3NXUAO$gd+s$s`7+Wn?>Y9rUrLoPb6Kf?pNm>}zufRGW|Ay)?XuDKb%n5HUIYS`D z@TB(R7^T(GSG^w2mxfx)^A7)QIrA~AKWL=sw_$m5^HOHaVa?JPtFL~45=-UWb%hqs z0lvOV8|U`2`uEBMub=I)P`8wlswo}4IW>EA_FK5s)zRFN?~V8U-Q4t?pw38#n(oCF zPrJ-gq4i%o`zpk%0>@vaETr~ya0E?m$=9oP@V9@I6ua@wXEw3I@C!lXABLw3Hr8HG z3%iti()sUCukEA#DR+xjXW*A4u6nh79yTnG4#S+i=yi5U%)lUJDatsVTmN%VHy|Eg z^WER8BaDySDklv8yJGIFxs(t;RT9T(vlLr2z#Gst{_*jgfonvx6jf@t?T|UtrApQUw7~4>D0J}G5dNlfUn_`m5Xok=aR+b z&O2{LtsV;>ZY~f`Nmg8v)evf3X-fPk9OOE=I9%s3=ab$SAy;ywW{T8X7@at(xUGpQ zA;TCV;Z^)01w_K-h2HP?TiTL&KP~qR6*RR~2YGef`_b235^yO1J5dynchaevc%*c7 zu=h^__sOx4;KY${FM-03>n1H_2F~73t#J1G+G5N-G<2-xl!{LgBsCjL?w%`l7q3i| zmfvr=sbO8HqTu<`yt%YmYRD$84JiF4QA zO&_E9PF7C|53B&A@g>2tSk;TV>U9D0AjF?Li(}(&#s$nG-0$hK%7#38bFt2+xYyz{ z&nM+#iK;+5@5@UH8wJj2Dhl0Y=u!D_sQR2u;BV%vGR-2Mye*TQdG~%VYQT@>b+7MZQkz%Y^nn&6Buda!%}VNMiJpho%l0RmI#uh&h(du}zu# zq93ggCZk$R%d7hqluttiDB2VK%_9B1Vx@^&k_Df$V)>C%Diwk;&nQJ7KjW&GQJ!-9 zgxKdi@v&L9DU)-^<0Z;f^qoD*V)jzmi}U50Vm^(2z)+NnwC=l>OGgw^@sf!*H^;O89VN}G?cC|F&f^t=&i=LS&5;XwZ4Z`y3H|hl_;**y z-FcCXNr}vZt~n^^-~Zt^^z2{$-z^KD|DNd23)(nK?dA1}K^NT0# z`05jVNkicyoAhiREG>Vl`Fe%EWOhxd)XL^yUY{E3bPQ(4DVv`7pinhl`p^8Uo}4X7 z{_e~1jQrp80yhN{EJ}8=l_}VxlUcsa=__=|jxba;1|&(Lch_~yJ34N)ZSQEMybuDn z@z=ixNJ-riKi@BpV$V=K(A{y7VsoXvn-yHp$t+(zvf{tzP2>B2m?hEiwoW3_)X@+D zDzu4|3xA#Cgs4qsv()PNu%mUer1b<=12+gIR-9e1D=#4)>C{;?+Xbnp=0%ZsC)-%>|^0NQ9k1 zLK5;Z45mBv0nmxePofk{Zl)^PNbbLbB`xp8`DcaSoU$~)ASzov6Y9VBb%m)cX%agh=^F4pfkn37AOYN1|db;${_A8rDsKHs`kIe~^9hV!Ct zmY-I%r*^1!Wguz_egUIT6&dh*0loC_ie$@iwR+FRbnr9XG?IIx3v~9^B8{R(-9aBz zZTy4E%#Ml-efihNDm&XCsjd|3E9SgK!hhhn#HzHn#x|BZ5Kc*MyI)F(IVF1TY@E##1N3f&x{yUo{tY#Q&vf$}?cIJ*$MjX2 z;1Wu{s@i8CIW(%%)XYdm-H9V9e{wo)RFw4aVgH39bV&|kW%2aU;vG!8%goSwtld-j zRqbynJi*DvJb@fBQZ7bMVh8c;QF;5?>Q6za3gZ0n&Sp;$+`T}@aYX8th@RdU{B45n zQ$|9LkDxIU8>M@{7W*JyPev}h@{((oRpVVxrqC;~N@ygdwMlm6pOt{zmxAunelFg{ zRFa)$d)qGRbm;G+gpagnKYk!}M7u?%op9|H`uA>*V_<; zPZ3&DLO<{yuF+2?XpP+6@;7V_r8PWn$$${Vdwu{`2EJJNcR?}v=2S-@{zmh zs`Bq{xwFAEKnVB$ZngB#(SPV<;pZsrl>WC(KXe29|6cP~uWC-A%fMEs<=pvZ`gcf^ zykds?CpeO&UWbf+CPXQQs0mLX-z%qF>>|D`T0bcVQR;Q!KFHTIkPE-@l6{tZW3;FK zmT{N4e|H}=f5aBqw$J>}tyl`tAFrG6LE{78T5za-1uweM_YDyRSD9eiwapfO>F9kz>a_0iDT z(f>qWhY&EbW;Z$OhYWQnM)k|i$9qJKIDV&9qxY%Ioa=sI76->taQ0Q7W*vqNNGF4YphNJiSOMV`{ZYIR)?>)md zm5=;f4CTsbEq>DB^NZz%TG8Gd6KHP=wElfml3W^W#?R`1;T{(%r7HRS5$j;_F&S(L z*+RY7nQp6`i!NE;2Tj%oAA0*Az~Qop*vQXXA+GsP4w+{>>}hsui!M0$JeH~cOM=t# zzz%dzj_kjQA99()zm$|qjJ;a9Np~GW`}3wlk>X=t1K*(; z46~?TeDVGbHTKEN>K`a?_9IfJxs#uCxO%X`eGz!%#WtlDg$h5GxWy-7)1m9)WAA%i zP(d((>7CElzDm=H{E(}|Hg)0O=yG>oi%o|JFuD&%AFbpY%x1}D+nyQlnJ$OFe)`4R z`!zhAOdZczbS!Pj*Q_&0L~WpIa78-D#HHTDsh8uD-_L(IO?l^N$zTH`L__)K@Ilx!4>w0_on>wQ}f)VAI~@}g=`Jk;T%n2ud*9m zoY;w>CfX_C0~U<6!UI|G9VU@OG_&#Waaaq1?e09B4We3f>HQVdzz)AwedNYD>Ziv@8f)94tnlx{g5 zYjQWO60Ds7)^3ZLHbdmDoN zC(Cb{OEb}oji0o*oBa4X?>44cb4qFLtA}#kU}aEQ$Eo&XuhLd8ljv})(b0Lwyi;JT z8Xl7@!ef$=TbD!Wg07oy%rISvkocX#9lSWYi;jzS!{1@z*#go7oC%s7(kNtc5?NKbMzN}KoF-esO zS-og)__xm~B476!##3I%Heg;=@plt+#-bjH|0l1VnbuDqRTQ)?96tvm1$-AyIY-h?;HOf0I@RgCS+AxXv$icOYP7S4q#<4cS{jjy?7#nBj}Y%~o`KoQ<2?bNq&y2;oESIf1Vlbn25FtJhyr z)m|U`estr%!I9tgIKbej54l?Ey~xWzluI?Fx66t51e>kl5i5HApc-<1w-IQmA1d(m zfdp+NhSOuej|H=l2FHV=aFlT8))sm;h-BdV@oaO(UGaU@y!5h!pHX_Vh>67YOBMhs z{r?4(b~OU3!y%VE?F}pXF3^p62mbwiq&^M)$Wrnr$i8X3Y?J?d?0~co%;9^gdpRBi zmC>_iX??IHe~yWPMqTy4 z!KCWsm}{_%!y9k9)iUrQdjxK%eY%L<8^MK^G~%k7_F1<4j5pLc?^8Ncq84f+#@}D` zYgJ+Srz3{y`Sc=493%Rq<4`2qPJxE@EEj5Gp1SqNkDizpf5-v>#Yvn6&V4${K#yxC z)#6AAH`b;&AcJo}23dQ*Dm_Mvh2M=!Fv-cjVV5kELq{1MOk)BCN1>J27Ytw`BMD8t zt}TvFsk=DK+ooS{+hw$&BfWq9Y7ZvuUiKo?93tdG=# zNu^?R!?z#%e1jD%2F#Xn`&L^#>c)1))bVE<&OQ*|x8(MZWtgQma0;_FJTCVu_LcBT;spOjm--2W}TZh-u3{n;e(eJaYf=zgl~ zzZM=$qwfNo-|Bgk;{jjW@w#L6sADWcLg6hle&!o$^5CU(wA$kCxozA zn?~LCe^agt+hr;73&RwMu!399KVxaD;dMN`sh=#&oK@$MLCrL{mnS^=8=i-aX+$@x zcPWw%3-&L^+%`7x*%~VEzH=+;-wt@lom`PpuhMuRcRH#sNBo;H=zFAqL0*8hsmMY- ziJs~QO_Cy#>+w9f9BRtoD5SWT<6?Vp9wlp%=$~*f?@Ny9#&ETTx%27==os|i-T0(q zSEMm`@X2Jk%ow{ais#Gm15m|q+Bb;FGK~xfusu1CGBj!49FiBF$IITZwOj_JRJnV| z`0e$P?ryC6Lx3ax)w@qRwko=^E(o*k2SzW@tXtAW9eV55ytl;~PkoM4JX_wh&M?q$ zhyQB9TDESd#_RQWY-tti{ab(5p@D&awKxkYUn0cL!`|?TA`jaP-FP>D|NT@sKj|`F z(K=KlHjra#JmIMA(o-59pP*M5uk`schtK2F_L=s=qHp4z9Ob*U6$gpBl6N^Zy5fxX z=O1^t5u9@wGsVGlJ>GKLnpc7$JZrDD1ioZi2jBMRar+q%)P1J%-O?|mAGIa(vzM1Q zwDHv}ReoG5DQt`V>Y^6@HB4>O(=M~%luXq5(yfzb4i}?XTfT&;wRkxZ&YVTjqERk5 z)PmWBOesdD6ws&C!;~k-LL8@Fr#V&}XbhL6O;Hu-jhiyXhe)tGr{x~tJuz(|Nc$v> z&066TOS^c8T8p&nSSP5vM}`GWRmIGsiiE6 zx;#Il&9Q1z+C$c0uKfLBeOeJ_^a<~$qAp-IIdIfA$d)9 z288X=^o>2gp53k*%*k{g+a)M(hN@=1Vbrl|UD_Ac;6L?d!K;>Nu$ynV`qM=X8=|Ir z%Hg6tVO|v7L1$tmY7_hj#}vOix;7>zp+{xl*&&7jajwlj-AXD4l7|Pf=@UjLOim|> zG7b!esa?tIpvPwB@VB<$KXzNUNOEni`RMHHE4bk6Op})M{!el40cAnPfSK3)b0fN_ zRJfeyvoja2NZfLlf}Na7Ds8mho1wOHo}4u~ZMmOupou-WJGJ=VMuYWj$_sW|m!x5i zdr4(5RwWBn|HH?;yr<8NnC4!y2g^koU_S|>t9^K1c-MW2Xb__I!^~vYJl5|fnu-l| zisE|bY*Sf-<>Cy4KkcEc2&)9Q~w6!oBy-n+7 zugL9#`x*Pgl(hOEt)+bgFYyY&C)wT`y0hPTh&zKb;xp*#zU|8aUkEdDkA$hYeypUM z=%z>UIb)DZk8=~V4VcJRNM08$*y0jp0Rp#KT|>l}p6t9Tfco`q^ckf@M~=G3CJs-e z8sBN7uCwG(D(|d)%)#`;WK_7EejpZ?(<4>$uJ$n}(-T3H)4j37CiEG))y|&jp?XrR zb_z{c_GVN`sf!ou%lx{x)$*58u)nH~!XWOpN__7(TOHQm?wH&Ig*u)gsBgqg&gr^M z6CD7zwSVcE<8jl$lnZBK@e^E|m=(@U{OpQSJdLW?UAjH@>2p=4(q{JHxR@;`(A|x{ zFtwfHV3OEra{4ZzN*mp}JH|}U?HBO^Y|t?vTyBB_she;{s;0UYnIS__j{{`_oK8f1 zZ@=w+*5J6(=BOkw6fUk!3!DSJw$2~1xX(wbS08HiXQ57X?RE!~r?cvIRIJtQIWPA- zuk&ZnIYJ7WJvYS5K{flzM)z{rgS}v{u)Og z7hx=hFns%7UdyKmowf8#YN+SP+Z(o9rHrFrD`{CjMCJI=Au3en9k-#D-*MtSmYqIh zi>Gb9tan_z%!arU{i46Ou;=!ns2KR&n|r`5^4e*OSo~@3P0YTfpZg|t-y5S^dpeu! z8f_ru`)S|x^P?*qS+^-!e(E*AQ`Jvxlg??HMH`9i-3j@~M~gic18+%Rq1e zE#(YU*Gpx1Wz}uTq?mDn9`==nJ#;o>`EnE^P73V5jM?$;^F*yS8n4d`2+6_<{9riJkI6yDPbFjI%$5w-CQ;S+clB)g6)o6jztB}=P2{o)d~{i zHGM6_7M-GT2Y%;NQ{zFNT}|S*D&$leccN@V94>75!?by0nGl2byYKL$EvZH{6>;S& zS-A&l_!+&4hZwv8LO;&~dqn?Z51p|K;E7XAz=)-mY+NprB#ULD7@gsig_--z@eXO7VCuh0Oh7UT4!H6a_Vslj$vi%xJ0J1x}`uXCU&Thxeh8mz|R? zRCXa-5Cr&n{U5QYwpb=j>2W)|=&d0ac8v2S34KzumI8f?x2QX~&&qH7Xy zV#&SKPlQsnrccsmMBa0}QW=s-6k=%3=ol}Hxic2EXpscn4JD&u~p}_vE706;wVcxsd#w?)|WY(?@!rgF9P^VJu$71S|cv_uVwV> zPD!FG$ZiD2ErV76)3}^Rz_>4>uQ?2hNW^?{Lft5C@78hPU@d=)smU&1LBAaI{@Vr} z;W8(4?GUvCm0^S=0W`*pee~;Poy;vAydq!inRwS z0pUoB6m0B3QzVWh0x)dEY3>8!n0c!IT=7m0qppqs6@g+*-v)1yP0(2Fk zc;Kg~saN8q;o)zrqP60;On!gDP7-MD$8YjCt1ojj7XjVw0B3K(%4?!TaClG!I6IUz zpUZ~TPEcojeBL=tMtp{-D!J?&D0~A(i@2t;6zdkP6zBXlBx|VXnFbisa zuJJo}-QTpYhx;c%ZGosNGn(3Xjl}}sjD3uHUqmFh9He=!WOn}Sj~*76p;?k^|y3BxY}Qti&~fcqzst^Z1B=^N9SD~&D1Ci=CEWV&c2gc(^ynW)27>$x=8O^m|A4g{b5H`bJO}3&VlO>-?0XtuWCFuWQ`(( z)O0yhxQ=9O7g-l&N84SrZo8d0G!?%LT2Dx#Y=?8&^mT*8pT{yA22(Hjue`y^>!GI0 z{Jjihcb}nNQIIJBq8y3GWUZ7(sG3H8#*lF$8CGv+)eZI}#}6MtrHZNd<{a?9R()BU zb?)JRhl4pw8^n+W=ip0NbqT4*fy8~W-}7h?Hgvga8GU>Y;}r#i+b>rGv5g~WV)*cJ zgmb{>THvn-96YL7U02l!QYaj=Ge=DwE(Ws_-BY#&Ga@ktS^W$_QI8g5cnkT${b6Be z@hbp3p59OY8j`fbhZ_FGY~;ab)!`U{4TKw+Q8;Gbw8?3DL}1wb*4U2700r|0XWt^7 z>5a}ba~}Bc4t!|JBqs-w)~^H-is^2SE0(P3Tf;plBGG*VGDtg?53QJSdxCQIhlw>} zxQD{jh#R8#;$l$m(wY5juTJ=NoC|9(ZoKe>=XDg>QeH>v%TD7q!u_z^ zr`=J*cd=&h1MQSc+}lh@-rh5DT`5j)O?L`XJl$nJO4C@k%?p|lHKy(g?+v&B06s*$ zuO=Z2^_}?6H{gaRtVAVn!}mYt1TR#H?ouzQnwM*OARyuhu;?+ZRwG(8;m!n=?+@!a zi=Tj2Dvr>&r6UaWK=)I2?sYGJb1=QUWR)~rfC9nwGnBIBYmDtU)*7FRe*F{cZs1vr zR%6^gUW76Ow?fi`d@W2z7Zeat!_sJqIXt`o9hd;4Zdb)x@jzghIY^&p2wAB19;!tJ zO<#>ANx%KHSsh37v4C!>?zk7q_opuGjAH;_vm%9&{+$8d6H(U^Untgo4y|5#Laya#4iBOZJ@=J6z+Sv`TfeJWeEqIT0#>+@W|I8KD9M_eYc`(c zSi8|Q`gIC+Qp+=*=5P|r^8<|mLS=@yYag+A|FPeTTMVWdXb#5<&gYq&{t?NrtBpN4 zO-M-PF1-Lg@I)Z|dYUq8aGLe%p2kL0YMrs+yY4BfdK^q@;inv)C^RY%mf?5NDHmzm z!W-;lT(9D_1oJ2iIjdvbH!2AwTp~88dVkn8RztBGjjPMv6m*`b<3pTa3~6e*L@gBSW8rd6nYQ45Q)lvT`>ze7{HGJpPBEC z;_DtjGod+tK#Jx12n1sDsFYSjEG<~#(ubsKOxEa}wOV6-DE$jRq{q+LP$9nzbi=#J ziNj(*J%Z~F#L8^I$wNSeV*P9glP75r5_dmYD<~a^Qiq}W4G>?3kV=&%N|bNg*)-IM zRggb)Tp^+7bpHH#V)_z_Wf6ta{b3u=;z!^Jfw`jMAw>is3GFk9dTl@pOq{p{IHk$I)wpGbZt~JEU~=LS zpwbe{xZ$<51c*Nzqua7@=h6Qu~1|%J%c8u zrKwzq$%BmfLJ(h_b5q!?2HLJaYDG8)c3j(unC2DmcM8y-1L2L}_kA>i(FG(xJ@hkr zjVU~%CoX~=Y6(}&Y0$%cRRMkvVwP8Ej4`?v7t48rH*G5y7#cRm*?pvSGXl&PR z2u%MGRJA9Z%cen8bUZHi031suGy*YvYSo)IqeTlzdok~>`*qc0;A-ja^K#wL?W?2? zpVZoHLMy&a>ld{8A@2klsd~X%7*I6vX;1&e9;5*f_dQUiaRy}8V>u7U9}Mx!$2@M( z%tYK4A1 z{sN%%Mex-i_79z`u1O(zW14HTt8I#!?D!df6>Pqb>5gqw*(`=O>dq54HPlF}983(% zMnZliG~dA?W9y&C%tV9nZI~rE?0gT!k-@YoA=Q*-Cg&kBLRAr*2^(RS>^au*v{P+a zr2AfLdf#!X%D6AB`kqE`da1?0bIW$C2RI66me;r9N(drc%~?+!bl~l*RzyzI*E}N( zbFmNu@g(pen^vnK4YIqwl>>G0GZNWCPhea>4D;P(M-MqRP906>$4RjU<6HJeRaww5 z6PIUp?n)kGH_>|oz6Ek9&|#Nwxme@&oixzJD~L2MI~bIMg3-A&=>o&}eO7(Sv=Wp5~Ylx^(&{Nz@mRmwKT(hF3cvyLBT@1#w= zu#^h5%w9&K6(k(p<}5;$K25>ym@bDa0gT;;ZCKYlhHyj(ze{N0oR&W-{Nv<=;b-tX zAaYF{Q!PKv8K~eV#K&<0pWgHd)Hk)QdY(tYHzyc$!)&*Tn*d^0VbEzp7IuMwHfS)d zP|s5r`fe=--HwE{qyrEQ#}Ey-qS5feM|hzH4z3=oi95_3fD;n>`@Bk(20FPkU=4<1 zpf{W&h;V@t{y}JC{O7P(QPbCLocPlS@IM|pG0jDz*FiPwsHuaSaE@0b*2m?%^B`uy z@uNgzAy%b;hM8e8LJ}O5FdAWsp=fy93)t%efa*>MYw_mM#%!8c0v$Jk!Div`|qDaaqT(m~R)Rx3qoHruwgaYbf_RhA=qEB0{T+>jvqxr*&zo zn%iocI7~Tl;*b9V)$iZI7Tu>|bLVWrU3WXoMrh+muYfWUU{+w~h5R1Tax2tIsOn)L z(18!2x{{yKj{t(AK8-F+Ndbf;BZR;(VPKsDh;=%heWAsbZM-K!4J*>NrAn-Oev@6+ z4$>n|CWaEEQ@a4x5%fDs2;Gkks*r5t14(y^;EzB_lpO`7{V!~m&;mOx7ZKHe>P`

}#x%@8L!rTxrVrrHPHa@sMZr%ZAncu;4l#_3=K}UcHVxr2 zbJM`y1cqz@fH?Wbb?loas#R6>b|+5hZA^;+WMmi6k&&#m*_cX8crJP6#!yOd8=8SY z1$y;rHYc7cG;XKGY#Nik{&XP}Wv=S*WqGRE~w>6Ad79{0yP$$^Nj)Oiau*+pR=tfOs{y>nZl0&a^lUU~%cq1Rgja zN;bkYzk-$a!%E{Yh=5(e4iwRl>Lq?+dI?BQXdO}aBNh{LlG6Q_2`=!`@DlehS!?x- z$u8Lw3BY*c2cd0yJHQlB|Haee#;(=H}S9~n9=M^dQc@f#Jz)L1U(z>I}jukINVXEv{D|^ zMDF?ZBI*h}6;T4c5DRUf=B*Vwf&zgD9dzbb2$l~T8U_)(365iJ{#|fbC4};xMkTG3 zY}!hR9!7)?K#2_t&IEFhD4gLawj+kNjUW{dru`f5UdKO{ggJTp z!0>pK{ws6*Q?+Ed+RS8M}DI$n&40n08dZ$u4a zeDuY$^|JhU4FFNvlt!%@jBt)t&k|2XXn9&gVU&sC0E+K!KFf3I7$K3MXhroN zKGVaMaF25xgCep*S=`;=nz-R_SOXeaqYbfz=0D(N(z7E~Q-)TA^zltDZs5a0r#C+at?*2uouCA@%xB&)+f zguV^K{G>~6ECL%!V_~A<8{q{!?C=tHa3!6WyPQS|4=Xr@qwYXDS|!mK52z7dM;+7- zJLnOL>gA}PFZ8gr}N_r072c48s)}vIhd(A>g}uB zTK)Dr))Kuzp&lH%*me-Y7^0l02SWVRpFT@tz|xT$mz7y@@c0q)7$>>8;z;AZdNnHE z&dh$pWm$p+cN}A1II%Qy6-4jSK84wBc62EomK|vz5`a{ zo>tfJT+$@e(oiFpHWZa~nv(u>V_{)dT_goek6;6763u;|)l$aoSS!vA3P?Q#kLYLx zY0wbE>}N&T0$tFH9hhQUj)fY^}71cw{N8;xmRJwd2C+^Bi?I>r%BGH~^CT+AkP zW^DI(BPb8iV`YSS8w0!Z!0ugwoLZtPV!=Z4zlZ3+xXqGkCoEw>ZXtW**4 zA@V|vZ(xIOZ(xH6p`o<#sQ-uyuCHU*QF!Woh6TR>?ujb~_tay}gwVi(hkyGUg~MTb z8%$?_>1qT~!ZLvxcBDH;Bpb5;v;yl$%K(c54d>-fUL;{=1D3Ni-iprK(E zJ2Bmj-9n4}?0B81D&%#DOiZ?LEkB+Mc~T5yyfNxh6i+T~v+b$6o|Y!N%Cr~^ZIFdz zVIg==M6BtL))P(9H56+c=svAw4NnUuj4&S(!JFHF)#o8uwqX}WwSu&%pu(x?8+h7L zs%Yf&2BU-Y&^^w+%~%(D&FJ;Bsg>P1BBkqV=G`Sfx)SuhP30arX*K0#={`^1FOD4m5a~FJ~Vvsy*%DI-`erVR0Mwe89c@Hd7vlo z@5i~;Nz<~TpEU0EPzoycUsepiD!7ic2r+7IycAH$*9*#cdpDDR(w4f~)@G(6X)xqq z1i#%3FqA2MQ5G-)OC9g*?5w8onZBRT><>S#0Wnw!=+4{=Rx-N)k{9~>dS9hVjvG>{ zUW^9=N3OwDBUFzE$z4G5)r`e3@(gt)eE4h}*=*FQ%7O(yi=>M^sDbUhwPrJ^GLh>2 z%x9yr)>$Y-hf?(~EjohZmT9IU}tviTO3ZI~Ic<_armcb(y%+-WZ6; zC^NG;w_`17_M$c`e!S#G*-{F`MyyGyN zB$GdOqP56q-^M(?q^v3EBRr15s6V$5-*p3?^kyHD`)L~c&E%7_zByfiZcbdvDa^hkIyfOwuJsFrmT|ljeDJZ4#96%G0tY{!ls|3zXEObhN zQbjv3N$@TQruFk`|4$QGirr)~n>US0)=5u<&BVZwEFu`WGoU%oEt*d5*{kk!Y&$I# zk_Bg^tp(O$n7@EdJkMSes{&?|$d1kwHYaIbGMOC&0svPB55MNeZ0?1<6c7feUc5`D z^^o{+2$uo?AN&aa<^+INs2wO5h(Oe&?{P&U)quaYEIZHs@#Ffd4Woe3F`JE6{ z%#1JpC+(DCIecSYYC_gU8yEy+f(dnoL1Y*N7|Kz$q1tKeU8fizWDn@3`v!{{v@~aJ zw(m4lIzuhM4|kWH>Yz{}$rh^M!6XaTW(8A&qMsSmI-Gl0k3v|EFyAa`8{=RSFjlpz zOTef@r|>CX>bWO=)35Q)bTD%wm{|ubn1t{Q!dMH{GjHo#(~ z9r2}UW#=fhMIr6EtUFr_zS^@6lQ#yY$*+KrN%K#k)_Xi@?w&_j@g}~OAYxz67RSF& z{lls8pOo2k>hF7qfA2wve-~T8^$LVYQMUf6`BN13#Y_F_C4YxFI>Unb2q!2Q7ke0# z3*ZmSRVk`5q=H|+R)9j$+9DWpc0fOF_rZ{nEEAQJfp@7J_2O5^J)=%ns&`=WxxqKY zl+>?tJ_F@IBag^Foyk<>4jx%{oV9|@j>Bg6k@!B<)g3&oE~Ag?IjLOnk!{in_8nYTn6v@6A0$t9&ePz2L`7D^-45{{TRxdA3^)c5jm znSm~|%+zR2grgpe@>@Ie{+h*AvNAO|@*i}aG60*2Wn%DAU^D!d;umF=FTniMR}o_paLM%ib@@@zh0loVFBLLn_!Hf*G6yN%7o7j+nn0 z{#U%OQ7x<4^t#i2)MputH3$q;z2@1Hu2lQzRgLy#Wi7_;=lR*K1-G$nE;^Ml&Hi(}*hfj~WWfr?SN zZ%pT@Z%qxVTAfmYO1Vs%0do$CO1X_lrtblUZ6Pyu22yb?ubK`=#k;-7TGzRQO!q%yi(e!O&~i=H-mt zRtygTpj?L362uB`Z&_-*tVY=6)C8o|%Yt7+YZ1RTfYOgU*-Z?nkG;}zCyRpYQ|j{o z9JN3)n9&A6Po}@Nw=jjM@SA2IQz8a(soWJnA4&cxtw>@w>q42LTfD6xMVt~bcrVH} z5lCE;YdWt|pD1^4{rkj!Rxw-{tmXwhGp02Ps+Br&Kwca5?J{%YqU@BP(O^y$#IZAH z!6wt-ShG{^dCF%fOoMAt%<=ySd>FL`)4BzSgv16IOf_0D^bVlPx^q6Za~{gqEU?MK z2;!SHXqD^Id7I38hhjNVsF47vNFw!Eg~-H2M7|~}TK8pD7*g^z?zLiue+yOCbaf3rRp{mh~iO&%#q>HcI; z_yLSMj3|7EQdsom@f9gk&qD@zdWve&D@L_?XO1eaO{%KeaGL z)?f(EX7QbHVgel?Bzv>@g4Hle3lD`XtHMa#o_vkD4EsanS&HUqd z=RK%zHj7|zGEfGR?wnz5PBcw5Rx+U&Y!I(lwOBw&&lpoU(ZS?HDQcOtNL)QlUEti9 zZ(dd_G|3E@JVeBgfU%%cvx1%WR4nUv4CUFRQtA>UJt$udz=$nS z%wV`3B@VcsUP&ZBq%CmSadzX3bdV|wrke*KL3{`vH_pp4DWlc{A3xfd4uBU@PcUE- zkpMUx*A(k0v;FESVphsrq`q{B8>uewzhQPAg8`SMEhcsa*W~)gQ9MR` z8kD~%ShSV_14RsGSqW+(kGms5TQ!!8qD)UpbTjfRIG_+Hl|7z6m!Z+ zrktw2OgU4)6y5{LJ<`EkDmlC-SB$A!R4uHKMP{T|Z|=a5G~qEAruRI6s+c^J$44dG z)^be~G4R-a5e%Li4lgir7eI~MkiNyJjIp_|$gB;r798AQvM2)tV1+1hs)-7<3gt-% zHF*IRl|cr;IUhz&6jr#{`J$-CnkuEZit$PrH0B4_VLTp#Q}M;6Nak$IPdV8~J^7Kd zk2M=Oz48u<^Ckvr_cBNVRSI&83V5mSStgZ20|0`0f}p{O=Xst(f#ov$hwMi6yyou^ z@)JnE`(c+zWS3)4IAUarYM%S&Q>|IeYf}vY3I{OMZp0%SI`&Hc^TL`(5de_1#Bx&P z4Te&{RJM>WFq``T+!+<_vqO{(R0mF0`$K$Zz;x)zF&?dmfO*WO1NjuP;T|hT3K69J zB9$WoCV7FO%E(%s$&}#0F;?aH{|2s!T!WE|MFgC&1MFG{YRz&`oMmorkR1e-3L;>u z44`eW3fw(G-qRUNDP>4peiyyJD24}sp(*WvM?Zz!tvm0T$x@mV{7xV5+1;IdZ=vwo zj2XNF^#La0E|BIJIWISq@^T-E#ouvO2ND`IQiJ;-#xW5|V8>&#w`gSwagDXHk^`kU z$M6Uupt}zwAX}iEx5!2jQ|?tw{iekU)6_=5E1d4~UcNDM-- zz#Ym0KIE!y#@sBbAsH5H$kDAKz=Cf9ujU)UPvhkAJmx&);GT5)vi__THRa(%0a8*(m#IN=)|4LjVH}=SV$2mN5fRiWMRD|?#-CQQ35XBfGf^Mey#y*n zKC6{+vMmKk9=m}zY^XlK?WXMD4i>ag%2?b+v0!#kHPSr3fP7^8__@ZN|KT_1oE{btv7Zl_4mz3*O5kQWtAhi?L2iT8ni4tL6) z+Ct$cT!GSy#qSW6h?GuoLnE1|_8N`3R7GPzcu<4NsKDkb-wFjaXxOnh4q&7^_ zO)!VftWswn#ols;ML9v|AvXf*Jsc4sTHo85^A?4W8#~`n8VC>5eiNmq|5wwMhc$71 z?NO>&wPIaLMFH!EZ53*jMHHwaQa2RHrYwn~RTd#2NDTy1_g0ZA?t+M@;7m3|L_-6y zR;ZrAwV6^+{YeOGx1h6=0f1;2_d$qOC7FOA8mO%x&OWu5gf>NK#(YK*AgPq0nko zqc>O;=9_I0I)!qAwFdRALPW4g>}v!*vyKi$bNqrW5b7tE0qpb8E|V642R1X`(N$bU>-A@U zAiEO~!7c71S4ejQZN4TG$jT73y>b7$=gbapu~pz=g?Hg3k|CTACQy}JA!=Nh7R~1T z=Yxfq$t3}>poDRSELq3h1A5)bCt~mF4D@0qA1>-GOui z<@xb@gRJG9Vm$VbRE046#j`b7XBsE#3!vV=3l%R!lgJ0H^LaeL6%w(=N2l901=bkW z%2u!!(AhPIZ3syUl85s9P@94@UbZTpD_5nbTLnIqx?d-Qo<0bO@)S5~bV^-N#^Ka3 zPL*t}b zZ}SLZ?8RkE7V*BTA4_F(na87b6Wx=VG&=bh%0r)#_@_61_2SKrMR+ui`xOgzeEA!y zK3#j+P-z66aM<4|KB0PK0$wb&`Lg^!(!X#NSoYL)BR zqBjoUkC^+6ogA^YPy;-<4)K*fvm~;&XqbJT{n3U{RKe(uFr;|9k2W7=7Erz1q&2WM zmfXzCi~(g0DHwysq2N&H4w=Qit8pW*&d5j$@BiIF(T@F`fuq-AC!S>ma=bCOmuB8s zoyt00CW4yb%xam0Wn*B0p`iB^GsNnaL=as35-=N{GixA`rRj36gSG8wqTL_~27L-U zj>QA#mT|FBLk@5g&D=6)btK&Lz^w@(^*~s?zJS=Em@e`Tmk5hqC(<=AVhbM*OtTZW zutg(BwrFz1TQUxEfatqd%QG_Qg;~OTg9yVSEGdlj;Qp(q5o9OT!QBD&Wvze;8`%Ke zX%f6j2lAkLa?<$TFh5`hp>?!3q1~p;rB<3Ytmg#b1a>u9SzvZROd2Qqi7i+m9UBac zjQs^yBKcLCg|t7CtRyQ!WVr{881!?BZ5WA)u9!Kq{B-8WOd^7&UFsy%Z-CMR8Wh7j z40gj|OgQ`&O13d24IN3eD08jP4f8I{2JmxpCb*1*uJ0Zy+aZw0S}%%3gQ`M(DA_G* zC>o17U-=c34PaAf8!S?c!(@wa-dBs*j>9mNJ_9efBM|d^!jV=EDT)MDbN&PWC@#=` z2?_WkT22mxw{UN)))u5fM%RA>Ng4uPG9F!8n*@ty&@RG(1hxrrlkSI0H4U8)!?Y{_ zS2+g36+GG?iWiF4%DK-yCY>`0s=&@rxf1yG8vLzQ7!+qDyNK;%J2B1X?zzLOg5hrO zMc9TbX|w{^<{P?&+Q;iz^B%C%#3$#OpP3^NT}Qz0Q;>=c>)^mq^m+4XW+KjiVKSJ^ zcG0j=SrR}Uj}9eDfuu7A`Q?L+){@I|#@+Bm5rsAb3*VhBwkE z<9(FT_%%3X1@k${)nD2NXG8T+QNV37VYr0hB`E}8XH&iW>|$Shbx%?DcL(z+O+lNe z07T-r6GJTzW3m%Wn?S4v#xX3H1+#vnComjT!h}a2S{XaE9cQ5T3B+ux9dkBZ4^wD( zuk*j!gHYdr2vq9Q*x9rn(wgyWXrG#p4I-z5uk`t2kV&V4_q*`K0{K3~)&$kJ8&Hbo z0-}g~K@_dWAd-K>{uop_1O9J#QgK12H5UT7M**eyNoXQ38&F31NZlX6IwQJXKnjkJY_ZIE_|eG*hAqWY346M) z_2iK5 zzKI~3lTe&-18W2q{T5D8O11aQnNIcF@B$c z!YtAn5evB>n_sT-Ei$(<*FS@&-URVhYceR=9lYTJ1=_KcAw1ww?7_m?X~i7NBHI0F%sy%#fhuW@pNSLjFLh4n`DqXxyU+l+*_VMUiPd zJLZ`PH1t~Msy-`5pRNR}8QQRyA<~xsuawYwDuMJ30IPW=^k0=lvX9`(F$ZjN{S#El z5WRL}O*5}YPIQkU$>Lr1#)%k2%*iOn?zocKfrhUxbkh5CPl2X49n$<`0#X z<94Tz+KExW?919+Ip6JlaF|oyhO&<2~t(B-U34Q3nY0La`z0MDpJFC_I7}Nb`H~>mmcuq43!-Uc+CYizmb>j_`(hR zZRr>gbc{O!cHP;0=jOXPQR0Xe@pvFkLnp6Fq*v>JwPUBl#t*QsCA1HM@+MV8vF~V4 zV4bhnpO{VbnY>}(CfwB%p`C-dfz77U_+p`42eC5oNj8OUtlL4uzKf;{k6jnJ0B z!sB!v1p7YowUpw>6^_LMdzma4#oGh0OvdQ40La2Tq8{SDfaYdBl4=t5zT zQbom+!wJKL8#;3*oghqrnXAnaSdu%RQ_v=vdDW<*D){1X`5rig=Zih`3euC;nc@V5 zW;Aj>JLx_HR zFUuhpe;8d9GX40}e0{ zDZfP*(y3(8#lgfYX&v8B9jOkQW#4sR3LeRK93CnD+}-4BMLNnXV?F7dkU_+?8}?+C zDkE555&oOoe(+6W^%@Mq>)+34XsTp7n2A}XQQ6Ce5RHExnpeBa@{{+q@Zajb$Ay1! z3mcaR0t(W|J5=YznK0AH2qc{aZv4)fgJIJ+rytNVXBzhg6hyNvOV>kJ`;F|fIk@cC zDPVfTrArtM+C3{TmFj7GDv(MLX3iK7g;B4GaiMEy&4~l=b{qx?aUXDk!WuVvH%GJt z%T;Cp`w+DEEv%w4)>*E|5^kInkAts23=b}FBC|kb1YN+~tUg`eLxsVQ8>R1_OWQe6 zUulFcAa!~PO10ypHb36zyr~?UWo=GEyc2ub*}bZ4TxQ1C5PSilYm{h zt~4>@)fqbV!eFBL0l2+;?M_Fr>tCh-08P7XCNjz^Db*EaOSuVGdkFSa&YD0pCiNGV z4E^V4rpvZ=CoYKNHtuuIc^M~;;=iEid|_M8a3apzPuYJt(dpH{Npt*Mz+(xI5HyBy z!2MKh{N+)+9ziz0Zr+1EP#Hbl!!$8p!^c-LIQmEU1CY*v_~YD))tkP|d#xVjUVF$V z(!ysI8wumw1?wzwHstBF#=FlqWCYKG#pxlO3gL4>g@lweR>JZMXC{kM#ay<}jaiJ`p}MCJ@&Y zQ|WDVP1fRi)OHaHeQX6RZXIYVOwsBp%ukusR2698dEbvW5Ml{SQJN(H#25tP%wf1T zB#5wk8@($oJ`y{sJ79D!FO`YBiEw|7z>flV56&yD1^d>V2Xja$&XXl!Cs%H+plq^I z3ieShWCFi@nXMu_ku*oM8wy7zE4}p)B0oSqr%(lPcx>GYc&L2EEn)JDGE%nmOJc$Q zO6e|ILzYu*AiQe>3a{WyC<#2ha&s@~Py1y3T%SWX&`vLjxM+LQMA|zHIhRW2)ZFgN z-2z%SMsv<4+4aE)|5UymKbxN!-13Q|V%2j!<4jEjs4LbI;1i00091m=umem|Q_gvZ zw+Q7b_`6&myd=VfehJEfzALg)Z}_Oq^)LGXAaBBXHTQt;uDi+GSCnaVusAuB{hH;m zirqwpTOehkgruiKyI&Ex4YaxPEj(jv2u24~v~Pr?lHIA#=QUX();feZ4BmdaFk)^0 zjzapShIy4Vr)nCGC$D#N${S~hj_vK{+foZCKhjBkiGDg}@U`L-WB?n(=F@MOUDa>1 z-{K!Ncr4+ZMf?7$OQk-viS*AZE9fOP^M3HRTQThVvdFFDGBf!4CXr?ST1z~bcQif} z=W2cEHpF-ssi#%6J?SP8$Bf(Sbh&@YazoKS8v66B!S!LZhHB$&CcE%3`{6-JJ7;Ib z)-7dTSF3a?fUM=%woTa{KP)lSz7?=Z!rF94Du`D^mVSi4lP>AC9^P?FnfFy!J4a=F z!YsR0q^-l|8mGhK;wEV3)uuVBj%QuW@1g9-QhG?NA3UY);z)pSjt0o$b7%MNsy5fZ zrkw>nf*!t|`|>5_%SWhh%+0z|7fYX^o9RsV;ehx+d~T0!CZrCyy0Si>-vngGe;q$- zbjzceA3Bm9%8rxfimb)=2i+}sKQDe Date: Mon, 28 Aug 2023 16:48:48 +0200 Subject: [PATCH 022/765] Fix typo --- resources/definitions/dagoma_sigma_pro_dual.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/dagoma_sigma_pro_dual.def.json b/resources/definitions/dagoma_sigma_pro_dual.def.json index fc9197c2644..d3cf3502654 100644 --- a/resources/definitions/dagoma_sigma_pro_dual.def.json +++ b/resources/definitions/dagoma_sigma_pro_dual.def.json @@ -1,6 +1,6 @@ { "version": 2, - "name": "Dagoma Sigma Pro 500Z", + "name": "Dagoma Sigma Pro 500Z Dual", "inherits": "dagoma_delta", "metadata": { From 481ebf748e9e78a207f418061b9cf821930c32dd Mon Sep 17 00:00:00 2001 From: 0r31 Date: Mon, 28 Aug 2023 19:02:19 +0200 Subject: [PATCH 023/765] Review qualities as it was nonsense (Layer height <= 80% of nozzle size) --- .../dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg | 14 ++++++++++++++ ...dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg} | 2 +- ...dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg} | 4 ++-- ...dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg} | 2 +- ...dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg} | 2 +- .../dagoma_sigma_pro_brass_0.8_pla_h1.2.inst.cfg | 14 -------------- ...ma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg | 14 ++++++++++++++ ...a_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg} | 2 +- ...a_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg} | 4 ++-- ...a_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg} | 2 +- ...a_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg} | 2 +- ...ma_sigma_pro_dual_brass_0.8_pla_h1.2.inst.cfg | 14 -------------- ...> dagoma_sigma_pro_dual_global_h0.1.inst.cfg} | 6 +++--- ...> dagoma_sigma_pro_dual_global_h0.3.inst.cfg} | 6 +++--- .../dagoma_sigma_pro_dual_global_h0.6.inst.cfg | 2 +- .../dagoma_sigma_pro_dual_global_h1.2.inst.cfg | 16 ---------------- ...ma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg | 14 ++++++++++++++ ...a_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg} | 2 +- ...a_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg} | 4 ++-- ...a_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg} | 2 +- ...a_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg} | 2 +- ...ma_sigma_pro_dual_steel_0.8_pla_h1.2.inst.cfg | 14 -------------- ...cfg => dagoma_sigma_pro_global_h0.1.inst.cfg} | 6 +++--- ...cfg => dagoma_sigma_pro_global_h0.3.inst.cfg} | 6 +++--- .../dagoma/dagoma_sigma_pro_global_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_global_h1.2.inst.cfg | 16 ---------------- .../dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg | 14 ++++++++++++++ ...dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg} | 2 +- ...dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg} | 4 ++-- ...dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg} | 2 +- ...dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg} | 2 +- .../dagoma_sigma_pro_steel_0.8_pla_h1.2.inst.cfg | 14 -------------- 32 files changed, 90 insertions(+), 122 deletions(-) create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg rename resources/quality/dagoma/{dagoma_sigma_pro_brass_0.4_pla_h0.6.inst.cfg => dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg} (89%) rename resources/quality/dagoma/{dagoma_sigma_pro_brass_0.8_pla_h1.0.inst.cfg => dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg} (83%) rename resources/quality/dagoma/{dagoma_sigma_pro_brass_0.4_pla_h0.4.inst.cfg => dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg} (88%) rename resources/quality/dagoma/{dagoma_sigma_pro_brass_0.8_pla_h0.8.inst.cfg => dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg} (90%) delete mode 100644 resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h1.2.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg rename resources/quality/dagoma/{dagoma_sigma_pro_dual_brass_0.4_pla_h0.6.inst.cfg => dagoma_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg} (90%) rename resources/quality/dagoma/{dagoma_sigma_pro_dual_brass_0.8_pla_h1.0.inst.cfg => dagoma_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg} (83%) rename resources/quality/dagoma/{dagoma_sigma_pro_dual_brass_0.4_pla_h0.4.inst.cfg => dagoma_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg} (89%) rename resources/quality/dagoma/{dagoma_sigma_pro_dual_brass_0.8_pla_h0.8.inst.cfg => dagoma_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg} (90%) delete mode 100644 resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h1.2.inst.cfg rename resources/quality/dagoma/{dagoma_sigma_pro_dual_global_h1.0.inst.cfg => dagoma_sigma_pro_dual_global_h0.1.inst.cfg} (76%) rename resources/quality/dagoma/{dagoma_sigma_pro_dual_global_h0.8.inst.cfg => dagoma_sigma_pro_dual_global_h0.3.inst.cfg} (75%) delete mode 100644 resources/quality/dagoma/dagoma_sigma_pro_dual_global_h1.2.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg rename resources/quality/dagoma/{dagoma_sigma_pro_dual_steel_0.4_pla_h0.6.inst.cfg => dagoma_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg} (90%) rename resources/quality/dagoma/{dagoma_sigma_pro_dual_steel_0.8_pla_h1.0.inst.cfg => dagoma_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg} (83%) rename resources/quality/dagoma/{dagoma_sigma_pro_dual_steel_0.4_pla_h0.4.inst.cfg => dagoma_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg} (89%) rename resources/quality/dagoma/{dagoma_sigma_pro_dual_steel_0.8_pla_h0.8.inst.cfg => dagoma_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg} (90%) delete mode 100644 resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h1.2.inst.cfg rename resources/quality/dagoma/{dagoma_sigma_pro_global_h1.0.inst.cfg => dagoma_sigma_pro_global_h0.1.inst.cfg} (75%) rename resources/quality/dagoma/{dagoma_sigma_pro_global_h0.8.inst.cfg => dagoma_sigma_pro_global_h0.3.inst.cfg} (74%) delete mode 100644 resources/quality/dagoma/dagoma_sigma_pro_global_h1.2.inst.cfg create mode 100644 resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg rename resources/quality/dagoma/{dagoma_sigma_pro_steel_0.4_pla_h0.6.inst.cfg => dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg} (89%) rename resources/quality/dagoma/{dagoma_sigma_pro_steel_0.8_pla_h1.0.inst.cfg => dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg} (83%) rename resources/quality/dagoma/{dagoma_sigma_pro_steel_0.4_pla_h0.4.inst.cfg => dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg} (88%) rename resources/quality/dagoma/{dagoma_sigma_pro_steel_0.8_pla_h0.8.inst.cfg => dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg} (90%) delete mode 100644 resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h1.2.inst.cfg diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg new file mode 100644 index 00000000000..dc662ba1a26 --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = dagoma_sigma_pro +name = Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.1 +setting_version = 22 +type = quality +variant = Brass 0.4mm +weight = 1 + +[values] diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg similarity index 89% rename from resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.6.inst.cfg rename to resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg index b1671b0c9a3..7b4eb8d5a1c 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] material = generic_pla -quality_type = h0.6 +quality_type = h0.3 setting_version = 22 type = quality variant = Brass 0.4mm diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h1.0.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg similarity index 83% rename from resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h1.0.inst.cfg rename to resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg index 6822dc3e3ef..0a75550fae7 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h1.0.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg @@ -1,11 +1,11 @@ [general] definition = dagoma_sigma_pro -name = Coarse +name = Normal version = 4 [metadata] material = generic_pla -quality_type = h1.0 +quality_type = h0.2 setting_version = 22 type = quality variant = Brass 0.8mm diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg similarity index 88% rename from resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.4.inst.cfg rename to resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg index 638725db0a3..6abc8f22f03 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg @@ -8,7 +8,7 @@ material = generic_pla quality_type = h0.4 setting_version = 22 type = quality -variant = Brass 0.4mm +variant = Brass 0.8mm weight = 1 [values] diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg similarity index 90% rename from resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.8.inst.cfg rename to resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg index 80754210f42..e178cf7c3b3 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] material = generic_pla -quality_type = h0.8 +quality_type = h0.6 setting_version = 22 type = quality variant = Brass 0.8mm diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h1.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h1.2.inst.cfg deleted file mode 100644 index 3b5099b26d6..00000000000 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h1.2.inst.cfg +++ /dev/null @@ -1,14 +0,0 @@ -[general] -definition = dagoma_sigma_pro -name = Extra Coarse -version = 4 - -[metadata] -material = generic_pla -quality_type = h1.2 -setting_version = 22 -type = quality -variant = Brass 0.8mm -weight = 1 - -[values] diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg new file mode 100644 index 00000000000..f9e20a0011d --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = dagoma_sigma_pro_dual +name = Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.1 +setting_version = 22 +type = quality +variant = Brass 0.4mm +weight = 1 + +[values] diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg similarity index 90% rename from resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.6.inst.cfg rename to resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg index c7c6ea1f266..13205d114a4 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] material = generic_pla -quality_type = h0.6 +quality_type = h0.3 setting_version = 22 type = quality variant = Brass 0.4mm diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h1.0.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg similarity index 83% rename from resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h1.0.inst.cfg rename to resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg index b59995955c4..36d96fb985b 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h1.0.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg @@ -1,11 +1,11 @@ [general] definition = dagoma_sigma_pro_dual -name = Coarse +name = Normal version = 4 [metadata] material = generic_pla -quality_type = h1.0 +quality_type = h0.2 setting_version = 22 type = quality variant = Brass 0.8mm diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg similarity index 89% rename from resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.4.inst.cfg rename to resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg index 249375bde1d..42e2b6218d6 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg @@ -8,7 +8,7 @@ material = generic_pla quality_type = h0.4 setting_version = 22 type = quality -variant = Brass 0.4mm +variant = Brass 0.8mm weight = 1 [values] diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg similarity index 90% rename from resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.8.inst.cfg rename to resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg index ee980fb284a..f3c7b09f5c6 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] material = generic_pla -quality_type = h0.8 +quality_type = h0.6 setting_version = 22 type = quality variant = Brass 0.8mm diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h1.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h1.2.inst.cfg deleted file mode 100644 index 710fe5c29ad..00000000000 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h1.2.inst.cfg +++ /dev/null @@ -1,14 +0,0 @@ -[general] -definition = dagoma_sigma_pro_dual -name = Extra Coarse -version = 4 - -[metadata] -material = generic_pla -quality_type = h1.2 -setting_version = 22 -type = quality -variant = Brass 0.8mm -weight = 1 - -[values] diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h1.0.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.1.inst.cfg similarity index 76% rename from resources/quality/dagoma/dagoma_sigma_pro_dual_global_h1.0.inst.cfg rename to resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.1.inst.cfg index 0cd101d39d1..62b8f6da3e9 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h1.0.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.1.inst.cfg @@ -1,16 +1,16 @@ [general] definition = dagoma_sigma_pro_dual -name = Coarse +name = Fine version = 4 [metadata] global_quality = True material = generic_pla -quality_type = h1.0 +quality_type = h0.1 setting_version = 22 type = quality weight = 1 [values] -layer_height = 1.0 +layer_height = 0.1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.3.inst.cfg similarity index 75% rename from resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.8.inst.cfg rename to resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.3.inst.cfg index 19eaffad14c..3f2f23cc15e 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.3.inst.cfg @@ -1,16 +1,16 @@ [general] definition = dagoma_sigma_pro_dual -name = Very Fast +name = Draft version = 4 [metadata] global_quality = True material = generic_pla -quality_type = h0.8 +quality_type = h0.3 setting_version = 22 type = quality weight = 1 [values] -layer_height = 0.8 +layer_height = 0.3 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.6.inst.cfg index bef6d08eeb0..45f5d6f59b6 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.6.inst.cfg @@ -1,6 +1,6 @@ [general] definition = dagoma_sigma_pro_dual -name = Draft +name = Very Fast version = 4 [metadata] diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h1.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h1.2.inst.cfg deleted file mode 100644 index 74bf3c47f96..00000000000 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h1.2.inst.cfg +++ /dev/null @@ -1,16 +0,0 @@ -[general] -definition = dagoma_sigma_pro_dual -name = Extra Coarse -version = 4 - -[metadata] -global_quality = True -material = generic_pla -quality_type = h1.2 -setting_version = 22 -type = quality -weight = 1 - -[values] -layer_height = 1.2 - diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg new file mode 100644 index 00000000000..2026c66f31e --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = dagoma_sigma_pro_dual +name = Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.1 +setting_version = 22 +type = quality +variant = Steel 0.4mm +weight = 1 + +[values] diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg similarity index 90% rename from resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.6.inst.cfg rename to resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg index 52841de6b8c..40188c628f0 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] material = generic_pla -quality_type = h0.6 +quality_type = h0.3 setting_version = 22 type = quality variant = Steel 0.4mm diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h1.0.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg similarity index 83% rename from resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h1.0.inst.cfg rename to resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg index eb962e7d1ea..ce1eb96fb01 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h1.0.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg @@ -1,11 +1,11 @@ [general] definition = dagoma_sigma_pro_dual -name = Coarse +name = Normal version = 4 [metadata] material = generic_pla -quality_type = h1.0 +quality_type = h0.2 setting_version = 22 type = quality variant = Steel 0.8mm diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg similarity index 89% rename from resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.4.inst.cfg rename to resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg index 8ab3e5c4095..f9b9dd7bd30 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg @@ -8,7 +8,7 @@ material = generic_pla quality_type = h0.4 setting_version = 22 type = quality -variant = Steel 0.4mm +variant = Steel 0.8mm weight = 1 [values] diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg similarity index 90% rename from resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.8.inst.cfg rename to resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg index 4ba4f3e4d17..cd487c1b3f6 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] material = generic_pla -quality_type = h0.8 +quality_type = h0.6 setting_version = 22 type = quality variant = Steel 0.8mm diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h1.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h1.2.inst.cfg deleted file mode 100644 index c7df9841f59..00000000000 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h1.2.inst.cfg +++ /dev/null @@ -1,14 +0,0 @@ -[general] -definition = dagoma_sigma_pro_dual -name = Extra Coarse -version = 4 - -[metadata] -material = generic_pla -quality_type = h1.2 -setting_version = 22 -type = quality -variant = Steel 0.8mm -weight = 1 - -[values] diff --git a/resources/quality/dagoma/dagoma_sigma_pro_global_h1.0.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.1.inst.cfg similarity index 75% rename from resources/quality/dagoma/dagoma_sigma_pro_global_h1.0.inst.cfg rename to resources/quality/dagoma/dagoma_sigma_pro_global_h0.1.inst.cfg index e777dd8c457..ddcdb5a4e43 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_global_h1.0.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.1.inst.cfg @@ -1,16 +1,16 @@ [general] definition = dagoma_sigma_pro -name = Coarse +name = Fine version = 4 [metadata] global_quality = True material = generic_pla -quality_type = h1.0 +quality_type = h0.1 setting_version = 22 type = quality weight = 1 [values] -layer_height = 1.0 +layer_height = 0.1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.3.inst.cfg similarity index 74% rename from resources/quality/dagoma/dagoma_sigma_pro_global_h0.8.inst.cfg rename to resources/quality/dagoma/dagoma_sigma_pro_global_h0.3.inst.cfg index 47993b661e9..a648eee325a 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.3.inst.cfg @@ -1,16 +1,16 @@ [general] definition = dagoma_sigma_pro -name = Very Fast +name = Draft version = 4 [metadata] global_quality = True material = generic_pla -quality_type = h0.8 +quality_type = h0.3 setting_version = 22 type = quality weight = 1 [values] -layer_height = 0.8 +layer_height = 0.3 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.6.inst.cfg index cf64f98c742..70c094d2e35 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.6.inst.cfg @@ -1,6 +1,6 @@ [general] definition = dagoma_sigma_pro -name = Draft +name = Very Fast version = 4 [metadata] diff --git a/resources/quality/dagoma/dagoma_sigma_pro_global_h1.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_global_h1.2.inst.cfg deleted file mode 100644 index bf704f15d07..00000000000 --- a/resources/quality/dagoma/dagoma_sigma_pro_global_h1.2.inst.cfg +++ /dev/null @@ -1,16 +0,0 @@ -[general] -definition = dagoma_sigma_pro -name = Extra Coarse -version = 4 - -[metadata] -global_quality = True -material = generic_pla -quality_type = h1.2 -setting_version = 22 -type = quality -weight = 1 - -[values] -layer_height = 1.2 - diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg new file mode 100644 index 00000000000..a681f06ca01 --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = dagoma_sigma_pro +name = Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.1 +setting_version = 22 +type = quality +variant = Steel 0.4mm +weight = 1 + +[values] diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg similarity index 89% rename from resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.6.inst.cfg rename to resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg index 5053a407bc3..16a4921dfde 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] material = generic_pla -quality_type = h0.6 +quality_type = h0.3 setting_version = 22 type = quality variant = Steel 0.4mm diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h1.0.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg similarity index 83% rename from resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h1.0.inst.cfg rename to resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg index 8ec936e5de5..7438eb7e0eb 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h1.0.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg @@ -1,11 +1,11 @@ [general] definition = dagoma_sigma_pro -name = Coarse +name = Normal version = 4 [metadata] material = generic_pla -quality_type = h1.0 +quality_type = h0.2 setting_version = 22 type = quality variant = Steel 0.8mm diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg similarity index 88% rename from resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.4.inst.cfg rename to resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg index 89e00edad70..b8fbabeec4e 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg @@ -8,7 +8,7 @@ material = generic_pla quality_type = h0.4 setting_version = 22 type = quality -variant = Steel 0.4mm +variant = Steel 0.8mm weight = 1 [values] diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg similarity index 90% rename from resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.8.inst.cfg rename to resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg index c936b25d822..ebf6084c4a1 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] material = generic_pla -quality_type = h0.8 +quality_type = h0.6 setting_version = 22 type = quality variant = Steel 0.8mm diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h1.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h1.2.inst.cfg deleted file mode 100644 index 5c1103190df..00000000000 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h1.2.inst.cfg +++ /dev/null @@ -1,14 +0,0 @@ -[general] -definition = dagoma_sigma_pro -name = Extra Coarse -version = 4 - -[metadata] -material = generic_pla -quality_type = h1.2 -setting_version = 22 -type = quality -variant = Steel 0.8mm -weight = 1 - -[values] From cda49f4d6f83571ce2510be11aabb9c37f985a15 Mon Sep 17 00:00:00 2001 From: 0r31 Date: Mon, 28 Aug 2023 19:28:47 +0200 Subject: [PATCH 024/765] Add preferred profile + change image used for uv mapping --- .../definitions/dagoma_sigma_pro.def.json | 5 ++++- .../dagoma_sigma_pro_dual.def.json | 5 ++++- resources/images/dagoma_sigma_pro.png | Bin 112233 -> 111788 bytes 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/resources/definitions/dagoma_sigma_pro.def.json b/resources/definitions/dagoma_sigma_pro.def.json index 7369a06564b..9e656d19e91 100644 --- a/resources/definitions/dagoma_sigma_pro.def.json +++ b/resources/definitions/dagoma_sigma_pro.def.json @@ -14,7 +14,10 @@ "has_machine_quality": true, "has_variants": true, "variants_name": "Nozzle", - "machine_extruder_trains": { "0": "dagoma_sigma_pro_extruder" } + "machine_extruder_trains": { "0": "dagoma_sigma_pro_extruder" }, + "preferred_quality_type": "h0.2", + "preferred_variant_name": "Brass 0.4mm", + "quality_definition": "dagoma_sigma_pro" }, "overrides": { diff --git a/resources/definitions/dagoma_sigma_pro_dual.def.json b/resources/definitions/dagoma_sigma_pro_dual.def.json index d3cf3502654..6d296dc3ecc 100644 --- a/resources/definitions/dagoma_sigma_pro_dual.def.json +++ b/resources/definitions/dagoma_sigma_pro_dual.def.json @@ -17,7 +17,10 @@ "machine_extruder_trains": { "0": "dagoma_sigma_pro_dual_extruder_right", "1": "dagoma_sigma_pro_dual_extruder_left" - } + }, + "preferred_quality_type": "h0.2", + "preferred_variant_name": "Brass 0.4mm", + "quality_definition": "dagoma_sigma_pro_dual" }, "overrides": { diff --git a/resources/images/dagoma_sigma_pro.png b/resources/images/dagoma_sigma_pro.png index b46c0cfb4b80a8aca556122a11ed4b34f9dbd875..900f334c17f27e6e63050866bcbbebe63e0c2f6c 100644 GIT binary patch literal 111788 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 z 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%0AxLhpN$a92m z)`^>*xWf8@*?NWQkTlT$BzvvD4Wji(JfKGG>f9i`3wNFdUS^aJJ5}-;W_+`n`S%iEPH=_b^j0b_9q)x)F0D|*zg z7>s@5E4YsFHlAg;x~uNL$r#2;_+)O{Ko`-Nywf&Ww{cR2^vU?m$3|z;Fc}S;+(rNn zXW4yQ#51ApyPBM{dskb)r~D~;tMH`@m-w-J$-I^;8*0Dhy@bf*@488_0XmSRD`1$H zt8hN!0?Ojz{=>%84Z|nUv={aIj01_H9DiJJ*yj{_4c?uXnJ*2?dp6p8&Y$x7ua*9% zD!aE;JC^9qZe}rzO8MImLuTHLU>%(G2GBs6m|k%3X?tovSM+R^N1TI_p;Jpw7Awsy zTg%so#?wUH8k_WXOvFjH_PeDUiE;8D$FJp?F-j{N2kQ8aA$Fv++~iV({T^j7W^mO? zlwS^Ez2|R4=;`6hz}B_7tr1r2b={7D3mnrD^}uc;Zqsq3pmtE8nRTg0#y7`Y`5=h9 zMkkc3yYB+wWMJ6R*?7?HD_3gm07}jsC6n zC+sZsZJXlaw$h*}heDY;1A?k+WNsLyWn{KqT`N-!p{D$PYKa3(fyAF@1u-_aJ4=&9&o;IAEV&voX2~;@KfutOc1uDSPzkM6 z+Q#`IJHyZD`3oba9vkt?KSkmc#CflHd5qZn3@d!);+I&{$T8m#$hY>_V}g|7=eWww z4Ts#es~~BdC7~-945c%eKpEyH`?t$fs5Wy=he@R>oV-#mV2;UA=5hmu8)f-tmxLV& zp3EIDynyNx$0Wh&>aGR@2XZrg`HCP~)*pdVXyFk6C>h{|2N2S0oYYg&AnGA^NbJ(9 zcKxk7c2L%S|MdKYlZ>#ucv_BTf6(U|!RCv|8$pC>v}kb|()3998{RqQH&P#5rPNdy zPPOuQ@%mCeM9uBM?o5oe-oFprv?9o;Gd#3ztYB`1J$z&>ZAIC0++b(Ku1HF{-L$J2Ds5#a2%Bd2X>w44FF789w^*kq zIKO`I@!UuOF@rFlmuBOvQ=gp-Y3lgRt$kIMKl?mYq`YNhZ~0jv*!2TMXa8`^S_Oyd$93u=YwG;@X{!IEuXfdv>Rg zt)A2QC%@S|_U_PM6QI`U+`0d>y2=hYb* zQhMRzyq0=e!yb*>S`TEHKBqH&jh)=@ZpzaVJ(clR&q(o~8vNF_ z>!7Wi;@?-4KSD$R@!uc-fX93TtnY#{IEB-&VcedaP#~g-ulyQjQKO4;Hp`z-etwbK zBQ(q3dPG%Ba$Jcm%J6Z2(riC52Z@;P*#>&lQwM>}`rSI$e>x@>!}N9Z(!?DYxDxr< zfW^w%_+$D#(=(~Vj2%-3Geilqru*jQ8IYiNwU;_`zIO8r_}^4n#KsBZitL^nH55=g z?SXpoz*1^5EnO5>aX>YuPAUJk+sG~%0j%gi|K`@Yv~t0d=k96^iwM^t?sgFGYr+PV z9$lx88Alh(uUyZWr{t6oe`a)}dQ@}SWM7yju>7rH&XVJZwu%T%pP_w7Mz@~-;H$lAYDDLp^O zMF!D7K6->WD2@Lq8GUyjZfy*XA%Z`rF7og5%%a_BI!@9(Q^ZFfL>0Q6L1#fZ}VTCHuiqt2d}qqNFru~U zoYi%+)94ZzhQy{>ez;dYp}tu5Jw?`f1ZqcxN%vyYblI2QkQE`HKGmKE#0=pzeGJGl z4cioNKjfHrA$nE_|yl-{IaXeq~Tg5J-nKIUf_^bYxzqjPLk6@o}of5Pk=ufEWJ)Q4TgS z2>5J%Ub*j=9Je>@y?XA{`%N)QuMrHisMl!{)$GE*l(x&5Rg4jj~-4EW2++bnd6I1QqySMvx8LWt= zvc3nrl#MU*_%f;fUgGlCzN%PE$}mr4bF({U}he}5&f-g}v=iSO@qjN5D7XFz6< zs!qjc@}(BW@2I-X`%?Cxs(0wq{iiy|nC)nYATwqRc=&Q9$~e78Q3d!dhAdx=+tmMW zwn=!!Amb(7=w!uFhM)~yL2Laov}B6+8+8V!&@>+G1!KMHyQ%T`$EOhfNQ=DH#_5Xt z^+or*`iaw~+s*H-|Co^oSr>ELm9CDy-(n9Cx?H4wS*OEeBVfs6h#oA#m|eg~anhIV zT||UbjG&~bI{?#AHMn`ci$0j42lCsA+gp9~0WN)QqHpmv4$FZ`@I>;z{gb<31jBLj`=X~$e zc-QCm_}zcL*8RHg`?|0Byss<#$KzuhGN(e&0{DO*xc6-|yU1H}5mM1bcCEoka~5nw zb>xpQY=@|FE;vdj^!SuhJF}3_9UM-XabzA2@T*W>=5eu8*;j2ZSQ&I3*d&wqa{^C{S z-19kls39^^Ou^9?LWxPA0>~4DBLCT;8P+PK&TLgsCNqAw!ko}mZgsp0gNu6&0`Ndv z3&XzPx}>NA(_26&hEEZ^`x@_lBFS?Ax;eEez`9vpvMayDk~x1PVv86v76)557ZU^W zlf4wJAvCWV$Glkk^rFvtO#>T@-oZY6bUR2LfQ-O_;N1^oir@#{2UZg_&INrkpQTFg zBWkU`sk9R~x=#`z9)M0aE$&)1g!5#@ipyto?%T2p!{5;8&=L@ZG`;JN>eQx;pC5#K zT@P|zyBQ^_d@eTg{cz!tVZ6^8Nn0uS5q6*nt@N7Eb~y?WCTgxg0YHi9?}W_yuf0t||(+V8Eh)a0H>#Jmubj^%0V{0ZO1SLN{TpR(~q zZe(!V*W=;#Cb}L}>DL=>`>B$*>uy#sub5j$UC;KhCa0RV8{CI3I+~)7R+Oye7EXDbntxq06HMJe*5~)(u#a6*r04AOsaR4Okv2Y0vR1z{OmB( zPie@n0(hAzO#ao9V=Oe!k;iJ38F5iw5y)VV zOfizXZ5{b|5C9DQyjB)X_6u#q6G3z~P&Cs~PfMyNY8)u8?>v%E@hW3@ zrvN4!lL$oQDOC@WjQUDrFyaPSgsRGkr5qbZp-UcH&78SD{Vj2ci$^JkbY*3Yo^%$`mGC zX3G;Rc8QYT^f&KpyDO4tcq`O(AlXGj1{Gh(q&HpXkPoCHY;8ZufQ8WQZD8SKO73(8dKCD?#3q4vmvY3%1zgDzsAIr~0lb{G4`C`_p&1M`_- zlC^UWr*v>p+&7XBQq(6h9#inqw`b{rG#T=Q=Zqyl_RpsjG;@i%>OjP%X8GW7sypwQ z`RkRXW{XpfcUbWgOse8QX_~`p%Rlw%Lbh6+P}S{uM|SSO-;;zC;)w@K(ZKd%>#IXd zpvBQlOgB>mUkSspn6R&D%%u0KN7U9{KNdM+T`S+22_kKx`0@OeYPrJM%=vC+N9m&1 z*Vg2$pS4pz7iLuL~4kjo2xpDS}OY z%k$F1S2t=w8XxbzQ@1Ti>|d&6Wzb{+;6lDV#Q?8#q`{{9ixFOFi)R4&U_7YK()hq` zqFBZ{qS((rvug~3q^ffzzPG--g3?E)y)2C%k2F{YNsvBB%NuIGQM>QmUS zp?d)QZT!n`626KXJ{qpuLjooz?A&+;kFAoDVF(vO zz@zIMfTX7Zo*B+ABB@>tX=-893VAd4wSRRnZOc{7OA0Y+1HIGYX!PX9k8;c7Z3>%T z+k@=bBKU(>2Ni&YI}5CSf!eY|2o?GVNuu?E=GnlK3>H$E9GC-)G4cnUHRBKadeOt% z9}SU{Vm%RpiZQ&?I8{UimeV>c7{j|~b^sJ%oxHgXTpAod#{;;hjw}ff<18RV_sTdp z!fR-XY8%OH;(nT_?LPcXMZ`eq2IsMljTcnj`4o>jyvm6r)uYE0bIr6g9G5CQ;qR;L_N^c!}`PYN+oj2j7?EK7dgGw8J}vMV7~; z?JfiTY3YUzmP@?BfQ4jRPo&qY^u7?|1;E(?mifWFvaxs)xbwyCmGiHyh#SJ#EW?H! z2d{|4!M<$oQbUSLdb0pf&wf)b+xvQfcugsjI7YGxk-l6wh1K)J$yS{8YwH;39f(tQk&NWc}~ z*}LyHJ9m?a8nrq5@YK|f(0K-$R~$RNj|Pg^gJu}gH2BW15nbmn#BkQDNU9*m#hY;w zkx!)bSuj;bUL?l9Sd+EKa!A)>Q<-%8cIuZ`JXc6#AK9t{%VkTXTjjCBeg@{_F$|TgY&&7bmt`-tw_G~medSH`}%J3nP1I!=bM^i#NZA9*ek)S1@&%= zfzY|uW0o~Y7vOqcr7gpJIC(GN$%8(kSXfT@xJHLtZ>F#q=CZB%v^Z2Qv0q>7uo6+q zXU@)!cUntDT7H^2B00Db!H!M!36?@M*-aGIGY!wkd9nnzJ;C(s>=&X%U#f~+XH2_P zeVP<BtJ)mIq>O3jWV*woY<+h$M;zwK}^VT;e#24Zc%Kn(z3m42QSX zW|Gz`1qaDc=)3X0s5_kKqbqqGK7kR9JvbMk`ZKrs+I`puw`c$tK$g%$q5vvtL8{A2i3mO19GZ#{7UnB?Uop6<&Cdxls(oTflDF_RjR(&j zfe&oWzyfWjMp)g@)J?^>ag*p4FO)Jd$`t8fo;Ip14eCL%D;Q^qUdaty(r=+EZFdbm zgz0&Q*P@1WsEJ$ld5en>)9#VaIS~&wr5Ou_zLjD2b=b)*MTuU)TKD50b?H@#xG-Pq zUkOrV@dQoR*m?3dHzhtCzL9Dm9Q=;MrF-km_KsxJhvU*)9|ZzV)&OCDh?g>Rap;h} z*wnP)CiQ@{oR>9u7ZIxw4hk|u1O@+K4(n^ab5t+g)N2nZovtXjo&Nr|edK*(>mCwy zGjTak`XQH9=ZR~LwqXV3(g>wmXtcA4L6}@w6ai(~Ex0U31+(q*DwbmWGA>?#TG;aI z)ir!ER_QvepI!Oj=J44wXP0j88<5tC>czCE*PTsF#=OxEM|1IQwARsMTRZ05wHB`2 zKl?tCdn$}|Enpg}_+YBh0_H+lX{6!X=OL0hcxG~^%|7bpL8=Mf#`xZBg2MXVCo=Km z;vKv1gTYA>J4|F(*JR>(DWA1Z6ho#JYfUu$dNL@|ti7H$=ug2l9AhzYNlHYA=S%Vs zpx!aky&m0es8w4#CNk0P92&f_M377l{Mu69>X*^qXkNdL(QxdgwblsMQMp4#U}*u)hcf@z@h@%lk1G{1FF+neQ_Li;>fdU)}aPk}K^ zzx(!XiY*W5_c6$}yS*LOcoG2YM||hv`;WhSyg;WJF#k4=qkb>bX+?63z~p2kzuB0! z-pUUT**Uh{3B>ez`=lPQ?JtVSRW40-dUU6v(>h7soga&wvtQ3Ii`J> z@W%TOocuWahU}V12ts8m?YyC0#G>NJ*KB6R@J6i=K@lJM6hQ-$1dOpY(}H()6to-* zxSJF(yR12+neqm#-!85$=eDw64JXMeZCM%oMv^7lfKU>DcwVE8begATkJLj2IhR!=63q|F4;z1Mb!eM<6Z(MiX?H>RVNk=yNClQ&y1$jEE_6*@M}si4o@;)$ zXkHJNjyBWFa|eSw{{o5QRyMVsoQpR~wKGN^?svxBz$pWjOOun>Wd^eaqR7u@?X_!L z9X7YZYyZ&`0tPJQr>VO_;>cE$A4pA(zD<&>W5W-2Oxg`v6qgPbXO1$fwopUo^U6yz&>@3AJXBN$}aZg|Irnxc-RzdAE2Zz^gQPAQa|9jA9gAot5o{MjzHe?B{n>yWyJ=<BFn=+RFfqw>iWAg57>gfzgW6gMR51R=WBb<&dG6K;Sk>In%t>a3Y^187B+fZ zW_DIddFS6+paqg1=_TjrMXFt~HY5or`Gl%Pcq^+#W`w&wMALL3TP~oT)7mT1a7E9z z+XbH^Vhewe#EHJUh9uWrV0(E|1x9k4xW3_wU7b#QElUONK`v_eQhm@`iz)b2KF+q4N*a}fge zmuLop{cUuetv@%koNYnSS=Zk@HFq_IPow99bM?l=e%nz&1Ghqyf3S2oGwSoc#asQ$ zt<3S{AV;juU)PNeeCGg*7`dY0OKzETJe_OL<+yi zx`%rk+CgIvvbAJBriyJ+co(t$#gh#Y{-|cHcYRmkbNs2D)^{UdW4*6>v3q{YU$9u8fD(4ENHM4^(k#D3djIFO45&KU|5V<-81ws(!p3 z0U6e=vATG*vPK{kEMy4}_e&>ySF|0+JsbJ7ZQ^Ci&d`yy%=s4AJ;f*M<9y3R>9 zcLeA+qb!_9a#$>Q%18%3EF9o6BY8~>5%lTs4Qzh$JRdm_r#VElpoNC_q;K0t_IU|i z+Kl0^&V4bV3TqYt&tWNC2OATP-dW|1nZ-}kG^|mUinZZ){YQ(tkx~h@iRy@Rr&N>C5R%^P zkSQ9kuM*)`(TFKh=+a__GNyXkMI6~B@5-(PC9*r7AW>26mM=wvo# zq$6~U63Hm&Lq4rPkm)};;JTBTyMDJwXypyJGfUS5)rwHyF+p_Ra!~m}9@E0vCh3|V z^?Zdd&J?L&R{3UV&$h%qvo=#7_33WIe^-7ihE`XBHI_Detjx|(2!bV*p6Wp+?Er+1?s>i<(dXNf>l9kD%~fkqF8qrc5guHXwKr!L z7+U}p#60}akRX)<)gUNOg6yI|<<|O(?@=pVPwL zC9GcGo+FF|$C&Q4$L#JslHbwKMlOfkR7s<64UDM`mt4&hT5jUJdJtubCPh4Q)E}9; z9;LKjN!T&@DcX*Qqd{~9;aOmDb(mXpWPquF7DdXfQ_F-)?t> z-=wyI3~Km^JG#Oc`UokDaL#9Di>MmOovC&#{%|y4`k8UXh!F=~!>b#KNgR?If5@Qv zYrl#0j3*ZdZx;ui_n+Kd>59L3T;8okm5OZN>Zpf`_0v*MYlwF#$VuB6-V^tHG;2vh z*md$ovVxbdF}&^I*%|PI)>JcW5nYU@V@ltdJbL-VtfC#>lzW==T+HENq=+XH#l?n< zdvkszs61tbmY!6o3_TX^mK*CFUQGqadejNj#_3^-&ILSWh=J~Q-CYBX*rk_oJf{i0 zMgHfv8|of!xV#ZsOvU2MTOBe^_V%zJtdvFB3f%(o7!y~iyk!Xm43j;{s^~+AhaiR^ zLxyHfy%DA4QurCh!hTWO#t0kuzD(;9O-poPDc>=QHp>k}pN+~pJLkS{a7Am=X|3Vx z1qI~i#o<803*e@BFUAaoh%w&^+*{*NI0S9QF%57*&|(->)f(l=cO$s@i9ETb+La$Q zaDTE&T6+A&l?6=vkW|bDVZ(dlSg-khN7{RN*)m?|2M*4)U+&eC_DZ2oDlVvPr9H*; znSVeWpEhT0f9b{RRG;x#O;qE`NMpo1p}Lf~htt>3BIx&cPF``0piVPzGXsMD1@D#o z<5&gj2uHWne8T-w^x|cm{P0z;ajf|Wn%cEZECIfE5emssH%ikd3O-t1_D@3>b@U_$ z0sVe)-^Oe!~u#-BO+5FQPjw7v7gQRv(0^s%7j_yH!=&?PG^IV5r`t>_5n1C$S9 zn^TVkb{w6+HOs)E@0o3H`TEV$VMUeDfoK)w5&gagaAjf5l8uSt?CkZ+=DOCfm;|o8 z@DoU`$0loIR2sW^;oL#l zR3JuT;=(0U`qSyGX1Fw>22kNf<#4+u?|>w$NRy+4tLTh~k3nT&8taO*ZcD??U|O}P zKp&&EA%P`(J;CakPS82DVa~c-z2MXhwyNV_9H!W_fj~yykCl+u9buvyH|b#2-!D&JSGjp18NSYh}>wt+ihBO?lgeEX=1%hdCH z90zS9``y7Vqoi95zye?j8rcqTUk`LJMd02 z_DW0nFdlFBdcsZV5DfjrTqu2@;J4PUxv-DxQ$7*hayvhx&<10U7a6>OH1*F%k$xOpP_TZOnNJ-n+U6PA0$q?S*&J7j)bbBv*< zBcTI)`xK zolrQM6Blo$)x9Co>_rRNnqSbQ*SM$8Nea|$EXI48O zk}aZ!V?0@VP7Q|?!8r#|v2Y*s$E~Q)7me;)?9M4A1_mMsBNYL(u>x?;NIv^e6&su zwSS9e>|TUY7uh6_x9dS^{*~n0LnWV_t*QE&P;FD;5`jYK1$nC!XyL<@S;f+KOpd4a ziHCAttw-`w3&I1hRb@zCpb*`XMBc>lIxs(;ZtMU`xuZQMHJCnTWH8Tf&7O zZWsy$iSKuC1PBx=$st52s0PD%6|U5Ew>9YBKikeo_7sVb&Ir);%+;8ty(Pm`!x#Oo zbOm`OPkGRWp0QAwWs+q|9u@wj{lbs$;g7A#3s$v}`%fKqyN^Jtw~72>@v+jA1boET z=7xc+j^?%y)#Myonfm!OUojT^) zQ`;Xo+`uLhoPiwpX-#Ij@p}ynrtvF~2Y>kx{34Fp?KbjGkU+4@;|0@c6c;&tW7_x= zKuBAgy;d_w*_!3^*nLfe$_@a`ekTtB+`nX_TPXY7Ly;)o9jo3-XFB`@Rub*o@g_=8 zj$pSfNr;H=KdBKf`7GHn1+KWC762D`F}L@euS2Jvxm>75y8Eun6L0>DOf|esxz_ny zOZ^@)D>!3g_^{OEDfD6X6~8ZEjSUH5@mkxmB|?Q!-01gck0Fg|N+5)ct=5*ySG6F! zO7E${a%!j{+$Xa@U_eb%8R^nmbS`*)xJgn%vX<~}#J_kvap-!_B>q!yyP&N9X<#`t zi(lGGn+;$5fKqw{FA8+y-#x15VsiVy$r!FmTlqw0Sr6Hk(YUsU&LF+Q22QB1FwM

%7dBFhuGE`NI_ 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 literal 112233 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 Date: Tue, 29 Aug 2023 14:11:11 +0200 Subject: [PATCH 025/765] Add custom settings for 0.1 layer height --- ...goma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg | 61 ++++++++++++++++++ ...sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg | 62 +++++++++++++++++++ 2 files changed, 123 insertions(+) diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg index dc662ba1a26..f0a7e5dbde6 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg @@ -12,3 +12,64 @@ variant = Brass 0.4mm weight = 1 [values] +adhesion_type = brim +bridge_settings_enabled = True +brim_width = 2 +coasting_enable = True +coasting_volume = 0.06 +cool_fan_full_layer = 5 +cool_min_layer_time = 7 +cool_min_temperature = 195 +infill_material_flow = 105 +infill_sparse_density = 15 +material_final_print_temperature = 196 +material_flow_layer_0 = 100 +material_initial_print_temperature = 196 +material_print_temperature = 196 +material_print_temperature_layer_0 = 196 +material_standby_temperature = 195 +ooze_shield_enabled = False +prime_tower_brim_enable = True +prime_tower_enable = True +prime_tower_min_volume = 44 +prime_tower_position_x = 12.5 +prime_tower_position_y = 65 +prime_tower_size = 25 +prime_tower_wipe_enabled = False +retraction_amount = 3.0 +retraction_combing = infill +retraction_hop = 0.4 +retraction_hop_after_extruder_switch_height = 0 +retraction_hop_enabled = True +retraction_prime_speed = 45 +retraction_retract_speed = 60 +retraction_speed = 80 +smooth_spiralized_contours = False +speed_infill = 80 +speed_layer_0 = 22 +speed_prime_tower = 70 +speed_print = 35 +speed_slowdown_layers = 3 +speed_topbottom = 35 +speed_travel = 180 +speed_travel_layer_0 = 70 +speed_wall_0 = 25 +speed_wall_x = 35.0 +speed_z_hop = 120 +support_enable = False +support_tree_angle = 55 +support_tree_top_rate = =30 if support_roof_enable else 10 +support_structure = tree +switch_extruder_extra_prime_amount = 0 +switch_extruder_prime_speed = 20 +switch_extruder_retraction_amount = 80 +switch_extruder_retraction_speed = =switch_extruder_retraction_speeds +switch_extruder_retraction_speeds = 80 +travel_avoid_distance = 2.0 +travel_avoid_other_parts = False +travel_avoid_supports = True +wall_0_material_flow = =wall_material_flow +wall_0_material_flow_layer_0 = 85 +wall_thickness = 0.8 +wall_transition_length = 0.4 +wall_x_material_flow_layer_0 = 90 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg index f9e20a0011d..19e1adcd1cd 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg @@ -12,3 +12,65 @@ variant = Brass 0.4mm weight = 1 [values] +adhesion_type = brim +bridge_settings_enabled = True +brim_width = 2 +coasting_enable = True +coasting_volume = 0.1 +cool_fan_full_layer = 5 +cool_min_layer_time = 7 +cool_min_temperature = 195 +infill_material_flow = 105 +infill_sparse_density = 15 +material_final_print_temperature = 196 +material_flow_layer_0 = 100 +material_initial_print_temperature = 196 +material_print_temperature = 196 +material_print_temperature_layer_0 = 196 +material_standby_temperature = 196 +ooze_shield_enabled = False +prime_tower_brim_enable = True +prime_tower_enable = True +prime_tower_min_volume = 24 +prime_tower_position_x = 12.5 +prime_tower_position_y = 65 +prime_tower_size = 25 +prime_tower_wipe_enabled = True +retraction_amount = 10 +retraction_combing = infill +retraction_extrusion_window = 10.0 +retraction_hop = 0.4 +retraction_hop_after_extruder_switch_height = 0 +retraction_hop_enabled = True +retraction_prime_speed = 60 +retraction_retract_speed = 90 +retraction_speed = 80 +smooth_spiralized_contours = False +speed_infill = 80 +speed_layer_0 = 22 +speed_prime_tower = 70 +speed_print = 35 +speed_slowdown_layers = 3 +speed_topbottom = 35 +speed_travel = 180 +speed_travel_layer_0 = 70 +speed_wall_0 = 25 +speed_wall_x = 35.0 +speed_z_hop = 120 +support_enable = False +support_structure = tree +support_tree_angle = 55 +support_tree_top_rate = =30 if support_roof_enable else 10 +switch_extruder_extra_prime_amount = 0 +switch_extruder_prime_speed = 20 +switch_extruder_retraction_amount = 0 +switch_extruder_retraction_speed = =switch_extruder_retraction_speeds +switch_extruder_retraction_speeds = 75 +travel_avoid_distance = 2.0 +travel_avoid_other_parts = False +travel_avoid_supports = True +wall_0_material_flow = =wall_material_flow +wall_0_material_flow_layer_0 = 85 +wall_thickness = 1.2 +wall_transition_length = 0.4 +wall_x_material_flow_layer_0 = 90 From 70947dbb205c5f372e9986267c1cce1b0889f85f Mon Sep 17 00:00:00 2001 From: 0r31 Date: Tue, 29 Aug 2023 14:26:17 +0200 Subject: [PATCH 026/765] Change build plate texture --- resources/images/dagoma_sigma_pro.png | Bin 111788 -> 114025 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/resources/images/dagoma_sigma_pro.png b/resources/images/dagoma_sigma_pro.png index 900f334c17f27e6e63050866bcbbebe63e0c2f6c..26481a350522daab271faab2a9a77ed5f3857088 100644 GIT binary patch literal 114025 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 K$NM2EjP);Wu(z@R literal 111788 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 z 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%0AxLhpN$a92m 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

%7dBFhuGE`NI_ zZqP}5ORw<7xV$yFAo}p_`N@U+@F3-#xz2Xlmnlxe@fTXOU;3y)4ZF|TMa-s}adL{YWJT3C@0D7t?cAiRIp6`oi)V63 zto&#>D=yu@s-C(mt<(5XT^H75vb=>*X(=v^eg%(ifulQx>rp2eob@Z=(XT2W@2A4i z5DdpoKW7DNtQCDHjvU$OS`SiC8uPN-5F>#?GKfTBKu6-uaHDba>^X z@^1XDc~|$|d)xk#j&C;)GDpnob_UBSW32ZcZ!=dM?!_O5Ll2xKSwEsP;q}~cp0r5a zD76O<{NVm4t3jS#TW4M5gA}gGb5o-_Dm=wM27@!&jf}9VZao}ICP^+SM1Sa50jQYJ zF=2K!0)m>qq*bLnIzbmceRCVJvUBx6!y zn7p=-ZI>N=v$;fn$U6_EBf8&22kd{ubyPeW-Vp1{UpZKw4R1?8n)DO^2%_Y)j$i_*Bxk;%^L7-p5TB;N<=U5r`YYKvvC172~d3>;YB+w8s0_6JK$I58~#-RyZEbL7NA}!6r?d$>hHPnQJ z!%kAcyP>`n`U%vbUzf!fAV*l}+-}H97bV|f`tt<^7@HW9;v!c-9WG+8&OX0jPrHkZ z(^D)8=m8bDX#W*$^)2KOJ{p&+ry+x+?+3wypBRXgzq zMfckU$+9x}^~Cbl#2apXtoDb{u;C+v!J~^r{h3b|h8zrWC4YWpH;|_X*fj{z*VhL{ z%4+V}Hz>13Ajyw0Yi*Jt$@`ivJ$WHkr)PK>mTpQX3)BzyoMV?#ypae(7;oyL*)Fe{ zY#7e;AzB&n@e&eu25hkuHYjO1Rf?F3ySgp3!P4?IIy~>(!wTRT8PKajk(SHDLJ}BZ zMx!pVhqXl%Swi!yBUX6swGS}tW5UDD-3nsGQGwN{{_BG!K2=t34qoGdhQ@G1az(T> z)0h)B(;xnp+gPAkXAtKAJDpSd!U&feehjun|Mem=l_W&)8cW(pfc3}+5>D+8Bq81C zb&^;zb`UN0V)Euuz=y9J-*aGATzH6DyefjF^@N|pBc3L$v zOu$iOU%b9heI^-nYBQ$b32y@g#UZ!OJDV)mVjb=6{R9_RFYxG6png(b{>Y};pk`hi z+HG7!Z7`m>K=y|2xhV8Ko)jYu98zT!xQOJq$2OYl+oM|^d5uqBPf4df)4FT^;QW2X z1*hZ4kZMz0ZtY}AxZ3THJt$&eT7p;|ReEK!iqFVIgU%wvqWX^!ZE>qJ zwaLMNi>%%UZ1Xkj3NmPN+;;`1pLVixnd?5&3lv&srsPxhib|h(v#){IRla(TZ^77g z??xoA!0&IS_I+W<#A5slfeIflfGo+LFbR&^ znmAYs#o=$@TUSA$iDLd#!rfvbI?GgV`_lKy`~izh06`Hr_z*Ml>`}3%V~Pg!c(6JB z20|;WG0QDy0c8n&fc${3#I9v+od#2yz3RrGlvPJJkv7y`71$NGJ+UwMrQp>sYalm#?)!xNVpBOe8Q5~e=_flFFlm*Mvl3)iqjYA|zlJ+Y zI%}%8ED`rlUI5ZC?>qVhJ_D}%*8U_g(U0$!wjZ{9)ozs$F=cF~^7xgLNVdUvs5$+0 zem=HSIA2)c-kV9@i%7P3B>9`FaoJIh=sp^rW6g?{IhUV*zM*hI4C=kjJ1v%6%r67}kfpqay z$laTnS@A#yJ-Wjm?Q;BUniNw$vz={v_kN}0qzvGSZ-D&iPII_Cm|I$`+ZP{woM`VR zq}>YC0GV|>v}6zR?ifF+466!V+F;i3)#kqDmWb-BycGb%b&atx!6Fhl7D^o)37O-Htc_KL&`2KOT1m(!&wqZTcWV>-YY$g!>*GZurC zDmT0VIJRGp3a@{rKe)z@ju;F^C-l30UWqLz)FQIpE6le7g4Tr(xIylx;2##1#2{_? z7!a%m@(ly$WgHK@R+q3yNP2u%@^k!Fw|}tlV$n+7Hj%=b)4yM;`QbYZIgnGfu`Cri zKzZSkDHoA2ve(my&~P+s4E5_)56>7BSN|>B1tIh?B+ax8GWByMt|%;^ZOnJ>)NYU$ z|4XB#WGVCf1e8b(az~&Y4 zJkG02b5cy2hqiCWOh|erJS;9% zT29UGmxs4K*}RECPh&ot=YtkgDUTQU))?CE47bQ%AK{2WQ?uNSu-lLhw@oy$v7Qrn0tGH)ZbS#vpUyil+H^h8Mvd5a=LxrW9KUR+CnQ-P z(CE?r%H+zd>?tk};13!~Z1zqkoAfzL^xep?)IY{ty!YkN`5W~1z!CTnU(=p-=`c@u*|i- z9>eF}6d@oaXb;R%Ij@P`?DA&6478R$`|TgWdXSyCE#aWp#y0Sqn0=uMzJ-sYbHZn% zu>1;Z%cXs4T(ctH?}cxM!WeFTUZ0v-(cuZTWvoCn#tproQ7x*$F8c--r}aQ6BXG(k z3gbK0HIvri7)F9MHFs%!%RbPrIek6S{*&cis~}s%?qo`I%gz}0uB7VNj|81TkqH4( z%s@a1S3QkqAue-Idt~nVQX9@pJ`puvvp@vbqVmLvXwE_gGWkrcfj*VB98>*?V^LKL znq-yLSX|UPRZa32Iy2nc^2>l71Z~cUxK^9Bq{XzPk4Xhy20jinLBoue6De|}V|&a+ zQ$2G8c;U~>%OTh=OYu@)(0ZI#H05uOppHoYlJ$=1mHpj_`S{9}o#n7#AiRiwEx{4N z{irv`jsHsW6$P>Hl`{zBeVs=zte2@Hp)idvcwtEJN1HTi>T}qFqjT*91Qkfh0mdyL zn56=R%(BwniIS8WJ|`kI8e27J$b8j&oVcz0S1M!%j3p0@wn+wpE8eTk&%H9mehb|Z z3Dl-#IY3Jl-e<#?qaE)^A}I)!lqWj97L(= z*Ie;sW)EJYFYn}r-HouvPdLjkT{<|zH(YE_9;{rRy{avDncDLtG9+WUE${xP%WkK5 z_5$7HOg}&Iq@UA-DcSct207xHZ~4z|%zWE~dJ6!!toQtyh3!eY&&lwdGxkYtlsjWT zKIao2$x?rWVXzA?atIEusdbw}?8yT&^qSP>Z9m@qk`QE@;$Sl@MDXvZ4`NnKDx!`w z(50~JhypSB%&=*X(a=r4n-7RCF|&)@L&>W+-n}U1CDYyU%%si>`SKFt2W1&YF$9M; zOa11RlNk4d9|K24Ramc>7>Kxb+vNa_IRfd3ruITf%b3z3kGQgrR zZExGy3>e0B6B-QTCid~=6j1tGONeIzvXxr%GNom_pi5h+v8YL?mRZB#W0tlEbCXvc zmp!Kr)XNs}Be|u-V1K!_v}Mv0p8*WNro2$kS!Ieog|h4J=nmZ^=*u%tOR3(rAHREV z&fG_25p$px^s=Sl4)S#9&e5uV7bpCunO)mdthz}P@Ru`_N{;|G_31I2MlM50NV7hFkG;=U?Mltp0d*Z5?d>oK-Km=JEzzmU4|gb1#9jR8YD0 zN|a&QMBgr81DJ%=z=;)s+qGw%Ng%tN7vIU4wOHAY8R`zc5|{{@8F9jUkFh@7?;BA_ z4)h|xDiZJ=ZrACEntfW)O$2agn84=jY1sp(ievS|1n*IbDBc(jX>`y!YW}TbGFZf% z-GDs6;NE#n8W&a0(|airM>&V&$jg)5p0rT!6l@as8q;zf_qwu0cpf5<V#qOFoit~(FBau;K z_0un%dKhL9OW}^j;Rhfr|qJ{uR5IobW`5A&jJmS@AeN?@7W#fqSghV?q0c_Vxj8nh{EE<4=+%N{hHw z2Oq4Qa;tAHk-P1$0=@O8SB>KRwo*wFXvB={&7+^^#M{(#?g8hq2EtFzS)gWO_JhZgs1v$gR=L*L<`*_y9S&iEI0kiOLMTt(@_*S89|OWq zIQ-`TqK%N{vtPgD`*qCe7lwv@=7(H?sVM@I22u2W<1(VsS-ET;B;`NdRn^bLOwe40 zqY2HB-V2vKu_Tm(o=Q!u5rv(~je(;50|E5aLB(Qs>@UD-SZkTXA&QZHA zhD3%5Mn?!fV7OEZm1o~OEQln3z+$dXL=eSz__ekX)iuYR3!8*Kp|(lNZs{6J8=$2N~A_QQ?c)ur_eW zqr89#cyaiq4aMChDD_T%6s**zbv5hFYb@(0s+_A*h#Gx77Eyw{7C6 z^L~TUL7=jtEfX>Xc=)=@hiG+o=Yk1sgs4@z{F8HqSTyBRF9iud6|VDEE)<~wx+JJ@ zxFX+FHPdj_vNH6-_>f6+ee_+w31@4y3tv$SE%MQ51-MX!dLqof`Z{ioNF&+n&7Phq z;m;Ap=$}LbN>7Ab@inacxjxg*wX64>=0KK3@gW8>V^bEC(IJw&*w@uSXYEV)-e8b} zJC468F2X6@4F$r0pO&DD%f)9zO;um7yhh8_vcmqAX5iinzV7i)xlK&(!f>#G%sdTb z)TdlSp|rV@CsyVIg4W2N;4dG_V?rb^1hzBX3-M?aDZ&%rlPvTMQc3wugaP)emrcZ# zl@4Oj(qQd9w+2ZnD^6&cn`%&0uDK}05Dkz~Jq4omR%T9!H#|gey)sQp+Psw+{+zHT z!=mW$5RN|IECPFxjb>`Qu0g{@a#u9>`FHfEN4_Wr-!$pq2%|iWb3UfgpC0k;>r8EU=MCt;6x}!-??5tX~7Ng_eCX&r~ZTAoyM)f$TW(k(tBRIob3O=49&Uf`y(j>Gn z27^%l1b2{vfUfs`d~p==1}hrH?|Gj7*yE65P93+t?UEkL$rkxdxtp@wREE`isqSps z=GaJ+pB`c~s{F(OU~s{63ak@^ujQV884KDPyPk8HTArVq-oU4-Zjvpqw*xwUy66c~ z<6Oy1E9-eZiuqf7O6l4MFId;@3(!6?^#YcY&GO+Z6eT?=Wi!$j-%t4u?^$vj!h0B! zvs^jC@nilAZhULlO#hlsO~i}XqyqH!(eoli6c}&!)9*$CkOvC8y#{!tj`^&e(0NM9 zBe#!G`ehz}N)k5+g6k;CO@NruvNnEwhP%5RFGRTMZniatHD9$Pb!5c?;ztvJ2LBQ; zdd`+@#vi^Aa{HVu8&ttf$ z53kBmu|qAZ$b+u6sy6xShhDw4IdaL3g?PQ!Kmg)hV*8NR2bR zh)*}%PDyPRu1}tQqSV6ttvF`KXzD%Ia;`4R{tySg_v8?kUtWb0C*qv?6lLX>O$UvpP6w@05qlTI1^@n8u`$%NRa3p(yIJAsL%~Cd+GxV+C+bBl>WCy zp78*w8TI=<~_sQgXTyiQD|-;#osUwXt$JmYSQnYZcY}9~sVk6L z8eT&efvQf#;V6YwABoi-_7PQ{((lF3ciPip6$ zP*b+xM-EDMYSW*C{0r~5 z$QH9Z*HQfKRhpFigFuTrTz2M_Qjb#Gx=u{$R({?Y0ccl%p{rj3=?dfo*m@*tC5Bh9 zbMmQ`2hEA3ikPbMwddwHr1xuqNd?-FgadUy#BcrBLg#*e6VKQ3flD^g>fpvgj`x(^ zP;&6D1x5k8Xg~0C8HjH{kYZOM3>tkZuPvD@z@`a;kH1<2;z+4%+3vc1HzSm!o%ZLl zqFh1J_lxe({4xXZSNv`XXr;JZ9T3Z|dh_(Z0@QT-@8^&3z8mNJ!j8%V+!A z?3WVt=SEu+%gZgG_Btv3{YpZ(l2>k;P+FrOs4EPthu=T6?!9kuFs%Ek6K~>vz-m$XT;tTpvK`_;Y1OoOA&e^mog#bi4WV ztI<0@SP13)kUv)~N*{JE(K0~NpTv&*H?bOs_9eDX!y(}t6zSP5<$s=qG@73#rrsn~ zd{kQXgowlY)hxIu6H_nkuAh9E50&qD0jSXLcHZ)RXSWV4#1H;=MlWY~YF&ecJWSE1 z{qq>l2k=!-GNN73_&;-mdN3Wj)GZA@%ZLESA%C@y4?Ir?StKBj*SUv5-tb>d<8u2# zfeDTq1tjI~=Bcklk$!1p?BBj=OQj#J&v??Blh^?q$Db!51X|I+cK)!U94zF|H4831 zgWPY26)9%_mPcyU;mj99{3eordSWPX4R|`j(zFT#MUmu9ZV;gWznbDXN|w~!0AFeq zQpKLFiN8gCLg3kv-R`^X#}Lqe4huJ}hfXCV(M6REhrTU3o! zR2mTYX-0rL^#AFB{QU|_xqW_fOfV;8IPrG~t%-Qw&px#$Y%hP|^0nZ?3 zvOCYOJH&Gzf5|b{;b~W5Py8dq1rQnfpNUBXb-5(WS-{716n^T}zxzj6KJEHG*KrBX zNJKX5jR2DWkGH5*luNyzXVfVt)k*jr3IFw0h-j9E)~oNBCLWUX;eROQ`4Q2J#WNig zk;ftF*t*mn@xOzye){2Jtk4NzHONl>f96(?R`lY=?j4d$;<1t(=uhV%df6J?PW5^X zpo_Uu22~=|^Hdz$TQY% zM`!scqE13dJ^xaM9&M@A1AyVwB~vW>r~l{Ra@p=3r886^e%upk|B+aOlpd2UkbXhi z+sc2rL#ycfsm+a9*R2p`@D7j>m!~O1j@r7U{j&*Ahc0!2Ke}vX2rV3$J^g1%p~Gq;$$18l zpPr@L6P(34k@Q192Jf8{T8JEyz5lsWq)Uce$^$e-_|KUJEYeH-9QYXvf~;@sZuTz@lRQ zN1Rt=6=*7$v*;TUSI|NWWUT(xEaXB9x?TnNYFJZ%`J!p-|Bs+w=O_)$y4K6)fcmIC zTa+8m|4;(7c-1I*ZvBPGi{rmwM~$_&{(P>%kLd(uV)F4=BneOFw${HIiGyBiPVA~S zj~IY&Pe}X~G6nWeOTbn?$5TP7^FLgpz~O00o;6_J|MFu^UMs+3c$MDjha8#Z{%;Mt zZ-Hkg87%;O;6QI$?K%pLSI31-fJVo#S&I! z`7;dHYVeMPxghbzT-gJwzf4Z5h0|msp#H}3zp7Eg{f|M1Ujv>hVRGYrDUg#Ce?IeG zCC3KrvJzh15kSBNaK%42T+y+4yy6E8Xlh6<{$J|JWxnO0mWt;?&_jOz%aA^E>J$6T zaL9r5|JLr)dL}Bql}1`XR9KG8^8Ghx1AaD+TaIc5DirCxE5Fb}zxqxe(~HYVD~>Hd z1I5MW|LQ(+Aq}+)6 zk1j&_yWDs0e1HRSwC}#L_Dlc;9HYOQV%rhX3pg-nQzUUF>>GYxhvuteUjdI3T*n^b z`IiBwXHv2xT>*PI@4v03IGjxjNHv=j399aN{7YNCx}mhht|{O&|DUc^kCckxVzcuu zzW`l3xhVbR%hkNrwl*6t!V&CH`@hUsTkm4u)GU@c-XeqH}}NhJb~h zHa4W^0SA!%M>TVf7ZvT9;bRa6<$zx~eZBsd%;HYox^;A>gFzT50V~S^x5fVavt1#m z;%yB)*qy*P`@5B!n&d)@*tyww1)Bjj+dr3krFmJ!l1oJyL_YjKlUzQ?$tqT|pm4LF zBz@)9zaq0&G}Nindwu3mq7Oy-#J#^HUasHXT3$t}gHZrRm0+h3A?xnK9S>0Z;pw%@ zN(kV}_|vyvPg`4_H^y;moPj+4m$J`MCME!xNe&Wm zeKgVeZ!d>2;3A?o^$Vcb9^XHt4RuMrZ}P|`j+nTn`^t*H zItK+=%x+nL3%=)V4(I%2>6Gqif9OroDx0>`sa}*~fEGISKl{fHr9?TaQ!o4T&Qj_> zW3*9cNeJC-XVeh*xmRo=Xf`?&ej4gOd%U1=%be-N>;`{ltVS8Bj*r&gy_y8KHhSX}3;d#j&pdTW=1=|7QJj+g-gDryzG0(3 zYrU|bN5aFV;hy>5Kmw153Ra--3=51vAD+GPM`(nMs%TWn zsZ^d56%7?uu}gg}C9M*IxW|0HQj8EiTth<=0K!(fd!{&7{MX;7 z)7DM9*wmc~mL6N_!Rd`&@bsjC#_K>hRp@s()wMKV!4p}DZQLIi9jy%b8oku(4bBq$ zdj0>n`tEot`~Uw7-D&Bxq|DMCSy8ewj)qi-%p#*9BO@W(QQc8y-GuDyWE98DsAOdC zajX!>-i~pcs;^k+T;0_KkRH>7`EtNhwYfIpS&ENn0`&e&)hdk*l@|e>TH1UfBoaDZKXCDIHxo6V~77 z)be%U{K2=uGF|GT_NmB$-6a2#w}0MdRN%}zH-^pLx&BW9sI>&C=HEXvTHSgxm;mF9 zu_AHw1VH8 zS2R%F+_Eo~pck01Q}s(^TP{^S^MpFO7_X3%%MFW4M1xmwTpOP+zZU(Aq81I-`>9Y- z)rNnsJ$Cl585Vs_W&=Z@vRF7N&dR&nQ1r0==*|VN+C<7ibaQ+F5}MAG zLA7ypE$oX9ua{_1OJk6~4fPIOg8Iv%;URTWSWCK?YXhFst5DZ1H~T5zWZ$xWRNq>e zxM%LrPKSF?(WR`b*99GC{9WXq6qu6&HQ$~Eqa*jp)uL?H9zxJHxn;#C?hI{RX=tv$ z?`7!hV_)Q_Eb!&9FEVAlcY zLqxVn!l2e!k;pZ%M0^~tlHKwT(ja`_By!%xhsE-$9whn?we&$Ue8t1|%@g1By$I`z zyXND568H4v97Ts$}H;ZHhEPTa~5xizlra8G9+#>f1#nHes8*Wu_J2) zZ=8>u>-e11>DuvRQk>A(L%FnD4roIUSIuolLPjT^%kug!YS<4`g6%HK?JTpB#!+k% z0CO5SL$Ef)cxMH!2(_(Y^CmawLdl0K^k(k|lLR3|S-pFU^=GFCITVs!)4{5iMWmsM zAw)=`_f<~I1(|=)PKp)zd@oZI?RJvSo`xvv-QVOb_t4dJSrNj#aEXgXkHqQ%7t?NC z7?gRRdA0cjo=Zi8IBzz+pFB72?=@?ZNCC2KytMV>c+&RzQ#6vTdbb|INq5A9@8+#a zGy?%{JdA*K&p^>~1!ZQmVaaSG4BwT=wnp^Jd3yw6~03 zW2R9Wp$2(OY59GU`EZT^-zmaTbT`AKs2!JA(ii<%%rYe{af?UsN4u%N9E9~}-r@i9 zxY7Y7l$}tj884R7lnq!=7WpnK9VuPm+NB+fUyem`9kDhiiwSKzKy=pB_o+`DU3JQw zGs?Hp`sA4q9d|9vRj$n51fVB!6ZiF;piQLU3p$b6O_CD(Gm&=Op`$UVCVXb5VJUVT z!Ap%>Eh1_8T!pNqv@Rt}FOM{T>Q`JpRULc~_Z|d`O1Sxh3#+Nwu8JpxNLkMZL4<3) z48POQRdt|3Q#0`FjGq@97w7ibrHjUBjlZ=3HEI!`Mv1ldk(+}0wU())Mw+*zXZ#dd zxv1OqrBw&4*OIC&S#Y*J{vWQ}rBRYYaw1h{m%fXgNl&m`c4>=4Nr!G1ZANrRg12u~ z)18v-{m~6C5Vc1i9R_Og+vJ%Cc+{7@PN&J(nGI?_I`x-!gs`PM(mYJ^d0)fby(hZ) zpqrH**KjsP=4Ht!+&)&dUe0svL0;6!1=|+IuKJ|B;Bqms^fb%(|1*}><->2Dtz2a| z!-v?#(7NN~I|q2AtX@6Golx3!D0lH)^$%^%FZjvs(eq@55|%d}iHEIT3?}V#vu3M@ ztlfaM`GvB?MSOO2oLs>pxiT@a)wR4S{7cdU@kvIJ7_0^SgJ>o=tobcVzREZw54xiF zkFIzhtw&7@57MJI^*ppiIBwsinsYK}0&Q(PBRs(I@+q&Swb$)nW(){L=QVPbr1aDeTFaoA#+ExN?mtr~Bi`vzs)14fYnu6t^=&6?2WuAVDE(SHjmQXVcGDyTVpzzbaE^)3uyHt%`it~jr;dylL zwR;%kZRWX3`c6oEdhoJj@JpboP~S+gB&qK}$>6ZS$@+BaFD<9#*oi)S5IUJCZbF)v z(td()-4oN2aXDL+QGkjmvFdWy86v7o5cM6_wW&7~6DNobzvlnuY|)z4eoudFl9=(Lrs?QZoJbR&!zQ(Xlc`Pc*sc&Z-ckTOCf>H($xEH z(sN0SWJZv(xDPPVylYxaao_9MygM#x4cmUmjPc z{2=F>5wA>mB?s#aGw4k!>PSUjYsFXT5~ej(EK063M%7&;H)`4!mn1r`mTKfjnPF4J z>P`u)F@Uye$AyByM5VQWm}yLk34wU&df3J#=x)SgNoRD+X7Kt#zgxG(_waR_yEXS( z7wL>|_P>_Q8F*3#Ro8E?eiWqoPv-W8g_v>b1X|T~HMsA+UkJ!aD}DPgTIE`0rCG~8 zu>?Y1iD5X&R--P^hO;H|8oANFE~!<_xZx5x?HU=B{S_qn^Mcn0TiIrJ&ASnI+uS6+ z*jX;yV5<+ZxNpjtjO!b;f$C90Xr%o$*vw>anF-y!5*(JHT!rt)mOUPkS*&Ymt)pxz z-QTC&Ev$3Mjk4K!@BAq2I1N|-xa|_7mJdoClQSoW)10)DY`9|Htjq{mTmp{=$jbjT7#6)^dI|fsE@Xq#v(263*&>>YJl1%?Ye9 zttMlP+*j+}M94M5?q^*FzF;$I`yOYC=NPW-o;9Mb&$_HDJ)V*x-p7rWbVpFb2V&VB z*cna{*CngAt>c}r?JF{TM?d%_^DtwK297pL zVvJ&Y28bYI5`>yt6JXk>>Ygw6N}9hA;EbwuUoV^JTmON(s^_`iZ34R*=>qH5@2a<# zR*k*dYXT@sN!bH%MT(1+doFaIamgIChGKVb?_5RCA{$?}A$>!fWLl%WP4{;;!8jSm7mO?@ zc+OmSXQDUT3@X37iq}NFBOQ8QW4DC{r{@~3P0dPt?^D-&?Z&bm4gx%wBJ<6Cce9-8 zKp#g*=?U25t^j8nIhElJ)dc@1U`_;38y1zx`B5rY*)#T14;x1->g`-dS}KqDWbztX zg(iaky5ZZNNV&YyA$y&k>)#XkuAK=iN!k6AZg&hnSlw9?T$hFN;0N&~CSe#ueBY7p z%s8br6@{{5AGf@y<-YG1qGKnB4$9*)H=X3q?wDNKjd{DhF6oI)UDE9gX{`o#1~AUU z2=4Mu3tkNACbh%PZM(iohsu0Mjt3B6{*%mAH&X02IxsG{suzV*d%s_r|psDX1|@`(|j z*VZXep?(_Q_Z}P`O?NqFrmQh7M$LiAMB{FoAX(+lRZrHN;L26v^UP=I>FjL&u|(VfW{K3=CN-?`}~_Xis0#o@7Bc5;!OCx{vo&4=)Bw@l`WgJ)=Ojg666 zEzQo45(^){=?20Gg03;_l{&1+jm#dgYw9_9ue9k7U3z``)Ae*t6gY0J_5(Le;_WpV zyPJC@CQs=b>^+4clY|du9MlLR=^3u2%}TKBB`^FMrN7hZZqRjt?4(Y-vL-#yr}Ym> zuP>eu;QZ2TPo(Mtwjo#Vai=v+6;!H==|y&-^#0I|Mq}b`=(#X=23E!-BWIj8f@)NV z>po*bb|qA*Txn#xLKvNTYQ2pE1&GU;EbD7AFOXH8sD6wskVs=P0qDL<&T4A^kl3!F zrE)BLt?L!YWvY!5qZ7n_Ew`xeSZOMUf@w*=N-Ws75vrvy8-8aM;j3gObTS+plX2Xb zj4Vp=Yzjl>z6USNbmhVRk%c5yX1ajHpYlN*{W61 z;9lxel0U*wy7u)~t=@ceEXHkfXa==OiHNf~s4Qabh4Z-8teP&TBR(l1gC2+l?Lhiz z2hwSW9!U2Q7l=AqB_}d^K+*pno1l1l1e zRQMkLQlak}K3cJ(o;i|tw!T|^ray`FL6ycQ1DB+twNvWfsF0a~4AZVnG6pH)ZbXdV z%mOhJJcE%Zr)eTpI;<&>c5%n0M+*tnp&|ytRmLwRo_cpTln2=;Bz-ZDqk@GF*bHb3B0 z_(qMB(rA6wxS@@cZmdrZv+GPI z3TJeDpkL{=M1!}dz2`g1C7q$-kI{YC?F@s^)BRvNYCE~)Z$^{&tg4M}*GYJ1g0&0? zv&0@?x=W*&T#(X2jo-)Ll3YL!XT#WM@4S+d3Kf>P!A39d0$Y8^;I-N}(U3>I;UyXtQDOG{&CrrBX7GpX= zY-R4LH;&>}paSlIeX|92EMa5?Pi`#7D)H$z&cCnBc9$hsyP~^*ik=0pL0j1e;_X>; z+hGQm@2Q|M|A{N5+3)DpI@)RJ{2Qv>9=ncNJ-U?t^<5`4&`N$@h1)T+7bo25?a(!WS3B|e;_-|k z9-&6&T&MArGYTKzDr(Xjl7Q+&_-W3zj`{}z1<}=#syRLQ<3b=%(kxjg6^kUJt27o| z`5)C{_fP6@0(&WRS<||;KnWQ!;;#20}7;iX>X)!VwwO6GoH4(=?Jb>Jb*6TGL0r|Sa8BX|?uUZQc? z9L?bu(`zJk@i*+qj>QVrpIN;CQ)thcMYme*o-+4?eQyH~nku06OW}spjy~zztRfz_ z*_TNgW@c{JpXOHjN!DuPC+28X;5IxiQ5_Nsez*y;>9gxF`kPMy6U0U4PDSGgUIory zW+jU%nUrJ}qQ;7MlgMYVyO>+Ab!gD=Urr+)Z9@5}=`Kncf)OGKDu>xx>XgDh%2MlQiPa zNtEH6TW@tQeS2?X&7)}8MXc*@n(X}Ox*hCia@-1?A4&Uc^|`WeVF9U-CnPUZ2(!K7~6f>voz z=PJ;gx95KAr|c(Z+G-#g_DkXd9-_vq)I=QaN$$&nlbl<3xfC;-J!>{AG55{N0HMv? zsZ$rY`c{*+O!JMS?TX)^UDl0d7CQD8K}kI-MEH%B?rXHgGZQrFPD}vm$`@$(nt7

|_*T*L;`pwNKkhOS8TCe9i1ty4hfR?V;1#+)*P3qMA zO=BCaq{@{849p6}450GC95`x&yX3_|QEi(ywZv#vG)< z2r3FZGl?(Vo~Iyx9gQIoT+4=lth}N)MaTJ2{}qdzb(Yzl24zpP(0a7Hh8%vh7z zSEsT7T#@-bV%K>*BtD@ZwsB(^?}@D6E4$T7W6l(<5!V7u+zkmh!4xZ+;xpe+d~bnE z_RJ~&Xu5-~55-@Gs=?=!L^_5;2AXvI`;>2dnj9AD#8S$SJ+E3+w^rySy$sj)hQNJQ z1BNlh-S!%pS)xiVE80gOvp#}%QDbv)%$+7WxVb9)8JS5PArJ;yxv2KJoxP!b?144b zz8}$mRFBnb@vR;tNY2NELJ;ZjX!%ekK^xZV8H}%K?10=^)Z(+mqdX4>MW7o91`YN)RJUv3LwPr1Rdq zDmu9($M{bwjF=y?(a`;M^hdu*)K#Si(g1Iq*_9LUIIG(p1$N1S?hJ6TPJSK>!=GWF z)F~P{7MH>9Ns%ewCU-iiW3^~DNJ{0jO!iB^ zOzy0YvyD2V_hy4qlF)!-JM3DI8l(xH1V;P)682zr99H{_a(i*(0Oes$&5ON`VqnbU zAd5tPL}+2PjGz}}AEA|G?|J~JI`g^aj=7;zf}Fd{Rcw`=NNZeE)urla|NN@q89hC! ze?d6*(ceO88JELNu?1C5O%{ase7rtogX_b^-zi;l7vI_or@ls1;pg=ka z1k{sAN zRLM*wJOb*ci($NyA15-WCy0&Aoem&x-lw4Qy!qayD$$x`wA^2TQ?})(S16uOgNz0_ zegwl?3WFE8%kHPr8EL&fdQ+0K88@k_r<;%ls;jtnRssqm6)tWw{hXiem7^{$HVdATkm-vx+E$y-|%_?n;GhZus9%CpguJEKO$ zz30=IXf;IDTx1o7ts+r*{rM2(U8$|_4>7o+ceB0q>FKbO8X6cb*LS-V(45<@{W7v9~aXKC)*PDyqfEY z>q15A_GD4w*vPG8l9BUfb_#X8&zMuoS0v67xq__2jvk@(kBl{NnU^%$4>|L|ZmDsL z?(2MA`3isI1A{z>wd8C6;JCLeyexTiftpWlEOL5tq*v&?Jj(j(sREV~fH_iUHE=Hji`}#Fn-s})BS<j|Hzqjd<`K7n@tg--5I*9s35;50TS*02x$k z!AM)Gn-U9EnLsb!%01HL=`A6EtEf57LbR^A^?0;wwB)dgO!tfMDx2@qdzqhm?p;sk z#%S)wir!L4DgvLXxNtBEe`zmGq!?FvMJf<7ss^7rbkqmFi++%kvMM!}Q0X-0%Buf* zel+t#`W2;duqwgi7}K(+UKh4>dVD<__|m;nWh5Q#D-o{Z6`=jr=p3Q+Ut?A_>v*_PPbx#|!SZQs!dO zC|(y$jHKo9Gg_dmap8HyK=k2t3vZtsA940euSue>Bo342?~M?{(o)?0o%tR`osGUE zF|lH|oS-wu=j=7)+~!)p4!0*vDMsMpK8&qB6A!&fmE(Bw6kvHcRutY#I=HXQ=laUd zq+?SJ-ca6=J{W{&m;lEg$i#(&ivwt@ z74C+%B8sJ{^nh*nE8U0r$9&2m?&;1XjwD-UU#ku`35&i-*rzWmf4{0seHf0 zi@jUC|81T1RK6b98>0<{2`tS`t6Oe*`}}NAeiP^M=)h>!qHS5HNyN*$ae3V2)Jg|Q z!q>%A-8$@{-VGuTjeVaCLEgjC9q+KI+O6n{we>Pg6cR^eBEhioV#?%ZoEr)rhk9+p zs4-n#pAr_4A@hG)~R0?77aP6bXo4{l4M^| z8;b)v_oA6sb}LHfMQK&9FqVCnUk!2S4lFsL)lw&25)^z1Oq|W3*=U>Xd(X@!fnII4 z#hJmL8wt89#c>A8SB-tb%aga*LBb_LsPyIgFJp<7U2-}&_0WV9#B}2KufJ{L{FsL_wObDD6`E>quxZHwC}BGA6O(wE;wngC#eZ^%uOV-qPtP1HSbtUL1#oOp6^{I!oyM+T- zry97lP4=PZb}c*|rBvUc$k7rKah#*!Ev;6>kQyomyQhVgJLHT%@oFZljxGNjfYOM> zghfkA_lR-9=lecxe`VW@d|u7x@6buDICZ*^o19YVAVDZwOl7UZo~Qt{zWUwp0$sg6 zNlFm)BWvIoCfiVq@Q9|6Zt=054$tI{Y)IH4e>(u|?qu~EC+x(9bVrx>R>yrYuH^UN z)ol~0O*R(|8ZS!N3S*7lc~iGwJMQE5%koy+AjHv8uN6j27+DmYlD!c=kEzjIGxN!t*7m#o8yJCe;g zJ_UF<^UZn2xm#I&vR<&=RlS1Gi6u5u>D>-b{&LplBywrSRqmvjA-eq6a5tjN7GPyE zmU*<51qW^Kj6TgB*_aKXNe|jScHi4gCe=t{@=`LvC1v!OW8B$Wd^Rq5Ml+XR^~;=o zAGlJ#TI$n;NPdhno5N|mp0>aTj^A{Oz^VCNDLRty+bfMqG^_{D1^PzzKRRMK_39)T zztI2gk-~x6@@AF_R#m*mtwOzonmG#H>}jo|LUi`~tV73$AwpKMR(DYKm*a+w)Te>4a=_1>`4Be%`((>2xpm|8T zhE$KQT{_dTtC*H9&epne?S)D8ZIE|kmW}py)rsr5RbNhAduFaO_7@+ee>t%eH0rF_ z3aU}%I}6TIbVly{6@xlH{AjZ#ocy5NuaxsObOyi5rTBYlZaLfN9!sV&Eaoh|>{C@L zZLE*vCp~xfzYfVqtp!)_Y13JKrl;ebj<7vNEA3vm9Fe-6>Z_%*%Aeuf2hHYa=YG}B z4w$tS^{_rd#qACxLeMJ00h@yc9oy%aq#2+!99_UIkl>j`ss}zGAEI5n+`i_qUzk2o zAUq%)c5b(JUX)+O3S+DELXSyP(`vaB5VK^I*^(Cos8ot*NB*+xdEK>j=Cg;9)4-&u z)?m5r=((u)^Y~L?eF?|$u{QkHmYa?L5?Ax-jw)9DbY(r^ELY}`wd}u@7yNv`c?>}j zCmB`%RAhZ-^ObK-s)8WXrI|s}{~o0CXdc3B*#W>iKdU8=f9^WcTaYq{xBBwgZ!XxZ zot(ei^_-m#{OskG_|K&S|$zi$@>^C~6i^pVI2P(M-#URX~O zWjp>)Gz82n)H(bbf~KlX7(}{C93Q;PP4^fTSPeD{A?K$r%?8!4XiiuMOy5fhc*v7( zQff;*_jwfKrBeagjVZ%_QeqdppP#uipwff3<(-Hc|H?uhO8px#IpA8kwJSbsW2nc{ z1};5US*>fk1)7&eJqfWGz5$_T8knbNbF2GF>hQ@DeI+pn_4-WT+bS&?m=^{25!_h3 zM(mqGC3LLDem^CgWZ_wmDb|iEg;8bGf2MSUU_hcO;OZ_ty5#K=X%LUm zk&L$k7tL<0UrFX6T&%-k#$*~6+gf+NeKmhsZ_wJ4UoyIlrLSy2`f%#;6rQ}OwAvNM zKndF)Wk8&#z8G$$^skO}0~IfdO*$Xc@*Z$FNTrK0*M}-_yR&Fr?j(c&>%(Et(`71? zAFcD=EI#~TPQwUeHRx`s2)bbj@WFtr*!Sa6bHl;eJ+m~x@6z$BSQfg9>s&40K1Qg5 z$#kAeVF?De44M}vy`RUFi%!hH2I%^KgUge!xAc0*7bbIa67}l`oNmfU2&_tH>;XI6 z6zuTf`CXU2?7^(*Xm=UUhN^e~rToGs=@kWXv{kR$f+cc?;CGmW`!e?$!=w#p;32F+ zc2TsCS2b|KzilzPz`SJ+A47LDc=kKzKnA2F`F#J{vqptwVy2SU2Sk&!Q+;s3%aTg% z3W8%#OE+uJ0vN%@_f^^u5>>lc#`T=Q}bNF$Fg&hgHQ%&^5#U((0&iR_J26p@( z_h1YOH#~1HGZJ`vPjd`?y`u+&8%|i8iEw@-7s+4jQsy9X;@jecW*s&(D($bR0Cwks z<$2FVUjo;q%JaBof3rm|wCLag7Kn{U$XM>IEQk?Tp(v%Yu=MR$Z{4-(NUu_ z{W(jEd?J@}QE2UiMKPhZ{R8FFR$mltfZ%-X=M7nAc{`AtAe(rLI7mOgj3hU3|u2)2LwK4O*i(a);pr_{vs$k@pUA`GmG5^MY zKf>B^7Z|ua8}I=R7UcKL*WSOTz$!7&1x8t$_f4mVjoPxS*|nbmNg zi>VJmo;I$I@GRNRN(aoxXk#nP2SP^%mOM|_C8caVKf1eJl*py56yc?ia%>vCk0J#v zK?EW4;2IfqwuFlAu4Km%gx@e7Mexu-6JC3eW%ax~;>+Lrz0;j61a%0rkM;HoAZZ-{ z5)0roaQV@lf!p$$jV~GLMMDfCa@zF%`OLj0I>z7|`aqU+xPe_dn4EW=D_A@&8j|1c z?aPsa4qPDVv%h~jH5Q}7QlGT!Kja!Km~K)A{*&vh>)&;yx69<$|E`m!+&*PL4qJ1o z*|cO?e{cyH(x_?9w*rkrxgJ66{*~>Vm4K4>UBXrt(*lymThbXhuPN0sKP!scJ^b8} zZRU#v=Z{jcIJt&o-8KKdmA2mV{prnRa;##4e<`cV*!g+|#L3;;Z9h#MaA4iS&c(Oj zNg4%%U=TRhY!UVho!ei=HnMC{z^D>c^RIgXCL=37N~jMV?I$o0{!DCipZyG3U=gur zzFuQkXjzelWR(1En+u#0c?z8D7Z;;*3boEo85vL?4wCfdUe&g-Szp#mvQE$+BxauK z-RiYL; zQcu7&tJK6=%57zqRuamn)~u5(B^lsoHV2*Nq?dn*s5MR3FJ>i_b)LbpBdHIJPfo>3 z3|l5sZ8IG|icEzoe8MhHv~tS~O_A^w7L13p)|^7+?SFsr%QSay?w zWM-8S*qpa2P|Ax6QKPUqi;AWJi>SpTyoen?SQ{VH1BnAC$G{sfQ&|M;ycXduCCAEF z*fl`*TccABVhWJI);e%h0dFkx@FipL;8xtzb2g?SnJ_ssbaF3nI@E_QH4;~KE|z3O z-_?Z4vC;3al!_jZ4l-K^-O`@rU`ze#I6z$i3aG395gRMax?~)CeH7D|b_IytCD#mZ zxYmm@I@sa82_bSf0ae&+aIRwMAa0BpyyR#@BY?;GBggj!x1^P62H+^6o?uh( zfOcXc>!ofm08IbY=DZU$J99^2B6nFD&5}c5d5wn7#Btm@BL9XLfy z4#^})CF;MB$f$0?&+~m#V=Sg<5>6kk(}02x2kJSt@A-$8nrQyFl|Ogg*SvDyE>&M8 zT*m}ZhDruy!1~2>;B2lRH_2>)ZkEjOr84+n7878=^}luTSiP3v?kkw24f*-{lm1%-M=qutl@m*ceaF5nRxpsy9=F@>LNQw7&yL9ot*65T3Z2H@lQ1}I!Qk;ubvM=$L4v6s13dhpG&NXGYED>_A-=R=Zl@hv^&VoTz=d` zwAPncW59#GLx#{^)9U*Rv6z73!krYU=KbvrXeDZPt#%!+wTuR@{^uyEb)$l@HP?&i z;27jAPbT}$3gUAdRJfbklbx-Lpobo`>q7ynD!?T!{LT>CfwA1Lg`4|Ym4S`OLG-ic zX2jeH%QN-~7;EwcyRl>G?`{3&-N3l3zWub!=i4* zi-wIC8zmIEINaeFf-uqJZV)(E+Qa_nY03hV##MRZv~uI_yQxX7xbq%IL-^`Rws0 zigUS-xVL;?9XNVPrsf6T{jp^p4ZN8q*9)(Uw1Mb$jsIe-wQ)nO5nfC)Bx8VH5R z;_ZvzN1dtTC6uo)9?0Hj@FFCRV8@lVxo@vevwxmv?o~iWc0n4+JqIt@C9Pc|{1m#G z3eO#oAfmIi4;y5JgG`#Q zb?cl`TvA?0d&fP=g4sPV`HlxtYKkH2Z30s81ne2vn5e zJL>}*-%wn8va2awycxPwmy8;6A%B_N*^k{7Wu?Cyf9fA6UXf^dA1Ptrc#cZG62(~zP`N>;BD3LWfCSRI=j!osC^8<-%5a$`jWGC7`Gidct z*%ie^_Bci*T?x7BU*a;)9AXlp|L6);3aUVlG0l`wE4${%!o$^pR6WopDb)OkD)%UW znIgWClcbW~DxIt&=iUgIRJa)PX}zhs+O5l{vp>YppjRRg7c(I<>UlPI{s*ynI6$8o z=%IE!DOz>5GkCDo>8e&rK~(nWTAYFRf>+_Ox{9?z*VVVKPEGZUVe&M2<+fTsI!j?6 z!IwR^C=HnZhUEfzIy`S#2z_5?|34KHW?YzF6)y7 z(f8(99s64k`9Tv*5H-ZoqMO}&e!5)9l2U!^dD~z5*-d5L*VH}j|76m{2-66(o*3@3 zyE#4L+U7FYN&zlUGu!`R529NECGO){OeV4sI&}0N!RBM~2F)Gy2>!`9t!F(jNN4@# zt-Nd~9gG(LK@ zd8SF)b|#z`jAMP=_nx}ZiD=h*B<_>6;eCC2`O>bCkYL?gm%$f1Ij`vX!Oj6n1gj~y?DORH__3PS=rc?=t}BqkPg1MWtz@ktw}= z+2jxZ_w-xj$(v1V4>j}+945sebIqhjcY<(a^R!|Dx4!k2T{(SWKf-UND%ai(04RTX zkR&%EH~)Be=E4r#57CF%lAhjc@r{+3zDXz(tiQJnVdgWbr`S^@Rd(^ zqpvEBcdh2LHSHVkR5vo@aMs-f1sX{VDw7P&Jbd5?awe>(C@up)hfD)vnLX}%rkca$ zXDrFV5aurR`nWL+;cw$pq+x*r+{l@y&^kD4(Z9Slr;0AW0XO=_f_5|QqGkRpq~k?j z#@Btp=OhJVf9es=+r?bVf+9HH3!JaBSlJ+UAL$Q=V zu5~lpP8%>rPkrl!Ws{5a@^M{(!%++#+MR|*J5si-TR`uX?x39xZY*WZ#h2u)A-`-Twze}oU#583UtW{_?J(61LY2XRba7{>DALM zbRX^B*?bT&^(qxE`InMrxQ=!w5~EzMJ)T&8N$Y6U+qQSD6Y$3&;O$O+fVsC$Ri$d6 zW1WTabx5%5c&)dBA9}GbB>-Y>DfhL@gM^QLp53 zj0uFB?xBuo+qO@tp3DsKzjxp)-)WZDMK5-3JqEt@g%WHCmq$^q0hI*( zPl>y=!rc$nhn>eVKB7_hedxf5d~SSAS#i);BiQW0E)Ls9I!KiM6~nFN!9BC@Ye>4! z)yrMhT<&8Ta1#-6`;*7CAH{^L58rVp{#Logqa1=qwf8~8otH=O*Bkle_quk1x&l0I zh2!ylEC#RI+LBf=v|lx7IknwEC4zy-K|s2jnBqW#gE6wP^bNiAt!CWInP7VJAMh{> zoHQ)VZfG&g5?+&EaG533wvNkUi%0N_ znfgzI6;SXykklN!s1Mb^)gV9qmY(^gVW#w1VPw={{cGJsw{86uy*8FNZyuwe*o_up zJEiGbE|a3?ch}?lqFuNx@9d(NKb}7l>*wWS9lbog3876G?4y1r&c9FNZV^r0R(7w* zK+f+*cv)XQG(zuGaXI)drDVlny5^Y{ZN-Q_zJHPHP<4!B;0e<-h^*s%9h%4=IS!<+GHQ$t?W7kr#E_SWAtdW zT+tUgxkM}u6FS)VdNG*Z{Re z14pSl7Ld5n;q5WiIWzp>W=`Hr7wqHxW}foD5zSbilY|aKIr;U^3G*jqB*rZ->%r09 z2V85+{I6yg<~{4=Whc11I{OacLmKo;QsVmZbJfJ+MWA~enxqq{8?1a5u2L8;nvGi- zN?5mnYVS{9FO?sMw@Zqkwf)hC25UPzrHB}Ddim;$$D@|R(((E^Gqmdht>E44SdMXVwx&vs3$c@VLFMi@+kadw zG12w&-So4FX%<|*d^i3`brt?58eGgdqqsH&fw!5;5;B@K)Y$~?8p#ZL-w~Oi#>(t* zRUC`^<@G;Dqy5S391_EKXUB&Ns@QM}T6*4Z_Hh8m^~NKe+M?Cz5arI3;j7_*MypAm z*Nsg2QxpZDOn?_{UHRSC-E*Kn8tN+UgPoO;s1kG$Nv20TXdJC=`d1U?#S?{)2Dwvy z?Pw>$<)bkoU_y1av0x&g2dGk?(Egv}s49PB2!s2nwJx)^T&K`C$nDGAM?U%jBr$TZ{h zdHJJH<>3;;aF|fNX5v<#tAKDzIQ@8r7s9Z#Phs5BD(3Evk7%112b{}3B&8Bep|`2I z{Q(EDB3XqY67gwBgTY>Uv@oR87!Aw$^3tC{Z~H^blA40ezfTtp*-G3)>wnEkTr@?! z-`v#N)qPbgR6Kx2R`N#1hcU0CMD<1uij z8V@P}Iwy7tpIl!%LXn7j*>{S6?H1g~eU*ul+5s@)1ZCq5SPeDCqPY2+0I`li+pnX< zuLGbb`u+kru!&2Z0NG;X6)L5=9t|>?rMd3ic6O~v;O6>}PB7N6Zne7l!&_)goPY%E z4{?Ks=W-ys5z;QqCp(kH{q(9{@xzJ^y5qEUc;x)}ur7GA8=&eZRl`p}mbDB_R7zu0 zxzhdMIyqrrWvdS7K_=RT+5%H}{Vo5ZT8@)eeS)AjUhY@S>Rqd*fG%$~+t1wbO74AK z)WpaGu!9PYC4McKn$P{!ADZL+r5-(Yf%V^KlX~aX+m1kCjkinjs{D@{71&Hr`Sw|f zs2^%9>m+~_96x``r6gZC97kE45T=yXcIFeK0;%D{K1R)btDhb2t8%WjLnAEhlXL?b znhR&m1$)i{_uMGD4vI9^=9-X#4X= zQYOljwYQvS=jxA-mY8`i0}e6t2Dv#^$U4PrSRfwRmXdQx)$93qTX*VZ+{foB3r)Pt z;o!Y7LesVBd{aIP6k9b|qLv7n1o{cRCruPloP;>^bHp%TwxJvX|FbG{t4!dqU{0JagXTb_oMft z6{Gi~u_;Zv;lKj*J;uK!?f7{tRCH}j$NBelt`#6agp*X1J&=ZfP$n+}9E}q2P)}?{ zE6dPN11Fn%cYS8rb3+hXyA$D2r(_;M>=zc6)uOxndp90Jkjd93M-Q^xe~#l(MNH2= zUi9a<;`95v+K|jW5NY74I$)%68s_Gr#3tOCXGe1SP34HZ=;Af@TIYG;4Rnt1&?C$q ziNvqUAPqJ?F-%(zzhIm<=7Gyaok{We(@p%F-^eovoxJC?mAjhsYg{=3X$V>%+fs%C zDw;QF6rO6h%txMatU5397rlIQcJ5Le%EFtkby6qYwl4mr35;-^hKHjoll%wIuHmB7 z@NKhMqo^lF=36`xt*ya;`Gf1}F?{(gV=FEZ!cJA-?oY+U7;-g?pT#XX#>C zN0x{K|8#^5mu;Llf+S}L*>r@Q#wdeGbDJ3BaFK;>`sP2|!9**vK3e^FXk0lGQB&F2 z4oXqs*@M4FmrbxJr3Tr@Y~A89X6!JX*8T@HNS+dJQ99-NTz3zW@)`)=2!cZ4Rrh{l zytG`6GP|K0Q7gK;#S>AZOiaOrz>tUBoHiFur@ z-?%kG?A&S&RrXPjmwMIz`u*GFfFNTvN|Gl`Xml1XW=Q-x3qu<;T3%V+1!sN0p9vMXn^ zk0F{G0EUNK8Jz9a`wvpFIWTi)K$0MX7#L~RpXavppnm1%??VCO_01Ue^PIgov>BJr z{pxNS_}Y8DnfQBG0z*s=1|P(vP&KUKpmRSsEI?TB_m3ljZob8IyPBk6<7X9`nt*L$U z1u?9fC_)6(pokQ|ewQB+t4Qx{{GSuGSHE;yr}+Hjd!*$EyrmcgSN2mfiT*7&0lM@9 zxak0+>{JZG$&qle79JJEkb0|#?SE+QVik`}Xhy>}dimNpqd%_2<}|Jzc>7N!&o)HN z8&P`(^tQ6S%|+us)^+6zoH438(Xa=8oR#D-v3PD^Bl-cAr-JC&T%nzf-%+GRWaDgX zv^+Ln?QuFm@Y^6?xcoDCeRH~uO)lE2u=!>AM|_?-#YCt0S{!`apqheki1l!8ekoEM zbPjg@-4>6q2PlpIhqP0^zZJ**?3MB7d3#nxB>5e1Z|BhdnV3K9`9*SW;wv1ojF0@W z?TA2vZVH z2!ebpNTxQsP`oyc6sAOaHJ6G1*y_-wszVc1I;Jwr9=aF*9Eg!DOeJ84{ABE(*?r`J zD_Rx*iV6Pl0Rem;(M<%ajaBbjfR3|8|F!op%Q$*9GRPb^p+96=c+7Z*=DHa`YwDiJ zpa5~=dBmp#B4Z~Ioce#vC;+dM zVD=z92>5d%@|O=k?OEB8b_{7Tz})BcuTy-w;Vz?LCmHF710!p51B1_m@P3Gz5-K6! zzV1JZv(u~EEfbo#1^)_B`wT&*&A~Yyt1m_~GU}Ngql-DH@kbODKt9rH4`Pn}b4D@G zG}lL=KtA|?9=fs^J+%iJ+xp)_7vLdq)OV}>_a+5+(_Un3_kRyDz(bsLG5-Ja&^dS$ zJQNJK%j^94DS=OGeH82%LzVCm1YUaON3s5&4U(5mQ2vtc`n+x=LG|oCG?XJ`S$OaM z=)^p@4;!DD(b!d0FkX_W^P~8e{%Ul|;g1)4UB&*Kn&qoZBxT+1)ed=%H#&3$KQF+M z{|^e5N~<)Au|bhQS63^&uYv9GfB>+wK2mHUFOa3?BUt4)#pM z7&aMcvH9;2+xOH9YIH9+{`-q)!l`wRl^v0Q`DX(@Ce^~G-{^1pO$PTEuB=#PVc9)= zcik=w*>hV5y_gB09n*e?ZnMEv8M;fknImAB)V#&x1;0FFh_ojp|L6Z$7HTFdht`|! zXs%0ziZ|Y-mrw0zbr~1???k3xqkLySP%m&J7ypCRGu_&XlZ-_6@OHiXLq;tf(yh41 zzs5hp1*_4ZmG6g0dsm~F4SLtR%Hu0gMh$cyI5Dy8SpZm=1tKw=I825d9V zxHH|A1Mn-aHA0F$1p7xUd4yfLyKr+YqJ0{9`lN%8p~N~C(eU|>5H6IwpA@eI1m_7hcp zYkkQp&C;tsmU|cKINkq2_5_SC&Gxe#)eOA9>6jrAFUmJ`RU!wpI7!+DKE_& z+T!78!MCVh)NLkby15LGyKUV+`pl+A`af+$X5-zt0!Y;&oZ`Qw>(3j$UbmfjxxP)C z{N*S^FE8_&=eFZ#dqcY66-M$6C;jO=XdO>z^%J1y{QM&(S?GDw{|3}xC$3wZk|372NR%oGx zEOkmnk-bb2r&K~Edze-td)bniLh7WPb5OD*3E8JbLYSzWB64hH9SI>!G}&i<*Zs^) z_4$0hKmYWqp5?x;^?kjs>wc^&W?Q;Dsbsw!PUr1`m>KXmncrZ2TBp9&nt)YXv9Br~ zuPTLpl@;+XB&$)y_Qa9y^{|n~gM%FlqQ92vuG}HaT`4hhAZg}!uxF5vg!vxqvNLmL zk|E|m;r=guPw$BSRPDB~F7pXSOs$qOG4|n?46}3nFVzCS`MiJn?hwy1_e zPl^d5yX<8gI)i=Go!u@seDetLG!Kf>BvwdNe#>*1kiUKbldMxobIiKgmRmXVh_@w1 zXuRI{wzo-o#Ki=K>(#?*D`LDgU4Go|f2%V$YF^Py-LS3T?Q581)v7c{7O8mo#KcLS z`Ox*W{D*WBO8f#&@)^h`OotAb#YOt}Xx`)PH@NMa*?INOq|OJGn-^jqpLRq>NEqH< z`<55M{R+HdLt1C)H2=`;O$J<%FiaatzPb8%1{I1|?Zz%gdmW3n zNsLUunR2)!=jrRo>JfdN^mDqqUZo9 zY1o)fjS#z1TJj4|O6fZC86;kg32KnY3%D-^Ap!r%&Mnd_Z)#7gd~o%xsM6j4!!WW} z%MC|7Ex&niaL&Tw;;{^VNu}XeXRaU7I>nPDbye1$xXxPl#HQ$`im>UJ{!DNi@%Xv+w;Q@O+1hb`E-zV1^eTr%=X!SuQtnA`7yP- z*VQ*8ldDnMm@8BNt>PW~^~@3NHM*O(V%~Nh5%qT>Q+GV#s*KXBSt=uM+Qx3bZAm{a zf_ZN^IM^%kB*B~PX~o?#WldB2wXV}6Z@OQ=|GN%KJkdL%Uba*|r1KE>3R2O&(HBZR z=Nj~Ubk~5?o^(}3IEC#ujpwOFZRAIH!EL-r}L_o ztEzId{+D}F^&o=1i=iL-jJ>dZx*Xj9S0$aE5+` zmAMO|U343vdFuFo^vXK=s3KGOj}fwE+tRD9z9pHwD?VN^o>3ebO^XR)H^Pes;6=p? zB}O8CU3DB;AXi?14;hEI?jT+GO*T6+#(CbGlt*sgm*;KzoRgr#8X#;&!8r>?TF^?uP)`h zSV;>`==6@72Vn+2rRR*&oHcowSzF4>(3!wZA9HwqHJ%k8Hn6g=-l;}}pwMTyx3q*Q z^ra%s=q!s0nKWL~X_C)!Y zGp&kdyKZK`P5Pmr@zesgt#I_$@*!3wv7T@_&{r>V-g>!V9bR;elV~XUQm+8Hr74EA zNf_H~Jt*eqY3#Ws(6X!+ZH#sALw!&$vKj@obbwUT{TN6>HBy6h-Fu)Wlg+z zPoI1lk=zdn7J|%^_0JDC5H9cZ(U99Nd_>)Y7iGL^*7m5CCTLGz6}-zYDVC}-b1uoO zWTpH9r%Y}Ccph;gn{35ykmV~*IygFasJ~(Uh1I?E4L;$V-eR*lDe^L|sq>{;FN_T8C~Px9Sx zOpvF}8k^l)u?O=#!s`_PZT--#{^_79;);9I%;p@vtAO6ZZywCgxheCN9wOXy+=>e~ zDWevq72mFJ36pu7q@kioP`F_@cOe)6RGG}gL_9AF1{V%=_-GaBmAYM8qkz3oFOrLh zI3c^>M>q|(D6^>buVxN0Z3U&ficW@yTi=*VHOnZqCfhh=KJgngAAX<66_i14e3;eL z9!D}rAv9f73^aUW?;PR0(!N&{AG~Zsv4UY7?}J@<2V3k4r1rggD8}F_TS2 zZrm0($cg{3j{4JzXbeTYF4o_hnxZ6?$d+=~jf>pv?`n;o$$7xdp8#P0o>Xq_el3D{#FY)+s@6qYj z&-p`-M03^>6s+P8khnq;8}v*q_gFUfGHWq*w0F7SJkGyU1LAi{6j}^+xb3Ar6rhmS zM)8^au(q1={A;XYt!$d>V(g+_gZRj$ACL3(P}iOoE9*V{sN#)sb;#gj|5oqdZ@+qK zoKh|;Ly@?mx88~UA%@gDfC+S+QHB&H9`-xen)}{<+vKmQ2G7}v377R{A0S0Yq`UWU zR~)xE@SAm6wbry4>-s_xW24hGzH^$IqVqZbO)^_HC)fo(H0kkky&|dQ^av5`xxd=a z%OWFok)KDY@y#zY)`0UVU+F#tO&(d?cO<4;v7_6cc3bT&ElgO%*!aNq!svk|9p#7m zlgkfnn~3H)CGFH@3H`bbvY*9ZX>$x^lq9fh_UTZApU+Q#L4Psl{;h>MAUEl_i}E}Q z(uHG2gZS6_zkbLpu&jgeOs~T$2L@ld>D8fHK>|kot>LB zZLg%Q#NDIpRo6v!y-I;|4tq-{;x{l>3sC4HkT^ok&dnT*BL=NMeb|L357~$SMwjAs zA%C!l(|c*hKy0_$nE{WTUUmOKQgqv1z4yUO?aLjLEh$xNFah&*X`SE1ltxBP+v<36 zDiVQ;=a;-ni=qW@Q$T%7-aKR<$tWE^Dl1=l*nLEk$4cDZmCfEG9JR|I5-2-<5kue% zb}_?W1Gf`%?$d5Jf2%#Kxtlrk)>bg!AfEvvCjN=94#Z5!SCzI4IoqUE=^%XPCfpLq zx|rb%A`8XiiP8&W)FFFWL4laxzwHa!0dnC$GiNr#W?Y}Yiu;G+^ zlheU`D|%y|m5heDlp}nbTr9zmzdH+oozYyONso zTb!lnPnQ$sDc!^I&bfS+ddWfe;l?i46&_r@DyRR$os>O3su97Q*T!E z{ZO0D0u)ZGjKMJH^41fSXu@i`fh|1@wU;|aTsS>WjJjfMGGoOg2Vpul4o48>0BG{(w+6>P^2r z{;t0OYOGiU%0v?tV1a8+d?1%U^6gGGvXuJ8X>B%rWw86|od5`Sxa_5gXn<^5t^t^u zuFm6SRh6jVrSYS`;|Alk0^D#(TB8ZmXWPhVub=;;Ra|YT$3<3t+oTybw4UiBEUdc* zOmDq%H7g?NyP4i~q5MNX(=YYCU2oMEfirqI(DmAT^bubMFeLwjzet+_q(%fxk~r3^ zyAvMyp~#U;_%)(jRq6`tE2*1iPUr9?YJ;&v#+)GMH=G)M+1(vGu#S3PaVckkR8rO+ zm-Am+X2;rMf=1u|K|2N6LF3SkxemmK=xz@xYHdHo3n*7pn%KWV_J%UjLu(Cv{xZTm z=h2hP7Wj?t+s9SN&dsGgvJ3o%S`r?KdRc)~BGVcZYAb3qHjkg?T@!e7RC|1-^ITAA z(YQeEp9@K9LT?_Hx8MQqH6HNV)PDp#UoflYrR2A&<))bvojJmZYX}N)i~nzDBb7a# zP7Y(ZoB`2{#xL@E1#Ud$vrSyWLiY2YT)V1C9&qS$p>hIVpaLe~d+*k@z>RY45=V%M zQoLOD9F;(~6c2ljXkXZJL||FXt%qMm&u$%7zb;p1=RO=JdCZqf26*iP0fNUdPeOHQ zDiybw&p<5#!sCvN((~(yD@vDW7yfX~4=w<(y6YKcdrP~t){w4){KkiZWaUO)MI`eo zJxYU4=_8&5)jT1Kn`voi=wTz9>9z_PK9<7j!=0)2@KNmK>y@&;Agl$-ke=5m$GxeAee z^ji1v8}q@NgM|PJ6QnK#Dq#X*5NAsM*GIgFKYXNIXAOz);-sMT?gMAo5dTyympZ!e zVq4u>(5LtQk@UuMx$6mH74sEs_O%SEcB=oZs3{pYN9D#>!W!MJ2+}}`soX&vLSCAjj}+WGbitEjD}kpK<+@O0N~2eN%t zA6G4O`~Nb8Rp9Gu4)6>iXmU(bfO{!prCqO+QC#HcJw!NA1T##9Rc@i`qqV*4kh{}q zo}e|n$*M0>=Q?77^1+}*9>+`B$bq20JPhGgRR;e&Po9lo4i(r6+DP*mP>t(|)^CrZ)KmgNKrqp;UX|=^kbBne4-at$w%t-ZlE=@Y5x*H_Ko4rp?_O zgvB=4TancxzU=NG2*y3ne^k#Z(E|>2Ua+&g!!Mch=ff}Z5XU4wPJSj|@*PSz;-1PQ z8KfPEtrA}uJ8a7xO)@9yb3}9a2nsfvIinjNI6drqiZ( z?k$x#xszo1bSgp$Qip`zFN*sShEx&}a;;)ce}+g2ObOKxV%yGG4s`vmOhdbiO3|N@ z@+C4XQ=Li|DyrwX^e1(9y8n4zAhPqwY zWZ~O^`kZ1YFO!cbtusNhSpUa}6ZE@Gn!dl}m7~Pmr{zmO*0VhJmbSz%q8)S7Ql>=* zZDV6sB=kMGv?HzIAAgUjk=&5;=dB0<>boce^E8ziWBBC-p}H$(>%2V9Yvj0Va*IS- z&mTa-%eAWlHeJu$9&bsw9Vu==v&be>J}nt5Xuqx&8NmanjDS~_z(U!Hvp<#SP%?nh zWb8wsH|e{vcYs%#oxZ$bb(JW`nrH7rIC~QX!rBE`=g}%!gSUkQ@ev>+zgE3r2xqab zzItKH5_lPG^icG>R-k)cPx|dGC3|LJ=BAjit~6jb{iGzZ|F)H~TuYXgKUN%laJ0}= zgnkQLp03-TL%#n-+jlS51Uzqbrd^9D!D~nQhg%K&ve|b(_k9O~vR2>eP~F@QLeLO6 zF(?%d&Q06xE%mVy4Dj2E5vsDLQhah*-3MQ#&haWutHWh_)&4HbA^4yi{iz6Cl*fAh zx4pEZTkBF@dZK2%s{HUd-*!@|D~%wV4Ho5<^FK1;4E2a7R2vqPMaAFvtFrV2MD)872k zo!maVDG%r`kR0!o-X_yO$#3Q8ky=wW zpWT?BU$+5MG7(asH!j&(c>iYkp|+)M4c;W~HOD{Jhlpdb%powLe{)2=9-e`PnU3@K zGiO7U*bJ^hPK*^W>V_)xX{WZfx=mOBB}`rDbv|p;}~WJGtP95`ME%zqbk+zA~u2W=XN=XK-0UZ%Yt%+M967K^) z@2IT}HvzWm;7?wf!~$A6ObxHu+3tHW=etcgnDYRhTUn0W9u#FtyR>Zus&s&!qkUM2 z@zoyQTl&z^G0J$Rx@fV*rAQ-?KYVjlW=8$|Ha%Nr zEb(Iv+qTR`SA|@Q*fQ&zn#orKbsuR&OYsg_JZjg@e-stCD?Ng!1mn5PnOal2=_%csmXbeT5gx15xsOr5+TPF4HkZd=|>eM^q(@PeUi>Z!?o z7ySsbqj{!vZ5B2T@ycf1&iajmy{b*&OIw?)YWX?FMEiOf?{97SHVy#>^i-n{SvLIN z*>@1Q84!MXk0hoBPc(*+efr_6|D=@9n1IT?yPsh~Kpz^XZB2dOd1hjMWCiO(*Ni%B znM_cLffz&G&&yhsmE=tAO=0iGyg58C&0?8^5fE)5GYEL4Yf%JyUdh_nKwPDw_ECh8 zH2^h31CD@*w`5uC_4AyvkUK#{yISSGh58O2-F9kJnClvh42NMX+0NBA>d?^;sA zfyPm}1{F~o(4o=^*7QgW~!m|uX3RaL4 z`F~jf?cgos(LSG*qUPT8lw&t;W0KT^VHA7;*o~VE32GL|CU!MfHq_uSGQ|?4n)92Y z0)7#tR}ofOjLhdC$9!-?z@{xne?be+1Eu%K%3XTOwhftc2NF4bCq)W=$6QVh%Hvyy zqdtD_j^!Z4E1dU=oq&|a%3zwDU7gmMWV?{Wd^$YOs#Q~+-H#0Asuy_#Nj9Ur*_JJ*-V@ z;aO$Pdid`3XzxiGx_!Ll{>zo2)rJO~+kNSt-N{fRdFWVTD?ADaWkx7rKK6HvtPH)$ ziyyV`x+?VjAupWH!h)~KxKl=<()BMFCAfP;NZRviu8gDV;<>7<=@XOvyDS9h_5u_v zgl4UH=j$C2!b`5*Qx>C|lf6fr0G~9P6(%T9;XZiy^HC>@zgr{F4%Vf0CXFagRt)RKWjl{jP^&k~9sTC~k zVOht3MDUs)M#1nOxoB7xLL0hk4GlQ|q;Ckz`W==fyIN5J|0l{Qn3LC00Sb2ggN~tr zO#jbdK-y{g3h2P!;g&GCC6SVEXka{}YK<4bPX+PYtr{Wgqj*7qMVeifIYn8lzJO4G z^u({IfL}t=!hPQotOhgtv(1IFn76YW6otmeC^K?%b8sO`r{R_ujbS*rR2(`2pBZKbtU2~_Nb#gPG$_-uIH9+3ZyFuQO z!5RXOg4|{W#cTI#MsYnAN2IM5~M@sAk>H`D&Wf`EdGJK(=7MT-;U){dw28NWCLHhFr?S zOFN!np5;UaGf*P~0*tfRS?}IrG9qwhj}qt2^c=unveU1V$UZ^}SRd4+G}*;mr>^}Q zwtZ9*Zu51zM5&l=PJ3NzK4d=9`~_b$M!yFY!XSA?g^R*0KNV|V#a~m@Cj|X>i7)2> zL=Q-K;MY+W!v`;?%#Lb4wH^gCk){CH5xcjp*fYG~T6Xkz{XwoT$d*IB)zb~bdO9$O z;X49VJQV|g56yE&gqCtI4$_acH}h{u)mCg@#G_{md!`K51j)l{g1on zG96i{3+CWn!0ne%JULT2TV}_D_Lg>_=R)$J{{G+gVXzvS7$f?yZIg6>zA6{`BBmjs zO?1ria}Gq%O-v`9gKi?N9R{ngG2B`IR)fYmn9NGB}0>IFPoG;ThE z3D6dKubxj0iU0k`4IT$AXeTL_kqJF8&3{s$mQ?b` z_(+2I9d90z8wVbDi9~-j0R}1!)$!|OIE90+Y6SUBl+iNzj$Hqu@hH%ZsBg6x?a+ZU z@Zf^%1~UUU8LnpH^m@8MGdSCYG$YzT5T@XYIprAvJlbKLd*PNZeP+Np)ao}OveQG` z60=HdbHK`gN|^xqFzO?NzSkvpfa_+yzrpZlGs`(}wgm)Un4k_H)gUlTIYpsg4};MJ z42T6cOV&Dyvq328VK}FA>J6qQ1(R!Kyc(*{ucWn%$NFV#0!zpC+m@GcqAI2Q6vV?| zqj8}ZZcOMI~M^pJFG5!1NiibgmHf>KePqB~9 zy;aoX2u&#u=ZS=Sj)>2}CX3+OU?qYACTD`g<|bpUv~<&@AoncXLTL|xNzKMt0B-CG z&IbesPv=xcVLwI3q35qV{HN$9cX)Ub0#0-4-l=tR%=|Flp{<FiR(62q{d7H@% zW;d*XJgopfOjyqhX^A1=2+->zr-k`Q5Aa&8`=x@nysOP+V_?2FRuQL*{Ve8D79SH> zhGnGV3`G>Q_71o^ar>yGD|l@BZZQ|MF|BhXM-=ELOqgN;1h8M}?D`z{!|{*V4_Iqm z--_c~CH)2YVuQZ;5n@eBa*M@a>?3|mH;~T&OT2RTbD5N#o3)Z21TS~k6uO?qx8lFt zCNUnlO$MZ2U?kg6o?cPw-q^K!h>P}BuImyL!^v63I{4rLKMjt|^3iKJ<1@~Xi2v}` z$nn(T(5PzckCk;spe$}6@pyxI4Mt-8^cu)Y2TNxkw6<@8sn^CXGhTSDNp)QWgC>$u z-z|`GJ^ew0&PK4~qW$=eH^Yu^KV~1`#3{-Y*aFOShJ9r?mR5Hs`=G1gm!eaO4ld~^ zG(7E)bcymqt2GzCdP%b~*P?m`=6k&Q5Ntz45-Q_^mqbllR}`I9R6t_E`V0X)Ky!#` zj|#S2TPdtB6cAHQ8n@(3XdC`n^g1ix0Z@*~6l6)aCuF2dcbE-v9EYP#hkz=wD%u z6$o&Zu)%t$R?6S97Zh*dql7C$P^rjb3!ej$^24>tN^2vn5A$XExz+ikH;lFdb^S&X zH4SI#(&uAh$ST4iI7$GxIENsb zh%FtBNn&F898NY#ZMjpVu@Dq!b>Z*Eq=e9IG=D@Sfe9K{>M=L@vpyt%Fh2gfia<#N z8`Lp8U25wPpa@h4H@_QRHlAsC;FJ>Iz7OiE_58F7B)EYkJ12Z_fAFwwTgru+R(9=O z)u`!)I;EZ9`qePkL`gfeq~oq5YZ)&o^b~NDLe33Wb(twGxsm1)S=Jsf6dO4{15Bj= z`Tfx$*Mjke{kfi6miS(+cE~O;{6Yp?j(fu!jCuxngG$;DZ}_en(OmSF`s4#ALs4r! z-kA?HAviLO7Of7cxvDdcC5@;}6JD(B@vZ`i|Rk>z&cJ`EDe_eR6YezS#4Mt#|gBLaghjD$jucX zt5t$9ODcew6WSY?FSONXfA~=J?z-_zepo^7bOJXjkruwFSAZsuukdGR+PF=XPiY%t zR38BfW)sMi59g-NVJGp;9+#M0VvrKJL_S3BBg=8QArq#E*qz|IC!m#L0IY5a7cwlW z3MJpy-qc9m5g&uMyVb05EGqKVgi@0=aq6YrSS7oiJ zNUcu_nt@;<{}xIm_$@+oJ+MC4(r30wonrPMw{+ljG!>-dIgg!02vJ zrog1M zV|4-$!G;A*w>fxScOjhj01$xGQ3zjipr3<1(2hZ7255h*z`N}J6V>LfySxlhmCCcM zrV`?qauj@mDI{#mT8t4F{};)#$~bjkHd@m4OzD5wGg5K;usfytT)aBgm1n ze3U9^Ut`2@2(J_3cOQTVwQQ*=neEMcn!V?z>gd=wuJReM-Rhp!y!eCn0E5F_vlR0GNHMfm900p z-Vrqb`s%J<=RZ3Y`x&=_WDi8H(vA0HZMATW>TW*)zq}=dn;cY z8PghpLWcH^+{$HBf>;#{TwrKC@w~>1W*KO2s4d_e*Odh4L*OCn^)TXj)ZuAJfyW>S zvSEtt3+h2IVVSI;^#IxUeU+-sJ0NdKyx^SUy+r)r!~Wr7&MQ83jYi@f`mr zU&2`lqwV=O1jEd151h$w21A_cZ-ar(TO3Q2K8%h5Oj$PP1Gwq9WeL9m0_Hui#D^SO zcjBW9W3TK=mXX#4KXJA^c+*aDV{QHR7oR89Q$dUfKu^h@jE=PY@dt zOqXN2C-^|ouON;VIkF&*dO`v?%a2E@J|`^^)YR`jA~ywQ)sCL+{9ITK(>=y1B=kT2 zvTq~azQ@G^GGoe_^fjX6M>W4?&;X{`3l%JtKW62v*0IHkaLYuT8h zp}My*LH-a9={d;%64(FXaX^(k-%aM`T2yCo5lmt%WO4EDW5xEPWB=qse8&3V#3ojg z34={*Uo?AWjn_p$wB-!_o56Dx;ph(}J2*#}y`CTQ{T-^#J{utBTB_~A@Z!GAK4$fK zaKWpYot6lik&m2L)K&*Y>I7sq+A|m#gJ=Wc7AA^3BVJD)mHp-+!CqxnXS~H9ihZAvom9Eu7UiGciq55klTb1cC%d)v@F zJYz8Cr#q16oe-Zzdp>6+h)DypjH%qm(~A{Uxx^x`&5c9wO8B9BUyDdNOTF20jyVDY z0Z5)`jt*0K3i3>M46#TeZ~xhopIitBqCuel}9y1Lb6Pb^s^r31Cnq6cr09SI}U2#+=`r(A-I&j@G=e z5_U^?yB=+j>I%5h3fhZu*F0L<5E}FH-bl|NQ{7(i^i+gf&CMiRYG1=SBMM{#Tb zKCq?yJNTi^LMK1|KM>m3!CuorK^KvVYKmFGvT!6dDd?POi##9zfF?9i&}D4URH186 zu)U4~y3odpJTz^A3vZ-W9HUqQ?!=U{aKfTc(%#xf_1IL;Y|0z!& z!bdOAV$`Dou+5hP9K#U%?CC&0SXu%@4V|DMo1Jis2(vlBX*sfugEda0^ zs`J<8fgrIi6ucPtxol8QTqGR%V=2RQ0#7$yRwo_E+r_%;cY_G%qe!5^N?Zwve+Kyx z=Yg6iqxU$XP233PL8(eZ4^55tFz~!oaLpuIY^hNxhz5QrJ#gTl`MIMbfHzZgsXUba z81c#fWy#k~Im0DmLxAcF;UnY}II#~G|Ap6AewdKmfZsPakU9 zUMY+Yr|%&%r~Qm({sN*8v^biObJDuyH+v=YVU9oe$uQIzv>pK2*loK5XRd-#KW^Ui zBgRsc)P|=Yl`n$@>-o94}-uufI9i5LDCj^2i zO^X3NLZcWUr&Z}&&}w252BZj5-(rg;9VW0aU_}m|Wrgn-!O;QL@S}_5$L={eFwzl} z5UL+2i0S(Afn8mJ6Um%_){zGTL2SNLoDfJ_ZW%2pAs+?<{6YSZgK@FGhT|}pt~Z$Q z9aQyI8SjMHEDEvNNpXnd|0+?q%l1fCg_bbCL!W;F30MgZJYw`iKmzP7eYU*0@Q>Hu zUjjJ|xB-4_jz@dD43CDxQO_WMjWqCO0+uL>wqk+CA)tP1JEGnh89Ej#c}#f7p8KBL zFyRN?2&iZR8(Y9th9L)FW)a9$Zs9C(paw_pMr&|nPvg6iy5lm~2U2`rp8iFBxDeVb zSnXk;7w_Nff|6}`utJQf8pDlFeFuKY8Zb8J58rOn)qq+YbIwC7_ts%HIO@`#JM1w{ z>@gHhD2LN#(b44*ML}CvPXfQvJ!qks&}7_8>#b z6!N7SXwXAJbMkVoG7h(kw&C7Eu>fwx2u?gh={GbCDZgk&0;9DfgY4_HKK2|bV`^z6 z=i$d8JK^Ev)p-IY)(y=dcq}*A$3;ecJizwxD3NV0G`#$<2CZE-b>L|}TgFa^y|UtX zqVahL^UR6vFOnE3q)3Y&lisT#{Uuk@{w80(||jDr$z^-O4t+-(1M4 zsrO$68wqT035es@2VHa|fLEz#6JVXFVAo-e?E+v|yYd1@TsGct>GQevsj8={7->DA zD9i*-{|*PeKK4A%s_v{Iv)!EY+?*J&*6FEL5frcr;)rqt1;cLq0ePR=82^A&E}mOZ z-SmAYXT4T0&a}6%9EGF3<;I!kdde`$31~QBIbodY1-R6656^GrC4EY-`tk@XaTY+R z2J?~0XgxNp7*RT;6Pm}KcivC#g5xs#q0nP#HOAjY0f$P@+5>3ZFtIPBB6qsTy?rT0 z-5>yRi-o{(*RfOd!P%l>hT(nfLT4ek983BK-5z#4II*40=i1Lkj3VCi|xEodG*pO$!kts**8EC0y> zS_KSqalk7%ngj)ml8>WU&+zxfvzC&=a4kh+!jh2@|7o)mpkBEdLCgT@AFqIYAQaiT zp^@4YyRLYE+8E}Qg`yDmC!2Biq9d0%8=xNs z;d}DU^JG0Ff-?La#!GhU)Dh0D)(3*O1SC4AoTar535XttLhDEb%*}-A7mi0CR4wPn z7~2FW7$#?dQr6Vj%emQ2zDfJt3j{B~4cK)Pan}4dlJX&cb@>)1cV&PQj4&(&#`rPX zVn8vyaEnW>0|an+7?kDY74tRF{|T5>07Bid^zHNHXM9jHqj%gs2(=It<-n-iuPv9% zVsb0(C@3RP70EXPl7fwY}lg9ZjaE26)iX|#sf^5@BIQ+qORb`h|Ed3**KRs~(5ou#wIA$fh0 z`{67O*}H(_=E~Xe;NuzH$#x^($7f=K0>1!JT4jJ%C7`+E4kCT?ZV!dQ>FydFm00Zq zq%jx#myyB5;P8Uy@&HrdYz*dg5ywv&S zR14OB5Dehx&_e};yS@6#md_ShTSKgFOIpc?sYwV>;62dbRE0?g;WPgcK{8M$GQf*n z4VE9xdHV8M`l^jkYJL0aY>)k-FgCnhLkD(0-B0W$Qe(1rFbB&0T80%h8 zg7Nu|B#6ywb?CLy`%rNYul)_r^s-ky1<5{D;EK@hl}6Pn?c($X;m1!79O`!xZkpz# zclzd+^$IU4XA~nN&^E>3*a${?eqKtzu4_Y9|Lvs$D4T~gYEF(bb_l0lphMDJgy4eB zqKgLbKeVWYvjoh>j1T@|0*##V%$qtD(^mHQD*q{yo?SmQJPc45p&u1~0*HDIaFc$e z&o-YIKrT%>ab9mSnycY8NW;_@od3`g0Vtm%jc$=rz&Dh=gCWEXi8+!x6yRYj$6|whp-p zr3g;sD~gv*s!t-v@<&U}Sw(>7rAimNc0C_YCw%|ebKBU{J2RP>4DM{6RIETBR!kBmglEf$e*BC z%=~v;;MZ?~ey}>2C&DNhK*Iz6t)4E5uexa24<{E2wDGVj2a}j^5D5^Ao!nPu1dIv< zLNvw$9K{)Ky6YI?pnuT-7RS(KZAbCo-ZKI`4}mM%1DA^i`uWL7$0b1{Q@|A9u0@eV z38PX7s^k-;r4IU@VxT-PSpf>jzzU81RLe9d30-)yH3jNMvW-tZFI1XeA+7(nl(Ho`El)F<)UDGK^m+ZwAt*`JfB@Mj&$2%gdus`+YKGDq) z^ujVwmZWGj2wVtp)b|Wy=K4VxM2QuF4jK^wE2t*mJ6_E1esj-oeFN_d?|{}|p#z$M zyO~m81)m*|DAGX7s!3=cfJW6ntIK`f_e(H+m7p+yG*7#QZX)F^+37DW@JBA3&PG{s z$SF7XgCg9O7!Gv6o%!&kxT*87e?`EB05v&yno`8+4uEC+T|(&1GvFEq#bWbva~vNQ zlrW=1^(V#vWb`3c2J_A3W~C5m$ooycz;&JHU=StX8Wpz(OIEo2X?zZTcT-66LDi^P zK5#0SIzkON9JSt0PL61{`%90nx7Gkw=XKa80}=sz?_|rDalg5Cv&@@D@b79Z0u=CR zT|9%ZR~#MkVIFpt7EqT18=z$TRTbPzud7srZ<7T+YhjyZ`a2^Jx{68!N;vd|q2ZCw z^gX+RueE(MeoNKgRl(t@EX`Sq>I=!Tv#$vX=;?e05Q(1QHNyCG;OZRDf^1ptJ4V%p zzxy^yK%Po1^=PSU1M27>Ff|(+{GQm8#P_O3Zo>x)3Kj#8IG0_hr3cIxNefU6GBqGt zJBr7Ij+Mb3YwRd@B#uU3xxV_!*^Rw=lFqMxw^Ihjb2!bv%_2;0@3tYDFT8j#S`tAA`eGaOqhR{@Xe_pwY^>GZ~>%a z_Rr(Cx&sJ#`p-=HB1c4(Gu8#&a}JOMdg9S^Jz5Z5_q=go^7NGN-cngKXNW$i2=Q4E zf6nbB4+z#?L;(t1xcsvytdS9RW(GpvF@&73s^6^@U@4;+Z4hGon9qc1F`iZsC(M95vgV@zxaXzOTQMX<1^e z&xVRmoQ(mqfbup@?_Uji?Qj7|5x1RSr|B2&G`D_}1$`gc_o{(rF8gi#T$ZwDKSYrb zumUsOyAxAzvY359-#R1px%Q@-3Ilke@9EZF=KwW$Pqjlxr)j3Yjwh_R0T+eu9h?fZ zotssE(VQkbFYD+2YuoYt+kVc7|I!?*-&mIn!x(6@^cs{a5x)-ot=Fq7@-8*ol?3H2 zPVcx7DGV9G%wF!R77-6w+l0>h6ebftDhpBIm0M8a!F+R;FT7D{V9mL0rBHd_tHo2>W(K4?j0E$holII6SI-T@1o(5nN<)1(NDY8azr%7IP7IJ zk}4gJsSRAt4}h3Ktm!zy|bI+3S`U*2a z=m4|&9Uy9xi8#N*g4_bX5#dAIT11#LXiqkzXm3Ehac8G*Mf&BdlDt2?t7CYz4l6}Qz|ofe=|DI|)`71?9T&yR^Bd=% z(TbY47(_tX^8M{Q^Sn=H`i9_h)Q{)_3iMLoWQ8*`8q^Hqs@KFGsqH`AO9p{KI#ZV! z)*{B`Dt@BYl`zNqfxj6CH{{+~zIr~Gi1WVBVABD7d6=ziIJ{(|N)eb8K!+H&*C?cM<> zKPscG(yk!zjG5JRg>IiGfxGTc%ke4hwZ`u|H zL#*BG8w~b~!^8lsVueJ;g=Ag1PZP3ZDB``V+lJq!i98IBoI&6iJRv>LHMbzc;lkK` zDl-?Uq2^JXanJ&Z^p22<k0ZuALua9Nug2F3mISf}Pt`GHh@lF0y?2w1}e6 z`OZAB9uuUKI2k?z_^)>0unwq#-x-HHh`7n5w6=@Dq|85~u!t|ODuF76Vbq2RJ8(b` z*p&GQQ1O_WKfb(hd<-ghImp5Vw$*W=Ia#bh3X1rDAD7g9?mnFqSzY|Ce|k#&Tl545 z(E@iSo852kQ;BQ8_*~94X;^qwC%!11eHkMNk0y?bb@I z$ZM?AH*Xru8EdYwXZ^W;EReEv zqE?E~?@0+AzinNW;h^{K%OO1|?8^33*L^(OG8WA+w>**5QeOQV<5&SiMrt80z0mqX z{yCezlJAMNwXIeP!v=u&8=m$m_51u~m7M%$Hr}EdoXKk)=i(-~cz@rF`cikjcVEZV zolXhyVec(ZO%<`S-KN%0ta2+2SwH^h1~SzBxS=jNueaYSd@g&NQbW+$F-yyW3wIi_ z;%mo%>X2*msV|s0T%NVonw-YWSf4L4H>;F^?!^cSAj{lozdHgK{}umcwBmx*qlQhA zF(mNAWK)@Md+5$zgIuPjiuT!sESjtz16!aXtcTIJH8O)c#1C2a4;NFT$!Ag&hAJ>@ zyIFJ4Mn`|Q(tp2OSc*(N-l%WtdkYF*$~j#4#Qo))zEr7q#SS!wpD?xI+tCch@T`s6 zJTyq|C~_QPy4_07VS;A{EW_6ob*N>$SXMvgbusm->sCFtPy^egYbBvN6`wtxYhByB zijXW2^00ZRKfMUgyc7vM1Td~NF=wC24jH`ra?f5$Tj1i_hS~WTiJW_5h*ozu@oM(7 z>-_q*U%}{TO1KL#Zov(AWkvW!;FHob11wsdDy$n(YRPzRrmfB%nkrs-KdV;oB1Tbi zK1Wx|-R}N5U0=rim(JR5`nPZVVI&PqiN=YD zj2E~#jMjaA7Qb)k$(qlTftGL0N^U4%^g9KL$uEa|$_87{TUDnMozq&VwaWhJE$avh zptfxmNC6@O=Nppy-4*V;3k98YUxs}tIg(`EdcO5WvR{%l-}Y0?sg2GJhjBbfyNyTI z_r7Ph=_^+ip76+DP@P46EU+?d<8Bj}NU?N(-`|&&mFHv`9d=&3Ik2}=^Cl{MN#?i> z%ialbw=vw&#q19}8*G<*-R!XdfwoDeaOQDJvd?Ji`9+gcS{Y{@VSy2d!o?`V8+Swx z*p_Tn*|_6TLzese_eeFvs*U3 z3AR{!ZO776g05{K#vE~eiusqf8}c8|d@4KqX=>*!&FR@2=Nb-c2SS9UY$hncot^d$ zb&G}fE?bv!$K$Mx-Nj2yM;?WRzFCPq?fRG%ud*xq*}o%?9D8G_b>xIT^={-{0ZRCt z+uy$$qzZ(ppFJB~EG}4(v0oAsQaO^G@af2Sp08aqOFqKVc{eteErn%!63)}bs9O6)pNs7?q~}3%3z%*ye&=t{rIS~$=L?& z$h6^bA0#o%?*_{Gn0fR4jh~0qMTE}oNcr%(c%#dWzB{+Hj$#oThDto7Eem!(GVdCU zrkXDud;Qy|@pH>_ae>(K8Nj_?VvBDl$F5Gf6BfE?esSq8l^qJt6)1C$mVeumP}eq8 zvgq6ETU7H-v_4gQeO{6y3+AP5zV9G^GIklQw(W37?75cDt3M;bJx8?yc*eDhJ8b3s z&c)iaNo!_XRn=9qcbJ!W?Z3FAh@UZ)bEE0El-ps!KII{nBUhjFX1s?-l-vQI!-Vjp zhmGuS8GkIWW`2xDH1*xiTUicDHx%}Ft%%wGF6$YA!CGruUtpKl7VI+#h5Bl7M@7z_hG1N4VT6Z4t9{F9BcOM3e5goVAyxn8`OzQ=A;)@$nR>;)6gnm#?+ z_$gXDIcEg+iESqk6yT45-%`Ey_YJ8V?Ox|@=zL1twe8}+D>S#+6$&v&F{c-=Ee2ozuFVz`(oN*|L5DPffBCx@htZPs&_*l6f==hFAvHs6$s zE=f65w&q=@;EzATX8?Cml?H=u#~x+Z6zsE#JmFJk&+;Sh-W@GT+-T%$-Y!4#+AdH3 z&GD7i&Atnii&-x5)wAfM4gntpDDVfJ5@{E9>Cbnzw>HThvh2F?+TU{JM9Lj)wKMIV zT>{~)jCXs^32hI3X}R>{snPS){=VY)`4?^vv2wFmD&r4Jo+u^PPyG{s#P@5 z;@jczWe+7|!Pg~5R3(ka%x9#96<)R#_GdzVYwfARNJ z<}pK~FOR*A%nkL7yqsk}U-ACzTzX0Q(th*Vf0LWN!Lt9~805h#S&V=KLw^_Ud*SPIH+B@JZ;*T@_yFX$Z@}w5 zfYbr@6~NN0{;t}>h3j{}-n*@}PwvsXhD(Q46^!$a{1mu-$YOS#{$|}1m$PP_7XJ%u gmohYb4+{Oyes%V9k6Y{9Vt@h+p00i_>zopr0I;rTRR910 From c2a541f5e1c878b4e8bd7fc57c3b884f27e62924 Mon Sep 17 00:00:00 2001 From: GregValiant <64202104+GregValiant@users.noreply.github.com> Date: Thu, 14 Sep 2023 22:16:28 -0400 Subject: [PATCH 027/765] Update DisplayInfoOnLCD.py Changed "name" variable to "file_name" to avoid any conficts. --- .../scripts/DisplayInfoOnLCD.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py b/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py index 4718d55256f..d185f228876 100644 --- a/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py +++ b/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py @@ -65,7 +65,7 @@ def getSettingDataString(self): "default_value": false, "enabled": "display_option == 'filename_layer'" }, - "name": + "file_name": { "label": "Text to display:", "description": "By default the current filename will be displayed on the LCD. Enter text here to override the filename and display something else.", @@ -158,16 +158,16 @@ def execute(self, data): if display_option == "filename_layer": max_layer = 0 lcd_text = "M117 " - if self.getSettingValueByKey("name") != "": - name = self.getSettingValueByKey("name") + if self.getSettingValueByKey("file_name") != "": + file_name = self.getSettingValueByKey("file_name") else: - name = Application.getInstance().getPrintInformation().jobName + file_name = Application.getInstance().getPrintInformation().jobName if self.getSettingValueByKey("addPrefixPrinting"): lcd_text += "Printing " if not self.getSettingValueByKey("scroll"): lcd_text += "Layer " else: - lcd_text += name + " - Layer " + lcd_text += file_name + " - Layer " i = self.getSettingValueByKey("startNum") for layer in data: display_text = lcd_text + str(i) @@ -183,10 +183,10 @@ def execute(self, data): if self.getSettingValueByKey("maxlayer"): display_text = display_text + " of " + max_layer if not self.getSettingValueByKey("scroll"): - display_text = display_text + " " + name + display_text = display_text + " " + file_name else: if not self.getSettingValueByKey("scroll"): - display_text = display_text + " " + name + "!" + display_text = display_text + " " + file_name + "!" else: display_text = display_text + "!" line_index = lines.index(line) From 4d5e4ce3c5f2e2bf01ffa7a8dc8fce550a9368f1 Mon Sep 17 00:00:00 2001 From: GregValiant <64202104+GregValiant@users.noreply.github.com> Date: Sun, 24 Sep 2023 09:40:02 -0400 Subject: [PATCH 028/765] Update DisplayInfoOnLCD.py Add a line below the ";TIME:" line to convert "seconds" to Hours:Minutes --- .../scripts/DisplayInfoOnLCD.py | 23 +++++++++++-------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py b/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py index d185f228876..4f2bcc47719 100644 --- a/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py +++ b/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py @@ -37,7 +37,7 @@ from UM.Message import Message class DisplayInfoOnLCD(Script): - + def getSettingDataString(self): return """{ "name": "Display Info on LCD", @@ -200,7 +200,7 @@ def execute(self, data): message_str = self.message_to_user(self.getSettingValueByKey("speed_factor") / 100) Message(title = "Display Info on LCD - Estimated Finish Time", text = message_str[0] + "\n\n" + message_str[1] + "\n" + message_str[2] + "\n" + message_str[3]).show() return data - + # Display Progress (from 'Show Progress' and 'Display Progress on LCD')--------------------------------------- elif display_option == "display_progress": # get settings @@ -218,16 +218,21 @@ def execute(self, data): for line in lines: if ";TIME:" in line: tindex = lines.index(line) - print_time = int(line.split(":")[1]) - print_time = print_time*speed_factor + cura_time = int(line.split(":")[1]) + print_time = cura_time*speed_factor hhh = print_time/3600 hr = round(hhh // 1) mmm = round((hhh % 1) * 60) + orig_hhh = cura_time/3600 + orig_hr = round(orig_hhh // 1) + orig_mmm = round((orig_hhh % 1) * 60) if add_m118_line: lines.insert(tindex+1,"M118 Adjusted Print Time " + str(hr) + "hr " + str(mmm) + "min") lines.insert(tindex+1,"M117 ET " + str(hr) + "hr " + str(mmm) + "min") + # This line goes in to convert seconds to hours and minutes + lines.insert(tindex+1, f";Cura Time: {orig_hr}hr {orig_mmm}min") data[0] = "\n".join(lines) - data[len(data)-1] += "M117 Orig Est " + str(hr) + "hr " + str(mmm) + "min\n" - if add_m118_line: data[len(data)-1] += "M118 Orig Est w/FudgeFactor at " + str(speed_factor * 100) + "% was " + str(hr) + "hr " + str(mmm) + "min\n" + data[len(data)-1] += "M117 Orig Cura Est " + str(orig_hr) + "hr " + str(orig_mmm) + "min\n" + if add_m118_line: data[len(data)-1] += "M118 Est w/FudgeFactor " + str(speed_factor * 100) + "% was " + str(hr) + "hr " + str(mmm) + "min\n" if not display_total_layers or not display_remaining_time: base_display_text = "layer " else: @@ -347,7 +352,7 @@ def execute(self, data): message_str = self.message_to_user(speed_factor) Message(title = "Display Info on LCD - Estimated Finish Time", text = message_str[0] + "\n\n" + message_str[1] + "\n" + message_str[2] + "\n" + message_str[3]).show() return data - + def message_to_user(self, speed_factor: float): # Message the user of the projected finish time of the print (figuring a 10 minute delay from end-of-slice to start-of-print print_time = Application.getInstance().getPrintInformation().currentPrintTime.getDisplayString(DurationFormat.Format.ISO8601) @@ -369,9 +374,9 @@ def message_to_user(self, speed_factor: float): adjusted_print_time = print_seconds * speed_factor #Break down the adjusted seconds back into hh:mm:ss adj_hr = int(adjusted_print_time/3600) - print_seconds = adjusted_print_time - (adj_hr * 3600) + print_seconds = adjusted_print_time - (adj_hr * 3600) adj_min = int(print_seconds) / 60 - adj_sec = int(print_seconds - (adj_min * 60)) + adj_sec = int(print_seconds - (adj_min * 60)) #Get the print time to add to the start time time_change = datetime.timedelta(hours=adj_hr, minutes=adj_min, seconds=adj_sec) new_time = date_and_time + time_change From 243eec10dc916bd65c06a26dbfa9e015c224c989 Mon Sep 17 00:00:00 2001 From: Stephen Fluin Date: Sun, 24 Sep 2023 22:35:34 +0800 Subject: [PATCH 029/765] chore: update SlicingCrash.yaml with latest 5.4.0 release --- .github/ISSUE_TEMPLATE/SlicingCrash.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/SlicingCrash.yaml b/.github/ISSUE_TEMPLATE/SlicingCrash.yaml index c684b2cf631..daf25cf3954 100644 --- a/.github/ISSUE_TEMPLATE/SlicingCrash.yaml +++ b/.github/ISSUE_TEMPLATE/SlicingCrash.yaml @@ -23,14 +23,14 @@ body: - type: input attributes: label: Cura Version - placeholder: 5.3.1 + placeholder: 5.4.0 validations: required: true - type: markdown attributes: value: | - We work hard on improving our slicing crashes. Our most recent release is 5.3.1. - If you are not on the latest version of Cura, [you can download it here](https://github.com/Ultimaker/Cura/releases/tag/5.3.1) + We work hard on improving our slicing crashes. Our most recent release is 5.4.0. + If you are not on the latest version of Cura, [you can download it here](https://github.com/Ultimaker/Cura/releases/tag/5.4.0) - type: input attributes: label: Operating System From 7494c8af168b48ed4ae3d5ea17e673043fb439c1 Mon Sep 17 00:00:00 2001 From: Federico Rapetti Date: Mon, 25 Sep 2023 21:44:05 +0200 Subject: [PATCH 030/765] Add missing variants --- .../elegoo_neptune_3pro_0.40.inst.cfg | 13 +++++++++++++ .../elegoo_neptune_4pro_0.40.inst.cfg | 13 +++++++++++++ .../elegoo_neptune_4pro_0.60.inst.cfg | 13 +++++++++++++ .../elegoo_neptune_4pro_0.80.inst.cfg | 13 +++++++++++++ 4 files changed, 52 insertions(+) create mode 100644 resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_3pro_0.40.inst.cfg create mode 100644 resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg create mode 100644 resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg create mode 100644 resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_3pro_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_3pro_0.40.inst.cfg new file mode 100644 index 00000000000..b938fd368e2 --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_3pro_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4pro +name = 0.20mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg new file mode 100644 index 00000000000..6b6401b95f7 --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4pro +name = 0.40mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg new file mode 100644 index 00000000000..f7b4f3dccde --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4pro +name = 0.60mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg new file mode 100644 index 00000000000..e3c2e1ed54b --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4pro +name = 0.80mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + From af3562ab748284032fdd68c9ae62729a3c7590d7 Mon Sep 17 00:00:00 2001 From: Federico Rapetti Date: Tue, 26 Sep 2023 00:54:59 +0200 Subject: [PATCH 031/765] Fix Elegoo Neptune 4 Pro 0.20 variant name --- ...ptune_3pro_0.40.inst.cfg => elegoo_neptune_4pro_0.20.inst.cfg} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename resources/variants/elegoo/elegoo_neptune_4pro/{elegoo_neptune_3pro_0.40.inst.cfg => elegoo_neptune_4pro_0.20.inst.cfg} (100%) diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_3pro_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg similarity index 100% rename from resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_3pro_0.40.inst.cfg rename to resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg From 36e4d809a41465ae86b83dfb062e47e0c93abc14 Mon Sep 17 00:00:00 2001 From: 0r31 Date: Tue, 26 Sep 2023 16:38:19 +0200 Subject: [PATCH 032/765] Make change on start/end sequences to handle nozzle release --- resources/definitions/dagoma_sigma_pro.def.json | 4 ++-- resources/definitions/dagoma_sigma_pro_dual.def.json | 4 ++-- .../extruders/dagoma_sigma_pro_dual_extruder_left.def.json | 4 ++-- .../extruders/dagoma_sigma_pro_dual_extruder_right.def.json | 4 ++-- resources/extruders/dagoma_sigma_pro_extruder.def.json | 4 +++- 5 files changed, 11 insertions(+), 9 deletions(-) diff --git a/resources/definitions/dagoma_sigma_pro.def.json b/resources/definitions/dagoma_sigma_pro.def.json index 9e656d19e91..ef0f6ac1d63 100644 --- a/resources/definitions/dagoma_sigma_pro.def.json +++ b/resources/definitions/dagoma_sigma_pro.def.json @@ -26,7 +26,7 @@ "machine_width": { "default_value": 200 }, "machine_depth": { "default_value": 200 }, "machine_height": { "default_value": 501 }, - "machine_start_gcode": { "default_value": ";Start Gcode for {machine_name}\n;Author: Dagoma\n;Sliced: {date} {time}\n;Estimated print time: {print_time}\n;Print speed: {speed_print}mm/s\n;Layer height: {layer_height}mm\n;Wall thickness: {wall_thickness}mm\n;Infill density: {infill_sparse_density}%\n;Infill pattern: {infill_pattern}\n;Support: {support_enable}\n;Print temperature: {material_print_temperature}°C\n;Flow: {material_flow}%\n;Retraction amount: {retraction_amount}mm\n;Retraction speed: {retraction_retract_speed}mm/s\nG28 ;\nG90 ;absolute positioning\n;M190 S{material_bed_temperature_layer_0};\nM109 S140;\nG1 F200 E-1.0\nM106 S255 ;Activating layers fans\nG28 ;Homing\nG29 ;Calibration\nM107 ;Off Ventilateur\nM109 S{material_print_temperature_layer_0} ;Temperature for the first layer only\nG4 S30;\nG92 E0 ;Zero the extruded length again\nG1 E98 F3000\nG92 E0 ;Zero the extruded length again\nG1 F200 E-0.5\nG1 F{speed_travel}\nM117 Printing...\n" }, - "machine_end_gcode": { "default_value": ";End Gcode for {machine_name}\n;Author: Dagoma\nM104 S0\nM107 ;stop fan\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG91 ;Relative positioning\nG1 E-100 F6000;\nG1 E2 F500\nG0 Z15 ;Withdraw\nG90 ; Absolute positioning\nM0 Confirm Bed Free ;Wait user confirm to avoid hit\nG0 F2000 Z529\nM0 Click For Homing ;Wait user confirm to avoid hit\nG28" } + "machine_start_gcode": { "default_value": ";Start Gcode for {machine_name}\n;Author: Dagoma\n;Sliced: {date} {time}\n;Estimated print time: {print_time}\n;Print speed: {speed_print}mm/s\n;Layer height: {layer_height}mm\n;Wall thickness: {wall_thickness}mm\n;Infill density: {infill_sparse_density}%\n;Infill pattern: {infill_pattern}\n;Support: {support_enable}\n;Print temperature: {material_print_temperature}°C\n;Flow: {material_flow}%\n;Retraction amount: {retraction_amount}mm\n;Retraction speed: {retraction_retract_speed}mm/s\nG90 ;absolute positioning\nM190 S{material_bed_temperature_layer_0};\nM109 S140;\nG1 F200 E-1.0\nM106 S255 ;Activating layers fans\nG28 ;Homing\nG29 ;Calibration\nM107 ;Off Ventilateur\nM109 S{material_print_temperature_layer_0} ;Temperature for the first layer only\nG92 E0 ;Zero the extruded length again\nG1 X0 Y-105 Z1 F3000\nG1 F{speed_travel}\nM117 Printing...\n" }, + "machine_end_gcode": { "default_value": ";End Gcode for {machine_name}\n;Author: Dagoma\nM104 S0\nM107 ;stop fan\nM140 S0 ;heated bed heater off (if you have it)\nG92 E0\nG1 E-55 F4600\nG27\nG90 ; Absolute positioning\nT0" } } } diff --git a/resources/definitions/dagoma_sigma_pro_dual.def.json b/resources/definitions/dagoma_sigma_pro_dual.def.json index 6d296dc3ecc..ac27e93500e 100644 --- a/resources/definitions/dagoma_sigma_pro_dual.def.json +++ b/resources/definitions/dagoma_sigma_pro_dual.def.json @@ -30,7 +30,7 @@ "machine_width": { "default_value": 200 }, "machine_depth": { "default_value": 200 }, "machine_height": { "default_value": 501 }, - "machine_start_gcode": { "default_value": ";Start Gcode for {machine_name}\n;Author: Dagoma\n;Sliced: {date} {time}\n;Estimated print time: {print_time}\n;Print speed: {speed_print}mm/s\n;Layer height: {layer_height}mm\n;Wall thickness: {wall_thickness}mm\n;Infill density: {infill_sparse_density}%\n;Infill pattern: {infill_pattern}\n;Support: {support_enable}\n;Print temperature: {material_print_temperature}°C\n;Flow: {material_flow}%\n;Retraction amount: {retraction_amount}mm\n;Retraction speed: {retraction_retract_speed}mm/s\nG28 ;\nG90 ;absolute positioning\n;M190 S{material_bed_temperature_layer_0};\nM109 S140;\nG1 F200 E-1.0\nM106 S255 ;Activating layers fans\nG28 ;Homing\nG29 ;Calibration\nM107 ;Off Ventilateur\nM109 S{material_print_temperature_layer_0} ;Temperature for the first layer only\nG4 S30;\nG92 E0 ;Zero the extruded length again\nG1 E98 F3000\nG92 E0 ;Zero the extruded length again\nG1 F200 E-0.5\nG1 F{speed_travel}\nM117 Printing...\n" }, - "machine_end_gcode": { "default_value": ";End Gcode for {machine_name}\n;Author: Dagoma\nM104 S0\nM107 ;stop fan\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG91 ;Relative positioning\nG1 E-100 F6000;\nG1 E2 F500\nG0 Z15 ;Withdraw\nG90 ; Absolute positioning\nM0 Confirm Bed Free ;Wait user confirm to avoid hit\nG0 F2000 Z529\nM0 Click For Homing ;Wait user confirm to avoid hit\nG28" } + "machine_start_gcode": { "default_value": ";Start Gcode for {machine_name}\n;Author: Dagoma\n;Sliced: {date} {time}\n;Estimated print time: {print_time}\n;Print speed: {speed_print}mm/s\n;Layer height: {layer_height}mm\n;Wall thickness: {wall_thickness}mm\n;Infill density: {infill_sparse_density}%\n;Infill pattern: {infill_pattern}\n;Support: {support_enable}\n;Print temperature: {material_print_temperature}°C\n;Flow: {material_flow}%\n;Retraction amount: {retraction_amount}mm\n;Retraction speed: {retraction_retract_speed}mm/s\nG90 ;absolute positioning\nM190 S{material_bed_temperature_layer_0};\nM109 S140;\nG1 F200 E-1.0\nM106 S255 ;Activating layers fans\nG28 ;Homing\nG29 ;Calibration\nM107 ;Off Ventilateur\nM109 S{material_print_temperature_layer_0} ;Temperature for the first layer only\nG92 E0 ;Zero the extruded length again\nG1 X0 Y-105 Z1 F3000\nG1 F{speed_travel}\nM117 Printing...\n" }, + "machine_end_gcode": { "default_value": ";End Gcode for {machine_name}\n;Author: Dagoma\nM104 S0\nM107 ;stop fan\nM140 S0 ;heated bed heater off (if you have it)\nG92 E0\nG1 E-55 F4600\nG27\nG90 ; Absolute positioning\nT0" } } } diff --git a/resources/extruders/dagoma_sigma_pro_dual_extruder_left.def.json b/resources/extruders/dagoma_sigma_pro_dual_extruder_left.def.json index 1a4d557227d..067ab56b0ae 100644 --- a/resources/extruders/dagoma_sigma_pro_dual_extruder_left.def.json +++ b/resources/extruders/dagoma_sigma_pro_dual_extruder_left.def.json @@ -12,7 +12,7 @@ "extruder_nr": { "default_value": 1 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 1.75 }, - "machine_extruder_start_code": { "default_value": ";START T1\n;No temperature change\nG1 X0 Y77.5 F8000\nG92 E0\nM83\nG1 E100 F1200\nM82\nG92 E0\n" }, - "machine_extruder_end_code": { "default_value": ";END T1\nG92 E0\nM83\nG1 E-100 F4800\nM82\nG92 E0\n" } + "machine_extruder_start_code": { "default_value": ";START T1\n;No temperature change\nG1 X0 Y77.5 F8000\nG92 E0\nM83\nG1 E50 F1200\nM82\nG92 E0\n" }, + "machine_extruder_end_code": { "default_value": ";END T1\nG92 E0\nM83\nG1 E-55 F4700\nM82\nG92 E0\n" } } } diff --git a/resources/extruders/dagoma_sigma_pro_dual_extruder_right.def.json b/resources/extruders/dagoma_sigma_pro_dual_extruder_right.def.json index fe6221ae5f6..c94792aedfa 100644 --- a/resources/extruders/dagoma_sigma_pro_dual_extruder_right.def.json +++ b/resources/extruders/dagoma_sigma_pro_dual_extruder_right.def.json @@ -12,7 +12,7 @@ "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 1.75 }, - "machine_extruder_start_code": { "default_value": ";START T0\n;No temperature change\nG1 X0 Y77.5 F8000\nG92 E0\nM83\nG1 E100 F1200\nM82\nG92 E0\n" }, - "machine_extruder_end_code": { "default_value": ";END T0\nG92 E0\nM83\nG1 E-100 F4800\nM82\nG92 E0\n" } + "machine_extruder_start_code": { "default_value": ";START T0\n;No temperature change\nG1 X0 Y77.5 F8000\nG92 E0\nM83\nG1 E50 F1200\nM82\nG92 E0\n" }, + "machine_extruder_end_code": { "default_value": ";END T0\nG92 E0\nM83\nG1 E-55 F4700\nM82\nG92 E0\n" } } } diff --git a/resources/extruders/dagoma_sigma_pro_extruder.def.json b/resources/extruders/dagoma_sigma_pro_extruder.def.json index 3c2c2b69da3..82253a0b0aa 100644 --- a/resources/extruders/dagoma_sigma_pro_extruder.def.json +++ b/resources/extruders/dagoma_sigma_pro_extruder.def.json @@ -11,6 +11,8 @@ { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 } + "material_diameter": { "default_value": 1.75 }, + "machine_extruder_start_code": { "default_value": ";START T0\n;No temperature change\nG1 X0 Y77.5 F8000\nG92 E0\nM83\nG1 E50 F1200\nM82\nG92 E0\n" }, + "machine_extruder_end_code": { "default_value": ";END T0\nG92 E0\nM83\nG1 E-55 F4700\nM82\nG92 E0\n" } } } From c11ba5aa4fc61d71a1b2d5b0dacaf9afe65bee0e Mon Sep 17 00:00:00 2001 From: 0r31 Date: Tue, 26 Sep 2023 17:06:38 +0200 Subject: [PATCH 033/765] Add default prime tower position for sigma pro dual --- resources/definitions/dagoma_sigma_pro_dual.def.json | 4 +++- .../dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg | 2 -- .../dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg | 2 -- .../dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg | 2 -- .../dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg | 2 -- 5 files changed, 3 insertions(+), 9 deletions(-) diff --git a/resources/definitions/dagoma_sigma_pro_dual.def.json b/resources/definitions/dagoma_sigma_pro_dual.def.json index ac27e93500e..2fbf85580dd 100644 --- a/resources/definitions/dagoma_sigma_pro_dual.def.json +++ b/resources/definitions/dagoma_sigma_pro_dual.def.json @@ -31,6 +31,8 @@ "machine_depth": { "default_value": 200 }, "machine_height": { "default_value": 501 }, "machine_start_gcode": { "default_value": ";Start Gcode for {machine_name}\n;Author: Dagoma\n;Sliced: {date} {time}\n;Estimated print time: {print_time}\n;Print speed: {speed_print}mm/s\n;Layer height: {layer_height}mm\n;Wall thickness: {wall_thickness}mm\n;Infill density: {infill_sparse_density}%\n;Infill pattern: {infill_pattern}\n;Support: {support_enable}\n;Print temperature: {material_print_temperature}°C\n;Flow: {material_flow}%\n;Retraction amount: {retraction_amount}mm\n;Retraction speed: {retraction_retract_speed}mm/s\nG90 ;absolute positioning\nM190 S{material_bed_temperature_layer_0};\nM109 S140;\nG1 F200 E-1.0\nM106 S255 ;Activating layers fans\nG28 ;Homing\nG29 ;Calibration\nM107 ;Off Ventilateur\nM109 S{material_print_temperature_layer_0} ;Temperature for the first layer only\nG92 E0 ;Zero the extruded length again\nG1 X0 Y-105 Z1 F3000\nG1 F{speed_travel}\nM117 Printing...\n" }, - "machine_end_gcode": { "default_value": ";End Gcode for {machine_name}\n;Author: Dagoma\nM104 S0\nM107 ;stop fan\nM140 S0 ;heated bed heater off (if you have it)\nG92 E0\nG1 E-55 F4600\nG27\nG90 ; Absolute positioning\nT0" } + "machine_end_gcode": { "default_value": ";End Gcode for {machine_name}\n;Author: Dagoma\nM104 S0\nM107 ;stop fan\nM140 S0 ;heated bed heater off (if you have it)\nG92 E0\nG1 E-55 F4600\nG27\nG90 ; Absolute positioning\nT0" }, + "prime_tower_position_x": { "value": 17.5 }, + "prime_tower_position_y": { "value": 60 } } } diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg index f0a7e5dbde6..e8173416c91 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg @@ -32,8 +32,6 @@ ooze_shield_enabled = False prime_tower_brim_enable = True prime_tower_enable = True prime_tower_min_volume = 44 -prime_tower_position_x = 12.5 -prime_tower_position_y = 65 prime_tower_size = 25 prime_tower_wipe_enabled = False retraction_amount = 3.0 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg index 1b4a28b45c9..b9fef0b7d32 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg @@ -32,8 +32,6 @@ ooze_shield_enabled = False prime_tower_brim_enable = True prime_tower_enable = True prime_tower_min_volume = 44 -prime_tower_position_x = 12.5 -prime_tower_position_y = 65 prime_tower_size = 25 prime_tower_wipe_enabled = False retraction_amount = 3.0 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg index 19e1adcd1cd..d6d21f9a8df 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg @@ -32,8 +32,6 @@ ooze_shield_enabled = False prime_tower_brim_enable = True prime_tower_enable = True prime_tower_min_volume = 24 -prime_tower_position_x = 12.5 -prime_tower_position_y = 65 prime_tower_size = 25 prime_tower_wipe_enabled = True retraction_amount = 10 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg index bd86ce42aa4..400aa3e751f 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg @@ -32,8 +32,6 @@ ooze_shield_enabled = False prime_tower_brim_enable = True prime_tower_enable = True prime_tower_min_volume = 44 -prime_tower_position_x = 12.5 -prime_tower_position_y = 65 prime_tower_size = 25 prime_tower_wipe_enabled = True retraction_amount = 10 From 6d0e0f2cbc826d03c76d75f3879d6b302351703d Mon Sep 17 00:00:00 2001 From: Christopher Peredy <16451370+mastercaution@users.noreply.github.com> Date: Wed, 27 Sep 2023 01:15:58 +0200 Subject: [PATCH 034/765] Add support for ELEGOO Neptune 4 --- .../definitions/elegoo_neptune_4.def.json | 187 ++++++++++++++++++ .../elegoo_neptune4_extruder_0.def.json | 15 ++ ...elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg | 16 ++ ...o_n4_aa0.4_pla_0.15mm_engineering.inst.cfg | 24 +++ ...elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg | 16 ++ ...oo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg | 24 +++ .../elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg | 16 ++ .../elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg | 23 +++ .../elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg | 23 +++ .../neptune_4/elegoo_n4_layer_0.05.inst.cfg | 16 ++ .../neptune_4/elegoo_n4_layer_0.10.inst.cfg | 16 ++ .../neptune_4/elegoo_n4_layer_0.15.inst.cfg | 16 ++ .../neptune_4/elegoo_n4_layer_0.20.inst.cfg | 16 ++ .../neptune_4/elegoo_n4_layer_0.30.inst.cfg | 16 ++ .../neptune_4/elegoo_n4_layer_0.40.inst.cfg | 16 ++ .../neptune_4/elegoo_n4_layer_0.60.inst.cfg | 16 ++ ...goo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg | 21 ++ ...goo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg | 20 ++ ...goo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg | 19 ++ ...goo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg | 21 ++ .../elegoo_neptune_4_0.20.inst.cfg | 13 ++ .../elegoo_neptune_4_0.40.inst.cfg | 13 ++ .../elegoo_neptune_4_0.60.inst.cfg | 13 ++ .../elegoo_neptune_4_0.80.inst.cfg | 13 ++ 24 files changed, 589 insertions(+) create mode 100644 resources/definitions/elegoo_neptune_4.def.json create mode 100644 resources/extruders/elegoo_neptune4_extruder_0.def.json create mode 100644 resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg create mode 100644 resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg create mode 100644 resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg create mode 100644 resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg create mode 100644 resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg create mode 100644 resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg create mode 100644 resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg create mode 100644 resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.05.inst.cfg create mode 100644 resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.10.inst.cfg create mode 100644 resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.15.inst.cfg create mode 100644 resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.20.inst.cfg create mode 100644 resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.30.inst.cfg create mode 100644 resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.40.inst.cfg create mode 100644 resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.60.inst.cfg create mode 100644 resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg create mode 100644 resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg create mode 100644 resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg create mode 100644 resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg create mode 100644 resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.20.inst.cfg create mode 100644 resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.40.inst.cfg create mode 100644 resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.60.inst.cfg create mode 100644 resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.80.inst.cfg diff --git a/resources/definitions/elegoo_neptune_4.def.json b/resources/definitions/elegoo_neptune_4.def.json new file mode 100644 index 00000000000..0238c2aeadd --- /dev/null +++ b/resources/definitions/elegoo_neptune_4.def.json @@ -0,0 +1,187 @@ +{ + "version": 2, + "name": "ELEGOO NEPTUNE 4", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "mastercaution", + "manufacturer": "ELEGOO", + "file_formats": "text/x-gcode", + "platform": "elegoo_platform.3mf", + "exclude_materials": [ + "generic_nylon", + "generic_hips", + "generic_bvoh", + "generic_cpe", + "generic_pc", + "generic_pva", + "generic_pvc" + ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": { "0": "elegoo_neptune4_extruder_0" }, + "platform_offset": [ + -2.2, + 14.5, + -31 + ], + "preferred_material": "generic_pla_175", + "preferred_quality_type": "Elegoo_N4_layer_020", + "preferred_variant_name": "0.40mm_Elegoo_Nozzle", + "variants_name": "Nozzle Size" + }, + "overrides": + { + "machine_name": { "default_value": "ELEGOO NEPTUNE 4" }, + "machine_width": { "default_value": 235 }, + "machine_depth": { "default_value": 230 }, + "machine_height": { "default_value": 270 }, + "machine_acceleration": { "value": 1000 }, + "machine_heated_bed": { "default_value": true }, + "machine_max_acceleration_e": { "value": 5000 }, + "machine_max_acceleration_x": { "value": 1000 }, + "machine_max_acceleration_y": { "value": 1000 }, + "machine_max_jerk_xy": { "value": 8.0 }, + "machine_nozzle_cool_down_speed": { "value": 0.75 }, + "machine_nozzle_heat_up_speed": { "value": 1.6 }, + "machine_head_with_fans_polygon": + { + "value": [ + [-55, 30], + [55, 30], + [55, -35], + [-55, -35] + ] + }, + "gantry_height": { "value": 6 }, + + "retraction_amount": { "default_value": 0.5 }, + "retraction_speed": { "default_value": 45 }, + "retraction_count_max": { "value": 80 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_start_gcode": { "default_value": "G28 ;home\nG92 E0 ;Reset Extruder\nG1 Z4.0 F3000 ;Move Z Axis up\nG92 E0 ;Reset Extruder\nG1 X1.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X1.1 Y80.0 Z0.28 F1500.0 E10 ;Draw the first line\nG1 X1.4 Y80.0 Z0.28 F5000.0 ;Move to side a little\nG1 X1.4 Y20 Z0.28 F1500.0 E20 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up" }, + "machine_end_gcode": { "default_value": "G91 ;Relative positionning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z2 ;Raise Z more\nG90 ;Absolute positionning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, + + "acceleration_enabled": { "value": true }, + "acceleration_layer_0": { "value": 3000 }, + "acceleration_print": { "value": 3000 }, + "acceleration_travel": { "value": 5000 }, + + "cool_fan_full_layer": { "value": 2 }, + "cool_fan_speed": { "enabled": "resolveOrValue('cool_fan_enabled') == 'true' or cool_fan_enabled" }, + "cool_fan_speed_0": + { + "enabled": "resolveOrValue('cool_fan_enabled') == 'true' or cool_fan_enabled", + "value": "cool_fan_speed if resolveOrValue('adhesion_type') == 'raft' else 0" + }, + "cool_fan_speed_max": { "enabled": "resolveOrValue('cool_fan_enabled') == 'true' or cool_fan_enabled" }, + "cool_fan_speed_min": { "enabled": "resolveOrValue('cool_fan_enabled') == 'true' or cool_fan_enabled" }, + + "infill_line_width": + { + "default_value": 0.45, + "value": "line_width + 0.05" + }, + "speed_print": + { + "maximum_value_warning": "500", + "default_value": 250 + }, + "speed_wall": + { + "maximum_value_warning": "500", + "default_value": 125, + "value": "speed_print / 2" + }, + "speed_wall_0": + { + "maximum_value_warning": "500", + "default_value": 125, + "value": "speed_wall" + }, + "speed_wall_x": + { + "maximum_value_warning": "500", + "default_value": 200, + "value": "speed_wall + (speed_wall / 2)" + }, + "speed_topbottom": + { + "maximum_value_warning": "500", + "default_value": 125, + "value": "speed_wall" + }, + "speed_travel": + { + "maximum_value_warning": "500", + "default_value": 250, + "value": "speed_print" + }, + "speed_layer_0": + { + "maximum_value_warning": "500", + "default_value": 60, + "value": 60 + }, + "speed_print_layer_0": { "maximum_value_warning": "500" }, + "speed_travel_layer_0": + { + "maximum_value_warning": "500", + "default_value": 200, + "value": "speed_layer_0*2" + }, + "speed_infill": + { + "maximum_value_warning": "500", + "value": "speed_print" + }, + "speed_roofing": { "maximum_value_warning": "500" }, + "speed_support": { "maximum_value_warning": "500" }, + "speed_support_infill": { "maximum_value_warning": "500" }, + "speed_support_interface": { "maximum_value_warning": "500" }, + "speed_support_roof": { "maximum_value_warning": "500" }, + "speed_support_bottom": { "maximum_value_warning": "500" }, + "speed_prime_tower": { "maximum_value_warning": "500" }, + "skirt_brim_speed": + { + "maximum_value_warning": "500", + "value": "speed_print_layer_0" + }, + + "brim_gap": { "default_value": 0.1 }, + "brim_width": { "default_value": 5 }, + "gradual_support_infill_step_height": { "value": "5" }, + "infill_overlap": { "value": "10 if infill_sparse_density < 20.01 else 5 if infill_sparse_density < 40.01 and infill_pattern != 'concentric' else 0" }, + "infill_overlap_mm": { "value": "0.5 * (infill_line_width + (wall_line_width_x if wall_line_count > 1 else wall_line_width_0)) * infill_overlap / 100" }, + "infill_pattern": { "value": "'lines' if (infill_sparse_density > 35 or speed_print >= 80) else 'grid' " }, + "initial_layer_line_width_factor": { "value": "100.0 if resolveOrValue('adhesion_type') == 'raft' else 125 if line_width < 0.5 else 110" }, + "material_diameter": { "value": 1.75 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "material_print_temperature_layer_0": { "value": "210 if material_print_temperature < 210 else material_print_temperature" }, + "min_infill_area": { "value": "5" }, + "minimum_interface_area": { "default_value": 10 }, + "minimum_support_area": { "value": "3 if support_structure == 'normal' else 0" }, + "optimize_wall_printing_order": { "default_value": true }, + "prime_tower_brim_enable": { "default_value": true }, + "prime_tower_min_volume": { "value": "(layer_height) * (prime_tower_size / 2)**2 * 3 * 0.5 " }, + "prime_tower_size": { "default_value": 30 }, + "prime_tower_wipe_enabled": { "default_value": false }, + "raft_base_speed": { "value": "0.4 * raft_speed" }, + "raft_base_thickness": { "value": "resolveOrValue('machine_nozzle_size') * 0.75" }, + "raft_interface_speed": { "value": "0.6 * raft_speed" }, + "raft_interface_thickness": { "value": "resolveOrValue('machine_nozzle_size') * 0.75" }, + "raft_margin": { "default_value": 5 }, + "raft_surface_fan_speed": { "value": "cool_fan_speed" }, + "raft_surface_line_width": { "value": "machine_nozzle_size * 1.25" }, + "raft_surface_thickness": { "value": "resolveOrValue('machine_nozzle_size')*0.375" }, + "retraction_hop": { "value": "layer_height if layer_height > 0.199 else 0.2" }, + + "support_material_flow": { "value": "material_flow * 0.95" }, + "support_xy_distance": { "value": "machine_nozzle_size * 1.7" }, + "support_xy_distance_overhang": { "value": "machine_nozzle_size * 1.2 if support_interface_enable else machine_nozzle_size * 0.8" }, + "support_z_distance": { "value": "layer_height * 1.2 if (support_interface_enable and support_bottom_enable and layer_height < 0.16) or support_bottom_enable else layer_height" } + } +} \ No newline at end of file diff --git a/resources/extruders/elegoo_neptune4_extruder_0.def.json b/resources/extruders/elegoo_neptune4_extruder_0.def.json new file mode 100644 index 00000000000..938cfc8da5c --- /dev/null +++ b/resources/extruders/elegoo_neptune4_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "elegoo_neptune_4", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg new file mode 100644 index 00000000000..9ed5e630537 --- /dev/null +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = elegoo_neptune_4 +name = Visual +version = 4 + +[metadata] +intent_category = visual +material = generic_pla +quality_type = Elegoo_N4_layer_005 +setting_version = 22 +type = intent +variant = 0.40mm_Elegoo_Nozzle + +[values] +top_bottom_thickness = 1.05 + diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg new file mode 100644 index 00000000000..31914fbb0e4 --- /dev/null +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = elegoo_neptune_4 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +is_experimental = True +material = generic_pla +quality_type = Elegoo_N4_layer_015 +setting_version = 22 +type = intent +variant = 0.40mm_Elegoo_Nozzle + +[values] +speed_infill = =speed_print +speed_print = 150 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg new file mode 100644 index 00000000000..71e2945204d --- /dev/null +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = elegoo_neptune_4 +name = Visual +version = 4 + +[metadata] +intent_category = visual +material = generic_pla +quality_type = Elegoo_N4_layer_015 +setting_version = 22 +type = intent +variant = 0.40mm_Elegoo_Nozzle + +[values] +top_bottom_thickness = 1.05 + diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg new file mode 100644 index 00000000000..c67118c7e4b --- /dev/null +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = elegoo_neptune_4 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +is_experimental = True +material = generic_pla +quality_type = Elegoo_N4_layer_010 +setting_version = 22 +type = intent +variant = 0.40mm_Elegoo_Nozzle + +[values] +speed_infill = =speed_print +speed_print = 150 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg new file mode 100644 index 00000000000..9ee290868a3 --- /dev/null +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = elegoo_neptune_4 +name = Visual +version = 4 + +[metadata] +intent_category = visual +material = generic_pla +quality_type = Elegoo_N4_layer_010 +setting_version = 22 +type = intent +variant = 0.40mm_Elegoo_Nozzle + +[values] +top_bottom_thickness = 1.05 + diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg new file mode 100644 index 00000000000..8171f658f24 --- /dev/null +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg @@ -0,0 +1,23 @@ +[general] +definition = elegoo_neptune_4 +name = Quick +version = 4 + +[metadata] +intent_category = quick +is_experimental = True +material = generic_pla +quality_type = Elegoo_N4_layer_020 +setting_version = 22 +type = intent +variant = 0.40mm_Elegoo_Nozzle + +[values] +infill_sparse_density = 15 +speed_infill = =speed_print +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = 0.8 + diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg new file mode 100644 index 00000000000..7fe60ec396f --- /dev/null +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg @@ -0,0 +1,23 @@ +[general] +definition = elegoo_neptune_4 +name = Quick +version = 4 + +[metadata] +intent_category = quick +is_experimental = True +material = generic_pla +quality_type = Elegoo_N4_layer_030 +setting_version = 22 +type = intent +variant = 0.40mm_Elegoo_Nozzle + +[values] +infill_sparse_density = 10 +speed_infill = =speed_print +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = 0.8 + diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.05.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.05.inst.cfg new file mode 100644 index 00000000000..f065b8fb8fa --- /dev/null +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.05.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = elegoo_neptune_4 +name = Extra Fine +version = 4 + +[metadata] +global_quality = True +quality_type = Elegoo_N4_layer_005 +setting_version = 22 +type = quality +weight = -1 + +[values] +layer_height = 0.05 +layer_height_0 = 0.12 + diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.10.inst.cfg new file mode 100644 index 00000000000..5f6bf18811b --- /dev/null +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.10.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = elegoo_neptune_4 +name = Fine +version = 4 + +[metadata] +global_quality = True +quality_type = Elegoo_N4_layer_010 +setting_version = 22 +type = quality +weight = -2 + +[values] +layer_height = 0.10 +layer_height_0 = 0.12 + diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.15.inst.cfg new file mode 100644 index 00000000000..47496c37904 --- /dev/null +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.15.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = elegoo_neptune_4 +name = Normal +version = 4 + +[metadata] +global_quality = True +quality_type = Elegoo_N4_layer_015 +setting_version = 22 +type = quality +weight = -3 + +[values] +layer_height = 0.15 +layer_height_0 = 0.15 + diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.20.inst.cfg new file mode 100644 index 00000000000..a360084c448 --- /dev/null +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.20.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = elegoo_neptune_4 +name = Fast +version = 4 + +[metadata] +global_quality = True +quality_type = Elegoo_N4_layer_020 +setting_version = 22 +type = quality +weight = -4 + +[values] +layer_height = 0.20 +layer_height_0 = 0.20 + diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.30.inst.cfg new file mode 100644 index 00000000000..7f2057882c0 --- /dev/null +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.30.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = elegoo_neptune_4 +name = Extra Fast +version = 4 + +[metadata] +global_quality = True +quality_type = Elegoo_N4_layer_030 +setting_version = 22 +type = quality +weight = -6 + +[values] +layer_height = 0.30 +layer_height_0 = 0.30 + diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.40.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.40.inst.cfg new file mode 100644 index 00000000000..612b2dfc278 --- /dev/null +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.40.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = elegoo_neptune_4 +name = Turbo +version = 4 + +[metadata] +global_quality = True +quality_type = Elegoo_N4_layer_040 +setting_version = 22 +type = quality +weight = -6 + +[values] +layer_height = 0.40 +layer_height_0 = 0.40 + diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.60.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.60.inst.cfg new file mode 100644 index 00000000000..8b68acd37ae --- /dev/null +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.60.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = elegoo_neptune_4 +name = Extra Turbo +version = 4 + +[metadata] +global_quality = True +quality_type = Elegoo_N4_layer_060 +setting_version = 22 +type = quality +weight = -6 + +[values] +layer_height = 0.60 +layer_height_0 = 0.60 + diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg new file mode 100644 index 00000000000..c5af87957da --- /dev/null +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = elegoo_neptune_4 +name = pla_noz0.40_lay0.10 +version = 4 + +[metadata] +material = generic_pla +quality_type = Elegoo_N4_layer_010 +setting_version = 22 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +prime_tower_enable = False +raft_airgap = 0.25 +speed_topbottom = =math.ceil(speed_print * 35 / 70) +speed_wall = =math.ceil(speed_print * 45 / 70) +speed_wall_0 = =math.ceil(speed_wall * 35 / 70) +skin_overlap = 10 +top_bottom_thickness = 1 + diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg new file mode 100644 index 00000000000..d5e650e307d --- /dev/null +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg @@ -0,0 +1,20 @@ +[general] +definition = elegoo_neptune_4 +name = pla_noz0.40_lay0.15 +version = 4 + +[metadata] +material = generic_pla +quality_type = Elegoo_N4_layer_015 +setting_version = 22 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +prime_tower_enable = False +raft_airgap = 0.25 +speed_topbottom = =math.ceil(speed_print * 35 / 70) +speed_wall = =math.ceil(speed_print * 45 / 70) +speed_wall_0 = =math.ceil(speed_wall * 35 / 70) +top_bottom_thickness = 1 + diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg new file mode 100644 index 00000000000..f097c8b7a5d --- /dev/null +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = elegoo_neptune_4 +name = pla_noz0.40_lay0.20 +version = 4 + +[metadata] +material = generic_pla +quality_type = Elegoo_N4_layer_020 +setting_version = 22 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +infill_sparse_density = 15 +prime_tower_enable = False +raft_airgap = 0.25 +skin_overlap = 20 +top_bottom_thickness = 0.8 + diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg new file mode 100644 index 00000000000..1e6b84c6e3a --- /dev/null +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = elegoo_neptune_4 +name = pla_noz0.40_lay0.30 +version = 4 + +[metadata] +material = generic_pla +quality_type = Elegoo_N4_layer_030 +setting_version = 22 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' +infill_sparse_density = 15 +material_print_temperature = =default_material_print_temperature + 5 +prime_tower_enable = False +raft_airgap = 0.25 +skin_overlap = 20 +top_bottom_thickness = 0.9 + diff --git a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.20.inst.cfg new file mode 100644 index 00000000000..3498effd991 --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.20.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4 +name = 0.20mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.40.inst.cfg new file mode 100644 index 00000000000..086826b12b9 --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4 +name = 0.40mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.60.inst.cfg new file mode 100644 index 00000000000..5ad651685a7 --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.60.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4 +name = 0.60mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.80.inst.cfg new file mode 100644 index 00000000000..3380d42cc8a --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.80.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4 +name = 0.80mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + From f8ea66604ed60746af31cc35a8772552b26401e7 Mon Sep 17 00:00:00 2001 From: Christopher Peredy <16451370+mastercaution@users.noreply.github.com> Date: Thu, 28 Sep 2023 16:52:54 +0200 Subject: [PATCH 035/765] EN4 Improve print time estimation --- resources/definitions/elegoo_neptune_4.def.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/definitions/elegoo_neptune_4.def.json b/resources/definitions/elegoo_neptune_4.def.json index 0238c2aeadd..f48571866af 100644 --- a/resources/definitions/elegoo_neptune_4.def.json +++ b/resources/definitions/elegoo_neptune_4.def.json @@ -38,11 +38,11 @@ "machine_width": { "default_value": 235 }, "machine_depth": { "default_value": 230 }, "machine_height": { "default_value": 270 }, - "machine_acceleration": { "value": 1000 }, + "machine_acceleration": { "value": 3000 }, "machine_heated_bed": { "default_value": true }, "machine_max_acceleration_e": { "value": 5000 }, - "machine_max_acceleration_x": { "value": 1000 }, - "machine_max_acceleration_y": { "value": 1000 }, + "machine_max_acceleration_x": { "value": 5000 }, + "machine_max_acceleration_y": { "value": 5000 }, "machine_max_jerk_xy": { "value": 8.0 }, "machine_nozzle_cool_down_speed": { "value": 0.75 }, "machine_nozzle_heat_up_speed": { "value": 1.6 }, From 952a704b733f634f312bb0f6b59fd94a67053060 Mon Sep 17 00:00:00 2001 From: Christopher Peredy <16451370+mastercaution@users.noreply.github.com> Date: Thu, 28 Sep 2023 23:25:05 +0200 Subject: [PATCH 036/765] EN4 tune visual profiles --- .../PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg | 2 +- .../PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg | 2 +- .../PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg index 9ed5e630537..d20971cf4e5 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg @@ -13,4 +13,4 @@ variant = 0.40mm_Elegoo_Nozzle [values] top_bottom_thickness = 1.05 - +skin_line_width = 0.4 diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg index 71e2945204d..f32d4116881 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg @@ -13,4 +13,4 @@ variant = 0.40mm_Elegoo_Nozzle [values] top_bottom_thickness = 1.05 - +skin_line_width = 0.4 diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg index 9ee290868a3..33e38998ce4 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg @@ -13,4 +13,4 @@ variant = 0.40mm_Elegoo_Nozzle [values] top_bottom_thickness = 1.05 - +skin_line_width = 0.4 From 7bc22a0f9d47a44aa364af22cf3c3daca37d1b36 Mon Sep 17 00:00:00 2001 From: Christopher Peredy <16451370+mastercaution@users.noreply.github.com> Date: Fri, 29 Sep 2023 14:53:52 +0200 Subject: [PATCH 037/765] EN4 fine-tune profiles --- .../PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg | 1 + .../PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg | 7 ++++--- .../PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg | 1 + .../PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg | 7 ++++--- .../PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg | 3 ++- .../PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg | 5 +++-- .../PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg | 4 +++- .../elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg | 2 +- 8 files changed, 19 insertions(+), 11 deletions(-) diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg index d20971cf4e5..f8b04bbd9c8 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg @@ -12,5 +12,6 @@ type = intent variant = 0.40mm_Elegoo_Nozzle [values] +speed_print = 150 top_bottom_thickness = 1.05 skin_line_width = 0.4 diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg index 31914fbb0e4..c0da2bdbf7f 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg @@ -13,10 +13,11 @@ type = intent variant = 0.40mm_Elegoo_Nozzle [values] -speed_infill = =speed_print speed_print = 150 -speed_topbottom = =speed_print -speed_wall = =speed_print +speed_travel = =min(speed_print * 4 / 3, 250) if speed_print <= 250 else speed_print +speed_infill = =speed_print +speed_topbottom = =speed_print * 2 / 3 +speed_wall = =speed_print * 2 / 3 speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg index f32d4116881..64f68abefba 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg @@ -12,5 +12,6 @@ type = intent variant = 0.40mm_Elegoo_Nozzle [values] +speed_print = 150 top_bottom_thickness = 1.05 skin_line_width = 0.4 diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg index c67118c7e4b..8c4fd4400fa 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg @@ -13,10 +13,11 @@ type = intent variant = 0.40mm_Elegoo_Nozzle [values] -speed_infill = =speed_print speed_print = 150 -speed_topbottom = =speed_print -speed_wall = =speed_print +speed_travel = =min(speed_print * 4 / 3, 250) if speed_print <= 250 else speed_print +speed_infill = =speed_print +speed_topbottom = =speed_print * 2 / 3 +speed_wall = =speed_print * 2 / 3 speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = =wall_thickness diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg index 33e38998ce4..3f25c6f4886 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg @@ -12,5 +12,6 @@ type = intent variant = 0.40mm_Elegoo_Nozzle [values] -top_bottom_thickness = 1.05 +speed_print = 150 +top_bottom_thickness = 1 skin_line_width = 0.4 diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg index 8171f658f24..a8bbaf5c56b 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg @@ -13,11 +13,12 @@ type = intent variant = 0.40mm_Elegoo_Nozzle [values] +speed_print = 300 +speed_travel = 400 infill_sparse_density = 15 speed_infill = =speed_print speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall -top_bottom_thickness = 0.8 - +top_bottom_thickness = 0.6 diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg index 7fe60ec396f..6cd4cb69b22 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg @@ -13,11 +13,13 @@ type = intent variant = 0.40mm_Elegoo_Nozzle [values] +speed_print = 300 +speed_travel = 400 infill_sparse_density = 10 speed_infill = =speed_print speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall -top_bottom_thickness = 0.8 +top_bottom_thickness = 0.6 diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg index d5e650e307d..2a19171113a 100644 --- a/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg @@ -16,5 +16,5 @@ raft_airgap = 0.25 speed_topbottom = =math.ceil(speed_print * 35 / 70) speed_wall = =math.ceil(speed_print * 45 / 70) speed_wall_0 = =math.ceil(speed_wall * 35 / 70) -top_bottom_thickness = 1 +top_bottom_thickness = 0.9 From 7b6827e128756eb3ca01ac17f07297fe45cef940 Mon Sep 17 00:00:00 2001 From: Christopher Peredy <16451370+mastercaution@users.noreply.github.com> Date: Sat, 30 Sep 2023 12:35:03 +0200 Subject: [PATCH 038/765] EN4 definition inherits elegoo_base Pros: - Less redundancy between elegoo_base and N4 definition Cons: - Changes in elegoo_base also effect N4 - I don't fully understand what presets get priority over others and when they overwrite or just extend another preset. It works for now but changes in Curas preset parsing/handling may break this profile! --- .../definitions/elegoo_neptune_4.def.json | 70 +------------------ ...elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg | 2 +- ...o_n4_aa0.4_pla_0.15mm_engineering.inst.cfg | 2 +- ...elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg | 2 +- ...oo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg | 2 +- .../elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg | 2 +- .../elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg | 2 +- .../elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg | 2 +- .../neptune_4/elegoo_n4_layer_0.05.inst.cfg | 2 +- .../neptune_4/elegoo_n4_layer_0.10.inst.cfg | 2 +- .../neptune_4/elegoo_n4_layer_0.15.inst.cfg | 2 +- .../neptune_4/elegoo_n4_layer_0.20.inst.cfg | 2 +- .../neptune_4/elegoo_n4_layer_0.30.inst.cfg | 2 +- .../neptune_4/elegoo_n4_layer_0.40.inst.cfg | 2 +- .../neptune_4/elegoo_n4_layer_0.60.inst.cfg | 2 +- ...goo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg | 2 +- ...goo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg | 2 +- ...goo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg | 2 +- ...goo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg | 2 +- 19 files changed, 21 insertions(+), 85 deletions(-) diff --git a/resources/definitions/elegoo_neptune_4.def.json b/resources/definitions/elegoo_neptune_4.def.json index f48571866af..768a8dab035 100644 --- a/resources/definitions/elegoo_neptune_4.def.json +++ b/resources/definitions/elegoo_neptune_4.def.json @@ -1,36 +1,12 @@ { "version": 2, "name": "ELEGOO NEPTUNE 4", - "inherits": "fdmprinter", + "inherits": "elegoo_base", "metadata": { "visible": true, "author": "mastercaution", - "manufacturer": "ELEGOO", - "file_formats": "text/x-gcode", - "platform": "elegoo_platform.3mf", - "exclude_materials": [ - "generic_nylon", - "generic_hips", - "generic_bvoh", - "generic_cpe", - "generic_pc", - "generic_pva", - "generic_pvc" - ], - "has_machine_quality": true, - "has_materials": true, - "has_variants": true, - "machine_extruder_trains": { "0": "elegoo_neptune4_extruder_0" }, - "platform_offset": [ - -2.2, - 14.5, - -31 - ], - "preferred_material": "generic_pla_175", - "preferred_quality_type": "Elegoo_N4_layer_020", - "preferred_variant_name": "0.40mm_Elegoo_Nozzle", - "variants_name": "Nozzle Size" + "machine_extruder_trains": { "0": "elegoo_neptune4_extruder_0" } }, "overrides": { @@ -43,7 +19,6 @@ "machine_max_acceleration_e": { "value": 5000 }, "machine_max_acceleration_x": { "value": 5000 }, "machine_max_acceleration_y": { "value": 5000 }, - "machine_max_jerk_xy": { "value": 8.0 }, "machine_nozzle_cool_down_speed": { "value": 0.75 }, "machine_nozzle_heat_up_speed": { "value": 1.6 }, "machine_head_with_fans_polygon": @@ -70,14 +45,6 @@ "acceleration_travel": { "value": 5000 }, "cool_fan_full_layer": { "value": 2 }, - "cool_fan_speed": { "enabled": "resolveOrValue('cool_fan_enabled') == 'true' or cool_fan_enabled" }, - "cool_fan_speed_0": - { - "enabled": "resolveOrValue('cool_fan_enabled') == 'true' or cool_fan_enabled", - "value": "cool_fan_speed if resolveOrValue('adhesion_type') == 'raft' else 0" - }, - "cool_fan_speed_max": { "enabled": "resolveOrValue('cool_fan_enabled') == 'true' or cool_fan_enabled" }, - "cool_fan_speed_min": { "enabled": "resolveOrValue('cool_fan_enabled') == 'true' or cool_fan_enabled" }, "infill_line_width": { @@ -150,38 +117,7 @@ "value": "speed_print_layer_0" }, - "brim_gap": { "default_value": 0.1 }, - "brim_width": { "default_value": 5 }, - "gradual_support_infill_step_height": { "value": "5" }, - "infill_overlap": { "value": "10 if infill_sparse_density < 20.01 else 5 if infill_sparse_density < 40.01 and infill_pattern != 'concentric' else 0" }, - "infill_overlap_mm": { "value": "0.5 * (infill_line_width + (wall_line_width_x if wall_line_count > 1 else wall_line_width_0)) * infill_overlap / 100" }, - "infill_pattern": { "value": "'lines' if (infill_sparse_density > 35 or speed_print >= 80) else 'grid' " }, "initial_layer_line_width_factor": { "value": "100.0 if resolveOrValue('adhesion_type') == 'raft' else 125 if line_width < 0.5 else 110" }, - "material_diameter": { "value": 1.75 }, - "material_final_print_temperature": { "value": "material_print_temperature" }, - "material_initial_print_temperature": { "value": "material_print_temperature" }, - "material_print_temperature_layer_0": { "value": "210 if material_print_temperature < 210 else material_print_temperature" }, - "min_infill_area": { "value": "5" }, - "minimum_interface_area": { "default_value": 10 }, - "minimum_support_area": { "value": "3 if support_structure == 'normal' else 0" }, - "optimize_wall_printing_order": { "default_value": true }, - "prime_tower_brim_enable": { "default_value": true }, - "prime_tower_min_volume": { "value": "(layer_height) * (prime_tower_size / 2)**2 * 3 * 0.5 " }, - "prime_tower_size": { "default_value": 30 }, - "prime_tower_wipe_enabled": { "default_value": false }, - "raft_base_speed": { "value": "0.4 * raft_speed" }, - "raft_base_thickness": { "value": "resolveOrValue('machine_nozzle_size') * 0.75" }, - "raft_interface_speed": { "value": "0.6 * raft_speed" }, - "raft_interface_thickness": { "value": "resolveOrValue('machine_nozzle_size') * 0.75" }, - "raft_margin": { "default_value": 5 }, - "raft_surface_fan_speed": { "value": "cool_fan_speed" }, - "raft_surface_line_width": { "value": "machine_nozzle_size * 1.25" }, - "raft_surface_thickness": { "value": "resolveOrValue('machine_nozzle_size')*0.375" }, - "retraction_hop": { "value": "layer_height if layer_height > 0.199 else 0.2" }, - - "support_material_flow": { "value": "material_flow * 0.95" }, - "support_xy_distance": { "value": "machine_nozzle_size * 1.7" }, - "support_xy_distance_overhang": { "value": "machine_nozzle_size * 1.2 if support_interface_enable else machine_nozzle_size * 0.8" }, - "support_z_distance": { "value": "layer_height * 1.2 if (support_interface_enable and support_bottom_enable and layer_height < 0.16) or support_bottom_enable else layer_height" } + "infill_overlap": { "value": "0 if infill_sparse_density < 40.01 and infill_pattern != 'concentric' else -5" } } } \ No newline at end of file diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg index f8b04bbd9c8..c83f21e72cc 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] intent_category = visual material = generic_pla -quality_type = Elegoo_N4_layer_005 +quality_type = Elegoo_layer_005 setting_version = 22 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg index c0da2bdbf7f..0fd0d70eeef 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering is_experimental = True material = generic_pla -quality_type = Elegoo_N4_layer_015 +quality_type = Elegoo_layer_015 setting_version = 22 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg index 64f68abefba..f4d5a778d73 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] intent_category = visual material = generic_pla -quality_type = Elegoo_N4_layer_015 +quality_type = Elegoo_layer_015 setting_version = 22 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg index 8c4fd4400fa..a77fbde88cb 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering is_experimental = True material = generic_pla -quality_type = Elegoo_N4_layer_010 +quality_type = Elegoo_layer_010 setting_version = 22 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg index 3f25c6f4886..b40164ff744 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] intent_category = visual material = generic_pla -quality_type = Elegoo_N4_layer_010 +quality_type = Elegoo_layer_010 setting_version = 22 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg index a8bbaf5c56b..1767ca88074 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick is_experimental = True material = generic_pla -quality_type = Elegoo_N4_layer_020 +quality_type = Elegoo_layer_020 setting_version = 22 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg index 6cd4cb69b22..4880142c06f 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick is_experimental = True material = generic_pla -quality_type = Elegoo_N4_layer_030 +quality_type = Elegoo_layer_030 setting_version = 22 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.05.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.05.inst.cfg index f065b8fb8fa..8deff4ba88c 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.05.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.05.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] global_quality = True -quality_type = Elegoo_N4_layer_005 +quality_type = Elegoo_layer_005 setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.10.inst.cfg index 5f6bf18811b..4d19d0f21bd 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.10.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] global_quality = True -quality_type = Elegoo_N4_layer_010 +quality_type = Elegoo_layer_010 setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.15.inst.cfg index 47496c37904..64f00befdfb 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.15.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] global_quality = True -quality_type = Elegoo_N4_layer_015 +quality_type = Elegoo_layer_015 setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.20.inst.cfg index a360084c448..06995a4e438 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] global_quality = True -quality_type = Elegoo_N4_layer_020 +quality_type = Elegoo_layer_020 setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.30.inst.cfg index 7f2057882c0..09a6e30e7cd 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] global_quality = True -quality_type = Elegoo_N4_layer_030 +quality_type = Elegoo_layer_030 setting_version = 22 type = quality weight = -6 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.40.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.40.inst.cfg index 612b2dfc278..ac180ca1ab7 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.40.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] global_quality = True -quality_type = Elegoo_N4_layer_040 +quality_type = Elegoo_layer_040 setting_version = 22 type = quality weight = -6 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.60.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.60.inst.cfg index 8b68acd37ae..a053731bf42 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.60.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] global_quality = True -quality_type = Elegoo_N4_layer_060 +quality_type = Elegoo_layer_060 setting_version = 22 type = quality weight = -6 diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg index c5af87957da..f9dcf2c75b7 100644 --- a/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] material = generic_pla -quality_type = Elegoo_N4_layer_010 +quality_type = Elegoo_layer_010 setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg index 2a19171113a..209ce52fa2b 100644 --- a/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] material = generic_pla -quality_type = Elegoo_N4_layer_015 +quality_type = Elegoo_layer_015 setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg index f097c8b7a5d..9805a1ae5a8 100644 --- a/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] material = generic_pla -quality_type = Elegoo_N4_layer_020 +quality_type = Elegoo_layer_020 setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg index 1e6b84c6e3a..cb6ca323e69 100644 --- a/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] material = generic_pla -quality_type = Elegoo_N4_layer_030 +quality_type = Elegoo_layer_030 setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle From ab3d44d7d4a5afdbc18af7e39f4c359891318dd5 Mon Sep 17 00:00:00 2001 From: Christopher Peredy <16451370+mastercaution@users.noreply.github.com> Date: Sat, 30 Sep 2023 21:02:19 +0200 Subject: [PATCH 039/765] EN4 Fix print one at a time Removed `gantry_height` because it covers the entire build plate and makes printing one at a time practically impossible. The user should manually verify that the printing order is correct, so the external part cooler does not nock of already printed models. --- resources/definitions/elegoo_neptune_4.def.json | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/resources/definitions/elegoo_neptune_4.def.json b/resources/definitions/elegoo_neptune_4.def.json index 768a8dab035..96776d0cce2 100644 --- a/resources/definitions/elegoo_neptune_4.def.json +++ b/resources/definitions/elegoo_neptune_4.def.json @@ -24,13 +24,12 @@ "machine_head_with_fans_polygon": { "value": [ - [-55, 30], - [55, 30], - [55, -35], - [-55, -35] + [-40, 50], + [-40, -30], + [40, 50], + [40, -30] ] }, - "gantry_height": { "value": 6 }, "retraction_amount": { "default_value": 0.5 }, "retraction_speed": { "default_value": 45 }, From 2074bf4ef551c8e636540e35c802e4356a4dd796 Mon Sep 17 00:00:00 2001 From: Christopher Peredy <16451370+mastercaution@users.noreply.github.com> Date: Sun, 1 Oct 2023 00:14:48 +0200 Subject: [PATCH 040/765] EN4 Remove obsolete extruder defintion --- .../extruders/elegoo_neptune4_extruder_0.def.json | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 resources/extruders/elegoo_neptune4_extruder_0.def.json diff --git a/resources/extruders/elegoo_neptune4_extruder_0.def.json b/resources/extruders/elegoo_neptune4_extruder_0.def.json deleted file mode 100644 index 938cfc8da5c..00000000000 --- a/resources/extruders/elegoo_neptune4_extruder_0.def.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": 2, - "name": "Extruder 1", - "inherits": "fdmextruder", - "metadata": - { - "machine": "elegoo_neptune_4", - "position": "0" - }, - "overrides": - { - "extruder_nr": { "default_value": 0 }, - "material_diameter": { "default_value": 1.75 } - } -} \ No newline at end of file From aa9bdaa3cce22c309c10f0b9ec71d70da904ebde Mon Sep 17 00:00:00 2001 From: Christopher Peredy <16451370+mastercaution@users.noreply.github.com> Date: Sun, 1 Oct 2023 00:15:45 +0200 Subject: [PATCH 041/765] EN4 Add Neptune 4 Pro definition It's basically a Neptune 4 --- .../definitions/elegoo_neptune_4pro.def.json | 15 +++++++++++++++ .../elegoo_neptune_4pro_0.20.inst.cfg | 13 +++++++++++++ .../elegoo_neptune_4pro_0.40.inst.cfg | 13 +++++++++++++ .../elegoo_neptune_4pro_0.60.inst.cfg | 13 +++++++++++++ .../elegoo_neptune_4pro_0.80.inst.cfg | 13 +++++++++++++ 5 files changed, 67 insertions(+) create mode 100644 resources/definitions/elegoo_neptune_4pro.def.json create mode 100644 resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg create mode 100644 resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg create mode 100644 resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg create mode 100644 resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg diff --git a/resources/definitions/elegoo_neptune_4pro.def.json b/resources/definitions/elegoo_neptune_4pro.def.json new file mode 100644 index 00000000000..ca7e7c1293d --- /dev/null +++ b/resources/definitions/elegoo_neptune_4pro.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "ELEGOO NEPTUNE 4 Pro", + "inherits": "elegoo_neptune_4", + "metadata": + { + "visible": true, + "author": "mastercaution", + "quality_definition": "elegoo_neptune_4" + }, + "overrides": + { + "machine_name": { "default_value": "ELEGOO NEPTUNE 4 Pro" } + } +} \ No newline at end of file diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg new file mode 100644 index 00000000000..b938fd368e2 --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4pro +name = 0.20mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg new file mode 100644 index 00000000000..6b6401b95f7 --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4pro +name = 0.40mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg new file mode 100644 index 00000000000..f7b4f3dccde --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4pro +name = 0.60mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg new file mode 100644 index 00000000000..e3c2e1ed54b --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4pro +name = 0.80mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + From 4aafc04505e458bb4e343a9d8e2ee0beab4237f1 Mon Sep 17 00:00:00 2001 From: Christopher Peredy <16451370+mastercaution@users.noreply.github.com> Date: Sun, 1 Oct 2023 12:45:14 +0200 Subject: [PATCH 042/765] EN4 Fix missing extruder error --- resources/definitions/elegoo_neptune_4.def.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/resources/definitions/elegoo_neptune_4.def.json b/resources/definitions/elegoo_neptune_4.def.json index 96776d0cce2..63d2e573e00 100644 --- a/resources/definitions/elegoo_neptune_4.def.json +++ b/resources/definitions/elegoo_neptune_4.def.json @@ -5,8 +5,7 @@ "metadata": { "visible": true, - "author": "mastercaution", - "machine_extruder_trains": { "0": "elegoo_neptune4_extruder_0" } + "author": "mastercaution" }, "overrides": { From e5155371522b37539647a76ed94c628d8e640b84 Mon Sep 17 00:00:00 2001 From: Christopher Peredy <16451370+mastercaution@users.noreply.github.com> Date: Sun, 1 Oct 2023 21:40:40 +0200 Subject: [PATCH 043/765] EN4 Add materials generic ABS, ASA, PETG, TPU Profiles are mostly copied from elegoo/base. Most hardcoded temperature values were removed, so custom materials settings have an effect. --- ...goo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg | 28 +++++++++++++++++++ ...goo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg | 28 +++++++++++++++++++ ...goo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg | 28 +++++++++++++++++++ ...goo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg | 28 +++++++++++++++++++ ...goo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg | 28 +++++++++++++++++++ ...goo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg | 28 +++++++++++++++++++ ...goo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg | 28 +++++++++++++++++++ ...goo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg | 28 +++++++++++++++++++ ...oo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg | 22 +++++++++++++++ ...oo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg | 22 +++++++++++++++ ...oo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg | 21 ++++++++++++++ ...oo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg | 22 +++++++++++++++ ...goo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg | 19 +++++++++++++ ...goo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg | 19 +++++++++++++ ...goo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg | 19 +++++++++++++ ...goo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg | 19 +++++++++++++ 16 files changed, 387 insertions(+) create mode 100644 resources/quality/elegoo/neptune_4/abs/nozzle_0.40/elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg create mode 100644 resources/quality/elegoo/neptune_4/abs/nozzle_0.40/elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg create mode 100644 resources/quality/elegoo/neptune_4/abs/nozzle_0.40/elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg create mode 100644 resources/quality/elegoo/neptune_4/abs/nozzle_0.40/elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg create mode 100644 resources/quality/elegoo/neptune_4/asa/nozzle_0.40/elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg create mode 100644 resources/quality/elegoo/neptune_4/asa/nozzle_0.40/elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg create mode 100644 resources/quality/elegoo/neptune_4/asa/nozzle_0.40/elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg create mode 100644 resources/quality/elegoo/neptune_4/asa/nozzle_0.40/elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg create mode 100644 resources/quality/elegoo/neptune_4/petg/nozzle_0.40/elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg create mode 100644 resources/quality/elegoo/neptune_4/petg/nozzle_0.40/elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg create mode 100644 resources/quality/elegoo/neptune_4/petg/nozzle_0.40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg create mode 100644 resources/quality/elegoo/neptune_4/petg/nozzle_0.40/elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg create mode 100644 resources/quality/elegoo/neptune_4/tpu/nozzle_0.40/elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg create mode 100644 resources/quality/elegoo/neptune_4/tpu/nozzle_0.40/elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg create mode 100644 resources/quality/elegoo/neptune_4/tpu/nozzle_0.40/elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg create mode 100644 resources/quality/elegoo/neptune_4/tpu/nozzle_0.40/elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg diff --git a/resources/quality/elegoo/neptune_4/abs/nozzle_0.40/elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/abs/nozzle_0.40/elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg new file mode 100644 index 00000000000..e05b278e4c8 --- /dev/null +++ b/resources/quality/elegoo/neptune_4/abs/nozzle_0.40/elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = elegoo_neptune_4 +name = abs_noz0.40_lay0.10 +version = 4 + +[metadata] +material = generic_abs +quality_type = Elegoo_layer_010 +setting_version = 22 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +brim_gap = 0 +brim_width = 10 +cool_fan_enabled = False +cool_fan_speed = 0 +cool_fan_speed_0 = 0 +layer_0_z_overlap = =raft_airgap*0.8 +material_shrinkage_percentage_xy = 100.3 +raft_airgap = =0.15 +raft_margin = 10 +support_top_distance = =extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance') + (0 if support_structure == 'tree' else 0) +support_xy_distance_overhang = =machine_nozzle_size*0.8 +support_z_distance = =layer_height/2 +top_bottom_thickness = 0.72 +wall_thickness = =line_width*2 + diff --git a/resources/quality/elegoo/neptune_4/abs/nozzle_0.40/elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/abs/nozzle_0.40/elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg new file mode 100644 index 00000000000..412f393a459 --- /dev/null +++ b/resources/quality/elegoo/neptune_4/abs/nozzle_0.40/elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = elegoo_neptune_4 +name = abs_noz0.40_lay0.15 +version = 4 + +[metadata] +material = generic_abs +quality_type = Elegoo_layer_015 +setting_version = 22 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +brim_gap = 0 +brim_width = 10 +cool_fan_enabled = False +cool_fan_speed = 0 +cool_fan_speed_0 = 0 +layer_0_z_overlap = =raft_airgap*0.8 +material_shrinkage_percentage_xy = 100.3 +raft_airgap = =0.15 +raft_margin = 10 +support_top_distance = =extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance') + (0 if support_structure == 'tree' else 0) +support_xy_distance_overhang = =machine_nozzle_size*0.8 +support_z_distance = =layer_height/2 +top_bottom_thickness = 0.64 +wall_thickness = =line_width*2 + diff --git a/resources/quality/elegoo/neptune_4/abs/nozzle_0.40/elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/abs/nozzle_0.40/elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg new file mode 100644 index 00000000000..df3353baed8 --- /dev/null +++ b/resources/quality/elegoo/neptune_4/abs/nozzle_0.40/elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = elegoo_neptune_4 +name = abs_noz0.40_lay0.20 +version = 4 + +[metadata] +material = generic_abs +quality_type = Elegoo_layer_020 +setting_version = 22 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +brim_gap = 0 +brim_width = 10 +cool_fan_enabled = False +cool_fan_speed = 0 +cool_fan_speed_0 = 0 +layer_0_z_overlap = =raft_airgap*0.8 +material_shrinkage_percentage_xy = 100.3 +raft_airgap = =0.15 +raft_margin = 10 +support_top_distance = =extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance') + (0 if support_structure == 'tree' else 0) +support_xy_distance_overhang = =machine_nozzle_size*0.8 +support_z_distance = =layer_height/2 +top_bottom_thickness = 0.8 +wall_thickness = =line_width*2 + diff --git a/resources/quality/elegoo/neptune_4/abs/nozzle_0.40/elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/abs/nozzle_0.40/elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg new file mode 100644 index 00000000000..8219690265c --- /dev/null +++ b/resources/quality/elegoo/neptune_4/abs/nozzle_0.40/elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = elegoo_neptune_4 +name = abs_noz0.40_lay0.30 +version = 4 + +[metadata] +material = generic_abs +quality_type = Elegoo_layer_030 +setting_version = 22 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +brim_gap = 0 +brim_width = 10 +cool_fan_enabled = False +cool_fan_speed = 0 +cool_fan_speed_0 = 0 +layer_0_z_overlap = =raft_airgap*0.8 +material_shrinkage_percentage_xy = 100.3 +raft_airgap = =0.2 +raft_margin = 10 +support_top_distance = =extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance') + (0 if support_structure == 'tree' else 0) +support_xy_distance_overhang = =machine_nozzle_size*0.8 +support_z_distance = =layer_height/2 +top_bottom_thickness = 0.84 +wall_thickness = =line_width*2 + diff --git a/resources/quality/elegoo/neptune_4/asa/nozzle_0.40/elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/asa/nozzle_0.40/elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg new file mode 100644 index 00000000000..a0ae0016503 --- /dev/null +++ b/resources/quality/elegoo/neptune_4/asa/nozzle_0.40/elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = elegoo_neptune_4 +name = asa_noz0.40_lay0.10 +version = 4 + +[metadata] +material = generic_asa_175 +quality_type = Elegoo_layer_010 +setting_version = 22 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +brim_gap = 0 +brim_width = 10 +cool_fan_enabled = False +cool_fan_speed = 0 +cool_fan_speed_0 = 0 +layer_0_z_overlap = =raft_airgap*0.8 +material_shrinkage_percentage_xy = 100.3 +raft_airgap = =0.15 +raft_margin = 15 +support_top_distance = =extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance') + (0 if support_structure == 'tree' else 0) +support_xy_distance_overhang = =machine_nozzle_size*0.8 +support_z_distance = =layer_height/2 +top_bottom_thickness = 0.72 +wall_thickness = =line_width*2 + diff --git a/resources/quality/elegoo/neptune_4/asa/nozzle_0.40/elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/asa/nozzle_0.40/elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg new file mode 100644 index 00000000000..228eea99dc3 --- /dev/null +++ b/resources/quality/elegoo/neptune_4/asa/nozzle_0.40/elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = elegoo_neptune_4 +name = asa_noz0.40_lay0.15 +version = 4 + +[metadata] +material = generic_asa_175 +quality_type = Elegoo_layer_015 +setting_version = 22 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +brim_gap = 0 +brim_width = 10 +cool_fan_enabled = False +cool_fan_speed = 0 +cool_fan_speed_0 = 0 +layer_0_z_overlap = =raft_airgap*0.8 +material_shrinkage_percentage_xy = 100.3 +raft_airgap = =0.15 +raft_margin = 15 +support_top_distance = =extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance') + (0 if support_structure == 'tree' else 0) +support_xy_distance_overhang = =machine_nozzle_size*0.8 +support_z_distance = =layer_height/2 +top_bottom_thickness = 0.64 +wall_thickness = =line_width*2 + diff --git a/resources/quality/elegoo/neptune_4/asa/nozzle_0.40/elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/asa/nozzle_0.40/elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg new file mode 100644 index 00000000000..df1e5802e7f --- /dev/null +++ b/resources/quality/elegoo/neptune_4/asa/nozzle_0.40/elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = elegoo_neptune_4 +name = asa_noz0.40_lay0.20 +version = 4 + +[metadata] +material = generic_asa_175 +quality_type = Elegoo_layer_020 +setting_version = 22 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +brim_gap = 0 +brim_width = 10 +cool_fan_enabled = False +cool_fan_speed = 0 +cool_fan_speed_0 = 0 +layer_0_z_overlap = =raft_airgap*0.8 +material_shrinkage_percentage_xy = 100.3 +raft_airgap = =0.15 +raft_margin = 15 +support_top_distance = =extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance') + (0 if support_structure == 'tree' else 0) +support_xy_distance_overhang = =machine_nozzle_size*0.8 +support_z_distance = =layer_height/2 +top_bottom_thickness = 0.8 +wall_thickness = =line_width*2 + diff --git a/resources/quality/elegoo/neptune_4/asa/nozzle_0.40/elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/asa/nozzle_0.40/elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg new file mode 100644 index 00000000000..335a479a34f --- /dev/null +++ b/resources/quality/elegoo/neptune_4/asa/nozzle_0.40/elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = elegoo_neptune_4 +name = asa_noz0.40_lay0.30 +version = 4 + +[metadata] +material = generic_asa_175 +quality_type = Elegoo_layer_030 +setting_version = 22 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +brim_gap = 0 +brim_width = 10 +cool_fan_enabled = False +cool_fan_speed = 0 +cool_fan_speed_0 = 0 +layer_0_z_overlap = =raft_airgap*0.8 +material_shrinkage_percentage_xy = 100.3 +raft_airgap = =0.2 +raft_margin = 15 +support_top_distance = =extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance') + (0 if support_structure == 'tree' else 0) +support_xy_distance_overhang = =machine_nozzle_size*0.8 +support_z_distance = =layer_height/2 +top_bottom_thickness = 0.84 +wall_thickness = =line_width*2 + diff --git a/resources/quality/elegoo/neptune_4/petg/nozzle_0.40/elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/petg/nozzle_0.40/elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg new file mode 100644 index 00000000000..52b8b688105 --- /dev/null +++ b/resources/quality/elegoo/neptune_4/petg/nozzle_0.40/elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = elegoo_neptune_4 +name = petg_noz0.40_lay0.10 +version = 4 + +[metadata] +material = generic_petg +quality_type = Elegoo_layer_010 +setting_version = 22 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +brim_width = 6 +cool_fan_speed_min = =cool_fan_speed*0.5 +cool_min_layer_time = 10 +cool_min_layer_time_fan_speed_max = 30 +layer_0_z_overlap = =raft_airgap*0.6 +material_shrinkage_percentage_xy = 100.2 +raft_airgap = =0.35 +raft_margin = 10 + diff --git a/resources/quality/elegoo/neptune_4/petg/nozzle_0.40/elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/petg/nozzle_0.40/elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg new file mode 100644 index 00000000000..ee9fda159b8 --- /dev/null +++ b/resources/quality/elegoo/neptune_4/petg/nozzle_0.40/elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = elegoo_neptune_4 +name = petg_noz0.40_lay0.15 +version = 4 + +[metadata] +material = generic_petg +quality_type = Elegoo_layer_015 +setting_version = 22 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +brim_width = 6 +cool_fan_speed_min = =cool_fan_speed*0.5 +cool_min_layer_time = 10 +cool_min_layer_time_fan_speed_max = 30 +layer_0_z_overlap = =raft_airgap*0.6 +material_shrinkage_percentage_xy = 100.2 +raft_airgap = =0.35 +raft_margin = 10 + diff --git a/resources/quality/elegoo/neptune_4/petg/nozzle_0.40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/petg/nozzle_0.40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg new file mode 100644 index 00000000000..727c575e8db --- /dev/null +++ b/resources/quality/elegoo/neptune_4/petg/nozzle_0.40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = elegoo_neptune_4 +name = petg_noz0.40_lay0.20 +version = 4 + +[metadata] +material = generic_petg +quality_type = Elegoo_layer_020 +setting_version = 22 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +brim_width = 6 +cool_fan_speed_min = =cool_fan_speed*0.5 +cool_min_layer_time = 10 +cool_min_layer_time_fan_speed_max = 30 +layer_0_z_overlap = =raft_airgap*0.6 +material_shrinkage_percentage_xy = 100.2 +raft_airgap = =0.35 +raft_margin = 10 diff --git a/resources/quality/elegoo/neptune_4/petg/nozzle_0.40/elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/petg/nozzle_0.40/elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg new file mode 100644 index 00000000000..a3043234b60 --- /dev/null +++ b/resources/quality/elegoo/neptune_4/petg/nozzle_0.40/elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = elegoo_neptune_4 +name = petg_noz0.40_lay0.30 +version = 4 + +[metadata] +material = generic_petg +quality_type = Elegoo_layer_030 +setting_version = 22 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +brim_width = 6 +cool_fan_speed_min = =cool_fan_speed*0.5 +cool_min_layer_time = 10 +cool_min_layer_time_fan_speed_max = 30 +layer_0_z_overlap = =raft_airgap*0.6 +material_shrinkage_percentage_xy = 100.2 +raft_airgap = =0.35 +raft_margin = 10 + diff --git a/resources/quality/elegoo/neptune_4/tpu/nozzle_0.40/elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/tpu/nozzle_0.40/elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg new file mode 100644 index 00000000000..f5c76ef6c7a --- /dev/null +++ b/resources/quality/elegoo/neptune_4/tpu/nozzle_0.40/elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = elegoo_neptune_4 +name = tpu_noz0.40_lay0.10 +version = 4 + +[metadata] +material = generic_tpu +quality_type = Elegoo_layer_010 +setting_version = 22 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +brim_width = 5 +cool_min_layer_time = 10 +speed_print = 150 +speed_travel = 250 +support_angle = 35 + diff --git a/resources/quality/elegoo/neptune_4/tpu/nozzle_0.40/elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/tpu/nozzle_0.40/elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg new file mode 100644 index 00000000000..8762cb12bca --- /dev/null +++ b/resources/quality/elegoo/neptune_4/tpu/nozzle_0.40/elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = elegoo_neptune_4 +name = tpu_noz0.40_lay0.15 +version = 4 + +[metadata] +material = generic_tpu +quality_type = Elegoo_layer_015 +setting_version = 22 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +brim_width = 5 +cool_min_layer_time = 10 +speed_print = 150 +speed_travel = 250 +support_angle = 35 + diff --git a/resources/quality/elegoo/neptune_4/tpu/nozzle_0.40/elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/tpu/nozzle_0.40/elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg new file mode 100644 index 00000000000..cb3a64810ec --- /dev/null +++ b/resources/quality/elegoo/neptune_4/tpu/nozzle_0.40/elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = elegoo_neptune_4 +name = tpu_noz0.40_lay0.20 +version = 4 + +[metadata] +material = generic_tpu +quality_type = Elegoo_layer_020 +setting_version = 22 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +brim_width = 5 +cool_min_layer_time = 10 +speed_print = 150 +speed_travel = 250 +support_angle = 35 + diff --git a/resources/quality/elegoo/neptune_4/tpu/nozzle_0.40/elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/tpu/nozzle_0.40/elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg new file mode 100644 index 00000000000..e04d7319e9b --- /dev/null +++ b/resources/quality/elegoo/neptune_4/tpu/nozzle_0.40/elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = elegoo_neptune_4 +name = tpu_noz0.40_lay0.30 +version = 4 + +[metadata] +material = generic_tpu +quality_type = Elegoo_layer_030 +setting_version = 22 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +brim_width = 5 +cool_min_layer_time = 10 +speed_print = 150 +speed_travel = 250 +support_angle = 35 + From d73b5cb458f871f049373286bc4a2b5785b32bd3 Mon Sep 17 00:00:00 2001 From: Christopher Peredy <16451370+mastercaution@users.noreply.github.com> Date: Tue, 3 Oct 2023 23:11:00 +0200 Subject: [PATCH 044/765] EN4 Run printer-linter --- .../definitions/elegoo_neptune_4.def.json | 123 +++++++++--------- ...elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg | 3 +- ...o_n4_aa0.4_pla_0.15mm_engineering.inst.cfg | 4 +- ...elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg | 3 +- ...oo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg | 4 +- .../elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg | 3 +- .../elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg | 5 +- .../elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg | 4 +- ...oo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg | 1 + ...goo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg | 2 +- 10 files changed, 76 insertions(+), 76 deletions(-) diff --git a/resources/definitions/elegoo_neptune_4.def.json b/resources/definitions/elegoo_neptune_4.def.json index 63d2e573e00..4e73f5a879b 100644 --- a/resources/definitions/elegoo_neptune_4.def.json +++ b/resources/definitions/elegoo_neptune_4.def.json @@ -9,17 +9,22 @@ }, "overrides": { - "machine_name": { "default_value": "ELEGOO NEPTUNE 4" }, - "machine_width": { "default_value": 235 }, - "machine_depth": { "default_value": 230 }, - "machine_height": { "default_value": 270 }, + "acceleration_enabled": { "value": true }, + "acceleration_layer_0": { "value": 3000 }, + "acceleration_print": { "value": 3000 }, + "acceleration_travel": { "value": 5000 }, + "cool_fan_full_layer": { "value": 2 }, + "infill_line_width": + { + "default_value": 0.45, + "value": "line_width + 0.05" + }, + "infill_overlap": { "value": "0 if infill_sparse_density < 40.01 and infill_pattern != 'concentric' else -5" }, + "initial_layer_line_width_factor": { "value": "100.0 if resolveOrValue('adhesion_type') == 'raft' else 125 if line_width < 0.5 else 110" }, "machine_acceleration": { "value": 3000 }, - "machine_heated_bed": { "default_value": true }, - "machine_max_acceleration_e": { "value": 5000 }, - "machine_max_acceleration_x": { "value": 5000 }, - "machine_max_acceleration_y": { "value": 5000 }, - "machine_nozzle_cool_down_speed": { "value": 0.75 }, - "machine_nozzle_heat_up_speed": { "value": 1.6 }, + "machine_depth": { "default_value": 230 }, + "machine_end_gcode": { "default_value": "G91 ;Relative positionning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z2 ;Raise Z more\nG90 ;Absolute positionning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_head_with_fans_polygon": { "value": [ @@ -29,93 +34,83 @@ [40, -30] ] }, - + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 270 }, + "machine_max_acceleration_e": { "value": 5000 }, + "machine_max_acceleration_x": { "value": 5000 }, + "machine_max_acceleration_y": { "value": 5000 }, + "machine_name": { "default_value": "ELEGOO NEPTUNE 4" }, + "machine_nozzle_cool_down_speed": { "value": 0.75 }, + "machine_nozzle_heat_up_speed": { "value": 1.6 }, + "machine_start_gcode": { "default_value": "G28 ;home\nG92 E0 ;Reset Extruder\nG1 Z4.0 F3000 ;Move Z Axis up\nG92 E0 ;Reset Extruder\nG1 X1.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X1.1 Y80.0 Z0.28 F1500.0 E10 ;Draw the first line\nG1 X1.4 Y80.0 Z0.28 F5000.0 ;Move to side a little\nG1 X1.4 Y20 Z0.28 F1500.0 E20 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up" }, + "machine_width": { "default_value": 235 }, "retraction_amount": { "default_value": 0.5 }, - "retraction_speed": { "default_value": 45 }, "retraction_count_max": { "value": 80 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { "default_value": "G28 ;home\nG92 E0 ;Reset Extruder\nG1 Z4.0 F3000 ;Move Z Axis up\nG92 E0 ;Reset Extruder\nG1 X1.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X1.1 Y80.0 Z0.28 F1500.0 E10 ;Draw the first line\nG1 X1.4 Y80.0 Z0.28 F5000.0 ;Move to side a little\nG1 X1.4 Y20 Z0.28 F1500.0 E20 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up" }, - "machine_end_gcode": { "default_value": "G91 ;Relative positionning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z2 ;Raise Z more\nG90 ;Absolute positionning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, - - "acceleration_enabled": { "value": true }, - "acceleration_layer_0": { "value": 3000 }, - "acceleration_print": { "value": 3000 }, - "acceleration_travel": { "value": 5000 }, - - "cool_fan_full_layer": { "value": 2 }, - - "infill_line_width": - { - "default_value": 0.45, - "value": "line_width + 0.05" - }, - "speed_print": + "retraction_speed": { "default_value": 45 }, + "skirt_brim_speed": { "maximum_value_warning": "500", - "default_value": 250 + "value": "speed_print_layer_0" }, - "speed_wall": + "speed_infill": { "maximum_value_warning": "500", - "default_value": 125, - "value": "speed_print / 2" + "value": "speed_print" }, - "speed_wall_0": + "speed_layer_0": { + "default_value": 60, "maximum_value_warning": "500", - "default_value": 125, - "value": "speed_wall" + "value": 60 }, - "speed_wall_x": + "speed_prime_tower": { "maximum_value_warning": "500" }, + "speed_print": { - "maximum_value_warning": "500", - "default_value": 200, - "value": "speed_wall + (speed_wall / 2)" + "default_value": 250, + "maximum_value_warning": "500" }, + "speed_print_layer_0": { "maximum_value_warning": "500" }, + "speed_roofing": { "maximum_value_warning": "500" }, + "speed_support": { "maximum_value_warning": "500" }, + "speed_support_bottom": { "maximum_value_warning": "500" }, + "speed_support_infill": { "maximum_value_warning": "500" }, + "speed_support_interface": { "maximum_value_warning": "500" }, + "speed_support_roof": { "maximum_value_warning": "500" }, "speed_topbottom": { - "maximum_value_warning": "500", "default_value": 125, + "maximum_value_warning": "500", "value": "speed_wall" }, "speed_travel": { - "maximum_value_warning": "500", "default_value": 250, - "value": "speed_print" - }, - "speed_layer_0": - { "maximum_value_warning": "500", - "default_value": 60, - "value": 60 + "value": "speed_print" }, - "speed_print_layer_0": { "maximum_value_warning": "500" }, "speed_travel_layer_0": { - "maximum_value_warning": "500", "default_value": 200, + "maximum_value_warning": "500", "value": "speed_layer_0*2" }, - "speed_infill": + "speed_wall": { + "default_value": 125, "maximum_value_warning": "500", - "value": "speed_print" + "value": "speed_print / 2" }, - "speed_roofing": { "maximum_value_warning": "500" }, - "speed_support": { "maximum_value_warning": "500" }, - "speed_support_infill": { "maximum_value_warning": "500" }, - "speed_support_interface": { "maximum_value_warning": "500" }, - "speed_support_roof": { "maximum_value_warning": "500" }, - "speed_support_bottom": { "maximum_value_warning": "500" }, - "speed_prime_tower": { "maximum_value_warning": "500" }, - "skirt_brim_speed": + "speed_wall_0": { + "default_value": 125, "maximum_value_warning": "500", - "value": "speed_print_layer_0" + "value": "speed_wall" }, - - "initial_layer_line_width_factor": { "value": "100.0 if resolveOrValue('adhesion_type') == 'raft' else 125 if line_width < 0.5 else 110" }, - "infill_overlap": { "value": "0 if infill_sparse_density < 40.01 and infill_pattern != 'concentric' else -5" } + "speed_wall_x": + { + "default_value": 200, + "maximum_value_warning": "500", + "value": "speed_wall + (speed_wall / 2)" + } } } \ No newline at end of file diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg index c83f21e72cc..e0e87bffc3d 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg @@ -12,6 +12,7 @@ type = intent variant = 0.40mm_Elegoo_Nozzle [values] +skin_line_width = 0.4 speed_print = 150 top_bottom_thickness = 1.05 -skin_line_width = 0.4 + diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg index 0fd0d70eeef..1ad1d4cb795 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg @@ -13,10 +13,10 @@ type = intent variant = 0.40mm_Elegoo_Nozzle [values] -speed_print = 150 -speed_travel = =min(speed_print * 4 / 3, 250) if speed_print <= 250 else speed_print speed_infill = =speed_print +speed_print = 150 speed_topbottom = =speed_print * 2 / 3 +speed_travel = =min(speed_print * 4 / 3, 250) if speed_print <= 250 else speed_print speed_wall = =speed_print * 2 / 3 speed_wall_0 = =speed_wall speed_wall_x = =speed_wall diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg index f4d5a778d73..df6271085f6 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg @@ -12,6 +12,7 @@ type = intent variant = 0.40mm_Elegoo_Nozzle [values] +skin_line_width = 0.4 speed_print = 150 top_bottom_thickness = 1.05 -skin_line_width = 0.4 + diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg index a77fbde88cb..4a6b207a919 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg @@ -13,10 +13,10 @@ type = intent variant = 0.40mm_Elegoo_Nozzle [values] -speed_print = 150 -speed_travel = =min(speed_print * 4 / 3, 250) if speed_print <= 250 else speed_print speed_infill = =speed_print +speed_print = 150 speed_topbottom = =speed_print * 2 / 3 +speed_travel = =min(speed_print * 4 / 3, 250) if speed_print <= 250 else speed_print speed_wall = =speed_print * 2 / 3 speed_wall_0 = =speed_wall speed_wall_x = =speed_wall diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg index b40164ff744..c3c5e329509 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg @@ -12,6 +12,7 @@ type = intent variant = 0.40mm_Elegoo_Nozzle [values] +skin_line_width = 0.4 speed_print = 150 top_bottom_thickness = 1 -skin_line_width = 0.4 + diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg index 1767ca88074..6f36752648f 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg @@ -13,12 +13,13 @@ type = intent variant = 0.40mm_Elegoo_Nozzle [values] -speed_print = 300 -speed_travel = 400 infill_sparse_density = 15 speed_infill = =speed_print +speed_print = 300 speed_topbottom = =speed_print +speed_travel = 400 speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall top_bottom_thickness = 0.6 + diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg index 4880142c06f..f56023baef0 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg @@ -13,11 +13,11 @@ type = intent variant = 0.40mm_Elegoo_Nozzle [values] -speed_print = 300 -speed_travel = 400 infill_sparse_density = 10 speed_infill = =speed_print +speed_print = 300 speed_topbottom = =speed_print +speed_travel = 400 speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall diff --git a/resources/quality/elegoo/neptune_4/petg/nozzle_0.40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/petg/nozzle_0.40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg index 727c575e8db..0c7c3abf04b 100644 --- a/resources/quality/elegoo/neptune_4/petg/nozzle_0.40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/neptune_4/petg/nozzle_0.40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg @@ -19,3 +19,4 @@ layer_0_z_overlap = =raft_airgap*0.6 material_shrinkage_percentage_xy = 100.2 raft_airgap = =0.35 raft_margin = 10 + diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg index f9dcf2c75b7..66eb9f49c08 100644 --- a/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg @@ -13,9 +13,9 @@ variant = 0.40mm_Elegoo_Nozzle [values] prime_tower_enable = False raft_airgap = 0.25 +skin_overlap = 10 speed_topbottom = =math.ceil(speed_print * 35 / 70) speed_wall = =math.ceil(speed_print * 45 / 70) speed_wall_0 = =math.ceil(speed_wall * 35 / 70) -skin_overlap = 10 top_bottom_thickness = 1 From 39a3a73db4c7c475644c8513675a354e66d525ef Mon Sep 17 00:00:00 2001 From: Federico Rapetti Date: Thu, 5 Oct 2023 00:03:50 +0200 Subject: [PATCH 045/765] Revert old definitions --- .../definitions/elegoo_neptune_4pro.def.json | 38 ------------------- .../elegoo_neptune_4pro_0.20.inst.cfg | 13 ------- .../elegoo_neptune_4pro_0.40.inst.cfg | 13 ------- .../elegoo_neptune_4pro_0.60.inst.cfg | 13 ------- .../elegoo_neptune_4pro_0.80.inst.cfg | 13 ------- 5 files changed, 90 deletions(-) delete mode 100644 resources/definitions/elegoo_neptune_4pro.def.json delete mode 100644 resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg delete mode 100644 resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg delete mode 100644 resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg delete mode 100644 resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg diff --git a/resources/definitions/elegoo_neptune_4pro.def.json b/resources/definitions/elegoo_neptune_4pro.def.json deleted file mode 100644 index c393efd856a..00000000000 --- a/resources/definitions/elegoo_neptune_4pro.def.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "version": 2, - "name": "ELEGOO NEPTUNE 4 Pro", - "inherits": "elegoo_base", - "metadata": - { - "visible": true, - "author": "Evident", - "quality_definition": "elegoo_base" - }, - "overrides": - { - "machine_name": { "default_value": "ELEGOO NEPTUNE 4 Pro" }, - "machine_depth": { "default_value": 235 }, - "machine_height": { "default_value": 270 }, - "machine_width": { "default_value": 235 }, - "machine_head_with_fans_polygon": - { - "value": [ - [-55, 30], - [55, 30], - [55, -35], - [-55, -35] - ] - }, - "machine_end_gcode": { "default_value": "G91 ;Relative positionning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F1600 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z2 ;Raise Z more\nG90 ;Absolute positionning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, - "machine_start_gcode": { "default_value": "G28 ;home\nG92 E0 ;Reset Extruder\nG1 Z4.0 F3000 ;Move Z Axis up\nG92 E0 ;Reset Extruder\nG1 X1.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X1.1 Y80.0 Z0.28 F1500.0 E10 ;Draw the first line\nG1 X1.4 Y80.0 Z0.28 F5000.0 ;Move to side a little\nG1 X1.4 Y20 Z0.28 F1500.0 E20 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up" }, - "material_bed_temperature": { "value": "default_material_bed_temperature + 10" }, - "infill_overlap": { "value": "0 if infill_sparse_density < 40.01 and infill_pattern != 'concentric' else -5" }, - "retraction_amount": { "value": 1 }, - "retraction_count_max": { "value": 80 }, - "retraction_prime_speed": { "resolve": 25 }, - "retraction_retract_speed": { "resolve": 25 }, - "retraction_speed": { "resolve": 25 }, - "speed_travel": { "value": "300 if speed_print < 300 else speed_print * 1.25 if speed_print < 400 else 500" }, - "speed_travel_layer_0": { "value": "200" } - } -} diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg deleted file mode 100644 index b938fd368e2..00000000000 --- a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg +++ /dev/null @@ -1,13 +0,0 @@ -[general] -definition = elegoo_neptune_4pro -name = 0.20mm_Elegoo_Nozzle -version = 4 - -[metadata] -hardware_type = nozzle -setting_version = 22 -type = variant - -[values] -machine_nozzle_size = 0.2 - diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg deleted file mode 100644 index 6b6401b95f7..00000000000 --- a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg +++ /dev/null @@ -1,13 +0,0 @@ -[general] -definition = elegoo_neptune_4pro -name = 0.40mm_Elegoo_Nozzle -version = 4 - -[metadata] -hardware_type = nozzle -setting_version = 22 -type = variant - -[values] -machine_nozzle_size = 0.4 - diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg deleted file mode 100644 index f7b4f3dccde..00000000000 --- a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg +++ /dev/null @@ -1,13 +0,0 @@ -[general] -definition = elegoo_neptune_4pro -name = 0.60mm_Elegoo_Nozzle -version = 4 - -[metadata] -hardware_type = nozzle -setting_version = 22 -type = variant - -[values] -machine_nozzle_size = 0.6 - diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg deleted file mode 100644 index e3c2e1ed54b..00000000000 --- a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg +++ /dev/null @@ -1,13 +0,0 @@ -[general] -definition = elegoo_neptune_4pro -name = 0.80mm_Elegoo_Nozzle -version = 4 - -[metadata] -hardware_type = nozzle -setting_version = 22 -type = variant - -[values] -machine_nozzle_size = 0.8 - From 05facee620e715faa9f5ba64eb5119f7178b5c3e Mon Sep 17 00:00:00 2001 From: Christopher Peredy <16451370+mastercaution@users.noreply.github.com> Date: Thu, 5 Oct 2023 01:46:00 +0200 Subject: [PATCH 046/765] EN4 Remove redundancies in definition --- resources/definitions/elegoo_neptune_4.def.json | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/resources/definitions/elegoo_neptune_4.def.json b/resources/definitions/elegoo_neptune_4.def.json index 4e73f5a879b..2e28deb63aa 100644 --- a/resources/definitions/elegoo_neptune_4.def.json +++ b/resources/definitions/elegoo_neptune_4.def.json @@ -9,7 +9,6 @@ }, "overrides": { - "acceleration_enabled": { "value": true }, "acceleration_layer_0": { "value": 3000 }, "acceleration_print": { "value": 3000 }, "acceleration_travel": { "value": 5000 }, @@ -47,11 +46,7 @@ "retraction_amount": { "default_value": 0.5 }, "retraction_count_max": { "value": 80 }, "retraction_speed": { "default_value": 45 }, - "skirt_brim_speed": - { - "maximum_value_warning": "500", - "value": "speed_print_layer_0" - }, + "skirt_brim_speed": { "maximum_value_warning": "500" }, "speed_infill": { "maximum_value_warning": "500", From 59c585643c313e98103f4968c62e9c42d2f84db9 Mon Sep 17 00:00:00 2001 From: Christopher Peredy <16451370+mastercaution@users.noreply.github.com> Date: Thu, 5 Oct 2023 02:12:34 +0200 Subject: [PATCH 047/765] EN4 Fix directory names for `clang-tidy` --- .../elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg | 0 .../elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg | 0 .../elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg | 0 .../elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg | 0 .../elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg | 0 .../elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg | 0 .../elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg | 0 .../elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg | 0 .../elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg | 0 .../elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg | 0 .../elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg | 0 .../elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg | 0 .../elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg | 0 .../elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg | 0 .../elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg | 0 .../elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg | 0 .../elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg | 0 .../elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg | 0 .../elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg | 0 .../elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg | 0 20 files changed, 0 insertions(+), 0 deletions(-) rename resources/quality/elegoo/neptune_4/abs/{nozzle_0.40 => nozzle_0_40}/elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg (100%) rename resources/quality/elegoo/neptune_4/abs/{nozzle_0.40 => nozzle_0_40}/elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg (100%) rename resources/quality/elegoo/neptune_4/abs/{nozzle_0.40 => nozzle_0_40}/elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg (100%) rename resources/quality/elegoo/neptune_4/abs/{nozzle_0.40 => nozzle_0_40}/elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg (100%) rename resources/quality/elegoo/neptune_4/asa/{nozzle_0.40 => nozzle_0_40}/elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg (100%) rename resources/quality/elegoo/neptune_4/asa/{nozzle_0.40 => nozzle_0_40}/elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg (100%) rename resources/quality/elegoo/neptune_4/asa/{nozzle_0.40 => nozzle_0_40}/elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg (100%) rename resources/quality/elegoo/neptune_4/asa/{nozzle_0.40 => nozzle_0_40}/elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg (100%) rename resources/quality/elegoo/neptune_4/petg/{nozzle_0.40 => nozzle_0_40}/elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg (100%) rename resources/quality/elegoo/neptune_4/petg/{nozzle_0.40 => nozzle_0_40}/elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg (100%) rename resources/quality/elegoo/neptune_4/petg/{nozzle_0.40 => nozzle_0_40}/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg (100%) rename resources/quality/elegoo/neptune_4/petg/{nozzle_0.40 => nozzle_0_40}/elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg (100%) rename resources/quality/elegoo/neptune_4/pla/{nozzle_0.40 => nozzle_0_40}/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg (100%) rename resources/quality/elegoo/neptune_4/pla/{nozzle_0.40 => nozzle_0_40}/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg (100%) rename resources/quality/elegoo/neptune_4/pla/{nozzle_0.40 => nozzle_0_40}/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg (100%) rename resources/quality/elegoo/neptune_4/pla/{nozzle_0.40 => nozzle_0_40}/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg (100%) rename resources/quality/elegoo/neptune_4/tpu/{nozzle_0.40 => nozzle_0_40}/elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg (100%) rename resources/quality/elegoo/neptune_4/tpu/{nozzle_0.40 => nozzle_0_40}/elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg (100%) rename resources/quality/elegoo/neptune_4/tpu/{nozzle_0.40 => nozzle_0_40}/elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg (100%) rename resources/quality/elegoo/neptune_4/tpu/{nozzle_0.40 => nozzle_0_40}/elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg (100%) diff --git a/resources/quality/elegoo/neptune_4/abs/nozzle_0.40/elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg similarity index 100% rename from resources/quality/elegoo/neptune_4/abs/nozzle_0.40/elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg rename to resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg diff --git a/resources/quality/elegoo/neptune_4/abs/nozzle_0.40/elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg similarity index 100% rename from resources/quality/elegoo/neptune_4/abs/nozzle_0.40/elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg rename to resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg diff --git a/resources/quality/elegoo/neptune_4/abs/nozzle_0.40/elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg similarity index 100% rename from resources/quality/elegoo/neptune_4/abs/nozzle_0.40/elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg rename to resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg diff --git a/resources/quality/elegoo/neptune_4/abs/nozzle_0.40/elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg similarity index 100% rename from resources/quality/elegoo/neptune_4/abs/nozzle_0.40/elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg rename to resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg diff --git a/resources/quality/elegoo/neptune_4/asa/nozzle_0.40/elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg similarity index 100% rename from resources/quality/elegoo/neptune_4/asa/nozzle_0.40/elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg rename to resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg diff --git a/resources/quality/elegoo/neptune_4/asa/nozzle_0.40/elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg similarity index 100% rename from resources/quality/elegoo/neptune_4/asa/nozzle_0.40/elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg rename to resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg diff --git a/resources/quality/elegoo/neptune_4/asa/nozzle_0.40/elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg similarity index 100% rename from resources/quality/elegoo/neptune_4/asa/nozzle_0.40/elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg rename to resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg diff --git a/resources/quality/elegoo/neptune_4/asa/nozzle_0.40/elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg similarity index 100% rename from resources/quality/elegoo/neptune_4/asa/nozzle_0.40/elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg rename to resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg diff --git a/resources/quality/elegoo/neptune_4/petg/nozzle_0.40/elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg similarity index 100% rename from resources/quality/elegoo/neptune_4/petg/nozzle_0.40/elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg rename to resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg diff --git a/resources/quality/elegoo/neptune_4/petg/nozzle_0.40/elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg similarity index 100% rename from resources/quality/elegoo/neptune_4/petg/nozzle_0.40/elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg rename to resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg diff --git a/resources/quality/elegoo/neptune_4/petg/nozzle_0.40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg similarity index 100% rename from resources/quality/elegoo/neptune_4/petg/nozzle_0.40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg rename to resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg diff --git a/resources/quality/elegoo/neptune_4/petg/nozzle_0.40/elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg similarity index 100% rename from resources/quality/elegoo/neptune_4/petg/nozzle_0.40/elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg rename to resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg similarity index 100% rename from resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg rename to resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg similarity index 100% rename from resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg rename to resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg similarity index 100% rename from resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg rename to resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg similarity index 100% rename from resources/quality/elegoo/neptune_4/pla/nozzle_0.40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg rename to resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg diff --git a/resources/quality/elegoo/neptune_4/tpu/nozzle_0.40/elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg similarity index 100% rename from resources/quality/elegoo/neptune_4/tpu/nozzle_0.40/elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg rename to resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg diff --git a/resources/quality/elegoo/neptune_4/tpu/nozzle_0.40/elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg similarity index 100% rename from resources/quality/elegoo/neptune_4/tpu/nozzle_0.40/elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg rename to resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg diff --git a/resources/quality/elegoo/neptune_4/tpu/nozzle_0.40/elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg similarity index 100% rename from resources/quality/elegoo/neptune_4/tpu/nozzle_0.40/elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg rename to resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg diff --git a/resources/quality/elegoo/neptune_4/tpu/nozzle_0.40/elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg similarity index 100% rename from resources/quality/elegoo/neptune_4/tpu/nozzle_0.40/elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg rename to resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg From ae50a047f5da79f77abc0ae36133a7609fb02547 Mon Sep 17 00:00:00 2001 From: Christopher Peredy <16451370+mastercaution@users.noreply.github.com> Date: Mon, 9 Oct 2023 02:44:06 +0200 Subject: [PATCH 048/765] EN4 Remove ineffective default values The test `test_validateOverridingDefaultValue` pointed out that some default values are ineffective. This commit removes these default values. --- resources/definitions/elegoo_neptune_4.def.json | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/resources/definitions/elegoo_neptune_4.def.json b/resources/definitions/elegoo_neptune_4.def.json index 2e28deb63aa..21fd28f6f73 100644 --- a/resources/definitions/elegoo_neptune_4.def.json +++ b/resources/definitions/elegoo_neptune_4.def.json @@ -13,11 +13,7 @@ "acceleration_print": { "value": 3000 }, "acceleration_travel": { "value": 5000 }, "cool_fan_full_layer": { "value": 2 }, - "infill_line_width": - { - "default_value": 0.45, - "value": "line_width + 0.05" - }, + "infill_line_width": { "value": "line_width + 0.05" }, "infill_overlap": { "value": "0 if infill_sparse_density < 40.01 and infill_pattern != 'concentric' else -5" }, "initial_layer_line_width_factor": { "value": "100.0 if resolveOrValue('adhesion_type') == 'raft' else 125 if line_width < 0.5 else 110" }, "machine_acceleration": { "value": 3000 }, @@ -54,7 +50,6 @@ }, "speed_layer_0": { - "default_value": 60, "maximum_value_warning": "500", "value": 60 }, @@ -73,37 +68,31 @@ "speed_support_roof": { "maximum_value_warning": "500" }, "speed_topbottom": { - "default_value": 125, "maximum_value_warning": "500", "value": "speed_wall" }, "speed_travel": { - "default_value": 250, "maximum_value_warning": "500", "value": "speed_print" }, "speed_travel_layer_0": { - "default_value": 200, "maximum_value_warning": "500", "value": "speed_layer_0*2" }, "speed_wall": { - "default_value": 125, "maximum_value_warning": "500", "value": "speed_print / 2" }, "speed_wall_0": { - "default_value": 125, "maximum_value_warning": "500", "value": "speed_wall" }, "speed_wall_x": { - "default_value": 200, "maximum_value_warning": "500", "value": "speed_wall + (speed_wall / 2)" } From 24a0ba3974933ab15d55c0e5a262aa22b9c19856 Mon Sep 17 00:00:00 2001 From: jellespijker Date: Tue, 10 Oct 2023 05:20:19 +0200 Subject: [PATCH 049/765] Update PyQt6 dependencies to latest versions PyQt6 and PyQt6-sip along with their dependencies are updated to newer versions (6.5.2 and 13.5.2) in both requirements.txt and Uranium/requirements.txt. This is to ensure the application uses the latest and most secure versions of the libraries, potentially improving application performance and security. These updates also ensure compatibility with current and upcoming features and bug fixes. Contributes to CURA-11137 --- requirements.txt | 75 ++++++++++++++++++++++++------------------------ 1 file changed, 38 insertions(+), 37 deletions(-) diff --git a/requirements.txt b/requirements.txt index dfa974ef7df..48ee3abcdc1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,41 +1,42 @@ ### Direct requirements for Uranium and libCharon ### -PyQt6-sip==13.4.1 \ - --hash=sha256:0df998f2b6ceeacfd10de773441572e215be0c9cae566cc7dd36e231bf714a12 \ - --hash=sha256:224575e84805c4317bacd5d1b8e93e0ad5c48685dadbbe1e902d4ebe16f22828 \ - --hash=sha256:36ae29cdc223cacc1257d0f5075cf81474550c6d26b728f922487a2aa935f130 \ - --hash=sha256:3a674c591d4274d4ea8127205290e927a7dab0eb87a0038d4f4ea1d430782649 \ - --hash=sha256:3ef9392e4ae29d393b79237d85840cdc6b8831f36eed5d56c7d9b329b380cc8d \ - --hash=sha256:43935873d60f57719632840d517afee04ef8f30e92cfe0dadc7e6326691920fc \ - --hash=sha256:5731f22618435654352ef07684549a17be82b75254227fc80b4b5b0b59fc6656 \ - --hash=sha256:5bc4beb6fb1de4c9ba8beee7b1a4a813fa888c3b095206dafcd25d7e6e4ed2a7 \ - --hash=sha256:5c36ab984402e96792eebf4b031abfaa589aa20af3190a79c54502c16964d97e \ - --hash=sha256:a2a0461992c6657f343308b150c4d6b57e9e7a0e5c2f79538434e7fb869ea827 \ - --hash=sha256:a81490ee84d7a41a126b116081bd97d758f41bf706aee0a8cec24d6e4c660184 \ - --hash=sha256:e00e287ea05bbc293fc6e2198301962af9b7b622bd2daf4288f925a88ae35dc9 \ - --hash=sha256:e670a7b2fb7e32204ce67d274017bfff3e21139d217d60cebbfcb75b019c91ee \ - --hash=sha256:ee06f255787a0b4957f357f93b78d2a11ca3761916833e3afa83f1381d4d1a46 \ - --hash=sha256:fbee0d554e0e98f56dbf6d94b00a28cc32425938ad7ae98fd91f8822c5b24d45 \ - --hash=sha256:fcc6d78314783f4a193f02353f431b7ea4d357f47c3c7a7d0740e723f69c64dc -PyQt6==6.4.2 \ - --hash=sha256:18d1daf98d9236d55102cdadafd1056f5802f3c9288fcf7238569937b71a89f0 \ - --hash=sha256:25bd399b4a95dce65d5f937c1aa85d3c7e14a21745ae2a4ca14c0116cd104290 \ - --hash=sha256:740244f608fe15ee1d89695c43f31a14caeca41c4f02ac36c86dfba4a5d5813d \ - --hash=sha256:c128bc0f17833e324593e3db83e99470d451a197dd17ff0333927b946c935bd9 -PyQt6-Qt6==6.4.2 \ - --hash=sha256:9f07c3c100cb46cca4074965e7494d4df4f0fc016497d5303c1fe135822876e1 \ - --hash=sha256:a29b8c858babd523e80c8db5f8fd19792641588ec04eab49af18b7a4423eb99f \ - --hash=sha256:c0e91d0275d428496cacff717a9b719c52bfa52b21f124d638b79cc2217bc81e \ - --hash=sha256:d19c4e72615762cd6f0b043f23fa5f0b02656091427ce6de1efccd58e10e6a53 -PyQt6-NetworkAuth==6.4.0 \ - --hash=sha256:ab6178b3b2902ae9939a148555cfcee8c7803d6b0d5924cd1bd8f3407b8b9210 \ - --hash=sha256:c16ec80232d88024b60d04386a23cc93067e5644a65f47f26ffb13d84dcd4a6d \ - --hash=sha256:c302cd0d838c7229eda5e26e0b1b3d3ec4f8720f8d9379472bce5a89ff0735c2 \ - --hash=sha256:d948fc0cf43b64afbda2acb5bf2392f785a1e7a2950d79ea850c1a3f4ae12f1a -PyQt6-NetworkAuth-Qt6==6.4.2 \ - --hash=sha256:179094bcb4d4d056316c22d3d067cd94d4591da23f804461bfb025ccfa29b2b4 \ - --hash=sha256:1de6abbb5fa6585b97ae49d3f64b0dfad40bd56b1a31744d9775ff26247241c8 \ - --hash=sha256:79ec4b0fc9450bbedbff03541b93b10d1c7e761cd2cc16ce70d2b09dcdf8c720 \ - --hash=sha256:d96d557fe61edb9b68d189f270f0393d6579c8d308e6b0d41bc0699371d7cb4e +PyQt6-sip==13.5.2 \ + --hash=sha256:1bdb1f7b5b2f6ac31d517a6f3a13c38055640ac0014f67a2e5422d2083ce69ec \ + --hash=sha256:318d4d1c7ef60f69c68227cef78fc439accc9028ec6149200eea3d34c433d373 \ + --hash=sha256:4b5b0c4b557e0293eba008021342459a0f91c69a7a2eb5231276d495d1d2960a \ + --hash=sha256:5b499eff7150d9f31fe835a73cc41f076bba2fcde0f5b0325b1284797f17c0ac \ + --hash=sha256:5d0fd42da765198b51d7fe12c29721cbe3e14b77ca4f68aa43618149ee7dbeff \ + --hash=sha256:831f5d606fc5296a80303ab30892c3308954c5766039bf7a96267488bb2524a5 \ + --hash=sha256:87d758ba999baa16459f0a3c7f7ed47a5b45e8991ad691f17345bf3c493a4281 \ + --hash=sha256:91812f0094443b816a74a89954d60bb50060807f54d7c016a4de7bd29454091e \ + --hash=sha256:94afb031db89159aa330891eba2c937b0378b4b264570998848c7a78eddf7c94 \ + --hash=sha256:9ad5b8c4c92d62e00ebf254a4c9656668b130f2a1d2792034e0d82b2d6571509 \ + --hash=sha256:9c9dac067710015895f523f5a2a4d59cbef8624a152b6f9a426e5b848d8c6d29 \ + --hash=sha256:ace942b78378bff8ae2d6bafccc84465f1ff0cf30720b8321e0bd6c95c36ede6 \ + --hash=sha256:b54b0d8d21c5835af8f6d6d8a323a23106e67b7cd4c31e23c35bb4c321000de8 \ + --hash=sha256:c0b4e55c4d0dc44728da90eb1451dfff0d05260b4a3496ff0014494e6c1865a6 \ + --hash=sha256:dcf602c233ee7600e810927adcb9e518d61bc796a6b2013c17feedd24c4e5413 \ + --hash=sha256:ebf6264b6feda01ba37d3b60a4bb87493bdb87be70f7b2a5384a7acd4902d88d +PyQt6==6.5.2 \ + --hash=sha256:1487ee7350f9ffb66d60ab4176519252c2b371762cbe8f8340fd951f63801280 \ + --hash=sha256:5bad1437eb0c1ae801103b32ef04ef62ef1cce505b448525f60089ce36329b89 \ + --hash=sha256:70468cca4537756c714a57fa1baa5beabb9b38775f52f9611f49870705672c55 \ + --hash=sha256:ff1d12767b578f0f0e87cdb12198e7dcad9a176c40d1d1d799984181b0af93cb +PyQt6-Qt6==6.5.2 \ + --hash=sha256:4b37f6f93c0980469ccc570998d3e3de243028bae7389fb6330443ab215ce2f6 \ + --hash=sha256:5a3c7bb899678bf801136b31cd589ed4d0d54ab32be5fb76c2bdeb161a9662ad \ + --hash=sha256:8dad61b4666d91882d7e1c4d619c71e7429c13e19182f8b3bebf3ecf95107d4c \ + --hash=sha256:953f3c0e99e486081a6d438b32fbc240da97457226562eb68cf1b11c516386fd +PyQt6-NetworkAuth==6.5.0 \ + --hash=sha256:6dc9e44a978698b673926e34da486f946ccbbeeac02078517c4d1ee23d0546a4 \ + --hash=sha256:7170db3f99e13aef855d9d52a00a8baa2dea92d12f9b441fed9c6dec57f83e09 \ + --hash=sha256:a8c8cb00a615dde1efaf1d7926e8532df77d6d08798d33b6325fb8f2ff0f220d \ + --hash=sha256:ac56d362c9efcfc194e358cc2bba362535b0775dc2bd8257f964e0bcfe7d421a +PyQt6-NetworkAuth-Qt6==6.5.2 \ + --hash=sha256:0588b93ec5a6f2c492a42dc56967f06d33306169e716c5636448816a65956278 \ + --hash=sha256:29396a63b68e8fa26587c35e8befad0a84e3a05e03551d1329ffd527684edc68 \ + --hash=sha256:2ec8ca45764d2f122912ad6c754b5ffe65f143b5a52f99649cc7931b475e064b \ + --hash=sha256:76e0877ed86247784740a0eb928f3c77da7466f08d96d17306efda6060df2c44 + certifi==2023.5.7; \ --hash=sha256:c6c2e98f5c7869efca1f8916fed228dd91539f9f1b444c314c06eef02980c716 cryptography==41.0.1 \ From c40dad5119171edc8fc18e9a244b23f9731acd7f Mon Sep 17 00:00:00 2001 From: GregValiant <64202104+GregValiant@users.noreply.github.com> Date: Wed, 11 Oct 2023 19:47:57 -0400 Subject: [PATCH 050/765] Update DisplayInfoOnLCD.py Added Print Finish Time option. Changed a couple of if statements to "line.startswith". --- .../scripts/DisplayInfoOnLCD.py | 63 ++++++++++++++----- 1 file changed, 47 insertions(+), 16 deletions(-) diff --git a/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py b/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py index 4f2bcc47719..6d2e83d545c 100644 --- a/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py +++ b/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py @@ -24,7 +24,7 @@ # - Example line on LCD: 1/479 | ET 2h13m # - Time to Pauses changes the M117/M118 lines to countdown to the next pause as 1/479 | TP 2h36m # - 'Add M118 Line' is available with either option. M118 will bounce the message back to a remote print server through the USB connection. -# - Enable 'Finish-Time' Message when checked takes the Print Time, adds 10 minutes for print start-up, and calculates when the print will end. It takes into account the Time Fudge Factor. (Available for Display Filename as well.) +# - Enable 'Finish-Time' Message - when enabled, takes the Print Time, adds 15 minutes for print start-up, and calculates when the print will end. It takes into account the Time Fudge Factor. The user may enter a print start time. This is also available for Display Filename. from ..Script import Script from UM.Application import Application @@ -125,7 +125,7 @@ def getSettingDataString(self): "speed_factor": { "label": "Time Fudge Factor %", - "description": "When using 'Display Progress' tweak this value to get better estimates. ([Actual Print Time]/[Cura Estimate]) x 100 = Time Fudge Factor. If Cura estimated 9hr and the print actually took 10hr30min then enter 117 here to adjust any estimate closer to reality. This Fudge Factor is also used to calculate the time that the print will end if you were to start it 10 minutes after slicing.", + "description": "When using 'Display Progress' tweak this value to get better estimates. ([Actual Print Time]/[Cura Estimate]) x 100 = Time Fudge Factor. If Cura estimated 9hr and the print actually took 10hr30min then enter 117 here to adjust any estimate closer to reality. This Fudge Factor is also used to calculate the time that the print will end if you were to start it 15 minutes after slicing.", "type": "float", "unit": "%", "default_value": 100, @@ -142,11 +142,21 @@ def getSettingDataString(self): "enable_end_message": { "label": "Enable 'Finish-Time' Message", - "description": "Get a message when you save a fresh slice. It will show the estimated date and time that the print would finish (with a 10 minute lag from the end of slicing to the start of the print).", + "description": "Get a message when you save a fresh slice. It will show the estimated date and time that the print would finish (with a 15 minute lag from the end of slicing to the start of the print).", "type": "bool", "default_value": true, "enabled": true + }, + "print_start_time": + { + "label": "Print Start Time (Ex 16:45)", + "description": "Use 'Military' time. 16:45 would be 4:45PM. 09:30 would be 9:30AM. If you leave this blank it will be assumed that the print start will 15 minutes after slicing.", + "type": "str", + "default_value": "", + "unit": "hrs ", + "enabled": "enable_end_message" } + } }""" @@ -179,7 +189,7 @@ def execute(self, data): max_layer = max_layer.split(":")[1] if self.getSettingValueByKey("startNum") == 0: max_layer = str(int(max_layer) - 1) - if ";LAYER:" in line: + if line.startswith(";LAYER:"): if self.getSettingValueByKey("maxlayer"): display_text = display_text + " of " + max_layer if not self.getSettingValueByKey("scroll"): @@ -216,7 +226,7 @@ def execute(self, data): first_section = data[0] lines = first_section.split("\n") for line in lines: - if ";TIME:" in line: + if line.startswith(";TIME:"): tindex = lines.index(line) cura_time = int(line.split(":")[1]) print_time = cura_time*speed_factor @@ -350,26 +360,40 @@ def execute(self, data): setting_data = "" if bool(self.getSettingValueByKey("enable_end_message")): message_str = self.message_to_user(speed_factor) - Message(title = "Display Info on LCD - Estimated Finish Time", text = message_str[0] + "\n\n" + message_str[1] + "\n" + message_str[2] + "\n" + message_str[3]).show() + Message(title = "[Display Info on LCD] - Estimated Finish Time", text = message_str[0] + "\n\n" + message_str[1] + "\n" + message_str[2] + "\n" + message_str[3]).show() return data def message_to_user(self, speed_factor: float): - # Message the user of the projected finish time of the print (figuring a 10 minute delay from end-of-slice to start-of-print + # Message the user of the projected finish time of the print (figuring a 15 minute delay from end-of-slice to start-of-print print_time = Application.getInstance().getPrintInformation().currentPrintTime.getDisplayString(DurationFormat.Format.ISO8601) + print_start_time = self.getSettingValueByKey("print_start_time") + # If the user entered a print start time make sure it is in the correct format or ignore it. + if print_start_time == "" or print_start_time == "0" or len(print_start_time) != 5 or not ":" in print_start_time: + print_start_time = "" + # Change the print start time to proper time format, or, use the current time + if print_start_time != "": + hr = int(print_start_time.split(":")[0]) + min = int(print_start_time.split(":")[1]) + sec = 0 + fifteen_minute_delay = 0 + else: + hr = int(time.strftime("%H")) + min = int(time.strftime("%M")) + sec = int(time.strftime("%S")) + fifteen_minute_delay = 900 + #Get the current data/time info yr = int(time.strftime("%Y")) day = int(time.strftime("%d")) mo = int(time.strftime("%m")) - hr = int(time.strftime("%H")) - min = int(time.strftime("%M")) - sec = int(time.strftime("%S")) + date_and_time = datetime.datetime(yr, mo, day, hr, min, sec) #Split the Cura print time pr_hr = int(print_time.split(":")[0]) pr_min = int(print_time.split(":")[1]) pr_sec = int(print_time.split(":")[2]) - #Adjust the print time by 10 minutes to account for a lag in starting a print - print_seconds = pr_hr*3600 + pr_min*60 + pr_sec + 600 + #Adjust the print time if none was entered + print_seconds = pr_hr*3600 + pr_min*60 + pr_sec + fifteen_minute_delay #Adjust the total seconds by the Fudge Factor adjusted_print_time = print_seconds * speed_factor #Break down the adjusted seconds back into hh:mm:ss @@ -394,8 +418,15 @@ def message_to_user(self, speed_factor: float): else: show_hr = str(new_time.strftime("%H")) + ":" show_ampm = " AM" - message_str = "\n" + "(Finish Time estimate is based on the Cura printing time estimate and using your 'Fudge Factor' of " + str(speed_factor * 100) + "% - and a 10 minute lag between saving the file and starting the print.)" + if print_start_time == "": + start_str = "and a 15 minute lag between saving the file and starting the print." + else: + start_str = "and your entered 'print start time' of " + print_start_time + "hrs." + if print_start_time != "": + print_start_str = "Print Start Time................." + str(print_start_time) + "hrs" + else: + print_start_str = "Print Start Time.................15 minutes from now." + estimate_str = "Cura Time Estimate.........." + str(print_time) + adjusted_str = "Adjusted Time Estimate..." + str(time_change) finish_str = week_day + " " + str(mo_str) + " " + str(new_time.strftime("%d")) + ", " + str(new_time.strftime("%Y")) + " at " + str(show_hr) + str(new_time.strftime("%M")) + str(show_ampm) - estimate_str = "Cura Print Time Estimate: " + str(print_time) - adjusted_str = " Adjusted Time Estimate: " + str(time_change) + " (Fudged plus 10min startup delay)" - return finish_str, estimate_str, adjusted_str, message_str \ No newline at end of file + return finish_str, estimate_str, adjusted_str, print_start_str \ No newline at end of file From 723f9bc53fc89ec168579350b730702762d163e7 Mon Sep 17 00:00:00 2001 From: goofoo Date: Mon, 16 Oct 2023 09:37:57 +0800 Subject: [PATCH 051/765] add renkforce 10+ profiles --- .../definitions/renkforce_pro10plus.def.json | 18 ++++++++++++++++++ .../renkforce/renkforce_pro10plus_0.4.inst.cfg | 13 +++++++++++++ .../renkforce/renkforce_pro10plus_0.6.inst.cfg | 13 +++++++++++++ .../renkforce/renkforce_pro10plus_0.8.inst.cfg | 13 +++++++++++++ .../renkforce/renkforce_pro10plus_1.0.inst.cfg | 13 +++++++++++++ 5 files changed, 70 insertions(+) create mode 100644 resources/definitions/renkforce_pro10plus.def.json create mode 100644 resources/variants/renkforce/renkforce_pro10plus_0.4.inst.cfg create mode 100644 resources/variants/renkforce/renkforce_pro10plus_0.6.inst.cfg create mode 100644 resources/variants/renkforce/renkforce_pro10plus_0.8.inst.cfg create mode 100644 resources/variants/renkforce/renkforce_pro10plus_1.0.inst.cfg diff --git a/resources/definitions/renkforce_pro10plus.def.json b/resources/definitions/renkforce_pro10plus.def.json new file mode 100644 index 00000000000..414d59ec0bb --- /dev/null +++ b/resources/definitions/renkforce_pro10plus.def.json @@ -0,0 +1,18 @@ +{ + "version": 2, + "name": "Renkforce Pro 10+", + "inherits": "goofoo_near", + "metadata": + { + "visible": true, + "author": "Woosh (based on RF100.ini by Conrad Electronic SE)", + "manufacturer": "Renkforce" + }, + "overrides": + { + "machine_depth": { "default_value": 360 }, + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "Renkforce Pro 10+" }, + "machine_width": { "default_value": 360 } + } +} \ No newline at end of file diff --git a/resources/variants/renkforce/renkforce_pro10plus_0.4.inst.cfg b/resources/variants/renkforce/renkforce_pro10plus_0.4.inst.cfg new file mode 100644 index 00000000000..aea6acc5e52 --- /dev/null +++ b/resources/variants/renkforce/renkforce_pro10plus_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = renkforce_pro10plus +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/renkforce/renkforce_pro10plus_0.6.inst.cfg b/resources/variants/renkforce/renkforce_pro10plus_0.6.inst.cfg new file mode 100644 index 00000000000..228ea984256 --- /dev/null +++ b/resources/variants/renkforce/renkforce_pro10plus_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = renkforce_pro10plus +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/renkforce/renkforce_pro10plus_0.8.inst.cfg b/resources/variants/renkforce/renkforce_pro10plus_0.8.inst.cfg new file mode 100644 index 00000000000..c7b037a84d4 --- /dev/null +++ b/resources/variants/renkforce/renkforce_pro10plus_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = renkforce_pro10plus +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/renkforce/renkforce_pro10plus_1.0.inst.cfg b/resources/variants/renkforce/renkforce_pro10plus_1.0.inst.cfg new file mode 100644 index 00000000000..2c1e6194ed6 --- /dev/null +++ b/resources/variants/renkforce/renkforce_pro10plus_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = renkforce_pro10plus +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + From 8332a4226c0a85c4aee21f141dbf8644eae5981b Mon Sep 17 00:00:00 2001 From: goofoo Date: Mon, 16 Oct 2023 10:03:41 +0800 Subject: [PATCH 052/765] add renkforce 10+ 0.2 nozzle profile --- .../renkforce/renkforce_pro10plus_0.2.inst.cfg | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 resources/variants/renkforce/renkforce_pro10plus_0.2.inst.cfg diff --git a/resources/variants/renkforce/renkforce_pro10plus_0.2.inst.cfg b/resources/variants/renkforce/renkforce_pro10plus_0.2.inst.cfg new file mode 100644 index 00000000000..e2a36778c66 --- /dev/null +++ b/resources/variants/renkforce/renkforce_pro10plus_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = renkforce_pro10plus +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + From e603631b7e4d67745f22fc8e9079f8043a8d85ac Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Fri, 20 Oct 2023 11:06:56 +0200 Subject: [PATCH 053/765] Fix '\d' deprecation warning. done as part of Python 3.12 spike (CURA-11078) --- plugins/PostProcessingPlugin/scripts/LimitXYAccelJerk.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/PostProcessingPlugin/scripts/LimitXYAccelJerk.py b/plugins/PostProcessingPlugin/scripts/LimitXYAccelJerk.py index b587afb6b85..17d17c9e242 100644 --- a/plugins/PostProcessingPlugin/scripts/LimitXYAccelJerk.py +++ b/plugins/PostProcessingPlugin/scripts/LimitXYAccelJerk.py @@ -218,13 +218,13 @@ def execute(self, data): m201_limit_new = f"M201 X{x_accel} Y{y_accel}" m201_limit_old = f"M201 X{round(accel_old)} Y{round(accel_old)}" if x_jerk == 0: - m205_jerk_pattern = "Y(\d*)" + m205_jerk_pattern = r"Y(\d*)" m205_jerk_new = f"Y{y_jerk}" if y_jerk == 0: - m205_jerk_pattern = "X(\d*)" + m205_jerk_pattern = r"X(\d*)" m205_jerk_new = f"X{x_jerk}" if x_jerk != 0 and y_jerk != 0: - m205_jerk_pattern = jerk_cmd + " X(\d*) Y(\d*)" + m205_jerk_pattern = jerk_cmd + r" X(\d*) Y(\d*)" m205_jerk_new = jerk_cmd + f" X{x_jerk} Y{y_jerk}" m205_jerk_old = jerk_cmd + f" X{jerk_old} Y{jerk_old}" type_of_change = self.getSettingValueByKey("type_of_change") From 4d177312b80414213c5c5fffa4855e79c0137913 Mon Sep 17 00:00:00 2001 From: Barrnet Date: Fri, 20 Oct 2023 11:54:37 +0200 Subject: [PATCH 054/765] Create flyingbear_ghost_6.def.json --- .../definitions/flyingbear_ghost_6.def.json | 49 +++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 resources/definitions/flyingbear_ghost_6.def.json diff --git a/resources/definitions/flyingbear_ghost_6.def.json b/resources/definitions/flyingbear_ghost_6.def.json new file mode 100644 index 00000000000..c6aa63eb83c --- /dev/null +++ b/resources/definitions/flyingbear_ghost_6.def.json @@ -0,0 +1,49 @@ +{ + "version": 2, + "name": "Flying Bear Ghost 6", + "inherits": "flyingbear_base", + "metadata": + { + "visible": true, + "author": "barrnet", + "platform": "flyingbear_platform.obj", + "platform_texture": "flyingbear_platform.png", + "quality_definition": "flyingbear_base" + }, + "overrides": + { + "machine_name": { "default_value": "Flying Bear Ghost 6" }, + "acceleration_enabled": { "value": false }, + "acceleration_print": { "value": 1500 }, + "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, + "acceleration_travel": { "value": 3000 }, + "acceleration_travel_layer_0": { "value": "acceleration_travel" }, + "jerk_enabled": { "value": false }, + "jerk_print": { "value": 20 }, + "jerk_travel": { "value": "jerk_print" }, + "jerk_travel_layer_0": { "value": "jerk_travel" }, + "machine_acceleration": { "value": 1500 }, + "machine_depth": { "default_value": 210 }, + "machine_height": { "default_value": 210 }, + "machine_width": { "default_value": 255 }, + "machine_max_acceleration_e": { "value": 80000 }, + "machine_max_acceleration_x": { "value": 1000 }, + "machine_max_acceleration_y": { "value": 1000 }, + "machine_max_acceleration_z": { "value": 200 }, + "machine_max_feedrate_e": { "value": 70 }, + "machine_max_feedrate_x": { "value": 200 }, + "machine_max_feedrate_y": { "value": 200 }, + "machine_max_feedrate_z": { "value": 20 }, + "machine_max_jerk_e": { "value": 5.0 }, + "machine_max_jerk_xy": { "value": 15 }, + "machine_max_jerk_z": { "value": 0.4 }, + "machine_name": { "default_value": "Flying Bear Ghost 6" }, + "machine_steps_per_mm_e": { "default_value": 405 }, + "machine_steps_per_mm_x": { "default_value": 160 }, + "machine_steps_per_mm_y": { "default_value": 160 }, + "machine_steps_per_mm_z": { "default_value": 800 }, + "retraction_amount": { "value": 0.8 }, + "retraction_extrusion_window": { "value": 1.5 }, + "retraction_speed": { "default_value": 35 } + } +} From 32cb2adb9fa9651374ecdb6c416656ff54366a46 Mon Sep 17 00:00:00 2001 From: Barrnet Date: Fri, 20 Oct 2023 12:25:05 +0200 Subject: [PATCH 055/765] Add variant nozzle definition --- .../flyingbear/flyingbear_ghost_6_0.25.inst.cfg | 12 ++++++++++++ .../flyingbear/flyingbear_ghost_6_0.30.inst.cfg | 12 ++++++++++++ .../flyingbear/flyingbear_ghost_6_0.40.inst.cfg | 12 ++++++++++++ .../flyingbear/flyingbear_ghost_6_0.50.inst.cfg | 12 ++++++++++++ .../flyingbear/flyingbear_ghost_6_0.60.inst.cfg | 12 ++++++++++++ .../flyingbear/flyingbear_ghost_6_0.80.inst.cfg | 12 ++++++++++++ 6 files changed, 72 insertions(+) create mode 100644 resources/variants/flyingbear/flyingbear_ghost_6_0.25.inst.cfg create mode 100644 resources/variants/flyingbear/flyingbear_ghost_6_0.30.inst.cfg create mode 100644 resources/variants/flyingbear/flyingbear_ghost_6_0.40.inst.cfg create mode 100644 resources/variants/flyingbear/flyingbear_ghost_6_0.50.inst.cfg create mode 100644 resources/variants/flyingbear/flyingbear_ghost_6_0.60.inst.cfg create mode 100644 resources/variants/flyingbear/flyingbear_ghost_6_0.80.inst.cfg diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.25.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.25.inst.cfg new file mode 100644 index 00000000000..db631d9c3d1 --- /dev/null +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.25.inst.cfg @@ -0,0 +1,12 @@ +[general] +definition = flyingbear_ghost_6 +name = 0.25mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.25 \ No newline at end of file diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.30.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.30.inst.cfg new file mode 100644 index 00000000000..4d33cff4234 --- /dev/null +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.30.inst.cfg @@ -0,0 +1,12 @@ +[general] +definition = flyingbear_ghost_6 +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 \ No newline at end of file diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.40.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.40.inst.cfg new file mode 100644 index 00000000000..8ef6a7ab10a --- /dev/null +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.40.inst.cfg @@ -0,0 +1,12 @@ +[general] +definition = flyingbear_ghost_6 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 \ No newline at end of file diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.50.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.50.inst.cfg new file mode 100644 index 00000000000..e9b6c77da51 --- /dev/null +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.50.inst.cfg @@ -0,0 +1,12 @@ +[general] +definition = flyingbear_ghost_6 +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 \ No newline at end of file diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.60.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.60.inst.cfg new file mode 100644 index 00000000000..6a2d974cc32 --- /dev/null +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.60.inst.cfg @@ -0,0 +1,12 @@ +[general] +definition = flyingbear_ghost_6 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 \ No newline at end of file diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.80.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.80.inst.cfg new file mode 100644 index 00000000000..59b1af9de31 --- /dev/null +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.80.inst.cfg @@ -0,0 +1,12 @@ +[general] +definition = flyingbear_ghost_6 +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 \ No newline at end of file From cd6e583f435c65ab964921cdc390db805483417c Mon Sep 17 00:00:00 2001 From: GregValiant <64202104+GregValiant@users.noreply.github.com> Date: Mon, 16 Oct 2023 14:22:10 -0400 Subject: [PATCH 056/765] Update DisplayInfoOnLCD.py Add pause count notification Update DisplayInfoOnLCD.py Moved some line insertions to accommodate newer Creality firmware. Change DisplayFIlename and DIsplayProgress Add messages to use DIsplay Info and add exit code. Update DisplayInfoOnLCD.py Some changes --- .../scripts/DisplayFilenameAndLayerOnLCD.py | 37 +++++++++++++++++ .../scripts/DisplayInfoOnLCD.py | 32 +++++++++++---- .../scripts/DisplayProgressOnLCD.py | 40 +++++++++++++++++++ 3 files changed, 101 insertions(+), 8 deletions(-) create mode 100644 plugins/PostProcessingPlugin/scripts/DisplayFilenameAndLayerOnLCD.py create mode 100644 plugins/PostProcessingPlugin/scripts/DisplayProgressOnLCD.py diff --git a/plugins/PostProcessingPlugin/scripts/DisplayFilenameAndLayerOnLCD.py b/plugins/PostProcessingPlugin/scripts/DisplayFilenameAndLayerOnLCD.py new file mode 100644 index 00000000000..bfe04b2beae --- /dev/null +++ b/plugins/PostProcessingPlugin/scripts/DisplayFilenameAndLayerOnLCD.py @@ -0,0 +1,37 @@ +# Cura PostProcessingPlugin +# Author: Amanda de Castilho +# Date: August 28, 2018 +# Modified: November 16, 2018 by Joshua Pope-Lewis + +# Description: This plugin is now an option in 'Display Info on LCD' + +from ..Script import Script +from UM.Application import Application +from UM.Message import Message + +class DisplayFilenameAndLayerOnLCD(Script): + def initialize(self) -> None: + Message(title = "[Display Filename and Layer on LCD]", text = "This script is now an option in 'Display Info on LCD'. This post processor no longer works.").show() + + def getSettingDataString(self): + return """{ + "name": "Display Filename And Layer On LCD", + "key": "DisplayFilenameAndLayerOnLCD", + "metadata": {}, + "version": 2, + "settings": + { + "enable_script": + { + "label": "Deprecated/Obsolete", + "description": "This script is now included in 'Display Info on LCD'.", + "type": "bool", + "default_value": true + } + } + }""" + + def execute(self, data): + Message(title = "[Display Filename and Layer on LCD]", text = "This post is now included in 'Display Info on LCD'. This script will exit.").show() + data[0] += "; [Display Filename and Layer on LCD] Did not run. It is now included in 'Display Info on LCD'.\n" + return data diff --git a/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py b/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py index 6d2e83d545c..bfd88534f87 100644 --- a/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py +++ b/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py @@ -134,7 +134,7 @@ def getSettingDataString(self): "countdown_to_pause": { "label": "Countdown to Pauses", - "description": "Instead of layer number and remaining print time the LCD will show 'layers remaining before pause' and 'Est Time to Pause' (ETP).", + "description": "When enabled - DisplayInfoOnLCD must run AFTER all PauseAtHeight and Filament Change scripts. Instead of layer number and remaining print time the LCD will show 'layers remaining before pause/filament change and the time to pause/filament change' (TP).", "type": "bool", "default_value": false, "enabled": "display_option == 'display_progress'" @@ -163,7 +163,7 @@ def getSettingDataString(self): def execute(self, data): display_option = self.getSettingValueByKey("display_option") add_m118_line = self.getSettingValueByKey("add_m118_line") - + # This is Display Filename and Layer on LCD--------------------------------------------------------- if display_option == "filename_layer": max_layer = 0 @@ -229,17 +229,33 @@ def execute(self, data): if line.startswith(";TIME:"): tindex = lines.index(line) cura_time = int(line.split(":")[1]) - print_time = cura_time*speed_factor + print_time = cura_time * speed_factor hhh = print_time/3600 hr = round(hhh // 1) mmm = round((hhh % 1) * 60) orig_hhh = cura_time/3600 orig_hr = round(orig_hhh // 1) - orig_mmm = round((orig_hhh % 1) * 60) - if add_m118_line: lines.insert(tindex+1,"M118 Adjusted Print Time " + str(hr) + "hr " + str(mmm) + "min") - lines.insert(tindex+1,"M117 ET " + str(hr) + "hr " + str(mmm) + "min") + orig_min = int((cura_time - (orig_hr * 3600))/60) # Not rounded up + orig_mmm = round((orig_hhh % 1) * 60) # Rounded up + orig_sec = round(cura_time - orig_hr * 3600 - orig_min * 60) + if add_m118_line: lines.insert(tindex + 3,"M118 Adjusted Print Time " + str(hr) + "hr " + str(mmm) + "min") + lines.insert(tindex + 3,"M117 ET " + str(hr) + "hr " + str(mmm) + "min") + # If Countdown to pause is enabled then count the pauses and/or filament changes + pause_str = "" + if bool(self.getSettingValueByKey("countdown_to_pause")): + pause_count = 0 + filament_change_count = 0 + for num in range(2,len(data) - 1, 1): + if "PauseAtHeight.py" in data[num]: + pause_count += 1 + if "M600" in data[num]: + filament_change_count += 1 + if pause_count > 0: + pause_str = f" with {pause_count} pause(s)" + if filament_change_count > 0: + pause_str += f" and {filament_change_count} filament change(s)" # This line goes in to convert seconds to hours and minutes - lines.insert(tindex+1, f";Cura Time: {orig_hr}hr {orig_mmm}min") + lines.insert(tindex + 3, f";Cura Time Estimate: {cura_time}sec = {orig_hr}hr {orig_min}min {orig_sec}sec {pause_str}") data[0] = "\n".join(lines) data[len(data)-1] += "M117 Orig Cura Est " + str(orig_hr) + "hr " + str(orig_mmm) + "min\n" if add_m118_line: data[len(data)-1] += "M118 Est w/FudgeFactor " + str(speed_factor * 100) + "% was " + str(hr) + "hr " + str(mmm) + "min\n" @@ -328,7 +344,7 @@ def execute(self, data): if line.startswith(";TIME_ELAPSED:"): this_time = (float(line.split(":")[1]))*speed_factor time_list.append(str(this_time)) - if "PauseAtHeight.py" in layer: + if "PauseAtHeight.py" in layer or "M600" in layer: for qnum in range(num - 1, pause_index, -1): time_list[qnum] = str(float(this_time) - float(time_list[qnum])) + "P" pause_index = num-1 diff --git a/plugins/PostProcessingPlugin/scripts/DisplayProgressOnLCD.py b/plugins/PostProcessingPlugin/scripts/DisplayProgressOnLCD.py new file mode 100644 index 00000000000..4d24aedac05 --- /dev/null +++ b/plugins/PostProcessingPlugin/scripts/DisplayProgressOnLCD.py @@ -0,0 +1,40 @@ +# Cura PostProcessingPlugin +# Author: Mathias Lyngklip Kjeldgaard, Alexander Gee, Kimmo Toivanen, Inigo Martinez +# Date: July 31, 2019 +# Modified: Nov 30, 2021 + +# Description: This plugin displays progress on the LCD. It can output the estimated time remaining and the completion percentage. + +from ..Script import Script + +import re +import datetime +from UM.Message import Message + +class DisplayProgressOnLCD(Script): + + def initialize(self) -> None: + Message(title = "[Display Progress on LCD]", text = "This script is now an option in 'Display Info on LCD'. This post processor no longer works.").show() + + def getSettingDataString(self): + return """{ + "name": "Display Progress On LCD", + "key": "DisplayProgressOnLCD", + "metadata": {}, + "version": 2, + "settings": + { + "enable_script": + { + "label": "Deprecated/Obsolete", + "description": "This script is now included in 'Display Info on LCD'.", + "type": "bool", + "default_value": true + } + } + }""" + + def execute(self, data): + Message(title = "[Display Progress on LCD]", text = "This post is now included in 'Display Info on LCD'. This script will exit.").show() + data[0] += "; [Display Progress on LCD] Did not run. It is now included in 'Display Info on LCD'.\n" + return data From dc6edffea4da01e0d58ba4e6e95a74f5d35b8cb7 Mon Sep 17 00:00:00 2001 From: Fredrik Ehnbom Date: Sat, 21 Oct 2023 12:18:00 +0200 Subject: [PATCH 057/765] Add navigation style option --- cura/CuraApplication.py | 1 + resources/qml/Preferences/GeneralPage.qml | 50 +++++++++++++++++++++++ 2 files changed, 51 insertions(+) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index e075fe92f58..ca10a128337 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -589,6 +589,7 @@ def startSplashWindowPhase(self) -> None: preferences.addPreference("view/invert_zoom", False) preferences.addPreference("view/filter_current_build_plate", False) + preferences.addPreference("view/navigation_style", "cura") preferences.addPreference("cura/sidebar_collapsed", False) preferences.addPreference("cura/favorite_materials", "") diff --git a/resources/qml/Preferences/GeneralPage.qml b/resources/qml/Preferences/GeneralPage.qml index 32bbcd5053b..839dc59f290 100644 --- a/resources/qml/Preferences/GeneralPage.qml +++ b/resources/qml/Preferences/GeneralPage.qml @@ -101,6 +101,7 @@ UM.PreferencesPage centerOnSelectCheckbox.checked = boolCheck(UM.Preferences.getValue("view/center_on_select")) UM.Preferences.resetPreference("view/invert_zoom"); invertZoomCheckbox.checked = boolCheck(UM.Preferences.getValue("view/invert_zoom")) + UM.Preferences.resetPreference("view/navigation_style"); UM.Preferences.resetPreference("view/zoom_to_mouse"); zoomToMouseCheckbox.checked = boolCheck(UM.Preferences.getValue("view/zoom_to_mouse")) //UM.Preferences.resetPreference("view/top_layer_count"); @@ -604,6 +605,55 @@ UM.PreferencesPage } } + UM.TooltipArea + { + width: childrenRect.width + height: childrenRect.height + text: catalog.i18nc("@info:tooltip", "What type of camera navigation should be used?") + Column + { + spacing: UM.Theme.getSize("narrow_margin").height + + UM.Label + { + text: catalog.i18nc("@window:text", "Camera navigation:") + } + ListModel + { + id: navigationStylesList + Component.onCompleted: + { + append({ text: catalog.i18n("Cura"), code: "cura" }) + append({ text: catalog.i18n("FreeCAD trackpad"), code: "freecad_trackpad" }) + } + } + + Cura.ComboBox + { + id: cameraNavigationComboBox + + model: navigationStylesList + textRole: "text" + width: UM.Theme.getSize("combobox").width + height: UM.Theme.getSize("combobox").height + + currentIndex: + { + var code = UM.Preferences.getValue("view/navigation_style"); + for(var i = 0; i < comboBoxList.count; ++i) + { + if(model.get(i).code == code) + { + return i + } + } + return 0 + } + onActivated: UM.Preferences.setValue("view/navigation_style", model.get(index).code) + } + } + } + Item { //: Spacer From ff5d0fa5523c4969448d034dd9fc362ecbe3cc83 Mon Sep 17 00:00:00 2001 From: goofoo Date: Tue, 24 Oct 2023 15:43:18 +0800 Subject: [PATCH 058/765] add new machine Multicomp MCPI 200 --- .../definitions/multicomp_mcpi200.def.json | 18 ++++++++++++++++++ .../multicomp/multicomp_mcpi200_0.2.inst.cfg | 13 +++++++++++++ .../multicomp/multicomp_mcpi200_0.4.inst.cfg | 13 +++++++++++++ .../multicomp/multicomp_mcpi200_0.6.inst.cfg | 13 +++++++++++++ .../multicomp/multicomp_mcpi200_0.8.inst.cfg | 13 +++++++++++++ .../multicomp/multicomp_mcpi200_1.0.inst.cfg | 13 +++++++++++++ 6 files changed, 83 insertions(+) create mode 100644 resources/definitions/multicomp_mcpi200.def.json create mode 100644 resources/variants/multicomp/multicomp_mcpi200_0.2.inst.cfg create mode 100644 resources/variants/multicomp/multicomp_mcpi200_0.4.inst.cfg create mode 100644 resources/variants/multicomp/multicomp_mcpi200_0.6.inst.cfg create mode 100644 resources/variants/multicomp/multicomp_mcpi200_0.8.inst.cfg create mode 100644 resources/variants/multicomp/multicomp_mcpi200_1.0.inst.cfg diff --git a/resources/definitions/multicomp_mcpi200.def.json b/resources/definitions/multicomp_mcpi200.def.json new file mode 100644 index 00000000000..b9d0e36f29e --- /dev/null +++ b/resources/definitions/multicomp_mcpi200.def.json @@ -0,0 +1,18 @@ +{ + "version": 2, + "name": "Multicomp Pro MCPI-200", + "inherits": "goofoo_near", + "metadata": + { + "visible": true, + "author": "Woosh", + "manufacturer": "Multicomp Pro" + }, + "overrides": + { + "machine_depth": { "default_value": 200 }, + "machine_height": { "default_value": 200 }, + "machine_name": { "default_value": "Multicomp Pro MCPI-200" }, + "machine_width": { "default_value": 200 } + } +} \ No newline at end of file diff --git a/resources/variants/multicomp/multicomp_mcpi200_0.2.inst.cfg b/resources/variants/multicomp/multicomp_mcpi200_0.2.inst.cfg new file mode 100644 index 00000000000..eb96860dcb8 --- /dev/null +++ b/resources/variants/multicomp/multicomp_mcpi200_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = multicomp_mcpi200 +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/multicomp/multicomp_mcpi200_0.4.inst.cfg b/resources/variants/multicomp/multicomp_mcpi200_0.4.inst.cfg new file mode 100644 index 00000000000..b84fee233ed --- /dev/null +++ b/resources/variants/multicomp/multicomp_mcpi200_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = multicomp_mcpi200 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/multicomp/multicomp_mcpi200_0.6.inst.cfg b/resources/variants/multicomp/multicomp_mcpi200_0.6.inst.cfg new file mode 100644 index 00000000000..b9f32820640 --- /dev/null +++ b/resources/variants/multicomp/multicomp_mcpi200_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = multicomp_mcpi200 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/multicomp/multicomp_mcpi200_0.8.inst.cfg b/resources/variants/multicomp/multicomp_mcpi200_0.8.inst.cfg new file mode 100644 index 00000000000..ca17db8e86b --- /dev/null +++ b/resources/variants/multicomp/multicomp_mcpi200_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = multicomp_mcpi200 +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/multicomp/multicomp_mcpi200_1.0.inst.cfg b/resources/variants/multicomp/multicomp_mcpi200_1.0.inst.cfg new file mode 100644 index 00000000000..7f71cd6c190 --- /dev/null +++ b/resources/variants/multicomp/multicomp_mcpi200_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = multicomp_mcpi200 +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + From 8aaaebb9f53f029a418eba654ca8249ff3595f43 Mon Sep 17 00:00:00 2001 From: Roman Pletnev Date: Tue, 24 Oct 2023 13:59:58 +0400 Subject: [PATCH 059/765] Update print head & gantry dimensions --- resources/definitions/creality_ender3v3se.def.json | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/resources/definitions/creality_ender3v3se.def.json b/resources/definitions/creality_ender3v3se.def.json index 12a861a2a95..5769e3e4936 100644 --- a/resources/definitions/creality_ender3v3se.def.json +++ b/resources/definitions/creality_ender3v3se.def.json @@ -20,15 +20,18 @@ }, "overrides": { - "gantry_height": { "value": 25 }, + "gantry_height": { "value": 38 }, "machine_depth": { "default_value": 220 }, "machine_head_with_fans_polygon": { "default_value": [ - [-20, 10], - [10, 10], - [10, -10], - [-20, -10] + [-36, -18], + [-20, -42], + [6, -42], + [30, -18], + [30, 52], + [-3, 56], + [-36, 52] ] }, "machine_heated_bed": { "default_value": true }, From cf78ae0dca30d6482642ac336f76433453778735 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Thu, 26 Oct 2023 16:17:03 +0200 Subject: [PATCH 060/765] Method printers method, methodx, methodxl read from cloud CURA-11138 --- .../NetworkedPrinterOutputDevice.py | 12 +++++++++- .../qml/MonitorConfigOverrideDialog.qml | 2 +- .../src/Cloud/CloudApiClient.py | 23 +++++++++++++------ .../src/Models/Http/CloudClusterResponse.py | 12 +++++++++- 4 files changed, 39 insertions(+), 10 deletions(-) diff --git a/cura/PrinterOutput/NetworkedPrinterOutputDevice.py b/cura/PrinterOutput/NetworkedPrinterOutputDevice.py index 0fc387a53f7..0d72f8e9e2b 100644 --- a/cura/PrinterOutput/NetworkedPrinterOutputDevice.py +++ b/cura/PrinterOutput/NetworkedPrinterOutputDevice.py @@ -415,7 +415,17 @@ def firmwareVersion(self) -> str: @pyqtProperty(str, constant = True) def printerType(self) -> str: - return self._properties.get(b"printer_type", b"Unknown").decode("utf-8") + return self.getPrinterType(self._properties.get(b"printer_type", b"Unknown").decode("utf-8")) + + def getPrinterTypeIfMakerBot(printer_type): + method_printer_type = { + "fire_e": "ultimaker_method", + "lava_f": "ultimaker_methodx", + "magma_10": "ultimaker_methodxl" + } + if printer_type in method_printer_type: + return method_printer_type[printer_type] + return printer_type @pyqtProperty(str, constant = True) def ipAddress(self) -> str: diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml index 5baae741acd..345bab0ba4c 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml @@ -115,7 +115,7 @@ UM.Dialog // Utils function formatPrintJobName(name) { - var extensions = [ ".gcode.gz", ".gz", ".gcode", ".ufp" ] + var extensions = [ ".gcode.gz", ".gz", ".gcode", ".ufp", ".makerbot" ] for (var i = 0; i < extensions.length; i++) { var extension = extensions[i] diff --git a/plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py b/plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py index 318fceeb408..e5524a2e45f 100644 --- a/plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py +++ b/plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py @@ -82,13 +82,22 @@ def getClustersByMachineType(self, machine_type, on_finished: Callable[[List[Clo # HACK: There is something weird going on with the API, as it reports printer types in formats like # "ultimaker_s3", but wants "Ultimaker S3" when using the machine_variant filter query. So we need to do some # conversion! - - machine_type = machine_type.replace("_plus", "+") - machine_type = machine_type.replace("_", " ") - machine_type = machine_type.replace("ultimaker", "ultimaker ") - machine_type = machine_type.replace(" ", " ") - machine_type = machine_type.title() - machine_type = urllib.parse.quote_plus(machine_type) + # API points to "MakerBot Method" for a makerbot printertypes which we already changed to allign with other printer_type + + method_x = { + "ultimaker_method":"MakerBot Method", + "ultimaker_methodx":"MakerBot Method X", + "ultimaker_methodxl":"MakerBot Method XL" + } + if machine_type in method_x: + machine_type = method_x[machine_type] + else: + machine_type = machine_type.replace("_plus", "+") + machine_type = machine_type.replace("_", " ") + machine_type = machine_type.replace("ultimaker", "ultimaker ") + machine_type = machine_type.replace(" ", " ") + machine_type = machine_type.title() + machine_type = urllib.parse.quote_plus(machine_type) url = f"{self.CLUSTER_API_ROOT}/clusters?machine_variant={machine_type}" self._http.get(url, scope=self._scope, diff --git a/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterResponse.py b/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterResponse.py index c8f3be282e7..8a5998b9990 100644 --- a/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterResponse.py +++ b/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterResponse.py @@ -34,7 +34,7 @@ def __init__(self, cluster_id: str, host_guid: str, host_name: str, is_online: b self.host_version = host_version self.host_internal_ip = host_internal_ip self.friendly_name = friendly_name - self.printer_type = printer_type + self.printer_type = self.getPrinterTypeIfMakerBot(printer_type) self.printer_count = printer_count self.capabilities = capabilities if capabilities is not None else [] super().__init__(**kwargs) @@ -51,3 +51,13 @@ def __repr__(self) -> str: :return: A human-readable representation of the data in this object. """ return str({k: v for k, v in self.__dict__.items() if k in {"cluster_id", "host_guid", "host_name", "status", "is_online", "host_version", "host_internal_ip", "friendly_name", "printer_type", "printer_count", "capabilities"}}) + + def getPrinterTypeIfMakerBot(printer_type): + method_printer_type = { + "fire_e": "ultimaker_method", + "lava_f": "ultimaker_methodx", + "magma_10": "ultimaker_methodxl" + } + if printer_type in method_printer_type: + return method_printer_type[printer_type] + return printer_type From 37e236405aebc25c305b7b17000ad0c2d997b030 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Fri, 27 Oct 2023 09:30:06 +0200 Subject: [PATCH 061/765] fix for functions CURA-11138 --- cura/PrinterOutput/NetworkedPrinterOutputDevice.py | 4 ++-- .../src/Models/Http/CloudClusterResponse.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cura/PrinterOutput/NetworkedPrinterOutputDevice.py b/cura/PrinterOutput/NetworkedPrinterOutputDevice.py index 0d72f8e9e2b..ed1dbe1ab86 100644 --- a/cura/PrinterOutput/NetworkedPrinterOutputDevice.py +++ b/cura/PrinterOutput/NetworkedPrinterOutputDevice.py @@ -415,9 +415,9 @@ def firmwareVersion(self) -> str: @pyqtProperty(str, constant = True) def printerType(self) -> str: - return self.getPrinterType(self._properties.get(b"printer_type", b"Unknown").decode("utf-8")) + return self.getPrinterTypeIfMakerBot(self._properties.get(b"printer_type", b"Unknown").decode("utf-8")) - def getPrinterTypeIfMakerBot(printer_type): + def getPrinterTypeIfMakerBot(self, printer_type): method_printer_type = { "fire_e": "ultimaker_method", "lava_f": "ultimaker_methodx", diff --git a/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterResponse.py b/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterResponse.py index 8a5998b9990..9f33847f2a8 100644 --- a/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterResponse.py +++ b/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterResponse.py @@ -52,7 +52,7 @@ def __repr__(self) -> str: """ return str({k: v for k, v in self.__dict__.items() if k in {"cluster_id", "host_guid", "host_name", "status", "is_online", "host_version", "host_internal_ip", "friendly_name", "printer_type", "printer_count", "capabilities"}}) - def getPrinterTypeIfMakerBot(printer_type): + def getPrinterTypeIfMakerBot(self, printer_type): method_printer_type = { "fire_e": "ultimaker_method", "lava_f": "ultimaker_methodx", From 3dd4ef7dda12d8ca0afffd3c6300728f762769af Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Fri, 27 Oct 2023 11:41:06 +0200 Subject: [PATCH 062/765] printer firmware version is major and minor in case of makerbot CURA-11138 --- .../UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py | 10 ++++++++-- plugins/UM3NetworkPrinting/src/MeshFormatHandler.py | 4 ++++ 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py index c5c144d2734..8a99deb102a 100644 --- a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py +++ b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py @@ -58,6 +58,7 @@ class CloudOutputDevice(UltimakerNetworkedPrinterOutputDevice): # The minimum version of firmware that support print job actions over cloud. PRINT_JOB_ACTIONS_MIN_VERSION = Version("5.2.12") + PRINT_JOB_ACTIONS_MIN_VERSION_METHOD = Version("2.500") # Notify can only use signals that are defined by the class that they are in, not inherited ones. # Therefore, we create a private signal used to trigger the printersChanged signal. @@ -325,8 +326,13 @@ def supportsPrintJobActions(self) -> bool: if not self._printers: return False version_number = self.printers[0].firmwareVersion.split(".") - firmware_version = Version([version_number[0], version_number[1], version_number[2]]) - return firmware_version >= self.PRINT_JOB_ACTIONS_MIN_VERSION + if len(version_number)> 2: + firmware_version = Version([version_number[0], version_number[1], version_number[2]]) + return firmware_version >= self.PRINT_JOB_ACTIONS_MIN_VERSION + else: + firmware_version = Version([version_number[0], version_number[1]]) + return firmware_version >= self.PRINT_JOB_ACTIONS_MIN_VERSION_METHOD + @pyqtProperty(bool, constant = True) def supportsPrintJobQueue(self) -> bool: diff --git a/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py b/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py index 7fc1b4a7d34..35492409762 100644 --- a/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py +++ b/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py @@ -106,6 +106,10 @@ def _getPreferredFormat(self, firmware_version: str) -> Dict[str, Union[str, int if "application/x-ufp" not in machine_file_formats and Version(firmware_version) >= Version("4.4"): machine_file_formats = ["application/x-ufp"] + machine_file_formats + # Exception for makerbot firmware version >=2.500: makerbot is supported + elif "application/x-makerbot" not in machine_file_formats: + machine_file_formats = ["application/x-makerbot"] + machine_file_formats + # Take the intersection between file_formats and machine_file_formats. format_by_mimetype = {f["mime_type"]: f for f in file_formats} From 1cc7ce7a662bb1457e764963aa8ab0fcc0370480 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Fri, 27 Oct 2023 17:08:05 +0200 Subject: [PATCH 063/765] Message to show user when cloud printer is not available -added png for makerbots for exception case CURA-11138 CURA-11138 --- .../resources/png/MakerBot Method X.png | Bin 0 -> 206808 bytes .../resources/png/MakerBot Method XL.png | Bin 0 -> 634835 bytes .../resources/png/MakerBot Method.png | Bin 0 -> 142934 bytes .../src/Cloud/CloudOutputDeviceManager.py | 10 +++++++++- 4 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 plugins/UM3NetworkPrinting/resources/png/MakerBot Method X.png create mode 100644 plugins/UM3NetworkPrinting/resources/png/MakerBot Method XL.png create mode 100644 plugins/UM3NetworkPrinting/resources/png/MakerBot Method.png diff --git a/plugins/UM3NetworkPrinting/resources/png/MakerBot Method X.png b/plugins/UM3NetworkPrinting/resources/png/MakerBot Method X.png new file mode 100644 index 0000000000000000000000000000000000000000..fc289fe62c68a27839f023ba12b314d5aca8ecbc GIT binary patch literal 206808 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

-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 E2j5ee)c^nh literal 0 HcmV?d00001 diff --git a/plugins/UM3NetworkPrinting/resources/png/MakerBot Method XL.png b/plugins/UM3NetworkPrinting/resources/png/MakerBot Method XL.png new file mode 100644 index 0000000000000000000000000000000000000000..c23767459c3d41ba604c318cc52b17f1237d9e0e GIT binary patch literal 634835 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

l|9D;oO^YXjy4 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

2& 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

xqvsF^c4qoRtrYf|mKPi#z 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�r7{?g$1m#@^aPc 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

LtL2eiH*g) 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 xD)s#rDNxF%c+ui+h2ZY)?hqij1$ROq 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

Qg@jcG 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 V=q@ZNAR>HTz0iGL@yzn`{{YhF5{Li* literal 0 HcmV?d00001 diff --git a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py index 5ec0db8a663..6fbbf2f0536 100644 --- a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py +++ b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py @@ -9,6 +9,7 @@ from UM import i18nCatalog from UM.Logger import Logger # To log errors talking to the API. +from UM.Message import Message from UM.Settings.Interfaces import ContainerInterface from UM.Signal import Signal from UM.Util import parseBool @@ -25,7 +26,7 @@ from ..Messages.RemovedPrintersMessage import RemovedPrintersMessage from ..Models.Http.CloudClusterResponse import CloudClusterResponse from ..Messages.NewPrinterDetectedMessage import NewPrinterDetectedMessage - +catalog = i18nCatalog("cura") class CloudOutputDeviceManager: """The cloud output device manager is responsible for using the Ultimaker Cloud APIs to manage remote clusters. @@ -179,6 +180,13 @@ def _requestWrite(self, unique_id: str, nodes: List["SceneNode"]): return Logger.log("e", f"Failed writing to specific cloud printer: {unique_id} not in remote clusters.") + # This message is added so that user knows when the print job was not sent to cloud printer + message = Message(catalog.i18nc("@info:status", + "Failed writing to specific cloud printer: {0} not in remote clusters.").format(unique_id), + title=catalog.i18nc("@info:title", "Error"), + message_type=Message.MessageType.ERROR) + message.show() + def _createMachineStacksForDiscoveredClusters(self, discovered_clusters: List[CloudClusterResponse]) -> None: """**Synchronously** create machines for discovered devices From 3bfc0afc9383d458732ebe693cfaa1a309390771 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Mon, 30 Oct 2023 13:32:25 +0100 Subject: [PATCH 064/765] For makerbot files upload in cloud CURA-11138 --- .../resources/qml/SaveProjectFilesPage.qml | 3 +- .../src/DFFileExportAndUploadManager.py | 45 +++++++++++++++---- .../src/DigitalFactoryApiClient.py | 2 +- .../src/DigitalFactoryOutputDevice.py | 3 +- 4 files changed, 41 insertions(+), 12 deletions(-) diff --git a/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml b/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml index 0a94a4f48a0..311aa0bf7ee 100644 --- a/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml +++ b/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml @@ -213,7 +213,8 @@ Item valueRole: "value" model: [ - { text: catalog.i18nc("@option", "Save Cura project and print file"), key: "3mf_ufp", value: ["3mf", "ufp"] }, + { text: catalog.i18nc("@option", "Save Cura project and .ufp print file"), key: "3mf_ufp", value: ["3mf", "ufp"] }, + { text: catalog.i18nc("@option", "Save Cura project and .makerbot print file"), key: "3mf_makerbot", value: ["3mf", "makerbot"] }, { text: catalog.i18nc("@option", "Save Cura project"), key: "3mf", value: ["3mf"] }, ] } diff --git a/plugins/DigitalLibrary/src/DFFileExportAndUploadManager.py b/plugins/DigitalLibrary/src/DFFileExportAndUploadManager.py index 26912abd9a8..271fe652c81 100644 --- a/plugins/DigitalLibrary/src/DFFileExportAndUploadManager.py +++ b/plugins/DigitalLibrary/src/DFFileExportAndUploadManager.py @@ -27,7 +27,7 @@ class DFFileExportAndUploadManager: """ Class responsible for exporting the scene and uploading the exported data to the Digital Factory Library. Since 3mf - and UFP files may need to be uploaded at the same time, this class keeps a single progress and success message for + and (UFP or makerbot) files may need to be uploaded at the same time, this class keeps a single progress and success message for both files and updates those messages according to the progress of both the file job uploads. """ def __init__(self, file_handlers: Dict[str, FileHandler], @@ -118,7 +118,7 @@ def _onPrintFileExported(self, job: ExportFileJob) -> None: library_project_id = self._library_project_id, source_file_id = self._source_file_id ) - self._api.requestUploadUFP(request, on_finished = self._uploadFileData, on_error = self._onRequestUploadPrintFileFailed) + self._api.requestUploadMeshFile(request, on_finished = self._uploadFileData, on_error = self._onRequestUploadPrintFileFailed) def _uploadFileData(self, file_upload_response: Union[DFLibraryFileUploadResponse, DFPrintJobUploadResponse]) -> None: """Uploads the exported file data after the file or print job upload has been registered at the Digital Factory @@ -279,22 +279,25 @@ def _onRequestUploadPrintFileFailed(self, reply: "QNetworkReply", network_error: This means that something went wrong with the initial request to create a "file" entry in the digital library. """ reply_string = bytes(reply.readAll()).decode() - filename_ufp = self._file_name + ".ufp" - Logger.log("d", "An error occurred while uploading the print job file '{}' to the Digital Library project '{}': {}".format(filename_ufp, self._library_project_id, reply_string)) + if "ufp" in self._formats: + filename_meshfile = self._file_name + ".ufp" + elif "makerbot" in self._formats: + filename_meshfile = self._file_name + ".makerbot" + Logger.log("d", "An error occurred while uploading the print job file '{}' to the Digital Library project '{}': {}".format(filename_meshfile, self._library_project_id, reply_string)) with self._message_lock: # Set the progress to 100% when the upload job fails, to avoid having the progress message stuck - self._file_upload_job_metadata[filename_ufp]["upload_status"] = "failed" - self._file_upload_job_metadata[filename_ufp]["upload_progress"] = 100 + self._file_upload_job_metadata[filename_meshfile]["upload_status"] = "failed" + self._file_upload_job_metadata[filename_meshfile]["upload_progress"] = 100 human_readable_error = self.extractErrorTitle(reply_string) - self._file_upload_job_metadata[filename_ufp]["file_upload_failed_message"] = getBackwardsCompatibleMessage( + self._file_upload_job_metadata[filename_meshfile]["file_upload_failed_message"] = getBackwardsCompatibleMessage( title = "File upload error", - text = "Failed to upload the file '{}' to '{}'. {}".format(filename_ufp, self._library_project_name, human_readable_error), + text = "Failed to upload the file '{}' to '{}'. {}".format(filename_meshfile, self._library_project_name, human_readable_error), message_type_str = "ERROR", lifetime = 30 ) self._on_upload_error() - self._onFileUploadFinished(filename_ufp) + self._onFileUploadFinished(filename_meshfile) @staticmethod def extractErrorTitle(reply_body: Optional[str]) -> str: @@ -407,4 +410,28 @@ def initializeFileUploadJobMetadata(self) -> Dict[str, Any]: job_ufp = ExportFileJob(self._file_handlers["ufp"], self._nodes, self._file_name, "ufp") job_ufp.finished.connect(self._onPrintFileExported) self._upload_jobs.append(job_ufp) + + if "makerbot" in self._formats and "makerbot" in self._file_handlers and self._file_handlers["makerbot"]: + filename_makerbot = self._file_name + ".makerbot" + metadata[filename_makerbot] = { + "export_job_output" : None, + "upload_progress" : -1, + "upload_status" : "", + "file_upload_response": None, + "file_upload_success_message": getBackwardsCompatibleMessage( + text = "'{}' was uploaded to '{}'.".format(filename_makerbot, self._library_project_name), + title = "Upload successful", + message_type_str = "POSITIVE", + lifetime = 30, + ), + "file_upload_failed_message": getBackwardsCompatibleMessage( + text = "Failed to upload the file '{}' to '{}'.".format(filename_makerbot, self._library_project_name), + title = "File upload error", + message_type_str = "ERROR", + lifetime = 30 + ) + } + job_makerbot = ExportFileJob(self._file_handlers["makerbot"], self._nodes, self._file_name, "makerbot") + job_makerbot.finished.connect(self._onPrintFileExported) + self._upload_jobs.append(job_makerbot) return metadata diff --git a/plugins/DigitalLibrary/src/DigitalFactoryApiClient.py b/plugins/DigitalLibrary/src/DigitalFactoryApiClient.py index 13c65f79c4a..11689285882 100644 --- a/plugins/DigitalLibrary/src/DigitalFactoryApiClient.py +++ b/plugins/DigitalLibrary/src/DigitalFactoryApiClient.py @@ -313,7 +313,7 @@ def requestUpload3MF(self, request: DFLibraryFileUploadRequest, error_callback = on_error, timeout = self.DEFAULT_REQUEST_TIMEOUT) - def requestUploadUFP(self, request: DFPrintJobUploadRequest, + def requestUploadMeshFile(self, request: DFPrintJobUploadRequest, on_finished: Callable[[DFPrintJobUploadResponse], Any], on_error: Optional[Callable[["QNetworkReply", "QNetworkReply.NetworkError"], None]] = None) -> None: """Requests the Digital Factory to register the upload of a file in a library project. diff --git a/plugins/DigitalLibrary/src/DigitalFactoryOutputDevice.py b/plugins/DigitalLibrary/src/DigitalFactoryOutputDevice.py index 0a10ea034c2..0ed8f491f98 100644 --- a/plugins/DigitalLibrary/src/DigitalFactoryOutputDevice.py +++ b/plugins/DigitalLibrary/src/DigitalFactoryOutputDevice.py @@ -92,7 +92,8 @@ def loadWindow(self) -> None: if not self._controller.file_handlers: self._controller.file_handlers = { "3mf": CuraApplication.getInstance().getWorkspaceFileHandler(), - "ufp": CuraApplication.getInstance().getMeshFileHandler() + "ufp": CuraApplication.getInstance().getMeshFileHandler(), + "makerbot": CuraApplication.getInstance().getMeshFileHandler() } self._dialog = CuraApplication.getInstance().createQmlComponent(self._dialog_path, {"manager": self._controller}) From c2e2511fdcf941d67749ef99f8360afae3e80028 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Mon, 30 Oct 2023 13:51:39 +0100 Subject: [PATCH 065/765] Makerbot machine firmware version set to min of 2.700 CURA-11138 --- plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py | 2 +- plugins/UM3NetworkPrinting/src/MeshFormatHandler.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py index 8a99deb102a..edbc509d840 100644 --- a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py +++ b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py @@ -58,7 +58,7 @@ class CloudOutputDevice(UltimakerNetworkedPrinterOutputDevice): # The minimum version of firmware that support print job actions over cloud. PRINT_JOB_ACTIONS_MIN_VERSION = Version("5.2.12") - PRINT_JOB_ACTIONS_MIN_VERSION_METHOD = Version("2.500") + PRINT_JOB_ACTIONS_MIN_VERSION_METHOD = Version("2.700") # Notify can only use signals that are defined by the class that they are in, not inherited ones. # Therefore, we create a private signal used to trigger the printersChanged signal. diff --git a/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py b/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py index 35492409762..e6054773d8c 100644 --- a/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py +++ b/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py @@ -106,8 +106,8 @@ def _getPreferredFormat(self, firmware_version: str) -> Dict[str, Union[str, int if "application/x-ufp" not in machine_file_formats and Version(firmware_version) >= Version("4.4"): machine_file_formats = ["application/x-ufp"] + machine_file_formats - # Exception for makerbot firmware version >=2.500: makerbot is supported - elif "application/x-makerbot" not in machine_file_formats: + # Exception for makerbot firmware version >=2.700: makerbot is supported + elif "application/x-makerbot" not in machine_file_formats and Version(firmware_version >= Version("2.700")): machine_file_formats = ["application/x-makerbot"] + machine_file_formats # Take the intersection between file_formats and machine_file_formats. From 39ec9c92799b53ce210507aada9c42615895e930 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Mon, 30 Oct 2023 14:31:17 +0100 Subject: [PATCH 066/765] printertype Parsing function made static CURA-11138 --- cura/PrinterOutput/NetworkedPrinterOutputDevice.py | 5 +++-- .../src/Models/Http/CloudClusterResponse.py | 12 ++---------- 2 files changed, 5 insertions(+), 12 deletions(-) diff --git a/cura/PrinterOutput/NetworkedPrinterOutputDevice.py b/cura/PrinterOutput/NetworkedPrinterOutputDevice.py index ed1dbe1ab86..5268786a4f6 100644 --- a/cura/PrinterOutput/NetworkedPrinterOutputDevice.py +++ b/cura/PrinterOutput/NetworkedPrinterOutputDevice.py @@ -415,9 +415,10 @@ def firmwareVersion(self) -> str: @pyqtProperty(str, constant = True) def printerType(self) -> str: - return self.getPrinterTypeIfMakerBot(self._properties.get(b"printer_type", b"Unknown").decode("utf-8")) + return NetworkedPrinterOutputDevice.getPrinterTypeIfMakerBot(self._properties.get(b"printer_type", b"Unknown").decode("utf-8")) - def getPrinterTypeIfMakerBot(self, printer_type): + @staticmethod + def getPrinterTypeIfMakerBot(printer_type): method_printer_type = { "fire_e": "ultimaker_method", "lava_f": "ultimaker_methodx", diff --git a/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterResponse.py b/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterResponse.py index 9f33847f2a8..36b2bf016b6 100644 --- a/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterResponse.py +++ b/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterResponse.py @@ -2,6 +2,7 @@ # Cura is released under the terms of the LGPLv3 or higher. from typing import Optional, List +from cura.PrinterOutput.NetworkedPrinterOutputDevice import NetworkedPrinterOutputDevice from ..BaseModel import BaseModel @@ -34,7 +35,7 @@ def __init__(self, cluster_id: str, host_guid: str, host_name: str, is_online: b self.host_version = host_version self.host_internal_ip = host_internal_ip self.friendly_name = friendly_name - self.printer_type = self.getPrinterTypeIfMakerBot(printer_type) + self.printer_type = NetworkedPrinterOutputDevice.getPrinterTypeIfMakerBot(printer_type) self.printer_count = printer_count self.capabilities = capabilities if capabilities is not None else [] super().__init__(**kwargs) @@ -52,12 +53,3 @@ def __repr__(self) -> str: """ return str({k: v for k, v in self.__dict__.items() if k in {"cluster_id", "host_guid", "host_name", "status", "is_online", "host_version", "host_internal_ip", "friendly_name", "printer_type", "printer_count", "capabilities"}}) - def getPrinterTypeIfMakerBot(self, printer_type): - method_printer_type = { - "fire_e": "ultimaker_method", - "lava_f": "ultimaker_methodx", - "magma_10": "ultimaker_methodxl" - } - if printer_type in method_printer_type: - return method_printer_type[printer_type] - return printer_type From 1a139f44bcee5241e98f681a2d3ad6ea96d19305 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Mon, 30 Oct 2023 16:13:50 +0100 Subject: [PATCH 067/765] parsing method printer nozzles CURA-11138 --- cura/Machines/Models/CompatibleMachineModel.py | 3 +++ .../Models/ExtruderConfigurationModel.py | 15 ++++++++++++++- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/cura/Machines/Models/CompatibleMachineModel.py b/cura/Machines/Models/CompatibleMachineModel.py index 40a3618b315..40369b89a71 100644 --- a/cura/Machines/Models/CompatibleMachineModel.py +++ b/cura/Machines/Models/CompatibleMachineModel.py @@ -51,6 +51,9 @@ def _makeMaterial(brand, name, color): for output_device in machine_manager.printerOutputDevices: for printer in output_device.printers: extruder_configs = dict() + # If the printer name already exist in the queue skip it + if printer.name in [item["name"] for item in self.items]: + continue # initialize & add current active material: for extruder in printer.extruders: diff --git a/cura/PrinterOutput/Models/ExtruderConfigurationModel.py b/cura/PrinterOutput/Models/ExtruderConfigurationModel.py index d54092b8c98..8ba285fc816 100644 --- a/cura/PrinterOutput/Models/ExtruderConfigurationModel.py +++ b/cura/PrinterOutput/Models/ExtruderConfigurationModel.py @@ -40,9 +40,22 @@ def material(self) -> Optional[MaterialOutputModel]: def setHotendID(self, hotend_id: Optional[str]) -> None: if self._hotend_id != hotend_id: - self._hotend_id = hotend_id + self._hotend_id = ExtruderConfigurationModel.getHotendIdIfMakerbot(hotend_id) self.extruderConfigurationChanged.emit() + @staticmethod + def getHotendIdIfMakerbot(hotendId) -> str: + _EXTRUDER_NAME_MAP = { + "mk14_hot":"1XA", + "mk14_hot_s":"2XA", + "mk14_c":"1C", + "mk14":"1A", + "mk14_s":"2A" + } + if hotendId in _EXTRUDER_NAME_MAP: + return _EXTRUDER_NAME_MAP[hotendId] + return hotendId + @pyqtProperty(str, fset = setHotendID, notify = extruderConfigurationChanged) def hotendID(self) -> Optional[str]: return self._hotend_id From ce132e4c3f5292358a15c78ccd29aaace3e31f06 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Tue, 31 Oct 2023 11:48:44 +0100 Subject: [PATCH 068/765] Function name changed to make it a bit generic CURA-11138 --- .../PrinterOutput/Models/ExtruderConfigurationModel.py | 4 ++-- cura/PrinterOutput/NetworkedPrinterOutputDevice.py | 10 +++++----- .../src/Models/Http/CloudClusterResponse.py | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/cura/PrinterOutput/Models/ExtruderConfigurationModel.py b/cura/PrinterOutput/Models/ExtruderConfigurationModel.py index 8ba285fc816..1c68ecce920 100644 --- a/cura/PrinterOutput/Models/ExtruderConfigurationModel.py +++ b/cura/PrinterOutput/Models/ExtruderConfigurationModel.py @@ -40,11 +40,11 @@ def material(self) -> Optional[MaterialOutputModel]: def setHotendID(self, hotend_id: Optional[str]) -> None: if self._hotend_id != hotend_id: - self._hotend_id = ExtruderConfigurationModel.getHotendIdIfMakerbot(hotend_id) + self._hotend_id = ExtruderConfigurationModel.applyNameMappingHotend(hotend_id) self.extruderConfigurationChanged.emit() @staticmethod - def getHotendIdIfMakerbot(hotendId) -> str: + def applyNameMappingHotend(hotendId) -> str: _EXTRUDER_NAME_MAP = { "mk14_hot":"1XA", "mk14_hot_s":"2XA", diff --git a/cura/PrinterOutput/NetworkedPrinterOutputDevice.py b/cura/PrinterOutput/NetworkedPrinterOutputDevice.py index 5268786a4f6..5c4b26632a5 100644 --- a/cura/PrinterOutput/NetworkedPrinterOutputDevice.py +++ b/cura/PrinterOutput/NetworkedPrinterOutputDevice.py @@ -415,17 +415,17 @@ def firmwareVersion(self) -> str: @pyqtProperty(str, constant = True) def printerType(self) -> str: - return NetworkedPrinterOutputDevice.getPrinterTypeIfMakerBot(self._properties.get(b"printer_type", b"Unknown").decode("utf-8")) + return NetworkedPrinterOutputDevice.applyPrinterTypeMapping(self._properties.get(b"printer_type", b"Unknown").decode("utf-8")) @staticmethod - def getPrinterTypeIfMakerBot(printer_type): - method_printer_type = { + def applyPrinterTypeMapping(printer_type): + _PRINTER_TYPE_NAME = { "fire_e": "ultimaker_method", "lava_f": "ultimaker_methodx", "magma_10": "ultimaker_methodxl" } - if printer_type in method_printer_type: - return method_printer_type[printer_type] + if printer_type in _PRINTER_TYPE_NAME: + return _PRINTER_TYPE_NAME[printer_type] return printer_type @pyqtProperty(str, constant = True) diff --git a/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterResponse.py b/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterResponse.py index 36b2bf016b6..713582b8adc 100644 --- a/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterResponse.py +++ b/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterResponse.py @@ -35,7 +35,7 @@ def __init__(self, cluster_id: str, host_guid: str, host_name: str, is_online: b self.host_version = host_version self.host_internal_ip = host_internal_ip self.friendly_name = friendly_name - self.printer_type = NetworkedPrinterOutputDevice.getPrinterTypeIfMakerBot(printer_type) + self.printer_type = NetworkedPrinterOutputDevice.applyPrinterTypeMapping(printer_type) self.printer_count = printer_count self.capabilities = capabilities if capabilities is not None else [] super().__init__(**kwargs) From cbc1a376a92371b15f5509359025665c8a674569 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Tue, 31 Oct 2023 14:25:26 +0100 Subject: [PATCH 069/765] expected behavior added text in description of setting CURA-11138 --- resources/definitions/fdmprinter.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index c20010090f4..a42c9cc08e3 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6146,7 +6146,7 @@ "layer_0_z_overlap": { "label": "Initial Layer Z Overlap", - "description": "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.", + "description": "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior", "unit": "mm", "type": "float", "default_value": 0.22, From 75feb5ae388e94b3bfa4ebfe47527ba12ee1c25c Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Tue, 31 Oct 2023 15:35:56 +0100 Subject: [PATCH 070/765] Don't create abstract printers if visibility is set to false CURA-11138 --- cura/Settings/CuraStackBuilder.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/cura/Settings/CuraStackBuilder.py b/cura/Settings/CuraStackBuilder.py index a25a487c6e5..8bc8939e19f 100644 --- a/cura/Settings/CuraStackBuilder.py +++ b/cura/Settings/CuraStackBuilder.py @@ -284,16 +284,20 @@ def createAbstractMachine(cls, definition_id: str) -> Optional[GlobalStack]: abstract_machines = registry.findContainerStacks(id = abstract_machine_id) if abstract_machines: return cast(GlobalStack, abstract_machines[0]) + definitions = registry.findDefinitionContainers(id=definition_id) name = "" - if definitions: name = definitions[0].getName() + stack = cls.createMachine(abstract_machine_id, definition_id, show_warning_message=False) if not stack: return None + if not stack.getMetaDataEntry("visible", True): + return None + stack.setName(name) stack.setMetaDataEntry("is_abstract_machine", True) From 3e50cee8ecb67664d02a874f4ec67cd17462bf3a Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 31 Oct 2023 19:37:19 +0100 Subject: [PATCH 071/765] Bump to 5.7.0-alpha --- conanfile.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/conanfile.py b/conanfile.py index 1ce2b1d369d..4538905c3fe 100644 --- a/conanfile.py +++ b/conanfile.py @@ -50,7 +50,7 @@ class CuraConan(ConanFile): def set_version(self): if not self.version: - self.version = "5.6.0-alpha" + self.version = "5.7.0-alpha" @property def _pycharm_targets(self): @@ -300,7 +300,7 @@ def requirements(self): self.requires("curaengine_grpc_definitions/(latest)@ultimaker/testing") self.requires("zlib/1.2.13") self.requires("pyarcus/5.3.0") - self.requires("dulcificum/(latest)@ultimaker/testing") + self.requires("dulcificum/(latest)@ultimaker/stable") self.requires("curaengine/(latest)@ultimaker/testing") self.requires("pysavitar/5.3.0") self.requires("pynest2d/5.3.0") @@ -309,7 +309,7 @@ def requirements(self): self.requires("cura_binary_data/(latest)@ultimaker/testing") self.requires("cpython/3.10.4") if self.options.internal: - self.requires("cura_private_data/(latest)@internal/cura_10561") + self.requires("cura_private_data/(latest)@internal/testing") self.requires("fdm_materials/(latest)@internal/testing") else: self.requires("fdm_materials/(latest)@ultimaker/testing") From 56e4f3ffce6e2abb12cab009c27082a264d6b9f0 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Wed, 1 Nov 2023 09:07:27 +0100 Subject: [PATCH 072/765] Update scheduled event conditions in installers.yml The conditions for the scheduled event in the GitHub installer workflow have been updated. Now it will not only check if the current time is 8 but also if the event is a scheduled one. This ensures the schedule event fires at the right time and under the correct circumstances. --- .github/workflows/installers.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/installers.yml b/.github/workflows/installers.yml index a1bd2a415b3..78215774626 100644 --- a/.github/workflows/installers.yml +++ b/.github/workflows/installers.yml @@ -60,8 +60,8 @@ jobs: # Get current UTC time now = datetime.datetime.utcnow() - # Check if current hour is 8 - if now.hour == 8: + # Check if current hour is 8 and it is a schedule event + if "${{ github.event_name }}" == "schedule" and now.hour == 8: cura_conan_version = "cura/latest@ultimaker/stable" release_tag = "nightly-5.6" From 8f35c606d1e0cdd02781f56293704c2b31f22624 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Wed, 1 Nov 2023 10:42:50 +0100 Subject: [PATCH 073/765] Update daily schedule and conditional logic in installers workflow The github actions workflow `installers.yml` has been updated to adjust the daily cron schedule for the main and release branches. Additionally, the conditional logic related to the cura conan version and release tag has been simplified and cleaned up for better readability and maintainability. With these changes, the release process should perform more consistently. --- .github/workflows/installers.yml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/installers.yml b/.github/workflows/installers.yml index 78215774626..3034c80e593 100644 --- a/.github/workflows/installers.yml +++ b/.github/workflows/installers.yml @@ -31,21 +31,23 @@ on: type: boolean schedule: - # Daily at 4:15 CET (main-branch) and 9:15 CET (release-branch) - - cron: '15 2 * * *' - - cron: '15 8 * * *' + # Daily at 4:15 CET (main-branch) and 5:15 CET (release-branch) + - cron: '15 3 * * *' + - cron: '15 4 * * *' env: - CURA_CONAN_VERSION: ${{ inputs.cura_conan_version || 'cura/latest@ultimaker/testing' }} CONAN_ARGS: ${{ inputs.conan_args || '' }} ENTERPRISE: ${{ inputs.enterprise || false }} STAGING: ${{ inputs.staging || false }} + LATEST_RELEASE: '5.6' + LATEST_RELEASE_SCHEDULE_HOUR: 4 jobs: default-values: runs-on: ubuntu-latest outputs: cura_conan_version: ${{ steps.default.outputs.cura_conan_version }} + release_tag: ${{ steps.default.outputs.release_tag }} steps: - name: Output default values @@ -54,17 +56,15 @@ jobs: run: | import os import datetime - cura_conan_version = "cura/latest@ultimaker/testing" - release_tag = "nightly" - - # Get current UTC time - now = datetime.datetime.utcnow() - - # Check if current hour is 8 and it is a schedule event - if "${{ github.event_name }}" == "schedule" and now.hour == 8: - cura_conan_version = "cura/latest@ultimaker/stable" - release_tag = "nightly-5.6" - + + if "${{ github.event_name }}" != "schedule": + cura_conan_version = "${{ github.event.inputs.cura_conan_version }}" + else: + now = datetime.datetime.now() + cura_conan_version = "cura/latest@ultimaker/stable" if now.hour == int(os.environ['LATEST_RELEASE_SCHEDULE_HOUR']) else "cura/latest@ultimaker/testing" + + release_tag = f"nightly-{os.environ['LATEST_RELEASE']}" if "/stable" in cura_conan_version else "nightly" + # Set cura_conan_version environment variable output_env = os.environ["GITHUB_OUTPUT"] content = "" From 7ce91f5ad8a197516a9c8ca65a04e74890a4891f Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Wed, 1 Nov 2023 11:03:19 +0100 Subject: [PATCH 074/765] material translation, saving to .makerbot on cloud by default when Method printer is selected CURA-11138 --- .../Models/MaterialOutputModel.py | 32 ++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/cura/PrinterOutput/Models/MaterialOutputModel.py b/cura/PrinterOutput/Models/MaterialOutputModel.py index 89509ace722..6920cead1bc 100644 --- a/cura/PrinterOutput/Models/MaterialOutputModel.py +++ b/cura/PrinterOutput/Models/MaterialOutputModel.py @@ -9,7 +9,9 @@ class MaterialOutputModel(QObject): def __init__(self, guid: Optional[str], type: str, color: str, brand: str, name: str, parent = None) -> None: super().__init__(parent) - self._guid = guid + + name, guid = MaterialOutputModel.getMaterialFromDefinition(guid,type, brand, name) + self._guid =guid self._type = type self._color = color self._brand = brand @@ -19,6 +21,34 @@ def __init__(self, guid: Optional[str], type: str, color: str, brand: str, name: def guid(self) -> str: return self._guid if self._guid else "" + @staticmethod + def getMaterialFromDefinition(guid, type, brand, name): + + _MATERIAL_MAP = { "abs" :{"name" :"abs_175" ,"guid": "2780b345-577b-4a24-a2c5-12e6aad3e690"}, + "abs-wss1" :{"name" :"absr_175" ,"guid": "88c8919c-6a09-471a-b7b6-e801263d862d"}, + "asa" :{"name" :"asa_175" ,"guid": "416eead4-0d8e-4f0b-8bfc-a91a519befa5"}, + "nylon-cf" :{"name" :"cffpa_175" ,"guid": "85bbae0e-938d-46fb-989f-c9b3689dc4f0"}, + "nylon" :{"name" :"nylon_175" ,"guid": "283d439a-3490-4481-920c-c51d8cdecf9c"}, + "pc" :{"name" :"pc_175" ,"guid": "62414577-94d1-490d-b1e4-7ef3ec40db02"}, + "petg" :{"name" :"petg_175" ,"guid": "69386c85-5b6c-421a-bec5-aeb1fb33f060"}, + "pla" :{"name" :"pla_175" ,"guid": "0ff92885-617b-4144-a03c-9989872454bc"}, + "pva" :{"name" :"pva_175" ,"guid": "a4255da2-cb2a-4042-be49-4a83957a2f9a"}, + "wss1" :{"name" :"rapidrinse_175","guid": "a140ef8f-4f26-4e73-abe0-cfc29d6d1024"}, + "sr30" :{"name" :"sr30_175" ,"guid": "77873465-83a9-4283-bc44-4e542b8eb3eb"}, + "im-pla" :{"name" :"tough_pla_175" ,"guid": "96fca5d9-0371-4516-9e96-8e8182677f3c"}, + "bvoh" :{"name" :"bvoh_175" ,"guid": "923e604c-8432-4b09-96aa-9bbbd42207f4"}, + "cpe" :{"name" :"cpe_175" ,"guid": "da1872c1-b991-4795-80ad-bdac0f131726"}, + "hips" :{"name" :"hips_175" ,"guid": "a468d86a-220c-47eb-99a5-bbb47e514eb0"}, + "tpu" :{"name" :"tpu_175" ,"guid": "19baa6a9-94ff-478b-b4a1-8157b74358d2"} + } + + + if guid is None and brand is not "empty" and type in _MATERIAL_MAP: + name = _MATERIAL_MAP[type]["name"] + guid = _MATERIAL_MAP[type]["guid"] + return name, guid + + @pyqtProperty(str, constant = True) def type(self) -> str: return self._type From 40d91a7f3ed458559f007f97ce54cdb89fb7e8b3 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Wed, 1 Nov 2023 11:03:30 +0100 Subject: [PATCH 075/765] material translation, saving to .makerbot on cloud by default when Method printer is selected CURA-11138 --- plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml b/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml index 311aa0bf7ee..0b79b77a08c 100644 --- a/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml +++ b/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml @@ -208,7 +208,8 @@ Item anchors.rightMargin: UM.Theme.getSize("thin_margin").height enabled: UM.Backend.state == UM.Backend.Done - currentIndex: UM.Backend.state == UM.Backend.Done ? 0 : 1 + currentIndex: UM.Backend.state == UM.Backend.Done ? dfFilenameTextfield.text.startsWith("MM")? 1 : 0 : 2 + textRole: "text" valueRole: "value" From 2a81d572360ffc0e9f6b79e21461390596dbad22 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Wed, 1 Nov 2023 11:34:44 +0100 Subject: [PATCH 076/765] Refactor GitHub actions workflow and improve environment handling Changed the Github actions workflow by renaming "default-values" to "default_values" across multiple files. In addition, improved environment summary handling by reading its content if the file exists, and finally, appending certain variables to it. This makes the workflow more consistent and better handles the environment summary. --- .github/workflows/installers.yml | 53 +++++++++++++++++++------------- 1 file changed, 32 insertions(+), 21 deletions(-) diff --git a/.github/workflows/installers.yml b/.github/workflows/installers.yml index 3034c80e593..942aeba1f9f 100644 --- a/.github/workflows/installers.yml +++ b/.github/workflows/installers.yml @@ -43,7 +43,7 @@ env: LATEST_RELEASE_SCHEDULE_HOUR: 4 jobs: - default-values: + default_values: runs-on: ubuntu-latest outputs: cura_conan_version: ${{ steps.default.outputs.cura_conan_version }} @@ -76,11 +76,22 @@ jobs: f.writelines(f"cura_conan_version={cura_conan_version}\n") f.writelines(f"release_tag={release_tag}\n") + summary_env = os.environ["GITHUB_STEP_SUMMARY"] + content = "" + if os.path.exists(summary_env): + with open(summary_env, "r") as f: + content = f.read() + + with open(summary_env, "w") as f: + f.write(content) + f.writelines(f"# cura_conan_version = {cura_conan_version}\n") + f.writelines(f"# release_tag = {release_tag}\n") + windows-installer: uses: ./.github/workflows/windows.yml - needs: [ default-values ] + needs: [ default_values ] with: - cura_conan_version: ${{ needs.default-values.outputs.cura_conan_version }} + cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} conan_args: ${{ github.event.inputs.conan_args }} enterprise: ${{ github.event.inputs.enterprise == 'true' }} staging: ${{ github.event.inputs.staging == 'true' }} @@ -90,9 +101,9 @@ jobs: linux-installer: uses: ./.github/workflows/linux.yml - needs: [ default-values ] + needs: [ default_values ] with: - cura_conan_version: ${{ needs.default-values.outputs.cura_conan_version }} + cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} conan_args: ${{ github.event.inputs.conan_args }} enterprise: ${{ github.event.inputs.enterprise == 'true' }} staging: ${{ github.event.inputs.staging == 'true' }} @@ -102,9 +113,9 @@ jobs: macos-installer: uses: ./.github/workflows/macos.yml - needs: [ default-values ] + needs: [ default_values ] with: - cura_conan_version: ${{ needs.default-values.outputs.cura_conan_version }} + cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} conan_args: ${{ github.event.inputs.conan_args }} enterprise: ${{ github.event.inputs.enterprise == 'true' }} staging: ${{ github.event.inputs.staging == 'true' }} @@ -114,9 +125,9 @@ jobs: macos-arm-installer: uses: ./.github/workflows/macos.yml - needs: [ default-values ] + needs: [ default_values ] with: - cura_conan_version: ${{ needs.default-values.outputs.cura_conan_version }} + cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} conan_args: ${{ github.event.inputs.conan_args }} enterprise: ${{ github.event.inputs.enterprise == 'true' }} staging: ${{ github.event.inputs.staging == 'true' }} @@ -128,7 +139,7 @@ jobs: update-nightly-release: if: ${{ inputs.nightly || github.event_name == 'schedule' }} runs-on: ubuntu-latest - needs: [ windows-installer, linux-installer, macos-installer, macos-arm-installer ] + needs: [ default_values, windows-installer, linux-installer, macos-installer, macos-arm-installer ] steps: - name: Checkout uses: actions/checkout@v3 @@ -196,8 +207,8 @@ jobs: - name: Update nightly release for Linux run: | - gh release upload ${{ needs.default-values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-linux-X64.AppImage --clobber - gh release upload ${{ needs.default-values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-linux-X64.AppImage.asc --clobber + gh release upload ${{ needs.default_values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-linux-X64.AppImage --clobber + gh release upload ${{ needs.default_values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-linux-X64.AppImage.asc --clobber env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -220,8 +231,8 @@ jobs: - name: Update nightly release for Windows run: | - gh release upload ${{ needs.default-values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-win64-X64.msi --clobber - gh release upload ${{ needs.default-values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-win64-X64.exe --clobber + gh release upload ${{ needs.default_values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-win64-X64.msi --clobber + gh release upload ${{ needs.default_values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-win64-X64.exe --clobber env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -244,8 +255,8 @@ jobs: - name: Update nightly release for MacOS (X64) run: | - gh release upload ${{ needs.default-values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-X64.dmg --clobber - gh release upload ${{ needs.default-values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-X64.pkg --clobber + gh release upload ${{ needs.default_values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-X64.dmg --clobber + gh release upload ${{ needs.default_values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-X64.pkg --clobber env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -268,8 +279,8 @@ jobs: - name: Update nightly release for MacOS (ARM-64) run: | - gh release upload ${{ needs.default-values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-ARM64.dmg --clobber - gh release upload ${{ needs.default-values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-ARM64.pkg --clobber + gh release upload ${{ needs.default_values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-ARM64.dmg --clobber + gh release upload ${{ needs.default_values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-ARM64.pkg --clobber env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -282,17 +293,17 @@ jobs: with open(".github/workflows/release-notes.md.jinja", "r") as f: release_notes = Template(f.read()) - current_nightly_beta = "${{ needs.default-values.outputs.release_tag }}".split("nightly-")[-1] + current_nightly_beta = "${{ needs.default_values.outputs.release_tag }}".split("nightly-")[-1] with open("release-notes.md", "w") as f: f.write(release_notes.render( timestamp=${{ steps.filename.outputs.NIGHTLY_TIME }}, - branch="" if ${{ needs.default-values.outputs.release_tag == 'nightly' }} else current_nightly_beta, + branch="" if ${{ needs.default_values.outputs.release_tag == 'nightly' }} else current_nightly_beta, branch_specific="" if os.getenv("GITHUB_REF") == "refs/heads/main" else f"?branch={current_nightly_beta}", )) - name: Update nightly release description (with date) if: always() run: | - gh release edit ${{ needs.default-values.outputs.release_tag }} --title "${{ steps.filename.outputs.NIGHTLY_NAME }}" --notes-file release-notes.md + gh release edit ${{ needs.default_values.outputs.release_tag }} --title "${{ steps.filename.outputs.NIGHTLY_NAME }}" --notes-file release-notes.md env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 46bed2de564439d82798df2a7733f44d23214949 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 2 Nov 2023 17:30:07 +0100 Subject: [PATCH 077/765] Add `node` as an optional argument to `isometricSnapshot` By setting this argument a single `SceneNode` can be used as subject for the snapshot. If argument is omitted then the scene root is taken as node. --- cura/PreviewPass.py | 14 +++++++------- cura/Snapshot.py | 19 ++++++++++++++----- 2 files changed, 21 insertions(+), 12 deletions(-) diff --git a/cura/PreviewPass.py b/cura/PreviewPass.py index dd1c71bc5e6..2c98107a4a9 100644 --- a/cura/PreviewPass.py +++ b/cura/PreviewPass.py @@ -45,17 +45,17 @@ class PreviewPass(RenderPass): This is useful to get a preview image of a scene taken from a different location as the active camera. """ - def __init__(self, width: int, height: int) -> None: + def __init__(self, width: int, height: int, *, root: CuraSceneNode = None) -> None: super().__init__("preview", width, height, 0) - self._camera = None # type: Optional[Camera] + self._camera: Optional[Camera] = None self._renderer = Application.getInstance().getRenderer() - self._shader = None # type: Optional[ShaderProgram] - self._non_printing_shader = None # type: Optional[ShaderProgram] - self._support_mesh_shader = None # type: Optional[ShaderProgram] - self._scene = Application.getInstance().getController().getScene() + self._shader: Optional[ShaderProgram] = None + self._non_printing_shader: Optional[ShaderProgram] = None + self._support_mesh_shader: Optional[ShaderProgram] = None + self._root = Application.getInstance().getController().getScene().getRoot() if root is None else root # Set the camera to be used by this render pass # if it's None, the active camera is used @@ -96,7 +96,7 @@ def render(self) -> None: batch_support_mesh = RenderBatch(self._support_mesh_shader) # Fill up the batch with objects that can be sliced. - for node in DepthFirstIterator(self._scene.getRoot()): + for node in DepthFirstIterator(self._root): if hasattr(node, "_outside_buildarea") and not getattr(node, "_outside_buildarea"): if node.callDecoration("isSliceable") and node.getMeshData() and node.isVisible(): per_mesh_stack = node.callDecoration("getStack") diff --git a/cura/Snapshot.py b/cura/Snapshot.py index e493f0e79c5..40c74c96935 100644 --- a/cura/Snapshot.py +++ b/cura/Snapshot.py @@ -37,15 +37,24 @@ def getImageBoundaries(image: QImage): return min_x, max_x, min_y, max_y @staticmethod - def isometricSnapshot(width: int = 300, height: int = 300) -> Optional[QImage]: - """Create an isometric snapshot of the scene.""" + def isometricSnapshot(width: int = 300, height: int = 300, *, node: Optional[SceneNode] = None) -> Optional[QImage]: + """ + Create an isometric snapshot of the scene. + + :param width: width of the aspect ratio default 300 + :param height: height of the aspect ratio default 300 + :param node: node of the scene default is the root of the scene + :return: None when there is no model on the build plate otherwise it will return an image + + """ - root = Application.getInstance().getController().getScene().getRoot() + if node is None: + root = Application.getInstance().getController().getScene().getRoot() # the direction the camera is looking at to create the isometric view iso_view_dir = Vector(-1, -1, -1).normalized() - bounds = Snapshot.nodeBounds(root) + bounds = Snapshot.nodeBounds(node) if bounds is None: Logger.log("w", "There appears to be nothing to render") return None @@ -93,7 +102,7 @@ def isometricSnapshot(width: int = 300, height: int = 300) -> Optional[QImage]: # Render the scene renderer = QtRenderer() - render_pass = PreviewPass(width, height) + render_pass = PreviewPass(width, height, root=node) renderer.setViewportSize(width, height) renderer.setWindowSize(width, height) render_pass.setCamera(camera) From 39db261b4b6eadb2f3e95cbfc055b61c7b9f8bde Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 3 Nov 2023 13:13:27 +0100 Subject: [PATCH 078/765] Integrate prime tower mode setting --- cura/BuildVolume.py | 4 ++-- plugins/SliceInfoPlugin/SliceInfo.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cura/BuildVolume.py b/cura/BuildVolume.py index 2bfa654d4fe..39cd356d3e4 100755 --- a/cura/BuildVolume.py +++ b/cura/BuildVolume.py @@ -854,7 +854,7 @@ def _computeDisallowedAreasPrinted(self, used_extruders): result[extruder.getId()] = [] # Currently, the only normally printed object is the prime tower. - if self._global_container_stack.getProperty("prime_tower_enable", "value"): + if self._global_container_stack.getProperty("prime_tower_mode", "value") != 'none': prime_tower_size = self._global_container_stack.getProperty("prime_tower_size", "value") machine_width = self._global_container_stack.getProperty("machine_width", "value") machine_depth = self._global_container_stack.getProperty("machine_depth", "value") @@ -1182,7 +1182,7 @@ def _clamp(self, value, min_value, max_value): _raft_settings = ["adhesion_type", "raft_base_thickness", "raft_interface_layers", "raft_interface_thickness", "raft_surface_layers", "raft_surface_thickness", "raft_airgap", "layer_0_z_overlap"] _extra_z_settings = ["retraction_hop_enabled", "retraction_hop"] _prime_settings = ["extruder_prime_pos_x", "extruder_prime_pos_y", "prime_blob_enable"] - _tower_settings = ["prime_tower_enable", "prime_tower_size", "prime_tower_position_x", "prime_tower_position_y", "prime_tower_brim_enable", "prime_tower_base_size", "prime_tower_base_height"] + _tower_settings = ["prime_tower_mode", "prime_tower_size", "prime_tower_position_x", "prime_tower_position_y", "prime_tower_brim_enable", "prime_tower_base_size", "prime_tower_base_height"] _ooze_shield_settings = ["ooze_shield_enabled", "ooze_shield_dist"] _distance_settings = ["infill_wipe_dist", "travel_avoid_distance", "support_offset", "support_enable", "travel_avoid_other_parts", "travel_avoid_supports", "wall_line_count", "wall_line_width_0", "wall_line_width_x"] _extruder_settings = ["support_enable", "support_bottom_enable", "support_roof_enable", "support_infill_extruder_nr", "support_extruder_nr_layer_0", "support_bottom_extruder_nr", "support_roof_extruder_nr", "brim_line_count", "skirt_brim_extruder_nr", "raft_base_extruder_nr", "raft_interface_extruder_nr", "raft_surface_extruder_nr", "adhesion_type"] #Settings that can affect which extruders are used. diff --git a/plugins/SliceInfoPlugin/SliceInfo.py b/plugins/SliceInfoPlugin/SliceInfo.py index 7e7a132c989..04e083520b0 100755 --- a/plugins/SliceInfoPlugin/SliceInfo.py +++ b/plugins/SliceInfoPlugin/SliceInfo.py @@ -263,7 +263,7 @@ def _onWriteStarted(self, output_device): print_settings["retraction_enable"] = global_stack.getProperty("retraction_enable", "value") # Prime tower settings - print_settings["prime_tower_enable"] = global_stack.getProperty("prime_tower_enable", "value") + print_settings["prime_tower_mode"] = global_stack.getProperty("prime_tower_mode", "value") # Infill settings print_settings["infill_sparse_density"] = global_stack.getProperty("infill_sparse_density", "value") From 4a176a09a8a39e7a16cdc55b0c2bb57e10502906 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 3 Nov 2023 14:17:16 +0100 Subject: [PATCH 079/765] increase print volume for method printers this includes method x, and method xl CURA-11260 --- .../ultimaker_method_base.def.json | 3 - .../definitions/ultimaker_methodx.def.json | 91 ++++++++++++++++++- .../definitions/ultimaker_methodxl.def.json | 88 +++++++++++++++++- 3 files changed, 174 insertions(+), 8 deletions(-) diff --git a/resources/definitions/ultimaker_method_base.def.json b/resources/definitions/ultimaker_method_base.def.json index f5749690693..3472376a4f1 100644 --- a/resources/definitions/ultimaker_method_base.def.json +++ b/resources/definitions/ultimaker_method_base.def.json @@ -321,19 +321,16 @@ "layer_start_y": { "value": "sum(extruderValues('machine_extruder_start_pos_y')) / len(extruderValues('machine_extruder_start_pos_y'))" }, "machine_acceleration": { "default_value": 3000 }, "machine_center_is_zero": { "value": true }, - "machine_depth": { "default_value": 190 }, "machine_end_gcode": { "default_value": "" }, "machine_extruder_count": { "default_value": 2 }, "machine_gcode_flavor": { "default_value": "Griffin" }, "machine_heated_bed": { "default_value": false }, "machine_heated_build_volume": { "default_value": true }, - "machine_height": { "default_value": 196 }, "machine_min_cool_heat_time_window": { "value": 15 }, "machine_name": { "default_value": "Makerbot Method" }, "machine_nozzle_cool_down_speed": { "value": 0.8 }, "machine_nozzle_heat_up_speed": { "value": 3.5 }, "machine_start_gcode": { "default_value": "" }, - "machine_width": { "default_value": 150 }, "material_bed_temperature": { "enabled": "machine_heated_bed" }, "material_bed_temperature_layer_0": { "enabled": "machine_heated_bed" }, "material_final_print_temperature": { "value": "material_print_temperature-10" }, diff --git a/resources/definitions/ultimaker_methodx.def.json b/resources/definitions/ultimaker_methodx.def.json index 5e63ddea79a..e0dfe1e6ee9 100644 --- a/resources/definitions/ultimaker_methodx.def.json +++ b/resources/definitions/ultimaker_methodx.def.json @@ -69,7 +69,7 @@ "platform_offset": [ 0, 0, - 0 + 16 ], "platform_texture": "MakerbotMethod.png", "preferred_material": "ultimaker_absr_175", @@ -83,6 +83,93 @@ }, "overrides": { - "machine_name": { "default_value": "Makerbot Method X" } + "machine_depth": { + "default_value": 236.48 + }, + "machine_width": { + "default_value": 283.3 + }, + "machine_height": { + "default_value": 196 + }, + "machine_name": { + "default_value": "Makerbot Method X" + }, + "machine_disallowed_areas": { + "default_value": [ + [ + [ + -141.65, + -118.11 + ], + [ + 141.65, + -118.11 + ], + [ + 141.65, + -79 + ], + [ + -141.65, + -79 + ] + ], + [ + [ + -141.65, + 118.37 + ], + [ + 141.65, + 118.37 + ], + [ + 141.65, + 111 + ], + [ + -141.65, + 111 + ] + ], + [ + [ + -141.65, + -118.11 + ], + [ + -75, + -118.11 + ], + [ + -75, + 118.37 + ], + [ + -141.65, + 118.37 + ] + ], + [ + [ + 75, + -118.11 + ], + [ + 141.65, + -118.11 + ], + [ + 141.65, + 118.37 + ], + [ + 75, + 118.37 + ] + ] + ] + } } } \ No newline at end of file diff --git a/resources/definitions/ultimaker_methodxl.def.json b/resources/definitions/ultimaker_methodxl.def.json index ac64e3a95da..94ee1b20c81 100644 --- a/resources/definitions/ultimaker_methodxl.def.json +++ b/resources/definitions/ultimaker_methodxl.def.json @@ -32,12 +32,94 @@ }, "overrides": { - "machine_depth": { "default_value": 305 }, + "machine_depth": { + "default_value": 320 + }, "machine_heated_bed": { "default_value": true }, "machine_height": { "default_value": 317 }, "machine_name": { "default_value": "Makerbot Method XL" }, - "machine_width": { "default_value": 305 }, + "machine_width": { + "default_value": 410 + }, "material_shrinkage_percentage_z": { "resolve": "sum(extruderValues(\"material_shrinkage_percentage_z\")) / len(extruderValues(\"material_shrinkage_percentage_z\"))" }, - "speed_travel": { "value": 500 } + "speed_travel": { + "value": 500 + }, + "machine_disallowed_areas": { + "default_value": [ + [ + [ + -204, + -160 + ], + [ + 204, + -160 + ], + [ + 204, + -152.5 + ], + [ + -204, + -152.5 + ] + ], + [ + [ + -204, + 160 + ], + [ + 204, + 160 + ], + [ + 204, + 152.5 + ], + [ + -204, + 152.5 + ] + ], + [ + [ + -205, + -160 + ], + [ + -152.5, + -160 + ], + [ + -152.5, + 160 + ], + [ + -205, + 160 + ] + ], + [ + [ + 152.5, + -160 + ], + [ + 205, + -160 + ], + [ + 205, + 160 + ], + [ + 152.5, + 160 + ] + ] + ] + } } } \ No newline at end of file From 9ca8582a5021ccd8759646b2e49fdf99f4026eab Mon Sep 17 00:00:00 2001 From: casperlamboo Date: Fri, 3 Nov 2023 13:18:16 +0000 Subject: [PATCH 080/765] Applied printer-linter format --- .../definitions/ultimaker_methodx.def.json | 101 ++++------------- .../definitions/ultimaker_methodxl.def.json | 105 +++++------------- 2 files changed, 49 insertions(+), 157 deletions(-) diff --git a/resources/definitions/ultimaker_methodx.def.json b/resources/definitions/ultimaker_methodx.def.json index e0dfe1e6ee9..605432e87ee 100644 --- a/resources/definitions/ultimaker_methodx.def.json +++ b/resources/definitions/ultimaker_methodx.def.json @@ -83,93 +83,38 @@ }, "overrides": { - "machine_depth": { - "default_value": 236.48 - }, - "machine_width": { - "default_value": 283.3 - }, - "machine_height": { - "default_value": 196 - }, - "machine_name": { - "default_value": "Makerbot Method X" - }, - "machine_disallowed_areas": { + "machine_depth": { "default_value": 236.48 }, + "machine_disallowed_areas": + { "default_value": [ [ - [ - -141.65, - -118.11 - ], - [ - 141.65, - -118.11 - ], - [ - 141.65, - -79 - ], - [ - -141.65, - -79 - ] + [-141.65, -118.11], + [141.65, -118.11], + [141.65, -79], + [-141.65, -79] ], [ - [ - -141.65, - 118.37 - ], - [ - 141.65, - 118.37 - ], - [ - 141.65, - 111 - ], - [ - -141.65, - 111 - ] + [-141.65, 118.37], + [141.65, 118.37], + [141.65, 111], + [-141.65, 111] ], [ - [ - -141.65, - -118.11 - ], - [ - -75, - -118.11 - ], - [ - -75, - 118.37 - ], - [ - -141.65, - 118.37 - ] + [-141.65, -118.11], + [-75, -118.11], + [-75, 118.37], + [-141.65, 118.37] ], [ - [ - 75, - -118.11 - ], - [ - 141.65, - -118.11 - ], - [ - 141.65, - 118.37 - ], - [ - 75, - 118.37 - ] + [75, -118.11], + [141.65, -118.11], + [141.65, 118.37], + [75, 118.37] ] ] - } + }, + "machine_height": { "default_value": 196 }, + "machine_name": { "default_value": "Makerbot Method X" }, + "machine_width": { "default_value": 283.3 } } } \ No newline at end of file diff --git a/resources/definitions/ultimaker_methodxl.def.json b/resources/definitions/ultimaker_methodxl.def.json index 94ee1b20c81..0af2879d36a 100644 --- a/resources/definitions/ultimaker_methodxl.def.json +++ b/resources/definitions/ultimaker_methodxl.def.json @@ -32,94 +32,41 @@ }, "overrides": { - "machine_depth": { - "default_value": 320 - }, - "machine_heated_bed": { "default_value": true }, - "machine_height": { "default_value": 317 }, - "machine_name": { "default_value": "Makerbot Method XL" }, - "machine_width": { - "default_value": 410 - }, - "material_shrinkage_percentage_z": { "resolve": "sum(extruderValues(\"material_shrinkage_percentage_z\")) / len(extruderValues(\"material_shrinkage_percentage_z\"))" }, - "speed_travel": { - "value": 500 - }, - "machine_disallowed_areas": { + "machine_depth": { "default_value": 320 }, + "machine_disallowed_areas": + { "default_value": [ [ - [ - -204, - -160 - ], - [ - 204, - -160 - ], - [ - 204, - -152.5 - ], - [ - -204, - -152.5 - ] + [-204, -160], + [204, -160], + [204, -152.5], + [-204, -152.5] ], [ - [ - -204, - 160 - ], - [ - 204, - 160 - ], - [ - 204, - 152.5 - ], - [ - -204, - 152.5 - ] + [-204, 160], + [204, 160], + [204, 152.5], + [-204, 152.5] ], [ - [ - -205, - -160 - ], - [ - -152.5, - -160 - ], - [ - -152.5, - 160 - ], - [ - -205, - 160 - ] + [-205, -160], + [-152.5, -160], + [-152.5, 160], + [-205, 160] ], [ - [ - 152.5, - -160 - ], - [ - 205, - -160 - ], - [ - 205, - 160 - ], - [ - 152.5, - 160 - ] + [152.5, -160], + [205, -160], + [205, 160], + [152.5, 160] ] ] - } + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 317 }, + "machine_name": { "default_value": "Makerbot Method XL" }, + "machine_width": { "default_value": 410 }, + "material_shrinkage_percentage_z": { "resolve": "sum(extruderValues(\"material_shrinkage_percentage_z\")) / len(extruderValues(\"material_shrinkage_percentage_z\"))" }, + "speed_travel": { "value": 500 } } } \ No newline at end of file From 66632b8636d399e61ac03b3dad737406d0b817f2 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 3 Nov 2023 14:36:48 +0100 Subject: [PATCH 081/765] Fix positioning of method x CURA-11260 --- .../definitions/ultimaker_methodx.def.json | 20 +++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/resources/definitions/ultimaker_methodx.def.json b/resources/definitions/ultimaker_methodx.def.json index 605432e87ee..7a6f45cfb4d 100644 --- a/resources/definitions/ultimaker_methodx.def.json +++ b/resources/definitions/ultimaker_methodx.def.json @@ -90,14 +90,26 @@ [ [-141.65, -118.11], [141.65, -118.11], - [141.65, -79], - [-141.65, -79] + [ + 141.65, + -95 + ], + [ + -141.65, + -95 + ] ], [ [-141.65, 118.37], [141.65, 118.37], - [141.65, 111], - [-141.65, 111] + [ + 141.65, + 95 + ], + [ + -141.65, + 95 + ] ], [ [-141.65, -118.11], From 02635ff994c1ebf0801006f235f9bc6188c60380 Mon Sep 17 00:00:00 2001 From: casperlamboo Date: Fri, 3 Nov 2023 13:37:53 +0000 Subject: [PATCH 082/765] Applied printer-linter format --- .../definitions/ultimaker_methodx.def.json | 20 ++++--------------- 1 file changed, 4 insertions(+), 16 deletions(-) diff --git a/resources/definitions/ultimaker_methodx.def.json b/resources/definitions/ultimaker_methodx.def.json index 7a6f45cfb4d..5d6970b3240 100644 --- a/resources/definitions/ultimaker_methodx.def.json +++ b/resources/definitions/ultimaker_methodx.def.json @@ -90,26 +90,14 @@ [ [-141.65, -118.11], [141.65, -118.11], - [ - 141.65, - -95 - ], - [ - -141.65, - -95 - ] + [141.65, -95], + [-141.65, -95] ], [ [-141.65, 118.37], [141.65, 118.37], - [ - 141.65, - 95 - ], - [ - -141.65, - 95 - ] + [141.65, 95], + [-141.65, 95] ], [ [-141.65, -118.11], From 24235d2ef5a82fe969f9bff8496c2bce00bc4215 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 3 Nov 2023 16:15:16 +0100 Subject: [PATCH 083/765] Update prime tower position CURA-11260 --- resources/definitions/ultimaker_methodx.def.json | 10 +++++++++- resources/definitions/ultimaker_methodxl.def.json | 6 ++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/resources/definitions/ultimaker_methodx.def.json b/resources/definitions/ultimaker_methodx.def.json index 5d6970b3240..f3de670b269 100644 --- a/resources/definitions/ultimaker_methodx.def.json +++ b/resources/definitions/ultimaker_methodx.def.json @@ -115,6 +115,14 @@ }, "machine_height": { "default_value": 196 }, "machine_name": { "default_value": "Makerbot Method X" }, - "machine_width": { "default_value": 283.3 } + "machine_width": { + "default_value": 283.3 + }, + "prime_tower_position_x": { + "value": "(150 / 2 + resolveOrValue('prime_tower_size') / 2) if resolveOrValue('machine_shape') == 'elliptic' else (150 - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_x'))), 1)) - (150 / 2 if resolveOrValue('machine_center_is_zero') else 0)" + }, + "prime_tower_position_y": { + "value": "190 - prime_tower_size - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (190 / 2 if resolveOrValue('machine_center_is_zero') else 0)" + } } } \ No newline at end of file diff --git a/resources/definitions/ultimaker_methodxl.def.json b/resources/definitions/ultimaker_methodxl.def.json index 0af2879d36a..13e16f72d52 100644 --- a/resources/definitions/ultimaker_methodxl.def.json +++ b/resources/definitions/ultimaker_methodxl.def.json @@ -62,6 +62,12 @@ ] ] }, + "prime_tower_position_x": { + "value": "(305 / 2 + resolveOrValue('prime_tower_size') / 2) if resolveOrValue('machine_shape') == 'elliptic' else (305 - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_x'))), 1)) - (305 / 2 if resolveOrValue('machine_center_is_zero') else 0)" + }, + "prime_tower_position_y": { + "value": "305 - prime_tower_size - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (305 / 2 if resolveOrValue('machine_center_is_zero') else 0)" + }, "machine_heated_bed": { "default_value": true }, "machine_height": { "default_value": 317 }, "machine_name": { "default_value": "Makerbot Method XL" }, From 721e0cb1ac6de53eb71108a07c35fd829c7ce7f0 Mon Sep 17 00:00:00 2001 From: casperlamboo Date: Fri, 3 Nov 2023 15:16:16 +0000 Subject: [PATCH 084/765] Applied printer-linter format --- resources/definitions/ultimaker_methodx.def.json | 12 +++--------- resources/definitions/ultimaker_methodxl.def.json | 8 ++------ 2 files changed, 5 insertions(+), 15 deletions(-) diff --git a/resources/definitions/ultimaker_methodx.def.json b/resources/definitions/ultimaker_methodx.def.json index f3de670b269..ae8afe4fe68 100644 --- a/resources/definitions/ultimaker_methodx.def.json +++ b/resources/definitions/ultimaker_methodx.def.json @@ -115,14 +115,8 @@ }, "machine_height": { "default_value": 196 }, "machine_name": { "default_value": "Makerbot Method X" }, - "machine_width": { - "default_value": 283.3 - }, - "prime_tower_position_x": { - "value": "(150 / 2 + resolveOrValue('prime_tower_size') / 2) if resolveOrValue('machine_shape') == 'elliptic' else (150 - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_x'))), 1)) - (150 / 2 if resolveOrValue('machine_center_is_zero') else 0)" - }, - "prime_tower_position_y": { - "value": "190 - prime_tower_size - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (190 / 2 if resolveOrValue('machine_center_is_zero') else 0)" - } + "machine_width": { "default_value": 283.3 }, + "prime_tower_position_x": { "value": "(150 / 2 + resolveOrValue('prime_tower_size') / 2) if resolveOrValue('machine_shape') == 'elliptic' else (150 - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_x'))), 1)) - (150 / 2 if resolveOrValue('machine_center_is_zero') else 0)" }, + "prime_tower_position_y": { "value": "190 - prime_tower_size - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (190 / 2 if resolveOrValue('machine_center_is_zero') else 0)" } } } \ No newline at end of file diff --git a/resources/definitions/ultimaker_methodxl.def.json b/resources/definitions/ultimaker_methodxl.def.json index 13e16f72d52..7c47079c9f2 100644 --- a/resources/definitions/ultimaker_methodxl.def.json +++ b/resources/definitions/ultimaker_methodxl.def.json @@ -62,17 +62,13 @@ ] ] }, - "prime_tower_position_x": { - "value": "(305 / 2 + resolveOrValue('prime_tower_size') / 2) if resolveOrValue('machine_shape') == 'elliptic' else (305 - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_x'))), 1)) - (305 / 2 if resolveOrValue('machine_center_is_zero') else 0)" - }, - "prime_tower_position_y": { - "value": "305 - prime_tower_size - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (305 / 2 if resolveOrValue('machine_center_is_zero') else 0)" - }, "machine_heated_bed": { "default_value": true }, "machine_height": { "default_value": 317 }, "machine_name": { "default_value": "Makerbot Method XL" }, "machine_width": { "default_value": 410 }, "material_shrinkage_percentage_z": { "resolve": "sum(extruderValues(\"material_shrinkage_percentage_z\")) / len(extruderValues(\"material_shrinkage_percentage_z\"))" }, + "prime_tower_position_x": { "value": "(305 / 2 + resolveOrValue('prime_tower_size') / 2) if resolveOrValue('machine_shape') == 'elliptic' else (305 - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_x'))), 1)) - (305 / 2 if resolveOrValue('machine_center_is_zero') else 0)" }, + "prime_tower_position_y": { "value": "305 - prime_tower_size - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (305 / 2 if resolveOrValue('machine_center_is_zero') else 0)" }, "speed_travel": { "value": 500 } } } \ No newline at end of file From f8f880f648cca3118db710d09fcc0821ff9862ef Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 6 Nov 2023 10:28:23 +0100 Subject: [PATCH 085/765] Simplify prime tower positioning formula Since method printers do not have an elliptic buildplate this case can be ignored. It is also safe to assume the "machine center is zero" is True CURA-11260 --- resources/definitions/ultimaker_methodxl.def.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/resources/definitions/ultimaker_methodxl.def.json b/resources/definitions/ultimaker_methodxl.def.json index 7c47079c9f2..bb5bcff952b 100644 --- a/resources/definitions/ultimaker_methodxl.def.json +++ b/resources/definitions/ultimaker_methodxl.def.json @@ -67,8 +67,12 @@ "machine_name": { "default_value": "Makerbot Method XL" }, "machine_width": { "default_value": 410 }, "material_shrinkage_percentage_z": { "resolve": "sum(extruderValues(\"material_shrinkage_percentage_z\")) / len(extruderValues(\"material_shrinkage_percentage_z\"))" }, - "prime_tower_position_x": { "value": "(305 / 2 + resolveOrValue('prime_tower_size') / 2) if resolveOrValue('machine_shape') == 'elliptic' else (305 - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_x'))), 1)) - (305 / 2 if resolveOrValue('machine_center_is_zero') else 0)" }, - "prime_tower_position_y": { "value": "305 - prime_tower_size - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (305 / 2 if resolveOrValue('machine_center_is_zero') else 0)" }, + "prime_tower_position_x": { + "value": "(305 - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_x'))), 1)) - (305 / 2)" + }, + "prime_tower_position_y": { + "value": "305 - prime_tower_size - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (305 / 2)" + }, "speed_travel": { "value": 500 } } } \ No newline at end of file From ceb8c320c811a2eaaa2fbf0a04cd60321409b794 Mon Sep 17 00:00:00 2001 From: casperlamboo Date: Mon, 6 Nov 2023 09:29:40 +0000 Subject: [PATCH 086/765] Applied printer-linter format --- resources/definitions/ultimaker_methodxl.def.json | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/resources/definitions/ultimaker_methodxl.def.json b/resources/definitions/ultimaker_methodxl.def.json index bb5bcff952b..e80b3ed272f 100644 --- a/resources/definitions/ultimaker_methodxl.def.json +++ b/resources/definitions/ultimaker_methodxl.def.json @@ -67,12 +67,8 @@ "machine_name": { "default_value": "Makerbot Method XL" }, "machine_width": { "default_value": 410 }, "material_shrinkage_percentage_z": { "resolve": "sum(extruderValues(\"material_shrinkage_percentage_z\")) / len(extruderValues(\"material_shrinkage_percentage_z\"))" }, - "prime_tower_position_x": { - "value": "(305 - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_x'))), 1)) - (305 / 2)" - }, - "prime_tower_position_y": { - "value": "305 - prime_tower_size - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (305 / 2)" - }, + "prime_tower_position_x": { "value": "(305 - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_x'))), 1)) - (305 / 2)" }, + "prime_tower_position_y": { "value": "305 - prime_tower_size - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (305 / 2)" }, "speed_travel": { "value": 500 } } } \ No newline at end of file From cdb2a5789d8ffe9ba4e5669d7bbb575b13d30fd6 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Mon, 6 Nov 2023 16:33:32 +0530 Subject: [PATCH 087/765] Center alligning in case of 3mf write Also reverting commit 7e38927a8cb76d3789fde21482aeff1e254cc636 CURA-11166 --- plugins/3MFReader/ThreeMFReader.py | 3 +-- plugins/3MFWriter/ThreeMFWriter.py | 12 ++++++++++-- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/plugins/3MFReader/ThreeMFReader.py b/plugins/3MFReader/ThreeMFReader.py index cf8079d75d0..13a97d5a893 100755 --- a/plugins/3MFReader/ThreeMFReader.py +++ b/plugins/3MFReader/ThreeMFReader.py @@ -233,8 +233,7 @@ def _read(self, file_name: str) -> Union[SceneNode, List[SceneNode]]: if mesh_data is not None: extents = mesh_data.getExtents() if extents is not None: - # We use a different coordinate space, so flip Z and Y - center_vector = Vector(extents.center.x, extents.center.z, extents.center.y) + center_vector = Vector(extents.center.x, extents.center.y, extents.center.z) transform_matrix.setByTranslation(center_vector) transform_matrix.multiply(um_node.getLocalTransformation()) um_node.setTransformation(transform_matrix) diff --git a/plugins/3MFWriter/ThreeMFWriter.py b/plugins/3MFWriter/ThreeMFWriter.py index ae790b4f636..ad4b0d8dadb 100644 --- a/plugins/3MFWriter/ThreeMFWriter.py +++ b/plugins/3MFWriter/ThreeMFWriter.py @@ -102,12 +102,20 @@ def _convertUMNodeToSavitarNode(um_node, transformation=Matrix()): savitar_node = Savitar.SceneNode() savitar_node.setName(um_node.getName()) - node_matrix = um_node.getLocalTransformation() + node_matrix = Matrix() + mesh_data = um_node.getMeshData() + # compensate for original center position, if object(s) is/are not around its zero position + if mesh_data is not None: + extents = mesh_data.getExtents() + if extents is not None: + # We use a different coordinate space while writing, so flip Z and Y + center_vector = Vector(extents.center.x, extents.center.z, extents.center.y) + node_matrix.setByTranslation(center_vector) + node_matrix.multiply(um_node.getLocalTransformation()) matrix_string = ThreeMFWriter._convertMatrixToString(node_matrix.preMultiply(transformation)) savitar_node.setTransformation(matrix_string) - mesh_data = um_node.getMeshData() if mesh_data is not None: savitar_node.getMeshData().setVerticesFromBytes(mesh_data.getVerticesAsByteArray()) indices_array = mesh_data.getIndicesAsByteArray() From 6301926885f170f79189b0cf6fdc2d3594d1ba2e Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Tue, 7 Nov 2023 18:08:08 +0530 Subject: [PATCH 088/765] Calculating time of travel for each line segment CURA-7647 --- cura/LayerPolygon.py | 6 ++++++ plugins/SimulationView/SimulationView.py | 5 +++++ plugins/SimulationView/SimulationViewMainComponent.qml | 6 +++++- 3 files changed, 16 insertions(+), 1 deletion(-) diff --git a/cura/LayerPolygon.py b/cura/LayerPolygon.py index 103703e594d..4eb21dd45ff 100644 --- a/cura/LayerPolygon.py +++ b/cura/LayerPolygon.py @@ -1,5 +1,6 @@ # Copyright (c) 2019 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. +import math import numpy from typing import Optional, cast @@ -186,6 +187,11 @@ def extruder(self): def types(self): return self._types + @property + def lineLengths(self): + return [math.sqrt(sum((b - a) ** 2 for a, b in zip(self._data[i], self._data[i + 1]))) + for i in range(len(self._data) - 1)] + @property def data(self): return self._data diff --git a/plugins/SimulationView/SimulationView.py b/plugins/SimulationView/SimulationView.py index 473948bc46d..88fc44df986 100644 --- a/plugins/SimulationView/SimulationView.py +++ b/plugins/SimulationView/SimulationView.py @@ -400,6 +400,9 @@ def getMinFeedrate(self) -> float: def getMaxFeedrate(self) -> float: return self._max_feedrate + def getSimulationTime(self) -> list: + return [length / feedrate for length, feedrate in zip(self._visible_lengths, self._current_feedrates)] + def getMinThickness(self) -> float: if abs(self._min_thickness - sys.float_info.max) < 10: # Some lenience due to floating point rounding. return 0.0 # If it's still max-float, there are no measurements. Use 0 then. @@ -524,8 +527,10 @@ def calculateColorSchemeLimits(self) -> None: visible_indicies_with_extrusion = numpy.where(numpy.isin(polyline.types, visible_line_types_with_extrusion))[0] if visible_indices.size == 0: # No items to take maximum or minimum of. continue + self._visible_lengths = numpy.take(polyline.lineLengths, visible_indices) visible_feedrates = numpy.take(polyline.lineFeedrates, visible_indices) visible_feedrates_with_extrusion = numpy.take(polyline.lineFeedrates, visible_indicies_with_extrusion) + self._current_feedrates = visible_feedrates visible_linewidths = numpy.take(polyline.lineWidths, visible_indices) visible_linewidths_with_extrusion = numpy.take(polyline.lineWidths, visible_indicies_with_extrusion) visible_thicknesses = numpy.take(polyline.lineThicknesses, visible_indices) diff --git a/plugins/SimulationView/SimulationViewMainComponent.qml b/plugins/SimulationView/SimulationViewMainComponent.qml index a82d1e3db90..b2ef7b83566 100644 --- a/plugins/SimulationView/SimulationViewMainComponent.qml +++ b/plugins/SimulationView/SimulationViewMainComponent.qml @@ -136,9 +136,10 @@ Item Timer { id: simulationTimer - interval: 100 + interval: parseFloat(UM.SimulationView.getSimulationTime[pathNumber]).toFixed(2) //10 //dont change running: false repeat: true + property int pathNumber : 0 onTriggered: { var currentPath = UM.SimulationView.currentPath @@ -153,10 +154,12 @@ Item if (currentPath >= numPaths) { UM.SimulationView.setCurrentPath(0) + pathNumber =0 } else { UM.SimulationView.setCurrentPath(currentPath + 1) + pathNumber = 0 } } // If the simulation is already playing and we reach the end of a layer, then it automatically @@ -184,6 +187,7 @@ Item // The status must be set here instead of in the resumeSimulation function otherwise it won't work // correctly, because part of the logic is in this trigger function. isSimulationPlaying = true + pathNumber += 1 } } From efda0aaba4329948485021bbbc4d2e365a5b63c4 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Tue, 7 Nov 2023 18:42:41 +0530 Subject: [PATCH 089/765] updated for every layer CURA-7647 --- plugins/SimulationView/SimulationView.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/plugins/SimulationView/SimulationView.py b/plugins/SimulationView/SimulationView.py index 88fc44df986..2f09c8018b3 100644 --- a/plugins/SimulationView/SimulationView.py +++ b/plugins/SimulationView/SimulationView.py @@ -78,6 +78,8 @@ def __init__(self, parent = None) -> None: self._minimum_path_num = 0 self.currentLayerNumChanged.connect(self._onCurrentLayerNumChanged) + self._current_feedrates = {} + self._visible_lengths ={} self._busy = False self._simulation_running = False @@ -401,7 +403,7 @@ def getMaxFeedrate(self) -> float: return self._max_feedrate def getSimulationTime(self) -> list: - return [length / feedrate for length, feedrate in zip(self._visible_lengths, self._current_feedrates)] + return [length / feedrate for length, feedrate in zip(self._visible_lengths[self._current_layer_num], self._current_feedrates[self._current_layer_num])] def getMinThickness(self) -> float: if abs(self._min_thickness - sys.float_info.max) < 10: # Some lenience due to floating point rounding. @@ -527,10 +529,10 @@ def calculateColorSchemeLimits(self) -> None: visible_indicies_with_extrusion = numpy.where(numpy.isin(polyline.types, visible_line_types_with_extrusion))[0] if visible_indices.size == 0: # No items to take maximum or minimum of. continue - self._visible_lengths = numpy.take(polyline.lineLengths, visible_indices) + self._visible_lengths[layer_index] = numpy.take(polyline.lineLengths, visible_indices) visible_feedrates = numpy.take(polyline.lineFeedrates, visible_indices) visible_feedrates_with_extrusion = numpy.take(polyline.lineFeedrates, visible_indicies_with_extrusion) - self._current_feedrates = visible_feedrates + self._current_feedrates[layer_index] = visible_feedrates visible_linewidths = numpy.take(polyline.lineWidths, visible_indices) visible_linewidths_with_extrusion = numpy.take(polyline.lineWidths, visible_indicies_with_extrusion) visible_thicknesses = numpy.take(polyline.lineThicknesses, visible_indices) From 457cecba5943c09b1b3b5b2a573a18c0915e0bc0 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Wed, 8 Nov 2023 13:29:47 +0530 Subject: [PATCH 090/765] using numpy for array calculation CURA-7647 --- cura/LayerPolygon.py | 4 ++-- plugins/SimulationView/SimulationView.py | 2 +- plugins/SimulationView/SimulationViewMainComponent.qml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cura/LayerPolygon.py b/cura/LayerPolygon.py index 4eb21dd45ff..e5fd307dc97 100644 --- a/cura/LayerPolygon.py +++ b/cura/LayerPolygon.py @@ -189,8 +189,8 @@ def types(self): @property def lineLengths(self): - return [math.sqrt(sum((b - a) ** 2 for a, b in zip(self._data[i], self._data[i + 1]))) - for i in range(len(self._data) - 1)] + data_array = numpy.array(self._data) + return numpy.linalg.norm(data_array[1:] - data_array[:-1], axis=1) @property def data(self): diff --git a/plugins/SimulationView/SimulationView.py b/plugins/SimulationView/SimulationView.py index 2f09c8018b3..18d1f981c7d 100644 --- a/plugins/SimulationView/SimulationView.py +++ b/plugins/SimulationView/SimulationView.py @@ -403,7 +403,7 @@ def getMaxFeedrate(self) -> float: return self._max_feedrate def getSimulationTime(self) -> list: - return [length / feedrate for length, feedrate in zip(self._visible_lengths[self._current_layer_num], self._current_feedrates[self._current_layer_num])] + return self._visible_lengths[self._current_layer_num] / self._current_feedrates[self._current_layer_num] def getMinThickness(self) -> float: if abs(self._min_thickness - sys.float_info.max) < 10: # Some lenience due to floating point rounding. diff --git a/plugins/SimulationView/SimulationViewMainComponent.qml b/plugins/SimulationView/SimulationViewMainComponent.qml index b2ef7b83566..66acff656ab 100644 --- a/plugins/SimulationView/SimulationViewMainComponent.qml +++ b/plugins/SimulationView/SimulationViewMainComponent.qml @@ -136,7 +136,7 @@ Item Timer { id: simulationTimer - interval: parseFloat(UM.SimulationView.getSimulationTime[pathNumber]).toFixed(2) //10 //dont change + interval: parseFloat(UM.SimulationView.getSimulationTime[pathNumber]).toFixed(2) running: false repeat: true property int pathNumber : 0 From 49a7ea5b487145d1cc1241b695762b5fd3f866a4 Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Wed, 8 Nov 2023 16:05:54 +0100 Subject: [PATCH 091/765] Officially supported languages' translations for v5.6.x Due to various circumstances, an excel spreadsheet, the .tsv export thereof, and a temporary, thrown together python script where involved this time. Please double-check thoroughly. CURA-11300 --- resources/i18n/de_DE/cura.po | 18 ++++++------- resources/i18n/de_DE/fdmprinter.def.json.po | 28 ++++++++++----------- resources/i18n/es_ES/cura.po | 18 ++++++------- resources/i18n/es_ES/fdmprinter.def.json.po | 26 +++++++++---------- resources/i18n/fr_FR/cura.po | 18 ++++++------- resources/i18n/fr_FR/fdmprinter.def.json.po | 26 +++++++++---------- resources/i18n/it_IT/cura.po | 18 ++++++------- resources/i18n/it_IT/fdmprinter.def.json.po | 26 +++++++++---------- resources/i18n/ja_JP/cura.po | 18 ++++++------- resources/i18n/ja_JP/fdmprinter.def.json.po | 26 +++++++++---------- resources/i18n/ko_KR/cura.po | 18 ++++++------- resources/i18n/ko_KR/fdmprinter.def.json.po | 26 +++++++++---------- resources/i18n/nl_NL/cura.po | 18 ++++++------- resources/i18n/nl_NL/fdmprinter.def.json.po | 28 ++++++++++----------- resources/i18n/pt_PT/cura.po | 18 ++++++------- resources/i18n/pt_PT/fdmprinter.def.json.po | 26 +++++++++---------- resources/i18n/ru_RU/cura.po | 18 ++++++------- resources/i18n/ru_RU/fdmprinter.def.json.po | 26 +++++++++---------- resources/i18n/tr_TR/cura.po | 18 ++++++------- resources/i18n/tr_TR/fdmprinter.def.json.po | 26 +++++++++---------- resources/i18n/zh_CN/cura.po | 18 ++++++------- resources/i18n/zh_CN/fdmprinter.def.json.po | 26 +++++++++---------- 22 files changed, 244 insertions(+), 244 deletions(-) diff --git a/resources/i18n/de_DE/cura.po b/resources/i18n/de_DE/cura.po index b72c60c178f..f006c75fb6b 100644 --- a/resources/i18n/de_DE/cura.po +++ b/resources/i18n/de_DE/cura.po @@ -559,7 +559,7 @@ msgstr "Alle Modelle in einem Raster anordnen" msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" -msgstr "" +msgstr "Auswahl anordnen" msgctxt "@label:button" msgid "Ask a question" @@ -1015,7 +1015,7 @@ msgstr "Die Antwort vom Server konnte nicht interpretiert werden." msgctxt "@error:load" msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." -msgstr "" +msgstr "Konnte GCodeWriter-Plugin nicht laden. Versuchen Sie, das Plugin wieder zu aktivieren." msgctxt "@info:error" msgid "Could not reach Marketplace." @@ -2356,19 +2356,19 @@ msgstr "Stellen Sie sicher, dass der G-Code für Ihren Drucker und Ihre Druckerk msgctxt "@item:inlistbox" msgid "Makerbot Printfile" -msgstr "" +msgstr "Makerbot-Druckdatei" msgctxt "name" msgid "Makerbot Printfile Writer" -msgstr "" +msgstr "Makerbot-Druckdatei-Writer" msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." -msgstr "" +msgstr "MakerbotWriter konnte nicht im angegebenen Pfad speichern." msgctxt "@error:not supported" msgid "MakerbotWriter does not support text mode." -msgstr "" +msgstr "MakerbotWriter unterstützt keinen Textmodus." msgctxt "@action:inmenu" msgid "Manage Materials..." @@ -3019,7 +3019,7 @@ msgstr "Geben Sie bitte einen Namen für dieses Profil an." msgctxt "@info" msgid "Please provide a new name." -msgstr "" +msgstr "Bitte geben Sie einen neuen Namen an." msgctxt "@text" msgid "Please read and agree with the plugin licence." @@ -3456,7 +3456,7 @@ msgstr "Bietet Unterstützung für das Schreiben von 3MF-Dateien." msgctxt "description" msgid "Provides support for writing MakerBot Format Packages." -msgstr "" +msgstr "Bietet Unterstützung für das Schreiben von MakerBot-Formatpaketen." msgctxt "description" msgid "Provides support for writing Ultimaker Format Packages." @@ -3593,7 +3593,7 @@ msgstr "Umbenennen" msgctxt "@title:window" msgid "Rename" -msgstr "" +msgstr "Umbenennen" msgctxt "@title:window" msgid "Rename Profile" diff --git a/resources/i18n/de_DE/fdmprinter.def.json.po b/resources/i18n/de_DE/fdmprinter.def.json.po index 31eccbb1124..51e9189dec9 100644 --- a/resources/i18n/de_DE/fdmprinter.def.json.po +++ b/resources/i18n/de_DE/fdmprinter.def.json.po @@ -742,7 +742,7 @@ msgstr "Der Abstand zwischen den gedruckten Stützstrukturlinien. Diese Einstell msgctxt "support_bottom_distance description" msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." -msgstr "" +msgstr "Abstand vom Druck zum Boden der Stütze. Beachten Sie, dass dies auf die nächste Schichthöhe aufgerundet wird." msgctxt "support_top_distance description" msgid "Distance from the top of the support to the print." @@ -750,7 +750,7 @@ msgstr "Der Abstand von der Oberseite der Stützstruktur zum gedruckten Objekt." msgctxt "support_z_distance description" msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." -msgstr "" +msgstr "Abstand von der Ober-/Unterseite der Stützstruktur zum Druck. Diese Lücke ermöglicht es, die Stützen nach dem Drucken des Modells zu entfernen. Die oberste Stützschicht unter dem Modell könnte ein Bruchteil der normalen Schichten sein." msgctxt "infill_wipe_dist description" msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." @@ -1938,7 +1938,7 @@ msgstr "Marlin (Volumetrisch)" msgctxt "material description" msgid "Material" -msgstr "" +msgstr "Material" msgctxt "material label" msgid "Material" @@ -2514,19 +2514,19 @@ msgstr "Beschleunigung Einzugsturm" msgctxt "prime_tower_brim_enable label" msgid "Prime Tower Base" -msgstr "" +msgstr "Grundfläche des Prime-Turms" msgctxt "prime_tower_base_curve_magnitude label" msgid "Prime Tower Base Curve Magnitude" -msgstr "" +msgstr "Krümmungsstärke der Prime-Turm-Basis" msgctxt "prime_tower_base_height label" msgid "Prime Tower Base Height" -msgstr "" +msgstr "Höhe der Prime-Turm-Basis" msgctxt "prime_tower_base_size label" msgid "Prime Tower Base Size" -msgstr "" +msgstr "Größe der Prime-Turm-Basis" msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" @@ -2546,7 +2546,7 @@ msgstr "Mindestvolumen Einzugsturm" msgctxt "prime_tower_raft_base_line_spacing label" msgid "Prime Tower Raft Line Spacing" -msgstr "" +msgstr "Linienabstand des Prime-Turm-Floßes" msgctxt "prime_tower_size label" msgid "Prime Tower Size" @@ -2566,7 +2566,7 @@ msgstr "Y-Position des Einzugsturms" msgctxt "prime_tower_brim_enable description" msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -msgstr "" +msgstr "Prime-Türme benötigen möglicherweise die zusätzliche Haftung durch einen Rand oder ein Floß, selbst wenn das Modell dies nicht tut." msgctxt "acceleration_print label" msgid "Print Acceleration" @@ -3786,7 +3786,7 @@ msgstr "Der Abstand zwischen den Raft-Linien der Raft-Oberflächenschichten. Der msgctxt "prime_tower_raft_base_line_spacing description" msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "" +msgstr "Der Abstand zwischen den Floßlinien für die einzigartige Prime-Turm-Floßschicht. Ein großer Abstand erleichtert das Entfernen des Floßes von der Bauplatte." msgctxt "interlocking_depth description" msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." @@ -3986,7 +3986,7 @@ msgstr "Die Dicke der ersten Schicht in mm. Eine dicke erste Schicht erleichtert msgctxt "prime_tower_base_height description" msgid "The height of the prime tower base." -msgstr "" +msgstr "Die Höhe der Prime-Turm-Basis." msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." @@ -4062,7 +4062,7 @@ msgstr "Die Länge des Materials, das während der Einzugsbewegung eingezogen wi msgctxt "prime_tower_base_curve_magnitude description" msgid "The magnitude factor used for the curve of the prime tower foot." -msgstr "" +msgstr "Der Größenfaktor, der für die Kurve des Prime-Turm-Fußes verwendet wird." msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." @@ -4618,7 +4618,7 @@ msgstr "Die Temperatur, bei der das Abkühlen bereits beginnen kann, bevor der D msgctxt "material_print_temperature_layer_0 description" msgid "The temperature used for printing the first layer." -msgstr "" +msgstr "Die Temperatur, die für den Druck der ersten Schicht verwendet wird." msgctxt "material_print_temperature description" msgid "The temperature used for printing." @@ -4698,7 +4698,7 @@ msgstr "Die Breite der Balken in der ineinandergreifenden Struktur." msgctxt "prime_tower_base_size description" msgid "The width of the prime tower base." -msgstr "" +msgstr "Die Breite der Prime-Turm-Basis." msgctxt "prime_tower_size description" msgid "The width of the prime tower." diff --git a/resources/i18n/es_ES/cura.po b/resources/i18n/es_ES/cura.po index 933f09f51fb..07d4ad2d79e 100644 --- a/resources/i18n/es_ES/cura.po +++ b/resources/i18n/es_ES/cura.po @@ -559,7 +559,7 @@ msgstr "Organizar todos los modelos en una cuadrícula" msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" -msgstr "" +msgstr "Organizar selección" msgctxt "@label:button" msgid "Ask a question" @@ -1015,7 +1015,7 @@ msgstr "Imposible interpretar la respuesta del servidor." msgctxt "@error:load" msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." -msgstr "" +msgstr "No se pudo cargar el plugin GCodeWriter. Intenta volver a habilitar el plugin." msgctxt "@info:error" msgid "Could not reach Marketplace." @@ -2356,19 +2356,19 @@ msgstr "Asegúrese de que el GCode es adecuado para la impresora y para su confi msgctxt "@item:inlistbox" msgid "Makerbot Printfile" -msgstr "" +msgstr "Archivo de impresión Makerbot" msgctxt "name" msgid "Makerbot Printfile Writer" -msgstr "" +msgstr "Escritor de archivos de impresión Makerbot" msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." -msgstr "" +msgstr "MakerbotWriter no pudo guardar en la ruta designada." msgctxt "@error:not supported" msgid "MakerbotWriter does not support text mode." -msgstr "" +msgstr "MakerbotWriter no soporta el modo texto." msgctxt "@action:inmenu" msgid "Manage Materials..." @@ -3020,7 +3020,7 @@ msgstr "Introduzca un nombre para este perfil." msgctxt "@info" msgid "Please provide a new name." -msgstr "" +msgstr "Por favor, proporciona un nuevo nombre." msgctxt "@text" msgid "Please read and agree with the plugin licence." @@ -3457,7 +3457,7 @@ msgstr "Proporciona asistencia para escribir archivos 3MF." msgctxt "description" msgid "Provides support for writing MakerBot Format Packages." -msgstr "" +msgstr "Proporciona soporte para escribir paquetes de formato MakerBot." msgctxt "description" msgid "Provides support for writing Ultimaker Format Packages." @@ -3594,7 +3594,7 @@ msgstr "Cambiar nombre" msgctxt "@title:window" msgid "Rename" -msgstr "" +msgstr "Renombrar" msgctxt "@title:window" msgid "Rename Profile" diff --git a/resources/i18n/es_ES/fdmprinter.def.json.po b/resources/i18n/es_ES/fdmprinter.def.json.po index a3430f43ba9..1656506cba9 100644 --- a/resources/i18n/es_ES/fdmprinter.def.json.po +++ b/resources/i18n/es_ES/fdmprinter.def.json.po @@ -742,7 +742,7 @@ msgstr "Distancia entre las líneas de estructuras del soporte impresas. Este aj msgctxt "support_bottom_distance description" msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." -msgstr "" +msgstr "Distancia de la impresión hasta la parte inferior del soporte. Ten en cuenta que esto se redondea al siguiente altura de capa." msgctxt "support_top_distance description" msgid "Distance from the top of the support to the print." @@ -750,7 +750,7 @@ msgstr "Distancia desde la parte superior del soporte a la impresión." msgctxt "support_z_distance description" msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." -msgstr "" +msgstr "Distancia desde la parte superior/inferior de la estructura de soporte hasta la impresión. Este espacio proporciona la holgura necesaria para remover los soportes después de imprimir el modelo. La capa de soporte más cercana al modelo podría ser una fracción de las capas regulares." msgctxt "infill_wipe_dist description" msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." @@ -2514,19 +2514,19 @@ msgstr "Aceleración de la torre auxiliar" msgctxt "prime_tower_brim_enable label" msgid "Prime Tower Base" -msgstr "" +msgstr "Base de la torre de cebado" msgctxt "prime_tower_base_curve_magnitude label" msgid "Prime Tower Base Curve Magnitude" -msgstr "" +msgstr "Magnitud de la curva de la base de la torre de cebado" msgctxt "prime_tower_base_height label" msgid "Prime Tower Base Height" -msgstr "" +msgstr "Altura de la base de la torre de cebado" msgctxt "prime_tower_base_size label" msgid "Prime Tower Base Size" -msgstr "" +msgstr "Tamaño de la base de la torre de cebado" msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" @@ -2546,7 +2546,7 @@ msgstr "Volumen mínimo de la torre auxiliar" msgctxt "prime_tower_raft_base_line_spacing label" msgid "Prime Tower Raft Line Spacing" -msgstr "" +msgstr "Espaciado de las líneas del raft de la torre de cebado" msgctxt "prime_tower_size label" msgid "Prime Tower Size" @@ -2566,7 +2566,7 @@ msgstr "Posición de la torre auxiliar sobre el eje Y" msgctxt "prime_tower_brim_enable description" msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -msgstr "" +msgstr "Las torres de cebado pueden necesitar la adhesión extra que proporciona un borde o raft, incluso si el modelo no lo necesita." msgctxt "acceleration_print label" msgid "Print Acceleration" @@ -3786,7 +3786,7 @@ msgstr "Distancia entre las líneas de la balsa para las capas superiores de la msgctxt "prime_tower_raft_base_line_spacing description" msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "" +msgstr "La distancia entre las líneas del raft para la capa única del raft de la torre de cebado. Un espaciado amplio facilita la eliminación del raft de la placa de construcción." msgctxt "interlocking_depth description" msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." @@ -3986,7 +3986,7 @@ msgstr "Altura de capa inicial en mm. Una capa inicial más gruesa se adhiere a msgctxt "prime_tower_base_height description" msgid "The height of the prime tower base." -msgstr "" +msgstr "La altura de la base de la torre de cebado." msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." @@ -4062,7 +4062,7 @@ msgstr "Longitud del material retraído durante un movimiento de retracción." msgctxt "prime_tower_base_curve_magnitude description" msgid "The magnitude factor used for the curve of the prime tower foot." -msgstr "" +msgstr "El factor de magnitud utilizado para la curva del pie de la torre de cebado." msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." @@ -4618,7 +4618,7 @@ msgstr "La temperatura a la que se puede empezar a enfriar justo antes de finali msgctxt "material_print_temperature_layer_0 description" msgid "The temperature used for printing the first layer." -msgstr "" +msgstr "La temperatura utilizada para imprimir la primera capa." msgctxt "material_print_temperature description" msgid "The temperature used for printing." @@ -4698,7 +4698,7 @@ msgstr "El ancho de los haces de la estructura entrelazada." msgctxt "prime_tower_base_size description" msgid "The width of the prime tower base." -msgstr "" +msgstr "El ancho de la base de la torre de cebado." msgctxt "prime_tower_size description" msgid "The width of the prime tower." diff --git a/resources/i18n/fr_FR/cura.po b/resources/i18n/fr_FR/cura.po index 8b622fb4f8a..054b77713a6 100644 --- a/resources/i18n/fr_FR/cura.po +++ b/resources/i18n/fr_FR/cura.po @@ -556,7 +556,7 @@ msgstr "Organiser tous les modèles sur une grille" msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" -msgstr "" +msgstr "Organiser la sélection" msgctxt "@label:button" msgid "Ask a question" @@ -1012,7 +1012,7 @@ msgstr "Impossible d'interpréter la réponse du serveur." msgctxt "@error:load" msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." -msgstr "" +msgstr "Impossible de charger le plugin GCodeWriter. Essayez de réactiver le plugin." msgctxt "@info:error" msgid "Could not reach Marketplace." @@ -2353,19 +2353,19 @@ msgstr "Assurez-vous que le g-code est adapté à votre imprimante et à la conf msgctxt "@item:inlistbox" msgid "Makerbot Printfile" -msgstr "" +msgstr "Fichier d'impression Makerbot" msgctxt "name" msgid "Makerbot Printfile Writer" -msgstr "" +msgstr "Écrivain de fichier d'impression Makerbot" msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." -msgstr "" +msgstr "MakerbotWriter n'a pas pu sauvegarder dans le chemin désigné." msgctxt "@error:not supported" msgid "MakerbotWriter does not support text mode." -msgstr "" +msgstr "MakerbotWriter ne prend pas en charge le mode texte." msgctxt "@action:inmenu" msgid "Manage Materials..." @@ -3017,7 +3017,7 @@ msgstr "Veuillez fournir un nom pour ce profil." msgctxt "@info" msgid "Please provide a new name." -msgstr "" +msgstr "Veuillez fournir un nouveau nom." msgctxt "@text" msgid "Please read and agree with the plugin licence." @@ -3454,7 +3454,7 @@ msgstr "Permet l'écriture de fichiers 3MF." msgctxt "description" msgid "Provides support for writing MakerBot Format Packages." -msgstr "" +msgstr "Fournit un support pour l'écriture de paquets de format MakerBot." msgctxt "description" msgid "Provides support for writing Ultimaker Format Packages." @@ -3591,7 +3591,7 @@ msgstr "Renommer" msgctxt "@title:window" msgid "Rename" -msgstr "" +msgstr "Renommer" msgctxt "@title:window" msgid "Rename Profile" diff --git a/resources/i18n/fr_FR/fdmprinter.def.json.po b/resources/i18n/fr_FR/fdmprinter.def.json.po index 78c34cb64f6..ec26a991288 100644 --- a/resources/i18n/fr_FR/fdmprinter.def.json.po +++ b/resources/i18n/fr_FR/fdmprinter.def.json.po @@ -742,7 +742,7 @@ msgstr "Distance entre les lignes de support imprimées. Ce paramètre est calcu msgctxt "support_bottom_distance description" msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." -msgstr "" +msgstr "Distance de l'impression au bas du support. Notez que cela est arrondi à la hauteur de couche suivante." msgctxt "support_top_distance description" msgid "Distance from the top of the support to the print." @@ -750,7 +750,7 @@ msgstr "Distance entre l’impression et le haut des supports." msgctxt "support_z_distance description" msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." -msgstr "" +msgstr "Distance entre le haut/bas de la structure de support et l'impression. Cet écart permet de retirer les supports après l'impression du modèle. La couche de support la plus haute sous le modèle pourrait être une fraction des couches régulières." msgctxt "infill_wipe_dist description" msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." @@ -2514,19 +2514,19 @@ msgstr "Accélération de la tour d'amorçage" msgctxt "prime_tower_brim_enable label" msgid "Prime Tower Base" -msgstr "" +msgstr "Base de la tour de prime" msgctxt "prime_tower_base_curve_magnitude label" msgid "Prime Tower Base Curve Magnitude" -msgstr "" +msgstr "Amplitude de la courbe de base de la tour de prime" msgctxt "prime_tower_base_height label" msgid "Prime Tower Base Height" -msgstr "" +msgstr "Hauteur de la base de la tour de prime" msgctxt "prime_tower_base_size label" msgid "Prime Tower Base Size" -msgstr "" +msgstr "Taille de la base de la tour de prime" msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" @@ -2546,7 +2546,7 @@ msgstr "Volume minimum de la tour d'amorçage" msgctxt "prime_tower_raft_base_line_spacing label" msgid "Prime Tower Raft Line Spacing" -msgstr "" +msgstr "Espacement des lignes de radeau de la tour de prime" msgctxt "prime_tower_size label" msgid "Prime Tower Size" @@ -2566,7 +2566,7 @@ msgstr "Position Y de la tour d'amorçage" msgctxt "prime_tower_brim_enable description" msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -msgstr "" +msgstr "Les tours de prime pourraient nécessiter l'adhésion supplémentaire offerte par un bord ou un radeau, même si le modèle n'en a pas besoin." msgctxt "acceleration_print label" msgid "Print Acceleration" @@ -3786,7 +3786,7 @@ msgstr "La distance entre les lignes du radeau pour les couches supérieures de msgctxt "prime_tower_raft_base_line_spacing description" msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "" +msgstr "La distance entre les lignes de radeau pour la couche de radeau unique de la tour de prime. Un espacement large permet un retrait facile du radeau de la plaque de construction." msgctxt "interlocking_depth description" msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." @@ -3986,7 +3986,7 @@ msgstr "La hauteur de la couche initiale en mm. Une couche initiale plus épaiss msgctxt "prime_tower_base_height description" msgid "The height of the prime tower base." -msgstr "" +msgstr "La hauteur de la base de la tour de prime." msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." @@ -4062,7 +4062,7 @@ msgstr "La longueur de matériau rétracté pendant une rétraction." msgctxt "prime_tower_base_curve_magnitude description" msgid "The magnitude factor used for the curve of the prime tower foot." -msgstr "" +msgstr "Le facteur d'amplitude utilisé pour la courbe du pied de la tour de prime." msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." @@ -4618,7 +4618,7 @@ msgstr "La température à laquelle le refroidissement commence juste avant la f msgctxt "material_print_temperature_layer_0 description" msgid "The temperature used for printing the first layer." -msgstr "" +msgstr "La température utilisée pour l'impression de la première couche." msgctxt "material_print_temperature description" msgid "The temperature used for printing." @@ -4698,7 +4698,7 @@ msgstr "La largeur des attaches de la structure de connexion." msgctxt "prime_tower_base_size description" msgid "The width of the prime tower base." -msgstr "" +msgstr "La largeur de la base de la tour de prime." msgctxt "prime_tower_size description" msgid "The width of the prime tower." diff --git a/resources/i18n/it_IT/cura.po b/resources/i18n/it_IT/cura.po index b0b180a2bf5..1a131973bf2 100644 --- a/resources/i18n/it_IT/cura.po +++ b/resources/i18n/it_IT/cura.po @@ -559,7 +559,7 @@ msgstr "Sistema tutti i modelli in una griglia" msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" -msgstr "" +msgstr "Disponi Selezione" msgctxt "@label:button" msgid "Ask a question" @@ -1015,7 +1015,7 @@ msgstr "Impossibile interpretare la risposta del server." msgctxt "@error:load" msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." -msgstr "" +msgstr "Impossibile caricare il plugin GCodeWriter. Prova a riattivare il plugin." msgctxt "@info:error" msgid "Could not reach Marketplace." @@ -2356,19 +2356,19 @@ msgstr "Verifica che il codice G sia idoneo alla tua stampante e alla sua config msgctxt "@item:inlistbox" msgid "Makerbot Printfile" -msgstr "" +msgstr "File di Stampa Makerbot" msgctxt "name" msgid "Makerbot Printfile Writer" -msgstr "" +msgstr "Scrittore di File di Stampa Makerbot" msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." -msgstr "" +msgstr "MakerbotWriter non è riuscito a salvare nel percorso designato." msgctxt "@error:not supported" msgid "MakerbotWriter does not support text mode." -msgstr "" +msgstr "MakerbotWriter non supporta la modalità testo." msgctxt "@action:inmenu" msgid "Manage Materials..." @@ -3020,7 +3020,7 @@ msgstr "Indica un nome per questo profilo." msgctxt "@info" msgid "Please provide a new name." -msgstr "" +msgstr "Si prega di fornire un nuovo nome." msgctxt "@text" msgid "Please read and agree with the plugin licence." @@ -3457,7 +3457,7 @@ msgstr "Fornisce il supporto per la scrittura di file 3MF." msgctxt "description" msgid "Provides support for writing MakerBot Format Packages." -msgstr "" +msgstr "Fornisce supporto per la scrittura di pacchetti nel formato MakerBot." msgctxt "description" msgid "Provides support for writing Ultimaker Format Packages." @@ -3594,7 +3594,7 @@ msgstr "Rinomina" msgctxt "@title:window" msgid "Rename" -msgstr "" +msgstr "Rinomina" msgctxt "@title:window" msgid "Rename Profile" diff --git a/resources/i18n/it_IT/fdmprinter.def.json.po b/resources/i18n/it_IT/fdmprinter.def.json.po index f7a9a9cf363..c6d26fe1422 100644 --- a/resources/i18n/it_IT/fdmprinter.def.json.po +++ b/resources/i18n/it_IT/fdmprinter.def.json.po @@ -742,7 +742,7 @@ msgstr "Indica la distanza tra le linee della struttura di supporto stampata. Qu msgctxt "support_bottom_distance description" msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." -msgstr "" +msgstr "Distanza dalla stampa alla base del supporto. Notare che viene arrotondata all'altezza del layer successivo." msgctxt "support_top_distance description" msgid "Distance from the top of the support to the print." @@ -750,7 +750,7 @@ msgstr "È la distanza tra la parte superiore del supporto e la stampa." msgctxt "support_z_distance description" msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." -msgstr "" +msgstr "Distanza dalla parte superiore/inferiore della struttura di supporto alla stampa. Questo spazio permette di rimuovere i supporti dopo la stampa del modello. L'ultimo strato di supporto sotto il modello potrebbe essere una frazione degli strati regolari." msgctxt "infill_wipe_dist description" msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." @@ -2514,19 +2514,19 @@ msgstr "Accelerazione della torre di innesco" msgctxt "prime_tower_brim_enable label" msgid "Prime Tower Base" -msgstr "" +msgstr "Base della Torre di Primerizzazione" msgctxt "prime_tower_base_curve_magnitude label" msgid "Prime Tower Base Curve Magnitude" -msgstr "" +msgstr "Magnitudo della Curva della Base della Torre di Primerizzazione" msgctxt "prime_tower_base_height label" msgid "Prime Tower Base Height" -msgstr "" +msgstr "Altezza della Base della Torre di Primerizzazione" msgctxt "prime_tower_base_size label" msgid "Prime Tower Base Size" -msgstr "" +msgstr "Dimensione della Base della Torre di Primerizzazione" msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" @@ -2546,7 +2546,7 @@ msgstr "Volume minimo torre di innesco" msgctxt "prime_tower_raft_base_line_spacing label" msgid "Prime Tower Raft Line Spacing" -msgstr "" +msgstr "Interlinea del Radeau della Torre di Primerizzazione" msgctxt "prime_tower_size label" msgid "Prime Tower Size" @@ -2566,7 +2566,7 @@ msgstr "Posizione Y torre di innesco" msgctxt "prime_tower_brim_enable description" msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -msgstr "" +msgstr "Le torri di primerizzazione potrebbero necessitare di un'adesione extra fornita da un bordo o radeau, anche se il modello non lo richiede." msgctxt "acceleration_print label" msgid "Print Acceleration" @@ -3786,7 +3786,7 @@ msgstr "Indica la distanza tra le linee che costituiscono la maglia superiore de msgctxt "prime_tower_raft_base_line_spacing description" msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "" +msgstr "La distanza tra le linee del radeau per l'unico strato di radeau della torre di primerizzazione. Un ampio interlinea facilita la rimozione del radeau dalla piastra di costruzione." msgctxt "interlocking_depth description" msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." @@ -3986,7 +3986,7 @@ msgstr "Indica l’altezza dello strato iniziale in mm. Uno strato iniziale più msgctxt "prime_tower_base_height description" msgid "The height of the prime tower base." -msgstr "" +msgstr "L'altezza della base della torre di primerizzazione." msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." @@ -4062,7 +4062,7 @@ msgstr "La lunghezza del materiale retratto durante il movimento di retrazione." msgctxt "prime_tower_base_curve_magnitude description" msgid "The magnitude factor used for the curve of the prime tower foot." -msgstr "" +msgstr "Il fattore di magnitudo usato per la curva del piede della torre di primerizzazione." msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." @@ -4618,7 +4618,7 @@ msgstr "La temperatura alla quale può già iniziare il raffreddamento prima del msgctxt "material_print_temperature_layer_0 description" msgid "The temperature used for printing the first layer." -msgstr "" +msgstr "La temperatura utilizzata per la stampa del primo strato." msgctxt "material_print_temperature description" msgid "The temperature used for printing." @@ -4698,7 +4698,7 @@ msgstr "La larghezza delle travi della struttura ad incastro." msgctxt "prime_tower_base_size description" msgid "The width of the prime tower base." -msgstr "" +msgstr "La larghezza della base della torre di primerizzazione." msgctxt "prime_tower_size description" msgid "The width of the prime tower." diff --git a/resources/i18n/ja_JP/cura.po b/resources/i18n/ja_JP/cura.po index 68e8674d350..7826e4df9eb 100644 --- a/resources/i18n/ja_JP/cura.po +++ b/resources/i18n/ja_JP/cura.po @@ -556,7 +556,7 @@ msgstr "すべてのモデルをグリッドに配置" msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" -msgstr "" +msgstr "選択を整列" msgctxt "@label:button" msgid "Ask a question" @@ -1012,7 +1012,7 @@ msgstr "サーバーの応答を解釈できませんでした。" msgctxt "@error:load" msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." -msgstr "" +msgstr "GCodeWriterプラグインを読み込めませんでした。プラグインを再度有効にしてみてください。" msgctxt "@info:error" msgid "Could not reach Marketplace." @@ -2353,19 +2353,19 @@ msgstr "データファイルを送信する前に、プリンターとプリン msgctxt "@item:inlistbox" msgid "Makerbot Printfile" -msgstr "" +msgstr "Makerbotプリントファイル" msgctxt "name" msgid "Makerbot Printfile Writer" -msgstr "" +msgstr "Makerbotプリントファイルライター" msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." -msgstr "" +msgstr "MakerbotWriterが指定されたパスに保存できませんでした。" msgctxt "@error:not supported" msgid "MakerbotWriter does not support text mode." -msgstr "" +msgstr "MakerbotWriterはテキストモードをサポートしていません。" msgctxt "@action:inmenu" msgid "Manage Materials..." @@ -3013,7 +3013,7 @@ msgstr "このプロファイルの名前を指定してください。" msgctxt "@info" msgid "Please provide a new name." -msgstr "" +msgstr "新しい名前を入力してください。" msgctxt "@text" msgid "Please read and agree with the plugin licence." @@ -3448,7 +3448,7 @@ msgstr "3MFファイルを読むこむためのサポートを供給する。" msgctxt "description" msgid "Provides support for writing MakerBot Format Packages." -msgstr "" +msgstr "MakerBotフォーマットパッケージを書き込むためのサポートを提供します。" msgctxt "description" msgid "Provides support for writing Ultimaker Format Packages." @@ -3585,7 +3585,7 @@ msgstr "名を変える" msgctxt "@title:window" msgid "Rename" -msgstr "" +msgstr "名前変更" msgctxt "@title:window" msgid "Rename Profile" diff --git a/resources/i18n/ja_JP/fdmprinter.def.json.po b/resources/i18n/ja_JP/fdmprinter.def.json.po index 6e19d04e13e..de1395bfc29 100644 --- a/resources/i18n/ja_JP/fdmprinter.def.json.po +++ b/resources/i18n/ja_JP/fdmprinter.def.json.po @@ -742,7 +742,7 @@ msgstr "印刷されたサポート材の間隔。この設定は、サポート msgctxt "support_bottom_distance description" msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." -msgstr "" +msgstr "プリントからサポートの底までの距離。これは次のレイヤーの高さに切り上げられることに注意してください。" msgctxt "support_top_distance description" msgid "Distance from the top of the support to the print." @@ -750,7 +750,7 @@ msgstr "サポートの上部から印刷物までの距離。" msgctxt "support_z_distance description" msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." -msgstr "" +msgstr "サポート構造の上部/下部からプリントまでの距離です。このギャップは、モデル印刷後にサポートを取り除くためのクリアランスを提供します。モデルの下にある最上層のサポート層は、通常のレイヤーの一部分かもしれません。" msgctxt "infill_wipe_dist description" msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." @@ -2514,19 +2514,19 @@ msgstr "プライムタワー加速度" msgctxt "prime_tower_brim_enable label" msgid "Prime Tower Base" -msgstr "" +msgstr "プライムタワーベース" msgctxt "prime_tower_base_curve_magnitude label" msgid "Prime Tower Base Curve Magnitude" -msgstr "" +msgstr "プライムタワーベースカーブの大きさ" msgctxt "prime_tower_base_height label" msgid "Prime Tower Base Height" -msgstr "" +msgstr "プライムタワーベースの高さ" msgctxt "prime_tower_base_size label" msgid "Prime Tower Base Size" -msgstr "" +msgstr "プライムタワーベースのサイズ" msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" @@ -2546,7 +2546,7 @@ msgstr "プライムタワー最小容積" msgctxt "prime_tower_raft_base_line_spacing label" msgid "Prime Tower Raft Line Spacing" -msgstr "" +msgstr "プライムタワーラフトライン間隔" msgctxt "prime_tower_size label" msgid "Prime Tower Size" @@ -2566,7 +2566,7 @@ msgstr "プライムタワーY位置" msgctxt "prime_tower_brim_enable description" msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -msgstr "" +msgstr "プライムタワーはモデルでは不要でも、ブリムやラフトによる追加の接着が必要かもしれません。" msgctxt "acceleration_print label" msgid "Print Acceleration" @@ -3790,7 +3790,7 @@ msgstr "上のラフト層とラフト線の間の距離。間隔は線の幅と msgctxt "prime_tower_raft_base_line_spacing description" msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "" +msgstr "プライムタワーラフト層の独自のラフトライン間の距離です。間隔が広いと、ラフトをビルドプレートから簡単に取り除くことができます。" msgctxt "interlocking_depth description" msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." @@ -3990,7 +3990,7 @@ msgstr "初期レイヤーの高さ(mm)。厚い初期層はビルドプレ msgctxt "prime_tower_base_height description" msgid "The height of the prime tower base." -msgstr "" +msgstr "プライムタワーベースの高さです。" msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." @@ -4066,7 +4066,7 @@ msgstr "引き戻されるマテリアルの長さ。" msgctxt "prime_tower_base_curve_magnitude description" msgid "The magnitude factor used for the curve of the prime tower foot." -msgstr "" +msgstr "プライムタワーの足のカーブに使用される倍率係数です。" msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." @@ -4622,7 +4622,7 @@ msgstr "印刷終了直前に冷却を開始する温度。" msgctxt "material_print_temperature_layer_0 description" msgid "The temperature used for printing the first layer." -msgstr "" +msgstr "最初の層を印刷するために使用される温度です。" msgctxt "material_print_temperature description" msgid "The temperature used for printing." @@ -4702,7 +4702,7 @@ msgstr "インターロック構造ビームの幅。" msgctxt "prime_tower_base_size description" msgid "The width of the prime tower base." -msgstr "" +msgstr "プライムタワーベースの幅です。" msgctxt "prime_tower_size description" msgid "The width of the prime tower." diff --git a/resources/i18n/ko_KR/cura.po b/resources/i18n/ko_KR/cura.po index 43dcf7cd403..5926b7c442f 100644 --- a/resources/i18n/ko_KR/cura.po +++ b/resources/i18n/ko_KR/cura.po @@ -556,7 +556,7 @@ msgstr "모든 모델을 그리드에 정렬하기" msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" -msgstr "" +msgstr "배열 선택" msgctxt "@label:button" msgid "Ask a question" @@ -1012,7 +1012,7 @@ msgstr "서버의 응답을 해석할 수 없습니다." msgctxt "@error:load" msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." -msgstr "" +msgstr "GCodeWriter 플러그인을 불러올 수 없습니다. 플러그인을 다시 활성화해보세요." msgctxt "@info:error" msgid "Could not reach Marketplace." @@ -2353,19 +2353,19 @@ msgstr "파일을 보내기 전에 g-코드가 프린터 및 프린터 구성에 msgctxt "@item:inlistbox" msgid "Makerbot Printfile" -msgstr "" +msgstr "Makerbot 프린트파일" msgctxt "name" msgid "Makerbot Printfile Writer" -msgstr "" +msgstr "Makerbot 프린트파일 작성기" msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." -msgstr "" +msgstr "MakerbotWriter가 지정된 경로에 저장할 수 없습니다." msgctxt "@error:not supported" msgid "MakerbotWriter does not support text mode." -msgstr "" +msgstr "MakerbotWriter는 텍스트 모드를 지원하지 않습니다." msgctxt "@action:inmenu" msgid "Manage Materials..." @@ -3012,7 +3012,7 @@ msgstr "이 프로파일에 대한 이름을 제공하십시오." msgctxt "@info" msgid "Please provide a new name." -msgstr "" +msgstr "새로운 이름을 입력해주세요." msgctxt "@text" msgid "Please read and agree with the plugin licence." @@ -3447,7 +3447,7 @@ msgstr "3MF 파일 작성 지원을 제공합니다." msgctxt "description" msgid "Provides support for writing MakerBot Format Packages." -msgstr "" +msgstr "MakerBot 포맷 패키지 작성을 지원합니다." msgctxt "description" msgid "Provides support for writing Ultimaker Format Packages." @@ -3584,7 +3584,7 @@ msgstr "이름 바꾸기" msgctxt "@title:window" msgid "Rename" -msgstr "" +msgstr "이름 변경" msgctxt "@title:window" msgid "Rename Profile" diff --git a/resources/i18n/ko_KR/fdmprinter.def.json.po b/resources/i18n/ko_KR/fdmprinter.def.json.po index 09837e2f63c..0476174c616 100644 --- a/resources/i18n/ko_KR/fdmprinter.def.json.po +++ b/resources/i18n/ko_KR/fdmprinter.def.json.po @@ -742,7 +742,7 @@ msgstr "프린팅 된 서포트 구조 선 사이의 거리. 이 설정은 서 msgctxt "support_bottom_distance description" msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." -msgstr "" +msgstr "프린트에서 서포트 바닥까지의 거리입니다. 이는 다음 레이어 높이로 반올림됩니다." msgctxt "support_top_distance description" msgid "Distance from the top of the support to the print." @@ -750,7 +750,7 @@ msgstr "서포트 상단에서 프린팅까지의 거리." msgctxt "support_z_distance description" msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." -msgstr "" +msgstr "서포트 구조물의 상단/하단에서 프린트까지의 거리입니다. 이 공간은 모델이 인쇄된 후 서포트를 제거할 수 있도록 여유를 제공합니다. 모델 아래 최상위 서포트 레이어는 정규 레이어의 일부일 수 있습니다." msgctxt "infill_wipe_dist description" msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." @@ -2514,19 +2514,19 @@ msgstr "프라임 타워 가속" msgctxt "prime_tower_brim_enable label" msgid "Prime Tower Base" -msgstr "" +msgstr "프라임 타워 베이스" msgctxt "prime_tower_base_curve_magnitude label" msgid "Prime Tower Base Curve Magnitude" -msgstr "" +msgstr "프라임 타워 베이스 커브 크기" msgctxt "prime_tower_base_height label" msgid "Prime Tower Base Height" -msgstr "" +msgstr "프라임 타워 베이스 높이" msgctxt "prime_tower_base_size label" msgid "Prime Tower Base Size" -msgstr "" +msgstr "프라임 타워 베이스 크기" msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" @@ -2546,7 +2546,7 @@ msgstr "프라임 타워 최소 볼륨" msgctxt "prime_tower_raft_base_line_spacing label" msgid "Prime Tower Raft Line Spacing" -msgstr "" +msgstr "프라임 타워 래프트 선 간격" msgctxt "prime_tower_size label" msgid "Prime Tower Size" @@ -2566,7 +2566,7 @@ msgstr "프라임 타워 Y 위치" msgctxt "prime_tower_brim_enable description" msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -msgstr "" +msgstr "모델이 필요하지 않더라도 프라임 타워는 브림이나 래프트에 의한 추가 접착이 필요할 수 있습니다." msgctxt "acceleration_print label" msgid "Print Acceleration" @@ -3786,7 +3786,7 @@ msgstr "상단 래프트 레이어에 대한 래프트 사이의 거리. 간격 msgctxt "prime_tower_raft_base_line_spacing description" msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "" +msgstr "독특한 프라임 타워 래프트 레이어를 위한 래프트 라인 간 거리입니다. 간격이 넓을수록 빌드 플레이트에서 래프트를 쉽게 제거할 수 있습니다." msgctxt "interlocking_depth description" msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." @@ -3986,7 +3986,7 @@ msgstr "첫번째 레이어의 높이 (mm)입니다. 첫번째 레이어를 두 msgctxt "prime_tower_base_height description" msgid "The height of the prime tower base." -msgstr "" +msgstr "프라임 타워 베이스의 높이입니다." msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." @@ -4062,7 +4062,7 @@ msgstr "리트렉션 이동 중에 수축 된 재료의 길이입니다." msgctxt "prime_tower_base_curve_magnitude description" msgid "The magnitude factor used for the curve of the prime tower foot." -msgstr "" +msgstr "프라임 타워 발의 곡선을 위한 크기 계수입니다." msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." @@ -4618,7 +4618,7 @@ msgstr "프린팅 종료 직전에 냉각이 시작될 온도입니다." msgctxt "material_print_temperature_layer_0 description" msgid "The temperature used for printing the first layer." -msgstr "" +msgstr "첫 레이어 인쇄에 사용되는 온도입니다." msgctxt "material_print_temperature description" msgid "The temperature used for printing." @@ -4698,7 +4698,7 @@ msgstr "연동 구조 빔의 너비입니다." msgctxt "prime_tower_base_size description" msgid "The width of the prime tower base." -msgstr "" +msgstr "프라임 타워 베이스의 폭입니다." msgctxt "prime_tower_size description" msgid "The width of the prime tower." diff --git a/resources/i18n/nl_NL/cura.po b/resources/i18n/nl_NL/cura.po index 90b544fff72..f831c7989f9 100644 --- a/resources/i18n/nl_NL/cura.po +++ b/resources/i18n/nl_NL/cura.po @@ -559,7 +559,7 @@ msgstr "Rangschik alle modellen in een raster" msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" -msgstr "" +msgstr "Selectie rangschikken" msgctxt "@label:button" msgid "Ask a question" @@ -1015,7 +1015,7 @@ msgstr "Antwoord van de server is niet duidelijk." msgctxt "@error:load" msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." -msgstr "" +msgstr "Kon GCodeWriter-plugin niet laden. Probeer de plugin opnieuw in te schakelen." msgctxt "@info:error" msgid "Could not reach Marketplace." @@ -2352,19 +2352,19 @@ msgstr "Zorg ervoor dat de G-code geschikt is voor uw printer en de printerconfi msgctxt "@item:inlistbox" msgid "Makerbot Printfile" -msgstr "" +msgstr "Makerbot Printbestand" msgctxt "name" msgid "Makerbot Printfile Writer" -msgstr "" +msgstr "Makerbot Printbestandschrijver" msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." -msgstr "" +msgstr "MakerbotWriter kon niet opslaan op het aangegeven pad." msgctxt "@error:not supported" msgid "MakerbotWriter does not support text mode." -msgstr "" +msgstr "MakerbotWriter ondersteunt geen tekstmodus." msgctxt "@action:inmenu" msgid "Manage Materials..." @@ -3016,7 +3016,7 @@ msgstr "Geef een naam op voor dit profiel." msgctxt "@info" msgid "Please provide a new name." -msgstr "" +msgstr "Gelieve een nieuwe naam op te geven." msgctxt "@text" msgid "Please read and agree with the plugin licence." @@ -3453,7 +3453,7 @@ msgstr "Biedt ondersteuning voor het schrijven van 3MF-bestanden." msgctxt "description" msgid "Provides support for writing MakerBot Format Packages." -msgstr "" +msgstr "Biedt ondersteuning voor het schrijven van MakerBot-formaatpakketten." msgctxt "description" msgid "Provides support for writing Ultimaker Format Packages." @@ -3590,7 +3590,7 @@ msgstr "Hernoemen" msgctxt "@title:window" msgid "Rename" -msgstr "" +msgstr "Naam wijzigen" msgctxt "@title:window" msgid "Rename Profile" diff --git a/resources/i18n/nl_NL/fdmprinter.def.json.po b/resources/i18n/nl_NL/fdmprinter.def.json.po index ff7d8d84a98..ed80c09d299 100644 --- a/resources/i18n/nl_NL/fdmprinter.def.json.po +++ b/resources/i18n/nl_NL/fdmprinter.def.json.po @@ -742,7 +742,7 @@ msgstr "De afstand tussen de geprinte lijnen van de supportstructuur. Deze inste msgctxt "support_bottom_distance description" msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." -msgstr "" +msgstr "Afstand van de print tot de onderkant van de ondersteuning. Let op dat dit wordt afgerond naar de volgende laaghoogte." msgctxt "support_top_distance description" msgid "Distance from the top of the support to the print." @@ -750,7 +750,7 @@ msgstr "De afstand van de bovenkant van de supportstructuur tot de print." msgctxt "support_z_distance description" msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." -msgstr "" +msgstr "Afstand van de boven-/onderkant van de ondersteuningsstructuur tot de print. Deze opening zorgt voor ruimte om de ondersteuningen te verwijderen nadat het model is geprint. De bovenste ondersteuningslaag onder het model kan een fractie zijn van de normale lagen." msgctxt "infill_wipe_dist description" msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." @@ -1938,7 +1938,7 @@ msgstr "Marlin (Volumetrisch)" msgctxt "material description" msgid "Material" -msgstr "" +msgstr "Materiaal" msgctxt "material label" msgid "Material" @@ -2514,19 +2514,19 @@ msgstr "Acceleratie Primepijler" msgctxt "prime_tower_brim_enable label" msgid "Prime Tower Base" -msgstr "" +msgstr "Basis van de Prime Tower" msgctxt "prime_tower_base_curve_magnitude label" msgid "Prime Tower Base Curve Magnitude" -msgstr "" +msgstr "Krachtmagnitude van de basiscurve van de Prime Tower" msgctxt "prime_tower_base_height label" msgid "Prime Tower Base Height" -msgstr "" +msgstr "Hoogte van de basis van de Prime Tower" msgctxt "prime_tower_base_size label" msgid "Prime Tower Base Size" -msgstr "" +msgstr "Grootte van de basis van de Prime Tower" msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" @@ -2546,7 +2546,7 @@ msgstr "Minimumvolume primepijler" msgctxt "prime_tower_raft_base_line_spacing label" msgid "Prime Tower Raft Line Spacing" -msgstr "" +msgstr "Lijnafstand van het vlot van de Prime Tower" msgctxt "prime_tower_size label" msgid "Prime Tower Size" @@ -2566,7 +2566,7 @@ msgstr "Y-positie Primepijler" msgctxt "prime_tower_brim_enable description" msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -msgstr "" +msgstr "Prime-towers hebben mogelijk de extra hechting nodig die een rand of vlot biedt, zelfs als het model dat niet doet." msgctxt "acceleration_print label" msgid "Print Acceleration" @@ -3786,7 +3786,7 @@ msgstr "De afstand tussen de raftlijnen voor de bovenste lagen van de raft. Als msgctxt "prime_tower_raft_base_line_spacing description" msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "" +msgstr "De afstand tussen de vlotlijnen voor de unieke vlotlaag van de Prime Tower. Een brede afstand maakt het eenvoudig om het vlot van de bouwplaat te verwijderen." msgctxt "interlocking_depth description" msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." @@ -3986,7 +3986,7 @@ msgstr "De hoogte van de eerste laag in mm. Met een dikkere eerste laag hecht he msgctxt "prime_tower_base_height description" msgid "The height of the prime tower base." -msgstr "" +msgstr "De hoogte van de basis van de Prime Tower." msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." @@ -4062,7 +4062,7 @@ msgstr "De lengte waarover het materiaal wordt ingetrokken tijdens een intrekbew msgctxt "prime_tower_base_curve_magnitude description" msgid "The magnitude factor used for the curve of the prime tower foot." -msgstr "" +msgstr "De groottefactor die gebruikt wordt voor de curve van de voet van de Prime Tower." msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." @@ -4618,7 +4618,7 @@ msgstr "De temperatuur waarnaar alvast kan worden afgekoeld net voordat het prin msgctxt "material_print_temperature_layer_0 description" msgid "The temperature used for printing the first layer." -msgstr "" +msgstr "De temperatuur die gebruikt wordt voor het printen van de eerste laag." msgctxt "material_print_temperature description" msgid "The temperature used for printing." @@ -4698,7 +4698,7 @@ msgstr "De breedte van de in elkaar grijpende structuurbalken." msgctxt "prime_tower_base_size description" msgid "The width of the prime tower base." -msgstr "" +msgstr "De breedte van de basis van de Prime Tower." msgctxt "prime_tower_size description" msgid "The width of the prime tower." diff --git a/resources/i18n/pt_PT/cura.po b/resources/i18n/pt_PT/cura.po index c6e09d05e9c..48ea1e7c2ca 100644 --- a/resources/i18n/pt_PT/cura.po +++ b/resources/i18n/pt_PT/cura.po @@ -559,7 +559,7 @@ msgstr "Organizar todos os modelos numa grelha" msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" -msgstr "" +msgstr "Organizar Seleção" msgctxt "@label:button" msgid "Ask a question" @@ -1018,7 +1018,7 @@ msgstr "Não foi possível interpretar a resposta do servidor." msgctxt "@error:load" msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." -msgstr "" +msgstr "Não foi possível carregar o plugin GCodeWriter. Tente reativar o plugin." msgctxt "@info:error" msgid "Could not reach Marketplace." @@ -2359,19 +2359,19 @@ msgstr "Certifique-se de que este g-code é apropriado para a sua impressora e r msgctxt "@item:inlistbox" msgid "Makerbot Printfile" -msgstr "" +msgstr "Arquivo de Impressão Makerbot" msgctxt "name" msgid "Makerbot Printfile Writer" -msgstr "" +msgstr "Escritor de Arquivo de Impressão Makerbot" msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." -msgstr "" +msgstr "MakerbotWriter não pôde salvar no caminho designado." msgctxt "@error:not supported" msgid "MakerbotWriter does not support text mode." -msgstr "" +msgstr "MakerbotWriter não suporta o modo texto." msgctxt "@action:inmenu" msgid "Manage Materials..." @@ -3023,7 +3023,7 @@ msgstr "Forneça um nome para este perfil." msgctxt "@info" msgid "Please provide a new name." -msgstr "" +msgstr "Por favor, forneça um novo nome." msgctxt "@text" msgid "Please read and agree with the plugin licence." @@ -3460,7 +3460,7 @@ msgstr "Possiblita a gravação de ficheiros 3MF." msgctxt "description" msgid "Provides support for writing MakerBot Format Packages." -msgstr "" +msgstr "Fornece suporte para escrever Pacotes de Formato MakerBot." msgctxt "description" msgid "Provides support for writing Ultimaker Format Packages." @@ -3597,7 +3597,7 @@ msgstr "Mudar Nome" msgctxt "@title:window" msgid "Rename" -msgstr "" +msgstr "Renomear" msgctxt "@title:window" msgid "Rename Profile" diff --git a/resources/i18n/pt_PT/fdmprinter.def.json.po b/resources/i18n/pt_PT/fdmprinter.def.json.po index 6ab3ea25da8..9dd30266fd4 100644 --- a/resources/i18n/pt_PT/fdmprinter.def.json.po +++ b/resources/i18n/pt_PT/fdmprinter.def.json.po @@ -742,7 +742,7 @@ msgstr "A distância entre as linhas da estrutura de suporte impressas. Esta def msgctxt "support_bottom_distance description" msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." -msgstr "" +msgstr "Distância da impressão até a base do suporte. Note que isso é arredondado para a próxima altura de camada." msgctxt "support_top_distance description" msgid "Distance from the top of the support to the print." @@ -750,7 +750,7 @@ msgstr "A distância entre a parte superior do suporte e a impressão." msgctxt "support_z_distance description" msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." -msgstr "" +msgstr "Distância do topo/base da estrutura de suporte até a impressão. Este espaço permite a remoção dos suportes após a impressão do modelo. A camada de suporte mais alta abaixo do modelo pode ser uma fração das camadas regulares." msgctxt "infill_wipe_dist description" msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." @@ -2514,19 +2514,19 @@ msgstr "Aceleração da torre de preparação" msgctxt "prime_tower_brim_enable label" msgid "Prime Tower Base" -msgstr "" +msgstr "Base da Torre de Primagem" msgctxt "prime_tower_base_curve_magnitude label" msgid "Prime Tower Base Curve Magnitude" -msgstr "" +msgstr "Magnitude da Curva da Base da Torre de Primagem" msgctxt "prime_tower_base_height label" msgid "Prime Tower Base Height" -msgstr "" +msgstr "Altura da Base da Torre de Primagem" msgctxt "prime_tower_base_size label" msgid "Prime Tower Base Size" -msgstr "" +msgstr "Tamanho da Base da Torre de Primagem" msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" @@ -2546,7 +2546,7 @@ msgstr "Volume mínimo da torre de preparação" msgctxt "prime_tower_raft_base_line_spacing label" msgid "Prime Tower Raft Line Spacing" -msgstr "" +msgstr "Espaçamento das Linhas da Jangada da Torre de Primagem" msgctxt "prime_tower_size label" msgid "Prime Tower Size" @@ -2566,7 +2566,7 @@ msgstr "Posição Y da torre de preparação" msgctxt "prime_tower_brim_enable description" msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -msgstr "" +msgstr "As torres de primagem podem precisar da aderência extra fornecida por uma aba ou jangada, mesmo que o modelo não necessite." msgctxt "acceleration_print label" msgid "Print Acceleration" @@ -3786,7 +3786,7 @@ msgstr "A distância entre linhas nas camadas superiores do raft. O espaçamento msgctxt "prime_tower_raft_base_line_spacing description" msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "" +msgstr "A distância entre as linhas da jangada para a única camada da jangada da torre de primagem. Um espaçamento largo facilita a remoção da jangada da placa de construção." msgctxt "interlocking_depth description" msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." @@ -3986,7 +3986,7 @@ msgstr "A espessura da camada inicial em milímetros. Uma camada inicial mais es msgctxt "prime_tower_base_height description" msgid "The height of the prime tower base." -msgstr "" +msgstr "A altura da base da torre de primagem." msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." @@ -4062,7 +4062,7 @@ msgstr "O comprimento do material retraído durante um movimento de retração." msgctxt "prime_tower_base_curve_magnitude description" msgid "The magnitude factor used for the curve of the prime tower foot." -msgstr "" +msgstr "O fator de magnitude usado para a curva do pé da torre de primagem." msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." @@ -4618,7 +4618,7 @@ msgstr "A temperatura à qual o arrefecimento é iniciado imediatamente antes do msgctxt "material_print_temperature_layer_0 description" msgid "The temperature used for printing the first layer." -msgstr "" +msgstr "A temperatura usada para imprimir a primeira camada." msgctxt "material_print_temperature description" msgid "The temperature used for printing." @@ -4698,7 +4698,7 @@ msgstr "A largura das vigas da estrutura de interligação." msgctxt "prime_tower_base_size description" msgid "The width of the prime tower base." -msgstr "" +msgstr "A largura da base da torre de primagem." msgctxt "prime_tower_size description" msgid "The width of the prime tower." diff --git a/resources/i18n/ru_RU/cura.po b/resources/i18n/ru_RU/cura.po index 54fd471b4a3..6494d6b5d2a 100644 --- a/resources/i18n/ru_RU/cura.po +++ b/resources/i18n/ru_RU/cura.po @@ -565,7 +565,7 @@ msgstr "Расположить все модели в сетке" msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" -msgstr "" +msgstr "Расположить выбранное" msgctxt "@label:button" msgid "Ask a question" @@ -1021,7 +1021,7 @@ msgstr "Не удалось интерпретировать ответ серв msgctxt "@error:load" msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." -msgstr "" +msgstr "Не удалось загрузить плагин GCodeWriter. Попробуйте повторно активировать плагин." msgctxt "@info:error" msgid "Could not reach Marketplace." @@ -2362,19 +2362,19 @@ msgstr "Перед отправкой G-code на принтер удостов msgctxt "@item:inlistbox" msgid "Makerbot Printfile" -msgstr "" +msgstr "Файл печати Makerbot" msgctxt "name" msgid "Makerbot Printfile Writer" -msgstr "" +msgstr "Модуль записи файлов печати Makerbot" msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." -msgstr "" +msgstr "MakerbotWriter не может сохранить файл в указанное место." msgctxt "@error:not supported" msgid "MakerbotWriter does not support text mode." -msgstr "" +msgstr "MakerbotWriter не поддерживает текстовый режим." msgctxt "@action:inmenu" msgid "Manage Materials..." @@ -3032,7 +3032,7 @@ msgstr "Укажите имя для данного профиля." msgctxt "@info" msgid "Please provide a new name." -msgstr "" +msgstr "Пожалуйста, укажите новое имя." msgctxt "@text" msgid "Please read and agree with the plugin licence." @@ -3473,7 +3473,7 @@ msgstr "Предоставляет возможность записи 3MF фа msgctxt "description" msgid "Provides support for writing MakerBot Format Packages." -msgstr "" +msgstr "Обеспечивает поддержку записи пакетов формата MakerBot." msgctxt "description" msgid "Provides support for writing Ultimaker Format Packages." @@ -3610,7 +3610,7 @@ msgstr "Переименовать" msgctxt "@title:window" msgid "Rename" -msgstr "" +msgstr "Переименовать" msgctxt "@title:window" msgid "Rename Profile" diff --git a/resources/i18n/ru_RU/fdmprinter.def.json.po b/resources/i18n/ru_RU/fdmprinter.def.json.po index b471a35698b..096feefc6ca 100644 --- a/resources/i18n/ru_RU/fdmprinter.def.json.po +++ b/resources/i18n/ru_RU/fdmprinter.def.json.po @@ -742,7 +742,7 @@ msgstr "Дистанция между напечатанными линями с msgctxt "support_bottom_distance description" msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." -msgstr "" +msgstr "Расстояние от печатаемого объекта до нижней части поддержки. Обратите внимание, что это значение округляется в большую сторону до высоты следующего слоя." msgctxt "support_top_distance description" msgid "Distance from the top of the support to the print." @@ -750,7 +750,7 @@ msgstr "Расстояние между верхом поддержек и пе msgctxt "support_z_distance description" msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." -msgstr "" +msgstr "Расстояние от верха/низа поддерживающей конструкции до печатаемого объекта. Этот зазор обеспечивает возможность удаления поддержек после печати модели. Верхний слой поддержки под моделью может быть долей обычного слоя." msgctxt "infill_wipe_dist description" msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." @@ -2514,19 +2514,19 @@ msgstr "Ускорение черновой башни" msgctxt "prime_tower_brim_enable label" msgid "Prime Tower Base" -msgstr "" +msgstr "Основание башни подготовки" msgctxt "prime_tower_base_curve_magnitude label" msgid "Prime Tower Base Curve Magnitude" -msgstr "" +msgstr "Коэффициент кривизны основания башни подготовки" msgctxt "prime_tower_base_height label" msgid "Prime Tower Base Height" -msgstr "" +msgstr "Высота основания башни подготовки" msgctxt "prime_tower_base_size label" msgid "Prime Tower Base Size" -msgstr "" +msgstr "Размер основания башни подготовки" msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" @@ -2546,7 +2546,7 @@ msgstr "Минимальный объём черновой башни" msgctxt "prime_tower_raft_base_line_spacing label" msgid "Prime Tower Raft Line Spacing" -msgstr "" +msgstr "Шаг линий рафта башни подготовки" msgctxt "prime_tower_size label" msgid "Prime Tower Size" @@ -2566,7 +2566,7 @@ msgstr "Y позиция черновой башни" msgctxt "prime_tower_brim_enable description" msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -msgstr "" +msgstr "Башни подготовки могут требовать дополнительной адгезии с помощью бортика или рафта, даже если модель это не требует." msgctxt "acceleration_print label" msgid "Print Acceleration" @@ -3786,7 +3786,7 @@ msgstr "Расстояние между линиями подложки на е msgctxt "prime_tower_raft_base_line_spacing description" msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "" +msgstr "Расстояние между линиями рафта уникального слоя рафта башни подготовки. Большой шаг облегчает удаление рафта с платформы для печати." msgctxt "interlocking_depth description" msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." @@ -3986,7 +3986,7 @@ msgstr "Высота первого слоя в миллиметрах. Боле msgctxt "prime_tower_base_height description" msgid "The height of the prime tower base." -msgstr "" +msgstr "Высота основания башни подготовки." msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." @@ -4062,7 +4062,7 @@ msgstr "Длина нити материала, которая будет изв msgctxt "prime_tower_base_curve_magnitude description" msgid "The magnitude factor used for the curve of the prime tower foot." -msgstr "" +msgstr "Множитель для кривизны подножия башни подготовки." msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." @@ -4618,7 +4618,7 @@ msgstr "Температура, до которой можно начать ох msgctxt "material_print_temperature_layer_0 description" msgid "The temperature used for printing the first layer." -msgstr "" +msgstr "Температура, используемая для печати первого слоя." msgctxt "material_print_temperature description" msgid "The temperature used for printing." @@ -4698,7 +4698,7 @@ msgstr "Ширина балок взаимосвязанной конструк msgctxt "prime_tower_base_size description" msgid "The width of the prime tower base." -msgstr "" +msgstr "Ширина основания башни подготовки." msgctxt "prime_tower_size description" msgid "The width of the prime tower." diff --git a/resources/i18n/tr_TR/cura.po b/resources/i18n/tr_TR/cura.po index 0126ba45553..d98ff91e72e 100644 --- a/resources/i18n/tr_TR/cura.po +++ b/resources/i18n/tr_TR/cura.po @@ -559,7 +559,7 @@ msgstr "Tüm Modelleri bir ızgarada düzenleyin" msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" -msgstr "" +msgstr "Düzenleme Seçimi" msgctxt "@label:button" msgid "Ask a question" @@ -1015,7 +1015,7 @@ msgstr "Sunucunun yanıtı yorumlanamadı." msgctxt "@error:load" msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." -msgstr "" +msgstr "GCodeWriter eklentisi yüklenemedi. Eklentiyi yeniden etkinleştirmeyi deneyin." msgctxt "@info:error" msgid "Could not reach Marketplace." @@ -2356,19 +2356,19 @@ msgstr "Dosya göndermeden önce g-code’un yazıcınız ve yazıcı yapıland msgctxt "@item:inlistbox" msgid "Makerbot Printfile" -msgstr "" +msgstr "Makerbot Baskı Dosyası" msgctxt "name" msgid "Makerbot Printfile Writer" -msgstr "" +msgstr "Makerbot Baskı Dosyası Yazarı" msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." -msgstr "" +msgstr "MakerbotWriter belirlenen yola kaydedemedi." msgctxt "@error:not supported" msgid "MakerbotWriter does not support text mode." -msgstr "" +msgstr "MakerbotWriter metin modunu desteklemiyor." msgctxt "@action:inmenu" msgid "Manage Materials..." @@ -3020,7 +3020,7 @@ msgstr "Bu profil için lütfen bir ad girin." msgctxt "@info" msgid "Please provide a new name." -msgstr "" +msgstr "Lütfen yeni bir isim belirtin." msgctxt "@text" msgid "Please read and agree with the plugin licence." @@ -3457,7 +3457,7 @@ msgstr "3MF dosyalarının yazılması için destek sağlar." msgctxt "description" msgid "Provides support for writing MakerBot Format Packages." -msgstr "" +msgstr "MakerBot Format Paketleri yazmayı destekler." msgctxt "description" msgid "Provides support for writing Ultimaker Format Packages." @@ -3594,7 +3594,7 @@ msgstr "Yeniden adlandır" msgctxt "@title:window" msgid "Rename" -msgstr "" +msgstr "Yeniden Adlandır" msgctxt "@title:window" msgid "Rename Profile" diff --git a/resources/i18n/tr_TR/fdmprinter.def.json.po b/resources/i18n/tr_TR/fdmprinter.def.json.po index 586fe3b3db6..972ad389f91 100644 --- a/resources/i18n/tr_TR/fdmprinter.def.json.po +++ b/resources/i18n/tr_TR/fdmprinter.def.json.po @@ -742,7 +742,7 @@ msgstr "Yazdırılan destek yapısı hatları arasındaki mesafe. Bu ayar, deste msgctxt "support_bottom_distance description" msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." -msgstr "" +msgstr "Baskıdan desteğin altına kadar olan mesafe. Bunun bir sonraki katman yüksekliğine yuvarlandığını unutmayın." msgctxt "support_top_distance description" msgid "Distance from the top of the support to the print." @@ -750,7 +750,7 @@ msgstr "Yazdırılıcak desteğin üstüne olan mesafe." msgctxt "support_z_distance description" msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." -msgstr "" +msgstr "Desteğin üstü/altı ile baskı arasındaki mesafe. Bu boşluk, model basıldıktan sonra desteklerin kolayca çıkarılabilmesini sağlar. Modelin altındaki en üst destek katmanı, düzenli katmanların bir kısmı olabilir." msgctxt "infill_wipe_dist description" msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." @@ -2514,19 +2514,19 @@ msgstr "İlk Direk İvmesi" msgctxt "prime_tower_brim_enable label" msgid "Prime Tower Base" -msgstr "" +msgstr "Başlangıç Kulesi Tabanı" msgctxt "prime_tower_base_curve_magnitude label" msgid "Prime Tower Base Curve Magnitude" -msgstr "" +msgstr "Başlangıç Kulesi Taban Eğim Büyüklüğü" msgctxt "prime_tower_base_height label" msgid "Prime Tower Base Height" -msgstr "" +msgstr "Başlangıç Kulesi Taban Yüksekliği" msgctxt "prime_tower_base_size label" msgid "Prime Tower Base Size" -msgstr "" +msgstr "Başlangıç Kulesi Taban Boyutu" msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" @@ -2546,7 +2546,7 @@ msgstr "İlk Direğin Minimum Hacmi" msgctxt "prime_tower_raft_base_line_spacing label" msgid "Prime Tower Raft Line Spacing" -msgstr "" +msgstr "Başlangıç Kulesi Salı İzi Aralığı" msgctxt "prime_tower_size label" msgid "Prime Tower Size" @@ -2566,7 +2566,7 @@ msgstr "İlk Direk Y Konumu" msgctxt "prime_tower_brim_enable description" msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -msgstr "" +msgstr "Baskı modeli gerektirmese bile, başlangıç kuleleri modelin ekstra yapışmasını sağlamak için bir kenarlık veya sal gerektirebilir." msgctxt "acceleration_print label" msgid "Print Acceleration" @@ -3786,7 +3786,7 @@ msgstr "Üst radye katmanları için radye hatları arasındaki mesafe. Yüzeyin msgctxt "prime_tower_raft_base_line_spacing description" msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "" +msgstr "Tek başlangıç kulesi sal katmanı için sal izleri arasındaki mesafe. Geniş aralıklar, salın yapıştırma tablasından kolay çıkarılmasını sağlar." msgctxt "interlocking_depth description" msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." @@ -3986,7 +3986,7 @@ msgstr "İlk katmanın milimetre cinsinden yüksekliği. Kalın ilk katmanlar ya msgctxt "prime_tower_base_height description" msgid "The height of the prime tower base." -msgstr "" +msgstr "Başlangıç kulesi tabanının yüksekliği." msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." @@ -4062,7 +4062,7 @@ msgstr "Geri çekme hareketi sırasında geri çekilen malzemenin uzunluğu." msgctxt "prime_tower_base_curve_magnitude description" msgid "The magnitude factor used for the curve of the prime tower foot." -msgstr "" +msgstr "Başlangıç kulesi ayağının eğrisi için kullanılan büyüklük faktörü." msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." @@ -4618,7 +4618,7 @@ msgstr "Yazdırma bitmeden hemen önce soğuma işleminin başladığı sıcakl msgctxt "material_print_temperature_layer_0 description" msgid "The temperature used for printing the first layer." -msgstr "" +msgstr "İlk katmanın basımında kullanılan sıcaklık." msgctxt "material_print_temperature description" msgid "The temperature used for printing." @@ -4698,7 +4698,7 @@ msgstr "İç içe geçen yapı kirişlerinin genişliği." msgctxt "prime_tower_base_size description" msgid "The width of the prime tower base." -msgstr "" +msgstr "Başlangıç kulesi tabanının genişliği." msgctxt "prime_tower_size description" msgid "The width of the prime tower." diff --git a/resources/i18n/zh_CN/cura.po b/resources/i18n/zh_CN/cura.po index ee4a7db83bc..34b4f1d4dc1 100644 --- a/resources/i18n/zh_CN/cura.po +++ b/resources/i18n/zh_CN/cura.po @@ -556,7 +556,7 @@ msgstr "排列网格中的所有模型" msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" -msgstr "" +msgstr "排列选择" msgctxt "@label:button" msgid "Ask a question" @@ -1012,7 +1012,7 @@ msgstr "无法解释服务器的响应。" msgctxt "@error:load" msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." -msgstr "" +msgstr "无法加载 GCodeWriter 插件。尝试重新启用插件。" msgctxt "@info:error" msgid "Could not reach Marketplace." @@ -2353,19 +2353,19 @@ msgstr "发送文件之前,请确保 G-code 适用于当前打印机和打印 msgctxt "@item:inlistbox" msgid "Makerbot Printfile" -msgstr "" +msgstr "Makerbot 打印文件" msgctxt "name" msgid "Makerbot Printfile Writer" -msgstr "" +msgstr "Makerbot 打印文件编写器" msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." -msgstr "" +msgstr "MakerbotWriter 无法保存至指定路径。" msgctxt "@error:not supported" msgid "MakerbotWriter does not support text mode." -msgstr "" +msgstr "MakerbotWriter 不支持文本模式。" msgctxt "@action:inmenu" msgid "Manage Materials..." @@ -3014,7 +3014,7 @@ msgstr "请为此配置文件提供名称。" msgctxt "@info" msgid "Please provide a new name." -msgstr "" +msgstr "请提供一个新名称。" msgctxt "@text" msgid "Please read and agree with the plugin licence." @@ -3449,7 +3449,7 @@ msgstr "提供对写入 3MF 文件的支持。" msgctxt "description" msgid "Provides support for writing MakerBot Format Packages." -msgstr "" +msgstr "提供对写入 MakerBot 格式包的支持。" msgctxt "description" msgid "Provides support for writing Ultimaker Format Packages." @@ -3586,7 +3586,7 @@ msgstr "重命名" msgctxt "@title:window" msgid "Rename" -msgstr "" +msgstr "重命名" msgctxt "@title:window" msgid "Rename Profile" diff --git a/resources/i18n/zh_CN/fdmprinter.def.json.po b/resources/i18n/zh_CN/fdmprinter.def.json.po index 7d2c837e5c8..982de466641 100644 --- a/resources/i18n/zh_CN/fdmprinter.def.json.po +++ b/resources/i18n/zh_CN/fdmprinter.def.json.po @@ -742,7 +742,7 @@ msgstr "已打印支撑结构走线之间的距离。 该设置通过支撑密 msgctxt "support_bottom_distance description" msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." -msgstr "" +msgstr "从打印物到支撑底部的距离。注意这个会上调到下一个层高。" msgctxt "support_top_distance description" msgid "Distance from the top of the support to the print." @@ -750,7 +750,7 @@ msgstr "从支撑顶部到打印品的距离。" msgctxt "support_z_distance description" msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." -msgstr "" +msgstr "支撑结构顶部/底部到打印物的距离。这个间隙提供了清除模型打印后支撑的空间。模型下方的最顶层支撑层可能是常规层的一小部分。" msgctxt "infill_wipe_dist description" msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." @@ -2514,19 +2514,19 @@ msgstr "装填塔加速度" msgctxt "prime_tower_brim_enable label" msgid "Prime Tower Base" -msgstr "" +msgstr "底漆塔座" msgctxt "prime_tower_base_curve_magnitude label" msgid "Prime Tower Base Curve Magnitude" -msgstr "" +msgstr "底漆塔座曲率大小" msgctxt "prime_tower_base_height label" msgid "Prime Tower Base Height" -msgstr "" +msgstr "底漆塔座高度" msgctxt "prime_tower_base_size label" msgid "Prime Tower Base Size" -msgstr "" +msgstr "底漆塔座尺寸" msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" @@ -2546,7 +2546,7 @@ msgstr "装填塔最小体积" msgctxt "prime_tower_raft_base_line_spacing label" msgid "Prime Tower Raft Line Spacing" -msgstr "" +msgstr "底漆塔筏线间距" msgctxt "prime_tower_size label" msgid "Prime Tower Size" @@ -2566,7 +2566,7 @@ msgstr "装填塔 Y 位置" msgctxt "prime_tower_brim_enable description" msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -msgstr "" +msgstr "即使模型不需要,底漆塔也可能需要边缘或筏的额外粘附力。" msgctxt "acceleration_print label" msgid "Print Acceleration" @@ -3786,7 +3786,7 @@ msgstr "顶部 Raft 层的 Raft 走线之间的距离。 间距应等于走线 msgctxt "prime_tower_raft_base_line_spacing description" msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "" +msgstr "底漆塔独有的筏层之间筏线的距离。宽间距可以轻松地将筏从打印板上移除。" msgctxt "interlocking_depth description" msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." @@ -3986,7 +3986,7 @@ msgstr "起始层高(以毫米为单位)。起始层越厚,与打印平台 msgctxt "prime_tower_base_height description" msgid "The height of the prime tower base." -msgstr "" +msgstr "底漆塔座的高度。" msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." @@ -4062,7 +4062,7 @@ msgstr "回抽移动期间回抽的材料长度。" msgctxt "prime_tower_base_curve_magnitude description" msgid "The magnitude factor used for the curve of the prime tower foot." -msgstr "" +msgstr "用于底漆塔脚曲线的幅度因子。" msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." @@ -4618,7 +4618,7 @@ msgstr "打印结束前开始冷却的温度。" msgctxt "material_print_temperature_layer_0 description" msgid "The temperature used for printing the first layer." -msgstr "" +msgstr "打印第一层时使用的温度。" msgctxt "material_print_temperature description" msgid "The temperature used for printing." @@ -4698,7 +4698,7 @@ msgstr "互锁结构梁的宽度。" msgctxt "prime_tower_base_size description" msgid "The width of the prime tower base." -msgstr "" +msgstr "底漆塔座的宽度。" msgctxt "prime_tower_size description" msgid "The width of the prime tower." From 6539841f3eea971339c70ad0ccb297ecd574fd98 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Thu, 9 Nov 2023 14:23:46 +0100 Subject: [PATCH 092/765] Fix possibly wrong disallowed area display CURA-11293 --- cura/BuildVolume.py | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/cura/BuildVolume.py b/cura/BuildVolume.py index 2bfa654d4fe..feb8bdc5bf3 100755 --- a/cura/BuildVolume.py +++ b/cura/BuildVolume.py @@ -489,20 +489,21 @@ def _buildDisallowedAreaMesh(self, min_w: float, max_w: float, min_h: float, max if not self._disallowed_areas: return None + bounding_box = Polygon(numpy.array([[min_w, min_d], [min_w, max_d], [max_w, max_d], [max_w, min_d]], numpy.float32)) + mb = MeshBuilder() color = self._disallowed_area_color for polygon in self._disallowed_areas: - points = polygon.getPoints() - if len(points) == 0: + intersection = polygon.intersectionConvexHulls(bounding_box) + + points = intersection.getPoints()[::-1] + if len(points) < 3: continue - first = Vector(self._clamp(points[0][0], min_w, max_w), disallowed_area_height, - self._clamp(points[0][1], min_d, max_d)) - previous_point = Vector(self._clamp(points[0][0], min_w, max_w), disallowed_area_height, - self._clamp(points[0][1], min_d, max_d)) - for point in points: - new_point = Vector(self._clamp(point[0], min_w, max_w), disallowed_area_height, - self._clamp(point[1], min_d, max_d)) + first = Vector(points[0][0], disallowed_area_height, points[0][1]) + previous_point = Vector(points[1][0], disallowed_area_height, points[1][1]) + for point in points[2:]: + new_point = Vector(point[0], disallowed_area_height, point[1]) mb.addFace(first, previous_point, new_point, color=color) previous_point = new_point From b8e8f2ac0e6ed00306b0e5f5cc6678085022e890 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Thu, 9 Nov 2023 16:19:35 +0100 Subject: [PATCH 093/765] Code readability improvement CURA-11293 --- cura/BuildVolume.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cura/BuildVolume.py b/cura/BuildVolume.py index feb8bdc5bf3..b52ba095fcd 100755 --- a/cura/BuildVolume.py +++ b/cura/BuildVolume.py @@ -495,8 +495,7 @@ def _buildDisallowedAreaMesh(self, min_w: float, max_w: float, min_h: float, max color = self._disallowed_area_color for polygon in self._disallowed_areas: intersection = polygon.intersectionConvexHulls(bounding_box) - - points = intersection.getPoints()[::-1] + points = numpy.fliplr(intersection.getPoints()) if len(points) < 3: continue From 4982680dfce39bb189c0a3a4b1c7bb41480123a0 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Thu, 9 Nov 2023 16:22:52 +0100 Subject: [PATCH 094/765] Use intersection instead of convex hull intersection CURA-11293 --- cura/BuildVolume.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/BuildVolume.py b/cura/BuildVolume.py index b52ba095fcd..7b10ba3ffc4 100755 --- a/cura/BuildVolume.py +++ b/cura/BuildVolume.py @@ -494,7 +494,7 @@ def _buildDisallowedAreaMesh(self, min_w: float, max_w: float, min_h: float, max mb = MeshBuilder() color = self._disallowed_area_color for polygon in self._disallowed_areas: - intersection = polygon.intersectionConvexHulls(bounding_box) + intersection = polygon.intersection(bounding_box) points = numpy.fliplr(intersection.getPoints()) if len(points) < 3: continue From 5f69c893093664e605145f67326f847b874b30c6 Mon Sep 17 00:00:00 2001 From: Frederic Meeuwissen <13856291+Frederic98@users.noreply.github.com> Date: Fri, 10 Nov 2023 14:24:44 +0100 Subject: [PATCH 095/765] Increase bridging flowrate on AA 0.8 at 0.2 layers --- .../quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg | 2 ++ .../quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg | 2 ++ .../ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg | 2 ++ .../quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg | 2 ++ .../quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg | 2 ++ .../ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg | 2 ++ 6 files changed, 12 insertions(+) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg index fb7c9e5592b..2051530eeeb 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg @@ -24,8 +24,10 @@ acceleration_topbottom = =acceleration_wall acceleration_wall = =acceleration_infill acceleration_wall_0 = 1500 acceleration_wall_x = =acceleration_wall +bridge_skin_material_flow = 200 bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = 200 bridge_wall_speed = 30 cool_min_layer_time = 4 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg index d1b4c11a74d..f51cd7df60d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg @@ -24,8 +24,10 @@ acceleration_topbottom = =acceleration_wall acceleration_wall = =acceleration_infill acceleration_wall_0 = 1500 acceleration_wall_x = =acceleration_wall +bridge_skin_material_flow = 200 bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = 200 bridge_wall_speed = 30 cool_min_layer_time = 6 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg index 44b1e765949..4064af789fb 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg @@ -24,8 +24,10 @@ acceleration_topbottom = =acceleration_wall acceleration_wall = =acceleration_infill acceleration_wall_0 = 1500 acceleration_wall_x = =acceleration_wall +bridge_skin_material_flow = 200 bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = 200 bridge_wall_speed = 30 cool_min_layer_time = 6 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg index 0a66306e49f..c6e30421301 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg @@ -24,8 +24,10 @@ acceleration_topbottom = =acceleration_wall acceleration_wall = =acceleration_infill acceleration_wall_0 = 1500 acceleration_wall_x = =acceleration_wall +bridge_skin_material_flow = 200 bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = 200 bridge_wall_speed = 30 cool_min_layer_time = 4 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg index bf1a55d5229..32cc67a02ba 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg @@ -24,8 +24,10 @@ acceleration_topbottom = =acceleration_wall acceleration_wall = =acceleration_infill acceleration_wall_0 = 1500 acceleration_wall_x = =acceleration_wall +bridge_skin_material_flow = 200 bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = 200 bridge_wall_speed = 30 cool_min_layer_time = 6 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg index 6551f4de75e..0ea97ff5317 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg @@ -24,8 +24,10 @@ acceleration_topbottom = =acceleration_wall acceleration_wall = =acceleration_infill acceleration_wall_0 = 1500 acceleration_wall_x = =acceleration_wall +bridge_skin_material_flow = 200 bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = 200 bridge_wall_speed = 30 cool_min_layer_time = 6 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' From 5504cc1b608521d721405b853602ee3bbce7168e Mon Sep 17 00:00:00 2001 From: Casper Lamboo Date: Fri, 10 Nov 2023 14:29:16 +0100 Subject: [PATCH 096/765] Add `enable_i18n` install option to packaging This should fix translations --- .github/workflows/conan-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/conan-package.yml b/.github/workflows/conan-package.yml index 34652de39b3..4b5c0f914ab 100644 --- a/.github/workflows/conan-package.yml +++ b/.github/workflows/conan-package.yml @@ -119,7 +119,7 @@ jobs: conan config install https://github.com/Ultimaker/conan-config.git -a "-b runner/${{ runner.os }}/${{ runner.arch }}" - name: Create the Packages - run: conan create . ${{ needs.conan-recipe-version.outputs.recipe_id_full }} --build=missing --update -o ${{ needs.conan-recipe-version.outputs.project_name }}:devtools=True -c tools.build:skip_test=True + run: conan create . ${{ needs.conan-recipe-version.outputs.recipe_id_full }} --build=missing --update -o ${{ needs.conan-recipe-version.outputs.project_name }}:devtools=True -o ${{ needs.conan-recipe-version.outputs.project_name }}:enable_i18n=True -c tools.build:skip_test=True - name: Create the latest alias if: always() From 61b33691e5da61ce706997cf87918477db8b7684 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 10 Nov 2023 15:21:18 +0100 Subject: [PATCH 097/765] Fix nozzle selection checkmark CURA-11299 --- cura/Settings/MachineManager.py | 6 ++++++ resources/qml/Menus/NozzleMenu.qml | 20 ++++++-------------- 2 files changed, 12 insertions(+), 14 deletions(-) diff --git a/cura/Settings/MachineManager.py b/cura/Settings/MachineManager.py index 11b55e8507e..1503fb5f391 100755 --- a/cura/Settings/MachineManager.py +++ b/cura/Settings/MachineManager.py @@ -48,6 +48,8 @@ catalog = i18nCatalog("cura") from cura.Settings.GlobalStack import GlobalStack if TYPE_CHECKING: + from PyQt6.QtCore import QVariantList + from cura.CuraApplication import CuraApplication from cura.Machines.MaterialNode import MaterialNode from cura.Machines.QualityChangesGroup import QualityChangesGroup @@ -581,6 +583,10 @@ def activeMachineNetworkGroupName(self) -> str: def activeMachine(self) -> Optional["GlobalStack"]: return self._global_container_stack + @pyqtProperty("QVariantList", notify=activeVariantChanged) + def activeMachineExtruders(self) -> Optional["QVariantList"]: + return self._global_container_stack.extruderList if self._global_container_stack else None + @pyqtProperty(str, notify = activeStackChanged) def activeStackId(self) -> str: if self._active_container_stack: diff --git a/resources/qml/Menus/NozzleMenu.qml b/resources/qml/Menus/NozzleMenu.qml index f286410a112..a91f32a1908 100644 --- a/resources/qml/Menus/NozzleMenu.qml +++ b/resources/qml/Menus/NozzleMenu.qml @@ -27,24 +27,17 @@ Cura.Menu { text: model.hotend_name checkable: true - property var activeMachine: Cura.MachineManager.activeMachine checked: { - if (activeMachine === null) - { - return false - } - var extruder = activeMachine.extruderList[extruderIndex] - return (extruder === undefined) ? false : (extruder.variant.name == model.hotend_name) + const extruder = Cura.MachineManager.activeMachineExtruders[extruderIndex]; + if (!extruder) return false; + return extruder.variant.name == model.hotend_name; } enabled: { - if (activeMachine === null) - { - return false - } - var extruder = activeMachine.extruderList[extruderIndex] - return (extruder === undefined) ? false : extruder.isEnabled + const extruder = Cura.MachineManager.activeMachineExtruders[extruderIndex]; + if (!extruder) return false; + return extruder.isEnabled; } onTriggered: Cura.MachineManager.setVariant(nozzleMenu.extruderIndex, model.container_node) } @@ -52,5 +45,4 @@ Cura.Menu onObjectAdded: function(index, object) { nozzleMenu.insertItem(index, object) } onObjectRemoved: function(index, object) {nozzleMenu.removeItem(object)} } - } From ff81fb6ca0fb7f7aeb26d338e0d614ee01bcfdd3 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 10 Nov 2023 15:35:54 +0100 Subject: [PATCH 098/765] force commit --- conanfile.py | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/conanfile.py b/conanfile.py index 20ded4bc3c2..395502b50db 100644 --- a/conanfile.py +++ b/conanfile.py @@ -396,10 +396,16 @@ def generate(self): if self.options.devtools: entitlements_file = "'{}'".format(os.path.join(self.source_folder, "packaging", "MacOS", "cura.entitlements")) - self._generate_pyinstaller_spec(location = self.generators_folder, - entrypoint_location = "'{}'".format(os.path.join(self.source_folder, self.conan_data["pyinstaller"]["runinfo"]["entrypoint"])).replace("\\", "\\\\"), - icon_path = "'{}'".format(os.path.join(self.source_folder, "packaging", self.conan_data["pyinstaller"]["icon"][str(self.settings.os)])).replace("\\", "\\\\"), - entitlements_file = entitlements_file if self.settings.os == "Macos" else "None") + self._generate_pyinstaller_spec( + location=self.generators_folder, + entrypoint_location="'{}'".format( + os.path.join(self.source_folder, self.conan_data["pyinstaller"]["runinfo"]["entrypoint"])).replace( + "\\", "\\\\"), + icon_path="'{}'".format(os.path.join(self.source_folder, "packaging", + self.conan_data["pyinstaller"]["icon"][ + str(self.settings.os)])).replace("\\", "\\\\"), + entitlements_file=entitlements_file if self.settings.os == "Macos" else "None" + ) if self.options.get_safe("enable_i18n", False): # Update the po and pot files From 2be72ca22b23a157a071323443e9e686adccc572 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 10 Nov 2023 18:00:00 +0100 Subject: [PATCH 099/765] Revert "Use intersection instead of convex hull intersection" This reverts commit 4982680dfce39bb189c0a3a4b1c7bb41480123a0. --- cura/BuildVolume.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/BuildVolume.py b/cura/BuildVolume.py index 7b10ba3ffc4..b52ba095fcd 100755 --- a/cura/BuildVolume.py +++ b/cura/BuildVolume.py @@ -494,7 +494,7 @@ def _buildDisallowedAreaMesh(self, min_w: float, max_w: float, min_h: float, max mb = MeshBuilder() color = self._disallowed_area_color for polygon in self._disallowed_areas: - intersection = polygon.intersection(bounding_box) + intersection = polygon.intersectionConvexHulls(bounding_box) points = numpy.fliplr(intersection.getPoints()) if len(points) < 3: continue From c9730a2089aafd5a7381cdf0dad5a0dfa9fed3c7 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 10 Nov 2023 18:41:45 +0100 Subject: [PATCH 100/765] Revert "Revert "Increase print volume for method printers"" This reverts commit 70f77dde2924855e792de74b7e51a84ef94e68c7. # Conflicts: # resources/definitions/ultimaker_method_base.def.json # resources/definitions/ultimaker_methodx.def.json # resources/definitions/ultimaker_methodxl.def.json --- .../ultimaker_method_base.def.json | 3 - .../definitions/ultimaker_methodx.def.json | 96 ++++++++++++++++++- .../definitions/ultimaker_methodxl.def.json | 90 ++++++++++++++++- 3 files changed, 183 insertions(+), 6 deletions(-) diff --git a/resources/definitions/ultimaker_method_base.def.json b/resources/definitions/ultimaker_method_base.def.json index 017caa92042..9c8c336946c 100644 --- a/resources/definitions/ultimaker_method_base.def.json +++ b/resources/definitions/ultimaker_method_base.def.json @@ -320,19 +320,16 @@ "layer_start_y": { "value": "sum(extruderValues('machine_extruder_start_pos_y')) / len(extruderValues('machine_extruder_start_pos_y'))" }, "machine_acceleration": { "default_value": 3000 }, "machine_center_is_zero": { "value": true }, - "machine_depth": { "default_value": 190 }, "machine_end_gcode": { "default_value": "" }, "machine_extruder_count": { "default_value": 2 }, "machine_gcode_flavor": { "default_value": "Griffin" }, "machine_heated_bed": { "default_value": false }, "machine_heated_build_volume": { "default_value": true }, - "machine_height": { "default_value": 196 }, "machine_min_cool_heat_time_window": { "value": 15 }, "machine_name": { "default_value": "UltiMaker Method" }, "machine_nozzle_cool_down_speed": { "value": 0.8 }, "machine_nozzle_heat_up_speed": { "value": 3.5 }, "machine_start_gcode": { "default_value": "" }, - "machine_width": { "default_value": 150 }, "material_bed_temperature": { "enabled": "machine_heated_bed" }, "material_bed_temperature_layer_0": { "enabled": "machine_heated_bed" }, "material_final_print_temperature": { "value": "material_print_temperature-10" }, diff --git a/resources/definitions/ultimaker_methodx.def.json b/resources/definitions/ultimaker_methodx.def.json index 8d8e4bd4bd5..17466130fad 100644 --- a/resources/definitions/ultimaker_methodx.def.json +++ b/resources/definitions/ultimaker_methodx.def.json @@ -69,7 +69,7 @@ "platform_offset": [ 0, 0, - 0 + 16 ], "platform_texture": "MakerbotMethod.png", "preferred_material": "ultimaker_absr_175", @@ -83,6 +83,100 @@ }, "overrides": { + "machine_depth": { + "default_value": 236.48 + }, + "machine_disallowed_areas": { + "default_value": [ + [ + [ + -141.65, + -118.11 + ], + [ + 141.65, + -118.11 + ], + [ + 141.65, + -95 + ], + [ + -141.65, + -95 + ] + ], + [ + [ + -141.65, + 118.37 + ], + [ + 141.65, + 118.37 + ], + [ + 141.65, + 95 + ], + [ + -141.65, + 95 + ] + ], + [ + [ + -141.65, + -118.11 + ], + [ + -75, + -118.11 + ], + [ + -75, + 118.37 + ], + [ + -141.65, + 118.37 + ] + ], + [ + [ + 75, + -118.11 + ], + [ + 141.65, + -118.11 + ], + [ + 141.65, + 118.37 + ], + [ + 75, + 118.37 + ] + ] + ] + }, + "machine_height": { + "default_value": 196 + }, + "machine_name": { + "default_value": "Makerbot Method X" + }, + "machine_width": { + "default_value": 283.3 + }, + "prime_tower_position_x": { + "value": "(150 / 2 + resolveOrValue('prime_tower_size') / 2) if resolveOrValue('machine_shape') == 'elliptic' else (150 - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_x'))), 1)) - (150 / 2 if resolveOrValue('machine_center_is_zero') else 0)" + }, + "prime_tower_position_y": { + "value": "190 - prime_tower_size - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (190 / 2 if resolveOrValue('machine_center_is_zero') else 0)" + }, "machine_name": { "default_value": "UltiMaker Method X" } } } \ No newline at end of file diff --git a/resources/definitions/ultimaker_methodxl.def.json b/resources/definitions/ultimaker_methodxl.def.json index 837432f0291..c7f13f7071b 100644 --- a/resources/definitions/ultimaker_methodxl.def.json +++ b/resources/definitions/ultimaker_methodxl.def.json @@ -32,12 +32,98 @@ }, "overrides": { - "machine_depth": { "default_value": 305 }, + "machine_depth": { + "default_value": 320 + }, + "machine_disallowed_areas": { + "default_value": [ + [ + [ + -204, + -160 + ], + [ + 204, + -160 + ], + [ + 204, + -152.5 + ], + [ + -204, + -152.5 + ] + ], + [ + [ + -204, + 160 + ], + [ + 204, + 160 + ], + [ + 204, + 152.5 + ], + [ + -204, + 152.5 + ] + ], + [ + [ + -205, + -160 + ], + [ + -152.5, + -160 + ], + [ + -152.5, + 160 + ], + [ + -205, + 160 + ] + ], + [ + [ + 152.5, + -160 + ], + [ + 205, + -160 + ], + [ + 205, + 160 + ], + [ + 152.5, + 160 + ] + ] + ] + }, "machine_heated_bed": { "default_value": true }, "machine_height": { "default_value": 317 }, "machine_name": { "default_value": "UltiMaker Method XL" }, - "machine_width": { "default_value": 305 }, + "machine_width": { + "default_value": 410 + }, "material_shrinkage_percentage_z": { "resolve": "sum(extruderValues(\"material_shrinkage_percentage_z\")) / len(extruderValues(\"material_shrinkage_percentage_z\"))" }, + "prime_tower_position_x": { + "value": "(305 - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_x'))), 1)) - (305 / 2)" + }, + "prime_tower_position_y": { + "value": "305 - prime_tower_size - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (305 / 2)" + }, "speed_travel": { "value": 500 } } } \ No newline at end of file From 2569c4c3d1a337c4ecfad35ec287750316d0d012 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 10 Nov 2023 18:42:10 +0100 Subject: [PATCH 101/765] Use flip up/down to reverse list CURA-11293 --- cura/BuildVolume.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/BuildVolume.py b/cura/BuildVolume.py index b52ba095fcd..e501b33896e 100755 --- a/cura/BuildVolume.py +++ b/cura/BuildVolume.py @@ -495,7 +495,7 @@ def _buildDisallowedAreaMesh(self, min_w: float, max_w: float, min_h: float, max color = self._disallowed_area_color for polygon in self._disallowed_areas: intersection = polygon.intersectionConvexHulls(bounding_box) - points = numpy.fliplr(intersection.getPoints()) + points = numpy.flipud(intersection.getPoints()) if len(points) < 3: continue From 0196334c812e7f7735494360ea2e446363ca453c Mon Sep 17 00:00:00 2001 From: casperlamboo Date: Fri, 10 Nov 2023 17:43:23 +0000 Subject: [PATCH 102/765] Applied printer-linter format --- .../definitions/ultimaker_methodx.def.json | 130 +++++------------- .../definitions/ultimaker_methodxl.def.json | 99 +++---------- 2 files changed, 57 insertions(+), 172 deletions(-) diff --git a/resources/definitions/ultimaker_methodx.def.json b/resources/definitions/ultimaker_methodx.def.json index 17466130fad..0bdc8cdb9cb 100644 --- a/resources/definitions/ultimaker_methodx.def.json +++ b/resources/definitions/ultimaker_methodx.def.json @@ -69,7 +69,7 @@ "platform_offset": [ 0, 0, - 16 + 16 ], "platform_texture": "MakerbotMethod.png", "preferred_material": "ultimaker_absr_175", @@ -83,100 +83,40 @@ }, "overrides": { - "machine_depth": { - "default_value": 236.48 - }, - "machine_disallowed_areas": { - "default_value": [ - [ - [ - -141.65, - -118.11 - ], - [ - 141.65, - -118.11 - ], - [ - 141.65, - -95 - ], - [ - -141.65, - -95 - ] - ], - [ - [ - -141.65, - 118.37 - ], - [ - 141.65, - 118.37 - ], - [ - 141.65, - 95 - ], - [ - -141.65, - 95 - ] - ], - [ - [ - -141.65, - -118.11 - ], - [ - -75, - -118.11 - ], - [ - -75, - 118.37 - ], - [ - -141.65, - 118.37 - ] - ], - [ - [ - 75, - -118.11 - ], - [ - 141.65, - -118.11 - ], - [ - 141.65, - 118.37 - ], - [ - 75, - 118.37 + "machine_depth": { "default_value": 236.48 }, + "machine_disallowed_areas": + { + "default_value": [ + [ + [-141.65, -118.11], + [141.65, -118.11], + [141.65, -95], + [-141.65, -95] + ], + [ + [-141.65, 118.37], + [141.65, 118.37], + [141.65, 95], + [-141.65, 95] + ], + [ + [-141.65, -118.11], + [-75, -118.11], + [-75, 118.37], + [-141.65, 118.37] + ], + [ + [75, -118.11], + [141.65, -118.11], + [141.65, 118.37], + [75, 118.37] + ] ] - ] - ] - }, - "machine_height": { - "default_value": 196 - }, - "machine_name": { - "default_value": "Makerbot Method X" - }, - "machine_width": { - "default_value": 283.3 - }, - "prime_tower_position_x": { - "value": "(150 / 2 + resolveOrValue('prime_tower_size') / 2) if resolveOrValue('machine_shape') == 'elliptic' else (150 - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_x'))), 1)) - (150 / 2 if resolveOrValue('machine_center_is_zero') else 0)" - }, - "prime_tower_position_y": { - "value": "190 - prime_tower_size - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (190 / 2 if resolveOrValue('machine_center_is_zero') else 0)" - }, - "machine_name": { "default_value": "UltiMaker Method X" } + }, + "machine_height": { "default_value": 196 }, + "machine_name": { "default_value": "UltiMaker Method X" }, + "machine_width": { "default_value": 283.3 }, + "prime_tower_position_x": { "value": "(150 / 2 + resolveOrValue('prime_tower_size') / 2) if resolveOrValue('machine_shape') == 'elliptic' else (150 - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_x'))), 1)) - (150 / 2 if resolveOrValue('machine_center_is_zero') else 0)" }, + "prime_tower_position_y": { "value": "190 - prime_tower_size - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (190 / 2 if resolveOrValue('machine_center_is_zero') else 0)" } } } \ No newline at end of file diff --git a/resources/definitions/ultimaker_methodxl.def.json b/resources/definitions/ultimaker_methodxl.def.json index c7f13f7071b..c03eae2ae3f 100644 --- a/resources/definitions/ultimaker_methodxl.def.json +++ b/resources/definitions/ultimaker_methodxl.def.json @@ -32,98 +32,43 @@ }, "overrides": { - "machine_depth": { - "default_value": 320 - }, - "machine_disallowed_areas": { + "machine_depth": { "default_value": 320 }, + "machine_disallowed_areas": + { "default_value": [ [ - [ - -204, - -160 - ], - [ - 204, - -160 - ], - [ - 204, - -152.5 - ], - [ - -204, - -152.5 - ] + [-204, -160], + [204, -160], + [204, -152.5], + [-204, -152.5] ], [ - [ - -204, - 160 - ], - [ - 204, - 160 - ], - [ - 204, - 152.5 - ], - [ - -204, - 152.5 - ] + [-204, 160], + [204, 160], + [204, 152.5], + [-204, 152.5] ], [ - [ - -205, - -160 - ], - [ - -152.5, - -160 - ], - [ - -152.5, - 160 - ], - [ - -205, - 160 - ] + [-205, -160], + [-152.5, -160], + [-152.5, 160], + [-205, 160] ], [ - [ - 152.5, - -160 - ], - [ - 205, - -160 - ], - [ - 205, - 160 - ], - [ - 152.5, - 160 - ] + [152.5, -160], + [205, -160], + [205, 160], + [152.5, 160] ] ] }, "machine_heated_bed": { "default_value": true }, "machine_height": { "default_value": 317 }, "machine_name": { "default_value": "UltiMaker Method XL" }, - "machine_width": { - "default_value": 410 - }, + "machine_width": { "default_value": 410 }, "material_shrinkage_percentage_z": { "resolve": "sum(extruderValues(\"material_shrinkage_percentage_z\")) / len(extruderValues(\"material_shrinkage_percentage_z\"))" }, - "prime_tower_position_x": { - "value": "(305 - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_x'))), 1)) - (305 / 2)" - }, - "prime_tower_position_y": { - "value": "305 - prime_tower_size - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (305 / 2)" - }, + "prime_tower_position_x": { "value": "(305 - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_x'))), 1)) - (305 / 2)" }, + "prime_tower_position_y": { "value": "305 - prime_tower_size - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (305 / 2)" }, "speed_travel": { "value": 500 } } } \ No newline at end of file From ecbf89df1cf270083b2e4a35aa5b5d5b08d7bdce Mon Sep 17 00:00:00 2001 From: Casper Lamboo Date: Fri, 10 Nov 2023 14:29:16 +0100 Subject: [PATCH 103/765] Add `enable_i18n` install option to packaging This should fix translations --- .github/workflows/conan-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/conan-package.yml b/.github/workflows/conan-package.yml index 34652de39b3..4b5c0f914ab 100644 --- a/.github/workflows/conan-package.yml +++ b/.github/workflows/conan-package.yml @@ -119,7 +119,7 @@ jobs: conan config install https://github.com/Ultimaker/conan-config.git -a "-b runner/${{ runner.os }}/${{ runner.arch }}" - name: Create the Packages - run: conan create . ${{ needs.conan-recipe-version.outputs.recipe_id_full }} --build=missing --update -o ${{ needs.conan-recipe-version.outputs.project_name }}:devtools=True -c tools.build:skip_test=True + run: conan create . ${{ needs.conan-recipe-version.outputs.recipe_id_full }} --build=missing --update -o ${{ needs.conan-recipe-version.outputs.project_name }}:devtools=True -o ${{ needs.conan-recipe-version.outputs.project_name }}:enable_i18n=True -c tools.build:skip_test=True - name: Create the latest alias if: always() From c61c896619157c53c314e15d7dcaa98a46a63ab9 Mon Sep 17 00:00:00 2001 From: Chris Moore Date: Fri, 10 Nov 2023 14:13:58 -0500 Subject: [PATCH 104/765] Copy version info to miracle_config Only fields in miracle_config get sent to analytics by method firmware. I don't know if anything else in our codebase expects to also see these fields at the top level, so I put one copy at the top level and one copy down in miracle_config. --- plugins/MakerbotWriter/MakerbotWriter.py | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/plugins/MakerbotWriter/MakerbotWriter.py b/plugins/MakerbotWriter/MakerbotWriter.py index a548c568535..b650cf23387 100644 --- a/plugins/MakerbotWriter/MakerbotWriter.py +++ b/plugins/MakerbotWriter/MakerbotWriter.py @@ -273,23 +273,29 @@ def _getMeta(self, root_nodes: List[SceneNode]) -> Dict[str, any]: meta["miracle_config"] = {"gaggles": {str(node.getName()): {} for node in nodes}} + version_info = dict() cura_engine_info = ConanInstalls.get("curaengine", {"version": "unknown", "revision": "unknown"}) - meta["curaengine_version"] = cura_engine_info["version"] - meta["curaengine_commit_hash"] = cura_engine_info["revision"] + version_info["curaengine_version"] = cura_engine_info["version"] + version_info["curaengine_commit_hash"] = cura_engine_info["revision"] dulcificum_info = ConanInstalls.get("dulcificum", {"version": "unknown", "revision": "unknown"}) - meta["dulcificum_version"] = dulcificum_info["version"] - meta["dulcificum_commit_hash"] = dulcificum_info["revision"] + version_info["dulcificum_version"] = dulcificum_info["version"] + version_info["dulcificum_commit_hash"] = dulcificum_info["revision"] - meta["makerbot_writer_version"] = self.getVersion() - meta["pyDulcificum_version"] = du.__version__ + version_info["makerbot_writer_version"] = self.getVersion() + version_info["pyDulcificum_version"] = du.__version__ # Add engine plugin information to the metadata for name, package_info in ConanInstalls.items(): if not name.startswith("curaengine_"): continue - meta[f"{name}_version"] = package_info["version"] - meta[f"{name}_commit_hash"] = package_info["revision"] + version_info[f"{name}_version"] = package_info["version"] + version_info[f"{name}_commit_hash"] = package_info["revision"] + + # Add version info to the main metadata, but also to "miracle_config" + # so that it shows up in analytics + meta["miracle_config"].update(version_info) + meta.update(version_info) # TODO add the following instructions # num_tool_changes From 2dfe6d7e5df4251bd2deac449453bc3d09248ac5 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Sat, 11 Nov 2023 08:54:23 +0100 Subject: [PATCH 105/765] Set requirements and version with conandata This will allow workflow automations to easily create release branches and set the versions Contributes to CURA-10831 --- conandata.yml | 19 +++++++++++++++++++ conanfile.py | 26 +++++++------------------- 2 files changed, 26 insertions(+), 19 deletions(-) diff --git a/conandata.yml b/conandata.yml index c027bde5679..a36e30983cd 100644 --- a/conandata.yml +++ b/conandata.yml @@ -1,3 +1,22 @@ +version: "5.6.0-beta.1" +requirements: + - "uranium/(latest)@ultimaker/stable" + - "curaengine/(latest)@ultimaker/stable" + - "cura_binary_data/(latest)@ultimaker/stable" + - "fdm_materials/(latest)@ultimaker/stable" + - "curaengine_plugin_gradual_flow/0.1.0" + - "dulcificum/(latest)@ultimaker/stable" + - "pyarcus/5.3.0" + - "pysavitar/5.3.0" + - "pynest2d/5.3.0" + - "curaengine_grpc_definitions/0.1.0" + - "cpython/3.10.4" + - "boost/1.82.0" + - "fmt/9.0.0" + - "zlib/1.2.13" +requirements_internal: + - "fdm_materials/(latest)@internal/testing" + - "cura_private_data/(latest)@internal/testing" urls: default: cloud_api_root: "https://api.ultimaker.com" diff --git a/conanfile.py b/conanfile.py index 20ded4bc3c2..ae0caaacdf0 100644 --- a/conanfile.py +++ b/conanfile.py @@ -50,7 +50,7 @@ class CuraConan(ConanFile): def set_version(self): if not self.version: - self.version = "5.6.0-beta.1" + self.version = self.conan_data["version"] @property def _pycharm_targets(self): @@ -313,24 +313,12 @@ def validate(self): raise ConanInvalidConfiguration("Only versions 5+ are support") def requirements(self): - self.requires("boost/1.82.0") - self.requires("fmt/9.0.0") - self.requires("curaengine_grpc_definitions/0.1.0") - self.requires("zlib/1.2.13") - self.requires("pyarcus/5.3.0") - self.requires("dulcificum/(latest)@ultimaker/stable") - self.requires("curaengine/(latest)@ultimaker/stable") - self.requires("pysavitar/5.3.0") - self.requires("pynest2d/5.3.0") - self.requires("curaengine_plugin_gradual_flow/0.1.0") - self.requires("uranium/(latest)@ultimaker/stable") - self.requires("cura_binary_data/(latest)@ultimaker/stable") - self.requires("cpython/3.10.4") - if self.options.internal: - self.requires("cura_private_data/(latest)@internal/testing") - self.requires("fdm_materials/(latest)@internal/testing") - else: - self.requires("fdm_materials/(latest)@ultimaker/stable") + for req in self.conan_data["requirements"]: + if self.options.internal and "fdm_materials" in req: + continue + self.requires(req) + for req in self.conan_data["requirements_internal"]: + self.requires(req) def build_requirements(self): if self.options.get_safe("enable_i18n", False): From 220054cbb52db2d245360f5ba38dcf5c92bf1b85 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Sat, 11 Nov 2023 08:59:53 +0100 Subject: [PATCH 106/765] Use cura-workflows to determine version Contributes to CURA-10831 --- .github/workflows/conan-package.yml | 2 +- .github/workflows/conan-recipe-version.yml | 217 --------------------- .github/workflows/unit-test.yml | 2 +- 3 files changed, 2 insertions(+), 219 deletions(-) delete mode 100644 .github/workflows/conan-recipe-version.yml diff --git a/.github/workflows/conan-package.yml b/.github/workflows/conan-package.yml index 4b5c0f914ab..ad460f56b9c 100644 --- a/.github/workflows/conan-package.yml +++ b/.github/workflows/conan-package.yml @@ -63,7 +63,7 @@ jobs: permissions: contents: read - uses: ultimaker/cura/.github/workflows/conan-recipe-version.yml@main + uses: ultimaker/cura-workflows/.github/workflows/conan-recipe-version.yml@CURA-10831 with: project_name: cura diff --git a/.github/workflows/conan-recipe-version.yml b/.github/workflows/conan-recipe-version.yml deleted file mode 100644 index 097b9f5dd6d..00000000000 --- a/.github/workflows/conan-recipe-version.yml +++ /dev/null @@ -1,217 +0,0 @@ -name: Get Conan Recipe Version - -on: - workflow_call: - inputs: - project_name: - required: true - type: string - - user: - required: false - default: ultimaker - type: string - - additional_buildmetadata: - required: false - default: "" - type: string - - outputs: - recipe_id_full: - description: "The full Conan recipe id: /@/" - value: ${{ jobs.get-semver.outputs.recipe_id_full }} - - recipe_id_latest: - description: "The full Conan recipe aliased (latest) id: /(latest)@/" - value: ${{ jobs.get-semver.outputs.recipe_id_latest }} - - recipe_semver_full: - description: "The full semver ..-+" - value: ${{ jobs.get-semver.outputs.semver_full }} - - is_release_branch: - description: "is current branch a release branch?" - value: ${{ jobs.get-semver.outputs.release_branch }} - - user: - description: "The conan user" - value: ${{ jobs.get-semver.outputs.user }} - - channel: - description: "The conan channel" - value: ${{ jobs.get-semver.outputs.channel }} - - project_name: - description: "The conan projectname" - value: ${{ inputs.project_name }} - -jobs: - get-semver: - - runs-on: ubuntu-latest - - outputs: - recipe_id_full: ${{ steps.get-conan-broadcast-data.outputs.recipe_id_full }} - recipe_id_latest: ${{ steps.get-conan-broadcast-data.outputs.recipe_id_latest }} - semver_full: ${{ steps.get-conan-broadcast-data.outputs.semver_full }} - is_release_branch: ${{ steps.get-conan-broadcast-data.outputs.is_release_branch }} - user: ${{ steps.get-conan-broadcast-data.outputs.user }} - channel: ${{ steps.get-conan-broadcast-data.outputs.channel }} - - steps: - - name: Checkout repo - uses: actions/checkout@v3 - if: ${{ github.event.pull_request.head.repo.full_name == github.repository }} - with: - fetch-depth: 0 - ref: ${{ github.head_ref }} - - - name: Checkout repo PR - uses: actions/checkout@v3 - if: ${{ github.event.pull_request.head.repo.full_name != github.repository }} - with: - fetch-depth: 0 - ref: ${{ github.base_ref }} - - - name: Setup Python and pip - uses: actions/setup-python@v4 - with: - python-version: "3.11.x" - cache: 'pip' - cache-dependency-path: .github/workflows/requirements-conan-package.txt - - - name: Install Python requirements and Create default Conan profile - run: | - pip install -r .github/workflows/requirements-conan-package.txt - pip install gitpython - - - id: get-conan-broadcast-data - name: Get Conan broadcast data - run: | - import subprocess - import os - from conan.tools.scm import Version - from conan.errors import ConanException - from git import Repo - - repo = Repo('.') - user = "${{ inputs.user }}".lower() - project_name = "${{ inputs.project_name }}" - event_name = "${{ github.event_name }}" - issue_number = "${{ github.ref }}".split('/')[2] - is_tag = "${{ github.ref_type }}" == "tag" - is_release_branch = False - ref_name = "${{ github.base_ref }}" if event_name == "pull_request" else "${{ github.ref_name }}" - buildmetadata = "" if "${{ inputs.additional_buildmetadata }}" == "" else "${{ inputs.additional_buildmetadata }}_" - - # FIXME: for when we push a tag (such as an release) - channel = "testing" - if is_tag: - branch_version = Version(ref_name) - is_release_branch = True - channel = "_" - user = "_" - actual_version = f"{branch_version}" - else: - try: - branch_version = Version(repo.active_branch.name) - except ConanException: - branch_version = Version('0.0.0') - if ref_name == f"{branch_version.major}.{branch_version.minor}": - channel = 'stable' - is_release_branch = True - elif ref_name in ("main", "master"): - channel = 'testing' - else: - channel = "_".join(repo.active_branch.name.replace("-", "_").split("_")[:2]).lower() - - if "pull_request" in event_name: - channel = f"pr_{issue_number}" - - # %% Get the actual version - latest_branch_version = Version("0.0.0") - latest_branch_tag = None - for tag in repo.active_branch.repo.tags: - if str(tag).startswith("firmware") or str(tag).startswith("master"): - continue # Quick-fix for the versioning scheme name of the embedded team in fdm_materials(_private) repo - try: - version = Version(tag) - except ConanException: - continue - if version > latest_branch_version and version < Version("6.0.0"): - # FIXME: stupid old Cura tags 13.04 etc. keep popping up, als the fdm_material tag for firmware are messing with this - latest_branch_version = version - latest_branch_tag = repo.tag(tag) - - if latest_branch_tag: - # %% Get the actual version - sha_commit = repo.commit().hexsha[:6] - latest_branch_version_prerelease = latest_branch_version.pre - if latest_branch_version.pre and not "." in str(latest_branch_version.pre): - # The prerealese did not contain a version number, default it to 1 - latest_branch_version_prerelease = f"{latest_branch_version.pre}.1" - if event_name == "pull_request": - actual_version = f"{latest_branch_version.major}.{latest_branch_version.minor}.{latest_branch_version.patch}-{str(latest_branch_version_prerelease).lower()}+{buildmetadata}pr_{issue_number}_{sha_commit}" - channel_metadata = f"{channel}_{sha_commit}" - else: - if channel in ("stable", "_", ""): - channel_metadata = f"{sha_commit}" - else: - channel_metadata = f"{channel}_{sha_commit}" - if is_release_branch: - if (latest_branch_version.pre == "" or latest_branch_version.pre is None) and branch_version > latest_branch_version: - actual_version = f"{branch_version.major}.{branch_version.minor}.0-beta.1+{buildmetadata}{channel_metadata}" - elif latest_branch_version.pre == "": - # An actual full release has been created, we are working on patch - bump_up_patch = int(str(latest_branch_version.patch)) + 1 - actual_version = f"{latest_branch_version.major}.{latest_branch_version.minor}.{bump_up_patch}-beta.1+{buildmetadata}{channel_metadata}" - elif latest_branch_version.pre is None: - actual_version = f"{latest_branch_version.major}.{latest_branch_version.minor}.{int(latest_branch_version.patch.value) + 1}-beta.1+{buildmetadata}{channel_metadata}" - else: - # An beta release has been created we are working toward a next beta or full release - bump_up_release_tag = int(str(latest_branch_version.pre).split('.')[1]) + 1 - actual_version = f"{latest_branch_version.major}.{latest_branch_version.minor}.{latest_branch_version.patch}-{str(latest_branch_version.pre).split('.')[0]}.{bump_up_release_tag}+{buildmetadata}{channel_metadata}" - else: - max_branches_version = Version("0.0.0") - for branch in repo.references: - try: - if "remotes/origin" in branch.abspath: - b_version = Version(branch.name.split("/")[-1]) - if b_version < Version("6.0.0") and b_version > max_branches_version: - max_branches_version = b_version - except: - pass - if max_branches_version > latest_branch_version: - actual_version = f"{max_branches_version.major}.{int(str(max_branches_version.minor)) + 1}.0-alpha+{buildmetadata}{channel}_{sha_commit}" - else: - actual_version = f"{latest_branch_version.major}.{int(str(latest_branch_version.minor)) + 1}.0-alpha+{buildmetadata}{channel_metadata}" - - # %% Set the environment output - output_env = os.environ["GITHUB_OUTPUT"] - content = "" - if os.path.exists(output_env): - with open(output_env, "r") as f: - content = f.read() - - with open(output_env, "w") as f: - f.write(content) - f.writelines(f"name={project_name}\n") - f.writelines(f"version={actual_version}\n") - f.writelines(f"channel={channel}\n") - f.writelines(f"recipe_id_full={project_name}/{actual_version}@{user}/{channel}\n") - f.writelines(f"recipe_id_latest={project_name}/latest@{user}/{channel}\n") - f.writelines(f"semver_full={actual_version}\n") - f.writelines(f"is_release_branch={str(is_release_branch).lower()}\n") - - summary_env = os.environ["GITHUB_STEP_SUMMARY"] - with open(summary_env, "w") as f: - f.writelines(f"# {project_name}\n") - f.writelines(f"name={project_name}\n") - f.writelines(f"version={actual_version}\n") - f.writelines(f"channel={channel}\n") - f.writelines(f"recipe_id_full={project_name}/{actual_version}@{user}/{channel}\n") - f.writelines(f"recipe_id_latest={project_name}/latest@{user}/{channel}\n") - f.writelines(f"semver_full={actual_version}\n") - f.writelines(f"is_release_branch={str(is_release_branch).lower()}\n") - shell: python diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 8321f42a23c..2f8f5931997 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -64,7 +64,7 @@ permissions: jobs: conan-recipe-version: - uses: ultimaker/cura/.github/workflows/conan-recipe-version.yml@main + uses: ultimaker/cura-workflows/.github/workflows/conan-recipe-version.yml@CURA-10831 with: project_name: cura From 33ecec6951c7cbb7449c4cd3d27a72e45cf618ba Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Sat, 11 Nov 2023 10:42:05 +0100 Subject: [PATCH 107/765] add release tagging info to conandata Contributes to CURA-10831 --- conandata.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/conandata.yml b/conandata.yml index a36e30983cd..16d79c4ffa6 100644 --- a/conandata.yml +++ b/conandata.yml @@ -1,4 +1,5 @@ version: "5.6.0-beta.1" +release: false requirements: - "uranium/(latest)@ultimaker/stable" - "curaengine/(latest)@ultimaker/stable" From 1fb1fe9faa93a3f65a634f894f7f981bcc9b6cbf Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Sat, 11 Nov 2023 11:59:56 +0100 Subject: [PATCH 108/765] don't set release from conandata.yml Contributes to CURA-10831 --- conandata.yml | 5 ----- conanfile.py | 4 ++++ 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/conandata.yml b/conandata.yml index 16d79c4ffa6..470f6f32e46 100644 --- a/conandata.yml +++ b/conandata.yml @@ -1,5 +1,4 @@ version: "5.6.0-beta.1" -release: false requirements: - "uranium/(latest)@ultimaker/stable" - "curaengine/(latest)@ultimaker/stable" @@ -11,10 +10,6 @@ requirements: - "pysavitar/5.3.0" - "pynest2d/5.3.0" - "curaengine_grpc_definitions/0.1.0" - - "cpython/3.10.4" - - "boost/1.82.0" - - "fmt/9.0.0" - - "zlib/1.2.13" requirements_internal: - "fdm_materials/(latest)@internal/testing" - "cura_private_data/(latest)@internal/testing" diff --git a/conanfile.py b/conanfile.py index ae0caaacdf0..9f22d10f233 100644 --- a/conanfile.py +++ b/conanfile.py @@ -319,6 +319,10 @@ def requirements(self): self.requires(req) for req in self.conan_data["requirements_internal"]: self.requires(req) + self.requires("cpython/3.10.4") + self.requires("boost/1.82.0") + self.requires("fmt/9.0.0") + self.requires("zlib/1.2.13") def build_requirements(self): if self.options.get_safe("enable_i18n", False): From 1216674728924877783b3a920fc2c80e7c353d85 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Sun, 12 Nov 2023 11:00:21 +0100 Subject: [PATCH 109/765] Modernize conanfile.py This commit updates the Uranium dependency in the Conan file and introduces an internationalization (i18n) option. It refactor the devtool checks to check for the "enable_i18n" option instead. Lastly, cleanups and adjustments are done in preparation for enabling i18n in the build process. Contributes to CURA-10831 --- conanfile.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/conanfile.py b/conanfile.py index 9f22d10f233..d80de96ea35 100644 --- a/conanfile.py +++ b/conanfile.py @@ -318,6 +318,8 @@ def requirements(self): continue self.requires(req) for req in self.conan_data["requirements_internal"]: + if not self.options.internal and "fdm_materials" in req: + continue self.requires(req) self.requires("cpython/3.10.4") self.requires("boost/1.82.0") @@ -495,6 +497,7 @@ def package_id(self): del self.info.options.cloud_api_version del self.info.options.display_name del self.info.options.cura_debug_mode + self.options.rm_safe("i18n") # TODO: Use the hash of requirements.txt and requirements-ultimaker.txt, Because changing these will actually result in a different # Cura. This is needed because the requirements.txt aren't managed by Conan and therefor not resolved in the package_id. This isn't From 39e505371ef6d1a6674773797b3b6b1c807c975d Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Sun, 12 Nov 2023 11:08:09 +0100 Subject: [PATCH 110/765] fix option naming should be `enable_i18n` Contributes to CURA-10831 --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index d80de96ea35..872bbe6c47a 100644 --- a/conanfile.py +++ b/conanfile.py @@ -497,7 +497,7 @@ def package_id(self): del self.info.options.cloud_api_version del self.info.options.display_name del self.info.options.cura_debug_mode - self.options.rm_safe("i18n") + self.options.rm_safe("enable_i18n") # TODO: Use the hash of requirements.txt and requirements-ultimaker.txt, Because changing these will actually result in a different # Cura. This is needed because the requirements.txt aren't managed by Conan and therefor not resolved in the package_id. This isn't From c4573ba8552be04fce8596e0234e22b1a60f91cd Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 13 Nov 2023 10:46:44 +0100 Subject: [PATCH 111/765] Add extruder start/end gcode duration settings CURA-11099 --- .../MachineSettingsExtruderTab.qml | 28 +++++++++++++++++++ resources/definitions/fdmextruder.def.json | 22 +++++++++++++++ 2 files changed, 50 insertions(+) diff --git a/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml b/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml index dc1a479be96..5e1ddc2f3f0 100644 --- a/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml +++ b/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml @@ -139,6 +139,34 @@ Item decimals: 0 forceUpdateOnChangeFunction: forceUpdateFunction } + + Cura.NumericTextFieldWithUnit + { + id: extruderStartCodeDurationFieldId + containerStackId: base.extruderStackId + settingKey: "machine_extruder_start_code_duration" + settingStoreIndex: propertyStoreIndex + labelText: catalog.i18nc("@label", "Extruder Start G-code duration") + labelFont: base.labelFont + labelWidth: base.labelWidth + controlWidth: base.controlWidth + unitText: catalog.i18nc("@label", "s") + forceUpdateOnChangeFunction: forceUpdateFunction + } + + Cura.NumericTextFieldWithUnit + { + id: extruderEndCodeDurationFieldId + containerStackId: base.extruderStackId + settingKey: "machine_extruder_end_code_duration" + settingStoreIndex: propertyStoreIndex + labelText: catalog.i18nc("@label", "Extruder End G-code duration") + labelFont: base.labelFont + labelWidth: base.labelWidth + controlWidth: base.controlWidth + unitText: catalog.i18nc("@label", "s") + forceUpdateOnChangeFunction: forceUpdateFunction + } } } diff --git a/resources/definitions/fdmextruder.def.json b/resources/definitions/fdmextruder.def.json index d79a0cb0455..43b76c20e22 100644 --- a/resources/definitions/fdmextruder.def.json +++ b/resources/definitions/fdmextruder.def.json @@ -62,6 +62,17 @@ "settable_per_meshgroup": false, "type": "str" }, + "machine_extruder_end_code_duration": { + "default_value": 0, + "description": "Duration it takes to execute the end g-code when switching away from this extruder.", + "label": "Extruder End G-Code Duration", + "minimum_value": "0", + "settable_globally": false, + "settable_per_extruder": true, + "settable_per_mesh": false, + "settable_per_meshgroup": false, + "type": "float" + }, "machine_extruder_end_pos_abs": { "default_value": false, @@ -108,6 +119,17 @@ "settable_per_meshgroup": false, "type": "str" }, + "machine_extruder_start_code_duration": { + "default_value": 0, + "description": "Duration it takes to execute the start g-code to when switching away from this extruder.", + "label": "Extruder Start G-Code Duration", + "minimum_value": "0", + "settable_globally": false, + "settable_per_extruder": true, + "settable_per_mesh": false, + "settable_per_meshgroup": false, + "type": "float" + }, "machine_extruder_start_pos_abs": { "default_value": false, From d56b77db37050306a4e1e9f982c76791730326cd Mon Sep 17 00:00:00 2001 From: casperlamboo Date: Mon, 13 Nov 2023 09:49:14 +0000 Subject: [PATCH 112/765] Applied printer-linter format --- resources/definitions/fdmextruder.def.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/resources/definitions/fdmextruder.def.json b/resources/definitions/fdmextruder.def.json index 43b76c20e22..f7cbfc5a2cb 100644 --- a/resources/definitions/fdmextruder.def.json +++ b/resources/definitions/fdmextruder.def.json @@ -62,7 +62,8 @@ "settable_per_meshgroup": false, "type": "str" }, - "machine_extruder_end_code_duration": { + "machine_extruder_end_code_duration": + { "default_value": 0, "description": "Duration it takes to execute the end g-code when switching away from this extruder.", "label": "Extruder End G-Code Duration", @@ -119,7 +120,8 @@ "settable_per_meshgroup": false, "type": "str" }, - "machine_extruder_start_code_duration": { + "machine_extruder_start_code_duration": + { "default_value": 0, "description": "Duration it takes to execute the start g-code to when switching away from this extruder.", "label": "Extruder Start G-Code Duration", From 478648df8d9ab6c038ad9afa37a6351f02b1f586 Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Mon, 13 Nov 2023 10:58:14 +0100 Subject: [PATCH 113/765] Increase the build volume of the Method machines such that they match CloudPrint. CURA-11316 --- .../definitions/ultimaker_method_base.def.json | 3 ++- .../definitions/ultimaker_methodx.def.json | 8 ++++---- .../definitions/ultimaker_methodxl.def.json | 18 +++++++++--------- 3 files changed, 15 insertions(+), 14 deletions(-) diff --git a/resources/definitions/ultimaker_method_base.def.json b/resources/definitions/ultimaker_method_base.def.json index 9c8c336946c..b5c9fbb6686 100644 --- a/resources/definitions/ultimaker_method_base.def.json +++ b/resources/definitions/ultimaker_method_base.def.json @@ -69,6 +69,7 @@ "preferred_material": "generic_pla_175", "preferred_quality_type": "fast", "preferred_variant_name": "1A", + "supports_material_export": true, "supports_network_connection": true, "supports_usb_connection": false, "variants_name": "Extruder", @@ -420,7 +421,7 @@ "switch_extruder_retraction_speeds": { "value": "retraction_speed" }, "top_bottom_thickness": { "value": "5*layer_height" }, "travel_avoid_distance": { "value": "3 if extruders_enabled_count > 1 else machine_nozzle_tip_outer_diameter / 2 * 1.5" }, - "travel_avoid_supports": { "value": true }, + "travel_avoid_other_parts": { "value": false }, "wall_0_inset": { "value": 0 }, "wall_0_material_flow": { "value": "material_flow" }, "wall_0_wipe_dist": { "value": 0 }, diff --git a/resources/definitions/ultimaker_methodx.def.json b/resources/definitions/ultimaker_methodx.def.json index 0bdc8cdb9cb..d74a08baf36 100644 --- a/resources/definitions/ultimaker_methodx.def.json +++ b/resources/definitions/ultimaker_methodx.def.json @@ -90,14 +90,14 @@ [ [-141.65, -118.11], [141.65, -118.11], - [141.65, -95], - [-141.65, -95] + [141.65, -94], + [-141.65, -94] ], [ [-141.65, 118.37], [141.65, 118.37], - [141.65, 95], - [-141.65, 95] + [141.65, 94], + [-141.65, 94] ], [ [-141.65, -118.11], diff --git a/resources/definitions/ultimaker_methodxl.def.json b/resources/definitions/ultimaker_methodxl.def.json index c03eae2ae3f..8eded9e7d0e 100644 --- a/resources/definitions/ultimaker_methodxl.def.json +++ b/resources/definitions/ultimaker_methodxl.def.json @@ -39,31 +39,31 @@ [ [-204, -160], [204, -160], - [204, -152.5], - [-204, -152.5] + [204, -154.5], + [-204, -154.5] ], [ [-204, 160], [204, 160], - [204, 152.5], - [-204, 152.5] + [204, 154.5], + [-204, 154.5] ], [ [-205, -160], - [-152.5, -160], - [-152.5, 160], + [-154.5, -160], + [-154.5, 160], [-205, 160] ], [ - [152.5, -160], + [154.5, -160], [205, -160], [205, 160], - [152.5, 160] + [154.5, 160] ] ] }, "machine_heated_bed": { "default_value": true }, - "machine_height": { "default_value": 317 }, + "machine_height": { "default_value": 320 }, "machine_name": { "default_value": "UltiMaker Method XL" }, "machine_width": { "default_value": 410 }, "material_shrinkage_percentage_z": { "resolve": "sum(extruderValues(\"material_shrinkage_percentage_z\")) / len(extruderValues(\"material_shrinkage_percentage_z\"))" }, From 3b13e644e0b72ec8550e94ec389b176d2d97667a Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Mon, 13 Nov 2023 11:12:15 +0100 Subject: [PATCH 114/765] Update ultimaker_method_base.def.json --- resources/definitions/ultimaker_method_base.def.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/resources/definitions/ultimaker_method_base.def.json b/resources/definitions/ultimaker_method_base.def.json index b5c9fbb6686..2a925d90678 100644 --- a/resources/definitions/ultimaker_method_base.def.json +++ b/resources/definitions/ultimaker_method_base.def.json @@ -69,7 +69,6 @@ "preferred_material": "generic_pla_175", "preferred_quality_type": "fast", "preferred_variant_name": "1A", - "supports_material_export": true, "supports_network_connection": true, "supports_usb_connection": false, "variants_name": "Extruder", @@ -434,4 +433,4 @@ "z_seam_type": { "value": "'sharpest_corner'" }, "zig_zaggify_infill": { "value": true } } -} \ No newline at end of file +} From 003633547ae2f2207d7c5689543785debb2d86db Mon Sep 17 00:00:00 2001 From: pkuiper-ultimaker Date: Mon, 13 Nov 2023 10:13:57 +0000 Subject: [PATCH 115/765] Applied printer-linter format --- resources/definitions/ultimaker_method_base.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/ultimaker_method_base.def.json b/resources/definitions/ultimaker_method_base.def.json index 2a925d90678..db9981e8896 100644 --- a/resources/definitions/ultimaker_method_base.def.json +++ b/resources/definitions/ultimaker_method_base.def.json @@ -433,4 +433,4 @@ "z_seam_type": { "value": "'sharpest_corner'" }, "zig_zaggify_infill": { "value": true } } -} +} \ No newline at end of file From 0a302d202a604a8001187089ce2aaadd6b5f83c9 Mon Sep 17 00:00:00 2001 From: Remco Burema <41987080+rburema@users.noreply.github.com> Date: Tue, 14 Nov 2023 08:48:35 +0100 Subject: [PATCH 116/765] Translations 5.6: Update Dutch to be consistent. ... with a daft decision that was made in the past. part of CURA-11300 Co-authored-by: Casper Lamboo --- resources/i18n/nl_NL/fdmprinter.def.json.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/resources/i18n/nl_NL/fdmprinter.def.json.po b/resources/i18n/nl_NL/fdmprinter.def.json.po index ed80c09d299..de1766f02ec 100644 --- a/resources/i18n/nl_NL/fdmprinter.def.json.po +++ b/resources/i18n/nl_NL/fdmprinter.def.json.po @@ -2514,19 +2514,19 @@ msgstr "Acceleratie Primepijler" msgctxt "prime_tower_brim_enable label" msgid "Prime Tower Base" -msgstr "Basis van de Prime Tower" +msgstr "Basis van de Primepijler" msgctxt "prime_tower_base_curve_magnitude label" msgid "Prime Tower Base Curve Magnitude" -msgstr "Krachtmagnitude van de basiscurve van de Prime Tower" +msgstr "Krachtmagnitude van de basiscurve van de Primepijler" msgctxt "prime_tower_base_height label" msgid "Prime Tower Base Height" -msgstr "Hoogte van de basis van de Prime Tower" +msgstr "Hoogte van de basis van de Primepijler" msgctxt "prime_tower_base_size label" msgid "Prime Tower Base Size" -msgstr "Grootte van de basis van de Prime Tower" +msgstr "Grootte van de basis van de Primepijler" msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" @@ -2546,7 +2546,7 @@ msgstr "Minimumvolume primepijler" msgctxt "prime_tower_raft_base_line_spacing label" msgid "Prime Tower Raft Line Spacing" -msgstr "Lijnafstand van het vlot van de Prime Tower" +msgstr "Lijnafstand van het vlot van de Primepijler" msgctxt "prime_tower_size label" msgid "Prime Tower Size" From c15e52399c131cb325217ed2004f32426dcf3f60 Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Tue, 14 Nov 2023 14:32:42 +0100 Subject: [PATCH 117/765] - Removed step correction from z shrinkage compensation for the Method X - Changed step size tfrom 0.2mm to 0.203mm for Method X - Added material compensations for ABS-R and ABS-CF - New resolve formula in fdmprinter.def.json to not use the shrinkage factors of support materials --- resources/definitions/fdmprinter.def.json | 6 +++--- resources/definitions/ultimaker_method_base.def.json | 1 - resources/definitions/ultimaker_methodxl.def.json | 1 - .../um_methodx_global_Draft_Quality.inst.cfg | 2 +- 4 files changed, 4 insertions(+), 6 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 0c6f101d0c1..54ab8760c72 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -2602,7 +2602,7 @@ "maximum_value_warning": "120", "settable_per_mesh": false, "settable_per_extruder": false, - "resolve": "sum(extruderValues(\"material_shrinkage_percentage\")) / len(extruderValues(\"material_shrinkage_percentage\"))", + "resolve": "max(extruderValues(\"material_shrinkage_percentage\")) if any(extruderValues('material_is_support_material')) else sum(extruderValues(\"material_shrinkage_percentage\")) / len(extruderValues(\"material_shrinkage_percentage\"))", "children": { "material_shrinkage_percentage_xy": @@ -2618,7 +2618,7 @@ "maximum_value_warning": "120", "settable_per_mesh": false, "settable_per_extruder": false, - "resolve": "sum(extruderValues(\"material_shrinkage_percentage_xy\")) / len(extruderValues(\"material_shrinkage_percentage_xy\"))", + "resolve": "max(extruderValues(\"material_shrinkage_percentage\")) if any(extruderValues('material_is_support_material')) else sum(extruderValues(\"material_shrinkage_percentage_xy\")) / len(extruderValues(\"material_shrinkage_percentage_xy\"))", "value": "material_shrinkage_percentage" }, "material_shrinkage_percentage_z": @@ -2634,7 +2634,7 @@ "maximum_value_warning": "120", "settable_per_mesh": false, "settable_per_extruder": false, - "resolve": "sum(extruderValues(\"material_shrinkage_percentage_z\")) / len(extruderValues(\"material_shrinkage_percentage_z\"))", + "resolve": "max(extruderValues(\"material_shrinkage_percentage_z\")) if any(extruderValues('material_is_support_material')) else sum(extruderValues(\"material_shrinkage_percentage_z\")) / len(extruderValues(\"material_shrinkage_percentage_z\"))", "value": "material_shrinkage_percentage" } } diff --git a/resources/definitions/ultimaker_method_base.def.json b/resources/definitions/ultimaker_method_base.def.json index db9981e8896..9e21396b878 100644 --- a/resources/definitions/ultimaker_method_base.def.json +++ b/resources/definitions/ultimaker_method_base.def.json @@ -337,7 +337,6 @@ "material_initial_print_temperature": { "value": "material_print_temperature-10" }, "material_print_temperature": { "value": "default_material_print_temperature" }, "material_shrinkage_percentage": { "enabled": true }, - "material_shrinkage_percentage_z": { "resolve": "0.9852*sum(extruderValues(\"material_shrinkage_percentage_z\")) / len(extruderValues(\"material_shrinkage_percentage_z\"))" }, "min_wall_line_width": { "value": 0.4 }, "minimum_support_area": { "value": 0.1 }, "multiple_mesh_overlap": { "value": 0 }, diff --git a/resources/definitions/ultimaker_methodxl.def.json b/resources/definitions/ultimaker_methodxl.def.json index 8eded9e7d0e..270379d6cd4 100644 --- a/resources/definitions/ultimaker_methodxl.def.json +++ b/resources/definitions/ultimaker_methodxl.def.json @@ -66,7 +66,6 @@ "machine_height": { "default_value": 320 }, "machine_name": { "default_value": "UltiMaker Method XL" }, "machine_width": { "default_value": 410 }, - "material_shrinkage_percentage_z": { "resolve": "sum(extruderValues(\"material_shrinkage_percentage_z\")) / len(extruderValues(\"material_shrinkage_percentage_z\"))" }, "prime_tower_position_x": { "value": "(305 - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_x'))), 1)) - (305 / 2)" }, "prime_tower_position_y": { "value": "305 - prime_tower_size - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (305 / 2)" }, "speed_travel": { "value": 500 } diff --git a/resources/quality/ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg index b6aa30b475f..bf35842e178 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg @@ -11,5 +11,5 @@ type = quality weight = -2 [values] -layer_height = 0.2 ## in reality this is 0.203, compensate this in the z scaling factor of the extruder +layer_height = 0.203 From 2c1f0fc58fcb6b6bd491d0acf6cb7a52a5c22bb5 Mon Sep 17 00:00:00 2001 From: Casper Lamboo Date: Tue, 14 Nov 2023 14:42:44 +0100 Subject: [PATCH 118/765] Apply suggestions from code review Co-authored-by: Remco Burema <41987080+rburema@users.noreply.github.com> --- resources/definitions/fdmextruder.def.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/definitions/fdmextruder.def.json b/resources/definitions/fdmextruder.def.json index f7cbfc5a2cb..006a6eac528 100644 --- a/resources/definitions/fdmextruder.def.json +++ b/resources/definitions/fdmextruder.def.json @@ -65,7 +65,7 @@ "machine_extruder_end_code_duration": { "default_value": 0, - "description": "Duration it takes to execute the end g-code when switching away from this extruder.", + "description": "The time it takes to execute the end g-code, when switching away from this extruder.", "label": "Extruder End G-Code Duration", "minimum_value": "0", "settable_globally": false, @@ -123,7 +123,7 @@ "machine_extruder_start_code_duration": { "default_value": 0, - "description": "Duration it takes to execute the start g-code to when switching away from this extruder.", + "description": "The time it'll take to execute the start g-code, when switching to this extruder.", "label": "Extruder Start G-Code Duration", "minimum_value": "0", "settable_globally": false, From 19089b84a36d1b15b720b7760525c74eeea2d980 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Tue, 14 Nov 2023 17:36:24 +0100 Subject: [PATCH 119/765] Upgrade SDK version --- cura/ApplicationMetadata.py | 2 +- resources/bundled_packages/cura.json | 222 +++++++++++++-------------- 2 files changed, 112 insertions(+), 112 deletions(-) diff --git a/cura/ApplicationMetadata.py b/cura/ApplicationMetadata.py index 9d399e7ad85..621f3b9ac1c 100644 --- a/cura/ApplicationMetadata.py +++ b/cura/ApplicationMetadata.py @@ -14,7 +14,7 @@ # Each release has a fixed SDK version coupled with it. It doesn't make sense to make it configurable because, for # example Cura 3.2 with SDK version 6.1 will not work. So the SDK version is hard-coded here and left out of the # CuraVersion.py.in template. -CuraSDKVersion = "8.5.0" +CuraSDKVersion = "8.6.0" try: from cura.CuraVersion import CuraLatestURL diff --git a/resources/bundled_packages/cura.json b/resources/bundled_packages/cura.json index 12ab219f308..6a499860d1f 100644 --- a/resources/bundled_packages/cura.json +++ b/resources/bundled_packages/cura.json @@ -6,7 +6,7 @@ "display_name": "3MF Reader", "description": "Provides support for reading 3MF files.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -23,7 +23,7 @@ "display_name": "3MF Writer", "description": "Provides support for writing 3MF files.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -40,7 +40,7 @@ "display_name": "AMF Reader", "description": "Provides support for reading AMF files.", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "fieldOfView", @@ -57,7 +57,7 @@ "display_name": "Cura Backups", "description": "Backup and restore your configuration.", "package_version": "1.2.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -74,7 +74,7 @@ "display_name": "CuraEngine Backend", "description": "Provides the link to the CuraEngine slicing backend.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -91,7 +91,7 @@ "display_name": "Cura Profile Reader", "description": "Provides support for importing Cura profiles.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -108,7 +108,7 @@ "display_name": "Cura Profile Writer", "description": "Provides support for exporting Cura profiles.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -125,7 +125,7 @@ "display_name": "Ultimaker Digital Library", "description": "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library.", "package_version": "1.1.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -142,7 +142,7 @@ "display_name": "Firmware Update Checker", "description": "Checks for firmware updates.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -159,7 +159,7 @@ "display_name": "Firmware Updater", "description": "Provides a machine actions for updating firmware.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -176,7 +176,7 @@ "display_name": "Compressed G-code Reader", "description": "Reads g-code from a compressed archive.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -193,7 +193,7 @@ "display_name": "Compressed G-code Writer", "description": "Writes g-code to a compressed archive.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -210,7 +210,7 @@ "display_name": "G-Code Profile Reader", "description": "Provides support for importing profiles from g-code files.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -227,7 +227,7 @@ "display_name": "G-Code Reader", "description": "Allows loading and displaying G-code files.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "VictorLarchenko", @@ -244,7 +244,7 @@ "display_name": "G-Code Writer", "description": "Writes g-code to a file.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -261,7 +261,7 @@ "display_name": "Image Reader", "description": "Enables ability to generate printable geometry from 2D image files.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -278,7 +278,7 @@ "display_name": "Legacy Cura Profile Reader", "description": "Provides support for importing profiles from legacy Cura versions.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -295,7 +295,7 @@ "display_name": "Machine Settings Action", "description": "Provides a way to change machine settings (such as build volume, nozzle size, etc.).", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "fieldOfView", @@ -312,7 +312,7 @@ "display_name": "Makerbot Printfile Writer", "description": "Provides support for writing MakerBot Format Packages.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -329,7 +329,7 @@ "display_name": "Model Checker", "description": "Checks models and print configuration for possible printing issues and give suggestions.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -346,7 +346,7 @@ "display_name": "Monitor Stage", "description": "Provides a monitor stage in Cura.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -363,7 +363,7 @@ "display_name": "Per-Object Settings Tool", "description": "Provides the per-model settings.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -380,7 +380,7 @@ "display_name": "Post Processing", "description": "Extension that allows for user created scripts for post processing.", "package_version": "2.2.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -397,7 +397,7 @@ "display_name": "Prepare Stage", "description": "Provides a prepare stage in Cura.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -414,7 +414,7 @@ "display_name": "Preview Stage", "description": "Provides a preview stage in Cura.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -431,7 +431,7 @@ "display_name": "Removable Drive Output Device", "description": "Provides removable drive hotplugging and writing support.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -448,7 +448,7 @@ "display_name": "Sentry Logger", "description": "Logs certain events so that they can be used by the crash reporter", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -465,7 +465,7 @@ "display_name": "Simulation View", "description": "Provides the Simulation view.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -482,7 +482,7 @@ "display_name": "Slice Info", "description": "Submits anonymous slice info. Can be disabled through preferences.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -499,7 +499,7 @@ "display_name": "Solid View", "description": "Provides a normal solid mesh view.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -516,7 +516,7 @@ "display_name": "Support Eraser Tool", "description": "Creates an eraser mesh to block the printing of support in certain places.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -533,7 +533,7 @@ "display_name": "Trimesh Reader", "description": "Provides support for reading model files.", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -550,7 +550,7 @@ "display_name": "Marketplace", "description": "Find, manage and install new Cura packages.", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -567,7 +567,7 @@ "display_name": "UFP Reader", "description": "Provides support for reading Ultimaker Format Packages.", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -584,7 +584,7 @@ "display_name": "UFP Writer", "description": "Provides support for writing Ultimaker Format Packages.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -601,7 +601,7 @@ "display_name": "Ultimaker Machine Actions", "description": "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.).", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -618,7 +618,7 @@ "display_name": "UM3 Network Printing", "description": "Manages network connections to Ultimaker 3 printers.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -635,7 +635,7 @@ "display_name": "USB Printing", "description": "Accepts G-Code and sends them to a printer. Plugin can also update firmware.", "package_version": "1.0.2", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -652,7 +652,7 @@ "display_name": "Version Upgrade 2.1 to 2.2", "description": "Upgrades configurations from Cura 2.1 to Cura 2.2.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -669,7 +669,7 @@ "display_name": "Version Upgrade 2.2 to 2.4", "description": "Upgrades configurations from Cura 2.2 to Cura 2.4.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -686,7 +686,7 @@ "display_name": "Version Upgrade 2.5 to 2.6", "description": "Upgrades configurations from Cura 2.5 to Cura 2.6.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -703,7 +703,7 @@ "display_name": "Version Upgrade 2.6 to 2.7", "description": "Upgrades configurations from Cura 2.6 to Cura 2.7.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -720,7 +720,7 @@ "display_name": "Version Upgrade 2.7 to 3.0", "description": "Upgrades configurations from Cura 2.7 to Cura 3.0.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -737,7 +737,7 @@ "display_name": "Version Upgrade 3.0 to 3.1", "description": "Upgrades configurations from Cura 3.0 to Cura 3.1.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -754,7 +754,7 @@ "display_name": "Version Upgrade 3.2 to 3.3", "description": "Upgrades configurations from Cura 3.2 to Cura 3.3.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -771,7 +771,7 @@ "display_name": "Version Upgrade 3.3 to 3.4", "description": "Upgrades configurations from Cura 3.3 to Cura 3.4.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -788,7 +788,7 @@ "display_name": "Version Upgrade 3.4 to 3.5", "description": "Upgrades configurations from Cura 3.4 to Cura 3.5.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -805,7 +805,7 @@ "display_name": "Version Upgrade 3.5 to 4.0", "description": "Upgrades configurations from Cura 3.5 to Cura 4.0.", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -822,7 +822,7 @@ "display_name": "Version Upgrade 4.0 to 4.1", "description": "Upgrades configurations from Cura 4.0 to Cura 4.1.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -839,7 +839,7 @@ "display_name": "Version Upgrade 4.1 to 4.2", "description": "Upgrades configurations from Cura 4.1 to Cura 4.2.", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -856,7 +856,7 @@ "display_name": "Version Upgrade 4.2 to 4.3", "description": "Upgrades configurations from Cura 4.2 to Cura 4.3.", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -873,7 +873,7 @@ "display_name": "Version Upgrade 4.3 to 4.4", "description": "Upgrades configurations from Cura 4.3 to Cura 4.4.", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -890,7 +890,7 @@ "display_name": "Version Upgrade 4.4 to 4.5", "description": "Upgrades configurations from Cura 4.4 to Cura 4.5.", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -907,7 +907,7 @@ "display_name": "Version Upgrade 4.5 to 4.6", "description": "Upgrades configurations from Cura 4.5 to Cura 4.6.", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -924,7 +924,7 @@ "display_name": "Version Upgrade 4.6.0 to 4.6.2", "description": "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2.", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -941,7 +941,7 @@ "display_name": "Version Upgrade 4.6.2 to 4.7", "description": "Upgrades configurations from Cura 4.6.2 to Cura 4.7.", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -958,7 +958,7 @@ "display_name": "Version Upgrade 4.7.0 to 4.8.0", "description": "Upgrades configurations from Cura 4.7.0 to Cura 4.8.0", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -975,7 +975,7 @@ "display_name": "Version Upgrade 4.8.0 to 4.9.0", "description": "Upgrades configurations from Cura 4.8.0 to Cura 4.9.0", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -992,7 +992,7 @@ "display_name": "Version Upgrade 4.9 to 4.10", "description": "Upgrades configurations from Cura 4.9 to Cura 4.10", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -1009,7 +1009,7 @@ "display_name": "Version Upgrade 4.11 to 4.12", "description": "Upgrades configurations from Cura 4.11 to Cura 4.12", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "sdk_version_semver": "7.7.0", "website": "https://ultimaker.com", "author": { @@ -1027,7 +1027,7 @@ "display_name": "Version Upgrade 4.13 to 5.0", "description": "Upgrades configurations from Cura 4.13 to Cura 5.0", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -1044,7 +1044,7 @@ "display_name": "Version Upgrade 5.2 to 5.3", "description": "Upgrades configurations from Cura 5.2 to Cura 5.3", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -1061,7 +1061,7 @@ "display_name": "X3D Reader", "description": "Provides support for reading X3D files.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "SevaAlekseyev", @@ -1078,7 +1078,7 @@ "display_name": "XML Material Profiles", "description": "Provides capabilities to read and write XML-based material profiles.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -1095,7 +1095,7 @@ "display_name": "X-Ray View", "description": "Provides the X-Ray view.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -1112,7 +1112,7 @@ "display_name": "Generic ABS", "description": "The generic ABS profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1130,7 +1130,7 @@ "display_name": "Generic BAM", "description": "The generic BAM profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1148,7 +1148,7 @@ "display_name": "Generic CFF CPE", "description": "The generic CFF CPE profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1166,7 +1166,7 @@ "display_name": "Generic CFF PA", "description": "The generic CFF PA profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1184,7 +1184,7 @@ "display_name": "Generic CPE", "description": "The generic CPE profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1202,7 +1202,7 @@ "display_name": "Generic CPE+", "description": "The generic CPE+ profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1220,7 +1220,7 @@ "display_name": "Generic GFF CPE", "description": "The generic GFF CPE profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1238,7 +1238,7 @@ "display_name": "Generic GFF PA", "description": "The generic GFF PA profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1256,7 +1256,7 @@ "display_name": "Generic HIPS", "description": "The generic HIPS profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1274,7 +1274,7 @@ "display_name": "Generic Nylon", "description": "The generic Nylon profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1292,7 +1292,7 @@ "display_name": "Generic PC", "description": "The generic PC profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1310,7 +1310,7 @@ "display_name": "Generic PETG", "description": "The generic PETG profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1328,7 +1328,7 @@ "display_name": "Generic PLA", "description": "The generic PLA profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1346,7 +1346,7 @@ "display_name": "Generic PP", "description": "The generic PP profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1364,7 +1364,7 @@ "display_name": "Generic PVA", "description": "The generic PVA profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1382,7 +1382,7 @@ "display_name": "Generic Tough PLA", "description": "The generic Tough PLA profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1400,7 +1400,7 @@ "display_name": "Generic TPU", "description": "The generic TPU profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1418,7 +1418,7 @@ "display_name": "Dagoma Chromatik PLA", "description": "Filament testé et approuvé pour les imprimantes 3D Dagoma. Chromatik est l'idéal pour débuter et suivre les tutoriels premiers pas. Il vous offre qualité et résistance pour chacune de vos impressions.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://dagoma.fr/boutique/filaments.html", "author": { "author_id": "Dagoma", @@ -1435,7 +1435,7 @@ "display_name": "FABtotum ABS", "description": "This material is easy to be extruded but it is not the simplest to use. It is one of the most used in 3D printing to get very well finished objects. It is not sustainable and its smoke can be dangerous if inhaled. The reason to prefer this filament to PLA is mainly because of its precision and mechanical specs. ABS (for plastic) stands for Acrylonitrile Butadiene Styrene and it is a thermoplastic which is widely used in everyday objects. It can be printed with any FFF 3D printer which can get to high temperatures as it must be extruded in a range between 220° and 245°, so it’s compatible with all versions of the FABtotum Personal fabricator.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=40", "author": { "author_id": "FABtotum", @@ -1452,7 +1452,7 @@ "display_name": "FABtotum Nylon", "description": "When 3D printing started this material was not listed among the extrudable filaments. It is flexible as well as resistant to tractions. It is well known for its uses in textile but also in industries which require a strong and flexible material. There are different kinds of Nylon: 3D printing mostly uses Nylon 6 and Nylon 6.6, which are the most common. It requires higher temperatures to be printed, so a 3D printer must be able to reach them (around 240°C): the FABtotum, of course, can.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=53", "author": { "author_id": "FABtotum", @@ -1469,7 +1469,7 @@ "display_name": "FABtotum PLA", "description": "It is the most common filament used for 3D printing. It is studied to be bio-degradable as it comes from corn starch’s sugar mainly. It is completely made of renewable sources and has no footprint on polluting. PLA stands for PolyLactic Acid and it is a thermoplastic that today is still considered the easiest material to be 3D printed. It can be extruded at lower temperatures: the standard range of FABtotum’s one is between 185° and 195°.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=39", "author": { "author_id": "FABtotum", @@ -1486,7 +1486,7 @@ "display_name": "FABtotum TPU Shore 98A", "description": "", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=66", "author": { "author_id": "FABtotum", @@ -1503,7 +1503,7 @@ "display_name": "Fiberlogy HD PLA", "description": "With our HD PLA you have many more options. You can use this material in two ways. Choose the one you like best. You can use it as a normal PLA and get prints characterized by a very good adhesion between the layers and high precision. You can also make your prints acquire similar properties to that of ABS – better impact resistance and high temperature resistance. All you need is an oven. Yes, an oven! By annealing our HD PLA in an oven, in accordance with the manual, you will avoid all the inconveniences of printing with ABS, such as unpleasant odour or hazardous fumes.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "http://fiberlogy.com/en/fiberlogy-filaments/filament-hd-pla/", "author": { "author_id": "Fiberlogy", @@ -1520,7 +1520,7 @@ "display_name": "Filo3D PLA", "description": "Fast, safe and reliable printing. PLA is ideal for the fast and reliable printing of parts and prototypes with a great surface quality.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://dagoma.fr", "author": { "author_id": "Dagoma", @@ -1537,7 +1537,7 @@ "display_name": "IMADE3D JellyBOX PETG", "description": "", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "http://shop.imade3d.com/filament.html", "author": { "author_id": "IMADE3D", @@ -1554,7 +1554,7 @@ "display_name": "IMADE3D JellyBOX PLA", "description": "", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "http://shop.imade3d.com/filament.html", "author": { "author_id": "IMADE3D", @@ -1571,7 +1571,7 @@ "display_name": "Octofiber PLA", "description": "PLA material from Octofiber.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://nl.octofiber.com/3d-printing-filament/pla.html", "author": { "author_id": "Octofiber", @@ -1588,7 +1588,7 @@ "display_name": "PolyFlex™ PLA", "description": "PolyFlex™ is a highly flexible yet easy to print 3D printing material. Featuring good elasticity and a large strain-to- failure, PolyFlex™ opens up a completely new realm of applications.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "http://www.polymaker.com/shop/polyflex/", "author": { "author_id": "Polymaker", @@ -1605,7 +1605,7 @@ "display_name": "PolyMax™ PLA", "description": "PolyMax™ PLA is a 3D printing material with excellent mechanical properties and printing quality. PolyMax™ PLA has an impact resistance of up to nine times that of regular PLA, and better overall mechanical properties than ABS.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "http://www.polymaker.com/shop/polymax/", "author": { "author_id": "Polymaker", @@ -1622,7 +1622,7 @@ "display_name": "PolyPlus™ PLA True Colour", "description": "PolyPlus™ PLA is a premium PLA designed for all desktop FDM/FFF 3D printers. It is produced with our patented Jam-Free™ technology that ensures consistent extrusion and prevents jams.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "http://www.polymaker.com/shop/polyplus-true-colour/", "author": { "author_id": "Polymaker", @@ -1639,7 +1639,7 @@ "display_name": "PolyWood™ PLA", "description": "PolyWood™ is a wood mimic printing material that contains no actual wood ensuring a clean Jam-Free™ printing experience.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "http://www.polymaker.com/shop/polywood/", "author": { "author_id": "Polymaker", @@ -1656,7 +1656,7 @@ "display_name": "Ultimaker ABS", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com/products/materials/abs", "author": { "author_id": "UltimakerPackages", @@ -1675,7 +1675,7 @@ "display_name": "Ultimaker Breakaway", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com/products/materials/breakaway", "author": { "author_id": "UltimakerPackages", @@ -1694,7 +1694,7 @@ "display_name": "Ultimaker CPE", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com/products/materials/abs", "author": { "author_id": "UltimakerPackages", @@ -1713,7 +1713,7 @@ "display_name": "Ultimaker CPE+", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com/products/materials/cpe", "author": { "author_id": "UltimakerPackages", @@ -1732,7 +1732,7 @@ "display_name": "Ultimaker Nylon", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com/products/materials/abs", "author": { "author_id": "UltimakerPackages", @@ -1751,7 +1751,7 @@ "display_name": "Ultimaker PC", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com/products/materials/pc", "author": { "author_id": "UltimakerPackages", @@ -1770,7 +1770,7 @@ "display_name": "Ultimaker PLA", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com/products/materials/abs", "author": { "author_id": "UltimakerPackages", @@ -1789,7 +1789,7 @@ "display_name": "Ultimaker PP", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com/products/materials/pp", "author": { "author_id": "UltimakerPackages", @@ -1808,7 +1808,7 @@ "display_name": "Ultimaker PVA", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com/products/materials/abs", "author": { "author_id": "UltimakerPackages", @@ -1827,7 +1827,7 @@ "display_name": "Ultimaker TPU 95A", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com/products/materials/tpu-95a", "author": { "author_id": "UltimakerPackages", @@ -1846,7 +1846,7 @@ "display_name": "Ultimaker Tough PLA", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com/products/materials/tough-pla", "author": { "author_id": "UltimakerPackages", @@ -1865,7 +1865,7 @@ "display_name": "Vertex Delta ABS", "description": "ABS material and quality files for the Delta Vertex K8800.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://vertex3dprinter.eu", "author": { "author_id": "Velleman", @@ -1882,7 +1882,7 @@ "display_name": "Vertex Delta PET", "description": "ABS material and quality files for the Delta Vertex K8800.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://vertex3dprinter.eu", "author": { "author_id": "Velleman", @@ -1899,7 +1899,7 @@ "display_name": "Vertex Delta PLA", "description": "ABS material and quality files for the Delta Vertex K8800.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://vertex3dprinter.eu", "author": { "author_id": "Velleman", @@ -1916,7 +1916,7 @@ "display_name": "Vertex Delta TPU", "description": "ABS material and quality files for the Delta Vertex K8800.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://vertex3dprinter.eu", "author": { "author_id": "Velleman", From a7490274d2d7ffd860cf2cd8d4c0f092031819ac Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Wed, 15 Nov 2023 10:43:20 +0100 Subject: [PATCH 120/765] Tiny improvement to 5.6 changelog text. part of CURA-11258 --- resources/texts/change_log.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/texts/change_log.txt b/resources/texts/change_log.txt index 56a8509e566..50aee251e8a 100644 --- a/resources/texts/change_log.txt +++ b/resources/texts/change_log.txt @@ -4,7 +4,7 @@ - Introduced the MethodX and MethodXL printers with their materials and the option to write to .makerbot - Prime tower base settings increase the stability of large prime towers; You can tune the Size, Height, and Slope to increase your prime tower sturdiness - Introduced the setting for Raft Line Spacing, but for the primetower -- The Start and End gcodes now accept variables and math including the variables +- The Start and End gcodes now accept variables, and math including those variables - Updated the Support Z Distance to allow for more different values, no longer only multiple layerheights * Bug fixes: From 2ec70cb6b7837d30560bcb74e2942bbb9ed0c5f1 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Wed, 15 Nov 2023 11:11:56 +0100 Subject: [PATCH 121/765] Pin release versions to 5.6.0-beta.1 Contributes to CURA-11269 --- conanfile.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/conanfile.py b/conanfile.py index 20ded4bc3c2..da9029641f4 100644 --- a/conanfile.py +++ b/conanfile.py @@ -318,19 +318,19 @@ def requirements(self): self.requires("curaengine_grpc_definitions/0.1.0") self.requires("zlib/1.2.13") self.requires("pyarcus/5.3.0") - self.requires("dulcificum/(latest)@ultimaker/stable") - self.requires("curaengine/(latest)@ultimaker/stable") + self.requires("dulcificum/0.1.0-beta.1") + self.requires("curaengine/5.6.0-beta.1") self.requires("pysavitar/5.3.0") self.requires("pynest2d/5.3.0") self.requires("curaengine_plugin_gradual_flow/0.1.0") - self.requires("uranium/(latest)@ultimaker/stable") - self.requires("cura_binary_data/(latest)@ultimaker/stable") + self.requires("uranium/5.6.0-beta.1") + self.requires("cura_binary_data/5.6.0-beta.1") self.requires("cpython/3.10.4") if self.options.internal: self.requires("cura_private_data/(latest)@internal/testing") self.requires("fdm_materials/(latest)@internal/testing") else: - self.requires("fdm_materials/(latest)@ultimaker/stable") + self.requires("fdm_materials/5.6.0-beta.1") def build_requirements(self): if self.options.get_safe("enable_i18n", False): From 1c3fb2a79b8fe96186b9dca2e045da33b31a1edb Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Wed, 15 Nov 2023 13:29:56 +0100 Subject: [PATCH 122/765] Generated additional 5.6 i18n strings. part of CURA-11300 --- resources/i18n/cs_CZ/fdmprinter.def.json.po | 24 +++++----- resources/i18n/de_DE/fdmprinter.def.json.po | 50 ++++++++++++++------- resources/i18n/es_ES/fdmprinter.def.json.po | 50 ++++++++++++++------- resources/i18n/fdmprinter.def.json.pot | 12 ++--- resources/i18n/fi_FI/fdmprinter.def.json.po | 24 +++++----- resources/i18n/fr_FR/fdmprinter.def.json.po | 50 ++++++++++++++------- resources/i18n/hu_HU/fdmprinter.def.json.po | 24 +++++----- resources/i18n/it_IT/fdmprinter.def.json.po | 50 ++++++++++++++------- resources/i18n/ja_JP/fdmprinter.def.json.po | 50 ++++++++++++++------- resources/i18n/ko_KR/fdmprinter.def.json.po | 50 ++++++++++++++------- resources/i18n/nl_NL/fdmprinter.def.json.po | 50 ++++++++++++++------- resources/i18n/pl_PL/fdmprinter.def.json.po | 24 +++++----- resources/i18n/pt_BR/fdmprinter.def.json.po | 24 +++++----- resources/i18n/pt_PT/fdmprinter.def.json.po | 50 ++++++++++++++------- resources/i18n/ru_RU/fdmprinter.def.json.po | 50 ++++++++++++++------- resources/i18n/tr_TR/fdmprinter.def.json.po | 50 ++++++++++++++------- resources/i18n/zh_CN/fdmprinter.def.json.po | 50 ++++++++++++++------- resources/i18n/zh_TW/fdmprinter.def.json.po | 24 +++++----- 18 files changed, 463 insertions(+), 243 deletions(-) diff --git a/resources/i18n/cs_CZ/fdmprinter.def.json.po b/resources/i18n/cs_CZ/fdmprinter.def.json.po index 3605434a323..b1ebf34fa27 100644 --- a/resources/i18n/cs_CZ/fdmprinter.def.json.po +++ b/resources/i18n/cs_CZ/fdmprinter.def.json.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-10-31 19:13+0000\n" +"POT-Creation-Date: 2023-11-15 12:26+0000\n" "PO-Revision-Date: 2023-02-16 20:35+0100\n" "Last-Translator: Miroslav Šustek \n" "Language-Team: DenyCZ \n" @@ -461,6 +461,10 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "Teplota sestavení" +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "" + msgctxt "center_object label" msgid "Center Object" msgstr "Centrovat objekt" @@ -2519,10 +2523,6 @@ msgctxt "prime_tower_brim_enable label" msgid "Prime Tower Base" msgstr "" -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Curve Magnitude" -msgstr "" - msgctxt "prime_tower_base_height label" msgid "Prime Tower Base Height" msgstr "" @@ -2531,6 +2531,10 @@ msgctxt "prime_tower_base_size label" msgid "Prime Tower Base Size" msgstr "" +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "" + msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" msgstr "Průtok u hlavní věžě" @@ -2567,10 +2571,6 @@ msgctxt "prime_tower_position_y label" msgid "Prime Tower Y Position" msgstr "Pozice Y hlavní věže" -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -msgstr "" - msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Akcelerace tisku" @@ -3988,7 +3988,7 @@ msgid "The height of the initial layer in mm. A thicker initial layer makes adhe msgstr "Výška počáteční vrstvy v mm. Silnější počáteční vrstva usnadňuje přilnavost k montážní desce." msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base." +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." msgstr "" msgctxt "support_bottom_stair_step_height description" @@ -4064,7 +4064,7 @@ msgid "The length of material retracted during a retraction move." msgstr "Délka materiálu zasunutého během pohybu zasunutí." msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the curve of the prime tower foot." +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." msgstr "" msgctxt "machine_buildplate_type description" @@ -4700,7 +4700,7 @@ msgid "The width of the interlocking structure beams." msgstr "Šířka paprsků vzájemného propletení." msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower base." +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." msgstr "" msgctxt "prime_tower_size description" diff --git a/resources/i18n/de_DE/fdmprinter.def.json.po b/resources/i18n/de_DE/fdmprinter.def.json.po index 51e9189dec9..7cebd8c3126 100644 --- a/resources/i18n/de_DE/fdmprinter.def.json.po +++ b/resources/i18n/de_DE/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-10-31 19:13+0000\n" +"POT-Creation-Date: 2023-11-15 12:26+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -456,6 +456,10 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "Temperatur Druckabmessung" +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "" + msgctxt "center_object label" msgid "Center Object" msgstr "Objekt zentrieren" @@ -2516,10 +2520,6 @@ msgctxt "prime_tower_brim_enable label" msgid "Prime Tower Base" msgstr "Grundfläche des Prime-Turms" -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Curve Magnitude" -msgstr "Krümmungsstärke der Prime-Turm-Basis" - msgctxt "prime_tower_base_height label" msgid "Prime Tower Base Height" msgstr "Höhe der Prime-Turm-Basis" @@ -2528,6 +2528,10 @@ msgctxt "prime_tower_base_size label" msgid "Prime Tower Base Size" msgstr "Größe der Prime-Turm-Basis" +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "" + msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" msgstr "Fluss Einzugsturm" @@ -2564,10 +2568,6 @@ msgctxt "prime_tower_position_y label" msgid "Prime Tower Y Position" msgstr "Y-Position des Einzugsturms" -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -msgstr "Prime-Türme benötigen möglicherweise die zusätzliche Haftung durch einen Rand oder ein Floß, selbst wenn das Modell dies nicht tut." - msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Beschleunigung Druck" @@ -3985,8 +3985,8 @@ msgid "The height of the initial layer in mm. A thicker initial layer makes adhe msgstr "Die Dicke der ersten Schicht in mm. Eine dicke erste Schicht erleichtert die Haftung am Druckbett." msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base." -msgstr "Die Höhe der Prime-Turm-Basis." +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "" msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." @@ -4061,8 +4061,8 @@ msgid "The length of material retracted during a retraction move." msgstr "Die Länge des Materials, das während der Einzugsbewegung eingezogen wird." msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the curve of the prime tower foot." -msgstr "Der Größenfaktor, der für die Kurve des Prime-Turm-Fußes verwendet wird." +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "" msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." @@ -4697,8 +4697,8 @@ msgid "The width of the interlocking structure beams." msgstr "Die Breite der Balken in der ineinandergreifenden Struktur." msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower base." -msgstr "Die Breite der Prime-Turm-Basis." +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "" msgctxt "prime_tower_size description" msgid "The width of the prime tower." @@ -5532,6 +5532,10 @@ msgstr "Bewegungen" #~ msgid "Minimum speed for gradual flow changes for the first layer" #~ msgstr "Mindestgeschwindigkeit für stufenweise Änderung des Flusses in der ersten Schicht" +#~ msgctxt "prime_tower_base_curve_magnitude label" +#~ msgid "Prime Tower Base Curve Magnitude" +#~ msgstr "Krümmungsstärke der Prime-Turm-Basis" + #~ msgctxt "prime_tower_brim_enable label" #~ msgid "Prime Tower Brim" #~ msgstr "Brim Einzugsturm" @@ -5540,10 +5544,26 @@ msgstr "Bewegungen" #~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." #~ msgstr "Einzugstürme benötigen möglicherweise zusätzliche Haftung in Form eines Brims, auch wenn das Modell selbst dies nicht benötigt. Kann derzeit nicht mit dem „Raft“-Haftungstyp verwendet werden." +#~ msgctxt "prime_tower_brim_enable description" +#~ msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." +#~ msgstr "Prime-Türme benötigen möglicherweise die zusätzliche Haftung durch einen Rand oder ein Floß, selbst wenn das Modell dies nicht tut." + #~ msgctxt "reset_flow_duration label" #~ msgid "Reset flow duration" #~ msgstr "Flussdauer zurücksetzen" +#~ msgctxt "prime_tower_base_height description" +#~ msgid "The height of the prime tower base." +#~ msgstr "Die Höhe der Prime-Turm-Basis." + +#~ msgctxt "prime_tower_base_curve_magnitude description" +#~ msgid "The magnitude factor used for the curve of the prime tower foot." +#~ msgstr "Der Größenfaktor, der für die Kurve des Prime-Turm-Fußes verwendet wird." + #~ msgctxt "material_print_temperature_layer_0 description" #~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." #~ msgstr "Die Temperatur, die für das Drucken der ersten Schicht verwendet wird. Wählen Sie hier 0, um eine spezielle Behandlung der ersten Schicht zu deaktivieren." + +#~ msgctxt "prime_tower_base_size description" +#~ msgid "The width of the prime tower base." +#~ msgstr "Die Breite der Prime-Turm-Basis." diff --git a/resources/i18n/es_ES/fdmprinter.def.json.po b/resources/i18n/es_ES/fdmprinter.def.json.po index 1656506cba9..913b77793f2 100644 --- a/resources/i18n/es_ES/fdmprinter.def.json.po +++ b/resources/i18n/es_ES/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-10-31 19:13+0000\n" +"POT-Creation-Date: 2023-11-15 12:26+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -456,6 +456,10 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "Temperatura de volumen de impresión" +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "" + msgctxt "center_object label" msgid "Center Object" msgstr "Centrar objeto" @@ -2516,10 +2520,6 @@ msgctxt "prime_tower_brim_enable label" msgid "Prime Tower Base" msgstr "Base de la torre de cebado" -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Curve Magnitude" -msgstr "Magnitud de la curva de la base de la torre de cebado" - msgctxt "prime_tower_base_height label" msgid "Prime Tower Base Height" msgstr "Altura de la base de la torre de cebado" @@ -2528,6 +2528,10 @@ msgctxt "prime_tower_base_size label" msgid "Prime Tower Base Size" msgstr "Tamaño de la base de la torre de cebado" +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "" + msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" msgstr "Flujo de la torre auxiliar" @@ -2564,10 +2568,6 @@ msgctxt "prime_tower_position_y label" msgid "Prime Tower Y Position" msgstr "Posición de la torre auxiliar sobre el eje Y" -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -msgstr "Las torres de cebado pueden necesitar la adhesión extra que proporciona un borde o raft, incluso si el modelo no lo necesita." - msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Aceleración de la impresión" @@ -3985,8 +3985,8 @@ msgid "The height of the initial layer in mm. A thicker initial layer makes adhe msgstr "Altura de capa inicial en mm. Una capa inicial más gruesa se adhiere a la placa de impresión con mayor facilidad." msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base." -msgstr "La altura de la base de la torre de cebado." +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "" msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." @@ -4061,8 +4061,8 @@ msgid "The length of material retracted during a retraction move." msgstr "Longitud del material retraído durante un movimiento de retracción." msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the curve of the prime tower foot." -msgstr "El factor de magnitud utilizado para la curva del pie de la torre de cebado." +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "" msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." @@ -4697,8 +4697,8 @@ msgid "The width of the interlocking structure beams." msgstr "El ancho de los haces de la estructura entrelazada." msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower base." -msgstr "El ancho de la base de la torre de cebado." +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "" msgctxt "prime_tower_size description" msgid "The width of the prime tower." @@ -5532,6 +5532,10 @@ msgstr "desplazamiento" #~ msgid "Minimum speed for gradual flow changes for the first layer" #~ msgstr "Velocidad mínima para los cambios de flujo graduales de la primera capa" +#~ msgctxt "prime_tower_base_curve_magnitude label" +#~ msgid "Prime Tower Base Curve Magnitude" +#~ msgstr "Magnitud de la curva de la base de la torre de cebado" + #~ msgctxt "prime_tower_brim_enable label" #~ msgid "Prime Tower Brim" #~ msgstr "Borde de la torre auxiliar" @@ -5540,10 +5544,26 @@ msgstr "desplazamiento" #~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." #~ msgstr "Puede que las torres auxiliares necesiten la adherencia adicional que proporciona un borde, aunque no sea requisito del modelo. Actualmente, no se puede usar con el tipo de adherencia «balsa»." +#~ msgctxt "prime_tower_brim_enable description" +#~ msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." +#~ msgstr "Las torres de cebado pueden necesitar la adhesión extra que proporciona un borde o raft, incluso si el modelo no lo necesita." + #~ msgctxt "reset_flow_duration label" #~ msgid "Reset flow duration" #~ msgstr "Restablecer duración del flujo" +#~ msgctxt "prime_tower_base_height description" +#~ msgid "The height of the prime tower base." +#~ msgstr "La altura de la base de la torre de cebado." + +#~ msgctxt "prime_tower_base_curve_magnitude description" +#~ msgid "The magnitude factor used for the curve of the prime tower foot." +#~ msgstr "El factor de magnitud utilizado para la curva del pie de la torre de cebado." + #~ msgctxt "material_print_temperature_layer_0 description" #~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." #~ msgstr "Temperatura que se usa para imprimir la primera capa. Se ajusta a 0 para desactivar la manipulación especial de la capa inicial." + +#~ msgctxt "prime_tower_base_size description" +#~ msgid "The width of the prime tower base." +#~ msgstr "El ancho de la base de la torre de cebado." diff --git a/resources/i18n/fdmprinter.def.json.pot b/resources/i18n/fdmprinter.def.json.pot index ec906fc71b3..89baef79414 100644 --- a/resources/i18n/fdmprinter.def.json.pot +++ b/resources/i18n/fdmprinter.def.json.pot @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-10-31 19:13+0000\n" +"POT-Creation-Date: 2023-11-15 12:26+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -4337,7 +4337,7 @@ msgid "Prime Tower Base" msgstr "" msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." msgstr "" msgctxt "prime_tower_base_size label" @@ -4345,7 +4345,7 @@ msgid "Prime Tower Base Size" msgstr "" msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower base." +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." msgstr "" msgctxt "prime_tower_base_height label" @@ -4353,15 +4353,15 @@ msgid "Prime Tower Base Height" msgstr "" msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base." +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." msgstr "" msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Curve Magnitude" +msgid "Prime Tower Base Slope" msgstr "" msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the curve of the prime tower foot." +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." msgstr "" msgctxt "prime_tower_raft_base_line_spacing label" diff --git a/resources/i18n/fi_FI/fdmprinter.def.json.po b/resources/i18n/fi_FI/fdmprinter.def.json.po index e38e6b1af5b..fff8528d166 100644 --- a/resources/i18n/fi_FI/fdmprinter.def.json.po +++ b/resources/i18n/fi_FI/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-10-31 19:13+0000\n" +"POT-Creation-Date: 2023-11-15 12:26+0000\n" "PO-Revision-Date: 2022-07-15 11:17+0200\n" "Last-Translator: Bothof \n" "Language-Team: Finnish\n" @@ -458,6 +458,10 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "" +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "" + msgctxt "center_object label" msgid "Center Object" msgstr "" @@ -2514,10 +2518,6 @@ msgctxt "prime_tower_brim_enable label" msgid "Prime Tower Base" msgstr "" -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Curve Magnitude" -msgstr "" - msgctxt "prime_tower_base_height label" msgid "Prime Tower Base Height" msgstr "" @@ -2526,6 +2526,10 @@ msgctxt "prime_tower_base_size label" msgid "Prime Tower Base Size" msgstr "" +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "" + msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" msgstr "Esitäyttötornin virtaus" @@ -2562,10 +2566,6 @@ msgctxt "prime_tower_position_y label" msgid "Prime Tower Y Position" msgstr "Esitäyttötornin Y-sijainti" -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -msgstr "" - msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Tulostuksen kiihtyvyys" @@ -3983,7 +3983,7 @@ msgid "The height of the initial layer in mm. A thicker initial layer makes adhe msgstr "Alkukerroksen korkeus milleinä. Paksumpi alkukerros helpottaa alustaan kiinnittymistä." msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base." +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." msgstr "" msgctxt "support_bottom_stair_step_height description" @@ -4057,7 +4057,7 @@ msgid "The length of material retracted during a retraction move." msgstr "Takaisinvedon yhteydessä sisään vedettävän materiaalin pituus." msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the curve of the prime tower foot." +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." msgstr "" msgctxt "machine_buildplate_type description" @@ -4693,7 +4693,7 @@ msgid "The width of the interlocking structure beams." msgstr "Esitäyttötornin leveys." msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower base." +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." msgstr "" msgctxt "prime_tower_size description" diff --git a/resources/i18n/fr_FR/fdmprinter.def.json.po b/resources/i18n/fr_FR/fdmprinter.def.json.po index ec26a991288..59714e01472 100644 --- a/resources/i18n/fr_FR/fdmprinter.def.json.po +++ b/resources/i18n/fr_FR/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-10-31 19:13+0000\n" +"POT-Creation-Date: 2023-11-15 12:26+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -456,6 +456,10 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "Température du volume d'impression" +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "" + msgctxt "center_object label" msgid "Center Object" msgstr "Centrer l'objet" @@ -2516,10 +2520,6 @@ msgctxt "prime_tower_brim_enable label" msgid "Prime Tower Base" msgstr "Base de la tour de prime" -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Curve Magnitude" -msgstr "Amplitude de la courbe de base de la tour de prime" - msgctxt "prime_tower_base_height label" msgid "Prime Tower Base Height" msgstr "Hauteur de la base de la tour de prime" @@ -2528,6 +2528,10 @@ msgctxt "prime_tower_base_size label" msgid "Prime Tower Base Size" msgstr "Taille de la base de la tour de prime" +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "" + msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" msgstr "Débit de la tour d'amorçage" @@ -2564,10 +2568,6 @@ msgctxt "prime_tower_position_y label" msgid "Prime Tower Y Position" msgstr "Position Y de la tour d'amorçage" -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -msgstr "Les tours de prime pourraient nécessiter l'adhésion supplémentaire offerte par un bord ou un radeau, même si le modèle n'en a pas besoin." - msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Accélération de l'impression" @@ -3985,8 +3985,8 @@ msgid "The height of the initial layer in mm. A thicker initial layer makes adhe msgstr "La hauteur de la couche initiale en mm. Une couche initiale plus épaisse adhère plus facilement au plateau." msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base." -msgstr "La hauteur de la base de la tour de prime." +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "" msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." @@ -4061,8 +4061,8 @@ msgid "The length of material retracted during a retraction move." msgstr "La longueur de matériau rétracté pendant une rétraction." msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the curve of the prime tower foot." -msgstr "Le facteur d'amplitude utilisé pour la courbe du pied de la tour de prime." +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "" msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." @@ -4697,8 +4697,8 @@ msgid "The width of the interlocking structure beams." msgstr "La largeur des attaches de la structure de connexion." msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower base." -msgstr "La largeur de la base de la tour de prime." +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "" msgctxt "prime_tower_size description" msgid "The width of the prime tower." @@ -5532,6 +5532,10 @@ msgstr "déplacement" #~ msgid "Minimum speed for gradual flow changes for the first layer" #~ msgstr "Vitesse minimale des changements de débit progressifs pour la première couche" +#~ msgctxt "prime_tower_base_curve_magnitude label" +#~ msgid "Prime Tower Base Curve Magnitude" +#~ msgstr "Amplitude de la courbe de base de la tour de prime" + #~ msgctxt "prime_tower_brim_enable label" #~ msgid "Prime Tower Brim" #~ msgstr "Bordure de la tour d'amorçage" @@ -5540,10 +5544,26 @@ msgstr "déplacement" #~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." #~ msgstr "Les tours d'amorçage peuvent avoir besoin de l'adhérence supplémentaire d'une bordure, même si le modèle n'en a pas besoin. Ne peut actuellement pas être utilisé avec le type d'adhérence « Raft » (radeau)." +#~ msgctxt "prime_tower_brim_enable description" +#~ msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." +#~ msgstr "Les tours de prime pourraient nécessiter l'adhésion supplémentaire offerte par un bord ou un radeau, même si le modèle n'en a pas besoin." + #~ msgctxt "reset_flow_duration label" #~ msgid "Reset flow duration" #~ msgstr "Réinitialiser la durée du débit" +#~ msgctxt "prime_tower_base_height description" +#~ msgid "The height of the prime tower base." +#~ msgstr "La hauteur de la base de la tour de prime." + +#~ msgctxt "prime_tower_base_curve_magnitude description" +#~ msgid "The magnitude factor used for the curve of the prime tower foot." +#~ msgstr "Le facteur d'amplitude utilisé pour la courbe du pied de la tour de prime." + #~ msgctxt "material_print_temperature_layer_0 description" #~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." #~ msgstr "Température utilisée pour l'impression de la première couche. Définissez-la sur 0 pour désactiver le traitement spécial de la couche initiale." + +#~ msgctxt "prime_tower_base_size description" +#~ msgid "The width of the prime tower base." +#~ msgstr "La largeur de la base de la tour de prime." diff --git a/resources/i18n/hu_HU/fdmprinter.def.json.po b/resources/i18n/hu_HU/fdmprinter.def.json.po index f24e69ed9e8..186e0dc9145 100644 --- a/resources/i18n/hu_HU/fdmprinter.def.json.po +++ b/resources/i18n/hu_HU/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-10-31 19:13+0000\n" +"POT-Creation-Date: 2023-11-15 12:26+0000\n" "PO-Revision-Date: 2020-03-24 09:43+0100\n" "Last-Translator: Nagy Attila \n" "Language-Team: AT-VLOG\n" @@ -461,6 +461,10 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "Építési tér hőmérséklete" +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "" + msgctxt "center_object label" msgid "Center Object" msgstr "Tárgy középpontba" @@ -2521,10 +2525,6 @@ msgctxt "prime_tower_brim_enable label" msgid "Prime Tower Base" msgstr "" -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Curve Magnitude" -msgstr "" - msgctxt "prime_tower_base_height label" msgid "Prime Tower Base Height" msgstr "" @@ -2533,6 +2533,10 @@ msgctxt "prime_tower_base_size label" msgid "Prime Tower Base Size" msgstr "" +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "" + msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" msgstr "Elő torony áramlás" @@ -2569,10 +2573,6 @@ msgctxt "prime_tower_position_y label" msgid "Prime Tower Y Position" msgstr "Előtorony Y helyzet" -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -msgstr "" - msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Nyomtatási gyorsulás" @@ -3990,7 +3990,7 @@ msgid "The height of the initial layer in mm. A thicker initial layer makes adhe msgstr "A kezdő réteg magassága mm-ben. A vastagabb kezdőréteg megkönnyíti a tapadást a tárgyasztalhoz." msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base." +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." msgstr "" msgctxt "support_bottom_stair_step_height description" @@ -4066,7 +4066,7 @@ msgid "The length of material retracted during a retraction move." msgstr "A visszahúzott anyag hossza visszahúzáskor." msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the curve of the prime tower foot." +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." msgstr "" msgctxt "machine_buildplate_type description" @@ -4702,7 +4702,7 @@ msgid "The width of the interlocking structure beams." msgstr "Az előtorony szélessége." msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower base." +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." msgstr "" msgctxt "prime_tower_size description" diff --git a/resources/i18n/it_IT/fdmprinter.def.json.po b/resources/i18n/it_IT/fdmprinter.def.json.po index c6d26fe1422..33180fa121b 100644 --- a/resources/i18n/it_IT/fdmprinter.def.json.po +++ b/resources/i18n/it_IT/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-10-31 19:13+0000\n" +"POT-Creation-Date: 2023-11-15 12:26+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -456,6 +456,10 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "Temperatura volume di stampa" +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "" + msgctxt "center_object label" msgid "Center Object" msgstr "Centra oggetto" @@ -2516,10 +2520,6 @@ msgctxt "prime_tower_brim_enable label" msgid "Prime Tower Base" msgstr "Base della Torre di Primerizzazione" -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Curve Magnitude" -msgstr "Magnitudo della Curva della Base della Torre di Primerizzazione" - msgctxt "prime_tower_base_height label" msgid "Prime Tower Base Height" msgstr "Altezza della Base della Torre di Primerizzazione" @@ -2528,6 +2528,10 @@ msgctxt "prime_tower_base_size label" msgid "Prime Tower Base Size" msgstr "Dimensione della Base della Torre di Primerizzazione" +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "" + msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" msgstr "Flusso torre di innesco" @@ -2564,10 +2568,6 @@ msgctxt "prime_tower_position_y label" msgid "Prime Tower Y Position" msgstr "Posizione Y torre di innesco" -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -msgstr "Le torri di primerizzazione potrebbero necessitare di un'adesione extra fornita da un bordo o radeau, anche se il modello non lo richiede." - msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Accelerazione di stampa" @@ -3985,8 +3985,8 @@ msgid "The height of the initial layer in mm. A thicker initial layer makes adhe msgstr "Indica l’altezza dello strato iniziale in mm. Uno strato iniziale più spesso facilita l’adesione al piano di stampa." msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base." -msgstr "L'altezza della base della torre di primerizzazione." +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "" msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." @@ -4061,8 +4061,8 @@ msgid "The length of material retracted during a retraction move." msgstr "La lunghezza del materiale retratto durante il movimento di retrazione." msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the curve of the prime tower foot." -msgstr "Il fattore di magnitudo usato per la curva del piede della torre di primerizzazione." +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "" msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." @@ -4697,8 +4697,8 @@ msgid "The width of the interlocking structure beams." msgstr "La larghezza delle travi della struttura ad incastro." msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower base." -msgstr "La larghezza della base della torre di primerizzazione." +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "" msgctxt "prime_tower_size description" msgid "The width of the prime tower." @@ -5532,6 +5532,10 @@ msgstr "spostamenti" #~ msgid "Minimum speed for gradual flow changes for the first layer" #~ msgstr "Velocità minima per le modifiche del flusso graduale per il primo livello" +#~ msgctxt "prime_tower_base_curve_magnitude label" +#~ msgid "Prime Tower Base Curve Magnitude" +#~ msgstr "Magnitudo della Curva della Base della Torre di Primerizzazione" + #~ msgctxt "prime_tower_brim_enable label" #~ msgid "Prime Tower Brim" #~ msgstr "Brim torre di innesco" @@ -5540,10 +5544,26 @@ msgstr "spostamenti" #~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." #~ msgstr "Le torri di innesco potrebbero richiedere un'adesione supplementare fornita da un bordo (brim), anche se il modello non lo prevede. Attualmente non può essere utilizzato con il tipo di adesione 'Raft'." +#~ msgctxt "prime_tower_brim_enable description" +#~ msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." +#~ msgstr "Le torri di primerizzazione potrebbero necessitare di un'adesione extra fornita da un bordo o radeau, anche se il modello non lo richiede." + #~ msgctxt "reset_flow_duration label" #~ msgid "Reset flow duration" #~ msgstr "Reimposta durata flusso" +#~ msgctxt "prime_tower_base_height description" +#~ msgid "The height of the prime tower base." +#~ msgstr "L'altezza della base della torre di primerizzazione." + +#~ msgctxt "prime_tower_base_curve_magnitude description" +#~ msgid "The magnitude factor used for the curve of the prime tower foot." +#~ msgstr "Il fattore di magnitudo usato per la curva del piede della torre di primerizzazione." + #~ msgctxt "material_print_temperature_layer_0 description" #~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." #~ msgstr "Indica la temperatura usata per la stampa del primo strato. Impostare a 0 per disabilitare la manipolazione speciale dello strato iniziale." + +#~ msgctxt "prime_tower_base_size description" +#~ msgid "The width of the prime tower base." +#~ msgstr "La larghezza della base della torre di primerizzazione." diff --git a/resources/i18n/ja_JP/fdmprinter.def.json.po b/resources/i18n/ja_JP/fdmprinter.def.json.po index de1395bfc29..80dceafa3ae 100644 --- a/resources/i18n/ja_JP/fdmprinter.def.json.po +++ b/resources/i18n/ja_JP/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-10-31 19:13+0000\n" +"POT-Creation-Date: 2023-11-15 12:26+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -456,6 +456,10 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "造形温度" +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "" + msgctxt "center_object label" msgid "Center Object" msgstr "オブジェクト中心配置" @@ -2516,10 +2520,6 @@ msgctxt "prime_tower_brim_enable label" msgid "Prime Tower Base" msgstr "プライムタワーベース" -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Curve Magnitude" -msgstr "プライムタワーベースカーブの大きさ" - msgctxt "prime_tower_base_height label" msgid "Prime Tower Base Height" msgstr "プライムタワーベースの高さ" @@ -2528,6 +2528,10 @@ msgctxt "prime_tower_base_size label" msgid "Prime Tower Base Size" msgstr "プライムタワーベースのサイズ" +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "" + msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" msgstr "プライムタワーのフロー" @@ -2564,10 +2568,6 @@ msgctxt "prime_tower_position_y label" msgid "Prime Tower Y Position" msgstr "プライムタワーY位置" -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -msgstr "プライムタワーはモデルでは不要でも、ブリムやラフトによる追加の接着が必要かもしれません。" - msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "印刷加速度" @@ -3989,8 +3989,8 @@ msgid "The height of the initial layer in mm. A thicker initial layer makes adhe msgstr "初期レイヤーの高さ(mm)。厚い初期層はビルドプレートへの接着を容易にする。" msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base." -msgstr "プライムタワーベースの高さです。" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "" msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." @@ -4065,8 +4065,8 @@ msgid "The length of material retracted during a retraction move." msgstr "引き戻されるマテリアルの長さ。" msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the curve of the prime tower foot." -msgstr "プライムタワーの足のカーブに使用される倍率係数です。" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "" msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." @@ -4701,8 +4701,8 @@ msgid "The width of the interlocking structure beams." msgstr "インターロック構造ビームの幅。" msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower base." -msgstr "プライムタワーベースの幅です。" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "" msgctxt "prime_tower_size description" msgid "The width of the prime tower." @@ -5536,6 +5536,10 @@ msgstr "移動" #~ msgid "Minimum speed for gradual flow changes for the first layer" #~ msgstr "第1層のフローを段階的に変化させるための最低速度" +#~ msgctxt "prime_tower_base_curve_magnitude label" +#~ msgid "Prime Tower Base Curve Magnitude" +#~ msgstr "プライムタワーベースカーブの大きさ" + #~ msgctxt "prime_tower_brim_enable label" #~ msgid "Prime Tower Brim" #~ msgstr "プライムタワーブリム" @@ -5544,10 +5548,26 @@ msgstr "移動" #~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." #~ msgstr "モデルがない場合でも、プライムタワーには、ブリムによって与えられる追加の付着が必要なことがあります。現在は「ラフト」密着型では使用できません。" +#~ msgctxt "prime_tower_brim_enable description" +#~ msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." +#~ msgstr "プライムタワーはモデルでは不要でも、ブリムやラフトによる追加の接着が必要かもしれません。" + #~ msgctxt "reset_flow_duration label" #~ msgid "Reset flow duration" #~ msgstr "フロー期間をリセット" +#~ msgctxt "prime_tower_base_height description" +#~ msgid "The height of the prime tower base." +#~ msgstr "プライムタワーベースの高さです。" + +#~ msgctxt "prime_tower_base_curve_magnitude description" +#~ msgid "The magnitude factor used for the curve of the prime tower foot." +#~ msgstr "プライムタワーの足のカーブに使用される倍率係数です。" + #~ msgctxt "material_print_temperature_layer_0 description" #~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." #~ msgstr "最初のレイヤーを印刷する温度。初期レイヤーのみ特別設定が必要ない場合は 0 に設定します。" + +#~ msgctxt "prime_tower_base_size description" +#~ msgid "The width of the prime tower base." +#~ msgstr "プライムタワーベースの幅です。" diff --git a/resources/i18n/ko_KR/fdmprinter.def.json.po b/resources/i18n/ko_KR/fdmprinter.def.json.po index 0476174c616..415cb86bd8c 100644 --- a/resources/i18n/ko_KR/fdmprinter.def.json.po +++ b/resources/i18n/ko_KR/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-10-31 19:13+0000\n" +"POT-Creation-Date: 2023-11-15 12:26+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -456,6 +456,10 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "빌드 볼륨 온도" +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "" + msgctxt "center_object label" msgid "Center Object" msgstr "가운데 객체" @@ -2516,10 +2520,6 @@ msgctxt "prime_tower_brim_enable label" msgid "Prime Tower Base" msgstr "프라임 타워 베이스" -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Curve Magnitude" -msgstr "프라임 타워 베이스 커브 크기" - msgctxt "prime_tower_base_height label" msgid "Prime Tower Base Height" msgstr "프라임 타워 베이스 높이" @@ -2528,6 +2528,10 @@ msgctxt "prime_tower_base_size label" msgid "Prime Tower Base Size" msgstr "프라임 타워 베이스 크기" +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "" + msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" msgstr "프라임 타워 압출량" @@ -2564,10 +2568,6 @@ msgctxt "prime_tower_position_y label" msgid "Prime Tower Y Position" msgstr "프라임 타워 Y 위치" -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -msgstr "모델이 필요하지 않더라도 프라임 타워는 브림이나 래프트에 의한 추가 접착이 필요할 수 있습니다." - msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "프린팅 가속도" @@ -3985,8 +3985,8 @@ msgid "The height of the initial layer in mm. A thicker initial layer makes adhe msgstr "첫번째 레이어의 높이 (mm)입니다. 첫번째 레이어를 두껍게하면 빌드 플레이트에 쉽게 부착됩니다." msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base." -msgstr "프라임 타워 베이스의 높이입니다." +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "" msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." @@ -4061,8 +4061,8 @@ msgid "The length of material retracted during a retraction move." msgstr "리트렉션 이동 중에 수축 된 재료의 길이입니다." msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the curve of the prime tower foot." -msgstr "프라임 타워 발의 곡선을 위한 크기 계수입니다." +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "" msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." @@ -4697,8 +4697,8 @@ msgid "The width of the interlocking structure beams." msgstr "연동 구조 빔의 너비입니다." msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower base." -msgstr "프라임 타워 베이스의 폭입니다." +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "" msgctxt "prime_tower_size description" msgid "The width of the prime tower." @@ -5532,6 +5532,10 @@ msgstr "이동" #~ msgid "Minimum speed for gradual flow changes for the first layer" #~ msgstr "첫 번째 레이어의 점진적인 흐름 변화를 위한 최소 속도" +#~ msgctxt "prime_tower_base_curve_magnitude label" +#~ msgid "Prime Tower Base Curve Magnitude" +#~ msgstr "프라임 타워 베이스 커브 크기" + #~ msgctxt "prime_tower_brim_enable label" #~ msgid "Prime Tower Brim" #~ msgstr "프라임 타워 브림" @@ -5540,10 +5544,26 @@ msgstr "이동" #~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." #~ msgstr "프라임 타워는 모델이 제공하지 않더라도 브림이 제공하는 추가 접착이 필요할 수 있습니다. 현재 '래프트' 접착 유형을 사용할 수 없습니다." +#~ msgctxt "prime_tower_brim_enable description" +#~ msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." +#~ msgstr "모델이 필요하지 않더라도 프라임 타워는 브림이나 래프트에 의한 추가 접착이 필요할 수 있습니다." + #~ msgctxt "reset_flow_duration label" #~ msgid "Reset flow duration" #~ msgstr "흐름 지속 시간 재설정" +#~ msgctxt "prime_tower_base_height description" +#~ msgid "The height of the prime tower base." +#~ msgstr "프라임 타워 베이스의 높이입니다." + +#~ msgctxt "prime_tower_base_curve_magnitude description" +#~ msgid "The magnitude factor used for the curve of the prime tower foot." +#~ msgstr "프라임 타워 발의 곡선을 위한 크기 계수입니다." + #~ msgctxt "material_print_temperature_layer_0 description" #~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." #~ msgstr "첫 번째 레이어에 프린팅에 사용되는 온도입니다. 초기 레이어의 특수 처리를 사용하지 않으려면 0으로 설정합니다." + +#~ msgctxt "prime_tower_base_size description" +#~ msgid "The width of the prime tower base." +#~ msgstr "프라임 타워 베이스의 폭입니다." diff --git a/resources/i18n/nl_NL/fdmprinter.def.json.po b/resources/i18n/nl_NL/fdmprinter.def.json.po index de1766f02ec..fce03c9f183 100644 --- a/resources/i18n/nl_NL/fdmprinter.def.json.po +++ b/resources/i18n/nl_NL/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-10-31 19:13+0000\n" +"POT-Creation-Date: 2023-11-15 12:26+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -456,6 +456,10 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "Temperatuur werkvolume" +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "" + msgctxt "center_object label" msgid "Center Object" msgstr "Object centreren" @@ -2516,10 +2520,6 @@ msgctxt "prime_tower_brim_enable label" msgid "Prime Tower Base" msgstr "Basis van de Primepijler" -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Curve Magnitude" -msgstr "Krachtmagnitude van de basiscurve van de Primepijler" - msgctxt "prime_tower_base_height label" msgid "Prime Tower Base Height" msgstr "Hoogte van de basis van de Primepijler" @@ -2528,6 +2528,10 @@ msgctxt "prime_tower_base_size label" msgid "Prime Tower Base Size" msgstr "Grootte van de basis van de Primepijler" +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "" + msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" msgstr "Doorvoer Primepijler" @@ -2564,10 +2568,6 @@ msgctxt "prime_tower_position_y label" msgid "Prime Tower Y Position" msgstr "Y-positie Primepijler" -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -msgstr "Prime-towers hebben mogelijk de extra hechting nodig die een rand of vlot biedt, zelfs als het model dat niet doet." - msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Printacceleratie" @@ -3985,8 +3985,8 @@ msgid "The height of the initial layer in mm. A thicker initial layer makes adhe msgstr "De hoogte van de eerste laag in mm. Met een dikkere eerste laag hecht het object beter aan het platform." msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base." -msgstr "De hoogte van de basis van de Prime Tower." +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "" msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." @@ -4061,8 +4061,8 @@ msgid "The length of material retracted during a retraction move." msgstr "De lengte waarover het materiaal wordt ingetrokken tijdens een intrekbeweging." msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the curve of the prime tower foot." -msgstr "De groottefactor die gebruikt wordt voor de curve van de voet van de Prime Tower." +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "" msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." @@ -4697,8 +4697,8 @@ msgid "The width of the interlocking structure beams." msgstr "De breedte van de in elkaar grijpende structuurbalken." msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower base." -msgstr "De breedte van de basis van de Prime Tower." +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "" msgctxt "prime_tower_size description" msgid "The width of the prime tower." @@ -5532,6 +5532,10 @@ msgstr "beweging" #~ msgid "Minimum speed for gradual flow changes for the first layer" #~ msgstr "Minimumsnelheid voor geleidelijke flowveranderingen voor de eerste laag" +#~ msgctxt "prime_tower_base_curve_magnitude label" +#~ msgid "Prime Tower Base Curve Magnitude" +#~ msgstr "Krachtmagnitude van de basiscurve van de Primepijler" + #~ msgctxt "prime_tower_brim_enable label" #~ msgid "Prime Tower Brim" #~ msgstr "Brim primepijler" @@ -5540,10 +5544,26 @@ msgstr "beweging" #~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." #~ msgstr "Primepijlers hebben mogelijk de extra hechting van een brim nodig, ook als het model dit niet nodig heeft. Kan momenteel niet worden gebruikt met het hechtingstype 'Raft'." +#~ msgctxt "prime_tower_brim_enable description" +#~ msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." +#~ msgstr "Prime-towers hebben mogelijk de extra hechting nodig die een rand of vlot biedt, zelfs als het model dat niet doet." + #~ msgctxt "reset_flow_duration label" #~ msgid "Reset flow duration" #~ msgstr "Flowduur resetten" +#~ msgctxt "prime_tower_base_height description" +#~ msgid "The height of the prime tower base." +#~ msgstr "De hoogte van de basis van de Prime Tower." + +#~ msgctxt "prime_tower_base_curve_magnitude description" +#~ msgid "The magnitude factor used for the curve of the prime tower foot." +#~ msgstr "De groottefactor die gebruikt wordt voor de curve van de voet van de Prime Tower." + #~ msgctxt "material_print_temperature_layer_0 description" #~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." #~ msgstr "De temperatuur waarmee de eerste laag wordt geprint. Stel deze optie in op 0 om speciale bewerkingen voor de eerste laag uit te schakelen." + +#~ msgctxt "prime_tower_base_size description" +#~ msgid "The width of the prime tower base." +#~ msgstr "De breedte van de basis van de Prime Tower." diff --git a/resources/i18n/pl_PL/fdmprinter.def.json.po b/resources/i18n/pl_PL/fdmprinter.def.json.po index 8ad84481755..b257ac305a1 100644 --- a/resources/i18n/pl_PL/fdmprinter.def.json.po +++ b/resources/i18n/pl_PL/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-10-31 19:13+0000\n" +"POT-Creation-Date: 2023-11-15 12:26+0000\n" "PO-Revision-Date: 2019-11-15 15:34+0100\n" "Last-Translator: Mariusz Matłosz \n" "Language-Team: Mariusz Matłosz , reprapy.pl\n" @@ -460,6 +460,10 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "Temperatura obszaru roboczego" +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "" + msgctxt "center_object label" msgid "Center Object" msgstr "Wyśrodkuj obiekt" @@ -2520,10 +2524,6 @@ msgctxt "prime_tower_brim_enable label" msgid "Prime Tower Base" msgstr "" -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Curve Magnitude" -msgstr "" - msgctxt "prime_tower_base_height label" msgid "Prime Tower Base Height" msgstr "" @@ -2532,6 +2532,10 @@ msgctxt "prime_tower_base_size label" msgid "Prime Tower Base Size" msgstr "" +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "" + msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" msgstr "Przepływ Wieży Czyszczącej" @@ -2568,10 +2572,6 @@ msgctxt "prime_tower_position_y label" msgid "Prime Tower Y Position" msgstr "Pozycja Wieży Czyszcz. Y" -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -msgstr "" - msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Przyspieszenie Druku" @@ -3989,7 +3989,7 @@ msgid "The height of the initial layer in mm. A thicker initial layer makes adhe msgstr "Wysokość początkowej warstwy w mm. Grubsza początkowa warstwa powoduje lepszą przyczepność do stołu." msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base." +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." msgstr "" msgctxt "support_bottom_stair_step_height description" @@ -4065,7 +4065,7 @@ msgid "The length of material retracted during a retraction move." msgstr "Długość materiału wycofanego podczas retrakcji." msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the curve of the prime tower foot." +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." msgstr "" msgctxt "machine_buildplate_type description" @@ -4701,7 +4701,7 @@ msgid "The width of the interlocking structure beams." msgstr "Szerokość wieży czyszczącej." msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower base." +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." msgstr "" msgctxt "prime_tower_size description" diff --git a/resources/i18n/pt_BR/fdmprinter.def.json.po b/resources/i18n/pt_BR/fdmprinter.def.json.po index 54a979caf49..0f98cc5b99d 100644 --- a/resources/i18n/pt_BR/fdmprinter.def.json.po +++ b/resources/i18n/pt_BR/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.0\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-10-31 19:13+0000\n" +"POT-Creation-Date: 2023-11-15 12:26+0000\n" "PO-Revision-Date: 2023-10-23 06:17+0200\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" @@ -461,6 +461,10 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "Temperatura do Volume de Impressão" +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "" + msgctxt "center_object label" msgid "Center Object" msgstr "Centralizar Objeto" @@ -2521,10 +2525,6 @@ msgctxt "prime_tower_brim_enable label" msgid "Prime Tower Base" msgstr "" -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Curve Magnitude" -msgstr "" - msgctxt "prime_tower_base_height label" msgid "Prime Tower Base Height" msgstr "" @@ -2533,6 +2533,10 @@ msgctxt "prime_tower_base_size label" msgid "Prime Tower Base Size" msgstr "" +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "" + msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" msgstr "Fluxo da Torre de Purga" @@ -2569,10 +2573,6 @@ msgctxt "prime_tower_position_y label" msgid "Prime Tower Y Position" msgstr "Posição Y da Torre de Purga" -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -msgstr "" - msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Aceleração da Impressão" @@ -3995,7 +3995,7 @@ msgid "The height of the initial layer in mm. A thicker initial layer makes adhe msgstr "A altura da camada inicial em mm. Uma camada inicial mais espessa faz a aderência à mesa de impressão ser maior." msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base." +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." msgstr "" msgctxt "support_bottom_stair_step_height description" @@ -4071,7 +4071,7 @@ msgid "The length of material retracted during a retraction move." msgstr "O comprimento de filamento retornado durante uma retração." msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the curve of the prime tower foot." +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." msgstr "" msgctxt "machine_buildplate_type description" @@ -4711,7 +4711,7 @@ msgid "The width of the interlocking structure beams." msgstr "A largura da torre de purga." msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower base." +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." msgstr "" msgctxt "prime_tower_size description" diff --git a/resources/i18n/pt_PT/fdmprinter.def.json.po b/resources/i18n/pt_PT/fdmprinter.def.json.po index 9dd30266fd4..d07ac5af4b1 100644 --- a/resources/i18n/pt_PT/fdmprinter.def.json.po +++ b/resources/i18n/pt_PT/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-10-31 19:13+0000\n" +"POT-Creation-Date: 2023-11-15 12:26+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -456,6 +456,10 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "Temperatura do volume de construção" +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "" + msgctxt "center_object label" msgid "Center Object" msgstr "Centrar Objeto" @@ -2516,10 +2520,6 @@ msgctxt "prime_tower_brim_enable label" msgid "Prime Tower Base" msgstr "Base da Torre de Primagem" -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Curve Magnitude" -msgstr "Magnitude da Curva da Base da Torre de Primagem" - msgctxt "prime_tower_base_height label" msgid "Prime Tower Base Height" msgstr "Altura da Base da Torre de Primagem" @@ -2528,6 +2528,10 @@ msgctxt "prime_tower_base_size label" msgid "Prime Tower Base Size" msgstr "Tamanho da Base da Torre de Primagem" +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "" + msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" msgstr "Fluxo da torre de preparação" @@ -2564,10 +2568,6 @@ msgctxt "prime_tower_position_y label" msgid "Prime Tower Y Position" msgstr "Posição Y da torre de preparação" -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -msgstr "As torres de primagem podem precisar da aderência extra fornecida por uma aba ou jangada, mesmo que o modelo não necessite." - msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Aceleração de impressão" @@ -3985,8 +3985,8 @@ msgid "The height of the initial layer in mm. A thicker initial layer makes adhe msgstr "A espessura da camada inicial em milímetros. Uma camada inicial mais espessa facilita a aderência à base de construção." msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base." -msgstr "A altura da base da torre de primagem." +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "" msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." @@ -4061,8 +4061,8 @@ msgid "The length of material retracted during a retraction move." msgstr "O comprimento do material retraído durante um movimento de retração." msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the curve of the prime tower foot." -msgstr "O fator de magnitude usado para a curva do pé da torre de primagem." +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "" msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." @@ -4697,8 +4697,8 @@ msgid "The width of the interlocking structure beams." msgstr "A largura das vigas da estrutura de interligação." msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower base." -msgstr "A largura da base da torre de primagem." +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "" msgctxt "prime_tower_size description" msgid "The width of the prime tower." @@ -5532,6 +5532,10 @@ msgstr "deslocação" #~ msgid "Minimum speed for gradual flow changes for the first layer" #~ msgstr "Velocidade mínima para alterações do fluxo gradual da primeira camada" +#~ msgctxt "prime_tower_base_curve_magnitude label" +#~ msgid "Prime Tower Base Curve Magnitude" +#~ msgstr "Magnitude da Curva da Base da Torre de Primagem" + #~ msgctxt "prime_tower_brim_enable label" #~ msgid "Prime Tower Brim" #~ msgstr "Aba da torre de preparação" @@ -5540,10 +5544,26 @@ msgstr "deslocação" #~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." #~ msgstr "As torres de preparação poderão necessitar de uma aderência adicional concedida por uma aba, ainda que o modelo não o necessite. Atualmente, não é possível utilizá-la com o tipo de aderência \"Raft\"." +#~ msgctxt "prime_tower_brim_enable description" +#~ msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." +#~ msgstr "As torres de primagem podem precisar da aderência extra fornecida por uma aba ou jangada, mesmo que o modelo não necessite." + #~ msgctxt "reset_flow_duration label" #~ msgid "Reset flow duration" #~ msgstr "Repor duração do fluxo" +#~ msgctxt "prime_tower_base_height description" +#~ msgid "The height of the prime tower base." +#~ msgstr "A altura da base da torre de primagem." + +#~ msgctxt "prime_tower_base_curve_magnitude description" +#~ msgid "The magnitude factor used for the curve of the prime tower foot." +#~ msgstr "O fator de magnitude usado para a curva do pé da torre de primagem." + #~ msgctxt "material_print_temperature_layer_0 description" #~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." #~ msgstr "A temperatura utilizada para imprimir a primeira camada. Esta é definida como 0 para desativar o manuseamento especial da camada inicial." + +#~ msgctxt "prime_tower_base_size description" +#~ msgid "The width of the prime tower base." +#~ msgstr "A largura da base da torre de primagem." diff --git a/resources/i18n/ru_RU/fdmprinter.def.json.po b/resources/i18n/ru_RU/fdmprinter.def.json.po index 096feefc6ca..f29ebbc02da 100644 --- a/resources/i18n/ru_RU/fdmprinter.def.json.po +++ b/resources/i18n/ru_RU/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-10-31 19:13+0000\n" +"POT-Creation-Date: 2023-11-15 12:26+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -456,6 +456,10 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "Температура для объема печати" +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "" + msgctxt "center_object label" msgid "Center Object" msgstr "Центрирование объекта" @@ -2516,10 +2520,6 @@ msgctxt "prime_tower_brim_enable label" msgid "Prime Tower Base" msgstr "Основание башни подготовки" -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Curve Magnitude" -msgstr "Коэффициент кривизны основания башни подготовки" - msgctxt "prime_tower_base_height label" msgid "Prime Tower Base Height" msgstr "Высота основания башни подготовки" @@ -2528,6 +2528,10 @@ msgctxt "prime_tower_base_size label" msgid "Prime Tower Base Size" msgstr "Размер основания башни подготовки" +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "" + msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" msgstr "Поток черновой башни" @@ -2564,10 +2568,6 @@ msgctxt "prime_tower_position_y label" msgid "Prime Tower Y Position" msgstr "Y позиция черновой башни" -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -msgstr "Башни подготовки могут требовать дополнительной адгезии с помощью бортика или рафта, даже если модель это не требует." - msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Ускорение печати" @@ -3985,8 +3985,8 @@ msgid "The height of the initial layer in mm. A thicker initial layer makes adhe msgstr "Высота первого слоя в миллиметрах. Более толстый слой упрощает прилипание пластика к столу." msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base." -msgstr "Высота основания башни подготовки." +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "" msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." @@ -4061,8 +4061,8 @@ msgid "The length of material retracted during a retraction move." msgstr "Длина нити материала, которая будет извлечена по время отката." msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the curve of the prime tower foot." -msgstr "Множитель для кривизны подножия башни подготовки." +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "" msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." @@ -4697,8 +4697,8 @@ msgid "The width of the interlocking structure beams." msgstr "Ширина балок взаимосвязанной конструкции." msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower base." -msgstr "Ширина основания башни подготовки." +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "" msgctxt "prime_tower_size description" msgid "The width of the prime tower." @@ -5532,6 +5532,10 @@ msgstr "перемещение" #~ msgid "Minimum speed for gradual flow changes for the first layer" #~ msgstr "Минимальная скорость для постепенного изменения потока для первого слоя" +#~ msgctxt "prime_tower_base_curve_magnitude label" +#~ msgid "Prime Tower Base Curve Magnitude" +#~ msgstr "Коэффициент кривизны основания башни подготовки" + #~ msgctxt "prime_tower_brim_enable label" #~ msgid "Prime Tower Brim" #~ msgstr "Кайма черновой башни" @@ -5540,10 +5544,26 @@ msgstr "перемещение" #~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." #~ msgstr "Для черновых башен может потребоваться дополнительная адгезия с помощью каймы, даже если для модели это не требуется. В данный момент не может использоваться с типом адгезии с подложкой." +#~ msgctxt "prime_tower_brim_enable description" +#~ msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." +#~ msgstr "Башни подготовки могут требовать дополнительной адгезии с помощью бортика или рафта, даже если модель это не требует." + #~ msgctxt "reset_flow_duration label" #~ msgid "Reset flow duration" #~ msgstr "Сбросить продолжительность потока" +#~ msgctxt "prime_tower_base_height description" +#~ msgid "The height of the prime tower base." +#~ msgstr "Высота основания башни подготовки." + +#~ msgctxt "prime_tower_base_curve_magnitude description" +#~ msgid "The magnitude factor used for the curve of the prime tower foot." +#~ msgstr "Множитель для кривизны подножия башни подготовки." + #~ msgctxt "material_print_temperature_layer_0 description" #~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." #~ msgstr "Температура при печати первого слоя. Установите в 0 для отключения специального поведения на первом слое." + +#~ msgctxt "prime_tower_base_size description" +#~ msgid "The width of the prime tower base." +#~ msgstr "Ширина основания башни подготовки." diff --git a/resources/i18n/tr_TR/fdmprinter.def.json.po b/resources/i18n/tr_TR/fdmprinter.def.json.po index 972ad389f91..5c9a08982da 100644 --- a/resources/i18n/tr_TR/fdmprinter.def.json.po +++ b/resources/i18n/tr_TR/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-10-31 19:13+0000\n" +"POT-Creation-Date: 2023-11-15 12:26+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -456,6 +456,10 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "Yapı Disk Bölümü Sıcaklığı" +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "" + msgctxt "center_object label" msgid "Center Object" msgstr "Nesneyi ortalayın" @@ -2516,10 +2520,6 @@ msgctxt "prime_tower_brim_enable label" msgid "Prime Tower Base" msgstr "Başlangıç Kulesi Tabanı" -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Curve Magnitude" -msgstr "Başlangıç Kulesi Taban Eğim Büyüklüğü" - msgctxt "prime_tower_base_height label" msgid "Prime Tower Base Height" msgstr "Başlangıç Kulesi Taban Yüksekliği" @@ -2528,6 +2528,10 @@ msgctxt "prime_tower_base_size label" msgid "Prime Tower Base Size" msgstr "Başlangıç Kulesi Taban Boyutu" +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "" + msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" msgstr "İlk Direk Akışı" @@ -2564,10 +2568,6 @@ msgctxt "prime_tower_position_y label" msgid "Prime Tower Y Position" msgstr "İlk Direk Y Konumu" -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -msgstr "Baskı modeli gerektirmese bile, başlangıç kuleleri modelin ekstra yapışmasını sağlamak için bir kenarlık veya sal gerektirebilir." - msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Yazdırma İvmesi" @@ -3985,8 +3985,8 @@ msgid "The height of the initial layer in mm. A thicker initial layer makes adhe msgstr "İlk katmanın milimetre cinsinden yüksekliği. Kalın ilk katmanlar yapı levhasına yapışmayı kolaylaştırır." msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base." -msgstr "Başlangıç kulesi tabanının yüksekliği." +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "" msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." @@ -4061,8 +4061,8 @@ msgid "The length of material retracted during a retraction move." msgstr "Geri çekme hareketi sırasında geri çekilen malzemenin uzunluğu." msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the curve of the prime tower foot." -msgstr "Başlangıç kulesi ayağının eğrisi için kullanılan büyüklük faktörü." +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "" msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." @@ -4697,8 +4697,8 @@ msgid "The width of the interlocking structure beams." msgstr "İç içe geçen yapı kirişlerinin genişliği." msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower base." -msgstr "Başlangıç kulesi tabanının genişliği." +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "" msgctxt "prime_tower_size description" msgid "The width of the prime tower." @@ -5532,6 +5532,10 @@ msgstr "hareket" #~ msgid "Minimum speed for gradual flow changes for the first layer" #~ msgstr "İlk katmandaki kademeli akış değişiklikleri için minimum hız" +#~ msgctxt "prime_tower_base_curve_magnitude label" +#~ msgid "Prime Tower Base Curve Magnitude" +#~ msgstr "Başlangıç Kulesi Taban Eğim Büyüklüğü" + #~ msgctxt "prime_tower_brim_enable label" #~ msgid "Prime Tower Brim" #~ msgstr "Astarlama Direği Kenarı" @@ -5540,10 +5544,26 @@ msgstr "hareket" #~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." #~ msgstr "Model ihtiyaç duymasa da astarlama direkleri bir kenarın sağladığı ekstra yapışkanlığa ihtiyaç duyabilir. Şu anda \"radye\" yapışma tipi ile birlikte kullanılamamaktadır." +#~ msgctxt "prime_tower_brim_enable description" +#~ msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." +#~ msgstr "Baskı modeli gerektirmese bile, başlangıç kuleleri modelin ekstra yapışmasını sağlamak için bir kenarlık veya sal gerektirebilir." + #~ msgctxt "reset_flow_duration label" #~ msgid "Reset flow duration" #~ msgstr "Akış süresini sıfırla" +#~ msgctxt "prime_tower_base_height description" +#~ msgid "The height of the prime tower base." +#~ msgstr "Başlangıç kulesi tabanının yüksekliği." + +#~ msgctxt "prime_tower_base_curve_magnitude description" +#~ msgid "The magnitude factor used for the curve of the prime tower foot." +#~ msgstr "Başlangıç kulesi ayağının eğrisi için kullanılan büyüklük faktörü." + #~ msgctxt "material_print_temperature_layer_0 description" #~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." #~ msgstr "İlk katmanı yazdırmak için kullanılan sıcaklık. İlk katmanın özel kullanımını devre dışı bırakmak için 0’a ayarlayın." + +#~ msgctxt "prime_tower_base_size description" +#~ msgid "The width of the prime tower base." +#~ msgstr "Başlangıç kulesi tabanının genişliği." diff --git a/resources/i18n/zh_CN/fdmprinter.def.json.po b/resources/i18n/zh_CN/fdmprinter.def.json.po index 982de466641..0bc3be3ef50 100644 --- a/resources/i18n/zh_CN/fdmprinter.def.json.po +++ b/resources/i18n/zh_CN/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-10-31 19:13+0000\n" +"POT-Creation-Date: 2023-11-15 12:26+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -456,6 +456,10 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "打印体积温度" +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "" + msgctxt "center_object label" msgid "Center Object" msgstr "中心点" @@ -2516,10 +2520,6 @@ msgctxt "prime_tower_brim_enable label" msgid "Prime Tower Base" msgstr "底漆塔座" -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Curve Magnitude" -msgstr "底漆塔座曲率大小" - msgctxt "prime_tower_base_height label" msgid "Prime Tower Base Height" msgstr "底漆塔座高度" @@ -2528,6 +2528,10 @@ msgctxt "prime_tower_base_size label" msgid "Prime Tower Base Size" msgstr "底漆塔座尺寸" +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "" + msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" msgstr "装填塔流量" @@ -2564,10 +2568,6 @@ msgctxt "prime_tower_position_y label" msgid "Prime Tower Y Position" msgstr "装填塔 Y 位置" -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -msgstr "即使模型不需要,底漆塔也可能需要边缘或筏的额外粘附力。" - msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "打印加速度" @@ -3985,8 +3985,8 @@ msgid "The height of the initial layer in mm. A thicker initial layer makes adhe msgstr "起始层高(以毫米为单位)。起始层越厚,与打印平台的粘着越轻松。" msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base." -msgstr "底漆塔座的高度。" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "" msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." @@ -4061,8 +4061,8 @@ msgid "The length of material retracted during a retraction move." msgstr "回抽移动期间回抽的材料长度。" msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the curve of the prime tower foot." -msgstr "用于底漆塔脚曲线的幅度因子。" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "" msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." @@ -4697,8 +4697,8 @@ msgid "The width of the interlocking structure beams." msgstr "互锁结构梁的宽度。" msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower base." -msgstr "底漆塔座的宽度。" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "" msgctxt "prime_tower_size description" msgid "The width of the prime tower." @@ -5532,6 +5532,10 @@ msgstr "空驶" #~ msgid "Minimum speed for gradual flow changes for the first layer" #~ msgstr "第一层渐变流量的最小速度" +#~ msgctxt "prime_tower_base_curve_magnitude label" +#~ msgid "Prime Tower Base Curve Magnitude" +#~ msgstr "底漆塔座曲率大小" + #~ msgctxt "prime_tower_brim_enable label" #~ msgid "Prime Tower Brim" #~ msgstr "装填塔 Brim" @@ -5540,10 +5544,26 @@ msgstr "空驶" #~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." #~ msgstr "装填塔可能需要 Brim 提供额外附着力,无论模型是否需要。目前不可与 'Raft' 附着类型配合使用。" +#~ msgctxt "prime_tower_brim_enable description" +#~ msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." +#~ msgstr "即使模型不需要,底漆塔也可能需要边缘或筏的额外粘附力。" + #~ msgctxt "reset_flow_duration label" #~ msgid "Reset flow duration" #~ msgstr "重置流量持续时间" +#~ msgctxt "prime_tower_base_height description" +#~ msgid "The height of the prime tower base." +#~ msgstr "底漆塔座的高度。" + +#~ msgctxt "prime_tower_base_curve_magnitude description" +#~ msgid "The magnitude factor used for the curve of the prime tower foot." +#~ msgstr "用于底漆塔脚曲线的幅度因子。" + #~ msgctxt "material_print_temperature_layer_0 description" #~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." #~ msgstr "用于打印第一层的温度。 设为 0 即禁用对起始层的特别处理。" + +#~ msgctxt "prime_tower_base_size description" +#~ msgid "The width of the prime tower base." +#~ msgstr "底漆塔座的宽度。" diff --git a/resources/i18n/zh_TW/fdmprinter.def.json.po b/resources/i18n/zh_TW/fdmprinter.def.json.po index e73b1021a55..a134e53b68f 100644 --- a/resources/i18n/zh_TW/fdmprinter.def.json.po +++ b/resources/i18n/zh_TW/fdmprinter.def.json.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-10-31 19:13+0000\n" +"POT-Creation-Date: 2023-11-15 12:26+0000\n" "PO-Revision-Date: 2022-01-02 20:24+0800\n" "Last-Translator: Valen Chang \n" "Language-Team: Valen Chang \n" @@ -461,6 +461,10 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "列印空間溫度" +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "" + msgctxt "center_object label" msgid "Center Object" msgstr "物件置中" @@ -2521,10 +2525,6 @@ msgctxt "prime_tower_brim_enable label" msgid "Prime Tower Base" msgstr "" -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Curve Magnitude" -msgstr "" - msgctxt "prime_tower_base_height label" msgid "Prime Tower Base Height" msgstr "" @@ -2533,6 +2533,10 @@ msgctxt "prime_tower_base_size label" msgid "Prime Tower Base Size" msgstr "" +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "" + msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" msgstr "換料塔流量" @@ -2569,10 +2573,6 @@ msgctxt "prime_tower_position_y label" msgid "Prime Tower Y Position" msgstr "換料塔 Y 位置" -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -msgstr "" - msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "列印加速度" @@ -3990,7 +3990,7 @@ msgid "The height of the initial layer in mm. A thicker initial layer makes adhe msgstr "起始層高(以毫米為單位)。起始層越厚,與列印平台的附著越輕鬆。" msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base." +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." msgstr "" msgctxt "support_bottom_stair_step_height description" @@ -4066,7 +4066,7 @@ msgid "The length of material retracted during a retraction move." msgstr "回抽移動期間回抽的線材長度。" msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the curve of the prime tower foot." +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." msgstr "" msgctxt "machine_buildplate_type description" @@ -4702,7 +4702,7 @@ msgid "The width of the interlocking structure beams." msgstr "換料塔的寬度。" msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower base." +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." msgstr "" msgctxt "prime_tower_size description" From b66b032e45c5853e27bc9c46096cb0a3c28d79d8 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Wed, 15 Nov 2023 13:45:25 +0100 Subject: [PATCH 123/765] Revert "Pin release versions to 5.6.0-beta.1" This reverts commit 2ec70cb6b7837d30560bcb74e2942bbb9ed0c5f1. --- conanfile.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/conanfile.py b/conanfile.py index da9029641f4..20ded4bc3c2 100644 --- a/conanfile.py +++ b/conanfile.py @@ -318,19 +318,19 @@ def requirements(self): self.requires("curaengine_grpc_definitions/0.1.0") self.requires("zlib/1.2.13") self.requires("pyarcus/5.3.0") - self.requires("dulcificum/0.1.0-beta.1") - self.requires("curaengine/5.6.0-beta.1") + self.requires("dulcificum/(latest)@ultimaker/stable") + self.requires("curaengine/(latest)@ultimaker/stable") self.requires("pysavitar/5.3.0") self.requires("pynest2d/5.3.0") self.requires("curaengine_plugin_gradual_flow/0.1.0") - self.requires("uranium/5.6.0-beta.1") - self.requires("cura_binary_data/5.6.0-beta.1") + self.requires("uranium/(latest)@ultimaker/stable") + self.requires("cura_binary_data/(latest)@ultimaker/stable") self.requires("cpython/3.10.4") if self.options.internal: self.requires("cura_private_data/(latest)@internal/testing") self.requires("fdm_materials/(latest)@internal/testing") else: - self.requires("fdm_materials/5.6.0-beta.1") + self.requires("fdm_materials/(latest)@ultimaker/stable") def build_requirements(self): if self.options.get_safe("enable_i18n", False): From 4656873e9d028bc1975f2edc6b22269dd645ee09 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Wed, 15 Nov 2023 13:46:04 +0100 Subject: [PATCH 124/765] Set working versions to 5.6.0-beta.2 Contributes to CURA-11269 --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index 20ded4bc3c2..c56398f4ead 100644 --- a/conanfile.py +++ b/conanfile.py @@ -50,7 +50,7 @@ class CuraConan(ConanFile): def set_version(self): if not self.version: - self.version = "5.6.0-beta.1" + self.version = "5.6.0-beta.2" @property def _pycharm_targets(self): From a7d4ba052873c63dfdd067394329a08fbc26e0f7 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Wed, 15 Nov 2023 13:54:40 +0100 Subject: [PATCH 125/765] use testing for fdm_material and curaengine Contributes to CURA-11269 --- conanfile.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/conanfile.py b/conanfile.py index d9f1fd10a60..4b37bfdd520 100644 --- a/conanfile.py +++ b/conanfile.py @@ -323,14 +323,14 @@ def requirements(self): self.requires("pysavitar/5.3.0") self.requires("pynest2d/5.3.0") self.requires("curaengine_plugin_gradual_flow/0.1.0") - self.requires("uranium/(latest)@ultimaker/stable") - self.requires("cura_binary_data/(latest)@ultimaker/stable") + self.requires("uranium/(latest)@ultimaker/testing") + self.requires("cura_binary_data/(latest)@ultimaker/testing") self.requires("cpython/3.10.4") if self.options.internal: self.requires("cura_private_data/(latest)@internal/testing") self.requires("fdm_materials/(latest)@internal/testing") else: - self.requires("fdm_materials/(latest)@ultimaker/stable") + self.requires("fdm_materials/(latest)@ultimaker/testing") def build_requirements(self): if self.options.get_safe("enable_i18n", False): From 2019060cbdf7c5e804dfa52e785a332451579fde Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Wed, 15 Nov 2023 14:39:40 +0100 Subject: [PATCH 126/765] Hopefully last missing translations for 5.6 part of CURA-11300 --- resources/i18n/de_DE/fdmprinter.def.json.po | 10 +++++----- resources/i18n/es_ES/fdmprinter.def.json.po | 10 +++++----- resources/i18n/fr_FR/fdmprinter.def.json.po | 10 +++++----- resources/i18n/it_IT/fdmprinter.def.json.po | 10 +++++----- resources/i18n/ja_JP/fdmprinter.def.json.po | 10 +++++----- resources/i18n/ko_KR/fdmprinter.def.json.po | 10 +++++----- resources/i18n/nl_NL/fdmprinter.def.json.po | 10 +++++----- resources/i18n/pt_PT/fdmprinter.def.json.po | 10 +++++----- resources/i18n/ru_RU/fdmprinter.def.json.po | 10 +++++----- resources/i18n/tr_TR/fdmprinter.def.json.po | 10 +++++----- resources/i18n/zh_CN/fdmprinter.def.json.po | 10 +++++----- 11 files changed, 55 insertions(+), 55 deletions(-) diff --git a/resources/i18n/de_DE/fdmprinter.def.json.po b/resources/i18n/de_DE/fdmprinter.def.json.po index 7cebd8c3126..12eb435dd81 100644 --- a/resources/i18n/de_DE/fdmprinter.def.json.po +++ b/resources/i18n/de_DE/fdmprinter.def.json.po @@ -458,7 +458,7 @@ msgstr "Temperatur Druckabmessung" msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "" +msgstr "Durch Aktivieren dieser Einstellung erhält Ihr Prime-Turm einen Rand, auch wenn das Modell keinen hat. Wenn Sie eine stabilere Basis für einen hohen Turm möchten, können Sie die Basis-Höhe erhöhen." msgctxt "center_object label" msgid "Center Object" @@ -2530,7 +2530,7 @@ msgstr "Größe der Prime-Turm-Basis" msgctxt "prime_tower_base_curve_magnitude label" msgid "Prime Tower Base Slope" -msgstr "" +msgstr "Neigung der Prime-Turm-Basis" msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" @@ -3986,7 +3986,7 @@ msgstr "Die Dicke der ersten Schicht in mm. Eine dicke erste Schicht erleichtert msgctxt "prime_tower_base_height description" msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "" +msgstr "Die Höhe der Prime-Turm-Basis. Eine Erhöhung dieses Wertes führt zu einem stabileren Prime-Turm, da die Basis breiter wird. Ist dieser Wert zu niedrig, hat der Prime-Turm keine stabile Basis." msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." @@ -4062,7 +4062,7 @@ msgstr "Die Länge des Materials, das während der Einzugsbewegung eingezogen wi msgctxt "prime_tower_base_curve_magnitude description" msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "" +msgstr "Der Größenfaktor, der für die Neigung der Prime-Turm-Basis verwendet wird. Wenn Sie diesen Wert erhöhen, wird die Basis schlanker. Wenn Sie ihn verringern, wird die Basis dicker." msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." @@ -4698,7 +4698,7 @@ msgstr "Die Breite der Balken in der ineinandergreifenden Struktur." msgctxt "prime_tower_base_size description" msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "" +msgstr "Die Breite des Prime-Turm-Randes/Basis. Eine größere Basis verbessert die Haftung auf der Bauplatte, verringert jedoch auch den effektiven Druckbereich." msgctxt "prime_tower_size description" msgid "The width of the prime tower." diff --git a/resources/i18n/es_ES/fdmprinter.def.json.po b/resources/i18n/es_ES/fdmprinter.def.json.po index 913b77793f2..25480e8a560 100644 --- a/resources/i18n/es_ES/fdmprinter.def.json.po +++ b/resources/i18n/es_ES/fdmprinter.def.json.po @@ -458,7 +458,7 @@ msgstr "Temperatura de volumen de impresión" msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "" +msgstr "Al habilitar esta configuración, tu torre de cebado tendrá un borde, incluso si el modelo no lo tiene. Si quieres una base más robusta para una torre alta, puedes aumentar la altura de la base." msgctxt "center_object label" msgid "Center Object" @@ -2530,7 +2530,7 @@ msgstr "Tamaño de la base de la torre de cebado" msgctxt "prime_tower_base_curve_magnitude label" msgid "Prime Tower Base Slope" -msgstr "" +msgstr "Pendiente de la Base de la Torre de Cebado" msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" @@ -3986,7 +3986,7 @@ msgstr "Altura de capa inicial en mm. Una capa inicial más gruesa se adhiere a msgctxt "prime_tower_base_height description" msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "" +msgstr "La altura de la base de la torre de cebado. Aumentar este valor resultará en una torre de cebado más robusta porque la base será más ancha. Si esta configuración es demasiado baja, la torre de cebado no tendrá una base resistente." msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." @@ -4062,7 +4062,7 @@ msgstr "Longitud del material retraído durante un movimiento de retracción." msgctxt "prime_tower_base_curve_magnitude description" msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "" +msgstr "El factor de magnitud utilizado para la pendiente de la base de la torre de cebado. Si aumentas este valor, la base se volverá más delgada. Si lo disminuyes, la base se volverá más gruesa." msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." @@ -4698,7 +4698,7 @@ msgstr "El ancho de los haces de la estructura entrelazada." msgctxt "prime_tower_base_size description" msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "" +msgstr "El ancho del borde/base de la torre de cebado. Una base más grande mejora la adhesión a la placa de construcción, pero también reduce el área efectiva de impresión." msgctxt "prime_tower_size description" msgid "The width of the prime tower." diff --git a/resources/i18n/fr_FR/fdmprinter.def.json.po b/resources/i18n/fr_FR/fdmprinter.def.json.po index 59714e01472..ce10b7aff01 100644 --- a/resources/i18n/fr_FR/fdmprinter.def.json.po +++ b/resources/i18n/fr_FR/fdmprinter.def.json.po @@ -458,7 +458,7 @@ msgstr "Température du volume d'impression" msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "" +msgstr "En activant ce paramètre, votre tour principale recevra un bord même si le modèle n'en a pas. Si vous souhaitez une base plus solide pour une tour élevée, vous pouvez augmenter la hauteur de la base." msgctxt "center_object label" msgid "Center Object" @@ -2530,7 +2530,7 @@ msgstr "Taille de la base de la tour de prime" msgctxt "prime_tower_base_curve_magnitude label" msgid "Prime Tower Base Slope" -msgstr "" +msgstr "Pente de la base de la tour principale" msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" @@ -3986,7 +3986,7 @@ msgstr "La hauteur de la couche initiale en mm. Une couche initiale plus épaiss msgctxt "prime_tower_base_height description" msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "" +msgstr "Augmenter cette valeur rendra la tour principale plus robuste car la base sera plus large. Si ce paramètre est trop bas, la tour principale n'aura pas une base solide." msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." @@ -4062,7 +4062,7 @@ msgstr "La longueur de matériau rétracté pendant une rétraction." msgctxt "prime_tower_base_curve_magnitude description" msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "" +msgstr "Le facteur de magnitude utilisé pour la pente de la base de la tour principale. Si vous augmentez cette valeur, la base deviendra plus mince. Si vous la diminuez, la base deviendra plus épaisse." msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." @@ -4698,7 +4698,7 @@ msgstr "La largeur des attaches de la structure de connexion." msgctxt "prime_tower_base_size description" msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "" +msgstr "La largeur du bord/de la base de la tour principale. Une base plus large améliore l'adhésion au plateau d'impression, mais réduit également la zone d'impression effective." msgctxt "prime_tower_size description" msgid "The width of the prime tower." diff --git a/resources/i18n/it_IT/fdmprinter.def.json.po b/resources/i18n/it_IT/fdmprinter.def.json.po index 33180fa121b..5bfc9c836c1 100644 --- a/resources/i18n/it_IT/fdmprinter.def.json.po +++ b/resources/i18n/it_IT/fdmprinter.def.json.po @@ -458,7 +458,7 @@ msgstr "Temperatura volume di stampa" msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "" +msgstr "Attivando questa impostazione, la tua torre di primerizzazione avrà un bordo, anche se il modello non lo prevede. Se desideri una base più robusta per una torre alta, puoi aumentare l'altezza della base." msgctxt "center_object label" msgid "Center Object" @@ -2530,7 +2530,7 @@ msgstr "Dimensione della Base della Torre di Primerizzazione" msgctxt "prime_tower_base_curve_magnitude label" msgid "Prime Tower Base Slope" -msgstr "" +msgstr "Pendenza della Base della Torre di Primerizzazione" msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" @@ -3986,7 +3986,7 @@ msgstr "Indica l’altezza dello strato iniziale in mm. Uno strato iniziale più msgctxt "prime_tower_base_height description" msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "" +msgstr "L'altezza della base della torre di primerizzazione. Aumentando questo valore si otterrà una torre di primerizzazione più robusta perché la base sarà più ampia. Se questa impostazione è troppo bassa, la torre di primerizzazione non avrà una base solida." msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." @@ -4062,7 +4062,7 @@ msgstr "La lunghezza del materiale retratto durante il movimento di retrazione." msgctxt "prime_tower_base_curve_magnitude description" msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "" +msgstr "Il fattore di magnitudo usato per la pendenza della base della torre di primerizzazione. Aumentando questo valore, la base diventerà più sottile. Diminuendolo, la base diventerà più spessa." msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." @@ -4698,7 +4698,7 @@ msgstr "La larghezza delle travi della struttura ad incastro." msgctxt "prime_tower_base_size description" msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "" +msgstr "La larghezza del bordo/base della torre di primerizzazione. Una base più ampia migliora l'aderenza alla piastra di costruzione, ma riduce anche l'area di stampa effettiva." msgctxt "prime_tower_size description" msgid "The width of the prime tower." diff --git a/resources/i18n/ja_JP/fdmprinter.def.json.po b/resources/i18n/ja_JP/fdmprinter.def.json.po index 80dceafa3ae..0848c2451f0 100644 --- a/resources/i18n/ja_JP/fdmprinter.def.json.po +++ b/resources/i18n/ja_JP/fdmprinter.def.json.po @@ -458,7 +458,7 @@ msgstr "造形温度" msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "" +msgstr "この設定を有効にすると、モデルにはない場合でもプライムタワーにブリムが付きます。高いタワーのためにより頑丈なベースが必要な場合は、ベースの高さを増やすことができます。" msgctxt "center_object label" msgid "Center Object" @@ -2530,7 +2530,7 @@ msgstr "プライムタワーベースのサイズ" msgctxt "prime_tower_base_curve_magnitude label" msgid "Prime Tower Base Slope" -msgstr "" +msgstr "プライムタワーベースの傾斜" msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" @@ -3990,7 +3990,7 @@ msgstr "初期レイヤーの高さ(mm)。厚い初期層はビルドプレ msgctxt "prime_tower_base_height description" msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "" +msgstr "プライムタワーベースの高さです。この値を増やすと、ベースが広くなるためプライムタワーがより頑丈になります。この設定が低すぎると、プライムタワーは頑丈なベースを持たなくなります。" msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." @@ -4066,7 +4066,7 @@ msgstr "引き戻されるマテリアルの長さ。" msgctxt "prime_tower_base_curve_magnitude description" msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "" +msgstr "プライムタワーベースの傾斜に使用される倍率係数です。この値を増やすと、ベースが細くなります。減らすと、ベースが厚くなります。" msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." @@ -4702,7 +4702,7 @@ msgstr "インターロック構造ビームの幅。" msgctxt "prime_tower_base_size description" msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "" +msgstr "プライムタワーブリム/ベースの幅。ベースを大きくするとビルドプレートへの接着が強化されますが、有効な印刷エリアも減少します。" msgctxt "prime_tower_size description" msgid "The width of the prime tower." diff --git a/resources/i18n/ko_KR/fdmprinter.def.json.po b/resources/i18n/ko_KR/fdmprinter.def.json.po index 415cb86bd8c..8dfcca63822 100644 --- a/resources/i18n/ko_KR/fdmprinter.def.json.po +++ b/resources/i18n/ko_KR/fdmprinter.def.json.po @@ -458,7 +458,7 @@ msgstr "빌드 볼륨 온도" msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "" +msgstr "이 설정을 활성화하면 모델에 브림이 없더라도 프라임 타워에는 브림이 생성됩니다. 높은 타워의 튼튼한 베이스가 필요하다면 베이스 높이를 늘릴 수 있습니다." msgctxt "center_object label" msgid "Center Object" @@ -2530,7 +2530,7 @@ msgstr "프라임 타워 베이스 크기" msgctxt "prime_tower_base_curve_magnitude label" msgid "Prime Tower Base Slope" -msgstr "" +msgstr "프라임 타워 베이스 경사" msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" @@ -3986,7 +3986,7 @@ msgstr "첫번째 레이어의 높이 (mm)입니다. 첫번째 레이어를 두 msgctxt "prime_tower_base_height description" msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "" +msgstr "프라임 타워 베이스의 높이입니다. 이 값을 늘리면 베이스가 넓어져 프라임 타워가 더 튼튼해집니다. 이 설정이 너무 낮으면 프라임 타워에 튼튼한 베이스가 형성되지 않습니다." msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." @@ -4062,7 +4062,7 @@ msgstr "리트렉션 이동 중에 수축 된 재료의 길이입니다." msgctxt "prime_tower_base_curve_magnitude description" msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "" +msgstr "프라임 타워 베이스의 경사에 사용되는 크기 계수입니다. 이 값을 늘리면 베이스가 더 얇아집니다. 줄이면 베이스가 더 두꺼워집니다." msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." @@ -4698,7 +4698,7 @@ msgstr "연동 구조 빔의 너비입니다." msgctxt "prime_tower_base_size description" msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "" +msgstr "프라임 타워 브림/베이스의 폭입니다. 베이스가 크면 빌드 플레이트에 대한 접착력이 향상되지만, 실제 인쇄 영역은 줄어듭니다." msgctxt "prime_tower_size description" msgid "The width of the prime tower." diff --git a/resources/i18n/nl_NL/fdmprinter.def.json.po b/resources/i18n/nl_NL/fdmprinter.def.json.po index fce03c9f183..70cd4c18060 100644 --- a/resources/i18n/nl_NL/fdmprinter.def.json.po +++ b/resources/i18n/nl_NL/fdmprinter.def.json.po @@ -458,7 +458,7 @@ msgstr "Temperatuur werkvolume" msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "" +msgstr "Door deze instelling in te schakelen, krijgt uw prime toren een brim, zelfs als het model dat niet heeft. Als u een stevigere basis wilt voor een hoge toren, kunt u de basis hoogte verhogen." msgctxt "center_object label" msgid "Center Object" @@ -2530,7 +2530,7 @@ msgstr "Grootte van de basis van de Primepijler" msgctxt "prime_tower_base_curve_magnitude label" msgid "Prime Tower Base Slope" -msgstr "" +msgstr "Basis hellingshoek van de Prime Toren" msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" @@ -3986,7 +3986,7 @@ msgstr "De hoogte van de eerste laag in mm. Met een dikkere eerste laag hecht he msgctxt "prime_tower_base_height description" msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "" +msgstr "De hoogte van de basis van de prime toren. Het verhogen van deze waarde resulteert in een stevigere prime toren omdat de basis breder zal zijn. Als deze instelling te laag is, zal de prime toren geen stevige basis hebben." msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." @@ -4062,7 +4062,7 @@ msgstr "De lengte waarover het materiaal wordt ingetrokken tijdens een intrekbew msgctxt "prime_tower_base_curve_magnitude description" msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "" +msgstr "De groottefactor die gebruikt wordt voor de helling van de basis van de prime toren. Als u deze waarde verhoogt, wordt de basis slanker. Als u het verlaagt, wordt de basis dikker." msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." @@ -4698,7 +4698,7 @@ msgstr "De breedte van de in elkaar grijpende structuurbalken." msgctxt "prime_tower_base_size description" msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "" +msgstr "De breedte van de brim/basis van de prime toren. Een grotere basis verbetert de hechting aan het bouwplateau, maar vermindert ook het effectieve printgebied." msgctxt "prime_tower_size description" msgid "The width of the prime tower." diff --git a/resources/i18n/pt_PT/fdmprinter.def.json.po b/resources/i18n/pt_PT/fdmprinter.def.json.po index d07ac5af4b1..0ebe5995c64 100644 --- a/resources/i18n/pt_PT/fdmprinter.def.json.po +++ b/resources/i18n/pt_PT/fdmprinter.def.json.po @@ -458,7 +458,7 @@ msgstr "Temperatura do volume de construção" msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "" +msgstr "Ao ativar esta configuração, sua torre de primagem terá uma aba, mesmo que o modelo não tenha. Se você deseja uma base mais robusta para uma torre alta, pode aumentar a altura da base." msgctxt "center_object label" msgid "Center Object" @@ -2530,7 +2530,7 @@ msgstr "Tamanho da Base da Torre de Primagem" msgctxt "prime_tower_base_curve_magnitude label" msgid "Prime Tower Base Slope" -msgstr "" +msgstr "Inclinação da Base da Torre de Primagem" msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" @@ -3986,7 +3986,7 @@ msgstr "A espessura da camada inicial em milímetros. Uma camada inicial mais es msgctxt "prime_tower_base_height description" msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "" +msgstr "A altura da base da torre de primagem. Aumentar esse valor resultará em uma torre de primagem mais robusta, pois a base será mais larga. Se esta configuração for muito baixa, a torre de primagem não terá uma base sólida." msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." @@ -4062,7 +4062,7 @@ msgstr "O comprimento do material retraído durante um movimento de retração." msgctxt "prime_tower_base_curve_magnitude description" msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "" +msgstr "O fator de magnitude usado para a inclinação da base da torre de primagem. Se você aumentar este valor, a base ficará mais fina. Se diminuir, a base ficará mais espessa." msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." @@ -4698,7 +4698,7 @@ msgstr "A largura das vigas da estrutura de interligação." msgctxt "prime_tower_base_size description" msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "" +msgstr "A largura da aba/base da torre de primagem. Uma base maior melhora a aderência à placa de construção, mas também reduz a área efetiva de impressão." msgctxt "prime_tower_size description" msgid "The width of the prime tower." diff --git a/resources/i18n/ru_RU/fdmprinter.def.json.po b/resources/i18n/ru_RU/fdmprinter.def.json.po index f29ebbc02da..e4866356c92 100644 --- a/resources/i18n/ru_RU/fdmprinter.def.json.po +++ b/resources/i18n/ru_RU/fdmprinter.def.json.po @@ -458,7 +458,7 @@ msgstr "Температура для объема печати" msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "" +msgstr "Активируя эту настройку, ваша башня подготовки получит бортик, даже если модель его не требует. Если вам нужна более устойчивая основа для высокой башни, вы можете увеличить высоту основания." msgctxt "center_object label" msgid "Center Object" @@ -2530,7 +2530,7 @@ msgstr "Размер основания башни подготовки" msgctxt "prime_tower_base_curve_magnitude label" msgid "Prime Tower Base Slope" -msgstr "" +msgstr "Наклон основания башни подготовки" msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" @@ -3986,7 +3986,7 @@ msgstr "Высота первого слоя в миллиметрах. Боле msgctxt "prime_tower_base_height description" msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "" +msgstr "Высота основания башни подготовки. Увеличение этого значения приведет к созданию более устойчивой башни подготовки, так как основание будет шире. Если это значение слишком низкое, основание башни подготовки не будет достаточно устойчивым." msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." @@ -4062,7 +4062,7 @@ msgstr "Длина нити материала, которая будет изв msgctxt "prime_tower_base_curve_magnitude description" msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "" +msgstr "Множитель, используемый для наклона основания башни подготовки. Если увеличить это значение, основание станет более узким. Если уменьшить - основание станет толще." msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." @@ -4698,7 +4698,7 @@ msgstr "Ширина балок взаимосвязанной конструк msgctxt "prime_tower_base_size description" msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "" +msgstr "Ширина бортика/основания башни подготовки. Большее основание улучшает адгезию к платформе для печати, но также уменьшает эффективную площадь печати." msgctxt "prime_tower_size description" msgid "The width of the prime tower." diff --git a/resources/i18n/tr_TR/fdmprinter.def.json.po b/resources/i18n/tr_TR/fdmprinter.def.json.po index 5c9a08982da..a8c83450c62 100644 --- a/resources/i18n/tr_TR/fdmprinter.def.json.po +++ b/resources/i18n/tr_TR/fdmprinter.def.json.po @@ -458,7 +458,7 @@ msgstr "Yapı Disk Bölümü Sıcaklığı" msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "" +msgstr "Bu ayarı etkinleştirmeniz, modelinizde olmasa bile prime tower'ınıza bir brim kazandırır. Eğer yüksek bir kule için daha sağlam bir taban istiyorsanız, taban yüksekliğini artırabilirsiniz." msgctxt "center_object label" msgid "Center Object" @@ -2530,7 +2530,7 @@ msgstr "Başlangıç Kulesi Taban Boyutu" msgctxt "prime_tower_base_curve_magnitude label" msgid "Prime Tower Base Slope" -msgstr "" +msgstr "Prime Tower Taban Eğimi" msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" @@ -3986,7 +3986,7 @@ msgstr "İlk katmanın milimetre cinsinden yüksekliği. Kalın ilk katmanlar ya msgctxt "prime_tower_base_height description" msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "" +msgstr "Prime tower tabanının yüksekliği. Bu değeri artırmak, taban daha geniş olacağı için daha sağlam bir prime tower oluşturur. Eğer bu ayar çok düşükse, prime tower sağlam bir tabana sahip olmayacaktır." msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." @@ -4062,7 +4062,7 @@ msgstr "Geri çekme hareketi sırasında geri çekilen malzemenin uzunluğu." msgctxt "prime_tower_base_curve_magnitude description" msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "" +msgstr "Prime tower tabanının eğiminde kullanılan büyüklük faktörü. Bu değeri artırırsanız, taban daha ince hale gelir. Azaltırsanız, taban daha kalın olur." msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." @@ -4698,7 +4698,7 @@ msgstr "İç içe geçen yapı kirişlerinin genişliği." msgctxt "prime_tower_base_size description" msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "" +msgstr "Prime tower brim/tabanının genişliği. Daha büyük bir taban yapışmayı artırır, ancak etkili baskı alanını da azaltır." msgctxt "prime_tower_size description" msgid "The width of the prime tower." diff --git a/resources/i18n/zh_CN/fdmprinter.def.json.po b/resources/i18n/zh_CN/fdmprinter.def.json.po index 0bc3be3ef50..5778b5db871 100644 --- a/resources/i18n/zh_CN/fdmprinter.def.json.po +++ b/resources/i18n/zh_CN/fdmprinter.def.json.po @@ -458,7 +458,7 @@ msgstr "打印体积温度" msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "" +msgstr "启用此设置将为您的 prime tower 添加一个边缘,即使您的模型中原本没有。如果您希望高塔有更坚固的基座,可以增加底座高度。" msgctxt "center_object label" msgid "Center Object" @@ -2530,7 +2530,7 @@ msgstr "底漆塔座尺寸" msgctxt "prime_tower_base_curve_magnitude label" msgid "Prime Tower Base Slope" -msgstr "" +msgstr "Prime Tower 底座斜度" msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" @@ -3986,7 +3986,7 @@ msgstr "起始层高(以毫米为单位)。起始层越厚,与打印平台 msgctxt "prime_tower_base_height description" msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "" +msgstr "Prime tower 底座的高度。增加这个值将使 prime tower 更加坚固,因为底座会更宽。如果这个设置过低,prime tower 将没有坚固的底座。" msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." @@ -4062,7 +4062,7 @@ msgstr "回抽移动期间回抽的材料长度。" msgctxt "prime_tower_base_curve_magnitude description" msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "" +msgstr "用于 prime tower 底座斜度的幅度因子。如果您增加这个值,底座会变得更细。如果减小它,底座会变得更厚。" msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." @@ -4698,7 +4698,7 @@ msgstr "互锁结构梁的宽度。" msgctxt "prime_tower_base_size description" msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "" +msgstr "Prime tower 边缘/底座的宽度。更大的底座可以增强对打印板的粘附力,但也会减少有效打印区域。" msgctxt "prime_tower_size description" msgid "The width of the prime tower." From c089248625f78580b01431aa0da485f561974733 Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Thu, 16 Nov 2023 09:12:24 +0100 Subject: [PATCH 127/765] - ABS-R print profiles for ABS-R with the 1C extruder --- ...ethodx_1c_um-absr-175_0.2mm_solid.inst.cfg | 16 +++++++ ...thodxl_1c_um-absr-175_0.2mm_solid.inst.cfg | 16 +++++++ .../um_methodx_1c_um-absr-175_0.2mm.inst.cfg | 42 ++++++++++++++++++ .../um_methodxl_1c_um-absr-175_0.2mm.inst.cfg | 44 +++++++++++++++++++ 4 files changed, 118 insertions(+) create mode 100644 resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_solid.inst.cfg create mode 100644 resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_solid.inst.cfg create mode 100644 resources/quality/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm.inst.cfg create mode 100644 resources/quality/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm.inst.cfg diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_solid.inst.cfg new file mode 100644 index 00000000000..64433fec7ea --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_solid.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ultimaker_methodx +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_absr_175 +quality_type = draft +setting_version = 22 +type = intent +variant = 1C + +[values] +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_solid.inst.cfg new file mode 100644 index 00000000000..8a2601d408a --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_solid.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ultimaker_methodxl +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_absr_175 +quality_type = draft +setting_version = 22 +type = intent +variant = 1C + +[values] +infill_sparse_density = 100 + diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm.inst.cfg new file mode 100644 index 00000000000..9f0d8c9a7cd --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm.inst.cfg @@ -0,0 +1,42 @@ +[general] +definition = ultimaker_methodx +name = Fast +version = 4 + +[metadata] +material = ultimaker_absr_175 +quality_type = draft +setting_version = 22 +type = quality +variant = 1C +weight = -2 + +[values] +cool_fan_enabled = False +raft_airgap = 0.3 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 250.0 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm.inst.cfg new file mode 100644 index 00000000000..7b5daf0d201 --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm.inst.cfg @@ -0,0 +1,44 @@ +[general] +definition = ultimaker_methodxl +name = Fast +version = 4 + +[metadata] +material = ultimaker_absr_175 +quality_type = draft +setting_version = 22 +type = quality +variant = 1C +weight = -2 + +[values] +build_volume_temperature = 85 +cool_fan_enabled = False +default_material_bed_temperature = 95 +raft_airgap = 0.3 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 250.0 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + From 1950cc65aa2b110e928c097f1dbf6692e79ca3ec Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 16 Nov 2023 11:13:14 +0100 Subject: [PATCH 128/765] Pin dulcificum at beta.1 release --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index c56398f4ead..1e432dfd9d2 100644 --- a/conanfile.py +++ b/conanfile.py @@ -318,7 +318,7 @@ def requirements(self): self.requires("curaengine_grpc_definitions/0.1.0") self.requires("zlib/1.2.13") self.requires("pyarcus/5.3.0") - self.requires("dulcificum/(latest)@ultimaker/stable") + self.requires("dulcificum/0.1.0-beta.1") # TODO update pin for stable self.requires("curaengine/(latest)@ultimaker/stable") self.requires("pysavitar/5.3.0") self.requires("pynest2d/5.3.0") From 96f6aac79bce225f6361739c9329dc943680c21c Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Thu, 16 Nov 2023 11:46:51 +0100 Subject: [PATCH 129/765] Create the Cura binaries Contributes to CURA-10831 --- .github/workflows/conan-package-create.yml | 153 --------------------- .github/workflows/conan-package.yml | 92 ++----------- 2 files changed, 12 insertions(+), 233 deletions(-) delete mode 100644 .github/workflows/conan-package-create.yml diff --git a/.github/workflows/conan-package-create.yml b/.github/workflows/conan-package-create.yml deleted file mode 100644 index 18e2600e1d7..00000000000 --- a/.github/workflows/conan-package-create.yml +++ /dev/null @@ -1,153 +0,0 @@ -name: Create and Upload Conan package - -on: - workflow_call: - inputs: - project_name: - required: true - type: string - - recipe_id_full: - required: true - type: string - - build_id: - required: true - type: number - - build_info: - required: false - default: true - type: boolean - - recipe_id_latest: - required: false - type: string - - runs_on: - required: true - type: string - - python_version: - required: true - type: string - - conan_config_branch: - required: false - type: string - - conan_logging_level: - required: false - type: string - - conan_clean_local_cache: - required: false - type: boolean - default: false - - conan_upload_community: - required: false - default: true - type: boolean - -env: - CONAN_LOGIN_USERNAME: ${{ secrets.CONAN_USER }} - CONAN_PASSWORD: ${{ secrets.CONAN_PASS }} - CONAN_LOG_RUN_TO_OUTPUT: 1 - CONAN_LOGGING_LEVEL: ${{ inputs.conan_logging_level }} - CONAN_NON_INTERACTIVE: 1 - -jobs: - conan-package-create: - runs-on: ${{ inputs.runs_on }} - - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Setup Python and pip - uses: actions/setup-python@v4 - with: - python-version: ${{ inputs.python_version }} - cache: 'pip' - cache-dependency-path: .github/workflows/requirements-conan-package.txt - - - name: Install Python requirements for runner - run: pip install -r https://raw.githubusercontent.com/Ultimaker/Cura/main/.github/workflows/requirements-conan-package.txt - # Note the runner requirements are always installed from the main branch in the Ultimaker/Cura repo - - - name: Use Conan download cache (Bash) - if: ${{ runner.os != 'Windows' }} - run: conan config set storage.download_cache="$HOME/.conan/conan_download_cache" - - - name: Use Conan download cache (Powershell) - if: ${{ runner.os == 'Windows' }} - run: conan config set storage.download_cache="C:\Users\runneradmin\.conan\conan_download_cache" - - - name: Cache Conan local repository packages (Bash) - uses: actions/cache@v3 - if: ${{ runner.os != 'Windows' }} - with: - path: | - $HOME/.conan/data - $HOME/.conan/conan_download_cache - key: conan-${{ inputs.runs_on }}-${{ runner.arch }}-create-cache - - - name: Cache Conan local repository packages (Powershell) - uses: actions/cache@v3 - if: ${{ runner.os == 'Windows' }} - with: - path: | - C:\Users\runneradmin\.conan\data - C:\.conan - C:\Users\runneradmin\.conan\conan_download_cache - key: conan-${{ inputs.runs_on }}-${{ runner.arch }}-create-cache - - - name: Install MacOS system requirements - if: ${{ runner.os == 'Macos' }} - run: brew install autoconf automake ninja - - # NOTE: Due to what are probably github issues, we have to remove the cache and reconfigure before the rest. - # This is maybe because grub caches the disk it uses last time, which is recreated each time. - - name: Install Linux system requirements - if: ${{ runner.os == 'Linux' }} - run: | - sudo rm /var/cache/debconf/config.dat - sudo dpkg --configure -a - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo apt update - sudo apt upgrade - sudo apt install build-essential checkinstall libegl-dev zlib1g-dev libssl-dev ninja-build autoconf libx11-dev libx11-xcb-dev libfontenc-dev libice-dev libsm-dev libxau-dev libxaw7-dev libxcomposite-dev libxcursor-dev libxdamage-dev libxdmcp-dev libxext-dev libxfixes-dev libxi-dev libxinerama-dev libxkbfile-dev libxmu-dev libxmuu-dev libxpm-dev libxrandr-dev libxrender-dev libxres-dev libxss-dev libxt-dev libxtst-dev libxv-dev libxvmc-dev libxxf86vm-dev xtrans-dev libxcb-render0-dev libxcb-render-util0-dev libxcb-xkb-dev libxcb-icccm4-dev libxcb-image0-dev libxcb-keysyms1-dev libxcb-randr0-dev libxcb-shape0-dev libxcb-sync-dev libxcb-xfixes0-dev libxcb-xinerama0-dev xkb-data libxcb-dri3-dev uuid-dev libxcb-util-dev libxkbcommon-x11-dev pkg-config flex bison -y - - - name: Install GCC-13 on ubuntu - if: ${{ startsWith(inputs.runs_on, 'ubuntu') }} - run: | - sudo apt install g++-13 gcc-13 -y - sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 13 - sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-13 13 - - - name: Create the default Conan profile - run: conan profile new default --detect - - - name: Get Conan configuration from branch - if: ${{ inputs.conan_config_branch != '' }} - run: conan config install https://github.com/Ultimaker/conan-config.git -a "-b ${{ inputs.conan_config_branch }}" - - - name: Get Conan configuration - run: | - conan config install https://github.com/Ultimaker/conan-config.git - conan config install https://github.com/Ultimaker/conan-config.git -a "-b runner/${{ runner.os }}/${{ runner.arch }}" - - - name: Add Cura private Artifactory remote - run: conan remote add cura-private https://ultimaker.jfrog.io/artifactory/api/conan/cura-private True - - - name: Create the Packages - run: conan install ${{ inputs.recipe_id_full }} --build=missing --update -c tools.build:skip_test=True - - - name: Upload the Package(s) - if: ${{ always() && inputs.conan_upload_community }} - run: conan upload ${{ inputs.recipe_id_full }} -r cura --all -c - - - name: Upload the Package(s) to the private Artifactory - if: ${{ always() && ! inputs.conan_upload_community }} - run: conan upload ${{ inputs.recipe_id_full }} -r cura-private --all -c diff --git a/.github/workflows/conan-package.yml b/.github/workflows/conan-package.yml index ad460f56b9c..46831194b15 100644 --- a/.github/workflows/conan-package.yml +++ b/.github/workflows/conan-package.yml @@ -51,95 +51,27 @@ on: env: CONAN_LOGIN_USERNAME_CURA: ${{ secrets.CONAN_USER }} CONAN_PASSWORD_CURA: ${{ secrets.CONAN_PASS }} - CONAN_LOGIN_USERNAME_CURA_CE: ${{ secrets.CONAN_USER }} - CONAN_PASSWORD_CURA_CE: ${{ secrets.CONAN_PASS }} - CONAN_LOG_RUN_TO_OUTPUT: 1 - CONAN_LOGGING_LEVEL: ${{ inputs.conan_logging_level }} - CONAN_NON_INTERACTIVE: 1 -permissions: { } +# FIXME: point to `main` once merged jobs: conan-recipe-version: - permissions: - contents: read - uses: ultimaker/cura-workflows/.github/workflows/conan-recipe-version.yml@CURA-10831 with: project_name: cura - conan-package-create-linux: + conan-package-export: needs: [ conan-recipe-version ] - runs-on: 'ubuntu-latest' - - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Cache Conan data - id: cache-conan - uses: actions/cache@v3 - with: - path: ~/.conan - key: ${{ runner.os }}-conan - - - name: Setup Python and pip - uses: actions/setup-python@v4 - with: - python-version: '3.11.x' - cache: 'pip' - cache-dependency-path: .github/workflows/requirements-conan-package.txt - - - name: Install Python requirements for runner - run: pip install -r .github/workflows/requirements-conan-package.txt - - # NOTE: Due to what are probably github issues, we have to remove the cache and reconfigure before the rest. - # This is maybe because grub caches the disk it uses last time, which is recreated each time. - - name: Install Linux system requirements - if: ${{ runner.os == 'Linux' }} - run: | - sudo rm /var/cache/debconf/config.dat - sudo dpkg --configure -a - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo apt update - sudo apt upgrade - sudo apt install efibootmgr build-essential checkinstall libegl-dev zlib1g-dev libssl-dev ninja-build autoconf libx11-dev libx11-xcb-dev libfontenc-dev libice-dev libsm-dev libxau-dev libxaw7-dev libxcomposite-dev libxcursor-dev libxdamage-dev libxdmcp-dev libxext-dev libxfixes-dev libxi-dev libxinerama-dev libxkbfile-dev libxmu-dev libxmuu-dev libxpm-dev libxrandr-dev libxrender-dev libxres-dev libxss-dev libxt-dev libxtst-dev libxv-dev libxvmc-dev libxxf86vm-dev xtrans-dev libxcb-render0-dev libxcb-render-util0-dev libxcb-xkb-dev libxcb-icccm4-dev libxcb-image0-dev libxcb-keysyms1-dev libxcb-randr0-dev libxcb-shape0-dev libxcb-sync-dev libxcb-xfixes0-dev libxcb-xinerama0-dev xkb-data libxcb-dri3-dev uuid-dev libxcb-util-dev libxkbcommon-x11-dev pkg-config flex bison g++-12 gcc-12 -y - - - name: Install GCC-13 - run: | - sudo apt install g++-13 gcc-13 -y - sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 13 - sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-13 13 - - - name: Create the default Conan profile - run: conan profile new default --detect --force - - - name: Get Conan configuration - run: | - conan config install https://github.com/Ultimaker/conan-config.git - conan config install https://github.com/Ultimaker/conan-config.git -a "-b runner/${{ runner.os }}/${{ runner.arch }}" - - - name: Create the Packages - run: conan create . ${{ needs.conan-recipe-version.outputs.recipe_id_full }} --build=missing --update -o ${{ needs.conan-recipe-version.outputs.project_name }}:devtools=True -o ${{ needs.conan-recipe-version.outputs.project_name }}:enable_i18n=True -c tools.build:skip_test=True - - - name: Create the latest alias - if: always() - run: conan alias ${{ needs.conan-recipe-version.outputs.recipe_id_latest }} ${{ needs.conan-recipe-version.outputs.recipe_id_full }} - - - name: Upload the Package(s) - if: always() - run: | - conan upload ${{ needs.conan-recipe-version.outputs.recipe_id_full }} -r cura --all -c - conan upload ${{ needs.conan-recipe-version.outputs.recipe_id_latest }} -r cura -c + uses: ultimaker/cura-workflows/.github/workflows/conan-recipe-export.yml@CURA-10831 + with: + recipe_id_full: ${{ needs.conan-recipe-version.outputs.recipe_id_full }} + recipe_id_latest: ${{ needs.conan-recipe-version.outputs.recipe_id_latest }} + secrets: inherit - notify-create: - if: ${{ always() && (github.event_name == 'push' && (github.ref_name == 'main' || github.ref_name == 'master' || needs.conan-recipe-version.outputs.is_release_branch == 'true')) }} - needs: [ conan-recipe-version, conan-package-create-linux ] + conan-package-create-linux: + needs: [ conan-recipe-version, conan-package-export ] - uses: ultimaker/cura/.github/workflows/notify.yml@main + uses: ultimaker/cura-workflows/.github/workflows/conan-package-create-linux.yml@CURA-10831 with: - success: ${{ contains(join(needs.*.result, ','), 'success') }} - success_title: "New binaries created in ${{ github.repository }}" - success_body: "Created binaries for ${{ needs.conan-recipe-version.outputs.recipe_id_full }}" - failure_title: "Failed to create binaries in ${{ github.repository }}" - failure_body: "Failed to created binaries for ${{ needs.conan-recipe-version.outputs.recipe_id_full }}" + recipe_id_full: ${{ needs.conan-recipe-version.outputs.recipe_id_full }} + conan_extra_args: '-c tools.build:skip_test=True -o ${{ needs.conan-recipe-version.outputs.project_name }}:enable_i18n=True' secrets: inherit From 78cafeca4bbcda7a2df8e5628e520f5e1c4f405e Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Thu, 16 Nov 2023 13:30:26 +0100 Subject: [PATCH 130/765] Only check internal requirements when building internal Contributes to CURA-10831 --- conanfile.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/conanfile.py b/conanfile.py index 872bbe6c47a..17b42abc37d 100644 --- a/conanfile.py +++ b/conanfile.py @@ -317,10 +317,11 @@ def requirements(self): if self.options.internal and "fdm_materials" in req: continue self.requires(req) - for req in self.conan_data["requirements_internal"]: - if not self.options.internal and "fdm_materials" in req: - continue - self.requires(req) + if self.options.internal: + for req in self.conan_data["requirements_internal"]: + if "fdm_materials" in req: + continue + self.requires(req) self.requires("cpython/3.10.4") self.requires("boost/1.82.0") self.requires("fmt/9.0.0") From 01998d2113fbac387b0163f71139cff0c416083c Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Thu, 16 Nov 2023 13:35:13 +0100 Subject: [PATCH 131/765] Simplify conan-package.yml workflow Removed redundant workflow dispatch inputs and comments in .github/workflows/conan-package.yml. These were unnecessary for the push-based workflow and have been simplified to streamline the process and make it more efficient. Contributes to CURA-10831 --- .github/workflows/conan-package.yml | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/.github/workflows/conan-package.yml b/.github/workflows/conan-package.yml index 46831194b15..e06b7dd2d5e 100644 --- a/.github/workflows/conan-package.yml +++ b/.github/workflows/conan-package.yml @@ -1,27 +1,6 @@ ---- name: conan-package -# Exports the recipe, sources and binaries for Mac, Windows and Linux and upload these to the server such that these can -# be used downstream. -# -# It should run on pushes against main or CURA-* branches, but it will only create the binaries for main and release branches - on: - workflow_dispatch: - inputs: - create_binaries_windows: - required: true - default: false - description: 'create binaries Windows' - create_binaries_linux: - required: true - default: false - description: 'create binaries Linux' - create_binaries_macos: - required: true - default: false - description: 'create binaries Macos' - push: paths: - 'plugins/**' From 036516b8f9d18a94d20c0e366a9bf7b4d049f023 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 16 Nov 2023 13:53:43 +0100 Subject: [PATCH 132/765] Re-add support for post slice data variables in start/end gcode With previous implementation we lost support for these variables in start/end gcode "filament_cost", "print_time", "filament_amount", "filament_weight", "jobname" CURA-11347 --- plugins/CuraEngineBackend/StartSliceJob.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/plugins/CuraEngineBackend/StartSliceJob.py b/plugins/CuraEngineBackend/StartSliceJob.py index 2887743b4fe..37a2116f5d4 100644 --- a/plugins/CuraEngineBackend/StartSliceJob.py +++ b/plugins/CuraEngineBackend/StartSliceJob.py @@ -69,6 +69,14 @@ def __init__(self, default_extruder_nr: int = -1, *, self._additional_per_extruder_settings: Optional[Dict[str, Dict[str, any]]] = additional_per_extruder_settings def get_value(self, expression: str, args: [str], kwargs: dict) -> str: + + # The following variables are not settings, but only become available after slicing. + # when these variables are encountered, we return them as-is. They are replaced later + # when the actual values are known. + post_slice_data_variables = ["filament_cost", "print_time", "filament_amount", "filament_weight", "jobname"] + if expression in post_slice_data_variables: + return f"{{{expression}}}" + extruder_nr = self._default_extruder_nr # The settings may specify a specific extruder to use. This is done by @@ -102,6 +110,9 @@ def get_value(self, expression: str, args: [str], kwargs: dict) -> str: setting_function = SettingFunction(expression) value = setting_function(container_stack, additional_variables=additional_variables) + print("value", value) + print("expression", expression) + return value From 36f2deea1dacb8f68b2685a98b2e2e5277010814 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 16 Nov 2023 14:45:46 +0100 Subject: [PATCH 133/765] Fix some more parsing issues Example of issues we had is that parsing floating point numbers would parse the dot as an attribute syntax and trying to retrieve both sides of the attributes to the get_value resolve. E.g `3.14` would be interpreted as getting the `14` property of the object `3`, which ofcourse throws an error. CURA-11347 --- plugins/CuraEngineBackend/StartSliceJob.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/plugins/CuraEngineBackend/StartSliceJob.py b/plugins/CuraEngineBackend/StartSliceJob.py index 37a2116f5d4..a0a16e7d26d 100644 --- a/plugins/CuraEngineBackend/StartSliceJob.py +++ b/plugins/CuraEngineBackend/StartSliceJob.py @@ -6,7 +6,7 @@ from string import Formatter from enum import IntEnum import time -from typing import Any, cast, Dict, List, Optional, Set +from typing import Any, cast, Dict, List, Optional, Set, Tuple import re import pyArcus as Arcus # For typing. from PyQt6.QtCore import QCoreApplication @@ -68,6 +68,14 @@ def __init__(self, default_extruder_nr: int = -1, *, self._default_extruder_nr: int = default_extruder_nr self._additional_per_extruder_settings: Optional[Dict[str, Dict[str, any]]] = additional_per_extruder_settings + def get_field(self, field_name, args: [str], kwargs: dict) -> Tuple[str, str]: + # get_field method parses all fields in the format-string and parses them individually to the get_value method. + # e.g. for a string "Hello {foo.bar}" would the complete field "foo.bar" would be passed to get_field, and then + # the individual parts "foo" and "bar" would be passed to get_value. This poses a problem for us, because want + # to parse the entire field as a single expression. To solve this, we override the get_field method and return + # the entire field as the expression. + return self.get_value(field_name, args, kwargs), field_name + def get_value(self, expression: str, args: [str], kwargs: dict) -> str: # The following variables are not settings, but only become available after slicing. From afe3f54167aa856cb96eef5d8739580c3f96ce03 Mon Sep 17 00:00:00 2001 From: Casper Lamboo Date: Fri, 17 Nov 2023 11:00:50 +0100 Subject: [PATCH 134/765] Remove debug statements Co-authored-by: Jaime van Kessel --- plugins/CuraEngineBackend/StartSliceJob.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugins/CuraEngineBackend/StartSliceJob.py b/plugins/CuraEngineBackend/StartSliceJob.py index a0a16e7d26d..a12e9e655da 100644 --- a/plugins/CuraEngineBackend/StartSliceJob.py +++ b/plugins/CuraEngineBackend/StartSliceJob.py @@ -118,8 +118,6 @@ def get_value(self, expression: str, args: [str], kwargs: dict) -> str: setting_function = SettingFunction(expression) value = setting_function(container_stack, additional_variables=additional_variables) - print("value", value) - print("expression", expression) return value From 17393ce101562834fcc483424165b0bee9c680d3 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 17 Nov 2023 15:36:39 +0100 Subject: [PATCH 135/765] Manually adding gradual flow settings CURA-11300 --- resources/i18n/fdmprinter.def.json.pot | 42 ++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/resources/i18n/fdmprinter.def.json.pot b/resources/i18n/fdmprinter.def.json.pot index 89baef79414..d6fe0f96cef 100644 --- a/resources/i18n/fdmprinter.def.json.pot +++ b/resources/i18n/fdmprinter.def.json.pot @@ -5476,3 +5476,45 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "" + +### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better. + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts\/stops." +msgstr "" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" \ No newline at end of file From d4966044ea19000ac67bd29738e1754b2dfaeb25 Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Tue, 21 Nov 2023 09:24:34 +0100 Subject: [PATCH 136/765] When self-support is enabled do not use support material layers in the raft. Note: Switching support settings takes longer in the UI due to the recalculations. PP-402 --- resources/definitions/ultimaker_method_base.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/ultimaker_method_base.def.json b/resources/definitions/ultimaker_method_base.def.json index 9e21396b878..8e9034c9547 100644 --- a/resources/definitions/ultimaker_method_base.def.json +++ b/resources/definitions/ultimaker_method_base.def.json @@ -360,7 +360,7 @@ "raft_interface_line_width": { "value": 1.2 }, "raft_interface_thickness": { "value": 0.3 }, "raft_margin": { "value": 3 }, - "raft_surface_extruder_nr": { "value": "int(anyExtruderWithMaterial('material_is_support_material'))" }, + "raft_surface_extruder_nr": { "value": "int(anyExtruderWithMaterial('material_is_support_material')) if support_enable and extruderValue(support_extruder_nr,'material_is_support_material') else raft_base_extruder_nr" }, "retraction_amount": { "value": 0.75 }, "retraction_combing": { "value": "'off'" }, "retraction_combing_max_distance": { "value": "speed_travel / 10" }, From bca778bca01cf43e71248ed4d6a8c9e06d9009d6 Mon Sep 17 00:00:00 2001 From: HellAholic Date: Tue, 21 Nov 2023 09:26:52 +0100 Subject: [PATCH 137/765] Revert "When self-support is enabled do not use support material layers in the raft." This reverts commit d4966044ea19000ac67bd29738e1754b2dfaeb25. --- resources/definitions/ultimaker_method_base.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/ultimaker_method_base.def.json b/resources/definitions/ultimaker_method_base.def.json index 8e9034c9547..9e21396b878 100644 --- a/resources/definitions/ultimaker_method_base.def.json +++ b/resources/definitions/ultimaker_method_base.def.json @@ -360,7 +360,7 @@ "raft_interface_line_width": { "value": 1.2 }, "raft_interface_thickness": { "value": 0.3 }, "raft_margin": { "value": 3 }, - "raft_surface_extruder_nr": { "value": "int(anyExtruderWithMaterial('material_is_support_material')) if support_enable and extruderValue(support_extruder_nr,'material_is_support_material') else raft_base_extruder_nr" }, + "raft_surface_extruder_nr": { "value": "int(anyExtruderWithMaterial('material_is_support_material'))" }, "retraction_amount": { "value": 0.75 }, "retraction_combing": { "value": "'off'" }, "retraction_combing_max_distance": { "value": "speed_travel / 10" }, From 83c26268840c1474978e316285e7b00f81c368b6 Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Tue, 21 Nov 2023 09:37:54 +0100 Subject: [PATCH 138/765] When self-support is enabled do not use support material layers in the raft. Note: Switching support settings takes longer in the UI due to the recalculations. PP-402 --- resources/definitions/ultimaker_method_base.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/ultimaker_method_base.def.json b/resources/definitions/ultimaker_method_base.def.json index 9e21396b878..8e9034c9547 100644 --- a/resources/definitions/ultimaker_method_base.def.json +++ b/resources/definitions/ultimaker_method_base.def.json @@ -360,7 +360,7 @@ "raft_interface_line_width": { "value": 1.2 }, "raft_interface_thickness": { "value": 0.3 }, "raft_margin": { "value": 3 }, - "raft_surface_extruder_nr": { "value": "int(anyExtruderWithMaterial('material_is_support_material'))" }, + "raft_surface_extruder_nr": { "value": "int(anyExtruderWithMaterial('material_is_support_material')) if support_enable and extruderValue(support_extruder_nr,'material_is_support_material') else raft_base_extruder_nr" }, "retraction_amount": { "value": 0.75 }, "retraction_combing": { "value": "'off'" }, "retraction_combing_max_distance": { "value": "speed_travel / 10" }, From 3052c6be3b4ff728ea781e006ae3af22c2f42a1f Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 21 Nov 2023 13:21:25 +0100 Subject: [PATCH 139/765] Enable Sentry for the engine if the conan con sentry_url is set If you want to test this locally do a conan install with: ``` -c user.curaengine:sentry_url= ``` The URL is stored in the CuraEngine repository variables Contributes to CURA-11364 --- conanfile.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/conanfile.py b/conanfile.py index 4b37bfdd520..4ec4ffc03f4 100644 --- a/conanfile.py +++ b/conanfile.py @@ -306,6 +306,8 @@ def configure(self): self.options["boost"].header_only = True if self.settings.os == "Linux": self.options["curaengine_grpc_definitions"].shared = True + if self.conf.get("user.curaengine:sentry_url", "", check_type = str) != "": + self.options["curaengine"].enable_sentry = True def validate(self): version = self.conf_info.get("user.cura:version", default = self.version, check_type = str) From 3bd2ea4296bfaf8ba190ce566b07e448674f57f6 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 21 Nov 2023 13:22:18 +0100 Subject: [PATCH 140/765] Pin dulcificum version Contributes to CURA-11364 --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index 4ec4ffc03f4..6384469416c 100644 --- a/conanfile.py +++ b/conanfile.py @@ -320,7 +320,7 @@ def requirements(self): self.requires("curaengine_grpc_definitions/0.1.0") self.requires("zlib/1.2.13") self.requires("pyarcus/5.3.0") - self.requires("dulcificum/(latest)@ultimaker/stable") + self.requires("dulcificum/0.1.0-beta.1") self.requires("curaengine/(latest)@ultimaker/testing") self.requires("pysavitar/5.3.0") self.requires("pynest2d/5.3.0") From f22d82c1e068a0bb7ae77aa228ef7dcf5bf00776 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 21 Nov 2023 13:27:26 +0100 Subject: [PATCH 141/765] Use CURA-11634 for CuraEngine Contributes to CURA-11364 --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index 6384469416c..4fe68109e31 100644 --- a/conanfile.py +++ b/conanfile.py @@ -321,7 +321,7 @@ def requirements(self): self.requires("zlib/1.2.13") self.requires("pyarcus/5.3.0") self.requires("dulcificum/0.1.0-beta.1") - self.requires("curaengine/(latest)@ultimaker/testing") + self.requires("curaengine/(latest)@ultimaker/cura_11364") self.requires("pysavitar/5.3.0") self.requires("pynest2d/5.3.0") self.requires("curaengine_plugin_gradual_flow/0.1.0") From 60bf2fbc2c430a6711c746d0c433e3a50f381769 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Tue, 21 Nov 2023 14:01:58 +0100 Subject: [PATCH 142/765] Add preference to disable sentry engine crash reporting CURA-11364 --- .../CuraEngineBackend/CuraEngineBackend.py | 20 +++++++++++++++---- resources/qml/Preferences/GeneralPage.qml | 19 ++++++++++++++++++ 2 files changed, 35 insertions(+), 4 deletions(-) diff --git a/plugins/CuraEngineBackend/CuraEngineBackend.py b/plugins/CuraEngineBackend/CuraEngineBackend.py index 1e965f5e8c9..24f3dc1ae1b 100755 --- a/plugins/CuraEngineBackend/CuraEngineBackend.py +++ b/plugins/CuraEngineBackend/CuraEngineBackend.py @@ -163,6 +163,7 @@ def __init__(self) -> None: self._is_disabled: bool = False application.getPreferences().addPreference("general/auto_slice", False) + application.getPreferences().addPreference("info/send_engine_crash", True) self._use_timer: bool = False @@ -173,6 +174,8 @@ def __init__(self) -> None: self._change_timer.setSingleShot(True) self._change_timer.setInterval(500) self.determineAutoSlicing() + + application.getPreferences().preferenceChanged.connect(self._onPreferencesChanged) self._slicing_error_message = Message( @@ -193,6 +196,9 @@ def __init__(self) -> None: application.initializationFinished.connect(self.initialize) + # Ensure that the initial value for send_engine_crash is handled correctly. + application.callLater(self._onPreferencesChanged, "info/send_engine_crash") + def startPlugins(self) -> None: """ Ensure that all backend plugins are started @@ -1088,11 +1094,17 @@ def disableTimer(self) -> None: self._change_timer.timeout.disconnect(self.slice) def _onPreferencesChanged(self, preference: str) -> None: - if preference != "general/auto_slice": + if preference != "general/auto_slice" and preference != "info/send_engine_crash": return - auto_slice = self.determineAutoSlicing() - if auto_slice: - self._change_timer.start() + if preference == "general/auto_slice": + auto_slice = self.determineAutoSlicing() + if auto_slice: + self._change_timer.start() + elif preference == "info/send_engine_crash": + if CuraApplication.getInstance().getPreferences().getValue("info/send_engine_crash"): + os.environ["use_sentry"] = str(1) + else: + os.environ["use_sentry"] = str(0) def tickle(self) -> None: """Tickle the backend so in case of auto slicing, it starts the timer.""" diff --git a/resources/qml/Preferences/GeneralPage.qml b/resources/qml/Preferences/GeneralPage.qml index 32bbcd5053b..587084444c6 100644 --- a/resources/qml/Preferences/GeneralPage.qml +++ b/resources/qml/Preferences/GeneralPage.qml @@ -120,6 +120,10 @@ UM.PreferencesPage UM.Preferences.resetPreference("info/send_slice_info") sendDataCheckbox.checked = boolCheck(UM.Preferences.getValue("info/send_slice_info")) + + UM.Preferences.resetPreference("info/send_engine_crash") + sendEngineCrashCheckbox.checked = boolCheck(UM.Preferences.getValue("info/send_engine_crash")) + UM.Preferences.resetPreference("info/automatic_update_check") checkUpdatesCheckbox.checked = boolCheck(UM.Preferences.getValue("info/automatic_update_check")) @@ -855,6 +859,21 @@ UM.PreferencesPage font: UM.Theme.getFont("medium_bold") text: catalog.i18nc("@label", "Privacy") } + UM.TooltipArea + { + width: childrenRect.width + height: visible ? childrenRect.height : 0 + text: catalog.i18nc("@info:tooltip", "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored.") + + UM.CheckBox + { + id: sendEngineCrashCheckbox + text: catalog.i18nc("@option:check","Send (anonymous) engine crash reports") + checked: boolCheck(UM.Preferences.getValue("info/send_engine_crash")) + onCheckedChanged: UM.Preferences.setValue("info/send_engine_crash", checked) + } + } + UM.TooltipArea { width: childrenRect.width From 712b06871f86ee093a2b5cdd309039a76fc49a15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A1udio=20=27Patola=27=20Sampaio?= Date: Wed, 22 Nov 2023 17:29:53 +0100 Subject: [PATCH 143/765] Added pt_BR strings for Cura 5.6 --- resources/i18n/pt_BR/cura.po | 11300 +++++++------- resources/i18n/pt_BR/fdmprinter.def.json.po | 13730 +++++++++--------- 2 files changed, 12515 insertions(+), 12515 deletions(-) diff --git a/resources/i18n/pt_BR/cura.po b/resources/i18n/pt_BR/cura.po index 4bd6ccad15b..1e11b80d053 100644 --- a/resources/i18n/pt_BR/cura.po +++ b/resources/i18n/pt_BR/cura.po @@ -1,5650 +1,5650 @@ -# Cura -# Copyright (C) 2022 UltiMaker. -# This file is distributed under the same license as the Cura package. -# Ultimaker , 2022. -# -msgid "" -msgstr "" -"Project-Id-Version: Cura 5.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-31 19:13+0100\n" -"PO-Revision-Date: 2023-10-23 05:56+0200\n" -"Last-Translator: Cláudio Sampaio \n" -"Language-Team: Cláudio Sampaio \n" -"Language: pt_BR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.3.2\n" - -#, python-format -msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." -msgid "%(width).1f x %(depth).1f x %(height).1f mm" -msgstr "%(width).1f x %(depth).1f x %(height).1f mm" - -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 & material" - -msgctxt "@action:label" -msgid "%1 out of %2" -msgstr "%1 de %2" - -msgctxt "@action:label" -msgid "%1 override" -msgid_plural "%1 overrides" -msgstr[0] "%1 sobreposto" -msgstr[1] "%1 sobrepostos" - -msgctxt "@action:label" -msgid "%1, %2 override" -msgid_plural "%1, %2 overrides" -msgstr[0] "%1, %2 sobreposição" -msgstr[1] "%1, %2 sobreposições" - -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1g" - -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1m" - -msgctxt "@action:inmenu menubar:printer" -msgid "&Add Printer..." -msgstr "&Adicionar Impressora..." - -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "Posição da &câmera" - -msgctxt "@action:inmenu menubar:profile" -msgid "&Create profile from current settings/overrides..." -msgstr "&Criar perfil a partir de ajustes/sobreposições atuais..." - -msgctxt "@action:inmenu menubar:profile" -msgid "&Discard current changes" -msgstr "&Descartar ajustes atuais" - -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "&Editar" - -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "&Exportar..." - -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "Arquivo (&F)" - -msgctxt "@action:inmenu menubar:edit" -msgid "&Group Models" -msgstr "A&grupar Modelos" - -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "Ajuda (&H)" - -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Material" - -msgctxt "@action:inmenu menubar:edit" -msgid "&Merge Models" -msgstr "Co&mbinar Modelos" - -msgctxt "@action:inmenu" -msgid "&Multiply Model..." -msgstr "&Multiplicar Modelo..." - -msgctxt "@action:inmenu menubar:file" -msgid "&New Project..." -msgstr "&Novo Projeto..." - -msgctxt "@action:inmenu menubar:file" -msgid "&Open File(s)..." -msgstr "Abrir Arquiv&o(s)..." - -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "Im&pressora" - -msgctxt "@action:inmenu menubar:file" -msgid "&Quit" -msgstr "Sair (&Q)" - -msgctxt "@action:inmenu menubar:edit" -msgid "&Redo" -msgstr "&Refazer" - -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "&Salvar Projeto..." - -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "Aju&stes" - -msgctxt "@action:inmenu menubar:edit" -msgid "&Undo" -msgstr "Desfazer (&U)" - -msgctxt "@action:inmenu menubar:profile" -msgid "&Update profile with current settings/overrides" -msgstr "At&ualizar perfil com valores e sobreposições atuais" - -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "&Ver" - -msgctxt "@label" -msgid "*You will need to restart the application for these changes to have effect." -msgstr "*Você precisa reiniciar a aplicação para que estas alterações tenham efeito." - -msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "" -"- Adicione perfis de material e plug-ins do Marketplace\n" -"- Faça backup e sincronize seus perfis de materiais e plugins\n" -"- Compartilhe ideias e consiga ajuda de mais de 48.000 usuários da comunidade UltiMaker" - -msgctxt "@heading" -msgid "-- incomplete --" -msgstr "-- incompleto --" - -msgctxt "@action:label" -msgid "1mm Transmittance (%)" -msgstr "Transmitância de 1mm (%)" - -msgctxt "@info:title" -msgid "3D Model Assistant" -msgstr "Assistente de Modelo 3D" - -msgctxt "@action:inmenu menubar:view" -msgid "3D View" -msgstr "Visão &3D" - -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "Visão 3D" - -msgctxt "@item:inlistbox" -msgid "3MF File" -msgstr "Arquivo 3MF" - -msgctxt "name" -msgid "3MF Reader" -msgstr "Leitor de 3MF" - -msgctxt "name" -msgid "3MF Writer" -msgstr "Gerador de 3MF" - -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "O complemento de Escrita 3MF está corrompido." - -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "Arquivo 3MF" - -msgctxt "@info, %1 is the name of the custom profile" -msgid "%1 custom profile is active and you overwrote some settings." -msgstr "%1 perfil personalizado está ativo e alguns ajustes foram sobrescritos." - -msgctxt "@info, %1 is the name of the custom profile" -msgid "%1 custom profile is overriding some settings." -msgstr "%1 perfil personalizado está sobrepondo alguns ajustes." - -msgctxt "@label %i will be replaced with a profile name" -msgid "Only user changed settings will be saved in the custom profile.
For materials that support it, the new custom profile will inherit properties from %1." -msgstr "Somente ajuste alterados por usuário serão salvos no perfil personalizado.
Para materiais que o suportam, este novo perfil personalizado herdará propriedades de %1." - -#, python-brace-format -msgctxt "@label OpenGL renderer" -msgid "

  • OpenGL Renderer: {renderer}
  • " -msgstr "
  • Renderizador da OpenGL: {renderer}
  • " - -#, python-brace-format -msgctxt "@label OpenGL vendor" -msgid "
  • OpenGL Vendor: {vendor}
  • " -msgstr "
  • Fornecedor da OpenGL: {vendor}
  • " - -#, python-brace-format -msgctxt "@label OpenGL version" -msgid "
  • OpenGL Version: {version}
  • " -msgstr "
  • Versão da OpenGL: {version}
  • " - -msgctxt "@label crash message" -msgid "" -"

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" -"

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n" -" " -msgstr "" -"

    Um erro fatal ocorreu no Cura. Por favor nos envie este Relatório de Falha para consertar o problema

    \n" -"

    Por favor use o botão \"Enviar relatório\" para publicar um relatório de erro automaticamente em nossos servidores

    \n" -" " - -msgctxt "@label crash message" -msgid "" -"

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n" -"

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n" -"

    Backups can be found in the configuration folder.

    \n" -"

    Please send us this Crash Report to fix the problem.

    \n" -" " -msgstr "" -"

    Oops, o UltiMaker Cura encontrou algo que não parece estar correto.

    \n" -"

    Encontramos um erro irrecuperável durante a inicialização. Ele foi possivelmente causado por arquivos de configuração incorretos. Sugerimos salvar e restabelecer sua configuração.

    \n" -"

    Cópias salvas podem ser encontradas na pasta de configuração.

    \n" -"

    Por favor nos envie este Relatório de Falha para consertar o problema.

    \n" -" " - -#, python-brace-format -msgctxt "@info:status" -msgid "" -"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" -"

    {model_names}

    \n" -"

    Find out how to ensure the best possible print quality and reliability.

    \n" -"

    View print quality guide

    " -msgstr "" -"

    Um ou mais modelos 3D podem não ser impressos otimamente devido ao tamanho e configuração de material:

    \n" -"

    {model_names}

    \n" -"

    Descubra como assegurar a melhor qualidade de impressão e confiabilidade possível.

    \n" -"

    Ver guia de qualidade de impressão

    " - -msgctxt "@label" -msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" -msgstr "Uma impressão USB está em progresso, fechar o Cura interromperá esta impressão. Tem certeza?" - -msgctxt "info:status" -msgid "A cloud connection is not available for a printer" -msgid_plural "A cloud connection is not available for some printers" -msgstr[0] "Conexão de nuvem não está disponível para uma impressora" -msgstr[1] "Conexão de nuvem não está disponível para algumas impressoras" - -msgctxt "@message" -msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." -msgstr "Uma impressão ainda está em progresso. O Cura não pode iniciar outra impressão via USB até que a impressão anterior tenha completado." - -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "Arquivo AMF" - -msgctxt "name" -msgid "AMF Reader" -msgstr "Leitor AMF" - -msgctxt "@label" -msgid "Abort" -msgstr "Abortar" - -msgctxt "@label" -msgid "Abort Print" -msgstr "Abortar Impressão" - -msgctxt "@window:title" -msgid "Abort print" -msgstr "Abortar impressão" - -msgctxt "@label:status" -msgid "Aborted" -msgstr "Abortado" - -msgctxt "@label" -msgid "Aborting..." -msgstr "Abortando..." - -msgctxt "@label:status" -msgid "Aborting..." -msgstr "Abortando..." - -msgctxt "@title:window The argument is the application name." -msgid "About %1" -msgstr "Sobre %1" - -msgctxt "@action:inmenu menubar:help" -msgid "About..." -msgstr "Sobre..." - -msgctxt "@button" -msgid "Accept" -msgstr "Aceitar" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Aceita G-Code e o envia a uma impressora. O complemento também pode atualizar o firmware." - -msgctxt "@label" -msgid "Account synced" -msgstr "Conta sincronizada" - -msgctxt "@label:status" -msgid "Action required" -msgstr "Necessária uma ação" - -msgctxt "@action:button" -msgid "Activate" -msgstr "Ativar" - -msgctxt "@label" -msgid "Active print" -msgstr "Impressão ativa" - -msgctxt "@action:button" -msgid "Add" -msgstr "Adicionar" - -msgctxt "@button" -msgid "Add" -msgstr "Adicionar" - -msgctxt "@action:button" -msgid "Add New" -msgstr "Adicionar Novo" - -msgctxt "@title:window" -msgid "Add Printer" -msgstr "Adicionar Impressora" - -msgctxt "@button" -msgid "Add UltiMaker printer via Digital Factory" -msgstr "Adicionar impressora UltiMaker via Digital Factory" - -msgctxt "@label" -msgid "Add a Cloud printer" -msgstr "Adicionar uma impressora de Nuvem" - -msgctxt "@label" -msgid "Add a networked printer" -msgstr "Adicionar uma impressora de rede" - -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "Adicionar uma impressora local" - -msgctxt "@action" -msgid "Add a script" -msgstr "Adicionar um script" - -msgctxt "@option:check" -msgid "Add icon to system tray *" -msgstr "Adicionar ícone à bandeja do sistema *" - -msgctxt "@button" -msgid "Add local printer" -msgstr "Adicionar impressora local" - -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "Adicionar prefixo de máquina ao nome do trabalho" - -msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" -msgstr "Adicionar ajustes de materiais e plugins do Marketplace" - -msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate." -msgid "Add more materials from Marketplace" -msgstr "Adicionar mais materiais ao Marketplace" - -msgctxt "@button" -msgid "Add printer" -msgstr "Adicionar impressora" - -msgctxt "@label" -msgid "Add printer" -msgstr "Adicionar impressora" - -msgctxt "@label" -msgid "Add printer by IP" -msgstr "Adicionar impressora por IP" - -msgctxt "@label" -msgid "Add printer by IP address" -msgstr "Adicionar impressora por endereço IP" - -msgctxt "@button" -msgid "Add printer manually" -msgstr "Adicionar impressora manualmente" - -#, python-brace-format -msgctxt "info:status Filled in with printer name and printer model." -msgid "Adding printer {name} ({model}) from your account" -msgstr "Adicionando impressora {name} ({model}) da sua conta" - -msgctxt "@label" -msgid "Address" -msgstr "Endereço" - -msgctxt "@label" -msgid "Adhesion" -msgstr "Aderência" - -msgctxt "@label" -msgid "Adhesion Information" -msgstr "Informação sobre Aderência" - -msgctxt "@label" -msgid "Adjusts the density of infill of the print." -msgstr "Ajusta a densidade do preenchimento da impressão." - -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "Ajusta o posicionamento das estruturas de suporte. Este posicionamento pode ser ajustado à plataforma de impressão ou em todo lugar. Se for escolhido em todo lugar, as estruturas de suporte também se apoiarão no próprio modelo." - -msgctxt "@label Header for list of settings." -msgid "Affected By" -msgstr "Afetado Por" - -msgctxt "@label Header for list of settings." -msgid "Affects" -msgstr "Afeta" - -msgctxt "@button" -msgid "Agree" -msgstr "Concordar" - -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "Todos Os Arquivos (*)" - -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "Todos Os Tipos Suportados ({0})" - -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Permitir enviar dados anônimos" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Permite carregar e exibir arquivos G-Code." - -msgctxt "@option:discardOrKeep" -msgid "Always ask me this" -msgstr "Sempre perguntar" - -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "Sempre me perguntar" - -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "Sempre descartar alterações da configuração" - -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "Sempre importar modelos" - -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "Sempre abrir como projeto" - -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "Sempre transferir as alterações para o novo perfil" - -msgctxt "@info:tooltip" -msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" -msgstr "Um modelo pode ser carregado diminuto se sua unidade for por exemplo em metros ao invés de milímetros. Devem esses modelos ser redimensionados?" - -msgctxt "@label" -msgid "Annealing" -msgstr "Recozimento" - -msgctxt "@label" -msgid "Anonymous" -msgstr "Anônimo" - -msgctxt "@label Description for application component" -msgid "Application framework" -msgstr "Framework de Aplicações" - -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "Aplicar deslocamentos de Extrusão ao G-Code" - -msgctxt "@info:title" -msgid "Are you ready for cloud printing?" -msgstr "Você está pronto para a impressão de nuvem?" - -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" -msgstr "Você tem certeza que quer abortar %1?" - -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "Tem certeza que deseja abortar a impressão?" - -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" -msgstr "Você tem certeza que quer remover %1?" - -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "Você tem certeza que deseja apagar este backup? Isto não pode ser desfeito." - -msgctxt "@label %1 is the application name" -msgid "Are you sure you want to exit %1?" -msgstr "Tem certeza que quer sair de %1?" - -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to move %1 to the top of the queue?" -msgstr "Você tem certeza que quer mover %1 para o topo da fila?" - -#, python-brace-format -msgctxt "@message {printer_name} is replaced with the name of the printer" -msgid "Are you sure you want to remove {printer_name} temporarily?" -msgstr "Tem certeza que quer remover {printer_name} temporariamente?" - -msgctxt "@info:question" -msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings." -msgstr "Tem certeza que quer iniciar novo projeto? Isto esvaziará a mesa de impressão e quaisquer ajustes não salvos." - -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "Tem certeza que deseja remover %1? Isto não poderá ser desfeito!" - -#, python-brace-format -msgctxt "@label {0} is the name of a printer that's about to be deleted." -msgid "Are you sure you wish to remove {0}? This cannot be undone!" -msgstr "Tem certeza que deseja remover {0}? Isto não pode ser defeito!" - -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models" -msgstr "Posicionar Todos os Modelos" - -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models in a grid" -msgstr "Organizar Todos os Modelos em Grade" - -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange Selection" -msgstr "Posicionar Seleção" - -msgctxt "@label:button" -msgid "Ask a question" -msgstr "Fazer uma pergunta" - -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Auto Backup" - -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "Criar um backup automaticamente toda vez que o Cura iniciar." - -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "Automaticamente fazer os modelos caírem na mesa de impressão" - -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Automaticamente atualizar Firmware" - -msgctxt "@label" -msgid "Available networked printers" -msgstr "Impressoras de rede disponíveis" - -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "Imagem BMP" - -msgctxt "@button" -msgid "Back" -msgstr "Voltar" - -msgctxt "@button:tooltip" -msgid "Back" -msgstr "Voltar" - -msgctxt "@info:title" -msgid "Backup" -msgstr "Backup" - -msgctxt "@button" -msgid "Backup Now" -msgstr "Backup Agora" - -msgctxt "@action:button" -msgid "Backup and Reset Configuration" -msgstr "Salvar e Restabelecer Configuração" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Permite backup e restauração da configuração." - -msgctxt "@text" -msgid "Backup and sync your material settings and plugins" -msgstr "Fazer backup e sincronizar seus ajustes de materiais e plugins" - -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "Fazer backup e sincronizar os ajustes do Cura." - -msgctxt "@info:title" -msgid "Backups" -msgstr "Backups" - -msgctxt "@label" -msgid "Balanced" -msgstr "" - -msgctxt "@action:label" -msgid "Base (mm)" -msgstr "Base (mm)" - -msgctxt "@action:inmenu menubar:view" -msgid "Bottom View" -msgstr "Visão de Baixo" - -msgctxt "@label" -msgid "Brand" -msgstr "Marca" - -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "Nivelamento da mesa de impressão" - -msgctxt "@info:title" -msgid "Build Volume" -msgstr "Volume de Impressão" - -msgctxt "@label" -msgid "Build plate" -msgstr "Mesa de Impressão" - -msgctxt "@label" -msgid "Build plate shape" -msgstr "Forma da plataforma de impressão" - -msgctxt "@label" -msgid "Bundled Materials" -msgstr "Materiais Empacotados" - -msgctxt "@label" -msgid "Bundled Plugins" -msgstr "Complementos Empacotados" - -msgctxt "@button" -msgid "Buy spool" -msgstr "Comprar carretel" - -msgctxt "@label Is followed by the name of an author" -msgid "By" -msgstr "Por" - -msgctxt "@label Description for application dependency" -msgid "C/C++ Binding library" -msgstr "Biblioteca de Ligações C/C++" - -msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "Câmbio de Ativos Digitais COLLADA" - -msgctxt "@info:status" -msgid "Calculated" -msgstr "Calculado" - -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "Renderização de câmera:" - -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "Visão de câmera" - -msgctxt "@info:title" -msgid "Can't Find Location" -msgstr "Não Foi Encontrada Localização" - -msgctxt "@info:title" -msgid "Can't Open Project File" -msgstr "Não Foi Possível Abrir o Arquivo de Projeto" - -msgctxt "@label" -msgid "Can't connect to your UltiMaker printer?" -msgstr "Não consegue conectar à sua impressora UltiMaker?" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags !" -msgid "Can't import profile from {0} before a printer is added." -msgstr "Não foi possível importar perfil de {0} antes de uma impressora ser adicionada." - -#, python-brace-format -msgctxt "@info:status" -msgid "Can't open any other file if G-code is loading. Skipped importing {0}" -msgstr "Não é possível abrir nenhum outro arquivo se G-Code estiver sendo carregado. Pulando importação de {0}" - -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "Não foi possível escrever no arquivo UFP:" - -msgctxt "@action:button" -msgid "Cancel" -msgstr "Cancelar" - -msgctxt "@button" -msgid "Cancel" -msgstr "Cancelar" - -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Cancelar" - -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "Mensagem de alera no leitor de G-Code" - -msgctxt "@action:inmenu" -msgid "Ce&nter Model on Platform" -msgstr "Ce&ntralizar Modelo na Mesa" - -msgctxt "@action:inmenu menubar:edit" -msgid "Center Selected" -msgstr "Centralizar Selecionados" - -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "Centralizar câmera quanto o item é selecionado" - -msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "Alterar scripts de pós-processamento ativos." - -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "Alterar material %1 de %2 para %3." - -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "Alterar núcleo de impressão %1 de %2 para %3." - -msgctxt "@info:title" -msgid "Changes detected from your UltiMaker account" -msgstr "Alterações detectadas de sua conta UltiMaker" - -msgctxt "@title" -msgid "Changes from your account" -msgstr "Alterações da sua conta" - -msgctxt "@label:textbox" -msgid "Check all" -msgstr "Verificar tudo" - -msgctxt "@button" -msgid "Check for account updates" -msgstr "Verificar atualizações da conta" - -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "Verificar atualizações na inicialização" - -msgctxt "@label" -msgid "Checking..." -msgstr "Verificando..." - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Verifica por atualizações de firmware." - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Verifica modelos e configurações de impressão por possíveis problema e dá sugestões." - -msgctxt "@label" -msgid "" -"Chooses between the techniques available to generate support. \n" -"\n" -"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" -"\n" -"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "" -"Escolhe entre as técnicas disponíveis para a geração de suporte.\n" -"\n" -"Suporte \"Normal\" cria uma estrutura de suporte diretamente abaixo das partes pendentes e continua em linha reta para baixo.\n" -"\n" -"Suporte de \"Árvore\" cria galhos em direção às áreas pendentes que suportam o modelo em suas pontas, e permite que os galhos se espalhem em volta do modelo para suportá-lo a partir da plataforma de impressão tanto quanto possível." - -msgctxt "@action:inmenu menubar:edit" -msgid "Clear Build Plate" -msgstr "Esvaziar a Mesa de Impressão" - -msgctxt "@option:check" -msgid "Clear buildplate before loading model into the single instance" -msgstr "Limpar a plataforma de impressão antes de carregar modelo em instância única" - -msgctxt "@text" -msgid "Click the export material archive button." -msgstr "Clique no botão de exportar arquivo de material." - -msgctxt "@action:button" -msgid "Close" -msgstr "Fechar" - -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" -msgstr "Fechando %1" - -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "Encolher Todas As Categorias" - -msgctxt "@label" -msgid "Color" -msgstr "Cor" - -msgctxt "@action:label" -msgid "Color Model" -msgstr "Modelo de Cor" - -msgctxt "@label" -msgid "Color scheme" -msgstr "Esquema de Cores" - -msgctxt "@info" -msgid "Compare and save." -msgstr "Comparar e salvar." - -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Modo de Compatibilidade" - -msgctxt "@label Description for application dependency" -msgid "Compatibility between Python 2 and 3" -msgstr "Compatibilidade entre Python 2 e 3" - -msgctxt "@title:label" -msgid "Compatible Printers" -msgstr "Impressoras Compatíveis" - -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Diâmetro de material compatível" - -msgctxt "@header" -msgid "Compatible printers" -msgstr "Impressoras compatíveis" - -msgctxt "@header" -msgid "Compatible support materials" -msgstr "Materiais de suporte compatíveis" - -msgctxt "@header" -msgid "Compatible with Material Station" -msgstr "Compatível com Material Station" - -msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "Câmbio de Ativos Digitais COLLADA Comprimido" - -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "Arquivo de G-Code Comprimido" - -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Leitor de G-Code Comprimido" - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Gerador de G-Code Comprimido" - -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Alterações de Configuração" - -msgctxt "@error" -msgid "Configuration not supported" -msgstr "Configuração não suportada" - -msgctxt "@header" -msgid "Configurations" -msgstr "Configurações" - -msgctxt "@label" -msgid "Configurations" -msgstr "Configurações" - -msgctxt "@action:inmenu" -msgid "Configure Cura..." -msgstr "Configurar Cura..." - -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "Configurar ajustes por Modelo" - -msgctxt "@action" -msgid "Configure group" -msgstr "Configurar grupo" - -msgctxt "@action:menu" -msgid "Configure setting visibility..." -msgstr "Configurar a visibilidade dos ajustes..." - -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "Confirmar Mudança de Diâmetro" - -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Confirmar Remoção" - -msgctxt "@action:button" -msgid "Connect" -msgstr "Conectar" - -msgctxt "@button" -msgid "Connect" -msgstr "Conectar" - -msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Conectar a Impressora de Rede" - -msgctxt "@action" -msgid "Connect via Network" -msgstr "Conectar pela rede" - -msgctxt "@info:status" -msgid "Connected over the network" -msgstr "Conectado pela rede" - -msgctxt "@label" -msgid "Connected printers" -msgstr "Impressoras conectadas" - -msgctxt "@info:status" -msgid "Connected via USB" -msgstr "Conectado via USB" - -msgctxt "@info:status" -msgid "Connected via cloud" -msgstr "Conectado pela nuvem" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Conecta-se à Digital Library, permitindo ao Cura abrir arquivos dela e gravar arquivos nela." - -msgctxt "@tooltip:button" -msgid "Consult the UltiMaker Community." -msgstr "Consultar a Comunidade UltiMaker." - -msgctxt "@title:window" -msgid "Convert Image" -msgstr "Converter Imagem" - -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Número da Ventoinha de Resfriamento" - -msgctxt "@action:menu" -msgid "Copy all changed values to all extruders" -msgstr "Copiar todos os valores alterados para todos os extrusores" - -msgctxt "@action:inmenu menubar:edit" -msgid "Copy to clipboard" -msgstr "Copiar para a área de transferência" - -msgctxt "@action:menu" -msgid "Copy value to all extruders" -msgstr "Copiar valor para todos os extrusores" - -msgctxt "@label" -msgid "Cost per Meter" -msgstr "Custo por Metro" - -msgctxt "@info" -msgid "Could not access update information." -msgstr "Não foi possível acessar informação de atualização." - -msgctxt "@label" -msgid "Could not connect to device." -msgstr "Não foi possível conectar ao dispositivo." - -msgctxt "@info:backup_failed" -msgid "Could not create archive from user data directory: {}" -msgstr "Não pude criar arquivo do diretório de dados de usuário: {}" - -#, python-brace-format -msgctxt "@info:status Don't translate the tag {device}!" -msgid "Could not find a file name when trying to write to {device}." -msgstr "Não foi possível encontrar nome de arquivo ao tentar escrever em {device}." - -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not import material %1: %2" -msgstr "Não foi possível importar material %1: %2" - -msgctxt "@info:error" -msgid "Could not interpret the server's response." -msgstr "Não foi possível interpretar a resposta de servidor." - -msgctxt "@error:load" -msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." -msgstr "" - -msgctxt "@info:error" -msgid "Could not reach Marketplace." -msgstr "Não foi possível conectar ao Marketplace." - -msgctxt "@message" -msgid "Could not read response." -msgstr "Não foi possível ler a resposta." - -msgctxt "@message:text" -msgid "Could not save material archive to {}:" -msgstr "Não foi possível salvar o arquivo de materiais para {}:" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "Não foi possível salvar em {0}: {1}" - -#, python-brace-format -msgctxt "@info:status" -msgid "Could not save to removable drive {0}: {1}" -msgstr "Não foi possível salvar em unidade removível {0}: {1}" - -msgctxt "@info:text" -msgid "Could not upload the data to the printer." -msgstr "Não foi possível transferir os dados para a impressora." - -#, python-brace-format -msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"No permission to execute process." -msgstr "" -"Não foi possível iniciar EnginePlugin: {self._plugin_id}\n" -"Sem permissão para executar processo." - -#, python-brace-format -msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Operating system is blocking it (antivirus?)" -msgstr "" -"Não foi possível iniciar EnginePlugin: {self._plugin_id}\n" -"O sistema operacional está bloqueando (antivírus?)" - -#, python-brace-format -msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Resource is temporarily unavailable" -msgstr "" -"Não foi possível iniciar EnginePlugin: {self._plugin_id}\n" -"O recurso está temporariamente indisponível" - -msgctxt "@title:window" -msgid "Crash Report" -msgstr "Relatório de Problema" - -msgctxt "@title:window" -msgid "Create Profile" -msgstr "Criar Perfil" - -msgctxt "@text" -msgid "Create a free UltiMaker Account" -msgstr "Criar uma conta UltiMaker gratuita" - -msgctxt "@button" -msgid "Create a free UltiMaker account" -msgstr "Criar uma conta UltiMaker gratuita" - -msgctxt "@info:tooltip" -msgid "Create a volume in which supports are not printed." -msgstr "Cria um volume em que os suportes não são impressos." - -msgctxt "@action:ComboBox Save settings in a new profile" -msgid "Create new" -msgstr "Criar novos" - -msgctxt "@action:button" -msgid "Create new" -msgstr "Criar novo" - -msgctxt "@button" -msgid "Create new" -msgstr "Criar novos" - -msgctxt "@action:tooltip" -msgid "Create new profile from current settings/overrides" -msgstr "Criar novo perfil a partir dos ajustes/sobreposições atuais" - -msgctxt "@tooltip:button" -msgid "Create print projects in Digital Library." -msgstr "Cria projetos de impressão na Digital Library." - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Cria uma malha apagadora para bloquear a impressão de suporte em certos lugares" - -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "Criando seu backup..." - -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Perfis do Cura 15.04" - -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Backups do Cura" - -msgctxt "name" -msgid "Cura Backups" -msgstr "Backups Cura" - -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Perfil do Cura" - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Leitor de Perfis do Cura" - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Gravador de Perfis do Cura" - -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Arquivo de Projeto 3MF do Cura" - -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Versão do Cura" - -msgctxt "@title:window" -msgid "Cura can't start" -msgstr "O Cura não consegue iniciar" - -#, python-brace-format -msgctxt "@info:status" -msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." -msgstr "O Cura detectou perfis de material que não estão instalados ainda na impressora host do grupo {0}." - -msgctxt "@info:credit" -msgid "" -"Cura is developed by UltiMaker in cooperation with the community.\n" -"Cura proudly uses the following open source projects:" -msgstr "" -"Cura é desenvolvido pela Ultimaker B.V. em cooperação com a comunidade.\n" -"Cura orgulhosamente usa os seguintes projetos open-source:" - -msgctxt "@label" -msgid "Cura language" -msgstr "Linguagem do Cura" - -msgctxt "@label Cura version number" -msgid "Cura version" -msgstr "Versão do Cura" - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine Backend" - -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "Complemento do CuraEngine para gradualmente suavizar o fluxo para limitar rajadas de fluxo intenso" - -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - -msgctxt "@label" -msgid "Currency:" -msgstr "Moeda:" - -msgctxt "@title:column" -msgid "Current" -msgstr "Atual" - -msgctxt "@title:column" -msgid "Current changes" -msgstr "Alterações atuais" - -msgctxt "@header" -msgid "Custom" -msgstr "Personalizado" - -msgctxt "@label" -msgid "Custom" -msgstr "Personalizado" - -msgctxt "@title:tab" -msgid "Custom" -msgstr "Personalizado" - -msgctxt "@label" -msgid "Custom Material" -msgstr "Material Personalizado" - -msgctxt "@label" -msgid "Custom profile" -msgstr "Perfil personalizado" - -msgctxt "@info" -msgid "Custom profile name:" -msgstr "Nome de perfil personalizado:" - -msgctxt "@label" -msgid "Custom profiles" -msgstr "Perfis personalizados" - -msgctxt "@label:header" -msgid "Custom profiles" -msgstr "Perfis personalizados" - -msgctxt "@action:inmenu menubar:edit" -msgid "Cut" -msgstr "Cortar" - -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "Malha de corte" - -msgctxt "@item:inlistbox" -msgid "Darker is higher" -msgstr "Mais escuro é mais alto" - -msgctxt "@info:title" -msgid "Data Sent" -msgstr "Dados Enviados" - -msgctxt "@label Description for application dependency" -msgid "Data interchange format" -msgstr "Formato de Intercâmbio de Dados" - -msgctxt "@button" -msgid "Decline" -msgstr "Recusar" - -msgctxt "@button" -msgid "Decline and close" -msgstr "Rejeitar e fechar" - -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "Recusar e remover da conta" - -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "Default" - -msgctxt "@window:text" -msgid "Default behavior for changed setting values when switching to a different profile: " -msgstr "Comportamento default para valores de configuração alterados ao mudar para um perfil diferente: " - -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "Comportamento default ao abrir um arquivo de projeto" - -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "Comportamento default ao abrir um arquivo de projeto: " - -msgctxt "@action:button" -msgid "Defaults" -msgstr "Defaults" - -msgctxt "@label" -msgid "Defines the thickness of your part side walls, roof and floor." -msgstr "Define a espessura das paredes laterais, teto e base da sua peça." - -msgctxt "@label" -msgid "Delete" -msgstr "Remover" - -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Apagar o Backup" - -msgctxt "@action:inmenu" -msgid "Delete Model" -msgstr "Remover Modelo" - -msgctxt "@action:inmenu menubar:edit" -msgid "Delete Selected" -msgstr "Remover Selecionados" - -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Remover trabalho de impressão" - -msgctxt "@label" -msgid "Density" -msgstr "Densidade" - -msgctxt "@label Description for development tool" -msgid "Dependency and package manager" -msgstr "Gestor de pacote e dependência" - -msgctxt "@action:label" -msgid "Depth (mm)" -msgstr "Profundidade (mm)" - -msgctxt "@action:label" -msgid "Derivative from" -msgstr "Derivado de" - -msgctxt "@header" -msgid "Description" -msgstr "Descrição" - -msgctxt "@label" -msgid "Description" -msgstr "Descrição" - -msgctxt "@action:button" -msgid "Details" -msgstr "Detalhes" - -msgctxt "@label" -msgid "Diameter" -msgstr "Diâmetro" - -msgctxt "@button" -msgid "Disable" -msgstr "Desabilitar" - -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Desabilitar Extrusor" - -msgctxt "@option:discardOrKeep" -msgid "Discard and never ask again" -msgstr "Descartar e não perguntar novamente" - -msgctxt "@action:button" -msgid "Discard changes" -msgstr "Descartar alterações" - -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "Descartar ajustes atuais" - -msgctxt "@title:window" -msgid "Discard or Keep changes" -msgstr "Descartar ou Manter alterações" - -msgctxt "@button" -msgid "Dismiss" -msgstr "Dispensar" - -msgctxt "@label" -msgid "Display Name" -msgstr "Exibir Nome" - -msgctxt "@option:check" -msgid "Display model errors" -msgstr "Exibir erros de modelo" - -msgctxt "@option:check" -msgid "Display overhang" -msgstr "Exibir seções pendentes" - -msgctxt "@info:option_text" -msgid "Do not show this message again" -msgstr "Não mostrar essa mensagem novamente" - -msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "Você quer sincronizar os pacotes de material e software com sua conta?" - -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "Não exibir resumo do projeto ao salvar novamente" - -msgctxt "@action:menu" -msgid "Don't show this setting" -msgstr "Não exibir este ajuste" - -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "Não suportar sobreposições" - -msgctxt "@button" -msgid "Done" -msgstr "Feito" - -msgctxt "@button" -msgid "Downgrade" -msgstr "Downgrade" - -msgctxt "@button" -msgid "Downgrading..." -msgstr "Fazendo downgrade..." - -msgctxt "@label" -msgid "Draft" -msgstr "Rascunho" - -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Duplicar" - -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "Duplicar Perfil" - -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "Durante a fase de pré-visualização, você estará limitado a 5 backups visíveis. Remova um backup para ver os mais antigos." - -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "E&xtensões" - -msgctxt "@action:button" -msgid "Edit" -msgstr "Editar" - -msgctxt "@action:button" -msgid "Eject" -msgstr "Ejetar" - -#, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "Ejetar dispositivo removível {0}" - -#, python-brace-format -msgctxt "@info:status" -msgid "Ejected {0}. You can now safely remove the drive." -msgstr "{0} ejetado. A unidade agora pode ser removida de forma segura." - -msgctxt "@label" -msgid "Empty" -msgstr "Vazio" - -msgctxt "@button" -msgid "Enable" -msgstr "Habilitar" - -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Habilitar Extrusor" - -msgctxt "@label" -msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards. Disabling it results in a skirt around object by default." -msgstr "Habilita a impressão de brim ou raft. Adicionará uma área plana em volta do objeto ou abaixo dele que seja fácil de destacar depois. Desabilitar este ajuste resulta em um skirt em volta do objeto por default." - -msgctxt "@label" -msgid "Enabled" -msgstr "Habilitado" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Habilita a geração de geometria imprimível de arquivos de imagem 2D." - -msgctxt "@title:label" -msgid "End G-code" -msgstr "G-Code Final" - -msgctxt "@label" -msgid "End-to-end solution for fused filament 3D printing." -msgstr "Solução completa para impressão 3D com filamento fundido." - -msgctxt "@info:title" -msgid "EnginePlugin" -msgstr "EnginePlugin" - -msgctxt "@label" -msgid "Engineering" -msgstr "Engenharia" - -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "Assegurar que os modelos sejam mantidos separados" - -msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "Entre o endereço IP da sua impressora na rede." - -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "Entre o endereço IP de sua impressora." - -msgctxt "@info:title" -msgid "Error" -msgstr "Erro" - -msgctxt "@title:groupbox" -msgid "Error traceback" -msgstr "Traceback do erro" - -msgctxt "@label" -msgid "Estimated time left" -msgstr "Tempo restante estimado" - -msgctxt "@action:inmenu" -msgid "Exit Full Screen" -msgstr "Sair da Tela Cheia" - -msgctxt "@label" -msgid "Experimental" -msgstr "Experimental" - -msgctxt "@action:button" -msgid "Export" -msgstr "Exportar" - -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "Exportar Todos Os Materiais" - -msgctxt "@title:window" -msgid "Export Material" -msgstr "Exportar Material" - -msgctxt "@title:window" -msgid "Export Profile" -msgstr "Exportar Perfil" - -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "Exportar Seleção..." - -msgctxt "@button" -msgid "Export material archive" -msgstr "Exportar arquivo de material" - -msgctxt "@info:title" -msgid "Export succeeded" -msgstr "Exportação concluída" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tag !" -msgid "Exported profile to {0}" -msgstr "Perfil exportado para {0}" - -msgctxt "@tooltip:button" -msgid "Extend UltiMaker Cura with plugins and material profiles." -msgstr "Estende o UltiMaker Cura com complementos e perfis de material." - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Extensão que permite scripts criados por usuários para pós-processamento" - -msgctxt "@label" -msgid "Extruder" -msgstr "Extrusor" - -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "Extrusor %1" - -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "G-Code Final do Extrusor" - -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "G-Code Inicial do Extrusor" - -msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "Extrusor(es) Desabilitado(s)" - -msgctxt "@label:status" -msgid "Failed" -msgstr "Falhado" - -msgctxt "@text:error" -msgid "Failed to connect to Digital Factory to sync materials with some of the printers." -msgstr "Falha em conectar com a Digital Factory para sincronizar materiais com algumas das impressoras." - -msgctxt "@text:error" -msgid "Failed to connect to Digital Factory." -msgstr "Falha em conectar à Digital Factory." - -msgctxt "@text:error" -msgid "Failed to create archive of materials to sync with printers." -msgstr "Falha em criar arquivo de materiais para sincronizar com impressoras." - -#, python-brace-format -msgctxt "@info:status" -msgid "Failed to eject {0}. Another program may be using the drive." -msgstr "Erro ao ejetar {0}. Outro programa pode estar usando a unidade." - -msgctxt "@info:status Don't translate the XML tags and !" -msgid "Failed to export material to %1: %2" -msgstr "Falha em exportar material para %1: %2" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Failed to export profile to {0}: {1}" -msgstr "Falha ao exportar perfil para {0}: {1}" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tag !" -msgid "Failed to export profile to {0}: Writer plugin reported failure." -msgstr "Falha ao exportar perfil para {0}: complemento escritor relatou erro." - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tag !" -msgid "Failed to import profile from {0}:" -msgstr "Erro ao importar perfil de {0}:" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags !" -msgid "Failed to import profile from {0}:" -msgstr "Erro ao importar perfil de {0}:" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags !" -msgid "Failed to import profile from {0}: {1}" -msgstr "Falha ao importar perfil de {0}: {1}" - -msgctxt "@button" -msgid "Failed to load packages:" -msgstr "Falha em carregar pacotes:" - -msgctxt "@text:error" -msgid "Failed to load the archive of materials to sync it with printers." -msgstr "Falha em carregar o arquivo de materiais para sincronizar com impressoras." - -msgctxt "@message:title" -msgid "Failed to save material archive" -msgstr "Falha em salvar o arquivo de materiais" - -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "Favoritos" - -msgctxt "@label" -msgid "Filament Cost" -msgstr "Custo do Filamento" - -msgctxt "@label" -msgid "Filament length" -msgstr "Comprimento do Filamento" - -msgctxt "@label" -msgid "Filament weight" -msgstr "Peso do Filamento" - -msgctxt "@title:window" -msgid "File Already Exists" -msgstr "O Arquivo Já Existe" - -msgctxt "@info:title" -msgid "File Saved" -msgstr "Arquivo Salvo" - -#, python-brace-format -msgctxt "@info:status" -msgid "File {0} does not contain any valid profile." -msgstr "Arquivo {0} não contém nenhum perfil válido." - -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Filtrar..." - -msgctxt "@info:title" -msgid "Finding Location" -msgstr "Buscando Localização" - -msgctxt "@info:status" -msgid "Finding new location for objects" -msgstr "Achando novos lugares para objetos" - -msgctxt "@action:button" -msgid "Finish" -msgstr "Finalizar" - -msgctxt "@label:status" -msgid "Finished" -msgstr "Finalizado" - -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "Termina %1 em %2" - -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Atualização do Firmware" - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Verificador de Atualizações de Firmware" - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Atualizador de Firmware" - -msgctxt "@label" -msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." -msgstr "O firmware não pode ser atualizado porque a conexão com a impressora não suporta atualização de firmware." - -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "O firmware não pode ser atualizado porque não há conexão com a impressora." - -msgctxt "@label" -msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." -msgstr "O firmware é o software rodando diretamente no maquinário de sua impressora 3D. Este firmware controla os motores de passo, regula a temperatura e é o que faz a sua impressora funcionar." - -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Atualização do Firmware completada." - -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "A atualização de firmware falhou devido a um erro de comunicação." - -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "A atualização de firmware falhou devido a um erro de entrada e saída." - -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "A atualização de Firmware falhou devido a um erro desconhecido." - -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "A atualização de firmware falhou devido a firmware não encontrado." - -msgctxt "@label" -msgid "Firmware version" -msgstr "Versão do firmware" - -msgctxt "@label" -msgid "First available" -msgstr "Primeira disponível" - -msgctxt "@label:listbox" -msgid "Flow" -msgstr "Fluxo" - -msgctxt "@text In the UI this is followed by a list of steps the user needs to take." -msgid "Follow the following steps to load the new material profiles to your printer." -msgstr "Siga os passos seguintes para carregar os perfis de material novos na sua impressora." - -msgctxt "@info" -msgid "Follow the procedure to add a new printer" -msgstr "Siga o procedimento para adicionar uma nova impressora" - -msgctxt "@text" -msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." -msgstr "Seguindo alguns passos simples, você conseguirá sincronizar todos os seus perfis de material com suas impressoras." - -msgctxt "@label" -msgid "Font" -msgstr "Fonte" - -msgctxt "@label" -msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." -msgstr "Para cada posição; insira um pedaço de papel abaixo do bico e ajuste a altura da mesa de impressão. A altura da mesa de impressão está adequada quando o papel for levemente pressionado pela ponta do bico." - -msgctxt "@info:tooltip" -msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." -msgstr "Para litofanos, um modelo logarítmico simples para translucidez está disponível. Para mapas de altura os valores de pixels correspondem a alturas, linearmente." - -msgctxt "@info:tooltip" -msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." -msgstr "Para litofanos, pixels escuros devem corresponder a locais mais espessos para conseguir bloquear mais luz. Para mapas de altura, pixels mais claros significam terreno mais alto, portanto tais pixels devem corresponder a locais mais espessos no modelo 3d gerado." - -msgctxt "@option:check" -msgid "Force layer view compatibility mode (restart required)" -msgstr "Forçar modo de compatibilidade da visão de camadas (requer reinício)" - -msgctxt "@action:inmenu menubar:view" -msgid "Front View" -msgstr "Visão Frontal" - -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "Viso de Frente" - -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "Arquivo G" - -msgctxt "@info:title" -msgid "G-code Details" -msgstr "Detalhes do G-Code" - -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "Arquivo G-Code" - -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Leitor de Perfil de G-Code" - -msgctxt "name" -msgid "G-code Reader" -msgstr "Leitor de G-Code" - -msgctxt "name" -msgid "G-code Writer" -msgstr "Gerador de G-Code" - -msgctxt "@label" -msgid "G-code flavor" -msgstr "Sabor de G-Code" - -msgctxt "@label Description for application component" -msgid "G-code generator" -msgstr "Gerador de G-Code" - -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "O GCodeGzWriter não suporta modo binário." - -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "O GCodeWriter não suporta modo binário." - -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "Imagem GIF" - -msgctxt "@label Description for application dependency" -msgid "GUI framework" -msgstr "Framework Gráfica" - -msgctxt "@label Description for application dependency" -msgid "GUI framework bindings" -msgstr "Ligações da Framework Gráfica" - -msgctxt "@label" -msgid "Gantry Height" -msgstr "Altura do Eixo" - -msgctxt "@title:tab" -msgid "General" -msgstr "Geral" - -msgctxt "@label" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." -msgstr "Gera estrutura que suportarão partes do modelo que têm seções pendentes. Sem estas estruturas, tais partes desabariam durante a impressão." - -msgctxt "@label Description for development tool" -msgid "Generating Windows installers" -msgstr "Gerando instaladores Windows" - -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "Genérico" - -msgctxt "@option:check" -msgid "Get notifications for plugin updates" -msgstr "Ter notificações para atualizações de complementos" - -msgctxt "@action" -msgid "Get started" -msgstr "Começar" - -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "Ajustes globais" - -msgctxt "@label Description for application component" -msgid "Graphical user interface" -msgstr "Interface Gráfica de usuário" - -msgctxt "@label" -msgid "Grid Placement" -msgstr "Posicionamento em Grade" - -#, python-brace-format -msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "Grupo #{group_nr}" - -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "Aquecer a mesa antes de imprimir. Você pode continuar ajustando sua impressão enquanto ela está aquecendo, e não terá que esperar o aquecimento quando estiver pronto pra imprimir." - -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "Aquece o hotend com antecedência antes de imprimir. Você pode continuar ajustando sua impressão enquanto está aquecendo e não terá que esperar que o hotend termine o aquecimento quando estiver pronto para imprimir." - -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "Mesa de Impressão Aquecida (kit Oficial ou auto-construído)" - -msgctxt "@label" -msgid "Heated bed" -msgstr "Mesa aquecida" - -msgctxt "@label" -msgid "Heated build volume" -msgstr "Volume de construção aquecido" - -msgctxt "@action:label" -msgid "Height (mm)" -msgstr "Altura (mm)" - -msgctxt "@label" -msgid "Helpers" -msgstr "Assistentes" - -msgctxt "@label" -msgid "Hide all connected printers" -msgstr "Omitir todas as impressoras conectadas" - -msgctxt "@action:menu" -msgid "Hide this setting" -msgstr "Ocultar este ajuste" - -msgctxt "@info:tooltip" -msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." -msgstr "Ressalta superfícies faltantes ou incorretas do modelo usando sinais de alerta. Os caminhos de extrusão frequentemente terão partes da geometria pretendida ausentes." - -msgctxt "@info:tooltip" -msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." -msgstr "Ressaltar áreas sem suporte do modelo em vermelho. Sem suporte, estas áreas não serão impressas corretamente." - -msgctxt "@button" -msgid "How to load new material profiles to my printer" -msgstr "Como carregar novos perfis de material na minha impressora" - -msgctxt "@action:button" -msgid "How to update" -msgstr "Como atualizar" - -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "Recusar enviar dados anônimos" - -msgctxt "@label:status" -msgid "Idle" -msgstr "Ocioso" - -msgctxt "@label" -msgid "If you are trying to add a new UltiMaker printer to Cura" -msgstr "Se você está tentando adicionar uma nova impressora UltiMaker ao Cura" - -msgctxt "@label" -msgid "If your printer is not listed, read the network printing troubleshooting guide" -msgstr "Se sua impressora não está listada, leia o guia de resolução de problemas de impressão em rede" - -msgctxt "name" -msgid "Image Reader" -msgstr "Leitor de Imagens" - -msgctxt "@action:button" -msgid "Import" -msgstr "Importar" - -msgctxt "@title:window" -msgid "Import Material" -msgstr "Importar Material" - -msgctxt "@title:window" -msgid "Import Profile" -msgstr "Importar Perfil" - -msgctxt "@action:button" -msgid "Import all as models" -msgstr "Importar todos como modelos" - -msgctxt "@action:button" -msgid "Import models" -msgstr "Importar modelos" - -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "Em manutenção. Por favor verifique a impressora" - -msgctxt "@info" -msgid "In order to monitor your print from Cura, please connect the printer." -msgstr "Para monitorar sua impressão pelo Cura, por favor conecte a impressora." - -msgctxt "@label" -msgid "In order to start using Cura you will need to configure a printer." -msgstr "Para poder iniciar o uso do Cura você precisará configurar uma impressora:" - -msgctxt "@button" -msgid "In order to use the package you will need to restart Cura" -msgstr "Para usar o pacote você precisará reiniciar o Cura" - -msgctxt "@label" -msgid "Infill" -msgstr "Preenchimento" - -msgctxt "@tooltip" -msgid "Infill" -msgstr "Preenchimento" - -msgctxt "infill_sparse_density description" -msgid "Infill Density" -msgstr "Densidade de Preenchimento" - -msgctxt "@action:label" -msgid "Infill Pattern" -msgstr "Padrão de Preenchimento" - -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "Somente malha de preenchimento" - -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "Preenchimento se sobrepondo a este modelo foi modificado." - -msgctxt "@info:title" -msgid "Information" -msgstr "Informação" - -msgctxt "@title" -msgid "Information" -msgstr "Informação" - -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "Inicializando Máquina Ativa..." - -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "Inicializando volume de impressão..." - -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "Inicializando motor..." - -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "Inicializando gestor de máquinas..." - -msgctxt "@label" -msgid "Inner Wall" -msgstr "Parede Interna" - -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "Paredes Internas" - -msgctxt "@text" -msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." -msgstr "Insira o pendrive USB na sua impressora e faça o procedimento de carregar novos perfis de material." - -msgctxt "@button" -msgid "Install" -msgstr "Instalar" - -msgctxt "@header" -msgid "Install Materials" -msgstr "Instalar Materiais" - -msgctxt "@window:title" -msgid "Install Package" -msgstr "Instalar Pacote" - -msgctxt "@action:button" -msgid "Install Packages" -msgstr "Instalar Pacotes" - -msgctxt "@header" -msgid "Install Packages" -msgstr "Instala Pacotes" - -msgctxt "@header" -msgid "Install Plugins" -msgstr "Instalar Complementos" - -msgctxt "@action:button" -msgid "Install missing packages" -msgstr "Instalar pacotes faltantes" - -msgctxt "@title" -msgid "Install missing packages" -msgstr "Instala pacotes faltantes" - -msgctxt "@label" -msgid "Install missing packages from project file." -msgstr "Instala pacotes faltantes do arquivo de projeto." - -msgctxt "@button" -msgid "Install pending updates" -msgstr "Instalação aguardando atualizações" - -msgctxt "@label" -msgid "Installed Materials" -msgstr "Materiais Instalados" - -msgctxt "@label" -msgid "Installed Plugins" -msgstr "Complementos Instalados" - -msgctxt "@button" -msgid "Installing..." -msgstr "Instalando..." - -msgctxt "@action:label" -msgid "Intent" -msgstr "Objetivo" - -msgctxt "@label" -msgid "Interface" -msgstr "Interface" - -msgctxt "@label Description for application component" -msgid "Interprocess communication library" -msgstr "Biblioteca de comunicação interprocessos" - -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Endereço IP inválido" - -msgctxt "@info:status" -msgid "Invalid file URL:" -msgstr "URL de arquivo inválida:" - -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "Inverter a direção da ampliação de câmera." - -msgctxt "@label" -msgid "Is printed as support." -msgstr "Está impresso como suporte." - -msgctxt "@text" -msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware." -msgstr "Parece que você não tem impressoras compatíveis conectadas à Digital Factory. Certifique-se que sua impressora esteja conectada e rodando o firmware mais recente." - -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "Imagem JPEG" - -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "Imagem JPG" - -msgctxt "@label Description for application dependency" -msgid "JSON parser" -msgstr "Parser JSON" - -msgctxt "@label" -msgid "Job Name" -msgstr "Nome do Trabalho" - -msgctxt "@label" -msgid "Jog Distance" -msgstr "Distância de Trote" - -msgctxt "@label" -msgid "Jog Position" -msgstr "Posição de Trote" - -msgctxt "@option:discardOrKeep" -msgid "Keep and never ask again" -msgstr "Manter e não perguntar novamente" - -msgctxt "@action:button" -msgid "Keep changes" -msgstr "Manter alterações" - -msgctxt "@action:button" -msgid "Keep printer configurations" -msgstr "Manter configurações da impressora" - -msgctxt "@action:menu" -msgid "Keep this setting visible" -msgstr "Manter este ajuste visível" - -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "Última atualização: %1" - -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "Espessura de Camada" - -msgctxt "@item:inlistbox" -msgid "Layer view" -msgstr "Visão de Camadas" - -msgctxt "@button:label" -msgid "Learn More" -msgstr "Saiba mais" - -msgctxt "@button" -msgid "Learn how to connect your printer to Digital Factory" -msgstr "Aprenda como conectar sua impressora à Digital Factory" - -msgctxt "@tooltip:button" -msgid "Learn how to get started with UltiMaker Cura." -msgstr "Saiba como começar com o UltiMaker Cura." - -msgctxt "@action" -msgid "Learn more" -msgstr "Saiba mais" - -msgctxt "@action:button" -msgid "Learn more" -msgstr "Saiba mais" - -msgctxt "@button" -msgid "Learn more" -msgstr "Saiba mais" - -msgctxt "@button:label" -msgid "Learn more" -msgstr "Saber mais" - -msgctxt "@action:button" -msgid "Learn more about Cura print profiles" -msgstr "Saber mais sobre perfis de impressão do Cura" - -msgctxt "@button" -msgid "Learn more about adding printers to Cura" -msgstr "Saiba mais sobre adicionar impressoras ao Cura" - -msgctxt "@label" -msgid "Learn more about project packages." -msgstr "Aprenda mais sobre pacotes de projeto" - -msgctxt "@action:inmenu menubar:view" -msgid "Left Side View" -msgstr "Visão do Lado Esquerdo" - -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "Visão à Esquerda" - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Leitor de Perfis de Cura Legado" - -msgctxt "@tooltip:button" -msgid "Let developers know that something is going wrong." -msgstr "Deixe os desenvolvedores saberem que algo está errado." - -msgctxt "@action" -msgid "Level build plate" -msgstr "Nivelar mesa" - -msgctxt "@item:inlistbox" -msgid "Lighter is higher" -msgstr "Mais claro é mais alto" - -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Tipo de Linha" - -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "Largura de Extrusão" - -msgctxt "@item:inlistbox" -msgid "Linear" -msgstr "Linear" - -msgctxt "@label Description for development tool" -msgid "Linux cross-distribution application deployment" -msgstr "Implementação de aplicação multidistribuição em Linux" - -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "Carregar %3 como material %1 (isto não pode ser sobreposto)." - -msgctxt "@button" -msgid "Load more" -msgstr "Carregar mais" - -msgctxt "@button" -msgid "Loading" -msgstr "Carregando" - -msgctxt "@action:warning" -msgid "Loading a project will clear all models on the build plate." -msgstr "Carregar um projeto limpará todos os modelos da mesa de impressão." - -msgctxt "@label" -msgid "Loading available configurations from the printer..." -msgstr "Carregando configurações disponíveis da impressora..." - -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "Carregando interface..." - -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "Carregando máquinas..." - -msgctxt "@label:status" -msgid "Loading..." -msgstr "Carregando..." - -msgctxt "@title" -msgid "Loading..." -msgstr "Carregando..." - -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "Impressoras locais" - -msgctxt "@info:title" -msgid "Log-in failed" -msgstr "Login falhou" - -msgctxt "@info:title" -msgid "Login failed" -msgstr "Login falhou" - -msgctxt "@title:groupbox" -msgid "Logs" -msgstr "Registros" - -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Registra certos eventos de forma que possam ser usados pelo relator de acidentes" - -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "A conexão à impressora foi perdida" - -msgctxt "@action" -msgid "Machine Settings" -msgstr "Ajustes da Máquina" - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Ação de Ajustes de Máquina" - -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Máquinas" - -msgctxt "@text" -msgid "Make sure all your printers are turned ON and connected to Digital Factory." -msgstr "Certifique-se de que todas as suas impressoras estejam LIGADAS e conectadas à Digital Factory." - -msgctxt "@info:generic" -msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." -msgstr "Certifique que o g-code é adequado para sua impressora e configuração antes de enviar o arquivo. A representação de g-code pode não ser acurada." - -msgctxt "@item:inlistbox" -msgid "Makerbot Printfile" -msgstr "" - -msgctxt "name" -msgid "Makerbot Printfile Writer" -msgstr "" - -msgctxt "@error" -msgid "MakerbotWriter could not save to the designated path." -msgstr "" - -msgctxt "@error:not supported" -msgid "MakerbotWriter does not support text mode." -msgstr "" - -msgctxt "@action:inmenu" -msgid "Manage Materials..." -msgstr "Administrar Materiais..." - -msgctxt "@action:inmenu menubar:printer" -msgid "Manage Pr&inters..." -msgstr "Adm&inistrar Impressoras..." - -msgctxt "@action:inmenu menubar:profile" -msgid "Manage Profiles..." -msgstr "Administrar perfis..." - -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "Gerenciar Visibilidade dos Ajustes..." - -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Gerenciar backups" - -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Gerir no navegador" - -msgctxt "@header" -msgid "Manage packages" -msgstr "Gerir pacotes" - -msgctxt "@info:tooltip" -msgid "Manage packages" -msgstr "Gerir pacotes" - -msgctxt "@action" -msgid "Manage print jobs" -msgstr "Gerenciar trabalhos de impressão" - -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Gerir Impressora" - -msgctxt "@button" -msgid "Manage printers" -msgstr "Gerenciar impressoras" - -msgctxt "@text" -msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." -msgstr "Gerencie seu complementos e perfis de materiais do Cura aqui. Se assegure de manter seus complementos atualizados e fazer backup de sua configuração regularmente." - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "Gerencia extensões à aplicação e permite navegar extensões do website da UltiMaker." - -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "Gerencia conexões de rede com as impressoras de rede da UltiMaker." - -msgctxt "@label" -msgid "Manufacturer" -msgstr "Fabricante" - -msgctxt "@action:button" -msgid "Marketplace" -msgstr "Mercado" - -msgctxt "@label" -msgid "Marketplace" -msgstr "Mercado" - -msgctxt "name" -msgid "Marketplace" -msgstr "Marketplace" - -msgctxt "@action:label" -msgid "Material" -msgstr "Material" - -msgctxt "@label" -msgid "Material" -msgstr "Material" - -msgctxt "@label:category menu label" -msgid "Material" -msgstr "Material" - -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Cor do Material" - -msgctxt "name" -msgid "Material Profiles" -msgstr "Perfis de Material" - -msgctxt "@label" -msgid "Material Type" -msgstr "Tipo de Material" - -msgctxt "@title" -msgid "Material color picker" -msgstr "Seletor de cores do material" - -msgctxt "@label" -msgid "Material estimation" -msgstr "Estimativa de material" - -msgctxt "@title:header" -msgid "Material profiles successfully synced with the following printers:" -msgstr "Perfis de material sincronizados com sucesso com as seguintes impressoras:" - -msgctxt "@action:label" -msgid "Material settings" -msgstr "Ajustes de material" - -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Materiais" - -msgctxt "@button" -msgid "Materials" -msgstr "Materiais" - -msgctxt "@title:tab" -msgid "Materials" -msgstr "Materiais" - -msgctxt "@label" -msgid "Materials compatible with active printer:" -msgstr "Materiais compatíveis com a impressora ativa:" - -msgctxt "@label" -msgid "Mesh Type" -msgstr "Tipo de Malha" - -msgctxt "@action:label" -msgid "Mode" -msgstr "Modo" - -msgctxt "name" -msgid "Model Checker" -msgstr "Verificador de Modelo" - -msgctxt "@info:title" -msgid "Model Errors" -msgstr "Erros de Modelo" - -msgctxt "@item:inmenu" -msgid "Modify G-Code" -msgstr "Modificar G-Code" - -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Modificar ajustes para sobreposições" - -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "Monitor" - -msgctxt "name" -msgid "Monitor Stage" -msgstr "Estágio de Monitor" - -msgctxt "@action:button" -msgid "Monitor print" -msgstr "Monitorar impressão" - -msgctxt "@tooltip:button" -msgid "Monitor print jobs and reprint from your print history." -msgstr "Monitora trabalhos de impressão e reimprime a partir do histórico." - -msgctxt "@tooltip:button" -msgid "Monitor printers in Ultimaker Digital Factory." -msgstr "Monitora as impressoras na Ultimaker Digital Factory." - -msgctxt "@info" -msgid "Monitor your printers from everywhere using Ultimaker Digital Factory" -msgstr "Monitora suas impressoras de todo lugar usando a Ultimaker Digital Factory" - -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Mais informações em coleção anônima de dados" - -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Move o trabalho de impressão para o topo da fila" - -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "Mover pra a Posição Seguinte" - -msgctxt "@label" -msgid "Move to top" -msgstr "Mover para o topo" - -msgctxt "@info:tooltip" -msgid "Moves the camera so the model is in the center of the view when a model is selected" -msgstr "Move a câmera de modo que o modelo fique no centro da visão quando for selecionado" - -msgctxt "@action:inmenu menubar:edit" -msgid "Multiply Selected" -msgstr "Multiplicar Selecionados" - -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "Multiplicar Modelo Selecionado" -msgstr[1] "Multiplicar Modelos Selecionados" - -msgctxt "@info" -msgid "Multiply selected item and place them in a grid of build plate." -msgstr "Multiplica o item selecionado e o dispõe em grade na plataforma de impressão." - -msgctxt "@info:status" -msgid "Multiplying and placing objects" -msgstr "Multiplicando e colocando objetos" - -msgctxt "@title" -msgid "My Backups" -msgstr "Meus backups" - -msgctxt "@label:button" -msgid "My printers" -msgstr "Minhas impressoras" - -msgctxt "@action:label" -msgid "Name" -msgstr "Nome" - -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "Impressoras habilitadas pela rede" - -msgctxt "@info:title" -msgid "Network error" -msgstr "Erro de rede" - -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s stable firmware available" -msgstr "Novo firmware estável de %s disponível" - -msgctxt "@textfield:placeholder" -msgid "New Custom Profile" -msgstr "Novo Perfil Personalizado" - -msgctxt "@label" -msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." -msgstr "Novas impressoras UltiMaker podem ser conectadas à Digital Factory e monitoradas remotamente." - -#, python-brace-format -msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." -msgstr "Novos recursos ou consertos de bugs podem estar disponíveis para sua {machine_name}! Se você não o fez ainda, recomenda-se que atualize o firmware de sua impressora para a versão {latest_version}." - -msgctxt "@action:button" -msgid "New materials installed" -msgstr "Novos materiais instalados" - -msgctxt "info:status" -msgid "New printer detected from your Ultimaker account" -msgid_plural "New printers detected from your Ultimaker account" -msgstr[0] "Nova impressora detectada na sua conta Ultimaker" -msgstr[1] "Novas impressoras detectadas na sua conta Ultimaker" - -msgctxt "@title:window" -msgid "New project" -msgstr "Novo projeto" - -msgctxt "@action:button" -msgid "Next" -msgstr "Próximo" - -msgctxt "@button" -msgid "Next" -msgstr "Próximo" - -msgctxt "@info:title" -msgid "Nightly build" -msgstr "Compilação noturna" - -msgctxt "@info" -msgid "No" -msgstr "Não" - -msgctxt "@info" -msgid "No compatibility information" -msgstr "Sem informação de compatibilidade" - -msgctxt "@description" -msgid "No compatible printers, that are currently online, were found." -msgstr "Não foram encontradas impressoras compatíveis que estivessem online no momento." - -msgctxt "@label" -msgid "No cost estimation available" -msgstr "Sem estimativa de custo disponível" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags !" -msgid "No custom profile to import in file {0}" -msgstr "Não há perfil personalizado a importar no arquivo {0}" - -msgctxt "@label" -msgid "No items to select from" -msgstr "Sem itens para selecionar" - -msgctxt "@info:title" -msgid "No layers to show" -msgstr "Não há camadas a exibir" - -msgctxt "@message" -msgid "No more results to load" -msgstr "Não há mais resultados a carregar" - -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "Sem permissão para gravar o espaço de trabalho aqui." - -msgctxt "@title:header" -msgid "No printers found" -msgstr "Nenhuma impressora encontrada" - -msgctxt "@label" -msgid "No printers found in your account?" -msgstr "Nenhuma impressora encontrada em sua conta?" - -msgctxt "@message:text %1 is the name the printer uses for 'nozzle'." -msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration." -msgstr "Nenhum perfil está disponível para a configuração selecionada de material/%1. Por favor altere sua configuração." - -msgctxt "@message" -msgid "No results found with current filter" -msgstr "Não há resultados encontrados com o filtro atual" - -msgctxt "@label" -msgid "No time estimation available" -msgstr "Sem estimativa de tempo disponível" - -msgctxt "@button" -msgid "Non UltiMaker printer" -msgstr "Impressora Não-UltiMaker" - -msgctxt "@info No materials" -msgid "None" -msgstr "Nenhum" - -msgctxt "@label" -msgid "Normal model" -msgstr "Modelo normal" - -msgctxt "@info:title" -msgid "Not a group host" -msgstr "Não é host de grupo" - -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "Não conectado a nenhuma impressora" - -msgctxt "@action:label" -msgid "Not in profile" -msgstr "Ausente no perfil" - -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Não sobreposto" - -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "Não Suportado" - -msgctxt "@label" -msgid "Not yet initialized" -msgstr "Ainda não inicializado" - -msgctxt "@info:status" -msgid "Nothing is shown because you need to slice first." -msgstr "Nada está exibido porque você precisa fatiar primeiro." - -msgctxt "@label" -msgid "Nozzle" -msgstr "Bico" - -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Ajustes do Bico" - -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Deslocamento X do Bico" - -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Deslocamento Y do Bico" - -msgctxt "@label" -msgid "Nozzle size" -msgstr "Tamanho do bico" - -msgctxt "@label" -msgid "Number of Copies" -msgstr "Número de Cópias" - -msgctxt "@label" -msgid "Number of Extruders" -msgstr "Número de Extrusores" - -msgctxt "@action:button" -msgid "OK" -msgstr "Ok" - -msgctxt "@label" -msgid "OS language" -msgstr "Linguagem do SO" - -msgctxt "@label" -msgid "Object list" -msgstr "Lista de objetos" - -msgctxt "@label:Should be short" -msgid "Off" -msgstr "Off" - -msgctxt "@label:Should be short" -msgid "On" -msgstr "On" - -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Somente Exibir Camadas Superiores" - -#, python-brace-format -msgctxt "@info:status" -msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" -msgstr "Somente um arquivo G-Code pode ser carregado por vez. Pulando importação de {0}" - -msgctxt "@action:button" -msgid "Open" -msgstr "Abrir" - -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "Abrir &Recente" - -msgctxt "@item:inlistbox 'Open' is part of the name of this file format." -msgid "Open Compressed Triangle Mesh" -msgstr "Open Compressed Triangle Mesh" - -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "Abrir Arquivo(s)" - -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "Abrir Arquivo(s)..." - -msgctxt "@title:window" -msgid "Open Project" -msgstr "Abrir Projeto" - -msgctxt "@info:title" -msgid "Open Project File" -msgstr "Abrir Arquivo de Projeto" - -msgctxt "@action:label" -msgid "Open With" -msgstr "Abrir Com" - -msgctxt "@action:button" -msgid "Open as project" -msgstr "Abrir como projeto" - -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "Abrir arquivo(s)" - -msgctxt "@action:button" -msgid "Open project anyway" -msgstr "Abrir o projeto mesmo assim" - -msgctxt "@title:window" -msgid "Open project file" -msgstr "Abrir arquivo de projeto" - -msgctxt "@label OpenGL version" -msgid "OpenGL" -msgstr "OpenGL" - -msgctxt "@label" -msgid "Opening and saving files" -msgstr "Abrindo e salvando arquivos" - -msgctxt "@header" -msgid "Optimized for Air Manager" -msgstr "Otimizado para o Air Manager" - -msgctxt "@label" -msgid "Origin at center" -msgstr "Origem no centro" - -msgid "Orthographic" -msgstr "Ortográfica" - -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "Ortográfico" - -msgctxt "@tooltip" -msgid "Other" -msgstr "Outros" - -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "Outros modelos se sobrepondo a esse modelo foram modificados." - -msgctxt "@label" -msgid "Other printers" -msgstr "Outras impressoras" - -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "Parede Externa" - -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "Sobreposições neste modelo não são suportadas." - -msgctxt "@action:button" -msgid "Override" -msgstr "Sobrepor" - -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "Sobrepor irá usar os ajustes especificados com a configuração existente da impressora. Isto pode causar falha da impressão." - -msgctxt "@label %1 is the number of settings it overrides." -msgid "Overrides %1 setting." -msgid_plural "Overrides %1 settings." -msgstr[0] "Sobrepõe %1 ajuste." -msgstr[1] "Sobrepõe %1 ajustes." - -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "P&referências" - -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "Imagem PNG" - -msgctxt "@header" -msgid "Package details" -msgstr "Detalhes do pacote" - -msgctxt "@label Description for development tool" -msgid "Packaging Python-applications" -msgstr "Empacotamento de aplicações Python" - -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "Interpretando G-Code" - -msgctxt "@action:inmenu menubar:edit" -msgid "Paste from clipboard" -msgstr "Colar da área de transferência" - -msgctxt "@label" -msgid "Pause" -msgstr "Pausar" - -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "Pausado" - -msgctxt "@label:status" -msgid "Paused" -msgstr "Pausado" - -msgctxt "@label" -msgid "Pausing..." -msgstr "Pausando..." - -msgctxt "@label:status" -msgid "Pausing..." -msgstr "Pausando..." - -msgctxt "@label" -msgid "Per Model Settings" -msgstr "Ajustes por Modelo" - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Ferramenta de Ajustes Por Modelo" - -msgid "Perspective" -msgstr "Perspectiva" - -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "Perspectiva" - -msgctxt "@action:label" -msgid "Placement" -msgstr "Posicionamento" - -msgctxt "@info:title" -msgid "Placing Object" -msgstr "Colocando Objeto" - -msgctxt "@info:title" -msgid "Placing Objects" -msgstr "Colocando Objetos" - -msgctxt "@label Type of platform" -msgid "Platform" -msgstr "Plataforma" - -msgctxt "@info" -msgid "Please connect your printer to the network." -msgstr "Por favor conecte sua impressora à rede." - -msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "Por favor entre um endereço IP válido." - -msgctxt "@message" -msgid "Please give the required permissions when authorizing this application." -msgstr "Por favor dê as permissões requeridas ao autorizar esta aplicação." - -msgctxt "@info" -msgid "" -"Please make sure your printer has a connection:\n" -"- Check if the printer is turned on.\n" -"- Check if the printer is connected to the network.\n" -"- Check if you are signed in to discover cloud-connected printers." -msgstr "" -"Por favor certifique-se que sua impressora está conectada>\n" -"- Verifique se ela está ligada.\n" -"- Verifique se ela está conectada à rede.\n" -"- Verifique se você está logado para descobrir impressoras conectadas à nuvem." - -msgctxt "@text" -msgid "Please name your printer" -msgstr "Por favor dê um nome à sua impressora" - -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "Por favor prepare o G-Code antes de exportar." - -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "Por favor dê um nome a este perfil." - -msgctxt "@info" -msgid "Please provide a new name." -msgstr "Por favor, escolha um novo nome." - -msgctxt "@text" -msgid "Please read and agree with the plugin licence." -msgstr "Por favor leia e concorde com a licença do complemento." - -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "Por favor remova a impressão" - -msgctxt "@info:status" -msgid "" -"Please review settings and check if your models:\n" -"- Fit within the build volume\n" -"- Are assigned to an enabled extruder\n" -"- Are not all set as modifier meshes" -msgstr "" -"Por favor revise os ajustes e verifique se seus modelos:\n" -"- Cabem dentro do volume de impressão\n" -"- Estão associados a um extrusor habilitado\n" -"- Não estão todos configurados como malhas de modificação" - -msgctxt "@label" -msgid "Please select any upgrades made to this UltiMaker Original" -msgstr "Por favor selecionar quaisquer atualizações feitas nesta UltiMaker Original" - -msgctxt "@description" -msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" -msgstr "Por favor se logue para adquirir complementos e materiais verificados para o UltiMaker Cura Enterprise" - -msgctxt "@action:button" -msgid "Please sync the material profiles with your printers before starting to print." -msgstr "Por favor sincronize os perfis de material com suas impressoras antes de começar a imprimir." - -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "Por favor atualize o firmware de sua impressora parar gerir a fila remotamente." - -msgctxt "@info:status" -msgid "Please wait until the current job has been sent." -msgstr "Por favor espere até que o trabalho atual tenha sido enviado." - -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Acordo de Licença do Complemento" - -msgctxt "@button" -msgid "Plugin license agreement" -msgstr "Acordo de licença do complemento" - -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Complementos" - -msgctxt "@button" -msgid "Plugins" -msgstr "Complementos" - -msgctxt "@label Description for application dependency" -msgid "Polygon clipping library" -msgstr "Biblioteca de recorte de polígonos" - -msgctxt "@label Description for application component" -msgid "Polygon packing library, developed by Prusa Research" -msgstr "Biblioteca de empacotamento Polygon, desenvolvido pela Prusa Research" - -msgctxt "@item:inmenu" -msgid "Post Processing" -msgstr "Pós-Processamento" - -msgctxt "name" -msgid "Post Processing" -msgstr "Pós-processamento" - -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "Complemento de Pós-Processamento" - -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "Scripts de Pós-Processamento" - -msgctxt "@button" -msgid "Pre-heat" -msgstr "Pré-aquecer" - -msgctxt "@item:inmenu" -msgid "Prepare" -msgstr "Preparar" - -msgctxt "name" -msgid "Prepare Stage" -msgstr "Estágio de Preparação" - -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "Preparando..." - -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Preparando..." - -msgctxt "@label" -msgid "Preset printers" -msgstr "Impressoras pré-ajustadas" - -msgctxt "@button" -msgid "Preview" -msgstr "Pré-visualização" - -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "Pré-visualização" - -msgctxt "name" -msgid "Preview Stage" -msgstr "Estágio de Pré-visualização" - -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "Torre de Prime" - -msgctxt "@action:button" -msgid "Print" -msgstr "Imprimir" - -msgctxt "@label" -msgid "Print Selected Model With:" -msgid_plural "Print Selected Models With:" -msgstr[0] "Imprimir Modelo Selecionado Com:" -msgstr[1] "Imprimir Modelos Selecionados Com:" - -msgctxt "@label %1 is filled in with the name of an extruder" -msgid "Print Selected Model with %1" -msgid_plural "Print Selected Models with %1" -msgstr[0] "Imprimir Modelo Selecionado com %1" -msgstr[1] "Imprimir Modelos Selecionados com %1" - -msgctxt "@label" -msgid "Print as support" -msgstr "Imprimir como suporte" - -msgctxt "@info:title" -msgid "Print error" -msgstr "Erro de impressão" - -msgctxt "@message" -msgid "Print in Progress" -msgstr "Impressão em Progresso" - -msgctxt "@info:status" -msgid "Print job queue is full. The printer can't accept a new job." -msgstr "A fila de trabalhos de impressão está cheia. A impressora não pode aceitar novo trabalho." - -msgctxt "@info:status" -msgid "Print job was successfully sent to the printer." -msgstr "Trabalho de impressão enviado à impressora com sucesso." - -msgctxt "@label" -msgid "Print jobs" -msgstr "Trabalhos de impressão" - -msgctxt "@label:button" -msgid "Print jobs" -msgstr "Trabalhos de impressão" - -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "Imprimir pela rede" - -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "Imprime pela rede" - -msgctxt "@title:window" -msgid "Print over network" -msgstr "Imprimir pela rede" - -msgctxt "@label" -msgid "Print settings" -msgstr "Ajustes de impressão" - -msgctxt "@label shown when we load a Gcode file" -msgid "Print setup disabled. G-code file can not be modified." -msgstr "Configuração de Impressão desabilitada. O arquivo de G-Code não pode ser modificado." - -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "Imprimir pela USB" - -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "Imprimir pela USB" - -msgctxt "@action:button" -msgid "Print via cloud" -msgstr "Imprimir pela nuvem" - -msgctxt "@properties:tooltip" -msgid "Print via cloud" -msgstr "Imprimir pela nuvem" - -msgctxt "@action:label" -msgid "Print with" -msgstr "Imprimir com" - -msgctxt "@title:tab" -msgid "Printer" -msgstr "Impressora" - -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Endereço da Impressora" - -msgctxt "@action:label" -msgid "Printer Group" -msgstr "Grupo de Impressora" - -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Ajustes de Impressora" - -msgctxt "@label" -msgid "Printer control" -msgstr "Controle da Impressora" - -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "A impressora não aceita comandos" - -msgctxt "@label" -msgid "Printer name" -msgstr "Nome da impressora" - -msgctxt "@label" -msgid "Printer selection" -msgstr "Seleção de impressora" - -msgctxt "@action:label" -msgid "Printer settings" -msgstr "Ajustes da impressora" - -msgctxt "@info:tooltip" -msgid "Printer settings will be updated to match the settings saved with the project." -msgstr "Os ajustes de impressora serão atualizados para concordar com os ajustes salvos com o projeto." - -msgctxt "@title:tab" -msgid "Printers" -msgstr "Impressoras" - -msgctxt "info:status" -msgid "Printers added from Digital Factory:" -msgstr "Impressoras adicionadas da Digital Factory:" - -msgctxt "@text Asking the user whether printers are missing in a list." -msgid "Printers missing?" -msgstr "Impressoras faltando?" - -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Ajustes da Cabeça de Impressão" - -msgctxt "@label:status" -msgid "Printing" -msgstr "Imprimindo" - -msgctxt "@label" -msgid "Printing Time" -msgstr "Tempo de Impressão" - -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "Imprimindo..." - -msgctxt "@label" -msgid "Privacy" -msgstr "Privacidade" - -msgctxt "@button" -msgid "Processing" -msgstr "Processando" - -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Processando Camadas" - -msgctxt "@label" -msgid "Profile" -msgstr "Perfil" - -msgctxt "@title:column" -msgid "Profile" -msgstr "Perfil" - -msgctxt "@label" -msgid "Profile author" -msgstr "Autor do perfil" - -msgctxt "@info:status" -msgid "Profile is missing a quality type." -msgstr "Falta um tipo de qualidade ao Perfil." - -msgctxt "@action:label" -msgid "Profile settings" -msgstr "Ajustes de perfil" - -msgctxt "@title:column" -msgid "Profile settings" -msgstr "Ajustes de perfil" - -#, python-brace-format -msgctxt "@info:status" -msgid "Profile {0} has an unknown file type or is corrupted." -msgstr "O Perfil {0} tem tipo de arquivo desconhecido ou está corrompido." - -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Perfis" - -msgctxt "@label" -msgid "Profiles" -msgstr "Perfis" - -msgctxt "@title:tab" -msgid "Profiles" -msgstr "Perfis" - -msgctxt "@label" -msgid "Profiles compatible with active printer:" -msgstr "Perfis compatíveis com a impressora ativa:" - -msgctxt "@label Description for application dependency" -msgid "Programming language" -msgstr "Linguagem de Programação" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." -msgstr "O arquivo de projeto {0} contém um tipo de máquina desconhecido {1}. Não foi possível importar a máquina. Os modelos serão importados ao invés dela." - -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is corrupt: {1}." -msgstr "Arquivo de projeto {0} está corrompido: {1}." - -#, python-brace-format -msgctxt "@info:error Don't translate the XML tag !" -msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." -msgstr "O arquivo de projeto {0} foi feito usando perfis que são desconhecidos para esta versão do UltiMaker Cura." - -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is suddenly inaccessible: {1}." -msgstr "O arquivo de projeto {0} tornou-se subitamente inacessível: {1}." - -msgctxt "@label" -msgid "Properties" -msgstr "Propriedades" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Provê ações de máquina para atualização do firmware." - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Provê um estágio de monitor no Cura." - -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Provê uma visualização de malha sólida normal." - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Provê um estágio de preparação no Cura." - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Provê uma etapa de pré-visualização ao Cura." - -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Provê uma maneira de alterar ajustes de máquina (tais como volume de impressão, tamanho do bico, etc.)." - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Provê capacidade de ler e escrever perfis de material baseado em XML." - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Provê ações de máquina para impressoras da UltiMaker (tais como assistente de nivelamento de mesa, seleção de atualizações, etc.)." - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Provê suporte a escrita e reconhecimento de drives a quente." - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Provê suporte à exportação de perfis do Cura." - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Provê suporte à importação de perfis do Cura." - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Provê suporte a importar perfis de arquivos G-Code." - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Provê suporte a importação de perfis de versões legadas do Cura." - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Provê suporte à leitura de arquivos 3MF." - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Provê suporta à leitura de arquivos AMF." - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Provê suporte à leitura de Formatos de Pacote Ultimaker." - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Provê suporte à leitura de arquivos X3D." - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Provê suporta a ler arquivos de modelo." - -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Provê suporte à escrita de arquivos 3MF." - -msgctxt "description" -msgid "Provides support for writing MakerBot Format Packages." -msgstr "" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Provê suporte à escrita de Formatos de Pacote Ultimaker." - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Provê Ajustes Por Modelo." - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Provê a visão de Raios-X." - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Provê a ligação ao backend de fatiamento CuraEngine." - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Provê a pré-visualização de dados de camada fatiados." - -msgctxt "@label" -msgid "PyQt version" -msgstr "Versão do PyQt" - -msgctxt "@Label Description for application dependency" -msgid "Python Error tracking library" -msgstr "Biblioteca de rastreamento de Erros Python" - -msgctxt "@label Description for application dependency" -msgid "Python bindings for Clipper" -msgstr "Ligações de Python pra Clipper" - -msgctxt "@label Description for application component" -msgid "Python bindings for libnest2d" -msgstr "Ligações de Python para a libnest2d" - -msgctxt "@label" -msgid "Qt version" -msgstr "Versão do Qt" - -#, python-brace-format -msgctxt "@info:status" -msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." -msgstr "Tipo de qualidade '{0}' não é compatível com a definição de máquina ativa atual '{1}'." - -msgctxt "@info:title" -msgid "Queue Full" -msgstr "Fila Cheia" - -msgctxt "@label" -msgid "Queued" -msgstr "Enfileirados" - -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "Sair de %1" - -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Lê G-Code de um arquivo comprimido." - -msgctxt "@button" -msgid "Recommended" -msgstr "Recomendado" - -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Recomendado" - -msgctxt "@label" -msgid "Recommended print settings" -msgstr "Ajustes recomendados de impressão" - -msgctxt "@info %1 is the name of a profile" -msgid "Recommended settings (for %1) were altered." -msgstr "Ajustes recomendados (para %1) foram alterados." - -msgctxt "@action:button" -msgid "Refresh" -msgstr "Atualizar" - -msgctxt "@button" -msgid "Refresh" -msgstr "Atualizar" - -msgctxt "@label" -msgid "Refresh" -msgstr "Atualizar" - -msgctxt "@button" -msgid "Refresh List" -msgstr "Atualizar Lista" - -msgctxt "@button" -msgid "Refreshing..." -msgstr "Atualizando..." - -msgctxt "@label" -msgid "Release Notes" -msgstr "Notas de lançamento" - -msgctxt "@action:inmenu menubar:file" -msgid "Reload All Models" -msgstr "Recarregar Todos Os Modelos" - -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "Lembrar minha escolha" - -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "Unidade Removível" - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Complemento de Dispositivo de Escrita Removível" - -msgctxt "@action:button" -msgid "Remove" -msgstr "Remover" - -msgctxt "@action:button" -msgid "Remove printers" -msgstr "Remover impressoras" - -msgctxt "@title:window" -msgid "Remove printers?" -msgstr "Remover impressoras?" - -msgctxt "@action:button" -msgid "Rename" -msgstr "Renomear" - -msgctxt "@title:window" -msgid "Rename" -msgstr "Renomear" - -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "Renomear Perfil" - -msgctxt "@action:inmenu menubar:help" -msgid "Report a &Bug" -msgstr "Relatar um &Bug" - -msgctxt "@label:button" -msgid "Report a bug" -msgstr "Relatar um problema" - -msgctxt "@message:button" -msgid "Report a bug" -msgstr "Relatar um bug" - -msgctxt "@message:description" -msgid "Report a bug on UltiMaker Cura's issue tracker." -msgstr "Relatar um bug no issue tracker do UltiMaker Cura." - -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Requer mudanças na configuração" - -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Positions" -msgstr "Reestabelecer as Posições de Todos Os Modelos" - -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Transformations" -msgstr "Remover as Transformações de Todos Os Modelos" - -msgctxt "@info" -msgid "Reset to defaults." -msgstr "Restaurar aos defaults." - -msgctxt "@label" -msgid "Resolution" -msgstr "Resolução" - -msgctxt "@button" -msgid "Restore" -msgstr "Restaurar" - -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Restaurar Backup" - -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "Restaurar posição da janela no início" - -msgctxt "@label" -msgid "Resume" -msgstr "Continuar" - -msgctxt "@label" -msgid "Resuming..." -msgstr "Continuando..." - -msgctxt "@label:status" -msgid "Resuming..." -msgstr "Continuando..." - -msgctxt "@tooltip" -msgid "Retractions" -msgstr "Retrações" - -msgctxt "@button" -msgid "Retry?" -msgstr "Tentar novamente?" - -msgctxt "@action:inmenu menubar:view" -msgid "Right Side View" -msgstr "Visão do Lado Direito" - -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "Visão à Direita" - -msgctxt "@label Description for application dependency" -msgid "Root Certificates for validating SSL trustworthiness" -msgstr "Certificados-Raiz para validar confiança SSL" - -msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "Remover Hardware com Segurança" - -msgctxt "@button" -msgid "Safety datasheet" -msgstr "Ficha de segurança" - -msgctxt "@action:button" -msgid "Save" -msgstr "Salvar" - -msgctxt "@option" -msgid "Save Cura project" -msgstr "Salvar o projeto Cura" - -msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "Salvar o projeto Cura e imprimir o arquivo" - -msgctxt "@title:window" -msgid "Save Custom Profile" -msgstr "Salvar Perfil Personalizado" - -msgctxt "@title:window" -msgid "Save Project" -msgstr "Salvar Projeto" - -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "Salvar Projeto..." - -msgctxt "@action:button" -msgid "Save as new custom profile" -msgstr "Salvar como novo perfil personalizado" - -msgctxt "@action:button" -msgid "Save changes" -msgstr "Salvar alterações" - -msgctxt "@button" -msgid "Save new profile" -msgstr "Salvar novo perfil" - -msgctxt "@text" -msgid "Save the .umm file on a USB stick." -msgstr "Grava o arquivo .umm em um pendrive USB." - -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "Salvar em Unidade Removível" - -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "Save to Removable Drive {0}" -msgstr "Salvar em Unidade Removível {0}" - -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "Salvo em Unidade Removível {0} como {1}" - -msgctxt "@info:title" -msgid "Saving" -msgstr "Salvando" - -#, python-brace-format -msgctxt "@info:progress Don't translate the XML tags !" -msgid "Saving to Removable Drive {0}" -msgstr "Salvando na Unidade Removível {0}" - -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "Redimensionar modelos minúsculos" - -msgctxt "@option:check" -msgid "Scale large models" -msgstr "Redimensionar modelos grandes" - -msgctxt "@placeholder" -msgid "Search" -msgstr "Buscar" - -msgctxt "@info" -msgid "Search in the browser" -msgstr "Buscar no navegador" - -msgctxt "@label:textbox" -msgid "Search settings" -msgstr "Ajustes de busca" - -msgctxt "@action:inmenu menubar:edit" -msgid "Select All Models" -msgstr "Selecionar Todos Os Modelos" - -msgctxt "@title:window" -msgid "Select Printer" -msgstr "Selecione Impressora" - -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Selecionar Ajustes a Personalizar para este modelo" - -msgctxt "@text" -msgid "Select and install material profiles optimised for your UltiMaker 3D printers." -msgstr "Selecione e instale perfis de material otimizados para suas impressoras 3D UltiMaker." - -msgctxt "@label" -msgid "Select configuration" -msgstr "Selecione configuração" - -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Selecionar firmware personalizado" - -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "Selecionar modelos ao carregar" - -msgctxt "@action:button" -msgid "Select settings" -msgstr "Selecionar ajustes" - -msgctxt "@action" -msgid "Select upgrades" -msgstr "Selecionar Atualizações" - -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Selecione sua impressora da lista abaixo:" - -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "Enviar informação (anônima) de impressão" - -msgctxt "@label" -msgid "Send G-code" -msgstr "Enviar G-Code" - -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "Enviar comando G-Code personalizado para a impressora conectada. Pressione 'enter' para enviar o comando." - -msgctxt "@action:button" -msgid "Send crash report to UltiMaker" -msgstr "Enviar relatório de falha à UltiMaker" - -msgctxt "@action:button" -msgid "Send report" -msgstr "Enviar relatório" - -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "Enviando Trabalho de Impressão" - -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "Enviando material para a impressora" - -msgctxt "name" -msgid "Sentry Logger" -msgstr "Sentinela para Registro" - -msgctxt "@label Description for application dependency" -msgid "Serial communication library" -msgstr "Biblioteca de comunicação serial" - -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Definir Como Extrusor Ativo" - -msgctxt "@title:column" -msgid "Setting" -msgstr "Ajustes" - -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "Visibilidade dos Ajustes" - -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "Ajustando preferências..." - -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "Configurando cena..." - -msgctxt "@action:label" -msgid "Setting visibility" -msgstr "Visibilidade dos ajustes" - -msgctxt "@label" -msgid "Settings" -msgstr "Ajustes" - -msgctxt "@title:tab" -msgid "Settings" -msgstr "Ajustes" - -msgctxt "@info:message Followed by a list of settings." -msgid "Settings have been changed to match the current availability of extruders:" -msgstr "Os ajustes foram alterados para seguir a disponibilidade de extrusores atuais:" - -msgctxt "@info:title" -msgid "Settings updated" -msgstr "Ajustes atualizados" - -msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community" -msgstr "Compartilhe ideias e consiga ajuda de mais de 48.000 usuários da Comunidade UltiMaker" - -msgctxt "@label" -msgid "Shell" -msgstr "Perímetro" - -msgctxt "@action:label" -msgid "Shell Thickness" -msgstr "Espessura de Perímetro" - -msgctxt "@info:tooltip" -msgid "Should Cura check for updates when the program is started?" -msgstr "O Cura deve verificar novas atualizações quando o programa for iniciado?" - -msgctxt "@info:tooltip" -msgid "Should Cura open at the location it was closed?" -msgstr "O Cura deve abrir no lugar onde foi fechado?" - -msgctxt "@info:tooltip" -msgid "Should a prefix based on the printer name be added to the print job name automatically?" -msgstr "Um prefixo baseado no nome da impressora deve ser adicionado ao nome do trabalho de impressão automaticamente?" - -msgctxt "@info:tooltip" -msgid "Should a summary be shown when saving a project file?" -msgstr "Um resumo deve ser exibido ao salvar um arquivo de projeto?" - -msgctxt "@info:tooltip" -msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!" -msgstr "Uma verificação automática por novos complementos deve ser feita toda vez que o Cura iniciar? É altamente recomendado que não desabilite esta opção!" - -msgctxt "@info:tooltip" -msgid "Should anonymous data about your print be sent to UltiMaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." -msgstr "Dados anônimos sobre sua impressão podem ser enviados para a UltiMaker? Nota: nenhuma informação pessoalmente identificável, modelos ou endereços IP são enviados ou armazenados." - -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "A Visão de Camada deve ser forçada a ficar em modo de compatibilidade?" - -msgctxt "@info:tooltip" -msgid "Should models be scaled to the build volume if they are too large?" -msgstr "Os modelos devem ser redimensionados dentro do volume de impressão se forem muito grandes?" - -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "Os modelos devem ser selecionados após serem carregados?" - -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved down to touch the build plate?" -msgstr "Os modelos devem ser movidos pra baixo pra se assentar na plataforma de impressão?" - -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved so that they no longer intersect?" -msgstr "Os modelos devem ser movidos na plataforma de modo que não se sobreponham?" - -msgctxt "@info:tooltip" -msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" -msgstr "Arquivos da área de trabalho ou de aplicações externas devem ser abertos na mesma instância do Cura?" - -msgctxt "@info:tooltip" -msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" -msgstr "A plataforma de construção deve ser esvaziada antes de carregar um modelo novo na instância única do Cura?" - -msgctxt "@info:tooltip" -msgid "Should the default zoom behavior of cura be inverted?" -msgstr "O comportamento default de ampliação deve ser invertido?" - -msgctxt "@info:tooltip" -msgid "Should zooming move in the direction of the mouse?" -msgstr "A ampliação (zoom) deve se mover na direção do mouse?" - -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "Exibir 5 Camadas Superiores Detalhadas" - -msgctxt "@action:inmenu menubar:help" -msgid "Show Configuration Folder" -msgstr "Exibir Pasta de Configuração" - -msgctxt "@button" -msgid "Show Custom" -msgstr "Mostrar Personalizado" - -msgctxt "@action:inmenu menubar:help" -msgid "Show Online &Documentation" -msgstr "Exibir &Documentação Online" - -msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting" -msgstr "Mostrar Resolução de Problemas Online" - -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Exibir tudo" - -msgctxt "@label" -msgid "Show all connected printers" -msgstr "Mostrar todas as impressoras conectadas" - -msgctxt "@info:tooltip" -msgid "Show an icon and notifications in the system notification area." -msgstr "Mostrar um ícone e notificações na área de notificações do sistema." - -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "Exibir mensagem de alerta no leitor de G-Code." - -msgctxt "@action:button" -msgid "Show configuration folder" -msgstr "Mostrar a pasta de configuração" - -msgctxt "@action:button" -msgid "Show detailed crash report" -msgstr "Exibir relatório de falha detalhado" - -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "Exibir diálogo de resumo ao salvar projeto" - -msgctxt "@tooltip:button" -msgid "Show your support for Cura with a donation." -msgstr "Mostre seu suporte ao Cura com uma doação." - -msgctxt "@button" -msgid "Sign Out" -msgstr "Deslogar" - -msgctxt "@action:button" -msgid "Sign in" -msgstr "Entrar" - -msgctxt "@button" -msgid "Sign in" -msgstr "Entrar" - -msgctxt "@title:header" -msgid "Sign in" -msgstr "Entrar" - -msgctxt "@info" -msgid "Sign in into UltiMaker Digital Factory" -msgstr "Fazer login na Ultimaker Digital Factory" - -msgctxt "@button" -msgid "Sign in to Digital Factory" -msgstr "Fazer login na Digital Factory" - -msgctxt "@label" -msgid "Sign in to the UltiMaker platform" -msgstr "Entre na plataforma UltiMaker" - -msgctxt "name" -msgid "Simulation View" -msgstr "Visão Simulada" - -msgctxt "@tooltip" -msgid "Skin" -msgstr "Contorno" - -msgctxt "@action:button" -msgid "Skip" -msgstr "Pular" - -msgctxt "@button" -msgid "Skip" -msgstr "Pular" - -msgctxt "@tooltip" -msgid "Skirt" -msgstr "Skirt (Saia)" - -msgctxt "@button" -msgid "Slice" -msgstr "Fatiar" - -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "Fatiar automaticamente" - -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "Fatiar automaticamente quando mudar ajustes." - -msgctxt "name" -msgid "Slice info" -msgstr "Informação de fatiamento" - -msgctxt "@message:title" -msgid "Slicing failed" -msgstr "Fatiamento falhado" - -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "O fatiamento falhou com um erro não esperado. Por favor considere relatar um bug em nosso issue tracker." - -msgctxt "@label:PrintjobStatus" -msgid "Slicing..." -msgstr "Fatiando..." - -msgctxt "@action:label" -msgid "Smoothing" -msgstr "Suavização" - -msgctxt "name" -msgid "Solid View" -msgstr "Visão Sólida" - -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "Visão sólida" - -msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "" -"Alguns ajustes ocultos usam valores diferentes de seu valor calculado normal.\n" -"\n" -"Clique para tornar estes ajustes visíveis." - -msgctxt "@info:status" -msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." -msgstr "Alguns dos pacotes usados no arquivo de projeto não estão atualmente instalados no Cura, isto pode produzir resultados de impressão não desejados. Recomendamos fortemente instalar todos os pacotes requeridos pelo MarketPlace." - -msgctxt "@info:title" -msgid "Some required packages are not installed" -msgstr "Alguns pacotes requeridos não estão instalados" - -msgctxt "@info %1 is the name of a profile" -msgid "Some setting-values defined in %1 were overridden." -msgstr "Alguns valores de ajustes definidos em %1 foram sobrepostos." - -msgctxt "@tooltip" -msgid "" -"Some setting/override values are different from the values stored in the profile.\n" -"\n" -"Click to open the profile manager." -msgstr "" -"Alguns ajustes/sobreposições têm valores diferentes dos que estão armazenados no perfil.\n" -"\n" -"Clique para abrir o gerenciador de perfis." - -msgctxt "@action:label" -msgid "Some settings from current profile were overwritten." -msgstr "Alguns ajustes do perfil atual foram sobrescritos." - -msgctxt "@message" -msgid "Something unexpected happened when trying to log in, please try again." -msgstr "Algo inesperado aconteceu ao tentar login, por favor tente novamente." - -msgctxt "@title:header" -msgid "Something went wrong when sending the materials to the printers." -msgstr "Algo de errado aconteceu ao enviar os materiais às impressoras." - -msgctxt "@label" -msgid "Something went wrong..." -msgstr "Alguma coisa deu errado..." - -msgctxt "@label:listbox" -msgid "Speed" -msgstr "Velocidade" - -msgctxt "@action:inmenu" -msgid "Sponsor Cura" -msgstr "Patrocinar o Cura" - -msgctxt "@label:button" -msgid "Sponsor Cura" -msgstr "Patrocinar o Cura" - -msgctxt "@option:radio" -msgid "Stable and Beta releases" -msgstr "Versões estáveis ou beta" - -msgctxt "@option:radio" -msgid "Stable releases only" -msgstr "Versões estáveis somente" - -msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Formato de Triângulos de Stanford" - -msgctxt "@button" -msgid "Start" -msgstr "Iniciar" - -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "Iniciar Nivelamento da Mesa de Impressão" - -msgctxt "@title:label" -msgid "Start G-code" -msgstr "G-Code Inicial" - -msgctxt "@label" -msgid "Start the slicing process" -msgstr "Inicia o processo de fatiamento" - -msgctxt "@label" -msgid "Starts" -msgstr "Inícios" - -msgctxt "@text" -msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users." -msgstr "Simplifique seu fluxo de trabalho e personalize sua experiência do UltiMaker Cura com complementos contribuídos por nossa fantástica comunidade de usuários." - -msgctxt "@label" -msgid "Strength" -msgstr "Força" - -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Submete informações de fatiamento anônimas. Pode ser desabilitado nas preferências." - -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "Material exportado para %1 com sucesso" - -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Material %1 importado com sucesso" - -#, python-brace-format -msgctxt "@info:status" -msgid "Successfully imported profile {0}." -msgstr "Perfil {0} importado com sucesso." - -msgctxt "@action:title" -msgid "Summary - Cura Project" -msgstr "Resumo - Projeto do Cura" - -msgctxt "@label" -msgid "Support" -msgstr "Suporte" - -msgctxt "@tooltip" -msgid "Support" -msgstr "Suporte" - -msgctxt "@label" -msgid "Support Blocker" -msgstr "Bloqueador de Suporte" - -msgctxt "name" -msgid "Support Eraser" -msgstr "Apagador de Suporte" - -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "Preenchimento de Suporte" - -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "Interface de Suporte" - -msgctxt "@action:label" -msgid "Support Type" -msgstr "Tipo de Suporte" - -msgctxt "@label Description for application dependency" -msgid "Support library for faster math" -msgstr "Biblioteca de suporte para matemática acelerada" - -msgctxt "@label Description for application component" -msgid "Support library for file metadata and streaming" -msgstr "Biblioteca de suporte para streaming e metadados de arquivo" - -msgctxt "@label Description for application component" -msgid "Support library for handling 3MF files" -msgstr "Biblioteca de suporte para manuseamento de arquivos 3MF" - -msgctxt "@label Description for application dependency" -msgid "Support library for handling STL files" -msgstr "Biblioteca de suporte para manuseamento de arquivos STL" - -msgctxt "@label Description for application dependency" -msgid "Support library for handling triangular meshes" -msgstr "Biblioteca de suporte para manuseamento de malhas triangulares" - -msgctxt "@label Description for application dependency" -msgid "Support library for scientific computing" -msgstr "Biblioteca de suporte para computação científica" - -msgctxt "@label Description for application dependency" -msgid "Support library for system keyring access" -msgstr "Biblioteca de suporte para acesso ao chaveiro do sistema" - -msgctxt "@action:button" -msgid "Sync" -msgstr "Sincronizar" - -msgctxt "@button" -msgid "Sync" -msgstr "Sincronizar" - -msgctxt "@title:header" -msgid "Sync material profiles via USB" -msgstr "Sincronizar perfis de material via USB" - -msgctxt "@action:button" -msgid "Sync materials" -msgstr "Sincronizar materiais" - -msgctxt "@button" -msgid "Sync materials with USB" -msgstr "Sincronizar materiais usando USB" - -msgctxt "@title:header" -msgid "Sync materials with printers" -msgstr "Sincronizar materiais com impressoras" - -msgctxt "@title:window" -msgid "Sync materials with printers" -msgstr "Sincronizar materiais com impressoras" - -msgctxt "@action:button" -msgid "Sync with Printers" -msgstr "Sincronizar com Impressoras" - -msgctxt "@button" -msgid "Syncing" -msgstr "Sincronizando" - -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "Sincronizando..." - -msgctxt "@title:groupbox" -msgid "System information" -msgstr "Informação do Sistema" - -msgctxt "@button" -msgid "Technical datasheet" -msgstr "Ficha técnica" - -msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "A quantidade de suavização para aplicar na imagem." - -msgctxt "@text" -msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance." -msgstr "O perfil de recozimento requer pós-processamento em um forno depois da impressão terminar. Este perfil retém a acuidade dimensional da parte impressão depois do recozimento e melhora a força, rigidez e resistência térmica." - -msgctxt "@label" -msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "The assigned printer, %1, requires the following configuration changes:" -msgstr[0] "A impressora associada, %1, requer a seguinte alteração de configuração:" -msgstr[1] "A impressora associada, %1, requer as seguintes alterações de configuração:" - -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "O backup excede o tamanho máximo de arquivo." - -msgctxt "@text" -msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." -msgstr "" - -msgctxt "@info:tooltip" -msgid "The base height from the build plate in millimeters." -msgstr "A altura-base da mesa de impressão em milímetros." - -msgctxt "@info:status" -msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." -msgstr "A altura do volume de impressão foi reduzida para que o valor da \"Sequência de Impressão\" impeça o eixo de colidir com os modelos impressos." - -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "A conexão de nuvem está indisponível. Por favor verifique sua conexão de internet." - -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "A conexão de nuvem está indisponível. Por favor se logue para se conectar à impressora de nuvem." - -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "A impressora de nuvem está offline. Por favor verifique se a impressora está ligada e conectada à internet." - -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "A cor do material neste extrusor." - -msgctxt "@tooltip" -msgid "The configuration of this extruder is not allowed, and prohibits slicing." -msgstr "A configuração deste extrusor não é permitida e proíbe o fatiamento." - -msgctxt "@label" -msgid "The configurations are not available because the printer is disconnected." -msgstr "As configurações não estão disponíveis porque a impressora está desconectada." - -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "A temperatura atual da mesa aquecida." - -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "A temperatura atual deste hotend." - -msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "A profundidade da mesa de impressão em milímetros" - -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "O perfil de rascunho é projetado para imprimir protótipos iniciais e validações de conceito com o objetivo de redução significativa de tempo de impressão." - -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "O perfil de engenharia é projetado para imprimir protótipos funcionais e partes de uso final com o objetivo de melhor precisão e tolerâncias mais estritas." - -msgctxt "@label" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "O carro extrusor usado para imprimir o suporte. Isto é usado em multi-extrusão." - -#, python-brace-format -msgctxt "@label Don't translate the XML tag !" -msgid "The file {0} already exists. Are you sure you want to overwrite it?" -msgstr "O arquivo {0} já existe. Tem certeza que quer sobrescrevê-lo?" - -msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "O firmware que já vêm embutido nas novas impressoras funciona, mas novas versões costumam ter mais recursos, correções e melhorias." - -msgctxt "@info:backup_failed" -msgid "The following error occurred while trying to restore a Cura backup:" -msgstr "O seguinte erro ocorreu ao tentar restaurar um backup do Cura:" - -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "Os seguintes pacotes não podem ser instalados por incompatibilidade de versão do Cura:" - -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "Os seguintes pacotes serão adicionados:" - -msgctxt "@label" -msgid "The following printers in your account have been added in Cura:" -msgstr "As seguintes impressoras da sua conta foram adicionadas ao Cura:" - -msgctxt "@title:header" -msgid "The following printers will receive the new material profiles:" -msgstr "Os seguintes materiais receberão novos perfis de material:" - -msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "O seguinte script está ativo:" -msgstr[1] "Os seguintes scripts estão ativos:" - -msgctxt "@label" -msgid "The following settings define the strength of your part." -msgstr "Os seguintes ajustes definem a força de sua peça." - -msgctxt "@info:status" -msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." -msgstr "As áreas ressaltadas indicam superfícies faltantes ou incorretas. Conserte seu modelo e o abra novamente no Cura." - -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "O material neste extrusor." - -msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate" -msgid "The material package associated with the Cura project could not be found on the Ultimaker Marketplace. Use the partial material profile definition stored in the Cura project file at your own risk." -msgstr "O pacote de material associado com este projeto Cura não pôde ser encontrado no Ultimaker Marketplace. Use a definição parcial de perfil de material gravada no arquivo de projeto Cura por seu próprio risco." - -msgctxt "@info:tooltip" -msgid "The maximum distance of each pixel from \"Base.\"" -msgstr "A distância máxima de cada pixel da \"Base\"." - -msgctxt "@label (%1 is a number)" -msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" -msgstr "O novo diâmetro de filamento está ajustado em %1 mm, que não é compatível com o extrusor atual. Você deseja continuar?" - -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "O bico inserido neste extrusor." - -msgctxt "@label" -msgid "" -"The pattern of the infill material of the print:\n" -"\n" -"For quick prints of non functional model choose line, zig zag or lightning infill.\n" -"\n" -"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" -"\n" -"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "" -"O padrão do material de preenchimento da impressão:\n" -"\n" -"Para impressões rápidas de modelos não-funcionais escolha preenchimento de linha, ziguezague ou relâmpago.\n" -"\n" -"Para partes funcionais não sujeitas a muito stress, recomandos preenchimento de grade, triângulo ou tri-hexágono.\n" -"\n" -"Para impressões 3D funcionais que requeiram bastante força em múltiplas direções use cúbico, subdivisão cúbica, quarto cúbico, octeto e giroide." - -msgctxt "@info:tooltip" -msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." -msgstr "A porcentagem de luz penetrando uma impressão com espessura de 1 milímetro. Abaixar este valor aumenta o contraste em regiões escuras e diminui o contraste em regiões claras da imagem." - -msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate" -msgid "The plugin associated with the Cura project could not be found on the Ultimaker Marketplace. As the plugin may be required to slice the project it might not be possible to correctly slice the file." -msgstr "O complemento associado com o projeto Cura não foi encontrado no Ultimaker Marketplace. Como o complemento pode ser necessário para fatiar o projeto, pode não ser possível corretamente fatiar este arquivo." - -msgctxt "@info:title" -msgid "The print job was successfully submitted" -msgstr "O trabalho de impressão foi submetido com sucesso" - -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "A impressora %1 está associada, mas o trabalho contém configuração de material desconhecida." - -msgctxt "@label" -msgid "The printer at this address has not responded yet." -msgstr "A impressora neste endereço ainda não respondeu." - -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "A impressora neste endereço ainda não respondeu." - -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "A impressora não está conectada." - -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "As impressoras abaixo não podem ser conectadas por serem parte de um grupo" - -msgctxt "@message" -msgid "The provided state is not correct." -msgstr "O estado provido não está correto." - -msgctxt "@text:window" -msgid "The release notes could not be opened." -msgstr "As notas de lançamento não puderam ser abertas." - -msgctxt "@text:error" -msgid "The response from Digital Factory appears to be corrupted." -msgstr "A resposta da Digital Factory parece estar corrompida." - -msgctxt "@text:error" -msgid "The response from Digital Factory is missing important information." -msgstr "A resposta da Digital Factory veio sem informações importantes." - -msgctxt "@tooltip" -msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." -msgstr "A temperatura-alvo da mesa aquecida. A mesa aquecerá ou resfriará para esta temperatura. Se for zero, o aquecimento é desligado." - -msgctxt "@tooltip" -msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." -msgstr "A temperatura-alvo do hotend. O hotend vai aquecer ou esfriar na direção desta temperatura. Se for zero, o aquecimento de hotend é desligado." - -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "A temperatura em que pré-aquecer a mesa." - -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "A temperatura com a qual pré-aquecer o hotend." - -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "O perfil visual é projetado para imprimir protótipos e modelos virtuais com o objetivo de alta qualidade visual e de superfície." - -msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate" -msgstr "A largura em milímetros na plataforma de impressão" - -msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed." -msgid "Theme*:" -msgstr "Tema*:" - -msgctxt "@info:status" -msgid "There are no file formats available to write with!" -msgstr "Não há formatos de arquivo disponíveis com os quais escrever!" - -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "Não há trabalhos de impressão na fila. Fatie e envie um trabalho para adicioná-lo." - -msgctxt "@tooltip" -msgid "There are no profiles matching the configuration of this extruder." -msgstr "Não há perfis correspondendo à configuração deste extrusor." - -msgctxt "@info:status" -msgid "There is no active printer yet." -msgstr "Não há impressora ativa ainda." - -msgctxt "@label" -msgid "There is no printer found over your network." -msgstr "Não foi encontrada nenhuma impressora em sua rede." - -msgctxt "@error" -msgid "There is no workspace yet to write. Please add a printer first." -msgstr "Não existe espaço de trabalho ainda para a escrita. Por favor adicione uma impressora primeiro." - -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "Houve um erro ao tentar restaurar seu backup." - -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "Houve um erro ao criar seu backup." - -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "Houve um erro ao transferir seu backup." - -msgctxt "@label" -msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." -msgstr "Esta configuração não está disponível porque %1 não foi reconhecido. Por favor visite %2 para baixar o perfil de materil correto." - -msgctxt "@text:window" -msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" -msgstr "Este é um arquivo de projeto do Cura. Gostaria de abri-lo como um projeto ou importar os modelos dele?" - -msgctxt "@label" -msgid "This material is linked to %1 and shares some of its properties." -msgstr "Este material está vinculado a %1 e compartilha algumas de suas propriedades." - -msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "Este pacote será instalado após o reinício." - -msgctxt "@label" -msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." -msgstr "Esta impressora não pode ser adicionada porque é uma impressora desconhecida ou porque não é o host do grupo." - -msgctxt "info:status" -msgid "This printer is not linked to the Digital Factory:" -msgid_plural "These printers are not linked to the Digital Factory:" -msgstr[0] "Esta impressora não está ligada à Digital Factory:" -msgstr[1] "Estas impressoras não estão ligadas à Digital Factory:" - -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "Esta impressora não está vinculada à sua conta. Por favor visite a Ultimaker Digital Factory para estabelecer uma conexão." - -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras." - -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "Esta impressora é a hospedeira de um grupo de %1 impressoras." - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags !" -msgid "This profile {0} contains incorrect data, could not import it." -msgstr "Este perfil {0} contém dados incorretos, não foi possível importá-lo." - -msgctxt "@action:label" -msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." -msgstr "Este perfil usa os defaults especificados pela impressora, portanto não tem ajustes/sobreposições na lista abaixo." - -msgctxt "@label" -msgid "This project contains materials or plugins that are currently not installed in Cura.
    Install the missing packages and reopen the project." -msgstr "Este projeto contém materiais ou complementos que não estão atualmente instalados no Cura.
    Instale os pacotes faltantes e abra novamente o projeto." - -msgctxt "@label" -msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." -msgstr "" -"Este ajuste tem um valor que é diferente do perfil.\n" -"\n" -"Clique para restaurar o valor do perfil." - -msgctxt "@item:tooltip" -msgid "This setting has been hidden by the active machine and will not be visible." -msgstr "Este ajuste foi omitido para a máquina ativa e não ficará visível." - -msgctxt "@item:tooltip %1 is list of setting names" -msgid "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible." -msgid_plural "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible." -msgstr[0] "Este ajuste foi mantido invisível pelo valor de %1. Altere o valor desse ajuste para tornar este ajuste visível." -msgstr[1] "Este ajuste foi mantido invisível pelos valores de %1. Altere o valor desses ajustes para tornar este ajuste visível." - -msgctxt "@label" -msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." -msgstr "Este ajuste é sempre compartilhado entre todos os extrusores. Modificá-lo aqui mudará o valor para todos." - -msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "" -"Este ajuste é normalmente calculado, mas atualmente tem um conjunto absoluto de valores.\n" -"\n" -"Clique para restaurar o valor calculado." - -msgctxt "@label" -msgid "This setting is not used because all the settings that it influences are overridden." -msgstr "Este ajuste não é usado porque todos os ajustes que ele influencia estão sobrepostos." - -msgctxt "@label" -msgid "This setting is resolved from conflicting extruder-specific values:" -msgstr "Este ajuste é resolvido dos valores conflitante específicos de extrusor:" - -msgctxt "@info:warning" -msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" -msgstr "Esta versão não é pretendida para uso em produção. Se você encontrar quaisquer problemas, por favor relate-os na nossa página de GitHub, mencionando a versão completa {self.getVersion()}" - -msgctxt "@label" -msgid "Time estimation" -msgstr "Estimativa de tempo" - -msgctxt "@message" -msgid "Timeout when authenticating with the account server." -msgstr "Tempo esgotado ao autenticar com o servidor da conta." - -msgctxt "@text" -msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." -msgstr "Para automaticamente sincronizar os perfis de material com todas as suas impressoras conectadas à Digital Factory, você precisa estar logado pelo Cura." - -#, python-brace-format -msgctxt "info:status" -msgid "To establish a connection, please visit the {website_link}" -msgstr "Para estabelecer uma conexão, por favor visite o {website_link}" - -msgctxt "@label" -msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." -msgstr "Para garantir que suas impressões saiam ótimas, você deve agora ajustar sua mesa de impressão. Quando você clicar em 'Mover para a Posição Seguinte', o bico se moverá para posições diferentes que podem ser ajustadas." - -msgctxt "@label" -msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." -msgstr "Para imprimir diretamente na sua impressora pela rede, certifique-se que ela esteja conectada à rede usando um cabo de rede ou conectando sua impressora à sua WIFI. Se você não conectar Cura à sua impressora, você ainda pode usar um drive USB ou SDCard para transferir arquivos G-Code a ela." - -#, python-brace-format -msgctxt "@message {printer_name} is replaced with the name of the printer" -msgid "To remove {printer_name} permanently, visit {digital_factory_link}" -msgstr "Para remover {printer_name} permanentemente, visite {digital_factory_link}" - -msgctxt "@action:inmenu" -msgid "Toggle Full Screen" -msgstr "Alternar Tela Cheia" - -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Topo / Base" - -msgctxt "@action:inmenu menubar:view" -msgid "Top View" -msgstr "Visão Superior" - -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "Visão de Cima" - -msgctxt "@label" -msgid "Total print time" -msgstr "Tempo total de impressão" - -msgctxt "@action:tooltip" -msgid "Track the print in Ultimaker Digital Factory" -msgstr "Rastrear a impressão na Ultimaker Digital Factory" - -msgctxt "@item:inlistbox" -msgid "Translucency" -msgstr "Translucidez" - -msgctxt "@tooltip" -msgid "Travel" -msgstr "Percurso" - -msgctxt "@label" -msgid "Travels" -msgstr "Percursos" - -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup that is higher than the current version." -msgstr "Tentativa de restauração de backup do Cura de versão maior que a atual." - -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup without having proper data or meta data." -msgstr "Tentativa de restauração de backup do Cura sem dados ou metadados apropriados." - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Leitor Trimesh" - -msgctxt "@button" -msgid "Troubleshooting" -msgstr "Resolução de problemas" - -msgctxt "@label" -msgid "Troubleshooting" -msgstr "Resolução de problemas" - -msgctxt "@button" -msgid "Try again" -msgstr "Tentar novamente" - -msgctxt "@action:label" -msgid "Type" -msgstr "Tipo" - -msgctxt "@label" -msgid "Type" -msgstr "Tipo" - -msgctxt "name" -msgid "UFP Reader" -msgstr "Leitor UFP" - -msgctxt "name" -msgid "UFP Writer" -msgstr "Gerador de UFP" - -msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "Impressão USB" - -msgctxt "name" -msgid "USB printing" -msgstr "Impressão USB" - -msgctxt "@button" -msgid "UltiMaker Account" -msgstr "Conta na UltiMaker" - -msgctxt "@info" -msgid "UltiMaker Certified Material" -msgstr "Material Certificado UltiMaker" - -msgctxt "@text:window" -msgid "UltiMaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" -msgstr "O UltiMaker Cura coleta dados anônimos para poder aprimorar a qualidade de impressão e experiência do usuário. Abaixo segue um exemplo de todos os dados que são compartilhados:" - -msgctxt "@item:inlistbox" -msgid "UltiMaker Format Package" -msgstr "Pacote de Formato da UltiMaker" - -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "Conexão de Rede UltiMaker" - -msgctxt "@info" -msgid "UltiMaker Verified Package" -msgstr "Pacote Verificado UltiMaker" - -msgctxt "@info" -msgid "UltiMaker Verified Plug-in" -msgstr "Complemento Verificado UltiMaker" - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "Ações de máquina UltiMaker" - -msgctxt "@button" -msgid "UltiMaker printer" -msgstr "Impressora UltiMaker" - -msgctxt "@label:button" -msgid "UltiMaker support" -msgstr "Suporte UltiMaker" - -msgctxt "info:name" -msgid "Ultimaker Digital Factory" -msgstr "Ultimaker Digital Factory" - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Digital Library da UltiMaker" - -msgctxt "@info:status" -msgid "Unable to add the profile." -msgstr "Não foi possível adicionar o perfil." - -msgctxt "@info:status" -msgid "Unable to find a location within the build volume for all objects" -msgstr "Não foi possível achar um lugar dentro do volume de construção para todos os objetos" - -#, python-brace-format -msgctxt "@info:plugin_failed" -msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" -msgstr "Não foi possível encontrar o executável do servidor local de EnginePlugin para: {self._plugin_id}" - -#, python-brace-format -msgctxt "@info:plugin_failed" -msgid "" -"Unable to kill running EnginePlugin: {self._plugin_id}\n" -"Access is denied." -msgstr "" -"Não foi possível matar o processo EnginePlugin: {self._plugin_id}\n" -"Acesso negado." - -msgctxt "@info" -msgid "Unable to reach the UltiMaker account server." -msgstr "Não foi possível contactar o servidor de contas da UltiMaker." - -msgctxt "@text" -msgid "Unable to read example data file." -msgstr "Não foi possível ler o arquivo de dados de exemplo." - -msgctxt "@info:title" -msgid "Unable to slice" -msgstr "Não foi possível fatiar" - -msgctxt "@label:PrintjobStatus" -msgid "Unable to slice" -msgstr "Não foi possível fatiar" - -msgctxt "@info:status" -msgid "Unable to slice because the prime tower or prime position(s) are invalid." -msgstr "Não foi possível fatiar porque a torre de purga ou posição de purga são inválidas." - -#, python-format -msgctxt "@info:status" -msgid "Unable to slice because there are objects associated with disabled Extruder %s." -msgstr "Não foi possível fatiar porque há objetos associados com o Extrusor desabilitado %s." - -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" -msgstr "Não foi possível fatiar devido a alguns ajustes por modelo. Os seguintes ajustes têm erros em um dos modelos ou mais: {error_labels}" - -msgctxt "@info:status" -msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." -msgstr "Não foi possível fatiar com o material atual visto que é incompatível com a máquina ou configuração selecionada." - -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice with the current settings. The following settings have errors: {0}" -msgstr "Não foi possível fatiar com os ajustes atuais. Os seguintes ajustes têm erros: {0}" - -msgctxt "@info" -msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." -msgstr "Não foi possível iniciar processo de login. Verifique se outra tentativa de login ainda está ativa." - -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Indisponível" - -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Impressora indisponível" - -msgctxt "@action:inmenu menubar:edit" -msgid "Ungroup Models" -msgstr "Desagrupar Modelos" - -msgctxt "@button" -msgid "Uninstall" -msgstr "Desinstalar" - -msgctxt "@title:column Unit of measurement" -msgid "Unit" -msgstr "Unidade" - -msgctxt "@label Description for development tool" -msgid "Universal build system configuration" -msgstr "Configuração de sistema universal de construção" - -msgctxt "@label" -msgid "Unknown" -msgstr "Desconhecido" - -msgctxt "@label unknown version of Cura" -msgid "Unknown" -msgstr "Desconhecida" - -msgctxt "@label:property" -msgid "Unknown Author" -msgstr "Autor Desconhecido" - -msgctxt "@label:property" -msgid "Unknown Package" -msgstr "Pacote Desconhecido" - -#, python-brace-format -msgctxt "@error:send" -msgid "Unknown error code when uploading print job: {0}" -msgstr "Código de erro desconhecido ao transferir trabalho de impressão: {0}" - -msgctxt "@text" -msgid "Unknown error." -msgstr "Erro desconhecido." - -msgctxt "@label" -msgid "Unlink Material" -msgstr "Desvincular Material" - -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Inacessivel" - -msgctxt "@label" -msgid "Untitled" -msgstr "Sem Título" - -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "Sem Título" - -msgctxt "@button" -msgid "Update" -msgstr "Atualizar" - -msgctxt "@action" -msgid "Update Firmware" -msgstr "Atualizar Firmware" - -msgctxt "@title" -msgid "Update Firmware" -msgstr "Atualizar Firmware" - -msgctxt "@action:ComboBox Update/override existing profile" -msgid "Update existing" -msgstr "Atualizar existentes" - -msgctxt "@action:tooltip" -msgid "Update profile with current settings/overrides" -msgstr "Atualizar perfil com ajustes/sobreposições atuais" - -msgctxt "@action:button" -msgid "Update profile." -msgstr "Atualizar perfil." - -msgctxt "@info:title" -msgid "Update your printer" -msgstr "Atualize sua impressora" - -msgctxt "@label" -msgid "Updates" -msgstr "Atualizações" - -msgctxt "@label" -msgid "Updating firmware." -msgstr "Atualizando firmware." - -msgctxt "@button" -msgid "Updating..." -msgstr "Atualizando..." - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Atualiza configurações do Cura 2.1 para o Cura 2.2." - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Atualiza configurações do Cura 2.2 para o Cura 2.4." - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Atualiza configurações do Cura 2.5 para o Cura 2.6." - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Atualiza configurações do Cura 2.6 para o Cura 2.7." - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Atualiza configuração do Cura 2.7 para o Cura 3.0." - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Atualiza configurações do Cura 3.0 para o Cura 3.1." - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Atualiza configurações do Cura 3.2 para o Cura 3.3." - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Atualiza configuração do Cura 3.3 para o Cura 3.4." - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Atualiza configurações do Cura 3.4 para o Cura 3.5." - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Atualiza configuração do Cura 3.5 para o Cura 4.0." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Atualiza configurações do Cura 4.0 para o Cura 4.1." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Atualiza configurações do Cura 4.1 para o Cura 4.2." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Atualiza configurações do Cura 4.11 para o Cura 4.12." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Atualiza configurações do Cura 4.13 para o Cura 5.0." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Atualiza configurações do Cura 4.2 para o Cura 4.3." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Atualiza configurações do Cura 4.3 para o Cura 4.4." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Atualiza configurações do Cura 4.4 para o Cura 4.5." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Atualiza configurações do Cura 4.5 para o Cura 4.6." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Atualiza configurações do Cura 4.6.0 para o Cura 4.6.2." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Atualiza configurações do Cura 4.6.2 para o Cura 4.7." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Atualiza configurações do Cura 4.7 para o Cura 4.8." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Atualiza configurações do Cura 4.8 para o Cura 4.9." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Atualiza configurações do Cura 4.9 para o Cura 4.10." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Atualiza configurações do Cura 5.2 para o Cura 5.3." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Atualiza configurações do Cura 5.3 para o Cura 5.4." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Atualiza configurações do Cura 5.4 para o Cura 5.5." - -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Carregar Firmware personalizado" - -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Transferindo trabalho de impressão para a impressora." - -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Enviando seu backup..." - -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Usar uma única instância do Cura" - -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "Use cola para melhor aderência com essa combinação de materiais." - -msgctxt "@label" -msgid "User Agreement" -msgstr "Contrato de Usuário" - -msgctxt "@label Description for application dependency" -msgid "Utility functions, including an image loader" -msgstr "Funções de utilidade, incluindo um carregador de imagem" - -msgctxt "@label Description for application dependency" -msgid "Utility library, including Voronoi generation" -msgstr "Biblioteca de utilidade, incluindo geração Voronoi" - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Atualização de Versão de 2.1 para 2.2" - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Atualização de Versão de 2.2 para 2.4" - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Atualização de Versão de 2.5 para 2.6" - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Atualização de Versão de 2.6 para 2.7" - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Atualização de Versão de 2.7 para 3.0" - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Atualização de Versão 3.0 para 3.1" - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Atualização de Versão de 3.2 para 3.3" - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Atualização de Versão de 3.3 para 3.4" - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Atualização de Versão de 3.4 para 3.5" - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Atualização de Versão de 3.5 para 4.0" - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Atualização de Versão de 4.0 para 4.1" - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Atualização de Versão de 4.1 para 4.2" - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Atualização de Versão de 4.11 para 4.12" - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Atualização de Versão de 4.13 para 5.0" - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Atualização de Versão de 4.2 para 4.3" - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Atualização de Versão de 4.3 para 4.4" - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Atualização de Versão de 4.4 para 4.5" - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Atualização de Versão de 4.5 para 4.6" - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Atualização de Versão de 4.6.0 para 4.6.2" - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Atualização de Versão de 4.6.2 para 4.7" - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Atualização de Versão de 4.7 para 4.8" - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Atualização de Versão de 4.8 para 4.9" - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Atualização de Versão de 4.9 para 4.10" - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "Atualização de Versão de 5.2 para 5.3" - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "Atualização de Versão de 5.3 para 5.4" - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "Atualização de Versão de 5.4 para 5.5" - -msgctxt "@button" -msgid "View printers in Digital Factory" -msgstr "Ver impressoras na Digital Factory" - -msgctxt "@label" -msgid "View type" -msgstr "Tipo de Visão" - -msgctxt "@label link to technical assistance" -msgid "View user manuals online" -msgstr "Ver manuais de usuário online" - -msgctxt "@label" -msgid "Viewport behavior" -msgstr "Comportamento da área de visualização" - -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "Ajustes Visíveis" - -msgctxt "@button" -msgid "Visit plug-in website" -msgstr "Visitar sítio web de complementos" - -msgctxt "@tooltip:button" -msgid "Visit the UltiMaker website." -msgstr "Visita o website da UltiMaker." - -msgctxt "@label" -msgid "Visual" -msgstr "Visual" - -msgctxt "@label" -msgid "Waiting for" -msgstr "Esperando por" - -msgctxt "@label" -msgid "Waiting for Cloud response" -msgstr "Aguardando resposta da Nuvem" - -msgctxt "@button" -msgid "Waiting for new printers" -msgstr "Esperando por novas impressoras" - -msgctxt "@button" -msgid "Want more?" -msgstr "Quer mais?" - -msgctxt "@info:title" -msgid "Warning" -msgstr "Aviso" - -#, python-brace-format -msgctxt "@info:status" -msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." -msgstr "Alerta: o perfil não está visível porque seu tipo de qualidade '{0}' não está disponível para a configuração atual. Altere para uma combinação de material/bico que possa usar este tipo de qualidade." - -msgctxt "@text:window" -msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." -msgstr "Encontramos um ou mais arquivos de G-Code entre os arquivos que você selecionou. Você só pode abrir um arquivo de G-Code por vez. Se você quiser abrir um arquivo de G-Code, por favor selecione somente um." - -msgctxt "@text:window" -msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" -msgstr "Encontramos um ou mais arquivo(s) de projeto entre os arquivos que você selecionou. Você só pode abrir um arquivo de projeto por vez. Sugerimos que somente importe modelos destes arquivos. Gostaria de prosseguir?" - -msgctxt "@info" -msgid "Webcam feeds for cloud printers cannot be viewed from UltiMaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam." -msgstr "Fontes de webcam para impressoras de nuvem não podem ser vistas pelo UltiMaker Cura. Clique em \"Gerenciar impressora\" para visitar a Ultimaker Digital Factory e visualizar esta webcam." - -msgctxt "@button" -msgid "Website" -msgstr "Sítio web" - -msgctxt "@label" -msgid "What printer would you like to setup?" -msgstr "Que impressora você gostaria de configurar?" - -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "Que tipo de renderização de câmera deve ser usada?" - -msgctxt "@action:inmenu menubar:help" -msgid "What's New" -msgstr "Novidades" - -msgctxt "@label" -msgid "What's New" -msgstr "O Que Há de Novo" - -msgctxt "@title:window" -msgid "What's New" -msgstr "Novidades" - -msgctxt "@info:tooltip" -msgid "When checking for updates, check for both stable and for beta releases." -msgstr "Ao procurar por atualizações, fazer para versões estáveis ou beta." - -msgctxt "@info:tooltip" -msgid "When checking for updates, only check for stable releases." -msgstr "Ao procurar por atualizações, somente o fazer para versões estáveis." - -msgctxt "@info:tooltip" -msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." -msgstr "Quando você faz alterações em um perfil e troca para um diferent, um diálogo aparecerá perguntando se você quer manter ou aplicar suas modificações, ou você pode forçar um comportamento default e não ter o diálogo." - -msgctxt "@button" -msgid "Why do I need to sync material profiles?" -msgstr "Por que eu preciso sincronizar perfis de material?" - -msgctxt "@action:label" -msgid "Width (mm)" -msgstr "Largura (mm)" - -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Escreve em formato G-Code comprimido." - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Escreve em formato G-Code." - -msgctxt "@label" -msgid "X (Width)" -msgstr "X (largura)" - -msgctxt "@label" -msgid "X max" -msgstr "X máx" - -msgctxt "@label" -msgid "X min" -msgstr "X mín" - -msgctxt "name" -msgid "X-Ray View" -msgstr "Visão de Raios-X" - -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Visão de Raios-X" - -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "Arquivo X3D" - -msgctxt "name" -msgid "X3D Reader" -msgstr "Leitor de X3D" - -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Profundidade)" - -msgctxt "@label" -msgid "Y max" -msgstr "Y máx" - -msgctxt "@label" -msgid "Y min" -msgstr "Y mín" - -msgctxt "@info" -msgid "Yes" -msgstr "Sim" - -msgctxt "@label" -msgid "" -"You are about to remove all printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr "" -"Você está prestes a remover todas as impressoras do Cura. Esta ação não pode ser desfeita.\n" -"Tem certeza que quer continuar?" - -#, python-brace-format -msgctxt "@label" -msgid "" -"You are about to remove {0} printer from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgid_plural "" -"You are about to remove {0} printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr[0] "" -"Você está prestes a remover {0} impressora do Cura. Esta ação não pode ser desfeita.\n" -"Tem certeza que quer continuar?" -msgstr[1] "" -"Você está prestes a remover {0} impressoras do Cura. Esta ação não pode ser desfeita.\n" -"Tem certeza que quer continuar?" - -msgctxt "@info:status" -msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." -msgstr "Você está tentando conectar a uma impressora que não está rodando UltiMaker Connect. Por favor atualize a impressora para o firmware mais recente." - -#, python-brace-format -msgctxt "@info:status" -msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." -msgstr "Você está tentando conectar a {0} mas ele não é host de um grupo. Você pode visitar a página web para configurá-lo como host de grupo." - -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "Você não tem nenhum backup atualmente. Use o botão 'Backup Agora' para criar um." - -msgctxt "@text:window, %1 is a profile name" -msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "Você personalizou alguns ajustes de perfil. Gostaria de manter estes ajustes alterados após trocar perfis? Alternativamente, você pode descartar as alterações para carregar os defaults de '%1'." - -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "Você precisa aceitar a licença para que o pacote possa ser instalado" - -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "Você precisa sair e reiniciar {} para que as alterações tenham efeito." - -msgctxt "@dialog:info" -msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" -msgstr "Você precisará reiniciar o Cura antes que seu backup seja restaurado. Deseja fechar o Cura agora?" - -msgctxt "@info:status" -msgid "You will receive a confirmation via email when the print job is approved" -msgstr "Você receberá uma confirmação por email quando o trabalho de impressão for aprovado" - -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "Seu backup terminou de ser enviado." - -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "Seus ajustes atuais coincidem com o perfil selecionado." - -msgctxt "@info" -msgid "Your new printer will automatically appear in Cura" -msgstr "Sua nova impressora vai automaticamente aparecer no Cura" - -#, python-brace-format -msgctxt "@info:status" -msgid "" -"Your printer {printer_name} could be connected via cloud.\n" -" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "" -"Sua impressora {printer_name} poderia estar conectada via nuvem.\n" -" Gerencie sua fila de impressão e monitore suas impressoras de qualquer lugar conectando sua impressora à Digital Factory" - -msgctxt "@label" -msgid "Z" -msgstr "Z" - -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Altura)" - -msgctxt "@label Description for application dependency" -msgid "ZeroConf discovery library" -msgstr "Biblioteca de descoberta 'ZeroConf'" - -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "Ampliar na direção do mouse" - -msgctxt "@info:tooltip" -msgid "Zooming towards the mouse is not supported in the orthographic perspective." -msgstr "Ampliar com o mouse não é suportado na perspectiva ortográfica." - -msgctxt "@text Placeholder for the username if it has been deleted" -msgid "deleted user" -msgstr "usuário removido" - -msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "Binário glTF" - -msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "glTF Embutido JSON" - -msgctxt "@label" -msgid "max" -msgstr "máx" - -msgctxt "@label" -msgid "min" -msgstr "mín" - -msgctxt "@label" -msgid "mm" -msgstr "mm" - -msgctxt "@info:status" -msgid "today" -msgstr "hoje" - -msgctxt "@info:status" -msgid "tomorrow" -msgstr "amanhã" - -msgctxt "@label" -msgid "version: %1" -msgstr "versão: %1" - -#, python-brace-format -msgctxt "@message {printer_name} is replaced with the name of the printer" -msgid "{printer_name} will be removed until the next account sync." -msgstr "{printer_name} será removida até a próxima sincronização de conta." - -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "{} complementos falharam em baixar" - -#, python-brace-format -#~ msgctxt "info:{0} gets replaced by a number of printers" -#~ msgid "... and {0} other" -#~ msgid_plural "... and {0} others" -#~ msgstr[0] "... e {0} outra" -#~ msgstr[1] "... e {0} outras" - -#~ msgctxt "@tooltip:button" -#~ msgid "Become a 3D printing expert with UltiMaker e-learning." -#~ msgstr "Torne-se um especialista em impressão 3D com UltiMaker e-learning." - -#~ msgctxt "@info:status" -#~ msgid "Cura does not accurately display layers when Wire Printing is enabled." -#~ msgstr "O Cura não exibe camadas de forma precisa quando Impressão em Arame está habilitada." - -#~ msgctxt "@label" -#~ msgid "Default" -#~ msgstr "Default" - -#~ msgctxt "@label" -#~ msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." -#~ msgstr "Habilita imprimir um brim (bainha) ou raft (jangada). Adicionará uma área chata em volta ou sob o objeto que é fácil de remover após a impressão ter finalizado." - -#~ msgctxt "@error:zip" -#~ msgid "Error writing 3mf file." -#~ msgstr "Erro ao escrever arquivo 3mf." - -#~ msgctxt "@label" -#~ msgid "Hex" -#~ msgstr "Hexa" - -#~ msgctxt "@action:button" -#~ msgid "Install Materials" -#~ msgstr "Instalar Materiais" - -#~ msgctxt "@title" -#~ msgid "Install missing Materials" -#~ msgstr "Instalar Materiais faltantes" - -#~ msgctxt "@action:button" -#~ msgid "Install missing material" -#~ msgstr "Instalar material faltante" - -#~ msgctxt "@info:title" -#~ msgid "Material profiles not installed" -#~ msgstr "Perfis de material não instalados" - -#~ msgctxt "@info:title" -#~ msgid "Simulation View" -#~ msgstr "Visão Simulada" - -#~ msgctxt "@label" -#~ msgid "The material used in this project is currently not installed in Cura.
    Install the material profile and reopen the project." -#~ msgstr "O material usado neste projeto não está instalado atualmente no Cura.
    Instale o perfil de material e reabra o projeto." - -#~ msgctxt "@info:status" -#~ msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." -#~ msgstr "O material usado neste projeto depende de algumas definições de material não disponíveis no Cura e isto pode produzir resultados de impressão indesejáveis. Recomendamos altamente instalar o pacote completo de material do Marketplace." - -#~ msgctxt "@error:zip" -#~ msgid "The operating system does not allow saving a project file to this location or with this file name." -#~ msgstr "O sistema operacional não permite salvar um arquivo de projeto nesta localização ou com este nome de arquivo." +# Cura +# Copyright (C) 2022 UltiMaker. +# This file is distributed under the same license as the Cura package. +# Ultimaker , 2022. +# +msgid "" +msgstr "" +"Project-Id-Version: Cura 5.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-31 19:13+0100\n" +"PO-Revision-Date: 2023-11-19 19:51+0100\n" +"Last-Translator: Cláudio Sampaio \n" +"Language-Team: Cláudio Sampaio \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 3.4.1\n" + +#, python-format +msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." +msgid "%(width).1f x %(depth).1f x %(height).1f mm" +msgstr "%(width).1f x %(depth).1f x %(height).1f mm" + +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 & material" + +msgctxt "@action:label" +msgid "%1 out of %2" +msgstr "%1 de %2" + +msgctxt "@action:label" +msgid "%1 override" +msgid_plural "%1 overrides" +msgstr[0] "%1 sobreposto" +msgstr[1] "%1 sobrepostos" + +msgctxt "@action:label" +msgid "%1, %2 override" +msgid_plural "%1, %2 overrides" +msgstr[0] "%1, %2 sobreposição" +msgstr[1] "%1, %2 sobreposições" + +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1g" + +msgctxt "@label m for meter" +msgid "%1m" +msgstr "%1m" + +msgctxt "@action:inmenu menubar:printer" +msgid "&Add Printer..." +msgstr "&Adicionar Impressora..." + +msgctxt "@action:inmenu menubar:view" +msgid "&Camera position" +msgstr "Posição da &câmera" + +msgctxt "@action:inmenu menubar:profile" +msgid "&Create profile from current settings/overrides..." +msgstr "&Criar perfil a partir de ajustes/sobreposições atuais..." + +msgctxt "@action:inmenu menubar:profile" +msgid "&Discard current changes" +msgstr "&Descartar ajustes atuais" + +msgctxt "@title:menu menubar:toplevel" +msgid "&Edit" +msgstr "&Editar" + +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "&Exportar..." + +msgctxt "@title:menu menubar:toplevel" +msgid "&File" +msgstr "Arquivo (&F)" + +msgctxt "@action:inmenu menubar:edit" +msgid "&Group Models" +msgstr "A&grupar Modelos" + +msgctxt "@title:menu menubar:toplevel" +msgid "&Help" +msgstr "Ajuda (&H)" + +msgctxt "@title:menu" +msgid "&Material" +msgstr "&Material" + +msgctxt "@action:inmenu menubar:edit" +msgid "&Merge Models" +msgstr "Co&mbinar Modelos" + +msgctxt "@action:inmenu" +msgid "&Multiply Model..." +msgstr "&Multiplicar Modelo..." + +msgctxt "@action:inmenu menubar:file" +msgid "&New Project..." +msgstr "&Novo Projeto..." + +msgctxt "@action:inmenu menubar:file" +msgid "&Open File(s)..." +msgstr "Abrir Arquiv&o(s)..." + +msgctxt "@title:menu menubar:settings" +msgid "&Printer" +msgstr "Im&pressora" + +msgctxt "@action:inmenu menubar:file" +msgid "&Quit" +msgstr "Sair (&Q)" + +msgctxt "@action:inmenu menubar:edit" +msgid "&Redo" +msgstr "&Refazer" + +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "&Salvar Projeto..." + +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "Aju&stes" + +msgctxt "@action:inmenu menubar:edit" +msgid "&Undo" +msgstr "Desfazer (&U)" + +msgctxt "@action:inmenu menubar:profile" +msgid "&Update profile with current settings/overrides" +msgstr "At&ualizar perfil com valores e sobreposições atuais" + +msgctxt "@title:menu menubar:toplevel" +msgid "&View" +msgstr "&Ver" + +msgctxt "@label" +msgid "*You will need to restart the application for these changes to have effect." +msgstr "*Você precisa reiniciar a aplicação para que estas alterações tenham efeito." + +msgctxt "@text" +msgid "" +"- Add material profiles and plug-ins from the Marketplace\n" +"- Back-up and sync your material profiles and plug-ins\n" +"- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgstr "" +"- Adicione perfis de material e plug-ins do Marketplace\n" +"- Faça backup e sincronize seus perfis de materiais e plugins\n" +"- Compartilhe ideias e consiga ajuda de mais de 48.000 usuários da comunidade UltiMaker" + +msgctxt "@heading" +msgid "-- incomplete --" +msgstr "-- incompleto --" + +msgctxt "@action:label" +msgid "1mm Transmittance (%)" +msgstr "Transmitância de 1mm (%)" + +msgctxt "@info:title" +msgid "3D Model Assistant" +msgstr "Assistente de Modelo 3D" + +msgctxt "@action:inmenu menubar:view" +msgid "3D View" +msgstr "Visão &3D" + +msgctxt "@info:tooltip" +msgid "3D View" +msgstr "Visão 3D" + +msgctxt "@item:inlistbox" +msgid "3MF File" +msgstr "Arquivo 3MF" + +msgctxt "name" +msgid "3MF Reader" +msgstr "Leitor de 3MF" + +msgctxt "name" +msgid "3MF Writer" +msgstr "Gerador de 3MF" + +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "O complemento de Escrita 3MF está corrompido." + +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "Arquivo 3MF" + +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is active and you overwrote some settings." +msgstr "%1 perfil personalizado está ativo e alguns ajustes foram sobrescritos." + +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is overriding some settings." +msgstr "%1 perfil personalizado está sobrepondo alguns ajustes." + +msgctxt "@label %i will be replaced with a profile name" +msgid "Only user changed settings will be saved in the custom profile.
    For materials that support it, the new custom profile will inherit properties from %1." +msgstr "Somente ajuste alterados por usuário serão salvos no perfil personalizado.
    Para materiais que o suportam, este novo perfil personalizado herdará propriedades de %1." + +#, python-brace-format +msgctxt "@label OpenGL renderer" +msgid "
  • OpenGL Renderer: {renderer}
  • " +msgstr "
  • Renderizador da OpenGL: {renderer}
  • " + +#, python-brace-format +msgctxt "@label OpenGL vendor" +msgid "
  • OpenGL Vendor: {vendor}
  • " +msgstr "
  • Fornecedor da OpenGL: {vendor}
  • " + +#, python-brace-format +msgctxt "@label OpenGL version" +msgid "
  • OpenGL Version: {version}
  • " +msgstr "
  • Versão da OpenGL: {version}
  • " + +msgctxt "@label crash message" +msgid "" +"

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" +"

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n" +" " +msgstr "" +"

    Um erro fatal ocorreu no Cura. Por favor nos envie este Relatório de Falha para consertar o problema

    \n" +"

    Por favor use o botão \"Enviar relatório\" para publicar um relatório de erro automaticamente em nossos servidores

    \n" +" " + +msgctxt "@label crash message" +msgid "" +"

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n" +"

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n" +"

    Backups can be found in the configuration folder.

    \n" +"

    Please send us this Crash Report to fix the problem.

    \n" +" " +msgstr "" +"

    Oops, o UltiMaker Cura encontrou algo que não parece estar correto.

    \n" +"

    Encontramos um erro irrecuperável durante a inicialização. Ele foi possivelmente causado por arquivos de configuração incorretos. Sugerimos salvar e restabelecer sua configuração.

    \n" +"

    Cópias salvas podem ser encontradas na pasta de configuração.

    \n" +"

    Por favor nos envie este Relatório de Falha para consertar o problema.

    \n" +" " + +#, python-brace-format +msgctxt "@info:status" +msgid "" +"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" +"

    {model_names}

    \n" +"

    Find out how to ensure the best possible print quality and reliability.

    \n" +"

    View print quality guide

    " +msgstr "" +"

    Um ou mais modelos 3D podem não ser impressos otimamente devido ao tamanho e configuração de material:

    \n" +"

    {model_names}

    \n" +"

    Descubra como assegurar a melhor qualidade de impressão e confiabilidade possível.

    \n" +"

    Ver guia de qualidade de impressão

    " + +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "Uma impressão USB está em progresso, fechar o Cura interromperá esta impressão. Tem certeza?" + +msgctxt "info:status" +msgid "A cloud connection is not available for a printer" +msgid_plural "A cloud connection is not available for some printers" +msgstr[0] "Conexão de nuvem não está disponível para uma impressora" +msgstr[1] "Conexão de nuvem não está disponível para algumas impressoras" + +msgctxt "@message" +msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." +msgstr "Uma impressão ainda está em progresso. O Cura não pode iniciar outra impressão via USB até que a impressão anterior tenha completado." + +msgctxt "@item:inlistbox" +msgid "AMF File" +msgstr "Arquivo AMF" + +msgctxt "name" +msgid "AMF Reader" +msgstr "Leitor AMF" + +msgctxt "@label" +msgid "Abort" +msgstr "Abortar" + +msgctxt "@label" +msgid "Abort Print" +msgstr "Abortar Impressão" + +msgctxt "@window:title" +msgid "Abort print" +msgstr "Abortar impressão" + +msgctxt "@label:status" +msgid "Aborted" +msgstr "Abortado" + +msgctxt "@label" +msgid "Aborting..." +msgstr "Abortando..." + +msgctxt "@label:status" +msgid "Aborting..." +msgstr "Abortando..." + +msgctxt "@title:window The argument is the application name." +msgid "About %1" +msgstr "Sobre %1" + +msgctxt "@action:inmenu menubar:help" +msgid "About..." +msgstr "Sobre..." + +msgctxt "@button" +msgid "Accept" +msgstr "Aceitar" + +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Aceita G-Code e o envia a uma impressora. O complemento também pode atualizar o firmware." + +msgctxt "@label" +msgid "Account synced" +msgstr "Conta sincronizada" + +msgctxt "@label:status" +msgid "Action required" +msgstr "Necessária uma ação" + +msgctxt "@action:button" +msgid "Activate" +msgstr "Ativar" + +msgctxt "@label" +msgid "Active print" +msgstr "Impressão ativa" + +msgctxt "@action:button" +msgid "Add" +msgstr "Adicionar" + +msgctxt "@button" +msgid "Add" +msgstr "Adicionar" + +msgctxt "@action:button" +msgid "Add New" +msgstr "Adicionar Novo" + +msgctxt "@title:window" +msgid "Add Printer" +msgstr "Adicionar Impressora" + +msgctxt "@button" +msgid "Add UltiMaker printer via Digital Factory" +msgstr "Adicionar impressora UltiMaker via Digital Factory" + +msgctxt "@label" +msgid "Add a Cloud printer" +msgstr "Adicionar uma impressora de Nuvem" + +msgctxt "@label" +msgid "Add a networked printer" +msgstr "Adicionar uma impressora de rede" + +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "Adicionar uma impressora local" + +msgctxt "@action" +msgid "Add a script" +msgstr "Adicionar um script" + +msgctxt "@option:check" +msgid "Add icon to system tray *" +msgstr "Adicionar ícone à bandeja do sistema *" + +msgctxt "@button" +msgid "Add local printer" +msgstr "Adicionar impressora local" + +msgctxt "@option:check" +msgid "Add machine prefix to job name" +msgstr "Adicionar prefixo de máquina ao nome do trabalho" + +msgctxt "@text" +msgid "Add material settings and plugins from the Marketplace" +msgstr "Adicionar ajustes de materiais e plugins do Marketplace" + +msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate." +msgid "Add more materials from Marketplace" +msgstr "Adicionar mais materiais ao Marketplace" + +msgctxt "@button" +msgid "Add printer" +msgstr "Adicionar impressora" + +msgctxt "@label" +msgid "Add printer" +msgstr "Adicionar impressora" + +msgctxt "@label" +msgid "Add printer by IP" +msgstr "Adicionar impressora por IP" + +msgctxt "@label" +msgid "Add printer by IP address" +msgstr "Adicionar impressora por endereço IP" + +msgctxt "@button" +msgid "Add printer manually" +msgstr "Adicionar impressora manualmente" + +#, python-brace-format +msgctxt "info:status Filled in with printer name and printer model." +msgid "Adding printer {name} ({model}) from your account" +msgstr "Adicionando impressora {name} ({model}) da sua conta" + +msgctxt "@label" +msgid "Address" +msgstr "Endereço" + +msgctxt "@label" +msgid "Adhesion" +msgstr "Aderência" + +msgctxt "@label" +msgid "Adhesion Information" +msgstr "Informação sobre Aderência" + +msgctxt "@label" +msgid "Adjusts the density of infill of the print." +msgstr "Ajusta a densidade do preenchimento da impressão." + +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Ajusta o posicionamento das estruturas de suporte. Este posicionamento pode ser ajustado à plataforma de impressão ou em todo lugar. Se for escolhido em todo lugar, as estruturas de suporte também se apoiarão no próprio modelo." + +msgctxt "@label Header for list of settings." +msgid "Affected By" +msgstr "Afetado Por" + +msgctxt "@label Header for list of settings." +msgid "Affects" +msgstr "Afeta" + +msgctxt "@button" +msgid "Agree" +msgstr "Concordar" + +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Todos Os Arquivos (*)" + +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Todos Os Tipos Suportados ({0})" + +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "Permitir enviar dados anônimos" + +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Permite carregar e exibir arquivos G-Code." + +msgctxt "@option:discardOrKeep" +msgid "Always ask me this" +msgstr "Sempre perguntar" + +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "Sempre me perguntar" + +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "Sempre descartar alterações da configuração" + +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "Sempre importar modelos" + +msgctxt "@option:openProject" +msgid "Always open as a project" +msgstr "Sempre abrir como projeto" + +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "Sempre transferir as alterações para o novo perfil" + +msgctxt "@info:tooltip" +msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" +msgstr "Um modelo pode ser carregado diminuto se sua unidade for por exemplo em metros ao invés de milímetros. Devem esses modelos ser redimensionados?" + +msgctxt "@label" +msgid "Annealing" +msgstr "Recozimento" + +msgctxt "@label" +msgid "Anonymous" +msgstr "Anônimo" + +msgctxt "@label Description for application component" +msgid "Application framework" +msgstr "Framework de Aplicações" + +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "Aplicar deslocamentos de Extrusão ao G-Code" + +msgctxt "@info:title" +msgid "Are you ready for cloud printing?" +msgstr "Você está pronto para a impressão de nuvem?" + +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "Você tem certeza que quer abortar %1?" + +msgctxt "@label" +msgid "Are you sure you want to abort the print?" +msgstr "Tem certeza que deseja abortar a impressão?" + +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "Você tem certeza que quer remover %1?" + +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "Você tem certeza que deseja apagar este backup? Isto não pode ser desfeito." + +msgctxt "@label %1 is the application name" +msgid "Are you sure you want to exit %1?" +msgstr "Tem certeza que quer sair de %1?" + +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to move %1 to the top of the queue?" +msgstr "Você tem certeza que quer mover %1 para o topo da fila?" + +#, python-brace-format +msgctxt "@message {printer_name} is replaced with the name of the printer" +msgid "Are you sure you want to remove {printer_name} temporarily?" +msgstr "Tem certeza que quer remover {printer_name} temporariamente?" + +msgctxt "@info:question" +msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings." +msgstr "Tem certeza que quer iniciar novo projeto? Isto esvaziará a mesa de impressão e quaisquer ajustes não salvos." + +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "Tem certeza que deseja remover %1? Isto não poderá ser desfeito!" + +#, python-brace-format +msgctxt "@label {0} is the name of a printer that's about to be deleted." +msgid "Are you sure you wish to remove {0}? This cannot be undone!" +msgstr "Tem certeza que deseja remover {0}? Isto não pode ser defeito!" + +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models" +msgstr "Posicionar Todos os Modelos" + +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models in a grid" +msgstr "Organizar Todos os Modelos em Grade" + +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Posicionar Seleção" + +msgctxt "@label:button" +msgid "Ask a question" +msgstr "Fazer uma pergunta" + +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "Auto Backup" + +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "Criar um backup automaticamente toda vez que o Cura iniciar." + +msgctxt "@option:check" +msgid "Automatically drop models to the build plate" +msgstr "Automaticamente fazer os modelos caírem na mesa de impressão" + +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Automaticamente atualizar Firmware" + +msgctxt "@label" +msgid "Available networked printers" +msgstr "Impressoras de rede disponíveis" + +msgctxt "@item:inlistbox" +msgid "BMP Image" +msgstr "Imagem BMP" + +msgctxt "@button" +msgid "Back" +msgstr "Voltar" + +msgctxt "@button:tooltip" +msgid "Back" +msgstr "Voltar" + +msgctxt "@info:title" +msgid "Backup" +msgstr "Backup" + +msgctxt "@button" +msgid "Backup Now" +msgstr "Backup Agora" + +msgctxt "@action:button" +msgid "Backup and Reset Configuration" +msgstr "Salvar e Restabelecer Configuração" + +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Permite backup e restauração da configuração." + +msgctxt "@text" +msgid "Backup and sync your material settings and plugins" +msgstr "Fazer backup e sincronizar seus ajustes de materiais e plugins" + +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "Fazer backup e sincronizar os ajustes do Cura." + +msgctxt "@info:title" +msgid "Backups" +msgstr "Backups" + +msgctxt "@label" +msgid "Balanced" +msgstr "Equilibrado" + +msgctxt "@action:label" +msgid "Base (mm)" +msgstr "Base (mm)" + +msgctxt "@action:inmenu menubar:view" +msgid "Bottom View" +msgstr "Visão de Baixo" + +msgctxt "@label" +msgid "Brand" +msgstr "Marca" + +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "Nivelamento da mesa de impressão" + +msgctxt "@info:title" +msgid "Build Volume" +msgstr "Volume de Impressão" + +msgctxt "@label" +msgid "Build plate" +msgstr "Mesa de Impressão" + +msgctxt "@label" +msgid "Build plate shape" +msgstr "Forma da plataforma de impressão" + +msgctxt "@label" +msgid "Bundled Materials" +msgstr "Materiais Empacotados" + +msgctxt "@label" +msgid "Bundled Plugins" +msgstr "Complementos Empacotados" + +msgctxt "@button" +msgid "Buy spool" +msgstr "Comprar carretel" + +msgctxt "@label Is followed by the name of an author" +msgid "By" +msgstr "Por" + +msgctxt "@label Description for application dependency" +msgid "C/C++ Binding library" +msgstr "Biblioteca de Ligações C/C++" + +msgctxt "@item:inlistbox" +msgid "COLLADA Digital Asset Exchange" +msgstr "Câmbio de Ativos Digitais COLLADA" + +msgctxt "@info:status" +msgid "Calculated" +msgstr "Calculado" + +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "Renderização de câmera:" + +msgctxt "@action:inmenu menubar:view" +msgid "Camera view" +msgstr "Visão de câmera" + +msgctxt "@info:title" +msgid "Can't Find Location" +msgstr "Não Foi Encontrada Localização" + +msgctxt "@info:title" +msgid "Can't Open Project File" +msgstr "Não Foi Possível Abrir o Arquivo de Projeto" + +msgctxt "@label" +msgid "Can't connect to your UltiMaker printer?" +msgstr "Não consegue conectar à sua impressora UltiMaker?" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags !" +msgid "Can't import profile from {0} before a printer is added." +msgstr "Não foi possível importar perfil de {0} antes de uma impressora ser adicionada." + +#, python-brace-format +msgctxt "@info:status" +msgid "Can't open any other file if G-code is loading. Skipped importing {0}" +msgstr "Não é possível abrir nenhum outro arquivo se G-Code estiver sendo carregado. Pulando importação de {0}" + +msgctxt "@info:error" +msgid "Can't write to UFP file:" +msgstr "Não foi possível escrever no arquivo UFP:" + +msgctxt "@action:button" +msgid "Cancel" +msgstr "Cancelar" + +msgctxt "@button" +msgid "Cancel" +msgstr "Cancelar" + +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "Cancelar" + +msgctxt "@option:check" +msgid "Caution message in g-code reader" +msgstr "Mensagem de alera no leitor de G-Code" + +msgctxt "@action:inmenu" +msgid "Ce&nter Model on Platform" +msgstr "Ce&ntralizar Modelo na Mesa" + +msgctxt "@action:inmenu menubar:edit" +msgid "Center Selected" +msgstr "Centralizar Selecionados" + +msgctxt "@action:button" +msgid "Center camera when item is selected" +msgstr "Centralizar câmera quanto o item é selecionado" + +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." +msgstr "Alterar scripts de pós-processamento ativos." + +msgctxt "@label" +msgid "Change material %1 from %2 to %3." +msgstr "Alterar material %1 de %2 para %3." + +msgctxt "@label" +msgid "Change print core %1 from %2 to %3." +msgstr "Alterar núcleo de impressão %1 de %2 para %3." + +msgctxt "@info:title" +msgid "Changes detected from your UltiMaker account" +msgstr "Alterações detectadas de sua conta UltiMaker" + +msgctxt "@title" +msgid "Changes from your account" +msgstr "Alterações da sua conta" + +msgctxt "@label:textbox" +msgid "Check all" +msgstr "Verificar tudo" + +msgctxt "@button" +msgid "Check for account updates" +msgstr "Verificar atualizações da conta" + +msgctxt "@option:check" +msgid "Check for updates on start" +msgstr "Verificar atualizações na inicialização" + +msgctxt "@label" +msgid "Checking..." +msgstr "Verificando..." + +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Verifica por atualizações de firmware." + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Verifica modelos e configurações de impressão por possíveis problema e dá sugestões." + +msgctxt "@label" +msgid "" +"Chooses between the techniques available to generate support. \n" +"\n" +"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" +"\n" +"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "" +"Escolhe entre as técnicas disponíveis para a geração de suporte.\n" +"\n" +"Suporte \"Normal\" cria uma estrutura de suporte diretamente abaixo das partes pendentes e continua em linha reta para baixo.\n" +"\n" +"Suporte de \"Árvore\" cria galhos em direção às áreas pendentes que suportam o modelo em suas pontas, e permite que os galhos se espalhem em volta do modelo para suportá-lo a partir da plataforma de impressão tanto quanto possível." + +msgctxt "@action:inmenu menubar:edit" +msgid "Clear Build Plate" +msgstr "Esvaziar a Mesa de Impressão" + +msgctxt "@option:check" +msgid "Clear buildplate before loading model into the single instance" +msgstr "Limpar a plataforma de impressão antes de carregar modelo em instância única" + +msgctxt "@text" +msgid "Click the export material archive button." +msgstr "Clique no botão de exportar arquivo de material." + +msgctxt "@action:button" +msgid "Close" +msgstr "Fechar" + +msgctxt "@title:window %1 is the application name" +msgid "Closing %1" +msgstr "Fechando %1" + +msgctxt "@action:inmenu" +msgid "Collapse All Categories" +msgstr "Encolher Todas As Categorias" + +msgctxt "@label" +msgid "Color" +msgstr "Cor" + +msgctxt "@action:label" +msgid "Color Model" +msgstr "Modelo de Cor" + +msgctxt "@label" +msgid "Color scheme" +msgstr "Esquema de Cores" + +msgctxt "@info" +msgid "Compare and save." +msgstr "Comparar e salvar." + +msgctxt "@label" +msgid "Compatibility Mode" +msgstr "Modo de Compatibilidade" + +msgctxt "@label Description for application dependency" +msgid "Compatibility between Python 2 and 3" +msgstr "Compatibilidade entre Python 2 e 3" + +msgctxt "@title:label" +msgid "Compatible Printers" +msgstr "Impressoras Compatíveis" + +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "Diâmetro de material compatível" + +msgctxt "@header" +msgid "Compatible printers" +msgstr "Impressoras compatíveis" + +msgctxt "@header" +msgid "Compatible support materials" +msgstr "Materiais de suporte compatíveis" + +msgctxt "@header" +msgid "Compatible with Material Station" +msgstr "Compatível com Material Station" + +msgctxt "@item:inlistbox" +msgid "Compressed COLLADA Digital Asset Exchange" +msgstr "Câmbio de Ativos Digitais COLLADA Comprimido" + +msgctxt "@item:inlistbox" +msgid "Compressed G-code File" +msgstr "Arquivo de G-Code Comprimido" + +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Leitor de G-Code Comprimido" + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Gerador de G-Code Comprimido" + +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "Alterações de Configuração" + +msgctxt "@error" +msgid "Configuration not supported" +msgstr "Configuração não suportada" + +msgctxt "@header" +msgid "Configurations" +msgstr "Configurações" + +msgctxt "@label" +msgid "Configurations" +msgstr "Configurações" + +msgctxt "@action:inmenu" +msgid "Configure Cura..." +msgstr "Configurar Cura..." + +msgctxt "@info:tooltip" +msgid "Configure Per Model Settings" +msgstr "Configurar ajustes por Modelo" + +msgctxt "@action" +msgid "Configure group" +msgstr "Configurar grupo" + +msgctxt "@action:menu" +msgid "Configure setting visibility..." +msgstr "Configurar a visibilidade dos ajustes..." + +msgctxt "@title:window" +msgid "Confirm Diameter Change" +msgstr "Confirmar Mudança de Diâmetro" + +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Confirmar Remoção" + +msgctxt "@action:button" +msgid "Connect" +msgstr "Conectar" + +msgctxt "@button" +msgid "Connect" +msgstr "Conectar" + +msgctxt "@title:window" +msgid "Connect to Networked Printer" +msgstr "Conectar a Impressora de Rede" + +msgctxt "@action" +msgid "Connect via Network" +msgstr "Conectar pela rede" + +msgctxt "@info:status" +msgid "Connected over the network" +msgstr "Conectado pela rede" + +msgctxt "@label" +msgid "Connected printers" +msgstr "Impressoras conectadas" + +msgctxt "@info:status" +msgid "Connected via USB" +msgstr "Conectado via USB" + +msgctxt "@info:status" +msgid "Connected via cloud" +msgstr "Conectado pela nuvem" + +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Conecta-se à Digital Library, permitindo ao Cura abrir arquivos dela e gravar arquivos nela." + +msgctxt "@tooltip:button" +msgid "Consult the UltiMaker Community." +msgstr "Consultar a Comunidade UltiMaker." + +msgctxt "@title:window" +msgid "Convert Image" +msgstr "Converter Imagem" + +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "Número da Ventoinha de Resfriamento" + +msgctxt "@action:menu" +msgid "Copy all changed values to all extruders" +msgstr "Copiar todos os valores alterados para todos os extrusores" + +msgctxt "@action:inmenu menubar:edit" +msgid "Copy to clipboard" +msgstr "Copiar para a área de transferência" + +msgctxt "@action:menu" +msgid "Copy value to all extruders" +msgstr "Copiar valor para todos os extrusores" + +msgctxt "@label" +msgid "Cost per Meter" +msgstr "Custo por Metro" + +msgctxt "@info" +msgid "Could not access update information." +msgstr "Não foi possível acessar informação de atualização." + +msgctxt "@label" +msgid "Could not connect to device." +msgstr "Não foi possível conectar ao dispositivo." + +msgctxt "@info:backup_failed" +msgid "Could not create archive from user data directory: {}" +msgstr "Não pude criar arquivo do diretório de dados de usuário: {}" + +#, python-brace-format +msgctxt "@info:status Don't translate the tag {device}!" +msgid "Could not find a file name when trying to write to {device}." +msgstr "Não foi possível encontrar nome de arquivo ao tentar escrever em {device}." + +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not import material %1: %2" +msgstr "Não foi possível importar material %1: %2" + +msgctxt "@info:error" +msgid "Could not interpret the server's response." +msgstr "Não foi possível interpretar a resposta de servidor." + +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "Não foi possível carregar o plugin GCodeWriter. Tente reabilitar o plugin." + +msgctxt "@info:error" +msgid "Could not reach Marketplace." +msgstr "Não foi possível conectar ao Marketplace." + +msgctxt "@message" +msgid "Could not read response." +msgstr "Não foi possível ler a resposta." + +msgctxt "@message:text" +msgid "Could not save material archive to {}:" +msgstr "Não foi possível salvar o arquivo de materiais para {}:" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "Não foi possível salvar em {0}: {1}" + +#, python-brace-format +msgctxt "@info:status" +msgid "Could not save to removable drive {0}: {1}" +msgstr "Não foi possível salvar em unidade removível {0}: {1}" + +msgctxt "@info:text" +msgid "Could not upload the data to the printer." +msgstr "Não foi possível transferir os dados para a impressora." + +#, python-brace-format +msgctxt "@info:plugin_failed" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"No permission to execute process." +msgstr "" +"Não foi possível iniciar EnginePlugin: {self._plugin_id}\n" +"Sem permissão para executar processo." + +#, python-brace-format +msgctxt "@info:plugin_failed" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"Operating system is blocking it (antivirus?)" +msgstr "" +"Não foi possível iniciar EnginePlugin: {self._plugin_id}\n" +"O sistema operacional está bloqueando (antivírus?)" + +#, python-brace-format +msgctxt "@info:plugin_failed" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"Resource is temporarily unavailable" +msgstr "" +"Não foi possível iniciar EnginePlugin: {self._plugin_id}\n" +"O recurso está temporariamente indisponível" + +msgctxt "@title:window" +msgid "Crash Report" +msgstr "Relatório de Problema" + +msgctxt "@title:window" +msgid "Create Profile" +msgstr "Criar Perfil" + +msgctxt "@text" +msgid "Create a free UltiMaker Account" +msgstr "Criar uma conta UltiMaker gratuita" + +msgctxt "@button" +msgid "Create a free UltiMaker account" +msgstr "Criar uma conta UltiMaker gratuita" + +msgctxt "@info:tooltip" +msgid "Create a volume in which supports are not printed." +msgstr "Cria um volume em que os suportes não são impressos." + +msgctxt "@action:ComboBox Save settings in a new profile" +msgid "Create new" +msgstr "Criar novos" + +msgctxt "@action:button" +msgid "Create new" +msgstr "Criar novo" + +msgctxt "@button" +msgid "Create new" +msgstr "Criar novos" + +msgctxt "@action:tooltip" +msgid "Create new profile from current settings/overrides" +msgstr "Criar novo perfil a partir dos ajustes/sobreposições atuais" + +msgctxt "@tooltip:button" +msgid "Create print projects in Digital Library." +msgstr "Cria projetos de impressão na Digital Library." + +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Cria uma malha apagadora para bloquear a impressão de suporte em certos lugares" + +msgctxt "@info:backup_status" +msgid "Creating your backup..." +msgstr "Criando seu backup..." + +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Perfis do Cura 15.04" + +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Backups do Cura" + +msgctxt "name" +msgid "Cura Backups" +msgstr "Backups Cura" + +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Perfil do Cura" + +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Leitor de Perfis do Cura" + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Gravador de Perfis do Cura" + +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "Arquivo de Projeto 3MF do Cura" + +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Versão do Cura" + +msgctxt "@title:window" +msgid "Cura can't start" +msgstr "O Cura não consegue iniciar" + +#, python-brace-format +msgctxt "@info:status" +msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." +msgstr "O Cura detectou perfis de material que não estão instalados ainda na impressora host do grupo {0}." + +msgctxt "@info:credit" +msgid "" +"Cura is developed by UltiMaker in cooperation with the community.\n" +"Cura proudly uses the following open source projects:" +msgstr "" +"Cura é desenvolvido pela Ultimaker B.V. em cooperação com a comunidade.\n" +"Cura orgulhosamente usa os seguintes projetos open-source:" + +msgctxt "@label" +msgid "Cura language" +msgstr "Linguagem do Cura" + +msgctxt "@label Cura version number" +msgid "Cura version" +msgstr "Versão do Cura" + +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine Backend" + +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "Complemento do CuraEngine para gradualmente suavizar o fluxo para limitar rajadas de fluxo intenso" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + +msgctxt "@label" +msgid "Currency:" +msgstr "Moeda:" + +msgctxt "@title:column" +msgid "Current" +msgstr "Atual" + +msgctxt "@title:column" +msgid "Current changes" +msgstr "Alterações atuais" + +msgctxt "@header" +msgid "Custom" +msgstr "Personalizado" + +msgctxt "@label" +msgid "Custom" +msgstr "Personalizado" + +msgctxt "@title:tab" +msgid "Custom" +msgstr "Personalizado" + +msgctxt "@label" +msgid "Custom Material" +msgstr "Material Personalizado" + +msgctxt "@label" +msgid "Custom profile" +msgstr "Perfil personalizado" + +msgctxt "@info" +msgid "Custom profile name:" +msgstr "Nome de perfil personalizado:" + +msgctxt "@label" +msgid "Custom profiles" +msgstr "Perfis personalizados" + +msgctxt "@label:header" +msgid "Custom profiles" +msgstr "Perfis personalizados" + +msgctxt "@action:inmenu menubar:edit" +msgid "Cut" +msgstr "Cortar" + +msgctxt "@item:inlistbox" +msgid "Cutting mesh" +msgstr "Malha de corte" + +msgctxt "@item:inlistbox" +msgid "Darker is higher" +msgstr "Mais escuro é mais alto" + +msgctxt "@info:title" +msgid "Data Sent" +msgstr "Dados Enviados" + +msgctxt "@label Description for application dependency" +msgid "Data interchange format" +msgstr "Formato de Intercâmbio de Dados" + +msgctxt "@button" +msgid "Decline" +msgstr "Recusar" + +msgctxt "@button" +msgid "Decline and close" +msgstr "Rejeitar e fechar" + +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "Recusar e remover da conta" + +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "Default" + +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "Comportamento default para valores de configuração alterados ao mudar para um perfil diferente: " + +msgctxt "@info:tooltip" +msgid "Default behavior when opening a project file" +msgstr "Comportamento default ao abrir um arquivo de projeto" + +msgctxt "@window:text" +msgid "Default behavior when opening a project file: " +msgstr "Comportamento default ao abrir um arquivo de projeto: " + +msgctxt "@action:button" +msgid "Defaults" +msgstr "Defaults" + +msgctxt "@label" +msgid "Defines the thickness of your part side walls, roof and floor." +msgstr "Define a espessura das paredes laterais, teto e base da sua peça." + +msgctxt "@label" +msgid "Delete" +msgstr "Remover" + +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "Apagar o Backup" + +msgctxt "@action:inmenu" +msgid "Delete Model" +msgstr "Remover Modelo" + +msgctxt "@action:inmenu menubar:edit" +msgid "Delete Selected" +msgstr "Remover Selecionados" + +msgctxt "@window:title" +msgid "Delete print job" +msgstr "Remover trabalho de impressão" + +msgctxt "@label" +msgid "Density" +msgstr "Densidade" + +msgctxt "@label Description for development tool" +msgid "Dependency and package manager" +msgstr "Gestor de pacote e dependência" + +msgctxt "@action:label" +msgid "Depth (mm)" +msgstr "Profundidade (mm)" + +msgctxt "@action:label" +msgid "Derivative from" +msgstr "Derivado de" + +msgctxt "@header" +msgid "Description" +msgstr "Descrição" + +msgctxt "@label" +msgid "Description" +msgstr "Descrição" + +msgctxt "@action:button" +msgid "Details" +msgstr "Detalhes" + +msgctxt "@label" +msgid "Diameter" +msgstr "Diâmetro" + +msgctxt "@button" +msgid "Disable" +msgstr "Desabilitar" + +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "Desabilitar Extrusor" + +msgctxt "@option:discardOrKeep" +msgid "Discard and never ask again" +msgstr "Descartar e não perguntar novamente" + +msgctxt "@action:button" +msgid "Discard changes" +msgstr "Descartar alterações" + +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "Descartar ajustes atuais" + +msgctxt "@title:window" +msgid "Discard or Keep changes" +msgstr "Descartar ou Manter alterações" + +msgctxt "@button" +msgid "Dismiss" +msgstr "Dispensar" + +msgctxt "@label" +msgid "Display Name" +msgstr "Exibir Nome" + +msgctxt "@option:check" +msgid "Display model errors" +msgstr "Exibir erros de modelo" + +msgctxt "@option:check" +msgid "Display overhang" +msgstr "Exibir seções pendentes" + +msgctxt "@info:option_text" +msgid "Do not show this message again" +msgstr "Não mostrar essa mensagem novamente" + +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "Você quer sincronizar os pacotes de material e software com sua conta?" + +msgctxt "@action:label" +msgid "Don't show project summary on save again" +msgstr "Não exibir resumo do projeto ao salvar novamente" + +msgctxt "@action:menu" +msgid "Don't show this setting" +msgstr "Não exibir este ajuste" + +msgctxt "@label" +msgid "Don't support overlaps" +msgstr "Não suportar sobreposições" + +msgctxt "@button" +msgid "Done" +msgstr "Feito" + +msgctxt "@button" +msgid "Downgrade" +msgstr "Downgrade" + +msgctxt "@button" +msgid "Downgrading..." +msgstr "Fazendo downgrade..." + +msgctxt "@label" +msgid "Draft" +msgstr "Rascunho" + +msgctxt "@action:button" +msgid "Duplicate" +msgstr "Duplicar" + +msgctxt "@title:window" +msgid "Duplicate Profile" +msgstr "Duplicar Perfil" + +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "Durante a fase de pré-visualização, você estará limitado a 5 backups visíveis. Remova um backup para ver os mais antigos." + +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "E&xtensões" + +msgctxt "@action:button" +msgid "Edit" +msgstr "Editar" + +msgctxt "@action:button" +msgid "Eject" +msgstr "Ejetar" + +#, python-brace-format +msgctxt "@action" +msgid "Eject removable device {0}" +msgstr "Ejetar dispositivo removível {0}" + +#, python-brace-format +msgctxt "@info:status" +msgid "Ejected {0}. You can now safely remove the drive." +msgstr "{0} ejetado. A unidade agora pode ser removida de forma segura." + +msgctxt "@label" +msgid "Empty" +msgstr "Vazio" + +msgctxt "@button" +msgid "Enable" +msgstr "Habilitar" + +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "Habilitar Extrusor" + +msgctxt "@label" +msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards. Disabling it results in a skirt around object by default." +msgstr "Habilita a impressão de brim ou raft. Adicionará uma área plana em volta do objeto ou abaixo dele que seja fácil de destacar depois. Desabilitar este ajuste resulta em um skirt em volta do objeto por default." + +msgctxt "@label" +msgid "Enabled" +msgstr "Habilitado" + +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Habilita a geração de geometria imprimível de arquivos de imagem 2D." + +msgctxt "@title:label" +msgid "End G-code" +msgstr "G-Code Final" + +msgctxt "@label" +msgid "End-to-end solution for fused filament 3D printing." +msgstr "Solução completa para impressão 3D com filamento fundido." + +msgctxt "@info:title" +msgid "EnginePlugin" +msgstr "EnginePlugin" + +msgctxt "@label" +msgid "Engineering" +msgstr "Engenharia" + +msgctxt "@option:check" +msgid "Ensure models are kept apart" +msgstr "Assegurar que os modelos sejam mantidos separados" + +msgctxt "@label" +msgid "Enter the IP address of your printer on the network." +msgstr "Entre o endereço IP da sua impressora na rede." + +msgctxt "@text" +msgid "Enter your printer's IP address." +msgstr "Entre o endereço IP de sua impressora." + +msgctxt "@info:title" +msgid "Error" +msgstr "Erro" + +msgctxt "@title:groupbox" +msgid "Error traceback" +msgstr "Traceback do erro" + +msgctxt "@label" +msgid "Estimated time left" +msgstr "Tempo restante estimado" + +msgctxt "@action:inmenu" +msgid "Exit Full Screen" +msgstr "Sair da Tela Cheia" + +msgctxt "@label" +msgid "Experimental" +msgstr "Experimental" + +msgctxt "@action:button" +msgid "Export" +msgstr "Exportar" + +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "Exportar Todos Os Materiais" + +msgctxt "@title:window" +msgid "Export Material" +msgstr "Exportar Material" + +msgctxt "@title:window" +msgid "Export Profile" +msgstr "Exportar Perfil" + +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "Exportar Seleção..." + +msgctxt "@button" +msgid "Export material archive" +msgstr "Exportar arquivo de material" + +msgctxt "@info:title" +msgid "Export succeeded" +msgstr "Exportação concluída" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tag !" +msgid "Exported profile to {0}" +msgstr "Perfil exportado para {0}" + +msgctxt "@tooltip:button" +msgid "Extend UltiMaker Cura with plugins and material profiles." +msgstr "Estende o UltiMaker Cura com complementos e perfis de material." + +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Extensão que permite scripts criados por usuários para pós-processamento" + +msgctxt "@label" +msgid "Extruder" +msgstr "Extrusor" + +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "Extrusor %1" + +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "G-Code Final do Extrusor" + +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "G-Code Inicial do Extrusor" + +msgctxt "@info:title" +msgid "Extruder(s) Disabled" +msgstr "Extrusor(es) Desabilitado(s)" + +msgctxt "@label:status" +msgid "Failed" +msgstr "Falhado" + +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory to sync materials with some of the printers." +msgstr "Falha em conectar com a Digital Factory para sincronizar materiais com algumas das impressoras." + +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory." +msgstr "Falha em conectar à Digital Factory." + +msgctxt "@text:error" +msgid "Failed to create archive of materials to sync with printers." +msgstr "Falha em criar arquivo de materiais para sincronizar com impressoras." + +#, python-brace-format +msgctxt "@info:status" +msgid "Failed to eject {0}. Another program may be using the drive." +msgstr "Erro ao ejetar {0}. Outro programa pode estar usando a unidade." + +msgctxt "@info:status Don't translate the XML tags and !" +msgid "Failed to export material to %1: %2" +msgstr "Falha em exportar material para %1: %2" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Failed to export profile to {0}: {1}" +msgstr "Falha ao exportar perfil para {0}: {1}" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tag !" +msgid "Failed to export profile to {0}: Writer plugin reported failure." +msgstr "Falha ao exportar perfil para {0}: complemento escritor relatou erro." + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tag !" +msgid "Failed to import profile from {0}:" +msgstr "Erro ao importar perfil de {0}:" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags !" +msgid "Failed to import profile from {0}:" +msgstr "Erro ao importar perfil de {0}:" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags !" +msgid "Failed to import profile from {0}: {1}" +msgstr "Falha ao importar perfil de {0}: {1}" + +msgctxt "@button" +msgid "Failed to load packages:" +msgstr "Falha em carregar pacotes:" + +msgctxt "@text:error" +msgid "Failed to load the archive of materials to sync it with printers." +msgstr "Falha em carregar o arquivo de materiais para sincronizar com impressoras." + +msgctxt "@message:title" +msgid "Failed to save material archive" +msgstr "Falha em salvar o arquivo de materiais" + +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "Favoritos" + +msgctxt "@label" +msgid "Filament Cost" +msgstr "Custo do Filamento" + +msgctxt "@label" +msgid "Filament length" +msgstr "Comprimento do Filamento" + +msgctxt "@label" +msgid "Filament weight" +msgstr "Peso do Filamento" + +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "O Arquivo Já Existe" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "Arquivo Salvo" + +#, python-brace-format +msgctxt "@info:status" +msgid "File {0} does not contain any valid profile." +msgstr "Arquivo {0} não contém nenhum perfil válido." + +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Filtrar..." + +msgctxt "@info:title" +msgid "Finding Location" +msgstr "Buscando Localização" + +msgctxt "@info:status" +msgid "Finding new location for objects" +msgstr "Achando novos lugares para objetos" + +msgctxt "@action:button" +msgid "Finish" +msgstr "Finalizar" + +msgctxt "@label:status" +msgid "Finished" +msgstr "Finalizado" + +msgctxt "@label:status" +msgid "Finishes %1 at %2" +msgstr "Termina %1 em %2" + +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Atualização do Firmware" + +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Verificador de Atualizações de Firmware" + +msgctxt "name" +msgid "Firmware Updater" +msgstr "Atualizador de Firmware" + +msgctxt "@label" +msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." +msgstr "O firmware não pode ser atualizado porque a conexão com a impressora não suporta atualização de firmware." + +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "O firmware não pode ser atualizado porque não há conexão com a impressora." + +msgctxt "@label" +msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." +msgstr "O firmware é o software rodando diretamente no maquinário de sua impressora 3D. Este firmware controla os motores de passo, regula a temperatura e é o que faz a sua impressora funcionar." + +msgctxt "@label" +msgid "Firmware update completed." +msgstr "Atualização do Firmware completada." + +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "A atualização de firmware falhou devido a um erro de comunicação." + +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "A atualização de firmware falhou devido a um erro de entrada e saída." + +msgctxt "@label" +msgid "Firmware update failed due to an unknown error." +msgstr "A atualização de Firmware falhou devido a um erro desconhecido." + +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "A atualização de firmware falhou devido a firmware não encontrado." + +msgctxt "@label" +msgid "Firmware version" +msgstr "Versão do firmware" + +msgctxt "@label" +msgid "First available" +msgstr "Primeira disponível" + +msgctxt "@label:listbox" +msgid "Flow" +msgstr "Fluxo" + +msgctxt "@text In the UI this is followed by a list of steps the user needs to take." +msgid "Follow the following steps to load the new material profiles to your printer." +msgstr "Siga os passos seguintes para carregar os perfis de material novos na sua impressora." + +msgctxt "@info" +msgid "Follow the procedure to add a new printer" +msgstr "Siga o procedimento para adicionar uma nova impressora" + +msgctxt "@text" +msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." +msgstr "Seguindo alguns passos simples, você conseguirá sincronizar todos os seus perfis de material com suas impressoras." + +msgctxt "@label" +msgid "Font" +msgstr "Fonte" + +msgctxt "@label" +msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." +msgstr "Para cada posição; insira um pedaço de papel abaixo do bico e ajuste a altura da mesa de impressão. A altura da mesa de impressão está adequada quando o papel for levemente pressionado pela ponta do bico." + +msgctxt "@info:tooltip" +msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." +msgstr "Para litofanos, um modelo logarítmico simples para translucidez está disponível. Para mapas de altura os valores de pixels correspondem a alturas, linearmente." + +msgctxt "@info:tooltip" +msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." +msgstr "Para litofanos, pixels escuros devem corresponder a locais mais espessos para conseguir bloquear mais luz. Para mapas de altura, pixels mais claros significam terreno mais alto, portanto tais pixels devem corresponder a locais mais espessos no modelo 3d gerado." + +msgctxt "@option:check" +msgid "Force layer view compatibility mode (restart required)" +msgstr "Forçar modo de compatibilidade da visão de camadas (requer reinício)" + +msgctxt "@action:inmenu menubar:view" +msgid "Front View" +msgstr "Visão Frontal" + +msgctxt "@info:tooltip" +msgid "Front View" +msgstr "Viso de Frente" + +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "Arquivo G" + +msgctxt "@info:title" +msgid "G-code Details" +msgstr "Detalhes do G-Code" + +msgctxt "@item:inlistbox" +msgid "G-code File" +msgstr "Arquivo G-Code" + +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "Leitor de Perfil de G-Code" + +msgctxt "name" +msgid "G-code Reader" +msgstr "Leitor de G-Code" + +msgctxt "name" +msgid "G-code Writer" +msgstr "Gerador de G-Code" + +msgctxt "@label" +msgid "G-code flavor" +msgstr "Sabor de G-Code" + +msgctxt "@label Description for application component" +msgid "G-code generator" +msgstr "Gerador de G-Code" + +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "O GCodeGzWriter não suporta modo binário." + +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "O GCodeWriter não suporta modo binário." + +msgctxt "@item:inlistbox" +msgid "GIF Image" +msgstr "Imagem GIF" + +msgctxt "@label Description for application dependency" +msgid "GUI framework" +msgstr "Framework Gráfica" + +msgctxt "@label Description for application dependency" +msgid "GUI framework bindings" +msgstr "Ligações da Framework Gráfica" + +msgctxt "@label" +msgid "Gantry Height" +msgstr "Altura do Eixo" + +msgctxt "@title:tab" +msgid "General" +msgstr "Geral" + +msgctxt "@label" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." +msgstr "Gera estrutura que suportarão partes do modelo que têm seções pendentes. Sem estas estruturas, tais partes desabariam durante a impressão." + +msgctxt "@label Description for development tool" +msgid "Generating Windows installers" +msgstr "Gerando instaladores Windows" + +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "Genérico" + +msgctxt "@option:check" +msgid "Get notifications for plugin updates" +msgstr "Ter notificações para atualizações de complementos" + +msgctxt "@action" +msgid "Get started" +msgstr "Começar" + +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "Ajustes globais" + +msgctxt "@label Description for application component" +msgid "Graphical user interface" +msgstr "Interface Gráfica de usuário" + +msgctxt "@label" +msgid "Grid Placement" +msgstr "Posicionamento em Grade" + +#, python-brace-format +msgctxt "@label" +msgid "Group #{group_nr}" +msgstr "Grupo #{group_nr}" + +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "Aquecer a mesa antes de imprimir. Você pode continuar ajustando sua impressão enquanto ela está aquecendo, e não terá que esperar o aquecimento quando estiver pronto pra imprimir." + +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "Aquece o hotend com antecedência antes de imprimir. Você pode continuar ajustando sua impressão enquanto está aquecendo e não terá que esperar que o hotend termine o aquecimento quando estiver pronto para imprimir." + +msgctxt "@label" +msgid "Heated Build Plate (official kit or self-built)" +msgstr "Mesa de Impressão Aquecida (kit Oficial ou auto-construído)" + +msgctxt "@label" +msgid "Heated bed" +msgstr "Mesa aquecida" + +msgctxt "@label" +msgid "Heated build volume" +msgstr "Volume de construção aquecido" + +msgctxt "@action:label" +msgid "Height (mm)" +msgstr "Altura (mm)" + +msgctxt "@label" +msgid "Helpers" +msgstr "Assistentes" + +msgctxt "@label" +msgid "Hide all connected printers" +msgstr "Omitir todas as impressoras conectadas" + +msgctxt "@action:menu" +msgid "Hide this setting" +msgstr "Ocultar este ajuste" + +msgctxt "@info:tooltip" +msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." +msgstr "Ressalta superfícies faltantes ou incorretas do modelo usando sinais de alerta. Os caminhos de extrusão frequentemente terão partes da geometria pretendida ausentes." + +msgctxt "@info:tooltip" +msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." +msgstr "Ressaltar áreas sem suporte do modelo em vermelho. Sem suporte, estas áreas não serão impressas corretamente." + +msgctxt "@button" +msgid "How to load new material profiles to my printer" +msgstr "Como carregar novos perfis de material na minha impressora" + +msgctxt "@action:button" +msgid "How to update" +msgstr "Como atualizar" + +msgctxt "@text:window" +msgid "I don't want to send anonymous data" +msgstr "Recusar enviar dados anônimos" + +msgctxt "@label:status" +msgid "Idle" +msgstr "Ocioso" + +msgctxt "@label" +msgid "If you are trying to add a new UltiMaker printer to Cura" +msgstr "Se você está tentando adicionar uma nova impressora UltiMaker ao Cura" + +msgctxt "@label" +msgid "If your printer is not listed, read the network printing troubleshooting guide" +msgstr "Se sua impressora não está listada, leia o guia de resolução de problemas de impressão em rede" + +msgctxt "name" +msgid "Image Reader" +msgstr "Leitor de Imagens" + +msgctxt "@action:button" +msgid "Import" +msgstr "Importar" + +msgctxt "@title:window" +msgid "Import Material" +msgstr "Importar Material" + +msgctxt "@title:window" +msgid "Import Profile" +msgstr "Importar Perfil" + +msgctxt "@action:button" +msgid "Import all as models" +msgstr "Importar todos como modelos" + +msgctxt "@action:button" +msgid "Import models" +msgstr "Importar modelos" + +msgctxt "@label:MonitorStatus" +msgid "In maintenance. Please check the printer" +msgstr "Em manutenção. Por favor verifique a impressora" + +msgctxt "@info" +msgid "In order to monitor your print from Cura, please connect the printer." +msgstr "Para monitorar sua impressão pelo Cura, por favor conecte a impressora." + +msgctxt "@label" +msgid "In order to start using Cura you will need to configure a printer." +msgstr "Para poder iniciar o uso do Cura você precisará configurar uma impressora." + +msgctxt "@button" +msgid "In order to use the package you will need to restart Cura" +msgstr "Para usar o pacote você precisará reiniciar o Cura" + +msgctxt "@label" +msgid "Infill" +msgstr "Preenchimento" + +msgctxt "@tooltip" +msgid "Infill" +msgstr "Preenchimento" + +msgctxt "infill_sparse_density description" +msgid "Infill Density" +msgstr "Densidade de Preenchimento" + +msgctxt "@action:label" +msgid "Infill Pattern" +msgstr "Padrão de Preenchimento" + +msgctxt "@item:inlistbox" +msgid "Infill mesh only" +msgstr "Somente malha de preenchimento" + +msgctxt "@label" +msgid "Infill overlapping with this model is modified." +msgstr "Preenchimento se sobrepondo a este modelo foi modificado." + +msgctxt "@info:title" +msgid "Information" +msgstr "Informação" + +msgctxt "@title" +msgid "Information" +msgstr "Informação" + +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "Inicializando Máquina Ativa..." + +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "Inicializando volume de impressão..." + +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "Inicializando motor..." + +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "Inicializando gestor de máquinas..." + +msgctxt "@label" +msgid "Inner Wall" +msgstr "Parede Interna" + +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "Paredes Internas" + +msgctxt "@text" +msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." +msgstr "Insira o pendrive USB na sua impressora e faça o procedimento de carregar novos perfis de material." + +msgctxt "@button" +msgid "Install" +msgstr "Instalar" + +msgctxt "@header" +msgid "Install Materials" +msgstr "Instalar Materiais" + +msgctxt "@window:title" +msgid "Install Package" +msgstr "Instalar Pacote" + +msgctxt "@action:button" +msgid "Install Packages" +msgstr "Instalar Pacotes" + +msgctxt "@header" +msgid "Install Packages" +msgstr "Instala Pacotes" + +msgctxt "@header" +msgid "Install Plugins" +msgstr "Instalar Complementos" + +msgctxt "@action:button" +msgid "Install missing packages" +msgstr "Instalar pacotes faltantes" + +msgctxt "@title" +msgid "Install missing packages" +msgstr "Instala pacotes faltantes" + +msgctxt "@label" +msgid "Install missing packages from project file." +msgstr "Instala pacotes faltantes do arquivo de projeto." + +msgctxt "@button" +msgid "Install pending updates" +msgstr "Instalação aguardando atualizações" + +msgctxt "@label" +msgid "Installed Materials" +msgstr "Materiais Instalados" + +msgctxt "@label" +msgid "Installed Plugins" +msgstr "Complementos Instalados" + +msgctxt "@button" +msgid "Installing..." +msgstr "Instalando..." + +msgctxt "@action:label" +msgid "Intent" +msgstr "Objetivo" + +msgctxt "@label" +msgid "Interface" +msgstr "Interface" + +msgctxt "@label Description for application component" +msgid "Interprocess communication library" +msgstr "Biblioteca de comunicação interprocessos" + +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "Endereço IP inválido" + +msgctxt "@info:status" +msgid "Invalid file URL:" +msgstr "URL de arquivo inválida:" + +msgctxt "@action:button" +msgid "Invert the direction of camera zoom." +msgstr "Inverter a direção da ampliação de câmera." + +msgctxt "@label" +msgid "Is printed as support." +msgstr "Está impresso como suporte." + +msgctxt "@text" +msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware." +msgstr "Parece que você não tem impressoras compatíveis conectadas à Digital Factory. Certifique-se que sua impressora esteja conectada e rodando o firmware mais recente." + +msgctxt "@item:inlistbox" +msgid "JPEG Image" +msgstr "Imagem JPEG" + +msgctxt "@item:inlistbox" +msgid "JPG Image" +msgstr "Imagem JPG" + +msgctxt "@label Description for application dependency" +msgid "JSON parser" +msgstr "Parser JSON" + +msgctxt "@label" +msgid "Job Name" +msgstr "Nome do Trabalho" + +msgctxt "@label" +msgid "Jog Distance" +msgstr "Distância de Trote" + +msgctxt "@label" +msgid "Jog Position" +msgstr "Posição de Trote" + +msgctxt "@option:discardOrKeep" +msgid "Keep and never ask again" +msgstr "Manter e não perguntar novamente" + +msgctxt "@action:button" +msgid "Keep changes" +msgstr "Manter alterações" + +msgctxt "@action:button" +msgid "Keep printer configurations" +msgstr "Manter configurações da impressora" + +msgctxt "@action:menu" +msgid "Keep this setting visible" +msgstr "Manter este ajuste visível" + +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "Última atualização: %1" + +msgctxt "@label:listbox" +msgid "Layer Thickness" +msgstr "Espessura de Camada" + +msgctxt "@item:inlistbox" +msgid "Layer view" +msgstr "Visão de Camadas" + +msgctxt "@button:label" +msgid "Learn More" +msgstr "Saiba mais" + +msgctxt "@button" +msgid "Learn how to connect your printer to Digital Factory" +msgstr "Aprenda como conectar sua impressora à Digital Factory" + +msgctxt "@tooltip:button" +msgid "Learn how to get started with UltiMaker Cura." +msgstr "Saiba como começar com o UltiMaker Cura." + +msgctxt "@action" +msgid "Learn more" +msgstr "Saiba mais" + +msgctxt "@action:button" +msgid "Learn more" +msgstr "Saiba mais" + +msgctxt "@button" +msgid "Learn more" +msgstr "Saiba mais" + +msgctxt "@button:label" +msgid "Learn more" +msgstr "Saber mais" + +msgctxt "@action:button" +msgid "Learn more about Cura print profiles" +msgstr "Saber mais sobre perfis de impressão do Cura" + +msgctxt "@button" +msgid "Learn more about adding printers to Cura" +msgstr "Saiba mais sobre adicionar impressoras ao Cura" + +msgctxt "@label" +msgid "Learn more about project packages." +msgstr "Aprenda mais sobre pacotes de projeto" + +msgctxt "@action:inmenu menubar:view" +msgid "Left Side View" +msgstr "Visão do Lado Esquerdo" + +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "Visão à Esquerda" + +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Leitor de Perfis de Cura Legado" + +msgctxt "@tooltip:button" +msgid "Let developers know that something is going wrong." +msgstr "Deixe os desenvolvedores saberem que algo está errado." + +msgctxt "@action" +msgid "Level build plate" +msgstr "Nivelar mesa" + +msgctxt "@item:inlistbox" +msgid "Lighter is higher" +msgstr "Mais claro é mais alto" + +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Tipo de Linha" + +msgctxt "@label:listbox" +msgid "Line Width" +msgstr "Largura de Extrusão" + +msgctxt "@item:inlistbox" +msgid "Linear" +msgstr "Linear" + +msgctxt "@label Description for development tool" +msgid "Linux cross-distribution application deployment" +msgstr "Implementação de aplicação multidistribuição em Linux" + +msgctxt "@label" +msgid "Load %3 as material %1 (This cannot be overridden)." +msgstr "Carregar %3 como material %1 (isto não pode ser sobreposto)." + +msgctxt "@button" +msgid "Load more" +msgstr "Carregar mais" + +msgctxt "@button" +msgid "Loading" +msgstr "Carregando" + +msgctxt "@action:warning" +msgid "Loading a project will clear all models on the build plate." +msgstr "Carregar um projeto limpará todos os modelos da mesa de impressão." + +msgctxt "@label" +msgid "Loading available configurations from the printer..." +msgstr "Carregando configurações disponíveis da impressora..." + +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "Carregando interface..." + +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "Carregando máquinas..." + +msgctxt "@label:status" +msgid "Loading..." +msgstr "Carregando..." + +msgctxt "@title" +msgid "Loading..." +msgstr "Carregando..." + +msgctxt "@label:category menu label" +msgid "Local printers" +msgstr "Impressoras locais" + +msgctxt "@info:title" +msgid "Log-in failed" +msgstr "Login falhou" + +msgctxt "@info:title" +msgid "Login failed" +msgstr "Login falhou" + +msgctxt "@title:groupbox" +msgid "Logs" +msgstr "Registros" + +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Registra certos eventos de forma que possam ser usados pelo relator de acidentes" + +msgctxt "@label:MonitorStatus" +msgid "Lost connection with the printer" +msgstr "A conexão à impressora foi perdida" + +msgctxt "@action" +msgid "Machine Settings" +msgstr "Ajustes da Máquina" + +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Ação de Ajustes de Máquina" + +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "Máquinas" + +msgctxt "@text" +msgid "Make sure all your printers are turned ON and connected to Digital Factory." +msgstr "Certifique-se de que todas as suas impressoras estejam LIGADAS e conectadas à Digital Factory." + +msgctxt "@info:generic" +msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." +msgstr "Certifique que o g-code é adequado para sua impressora e configuração antes de enviar o arquivo. A representação de g-code pode não ser acurada." + +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "Makerbot Printfile" + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "Gerador de Makerbot Printfile" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "MakerbotWriter não conseguiu salvar no caminho designado." + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "MakerbotWriter não suporta modo texto." + +msgctxt "@action:inmenu" +msgid "Manage Materials..." +msgstr "Administrar Materiais..." + +msgctxt "@action:inmenu menubar:printer" +msgid "Manage Pr&inters..." +msgstr "Adm&inistrar Impressoras..." + +msgctxt "@action:inmenu menubar:profile" +msgid "Manage Profiles..." +msgstr "Administrar perfis..." + +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "Gerenciar Visibilidade dos Ajustes..." + +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "Gerenciar backups" + +msgctxt "@label link to connect manager" +msgid "Manage in browser" +msgstr "Gerir no navegador" + +msgctxt "@header" +msgid "Manage packages" +msgstr "Gerir pacotes" + +msgctxt "@info:tooltip" +msgid "Manage packages" +msgstr "Gerir pacotes" + +msgctxt "@action" +msgid "Manage print jobs" +msgstr "Gerenciar trabalhos de impressão" + +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "Gerir Impressora" + +msgctxt "@button" +msgid "Manage printers" +msgstr "Gerenciar impressoras" + +msgctxt "@text" +msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." +msgstr "Gerencie seu complementos e perfis de materiais do Cura aqui. Se assegure de manter seus complementos atualizados e fazer backup de sua configuração regularmente." + +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Gerencia extensões à aplicação e permite navegar extensões do website da UltiMaker." + +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Gerencia conexões de rede com as impressoras de rede da UltiMaker." + +msgctxt "@label" +msgid "Manufacturer" +msgstr "Fabricante" + +msgctxt "@action:button" +msgid "Marketplace" +msgstr "Mercado" + +msgctxt "@label" +msgid "Marketplace" +msgstr "Mercado" + +msgctxt "name" +msgid "Marketplace" +msgstr "Marketplace" + +msgctxt "@action:label" +msgid "Material" +msgstr "Material" + +msgctxt "@label" +msgid "Material" +msgstr "Material" + +msgctxt "@label:category menu label" +msgid "Material" +msgstr "Material" + +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Cor do Material" + +msgctxt "name" +msgid "Material Profiles" +msgstr "Perfis de Material" + +msgctxt "@label" +msgid "Material Type" +msgstr "Tipo de Material" + +msgctxt "@title" +msgid "Material color picker" +msgstr "Seletor de cores do material" + +msgctxt "@label" +msgid "Material estimation" +msgstr "Estimativa de material" + +msgctxt "@title:header" +msgid "Material profiles successfully synced with the following printers:" +msgstr "Perfis de material sincronizados com sucesso com as seguintes impressoras:" + +msgctxt "@action:label" +msgid "Material settings" +msgstr "Ajustes de material" + +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "Materiais" + +msgctxt "@button" +msgid "Materials" +msgstr "Materiais" + +msgctxt "@title:tab" +msgid "Materials" +msgstr "Materiais" + +msgctxt "@label" +msgid "Materials compatible with active printer:" +msgstr "Materiais compatíveis com a impressora ativa:" + +msgctxt "@label" +msgid "Mesh Type" +msgstr "Tipo de Malha" + +msgctxt "@action:label" +msgid "Mode" +msgstr "Modo" + +msgctxt "name" +msgid "Model Checker" +msgstr "Verificador de Modelo" + +msgctxt "@info:title" +msgid "Model Errors" +msgstr "Erros de Modelo" + +msgctxt "@item:inmenu" +msgid "Modify G-Code" +msgstr "Modificar G-Code" + +msgctxt "@label" +msgid "Modify settings for overlaps" +msgstr "Modificar ajustes para sobreposições" + +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "Monitor" + +msgctxt "name" +msgid "Monitor Stage" +msgstr "Estágio de Monitor" + +msgctxt "@action:button" +msgid "Monitor print" +msgstr "Monitorar impressão" + +msgctxt "@tooltip:button" +msgid "Monitor print jobs and reprint from your print history." +msgstr "Monitora trabalhos de impressão e reimprime a partir do histórico." + +msgctxt "@tooltip:button" +msgid "Monitor printers in Ultimaker Digital Factory." +msgstr "Monitora as impressoras na Ultimaker Digital Factory." + +msgctxt "@info" +msgid "Monitor your printers from everywhere using Ultimaker Digital Factory" +msgstr "Monitora suas impressoras de todo lugar usando a Ultimaker Digital Factory" + +msgctxt "@title:window" +msgid "More information on anonymous data collection" +msgstr "Mais informações em coleção anônima de dados" + +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "Move o trabalho de impressão para o topo da fila" + +msgctxt "@action:button" +msgid "Move to Next Position" +msgstr "Mover pra a Posição Seguinte" + +msgctxt "@label" +msgid "Move to top" +msgstr "Mover para o topo" + +msgctxt "@info:tooltip" +msgid "Moves the camera so the model is in the center of the view when a model is selected" +msgstr "Move a câmera de modo que o modelo fique no centro da visão quando for selecionado" + +msgctxt "@action:inmenu menubar:edit" +msgid "Multiply Selected" +msgstr "Multiplicar Selecionados" + +msgctxt "@title:window" +msgid "Multiply Selected Model" +msgid_plural "Multiply Selected Models" +msgstr[0] "Multiplicar Modelo Selecionado" +msgstr[1] "Multiplicar Modelos Selecionados" + +msgctxt "@info" +msgid "Multiply selected item and place them in a grid of build plate." +msgstr "Multiplica o item selecionado e o dispõe em grade na plataforma de impressão." + +msgctxt "@info:status" +msgid "Multiplying and placing objects" +msgstr "Multiplicando e colocando objetos" + +msgctxt "@title" +msgid "My Backups" +msgstr "Meus backups" + +msgctxt "@label:button" +msgid "My printers" +msgstr "Minhas impressoras" + +msgctxt "@action:label" +msgid "Name" +msgstr "Nome" + +msgctxt "@label:category menu label" +msgid "Network enabled printers" +msgstr "Impressoras habilitadas pela rede" + +msgctxt "@info:title" +msgid "Network error" +msgstr "Erro de rede" + +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "Novo firmware estável de %s disponível" + +msgctxt "@textfield:placeholder" +msgid "New Custom Profile" +msgstr "Novo Perfil Personalizado" + +msgctxt "@label" +msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." +msgstr "Novas impressoras UltiMaker podem ser conectadas à Digital Factory e monitoradas remotamente." + +#, python-brace-format +msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." +msgstr "Novos recursos ou consertos de bugs podem estar disponíveis para sua {machine_name}! Se você não o fez ainda, recomenda-se que atualize o firmware de sua impressora para a versão {latest_version}." + +msgctxt "@action:button" +msgid "New materials installed" +msgstr "Novos materiais instalados" + +msgctxt "info:status" +msgid "New printer detected from your Ultimaker account" +msgid_plural "New printers detected from your Ultimaker account" +msgstr[0] "Nova impressora detectada na sua conta Ultimaker" +msgstr[1] "Novas impressoras detectadas na sua conta Ultimaker" + +msgctxt "@title:window" +msgid "New project" +msgstr "Novo projeto" + +msgctxt "@action:button" +msgid "Next" +msgstr "Próximo" + +msgctxt "@button" +msgid "Next" +msgstr "Próximo" + +msgctxt "@info:title" +msgid "Nightly build" +msgstr "Compilação noturna" + +msgctxt "@info" +msgid "No" +msgstr "Não" + +msgctxt "@info" +msgid "No compatibility information" +msgstr "Sem informação de compatibilidade" + +msgctxt "@description" +msgid "No compatible printers, that are currently online, were found." +msgstr "Não foram encontradas impressoras compatíveis que estivessem online no momento." + +msgctxt "@label" +msgid "No cost estimation available" +msgstr "Sem estimativa de custo disponível" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags !" +msgid "No custom profile to import in file {0}" +msgstr "Não há perfil personalizado a importar no arquivo {0}" + +msgctxt "@label" +msgid "No items to select from" +msgstr "Sem itens para selecionar" + +msgctxt "@info:title" +msgid "No layers to show" +msgstr "Não há camadas a exibir" + +msgctxt "@message" +msgid "No more results to load" +msgstr "Não há mais resultados a carregar" + +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "Sem permissão para gravar o espaço de trabalho aqui." + +msgctxt "@title:header" +msgid "No printers found" +msgstr "Nenhuma impressora encontrada" + +msgctxt "@label" +msgid "No printers found in your account?" +msgstr "Nenhuma impressora encontrada em sua conta?" + +msgctxt "@message:text %1 is the name the printer uses for 'nozzle'." +msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration." +msgstr "Nenhum perfil está disponível para a configuração selecionada de material/%1. Por favor altere sua configuração." + +msgctxt "@message" +msgid "No results found with current filter" +msgstr "Não há resultados encontrados com o filtro atual" + +msgctxt "@label" +msgid "No time estimation available" +msgstr "Sem estimativa de tempo disponível" + +msgctxt "@button" +msgid "Non UltiMaker printer" +msgstr "Impressora Não-UltiMaker" + +msgctxt "@info No materials" +msgid "None" +msgstr "Nenhum" + +msgctxt "@label" +msgid "Normal model" +msgstr "Modelo normal" + +msgctxt "@info:title" +msgid "Not a group host" +msgstr "Não é host de grupo" + +msgctxt "@label:MonitorStatus" +msgid "Not connected to a printer" +msgstr "Não conectado a nenhuma impressora" + +msgctxt "@action:label" +msgid "Not in profile" +msgstr "Ausente no perfil" + +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Não sobreposto" + +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "Não Suportado" + +msgctxt "@label" +msgid "Not yet initialized" +msgstr "Ainda não inicializado" + +msgctxt "@info:status" +msgid "Nothing is shown because you need to slice first." +msgstr "Nada está exibido porque você precisa fatiar primeiro." + +msgctxt "@label" +msgid "Nozzle" +msgstr "Bico" + +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Ajustes do Bico" + +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "Deslocamento X do Bico" + +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "Deslocamento Y do Bico" + +msgctxt "@label" +msgid "Nozzle size" +msgstr "Tamanho do bico" + +msgctxt "@label" +msgid "Number of Copies" +msgstr "Número de Cópias" + +msgctxt "@label" +msgid "Number of Extruders" +msgstr "Número de Extrusores" + +msgctxt "@action:button" +msgid "OK" +msgstr "Ok" + +msgctxt "@label" +msgid "OS language" +msgstr "Linguagem do SO" + +msgctxt "@label" +msgid "Object list" +msgstr "Lista de objetos" + +msgctxt "@label:Should be short" +msgid "Off" +msgstr "Off" + +msgctxt "@label:Should be short" +msgid "On" +msgstr "On" + +msgctxt "@label" +msgid "Only Show Top Layers" +msgstr "Somente Exibir Camadas Superiores" + +#, python-brace-format +msgctxt "@info:status" +msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" +msgstr "Somente um arquivo G-Code pode ser carregado por vez. Pulando importação de {0}" + +msgctxt "@action:button" +msgid "Open" +msgstr "Abrir" + +msgctxt "@title:menu menubar:file" +msgid "Open &Recent" +msgstr "Abrir &Recente" + +msgctxt "@item:inlistbox 'Open' is part of the name of this file format." +msgid "Open Compressed Triangle Mesh" +msgstr "Open Compressed Triangle Mesh" + +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "Abrir Arquivo(s)" + +msgctxt "@title:menu menubar:file" +msgid "Open File(s)..." +msgstr "Abrir Arquivo(s)..." + +msgctxt "@title:window" +msgid "Open Project" +msgstr "Abrir Projeto" + +msgctxt "@info:title" +msgid "Open Project File" +msgstr "Abrir Arquivo de Projeto" + +msgctxt "@action:label" +msgid "Open With" +msgstr "Abrir Com" + +msgctxt "@action:button" +msgid "Open as project" +msgstr "Abrir como projeto" + +msgctxt "@title:window" +msgid "Open file(s)" +msgstr "Abrir arquivo(s)" + +msgctxt "@action:button" +msgid "Open project anyway" +msgstr "Abrir o projeto mesmo assim" + +msgctxt "@title:window" +msgid "Open project file" +msgstr "Abrir arquivo de projeto" + +msgctxt "@label OpenGL version" +msgid "OpenGL" +msgstr "OpenGL" + +msgctxt "@label" +msgid "Opening and saving files" +msgstr "Abrindo e salvando arquivos" + +msgctxt "@header" +msgid "Optimized for Air Manager" +msgstr "Otimizado para o Air Manager" + +msgctxt "@label" +msgid "Origin at center" +msgstr "Origem no centro" + +msgid "Orthographic" +msgstr "Ortográfica" + +msgctxt "@action:inmenu menubar:view" +msgid "Orthographic" +msgstr "Ortográfico" + +msgctxt "@tooltip" +msgid "Other" +msgstr "Outros" + +msgctxt "@label" +msgid "Other models overlapping with this model are modified." +msgstr "Outros modelos se sobrepondo a esse modelo foram modificados." + +msgctxt "@label" +msgid "Other printers" +msgstr "Outras impressoras" + +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "Parede Externa" + +msgctxt "@label" +msgid "Overlaps with this model are not supported." +msgstr "Sobreposições neste modelo não são suportadas." + +msgctxt "@action:button" +msgid "Override" +msgstr "Sobrepor" + +msgctxt "@label" +msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." +msgstr "Sobrepor irá usar os ajustes especificados com a configuração existente da impressora. Isto pode causar falha da impressão." + +msgctxt "@label %1 is the number of settings it overrides." +msgid "Overrides %1 setting." +msgid_plural "Overrides %1 settings." +msgstr[0] "Sobrepõe %1 ajuste." +msgstr[1] "Sobrepõe %1 ajustes." + +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "P&referências" + +msgctxt "@item:inlistbox" +msgid "PNG Image" +msgstr "Imagem PNG" + +msgctxt "@header" +msgid "Package details" +msgstr "Detalhes do pacote" + +msgctxt "@label Description for development tool" +msgid "Packaging Python-applications" +msgstr "Empacotamento de aplicações Python" + +msgctxt "@info:status" +msgid "Parsing G-code" +msgstr "Interpretando G-Code" + +msgctxt "@action:inmenu menubar:edit" +msgid "Paste from clipboard" +msgstr "Colar da área de transferência" + +msgctxt "@label" +msgid "Pause" +msgstr "Pausar" + +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "Pausado" + +msgctxt "@label:status" +msgid "Paused" +msgstr "Pausado" + +msgctxt "@label" +msgid "Pausing..." +msgstr "Pausando..." + +msgctxt "@label:status" +msgid "Pausing..." +msgstr "Pausando..." + +msgctxt "@label" +msgid "Per Model Settings" +msgstr "Ajustes por Modelo" + +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Ferramenta de Ajustes Por Modelo" + +msgid "Perspective" +msgstr "Perspectiva" + +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "Perspectiva" + +msgctxt "@action:label" +msgid "Placement" +msgstr "Posicionamento" + +msgctxt "@info:title" +msgid "Placing Object" +msgstr "Colocando Objeto" + +msgctxt "@info:title" +msgid "Placing Objects" +msgstr "Colocando Objetos" + +msgctxt "@label Type of platform" +msgid "Platform" +msgstr "Plataforma" + +msgctxt "@info" +msgid "Please connect your printer to the network." +msgstr "Por favor conecte sua impressora à rede." + +msgctxt "@text" +msgid "Please enter a valid IP address." +msgstr "Por favor entre um endereço IP válido." + +msgctxt "@message" +msgid "Please give the required permissions when authorizing this application." +msgstr "Por favor dê as permissões requeridas ao autorizar esta aplicação." + +msgctxt "@info" +msgid "" +"Please make sure your printer has a connection:\n" +"- Check if the printer is turned on.\n" +"- Check if the printer is connected to the network.\n" +"- Check if you are signed in to discover cloud-connected printers." +msgstr "" +"Por favor certifique-se que sua impressora está conectada>\n" +"- Verifique se ela está ligada.\n" +"- Verifique se ela está conectada à rede.\n" +"- Verifique se você está logado para descobrir impressoras conectadas à nuvem." + +msgctxt "@text" +msgid "Please name your printer" +msgstr "Por favor dê um nome à sua impressora" + +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "Por favor prepare o G-Code antes de exportar." + +msgctxt "@info" +msgid "Please provide a name for this profile." +msgstr "Por favor dê um nome a este perfil." + +msgctxt "@info" +msgid "Please provide a new name." +msgstr "Por favor, escolha um novo nome." + +msgctxt "@text" +msgid "Please read and agree with the plugin licence." +msgstr "Por favor leia e concorde com a licença do complemento." + +msgctxt "@label:MonitorStatus" +msgid "Please remove the print" +msgstr "Por favor remova a impressão" + +msgctxt "@info:status" +msgid "" +"Please review settings and check if your models:\n" +"- Fit within the build volume\n" +"- Are assigned to an enabled extruder\n" +"- Are not all set as modifier meshes" +msgstr "" +"Por favor revise os ajustes e verifique se seus modelos:\n" +"- Cabem dentro do volume de impressão\n" +"- Estão associados a um extrusor habilitado\n" +"- Não estão todos configurados como malhas de modificação" + +msgctxt "@label" +msgid "Please select any upgrades made to this UltiMaker Original" +msgstr "Por favor selecionar quaisquer atualizações feitas nesta UltiMaker Original" + +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" +msgstr "Por favor se logue para adquirir complementos e materiais verificados para o UltiMaker Cura Enterprise" + +msgctxt "@action:button" +msgid "Please sync the material profiles with your printers before starting to print." +msgstr "Por favor sincronize os perfis de material com suas impressoras antes de começar a imprimir." + +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "Por favor atualize o firmware de sua impressora parar gerir a fila remotamente." + +msgctxt "@info:status" +msgid "Please wait until the current job has been sent." +msgstr "Por favor espere até que o trabalho atual tenha sido enviado." + +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "Acordo de Licença do Complemento" + +msgctxt "@button" +msgid "Plugin license agreement" +msgstr "Acordo de licença do complemento" + +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "Complementos" + +msgctxt "@button" +msgid "Plugins" +msgstr "Complementos" + +msgctxt "@label Description for application dependency" +msgid "Polygon clipping library" +msgstr "Biblioteca de recorte de polígonos" + +msgctxt "@label Description for application component" +msgid "Polygon packing library, developed by Prusa Research" +msgstr "Biblioteca de empacotamento Polygon, desenvolvido pela Prusa Research" + +msgctxt "@item:inmenu" +msgid "Post Processing" +msgstr "Pós-Processamento" + +msgctxt "name" +msgid "Post Processing" +msgstr "Pós-processamento" + +msgctxt "@title:window" +msgid "Post Processing Plugin" +msgstr "Complemento de Pós-Processamento" + +msgctxt "@label" +msgid "Post Processing Scripts" +msgstr "Scripts de Pós-Processamento" + +msgctxt "@button" +msgid "Pre-heat" +msgstr "Pré-aquecer" + +msgctxt "@item:inmenu" +msgid "Prepare" +msgstr "Preparar" + +msgctxt "name" +msgid "Prepare Stage" +msgstr "Estágio de Preparação" + +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "Preparando..." + +msgctxt "@label:status" +msgid "Preparing..." +msgstr "Preparando..." + +msgctxt "@label" +msgid "Preset printers" +msgstr "Impressoras pré-ajustadas" + +msgctxt "@button" +msgid "Preview" +msgstr "Pré-visualização" + +msgctxt "@item:inmenu" +msgid "Preview" +msgstr "Pré-visualização" + +msgctxt "name" +msgid "Preview Stage" +msgstr "Estágio de Pré-visualização" + +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "Torre de Prime" + +msgctxt "@action:button" +msgid "Print" +msgstr "Imprimir" + +msgctxt "@label" +msgid "Print Selected Model With:" +msgid_plural "Print Selected Models With:" +msgstr[0] "Imprimir Modelo Selecionado Com:" +msgstr[1] "Imprimir Modelos Selecionados Com:" + +msgctxt "@label %1 is filled in with the name of an extruder" +msgid "Print Selected Model with %1" +msgid_plural "Print Selected Models with %1" +msgstr[0] "Imprimir Modelo Selecionado com %1" +msgstr[1] "Imprimir Modelos Selecionados com %1" + +msgctxt "@label" +msgid "Print as support" +msgstr "Imprimir como suporte" + +msgctxt "@info:title" +msgid "Print error" +msgstr "Erro de impressão" + +msgctxt "@message" +msgid "Print in Progress" +msgstr "Impressão em Progresso" + +msgctxt "@info:status" +msgid "Print job queue is full. The printer can't accept a new job." +msgstr "A fila de trabalhos de impressão está cheia. A impressora não pode aceitar novo trabalho." + +msgctxt "@info:status" +msgid "Print job was successfully sent to the printer." +msgstr "Trabalho de impressão enviado à impressora com sucesso." + +msgctxt "@label" +msgid "Print jobs" +msgstr "Trabalhos de impressão" + +msgctxt "@label:button" +msgid "Print jobs" +msgstr "Trabalhos de impressão" + +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print over network" +msgstr "Imprimir pela rede" + +msgctxt "@properties:tooltip" +msgid "Print over network" +msgstr "Imprime pela rede" + +msgctxt "@title:window" +msgid "Print over network" +msgstr "Imprimir pela rede" + +msgctxt "@label" +msgid "Print settings" +msgstr "Ajustes de impressão" + +msgctxt "@label shown when we load a Gcode file" +msgid "Print setup disabled. G-code file can not be modified." +msgstr "Configuração de Impressão desabilitada. O arquivo de G-Code não pode ser modificado." + +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print via USB" +msgstr "Imprimir pela USB" + +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "Imprimir pela USB" + +msgctxt "@action:button" +msgid "Print via cloud" +msgstr "Imprimir pela nuvem" + +msgctxt "@properties:tooltip" +msgid "Print via cloud" +msgstr "Imprimir pela nuvem" + +msgctxt "@action:label" +msgid "Print with" +msgstr "Imprimir com" + +msgctxt "@title:tab" +msgid "Printer" +msgstr "Impressora" + +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Endereço da Impressora" + +msgctxt "@action:label" +msgid "Printer Group" +msgstr "Grupo de Impressora" + +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "Ajustes de Impressora" + +msgctxt "@label" +msgid "Printer control" +msgstr "Controle da Impressora" + +msgctxt "@label:MonitorStatus" +msgid "Printer does not accept commands" +msgstr "A impressora não aceita comandos" + +msgctxt "@label" +msgid "Printer name" +msgstr "Nome da impressora" + +msgctxt "@label" +msgid "Printer selection" +msgstr "Seleção de impressora" + +msgctxt "@action:label" +msgid "Printer settings" +msgstr "Ajustes da impressora" + +msgctxt "@info:tooltip" +msgid "Printer settings will be updated to match the settings saved with the project." +msgstr "Os ajustes de impressora serão atualizados para concordar com os ajustes salvos com o projeto." + +msgctxt "@title:tab" +msgid "Printers" +msgstr "Impressoras" + +msgctxt "info:status" +msgid "Printers added from Digital Factory:" +msgstr "Impressoras adicionadas da Digital Factory:" + +msgctxt "@text Asking the user whether printers are missing in a list." +msgid "Printers missing?" +msgstr "Impressoras faltando?" + +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "Ajustes da Cabeça de Impressão" + +msgctxt "@label:status" +msgid "Printing" +msgstr "Imprimindo" + +msgctxt "@label" +msgid "Printing Time" +msgstr "Tempo de Impressão" + +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "Imprimindo..." + +msgctxt "@label" +msgid "Privacy" +msgstr "Privacidade" + +msgctxt "@button" +msgid "Processing" +msgstr "Processando" + +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "Processando Camadas" + +msgctxt "@label" +msgid "Profile" +msgstr "Perfil" + +msgctxt "@title:column" +msgid "Profile" +msgstr "Perfil" + +msgctxt "@label" +msgid "Profile author" +msgstr "Autor do perfil" + +msgctxt "@info:status" +msgid "Profile is missing a quality type." +msgstr "Falta um tipo de qualidade ao Perfil." + +msgctxt "@action:label" +msgid "Profile settings" +msgstr "Ajustes de perfil" + +msgctxt "@title:column" +msgid "Profile settings" +msgstr "Ajustes de perfil" + +#, python-brace-format +msgctxt "@info:status" +msgid "Profile {0} has an unknown file type or is corrupted." +msgstr "O Perfil {0} tem tipo de arquivo desconhecido ou está corrompido." + +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "Perfis" + +msgctxt "@label" +msgid "Profiles" +msgstr "Perfis" + +msgctxt "@title:tab" +msgid "Profiles" +msgstr "Perfis" + +msgctxt "@label" +msgid "Profiles compatible with active printer:" +msgstr "Perfis compatíveis com a impressora ativa:" + +msgctxt "@label Description for application dependency" +msgid "Programming language" +msgstr "Linguagem de Programação" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." +msgstr "O arquivo de projeto {0} contém um tipo de máquina desconhecido {1}. Não foi possível importar a máquina. Os modelos serão importados ao invés dela." + +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is corrupt: {1}." +msgstr "Arquivo de projeto {0} está corrompido: {1}." + +#, python-brace-format +msgctxt "@info:error Don't translate the XML tag !" +msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." +msgstr "O arquivo de projeto {0} foi feito usando perfis que são desconhecidos para esta versão do UltiMaker Cura." + +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is suddenly inaccessible: {1}." +msgstr "O arquivo de projeto {0} tornou-se subitamente inacessível: {1}." + +msgctxt "@label" +msgid "Properties" +msgstr "Propriedades" + +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Provê ações de máquina para atualização do firmware." + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Provê um estágio de monitor no Cura." + +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Provê uma visualização de malha sólida normal." + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Provê um estágio de preparação no Cura." + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Provê uma etapa de pré-visualização ao Cura." + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Provê uma maneira de alterar ajustes de máquina (tais como volume de impressão, tamanho do bico, etc.)." + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Provê capacidade de ler e escrever perfis de material baseado em XML." + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Provê ações de máquina para impressoras da UltiMaker (tais como assistente de nivelamento de mesa, seleção de atualizações, etc.)." + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Provê suporte a escrita e reconhecimento de drives a quente." + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Provê suporte à exportação de perfis do Cura." + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Provê suporte à importação de perfis do Cura." + +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Provê suporte a importar perfis de arquivos G-Code." + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Provê suporte a importação de perfis de versões legadas do Cura." + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Provê suporte à leitura de arquivos 3MF." + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Provê suporta à leitura de arquivos AMF." + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Provê suporte à leitura de Formatos de Pacote Ultimaker." + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Provê suporte à leitura de arquivos X3D." + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Provê suporta a ler arquivos de modelo." + +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "Provê suporte à escrita de arquivos 3MF." + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "Provê suporte à escrita de Pacotes de Formato MakerBot." + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Provê suporte à escrita de Formatos de Pacote Ultimaker." + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Provê Ajustes Por Modelo." + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Provê a visão de Raios-X." + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Provê a ligação ao backend de fatiamento CuraEngine." + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Provê a pré-visualização de dados de camada fatiados." + +msgctxt "@label" +msgid "PyQt version" +msgstr "Versão do PyQt" + +msgctxt "@Label Description for application dependency" +msgid "Python Error tracking library" +msgstr "Biblioteca de rastreamento de Erros Python" + +msgctxt "@label Description for application dependency" +msgid "Python bindings for Clipper" +msgstr "Ligações de Python pra Clipper" + +msgctxt "@label Description for application component" +msgid "Python bindings for libnest2d" +msgstr "Ligações de Python para a libnest2d" + +msgctxt "@label" +msgid "Qt version" +msgstr "Versão do Qt" + +#, python-brace-format +msgctxt "@info:status" +msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." +msgstr "Tipo de qualidade '{0}' não é compatível com a definição de máquina ativa atual '{1}'." + +msgctxt "@info:title" +msgid "Queue Full" +msgstr "Fila Cheia" + +msgctxt "@label" +msgid "Queued" +msgstr "Enfileirados" + +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "Sair de %1" + +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Lê G-Code de um arquivo comprimido." + +msgctxt "@button" +msgid "Recommended" +msgstr "Recomendado" + +msgctxt "@title:tab" +msgid "Recommended" +msgstr "Recomendado" + +msgctxt "@label" +msgid "Recommended print settings" +msgstr "Ajustes recomendados de impressão" + +msgctxt "@info %1 is the name of a profile" +msgid "Recommended settings (for %1) were altered." +msgstr "Ajustes recomendados (para %1) foram alterados." + +msgctxt "@action:button" +msgid "Refresh" +msgstr "Atualizar" + +msgctxt "@button" +msgid "Refresh" +msgstr "Atualizar" + +msgctxt "@label" +msgid "Refresh" +msgstr "Atualizar" + +msgctxt "@button" +msgid "Refresh List" +msgstr "Atualizar Lista" + +msgctxt "@button" +msgid "Refreshing..." +msgstr "Atualizando..." + +msgctxt "@label" +msgid "Release Notes" +msgstr "Notas de lançamento" + +msgctxt "@action:inmenu menubar:file" +msgid "Reload All Models" +msgstr "Recarregar Todos Os Modelos" + +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "Lembrar minha escolha" + +msgctxt "@item:intext" +msgid "Removable Drive" +msgstr "Unidade Removível" + +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Complemento de Dispositivo de Escrita Removível" + +msgctxt "@action:button" +msgid "Remove" +msgstr "Remover" + +msgctxt "@action:button" +msgid "Remove printers" +msgstr "Remover impressoras" + +msgctxt "@title:window" +msgid "Remove printers?" +msgstr "Remover impressoras?" + +msgctxt "@action:button" +msgid "Rename" +msgstr "Renomear" + +msgctxt "@title:window" +msgid "Rename" +msgstr "Renomear" + +msgctxt "@title:window" +msgid "Rename Profile" +msgstr "Renomear Perfil" + +msgctxt "@action:inmenu menubar:help" +msgid "Report a &Bug" +msgstr "Relatar um &Bug" + +msgctxt "@label:button" +msgid "Report a bug" +msgstr "Relatar um problema" + +msgctxt "@message:button" +msgid "Report a bug" +msgstr "Relatar um bug" + +msgctxt "@message:description" +msgid "Report a bug on UltiMaker Cura's issue tracker." +msgstr "Relatar um bug no issue tracker do UltiMaker Cura." + +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "Requer mudanças na configuração" + +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Positions" +msgstr "Reestabelecer as Posições de Todos Os Modelos" + +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Transformations" +msgstr "Remover as Transformações de Todos Os Modelos" + +msgctxt "@info" +msgid "Reset to defaults." +msgstr "Restaurar aos defaults." + +msgctxt "@label" +msgid "Resolution" +msgstr "Resolução" + +msgctxt "@button" +msgid "Restore" +msgstr "Restaurar" + +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "Restaurar Backup" + +msgctxt "@option:check" +msgid "Restore window position on start" +msgstr "Restaurar posição da janela no início" + +msgctxt "@label" +msgid "Resume" +msgstr "Continuar" + +msgctxt "@label" +msgid "Resuming..." +msgstr "Continuando..." + +msgctxt "@label:status" +msgid "Resuming..." +msgstr "Continuando..." + +msgctxt "@tooltip" +msgid "Retractions" +msgstr "Retrações" + +msgctxt "@button" +msgid "Retry?" +msgstr "Tentar novamente?" + +msgctxt "@action:inmenu menubar:view" +msgid "Right Side View" +msgstr "Visão do Lado Direito" + +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "Visão à Direita" + +msgctxt "@label Description for application dependency" +msgid "Root Certificates for validating SSL trustworthiness" +msgstr "Certificados-Raiz para validar confiança SSL" + +msgctxt "@info:title" +msgid "Safely Remove Hardware" +msgstr "Remover Hardware com Segurança" + +msgctxt "@button" +msgid "Safety datasheet" +msgstr "Ficha de segurança" + +msgctxt "@action:button" +msgid "Save" +msgstr "Salvar" + +msgctxt "@option" +msgid "Save Cura project" +msgstr "Salvar o projeto Cura" + +msgctxt "@option" +msgid "Save Cura project and print file" +msgstr "Salvar o projeto Cura e imprimir o arquivo" + +msgctxt "@title:window" +msgid "Save Custom Profile" +msgstr "Salvar Perfil Personalizado" + +msgctxt "@title:window" +msgid "Save Project" +msgstr "Salvar Projeto" + +msgctxt "@title:menu menubar:file" +msgid "Save Project..." +msgstr "Salvar Projeto..." + +msgctxt "@action:button" +msgid "Save as new custom profile" +msgstr "Salvar como novo perfil personalizado" + +msgctxt "@action:button" +msgid "Save changes" +msgstr "Salvar alterações" + +msgctxt "@button" +msgid "Save new profile" +msgstr "Salvar novo perfil" + +msgctxt "@text" +msgid "Save the .umm file on a USB stick." +msgstr "Grava o arquivo .umm em um pendrive USB." + +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Save to Removable Drive" +msgstr "Salvar em Unidade Removível" + +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "Save to Removable Drive {0}" +msgstr "Salvar em Unidade Removível {0}" + +#, python-brace-format +msgctxt "@info:status" +msgid "Saved to Removable Drive {0} as {1}" +msgstr "Salvo em Unidade Removível {0} como {1}" + +msgctxt "@info:title" +msgid "Saving" +msgstr "Salvando" + +#, python-brace-format +msgctxt "@info:progress Don't translate the XML tags !" +msgid "Saving to Removable Drive {0}" +msgstr "Salvando na Unidade Removível {0}" + +msgctxt "@option:check" +msgid "Scale extremely small models" +msgstr "Redimensionar modelos minúsculos" + +msgctxt "@option:check" +msgid "Scale large models" +msgstr "Redimensionar modelos grandes" + +msgctxt "@placeholder" +msgid "Search" +msgstr "Buscar" + +msgctxt "@info" +msgid "Search in the browser" +msgstr "Buscar no navegador" + +msgctxt "@label:textbox" +msgid "Search settings" +msgstr "Ajustes de busca" + +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "Selecionar Todos Os Modelos" + +msgctxt "@title:window" +msgid "Select Printer" +msgstr "Selecione Impressora" + +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "Selecionar Ajustes a Personalizar para este modelo" + +msgctxt "@text" +msgid "Select and install material profiles optimised for your UltiMaker 3D printers." +msgstr "Selecione e instale perfis de material otimizados para suas impressoras 3D UltiMaker." + +msgctxt "@label" +msgid "Select configuration" +msgstr "Selecione configuração" + +msgctxt "@title:window" +msgid "Select custom firmware" +msgstr "Selecionar firmware personalizado" + +msgctxt "@option:check" +msgid "Select models when loaded" +msgstr "Selecionar modelos ao carregar" + +msgctxt "@action:button" +msgid "Select settings" +msgstr "Selecionar ajustes" + +msgctxt "@action" +msgid "Select upgrades" +msgstr "Selecionar Atualizações" + +msgctxt "@label" +msgid "Select your printer from the list below:" +msgstr "Selecione sua impressora da lista abaixo:" + +msgctxt "@option:check" +msgid "Send (anonymous) print information" +msgstr "Enviar informação (anônima) de impressão" + +msgctxt "@label" +msgid "Send G-code" +msgstr "Enviar G-Code" + +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "Enviar comando G-Code personalizado para a impressora conectada. Pressione 'enter' para enviar o comando." + +msgctxt "@action:button" +msgid "Send crash report to UltiMaker" +msgstr "Enviar relatório de falha à UltiMaker" + +msgctxt "@action:button" +msgid "Send report" +msgstr "Enviar relatório" + +msgctxt "@info:status" +msgid "Sending Print Job" +msgstr "Enviando Trabalho de Impressão" + +msgctxt "@info:title" +msgid "Sending materials to printer" +msgstr "Enviando material para a impressora" + +msgctxt "name" +msgid "Sentry Logger" +msgstr "Sentinela para Registro" + +msgctxt "@label Description for application dependency" +msgid "Serial communication library" +msgstr "Biblioteca de comunicação serial" + +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "Definir Como Extrusor Ativo" + +msgctxt "@title:column" +msgid "Setting" +msgstr "Ajustes" + +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "Visibilidade dos Ajustes" + +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "Ajustando preferências..." + +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "Configurando cena..." + +msgctxt "@action:label" +msgid "Setting visibility" +msgstr "Visibilidade dos ajustes" + +msgctxt "@label" +msgid "Settings" +msgstr "Ajustes" + +msgctxt "@title:tab" +msgid "Settings" +msgstr "Ajustes" + +msgctxt "@info:message Followed by a list of settings." +msgid "Settings have been changed to match the current availability of extruders:" +msgstr "Os ajustes foram alterados para seguir a disponibilidade de extrusores atuais:" + +msgctxt "@info:title" +msgid "Settings updated" +msgstr "Ajustes atualizados" + +msgctxt "@text" +msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community" +msgstr "Compartilhe ideias e consiga ajuda de mais de 48.000 usuários da Comunidade UltiMaker" + +msgctxt "@label" +msgid "Shell" +msgstr "Perímetro" + +msgctxt "@action:label" +msgid "Shell Thickness" +msgstr "Espessura de Perímetro" + +msgctxt "@info:tooltip" +msgid "Should Cura check for updates when the program is started?" +msgstr "O Cura deve verificar novas atualizações quando o programa for iniciado?" + +msgctxt "@info:tooltip" +msgid "Should Cura open at the location it was closed?" +msgstr "O Cura deve abrir no lugar onde foi fechado?" + +msgctxt "@info:tooltip" +msgid "Should a prefix based on the printer name be added to the print job name automatically?" +msgstr "Um prefixo baseado no nome da impressora deve ser adicionado ao nome do trabalho de impressão automaticamente?" + +msgctxt "@info:tooltip" +msgid "Should a summary be shown when saving a project file?" +msgstr "Um resumo deve ser exibido ao salvar um arquivo de projeto?" + +msgctxt "@info:tooltip" +msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!" +msgstr "Uma verificação automática por novos complementos deve ser feita toda vez que o Cura iniciar? É altamente recomendado que não desabilite esta opção!" + +msgctxt "@info:tooltip" +msgid "Should anonymous data about your print be sent to UltiMaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." +msgstr "Dados anônimos sobre sua impressão podem ser enviados para a UltiMaker? Nota: nenhuma informação pessoalmente identificável, modelos ou endereços IP são enviados ou armazenados." + +msgctxt "@info:tooltip" +msgid "Should layer be forced into compatibility mode?" +msgstr "A Visão de Camada deve ser forçada a ficar em modo de compatibilidade?" + +msgctxt "@info:tooltip" +msgid "Should models be scaled to the build volume if they are too large?" +msgstr "Os modelos devem ser redimensionados dentro do volume de impressão se forem muito grandes?" + +msgctxt "@info:tooltip" +msgid "Should models be selected after they are loaded?" +msgstr "Os modelos devem ser selecionados após serem carregados?" + +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved down to touch the build plate?" +msgstr "Os modelos devem ser movidos pra baixo pra se assentar na plataforma de impressão?" + +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved so that they no longer intersect?" +msgstr "Os modelos devem ser movidos na plataforma de modo que não se sobreponham?" + +msgctxt "@info:tooltip" +msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" +msgstr "Arquivos da área de trabalho ou de aplicações externas devem ser abertos na mesma instância do Cura?" + +msgctxt "@info:tooltip" +msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" +msgstr "A plataforma de construção deve ser esvaziada antes de carregar um modelo novo na instância única do Cura?" + +msgctxt "@info:tooltip" +msgid "Should the default zoom behavior of cura be inverted?" +msgstr "O comportamento default de ampliação deve ser invertido?" + +msgctxt "@info:tooltip" +msgid "Should zooming move in the direction of the mouse?" +msgstr "A ampliação (zoom) deve se mover na direção do mouse?" + +msgctxt "@label" +msgid "Show 5 Detailed Layers On Top" +msgstr "Exibir 5 Camadas Superiores Detalhadas" + +msgctxt "@action:inmenu menubar:help" +msgid "Show Configuration Folder" +msgstr "Exibir Pasta de Configuração" + +msgctxt "@button" +msgid "Show Custom" +msgstr "Mostrar Personalizado" + +msgctxt "@action:inmenu menubar:help" +msgid "Show Online &Documentation" +msgstr "Exibir &Documentação Online" + +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting" +msgstr "Mostrar Resolução de Problemas Online" + +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Exibir tudo" + +msgctxt "@label" +msgid "Show all connected printers" +msgstr "Mostrar todas as impressoras conectadas" + +msgctxt "@info:tooltip" +msgid "Show an icon and notifications in the system notification area." +msgstr "Mostrar um ícone e notificações na área de notificações do sistema." + +msgctxt "@info:tooltip" +msgid "Show caution message in g-code reader." +msgstr "Exibir mensagem de alerta no leitor de G-Code." + +msgctxt "@action:button" +msgid "Show configuration folder" +msgstr "Mostrar a pasta de configuração" + +msgctxt "@action:button" +msgid "Show detailed crash report" +msgstr "Exibir relatório de falha detalhado" + +msgctxt "@option:check" +msgid "Show summary dialog when saving project" +msgstr "Exibir diálogo de resumo ao salvar projeto" + +msgctxt "@tooltip:button" +msgid "Show your support for Cura with a donation." +msgstr "Mostre seu suporte ao Cura com uma doação." + +msgctxt "@button" +msgid "Sign Out" +msgstr "Deslogar" + +msgctxt "@action:button" +msgid "Sign in" +msgstr "Entrar" + +msgctxt "@button" +msgid "Sign in" +msgstr "Entrar" + +msgctxt "@title:header" +msgid "Sign in" +msgstr "Entrar" + +msgctxt "@info" +msgid "Sign in into UltiMaker Digital Factory" +msgstr "Fazer login na Ultimaker Digital Factory" + +msgctxt "@button" +msgid "Sign in to Digital Factory" +msgstr "Fazer login na Digital Factory" + +msgctxt "@label" +msgid "Sign in to the UltiMaker platform" +msgstr "Entre na plataforma UltiMaker" + +msgctxt "name" +msgid "Simulation View" +msgstr "Visão Simulada" + +msgctxt "@tooltip" +msgid "Skin" +msgstr "Contorno" + +msgctxt "@action:button" +msgid "Skip" +msgstr "Pular" + +msgctxt "@button" +msgid "Skip" +msgstr "Pular" + +msgctxt "@tooltip" +msgid "Skirt" +msgstr "Skirt (Saia)" + +msgctxt "@button" +msgid "Slice" +msgstr "Fatiar" + +msgctxt "@option:check" +msgid "Slice automatically" +msgstr "Fatiar automaticamente" + +msgctxt "@info:tooltip" +msgid "Slice automatically when changing settings." +msgstr "Fatiar automaticamente quando mudar ajustes." + +msgctxt "name" +msgid "Slice info" +msgstr "Informação de fatiamento" + +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "Fatiamento falhado" + +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "O fatiamento falhou com um erro não esperado. Por favor considere relatar um bug em nosso issue tracker." + +msgctxt "@label:PrintjobStatus" +msgid "Slicing..." +msgstr "Fatiando..." + +msgctxt "@action:label" +msgid "Smoothing" +msgstr "Suavização" + +msgctxt "name" +msgid "Solid View" +msgstr "Visão Sólida" + +msgctxt "@item:inmenu" +msgid "Solid view" +msgstr "Visão sólida" + +msgctxt "@label" +msgid "" +"Some hidden settings use values different from their normal calculated value.\n" +"\n" +"Click to make these settings visible." +msgstr "" +"Alguns ajustes ocultos usam valores diferentes de seu valor calculado normal.\n" +"\n" +"Clique para tornar estes ajustes visíveis." + +msgctxt "@info:status" +msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." +msgstr "Alguns dos pacotes usados no arquivo de projeto não estão atualmente instalados no Cura, isto pode produzir resultados de impressão não desejados. Recomendamos fortemente instalar todos os pacotes requeridos pelo MarketPlace." + +msgctxt "@info:title" +msgid "Some required packages are not installed" +msgstr "Alguns pacotes requeridos não estão instalados" + +msgctxt "@info %1 is the name of a profile" +msgid "Some setting-values defined in %1 were overridden." +msgstr "Alguns valores de ajustes definidos em %1 foram sobrepostos." + +msgctxt "@tooltip" +msgid "" +"Some setting/override values are different from the values stored in the profile.\n" +"\n" +"Click to open the profile manager." +msgstr "" +"Alguns ajustes/sobreposições têm valores diferentes dos que estão armazenados no perfil.\n" +"\n" +"Clique para abrir o gerenciador de perfis." + +msgctxt "@action:label" +msgid "Some settings from current profile were overwritten." +msgstr "Alguns ajustes do perfil atual foram sobrescritos." + +msgctxt "@message" +msgid "Something unexpected happened when trying to log in, please try again." +msgstr "Algo inesperado aconteceu ao tentar login, por favor tente novamente." + +msgctxt "@title:header" +msgid "Something went wrong when sending the materials to the printers." +msgstr "Algo de errado aconteceu ao enviar os materiais às impressoras." + +msgctxt "@label" +msgid "Something went wrong..." +msgstr "Alguma coisa deu errado..." + +msgctxt "@label:listbox" +msgid "Speed" +msgstr "Velocidade" + +msgctxt "@action:inmenu" +msgid "Sponsor Cura" +msgstr "Patrocinar o Cura" + +msgctxt "@label:button" +msgid "Sponsor Cura" +msgstr "Patrocinar o Cura" + +msgctxt "@option:radio" +msgid "Stable and Beta releases" +msgstr "Versões estáveis ou beta" + +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "Versões estáveis somente" + +msgctxt "@item:inlistbox" +msgid "Stanford Triangle Format" +msgstr "Formato de Triângulos de Stanford" + +msgctxt "@button" +msgid "Start" +msgstr "Iniciar" + +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "Iniciar Nivelamento da Mesa de Impressão" + +msgctxt "@title:label" +msgid "Start G-code" +msgstr "G-Code Inicial" + +msgctxt "@label" +msgid "Start the slicing process" +msgstr "Inicia o processo de fatiamento" + +msgctxt "@label" +msgid "Starts" +msgstr "Inícios" + +msgctxt "@text" +msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users." +msgstr "Simplifique seu fluxo de trabalho e personalize sua experiência do UltiMaker Cura com complementos contribuídos por nossa fantástica comunidade de usuários." + +msgctxt "@label" +msgid "Strength" +msgstr "Força" + +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Submete informações de fatiamento anônimas. Pode ser desabilitado nas preferências." + +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully exported material to %1" +msgstr "Material exportado para %1 com sucesso" + +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "Material %1 importado com sucesso" + +#, python-brace-format +msgctxt "@info:status" +msgid "Successfully imported profile {0}." +msgstr "Perfil {0} importado com sucesso." + +msgctxt "@action:title" +msgid "Summary - Cura Project" +msgstr "Resumo - Projeto do Cura" + +msgctxt "@label" +msgid "Support" +msgstr "Suporte" + +msgctxt "@tooltip" +msgid "Support" +msgstr "Suporte" + +msgctxt "@label" +msgid "Support Blocker" +msgstr "Bloqueador de Suporte" + +msgctxt "name" +msgid "Support Eraser" +msgstr "Apagador de Suporte" + +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "Preenchimento de Suporte" + +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "Interface de Suporte" + +msgctxt "@action:label" +msgid "Support Type" +msgstr "Tipo de Suporte" + +msgctxt "@label Description for application dependency" +msgid "Support library for faster math" +msgstr "Biblioteca de suporte para matemática acelerada" + +msgctxt "@label Description for application component" +msgid "Support library for file metadata and streaming" +msgstr "Biblioteca de suporte para streaming e metadados de arquivo" + +msgctxt "@label Description for application component" +msgid "Support library for handling 3MF files" +msgstr "Biblioteca de suporte para manuseamento de arquivos 3MF" + +msgctxt "@label Description for application dependency" +msgid "Support library for handling STL files" +msgstr "Biblioteca de suporte para manuseamento de arquivos STL" + +msgctxt "@label Description for application dependency" +msgid "Support library for handling triangular meshes" +msgstr "Biblioteca de suporte para manuseamento de malhas triangulares" + +msgctxt "@label Description for application dependency" +msgid "Support library for scientific computing" +msgstr "Biblioteca de suporte para computação científica" + +msgctxt "@label Description for application dependency" +msgid "Support library for system keyring access" +msgstr "Biblioteca de suporte para acesso ao chaveiro do sistema" + +msgctxt "@action:button" +msgid "Sync" +msgstr "Sincronizar" + +msgctxt "@button" +msgid "Sync" +msgstr "Sincronizar" + +msgctxt "@title:header" +msgid "Sync material profiles via USB" +msgstr "Sincronizar perfis de material via USB" + +msgctxt "@action:button" +msgid "Sync materials" +msgstr "Sincronizar materiais" + +msgctxt "@button" +msgid "Sync materials with USB" +msgstr "Sincronizar materiais usando USB" + +msgctxt "@title:header" +msgid "Sync materials with printers" +msgstr "Sincronizar materiais com impressoras" + +msgctxt "@title:window" +msgid "Sync materials with printers" +msgstr "Sincronizar materiais com impressoras" + +msgctxt "@action:button" +msgid "Sync with Printers" +msgstr "Sincronizar com Impressoras" + +msgctxt "@button" +msgid "Syncing" +msgstr "Sincronizando" + +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "Sincronizando..." + +msgctxt "@title:groupbox" +msgid "System information" +msgstr "Informação do Sistema" + +msgctxt "@button" +msgid "Technical datasheet" +msgstr "Ficha técnica" + +msgctxt "@info:tooltip" +msgid "The amount of smoothing to apply to the image." +msgstr "A quantidade de suavização para aplicar na imagem." + +msgctxt "@text" +msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance." +msgstr "O perfil de recozimento requer pós-processamento em um forno depois da impressão terminar. Este perfil retém a acuidade dimensional da parte impressão depois do recozimento e melhora a força, rigidez e resistência térmica." + +msgctxt "@label" +msgid "The assigned printer, %1, requires the following configuration change:" +msgid_plural "The assigned printer, %1, requires the following configuration changes:" +msgstr[0] "A impressora associada, %1, requer a seguinte alteração de configuração:" +msgstr[1] "A impressora associada, %1, requer as seguintes alterações de configuração:" + +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "O backup excede o tamanho máximo de arquivo." + +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "O perfil equilibrado é projetado para conseguir um equilíbrio entre produtividade, qualidade de superfície, propriedades mecânicas e acuidade dimensional." + +msgctxt "@info:tooltip" +msgid "The base height from the build plate in millimeters." +msgstr "A altura-base da mesa de impressão em milímetros." + +msgctxt "@info:status" +msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." +msgstr "A altura do volume de impressão foi reduzida para que o valor da \"Sequência de Impressão\" impeça o eixo de colidir com os modelos impressos." + +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "A conexão de nuvem está indisponível. Por favor verifique sua conexão de internet." + +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "A conexão de nuvem está indisponível. Por favor se logue para se conectar à impressora de nuvem." + +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "A impressora de nuvem está offline. Por favor verifique se a impressora está ligada e conectada à internet." + +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "A cor do material neste extrusor." + +msgctxt "@tooltip" +msgid "The configuration of this extruder is not allowed, and prohibits slicing." +msgstr "A configuração deste extrusor não é permitida e proíbe o fatiamento." + +msgctxt "@label" +msgid "The configurations are not available because the printer is disconnected." +msgstr "As configurações não estão disponíveis porque a impressora está desconectada." + +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "A temperatura atual da mesa aquecida." + +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "A temperatura atual deste hotend." + +msgctxt "@info:tooltip" +msgid "The depth in millimeters on the build plate" +msgstr "A profundidade da mesa de impressão em milímetros" + +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "O perfil de rascunho é projetado para imprimir protótipos iniciais e validações de conceito com o objetivo de redução significativa de tempo de impressão." + +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "O perfil de engenharia é projetado para imprimir protótipos funcionais e partes de uso final com o objetivo de melhor precisão e tolerâncias mais estritas." + +msgctxt "@label" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "O carro extrusor usado para imprimir o suporte. Isto é usado em multi-extrusão." + +#, python-brace-format +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "O arquivo {0} já existe. Tem certeza que quer sobrescrevê-lo?" + +msgctxt "@label" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "O firmware que já vêm embutido nas novas impressoras funciona, mas novas versões costumam ter mais recursos, correções e melhorias." + +msgctxt "@info:backup_failed" +msgid "The following error occurred while trying to restore a Cura backup:" +msgstr "O seguinte erro ocorreu ao tentar restaurar um backup do Cura:" + +msgctxt "@label" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "Os seguintes pacotes não podem ser instalados por incompatibilidade de versão do Cura:" + +msgctxt "@label" +msgid "The following packages will be added:" +msgstr "Os seguintes pacotes serão adicionados:" + +msgctxt "@label" +msgid "The following printers in your account have been added in Cura:" +msgstr "As seguintes impressoras da sua conta foram adicionadas ao Cura:" + +msgctxt "@title:header" +msgid "The following printers will receive the new material profiles:" +msgstr "Os seguintes materiais receberão novos perfis de material:" + +msgctxt "@info:tooltip" +msgid "The following script is active:" +msgid_plural "The following scripts are active:" +msgstr[0] "O seguinte script está ativo:" +msgstr[1] "Os seguintes scripts estão ativos:" + +msgctxt "@label" +msgid "The following settings define the strength of your part." +msgstr "Os seguintes ajustes definem a força de sua peça." + +msgctxt "@info:status" +msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." +msgstr "As áreas ressaltadas indicam superfícies faltantes ou incorretas. Conserte seu modelo e o abra novamente no Cura." + +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "O material neste extrusor." + +msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate" +msgid "The material package associated with the Cura project could not be found on the Ultimaker Marketplace. Use the partial material profile definition stored in the Cura project file at your own risk." +msgstr "O pacote de material associado com este projeto Cura não pôde ser encontrado no Ultimaker Marketplace. Use a definição parcial de perfil de material gravada no arquivo de projeto Cura por seu próprio risco." + +msgctxt "@info:tooltip" +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "A distância máxima de cada pixel da \"Base\"." + +msgctxt "@label (%1 is a number)" +msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" +msgstr "O novo diâmetro de filamento está ajustado em %1 mm, que não é compatível com o extrusor atual. Você deseja continuar?" + +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "O bico inserido neste extrusor." + +msgctxt "@label" +msgid "" +"The pattern of the infill material of the print:\n" +"\n" +"For quick prints of non functional model choose line, zig zag or lightning infill.\n" +"\n" +"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" +"\n" +"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "" +"O padrão do material de preenchimento da impressão:\n" +"\n" +"Para impressões rápidas de modelos não-funcionais escolha preenchimento de linha, ziguezague ou relâmpago.\n" +"\n" +"Para partes funcionais não sujeitas a muito stress, recomandos preenchimento de grade, triângulo ou tri-hexágono.\n" +"\n" +"Para impressões 3D funcionais que requeiram bastante força em múltiplas direções use cúbico, subdivisão cúbica, quarto cúbico, octeto e giroide." + +msgctxt "@info:tooltip" +msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." +msgstr "A porcentagem de luz penetrando uma impressão com espessura de 1 milímetro. Abaixar este valor aumenta o contraste em regiões escuras e diminui o contraste em regiões claras da imagem." + +msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate" +msgid "The plugin associated with the Cura project could not be found on the Ultimaker Marketplace. As the plugin may be required to slice the project it might not be possible to correctly slice the file." +msgstr "O complemento associado com o projeto Cura não foi encontrado no Ultimaker Marketplace. Como o complemento pode ser necessário para fatiar o projeto, pode não ser possível corretamente fatiar este arquivo." + +msgctxt "@info:title" +msgid "The print job was successfully submitted" +msgstr "O trabalho de impressão foi submetido com sucesso" + +msgctxt "@label" +msgid "The printer %1 is assigned, but the job contains an unknown material configuration." +msgstr "A impressora %1 está associada, mas o trabalho contém configuração de material desconhecida." + +msgctxt "@label" +msgid "The printer at this address has not responded yet." +msgstr "A impressora neste endereço ainda não respondeu." + +msgctxt "@label" +msgid "The printer at this address has not yet responded." +msgstr "A impressora neste endereço ainda não respondeu." + +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "A impressora não está conectada." + +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "As impressoras abaixo não podem ser conectadas por serem parte de um grupo" + +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "O estado provido não está correto." + +msgctxt "@text:window" +msgid "The release notes could not be opened." +msgstr "As notas de lançamento não puderam ser abertas." + +msgctxt "@text:error" +msgid "The response from Digital Factory appears to be corrupted." +msgstr "A resposta da Digital Factory parece estar corrompida." + +msgctxt "@text:error" +msgid "The response from Digital Factory is missing important information." +msgstr "A resposta da Digital Factory veio sem informações importantes." + +msgctxt "@tooltip" +msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." +msgstr "A temperatura-alvo da mesa aquecida. A mesa aquecerá ou resfriará para esta temperatura. Se for zero, o aquecimento é desligado." + +msgctxt "@tooltip" +msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." +msgstr "A temperatura-alvo do hotend. O hotend vai aquecer ou esfriar na direção desta temperatura. Se for zero, o aquecimento de hotend é desligado." + +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "A temperatura em que pré-aquecer a mesa." + +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "A temperatura com a qual pré-aquecer o hotend." + +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "O perfil visual é projetado para imprimir protótipos e modelos virtuais com o objetivo de alta qualidade visual e de superfície." + +msgctxt "@info:tooltip" +msgid "The width in millimeters on the build plate" +msgstr "A largura em milímetros na plataforma de impressão" + +msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed." +msgid "Theme*:" +msgstr "Tema*:" + +msgctxt "@info:status" +msgid "There are no file formats available to write with!" +msgstr "Não há formatos de arquivo disponíveis com os quais escrever!" + +msgctxt "@label" +msgid "There are no print jobs in the queue. Slice and send a job to add one." +msgstr "Não há trabalhos de impressão na fila. Fatie e envie um trabalho para adicioná-lo." + +msgctxt "@tooltip" +msgid "There are no profiles matching the configuration of this extruder." +msgstr "Não há perfis correspondendo à configuração deste extrusor." + +msgctxt "@info:status" +msgid "There is no active printer yet." +msgstr "Não há impressora ativa ainda." + +msgctxt "@label" +msgid "There is no printer found over your network." +msgstr "Não foi encontrada nenhuma impressora em sua rede." + +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "Não existe espaço de trabalho ainda para a escrita. Por favor adicione uma impressora primeiro." + +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "Houve um erro ao tentar restaurar seu backup." + +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "Houve um erro ao criar seu backup." + +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "Houve um erro ao transferir seu backup." + +msgctxt "@label" +msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." +msgstr "Esta configuração não está disponível porque %1 não foi reconhecido. Por favor visite %2 para baixar o perfil de materil correto." + +msgctxt "@text:window" +msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" +msgstr "Este é um arquivo de projeto do Cura. Gostaria de abri-lo como um projeto ou importar os modelos dele?" + +msgctxt "@label" +msgid "This material is linked to %1 and shares some of its properties." +msgstr "Este material está vinculado a %1 e compartilha algumas de suas propriedades." + +msgctxt "@label" +msgid "This package will be installed after restarting." +msgstr "Este pacote será instalado após o reinício." + +msgctxt "@label" +msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." +msgstr "Esta impressora não pode ser adicionada porque é uma impressora desconhecida ou porque não é o host do grupo." + +msgctxt "info:status" +msgid "This printer is not linked to the Digital Factory:" +msgid_plural "These printers are not linked to the Digital Factory:" +msgstr[0] "Esta impressora não está ligada à Digital Factory:" +msgstr[1] "Estas impressoras não estão ligadas à Digital Factory:" + +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "Esta impressora não está vinculada à sua conta. Por favor visite a Ultimaker Digital Factory para estabelecer uma conexão." + +msgctxt "@label" +msgid "This printer is not set up to host a group of printers." +msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras." + +msgctxt "@label" +msgid "This printer is the host for a group of %1 printers." +msgstr "Esta impressora é a hospedeira de um grupo de %1 impressoras." + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags !" +msgid "This profile {0} contains incorrect data, could not import it." +msgstr "Este perfil {0} contém dados incorretos, não foi possível importá-lo." + +msgctxt "@action:label" +msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." +msgstr "Este perfil usa os defaults especificados pela impressora, portanto não tem ajustes/sobreposições na lista abaixo." + +msgctxt "@label" +msgid "This project contains materials or plugins that are currently not installed in Cura.
    Install the missing packages and reopen the project." +msgstr "Este projeto contém materiais ou complementos que não estão atualmente instalados no Cura.
    Instale os pacotes faltantes e abra novamente o projeto." + +msgctxt "@label" +msgid "" +"This setting has a value that is different from the profile.\n" +"\n" +"Click to restore the value of the profile." +msgstr "" +"Este ajuste tem um valor que é diferente do perfil.\n" +"\n" +"Clique para restaurar o valor do perfil." + +msgctxt "@item:tooltip" +msgid "This setting has been hidden by the active machine and will not be visible." +msgstr "Este ajuste foi omitido para a máquina ativa e não ficará visível." + +msgctxt "@item:tooltip %1 is list of setting names" +msgid "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible." +msgid_plural "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible." +msgstr[0] "Este ajuste foi mantido invisível pelo valor de %1. Altere o valor desse ajuste para tornar este ajuste visível." +msgstr[1] "Este ajuste foi mantido invisível pelos valores de %1. Altere o valor desses ajustes para tornar este ajuste visível." + +msgctxt "@label" +msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." +msgstr "Este ajuste é sempre compartilhado entre todos os extrusores. Modificá-lo aqui mudará o valor para todos." + +msgctxt "@label" +msgid "" +"This setting is normally calculated, but it currently has an absolute value set.\n" +"\n" +"Click to restore the calculated value." +msgstr "" +"Este ajuste é normalmente calculado, mas atualmente tem um conjunto absoluto de valores.\n" +"\n" +"Clique para restaurar o valor calculado." + +msgctxt "@label" +msgid "This setting is not used because all the settings that it influences are overridden." +msgstr "Este ajuste não é usado porque todos os ajustes que ele influencia estão sobrepostos." + +msgctxt "@label" +msgid "This setting is resolved from conflicting extruder-specific values:" +msgstr "Este ajuste é resolvido dos valores conflitante específicos de extrusor:" + +msgctxt "@info:warning" +msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" +msgstr "Esta versão não é pretendida para uso em produção. Se você encontrar quaisquer problemas, por favor relate-os na nossa página de GitHub, mencionando a versão completa {self.getVersion()}" + +msgctxt "@label" +msgid "Time estimation" +msgstr "Estimativa de tempo" + +msgctxt "@message" +msgid "Timeout when authenticating with the account server." +msgstr "Tempo esgotado ao autenticar com o servidor da conta." + +msgctxt "@text" +msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." +msgstr "Para automaticamente sincronizar os perfis de material com todas as suas impressoras conectadas à Digital Factory, você precisa estar logado pelo Cura." + +#, python-brace-format +msgctxt "info:status" +msgid "To establish a connection, please visit the {website_link}" +msgstr "Para estabelecer uma conexão, por favor visite o {website_link}" + +msgctxt "@label" +msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." +msgstr "Para garantir que suas impressões saiam ótimas, você deve agora ajustar sua mesa de impressão. Quando você clicar em 'Mover para a Posição Seguinte', o bico se moverá para posições diferentes que podem ser ajustadas." + +msgctxt "@label" +msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." +msgstr "Para imprimir diretamente na sua impressora pela rede, certifique-se que ela esteja conectada à rede usando um cabo de rede ou conectando sua impressora à sua WIFI. Se você não conectar Cura à sua impressora, você ainda pode usar um drive USB ou SDCard para transferir arquivos G-Code a ela." + +#, python-brace-format +msgctxt "@message {printer_name} is replaced with the name of the printer" +msgid "To remove {printer_name} permanently, visit {digital_factory_link}" +msgstr "Para remover {printer_name} permanentemente, visite {digital_factory_link}" + +msgctxt "@action:inmenu" +msgid "Toggle Full Screen" +msgstr "Alternar Tela Cheia" + +msgctxt "@label" +msgid "Top / Bottom" +msgstr "Topo / Base" + +msgctxt "@action:inmenu menubar:view" +msgid "Top View" +msgstr "Visão Superior" + +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "Visão de Cima" + +msgctxt "@label" +msgid "Total print time" +msgstr "Tempo total de impressão" + +msgctxt "@action:tooltip" +msgid "Track the print in Ultimaker Digital Factory" +msgstr "Rastrear a impressão na Ultimaker Digital Factory" + +msgctxt "@item:inlistbox" +msgid "Translucency" +msgstr "Translucidez" + +msgctxt "@tooltip" +msgid "Travel" +msgstr "Percurso" + +msgctxt "@label" +msgid "Travels" +msgstr "Percursos" + +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup that is higher than the current version." +msgstr "Tentativa de restauração de backup do Cura de versão maior que a atual." + +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup without having proper data or meta data." +msgstr "Tentativa de restauração de backup do Cura sem dados ou metadados apropriados." + +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Leitor Trimesh" + +msgctxt "@button" +msgid "Troubleshooting" +msgstr "Resolução de problemas" + +msgctxt "@label" +msgid "Troubleshooting" +msgstr "Resolução de problemas" + +msgctxt "@button" +msgid "Try again" +msgstr "Tentar novamente" + +msgctxt "@action:label" +msgid "Type" +msgstr "Tipo" + +msgctxt "@label" +msgid "Type" +msgstr "Tipo" + +msgctxt "name" +msgid "UFP Reader" +msgstr "Leitor UFP" + +msgctxt "name" +msgid "UFP Writer" +msgstr "Gerador de UFP" + +msgctxt "@item:inmenu" +msgid "USB printing" +msgstr "Impressão USB" + +msgctxt "name" +msgid "USB printing" +msgstr "Impressão USB" + +msgctxt "@button" +msgid "UltiMaker Account" +msgstr "Conta na UltiMaker" + +msgctxt "@info" +msgid "UltiMaker Certified Material" +msgstr "Material Certificado UltiMaker" + +msgctxt "@text:window" +msgid "UltiMaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" +msgstr "O UltiMaker Cura coleta dados anônimos para poder aprimorar a qualidade de impressão e experiência do usuário. Abaixo segue um exemplo de todos os dados que são compartilhados:" + +msgctxt "@item:inlistbox" +msgid "UltiMaker Format Package" +msgstr "Pacote de Formato da UltiMaker" + +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "Conexão de Rede UltiMaker" + +msgctxt "@info" +msgid "UltiMaker Verified Package" +msgstr "Pacote Verificado UltiMaker" + +msgctxt "@info" +msgid "UltiMaker Verified Plug-in" +msgstr "Complemento Verificado UltiMaker" + +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Ações de máquina UltiMaker" + +msgctxt "@button" +msgid "UltiMaker printer" +msgstr "Impressora UltiMaker" + +msgctxt "@label:button" +msgid "UltiMaker support" +msgstr "Suporte UltiMaker" + +msgctxt "info:name" +msgid "Ultimaker Digital Factory" +msgstr "Ultimaker Digital Factory" + +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Digital Library da UltiMaker" + +msgctxt "@info:status" +msgid "Unable to add the profile." +msgstr "Não foi possível adicionar o perfil." + +msgctxt "@info:status" +msgid "Unable to find a location within the build volume for all objects" +msgstr "Não foi possível achar um lugar dentro do volume de construção para todos os objetos" + +#, python-brace-format +msgctxt "@info:plugin_failed" +msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" +msgstr "Não foi possível encontrar o executável do servidor local de EnginePlugin para: {self._plugin_id}" + +#, python-brace-format +msgctxt "@info:plugin_failed" +msgid "" +"Unable to kill running EnginePlugin: {self._plugin_id}\n" +"Access is denied." +msgstr "" +"Não foi possível matar o processo EnginePlugin: {self._plugin_id}\n" +"Acesso negado." + +msgctxt "@info" +msgid "Unable to reach the UltiMaker account server." +msgstr "Não foi possível contactar o servidor de contas da UltiMaker." + +msgctxt "@text" +msgid "Unable to read example data file." +msgstr "Não foi possível ler o arquivo de dados de exemplo." + +msgctxt "@info:title" +msgid "Unable to slice" +msgstr "Não foi possível fatiar" + +msgctxt "@label:PrintjobStatus" +msgid "Unable to slice" +msgstr "Não foi possível fatiar" + +msgctxt "@info:status" +msgid "Unable to slice because the prime tower or prime position(s) are invalid." +msgstr "Não foi possível fatiar porque a torre de purga ou posição de purga são inválidas." + +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "Não foi possível fatiar porque há objetos associados com o Extrusor desabilitado %s." + +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" +msgstr "Não foi possível fatiar devido a alguns ajustes por modelo. Os seguintes ajustes têm erros em um dos modelos ou mais: {error_labels}" + +msgctxt "@info:status" +msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." +msgstr "Não foi possível fatiar com o material atual visto que é incompatível com a máquina ou configuração selecionada." + +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice with the current settings. The following settings have errors: {0}" +msgstr "Não foi possível fatiar com os ajustes atuais. Os seguintes ajustes têm erros: {0}" + +msgctxt "@info" +msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." +msgstr "Não foi possível iniciar processo de login. Verifique se outra tentativa de login ainda está ativa." + +msgctxt "@label:status" +msgid "Unavailable" +msgstr "Indisponível" + +msgctxt "@label" +msgid "Unavailable printer" +msgstr "Impressora indisponível" + +msgctxt "@action:inmenu menubar:edit" +msgid "Ungroup Models" +msgstr "Desagrupar Modelos" + +msgctxt "@button" +msgid "Uninstall" +msgstr "Desinstalar" + +msgctxt "@title:column Unit of measurement" +msgid "Unit" +msgstr "Unidade" + +msgctxt "@label Description for development tool" +msgid "Universal build system configuration" +msgstr "Configuração de sistema universal de construção" + +msgctxt "@label" +msgid "Unknown" +msgstr "Desconhecido" + +msgctxt "@label unknown version of Cura" +msgid "Unknown" +msgstr "Desconhecida" + +msgctxt "@label:property" +msgid "Unknown Author" +msgstr "Autor Desconhecido" + +msgctxt "@label:property" +msgid "Unknown Package" +msgstr "Pacote Desconhecido" + +#, python-brace-format +msgctxt "@error:send" +msgid "Unknown error code when uploading print job: {0}" +msgstr "Código de erro desconhecido ao transferir trabalho de impressão: {0}" + +msgctxt "@text" +msgid "Unknown error." +msgstr "Erro desconhecido." + +msgctxt "@label" +msgid "Unlink Material" +msgstr "Desvincular Material" + +msgctxt "@label:status" +msgid "Unreachable" +msgstr "Inacessivel" + +msgctxt "@label" +msgid "Untitled" +msgstr "Sem Título" + +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "Sem Título" + +msgctxt "@button" +msgid "Update" +msgstr "Atualizar" + +msgctxt "@action" +msgid "Update Firmware" +msgstr "Atualizar Firmware" + +msgctxt "@title" +msgid "Update Firmware" +msgstr "Atualizar Firmware" + +msgctxt "@action:ComboBox Update/override existing profile" +msgid "Update existing" +msgstr "Atualizar existentes" + +msgctxt "@action:tooltip" +msgid "Update profile with current settings/overrides" +msgstr "Atualizar perfil com ajustes/sobreposições atuais" + +msgctxt "@action:button" +msgid "Update profile." +msgstr "Atualizar perfil." + +msgctxt "@info:title" +msgid "Update your printer" +msgstr "Atualize sua impressora" + +msgctxt "@label" +msgid "Updates" +msgstr "Atualizações" + +msgctxt "@label" +msgid "Updating firmware." +msgstr "Atualizando firmware." + +msgctxt "@button" +msgid "Updating..." +msgstr "Atualizando..." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Atualiza configurações do Cura 2.1 para o Cura 2.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Atualiza configurações do Cura 2.2 para o Cura 2.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Atualiza configurações do Cura 2.5 para o Cura 2.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Atualiza configurações do Cura 2.6 para o Cura 2.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Atualiza configuração do Cura 2.7 para o Cura 3.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Atualiza configurações do Cura 3.0 para o Cura 3.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Atualiza configurações do Cura 3.2 para o Cura 3.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Atualiza configuração do Cura 3.3 para o Cura 3.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Atualiza configurações do Cura 3.4 para o Cura 3.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Atualiza configuração do Cura 3.5 para o Cura 4.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Atualiza configurações do Cura 4.0 para o Cura 4.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Atualiza configurações do Cura 4.1 para o Cura 4.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Atualiza configurações do Cura 4.11 para o Cura 4.12." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Atualiza configurações do Cura 4.13 para o Cura 5.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Atualiza configurações do Cura 4.2 para o Cura 4.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Atualiza configurações do Cura 4.3 para o Cura 4.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Atualiza configurações do Cura 4.4 para o Cura 4.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Atualiza configurações do Cura 4.5 para o Cura 4.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Atualiza configurações do Cura 4.6.0 para o Cura 4.6.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Atualiza configurações do Cura 4.6.2 para o Cura 4.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Atualiza configurações do Cura 4.7 para o Cura 4.8." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Atualiza configurações do Cura 4.8 para o Cura 4.9." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Atualiza configurações do Cura 4.9 para o Cura 4.10." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Atualiza configurações do Cura 5.2 para o Cura 5.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Atualiza configurações do Cura 5.3 para o Cura 5.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Atualiza configurações do Cura 5.4 para o Cura 5.5." + +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Carregar Firmware personalizado" + +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "Transferindo trabalho de impressão para a impressora." + +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "Enviando seu backup..." + +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "Usar uma única instância do Cura" + +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "Use cola para melhor aderência com essa combinação de materiais." + +msgctxt "@label" +msgid "User Agreement" +msgstr "Contrato de Usuário" + +msgctxt "@label Description for application dependency" +msgid "Utility functions, including an image loader" +msgstr "Funções de utilidade, incluindo um carregador de imagem" + +msgctxt "@label Description for application dependency" +msgid "Utility library, including Voronoi generation" +msgstr "Biblioteca de utilidade, incluindo geração Voronoi" + +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Atualização de Versão de 2.1 para 2.2" + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Atualização de Versão de 2.2 para 2.4" + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Atualização de Versão de 2.5 para 2.6" + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Atualização de Versão de 2.6 para 2.7" + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Atualização de Versão de 2.7 para 3.0" + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Atualização de Versão 3.0 para 3.1" + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Atualização de Versão de 3.2 para 3.3" + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Atualização de Versão de 3.3 para 3.4" + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Atualização de Versão de 3.4 para 3.5" + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Atualização de Versão de 3.5 para 4.0" + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Atualização de Versão de 4.0 para 4.1" + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Atualização de Versão de 4.1 para 4.2" + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Atualização de Versão de 4.11 para 4.12" + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Atualização de Versão de 4.13 para 5.0" + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Atualização de Versão de 4.2 para 4.3" + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Atualização de Versão de 4.3 para 4.4" + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Atualização de Versão de 4.4 para 4.5" + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Atualização de Versão de 4.5 para 4.6" + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Atualização de Versão de 4.6.0 para 4.6.2" + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Atualização de Versão de 4.6.2 para 4.7" + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Atualização de Versão de 4.7 para 4.8" + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Atualização de Versão de 4.8 para 4.9" + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Atualização de Versão de 4.9 para 4.10" + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Atualização de Versão de 5.2 para 5.3" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "Atualização de Versão de 5.3 para 5.4" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "Atualização de Versão de 5.4 para 5.5" + +msgctxt "@button" +msgid "View printers in Digital Factory" +msgstr "Ver impressoras na Digital Factory" + +msgctxt "@label" +msgid "View type" +msgstr "Tipo de Visão" + +msgctxt "@label link to technical assistance" +msgid "View user manuals online" +msgstr "Ver manuais de usuário online" + +msgctxt "@label" +msgid "Viewport behavior" +msgstr "Comportamento da área de visualização" + +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "Ajustes Visíveis" + +msgctxt "@button" +msgid "Visit plug-in website" +msgstr "Visitar sítio web de complementos" + +msgctxt "@tooltip:button" +msgid "Visit the UltiMaker website." +msgstr "Visita o website da UltiMaker." + +msgctxt "@label" +msgid "Visual" +msgstr "Visual" + +msgctxt "@label" +msgid "Waiting for" +msgstr "Esperando por" + +msgctxt "@label" +msgid "Waiting for Cloud response" +msgstr "Aguardando resposta da Nuvem" + +msgctxt "@button" +msgid "Waiting for new printers" +msgstr "Esperando por novas impressoras" + +msgctxt "@button" +msgid "Want more?" +msgstr "Quer mais?" + +msgctxt "@info:title" +msgid "Warning" +msgstr "Aviso" + +#, python-brace-format +msgctxt "@info:status" +msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." +msgstr "Alerta: o perfil não está visível porque seu tipo de qualidade '{0}' não está disponível para a configuração atual. Altere para uma combinação de material/bico que possa usar este tipo de qualidade." + +msgctxt "@text:window" +msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." +msgstr "Encontramos um ou mais arquivos de G-Code entre os arquivos que você selecionou. Você só pode abrir um arquivo de G-Code por vez. Se você quiser abrir um arquivo de G-Code, por favor selecione somente um." + +msgctxt "@text:window" +msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" +msgstr "Encontramos um ou mais arquivo(s) de projeto entre os arquivos que você selecionou. Você só pode abrir um arquivo de projeto por vez. Sugerimos que somente importe modelos destes arquivos. Gostaria de prosseguir?" + +msgctxt "@info" +msgid "Webcam feeds for cloud printers cannot be viewed from UltiMaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam." +msgstr "Fontes de webcam para impressoras de nuvem não podem ser vistas pelo UltiMaker Cura. Clique em \"Gerenciar impressora\" para visitar a Ultimaker Digital Factory e visualizar esta webcam." + +msgctxt "@button" +msgid "Website" +msgstr "Sítio web" + +msgctxt "@label" +msgid "What printer would you like to setup?" +msgstr "Que impressora você gostaria de configurar?" + +msgctxt "@info:tooltip" +msgid "What type of camera rendering should be used?" +msgstr "Que tipo de renderização de câmera deve ser usada?" + +msgctxt "@action:inmenu menubar:help" +msgid "What's New" +msgstr "Novidades" + +msgctxt "@label" +msgid "What's New" +msgstr "O Que Há de Novo" + +msgctxt "@title:window" +msgid "What's New" +msgstr "Novidades" + +msgctxt "@info:tooltip" +msgid "When checking for updates, check for both stable and for beta releases." +msgstr "Ao procurar por atualizações, fazer para versões estáveis ou beta." + +msgctxt "@info:tooltip" +msgid "When checking for updates, only check for stable releases." +msgstr "Ao procurar por atualizações, somente o fazer para versões estáveis." + +msgctxt "@info:tooltip" +msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." +msgstr "Quando você faz alterações em um perfil e troca para um diferent, um diálogo aparecerá perguntando se você quer manter ou aplicar suas modificações, ou você pode forçar um comportamento default e não ter o diálogo." + +msgctxt "@button" +msgid "Why do I need to sync material profiles?" +msgstr "Por que eu preciso sincronizar perfis de material?" + +msgctxt "@action:label" +msgid "Width (mm)" +msgstr "Largura (mm)" + +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Escreve em formato G-Code comprimido." + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Escreve em formato G-Code." + +msgctxt "@label" +msgid "X (Width)" +msgstr "X (largura)" + +msgctxt "@label" +msgid "X max" +msgstr "X máx" + +msgctxt "@label" +msgid "X min" +msgstr "X mín" + +msgctxt "name" +msgid "X-Ray View" +msgstr "Visão de Raios-X" + +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "Visão de Raios-X" + +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "Arquivo X3D" + +msgctxt "name" +msgid "X3D Reader" +msgstr "Leitor de X3D" + +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (Profundidade)" + +msgctxt "@label" +msgid "Y max" +msgstr "Y máx" + +msgctxt "@label" +msgid "Y min" +msgstr "Y mín" + +msgctxt "@info" +msgid "Yes" +msgstr "Sim" + +msgctxt "@label" +msgid "" +"You are about to remove all printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr "" +"Você está prestes a remover todas as impressoras do Cura. Esta ação não pode ser desfeita.\n" +"Tem certeza que quer continuar?" + +#, python-brace-format +msgctxt "@label" +msgid "" +"You are about to remove {0} printer from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgid_plural "" +"You are about to remove {0} printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr[0] "" +"Você está prestes a remover {0} impressora do Cura. Esta ação não pode ser desfeita.\n" +"Tem certeza que quer continuar?" +msgstr[1] "" +"Você está prestes a remover {0} impressoras do Cura. Esta ação não pode ser desfeita.\n" +"Tem certeza que quer continuar?" + +msgctxt "@info:status" +msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." +msgstr "Você está tentando conectar a uma impressora que não está rodando UltiMaker Connect. Por favor atualize a impressora para o firmware mais recente." + +#, python-brace-format +msgctxt "@info:status" +msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." +msgstr "Você está tentando conectar a {0} mas ele não é host de um grupo. Você pode visitar a página web para configurá-lo como host de grupo." + +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "Você não tem nenhum backup atualmente. Use o botão 'Backup Agora' para criar um." + +msgctxt "@text:window, %1 is a profile name" +msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." +msgstr "Você personalizou alguns ajustes de perfil. Gostaria de manter estes ajustes alterados após trocar perfis? Alternativamente, você pode descartar as alterações para carregar os defaults de '%1'." + +msgctxt "@label" +msgid "You need to accept the license to install the package" +msgstr "Você precisa aceitar a licença para que o pacote possa ser instalado" + +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "Você precisa sair e reiniciar {} para que as alterações tenham efeito." + +msgctxt "@dialog:info" +msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" +msgstr "Você precisará reiniciar o Cura antes que seu backup seja restaurado. Deseja fechar o Cura agora?" + +msgctxt "@info:status" +msgid "You will receive a confirmation via email when the print job is approved" +msgstr "Você receberá uma confirmação por email quando o trabalho de impressão for aprovado" + +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "Seu backup terminou de ser enviado." + +msgctxt "@action:label" +msgid "Your current settings match the selected profile." +msgstr "Seus ajustes atuais coincidem com o perfil selecionado." + +msgctxt "@info" +msgid "Your new printer will automatically appear in Cura" +msgstr "Sua nova impressora vai automaticamente aparecer no Cura" + +#, python-brace-format +msgctxt "@info:status" +msgid "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "" +"Sua impressora {printer_name} poderia estar conectada via nuvem.\n" +" Gerencie sua fila de impressão e monitore suas impressoras de qualquer lugar conectando sua impressora à Digital Factory" + +msgctxt "@label" +msgid "Z" +msgstr "Z" + +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (Altura)" + +msgctxt "@label Description for application dependency" +msgid "ZeroConf discovery library" +msgstr "Biblioteca de descoberta 'ZeroConf'" + +msgctxt "@action:button" +msgid "Zoom toward mouse direction" +msgstr "Ampliar na direção do mouse" + +msgctxt "@info:tooltip" +msgid "Zooming towards the mouse is not supported in the orthographic perspective." +msgstr "Ampliar com o mouse não é suportado na perspectiva ortográfica." + +msgctxt "@text Placeholder for the username if it has been deleted" +msgid "deleted user" +msgstr "usuário removido" + +msgctxt "@item:inlistbox" +msgid "glTF Binary" +msgstr "Binário glTF" + +msgctxt "@item:inlistbox" +msgid "glTF Embedded JSON" +msgstr "glTF Embutido JSON" + +msgctxt "@label" +msgid "max" +msgstr "máx" + +msgctxt "@label" +msgid "min" +msgstr "mín" + +msgctxt "@label" +msgid "mm" +msgstr "mm" + +msgctxt "@info:status" +msgid "today" +msgstr "hoje" + +msgctxt "@info:status" +msgid "tomorrow" +msgstr "amanhã" + +msgctxt "@label" +msgid "version: %1" +msgstr "versão: %1" + +#, python-brace-format +msgctxt "@message {printer_name} is replaced with the name of the printer" +msgid "{printer_name} will be removed until the next account sync." +msgstr "{printer_name} será removida até a próxima sincronização de conta." + +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "{} complementos falharam em baixar" + +#, python-brace-format +#~ msgctxt "info:{0} gets replaced by a number of printers" +#~ msgid "... and {0} other" +#~ msgid_plural "... and {0} others" +#~ msgstr[0] "... e {0} outra" +#~ msgstr[1] "... e {0} outras" + +#~ msgctxt "@tooltip:button" +#~ msgid "Become a 3D printing expert with UltiMaker e-learning." +#~ msgstr "Torne-se um especialista em impressão 3D com UltiMaker e-learning." + +#~ msgctxt "@info:status" +#~ msgid "Cura does not accurately display layers when Wire Printing is enabled." +#~ msgstr "O Cura não exibe camadas de forma precisa quando Impressão em Arame está habilitada." + +#~ msgctxt "@label" +#~ msgid "Default" +#~ msgstr "Default" + +#~ msgctxt "@label" +#~ msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." +#~ msgstr "Habilita imprimir um brim (bainha) ou raft (jangada). Adicionará uma área chata em volta ou sob o objeto que é fácil de remover após a impressão ter finalizado." + +#~ msgctxt "@error:zip" +#~ msgid "Error writing 3mf file." +#~ msgstr "Erro ao escrever arquivo 3mf." + +#~ msgctxt "@label" +#~ msgid "Hex" +#~ msgstr "Hexa" + +#~ msgctxt "@action:button" +#~ msgid "Install Materials" +#~ msgstr "Instalar Materiais" + +#~ msgctxt "@title" +#~ msgid "Install missing Materials" +#~ msgstr "Instalar Materiais faltantes" + +#~ msgctxt "@action:button" +#~ msgid "Install missing material" +#~ msgstr "Instalar material faltante" + +#~ msgctxt "@info:title" +#~ msgid "Material profiles not installed" +#~ msgstr "Perfis de material não instalados" + +#~ msgctxt "@info:title" +#~ msgid "Simulation View" +#~ msgstr "Visão Simulada" + +#~ msgctxt "@label" +#~ msgid "The material used in this project is currently not installed in Cura.
    Install the material profile and reopen the project." +#~ msgstr "O material usado neste projeto não está instalado atualmente no Cura.
    Instale o perfil de material e reabra o projeto." + +#~ msgctxt "@info:status" +#~ msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." +#~ msgstr "O material usado neste projeto depende de algumas definições de material não disponíveis no Cura e isto pode produzir resultados de impressão indesejáveis. Recomendamos altamente instalar o pacote completo de material do Marketplace." + +#~ msgctxt "@error:zip" +#~ msgid "The operating system does not allow saving a project file to this location or with this file name." +#~ msgstr "O sistema operacional não permite salvar um arquivo de projeto nesta localização ou com este nome de arquivo." diff --git a/resources/i18n/pt_BR/fdmprinter.def.json.po b/resources/i18n/pt_BR/fdmprinter.def.json.po index 0f98cc5b99d..aeccec191c0 100644 --- a/resources/i18n/pt_BR/fdmprinter.def.json.po +++ b/resources/i18n/pt_BR/fdmprinter.def.json.po @@ -1,6865 +1,6865 @@ -# Cura -# Copyright (C) 2022 Ultimaker B.V. -# This file is distributed under the same license as the Cura package. -# -msgid "" -msgstr "" -"Project-Id-Version: Cura 5.0\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-15 12:26+0000\n" -"PO-Revision-Date: 2023-10-23 06:17+0200\n" -"Last-Translator: Cláudio Sampaio \n" -"Language-Team: Cláudio Sampaio \n" -"Language: pt_BR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.3.2\n" - -msgctxt "ironing_inset description" -msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." -msgstr "A distância a manter das arestas do modelo. Passar a ferro as arestas da malha podem resultar em um aspecto entalhado da sua peça." - -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "Um fator indicando em quanto o filamento é comprimido entre o alimentador do hotend e o bico, usado para determinar em quanto mover o material na troca de filamento." - -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Uma lista de direções inteiras de filete a usar quando as camadas superiores usam o padrão de linhas ou ziguezague. Elementos desta lista são usados sequencialmente de acordo com o progresso das camadas e quando se chega ao fim da lista, se volta ao começo. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia que significa o uso dos ângulos default (45 e 135 graus)." - -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Uma lista de direções de linha inteiras para usar quando as camadas superiores e inferiores usarem os padrões de linha ou ziguezague. Elementos desta lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela inicia novamente. Os itens da lista são separados por vírgulas e a lita inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (45 e 135 graus)." - -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar o ângulo default de 0 graus." - -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (alternando entre 45 e 135 graus se as interfaces forem grossas, ou 90 se não)." - -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (alternando entre 45 e 135 graus se as interfaces forem grossas, ou 90 se não)." - -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (alternando entre 45 e 135 graus se as interfaces forem grossas, ou 90 se não)." - -msgctxt "infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." -msgstr "Uma lista de direções de filetes em números inteiros a usar. Elementos da lista são usados sequencialmente de acordo com o progresso das camadas e quando o fim da lista é alcançado, ela volta ao começo. Os itens da lista são separados por vírgula e a lista inteira é contida em colchetes. O default é uma lista vazia que implica em usar os ângulos default tradicionais (45 e 135 graus para os padrões linha e ziguezague e 45 graus para todos os outros padrões)." - -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "Uma lista de polígonos com áreas em que o bico é proibido de entrar." - -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "Uma lista de polígonos com áreas em que a cabeça de impressão é proibida de entrar." - -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "Uma peça completamente contida em outra peça pode gerar um brim externo que toca o interior da outra parte. Este ajuste remove todo o brim dentro desta distância dos buracos internos." - -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "Uma recomendação de quão distante galhos podem se mover dos pontos que eles suportam. Os galhos podem violar este valor para alcançar seu destino (plataforma de impressão ou parte chata do modelo). Abaixar este valor pode fazer o suporte ficar mais estável, mas aumentará o número de galhos (e por causa disso, ambos o uso de material e o tempo de impressão)" - -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Posição Absoluta de Purga do Extrusor" - -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Máximo Variação das Camadas Adaptativas" - -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Tamanho da Topografia de Camadas Adaptativas" - -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Tamanho de Passo da Variação das Camadas Adaptativas" - -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "Camadas adaptativas fazem a computação das alturas de camada depender da forma do modelo." - -msgctxt "infill_wall_line_count description" -msgid "" -"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" -"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "" -"Adiciona paredes extras em torno da área de preenchimento. Tais paredes podem fazer filetes de contorno de topo e base afundarem menos, o que significa que você precisará de menos camadas de contorno de topo e base para a mesma qualidade, à custa de algum material extra.\n" -"Este recurso pode combinar com o Conectar Polígonos de Preenchimento para conectar todo o preenchimento em um único caminho de extrusão sem a necessidade de percursos ou retrações se os ajustes forem consistentes." - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Aderência" - -msgctxt "material_adhesion_tendency label" -msgid "Adhesion Tendency" -msgstr "Tendência à Aderência" - -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Ajusta a quantidade de sobreposição entre as paredes e (os extremos de) linhas centrais do contorno, como uma porcentagem das larguras de filete de contorno e a parede mais interna. Uma sobreposição leve permite que as paredes se conectem firmemente ao contorno. Note que, dadas uma largura de contorno e filete de parede iguais, qualquer porcentagem acima de 50% pode fazer com que algum contorno ultrapasse a parede, pois a este ponto a posição do bico do extrusor de contorno pode já ter passado do meio da parede." - -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Ajusta a quantidade de sobreposição entre as paredes e (os extermos de) linhas centrais do contorno. Uma sobreposição pequena permite que as paredes se conectem firmemente ao contorno. Note que, dados uma largura de contorno e filete de parede iguais, qualquer valor maior que metade da largura da parede pode fazer com que o contorno ultrapasse a parede, pois a este ponto a posição do bico do extrusor de contorno pode já ter passado do meio da parede." - -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Ajusta a densidade de preenchimento da impressão." - -msgctxt "support_interface_density description" -msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Ajusta a densidade dos topos e bases da estrutura de suporte. Um valor maior resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." - -msgctxt "support_tree_top_rate description" -msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "Ajusta a densidade da estrutura de suporte usada para gerar as pontas dos galhos. Um valor mais alto resulta em melhores seções pendentes, mas os suportes ficam mais difíceis de remover. Use Teto de Suporte para valores muito altos ou assegure-se que a densidade de suporte é similarmente alta no topo." - -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Ajusta a densidade da estrutura de suporte. Um valor mais alto resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Ajusta o diâmetro do filamento utilizado. Acerte este valor com o diâmetro real do filamento." - -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "Ajusta a colocação das estruturas de suporte. Pode ser ajustada para suportes que somente tocam a mesa de impressão ou suportes em todos os lugares com seções pendentes (incluindo as que não estão pendentes em relação à mesa)." - -msgctxt "prime_tower_wipe_enabled description" -msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." -msgstr "Depois de imprimir a torre de purga com um bico, limpar o material escorrendo do outro bico na torre de purga." - -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "Quando a máquina troca de um extrusor para o outro, sobe-se um pouco em Z para criar um espaço entre o bico e a impressão. Isso impede que o bico escorra material em cima da impressão." - -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Tudo" - -msgctxt "print_sequence option all_at_once" -msgid "All at Once" -msgstr "Todos de Uma Vez" - -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "Todos os ajustes que influenciam a resolução da impressão. Estes ajustes têm um impacto maior na qualidade (e tempo de impressão)" - -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Alternar Parede Adicional" - -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Alternar a Remoção de Malhas" - -msgctxt "material_alternate_walls label" -msgid "Alternate Wall Directions" -msgstr "Alternar Direções de Parede" - -msgctxt "material_alternate_walls description" -msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." -msgstr "Alterna direções de parede a cada camada e reentrância. Útil para materiais que podem acumular stress, como em impressão com metal." - -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "Alumínio" - -msgctxt "machine_always_write_active_tool label" -msgid "Always Write Active Tool" -msgstr "Sempre Escrever a Ferramenta Ativa" - -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "Sempre retrair quando se mover para iniciar uma parede externa." - -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "Deslocamento adicional aplicado para todos os polígonos em cada camada. Valores positivos 'engordam' a camada e podem compensar por furos exagerados; valores negativos a 'emagrecem' e podem compensar por furos pequenos." - -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "Deslocamento adicional aplicado a todos os polígonos da primeira camada. Um valor negativo pode compensar pelo esmagamento da primeira camada conhecido como \"pata de elefante\"." - -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "Quantidade de deslocamento aplicado a todos os polígonos do suporte em cada camada. Valores positivos podem amaciar as áreas de suporte e resultar em suporte mais estável." - -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "Quantidade de deslocamento aplicado às bases do suporte." - -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "Quantidade de deslocamento aplicado aos tetos do suporte." - -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "Quantidade de deslocamento aplicado aos polígonos da interface de suporte." - -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "Quantidade a retrair do filamento tal que ele não escorra durante a sequência de limpeza." - -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "Um adicional ao raio do centro de cada cubo para verificar a borda do modelo, de modo a decidir se este cubo deve ser subdividido. Valores maiores levam a uma cobertura mais espessa de pequenos cubos perto da borda do modelo." - -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Malha Anti-Pendente" - -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Posição Retraída Anti-escorrimento" - -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Velocidade de Retração Anti-escorrimento" - -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "Aplicar o deslocamento de extrusor ao sistema de coordenadas. Afeta todos os extrusores." - -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "Nos lugares em que os modelos tocam, gerar uma estrutura de vigas interligada. Isto melhora a aderência entre modelos, especialmente modelos impressos com materiais diferentes." - -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Evitar Partes Impressas nas Viagens" - -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Evitar Suportes No Percurso" - -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Atrás" - -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Atrás à Esquerda" - -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Atrás à Direita" - -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Ambos" - -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "Ambos se sobrepõem" - -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Camadas Inferiores" - -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Camada Inicial do Padrão da Base" - -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Distância de Expansão do Contorno Inferior" - -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Largura de Remoção do Contorno Inferior" - -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Espessura Inferior" - -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "Densidade de Galho" - -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "Diâmetro de Galho" - -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "Ângulo de Diâmetro de Galho" - -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Posição Retraída de Preparação de Quebra" - -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Velocidade de Retração de Preparação de Quebra" - -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Temperatura de Quebra de Preparação" - -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Posição Retraída de Quebra" - -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Velocidade de Retração de Quebra" - -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Temperatura de Quebra" - -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Quebrar Suportes em Pedaços" - -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Velocidade de Ventoinha da Ponte" - -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Ponte Tem Camadas Múltiplas" - -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Densidade de Segundo Contorno da Ponte" - -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Velocidade da Ventoinha no Segundo Contorno da Ponte" - -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Fluxo de Segundo Contorno da Ponte" - -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Velocidade de Segundo Contorno da Ponte" - -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Densidade do Contorno de Ponte" - -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Fluxo do Contorno de Ponte" - -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Velocidade do Contorno de Ponte" - -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Limiar de Suporte de Contorno de Ponte" - -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Densidade Máxima do Preenchimento Esparso de Ponte" - -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Densidade de Terceiro Contorno da Ponte" - -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Velocidade da Ventoinha no Terceiro Contorno da Ponte" - -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Fluxo de Terceiro Contorno da Ponte" - -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Velocidade de Terceiro Contorno da Ponte" - -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Desengrenagem de Parede de Ponte" - -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Fluxo da Parede de Ponte" - -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Velocidade da Parede de Ponte" - -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Brim" - -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Distância do Brim" - -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "Brim Dentro da Margem a Evitar" - -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Contagem de Linhas do Brim" - -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Brim Somente Para Fora" - -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Brim Substitui Suporte" - -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Largura do Brim" - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Aderência à Mesa" - -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Extrusor de Aderência à Mesa" - -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Tipo de Aderência da Mesa de Impressão" - -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Material da Plataforma de Impressão" - -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Forma da Mesa" - -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Temperatura da Mesa de Impressão" - -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Temperatura da Mesa de Impressão da Camada Inicial" - -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Temperatura do Volume de Impressão" - -msgctxt "prime_tower_brim_enable description" -msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "" - -msgctxt "center_object label" -msgid "Center Object" -msgstr "Centralizar Objeto" - -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "Altera a geometria do modelo a ser impresso de tal modo que o mínimo de suporte seja exigido. Seções pendentes agudas serão torcidas pra ficar mais verticais. Áreas de seções pendentes profundas se tornarão mais rasas." - -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "Permite escolher entre as técnicas para geração de suporte. Suporte \"normal\" cria a estrutura de suporte diretamente abaixo das seções pendentes e vai em linha reta pra baixo. Suporte \"em árvore\" cria galhos na direção das seções pendentes, suportando o modelo nas pontas destes, e permitndo que se distribuam em torno do modelo para apoiá-lo na plataforma de impressão tanto quanto possível." - -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Velocidade de Desengrenagem" - -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Volume de Desengrenagem" - -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "A desengrenagem ou 'coasting' troca a última parte do caminho de uma extrusão pelo caminho sem extrudar. O material escorrendo é usado para imprimir a última parte do caminho de extrusão de modo a reduzir fiapos." - -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Modo de Combing" - -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "O Combing mantém o bico dentro de áreas já impressas ao fazer o percurso. Isto causa movimentações de percurso um pouco mais demoradas mas reduz a necessidade de retrações. Se o combing estiver desligado, o material sofrerá retração eo bico se moverá em linha reta até o próximo ponto. É possível também evitar combing sobre contornos inferiores e superiores ou somente fazer combing dentro do preenchimento." - -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Ajustes de Linha de Comando" - -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Ângulo de Suporte Cônico" - -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Largura Mínima do Suporte Cônico" - -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Conectar Linhas de Preenchimento" - -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Conectar Polígonos do Preenchimento" - -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Conectar Linhas de Suporte" - -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Conectar os Ziguezagues do Suporte" - -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Conectar Polígonos do Topo e Base" - -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "Conecta os caminhos de preenchimentos onde estiverem próximos um ao outro. Para padrões de preenchimento que consistam de vários polígonos fechados, a habilitação deste ajuste reduz bastante o tempo de percurso." - -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "Conecta os ziguezagues. Isto aumentará a força da estrutura de suporte em ziguezague." - -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "Conecta os extremos das linhas de suporte juntos. Habilitar este ajuste pode tornar seu suporte mais robusto e reduzir subextrusão, mas gastará mais material." - -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "Conecta as extremidades onde o padrão de preenchimento toca a parede interna usando uma linha que segue a forma da parede interna. Habilitar este ajuste pode fazer o preenchimento aderir melhor às paredes e reduzir o efeito do preenchimento na qualidade de superfícies verticais. Desabilitar este ajuda diminui a quantidade de material usado." - -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "Conectar caminhos de contorno da base e topo quando estiverem próximos entre si. Para o padrão concêntrico, habilitar este ajuste reduzirá bastante o tempo de percurso, mas por as conexões poderem acontecer no meio do preenchimento, este recurso pode reduzir a qualidade da superfície superior." - -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "Controla se os cantos do contorno do modelo influenciam a posição da costura. Nenhum significa que os cantos não terão influência na posição da costura. Ocultar Costura torna mais provável que a costura ocorra em um canto interior. Expôr Costura torna mais provável que a costura ocorra em um canto exterior. Ocultar ou Expôr Costura torna mais provável que a costura ocorra em um canto interior ou exterior. Ocultação Inteligente permite tanto cantos interiores quanto exteriores, mas escolhe os interiores mais frequentemente se apropriado." - -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "Converte cada file de preenchimento para este número de filetes. Os filetes extras não se cruzam, se evitam. Isto torna o preenchimento mais rígido, mas aumenta o tempo de impressão e uso do material." - -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Velocidade de Resfriamento" - -msgctxt "cooling description" -msgid "Cooling" -msgstr "Refrigeração" - -msgctxt "cooling label" -msgid "Cooling" -msgstr "Refrigeração" - -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Cruzado" - -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Cruzado" - -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "Cruzado 3D" - -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Tamanho de Bolso do Cruzado 3D" - -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Imagem de Densidade de Preenchimento Cruzado para Suporte" - -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Imagem de Densidade do Preenchimento Cruzado" - -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Material Cristalino" - -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Cúbico" - -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Subdivisão Cúbica" - -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Cobertura de Subdivisão Cúbica" - -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Malha de Corte" - -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "Dados relacionando fluxo de material (em mm³ por segundo) a temperatura (graus Celsius)." - -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Aceleração Default" - -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Temperatura Default da Plataforma de Impressão" - -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Jerk Default do Filamento" - -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Temperatura Default de Impressão" - -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Jerk Default nos eixos X-Y" - -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "O Jerk Default em Z" - -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "O valor default de jerk para movimentos no plano horizontal." - -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "O valor default de jerk para movimento na direção Z." - -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "O valor default de jerk para movimentação do filamento." - -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "Detectar pontes e modificar a velocidade de impressão, de fluxo e ajustes de fan onde elas forem detectadas." - -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "Determina a ordem na qual paredes são impressas. Imprimir as paredes externas primeiro ajuda na acuracidade dimensional, visto que falhas das paredes internas não poderão propagar externamente. No entanto, imprimi-las no final ajuda a haver melhor empilhamento quando seções pendentes são impressas. Quando há uma quantidade ímpar de paredes internas totais, a 'última linha central' é sempre impressa por último." - -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "Determina a prioridade desta malha ao considerar múltiplas malhas de preenchimento sobrepostas. Áreas onde múltiplas malhas de preenchimento se sobrepõem terão os ajustes da malha com a maior prioridade. Uma malha de preenchimento com prioridade maior modificará o preenchimento tanto das malhas de preenchimento com prioridade menor quanto das malhas normais." - -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "Determina quando uma camada do preenchimento relâmpago deve suportar algo sobre si. Medido no ângulo de acordo com a espessura da camada." - -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "Determina quando a camada de preenchimento relâmpago deve suportar o modelo sobre si. Medido no ângulo de acordo com a espessura." - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diâmetro" - -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "Aumento de Diâmetro para o Modelo" - -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "O diâmetro que cada galho tenta alcançar quando se aproxima da plataforma de impressão. Melhora aderência à plataforma." - -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "Diferentes opções que ajudam a melhorar a extrusão e a aderência à plataforma de impressão. Brim (bainha) adiciona uma camada única e chata em volta da base de seu modelo para impedir warping. Raft (balsa) adiciona uma grade densa com 'teto' abaixo do modelo. Skirt (saia) é uma linha impressa em volta do modelo, mas não conectada ao modelo, para apenas iniciar o processo de extrusão." - -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Áreas Proibidas" - -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "Distância entre as linhas de preenchimento impressas. Este ajuste é calculado pela densidade de preenchimento e a largura de extrusão do preenchimento." - -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "Distância entre os filetes da camada inicial da camada de suporte. Este ajuste é calculado pela densidade de suporte." - -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "Distância entre os filetes de impressão da base de suporte. Este ajuste é calculado pela densidade da Base de Suporte, mas pode ser ajustado separadamente." - -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "Distância entre os filetes de impressão do teto de suporte. Este ajuste é calculado pela Densidade do Teto de Suporte mas pode ser ajustado separadamente." - -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "Distância entre as linhas impressas da estrutura de suporte. Este ajuste é calculado a partir da densidade de suporte." - -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." -msgstr "" - -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "Distância do topo do suporte à impressão." - -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." -msgstr "" - -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "Distância do percurso inserido após cada linha de preenchimento, para fazer o preenchimento aderir melhor às paredes. Esta opção é similar à sobreposição de preenchimento mas sem extrusão e somente em uma extremidade do filete de preenchimento." - -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "Distância do percurso inserido após a parede externa para esconder melhor a costura em Z." - -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "Distância da Cobertura de Trabalho da impressão nas direções X e Y." - -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "Distância da cobertura de escorrimento da impressão nas direções X e Y." - -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "Distância da estrutura de suporte da seção pendente nas direções X/Y." - -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "Distância da estrutura de suporte até a impressão nas direções X e Y." - -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Pontos de distância são deslocados para suavizar o caminho" - -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Pontos de distância são deslocados para suavizar o caminho" - -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "Não gerar preenchimento para áreas menores que esta (usar contorno)." - -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Altura da Cobertura de Trabalho" - -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Limitação da Cobertura de Trabalho" - -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Distância X/Y da Cobertura de Trabalho" - -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Malha de Suporte Abaixo" - -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Extrusão Dual" - -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Elíptica" - -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Habilitar Controle de Aceleração" - -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Habilitar Ajustes de Ponte" - -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Habilitar Desengrenagem" - -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Habilitar Suporte Cônico" - -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Habilitar Cobertura de Trabalho" - -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "Habilitar Movimento Fluido" - -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Habilitar Passar a Ferro" - -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Habilitar Controle de Jerk" - -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Habilitar Controle de Temperatura do Bico" - -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Habilitar Cobertura de Escorrimento" - -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "Habilitar Massa de Purga" - -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Habilitar Torre de Purga" - -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Habilitar Refrigeração de Impressão" - -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Habilitar Retração" - -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Habilitar Brim de Suporte" - -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Habilitar Base de Suporte" - -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Habilitar Interface de Suporte" - -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Habilitar Teto de Suporte" - -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "Habilitar Aceleração de Percurso" - -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "Habilitar Jerk de Percurso" - -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "Habilita a cobertura exterior de escorrimento. Isso criará uma casca ou cobertura em volta do modelo que ajudará a limpar o segundo bico se estiver na mesma altura do primeiro bico." - -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "Habilita pequenas regiões (até a 'Largura de Teto/Base Pequenos') na camada superior com contorno (exposta ao ar) pra serem preenchidas com paredes ao invés do padrão default." - -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "Permite ajustar o jerk da cabeça de impressão quando a velocidade nos eixos X ou Y muda. Aumentar o jerk pode reduzir o tempo de impressão ao custo de qualidade de impressão." - -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "Permite ajustar a aceleração da cabeça de impressão. Aumentar as acelerações pode reduzir tempo de impressão ao custo de qualidade de impressão." - -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "Habilita as ventoinhas de refrigeração ao imprimir. As ventoinhas aprimoram a qualidade de impressão em camadas de tempo curto de impressão e em pontes e seções pendentes." - -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "G-Code Final" - -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Comprimento de Purga do Fim do Filamento" - -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Velocidade de Purga do Fim do Filamento" - -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "Força que o brim seja impresso em volta do modelo mesmo se este espaço fosse ser ocupado por suporte. Isto substitui algumas regiões da primeira camada de suporte por regiões de brim." - -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "Em Todo Lugar" - -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Exclusivo" - -msgctxt "experimental label" -msgid "Experimental" -msgstr "Experimental" - -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Expôr Costura" - -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Costura Extensa" - -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "Costura Extensa tenta costurar furos abertos na malha fechando o furo com polígonos que o tocam. Esta opção pode adicionar bastante tempo ao fatiamento das peças." - -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "Contagem de Paredes de Preenchimento Extras" - -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Contagem de Paredes Extras de Contorno" - -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "Material extra a avançar depois da troca de bico." - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Posição X da Purga do Extrusor" - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Posição Y da Purga do Extrusor" - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Posição Z de Purga do Extrusor" - -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Extrusores Compartilham Aquecedor" - -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Extrusores Compartilham o Bico" - -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Modificador de Velocidade de Resfriamento de Extrusão" - -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "Fator de correção de largura de extrusão baseada na velocidade. Em 0%, a velocidade de movimento é mantida constante na Velocidade de Impressão. Em 100%, a velocidade de movimento é ajustada de forma que o fluxo (em mm³/s) seja mantido constante, isto é, filetes de metade da Largura de Filete normal são impressos duas vezes mais rápido e filetes duas vezes mais espessos são impressos na metade da velocidade. Um valor mais alto que 100% pode ajudar a compensar pela maior pressão necessária para extrudar filetes espessos." - -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Velocidade da Ventoinha" - -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Sobrepor Velocidade de Ventoinha" - -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "Contornos de aspectos menores que este comprimento serão impressos usando a Velocidade de Aspecto Pequeno." - -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Recursos que não foram completamente desenvolvidos ainda." - -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Diâmetro da Engrenagem de Alimentação" - -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Temperatura de Impressão Final" - -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Retração de Firmware" - -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Extrusor de Suporte da Primeira Camada" - -msgctxt "material_flow label" -msgid "Flow" -msgstr "Fluxo" - -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Raio de Equalização de Fluxo" - -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Fator de Compensação da Taxa de Fluxo" - -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Máximo Deslocamento de Extrusão de Compensação de Taxa de Fluxo" - -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Gráfico de Fluxo de Temperatura" - -msgctxt "material_flow_layer_0 description" -msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." -msgstr "Compensação de fluxo para a primeira camada; a quantidade de material extrudado na camada inicial é multiplicada por este valor." - -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "Compensação de fluxo nos filetes da base da primeira camada" - -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Compensação de fluxo em filetes de preenchimento." - -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "Compensação de fluxo em filetes do teto ou base do suporte." - -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "Compensação de Fluxo em filetes das áreas no topo da impressão." - -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Compensação de fluxo em filetes de torre de purga." - -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Compensação de Fluxo em filetes de Skirt e Brim." - -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Compensação de fluxo nos filetes da base do suporte." - -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Compensação de fluxo em filetes do teto de suporte." - -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Compensação de fluxo em filetes de estruturas de suporte." - -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "Compensação de fluxo no filete de parede mais externo da primeira camada." - -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "Compensação de fluxo no filete de parede mais externo." - -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "" - -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "" - -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Compensação de fluxo em filetes do topo e base." - -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "Compensação de fluxo nos filetes de parede para todos os filetes exceto o mais externo, mas só para a primeira camada" - -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "Compensação de fluxo em todos os filetes de parede excetuando o mais externo." - -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Compensação de fluxo em filetes das paredes." - -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "Compensação de fluxo: a quantidade de material extrudado é multiplicado por este valor." - -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "Ângulo de Movimento Fluido" - -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "Distância de Deslocamento do Movimento Fluido" - -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "Distância Pequena do Movimento Fluido" - -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Comprimento da Descarga de Purga" - -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Velocidade de Descarga de Purga" - -msgctxt "min_wall_line_width description" -msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." -msgstr "Para estruturas finas por volta de uma ou duas vezes o tamanho do bico, as larguras de linhas precisam ser alteradas para aderir à grossura do modelo. Este ajuste controla a largura mínima de filete permite para as paredes. As larguras mínimas de filete inerentemente também determinam as larguras máximas, já que transicionamos de N pra N+1 parede na grossura de geometria onde paredes N são largas e as paredes N+1 são estreitas. A maior largura possível de parede é duas vezes a Largura Mínima de Filete de Parede." - -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Frente" - -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Frente à Esquerda" - -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Frente à Direita" - -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Completo" - -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Contorno Felpudo" - -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Densidade do Contorno Felpudo" - -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Contorno Felpudo Externo Apenas" - -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Distância de Pontos do Contorno Felpudo" - -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Espessura do Contorno Felpudo" - -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "Sabor de G-Code" - -msgctxt "machine_end_gcode description" -msgid "" -"G-code commands to be executed at the very end - separated by \n" -"." -msgstr "" -"Comandos G-Code a serem executados no final da impressão - separados por \n" -"." - -msgctxt "machine_start_gcode description" -msgid "" -"G-code commands to be executed at the very start - separated by \n" -"." -msgstr "" -"Comandos G-Code a serem executados no início da impressão - separados por \n" -"." - -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "GUID do material. É ajustado automaticamente." - -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Altura do Eixo" - -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "Gerar Estrutura Interligada" - -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Gerar Suporte" - -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "Gera o brim dentro das regiões de preenchimento de suporte da primeira camada. Este brim é impresso sob o suporte, não em volta dele. Habilitar este ajuste aumenta a aderência de suporte à mesa de impressão." - -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "Gera uma interface densa entre o modelo e o suporte. Isto criará um contorno no topo do suporte em que o modelo é impresso e na base do suporte, onde ele fica sobre o modelo." - -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "Gera um bloco denso de material entre a base do suporte e o modelo. Isto criará uma divisória entre o modelo e o suporte." - -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "Gera um bloco denso de material entre o topo do suporte e o modelo. Isto criará uma divisória entre o modelo e o suporte." - -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "Gerar estrutura que suportem partes do modelo que tenham seções pendentes. Sem estas estruturas, tais partes desabariam durante a impressão." - -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Vidro" - -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "Passa sobre a superfície superior uma vez a mais, mas extrudando muito pouco material. Isto serve para derreter mais o plástico em cima, criando uma superfície lisa. A pressão na câmara do bico é mantida alta tal que as rugas na superfície são preenchidas com material." - -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Altura de Passo do Preenchimento Gradual" - -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Passos Graduais de Preenchimento" - -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Altura de Passo do Preenchimento Gradual de Suporte" - -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Passos de Preenchimento Gradual de Suporte" - -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "Gradualmente reduzir até esta temperatura quanto se estiver imprimindo a velocidades reduzidas devidas ao tempo mínimo de camada." - -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Grade" - -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Grade" - -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Grade" - -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Grade" - -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Grade" - -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" - -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "" - -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Giróide" - -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Giróide" - -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "Tem Estabilização de Temperatura do Volume de Impressão" - -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Tem Mesa Aquecida" - -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Velocidade de Aquecimento" - -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Comprimento da Zona de Aquecimento" - -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "Limitação de altura da cobertura de trabalho. Acima desta altura a cobertura não será impressa." - -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Ocultar Costura" - -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Ocultar ou Expor Costura" - -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Expansão Horizontal do Furo" - -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "Diâmetro Máximo da Expansão Horizontal de Furo" - -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "Furos e contornos de partes com diâmetro menor que este serão impressos usando a Velocidade de Aspecto Pequeno." - -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Expansão Horizontal" - -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Compensação de Fator de Encolhimento Horizontal" - -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "Quanto o filamento pode ser esticado antes que quebre, quando aquecido." - -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "De quanto o material precisa ser retraído antes que pare de escorrer." - -msgctxt "flow_rate_extrusion_offset_factor description" -msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." -msgstr "Em quanto mover o filamento para compensar mudanças na taxa de fluxo, como uma porcentagem da distância que o filamento seria movido em um segundo de extrusão." - -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "De quanto o filamento deve ser retraído para se destacar completamente." - -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "Qual a velocidade do material para que seja retraído antes de quebrar em uma retração." - -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "Qual a velocidade do material para que seja retraído durante a troca de filamento sem escorrimento." - -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "Quão rápido purgar o material depois de trocar um carretel vazio por um novo carretel do mesmo material." - -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "Quão rápido purgar o material depois de alternar para um material diferente." - -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "Quanto tempo o material pode ser mantido fora de armazenamento seco com segurança." - -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção X." - -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção Y." - -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção Z." - -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "Quantos passos dos motores resultarão no movimento da engrenagem de alimentação em um milímetro da circunferência." - -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "Quanto material usar para purgar o material anterior do bico (em comprimento de filamento) quando um carretel vazio for trocado por um carretel novo do mesmo material." - -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "Quanto material usar para purgar o material anterior do bico (em comprimento de filamento) quando alternar para um material diferente." - -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "Quanto é assumido que o filamento de cada extrusor tenha retraído da ponta do bico ao completar o script g-code de início da impressora; o valor deve ser igual ou superior ao comprimento da parte comum dos dutos do bico." - -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "Como a interface de suporte a o suporte interagirão quando eles se sobrepuserem. No momento implementado apenas para teto de suporte." - -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "Quão alto um galho tem que ser para ser agregado ao modelo. Previne pequenos nódulos de suporte. Este ajuste é ignorado quando um galho está suportando teto de suporte." - -msgctxt "bridge_skin_support_threshold description" -msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." -msgstr "Se uma região do contorno for suportada por menos do que esta porcentagem de sua área, imprimi-la com os ajustes de ponte. Senão, imprimir usando os ajustes normais de contorno." - -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "Se um segmento do percurso do extrusor se desviar do movimento geral por um ângulo maior que esse, será suavizado." - -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "Se habilitado, a segunda e terceira camadas sobre o ar serão impressas usando os ajustes seguintes. Senão, estas camadas serão impressas com ajustes normais." - -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "Se for detectado que a cabeça de impressão estaria alternando em rápida sucessão entre números diferentes de parede, não fazer tal alternação. Remove transições se elas estiverem próximas até essa distância." - -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Se o Raft estiver habilitado, esta é a área extra do raft em volta do modelo que também faz parte dele. Aumentar esta margem criará um raft mais forte mas também gastará mais material e deixará menos área para sua impressão." - -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "Ignora a geometria interna de volumes sobrepostos dentro de uma malha e imprime os volumes como um único volume. Isto pode ter o efeito não-intencional de fazer cavidades desaparecerem." - -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Incluir Temperatura da Mesa" - -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Incluir Temperaturas de Material" - -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Inclusivo" - -msgctxt "infill description" -msgid "Infill" -msgstr "Preenchimento" - -msgctxt "infill label" -msgid "Infill" -msgstr "Preenchimento" - -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Aceleração do Preenchimento" - -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Preenchimento Antes das Paredes" - -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Densidade do Preenchimento" - -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Extrusor do Preenchimento" - -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Fluxo de Preenchimento" - -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Jerk do Preenchimento" - -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Espessura da Camada de Preenchimento" - -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "Direções de Filetes de Preenchimento" - -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Distância da Linha de Preenchimento" - -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "Multiplicador de Filete de Preenchimento" - -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Largura de Extrusão do Preenchimento" - -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Malha de Preenchimento" - -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Ângulo de Seções Pendentes do Preenchimento" - -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Sobreposição de Preenchimento" - -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "Porcentagem de Sobreposição do Preenchimento" - -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Padrão de Preenchimento" - -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Velocidade de Preenchimento" - -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Suporte do Preenchimento" - -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Otimização de Percurso de Preenchimento" - -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "Distância de Varredura do Preenchimento" - -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "Deslocamento X do Preenchimento" - -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Deslocamento do Preenchimento Y" - -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "Camadas Inferiores Iniciais" - -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Velocidade Inicial da Ventoinha" - -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Aceleração da Camada Inicial" - -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "Fluxo da Base da Camada Inicial" - -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "Diâmetro da Camada Inicial" - -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Fluxo Inicial de Camada" - -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Altura da Primeira Camada" - -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Expansão Horizontal da Camada Inicial" - -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "Fluxo de Parede Interna da Camada Inicial" - -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Jerk da Camada Inicial" - -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Largura de Extrusão da Camada Inicial" - -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "Fluxo de Parede Externa da Camada Inicial" - -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Aceleração de Impressão da Camada Inicial" - -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Jerk de Impressão da Camada Inicial" - -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Velocidade de Impressão da Camada Inicial" - -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Velocidade da Camada Inicial" - -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "Distância de Filetes da Camada Inicial de Suporte" - -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Aceleração de Percurso da Camada Inicial" - -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Jerk de Percurso da Camada Inicial" - -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Velocidade de Percurso da Camada Inicial" - -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Sobreposição em Z das Camadas Iniciais" - -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Temperatura Inicial de Impressão" - -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Aceleração das Paredes Interiores" - -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Extrusor da Parede Interior" - -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Jerk das Paredes Internas" - -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Velocidade da Parede Interior" - -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Fluxo da(s) Parede(s) Interna(s)" - -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Largura de Extrusão das Paredes Internas" - -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "Penetração adicional aplicada ao caminho da parede externa. Se a parede externa for menor que o bico, e impressa depois das paredes internas, use este deslocamento para fazer o orifício do bico se sobrepor às paredes internas ao invés de ao lado de fora do modelo." - -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "De Dentro Pra Fora" - -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "Linhas de interface preferidas" - -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "Interface preferida" - -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "Contagem de Camadas das Vigas Interligadas" - -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "Largura da Viga Interligada" - -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "Prevenção de Fronteira de Interligação" - -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "Profundidade de Interligação" - -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "Orientação da Estrutura de Interligação" - -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Passar a Ferro Somente Camada Mais Alta" - -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Aceleração de Passar a Ferro" - -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Fluxo de Passagem a Ferro" - -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Penetração da Passagem a Ferro" - -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Jerk de Passar a Ferro" - -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Espaçamento de Passagem a Ferro" - -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Padrão de Passagem a Ferro" - -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Velocidade de Passar o Ferro" - -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "Origem é no Centro" - -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "É material de suporte" - -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "Este material é do tipo que se destaca completamente quando aquecido (cristalino), ou é o tipo que produz cadeias de polímero entrelaçadas (não-cristalino)?" - -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "Se esse material é ou não tipicamente usado como material de suporte durante a impressão." - -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "Flutuar movimento apenas nos contornos e não nos furos das peças." - -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Manter Faces Desconectadas" - -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Altura de Camada" - -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "X Inicial da Camada" - -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Y Inicial da Camada" - -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "Espessura de camada da camada de base do raft. Esta camada deve ser grossa para poder aderir firmemente à mesa." - -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "Espessura da camada intermediária do raft." - -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Espessura de camada das camadas superiores do raft." - -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "Evita uma conexão entre linhas de suporte uma vez a cada N milímetros para fazer a estrutura de suporte mais fácil de ser removida." - -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Esquerda" - -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Levantar Cabeça" - -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Relâmpago" - -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Ângulo de Seção Pendente do Preenchimento Relâmpago" - -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Ângulo de Poda do Preenchimento Relâmpago" - -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Ângulo de Retificação do Preenchimento Relâmpago" - -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Ângulo de Suporte do Preenchimento Relâmpago" - -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "Limitar Alcance de Galho" - -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "Limita quão longe cada galho deve percorrer do ponto que ele suporta. Isto pode fazer o suporte mais estável, mas aumentará a quantidade de galhos (e por causa disso, uso de material e tempo de impressão)" - -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "Limitar o volume desta malha para dentro de outras malhas. Você pode usar isto para fazer certas áreas de uma malha imprimirem com ajustes diferentes, incluindo extrusor diferente." - -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Limitado" - -msgctxt "line_width label" -msgid "Line Width" -msgstr "Largura de Extrusão" - -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" - -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Máquina" - -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Profundidade da Mesa" - -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Polígono da Cabeça com Ventoinha" - -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Altura do Volume" - -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Tipo de Máquina" - -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Largura da Mesa" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Ajustes específicos da máquina" - -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Torna Seções Pendentes Imprimíveis" - -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "Faz malhas que tocam uma à outra se sobreporem um pouco. Isto faz com que elas se combinem com mais força." - -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "Faz as áreas de suporte menores na base que na seção pendente." - -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "Cria suport em todo lugar abaixo da malha de suporte de modo que não haja seções pendentes nela." - -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "Faz a posição de purga do extrusor absoluta ao invés de relativa à última posição conhecida da cabeça." - -msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "Faz a primeira e segunda camadas do modelo se sobreporem na direção Z para compensar pelo filamento perdido no vão aéreo. Todos os modelos acima da primeira camada de modelo serão deslocados para baixo por essa distância." - -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Faz as malhas mais adequadas para impressão 3D." - -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" - -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" - -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volumétrico)" - -msgctxt "material description" -msgid "Material" -msgstr "Material" - -msgctxt "material label" -msgid "Material" -msgstr "Material" - -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "GUID do Material" - -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Volume de Material Entre Limpezas" - -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Máxima Distância de Combing Sem Retração" - -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Aceleração Máxima em X" - -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Aceleração Máxima em Y" - -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Aceleração Máxima em Z" - -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "Ângulo Máximo de Galho" - -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Desvio Máximo" - -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Desvio Máximo de Área de Extrusão" - -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Velocidade Máxima da Ventoinha" - -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Aceleração Máxima do Filamento" - -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Ângulo Máximo do Modelo" - -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Área Máxima de Furo de Seções Pendentes" - -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Duração Máxima de Descanso" - -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Resolução Máxima" - -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Contagem de Retrações Máxima" - -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Ângulo Máximo do Contorno para Expansão" - -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Velocidade Máxima de Extrusão" - -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Velocidade Máxima em X" - -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Velocidade Máxima em Y" - -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Velocidade Máxima em Z" - -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Diâmetro Máximo Suportado por Torres" - -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Máxima Resolução de Percurso" - -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "A aceleração máxima para o motor da impressora na direção X" - -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "A aceleração máxima para o motor da impressora na direção Y." - -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "A aceleração máxima para o motor da impressora na direção Z." - -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "Aceleração máxima para a entrada de filamento no hotend." - -msgctxt "bridge_sparse_infill_max_density description" -msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." -msgstr "Densidade máxima do preenchimento considerado esparso. Contorno sobre o preenchimento esparso é considerado não-suportado e portanto será tratado como contorno de ponte." - -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "Diâmetro máximo nas direções X e Y da pequena área que será suportada por uma torre especializada de suporte." - -msgctxt "max_extrusion_before_wipe description" -msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." -msgstr "Material máximo que pode ser extrudado antes que outra limpeza de bico seja iniciada. Se este valor for menor que o volume de material requerido em uma camada, ele não terá efeito nenhum nesta camada, isto é, está limitado a uma limpeza por camada." - -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Sobreposição de Malhas Combinadas" - -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Correções de Malha" - -msgctxt "mesh_position_x label" -msgid "Mesh Position X" -msgstr "Posição X da Malha" - -msgctxt "mesh_position_y label" -msgid "Mesh Position Y" -msgstr "Posição Y da Malha" - -msgctxt "mesh_position_z label" -msgid "Mesh Position Z" -msgstr "Posição Z da Malha" - -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Hierarquia do Processamento de Malha" - -msgctxt "mesh_rotation_matrix label" -msgid "Mesh Rotation Matrix" -msgstr "Matriz de Rotação da Malha" - -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Meio" - -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Largura Mínima do Molde" - -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Tempo Mínima em Temperatura de Espera" - -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Comprimento de Parede de Ponte Mínimo" - -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Largura Mínima de Filete de Parede Par" - -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Janela de Distância de Extrusão Mínima" - -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Mínimo Tamanho de Detalhe" - -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Velocidade Mínima de Alimentação" - -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "Altura Mínima Para O Modelo" - -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Área Mínima para Preenchimento" - -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Tempo Mínimo de Camada" - -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Largura Mínima de Filete de Parede Ímpar" - -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Mínima Circunferência do Polígono" - -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Largura Mínima de Contorno para Expansão" - -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Velocidade Mínima" - -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Área Mínima de Suporte" - -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Área Mínima de Base de Suporte" - -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Área Mínima de Interface de Suporte" - -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Área Mínima de Teto de Suporte" - -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Distância Mínima de Suporte X/Y" - -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Largura Mínima de Filete de Parede Fina" - -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Volume Mínimo Antes da Desengrenagem" - -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Largura Mínina de Filete de Parede" - -msgctxt "minimum_interface_area description" -msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Área mínima para os polígonos da interface de suporte. Polígonos que têm área menor que este valor serão impressos como suporte normal." - -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "Área mínima para polígonos de suporte. Polígonos que tiverem uma área menor que essa não serão gerados." - -msgctxt "minimum_bottom_area description" -msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Área mínima para as bases do suport. Polígonos que têm área menor que este valor serão impressos como suporte normal." - -msgctxt "minimum_roof_area description" -msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Área mínima para os tetos do suporte. Polígonos que têm área menor que este valor serão impressos como suporte normal." - -msgctxt "min_feature_size description" -msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." -msgstr "Espessura mínima de detalhes finos. Detalhes de modelo que forem mais finos que este valor não serão impressos, enquanto que detalhes mais espessos que o Tamanho Mínimo de Detalhe serão aumentados para a Largura Mínima de Filete de Parede." - -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "Largura mínima para a qual a base do suporte cônico é reduzida. Pequenas larguras podem levar a estruturas de suporte instáveis." - -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Molde" - -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Ângulo do Molde" - -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Altura de Teto do Molde" - -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Ordem de Passagem a Ferro Monotônica" - -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Ordem da Superfície Monotônica Superior" - -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Ordem Monotônica Superior/Inferior" - -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "Múltiplas linhas de skirt te ajudam a fazer purga de sua extrusão melhor para pequenos modelos. Se o valor for zero o skirt é desabilitado." - -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "Multiplicador da largura de extrusão da primeira camada. Aumentar este ajuste pode melhorar a aderência à mesa." - -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Fator de Movimento Sem Carga" - -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Sem Contorno nas Lacunas Z" - -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Jeitos não-tradicionais de imprimir seus modelos." - -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Nenhuma" - -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Nenhum" - -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normal" - -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Normal" - -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "Normalmente o Cura tenta costurar pequenos furos na malha e remover partes de uma camada com grandes furos. Habilitar esta opção mantém as partes que ele não consegue costurar. Esta opção deve ser usada como última alternativa quando tudo o mais falhar para produzir G-Code apropriado." - -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Não no Contorno" - -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "Não na Superfície Externa" - -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Ângulo do Bico" - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diâmetro do bico" - -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Áreas Proibidas para o Bico" - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ID do Bico" - -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Comprimento do Bico" - -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Quantidade de Avanço Extra da Troca de Bico" - -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Velocidade de Avanço da Troca de Bico" - -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Velocidade de Retração da Troca de Bico" - -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Distância de Retração da Troca de Bico" - -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Velocidade de Retração da Troca do Bico" - -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Número de extrusores" - -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Número de Extrusores Habilitados" - -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Número de Camadas Mais Lentas" - -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "O número de carros extrusores que estão habilitados; automaticamente ajustado em software" - -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "Número de carros extrusores. Um carro extrusor é a combinação de um alimentador/tracionador, opcional tubo de filamento guiado e o hotend." - -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "Número de vezes com que mover o bico através da varredura." - -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "Número de vezes para reduzir a densidade de preenchimento pela metade quando estiver chegando mais além embaixo das superfícies superiores. Áreas que estão mais perto das superfícies superiores ganham uma densidade maior, numa gradação até a densidade configurada de preenchimento." - -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "Número de vezes para reduzir a densidade de preenchimento de suporte pela metade quando avançando abaixo das superfícies inferiores. Áreas mais próximas ao topo terão maior densidade, até a Densidade de Preenchimento de Suporte." - -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Octeto" - -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Desligado" - -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "Deslocamento aplicado ao objeto na direção X." - -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "Deslocamento aplicado ao objeto na direção Y." - -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "Deslocamento aplicado ao objeto na direção Z. Com isto você pode fazer afundamento do objeto na plataforma." - -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Deslocamento com o Extrusor" - -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "Na plataforma de impressão quando possível" - -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "No modelo se requerido" - -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "Um de Cada Vez" - -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "Somente fazer o Salto Z quando se mover sobre partes impressas que não podem ser evitadas pelo movimento horizontal quando a opção 'Evitar Peças Impressas nas Viagens' estiver ligada." - -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "Somente executar a passagem a ferro na última camada da malha. Isto economiza tempo se as camadas abaixo não precisarem de um acabamento de superfície amaciado." - -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Imprimir o Brim somente no lado de fora do modelo. Isto reduz a quantidade de brim a ser removida no final, e não reduz tanto a aderência à mesa." - -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Ângulo da Cobertura de Escorrimento" - -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Distância da Cobertura de Escorrimento" - -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "Alcance Ótimo de Galho" - -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Otimizar Ordem de Impressão de Paredes" - -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "Otimiza a ordem em que as paredes são impressas, tais que o número de retrações e a distância percorrida sejam reduzidos. A maioria das peças se beneficiará deste ajuste habilitado mas outras poderão demorar mais, portanto compare as estimativas de tempo de impressão com e sem otimização. A primeira camada não é otimizada quando o brim é selecionado como tipo de aderência da mesa de impressão." - -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Diâmetro Externo do Bico" - -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Aceleração da Parede Exterior" - -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Extrusor da Parede Externa" - -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Fluxo da Parede Externa" - -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Penetração da Parede Externa" - -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "Jerk da Parede Exterior" - -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Largura de Extrusão da Parede Externa" - -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Velocidade da Parede Exterior" - -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Distância de Varredura da Parede Externa" - -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "" - -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "De Fora Pra Dentro" - -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Ângulo de Parede Pendente" - -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Velocidade de Parede Pendente" - -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "Paredes pendentes serão impressas com esta porcentagem de sua velocidade de impressão normal." - -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Pausa após desfazimento da retração." - -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "Porcentagem da velocidade de ventoinha a usar quando imprimir paredes e contornos em pontes." - -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "Porcentagem da velocidade da ventoinha a usar quando se imprimir a segunda camada de contorno da ponte." - -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "Porcentagem de velocidade da ventoinha a usar ao imprimir as regiões de contorno imediatamente sobre o suporte. Usar uma velocidade de ventoinha alta pode fazer o suporte mais fácil de remover." - -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "Porcentagem da velocidade da ventoinha a usar quando se imprimir a terceira camada de contorno da ponte." - -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "Polígonos em camadas fatiadas que tiverem uma circunferência menor que esta quantia serão excluídos. Menores valores levam a malha de maior resolução ao custo de tempo de fatiamento. Serve melhor para impressoras SLA de alta resolução e pequenos modelos 3D com muitos detalhes." - -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "Ângulo Preferido de Galho" - -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "Impede de alternar entre uma parede a mais e uma a menos. Esta margem estende o alcance dos comprimentos de file a seguir para [Largura Mínima de Filete de Parede - Margem, 2 * Largura Mínima de Filete de Parede + Margem]. Aumentar esta margem reduz o número de transições, que por sua vez reduz o número de paradas e inícios de extrusão e tempo de percurso. No entanto, variação de largura de filete pode levar a problemas de subextrusão ou sobre-extrusão." - -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Aceleração da Torre de Purga" - -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Base" -msgstr "" - -msgctxt "prime_tower_base_height label" -msgid "Prime Tower Base Height" -msgstr "" - -msgctxt "prime_tower_base_size label" -msgid "Prime Tower Base Size" -msgstr "" - -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Slope" -msgstr "" - -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Fluxo da Torre de Purga" - -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "Jerk da Torre de Purga" - -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Largura de Extrusão da Torre de Purga" - -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Volume Mínimo da Torre de Purga" - -msgctxt "prime_tower_raft_base_line_spacing label" -msgid "Prime Tower Raft Line Spacing" -msgstr "" - -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Tamanho da Torre de Purga" - -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Velocidade da Torre de Purga" - -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "Posição X da Torre de Purga" - -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Posição Y da Torre de Purga" - -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Aceleração da Impressão" - -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Jerk da Impressão" - -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Sequência de Impressão" - -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Velocidade de Impressão" - -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Imprimir Paredes Finas" - -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "Imprimir uma torre próxima à impressão que serve para purgar o material a cada troca de bico." - -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "Imprime estruturas de preenchimento somente onde os tetos do modelo devam ser suportados. Habilitar este ajuste reduz tempo de impressão e uso de material, mas leva a resistências não-uniformes no objeto." - -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprime filetes de passagem a ferro em uma ordem que os faz com que sempre se sobreponham a linhas adjacentes em uma única direção. Isso faz levar um pouco mais de tempo na impressão, mas torna as superfícies mais consistentes." - -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "Imprimir modelos como moldes com o negativo das peças de modo que se possa encher de resina para as gerar." - -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "Imprime partes do modelo que são horizontalmente mais finas que o tamanho do bico." - -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "Velocidade de impressão a usar quando imprimir a segunda camada de ponte." - -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "Velocidade de impressão a usar quando imprimir a terceira camada de ponte." - -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "Imprime o preenchimento antes de imprimir as paredes. Imprimir as paredes primeiro pode levar a paredes mais precisas, mas seções pendentes são impressas com pior qualidade. Imprimir o preenchimento primeiro leva a paredes mais fortes, mas o padrão de preenchimento pode às vezes aparecer através da superfície." - -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprime os filetes da superfície superior em uma ordem que faz com que sempre se sobreponham a linhas adjacentes em uma única direção. Faz levar um pouco mais de tempo na impressão, mas torna as superfícies planas mais consistentes." - -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprime filetes superiores e inferiores em uma ordem que os faz sempre se sobreporem a filetes adjacentes em uma única direção. Faz levar um pouco mais de tempo na impressão, mas torna superfícies planas mais consistentes." - -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Temperatura de Impressão" - -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Temperatura de Impressão da Camada Inicial" - -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "Imprimir o filete mais interno de skirt com múltiplas camadas torna mais fácil removê-lo." - -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "Imprime uma parede adicional a cada duas camadas. Deste jeito o preenchimento fica aprisionado entre estas paredes extras, resultando em impressões mais fortes." - -msgctxt "resolution label" -msgid "Quality" -msgstr "Qualidade" - -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Quarto Cúbico" - -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Raft" - -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Vão Aéreo do Raft" - -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Extrusor da Base do Raft" - -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Velocidade de Ventoinha da Base do Raft" - -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Espaçamento de Filete de Base do Raft" - -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Largura de Linha da Base do Raft" - -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Aceleração de Impressão da Base do Raft" - -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Jerk de Impressão da Base do Raft" - -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Velocidade de Impressão da Base do Raft" - -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Espessura da Base do Raft" - -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Contagem de Paredes da Base do Raft" - -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Margem Adicional do Raft" - -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Velocidade de Ventoinha no Raft" - -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Extrusor do Meio do Raft" - -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Velocidade de Ventoinha do Meio do Raft" - -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Camadas Centrais do Raft" - -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Largura da Linha do Meio do Raft" - -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Aceleração de Impressão do Meio do Raft" - -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Jerk de Impressão do Meio do Raft" - -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Velocidade de Impressão do Meio do Raft" - -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Espaçamento do Meio do Raft" - -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Espessura do Meio do Raft" - -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Aceleração de Impressão do Raft" - -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Jerk de Impressão do Raft" - -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Velocidade de Impressão do Raft" - -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Amaciamento do Raft" - -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Extrusor do Topo do Raft" - -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Velocidade da Ventoinha para o Topo do Raft" - -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Espessura da Camada Superior do Raft" - -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Camadas Superiores do Raft" - -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Largura do Filete Superior do Raft" - -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Aceleração de Impressão do Topo do Raft" - -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Jerk de Impressão do Topo do Raft" - -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Velocidade de Impressão do Topo do Raft" - -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Espaçamento Superior do Raft" - -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Aleatório" - -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "Aleatorizar o Começo do Preenchimento" - -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "Aleatoriza qual linha do preenchimento é impressa primeiro. Isto evita que um segmento seja mais forte que os outros, mas ao custo de um percurso adicional." - -msgctxt "magic_fuzzy_skin_enabled description" -msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." -msgstr "Faz flutuações de movimento aleatório enquanto imprime a parede mais externa, de modo que a superfície do objeto ganhe uma aparência felpuda ou acidentada." - -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Retangular" - -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "Velocidade Regular da Ventoinha" - -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Velocidade Regular da Ventoinha na Altura" - -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Velocidade Regular da Ventoinha na Camada" - -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "Limite de Tempo para Mudança de Velocidade da Ventoinha" - -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Extrusão Relativa" - -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Remover Todos os Furos" - -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Remover Camadas Iniciais Vazias" - -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Remover Interseções de Malha" - -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Remover Cantos Internos de Raft" - -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "Remove áreas onde várias malhas estão sobrepondo uma à outra. Isto pode ser usado se objetos de material duplo se sobrepõem um ao outro." - -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "Remove camadas vazias entre a primeira camada impressa se estiverem presentes. Desabilitar este ajuste pode criar camadas iniciais vazias se a Tolerância de Fatiamento estiver configurada para Exclusivo ou Meio." - -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Remove os cantos internos do raft, fazendo com que ele se torne convexo." - -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "Remove os furos de cada camada e mantém somente aqueles da forma externa. Isto ignorará qualquer geometria interna invisível. No entanto, também ignorará furos de camada que poderiam ser vistos de cima ou de baixo." - -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" - -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" - -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "Substitui a parte externa do padrão superior/inferir com um número de linhas concêntricas. Usar uma ou duas linhas melhora tetos e topos que começam a ser construídos em cima de padrões de preenchimento." - -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "Preferência de Descanso" - -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Retrair Antes da Parede Externa" - -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Retrai em Mudança de Camada" - -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Retrair o filamento quando o bico estiver se movendo sobre uma área não-impressa." - -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Retrair o filamento quando o bico se mover sobre uma área não impressa." - -msgctxt "retract_at_layer_change description" -msgid "Retract the filament when the nozzle is moving to the next layer." -msgstr "Retrai o filamento quando o bico está se movendo para a próxima camada." - -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Distância da Retração" - -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Quantidade Adicional de Avanço da Retração" - -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Percurso Mínimo para Retração" - -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Velocidade de Avanço da Retração" - -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Velocidade de Recolhimento de Retração" - -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Velocidade de Retração" - -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Direita" - -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "Velocidade de Escala da Ventoinha A 0-1" - -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "Usa a escala da velocidade da ventoinha como um número entre 0 e 1 ao invés de 0 a 256." - -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Compensação de Fator de Encolhimento" - -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "A Cena Tem Malhas de Suporte" - -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Preferência do Canto da Costura" - -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "Estabelece a altura da cobertura de trabalho. Escolha imprimir a cobertura na altura total dos modelos ou até uma altura limitada." - -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Ajustes usados para imprimir com vários extrusores." - -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "Ajustes que sào usados somentes se o CuraEngine não for chamado da interface do Cura." - -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Retração Inicial do Bico Compartilhado" - -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Canto Mais Agudo" - -msgctxt "shell description" -msgid "Shell" -msgstr "Perímetro" - -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Mais Curto" - -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Exibir Variantes de Máquina" - -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Camadas do Suporte da Aresta de Contorno" - -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Espessura do Suporte da Aresta de Contorno" - -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Distância de Expansão do Contorno" - -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Sobreposição do Contorno" - -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Porcentagem de Sobreposição do Contorno" - -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Largura de Remoção de Contorno" - -msgctxt "min_skin_width_for_expansion description" -msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." -msgstr "Áreas de contorno mais estreitas que esta não são expandidas. Isto evita expandir as áreas estreitas que são criadas quando a superfície do modelo tem inclinações quase verticais." - -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "Evitar uma em cada N linhas de conexão para fazer a estrutura de suporte mais fácil de ser removida." - -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "Evitar algumas conexões de linha de suporte para fazer a estrutura de suporte mais fácil de ser removida. Este ajuste é aplicável ao padrão de preenchimento de suporte de ziguezague." - -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Skirt" - -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Distância do Skirt" - -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "Altura do Skirt" - -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Contagem de linhas de Skirt" - -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Aceleração para Skirt e Brim" - -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Extrusor do Skirt/Brim" - -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Fluxo de Skirt/Brim" - -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Jerk de Skirt e Brim" - -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Largura de Extrusão do Brim e Skirt" - -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Mínimo Comprimento do Skirt e Brim" - -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Velocidade do Skirt e Brim" - -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Tolerância de Fatiamento" - -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Velocidade de Camada Inicial de Aspecto Pequeno" - -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Comprimento Máximo do Aspecto Pequeno" - -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Velocidade de Aspecto Pequeno" - -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Tamanho Máximo de Furos Pequenos" - -#, fuzzy -msgctxt "cool_min_temperature label" -msgid "Small Layer Printing Temperature" -msgstr "Temperatura de Impressão Final" - -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "Pequena Base/Teto Na Superfície" - -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "Largura do Teto/Base Pequenos" - -msgctxt "small_feature_speed_factor_0 description" -msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "Aspectos pequenos na primeira camada serão impressos nesta porcentagem de sua velocidade de impressão normal. Impressão mais lenta pode ajudar com aderência e precisão." - -msgctxt "small_feature_speed_factor description" -msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "Aspectos pequenos serão impressos nessa porcentagem da velocidade normal. Impressão mais lenta pode ajudar com aderência e precisão." - -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "Regiões pequenas de base/teto são preenchidas com paredes ao invés do padrão default de teto/base. Isto ajuda a prevenir movimentos bruscos. Desligado por default para a camada superior (exposta ao ar) (Veja 'Pequena Base/Teto Na Superfície')" - -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "Brim Inteligente" - -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Ocultação Inteligente" - -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Suavizar Contornos Espiralizados" - -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "Suavizar os contornos espiralizados para reduzir a visibilidade da costura Z (a costura Z deve ser quase invisível na impressão mas ainda será visível na visão de camadas). Note que a suavização tenderá a embaçar detalhes finos de superfície." - -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "Alguns materiais podem escorrer um pouco durante o percurso, o que pode ser compensando neste ajuste." - -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "Um pouco de material pode escorrer durante os movimentos do percurso de limpeza e isso pode ser compensado neste ajuste." - -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Modos Especiais" - -msgctxt "speed description" -msgid "Speed" -msgstr "Velocidade" - -msgctxt "speed label" -msgid "Speed" -msgstr "Velocidade" - -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "Velocidade com que mover o eixo Z durante o salto." - -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Espiralizar o Contorno Externo" - -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "'Espiralizar' faz com que o movimento vertical (em Z) seja contínuo e gradual seguindo o contorno da peça. Este recurso transforma um modelo sólido em uma simples linha contínua em espiral partindo de uma base sólida. O recurso só deve ser habilitado quando cada camada horizontal contiver somente um contorno." - -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Temperatura de Espera" - -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "G-Code Inicial" - -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "Ponto de partida de cada caminho em uma camada. Quando caminhos em camadas consecutivas iniciam no mesmo ponto (X,Y), uma 'costura' vertical pode ser vista na impressão. Quando se alinha esta costura a uma coordenada especificada pelo usuário, a costura é mais fácil de remover pós-impressão. Quando colocada aleatoriamente as bolhinhas do início dos caminhos será menos perceptível. Quando se toma o menor caminho, a impressão será mais rápida." - -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Passos por Milímetro (E)" - -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Passos por Milímetro (X)" - -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Passos por Milímetro (Y)" - -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Passos por Milímetro (Z)" - -msgctxt "support description" -msgid "Support" -msgstr "Suporte" - -msgctxt "support label" -msgid "Support" -msgstr "Suporte" - -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Aceleração do Suporte" - -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Distância Inferior do Suporte" - -#, fuzzy -msgctxt "support_bottom_wall_count label" -msgid "Support Bottom Wall Line Count" -msgstr "Contagem de Linhas de Parede de Suporte" - -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Número de Filetes do Brim de Suporte" - -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Largura do Brim de Suporte" - -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Contagem de Linhas de Pedaço de Suporte" - -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Tamanho do Pedaço de Suporte" - -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "Densidade do Suporte" - -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Prioridade das Distâncias de Suporte" - -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Extrusor do Suporte" - -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Aceleração da Base do Suporte" - -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Densidade da Base do Suporte" - -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Extrusor da Base do Suporte" - -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Fluxo da Base de Suporte" - -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Expansão Horizontal da Base do Suporte" - -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Jerk da Base do Suporte" - -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Direções de Filete da Base do Suporte" - -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Distância de Filetes da Base de Suporte" - -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Largura de Extrusão da Base do Suporte" - -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Padrão de Base de Suporte" - -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Velocidade de Base do Suporte" - -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Espessura da Base de Suporte" - -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Fluxo de Suporte" - -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Expansão Horizontal do Suporte" - -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Aceleração do Preenchimento do Suporte" - -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Extrusor do Preenchimento do Suporte" - -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Jerk de Preenchimento de Suporte" - -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Espessura de Camada do Preenchimento de Suporte" - -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Direção de Filete do Preenchimento de Suporte" - -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Velocidade do Preenchimento do Suporte" - -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Aceleração da Interface de Suporte" - -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "Densidade da Interface de Suporte" - -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Extrusor da Interface de Suporte" - -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Fluxo de Interface de Suporte" - -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Expansão Horizontal da Interface de Suporte" - -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Jerk da Interface de Suporte" - -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Direções do Filete de Interface de Suporte" - -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Largura de Extrusão da Interface do Suporte" - -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Padrão da Interface de Suporte" - -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "Prioridade de Interface de Suporte" - -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Resolução da Interface de Suporte" - -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Velocidade da Interface de Suporte" - -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Espessura da Interface de Suporte" - -#, fuzzy -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "Contagem de Linhas de Parede de Suporte" - -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Jerk do Suporte" - -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "Distância de União do Suporte" - -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "Distância das Linhas do Suporte" - -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Largura de Extrusão do Suporte" - -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Malha de Suporte" - -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Ângulo para Caracterizar Seções Pendentes" - -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Padrão do Suporte" - -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Colocação dos Suportes" - -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Aceleração do Teto de Suporte" - -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Densidade do Teto de Suporte" - -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Extrusor do Teto do Suporte" - -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Fluxo do Teto de Suporte" - -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Expansão Horizontal do Teto de Suporte" - -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Jerk do Teto de Suporte" - -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Direções de Filete do Teto do Suporte" - -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Distância de Filetes do Teto de Suporte" - -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Largura de Extrusão do Teto do Suporte" - -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Padrão de Teto de Suporte" - -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Velocidade do Teto de Suporte" - -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "Espessura do Topo do Suporte" - -#, fuzzy -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "Contagem de Linhas de Parede de Suporte" - -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Velocidade do Suporte" - -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "Altura do Passo de Suporte em Escada" - -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "Largura Máxima do Passo de Suporte em Escada" - -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "Ângulo Mínimo de Inclinação do Passo de Suporte em Escada" - -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Estrutura de Suporte" - -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Distância Superior do Suporte" - -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Contagem de Linhas de Parede de Suporte" - -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "Distância X/Y do Suporte" - -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Distância em Z do Suporte" - -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "Filetes de suporte preferidos" - -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "Suporte preferido" - -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Velocidade de Ventoinha do Contorno Suportado" - -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Superfície" - -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "Energia de Superfície" - -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Modo de Superficie" - -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "Tendência de aderência da superfície." - -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Energia de superfície." - -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "Troca a ordem de impressão do filete de brim mais interno e o segundo mais interno. Isto melhora a remoção do brim." - -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "Troca quais volumes sobrepondo malhas vão pertencer a cada camada, de modo que as malhas sobrepostas se tornem entrelaçadas. Desligar esta opção vai fazer com que uma das malhas obtenha todo o volume da sobreposiçào, removendo este volume das outras malhas." - -msgctxt "adaptive_layer_height_threshold description" -msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." -msgstr "Trata da distância horizontal entre duas camadas adjacentes. Reduzir este ajuste faz com que camadas mais finas sejam usadas para reunir as bordas das camadas mais perto uma da outra." - -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "A coordenada X da posição próxima de onde achar a parte com que começar a imprimir cada camada." - -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "A coordenada X da posição onde iniciar a impressão de cada parte em uma camada." - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "A coordenada X da posição onde o bico faz a purga no início da impressão." - -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "A coordenada Y da posição próxima de onde achar a parte com que começar a imprimir cada camada." - -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "A coordenada Y da posição onde iniciar a impressão de cada parte em uma camada." - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "A coordenada Y da posição onde o bico faz a purga no início da impressão." - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Coordenada Z da posição onde o bico faz a purga no início da impressão." - -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "Aceleração durante a impressão da camada inicial." - -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "Aceleração para a camada inicial." - -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Aceleração para percursos na camada inicial." - -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "A mudança instantânea máxima de velocidade em uma direção nos percursos da camada inicial." - -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "Aceleração com que se imprimem as paredes interiores." - -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "A aceleração com que o preenchimento é impresso." - -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "A aceleração com que o recurso de passar a ferro é feito." - -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "Aceleração com que se realiza a impressão." - -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "A aceleração com que as camadas de base do raft são impressas." - -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "A aceleração com que as bases do suporte são impressas. Imprimi-las em aceleração menor pode melhorar aderência dos suportes no topo da superfície." - -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "Aceleração com que se imprime o preenchimento dos suportes." - -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "A aceleração com que a camada intermediária do raft é impressa." - -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "Aceleração com que se imprime a parede exterior." - -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "Aceleração com que a torre de purga é impressa." - -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "A aceleração com que o raft é impresso." - -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "A aceleração com que os tetos e bases de suporte são impressos. Imprimi-los em aceleração menor pode melhorar a qualidade das seções pendentes." - -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "A aceleração com que os tetos de suporte são impressos. Imprimi-los em aceleração menor pode melhorar a qualidade das seções pendentes." - -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "Aceleração com a qual o skirt e o brim são impressos. Normalmente isto é feito com a aceleração de camada inicial, mas às vezes você pode querer imprimir o skirt ou brim em uma aceleração diferente." - -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "Aceleração com que as estruturas de suporte são impressas." - -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "A aceleração com que as camadas superiores do raft são impressas." - -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "" - -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "" - -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "Aceleração com que se imprimem as paredes." - -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "A aceleração com a qual as camadas da superfície superior são impressas." - -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "Aceleração com que as camadas superiores e inferiores são impressas." - -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "Aceleração com que se realizam os percursos." - -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "A quantidade de material, relativa ao filete normal de extrusão, para extrudar durante a passagem a ferro. Manter o bico com algum material ajuda a preencher algumas das lacunas e fendas da superfície superior, mas material demais resulta em superextrusão e verrugas nas laterais da superfície." - -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "A quantidade de sobreposição entre o preenchimento e as paredes como uma porcentagem da largura de extrusão de preenchimento. Uma leve sobreposição permite que as paredes se conectem firmemente ao preenchimento." - -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "A quantidade de sobreposição entre o preenchimento e as paredes. Uma leve sobreposição permite que as paredes se conectem firmemente ao preenchimento." - -msgctxt "switch_extruder_retraction_amount description" -msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." -msgstr "A quantidade de retração ao mudar extrusores. Coloque em 0 para não haver retração. Isto deve geralmente ser o mesmo que o comprimento da zona de aquecimento do hotend." - -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "Ângulo entre o plano horizontal e a parte cônica logo acima da ponta do bico." - -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "Ângulo do Teto (parte superior) de uma torre. Um valor maior resulta em tetos pontiagudos, um valor menor resulta em tetos achatados." - -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "O ângulo de seção pendente das paredes externas criadas para o molde. 0° fará a superfície externa do molde vertical, enquanto 90° fará a superfície externa do molde seguir o contorno do modelo." - -msgctxt "support_tree_branch_diameter_angle description" -msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." -msgstr "O ângulo do diâmetro dos galhos enquanto se tornam gradualmente mais grossos na direção da base. Um ângulo de 0 fará com que os galhos tenham grossura uniforme no seu comrpimento. Um ângulo levemente maior que zero pode aumentar a estabilidade do suporte em árvore." - -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "O ângulo da inclinação do suporte cônico. Como 0 graus sendo vertical e 90 graus sendo horizontal. Ângulos menores farão o suporte ser mais firme, mas gastarão mais material. Ângulos negativos farão a base do suporte mais larga que o topo." - -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "A densidade média dos pontos introduzidos em cada polígono de uma camada. Note que os pontos originais do polígono são descartados, portanto uma densidade baixa resulta da redução de resolução." - -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "A distância média entre os pontos aleatórios introduzidos em cada segmento de linha. Note que os pontos originais do polígono são descartados, portanto umo alto alisamento resulta em redução da resolução. Este valor deve ser maior que a metade da Espessura do Contorno Felpudo." - -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "A aceleração default a ser usada nos eixos para o movimento da cabeça de impressão." - -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "A temperatura default usada para a impressão. Esta deve ser a temperatura \"base\" de um material. Todas as outras temperaturas de impressão devem usar diferenças baseadas neste valor" - -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "A temperatura default usada para a plataforma aquecida de impressão. Este valor deve ser a temperatura \"base\" da plataforma. Todas as outras temperaturas de impressão devem usar diferenças baseadas neste valor" - -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "A densidade da camada de contorno de ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno." - -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "A densidade das bases da estrutura de suporte. Um valor maior resulta em melhor aderência do suporte no topo da superfície." - -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "A densidade dos tetos da estrutura de suporte. Um valor maior resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." - -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "A densidade da segunda camada de contorno da ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno." - -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "A densidade da terceira camada de contorno da ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno." - -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "A profundidade (direção Y) da área imprimível." - -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "O diâmetro da torre especial." - -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "O diâmetro dos galhos mais finos do suporte em árvore. Galhos mais grossos são mais resistentes. Galhos na direção da base serão mais grossos que essa medida." - -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "O diâmetro do topo da ponta dos galhos de suporte em árvore." - -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "O diâmetro da engrenagem que traciona o material no alimentador." - -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "O diâmetro dos galhos mais espessos do suporte em árvore. Um tronco mais espesso é mais robusto; um tronco mais fino ocupa menos espaço na plataforma de impressão." - -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "A diferença em tamanho da próxima camada comparada à anterior." - -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "A distância entre as trajetórias de passagem a ferro." - -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "A distância entre o bico e as partes já impressas quando evitadas durante o percurso." - -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "A distância entre as linhas do raft para a camada de base do raft. Um espaçamento esparso permite a remoção fácil do raft da mesa." - -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "A distância entre as linhas do raft para a camada intermediária. O espaçamento do meio deve ser grande, ao mesmo tempo que deve ser denso o suficiente para suportar as camadas superiores." - -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "Distância entre as linhas do raft para as camadas superiores. O espaçamento deve ser igual à largura de linha, de modo que a superfície seja sólida." - -msgctxt "prime_tower_raft_base_line_spacing description" -msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "" - -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "A distância da fronteira entre os modelos para gerar a estrutura de interligação, medida em células. Poucas células resultam em baixa aderência." - -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "A distância do modelo à linha mais externa do brim. Um brim mais largo aumenta a aderência à mesa, mas também reduz a área efetiva de impressão." - -#, fuzzy -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "Distância da ponta do bico onde 'estacionar' o filamento quando seu extrusor não estiver sendo usado." - -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "Distância da ponta do bico, em que calor do bico é transferido para o filamento." - -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "A distância com que os contornos inferiores são expandidos para dentro do preenchimento. Valores mais altos fazem o contorno se anexar melhor ao padrão de preenchimento e fazem as paredes da camada abaixo aderirem melhor ao contorno. Valores mais baixos economizam a quantidade de material usado." - -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "A distância em que os contornos são expandidos pra dentro do preenchimento. Valores mais altos fazem o contorno aderir melhor ao padrão de preenchimento e faz as paredes de camadas vizinhas aderirem melhor ao contorno. Valores menores diminuem a quantidade de material usado." - -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "A distância com que os contornos superiores são expandidos para dentro do preenchimento. Valores mais altos fazem o contorno se anexar melhor ao padrão de preenchimento e fazem as paredes da camada acima aderirem melhor ao contorno. Valores mais baixos economizam a quantidade de material usado." - -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "A distância com que mover a cabeça pra frente e pra trás durante a varredura." - -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "As pontas dos filetes de preenchimento são encurtadas para poupar material. Este ajuste é o ângulo da seção pendente das pontas desses filetes." - -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "Velocidade adicional pela qual o bico resfria enquanto extruda. O mesmo valor é uso para denotar a velocidade de aquecimento quando se esquenta ao extrudar." - -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "O extrusor a usar para imprimir a primeira camada de preenchimento de suporte. Isto é utilizado em multi-extrusão." - -msgctxt "raft_base_extruder_nr description" -msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." -msgstr "O carro extrusor a ser usado para imprimir a primeira camada do Raft. Isto é usado em multi-extrusão." - -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "O extrusor a usar para imprimir as bases dos suportes. Isto é utilizado em multi-extrusão." - -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "O extrusor a usar para imprimir o preenchimento do suporte. Isto é utilizado em multi-extrusão." - -msgctxt "raft_interface_extruder_nr description" -msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." -msgstr "O carro extrusor a ser usado para imprimir a camada central do raft. Isto é usado em multi-extrusão." - -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "O extrusor a usar para imprimir os tetos e bases dos suportes. Isto é utilizado em multi-extrusão." - -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "O extrusor a usar para imprimir o teto do suporte. Isto é utilizado em multi-extrusão." - -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "O carro extrusor a ser usado para imprimir o skirt ou brim. Isto é usado em multi-extrusão." - -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "O extrusor usado ara imprimir skirt, brim ou raft. Usado em multi-extrusão." - -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "O extrusor a usar para imprimir os suportes. Isto é utilizado em multi-extrusão." - -msgctxt "raft_surface_extruder_nr description" -msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." -msgstr "O carro extrusor a ser usado para imprimir a(s) camada(s) central(is) do raft. Isto é usado em multi-extrusão." - -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "O carro extrusor usado para imprimir preenchimento. Este ajuste é usado em multi-extrusão." - -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "O carro extrusor usado para imprimir as paredes internas. Este ajuste é usado em multi-extrusão." - -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "O carro extrusor usado para imprimir a parede externa. Este ajuste é usado em multi-extrusão." - -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "O carro extrusor usado para imprimir as paredes superiores e inferiores. Este ajuste é usado na multi-extrusão." - -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "O carro extrusor usado para imprimir a parte superior da peça. Este ajuste é usado em multi-extrusão." - -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "O carro extrusor usado para imprimir paredes. Este ajuste é usado em multi-extrusão." - -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "A velocidade de ventoinha para a camada base do raft." - -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "A velocidade de ventoina para a camada intermediária do raft." - -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "A velocidade da ventoinha para a impressão do raft." - -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "A velocidade da ventoinha para as camadas superiores do raft." - -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "A localização do arquivo de imagem onde os valores de brilho determinam a densidade mínima no local correspondente do preenchimento da impressão." - -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "A localização do arquivo de imagem onde os valores de brilho determinam a densidade mínima no local correspondente do suporte." - -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "As poucas primeiras camadas são impressas mais devagar que o resto do modelo, para conseguir melhor aderência à mesa e melhorar a taxa de sucesso geral das impressão. A velocidade é gradualmente aumentada entre estas camadas." - -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "O vão entre a camada final do raft e a primeira camada do modelo. Somente a primeira camada é elevada por esta distância para enfraquecer a conexão entre o raft e o modelo, tornando mais fácil a remoção do raft." - -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "A altura (direção Z) do volume imprimível." - -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "A altura acima das partes horizontais do modelo onde criar o molde." - -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "A altura em que as ventoinhas girarão na velocidade regular. Nas camadas abaixo a velocidade da ventoinha gradualmente aumenta da velocidade inicial para a velocidade regular." - -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "Diferença de altura entre a ponta do bico e o sistema de eixos X ou X e Y (onde o extrusor desliza)." - -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "Diferença de altura entre a ponta do bico e a parte mais baixa da cabeça de impressão." - -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "A diferença de altura ao executar um Salto Z após trocar extrusores." - -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Diferença de altura ao realizar um Salto Z." - -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "A diferença de altura ao executar um Salto Z." - -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "A altura das camadas em mm. Valores mais altos produzem impressões mais rápidas em resoluções baixas, valores mais baixos produzem impressão mais lentas em resolução mais alta. Recomenda-se não deixar a altura de camada maior que 80% do diâmetro do bico." - -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "A altura do preenchimento de uma dada densidade antes de trocar para a metade desta densidade." - -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "A altura do preenchimento de suporte de dada densidade antes de trocar para metade desta densidade." - -msgctxt "interlocking_beam_layer_count description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "A altura das vigas da estrutura de interligação, medida em número de camadas. Menos camadas são mais fortes, mas mais susceptíveis a defeitos." - -msgctxt "interlocking_orientation description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "A altura das vigas da estrutura de interligação, medidas em número de camadas. Menos camadas são mais fortes, mas mais susceptíveis a defeitos." - -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "A altura da camada inicial em mm. Uma camada inicial mais espessa faz a aderência à mesa de impressão ser maior." - -msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "" - -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "A altura dos degraus da base estilo escada do suporte em cima do modelo. Um valor baixo faz o suporte mais difícil de remover, mas valores muito altos podem levar a estruturas de suporte instáveis. Deixe em zero para desligar o comportamento de escada." - -msgctxt "brim_gap description" -msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." -msgstr "A distância horizontal entre o primeiro filete de brim e o contorno da primeira camada da impressão. Um pequeno vão pode fazer o brim mais fácil de remover sem deixar de prover os benefícios térmicos." - -msgctxt "skirt_gap description" -msgid "" -"The horizontal distance between the skirt and the first layer of the print.\n" -"This is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "" -"A distância horizontal entre o skirt a primeira camada da impressão.\n" -"Esta é a distância mínima. Linhas múltiplas de skirt estenderão além desta distância." - -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "Os filetes de preenchimentos são retificados para poupar tempo de impressão. Este é o ângulo máximo de seção pendente permito através do comprimento do filete de preenchimento." - -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "O padrão de preenchimento é movido por esta distância no eixo X." - -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "O padrão de preenchimento é movido por esta distância no eixo Y." - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "O diâmetro interior do bico (o orifício). Altere este ajuste quanto estiver usando um tamanho de bico fora do padrão." - -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "O jerk com o qual a camada de base do raft é impressa." - -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "O jerk com o qual a camada intermediária do raft é impressa." - -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "O jerk com o qual o raft é impresso." - -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "O jerk com o qual as camadas superiores do raft são impressas." - -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "A maior largura das áreas de contorno inferiores que serão removidas. Cada área de contorno menor que este valor desaparecerá. Isto pode ajudar em limitar a quantidade de tempo e material gastos em impressão de contornos inferiores em superfícies inclinadas do modelo." - -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "A maior largura das áreas de contorno que serão removidas. Cada área de contorno menor que este valor desaparecerá. Isto pode ajudar em limitar a quantidade de tempo e material gastos em impressão de contornos inferiores e superiores em superfícies inclinadas do modelo." - -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "A maior largura das áreas de contorno superiores que serão removidas. Cada área de contorno menor que este valor desaparecerá. Isto pode ajudar em limitar a quantidade de tempo e material gastos em impressão de contornos superiores em superfícies inclinadas do modelo." - -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "A camada em que as ventoinhas girarão na velocidade regular. Se a 'velocidade regular na altura' estiver ajustada, este valor é calculado e arredondado para um número inteiro." - -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "O tempo de camada que define o limite entre a velocidade regular da ventoinha e a máxima. Camadas cuja impressão é mais lenta que este tempo usarão a velocidade regular. Camadas mais rápidas gradualmente aumentarão até a velocidade máxima de ventoinha." - -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "O comprimento de filamento retornado durante uma retração." - -msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "" - -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "O material da plataforma de impressão presente na impressora." - -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "A variação de altura máxima permitida para a camada de base." - -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "O ângulo de separação máximo que partes da cobertura de escorrimento terão. Com 0 graus sendo na vertical e 90 graus sendo horizontal. Um ângulo menor leva a coberturas de escorrimento falhando menos, mas mais gasto de material." - -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "O ângulo máximo de seçọes pendentes depois de se tornarem imprimíveis. Com o valor de 0° todas as seções pendentes serão trocadas por uma parte do modelo conectada à mesa e 90° não mudará o modelo." - -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "O ângulo máximo dos galhos quando eles crescem em volta do modelo. Use um ângulo menor para torná-los mais verticais e estáveis. Use um ângulo maior para poder ter maior alcance." - -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "A área máxima de um furo na base do modelo antes que seja removido por \"Torna Seções Pendentes Imprimíveis\". Furos com área menor que esta serão retidos. O valor de 0 mm² preenche todos os furos na base do modelo." - -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "O desvio máximo permitido ao reduzir a resolução para o ajuste de Máxima Resolução. Se você aumentar isto, a impressão será menos precisa, mas o G-Code será menor. O Desvio Máximo é um limite para Resolução Máxima, portanto se os dois conflitarem o Desvio Máximo sempre será o valor dominante." - -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "A distância máxima entre as estruturas de suporte nas direções X/Y. Quando estruturas separadas estão mais próximas que este valor, elas são fundidas em uma só." - -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "A distância máxima em mm para mover o filamento para compensar mudanças na taxa de fluxo." - -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "O desvio máximo da área de extrusão permitido ao remover pontos intermediários de uma linha reta. Um ponto intermediário pode servir como ponto de mudança de largura em uma longa linha reta. Portanto, se ele for removido, fará com que a linha tenha uma largura uniforme e, como resultado, perderá (ou ganhará) um pouco de área de extrusão. Se você aumentar o valor, você poderá perceber uma sutil sobre-extrusão ou sub-extrusão no meio de paredes retas paralelas, já que mais pontos intermediários com espessura variante poderão ser removidos. Sua impressão será menos acurada, mas o G-Code será menor." - -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "A mudança instantânea máxima de velocidade em uma direção durante a impressão da camada inicial." - -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "A mudança instantânea máxima de velocidade em uma direção da cabeça de impressão." - -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que o recurso de passar a ferro é feito." - -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que as paredes internas são impressas." - -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "A mudança instantânea máxima de velocidade em uma direção com que o preenchimento é impresso." - -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "A máxima mudança de velocidade instantânea com que as bases dos suportes são impressas." - -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que o preenchimento do suporte é impresso." - -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que a parede externa é impressa." - -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "A mudança instantânea máxima de velocidade em uma direção com que a torre de purga é impressa." - -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "A máxima mudança de velocidade instantânea com a qual os tetos e bases dos suportes são impressos." - -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "A máxima mudança de velocidade instantânea com que os tetos dos suportes são impressos." - -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "A mudança instantânea máxima de velocidade em uma direção com que o skirt (saia) e brim (bainha) são impressos." - -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que as estruturas de suporte são impressas." - -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "" - -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "" - -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que as paredes são impressas." - -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que as camadas da superfície superior são impressas." - -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que as camadas superiores e inferiores são impressas." - -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "A mudança instantânea máxima de velocidade em uma direção com que os percursos são feitos." - -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "A velocidade máxima para o motor da impressora na direção X." - -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "A velocidade máxima para o motor da impressora na direção Y." - -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "A velocidade máxima para o motor da impressora na direção Z." - -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "A velocidade máxima de entrada de filamento no hotend." - -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "A largura máxima dos passos da base estilo escada do suporte em cima do modelo. Um valor baixo faz o suporte mais difícil de remover, mas valores muito altos podem levar a estruturas de suporte instáveis." - -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "A distância mínima entre o exterior do molde e o exterior do modelo." - -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "Velocidade mínima de entrada de filamento no hotend." - -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "A temperatura mínima enquanto se esquenta até a Temperatura de Impressão na qual a impressão pode já ser iniciada." - -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "Tempo mínimo em que um extrusor precisará estar inativo antes que o bico seja resfriado. Somente quando o extrusor não for usado por um tempo maior que esse, lhe será permitido resfriar até a temperatura de espera." - -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "O ângulo mínimo de seções pendentes internas para as quais o preenchimento é adicionado. Em um valor de 0°, objetos são completamente preenchidos no padrão escolhido, e 90° torna o volume oco, sem preenchimento." - -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "O ângulo mínimo de seções pendentes para os quais o suporte é criado. Com o valor de 0° todas as seções pendentes serão suportadas, e 90° não criará nenhum suporte." - -msgctxt "retraction_min_travel description" -msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." -msgstr "A distância mínima de percurso necessária para que uma retração aconteça. Isto ajuda a ter menos retrações em uma área pequena." - -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "O comprimento mínimo do skirt ou brim. Se este comprimento não for cumprido por todas as linhas do skirt ou brim juntas, mais linhas serão adicionadas até que o mínimo comprimento seja alcançado. Se a contagem de linhas estiver em 0, isto é ignorado." - -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "A mínima largura de extrusão para paredes multifiletes de preenchimento de vão de filete central. Este ajuste determina em que espessura de modelo nós alternamos de imprimir dois filetes de parede para imprimir duas paredes externas e uma parede central no meio. Uma Largura de Extrusão de Parede Ímpar Mínima mais alta leva a uma largura máxima de extrusão de parede par mais alta. A largura máxima de extrusão de parede ímpar é calculada como 2 * Largura Mínima de Extrusão de Parede Par." - -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "A mínima largura de filete para paredes poligonais normais. Este ajuste determina em que espessura do modelo nós alternamos da impressão de um file de parede fina único para a impressão de dois filetes de parede. Uma Largura Mínima de Filete de Parede Par mais alta leva a uma largura máxima de filete de parede ímpar também mais alta. A largura máxima de filete de parede par é calculada como a Largura de Filete da Parede Externa + 0.5 * Largura Mínima de Filete de Parede Ímpar." - -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "A velocidade mínima de impressão, mesmo que se tente desacelerar para obedecer ao tempo mínimo de camada. Quando a impressora desacelera demais, a pressão no bico pode ficar muito baixa, o que resulta em baixa qualidade de impressão." - -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "O tamanho mínimo de um segmento de linha após o fatiamento. Se você aumentar este valor, a malha terá uma resolução menor. Isto pode permitir que a impressora mantenha a velocidade que precisa para processar o G-Code e aumentará a velocidade de fatiamento ao remover detalhes da malha que não poderia processar de qualquer jeito." - -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "O tamanho mínimo de um segmento de linha de percurso após o fatiamento. Se o valor aumenta, os movimentos de percurso terão cantos menos suaves. Isto pode permitir que a impressora mantenha a velocidade necessária para processar o G-Code, mas pode fazer com que evitar topar no modelo fique menos preciso." - -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "A mínima inclinação da área para que o suporte em escada tenha efeito. Valores baixos devem tornar o suporte mais fácil de remover em inclinações rasas, mas muitos baixos resultarão em resultados bastante contra-intuitivos em outras partes do modelo." - -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "O tempo mínimo empregado em uma camada. Isto força a impressora a desacelerar para no mínimo usar o tempo ajustado aqui em uma camada. Isto permite que o material impresso resfrie apropriadamente antes de passar para a próxima camada. As camadas podem ainda assim levar menos tempo que o tempo mínimo de camada se Levantar Cabeça estiver desabilitado e se a Velocidade Mínima fosse violada com a lentidão." - -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "O volume mínimo para cada camada da torre de purga de forma a purgar material suficiente." - -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "O máximo que o diâmetro de um galho que tem que se conectar ao modelo pode aumentar ao mesclar-se com galhos que podem alcançar a plataforma de impressão. Aumentar este valor reduz tempo de impressão, mas aumenta a área de suporte que se apoia no modelo" - -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "Nome do seu modelo de impressora 3D." - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "O identificador do bico para o carro extrusor, tais como \"AA 0.4\" ou \"BB 0.8\"." - -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "O bico evita partes já impressas quando está em uma percurso. Esta opção está disponível somente quando combing (penteamento) está habilitado." - -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "O bico evita suportes já impressos durante o percurso. Esta opção só está disponível quando combing estiver habilitado." - -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "O número de camadas inferiores. Quando calculado da espessura inferior, este valor é arredondado para um inteiro." - -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "O número de contornos a serem impressos em volta do padrão linear na camada base do raft." - -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "O número de camadas de preenchimento que suportam arestas de contorno." - -msgctxt "initial_bottom_layers description" -msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "O número de camadas inferiores iniciais da plataforma de impressão pra cima. Quanto calculado a partir da espessura inferior, esse valor é arrendado para um número inteiro." - -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "O número de camadas entre a base e a superfície do raft. Isso corresponde à espessura principal do raft. Aumentar este valor cria um raft mais espesso e resistente." - -msgctxt "brim_line_count description" -msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." -msgstr "O número de linhas usada para o brim. Mais linhas de brim melhoram a aderência à mesa, mas também reduzem a área efetiva de impressão." - -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "O número de filetes usado para o brim de suporte. Mais filetes melhoram a aderência na mesa de impressão, ao custo de material extra." - -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "O número de camadas superiores acima da segunda camada do raft. Estas são camadas completamente preenchidas em que o modelo se assenta. 2 camadas resultam em uma superfície superior mais lisa que apenas uma." - -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "O número de camadas superiores. Quando calculado da espessura superior, este valor é arredondado para um inteiro." - -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "O número de camadas da superfície superior. Geralmente somente uma camada é suficiente para gerar superfícies de alta qualidade." - -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." - -#, fuzzy -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." - -#, fuzzy -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." - -#, fuzzy -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." - -msgctxt "wall_distribution_count description" -msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." -msgstr "O número de paredes, contadas a partir do centro, sobre as quais a variação será distribuída. Valores menores significam que as paredes mais externas não mudam de comprimento." - -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "Número de filetes da parede. Quando calculado pela espessura de parede, este valor é arredondado para um inteiro." - -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "Diâmetro exterior do bico (a ponta do hotend)." - -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague trocam de direção em camadas alternadas, reduzindo custo de material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são completamente impressos a cada camada. Os preenchimentos giroide, cúbico, quarto cúbico e octeto mudam a cada camada para prover uma distribuição de força mais uniforme em cada direção. O preenchimento de relâmpago tenta minimizar material somente suportando o teto do objeto." - -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "O padrão (estampa) das estruturas de suporte da impressão. As diferentes opções disponíveis resultam em suportes mais resistentes ou mais fáceis de remover." - -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "O padrão das camadas superiores." - -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Padrão ou Estampa das camadas superiores e inferiores." - -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "O padrão na base da impressão na primeira camada." - -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "O padrão a usar quando se passa a ferro as superfícies superiores." - -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "O padrão com o qual as bases do suporte são impressas." - -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "Padrão (estampa) com a qual a interface do suporte para o modelo é impressa." - -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "O padrão com o qual o teto do suporte é impresso." - -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "A posição perto da qual se inicia a impressão de cada parte em uma camada." - -msgctxt "support_tree_angle_slow description" -msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." -msgstr "O ângulo preferido para os galhos, quando eles não têm que evitar o modelo. Use um ângulo menor para torná-los mais verticais e estáveis. Use um ângulo maior para que os galhos se mesclem mais rapidamente." - -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "O posicionamento preferido das estruturas de suporte.Se as estruturas não puderem ser colocadas na localização escolhida, serão colocadas em outro lugar, mesmo que seja no modelo." - -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "A mudança instantânea máxima de velocidade em uma direção para a camada inicial." - -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "A forma da mesa de impressão sem levar área não-imprimíveis em consideração." - -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "A forma da cabeça de impressão. Essas são coordenadas relativas à posição da cabeça de impressão, que é geralmente a posição do seu primeiro extrusor. As dimensões à esquerda e na frente da cabeça devem ser coordenadas negativas." - -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "O tamanho dos bolso em cruzamentos quádruplos no padrão cruzado 3D em alturas onde o padrão esteja se tocando." - -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "O menor volume que um caminho de extrusão deve apresentar antes que lhe seja permitido desengrenar. Para caminhos de extrusão menores, menos pressão é criada dentro do hotend e o volume de desengrenagem é redimensionado linearmente. Este valor deve sempre ser maior que o Volume de Desengrenagem." - -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "Velocidade (°C/s) pela qual o bico resfria tirada pela média na janela de temperaturas normais de impressão e temperatura de espera." - -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "Velocidade (°C/s) pela qual o bico aquece tirada pela média na janela de temperaturas normais de impressão e temperatura de espera." - -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "A velocidade em que todas as paredes interiores são impressas. Imprimir a parede interior mais rapidamente que a parede externa reduzirá o tempo de impressão. Funciona bem ajustar este valor a meio caminho entre a velocidade da parede mais externa e a velocidade de preenchimento." - -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "A velocidade com a qual regiões de contorno de ponte são impressas." - -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "Velocidade em que se imprime o preenchimento." - -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "Velocidade em que se realiza a impressão." - -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "A velocidade em que a camada de base do raft é impressa. Deve ser impressa lentamente, já que o volume do material saindo do bico será bem alto." - -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "A velocidade com a qual as paredes de ponte são impressas." - -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "A velocidade em que as ventoinhas giram no início da impressão. Em camadas subsequentes a velocidade da ventoinha é gradualmente aumentada até a camada correspondente ao ajuste 'Velocidade Regular da Ventoinha na Altura'." - -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "Velocidade em que as ventoinhas giram antes de dispararem o limite. Quando uma camada imprime mais rapidamente que o limite de tempo, a velocidade de ventoinha aumenta gradualmente até a velocidade máxima." - -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "Velocidade em que as ventoinhas giram no tempo mínimo de camada. A velocidade da ventoinha gradualmente aumenta da regular até a máxima quando o limite é atingido." - -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "A velocidade com a qual o filamento é avançado durante o movimento de retração." - -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "A velocidade com que o filamento é purgado durante um movimento de retração de limpeza." - -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "A velocidade em que o filamento é empurrado para a frente depois de uma retração de troca de bico." - -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "A velocidade com a qual o filamento é recolhido e avançado durante o movimento de retração." - -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "A velocidade com que o filamento é retraído e purgado durante um movimento de retração de limpeza." - -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "A velocidade em que o filamento é retraído durante uma retração de troca de bico." - -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "A velocidade com a qual o filamento é recolhido durante o movimento de retração." - -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "A velocidade com que o filamento é retraído durante um movimento de retração de limpeza." - -msgctxt "switch_extruder_retraction_speeds description" -msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." -msgstr "A velocidade em que o filamento é retraído. Uma velocidade de retração mais alta funciona melhor, mas uma velocidade muito alta pode levar a desgaste do filamento." - -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "A velocidade em que a base do suporte é impressa. Imprimi-la em velocidade mais baixa pode melhorar a aderência do suporte no topo da superfície." - -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "A velocidade em que o preenchimento do suporte é impresso. Imprimir o preenchimento em velocidades menores melhora a estabilidade." - -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "A velocidade em que a camada intermediária do raft é impressa. Esta deve ser impressa devagar, já que o volume de material saindo do bico é bem alto." - -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "A velocidade em que as paredes mais externas são impressas. Imprimir a parede mais externa a uma velocidade menor melhora a qualidade final do contorno. No entanto, ter uma diferença muito grande entre a velocidade da parede interna e a velocidade da parede externa afetará a qualidade de forma negativa." - -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "A velocidade em que a torre de purga é impressa. Imprimir a torre de purga mais lentamente pode torná-la mais estável quando a aderência entre os diferentes filamentos é subótima." - -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "A velocidade em que as ventoinhas giram." - -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "A velocidade em que o raft é impresso." - -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "A velocidade com que os tetos e bases do suporte são impressos. Imprimi-los em velocidades mais baixas pode melhorar a qualidade de seções pendentes." - -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "A velocidade em que os tetos dos suportes são impressos. Imprimi-los em velocidade mais baixas pode melhorar a qualidade de seções pendentes." - -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "Velocidade em que o Brim (Bainha) e Skirt (Saia) são impressos. Normalmente isto é feito na velocidade de camada inicial, mas você pode querer imprimi-los em velocidade diferente." - -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "A velocidade em que a estrutura de suporte é impressa. Imprimir o suporte a velocidades mais altas pode reduzir bastante o tempo de impressão. A qualidade de superfície das estruturas de suporte não é importante já que são removidas após a impressão." - -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "A velocidade em que as camadas superiores do raft são impressas. Elas devem ser impressas um pouco mais devagar, de modo que o bico possa lentamente alisar as linhas de superfície adjacentes." - -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "" - -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "" - -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "A velocidade em que o movimento Z vertical é feito para os saltos Z. Tipicamente mais baixa que a velocidade de impressão já que mover a mesa de impressão ou eixos da máquina é mais difícil." - -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "Velocidade em que se imprimem as paredes." - -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "A velocidade com a qual o ajuste de passar ferro é aplicado sobre a superfície superior." - -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "A velocidade com a qual retrair o filamento para que se destaque completamente." - -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "A velocidade com que as camadas superiores são impressas." - -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "Velocidade em que as camadas superiores e inferiores são impressas." - -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "Velocidade em que ocorrem os movimentos de percurso." - -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "A velocidade pela qual se mover durante a desengrenagem, relativa à velocidade do caminho de extrusão. Um valor ligeiramente menor que 100% é sugerido, já que durante a desengrenagem a pressão dentro do hotend cai." - -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "A velocidade para a camada inicial. Um valor menor é sugerido para melhorar aderência à mesa de impressão. Não afeta as estruturas de aderência à mesa de impressão como o brim e o raft." - -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "A velocidade de impressão para a camada inicial. Um valor menor é aconselhado para aprimorar a aderência à mesa de impressão." - -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "A velocidade dos percursos da camada inicial. Um valor mais baixo que o normal é aconselhado para prevenir o puxão de partes impressas da mesa de impressão. O valor deste ajuste pode ser automaticamente calculado do raio entre a Velocidade de Percurso e a Velocidade de Impressão." - -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "A temperatura em que o filamento é destacado completamente." - -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "A temperatura do ambiente em que imprimir. Se este valor for 0, a temperatura de volume de impressão não será ajustada." - -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "A temperatura do bico quando outro bico está sendo usado para a impressão." - -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "A temperatura para a qual se deve começar a esfriar pouco antes do fim da impressão." - -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer." -msgstr "" - -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "A temperatura usada para impressão." - -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "A temperatura usada para a plataforma aquecida de impressão na primeira camada. Se for 0, a plataforma de impressão não será aquecida durante a primeira camada." - -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "A temperatura usada para a plataforma aquecida de impressão. Se for 0, a plataforma de impressão não será aquecida." - -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "A temperatura usada para purgar material, deve ser grosso modo a temperatura de impressão mais alta possível." - -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "A espessura das camadas inferiores da impressão. Este valor dividido pela altura de camada define o número de camadas inferiores." - -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "A espessura do preenchimento extra que suporta arestas de contorno." - -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "A espessura da interface do suporte onde ele toca o modelo na base ou no topo." - -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "A espessura das bases de suporte. Isto controla o número de camadas densas que são impressas no topo dos pontos do modelo em que o suporte se assenta." - -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "A espessura do topo do suporte. Isto controla a quantidade de camadas densas no topo do suporte em que o modelo se assenta." - -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "A espessura das camadas superiores da impressão. Este valor dividido pela altura de camada define o número de camadas superiores." - -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "A espessura das camadas superiores e inferiores da impressão. Este valor dividido pela altura de camada define o número de camadas superiores e inferiores." - -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "A espessura das paredes na direção horizontal. Este valor dividido pela largura de extrusão da parede define o número de filetes da parede." - -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "A espessura por camada de material de preenchimento. Este valor deve sempre ser um múltiplo da altura de camada e se não for, é arredondado." - -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "A espessura por camada do material de preenchimento de suporte. Este valor deve sempre ser um múltiplo da altura de camada e é arredondado." - -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "O tipo de G-Code a ser gerado." - -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "Volume que seria escorrido. Este valor deve em geral estar perto do diâmetro do bico ao cubo." - -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "A largura (direção X) da área imprimível." - -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "A largura do brim a ser impresso sob o suporte. Um brim mais largo melhora a aderência à mesa de impressão, ao custo de material extra." - -#, fuzzy -msgctxt "interlocking_beam_width description" -msgid "The width of the interlocking structure beams." -msgstr "A largura da torre de purga." - -msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "" - -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "A largura da torre de purga." - -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "A largura dentro da qual flutuar. É sugerido deixar este valor abaixo da largura da parede externa, já que as paredes internas não são alteradas pelo algoritmo." - -msgctxt "retraction_extrusion_window description" -msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." -msgstr "A janela em que a contagem de retrações máxima é válida. Este valor deve ser aproximadamente o mesmo que a distância de retração, de modo que efetivamente o número de vez que a retração passa pelo mesmo segmento de material é limitada." - -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "A coordenada X da posição da torre de purga." - -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "A coordenada Y da posição da torre de purga." - -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "Há malhas de suporte presentes na cena. Este ajuste é controlado pelo Cura." - -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "Este ajuste controla a distância que o extrusor deve parar de extrudar antes que a parede de ponte comece. Desengrenar antes da ponte iniciar pode reduzir a pressão no bico e produzir em uma ponte mais horizontal." - -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Este ajuste controla quanto os cantos internos do contorno do raft são arredondados. Esses cantos internos são convertidos em semicírculos com raio igual ao valor dado aqui. Este ajuste também remove furos no contorno do raft que forem menores que o círculo equivalente." - -msgctxt "retraction_count_max description" -msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." -msgstr "Este ajuste limita o número de retrações ocorrendo dentro da janela de distância de extrusão mínima. Retrações subsequentes dentro desta janela serão ignoradas. Isto previne repetidas retrações no mesmo pedaço de filamento, já que isso pode acabar ovalando e desgastando o filamento." - -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "Isto criará uma parede em volta do modelo que aprisiona ar quente da mesa e protege contra fluxo de ar do exterior. Especialmente útil para materiais que sofrem bastante warp e impressoras 3D que não são cobertas." - -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "Diâmetro da Ponta" - -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "Para compensar pelo encolhimento do material enquanto ele esfria, o modelo será ampliado por este fator na direção XY (horizontalmente)." - -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "Para compensar pelo encolhimento do material enquanto esfria, o modelo será ampliado por este fator na direção Z (verticalmente)." - -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "Para compensar o encolhimento do material enquanto esfria, o modelo será redimensionado por este fator." - -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Camadas Superiores" - -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Distância de Expansão do Contorno Superior" - -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Largura de Remoção do Contorno Superior" - -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "" - -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "" - -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "" - -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "" - -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "" - -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "" - -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "" - -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "" - -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Aceleração da Superfície Superior" - -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Extrusor da Superfície Superior" - -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Fluxo do Contorno da Superfície Superior" - -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Jerk da Superfície Superior" - -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Camadas da Superfície Superior" - -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Direções dos Filetes da Superfície Superior" - -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Largura de extrusão da Superfície Superior" - -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Padrão da Superfície Superior" - -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Velocidade da Superfície Superior" - -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Espessura Superior" - -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "Superfícies superiores e/ou inferiores de seu objeto com um ângulo maior que este ajuste não terão seu contorno expandido. Isto permite evitar a expansão de áreas estreitas de contorno que são criadas quando a superfície do modelo tem uma inclinação quase vertical. Um ângulo de 0° é horizontal e não causará expansão no contorno, enquanto que um ângulo de 90° é vertical e causará expansão em todo o contorno." - -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Superior/Inferior" - -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Superior/Inferior" - -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Aceleração Superior/Inferior" - -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Extrusor Superior/Inferior" - -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Fluxo de Topo/Base" - -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Jerk Superior/Inferior" - -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Direções de Linha Superior/Inferior" - -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Largura de Extrusão Superior/Inferior" - -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Padrão Superior/Inferior" - -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Velocidade Superior/Inferior" - -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Espessura Superior/Inferior" - -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "Tocando a Mesa" - -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Diâmetro da Torre" - -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Ângulo do Teto da Torre" - -msgctxt "mesh_rotation_matrix description" -msgid "Transformation matrix to be applied to the model when loading it from file." -msgstr "Matriz de transformação a ser aplicada ao modelo após o carregamento do arquivo." - -msgctxt "travel label" -msgid "Travel" -msgstr "Percurso" - -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Aceleração de Percurso" - -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Distância de Desvio de Percurso" - -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Jerk de Percurso" - -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Velocidade de Percurso" - -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "Tratar o modelo como apenas superfície, um volume ou volumes com superfícies soltas. O modo de impressão normal somente imprime volumes fechados. O modo \"superfície\" imprime uma parede única traçando a superfície da malha sem nenhun preenchimento e sem paredes superiores ou inferiores. O modo \"ambos\" imprime volumes fechados como o modo normal e volumes abertos como superfícies." - -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Árvore" - -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Tri-Hexágono" - -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" - -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Triângulo" - -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" - -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" - -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" - -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "Diâmetro do Tronco" - -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" - -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Volumes de Sobreposição de Uniões" - -msgctxt "bridge_wall_min_length description" -msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." -msgstr "Paredes não-suportadas mais curtas que esta quantia serão impressas usando ajustes normais de paredes. Paredes mais longas serão impressas com os ajustes de parede de ponte." - -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Usar Camadas Adaptativas" - -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Usar Torres" - -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "Usar taxa de aceleração separada para movimentos de percurso. Se desabilitado, os movimentos de percurso usarão o valor de aceleração da linha impressa em seu destino." - -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "Usar taxa de jerk separada para movimentos de percurso. Se desabilitado, os movimentos de percurso usarão o valor de jerk da linha impressa em seu destino." - -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "Usar extrusão relativa ao invés de extrusão absoluta. Passos de extrusão relativos no G-Code tornam o pós-processamento mais fácil. No entanto, isso não é suportado por todas as impressoras e pode produzir pequenos desvios na quantidade de material depositado comparado a passos de extrusão absolutos. Independente deste ajuste, o modo de extrusão sempre será ajustado para absoluto antes que qualquer script G-Code seja processado." - -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "Usa torres especializadas como suporte de pequenas seções pendentes. Essas torres têm um diâmetro mais largo que a região que elas suportam. Perto da seção pendente, o diâmetro das torres aumenta, formando um 'teto'." - -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "Utilize esta malha para modificar o preenchimento de outras malhas com as quais ela se sobrepõe. Substitui regiões de preenchimento de outras malhas com regiões desta malha. É sugerido que se imprima com somente uma parede e sem paredes superiores e inferiores para esta malha." - -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "Use esta malha para especificar áreas obrigatoriamente suportadas. Isto será usado para gerar estruturas de suporte." - -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "Use esta malha para especificar onde nenhuma parte do modelo deverá ser detectada como seção Pendente e por conseguinte não elegível a receber suporte. Com esta malha sobreposta a um modelo, você poderá marcar onde ele não deverá receber suporte." - -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Especificado pelo Usuário" - -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Compensação de Fator de Encolhimento Vertical" - -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "Tolerância vertical das camadas fatiadas. Os contornos de uma camada são normalmente gerados se tomando seções cruzadas pelo meio de cada espessura de camada (Meio). Alternativamente, cada camada pode ter as áreas que caem fora do volume por toda a espessura da camada (Exclusivo) ou a camada pode ter as áreas que caem dentro de qualquer lugar dentro da camada (Inclusivo). Inclusivo retém mais detalhes, Exclusivo proporciona o melhor encaixe e Meio permanece mais próximo da superfície original." - -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Aguardar o Aquecimento da Mesa" - -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Aguardar Aquecimento do Bico" - -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Aceleração da Parede" - -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Contagem de Distribuição de Parede" - -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Extrusor das Paredes" - -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Fluxo de Parede" - -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Jerk da Parede" - -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Número de Filetes da Parede" - -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Largura de Extrusão da Parede" - -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Ordem de Parede" - -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Velocidade da Parede" - -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Espessura de Parede" - -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Comprimento de Transição de Parede" - -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Distância de Filtro da Transição de Parede" - -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Margem de Filtro de Transição de Parede" - -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Ângulo-Limite de Transição de Parede" - -msgctxt "shell label" -msgid "Walls" -msgstr "Paredes" - -msgctxt "wall_overhang_angle description" -msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." -msgstr "Paredes que pendem por mais do que esse ângulo serão impressas usando ajustes de paredes pendentes. Quando este valor for 90, nenhuma parede será tratada como pendente. Seções pendentes que têm suportes também não serão tratadas como pendentes." - -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "Quando verificar se há partes do modelo abaixo e acima do suporte, usar passos de dada altura. Valores baixos fatiarão mais lentamente, enquanto que valores altos farão com que suporte convencional seja impresso em lugares em que deveria haver interface de suporte." - -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "Quando habilitado os percursos do extrusor são corrigidos para impressora com planejadores de movimento suavizado. Pequenos movimentos que se desviariam da direção geral do percurso do extrusor são suavizados para melhorar os movimentos fluidos." - -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "Quando habilitado, a ordem em que os filetes de preenchimento são impressos é otimizada para reduzir a distância percorrida. A redução em tempo de percurso conseguida depende bastante do modelo sendo fatiado, do padrão de preenchimento, da densidade, etc. Note que, para alguns modelos que têm áreas bem pequenas de preenchimento, o tempo de fatiamento pode ser aumentado bastante." - -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "Quando habilitado, a velocidade da ventoinha de resfriamento é alterada para as regiões de contorno imediatamente acima do suporte." - -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "Quando habilitado, as coordenadas da costura Z são relativas ao centro de cada parte. Quando desabilitado, as coordenadas definem uma posição absoluta na plataforma de impressão." - -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "Quando maior que zero, os movimentos de percurso de combing que forem maiores que essa distância usarão retração. Se deixado em zero, não haverá máximo e os movimentos de combing não usarão retração." - -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "Quando maior que zero, a Expansão Horizontal de Furo é gradualmente aplicada em pequenos furos (eles são mais expandidos). Quanto é deixada em zero, a Expansão Horizontal de Furo será aplicada a todos os furos. Furos maiores que o Diâmetro Máximo de Expansão Horizontal de Furo não serão expandidos." - -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "Quando maior que zero, a Expansão Original do Furo designa a distância de compensação aplicada a todos os furos em cada camada. Valores positivos aumentam os tamanhos dos furos, valores negativos reduzem os tamanhos dos furos. Quando este ajuste é habilitado, ele pode ser ainda aprimorado com o ajuste 'Diâmetro Máximo da Expansão Horizontal de Furo':" - -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "Ao imprimir regiões de contorno de ponte, a quantidade de material extrudado é multiplicada por este valor." - -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "Ao se imprimir paredes de ponte, a quantidade de material extrudado é multiplicada por este valor." - -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Ao imprimir a segunda camada de contorno de ponte, a quantidade de material é multiplicada por este valor." - -msgctxt "bridge_skin_material_flow_3 description" -msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Ao imprimir a terceira de contorno da ponte, a quantidade de material é multiplicada por este valor." - -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "Quando a velocidade mínima acaba sendo usada por causa do tempo mínimo de camada, levanta a cabeça para longe da impressão e espera tempo extra até que o tempo mínimo de camada seja alcançado." - -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "Quando o modelo tem pequenas lacunas verticais de apenas umas poucas camadas, normalmente há contorno em volta dessas camadas no espaço estreito. Habilite este ajuste para não gerar o contorno se a lacuna vertical for bem pequena. Isso melhora o tempo de impressão e fatiamento, mas tecnicamente deixa preenchimento exposto ao ar." - -msgctxt "wall_transition_angle description" -msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." -msgstr "Quanto criar transições entre números de paredes pares e ímpares. A forma de cunha em ângulo maior que este ajuste não terá transições e nenhuma parede será impressa no centro para preencher o espaço remanescente. Reduzir este ajuste faz reduzir o número e comprimento das paredes centrais, mas pode deixar vãos ou sobre-extrudar." - -msgctxt "wall_transition_length description" -msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." -msgstr "Ao transicionar entre diferentes números de paredes à medida que a peça fica mais fina, uma certa quantidade de espaço é alocada para partir ou juntar os filetes de parede." - -msgctxt "wipe_hop_enable description" -msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "Quando limpando, a plataforma de impressão é abaixada para criar uma folga entre o bico e a impressão. Isso previne que o bico bata na impressão durante movimentos de percurso, reduzindo a chance de descolar o objeto da plataforma." - -msgctxt "retraction_hop_enabled description" -msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "Sempre que uma retração é feita, sobe-se um pouco em Z para criar um espaço entre o bico e a impressão. Isso evita que o bico fique batendo nas impressões durante o percurso, reduzindo a chance de chutar a peça para fora da mesa." - -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "Decide se a distância XY substitui a distância Z de suporte ou vice-versa. Quando XY substitui Z a distância XY pode afastar o suporte do modelo, influenciando a distância Z real até a seção pendente. Podemos desabilitar isso não aplicando a distância XY em volta das seções pendentes." - -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "Decide se as coordenadas X/Y da posição zero da impressão estão no centro da área imprimível (senão, estarão no canto inferior esquerdo)." - -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "Decide se o endstop do eixo X está na direção positiva (coordenada X alta) ou negativa (coordenada X baixa)." - -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "Decide se o endstop do eixo Y está na direção positiva (coordenada Y alta) ou negativa (coordenada Y baixa)." - -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "Decide se o endstop do eixo Z está na direção positiva (coordenada Z alta) ou negativa (coordenada Z baixa)." - -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "Decide se os extrusores usam um único aquecedor combinado ou cada um tem o seu respectivo aquecedor." - -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "Decide se os extrusores compartilham um único bico ao invés de cada extrusor ter seu próprio. Quando colocado em verdadeiro, é esperado que o script g-code de início da impressora configure todos os extrusores em um estado inicial de retração que seja conhecido e mutuamente compatível (ou zero ou filamento não retraído); neste caso, o status de retração inicial é descrito, por extrusor, pelo parâmetro 'machine_extruders_shared_nozzle_initial_retraction'." - -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "Decide se a plataforma de impressão pode ser aquecida." - -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "Decide se a máquina consegue estabilizar a temperatura do volume de construção." - -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "Decide se o objeto deve ser centralizado no meio da plataforma de impressão, ao invés de usar o sistema de coordenadas em que o objeto foi salvo." - -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "Decide se a temperatura deve ser controlada pelo Cura. Desligue para controlar a temperatura do bico fora do Cura." - -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "Decide se haverá a inclusão de comandos de temperatura da mesa de impressão no início do G-Code. Quando o G-Code Inicial já contiver comandos de temperatura da mesa, a interface do Cura automaticamente desabilitará este ajuste." - -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "Decide se haverá a inclusão de comandos de temperatura do bico no início do G-Code. Quando o G-Code Inicial já contiver comandos de temperatura do bico, a interface do Cura automaticamente desabilitará este ajuste." - -msgctxt "clean_between_layers description" -msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." -msgstr "Decide se haverá inclusão de G-Code de limpeza de bico entre camadas (no máximo 1 por camada). Habilitar este ajuste pode influenciar o comportamento de retração na mudança de camada. Por favor use ajustes de Retração de Limpeza para controlar retração nas camadas onde o script de limpeza estará atuando." - -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "Decide se haverá inserção do comando para aguardar que a temperatura-alvo da mesa de impressão estabilize no início." - -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "Decide se é preciso descarregar o filamento com uma massa de purga antes de imprimir. Ligar este ajuste assegurará que o extrusor tenha material pronto no bico antes de imprimir. Imprimir um Brim ou Skirt pode funcionar como purga também, em cujo caso desligar esse ajuste faz ganhar algum tempo." - -msgctxt "print_sequence description" -msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -msgstr "Decide se os modelos devem ser impressos todos de uma vez só, uma camada por vez, ou se se deve esperar a cada modelo terminar antes de prosseguir para o próximo. O modo um de cada vez só é possível se a) somente um extrusor estiver habilitado e b) todos os modelos estiverem separados de modo que a cabeça de impressão pode se mover entre todos e todos os modelos estiverem em altura mais baixa que a distância entre o bico e os eixos X e Y." - -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "Decide se deseja exibir as variantes desta máquina, que são descrita em arquivos .json separados." - -msgctxt "machine_firmware_retract description" -msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." -msgstr "Decide se serão usados comandos de retração de firmware (G10/G11) ao invés da propriedade E dos comandos G1 para retrair o material." - -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "Decide se haverá a inserção do comando para aguardar que a temperatura-alvo do bico estabilize no início." - -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Largura de um filete de preenchimento." - -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "Largura de um filete usado no teto ou base do suporte." - -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "Largura de extrusão de um filete das áreas no topo da peça." - -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "Largura de uma única linha de filete extrudado. Geralmente, a largura da linha corresponde ao diâmetro do bico. No entanto, reduzir ligeiramente este valor pode produzir impressões melhores." - -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "Largura de um filete usado na torre de purga." - -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "Largura de um filete do brim (bainha) ou skirt (saia)." - -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "Largura de um filete usado na base do suporte." - -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "Largura de um filete usado no teto do suporte." - -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Largura de um filete usado nas estruturas de suporte." - -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Largura de extrusão dos filetes das paredes do topo e base dos modelos." - -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "Largura de extrusão das paredes internas (todas menos a mais externa)." - -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Largura de um filete que faz parte de uma parede." - -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "Largura das linhas na camada de base do raft. Devem ser grossas para auxiliar na aderência à mesa." - -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "Largura das linhas na camada intermediária do raft. Fazer a segunda camada extrudar mais faz as linhas grudarem melhor na mesa." - -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "Largura das linhas na superfície superior do raft. Estas podem ser linhas finas de modo que o topo do raft fique liso." - -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "Largura de Extrusão somente da parede mais externa do modelo. Diminuindo este valor, níveis de detalhes mais altos podem ser impressos." - -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "Largura da parede que substituirá detalhes finos (de acordo com o Tamanho Mínimo de Detalhe) do modelo. Se a Largura Mínima de Filete de Parede for mais fina que a espessura do detalhe, a parede se tornará tão espessa quanto o próprio detalhe." - -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "Posição X da Varredura de Limpeza" - -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Velocidade do Salto de Limpeza" - -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "Limpar Bico Inativo na Torre de Purga" - -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Distância de Movimentação da Limpeza" - -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "Limpar o Bico Entre Camadas" - -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Pausa de Limpeza" - -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Contagem de Repetições de Limpeza" - -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Distância de Retração da Limpeza" - -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "Habilitar Retração de Limpeza" - -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "Quantidade Extra de Purga da Retração de Limpeza" - -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Velocidade de Purga da Retração de Limpeza" - -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "Velocidade da Retração da Retração de Limpeza" - -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Velocidade da Retração de Limpeza" - -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "Salto Z da Limpeza" - -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "Altura do Salto Z da Limpeza" - -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "Dentro do Preenchimento" - -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "Escreve a ferramenta ativa depois de enviar comandos de temperatura para a ferramenta inativa. Requerido para impressão de Extrusor Duplo com Smoothie ou outros firmwares com comandos modais de ferramenta." - -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "Endstop X na Direção Positiva" - -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "Localização X onde o script de limpeza iniciará." - -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y substitui Z" - -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Endstop Y na Direção Positiva" - -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Endstop Z na Direção Positiva" - -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Salto Z Após Troca de Extrusor" - -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Salto Z Após Troca de Altura do Extrusor" - -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Altura do Salto Z" - -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Salto Z Somente Sobre Partes Impressas" - -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Velocidade do Salto Z" - -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Salto Z Ao Retrair" - -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Alinhamento da Costura em Z" - -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Posição da Costura Z" - -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Costura Z Relativa" - -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "Coordenada X da Costura Z" - -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Coordenada Y da Costura Z" - -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z substitui X/Y" - -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "travel description" -msgid "travel" -msgstr "percurso" - -#~ msgctxt "machine_head_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps excluded)." -#~ msgstr "Uma silhueta 2D da cabeça de impressão (sem os suportes de ventoinhas)." - -#~ msgctxt "machine_head_with_fans_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps included)." -#~ msgstr "Silhueta da cabeça de impressão com os suportes de ventoinhas inclusos." - -#~ msgctxt "spaghetti_infill_extra_volume description" -#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." -#~ msgstr "Um termo de correção para ajustar o volume total sendo extrudado a cada vez que se preencher com estilo espaguete." - -#~ msgctxt "sub_div_rad_mult description" -#~ msgid "A multiplier on the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to more subdivisions, i.e. more small cubes." -#~ msgstr "Um multiplicador do raio do centro de cada cubo para verificar a borda do modelo, de modo a decidir se este cubo deve ser subdividido. Valores maiores levam a maiores subdivisões, isto é, mais cubos pequenos." - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive Layers Threshold" -#~ msgstr "Limite das Camadas Adaptativas" - -#~ msgctxt "adaptive_layer_height_variation label" -#~ msgid "Adaptive layers maximum variation" -#~ msgstr "Variação máxima das camadas adaptativas" - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive layers threshold" -#~ msgstr "Limite das camadas adaptativas" - -#~ msgctxt "adaptive_layer_height_variation_step label" -#~ msgid "Adaptive layers variation step size" -#~ msgstr "Tamanho de passo da variação das camadas adaptativas" - -#~ msgctxt "wall_add_middle_threshold label" -#~ msgid "Add Middle Line Threshold" -#~ msgstr "Adicionar Limite de Filete Central" - -#~ msgctxt "support_interface_density description" -#~ msgid "Adjusts the density of the roofs and bottoms of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -#~ msgstr "Ajusta a densidade dos topos e bases das estruturas de suporte. Um valor mais alto resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." - -#~ msgctxt "spaghetti_flow description" -#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." -#~ msgstr "Ajusta a densidade do preenchimento espaguete. Note que a Densidade de Preenchimento controla somente o espaçamento entre linhas do padrão de preenchimento, não a quantidade de extrusão para o preenchimento espaguete." - -#~ msgctxt "dual_pre_wipe description" -#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -#~ msgstr "Depois de trocar extrusores, limpar o material escorrendo do bico na primeira peça impressa. Isso causa um movimento lento de limpeza do bico em um lugar onde o material escorrido causa o menor dano à qualidade de superfície da sua impressão." - -#~ msgctxt "material_bed_temp_wait label" -#~ msgid "Aguardar o aquecimento da mesa de impressão" -#~ msgstr "Esperar a que la placa de impresión se caliente" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly label" -#~ msgid "Alternate Cross 3D Pockets" -#~ msgstr "Bolso Alternados de Cruzado 3D" - -#~ msgctxt "skin_alternate_rotation label" -#~ msgid "Alternate Skin Rotation" -#~ msgstr "Alterna a Rotação do Contorno" - -#~ msgctxt "skin_alternate_rotation description" -#~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." -#~ msgstr "Alterna a direção em que as camadas superiores e inferiores são impressas. Normalmente elas são impressas somente na diagonal. Este ajuste permite direções somente no X e somente no Y." - -#~ msgctxt "prime_tower_purge_volume description" -#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -#~ msgstr "Quantidade de filamento a ser purgado na torre de purga. A purga é útil para compensar filamento perdido por escorrimento durante inatividade do bico." - -#~ msgctxt "hole_xy_offset description" -#~ msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes." -#~ msgstr "Quantidade de deslocamento aplicado a todos os furos em cada camada. Valores positivos aumentam o tamanho dos furos, valores negativos reduzem o tamanho dos furos." - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" -#~ msgid "Apply the extruder offset to the coordinate system." -#~ msgstr "Aplicar o deslocamento do extrusor ao sistema de coordenadas." - -#~ msgctxt "material_flow_dependent_temperature label" -#~ msgid "Auto Temperature" -#~ msgstr "Temperatura Automática" - -#~ msgctxt "z_seam_type option back" -#~ msgid "Back" -#~ msgstr "Costas" - -#~ msgctxt "bridge_wall_max_overhang label" -#~ msgid "Bridge Wall Max Overhang" -#~ msgstr "Seção Pendente Máxima da Parede de Ponte" - -#~ msgctxt "machine_shape label" -#~ msgid "Build plate shape" -#~ msgstr "Forma da mesa de impressão" - -#~ msgctxt "center_object label" -#~ msgid "Center object" -#~ msgstr "Centralizar Objeto" - -#~ msgctxt "material_flow_dependent_temperature description" -#~ msgid "Change the temperature for each layer automatically with the average flow speed of that layer." -#~ msgstr "Troca a temperatura para cada camada automaticamente de acordo com a velocidade média de fluxo desta camada." - -#~ msgctxt "prime_tower_circular label" -#~ msgid "Circular Prime Tower" -#~ msgstr "Torre de Purga Circular" - -#~ msgctxt "retraction_combing description" -#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." -#~ msgstr "O Combing (penteamento) mantém o bico dentro de áreas já impressas durante os percursos. Isto resulta em movimentações um pouco mais amplas mas reduz a necessidade de retrações. Se o combing for desligado, o material sofrerá retração e o bico se moverá em linha reta ao próximo ponto. É também possível evitar combing sobre áreas de contorno de topo e base e ainda só fazer combing no preenchimento. Note que a opção 'Dentro do Preenchimento' se comporta exatamente como a 'Não no Contorno' em versões anteriores do Cura." - -#~ msgctxt "retraction_combing description" -#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." -#~ msgstr "O Combing, ou penteamento, mantém o bico dentro de áreas já impressas se movimenta. Isso resulta em percursos ligeiramente mais longos mas reduz a necessidade de retrações. Se o penteamento estiver desligado, o material sofrerá retração e o bico se moverá em linha reta para o próximo ponto. É também possível evitar o penteamento em área de contornos superiores e inferiores habilitando o penteamento no preenchimento somente." - -#~ msgctxt "wireframe_strategy option compensate" -#~ msgid "Compensate" -#~ msgstr "Compensar" - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" -#~ msgid "Compensate Inner Wall Overlaps" -#~ msgstr "Compensar Sobreposições da Parede Interna" - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" -#~ msgid "Compensate Outer Wall Overlaps" -#~ msgstr "Compensar Sobreposições de Parede Externa" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled label" -#~ msgid "Compensate Wall Overlaps" -#~ msgstr "Compensar Sobreposições de Parede" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled description" -#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." -#~ msgstr "Compensa o fluxo para partes de uma parede sendo impressa onde já há outra parede." - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" -#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." -#~ msgstr "Compensa o fluxo para partes de uma parede interna sendo impressa onde já há outra parede." - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" -#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." -#~ msgstr "Compensa o fluxo para partes de uma parede externa sendo impressa onde já há outra parede." - -#~ msgctxt "infill_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "support_bottom_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "support_interface_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "support_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "support_roof_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "zig_zaggify_infill description" -#~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -#~ msgstr "Conecta as extremidades onde o padrão de preenchimento se encontra com a parede interna usando linhas que seguem a forma dessa parede. Habilitar este ajuste pode fazer o preenchimento aderir melhor às paredes e reduz os efeitos do preenchimento na qualidade das superfícies verticais. Desabilitar este ajuste reduz a quantidade de material usado." - -#~ msgctxt "connect_skin_polygons description" -#~ msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happend midway over infill this feature can reduce the top surface quality." -#~ msgstr "Conectar camihos de contorno do topo e base onde se situarem próximos. Habilitar para o padrão concêntrico reduzirá bastante o tempo de percurso, mas visto que as conexões podem acontecer sobre o preenchimento no meio do caminho, este recurso pode reduzir a qualidade da superfície superior." - -#~ msgctxt "z_seam_corner description" -#~ msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner." -#~ msgstr "Controla se cantos no contorno do modelo influenciam a posição da costura. Nenhum significa que cantos não têm influência na posição da costura. Esconder Costura torna mais provável que ela ocorra em um canto interior. Expor Costura torna mais provável que ela ocorra em um canto exterior. Esconder ou Expor Costura torna mais provável que ocorra em um canto, externo ou externo." - -#~ msgctxt "machine_nozzle_cool_down_speed label" -#~ msgid "Cool down speed" -#~ msgstr "Velocidade de resfriamento" - -#~ msgctxt "wireframe_top_jump description" -#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." -#~ msgstr "Cria um pequeno 'nódulo' ou 'nó' no topo do filete ascendente de tal modo que a camada horizontal consecutiva tem melhor chance de se conectar ao filete. Somente se aplica à Impressão em Arame." - -#~ msgctxt "sub_div_rad_mult label" -#~ msgid "Cubic Subdivision Radius" -#~ msgstr "Raio de Subdivisão Cúbica" - -#~ msgctxt "wireframe_bottom_delay description" -#~ msgid "Delay time after a downward move. Only applies to Wire Printing." -#~ msgstr "Tempo de espera depois de um movimento descendente tal que o filete possa se solidificar. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_top_delay description" -#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." -#~ msgstr "Tempo de espera depois de um movimento ascendente tal que o filete ascendente possa se solidifcar. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_flat_delay description" -#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." -#~ msgstr "Tempo de espera entre dois segmentos horizontais. Inserir tal espera pode ocasionar melhor aderência a camadas prévias nos pontos de conexão, mas atrasos muito longos podem causar estruturas murchas. Somente se aplica à Impressão em Arame." - -#~ msgctxt "inset_direction description" -#~ msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed." -#~ msgstr "Determina em que ordem as paredes são impressas. Imprimir parede mais externas antes ajuda com acurácia dimensional, já que falhas das paredes mais internas não se propagam para o exterior. No entanto imprimi-las depois permite melhor empilhamento quando seções pendentes são impressas." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Determina a prioridade desta malha ao considerar múltiplas malhas de preenchimento sobrepostas. Áreas onde elas se sobrepõem terão as configurações da malha com o menor número. Uma malha de prenchimento de ordem maior modificará o preenchimento das malhas de preenchimento com as malhas de ordem mais baixa e normais." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Determina a prioridade desta malha ao se considerar volumes sobrepostos. Áread onde múltiplas malhas residem serão ganhas pela malha com menor número. Uma malha de preenchimento com maior ordem modificará o preenchimento das malhas de preenchimento com malhas de ordem normal e menor." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Determina que malha de preenchimento está dentro do preenchimento de outra malha de preenchimento. Uma malha de preenchimento com ordem mais alta modificará o preenchimento de malhas de preenchimento com ordem mais baixa e malhas normais." - -#~ msgctxt "machine_disallowed_areas label" -#~ msgid "Disallowed areas" -#~ msgstr "Áreas proibidas" - -#~ msgctxt "wireframe_nozzle_clearance description" -#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." -#~ msgstr "Distância entre o bico e os filetes descendentes horizontais. Espaços livres maiores resultarão em filetes descendentes diagonais com ângulo menos acentuado, o que por sua vez resulta em menos conexões ascendentes à próxima camada. Somente se aplica à Impressão em Arame." - -#~ msgctxt "support_interface_line_distance description" -#~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately." -#~ msgstr "Distância entre as linhas impressas da interface de suporte. Este ajuste é calculado pela Densidade de Interface de Suporte, mas pode ser ajustado separadamente." - -#~ msgctxt "support_bottom_distance description" -#~ msgid "Distance from the print to the bottom of the support." -#~ msgstr "Distância da parte inferior do suporte até a impressão." - -#~ msgctxt "support_z_distance description" -#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded down to a multiple of the layer height." -#~ msgstr "Distância do topo/base da estrutura de suporte à impressão. Este vão provê o espaço para remover os suportes depois do modelo ser impresso. Este valor é arredondando para um múltiplo da altura de camada." - -#~ msgctxt "support_z_distance description" -#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -#~ msgstr "Distância do topo e base da estrutura de suporte para a impressão. Este vão provê um espaço para remover os suportes depois de o modelo ser impresso. O valor é arredondado para um múltiplo da altura de camada." - -#~ msgctxt "wireframe_up_half_speed description" -#~ msgid "" -#~ "Distance of an upward move which is extruded with half speed.\n" -#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -#~ msgstr "" -#~ "Distância de um movimento ascendente que é extrudado com metade da velocidade.\n" -#~ "Isto pode resultar em melhor aderência às camadas prévias, ao mesmo tempo em que não aquece demais essas camadas. Somente se aplica à Impressão em Arame." - -#~ msgctxt "support_xy_distance_overhang description" -#~ msgid "Distance of the support structure from the overhang in the X/Y directions. " -#~ msgstr "Distância da estrutura de suporte até a seção pendente nas direções X/Y. " - -#~ msgctxt "wireframe_fall_down description" -#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Distância na qual o material desaba após uma extrusão ascendente. Esta distância é compensada. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_drag_along description" -#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Distância na qual o material de uma extrusão ascendente é arrastado com a extrusão descendente diagonal. Esta distância é compensada. Somente se aplica à Impressão em Arame." - -#~ msgctxt "multiple_mesh_overlap label" -#~ msgid "Dual Extrusion Overlap" -#~ msgstr "Sobreposição de Extrusão Dual" - -#~ msgctxt "gradual_flow_discretisation_step_size description" -#~ msgid "Duration of each step in the gradual flow change" -#~ msgstr "Duração de cada passo na alteração de fluxo gradual" - -#~ msgctxt "support_enable label" -#~ msgid "Enable Support" -#~ msgstr "Habilitar Suportes" - -#~ msgctxt "gradual_flow_enabled description" -#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -#~ msgstr "Habilita mudanças graduais de fluxo. Quando habilitado, o fluxo é gradualmente aumentado ou reduzido para o fluxo alvo. Útil para impressoras com tubo bowden onde o fluxo não é imediatamente alterado quando o motor do extrusor inicia ou para." - -#~ msgctxt "support_enable description" -#~ msgid "Enable support structures. These structures support parts of the model with severe overhangs." -#~ msgstr "Habilita as estruturas de suporte. Essas estruturas apóiam partes do modelo que tenham seções pendentes." - -#~ msgctxt "machine_end_gcode label" -#~ msgid "End GCode" -#~ msgstr "G-Code Final" - -#~ msgctxt "material_end_of_filament_purge_length label" -#~ msgid "End Of Filament Purge Length" -#~ msgstr "Comprimento de Purga de Fim de Filamento" - -#~ msgctxt "material_end_of_filament_purge_speed label" -#~ msgid "End Of Filament Purge Speed" -#~ msgstr "Velocidade de Purga de Fim de Filamento" - -#~ msgctxt "speed_equalize_flow_enabled label" -#~ msgid "Equalize Filament Flow" -#~ msgstr "Equalizar Fluxo de Filamento" - -#~ msgctxt "fill_perimeter_gaps option everywhere" -#~ msgid "Everywhere" -#~ msgstr "Em todos os lugares" - -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Bottom Skins Into Infill" -#~ msgstr "Expande Contorno da Base Para Preenchimento" - -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Lower Skins" -#~ msgstr "Expandir Contornos Inferiores" - -#~ msgctxt "expand_skins_into_infill label" -#~ msgid "Expand Skins Into Infill" -#~ msgstr "Expandir Contorno Para Preenchimento" - -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Top Skins Into Infill" -#~ msgstr "Expandir Contorno do Topo Para Preenchimento" - -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Upper Skins" -#~ msgstr "Expandir Contornos Superiores" - -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand lower skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Expandir as áreas de contorno inferiores (áreas com ar abaixo) de modo que fiquem ancoradas pelas camadas de preenchimento acima e abaixo." - -#~ msgctxt "expand_skins_into_infill description" -#~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin." -#~ msgstr "Expandir áreas de perímetro das partes superiores e inferiores de superfícies chatas. Por default, o perímetro para sob as paredes que rodeiam o preenchimento mas isso pode fazer com que buracos apareçam caso a densidade de preenchimento seja baixa. Este ajuste estenda os perímetros além das linhas de parede de modo que o preenchimento da próxima camada fique em cima de perímetros." - -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Expande as áreas de perímetro da base (áreas com ar abaixo delas) de modo que se ancorem nas camadas de preenchimento embaixo e acima." - -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand the top skin areas (areas with air above) so that they support infill above." -#~ msgstr "Expande as áreas de perímetro do topo (áreas com ar acima delas) de modo que suportem o preenchimento de cima." - -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand upper skin areas (areas with air above) so that they support infill above." -#~ msgstr "Expandir as áreas de contorno superiores (áreas com ar acima) de modo que suportem o preenchimento acima." - -#~ msgctxt "support_conical_enabled description" -#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." -#~ msgstr "Recurso experimental: Faz as áreas de suporte menores na base que na seção pendente." - -#~ msgctxt "machine_filament_park_distance label" -#~ msgid "Filament Park Distance" -#~ msgstr "Distância de Descanso do Filamento" - -#~ msgctxt "fill_perimeter_gaps label" -#~ msgid "Fill Gaps Between Walls" -#~ msgstr "Preenche Lacunas Entre Paredes" - -#~ msgctxt "fill_perimeter_gaps description" -#~ msgid "Fills the gaps between walls where no walls fit." -#~ msgstr "Preenche as lacunas que ficam entre paredes quando paredes intermediárias não caberiam." - -#~ msgctxt "filter_out_tiny_gaps label" -#~ msgid "Filter Out Tiny Gaps" -#~ msgstr "Filtrar Pequenas Lacunas" - -#~ msgctxt "filter_out_tiny_gaps description" -#~ msgid "Filter out tiny gaps to reduce blobs on outside of model." -#~ msgstr "Filtrar (rempver) pequenas lacunas para reduzir bolhas no exterior do modelo." - -#~ msgctxt "small_feature_speed_factor_0 label" -#~ msgid "First Layer Speed" -#~ msgstr "Velocidade da Primeira Camada" - -#~ msgctxt "wireframe_flow_connection description" -#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." -#~ msgstr "Compensação de Fluxo quanto subindo ou descendo. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_flow_flat description" -#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." -#~ msgstr "Compensação de fluxo ao imprimir filetes planos. Somente se aplica à Impressão em Arame." - -#~ msgctxt "prime_tower_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value." -#~ msgstr "Compensação de Fluxo: a quantidade de material extrudado é multiplicado por este valor." - -#~ msgctxt "wireframe_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." -#~ msgstr "Compensação de fluxo: a quantidade de material extrudado é multiplicado por este valor. Somente se aplica à Impressão em Arame." - -#~ msgctxt "flow_rate_extrusion_offset_factor label" -#~ msgid "Flow rate compensation factor" -#~ msgstr "Fator de compensaçõ de taxa de fluxo" - -#~ msgctxt "flow_rate_max_extrusion_offset label" -#~ msgid "Flow rate compensation max extrusion offset" -#~ msgstr "Deslocamento de extrusão máxima da compensação de taxa de fluxo" - -#~ msgctxt "reset_flow_duration description" -#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -#~ msgstr "Para qualquer movimento mais longo que este valor, o fluxo material é resetado para o fluxo-alvo do percurso." - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code Flavour" -#~ msgstr "Sabor de G-Code" - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code flavour" -#~ msgstr "Sabor de G-Code" - -#~ msgctxt "material_guid description" -#~ msgid "GUID of the material. This is set automatically. " -#~ msgstr "GUID do material. Este valor é ajustado automaticamente. " - -#~ msgctxt "gantry_height label" -#~ msgid "Gantry height" -#~ msgstr "Altura do eixo" - -#~ msgctxt "machine_end_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very end - separated by \n" -#~ "." -#~ msgstr "" -#~ "Comandos de G-Code a serem executados no fim da impressão - separados por \n" -#~ "." - -#~ msgctxt "machine_start_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very start - separated by \n" -#~ "." -#~ msgstr "" -#~ "Comandos de G-Code a serem executados durante o início da impressão - separados por \n" -#~ "." - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "Gcode flavour" -#~ msgstr "Tipo de G-Code" - -#~ msgctxt "support_tree_enable description" -#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." -#~ msgstr "Gera um suporte em árvore com galhos que apóiam sua impressão. Isto pode reduzir uso de material e tempo de impressão, mas aumenta bastante o tempo de fatiamento." - -#~ msgctxt "ironing_enabled description" -#~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." -#~ msgstr "Passar sobre a superfície superior depois de impressa, mas sem extrudar material. A idéia é derreter o plástico do topo ainda mais, criando uma superfície mais lisa." - -#~ msgctxt "gradual_flow_discretisation_step_size label" -#~ msgid "Gradual flow discretisation step size" -#~ msgstr "Tamanho de passo da discretização de fluxo gradual" - -# ## Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better. -#~ msgctxt "gradual_flow_enabled label" -#~ msgid "Gradual flow enabled" -#~ msgstr "Fluxo gradual habilitado" - -#~ msgctxt "max_flow_acceleration label" -#~ msgid "Gradual flow max acceleration" -#~ msgstr "Aceleração máxima do fluxo gradual" - -#~ msgctxt "machine_heated_bed label" -#~ msgid "Has heated build plate" -#~ msgstr "Tem mesa de impressão aquecida" - -#~ msgctxt "machine_nozzle_heat_up_speed label" -#~ msgid "Heat up speed" -#~ msgstr "Velocidade de aquecimento" - -#~ msgctxt "machine_heat_zone_length label" -#~ msgid "Heat zone length" -#~ msgstr "Comprimento da zona de aquecimento" - -#~ msgctxt "infill_hollow label" -#~ msgid "Hollow Out Objects" -#~ msgstr "Tornar Objetos Ocos" - -#~ msgctxt "support_tree_branch_distance description" -#~ msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." -#~ msgstr "Quão distantes os galhos precisam estar quando tocam o modelo. Tornar esta distância pequena fará com que o suporte em árvore toque o modelo em mais pontos, permitindo maior sustentação mas tornando o suporte mais difícil de remover." - -#~ msgctxt "machine_steps_per_mm_e description" -#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -#~ msgstr "Quantos passos do motor de passo resultarão em um milímetro de extrusão." - -#~ msgctxt "slicing_tolerance description" -#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." -#~ msgstr "Como fatiar camadas com superfícies diagonais. As áreas de uma camada podem ser geradas baseadas em onde o meio da camada interseciona a superfície (Meio). Alternativamente, cada camada pode ter as áreas que se encontram dentro do volume por toda a altura da camada (Exclusivo) ou a camada pode abranger todas as áreas que tenham qualquer penetração dentro do volume (Inclusivo). Exclusivo retém mais detalhes, Inclusivo é melhor para encaixes e Meio toma menos tempo para processar." - -#~ msgctxt "wall_min_flow_retract description" -#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." -#~ msgstr "Se usado, a retração é usada ao invés de combing para movimentos de percurso que substituem paredes cujo fluxo estiver abaixo do limite mínimo." - -#~ msgctxt "skin_no_small_gaps_heuristic label" -#~ msgid "Ignore Small Z Gaps" -#~ msgstr "Ignorar Pequenas Lacunas em Z" - -#~ msgctxt "start_layers_at_same_position description" -#~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time." -#~ msgstr "Em cada camada iniciar imprimindo o objeto próximo ao mesmo ponto, de modo que não comecemos uma nova camada quando imprimir a peça com que a camada anterior terminou. Isso permite seções pendentes e partes pequenas melhores, mas aumenta o tempo de impressão." - -#~ msgctxt "material_bed_temp_prepend label" -#~ msgid "Include build plate temperature" -#~ msgstr "Incluir temperatura da mesa de impressão" - -#~ msgctxt "material_print_temp_prepend label" -#~ msgid "Include material temperatures" -#~ msgstr "Incluir temperaturas dos materiais" - -#~ msgctxt "infill_mesh_order label" -#~ msgid "Infill Mesh Order" -#~ msgstr "Order das Malhas de Preenchimento" - -#~ msgctxt "z_offset_layer_0 label" -#~ msgid "Initial Layer Z Offset" -#~ msgstr "Deslocamento em Z da Camada Inicial" - -#~ msgctxt "layer_0_max_flow_acceleration label" -#~ msgid "Initial layer max flow acceleration" -#~ msgstr "Aceleração máxima de fluxo da camada inicial" - -#~ msgctxt "wall_x_extruder_nr label" -#~ msgid "Inner Walls Extruder" -#~ msgstr "Extrusor das Paredes Internas" - -#~ msgctxt "machine_center_is_zero label" -#~ msgid "Is center origin" -#~ msgstr "A origem está no centro" - -#~ msgctxt "wireframe_strategy option knot" -#~ msgid "Knot" -#~ msgstr "Nó" - -#~ msgctxt "limit_support_retractions label" -#~ msgid "Limit Support Retractions" -#~ msgstr "Limitar Retrações de Suporte" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine Head Polygon" -#~ msgstr "Polígono Da Cabeça da Máquina" - -#~ msgctxt "machine_depth label" -#~ msgid "Machine depth" -#~ msgstr "Profundidada da mesa" - -#~ msgctxt "machine_head_with_fans_polygon label" -#~ msgid "Machine head & Fan polygon" -#~ msgstr "Polígono da cabeça da máquina e da ventoinha" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine head polygon" -#~ msgstr "Polígono da cabeça da máquina" - -#~ msgctxt "machine_height label" -#~ msgid "Machine height" -#~ msgstr "Altura do volume de impressão" - -#~ msgctxt "machine_width label" -#~ msgid "Machine width" -#~ msgstr "Largura da mesa" - -#~ msgctxt "prime_tower_circular description" -#~ msgid "Make the prime tower as a circular shape." -#~ msgstr "Faz a torre de purga na forma circular." - -#~ msgctxt "material_end_of_filament_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "material_end_of_filament_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "material_flush_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "material_flush_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "material_maximum_park_duration description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "material_no_load_move_factor description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "machine_max_feedrate_e label" -#~ msgid "Maximum Feedrate" -#~ msgstr "Velocidade Máxima de Alimentação" - -#~ msgctxt "speed_equalize_flow_max label" -#~ msgid "Maximum Speed for Flow Equalization" -#~ msgstr "Velocidade Máxima para Equalização de Fluxo" - -#~ msgctxt "max_feedrate_z_override label" -#~ msgid "Maximum Z Speed" -#~ msgstr "Velocidade Máxima em Z" - -#~ msgctxt "max_flow_acceleration description" -#~ msgid "Maximum acceleration for gradual flow changes" -#~ msgstr "Aceleração máxima para alterações de fluxo gradual" - -#~ msgctxt "max_extrusion_before_wipe description" -#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated." -#~ msgstr "Material máximo que pode ser extrudado antes que outra limpeza do bico seja iniciada." - -#~ msgctxt "speed_equalize_flow_max description" -#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -#~ msgstr "Velocidade máxima de impressão no ajuste de velocidades para equalizar o fluxo." - -#~ msgctxt "mesh_position_x label" -#~ msgid "Mesh position x" -#~ msgstr "Posição X da malha" - -#~ msgctxt "mesh_position_y label" -#~ msgid "Mesh position y" -#~ msgstr "Posição Y da malha" - -#~ msgctxt "mesh_position_z label" -#~ msgid "Mesh position z" -#~ msgstr "Posição Z da malha" - -#~ msgctxt "support_minimal_diameter label" -#~ msgid "Minimum Diameter" -#~ msgstr "Diâmetro mínimo" - -#~ msgctxt "wall_min_flow label" -#~ msgid "Minimum Wall Flow" -#~ msgstr "Mínimo Fluxo da Parede" - -#~ msgctxt "wall_min_flow description" -#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." -#~ msgstr "Mínima porcentagem de fluxo permite para um filete de parede. A compensação de sobreposição de parede reduz o fluxo de uma parede quando ela está próxima a outra já impressa. Paredes cujo fluxo seja menor que este valor serão trocadas por um momento de percurso. Ao usar este ajuste, você deve habilitar a compensação de sobreposição de paredes e imprimir as paredes externas antes das internas." - -#~ msgctxt "minimum_interface_area description" -#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "Área mínima para polígonos de interface de suporte. Polígonos que tiverem uma área menor que este valor não serão gerados." - -#~ msgctxt "minimum_bottom_area description" -#~ msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "Área mínima para as bases do suporte. Polígonos que tiverem uma área menor que este valor não serão gerados." - -#~ msgctxt "minimum_roof_area description" -#~ msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "Área mínima para os tetos do suporte. Polígonos que tiverem área menor que este valor são serão gerados." - -#~ msgctxt "support_minimal_diameter description" -#~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -#~ msgstr "Diâmeto mínimo nas direções X/Y de uma área pequena que deverá ser suportada por uma torre de suporte especial." - -#~ msgctxt "layer_0_max_flow_acceleration description" -#~ msgid "Minimum speed for gradual flow changes for the first layer" -#~ msgstr "Velocidade mínima para alterações graduais de fluxo na primeira camada" - -#~ msgctxt "retraction_combing option noskin" -#~ msgid "No Skin" -#~ msgstr "Evita Contornos" - -#~ msgctxt "meshfix_keep_open_polygons description" -#~ msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper GCode." -#~ msgstr "Normalmente o Cura tenta costurar pequenos furos na malha e remover partes de uma camada com grandes furos. Habilitar esta opção mantém aquelas partes que não podem ser costuradas. Este opção deve ser usada somente como uma última alternativa quando tudo o mais falha em produzir G-Code apropriado." - -#~ msgctxt "fill_perimeter_gaps option nowhere" -#~ msgid "Nowhere" -#~ msgstr "Em lugar nenhum" - -#~ msgctxt "machine_nozzle_expansion_angle label" -#~ msgid "Nozzle angle" -#~ msgstr "Ângulo do bico" - -#~ msgctxt "machine_nozzle_head_distance label" -#~ msgid "Nozzle length" -#~ msgstr "Comprimento do bico" - -#~ msgctxt "extruders_enabled_count label" -#~ msgid "Number of Extruders that are enabled" -#~ msgstr "Número de Extrusores habilitados" - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords label" -#~ msgid "Offset With Extruder" -#~ msgstr "Deslocamento do Extrusor" - -#~ msgctxt "limit_support_retractions description" -#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure." -#~ msgstr "Omitir retrações quando mudar de suporte a suporte em linha reta. Habilitar este ajuste economiza tempo de impressão, mas pode levar a fiapos entremeados à estrutura de suporte." - -#~ msgctxt "limit_support_retractions description" -#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." -#~ msgstr "Omitir a retração ao mover de suporte a suporte em linha reta. Habilitar este ajuste economiza tempo de impressão, mas pode levar a fiapos excessivos na estrutura de suporte." - -#~ msgctxt "cross_infill_apply_pockets_alternatingly description" -#~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." -#~ msgstr "Somente aplicar bolso em metades dos cruzamentos quádruplos no padrão cruzado 3D e alternar a localização dos bolso entre alturas onde o padrão esteja se tocando." - -#~ msgctxt "optimize_wall_printing_order description" -#~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization." -#~ msgstr "Otimiza a ordem em que paredes são impressas de modo a reduzir o número de retrações e a distância percorrida. A maioria das peças se beneficiarão deste ajuste habilitado mas algumas podem acabar levando mais tempo, portanto por favor compare as estimativas de tempo de impressão com e sem otimização." - -#~ msgctxt "support_infill_angles description" -#~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." -#~ msgstr "Orientação do padrão de preenchimento para suportes. O padrão de preenchimento do suporte é rotacionado no plano horizontal." - -#~ msgctxt "outer_inset_first label" -#~ msgid "Outer Before Inner Walls" -#~ msgstr "Paredes exteriores antes das interiores" - -#~ msgctxt "machine_nozzle_tip_outer_diameter label" -#~ msgid "Outer nozzle diameter" -#~ msgstr "Diametro externo do bico" - -#~ msgctxt "wireframe_straight_before_down description" -#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." -#~ msgstr "Porcentagem de um filete descendente diagonal que é coberto por uma peça de filete horizontal. Isto pode prevenir enfraquecimento do ponto superior das linhas ascendentes. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wall_min_flow_retract label" -#~ msgid "Prefer Retract" -#~ msgstr "Preferir Retração" - -#~ msgctxt "prime_tower_brim_enable label" -#~ msgid "Prime Tower Brim" -#~ msgstr "Brim da Torre de Purga" - -#~ msgctxt "prime_tower_purge_volume label" -#~ msgid "Prime Tower Purge Volume" -#~ msgstr "Volume de Purga da Torre de Purga" - -#~ msgctxt "prime_tower_wall_thickness label" -#~ msgid "Prime Tower Thickness" -#~ msgstr "Espessura da Torre de Purga" - -#~ msgctxt "prime_tower_brim_enable description" -#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -#~ msgstr "Torres de Prime podem precisar de aderência extra dada por um brim mesmo se o modelo não precisar. No momento não pode ser usado com o tipo de aderência 'Raft'." - -#~ msgctxt "wireframe_enabled description" -#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." -#~ msgstr "Imprime somente a superfície exterior usando uma estrutura esparsa em forma de teia sem usar as camadas horizontais de impressão, e imprimindo no ar. Isto é feito imprimindo horizontalmente os contornos do modelo em dados intervalos Z que são conectados por filetes diagonais para cima e para baixo." - -#~ msgctxt "spaghetti_infill_enabled description" -#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." -#~ msgstr "Imprime o preenchimento intermitentemente de modo que o filamento se enrole caoticamente dentro do objeto. Isto reduz o tempo de impressão, mas tem comportamento bem imprevisível." - -#~ msgctxt "speed_equalize_flow_enabled description" -#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." -#~ msgstr "Imprime filetes mais finos que o normal mais rapidamente de modo que a quantidade de material extrudado por segundo se mantenha o mesmo. Partes pequenas em seu modelo podem exigir filetes impressos com largura menor que as providas nos ajustes. Este ajuste controla as mudanças de velocidade para tais filetes." - -#~ msgctxt "outer_inset_first description" -#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." -#~ msgstr "Imprime as paredes em ordem de fora para dentro quando habilitado. Isto pode ajudar a melhorar a acurácia dimensional e X e Y quando se usa um plástico de alta viscosidade como ABS; no entanto pode também diminuir a qualidade de impressão da superfície externa, especialmente em seções pendentes." - -#~ msgctxt "raft_base_line_spacing label" -#~ msgid "Raft Line Spacing" -#~ msgstr "Espaçamento de Linhas do Raft" - -#~ msgctxt "infill_hollow description" -#~ msgid "Remove all infill and make the inside of the object eligible for support." -#~ msgstr "Remove todo o preenchimento e torna o interior oco do objeto elegível a suporte." - -#~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -#~ msgid "RepRap (Marlin/Sprinter)" -#~ msgstr "RepRap (Marlin/Sprinter)" - -#~ msgctxt "machine_gcode_flavor option RepRap (Volumatric)" -#~ msgid "RepRap (Volumetric)" -#~ msgstr "RepRap (Volumétrico)" - -#~ msgctxt "reset_flow_duration label" -#~ msgid "Reset flow duration" -#~ msgstr "Duração de reset do fluxo" - -#~ msgctxt "support_tree_collision_resolution description" -#~ msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." -#~ msgstr "Resolução para computar colisões com a qual evitar tocar o modelo. Ajustar valor mais baixos produzirá árvore mais precisas que falharão menos, mas aumentará o tempo de fatiamento dramaticamente." - -#~ msgctxt "wireframe_strategy option retract" -#~ msgid "Retract" -#~ msgstr "Retrair" - -#~ msgctxt "retraction_enable description" -#~ msgid "Retract the filament when the nozzle is moving over a non-printed area. " -#~ msgstr "Retrai o filamento quando o bico está se movendo sobre uma área não impressa. " - -#~ msgctxt "wipe_retraction_prime_speed label" -#~ msgid "Retraction Prime Speed" -#~ msgstr "Velocidade de Purga da Retração" - -#~ msgctxt "shell label" -#~ msgid "Shell" -#~ msgstr "Perímetro" - -#~ msgctxt "machine_show_variants label" -#~ msgid "Show machine variants" -#~ msgstr "Mostrar variantes da máquina" - -#~ msgctxt "material_shrinkage_percentage label" -#~ msgid "Shrinkage Ratio" -#~ msgstr "Raio de Contração" - -#~ msgctxt "material_shrinkage_percentage description" -#~ msgid "Shrinkage ratio in percentage." -#~ msgstr "Raio de contração do material em porcentagem." - -#~ msgctxt "support_skip_some_zags label" -#~ msgid "Skip Some ZigZags Connections" -#~ msgstr "Pular Algumas Conexões de Ziguezague" - -#~ msgctxt "support_zag_skip_count description" -#~ msgid "Skip one in every N connection lines to make the support structure easier to break." -#~ msgstr "Pular uma em cada N linhas de conexão para fazer a estrutura de suporte mais fácil de ser removida." - -#~ msgctxt "support_skip_some_zags description" -#~ msgid "Skip some ZigZags connections to make the support structure easier to break." -#~ msgstr "Pula algumas conexões de Ziguezague para fazer a estrutura de suporte mais fácil de ser removida." - -#~ msgctxt "small_feature_speed_factor_0 description" -#~ msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy." -#~ msgstr "Aspectos pequenos na primeira camada serão impressos nesta porcentagem de sua velocidade normal de impressão. Impressão mais lenta pode ajudar com aderência e precisão." - -#~ msgctxt "small_feature_speed_factor description" -#~ msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy." -#~ msgstr "Pequenos aspectos serão impressos com esta porcentagem de sua velocidade normal de impressão. Impressão mais lenta pode ajudar com aderência e precisão." - -#~ msgctxt "small_skin_width description" -#~ msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions." -#~ msgstr "Regiões pequenas de teto/base são preenchidas com paredes ao invés do padrão default de teto/base. Isto ajuda a prevenir movimentos bruscos." - -#~ msgctxt "smooth_spiralized_contours description" -#~ msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z-seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -#~ msgstr "Suaviza os contornos espiralizados para reduzir a visibilidade da costura em Z (esta costura será quase invisível na impressão mas ainda pode ser vista na visão de camadas). Note que suavizar tenderá a remover detalhes finos de superfície." - -#~ msgctxt "spaghetti_flow label" -#~ msgid "Spaghetti Flow" -#~ msgstr "Fluxo de Espaguete" - -#~ msgctxt "spaghetti_infill_enabled label" -#~ msgid "Spaghetti Infill" -#~ msgstr "Preenchimento em Espaguete" - -#~ msgctxt "spaghetti_infill_extra_volume label" -#~ msgid "Spaghetti Infill Extra Volume" -#~ msgstr "Volume Extra do Preenchimento Espaguete" - -#~ msgctxt "spaghetti_max_height label" -#~ msgid "Spaghetti Infill Maximum Height" -#~ msgstr "Altura Máxima do Preenchimento Espaguete" - -#~ msgctxt "spaghetti_infill_stepped label" -#~ msgid "Spaghetti Infill Stepping" -#~ msgstr "Passos do Preenchimento de Espaguete" - -#~ msgctxt "spaghetti_inset label" -#~ msgid "Spaghetti Inset" -#~ msgstr "Penetração do Espaguete" - -#~ msgctxt "spaghetti_max_infill_angle label" -#~ msgid "Spaghetti Maximum Infill Angle" -#~ msgstr "Ângulo de Preenchimento Máximo do Espaguete" - -#~ msgctxt "wireframe_printspeed description" -#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." -#~ msgstr "Velocidade com que a cabeça de impressão se move ao extrudar material. Somente se aplica a Impressão em Arame." - -#~ msgctxt "wireframe_printspeed_down description" -#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." -#~ msgstr "Velocidade de impressão dos filetes descendentes feitas 'no ar'. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_printspeed_up description" -#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." -#~ msgstr "Velocidade de impressão dos filetes ascendentes feitas 'no ar'. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_printspeed_bottom description" -#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." -#~ msgstr "Velocidade de Impressão da primeira camada, que é a única camada que toca a mesa. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_printspeed_flat description" -#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." -#~ msgstr "Velocidade de impressão dos contornos horizontais do modelo. Somente se aplica à Impressão em Arame." - -#~ msgctxt "magic_spiralize description" -#~ msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature used to be called Joris in older versions." -#~ msgstr "Este modo, também chamado de Modo Vaso ou Joris, transforma a trajetória do filete de plástico de impressão em uma espiral ascendente, com o Z lentamente subindo. Para isso, torna um modelo sólido em uma casca de parede única com a base sólida. Nem toda forma funciona corretamente com o modo vaso." - -#~ msgctxt "wall_split_middle_threshold label" -#~ msgid "Split Middle Line Threshold" -#~ msgstr "Limite de Filete Central Dividido" - -#~ msgctxt "machine_start_gcode label" -#~ msgid "Start GCode" -#~ msgstr "G-Code Inicial" - -#~ msgctxt "start_layers_at_same_position label" -#~ msgid "Start Layers with the Same Part" -#~ msgstr "Iniciar Camadas com a Mesma Parte" - -#~ msgctxt "wireframe_strategy description" -#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." -#~ msgstr "Estratégia para se assegurar que duas camadas consecutivas se conectam a cada ponto de conexão. Retração faz com que os filetes ascendentes se solidifiquem na posição correta, mas pode causar desgaste de filamento. Um nó pode ser feito no fim de um filete ascendentes para aumentar a chance de se conectar a ele e deixar o filete esfriar; no entanto, pode exigir velocidades de impressão lentas. Outra estratégia é compensar pelo enfraquecimento do topo de uma linha ascendente; no entanto, as linhas nem sempre cairão como preditas." - -#~ msgctxt "support_bottom_height label" -#~ msgid "Support Bottom Thickness" -#~ msgstr "Espessura da Base do Suporte" - -#~ msgctxt "support_interface_line_distance label" -#~ msgid "Support Interface Line Distance" -#~ msgstr "Distância entre Linhas da Interface de Suporte" - -#~ msgctxt "infill_pattern option tetrahedral" -#~ msgid "Tetrahedral" -#~ msgstr "Tetraédrico" - -#~ msgctxt "acceleration_support_interface description" -#~ msgid "The acceleration with which the roofs and bottoms of support are printed. Printing them at lower accelerations can improve overhang quality." -#~ msgstr "Aceleração com que o topo e base dos suportes são impressos. Imprimi-lo a menores acelerações pode aprimorar a qualidade das seções pendentes." - -#~ msgctxt "infill_overlap description" -#~ msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -#~ msgstr "Porcentagem de sobreposição entre o preenchimento e as paredes. Uma leve sobreposição permite que as paredes fiquem firmemente aderidas ao preenchimento." - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "A quantidade de sobreposição entre o contorno e as paredes como uma porcentagem da largura de extrusão. Uma sobreposição leve permite que as paredes se conectem firmemente ao contorno. Este ajuste é uma porcentagem das larguras de extrusão média do contorno e da parede mais interna." - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "A quantidade de sobreposição entre o contorno e as paredes como uma porcentagem da largura de extrusão do contorno. Uma leve sobreposição permite que as paredes se conectem firmemente ao contorno. É uma porcentagem das larguras de extrusão médias das linhas de contorno e a parede mais interna." - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "Porcentagem de sobreposição entre o contorno e as paredes. Uma ligeira sobreposição permite às paredes ficarem firmemente aderidas ao contorno." - -#~ msgctxt "skin_overlap_mm description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "A quantidade de sobreposição entre o contorno e as paredes. Uma leve sobreposição permite às paredes ficarem firmemente aderidas ao contorno." - -#~ msgctxt "switch_extruder_retraction_amount description" -#~ msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone." -#~ msgstr "A quantidade de retração: coloque em '0' para nenhuma retração. Isto deve geralmente ser o mesmo que o comprimento da zona de aquecimento dentro do hotend." - -#~ msgctxt "support_tree_angle description" -#~ msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -#~ msgstr "Ô angulo dos galhos. Use um ângulo menor para torná-los mais verticais e mais estáveis. Use um ângulo maior para aumentar o alcance." - -#~ msgctxt "lightning_infill_prune_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." -#~ msgstr "A diferença que uma camada de preenchimento relâmpago pode ter em relação à camada imediatamente superior de acordo com a poda das extremidades externas das árvores. Medido em ângulo de acordo com a espessura." - -#~ msgctxt "lightning_infill_straightening_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." -#~ msgstr "A diferença que uma camada de preenchimento relâmpago pode ter em relação à camada imediatamente superior de acordo com a suavização de árvores. Medido em ângulo de acordo com a espessura." - -#~ msgctxt "wireframe_roof_inset description" -#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." -#~ msgstr "A distância coberta quando é feita uma conexão do contorno do teto para dentro. Somente se aplica a Impressão em Arame." - -#~ msgctxt "wireframe_roof_drag_along description" -#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "A distância da parte final de um filete para dentro que é arrastada quando o extrusor começa a voltar para o contorno externo do topo. Esta distância é compensada. Somente se aplica à Impressão em Arame." - -#~ msgctxt "expand_skins_expand_distance description" -#~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient." -#~ msgstr "A distância que os contornos são expandidos para dentro do preenchimento. A distância default é suficiente para ligar o vão entre as linhas de preenchimento e impedirá que buracos apareçam no contorno onde ele encontrar a parede em que a densidade de preenchimento é baixa. Uma distância menor pode ser suficiente." - -#~ msgctxt "wireframe_roof_fall_down description" -#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "A distância em que filetes horizontais do topo impressos no ar caem quando sendo impressos. Esta distância é compensada. Somente se aplica à Impressão em Arame." - -#~ msgctxt "z_offset_layer_0 description" -#~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly." -#~ msgstr "O extrusor é deslocado da altura normal da primeira camada por esta distância. Pode ser positiva (elevada) ou negativa (abaixada). Alguns tipos de filamento aderem à camada de impressão melhor se o extrusor for elevado ligeiramente." - -#~ msgctxt "support_interface_extruder_nr description" -#~ msgid "The extruder train to use for printing the roofs and bottoms of the support. This is used in multi-extrusion." -#~ msgstr "O extrusor a usar para imprimir o topo e base dos suportes. Isto é utilizado em multi-extrusão." - -#~ msgctxt "support_bottom_stair_step_height description" -#~ msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -#~ msgstr "A altura dos passos da base tipo escada do suporte em cima do modelo. Um valor baixo faz o suporte ser mais difícil de remover, mas valores muito altos podem criar estruturas de suporte instáveis." - -#~ msgctxt "wireframe_height description" -#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." -#~ msgstr "A altura dos filetes diagonais para cima e para baixo entre duas partes horizontais. Isto determina a densidade geral da estrutura em rede. Somente se aplica a Impressão em Arame." - -#~ msgctxt "skirt_gap description" -#~ msgid "" -#~ "The horizontal distance between the skirt and the first layer of the print.\n" -#~ "This is the minimum distance, multiple skirt lines will extend outwards from this distance." -#~ msgstr "" -#~ "A distância horizontal entre o skirt e a primeira camada da impressão.\n" -#~ "Esta é a distância mínima; múltiplas linhas de skirt se estenderão pra fora a partir desta distância." - -#~ msgctxt "infill_offset_x description" -#~ msgid "The infill pattern is offset this distance along the X axis." -#~ msgstr "O padrão de preenchimento é corrigido/deslocado nesta distância no eixo X." - -#~ msgctxt "infill_offset_y description" -#~ msgid "The infill pattern is offset this distance along the Y axis." -#~ msgstr "O padrão de preenchimento é corrigido/deslocado nesta distância no eixo Y." - -#~ msgctxt "adaptive_layer_height_variation description" -#~ msgid "The maximum allowed height different from the base layer height in mm." -#~ msgstr "A dferença de altura máxima permitida da altura de camada base permitida, em mm." - -#~ msgctxt "bridge_wall_max_overhang description" -#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -#~ msgstr "O comprimento máximo permitido da região de ar abaixo da linha da parede antes que a parede seja impressa usando ajustes de ponte. Expressado como uma porcentagem da espessura de filete de parede. Quando o vão for mais largo que esta quantia, a parede é impressa usando os ajustes de ponte. Senão, a parede é impressa com os ajustes normais. Quanto menor o valor, mais provável que os filetes da parede sejam impressos com os ajustes de ponte." - -#~ msgctxt "spaghetti_max_infill_angle description" -#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." -#~ msgstr "O ângulo máximo em relação ao Z do interior da impressão para áreas que serão preenchidas com espaguete no final. Abaixar este valor faz com que mais partes anguladas do seu modelo sejam preenchidas a cada camada." - -#~ msgctxt "meshfix_maximum_deviation description" -#~ msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller." -#~ msgstr "O valor máximo de desvio permitido ao reduzir a resolução para o ajuste de Resolução Máxima. Se você aumenta este número, a impressão terá menos acuidade, mas o G-Code será menor." - -#~ msgctxt "support_join_distance description" -#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one." -#~ msgstr "Distância máxima entre as estruturas de suporte nas direções X/Y. Quando estrutura separadas estão mais perto que este valor, as estruturas são combinadas em uma única." - -#~ msgctxt "flow_rate_max_extrusion_offset description" -#~ msgid "The maximum distance in mm to compensate." -#~ msgstr "A distância máxima em mm a compensar." - -#~ msgctxt "spaghetti_max_height description" -#~ msgid "The maximum height of inside space which can be combined and filled from the top." -#~ msgstr "A altura máxima do espaço interior que pode ser combinado e preenchido a partir do topo." - -#~ msgctxt "jerk_support_interface description" -#~ msgid "The maximum instantaneous velocity change with which the roofs and bottoms of support are printed." -#~ msgstr "A mudança instantânea máxima de velocidade em uma direção com que a base e o topo dos suporte é impresso." - -#~ msgctxt "max_feedrate_z_override description" -#~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed." -#~ msgstr "A velocidade máxima com que o eixo Z é movido. Colocar isto em zero faz com que a impressão use os defaults de firmware para a velocidade máxima de Z." - -#~ msgctxt "mold_width description" -#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." -#~ msgstr "A distância mínima entre o exterior do molde e do modelo." - -#~ msgctxt "min_odd_wall_line_width description" -#~ msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width," -#~ msgstr "A largura mínima de filete para as paredes multifiletes de preenchimento de vão de filete central. Este ajuste determina em que espessura de modelo nós alternamos de imprimir dois filetes de parede para imprimir duas paredes externas e uma parede central no centro. Uma Largura Mínima de Filete de Parede Ímpar leva a uma largura máxima de filete de parede par mais alta. A largura máxima de filete de parede par é calculada como 2 * Largura Mínima de Filete de Parede Par." - -#~ msgctxt "flow_rate_extrusion_offset_factor description" -#~ msgid "The multiplication factor for the flow rate -> distance translation." -#~ msgstr "O fator de multiplicação para a tradução entre taxa de fluxo -> distância." - -#~ msgctxt "support_tree_wall_count description" -#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "O número de filetes da parede dos galhos do suporte em árvore. Paredes mais espessas tomarão mais tempo pra imprimir mas não tombarão facilmente." - -#~ msgctxt "spaghetti_inset description" -#~ msgid "The offset from the walls from where the spaghetti infill will be printed." -#~ msgstr "O deslocamento a partir das paredes de onde o preenchimento espaguete será impresso." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Padrão ou estampa do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague trocam de direção em camadas alternadas, reduzindo custo de material. Os padrões de grade, triângulo, cúbico, tetraédrico e concêntrico são totalmente impressos a cada camada. Os padrões cúbico e tetraédrico mudam a cada camada para prover uma distribuição mais igualitária de força para cada direção." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "O padrão do material de preenchimento da impressão. Preenchimento de Linhas e Ziguezague trocam direções em camadas alternadas, reduzindo custo do material. Os padrões de Grade, Triângulo, Tri-Hexágono, Cúbico, Octeto, Quarto Cúbico, Cruzado e Concêntrico são totalmente impressos em cada camada. Os preenchimentos Cúbico, Quarto Cúbico e Octeto mudam em cada camada para prover uma distribuição mais uniforme de forças em cada direção." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague mudam de direção em camadas alternadas, reduzindo o custo do material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são impressos em totalidade a cada camada. Os padrões giróide, cúbico, quarto cúbico e octeto mudam a cada camada para prover uma distribuição mais igualitária de força em cada direção." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." -#~ msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague trocam de direção em camadas alternadas, reduzindo o custo de material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são impressos a cada camada. Os preenchimentos giroide, cúbico, quarto cúbico e octeto mudam em cada camada para prover uma distribuição mais uniforme de força em cada direção. O preenchimento de relâmpago tenta minimizar o material suportando apenas os tetos (internos) do objeto. Como tal, a porcentagem de preenchimento somente é 'válida' uma camada abaixo do que quer que seja que ela precise para suportar o modelo." - -#~ msgctxt "wall_add_middle_threshold description" -#~ msgid "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -#~ msgstr "A largura de filete mínima, como fator da largura de filete normal, acima da qual um filete central (se já não houver algum) será adicionado. Reduza este ajuste para usar mais e e mais finos filetes. Aumente para usar menos, mais largos filetes. Note que isto se aplica -como se- a forma inteira devesse ser preenchida com paredes, portanto o centro aqui se refere ao meio do objeto entre duas arestas externas da forma, mesmo se houver preenchimento ou contornos na impressão ao invés de paredes." - -#~ msgctxt "wall_split_middle_threshold description" -#~ msgid "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -#~ msgstr "A largura de filete mínima, como fator da largura de filete normal, acima da qual o filete central (se houver algum) será dividido em dois. Reduza este ajuste para usar mais e maiores filetes. Aumente para usar menos e menores filetes. Note que isto se aplica -como se- a forma inteira devesse ser preenchida com parede, dado que o centro aqui se refere ao meio do objeto entre duas arestas externas da forma, mesmo se houver preenchimento ou (outros) contornos na impressão ao invés de paredes." - -#~ msgctxt "speed_support_interface description" -#~ msgid "The speed at which the roofs and bottoms of support are printed. Printing the them at lower speeds can improve overhang quality." -#~ msgstr "A velocidade em que o topo e base dos suportes são impressos. Imprimi-lo a menores velocidade pode melhor a qualidade das seções pendentes." - -#~ msgctxt "speed_layer_0 description" -#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." -#~ msgstr "A velocidade para a camada inicial. Um valor menor é aconselhado para aprimorar a aderência à mesa de impressão." - -#~ msgctxt "build_volume_temperature description" -#~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted." -#~ msgstr "A temperatura usada para o volume de construção. Se o valor for zero, a temperatura de volume de impressão não será ajustada." - -#~ msgctxt "material_print_temperature_layer_0 description" -#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -#~ msgstr "A temperatura usada para imprimir a primeira camada. Coloque 0 para desabilitar processamento especial da camada inicial." - -#~ msgctxt "material_print_temperature description" -#~ msgid "The temperature used for printing. Set at 0 to pre-heat the printer manually." -#~ msgstr "Temperatura usada para a impressão. COloque em '0' para pré-aquecer a impressora manualmente." - -#~ msgctxt "material_bed_temperature_layer_0 description" -#~ msgid "The temperature used for the heated build plate at the first layer." -#~ msgstr "A temperatura usada para a mesa aquecida na primeira camada." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." -#~ msgstr "A temperatura usada para a plataforma de impressão aquecida. Se for 0, a temperatura da mesa não será ajustada." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print." -#~ msgstr "A temperatura usada pela mesa aquecida de impressão. Se for 0, a mesa não aquecerá para esta impressão." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. Set at 0 to pre-heat the printer manually." -#~ msgstr "A temperatura usada para a mesa aquecida. Coloque em '0' para pré-aquecer a impressora manualmente." - -#~ msgctxt "prime_tower_wall_thickness description" -#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -#~ msgstr "A espessura da torre de purga (que é oca). Uma espessura maior que a metade do volume mínimo da torre de purga resultará em uma torre de purga densa." - -#~ msgctxt "wall_thickness description" -#~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -#~ msgstr "A espessura das paredes na direção horizontal. Este valor dividido pela largura de extrusão da parede define o número de paredes." - -#~ msgctxt "support_bottom_height description" -#~ msgid "The thickness of the support bottoms. This controls the number of dense layers are printed on top of places of a model on which support rests." -#~ msgstr "A espessura da base do suporte. Isto controla o número de camadas densas que são impressas no topo de lugares do modelo em que o suporte se assenta." - -#~ msgctxt "support_tree_wall_thickness description" -#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "A espessura das paredes dos galhos do suporte em árvore. Paredes mais espessas tomarão mais tempo pra imprimir mas não tombarão facilmente." - -#~ msgctxt "machine_gcode_flavor description" -#~ msgid "The type of gcode to be generated." -#~ msgstr "Tipo de G-Code a ser gerado para a impressora." - -#~ msgctxt "raft_smoothing description" -#~ msgid "This setting control how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -#~ msgstr "Este ajuste controla quantos cantos interiores no contorno do raft são arredondados. Cantos no sentido interior são arredondados para um semicírculo com raio igual ao valor dado aqui. Este ajuste também remove buracos que sejam menores que tal círculo no contorno do raft." - -#~ msgctxt "adaptive_layer_height_threshold description" -#~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." -#~ msgstr "Limite até onde se usa uma camada menor ou não. Este número é comparado à tangente da ladeira mais vertical da camada." - -#~ msgctxt "wireframe_roof_outer_delay description" -#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." -#~ msgstr "El tiempo empleado en los perímetros exteriores del agujero que se convertirá en un techo. Cuanto mayor sea el tiempo, mejor será la conexión. Solo se aplica a la impresión de alambre." - -#~ msgctxt "max_skin_angle_for_expansion description" -#~ msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal, while an angle of 90° is vertical." -#~ msgstr "Superfícies Superiores e/ou Inferiores de seu objeto com um ângulo maior que este ajuste não terão seus contornos superior/inferior expandidos. Isto evita que expandam as áreas estreitas de contorno que são criadas quando a superfície do modelo tem uma inclinação praticamente vertical. Um ângulo de 0° é horizontal, um ângulo de 90° é vertical." - -#~ msgctxt "support_tree_enable label" -#~ msgid "Tree Support" -#~ msgstr "Suporte de Árvore" - -#~ msgctxt "support_tree_angle label" -#~ msgid "Tree Support Branch Angle" -#~ msgstr "Ângulo do Galho do Suporte em Árvore" - -#~ msgctxt "support_tree_branch_diameter label" -#~ msgid "Tree Support Branch Diameter" -#~ msgstr "Diâmetro de Galho do Suporte em Árvore" - -#~ msgctxt "support_tree_branch_diameter_angle label" -#~ msgid "Tree Support Branch Diameter Angle" -#~ msgstr "Ângulo do Diâmetro do Galho do Suporte em Árvore" - -#~ msgctxt "support_tree_branch_distance label" -#~ msgid "Tree Support Branch Distance" -#~ msgstr "Distância dos Galhos do Suporte em Árvore" - -#~ msgctxt "support_tree_collision_resolution label" -#~ msgid "Tree Support Collision Resolution" -#~ msgstr "Resolução de Colisão do Suporte em Árvore" - -#~ msgctxt "support_tree_max_diameter label" -#~ msgid "Tree Support Trunk Diameter" -#~ msgstr "Diâmetro de Tronco do Suporte em Árvore" - -#~ msgctxt "support_tree_wall_count label" -#~ msgid "Tree Support Wall Line Count" -#~ msgstr "Número de Filetes da Parede do Suporte em Árvore" - -#~ msgctxt "support_tree_wall_thickness label" -#~ msgid "Tree Support Wall Thickness" -#~ msgstr "Espessura de Parede do Suporte em Árvore" - -#~ msgctxt "adaptive_layer_height_enabled label" -#~ msgid "Use adaptive layers" -#~ msgstr "Usar camadas adaptativas" - -#~ msgctxt "relative_extrusion description" -#~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any Gcode script is output." -#~ msgstr "Usar extrusão relativa ao invés de absoluta. Usar passos de extrusor relativos permite pós-processamento do G-Code mais fácil. No entanto, não é suportado por todas as impressoras e pode produzir desvios bem pequenos na quantidade de material depositado comparado aos passos de extrusor absolutos. Independente deste ajuste, o modo de extrusão sempre será configurado para absoluto antes que qualquer script de G-Code seja escrito." - -#~ msgctxt "wireframe_bottom_delay label" -#~ msgid "WP Bottom Delay" -#~ msgstr "Espera da Base de IA" - -#~ msgctxt "wireframe_printspeed_bottom label" -#~ msgid "WP Bottom Printing Speed" -#~ msgstr "Velocidade de Impressão da Base da IA" - -#~ msgctxt "wireframe_flow_connection label" -#~ msgid "WP Connection Flow" -#~ msgstr "Fluxo de Conexão da IA" - -#~ msgctxt "wireframe_height label" -#~ msgid "WP Connection Height" -#~ msgstr "Altura da Conexão IA" - -#~ msgctxt "wireframe_printspeed_down label" -#~ msgid "WP Downward Printing Speed" -#~ msgstr "Velocidade de Impressão Descendente de IA" - -#~ msgctxt "wireframe_drag_along label" -#~ msgid "WP Drag Along" -#~ msgstr "Arrasto de IA" - -#~ msgctxt "wireframe_up_half_speed label" -#~ msgid "WP Ease Upward" -#~ msgstr "Facilitador Ascendente da IA" - -#~ msgctxt "wireframe_fall_down label" -#~ msgid "WP Fall Down" -#~ msgstr "Queda de IA" - -#~ msgctxt "wireframe_flat_delay label" -#~ msgid "WP Flat Delay" -#~ msgstr "Espera Plana de IA" - -#~ msgctxt "wireframe_flow_flat label" -#~ msgid "WP Flat Flow" -#~ msgstr "Fluxo Plano de IA" - -#~ msgctxt "wireframe_flow label" -#~ msgid "WP Flow" -#~ msgstr "Fluxo da IA" - -#~ msgctxt "wireframe_printspeed_flat label" -#~ msgid "WP Horizontal Printing Speed" -#~ msgstr "Velocidade de Impressão Horizontal de IA" - -#~ msgctxt "wireframe_top_jump label" -#~ msgid "WP Knot Size" -#~ msgstr "Tamanho do Nó de IA" - -#~ msgctxt "wireframe_nozzle_clearance label" -#~ msgid "WP Nozzle Clearance" -#~ msgstr "Espaço Livre para o Bico em IA" - -#~ msgctxt "wireframe_roof_drag_along label" -#~ msgid "WP Roof Drag Along" -#~ msgstr "Arrasto do Topo de IA" - -#~ msgctxt "wireframe_roof_fall_down label" -#~ msgid "WP Roof Fall Down" -#~ msgstr "Queda do Topo de IA" - -#~ msgctxt "wireframe_roof_inset label" -#~ msgid "WP Roof Inset Distance" -#~ msgstr "Distância de Penetração do Teto da IA" - -#~ msgctxt "wireframe_roof_outer_delay label" -#~ msgid "WP Roof Outer Delay" -#~ msgstr "Retardo exterior del techo en IA" - -#~ msgctxt "wireframe_printspeed label" -#~ msgid "WP Speed" -#~ msgstr "Velocidade da IA" - -#~ msgctxt "wireframe_straight_before_down label" -#~ msgid "WP Straighten Downward Lines" -#~ msgstr "Endireitar Filetes Descendentes de IA" - -#~ msgctxt "wireframe_strategy label" -#~ msgid "WP Strategy" -#~ msgstr "Estratégia de IA" - -#~ msgctxt "wireframe_top_delay label" -#~ msgid "WP Top Delay" -#~ msgstr "Espera do Topo de IA" - -#~ msgctxt "wireframe_printspeed_up label" -#~ msgid "WP Upward Printing Speed" -#~ msgstr "Velocidade de Impressão Ascendente da IA" - -#, fuzzy -#~ msgctxt "material_bed_temp_wait label" -#~ msgid "Wait for build plate heatup" -#~ msgstr "Aguardar o aquecimento do bico" - -#~ msgctxt "material_print_temp_wait label" -#~ msgid "Wait for nozzle heatup" -#~ msgstr "Aguardar o aquecimento do bico" - -#~ msgctxt "wall_overhang_angle description" -#~ msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging." -#~ msgstr "Paredes que têm inclinação maior que este ângulo serão impressas usando ajustes de seção pendente de parede. Quando o valor for 90, nenhuma parede será tratada como seção pendente." - -#~ msgctxt "support_interface_skip_height description" -#~ msgid "When checking where there's model above the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -#~ msgstr "Quando se verificar onde há modelo sobre suporte, use passos da altura dada. Valores baixos vão fatiar mais lentamente, enquanto valores altos podem fazer o suporte normal ser impresso em lugares onde deveria haver interface de suporte." - -#~ msgctxt "retraction_combing_max_distance description" -#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." -#~ msgstr "Quando não-zero, os movimentos de percurso de combing que são maiores que esta distância usarão retração." - -#~ msgctxt "z_offset_taper_layers description" -#~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print." -#~ msgstr "Quando não for zero, o deslocamento em Z é reduzido a zero depois deste número de camadas. O valor zero significa que o deslocamento em Z permanece constante para todas as camadas da impressão." - -#~ msgctxt "skin_no_small_gaps_heuristic description" -#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." -#~ msgstr "Quando o modelo tem pequenas lacunas verticais, aproximadamente 5% de tempo de computação adicional pode ser gasto ao gerar camada externa superior e inferior nestes espaços estreitos. Em tal caso, desabilite este ajuste." - -#~ msgctxt "wipe_hop_enable description" -#~ msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -#~ msgstr "Sempre que uma retração é feita, a posição Z do extrusor é aumentada para aumentar a distância entre o bico e a impressão. Isso evita que o bico bata na impressão durante movimentos de percurso, reduzindo a chance de descolar a impressão da plataforma." - -#~ msgctxt "clean_between_layers description" -#~ msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." -#~ msgstr "Incluir ou não o G-Code para movimento de limpeza de bico (wipe) entre camadas. Habilitar este ajuste pode influenciar o comportamento de retração na mudança de camadas. Por favor use os ajustes de Retração de Limpeza para controlar retração nas camadas onde o script de limpeza funcionará." - -#~ msgctxt "print_sequence description" -#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -#~ msgstr "Esta opção decide se vocÊ deseja imprimir todos os modelos de uma só vez ou um modelo de cada vez. O modo de um modelo de cada vez só é possível se os modelos estiverem separados de tal forma que a cabeça de impressão possa se mover no meio e todos os modelos sejam mais baixos que a distância entre o bico e os carros X ou Y." - -#~ msgctxt "print_sequence description" -#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes. " -#~ msgstr "Opção que dz se se imprime todos os modelos uma camada por vez, ou se se espera que cada um termine para ir para o próximo. Modo um de cada vez é possível se a) somente um extrusor estiver habilitado e b) todos os modelos estiverem separados de maneira que a cabeça de impressão possa se mover entre eles e todos os modelos forem mais baixos que a distância entre o bico e os eixos X/Y." - -#~ msgctxt "spaghetti_infill_stepped description" -#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." -#~ msgstr "Opção para ou se imprimir o preenchimento espaguete em passos discretos ou extrudar todo o filamento de preenchimento no final da impressão." - -#~ msgctxt "support_interface_line_width description" -#~ msgid "Width of a single support interface line." -#~ msgstr "Largura de extrusão de um filete usado na interface da estrutura de suporte com o modelo." - -#~ msgctxt "dual_pre_wipe label" -#~ msgid "Wipe Nozzle After Switch" -#~ msgstr "Limpar Bico Depois da Troca" - -#~ msgctxt "wipe_hop_enable label" -#~ msgid "Wipe Z Hop When Retracted" -#~ msgstr "Salto Z da Limpeza Quando Retraída" - -#~ msgctxt "wireframe_enabled label" -#~ msgid "Wire Printing" -#~ msgstr "Impressão em Arame" - -#~ msgctxt "z_offset_taper_layers label" -#~ msgid "Z Offset Taper Layers" -#~ msgstr "Camadas de Amenização do Deslocamento Z" - -#~ msgctxt "support_zag_skip_count label" -#~ msgid "ZigZag Connection Skip Count" -#~ msgstr "Contagem de Pulos das Conexões de Ziguezague" - -#~ msgctxt "blackmagic description" -#~ msgid "category_blackmagic" -#~ msgstr "categoria_blackmagic" - -#~ msgctxt "meshfix description" -#~ msgid "category_fixes" -#~ msgstr "reparos_de_categoria" - -#~ msgctxt "experimental description" -#~ msgid "experimental!" -#~ msgstr "experimental!" +# Cura +# Copyright (C) 2022 Ultimaker B.V. +# This file is distributed under the same license as the Cura package. +# +msgid "" +msgstr "" +"Project-Id-Version: Cura 5.0\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-11-15 12:26+0000\n" +"PO-Revision-Date: 2023-11-22 17:17+0100\n" +"Last-Translator: Cláudio Sampaio \n" +"Language-Team: Cláudio Sampaio \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 3.4.1\n" + +msgctxt "ironing_inset description" +msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." +msgstr "A distância a manter das arestas do modelo. Passar a ferro as arestas da malha podem resultar em um aspecto entalhado da sua peça." + +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "Um fator indicando em quanto o filamento é comprimido entre o alimentador do hotend e o bico, usado para determinar em quanto mover o material na troca de filamento." + +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Uma lista de direções inteiras de filete a usar quando as camadas superiores usam o padrão de linhas ou ziguezague. Elementos desta lista são usados sequencialmente de acordo com o progresso das camadas e quando se chega ao fim da lista, se volta ao começo. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia que significa o uso dos ângulos default (45 e 135 graus)." + +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Uma lista de direções de linha inteiras para usar quando as camadas superiores e inferiores usarem os padrões de linha ou ziguezague. Elementos desta lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela inicia novamente. Os itens da lista são separados por vírgulas e a lita inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (45 e 135 graus)." + +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar o ângulo default de 0 graus." + +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (alternando entre 45 e 135 graus se as interfaces forem grossas, ou 90 se não)." + +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (alternando entre 45 e 135 graus se as interfaces forem grossas, ou 90 se não)." + +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (alternando entre 45 e 135 graus se as interfaces forem grossas, ou 90 se não)." + +msgctxt "infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." +msgstr "Uma lista de direções de filetes em números inteiros a usar. Elementos da lista são usados sequencialmente de acordo com o progresso das camadas e quando o fim da lista é alcançado, ela volta ao começo. Os itens da lista são separados por vírgula e a lista inteira é contida em colchetes. O default é uma lista vazia que implica em usar os ângulos default tradicionais (45 e 135 graus para os padrões linha e ziguezague e 45 graus para todos os outros padrões)." + +msgctxt "nozzle_disallowed_areas description" +msgid "A list of polygons with areas the nozzle is not allowed to enter." +msgstr "Uma lista de polígonos com áreas em que o bico é proibido de entrar." + +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "Uma lista de polígonos com áreas em que a cabeça de impressão é proibida de entrar." + +msgctxt "brim_inside_margin description" +msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +msgstr "Uma peça completamente contida em outra peça pode gerar um brim externo que toca o interior da outra parte. Este ajuste remove todo o brim dentro desta distância dos buracos internos." + +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "Uma recomendação de quão distante galhos podem se mover dos pontos que eles suportam. Os galhos podem violar este valor para alcançar seu destino (plataforma de impressão ou parte chata do modelo). Abaixar este valor pode fazer o suporte ficar mais estável, mas aumentará o número de galhos (e por causa disso, ambos o uso de material e o tempo de impressão) " + +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "Posição Absoluta de Purga do Extrusor" + +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "Máximo Variação das Camadas Adaptativas" + +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "Tamanho da Topografia de Camadas Adaptativas" + +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "Tamanho de Passo da Variação das Camadas Adaptativas" + +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "Camadas adaptativas fazem a computação das alturas de camada depender da forma do modelo." + +msgctxt "infill_wall_line_count description" +msgid "" +"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" +"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "" +"Adiciona paredes extras em torno da área de preenchimento. Tais paredes podem fazer filetes de contorno de topo e base afundarem menos, o que significa que você precisará de menos camadas de contorno de topo e base para a mesma qualidade, à custa de algum material extra.\n" +"Este recurso pode combinar com o Conectar Polígonos de Preenchimento para conectar todo o preenchimento em um único caminho de extrusão sem a necessidade de percursos ou retrações se os ajustes forem consistentes." + +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Aderência" + +msgctxt "material_adhesion_tendency label" +msgid "Adhesion Tendency" +msgstr "Tendência à Aderência" + +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Ajusta a quantidade de sobreposição entre as paredes e (os extremos de) linhas centrais do contorno, como uma porcentagem das larguras de filete de contorno e a parede mais interna. Uma sobreposição leve permite que as paredes se conectem firmemente ao contorno. Note que, dadas uma largura de contorno e filete de parede iguais, qualquer porcentagem acima de 50% pode fazer com que algum contorno ultrapasse a parede, pois a este ponto a posição do bico do extrusor de contorno pode já ter passado do meio da parede." + +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Ajusta a quantidade de sobreposição entre as paredes e (os extermos de) linhas centrais do contorno. Uma sobreposição pequena permite que as paredes se conectem firmemente ao contorno. Note que, dados uma largura de contorno e filete de parede iguais, qualquer valor maior que metade da largura da parede pode fazer com que o contorno ultrapasse a parede, pois a este ponto a posição do bico do extrusor de contorno pode já ter passado do meio da parede." + +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "Ajusta a densidade de preenchimento da impressão." + +msgctxt "support_interface_density description" +msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Ajusta a densidade dos topos e bases da estrutura de suporte. Um valor maior resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." + +msgctxt "support_tree_top_rate description" +msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "Ajusta a densidade da estrutura de suporte usada para gerar as pontas dos galhos. Um valor mais alto resulta em melhores seções pendentes, mas os suportes ficam mais difíceis de remover. Use Teto de Suporte para valores muito altos ou assegure-se que a densidade de suporte é similarmente alta no topo." + +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Ajusta a densidade da estrutura de suporte. Um valor mais alto resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Ajusta o diâmetro do filamento utilizado. Acerte este valor com o diâmetro real do filamento." + +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Ajusta a colocação das estruturas de suporte. Pode ser ajustada para suportes que somente tocam a mesa de impressão ou suportes em todos os lugares com seções pendentes (incluindo as que não estão pendentes em relação à mesa)." + +msgctxt "prime_tower_wipe_enabled description" +msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." +msgstr "Depois de imprimir a torre de purga com um bico, limpar o material escorrendo do outro bico na torre de purga." + +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "Quando a máquina troca de um extrusor para o outro, sobe-se um pouco em Z para criar um espaço entre o bico e a impressão. Isso impede que o bico escorra material em cima da impressão." + +msgctxt "retraction_combing option all" +msgid "All" +msgstr "Tudo" + +msgctxt "print_sequence option all_at_once" +msgid "All at Once" +msgstr "Todos de Uma Vez" + +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "Todos os ajustes que influenciam a resolução da impressão. Estes ajustes têm um impacto maior na qualidade (e tempo de impressão)" + +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Alternar Parede Adicional" + +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "Alternar a Remoção de Malhas" + +msgctxt "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "Alternar Direções de Parede" + +msgctxt "material_alternate_walls description" +msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." +msgstr "Alterna direções de parede a cada camada e reentrância. Útil para materiais que podem acumular stress, como em impressão com metal." + +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "Alumínio" + +msgctxt "machine_always_write_active_tool label" +msgid "Always Write Active Tool" +msgstr "Sempre Escrever a Ferramenta Ativa" + +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "Sempre retrair quando se mover para iniciar uma parede externa." + +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "Deslocamento adicional aplicado para todos os polígonos em cada camada. Valores positivos 'engordam' a camada e podem compensar por furos exagerados; valores negativos a 'emagrecem' e podem compensar por furos pequenos." + +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "Deslocamento adicional aplicado a todos os polígonos da primeira camada. Um valor negativo pode compensar pelo esmagamento da primeira camada conhecido como \"pata de elefante\"." + +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "Quantidade de deslocamento aplicado a todos os polígonos do suporte em cada camada. Valores positivos podem amaciar as áreas de suporte e resultar em suporte mais estável." + +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "Quantidade de deslocamento aplicado às bases do suporte." + +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "Quantidade de deslocamento aplicado aos tetos do suporte." + +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "Quantidade de deslocamento aplicado aos polígonos da interface de suporte." + +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "Quantidade a retrair do filamento tal que ele não escorra durante a sequência de limpeza." + +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "Um adicional ao raio do centro de cada cubo para verificar a borda do modelo, de modo a decidir se este cubo deve ser subdividido. Valores maiores levam a uma cobertura mais espessa de pequenos cubos perto da borda do modelo." + +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Malha Anti-Pendente" + +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Posição Retraída Anti-escorrimento" + +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Velocidade de Retração Anti-escorrimento" + +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "Aplicar o deslocamento de extrusor ao sistema de coordenadas. Afeta todos os extrusores." + +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "Nos lugares em que os modelos tocam, gerar uma estrutura de vigas interligada. Isto melhora a aderência entre modelos, especialmente modelos impressos com materiais diferentes." + +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Evitar Partes Impressas nas Viagens" + +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Evitar Suportes No Percurso" + +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Atrás" + +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Atrás à Esquerda" + +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Atrás à Direita" + +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" + +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Ambos" + +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "Ambos se sobrepõem" + +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Camadas Inferiores" + +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Camada Inicial do Padrão da Base" + +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Distância de Expansão do Contorno Inferior" + +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Largura de Remoção do Contorno Inferior" + +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Espessura Inferior" + +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "Densidade de Galho" + +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "Diâmetro de Galho" + +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "Ângulo de Diâmetro de Galho" + +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Posição Retraída de Preparação de Quebra" + +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Velocidade de Retração de Preparação de Quebra" + +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Temperatura de Quebra de Preparação" + +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Posição Retraída de Quebra" + +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Velocidade de Retração de Quebra" + +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Temperatura de Quebra" + +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Quebrar Suportes em Pedaços" + +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Velocidade de Ventoinha da Ponte" + +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Ponte Tem Camadas Múltiplas" + +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Densidade de Segundo Contorno da Ponte" + +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Velocidade da Ventoinha no Segundo Contorno da Ponte" + +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Fluxo de Segundo Contorno da Ponte" + +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Velocidade de Segundo Contorno da Ponte" + +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Densidade do Contorno de Ponte" + +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Fluxo do Contorno de Ponte" + +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Velocidade do Contorno de Ponte" + +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Limiar de Suporte de Contorno de Ponte" + +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Densidade Máxima do Preenchimento Esparso de Ponte" + +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Densidade de Terceiro Contorno da Ponte" + +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Velocidade da Ventoinha no Terceiro Contorno da Ponte" + +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Fluxo de Terceiro Contorno da Ponte" + +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Velocidade de Terceiro Contorno da Ponte" + +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Desengrenagem de Parede de Ponte" + +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Fluxo da Parede de Ponte" + +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Velocidade da Parede de Ponte" + +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Brim" + +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Distância do Brim" + +msgctxt "brim_inside_margin label" +msgid "Brim Inside Avoid Margin" +msgstr "Brim Dentro da Margem a Evitar" + +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Contagem de Linhas do Brim" + +msgctxt "brim_outside_only label" +msgid "Brim Only on Outside" +msgstr "Brim Somente Para Fora" + +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Brim Substitui Suporte" + +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Largura do Brim" + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Aderência à Mesa" + +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Extrusor de Aderência à Mesa" + +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Tipo de Aderência da Mesa de Impressão" + +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Material da Plataforma de Impressão" + +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Forma da Mesa" + +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Temperatura da Mesa de Impressão" + +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Temperatura da Mesa de Impressão da Camada Inicial" + +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Temperatura do Volume de Impressão" + +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "Ao habilitar este ajuste sua torre de purga ganhará um brim, mesmo que o modelo não tenha. Se você quiser uma base mais firme para uma torre alta, pode aumentar a altura." + +msgctxt "center_object label" +msgid "Center Object" +msgstr "Centralizar Objeto" + +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "Altera a geometria do modelo a ser impresso de tal modo que o mínimo de suporte seja exigido. Seções pendentes agudas serão torcidas pra ficar mais verticais. Áreas de seções pendentes profundas se tornarão mais rasas." + +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "Permite escolher entre as técnicas para geração de suporte. Suporte \"normal\" cria a estrutura de suporte diretamente abaixo das seções pendentes e vai em linha reta pra baixo. Suporte \"em árvore\" cria galhos na direção das seções pendentes, suportando o modelo nas pontas destes, e permitndo que se distribuam em torno do modelo para apoiá-lo na plataforma de impressão tanto quanto possível." + +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Velocidade de Desengrenagem" + +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Volume de Desengrenagem" + +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "A desengrenagem ou 'coasting' troca a última parte do caminho de uma extrusão pelo caminho sem extrudar. O material escorrendo é usado para imprimir a última parte do caminho de extrusão de modo a reduzir fiapos." + +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Modo de Combing" + +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "O Combing mantém o bico dentro de áreas já impressas ao fazer o percurso. Isto causa movimentações de percurso um pouco mais demoradas mas reduz a necessidade de retrações. Se o combing estiver desligado, o material sofrerá retração eo bico se moverá em linha reta até o próximo ponto. É possível também evitar combing sobre contornos inferiores e superiores ou somente fazer combing dentro do preenchimento." + +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Ajustes de Linha de Comando" + +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Ângulo de Suporte Cônico" + +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Largura Mínima do Suporte Cônico" + +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Conectar Linhas de Preenchimento" + +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Conectar Polígonos do Preenchimento" + +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Conectar Linhas de Suporte" + +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Conectar os Ziguezagues do Suporte" + +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Conectar Polígonos do Topo e Base" + +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "Conecta os caminhos de preenchimentos onde estiverem próximos um ao outro. Para padrões de preenchimento que consistam de vários polígonos fechados, a habilitação deste ajuste reduz bastante o tempo de percurso." + +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "Conecta os ziguezagues. Isto aumentará a força da estrutura de suporte em ziguezague." + +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "Conecta os extremos das linhas de suporte juntos. Habilitar este ajuste pode tornar seu suporte mais robusto e reduzir subextrusão, mas gastará mais material." + +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "Conecta as extremidades onde o padrão de preenchimento toca a parede interna usando uma linha que segue a forma da parede interna. Habilitar este ajuste pode fazer o preenchimento aderir melhor às paredes e reduzir o efeito do preenchimento na qualidade de superfícies verticais. Desabilitar este ajuda diminui a quantidade de material usado." + +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "Conectar caminhos de contorno da base e topo quando estiverem próximos entre si. Para o padrão concêntrico, habilitar este ajuste reduzirá bastante o tempo de percurso, mas por as conexões poderem acontecer no meio do preenchimento, este recurso pode reduzir a qualidade da superfície superior." + +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "Controla se os cantos do contorno do modelo influenciam a posição da costura. Nenhum significa que os cantos não terão influência na posição da costura. Ocultar Costura torna mais provável que a costura ocorra em um canto interior. Expôr Costura torna mais provável que a costura ocorra em um canto exterior. Ocultar ou Expôr Costura torna mais provável que a costura ocorra em um canto interior ou exterior. Ocultação Inteligente permite tanto cantos interiores quanto exteriores, mas escolhe os interiores mais frequentemente se apropriado." + +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "Converte cada file de preenchimento para este número de filetes. Os filetes extras não se cruzam, se evitam. Isto torna o preenchimento mais rígido, mas aumenta o tempo de impressão e uso do material." + +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Velocidade de Resfriamento" + +msgctxt "cooling description" +msgid "Cooling" +msgstr "Refrigeração" + +msgctxt "cooling label" +msgid "Cooling" +msgstr "Refrigeração" + +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Cruzado" + +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Cruzado" + +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "Cruzado 3D" + +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Tamanho de Bolso do Cruzado 3D" + +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Imagem de Densidade de Preenchimento Cruzado para Suporte" + +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Imagem de Densidade do Preenchimento Cruzado" + +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Material Cristalino" + +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Cúbico" + +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Subdivisão Cúbica" + +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Cobertura de Subdivisão Cúbica" + +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Malha de Corte" + +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "Dados relacionando fluxo de material (em mm³ por segundo) a temperatura (graus Celsius)." + +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Aceleração Default" + +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Temperatura Default da Plataforma de Impressão" + +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Jerk Default do Filamento" + +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Temperatura Default de Impressão" + +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Jerk Default nos eixos X-Y" + +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "O Jerk Default em Z" + +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "O valor default de jerk para movimentos no plano horizontal." + +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "O valor default de jerk para movimento na direção Z." + +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "O valor default de jerk para movimentação do filamento." + +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "Detectar pontes e modificar a velocidade de impressão, de fluxo e ajustes de fan onde elas forem detectadas." + +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "Determina a ordem na qual paredes são impressas. Imprimir as paredes externas primeiro ajuda na acuracidade dimensional, visto que falhas das paredes internas não poderão propagar externamente. No entanto, imprimi-las no final ajuda a haver melhor empilhamento quando seções pendentes são impressas. Quando há uma quantidade ímpar de paredes internas totais, a 'última linha central' é sempre impressa por último." + +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "Determina a prioridade desta malha ao considerar múltiplas malhas de preenchimento sobrepostas. Áreas onde múltiplas malhas de preenchimento se sobrepõem terão os ajustes da malha com a maior prioridade. Uma malha de preenchimento com prioridade maior modificará o preenchimento tanto das malhas de preenchimento com prioridade menor quanto das malhas normais." + +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Determina quando uma camada do preenchimento relâmpago deve suportar algo sobre si. Medido no ângulo de acordo com a espessura da camada." + +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Determina quando a camada de preenchimento relâmpago deve suportar o modelo sobre si. Medido no ângulo de acordo com a espessura." + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diâmetro" + +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "Aumento de Diâmetro para o Modelo" + +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "O diâmetro que cada galho tenta alcançar quando se aproxima da plataforma de impressão. Melhora aderência à plataforma." + +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "Diferentes opções que ajudam a melhorar a extrusão e a aderência à plataforma de impressão. Brim (bainha) adiciona uma camada única e chata em volta da base de seu modelo para impedir warping. Raft (balsa) adiciona uma grade densa com 'teto' abaixo do modelo. Skirt (saia) é uma linha impressa em volta do modelo, mas não conectada ao modelo, para apenas iniciar o processo de extrusão." + +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Áreas Proibidas" + +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "Distância entre as linhas de preenchimento impressas. Este ajuste é calculado pela densidade de preenchimento e a largura de extrusão do preenchimento." + +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "Distância entre os filetes da camada inicial da camada de suporte. Este ajuste é calculado pela densidade de suporte." + +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "Distância entre os filetes de impressão da base de suporte. Este ajuste é calculado pela densidade da Base de Suporte, mas pode ser ajustado separadamente." + +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "Distância entre os filetes de impressão do teto de suporte. Este ajuste é calculado pela Densidade do Teto de Suporte mas pode ser ajustado separadamente." + +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "Distância entre as linhas impressas da estrutura de suporte. Este ajuste é calculado a partir da densidade de suporte." + +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "Distância da impressão até a base do suporte. Note que o valor é arredondado pra cima para a próxima altura de camada." + +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "Distância do topo do suporte à impressão." + +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "Distância da base ou topo do suporte à impressão. Esta lacuna provê uma folga pra remover os suporte depois da impressão do modelo. A camada de suporte superior abaixo do modelo pode ser uma fração de camadas regulares." + +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "Distância do percurso inserido após cada linha de preenchimento, para fazer o preenchimento aderir melhor às paredes. Esta opção é similar à sobreposição de preenchimento mas sem extrusão e somente em uma extremidade do filete de preenchimento." + +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "Distância do percurso inserido após a parede externa para esconder melhor a costura em Z." + +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "Distância da Cobertura de Trabalho da impressão nas direções X e Y." + +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "Distância da cobertura de escorrimento da impressão nas direções X e Y." + +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "Distância da estrutura de suporte da seção pendente nas direções X/Y." + +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "Distância da estrutura de suporte até a impressão nas direções X e Y." + +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Pontos de distância são deslocados para suavizar o caminho" + +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Pontos de distância são deslocados para suavizar o caminho" + +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "Não gerar preenchimento para áreas menores que esta (usar contorno)." + +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Altura da Cobertura de Trabalho" + +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Limitação da Cobertura de Trabalho" + +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Distância X/Y da Cobertura de Trabalho" + +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Malha de Suporte Abaixo" + +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Extrusão Dual" + +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Elíptica" + +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Habilitar Controle de Aceleração" + +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Habilitar Ajustes de Ponte" + +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Habilitar Desengrenagem" + +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Habilitar Suporte Cônico" + +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Habilitar Cobertura de Trabalho" + +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "Habilitar Movimento Fluido" + +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Habilitar Passar a Ferro" + +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Habilitar Controle de Jerk" + +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Habilitar Controle de Temperatura do Bico" + +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Habilitar Cobertura de Escorrimento" + +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "Habilitar Massa de Purga" + +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Habilitar Torre de Purga" + +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Habilitar Refrigeração de Impressão" + +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Habilitar Retração" + +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Habilitar Brim de Suporte" + +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Habilitar Base de Suporte" + +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Habilitar Interface de Suporte" + +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Habilitar Teto de Suporte" + +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Habilitar Aceleração de Percurso" + +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Habilitar Jerk de Percurso" + +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "Habilita a cobertura exterior de escorrimento. Isso criará uma casca ou cobertura em volta do modelo que ajudará a limpar o segundo bico se estiver na mesma altura do primeiro bico." + +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "Habilita pequenas regiões (até a 'Largura de Teto/Base Pequenos') na camada superior com contorno (exposta ao ar) pra serem preenchidas com paredes ao invés do padrão default." + +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "Permite ajustar o jerk da cabeça de impressão quando a velocidade nos eixos X ou Y muda. Aumentar o jerk pode reduzir o tempo de impressão ao custo de qualidade de impressão." + +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "Permite ajustar a aceleração da cabeça de impressão. Aumentar as acelerações pode reduzir tempo de impressão ao custo de qualidade de impressão." + +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "Habilita as ventoinhas de refrigeração ao imprimir. As ventoinhas aprimoram a qualidade de impressão em camadas de tempo curto de impressão e em pontes e seções pendentes." + +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "G-Code Final" + +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Comprimento de Purga do Fim do Filamento" + +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Velocidade de Purga do Fim do Filamento" + +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "Força que o brim seja impresso em volta do modelo mesmo se este espaço fosse ser ocupado por suporte. Isto substitui algumas regiões da primeira camada de suporte por regiões de brim." + +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "Em Todo Lugar" + +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Exclusivo" + +msgctxt "experimental label" +msgid "Experimental" +msgstr "Experimental" + +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Expôr Costura" + +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Costura Extensa" + +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "Costura Extensa tenta costurar furos abertos na malha fechando o furo com polígonos que o tocam. Esta opção pode adicionar bastante tempo ao fatiamento das peças." + +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Contagem de Paredes de Preenchimento Extras" + +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Contagem de Paredes Extras de Contorno" + +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "Material extra a avançar depois da troca de bico." + +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posição X da Purga do Extrusor" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posição Y da Purga do Extrusor" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posição Z de Purga do Extrusor" + +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Extrusores Compartilham Aquecedor" + +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Extrusores Compartilham o Bico" + +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Modificador de Velocidade de Resfriamento de Extrusão" + +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "Fator de correção de largura de extrusão baseada na velocidade. Em 0%, a velocidade de movimento é mantida constante na Velocidade de Impressão. Em 100%, a velocidade de movimento é ajustada de forma que o fluxo (em mm³/s) seja mantido constante, isto é, filetes de metade da Largura de Filete normal são impressos duas vezes mais rápido e filetes duas vezes mais espessos são impressos na metade da velocidade. Um valor mais alto que 100% pode ajudar a compensar pela maior pressão necessária para extrudar filetes espessos." + +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Velocidade da Ventoinha" + +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Sobrepor Velocidade de Ventoinha" + +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "Contornos de aspectos menores que este comprimento serão impressos usando a Velocidade de Aspecto Pequeno." + +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Recursos que não foram completamente desenvolvidos ainda." + +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Diâmetro da Engrenagem de Alimentação" + +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Temperatura de Impressão Final" + +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Retração de Firmware" + +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Extrusor de Suporte da Primeira Camada" + +msgctxt "material_flow label" +msgid "Flow" +msgstr "Fluxo" + +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Raio de Equalização de Fluxo" + +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Fator de Compensação da Taxa de Fluxo" + +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Máximo Deslocamento de Extrusão de Compensação de Taxa de Fluxo" + +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Gráfico de Fluxo de Temperatura" + +msgctxt "material_flow_layer_0 description" +msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." +msgstr "Compensação de fluxo para a primeira camada; a quantidade de material extrudado na camada inicial é multiplicada por este valor." + +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "Compensação de fluxo nos filetes da base da primeira camada" + +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Compensação de fluxo em filetes de preenchimento." + +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "Compensação de fluxo em filetes do teto ou base do suporte." + +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "Compensação de Fluxo em filetes das áreas no topo da impressão." + +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Compensação de fluxo em filetes de torre de purga." + +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Compensação de Fluxo em filetes de Skirt e Brim." + +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Compensação de fluxo nos filetes da base do suporte." + +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Compensação de fluxo em filetes do teto de suporte." + +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Compensação de fluxo em filetes de estruturas de suporte." + +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "Compensação de fluxo no filete de parede mais externo da primeira camada." + +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "Compensação de fluxo no filete de parede mais externo." + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Compensação de fluxo no filete de parede externo de superfície do topo." + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Compensação de fluxo nos files de parede de superfície do topo excetuando o mais externo." + +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Compensação de fluxo em filetes do topo e base." + +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "Compensação de fluxo nos filetes de parede para todos os filetes exceto o mais externo, mas só para a primeira camada" + +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "Compensação de fluxo em todos os filetes de parede excetuando o mais externo." + +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Compensação de fluxo em filetes das paredes." + +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "Compensação de fluxo: a quantidade de material extrudado é multiplicado por este valor." + +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "Ângulo de Movimento Fluido" + +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "Distância de Deslocamento do Movimento Fluido" + +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "Distância Pequena do Movimento Fluido" + +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Comprimento da Descarga de Purga" + +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Velocidade de Descarga de Purga" + +msgctxt "min_wall_line_width description" +msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." +msgstr "Para estruturas finas por volta de uma ou duas vezes o tamanho do bico, as larguras de linhas precisam ser alteradas para aderir à grossura do modelo. Este ajuste controla a largura mínima de filete permite para as paredes. As larguras mínimas de filete inerentemente também determinam as larguras máximas, já que transicionamos de N pra N+1 parede na grossura de geometria onde paredes N são largas e as paredes N+1 são estreitas. A maior largura possível de parede é duas vezes a Largura Mínima de Filete de Parede." + +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Frente" + +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Frente à Esquerda" + +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Frente à Direita" + +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Completo" + +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Contorno Felpudo" + +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Densidade do Contorno Felpudo" + +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Contorno Felpudo Externo Apenas" + +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Distância de Pontos do Contorno Felpudo" + +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Espessura do Contorno Felpudo" + +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "Sabor de G-Code" + +msgctxt "machine_end_gcode description" +msgid "" +"G-code commands to be executed at the very end - separated by \n" +"." +msgstr "" +"Comandos G-Code a serem executados no final da impressão - separados por \n" +"." + +msgctxt "machine_start_gcode description" +msgid "" +"G-code commands to be executed at the very start - separated by \n" +"." +msgstr "" +"Comandos G-Code a serem executados no início da impressão - separados por \n" +"." + +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "GUID do material. É ajustado automaticamente." + +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Altura do Eixo" + +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "Gerar Estrutura Interligada" + +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Gerar Suporte" + +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "Gera o brim dentro das regiões de preenchimento de suporte da primeira camada. Este brim é impresso sob o suporte, não em volta dele. Habilitar este ajuste aumenta a aderência de suporte à mesa de impressão." + +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "Gera uma interface densa entre o modelo e o suporte. Isto criará um contorno no topo do suporte em que o modelo é impresso e na base do suporte, onde ele fica sobre o modelo." + +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "Gera um bloco denso de material entre a base do suporte e o modelo. Isto criará uma divisória entre o modelo e o suporte." + +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "Gera um bloco denso de material entre o topo do suporte e o modelo. Isto criará uma divisória entre o modelo e o suporte." + +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "Gerar estrutura que suportem partes do modelo que tenham seções pendentes. Sem estas estruturas, tais partes desabariam durante a impressão." + +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Vidro" + +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "Passa sobre a superfície superior uma vez a mais, mas extrudando muito pouco material. Isto serve para derreter mais o plástico em cima, criando uma superfície lisa. A pressão na câmara do bico é mantida alta tal que as rugas na superfície são preenchidas com material." + +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Altura de Passo do Preenchimento Gradual" + +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Passos Graduais de Preenchimento" + +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Altura de Passo do Preenchimento Gradual de Suporte" + +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Passos de Preenchimento Gradual de Suporte" + +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "Gradualmente reduzir até esta temperatura quanto se estiver imprimindo a velocidades reduzidas devidas ao tempo mínimo de camada." + +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Grade" + +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Grade" + +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Grade" + +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Grade" + +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Grade" + +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" + +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Agrupar Paredes Externas" + +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Giróide" + +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Giróide" + +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "Tem Estabilização de Temperatura do Volume de Impressão" + +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Tem Mesa Aquecida" + +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Velocidade de Aquecimento" + +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Comprimento da Zona de Aquecimento" + +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "Limitação de altura da cobertura de trabalho. Acima desta altura a cobertura não será impressa." + +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Ocultar Costura" + +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Ocultar ou Expor Costura" + +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Expansão Horizontal do Furo" + +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "Diâmetro Máximo da Expansão Horizontal de Furo" + +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "Furos e contornos de partes com diâmetro menor que este serão impressos usando a Velocidade de Aspecto Pequeno." + +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Expansão Horizontal" + +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Compensação de Fator de Encolhimento Horizontal" + +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "Quanto o filamento pode ser esticado antes que quebre, quando aquecido." + +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "De quanto o material precisa ser retraído antes que pare de escorrer." + +msgctxt "flow_rate_extrusion_offset_factor description" +msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." +msgstr "Em quanto mover o filamento para compensar mudanças na taxa de fluxo, como uma porcentagem da distância que o filamento seria movido em um segundo de extrusão." + +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "De quanto o filamento deve ser retraído para se destacar completamente." + +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "Qual a velocidade do material para que seja retraído antes de quebrar em uma retração." + +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "Qual a velocidade do material para que seja retraído durante a troca de filamento sem escorrimento." + +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "Quão rápido purgar o material depois de trocar um carretel vazio por um novo carretel do mesmo material." + +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "Quão rápido purgar o material depois de alternar para um material diferente." + +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "Quanto tempo o material pode ser mantido fora de armazenamento seco com segurança." + +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção X." + +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção Y." + +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção Z." + +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "Quantos passos dos motores resultarão no movimento da engrenagem de alimentação em um milímetro da circunferência." + +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "Quanto material usar para purgar o material anterior do bico (em comprimento de filamento) quando um carretel vazio for trocado por um carretel novo do mesmo material." + +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "Quanto material usar para purgar o material anterior do bico (em comprimento de filamento) quando alternar para um material diferente." + +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "Quanto é assumido que o filamento de cada extrusor tenha retraído da ponta do bico ao completar o script g-code de início da impressora; o valor deve ser igual ou superior ao comprimento da parte comum dos dutos do bico." + +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "Como a interface de suporte a o suporte interagirão quando eles se sobrepuserem. No momento implementado apenas para teto de suporte." + +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "Quão alto um galho tem que ser para ser agregado ao modelo. Previne pequenos nódulos de suporte. Este ajuste é ignorado quando um galho está suportando teto de suporte." + +msgctxt "bridge_skin_support_threshold description" +msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." +msgstr "Se uma região do contorno for suportada por menos do que esta porcentagem de sua área, imprimi-la com os ajustes de ponte. Senão, imprimir usando os ajustes normais de contorno." + +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "Se um segmento do percurso do extrusor se desviar do movimento geral por um ângulo maior que esse, será suavizado." + +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "Se habilitado, a segunda e terceira camadas sobre o ar serão impressas usando os ajustes seguintes. Senão, estas camadas serão impressas com ajustes normais." + +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "Se for detectado que a cabeça de impressão estaria alternando em rápida sucessão entre números diferentes de parede, não fazer tal alternação. Remove transições se elas estiverem próximas até essa distância." + +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Se o Raft estiver habilitado, esta é a área extra do raft em volta do modelo que também faz parte dele. Aumentar esta margem criará um raft mais forte mas também gastará mais material e deixará menos área para sua impressão." + +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "Ignora a geometria interna de volumes sobrepostos dentro de uma malha e imprime os volumes como um único volume. Isto pode ter o efeito não-intencional de fazer cavidades desaparecerem." + +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Incluir Temperatura da Mesa" + +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Incluir Temperaturas de Material" + +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Inclusivo" + +msgctxt "infill description" +msgid "Infill" +msgstr "Preenchimento" + +msgctxt "infill label" +msgid "Infill" +msgstr "Preenchimento" + +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Aceleração do Preenchimento" + +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Preenchimento Antes das Paredes" + +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Densidade do Preenchimento" + +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Extrusor do Preenchimento" + +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Fluxo de Preenchimento" + +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Jerk do Preenchimento" + +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Espessura da Camada de Preenchimento" + +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Direções de Filetes de Preenchimento" + +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Distância da Linha de Preenchimento" + +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "Multiplicador de Filete de Preenchimento" + +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Largura de Extrusão do Preenchimento" + +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Malha de Preenchimento" + +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Ângulo de Seções Pendentes do Preenchimento" + +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Sobreposição de Preenchimento" + +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "Porcentagem de Sobreposição do Preenchimento" + +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Padrão de Preenchimento" + +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Velocidade de Preenchimento" + +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Suporte do Preenchimento" + +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Otimização de Percurso de Preenchimento" + +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "Distância de Varredura do Preenchimento" + +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "Deslocamento X do Preenchimento" + +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Deslocamento do Preenchimento Y" + +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "Camadas Inferiores Iniciais" + +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Velocidade Inicial da Ventoinha" + +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Aceleração da Camada Inicial" + +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "Fluxo da Base da Camada Inicial" + +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "Diâmetro da Camada Inicial" + +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Fluxo Inicial de Camada" + +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Altura da Primeira Camada" + +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Expansão Horizontal da Camada Inicial" + +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "Fluxo de Parede Interna da Camada Inicial" + +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Jerk da Camada Inicial" + +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Largura de Extrusão da Camada Inicial" + +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "Fluxo de Parede Externa da Camada Inicial" + +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Aceleração de Impressão da Camada Inicial" + +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Jerk de Impressão da Camada Inicial" + +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Velocidade de Impressão da Camada Inicial" + +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Velocidade da Camada Inicial" + +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "Distância de Filetes da Camada Inicial de Suporte" + +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Aceleração de Percurso da Camada Inicial" + +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Jerk de Percurso da Camada Inicial" + +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Velocidade de Percurso da Camada Inicial" + +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Sobreposição em Z das Camadas Iniciais" + +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Temperatura Inicial de Impressão" + +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Aceleração das Paredes Interiores" + +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Extrusor da Parede Interior" + +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Jerk das Paredes Internas" + +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Velocidade da Parede Interior" + +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Fluxo da(s) Parede(s) Interna(s)" + +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Largura de Extrusão das Paredes Internas" + +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "Penetração adicional aplicada ao caminho da parede externa. Se a parede externa for menor que o bico, e impressa depois das paredes internas, use este deslocamento para fazer o orifício do bico se sobrepor às paredes internas ao invés de ao lado de fora do modelo." + +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "De Dentro Pra Fora" + +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "Linhas de interface preferidas" + +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "Interface preferida" + +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "Contagem de Camadas das Vigas Interligadas" + +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "Largura da Viga Interligada" + +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "Prevenção de Fronteira de Interligação" + +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "Profundidade de Interligação" + +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "Orientação da Estrutura de Interligação" + +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Passar a Ferro Somente Camada Mais Alta" + +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Aceleração de Passar a Ferro" + +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Fluxo de Passagem a Ferro" + +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Penetração da Passagem a Ferro" + +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Jerk de Passar a Ferro" + +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Espaçamento de Passagem a Ferro" + +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Padrão de Passagem a Ferro" + +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Velocidade de Passar o Ferro" + +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "Origem é no Centro" + +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "É material de suporte" + +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "Este material é do tipo que se destaca completamente quando aquecido (cristalino), ou é o tipo que produz cadeias de polímero entrelaçadas (não-cristalino)?" + +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "Se esse material é ou não tipicamente usado como material de suporte durante a impressão." + +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "Flutuar movimento apenas nos contornos e não nos furos das peças." + +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Manter Faces Desconectadas" + +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Altura de Camada" + +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "X Inicial da Camada" + +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Y Inicial da Camada" + +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "Espessura de camada da camada de base do raft. Esta camada deve ser grossa para poder aderir firmemente à mesa." + +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "Espessura da camada intermediária do raft." + +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Espessura de camada das camadas superiores do raft." + +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "Evita uma conexão entre linhas de suporte uma vez a cada N milímetros para fazer a estrutura de suporte mais fácil de ser removida." + +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Esquerda" + +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Levantar Cabeça" + +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Relâmpago" + +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Ângulo de Seção Pendente do Preenchimento Relâmpago" + +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Ângulo de Poda do Preenchimento Relâmpago" + +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Ângulo de Retificação do Preenchimento Relâmpago" + +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Ângulo de Suporte do Preenchimento Relâmpago" + +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "Limitar Alcance de Galho" + +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "Limita quão longe cada galho deve percorrer do ponto que ele suporta. Isto pode fazer o suporte mais estável, mas aumentará a quantidade de galhos (e por causa disso, uso de material e tempo de impressão)" + +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "Limitar o volume desta malha para dentro de outras malhas. Você pode usar isto para fazer certas áreas de uma malha imprimirem com ajustes diferentes, incluindo extrusor diferente." + +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Limitado" + +msgctxt "line_width label" +msgid "Line Width" +msgstr "Largura de Extrusão" + +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Máquina" + +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Profundidade da Mesa" + +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Polígono da Cabeça com Ventoinha" + +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Altura do Volume" + +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Tipo de Máquina" + +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Largura da Mesa" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Ajustes específicos da máquina" + +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Torna Seções Pendentes Imprimíveis" + +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "Faz malhas que tocam uma à outra se sobreporem um pouco. Isto faz com que elas se combinem com mais força." + +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "Faz as áreas de suporte menores na base que na seção pendente." + +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "Cria suport em todo lugar abaixo da malha de suporte de modo que não haja seções pendentes nela." + +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "Faz a posição de purga do extrusor absoluta ao invés de relativa à última posição conhecida da cabeça." + +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +msgstr "Faz a primeira e segunda camadas do modelo se sobreporem na direção Z para compensar pelo filamento perdido no vão aéreo. Todos os modelos acima da primeira camada de modelo serão deslocados para baixo por essa distância." + +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Faz as malhas mais adequadas para impressão 3D." + +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" + +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" + +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volumétrico)" + +msgctxt "material description" +msgid "Material" +msgstr "Material" + +msgctxt "material label" +msgid "Material" +msgstr "Material" + +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "GUID do Material" + +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Volume de Material Entre Limpezas" + +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Máxima Distância de Combing Sem Retração" + +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Aceleração Máxima em X" + +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Aceleração Máxima em Y" + +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Aceleração Máxima em Z" + +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "Ângulo Máximo de Galho" + +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Desvio Máximo" + +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Desvio Máximo de Área de Extrusão" + +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Velocidade Máxima da Ventoinha" + +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Aceleração Máxima do Filamento" + +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Ângulo Máximo do Modelo" + +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Área Máxima de Furo de Seções Pendentes" + +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Duração Máxima de Descanso" + +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Resolução Máxima" + +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Contagem de Retrações Máxima" + +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Ângulo Máximo do Contorno para Expansão" + +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Velocidade Máxima de Extrusão" + +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Velocidade Máxima em X" + +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Velocidade Máxima em Y" + +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Velocidade Máxima em Z" + +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Diâmetro Máximo Suportado por Torres" + +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Máxima Resolução de Percurso" + +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "A aceleração máxima para o motor da impressora na direção X" + +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "A aceleração máxima para o motor da impressora na direção Y." + +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "A aceleração máxima para o motor da impressora na direção Z." + +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "Aceleração máxima para a entrada de filamento no hotend." + +msgctxt "bridge_sparse_infill_max_density description" +msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." +msgstr "Densidade máxima do preenchimento considerado esparso. Contorno sobre o preenchimento esparso é considerado não-suportado e portanto será tratado como contorno de ponte." + +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "Diâmetro máximo nas direções X e Y da pequena área que será suportada por uma torre especializada de suporte." + +msgctxt "max_extrusion_before_wipe description" +msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." +msgstr "Material máximo que pode ser extrudado antes que outra limpeza de bico seja iniciada. Se este valor for menor que o volume de material requerido em uma camada, ele não terá efeito nenhum nesta camada, isto é, está limitado a uma limpeza por camada." + +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Sobreposição de Malhas Combinadas" + +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Correções de Malha" + +msgctxt "mesh_position_x label" +msgid "Mesh Position X" +msgstr "Posição X da Malha" + +msgctxt "mesh_position_y label" +msgid "Mesh Position Y" +msgstr "Posição Y da Malha" + +msgctxt "mesh_position_z label" +msgid "Mesh Position Z" +msgstr "Posição Z da Malha" + +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "Hierarquia do Processamento de Malha" + +msgctxt "mesh_rotation_matrix label" +msgid "Mesh Rotation Matrix" +msgstr "Matriz de Rotação da Malha" + +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Meio" + +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Largura Mínima do Molde" + +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Tempo Mínima em Temperatura de Espera" + +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Comprimento de Parede de Ponte Mínimo" + +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Largura Mínima de Filete de Parede Par" + +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Janela de Distância de Extrusão Mínima" + +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Mínimo Tamanho de Detalhe" + +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Velocidade Mínima de Alimentação" + +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "Altura Mínima Para O Modelo" + +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Área Mínima para Preenchimento" + +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Tempo Mínimo de Camada" + +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Largura Mínima de Filete de Parede Ímpar" + +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Mínima Circunferência do Polígono" + +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Largura Mínima de Contorno para Expansão" + +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Velocidade Mínima" + +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Área Mínima de Suporte" + +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Área Mínima de Base de Suporte" + +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Área Mínima de Interface de Suporte" + +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Área Mínima de Teto de Suporte" + +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Distância Mínima de Suporte X/Y" + +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Largura Mínima de Filete de Parede Fina" + +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Volume Mínimo Antes da Desengrenagem" + +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Largura Mínina de Filete de Parede" + +msgctxt "minimum_interface_area description" +msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Área mínima para os polígonos da interface de suporte. Polígonos que têm área menor que este valor serão impressos como suporte normal." + +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "Área mínima para polígonos de suporte. Polígonos que tiverem uma área menor que essa não serão gerados." + +msgctxt "minimum_bottom_area description" +msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Área mínima para as bases do suport. Polígonos que têm área menor que este valor serão impressos como suporte normal." + +msgctxt "minimum_roof_area description" +msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Área mínima para os tetos do suporte. Polígonos que têm área menor que este valor serão impressos como suporte normal." + +msgctxt "min_feature_size description" +msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." +msgstr "Espessura mínima de detalhes finos. Detalhes de modelo que forem mais finos que este valor não serão impressos, enquanto que detalhes mais espessos que o Tamanho Mínimo de Detalhe serão aumentados para a Largura Mínima de Filete de Parede." + +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "Largura mínima para a qual a base do suporte cônico é reduzida. Pequenas larguras podem levar a estruturas de suporte instáveis." + +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Molde" + +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Ângulo do Molde" + +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Altura de Teto do Molde" + +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Ordem de Passagem a Ferro Monotônica" + +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Ordem da Superfície Monotônica Superior" + +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Ordem Monotônica Superior/Inferior" + +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "Múltiplas linhas de skirt te ajudam a fazer purga de sua extrusão melhor para pequenos modelos. Se o valor for zero o skirt é desabilitado." + +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "Multiplicador da largura de extrusão da primeira camada. Aumentar este ajuste pode melhorar a aderência à mesa." + +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Fator de Movimento Sem Carga" + +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Sem Contorno nas Lacunas Z" + +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Jeitos não-tradicionais de imprimir seus modelos." + +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Nenhuma" + +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Nenhum" + +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Normal" + +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Normal" + +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "Normalmente o Cura tenta costurar pequenos furos na malha e remover partes de uma camada com grandes furos. Habilitar esta opção mantém as partes que ele não consegue costurar. Esta opção deve ser usada como última alternativa quando tudo o mais falhar para produzir G-Code apropriado." + +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Não no Contorno" + +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Não na Superfície Externa" + +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Ângulo do Bico" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diâmetro do bico" + +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Áreas Proibidas para o Bico" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID do Bico" + +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Comprimento do Bico" + +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Quantidade de Avanço Extra da Troca de Bico" + +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Velocidade de Avanço da Troca de Bico" + +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Velocidade de Retração da Troca de Bico" + +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Distância de Retração da Troca de Bico" + +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Velocidade de Retração da Troca do Bico" + +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Número de extrusores" + +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Número de Extrusores Habilitados" + +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Número de Camadas Mais Lentas" + +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "O número de carros extrusores que estão habilitados; automaticamente ajustado em software" + +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "Número de carros extrusores. Um carro extrusor é a combinação de um alimentador/tracionador, opcional tubo de filamento guiado e o hotend." + +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "Número de vezes com que mover o bico através da varredura." + +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "Número de vezes para reduzir a densidade de preenchimento pela metade quando estiver chegando mais além embaixo das superfícies superiores. Áreas que estão mais perto das superfícies superiores ganham uma densidade maior, numa gradação até a densidade configurada de preenchimento." + +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "Número de vezes para reduzir a densidade de preenchimento de suporte pela metade quando avançando abaixo das superfícies inferiores. Áreas mais próximas ao topo terão maior densidade, até a Densidade de Preenchimento de Suporte." + +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Octeto" + +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Desligado" + +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "Deslocamento aplicado ao objeto na direção X." + +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "Deslocamento aplicado ao objeto na direção Y." + +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "Deslocamento aplicado ao objeto na direção Z. Com isto você pode fazer afundamento do objeto na plataforma." + +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Deslocamento com o Extrusor" + +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "Na plataforma de impressão quando possível" + +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "No modelo se requerido" + +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "Um de Cada Vez" + +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "Somente fazer o Salto Z quando se mover sobre partes impressas que não podem ser evitadas pelo movimento horizontal quando a opção 'Evitar Peças Impressas nas Viagens' estiver ligada." + +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "Somente executar a passagem a ferro na última camada da malha. Isto economiza tempo se as camadas abaixo não precisarem de um acabamento de superfície amaciado." + +msgctxt "brim_outside_only description" +msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +msgstr "Imprimir o Brim somente no lado de fora do modelo. Isto reduz a quantidade de brim a ser removida no final, e não reduz tanto a aderência à mesa." + +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Ângulo da Cobertura de Escorrimento" + +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Distância da Cobertura de Escorrimento" + +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "Alcance Ótimo de Galho" + +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Otimizar Ordem de Impressão de Paredes" + +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "Otimiza a ordem em que as paredes são impressas, tais que o número de retrações e a distância percorrida sejam reduzidos. A maioria das peças se beneficiará deste ajuste habilitado mas outras poderão demorar mais, portanto compare as estimativas de tempo de impressão com e sem otimização. A primeira camada não é otimizada quando o brim é selecionado como tipo de aderência da mesa de impressão." + +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Diâmetro Externo do Bico" + +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Aceleração da Parede Exterior" + +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Extrusor da Parede Externa" + +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Fluxo da Parede Externa" + +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Penetração da Parede Externa" + +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "Jerk da Parede Exterior" + +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Largura de Extrusão da Parede Externa" + +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Velocidade da Parede Exterior" + +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Distância de Varredura da Parede Externa" + +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Paredes externas de ilhas diferentes na mesma camada são impressas em sequência. Quando habilitado, as mudanças de fluxo são limitadas porque as paredes são impressas um tipo a cada vez; quando desabilitado, o número de percursos entre as ilhas é reduzido porque as paredes nas mesmas ilhas são agrupadas." + +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "De Fora Pra Dentro" + +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Ângulo de Parede Pendente" + +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Velocidade de Parede Pendente" + +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "Paredes pendentes serão impressas com esta porcentagem de sua velocidade de impressão normal." + +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Pausa após desfazimento da retração." + +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "Porcentagem da velocidade de ventoinha a usar quando imprimir paredes e contornos em pontes." + +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "Porcentagem da velocidade da ventoinha a usar quando se imprimir a segunda camada de contorno da ponte." + +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "Porcentagem de velocidade da ventoinha a usar ao imprimir as regiões de contorno imediatamente sobre o suporte. Usar uma velocidade de ventoinha alta pode fazer o suporte mais fácil de remover." + +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "Porcentagem da velocidade da ventoinha a usar quando se imprimir a terceira camada de contorno da ponte." + +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "Polígonos em camadas fatiadas que tiverem uma circunferência menor que esta quantia serão excluídos. Menores valores levam a malha de maior resolução ao custo de tempo de fatiamento. Serve melhor para impressoras SLA de alta resolução e pequenos modelos 3D com muitos detalhes." + +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "Ângulo Preferido de Galho" + +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "Impede de alternar entre uma parede a mais e uma a menos. Esta margem estende o alcance dos comprimentos de file a seguir para [Largura Mínima de Filete de Parede - Margem, 2 * Largura Mínima de Filete de Parede + Margem]. Aumentar esta margem reduz o número de transições, que por sua vez reduz o número de paradas e inícios de extrusão e tempo de percurso. No entanto, variação de largura de filete pode levar a problemas de subextrusão ou sobre-extrusão." + +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Aceleração da Torre de Purga" + +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Base" +msgstr "Base da Torre de Purga" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "Altura da Base da Torre de Purga" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "Tamanho da Base da Torre de Purga" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "Inclinação da Base da Torre de Purga" + +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Fluxo da Torre de Purga" + +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "Jerk da Torre de Purga" + +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Largura de Extrusão da Torre de Purga" + +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Volume Mínimo da Torre de Purga" + +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "Espaçamento do Filete de Raft da Torre de Purga" + +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Tamanho da Torre de Purga" + +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Velocidade da Torre de Purga" + +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "Posição X da Torre de Purga" + +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Posição Y da Torre de Purga" + +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Aceleração da Impressão" + +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Jerk da Impressão" + +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Sequência de Impressão" + +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Velocidade de Impressão" + +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Imprimir Paredes Finas" + +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "Imprimir uma torre próxima à impressão que serve para purgar o material a cada troca de bico." + +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "Imprime estruturas de preenchimento somente onde os tetos do modelo devam ser suportados. Habilitar este ajuste reduz tempo de impressão e uso de material, mas leva a resistências não-uniformes no objeto." + +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprime filetes de passagem a ferro em uma ordem que os faz com que sempre se sobreponham a linhas adjacentes em uma única direção. Isso faz levar um pouco mais de tempo na impressão, mas torna as superfícies mais consistentes." + +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "Imprimir modelos como moldes com o negativo das peças de modo que se possa encher de resina para as gerar." + +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "Imprime partes do modelo que são horizontalmente mais finas que o tamanho do bico." + +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "Velocidade de impressão a usar quando imprimir a segunda camada de ponte." + +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "Velocidade de impressão a usar quando imprimir a terceira camada de ponte." + +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "Imprime o preenchimento antes de imprimir as paredes. Imprimir as paredes primeiro pode levar a paredes mais precisas, mas seções pendentes são impressas com pior qualidade. Imprimir o preenchimento primeiro leva a paredes mais fortes, mas o padrão de preenchimento pode às vezes aparecer através da superfície." + +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprime os filetes da superfície superior em uma ordem que faz com que sempre se sobreponham a linhas adjacentes em uma única direção. Faz levar um pouco mais de tempo na impressão, mas torna as superfícies planas mais consistentes." + +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprime filetes superiores e inferiores em uma ordem que os faz sempre se sobreporem a filetes adjacentes em uma única direção. Faz levar um pouco mais de tempo na impressão, mas torna superfícies planas mais consistentes." + +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Temperatura de Impressão" + +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Temperatura de Impressão da Camada Inicial" + +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "Imprimir o filete mais interno de skirt com múltiplas camadas torna mais fácil removê-lo." + +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "Imprime uma parede adicional a cada duas camadas. Deste jeito o preenchimento fica aprisionado entre estas paredes extras, resultando em impressões mais fortes." + +msgctxt "resolution label" +msgid "Quality" +msgstr "Qualidade" + +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Quarto Cúbico" + +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Raft" + +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Vão Aéreo do Raft" + +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Extrusor da Base do Raft" + +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Velocidade de Ventoinha da Base do Raft" + +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Espaçamento de Filete de Base do Raft" + +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Largura de Linha da Base do Raft" + +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Aceleração de Impressão da Base do Raft" + +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Jerk de Impressão da Base do Raft" + +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Velocidade de Impressão da Base do Raft" + +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Espessura da Base do Raft" + +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Contagem de Paredes da Base do Raft" + +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Margem Adicional do Raft" + +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Velocidade de Ventoinha no Raft" + +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Extrusor do Meio do Raft" + +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Velocidade de Ventoinha do Meio do Raft" + +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Camadas Centrais do Raft" + +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Largura da Linha do Meio do Raft" + +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Aceleração de Impressão do Meio do Raft" + +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Jerk de Impressão do Meio do Raft" + +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Velocidade de Impressão do Meio do Raft" + +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Espaçamento do Meio do Raft" + +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Espessura do Meio do Raft" + +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Aceleração de Impressão do Raft" + +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Jerk de Impressão do Raft" + +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Velocidade de Impressão do Raft" + +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Amaciamento do Raft" + +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Extrusor do Topo do Raft" + +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Velocidade da Ventoinha para o Topo do Raft" + +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Espessura da Camada Superior do Raft" + +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Camadas Superiores do Raft" + +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Largura do Filete Superior do Raft" + +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Aceleração de Impressão do Topo do Raft" + +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Jerk de Impressão do Topo do Raft" + +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Velocidade de Impressão do Topo do Raft" + +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Espaçamento Superior do Raft" + +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Aleatório" + +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Aleatorizar o Começo do Preenchimento" + +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "Aleatoriza qual linha do preenchimento é impressa primeiro. Isto evita que um segmento seja mais forte que os outros, mas ao custo de um percurso adicional." + +msgctxt "magic_fuzzy_skin_enabled description" +msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." +msgstr "Faz flutuações de movimento aleatório enquanto imprime a parede mais externa, de modo que a superfície do objeto ganhe uma aparência felpuda ou acidentada." + +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Retangular" + +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "Velocidade Regular da Ventoinha" + +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Velocidade Regular da Ventoinha na Altura" + +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Velocidade Regular da Ventoinha na Camada" + +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "Limite de Tempo para Mudança de Velocidade da Ventoinha" + +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Extrusão Relativa" + +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Remover Todos os Furos" + +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Remover Camadas Iniciais Vazias" + +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Remover Interseções de Malha" + +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Remover Cantos Internos de Raft" + +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "Remove áreas onde várias malhas estão sobrepondo uma à outra. Isto pode ser usado se objetos de material duplo se sobrepõem um ao outro." + +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "Remove camadas vazias entre a primeira camada impressa se estiverem presentes. Desabilitar este ajuste pode criar camadas iniciais vazias se a Tolerância de Fatiamento estiver configurada para Exclusivo ou Meio." + +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Remove os cantos internos do raft, fazendo com que ele se torne convexo." + +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "Remove os furos de cada camada e mantém somente aqueles da forma externa. Isto ignorará qualquer geometria interna invisível. No entanto, também ignorará furos de camada que poderiam ser vistos de cima ou de baixo." + +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "Substitui a parte externa do padrão superior/inferir com um número de linhas concêntricas. Usar uma ou duas linhas melhora tetos e topos que começam a ser construídos em cima de padrões de preenchimento." + +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "Preferência de Descanso" + +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Retrair Antes da Parede Externa" + +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Retrai em Mudança de Camada" + +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Retrair o filamento quando o bico estiver se movendo sobre uma área não-impressa." + +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Retrair o filamento quando o bico se mover sobre uma área não impressa." + +msgctxt "retract_at_layer_change description" +msgid "Retract the filament when the nozzle is moving to the next layer." +msgstr "Retrai o filamento quando o bico está se movendo para a próxima camada." + +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Distância da Retração" + +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Quantidade Adicional de Avanço da Retração" + +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Percurso Mínimo para Retração" + +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Velocidade de Avanço da Retração" + +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Velocidade de Recolhimento de Retração" + +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Velocidade de Retração" + +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Direita" + +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "Velocidade de Escala da Ventoinha A 0-1" + +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "Usa a escala da velocidade da ventoinha como um número entre 0 e 1 ao invés de 0 a 256." + +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Compensação de Fator de Encolhimento" + +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "A Cena Tem Malhas de Suporte" + +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Preferência do Canto da Costura" + +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "Estabelece a altura da cobertura de trabalho. Escolha imprimir a cobertura na altura total dos modelos ou até uma altura limitada." + +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Ajustes usados para imprimir com vários extrusores." + +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "Ajustes que sào usados somentes se o CuraEngine não for chamado da interface do Cura." + +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Retração Inicial do Bico Compartilhado" + +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Canto Mais Agudo" + +msgctxt "shell description" +msgid "Shell" +msgstr "Perímetro" + +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Mais Curto" + +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Exibir Variantes de Máquina" + +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Camadas do Suporte da Aresta de Contorno" + +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Espessura do Suporte da Aresta de Contorno" + +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Distância de Expansão do Contorno" + +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Sobreposição do Contorno" + +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Porcentagem de Sobreposição do Contorno" + +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Largura de Remoção de Contorno" + +msgctxt "min_skin_width_for_expansion description" +msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." +msgstr "Áreas de contorno mais estreitas que esta não são expandidas. Isto evita expandir as áreas estreitas que são criadas quando a superfície do modelo tem inclinações quase verticais." + +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "Evitar uma em cada N linhas de conexão para fazer a estrutura de suporte mais fácil de ser removida." + +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "Evitar algumas conexões de linha de suporte para fazer a estrutura de suporte mais fácil de ser removida. Este ajuste é aplicável ao padrão de preenchimento de suporte de ziguezague." + +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Skirt" + +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Distância do Skirt" + +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "Altura do Skirt" + +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Contagem de linhas de Skirt" + +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Aceleração para Skirt e Brim" + +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Extrusor do Skirt/Brim" + +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Fluxo de Skirt/Brim" + +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Jerk de Skirt e Brim" + +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Largura de Extrusão do Brim e Skirt" + +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Mínimo Comprimento do Skirt e Brim" + +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Velocidade do Skirt e Brim" + +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Tolerância de Fatiamento" + +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Velocidade de Camada Inicial de Aspecto Pequeno" + +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Comprimento Máximo do Aspecto Pequeno" + +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Velocidade de Aspecto Pequeno" + +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Tamanho Máximo de Furos Pequenos" + +#, fuzzy +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "Temperatura de Impressão Final" + +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "Pequena Base/Teto Na Superfície" + +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "Largura do Teto/Base Pequenos" + +msgctxt "small_feature_speed_factor_0 description" +msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "Aspectos pequenos na primeira camada serão impressos nesta porcentagem de sua velocidade de impressão normal. Impressão mais lenta pode ajudar com aderência e precisão." + +msgctxt "small_feature_speed_factor description" +msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "Aspectos pequenos serão impressos nessa porcentagem da velocidade normal. Impressão mais lenta pode ajudar com aderência e precisão." + +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "Regiões pequenas de base/teto são preenchidas com paredes ao invés do padrão default de teto/base. Isto ajuda a prevenir movimentos bruscos. Desligado por default para a camada superior (exposta ao ar) (Veja 'Pequena Base/Teto Na Superfície')" + +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "Brim Inteligente" + +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Ocultação Inteligente" + +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Suavizar Contornos Espiralizados" + +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "Suavizar os contornos espiralizados para reduzir a visibilidade da costura Z (a costura Z deve ser quase invisível na impressão mas ainda será visível na visão de camadas). Note que a suavização tenderá a embaçar detalhes finos de superfície." + +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "Alguns materiais podem escorrer um pouco durante o percurso, o que pode ser compensando neste ajuste." + +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "Um pouco de material pode escorrer durante os movimentos do percurso de limpeza e isso pode ser compensado neste ajuste." + +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Modos Especiais" + +msgctxt "speed description" +msgid "Speed" +msgstr "Velocidade" + +msgctxt "speed label" +msgid "Speed" +msgstr "Velocidade" + +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "Velocidade com que mover o eixo Z durante o salto." + +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Espiralizar o Contorno Externo" + +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "'Espiralizar' faz com que o movimento vertical (em Z) seja contínuo e gradual seguindo o contorno da peça. Este recurso transforma um modelo sólido em uma simples linha contínua em espiral partindo de uma base sólida. O recurso só deve ser habilitado quando cada camada horizontal contiver somente um contorno." + +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Temperatura de Espera" + +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "G-Code Inicial" + +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "Ponto de partida de cada caminho em uma camada. Quando caminhos em camadas consecutivas iniciam no mesmo ponto (X,Y), uma 'costura' vertical pode ser vista na impressão. Quando se alinha esta costura a uma coordenada especificada pelo usuário, a costura é mais fácil de remover pós-impressão. Quando colocada aleatoriamente as bolhinhas do início dos caminhos será menos perceptível. Quando se toma o menor caminho, a impressão será mais rápida." + +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Passos por Milímetro (E)" + +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Passos por Milímetro (X)" + +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Passos por Milímetro (Y)" + +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Passos por Milímetro (Z)" + +msgctxt "support description" +msgid "Support" +msgstr "Suporte" + +msgctxt "support label" +msgid "Support" +msgstr "Suporte" + +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Aceleração do Suporte" + +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Distância Inferior do Suporte" + +#, fuzzy +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "Contagem de Linhas de Parede de Suporte" + +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Número de Filetes do Brim de Suporte" + +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Largura do Brim de Suporte" + +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Contagem de Linhas de Pedaço de Suporte" + +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Tamanho do Pedaço de Suporte" + +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "Densidade do Suporte" + +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Prioridade das Distâncias de Suporte" + +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Extrusor do Suporte" + +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Aceleração da Base do Suporte" + +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Densidade da Base do Suporte" + +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Extrusor da Base do Suporte" + +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Fluxo da Base de Suporte" + +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Expansão Horizontal da Base do Suporte" + +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Jerk da Base do Suporte" + +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Direções de Filete da Base do Suporte" + +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Distância de Filetes da Base de Suporte" + +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Largura de Extrusão da Base do Suporte" + +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Padrão de Base de Suporte" + +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Velocidade de Base do Suporte" + +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Espessura da Base de Suporte" + +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Fluxo de Suporte" + +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Expansão Horizontal do Suporte" + +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Aceleração do Preenchimento do Suporte" + +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Extrusor do Preenchimento do Suporte" + +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Jerk de Preenchimento de Suporte" + +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Espessura de Camada do Preenchimento de Suporte" + +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Direção de Filete do Preenchimento de Suporte" + +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Velocidade do Preenchimento do Suporte" + +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Aceleração da Interface de Suporte" + +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Densidade da Interface de Suporte" + +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Extrusor da Interface de Suporte" + +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Fluxo de Interface de Suporte" + +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Expansão Horizontal da Interface de Suporte" + +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Jerk da Interface de Suporte" + +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Direções do Filete de Interface de Suporte" + +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Largura de Extrusão da Interface do Suporte" + +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Padrão da Interface de Suporte" + +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "Prioridade de Interface de Suporte" + +msgctxt "support_interface_skip_height label" +msgid "Support Interface Resolution" +msgstr "Resolução da Interface de Suporte" + +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Velocidade da Interface de Suporte" + +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Espessura da Interface de Suporte" + +#, fuzzy +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Contagem de Linhas de Parede de Suporte" + +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Jerk do Suporte" + +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "Distância de União do Suporte" + +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "Distância das Linhas do Suporte" + +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Largura de Extrusão do Suporte" + +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Malha de Suporte" + +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Ângulo para Caracterizar Seções Pendentes" + +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Padrão do Suporte" + +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Colocação dos Suportes" + +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Aceleração do Teto de Suporte" + +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Densidade do Teto de Suporte" + +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Extrusor do Teto do Suporte" + +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Fluxo do Teto de Suporte" + +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Expansão Horizontal do Teto de Suporte" + +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Jerk do Teto de Suporte" + +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Direções de Filete do Teto do Suporte" + +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Distância de Filetes do Teto de Suporte" + +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Largura de Extrusão do Teto do Suporte" + +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Padrão de Teto de Suporte" + +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Velocidade do Teto de Suporte" + +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "Espessura do Topo do Suporte" + +#, fuzzy +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Contagem de Linhas de Parede de Suporte" + +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Velocidade do Suporte" + +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "Altura do Passo de Suporte em Escada" + +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "Largura Máxima do Passo de Suporte em Escada" + +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "Ângulo Mínimo de Inclinação do Passo de Suporte em Escada" + +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Estrutura de Suporte" + +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Distância Superior do Suporte" + +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Contagem de Linhas de Parede de Suporte" + +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "Distância X/Y do Suporte" + +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Distância em Z do Suporte" + +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "Filetes de suporte preferidos" + +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "Suporte preferido" + +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Velocidade de Ventoinha do Contorno Suportado" + +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Superfície" + +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Energia de Superfície" + +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Modo de Superficie" + +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "Tendência de aderência da superfície." + +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Energia de superfície." + +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "Troca a ordem de impressão do filete de brim mais interno e o segundo mais interno. Isto melhora a remoção do brim." + +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "Troca quais volumes sobrepondo malhas vão pertencer a cada camada, de modo que as malhas sobrepostas se tornem entrelaçadas. Desligar esta opção vai fazer com que uma das malhas obtenha todo o volume da sobreposiçào, removendo este volume das outras malhas." + +msgctxt "adaptive_layer_height_threshold description" +msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." +msgstr "Trata da distância horizontal entre duas camadas adjacentes. Reduzir este ajuste faz com que camadas mais finas sejam usadas para reunir as bordas das camadas mais perto uma da outra." + +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "A coordenada X da posição próxima de onde achar a parte com que começar a imprimir cada camada." + +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "A coordenada X da posição onde iniciar a impressão de cada parte em uma camada." + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "A coordenada X da posição onde o bico faz a purga no início da impressão." + +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "A coordenada Y da posição próxima de onde achar a parte com que começar a imprimir cada camada." + +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "A coordenada Y da posição onde iniciar a impressão de cada parte em uma camada." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "A coordenada Y da posição onde o bico faz a purga no início da impressão." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Coordenada Z da posição onde o bico faz a purga no início da impressão." + +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "Aceleração durante a impressão da camada inicial." + +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "Aceleração para a camada inicial." + +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Aceleração para percursos na camada inicial." + +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "A mudança instantânea máxima de velocidade em uma direção nos percursos da camada inicial." + +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "Aceleração com que se imprimem as paredes interiores." + +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "A aceleração com que o preenchimento é impresso." + +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "A aceleração com que o recurso de passar a ferro é feito." + +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "Aceleração com que se realiza a impressão." + +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "A aceleração com que as camadas de base do raft são impressas." + +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "A aceleração com que as bases do suporte são impressas. Imprimi-las em aceleração menor pode melhorar aderência dos suportes no topo da superfície." + +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "Aceleração com que se imprime o preenchimento dos suportes." + +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "A aceleração com que a camada intermediária do raft é impressa." + +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "Aceleração com que se imprime a parede exterior." + +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "Aceleração com que a torre de purga é impressa." + +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "A aceleração com que o raft é impresso." + +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "A aceleração com que os tetos e bases de suporte são impressos. Imprimi-los em aceleração menor pode melhorar a qualidade das seções pendentes." + +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "A aceleração com que os tetos de suporte são impressos. Imprimi-los em aceleração menor pode melhorar a qualidade das seções pendentes." + +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "Aceleração com a qual o skirt e o brim são impressos. Normalmente isto é feito com a aceleração de camada inicial, mas às vezes você pode querer imprimir o skirt ou brim em uma aceleração diferente." + +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "Aceleração com que as estruturas de suporte são impressas." + +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "A aceleração com que as camadas superiores do raft são impressas." + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "A aceleração com que as paredes internas da superfície superior são impressas." + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "A aceleração com que as paredes externas da superfície superior são impressas." + +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "Aceleração com que se imprimem as paredes." + +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "A aceleração com a qual as camadas da superfície superior são impressas." + +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "Aceleração com que as camadas superiores e inferiores são impressas." + +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "Aceleração com que se realizam os percursos." + +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "A quantidade de material, relativa ao filete normal de extrusão, para extrudar durante a passagem a ferro. Manter o bico com algum material ajuda a preencher algumas das lacunas e fendas da superfície superior, mas material demais resulta em superextrusão e verrugas nas laterais da superfície." + +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "A quantidade de sobreposição entre o preenchimento e as paredes como uma porcentagem da largura de extrusão de preenchimento. Uma leve sobreposição permite que as paredes se conectem firmemente ao preenchimento." + +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "A quantidade de sobreposição entre o preenchimento e as paredes. Uma leve sobreposição permite que as paredes se conectem firmemente ao preenchimento." + +msgctxt "switch_extruder_retraction_amount description" +msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." +msgstr "A quantidade de retração ao mudar extrusores. Coloque em 0 para não haver retração. Isto deve geralmente ser o mesmo que o comprimento da zona de aquecimento do hotend." + +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "Ângulo entre o plano horizontal e a parte cônica logo acima da ponta do bico." + +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "Ângulo do Teto (parte superior) de uma torre. Um valor maior resulta em tetos pontiagudos, um valor menor resulta em tetos achatados." + +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "O ângulo de seção pendente das paredes externas criadas para o molde. 0° fará a superfície externa do molde vertical, enquanto 90° fará a superfície externa do molde seguir o contorno do modelo." + +msgctxt "support_tree_branch_diameter_angle description" +msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." +msgstr "O ângulo do diâmetro dos galhos enquanto se tornam gradualmente mais grossos na direção da base. Um ângulo de 0 fará com que os galhos tenham grossura uniforme no seu comrpimento. Um ângulo levemente maior que zero pode aumentar a estabilidade do suporte em árvore." + +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "O ângulo da inclinação do suporte cônico. Como 0 graus sendo vertical e 90 graus sendo horizontal. Ângulos menores farão o suporte ser mais firme, mas gastarão mais material. Ângulos negativos farão a base do suporte mais larga que o topo." + +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "A densidade média dos pontos introduzidos em cada polígono de uma camada. Note que os pontos originais do polígono são descartados, portanto uma densidade baixa resulta da redução de resolução." + +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "A distância média entre os pontos aleatórios introduzidos em cada segmento de linha. Note que os pontos originais do polígono são descartados, portanto umo alto alisamento resulta em redução da resolução. Este valor deve ser maior que a metade da Espessura do Contorno Felpudo." + +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "A aceleração default a ser usada nos eixos para o movimento da cabeça de impressão." + +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "A temperatura default usada para a impressão. Esta deve ser a temperatura \"base\" de um material. Todas as outras temperaturas de impressão devem usar diferenças baseadas neste valor" + +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "A temperatura default usada para a plataforma aquecida de impressão. Este valor deve ser a temperatura \"base\" da plataforma. Todas as outras temperaturas de impressão devem usar diferenças baseadas neste valor" + +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "A densidade da camada de contorno de ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno." + +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "A densidade das bases da estrutura de suporte. Um valor maior resulta em melhor aderência do suporte no topo da superfície." + +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "A densidade dos tetos da estrutura de suporte. Um valor maior resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." + +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "A densidade da segunda camada de contorno da ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno." + +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "A densidade da terceira camada de contorno da ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno." + +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "A profundidade (direção Y) da área imprimível." + +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "O diâmetro da torre especial." + +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "O diâmetro dos galhos mais finos do suporte em árvore. Galhos mais grossos são mais resistentes. Galhos na direção da base serão mais grossos que essa medida." + +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "O diâmetro do topo da ponta dos galhos de suporte em árvore." + +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "O diâmetro da engrenagem que traciona o material no alimentador." + +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "O diâmetro dos galhos mais espessos do suporte em árvore. Um tronco mais espesso é mais robusto; um tronco mais fino ocupa menos espaço na plataforma de impressão." + +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "A diferença em tamanho da próxima camada comparada à anterior." + +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "A distância entre as trajetórias de passagem a ferro." + +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "A distância entre o bico e as partes já impressas quando evitadas durante o percurso." + +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "A distância entre as linhas do raft para a camada de base do raft. Um espaçamento esparso permite a remoção fácil do raft da mesa." + +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "A distância entre as linhas do raft para a camada intermediária. O espaçamento do meio deve ser grande, ao mesmo tempo que deve ser denso o suficiente para suportar as camadas superiores." + +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "Distância entre as linhas do raft para as camadas superiores. O espaçamento deve ser igual à largura de linha, de modo que a superfície seja sólida." + +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "A distância entre os filetes do raft para a camada única de raft de torre de purga. Espaçamento alto permite remoção fácil do raft da plataforma de impressão." + +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "A distância da fronteira entre os modelos para gerar a estrutura de interligação, medida em células. Poucas células resultam em baixa aderência." + +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "A distância do modelo à linha mais externa do brim. Um brim mais largo aumenta a aderência à mesa, mas também reduz a área efetiva de impressão." + +#, fuzzy +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "Distância da ponta do bico onde 'estacionar' o filamento quando seu extrusor não estiver sendo usado." + +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "Distância da ponta do bico, em que calor do bico é transferido para o filamento." + +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "A distância com que os contornos inferiores são expandidos para dentro do preenchimento. Valores mais altos fazem o contorno se anexar melhor ao padrão de preenchimento e fazem as paredes da camada abaixo aderirem melhor ao contorno. Valores mais baixos economizam a quantidade de material usado." + +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "A distância em que os contornos são expandidos pra dentro do preenchimento. Valores mais altos fazem o contorno aderir melhor ao padrão de preenchimento e faz as paredes de camadas vizinhas aderirem melhor ao contorno. Valores menores diminuem a quantidade de material usado." + +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "A distância com que os contornos superiores são expandidos para dentro do preenchimento. Valores mais altos fazem o contorno se anexar melhor ao padrão de preenchimento e fazem as paredes da camada acima aderirem melhor ao contorno. Valores mais baixos economizam a quantidade de material usado." + +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "A distância com que mover a cabeça pra frente e pra trás durante a varredura." + +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "As pontas dos filetes de preenchimento são encurtadas para poupar material. Este ajuste é o ângulo da seção pendente das pontas desses filetes." + +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "Velocidade adicional pela qual o bico resfria enquanto extruda. O mesmo valor é uso para denotar a velocidade de aquecimento quando se esquenta ao extrudar." + +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "O extrusor a usar para imprimir a primeira camada de preenchimento de suporte. Isto é utilizado em multi-extrusão." + +msgctxt "raft_base_extruder_nr description" +msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." +msgstr "O carro extrusor a ser usado para imprimir a primeira camada do Raft. Isto é usado em multi-extrusão." + +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "O extrusor a usar para imprimir as bases dos suportes. Isto é utilizado em multi-extrusão." + +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "O extrusor a usar para imprimir o preenchimento do suporte. Isto é utilizado em multi-extrusão." + +msgctxt "raft_interface_extruder_nr description" +msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." +msgstr "O carro extrusor a ser usado para imprimir a camada central do raft. Isto é usado em multi-extrusão." + +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "O extrusor a usar para imprimir os tetos e bases dos suportes. Isto é utilizado em multi-extrusão." + +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "O extrusor a usar para imprimir o teto do suporte. Isto é utilizado em multi-extrusão." + +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "O carro extrusor a ser usado para imprimir o skirt ou brim. Isto é usado em multi-extrusão." + +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "O extrusor usado ara imprimir skirt, brim ou raft. Usado em multi-extrusão." + +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "O extrusor a usar para imprimir os suportes. Isto é utilizado em multi-extrusão." + +msgctxt "raft_surface_extruder_nr description" +msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." +msgstr "O carro extrusor a ser usado para imprimir a(s) camada(s) central(is) do raft. Isto é usado em multi-extrusão." + +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "O carro extrusor usado para imprimir preenchimento. Este ajuste é usado em multi-extrusão." + +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "O carro extrusor usado para imprimir as paredes internas. Este ajuste é usado em multi-extrusão." + +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "O carro extrusor usado para imprimir a parede externa. Este ajuste é usado em multi-extrusão." + +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "O carro extrusor usado para imprimir as paredes superiores e inferiores. Este ajuste é usado na multi-extrusão." + +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "O carro extrusor usado para imprimir a parte superior da peça. Este ajuste é usado em multi-extrusão." + +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "O carro extrusor usado para imprimir paredes. Este ajuste é usado em multi-extrusão." + +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "A velocidade de ventoinha para a camada base do raft." + +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "A velocidade de ventoina para a camada intermediária do raft." + +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "A velocidade da ventoinha para a impressão do raft." + +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "A velocidade da ventoinha para as camadas superiores do raft." + +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "A localização do arquivo de imagem onde os valores de brilho determinam a densidade mínima no local correspondente do preenchimento da impressão." + +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "A localização do arquivo de imagem onde os valores de brilho determinam a densidade mínima no local correspondente do suporte." + +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "As poucas primeiras camadas são impressas mais devagar que o resto do modelo, para conseguir melhor aderência à mesa e melhorar a taxa de sucesso geral das impressão. A velocidade é gradualmente aumentada entre estas camadas." + +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "O vão entre a camada final do raft e a primeira camada do modelo. Somente a primeira camada é elevada por esta distância para enfraquecer a conexão entre o raft e o modelo, tornando mais fácil a remoção do raft." + +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "A altura (direção Z) do volume imprimível." + +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "A altura acima das partes horizontais do modelo onde criar o molde." + +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "A altura em que as ventoinhas girarão na velocidade regular. Nas camadas abaixo a velocidade da ventoinha gradualmente aumenta da velocidade inicial para a velocidade regular." + +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "Diferença de altura entre a ponta do bico e o sistema de eixos X ou X e Y (onde o extrusor desliza)." + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "Diferença de altura entre a ponta do bico e a parte mais baixa da cabeça de impressão." + +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "A diferença de altura ao executar um Salto Z após trocar extrusores." + +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Diferença de altura ao realizar um Salto Z." + +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "A diferença de altura ao executar um Salto Z." + +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "A altura das camadas em mm. Valores mais altos produzem impressões mais rápidas em resoluções baixas, valores mais baixos produzem impressão mais lentas em resolução mais alta. Recomenda-se não deixar a altura de camada maior que 80% do diâmetro do bico." + +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "A altura do preenchimento de uma dada densidade antes de trocar para a metade desta densidade." + +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "A altura do preenchimento de suporte de dada densidade antes de trocar para metade desta densidade." + +msgctxt "interlocking_beam_layer_count description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "A altura das vigas da estrutura de interligação, medida em número de camadas. Menos camadas são mais fortes, mas mais susceptíveis a defeitos." + +msgctxt "interlocking_orientation description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "A altura das vigas da estrutura de interligação, medidas em número de camadas. Menos camadas são mais fortes, mas mais susceptíveis a defeitos." + +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "A altura da camada inicial em mm. Uma camada inicial mais espessa faz a aderência à mesa de impressão ser maior." + +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "A altura da base da torre de purga. Aumentar este valor resultará em uma torre de purga mais firme porque a base se tornará mais larga. Se o ajuste for muito baixo, a torre de purga não terá uma base firme." + +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "A altura dos degraus da base estilo escada do suporte em cima do modelo. Um valor baixo faz o suporte mais difícil de remover, mas valores muito altos podem levar a estruturas de suporte instáveis. Deixe em zero para desligar o comportamento de escada." + +msgctxt "brim_gap description" +msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." +msgstr "A distância horizontal entre o primeiro filete de brim e o contorno da primeira camada da impressão. Um pequeno vão pode fazer o brim mais fácil de remover sem deixar de prover os benefícios térmicos." + +msgctxt "skirt_gap description" +msgid "" +"The horizontal distance between the skirt and the first layer of the print.\n" +"This is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "" +"A distância horizontal entre o skirt a primeira camada da impressão.\n" +"Esta é a distância mínima. Linhas múltiplas de skirt estenderão além desta distância." + +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "Os filetes de preenchimentos são retificados para poupar tempo de impressão. Este é o ângulo máximo de seção pendente permito através do comprimento do filete de preenchimento." + +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "O padrão de preenchimento é movido por esta distância no eixo X." + +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "O padrão de preenchimento é movido por esta distância no eixo Y." + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "O diâmetro interior do bico (o orifício). Altere este ajuste quanto estiver usando um tamanho de bico fora do padrão." + +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "O jerk com o qual a camada de base do raft é impressa." + +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "O jerk com o qual a camada intermediária do raft é impressa." + +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "O jerk com o qual o raft é impresso." + +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "O jerk com o qual as camadas superiores do raft são impressas." + +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "A maior largura das áreas de contorno inferiores que serão removidas. Cada área de contorno menor que este valor desaparecerá. Isto pode ajudar em limitar a quantidade de tempo e material gastos em impressão de contornos inferiores em superfícies inclinadas do modelo." + +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "A maior largura das áreas de contorno que serão removidas. Cada área de contorno menor que este valor desaparecerá. Isto pode ajudar em limitar a quantidade de tempo e material gastos em impressão de contornos inferiores e superiores em superfícies inclinadas do modelo." + +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "A maior largura das áreas de contorno superiores que serão removidas. Cada área de contorno menor que este valor desaparecerá. Isto pode ajudar em limitar a quantidade de tempo e material gastos em impressão de contornos superiores em superfícies inclinadas do modelo." + +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "A camada em que as ventoinhas girarão na velocidade regular. Se a 'velocidade regular na altura' estiver ajustada, este valor é calculado e arredondado para um número inteiro." + +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "O tempo de camada que define o limite entre a velocidade regular da ventoinha e a máxima. Camadas cuja impressão é mais lenta que este tempo usarão a velocidade regular. Camadas mais rápidas gradualmente aumentarão até a velocidade máxima de ventoinha." + +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "O comprimento de filamento retornado durante uma retração." + +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "O fator de magnitude usado para a inclinação da base da torre de purga. Se você aumentar este valor, a base se tornará mais fina. Se você diminuí-lo, ela se tornará mais grossa." + +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "O material da plataforma de impressão presente na impressora." + +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "A variação de altura máxima permitida para a camada de base." + +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "O ângulo de separação máximo que partes da cobertura de escorrimento terão. Com 0 graus sendo na vertical e 90 graus sendo horizontal. Um ângulo menor leva a coberturas de escorrimento falhando menos, mas mais gasto de material." + +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "O ângulo máximo de seçọes pendentes depois de se tornarem imprimíveis. Com o valor de 0° todas as seções pendentes serão trocadas por uma parte do modelo conectada à mesa e 90° não mudará o modelo." + +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "O ângulo máximo dos galhos quando eles crescem em volta do modelo. Use um ângulo menor para torná-los mais verticais e estáveis. Use um ângulo maior para poder ter maior alcance." + +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "A área máxima de um furo na base do modelo antes que seja removido por \"Torna Seções Pendentes Imprimíveis\". Furos com área menor que esta serão retidos. O valor de 0 mm² preenche todos os furos na base do modelo." + +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "O desvio máximo permitido ao reduzir a resolução para o ajuste de Máxima Resolução. Se você aumentar isto, a impressão será menos precisa, mas o G-Code será menor. O Desvio Máximo é um limite para Resolução Máxima, portanto se os dois conflitarem o Desvio Máximo sempre será o valor dominante." + +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "A distância máxima entre as estruturas de suporte nas direções X/Y. Quando estruturas separadas estão mais próximas que este valor, elas são fundidas em uma só." + +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "A distância máxima em mm para mover o filamento para compensar mudanças na taxa de fluxo." + +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "O desvio máximo da área de extrusão permitido ao remover pontos intermediários de uma linha reta. Um ponto intermediário pode servir como ponto de mudança de largura em uma longa linha reta. Portanto, se ele for removido, fará com que a linha tenha uma largura uniforme e, como resultado, perderá (ou ganhará) um pouco de área de extrusão. Se você aumentar o valor, você poderá perceber uma sutil sobre-extrusão ou sub-extrusão no meio de paredes retas paralelas, já que mais pontos intermediários com espessura variante poderão ser removidos. Sua impressão será menos acurada, mas o G-Code será menor." + +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "A mudança instantânea máxima de velocidade em uma direção durante a impressão da camada inicial." + +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "A mudança instantânea máxima de velocidade em uma direção da cabeça de impressão." + +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que o recurso de passar a ferro é feito." + +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que as paredes internas são impressas." + +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "A mudança instantânea máxima de velocidade em uma direção com que o preenchimento é impresso." + +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "A máxima mudança de velocidade instantânea com que as bases dos suportes são impressas." + +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que o preenchimento do suporte é impresso." + +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que a parede externa é impressa." + +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "A mudança instantânea máxima de velocidade em uma direção com que a torre de purga é impressa." + +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "A máxima mudança de velocidade instantânea com a qual os tetos e bases dos suportes são impressos." + +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "A máxima mudança de velocidade instantânea com que os tetos dos suportes são impressos." + +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "A mudança instantânea máxima de velocidade em uma direção com que o skirt (saia) e brim (bainha) são impressos." + +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que as estruturas de suporte são impressas." + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "A mudança máxima de velocidade instantânea com que as paredes internas da superfície superior são impressas." + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "A mudança máxima de velocidade instantânea com que as paredes mais externas da superfície superior são impressas." + +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que as paredes são impressas." + +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que as camadas da superfície superior são impressas." + +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que as camadas superiores e inferiores são impressas." + +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "A mudança instantânea máxima de velocidade em uma direção com que os percursos são feitos." + +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "A velocidade máxima para o motor da impressora na direção X." + +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "A velocidade máxima para o motor da impressora na direção Y." + +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "A velocidade máxima para o motor da impressora na direção Z." + +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "A velocidade máxima de entrada de filamento no hotend." + +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "A largura máxima dos passos da base estilo escada do suporte em cima do modelo. Um valor baixo faz o suporte mais difícil de remover, mas valores muito altos podem levar a estruturas de suporte instáveis." + +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "A distância mínima entre o exterior do molde e o exterior do modelo." + +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "Velocidade mínima de entrada de filamento no hotend." + +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "A temperatura mínima enquanto se esquenta até a Temperatura de Impressão na qual a impressão pode já ser iniciada." + +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "Tempo mínimo em que um extrusor precisará estar inativo antes que o bico seja resfriado. Somente quando o extrusor não for usado por um tempo maior que esse, lhe será permitido resfriar até a temperatura de espera." + +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "O ângulo mínimo de seções pendentes internas para as quais o preenchimento é adicionado. Em um valor de 0°, objetos são completamente preenchidos no padrão escolhido, e 90° torna o volume oco, sem preenchimento." + +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "O ângulo mínimo de seções pendentes para os quais o suporte é criado. Com o valor de 0° todas as seções pendentes serão suportadas, e 90° não criará nenhum suporte." + +msgctxt "retraction_min_travel description" +msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." +msgstr "A distância mínima de percurso necessária para que uma retração aconteça. Isto ajuda a ter menos retrações em uma área pequena." + +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "O comprimento mínimo do skirt ou brim. Se este comprimento não for cumprido por todas as linhas do skirt ou brim juntas, mais linhas serão adicionadas até que o mínimo comprimento seja alcançado. Se a contagem de linhas estiver em 0, isto é ignorado." + +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "A mínima largura de extrusão para paredes multifiletes de preenchimento de vão de filete central. Este ajuste determina em que espessura de modelo nós alternamos de imprimir dois filetes de parede para imprimir duas paredes externas e uma parede central no meio. Uma Largura de Extrusão de Parede Ímpar Mínima mais alta leva a uma largura máxima de extrusão de parede par mais alta. A largura máxima de extrusão de parede ímpar é calculada como 2 * Largura Mínima de Extrusão de Parede Par." + +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "A mínima largura de filete para paredes poligonais normais. Este ajuste determina em que espessura do modelo nós alternamos da impressão de um file de parede fina único para a impressão de dois filetes de parede. Uma Largura Mínima de Filete de Parede Par mais alta leva a uma largura máxima de filete de parede ímpar também mais alta. A largura máxima de filete de parede par é calculada como a Largura de Filete da Parede Externa + 0.5 * Largura Mínima de Filete de Parede Ímpar." + +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "A velocidade mínima de impressão, mesmo que se tente desacelerar para obedecer ao tempo mínimo de camada. Quando a impressora desacelera demais, a pressão no bico pode ficar muito baixa, o que resulta em baixa qualidade de impressão." + +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "O tamanho mínimo de um segmento de linha após o fatiamento. Se você aumentar este valor, a malha terá uma resolução menor. Isto pode permitir que a impressora mantenha a velocidade que precisa para processar o G-Code e aumentará a velocidade de fatiamento ao remover detalhes da malha que não poderia processar de qualquer jeito." + +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "O tamanho mínimo de um segmento de linha de percurso após o fatiamento. Se o valor aumenta, os movimentos de percurso terão cantos menos suaves. Isto pode permitir que a impressora mantenha a velocidade necessária para processar o G-Code, mas pode fazer com que evitar topar no modelo fique menos preciso." + +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "A mínima inclinação da área para que o suporte em escada tenha efeito. Valores baixos devem tornar o suporte mais fácil de remover em inclinações rasas, mas muitos baixos resultarão em resultados bastante contra-intuitivos em outras partes do modelo." + +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "O tempo mínimo empregado em uma camada. Isto força a impressora a desacelerar para no mínimo usar o tempo ajustado aqui em uma camada. Isto permite que o material impresso resfrie apropriadamente antes de passar para a próxima camada. As camadas podem ainda assim levar menos tempo que o tempo mínimo de camada se Levantar Cabeça estiver desabilitado e se a Velocidade Mínima fosse violada com a lentidão." + +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "O volume mínimo para cada camada da torre de purga de forma a purgar material suficiente." + +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "O máximo que o diâmetro de um galho que tem que se conectar ao modelo pode aumentar ao mesclar-se com galhos que podem alcançar a plataforma de impressão. Aumentar este valor reduz tempo de impressão, mas aumenta a área de suporte que se apoia no modelo" + +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "Nome do seu modelo de impressora 3D." + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "O identificador do bico para o carro extrusor, tais como \"AA 0.4\" ou \"BB 0.8\"." + +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "O bico evita partes já impressas quando está em uma percurso. Esta opção está disponível somente quando combing (penteamento) está habilitado." + +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "O bico evita suportes já impressos durante o percurso. Esta opção só está disponível quando combing estiver habilitado." + +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "O número de camadas inferiores. Quando calculado da espessura inferior, este valor é arredondado para um inteiro." + +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "O número de contornos a serem impressos em volta do padrão linear na camada base do raft." + +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "O número de camadas de preenchimento que suportam arestas de contorno." + +msgctxt "initial_bottom_layers description" +msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "O número de camadas inferiores iniciais da plataforma de impressão pra cima. Quanto calculado a partir da espessura inferior, esse valor é arrendado para um número inteiro." + +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "O número de camadas entre a base e a superfície do raft. Isso corresponde à espessura principal do raft. Aumentar este valor cria um raft mais espesso e resistente." + +msgctxt "brim_line_count description" +msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." +msgstr "O número de linhas usada para o brim. Mais linhas de brim melhoram a aderência à mesa, mas também reduzem a área efetiva de impressão." + +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "O número de filetes usado para o brim de suporte. Mais filetes melhoram a aderência na mesa de impressão, ao custo de material extra." + +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "O número de camadas superiores acima da segunda camada do raft. Estas são camadas completamente preenchidas em que o modelo se assenta. 2 camadas resultam em uma superfície superior mais lisa que apenas uma." + +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "O número de camadas superiores. Quando calculado da espessura superior, este valor é arredondado para um inteiro." + +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "O número de camadas da superfície superior. Geralmente somente uma camada é suficiente para gerar superfícies de alta qualidade." + +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." + +#, fuzzy +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." + +#, fuzzy +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." + +#, fuzzy +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." + +msgctxt "wall_distribution_count description" +msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." +msgstr "O número de paredes, contadas a partir do centro, sobre as quais a variação será distribuída. Valores menores significam que as paredes mais externas não mudam de comprimento." + +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "Número de filetes da parede. Quando calculado pela espessura de parede, este valor é arredondado para um inteiro." + +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "Diâmetro exterior do bico (a ponta do hotend)." + +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague trocam de direção em camadas alternadas, reduzindo custo de material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são completamente impressos a cada camada. Os preenchimentos giroide, cúbico, quarto cúbico e octeto mudam a cada camada para prover uma distribuição de força mais uniforme em cada direção. O preenchimento de relâmpago tenta minimizar material somente suportando o teto do objeto." + +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "O padrão (estampa) das estruturas de suporte da impressão. As diferentes opções disponíveis resultam em suportes mais resistentes ou mais fáceis de remover." + +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "O padrão das camadas superiores." + +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Padrão ou Estampa das camadas superiores e inferiores." + +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "O padrão na base da impressão na primeira camada." + +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "O padrão a usar quando se passa a ferro as superfícies superiores." + +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "O padrão com o qual as bases do suporte são impressas." + +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "Padrão (estampa) com a qual a interface do suporte para o modelo é impressa." + +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "O padrão com o qual o teto do suporte é impresso." + +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "A posição perto da qual se inicia a impressão de cada parte em uma camada." + +msgctxt "support_tree_angle_slow description" +msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." +msgstr "O ângulo preferido para os galhos, quando eles não têm que evitar o modelo. Use um ângulo menor para torná-los mais verticais e estáveis. Use um ângulo maior para que os galhos se mesclem mais rapidamente." + +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "O posicionamento preferido das estruturas de suporte.Se as estruturas não puderem ser colocadas na localização escolhida, serão colocadas em outro lugar, mesmo que seja no modelo." + +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "A mudança instantânea máxima de velocidade em uma direção para a camada inicial." + +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "A forma da mesa de impressão sem levar área não-imprimíveis em consideração." + +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "A forma da cabeça de impressão. Essas são coordenadas relativas à posição da cabeça de impressão, que é geralmente a posição do seu primeiro extrusor. As dimensões à esquerda e na frente da cabeça devem ser coordenadas negativas." + +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "O tamanho dos bolso em cruzamentos quádruplos no padrão cruzado 3D em alturas onde o padrão esteja se tocando." + +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "O menor volume que um caminho de extrusão deve apresentar antes que lhe seja permitido desengrenar. Para caminhos de extrusão menores, menos pressão é criada dentro do hotend e o volume de desengrenagem é redimensionado linearmente. Este valor deve sempre ser maior que o Volume de Desengrenagem." + +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "Velocidade (°C/s) pela qual o bico resfria tirada pela média na janela de temperaturas normais de impressão e temperatura de espera." + +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "Velocidade (°C/s) pela qual o bico aquece tirada pela média na janela de temperaturas normais de impressão e temperatura de espera." + +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "A velocidade em que todas as paredes interiores são impressas. Imprimir a parede interior mais rapidamente que a parede externa reduzirá o tempo de impressão. Funciona bem ajustar este valor a meio caminho entre a velocidade da parede mais externa e a velocidade de preenchimento." + +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "A velocidade com a qual regiões de contorno de ponte são impressas." + +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "Velocidade em que se imprime o preenchimento." + +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "Velocidade em que se realiza a impressão." + +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "A velocidade em que a camada de base do raft é impressa. Deve ser impressa lentamente, já que o volume do material saindo do bico será bem alto." + +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "A velocidade com a qual as paredes de ponte são impressas." + +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "A velocidade em que as ventoinhas giram no início da impressão. Em camadas subsequentes a velocidade da ventoinha é gradualmente aumentada até a camada correspondente ao ajuste 'Velocidade Regular da Ventoinha na Altura'." + +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "Velocidade em que as ventoinhas giram antes de dispararem o limite. Quando uma camada imprime mais rapidamente que o limite de tempo, a velocidade de ventoinha aumenta gradualmente até a velocidade máxima." + +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "Velocidade em que as ventoinhas giram no tempo mínimo de camada. A velocidade da ventoinha gradualmente aumenta da regular até a máxima quando o limite é atingido." + +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "A velocidade com a qual o filamento é avançado durante o movimento de retração." + +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "A velocidade com que o filamento é purgado durante um movimento de retração de limpeza." + +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "A velocidade em que o filamento é empurrado para a frente depois de uma retração de troca de bico." + +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "A velocidade com a qual o filamento é recolhido e avançado durante o movimento de retração." + +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "A velocidade com que o filamento é retraído e purgado durante um movimento de retração de limpeza." + +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "A velocidade em que o filamento é retraído durante uma retração de troca de bico." + +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "A velocidade com a qual o filamento é recolhido durante o movimento de retração." + +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "A velocidade com que o filamento é retraído durante um movimento de retração de limpeza." + +msgctxt "switch_extruder_retraction_speeds description" +msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." +msgstr "A velocidade em que o filamento é retraído. Uma velocidade de retração mais alta funciona melhor, mas uma velocidade muito alta pode levar a desgaste do filamento." + +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "A velocidade em que a base do suporte é impressa. Imprimi-la em velocidade mais baixa pode melhorar a aderência do suporte no topo da superfície." + +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "A velocidade em que o preenchimento do suporte é impresso. Imprimir o preenchimento em velocidades menores melhora a estabilidade." + +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "A velocidade em que a camada intermediária do raft é impressa. Esta deve ser impressa devagar, já que o volume de material saindo do bico é bem alto." + +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "A velocidade em que as paredes mais externas são impressas. Imprimir a parede mais externa a uma velocidade menor melhora a qualidade final do contorno. No entanto, ter uma diferença muito grande entre a velocidade da parede interna e a velocidade da parede externa afetará a qualidade de forma negativa." + +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "A velocidade em que a torre de purga é impressa. Imprimir a torre de purga mais lentamente pode torná-la mais estável quando a aderência entre os diferentes filamentos é subótima." + +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "A velocidade em que as ventoinhas giram." + +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "A velocidade em que o raft é impresso." + +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "A velocidade com que os tetos e bases do suporte são impressos. Imprimi-los em velocidades mais baixas pode melhorar a qualidade de seções pendentes." + +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "A velocidade em que os tetos dos suportes são impressos. Imprimi-los em velocidade mais baixas pode melhorar a qualidade de seções pendentes." + +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "Velocidade em que o Brim (Bainha) e Skirt (Saia) são impressos. Normalmente isto é feito na velocidade de camada inicial, mas você pode querer imprimi-los em velocidade diferente." + +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "A velocidade em que a estrutura de suporte é impressa. Imprimir o suporte a velocidades mais altas pode reduzir bastante o tempo de impressão. A qualidade de superfície das estruturas de suporte não é importante já que são removidas após a impressão." + +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "A velocidade em que as camadas superiores do raft são impressas. Elas devem ser impressas um pouco mais devagar, de modo que o bico possa lentamente alisar as linhas de superfície adjacentes." + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "A velocidade com que as paredes internas da superfície superior são impressas." + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "A velocidade com que a parede mais externa da superfície superior é impressa." + +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "A velocidade em que o movimento Z vertical é feito para os saltos Z. Tipicamente mais baixa que a velocidade de impressão já que mover a mesa de impressão ou eixos da máquina é mais difícil." + +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "Velocidade em que se imprimem as paredes." + +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "A velocidade com a qual o ajuste de passar ferro é aplicado sobre a superfície superior." + +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "A velocidade com a qual retrair o filamento para que se destaque completamente." + +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "A velocidade com que as camadas superiores são impressas." + +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "Velocidade em que as camadas superiores e inferiores são impressas." + +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "Velocidade em que ocorrem os movimentos de percurso." + +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "A velocidade pela qual se mover durante a desengrenagem, relativa à velocidade do caminho de extrusão. Um valor ligeiramente menor que 100% é sugerido, já que durante a desengrenagem a pressão dentro do hotend cai." + +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "A velocidade para a camada inicial. Um valor menor é sugerido para melhorar aderência à mesa de impressão. Não afeta as estruturas de aderência à mesa de impressão como o brim e o raft." + +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "A velocidade de impressão para a camada inicial. Um valor menor é aconselhado para aprimorar a aderência à mesa de impressão." + +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "A velocidade dos percursos da camada inicial. Um valor mais baixo que o normal é aconselhado para prevenir o puxão de partes impressas da mesa de impressão. O valor deste ajuste pode ser automaticamente calculado do raio entre a Velocidade de Percurso e a Velocidade de Impressão." + +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "A temperatura em que o filamento é destacado completamente." + +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "A temperatura do ambiente em que imprimir. Se este valor for 0, a temperatura de volume de impressão não será ajustada." + +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "A temperatura do bico quando outro bico está sendo usado para a impressão." + +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "A temperatura para a qual se deve começar a esfriar pouco antes do fim da impressão." + +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer." +msgstr "A temperatura usada para imprimir a primeira camada." + +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "A temperatura usada para impressão." + +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "A temperatura usada para a plataforma aquecida de impressão na primeira camada. Se for 0, a plataforma de impressão não será aquecida durante a primeira camada." + +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "A temperatura usada para a plataforma aquecida de impressão. Se for 0, a plataforma de impressão não será aquecida." + +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "A temperatura usada para purgar material, deve ser grosso modo a temperatura de impressão mais alta possível." + +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "A espessura das camadas inferiores da impressão. Este valor dividido pela altura de camada define o número de camadas inferiores." + +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "A espessura do preenchimento extra que suporta arestas de contorno." + +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "A espessura da interface do suporte onde ele toca o modelo na base ou no topo." + +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "A espessura das bases de suporte. Isto controla o número de camadas densas que são impressas no topo dos pontos do modelo em que o suporte se assenta." + +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "A espessura do topo do suporte. Isto controla a quantidade de camadas densas no topo do suporte em que o modelo se assenta." + +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "A espessura das camadas superiores da impressão. Este valor dividido pela altura de camada define o número de camadas superiores." + +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "A espessura das camadas superiores e inferiores da impressão. Este valor dividido pela altura de camada define o número de camadas superiores e inferiores." + +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "A espessura das paredes na direção horizontal. Este valor dividido pela largura de extrusão da parede define o número de filetes da parede." + +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "A espessura por camada de material de preenchimento. Este valor deve sempre ser um múltiplo da altura de camada e se não for, é arredondado." + +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "A espessura por camada do material de preenchimento de suporte. Este valor deve sempre ser um múltiplo da altura de camada e é arredondado." + +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "O tipo de G-Code a ser gerado." + +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "Volume que seria escorrido. Este valor deve em geral estar perto do diâmetro do bico ao cubo." + +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "A largura (direção X) da área imprimível." + +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "A largura do brim a ser impresso sob o suporte. Um brim mais largo melhora a aderência à mesa de impressão, ao custo de material extra." + +#, fuzzy +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "A largura da torre de purga." + +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "A largura da base ou brim da torre de purga. Uma base maior melhora a aderência à mesa mas também reduz a área efetiva de impressão." + +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "A largura da torre de purga." + +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "A largura dentro da qual flutuar. É sugerido deixar este valor abaixo da largura da parede externa, já que as paredes internas não são alteradas pelo algoritmo." + +msgctxt "retraction_extrusion_window description" +msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." +msgstr "A janela em que a contagem de retrações máxima é válida. Este valor deve ser aproximadamente o mesmo que a distância de retração, de modo que efetivamente o número de vez que a retração passa pelo mesmo segmento de material é limitada." + +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "A coordenada X da posição da torre de purga." + +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "A coordenada Y da posição da torre de purga." + +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "Há malhas de suporte presentes na cena. Este ajuste é controlado pelo Cura." + +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "Este ajuste controla a distância que o extrusor deve parar de extrudar antes que a parede de ponte comece. Desengrenar antes da ponte iniciar pode reduzir a pressão no bico e produzir em uma ponte mais horizontal." + +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Este ajuste controla quanto os cantos internos do contorno do raft são arredondados. Esses cantos internos são convertidos em semicírculos com raio igual ao valor dado aqui. Este ajuste também remove furos no contorno do raft que forem menores que o círculo equivalente." + +msgctxt "retraction_count_max description" +msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." +msgstr "Este ajuste limita o número de retrações ocorrendo dentro da janela de distância de extrusão mínima. Retrações subsequentes dentro desta janela serão ignoradas. Isto previne repetidas retrações no mesmo pedaço de filamento, já que isso pode acabar ovalando e desgastando o filamento." + +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "Isto criará uma parede em volta do modelo que aprisiona ar quente da mesa e protege contra fluxo de ar do exterior. Especialmente útil para materiais que sofrem bastante warp e impressoras 3D que não são cobertas." + +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "Diâmetro da Ponta" + +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "Para compensar pelo encolhimento do material enquanto ele esfria, o modelo será ampliado por este fator na direção XY (horizontalmente)." + +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "Para compensar pelo encolhimento do material enquanto esfria, o modelo será ampliado por este fator na direção Z (verticalmente)." + +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "Para compensar o encolhimento do material enquanto esfria, o modelo será redimensionado por este fator." + +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Camadas Superiores" + +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Distância de Expansão do Contorno Superior" + +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Largura de Remoção do Contorno Superior" + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Aceleração da Parede Interna da Superfície Superior" + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Jerk da Parede Interna da Superfície Superior" + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Velocidade da Parede Interna da Superfície Superior" + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Fluxo das Paredes Internas da Superfície Superior" + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Aceleração da Parede Externa da Superfície Superior" + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Fluxo da Parede Externa da Superfície Superior" + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Jerk da Parede Externa da Superfície Superior" + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Velocidade da Parede Externa da Superfície Superior" + +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Aceleração da Superfície Superior" + +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Extrusor da Superfície Superior" + +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Fluxo do Contorno da Superfície Superior" + +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Jerk da Superfície Superior" + +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Camadas da Superfície Superior" + +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Direções dos Filetes da Superfície Superior" + +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Largura de extrusão da Superfície Superior" + +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Padrão da Superfície Superior" + +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Velocidade da Superfície Superior" + +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Espessura Superior" + +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "Superfícies superiores e/ou inferiores de seu objeto com um ângulo maior que este ajuste não terão seu contorno expandido. Isto permite evitar a expansão de áreas estreitas de contorno que são criadas quando a superfície do modelo tem uma inclinação quase vertical. Um ângulo de 0° é horizontal e não causará expansão no contorno, enquanto que um ângulo de 90° é vertical e causará expansão em todo o contorno." + +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Superior/Inferior" + +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Superior/Inferior" + +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Aceleração Superior/Inferior" + +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Extrusor Superior/Inferior" + +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Fluxo de Topo/Base" + +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Jerk Superior/Inferior" + +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Direções de Linha Superior/Inferior" + +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Largura de Extrusão Superior/Inferior" + +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Padrão Superior/Inferior" + +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Velocidade Superior/Inferior" + +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Espessura Superior/Inferior" + +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "Tocando a Mesa" + +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Diâmetro da Torre" + +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Ângulo do Teto da Torre" + +msgctxt "mesh_rotation_matrix description" +msgid "Transformation matrix to be applied to the model when loading it from file." +msgstr "Matriz de transformação a ser aplicada ao modelo após o carregamento do arquivo." + +msgctxt "travel label" +msgid "Travel" +msgstr "Percurso" + +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Aceleração de Percurso" + +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Distância de Desvio de Percurso" + +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Jerk de Percurso" + +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Velocidade de Percurso" + +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "Tratar o modelo como apenas superfície, um volume ou volumes com superfícies soltas. O modo de impressão normal somente imprime volumes fechados. O modo \"superfície\" imprime uma parede única traçando a superfície da malha sem nenhun preenchimento e sem paredes superiores ou inferiores. O modo \"ambos\" imprime volumes fechados como o modo normal e volumes abertos como superfícies." + +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Árvore" + +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Tri-Hexágono" + +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" + +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Triângulo" + +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" + +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" + +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" + +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "Diâmetro do Tronco" + +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Volumes de Sobreposição de Uniões" + +msgctxt "bridge_wall_min_length description" +msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." +msgstr "Paredes não-suportadas mais curtas que esta quantia serão impressas usando ajustes normais de paredes. Paredes mais longas serão impressas com os ajustes de parede de ponte." + +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Usar Camadas Adaptativas" + +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Usar Torres" + +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "Usar taxa de aceleração separada para movimentos de percurso. Se desabilitado, os movimentos de percurso usarão o valor de aceleração da linha impressa em seu destino." + +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "Usar taxa de jerk separada para movimentos de percurso. Se desabilitado, os movimentos de percurso usarão o valor de jerk da linha impressa em seu destino." + +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "Usar extrusão relativa ao invés de extrusão absoluta. Passos de extrusão relativos no G-Code tornam o pós-processamento mais fácil. No entanto, isso não é suportado por todas as impressoras e pode produzir pequenos desvios na quantidade de material depositado comparado a passos de extrusão absolutos. Independente deste ajuste, o modo de extrusão sempre será ajustado para absoluto antes que qualquer script G-Code seja processado." + +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "Usa torres especializadas como suporte de pequenas seções pendentes. Essas torres têm um diâmetro mais largo que a região que elas suportam. Perto da seção pendente, o diâmetro das torres aumenta, formando um 'teto'." + +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "Utilize esta malha para modificar o preenchimento de outras malhas com as quais ela se sobrepõe. Substitui regiões de preenchimento de outras malhas com regiões desta malha. É sugerido que se imprima com somente uma parede e sem paredes superiores e inferiores para esta malha." + +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "Use esta malha para especificar áreas obrigatoriamente suportadas. Isto será usado para gerar estruturas de suporte." + +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "Use esta malha para especificar onde nenhuma parte do modelo deverá ser detectada como seção Pendente e por conseguinte não elegível a receber suporte. Com esta malha sobreposta a um modelo, você poderá marcar onde ele não deverá receber suporte." + +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Especificado pelo Usuário" + +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Compensação de Fator de Encolhimento Vertical" + +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "Tolerância vertical das camadas fatiadas. Os contornos de uma camada são normalmente gerados se tomando seções cruzadas pelo meio de cada espessura de camada (Meio). Alternativamente, cada camada pode ter as áreas que caem fora do volume por toda a espessura da camada (Exclusivo) ou a camada pode ter as áreas que caem dentro de qualquer lugar dentro da camada (Inclusivo). Inclusivo retém mais detalhes, Exclusivo proporciona o melhor encaixe e Meio permanece mais próximo da superfície original." + +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Aguardar o Aquecimento da Mesa" + +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Aguardar Aquecimento do Bico" + +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Aceleração da Parede" + +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Contagem de Distribuição de Parede" + +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Extrusor das Paredes" + +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Fluxo de Parede" + +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Jerk da Parede" + +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Número de Filetes da Parede" + +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Largura de Extrusão da Parede" + +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Ordem de Parede" + +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Velocidade da Parede" + +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Espessura de Parede" + +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Comprimento de Transição de Parede" + +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Distância de Filtro da Transição de Parede" + +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Margem de Filtro de Transição de Parede" + +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Ângulo-Limite de Transição de Parede" + +msgctxt "shell label" +msgid "Walls" +msgstr "Paredes" + +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." +msgstr "Paredes que pendem por mais do que esse ângulo serão impressas usando ajustes de paredes pendentes. Quando este valor for 90, nenhuma parede será tratada como pendente. Seções pendentes que têm suportes também não serão tratadas como pendentes." + +msgctxt "support_interface_skip_height description" +msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +msgstr "Quando verificar se há partes do modelo abaixo e acima do suporte, usar passos de dada altura. Valores baixos fatiarão mais lentamente, enquanto que valores altos farão com que suporte convencional seja impresso em lugares em que deveria haver interface de suporte." + +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "Quando habilitado os percursos do extrusor são corrigidos para impressora com planejadores de movimento suavizado. Pequenos movimentos que se desviariam da direção geral do percurso do extrusor são suavizados para melhorar os movimentos fluidos." + +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "Quando habilitado, a ordem em que os filetes de preenchimento são impressos é otimizada para reduzir a distância percorrida. A redução em tempo de percurso conseguida depende bastante do modelo sendo fatiado, do padrão de preenchimento, da densidade, etc. Note que, para alguns modelos que têm áreas bem pequenas de preenchimento, o tempo de fatiamento pode ser aumentado bastante." + +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "Quando habilitado, a velocidade da ventoinha de resfriamento é alterada para as regiões de contorno imediatamente acima do suporte." + +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "Quando habilitado, as coordenadas da costura Z são relativas ao centro de cada parte. Quando desabilitado, as coordenadas definem uma posição absoluta na plataforma de impressão." + +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "Quando maior que zero, os movimentos de percurso de combing que forem maiores que essa distância usarão retração. Se deixado em zero, não haverá máximo e os movimentos de combing não usarão retração." + +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "Quando maior que zero, a Expansão Horizontal de Furo é gradualmente aplicada em pequenos furos (eles são mais expandidos). Quanto é deixada em zero, a Expansão Horizontal de Furo será aplicada a todos os furos. Furos maiores que o Diâmetro Máximo de Expansão Horizontal de Furo não serão expandidos." + +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "Quando maior que zero, a Expansão Original do Furo designa a distância de compensação aplicada a todos os furos em cada camada. Valores positivos aumentam os tamanhos dos furos, valores negativos reduzem os tamanhos dos furos. Quando este ajuste é habilitado, ele pode ser ainda aprimorado com o ajuste 'Diâmetro Máximo da Expansão Horizontal de Furo'." + +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "Ao imprimir regiões de contorno de ponte, a quantidade de material extrudado é multiplicada por este valor." + +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "Ao se imprimir paredes de ponte, a quantidade de material extrudado é multiplicada por este valor." + +msgctxt "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Ao imprimir a segunda camada de contorno de ponte, a quantidade de material é multiplicada por este valor." + +msgctxt "bridge_skin_material_flow_3 description" +msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Ao imprimir a terceira de contorno da ponte, a quantidade de material é multiplicada por este valor." + +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "Quando a velocidade mínima acaba sendo usada por causa do tempo mínimo de camada, levanta a cabeça para longe da impressão e espera tempo extra até que o tempo mínimo de camada seja alcançado." + +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "Quando o modelo tem pequenas lacunas verticais de apenas umas poucas camadas, normalmente há contorno em volta dessas camadas no espaço estreito. Habilite este ajuste para não gerar o contorno se a lacuna vertical for bem pequena. Isso melhora o tempo de impressão e fatiamento, mas tecnicamente deixa preenchimento exposto ao ar." + +msgctxt "wall_transition_angle description" +msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." +msgstr "Quanto criar transições entre números de paredes pares e ímpares. A forma de cunha em ângulo maior que este ajuste não terá transições e nenhuma parede será impressa no centro para preencher o espaço remanescente. Reduzir este ajuste faz reduzir o número e comprimento das paredes centrais, mas pode deixar vãos ou sobre-extrudar." + +msgctxt "wall_transition_length description" +msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." +msgstr "Ao transicionar entre diferentes números de paredes à medida que a peça fica mais fina, uma certa quantidade de espaço é alocada para partir ou juntar os filetes de parede." + +msgctxt "wipe_hop_enable description" +msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "Quando limpando, a plataforma de impressão é abaixada para criar uma folga entre o bico e a impressão. Isso previne que o bico bata na impressão durante movimentos de percurso, reduzindo a chance de descolar o objeto da plataforma." + +msgctxt "retraction_hop_enabled description" +msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "Sempre que uma retração é feita, sobe-se um pouco em Z para criar um espaço entre o bico e a impressão. Isso evita que o bico fique batendo nas impressões durante o percurso, reduzindo a chance de chutar a peça para fora da mesa." + +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "Decide se a distância XY substitui a distância Z de suporte ou vice-versa. Quando XY substitui Z a distância XY pode afastar o suporte do modelo, influenciando a distância Z real até a seção pendente. Podemos desabilitar isso não aplicando a distância XY em volta das seções pendentes." + +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "Decide se as coordenadas X/Y da posição zero da impressão estão no centro da área imprimível (senão, estarão no canto inferior esquerdo)." + +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "Decide se o endstop do eixo X está na direção positiva (coordenada X alta) ou negativa (coordenada X baixa)." + +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "Decide se o endstop do eixo Y está na direção positiva (coordenada Y alta) ou negativa (coordenada Y baixa)." + +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "Decide se o endstop do eixo Z está na direção positiva (coordenada Z alta) ou negativa (coordenada Z baixa)." + +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "Decide se os extrusores usam um único aquecedor combinado ou cada um tem o seu respectivo aquecedor." + +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "Decide se os extrusores compartilham um único bico ao invés de cada extrusor ter seu próprio. Quando colocado em verdadeiro, é esperado que o script g-code de início da impressora configure todos os extrusores em um estado inicial de retração que seja conhecido e mutuamente compatível (ou zero ou filamento não retraído); neste caso, o status de retração inicial é descrito, por extrusor, pelo parâmetro 'machine_extruders_shared_nozzle_initial_retraction'." + +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "Decide se a plataforma de impressão pode ser aquecida." + +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "Decide se a máquina consegue estabilizar a temperatura do volume de construção." + +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "Decide se o objeto deve ser centralizado no meio da plataforma de impressão, ao invés de usar o sistema de coordenadas em que o objeto foi salvo." + +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "Decide se a temperatura deve ser controlada pelo Cura. Desligue para controlar a temperatura do bico fora do Cura." + +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "Decide se haverá a inclusão de comandos de temperatura da mesa de impressão no início do G-Code. Quando o G-Code Inicial já contiver comandos de temperatura da mesa, a interface do Cura automaticamente desabilitará este ajuste." + +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "Decide se haverá a inclusão de comandos de temperatura do bico no início do G-Code. Quando o G-Code Inicial já contiver comandos de temperatura do bico, a interface do Cura automaticamente desabilitará este ajuste." + +msgctxt "clean_between_layers description" +msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." +msgstr "Decide se haverá inclusão de G-Code de limpeza de bico entre camadas (no máximo 1 por camada). Habilitar este ajuste pode influenciar o comportamento de retração na mudança de camada. Por favor use ajustes de Retração de Limpeza para controlar retração nas camadas onde o script de limpeza estará atuando." + +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "Decide se haverá inserção do comando para aguardar que a temperatura-alvo da mesa de impressão estabilize no início." + +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "Decide se é preciso descarregar o filamento com uma massa de purga antes de imprimir. Ligar este ajuste assegurará que o extrusor tenha material pronto no bico antes de imprimir. Imprimir um Brim ou Skirt pode funcionar como purga também, em cujo caso desligar esse ajuste faz ganhar algum tempo." + +msgctxt "print_sequence description" +msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." +msgstr "Decide se os modelos devem ser impressos todos de uma vez só, uma camada por vez, ou se se deve esperar a cada modelo terminar antes de prosseguir para o próximo. O modo um de cada vez só é possível se a) somente um extrusor estiver habilitado e b) todos os modelos estiverem separados de modo que a cabeça de impressão pode se mover entre todos e todos os modelos estiverem em altura mais baixa que a distância entre o bico e os eixos X e Y." + +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "Decide se deseja exibir as variantes desta máquina, que são descrita em arquivos .json separados." + +msgctxt "machine_firmware_retract description" +msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." +msgstr "Decide se serão usados comandos de retração de firmware (G10/G11) ao invés da propriedade E dos comandos G1 para retrair o material." + +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "Decide se haverá a inserção do comando para aguardar que a temperatura-alvo do bico estabilize no início." + +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Largura de um filete de preenchimento." + +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "Largura de um filete usado no teto ou base do suporte." + +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "Largura de extrusão de um filete das áreas no topo da peça." + +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "Largura de uma única linha de filete extrudado. Geralmente, a largura da linha corresponde ao diâmetro do bico. No entanto, reduzir ligeiramente este valor pode produzir impressões melhores." + +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "Largura de um filete usado na torre de purga." + +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "Largura de um filete do brim (bainha) ou skirt (saia)." + +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "Largura de um filete usado na base do suporte." + +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "Largura de um filete usado no teto do suporte." + +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Largura de um filete usado nas estruturas de suporte." + +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Largura de extrusão dos filetes das paredes do topo e base dos modelos." + +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "Largura de extrusão das paredes internas (todas menos a mais externa)." + +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Largura de um filete que faz parte de uma parede." + +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "Largura das linhas na camada de base do raft. Devem ser grossas para auxiliar na aderência à mesa." + +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "Largura das linhas na camada intermediária do raft. Fazer a segunda camada extrudar mais faz as linhas grudarem melhor na mesa." + +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "Largura das linhas na superfície superior do raft. Estas podem ser linhas finas de modo que o topo do raft fique liso." + +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "Largura de Extrusão somente da parede mais externa do modelo. Diminuindo este valor, níveis de detalhes mais altos podem ser impressos." + +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "Largura da parede que substituirá detalhes finos (de acordo com o Tamanho Mínimo de Detalhe) do modelo. Se a Largura Mínima de Filete de Parede for mais fina que a espessura do detalhe, a parede se tornará tão espessa quanto o próprio detalhe." + +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "Posição X da Varredura de Limpeza" + +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Velocidade do Salto de Limpeza" + +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Limpar Bico Inativo na Torre de Purga" + +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Distância de Movimentação da Limpeza" + +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "Limpar o Bico Entre Camadas" + +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Pausa de Limpeza" + +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Contagem de Repetições de Limpeza" + +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Distância de Retração da Limpeza" + +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "Habilitar Retração de Limpeza" + +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "Quantidade Extra de Purga da Retração de Limpeza" + +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Velocidade de Purga da Retração de Limpeza" + +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "Velocidade da Retração da Retração de Limpeza" + +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Velocidade da Retração de Limpeza" + +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "Salto Z da Limpeza" + +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "Altura do Salto Z da Limpeza" + +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "Dentro do Preenchimento" + +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "Escreve a ferramenta ativa depois de enviar comandos de temperatura para a ferramenta inativa. Requerido para impressão de Extrusor Duplo com Smoothie ou outros firmwares com comandos modais de ferramenta." + +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "Endstop X na Direção Positiva" + +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "Localização X onde o script de limpeza iniciará." + +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y substitui Z" + +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Endstop Y na Direção Positiva" + +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Endstop Z na Direção Positiva" + +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Salto Z Após Troca de Extrusor" + +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Salto Z Após Troca de Altura do Extrusor" + +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Altura do Salto Z" + +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Salto Z Somente Sobre Partes Impressas" + +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Velocidade do Salto Z" + +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Salto Z Ao Retrair" + +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Alinhamento da Costura em Z" + +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Posição da Costura Z" + +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Costura Z Relativa" + +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "Coordenada X da Costura Z" + +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Coordenada Y da Costura Z" + +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z substitui X/Y" + +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "travel description" +msgid "travel" +msgstr "percurso" + +#~ msgctxt "machine_head_polygon description" +#~ msgid "A 2D silhouette of the print head (fan caps excluded)." +#~ msgstr "Uma silhueta 2D da cabeça de impressão (sem os suportes de ventoinhas)." + +#~ msgctxt "machine_head_with_fans_polygon description" +#~ msgid "A 2D silhouette of the print head (fan caps included)." +#~ msgstr "Silhueta da cabeça de impressão com os suportes de ventoinhas inclusos." + +#~ msgctxt "spaghetti_infill_extra_volume description" +#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." +#~ msgstr "Um termo de correção para ajustar o volume total sendo extrudado a cada vez que se preencher com estilo espaguete." + +#~ msgctxt "sub_div_rad_mult description" +#~ msgid "A multiplier on the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to more subdivisions, i.e. more small cubes." +#~ msgstr "Um multiplicador do raio do centro de cada cubo para verificar a borda do modelo, de modo a decidir se este cubo deve ser subdividido. Valores maiores levam a maiores subdivisões, isto é, mais cubos pequenos." + +#~ msgctxt "adaptive_layer_height_threshold label" +#~ msgid "Adaptive Layers Threshold" +#~ msgstr "Limite das Camadas Adaptativas" + +#~ msgctxt "adaptive_layer_height_variation label" +#~ msgid "Adaptive layers maximum variation" +#~ msgstr "Variação máxima das camadas adaptativas" + +#~ msgctxt "adaptive_layer_height_threshold label" +#~ msgid "Adaptive layers threshold" +#~ msgstr "Limite das camadas adaptativas" + +#~ msgctxt "adaptive_layer_height_variation_step label" +#~ msgid "Adaptive layers variation step size" +#~ msgstr "Tamanho de passo da variação das camadas adaptativas" + +#~ msgctxt "wall_add_middle_threshold label" +#~ msgid "Add Middle Line Threshold" +#~ msgstr "Adicionar Limite de Filete Central" + +#~ msgctxt "support_interface_density description" +#~ msgid "Adjusts the density of the roofs and bottoms of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +#~ msgstr "Ajusta a densidade dos topos e bases das estruturas de suporte. Um valor mais alto resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." + +#~ msgctxt "spaghetti_flow description" +#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." +#~ msgstr "Ajusta a densidade do preenchimento espaguete. Note que a Densidade de Preenchimento controla somente o espaçamento entre linhas do padrão de preenchimento, não a quantidade de extrusão para o preenchimento espaguete." + +#~ msgctxt "dual_pre_wipe description" +#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." +#~ msgstr "Depois de trocar extrusores, limpar o material escorrendo do bico na primeira peça impressa. Isso causa um movimento lento de limpeza do bico em um lugar onde o material escorrido causa o menor dano à qualidade de superfície da sua impressão." + +#~ msgctxt "material_bed_temp_wait label" +#~ msgid "Aguardar o aquecimento da mesa de impressão" +#~ msgstr "Esperar a que la placa de impresión se caliente" + +#~ msgctxt "cross_infill_apply_pockets_alternatingly label" +#~ msgid "Alternate Cross 3D Pockets" +#~ msgstr "Bolso Alternados de Cruzado 3D" + +#~ msgctxt "skin_alternate_rotation label" +#~ msgid "Alternate Skin Rotation" +#~ msgstr "Alterna a Rotação do Contorno" + +#~ msgctxt "skin_alternate_rotation description" +#~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." +#~ msgstr "Alterna a direção em que as camadas superiores e inferiores são impressas. Normalmente elas são impressas somente na diagonal. Este ajuste permite direções somente no X e somente no Y." + +#~ msgctxt "prime_tower_purge_volume description" +#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." +#~ msgstr "Quantidade de filamento a ser purgado na torre de purga. A purga é útil para compensar filamento perdido por escorrimento durante inatividade do bico." + +#~ msgctxt "hole_xy_offset description" +#~ msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes." +#~ msgstr "Quantidade de deslocamento aplicado a todos os furos em cada camada. Valores positivos aumentam o tamanho dos furos, valores negativos reduzem o tamanho dos furos." + +#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" +#~ msgid "Apply the extruder offset to the coordinate system." +#~ msgstr "Aplicar o deslocamento do extrusor ao sistema de coordenadas." + +#~ msgctxt "material_flow_dependent_temperature label" +#~ msgid "Auto Temperature" +#~ msgstr "Temperatura Automática" + +#~ msgctxt "z_seam_type option back" +#~ msgid "Back" +#~ msgstr "Costas" + +#~ msgctxt "bridge_wall_max_overhang label" +#~ msgid "Bridge Wall Max Overhang" +#~ msgstr "Seção Pendente Máxima da Parede de Ponte" + +#~ msgctxt "machine_shape label" +#~ msgid "Build plate shape" +#~ msgstr "Forma da mesa de impressão" + +#~ msgctxt "center_object label" +#~ msgid "Center object" +#~ msgstr "Centralizar Objeto" + +#~ msgctxt "material_flow_dependent_temperature description" +#~ msgid "Change the temperature for each layer automatically with the average flow speed of that layer." +#~ msgstr "Troca a temperatura para cada camada automaticamente de acordo com a velocidade média de fluxo desta camada." + +#~ msgctxt "prime_tower_circular label" +#~ msgid "Circular Prime Tower" +#~ msgstr "Torre de Purga Circular" + +#~ msgctxt "retraction_combing description" +#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." +#~ msgstr "O Combing (penteamento) mantém o bico dentro de áreas já impressas durante os percursos. Isto resulta em movimentações um pouco mais amplas mas reduz a necessidade de retrações. Se o combing for desligado, o material sofrerá retração e o bico se moverá em linha reta ao próximo ponto. É também possível evitar combing sobre áreas de contorno de topo e base e ainda só fazer combing no preenchimento. Note que a opção 'Dentro do Preenchimento' se comporta exatamente como a 'Não no Contorno' em versões anteriores do Cura." + +#~ msgctxt "retraction_combing description" +#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." +#~ msgstr "O Combing, ou penteamento, mantém o bico dentro de áreas já impressas se movimenta. Isso resulta em percursos ligeiramente mais longos mas reduz a necessidade de retrações. Se o penteamento estiver desligado, o material sofrerá retração e o bico se moverá em linha reta para o próximo ponto. É também possível evitar o penteamento em área de contornos superiores e inferiores habilitando o penteamento no preenchimento somente." + +#~ msgctxt "wireframe_strategy option compensate" +#~ msgid "Compensate" +#~ msgstr "Compensar" + +#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" +#~ msgid "Compensate Inner Wall Overlaps" +#~ msgstr "Compensar Sobreposições da Parede Interna" + +#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" +#~ msgid "Compensate Outer Wall Overlaps" +#~ msgstr "Compensar Sobreposições de Parede Externa" + +#~ msgctxt "travel_compensate_overlapping_walls_enabled label" +#~ msgid "Compensate Wall Overlaps" +#~ msgstr "Compensar Sobreposições de Parede" + +#~ msgctxt "travel_compensate_overlapping_walls_enabled description" +#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." +#~ msgstr "Compensa o fluxo para partes de uma parede sendo impressa onde já há outra parede." + +#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" +#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." +#~ msgstr "Compensa o fluxo para partes de uma parede interna sendo impressa onde já há outra parede." + +#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" +#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." +#~ msgstr "Compensa o fluxo para partes de uma parede externa sendo impressa onde já há outra parede." + +#~ msgctxt "infill_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concêntrico 3D" + +#~ msgctxt "support_bottom_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concêntrico 3D" + +#~ msgctxt "support_interface_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concêntrico 3D" + +#~ msgctxt "support_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concêntrico 3D" + +#~ msgctxt "support_roof_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concêntrico 3D" + +#~ msgctxt "zig_zaggify_infill description" +#~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +#~ msgstr "Conecta as extremidades onde o padrão de preenchimento se encontra com a parede interna usando linhas que seguem a forma dessa parede. Habilitar este ajuste pode fazer o preenchimento aderir melhor às paredes e reduz os efeitos do preenchimento na qualidade das superfícies verticais. Desabilitar este ajuste reduz a quantidade de material usado." + +#~ msgctxt "connect_skin_polygons description" +#~ msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happend midway over infill this feature can reduce the top surface quality." +#~ msgstr "Conectar camihos de contorno do topo e base onde se situarem próximos. Habilitar para o padrão concêntrico reduzirá bastante o tempo de percurso, mas visto que as conexões podem acontecer sobre o preenchimento no meio do caminho, este recurso pode reduzir a qualidade da superfície superior." + +#~ msgctxt "z_seam_corner description" +#~ msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner." +#~ msgstr "Controla se cantos no contorno do modelo influenciam a posição da costura. Nenhum significa que cantos não têm influência na posição da costura. Esconder Costura torna mais provável que ela ocorra em um canto interior. Expor Costura torna mais provável que ela ocorra em um canto exterior. Esconder ou Expor Costura torna mais provável que ocorra em um canto, externo ou externo." + +#~ msgctxt "machine_nozzle_cool_down_speed label" +#~ msgid "Cool down speed" +#~ msgstr "Velocidade de resfriamento" + +#~ msgctxt "wireframe_top_jump description" +#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." +#~ msgstr "Cria um pequeno 'nódulo' ou 'nó' no topo do filete ascendente de tal modo que a camada horizontal consecutiva tem melhor chance de se conectar ao filete. Somente se aplica à Impressão em Arame." + +#~ msgctxt "sub_div_rad_mult label" +#~ msgid "Cubic Subdivision Radius" +#~ msgstr "Raio de Subdivisão Cúbica" + +#~ msgctxt "wireframe_bottom_delay description" +#~ msgid "Delay time after a downward move. Only applies to Wire Printing." +#~ msgstr "Tempo de espera depois de um movimento descendente tal que o filete possa se solidificar. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wireframe_top_delay description" +#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." +#~ msgstr "Tempo de espera depois de um movimento ascendente tal que o filete ascendente possa se solidifcar. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wireframe_flat_delay description" +#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." +#~ msgstr "Tempo de espera entre dois segmentos horizontais. Inserir tal espera pode ocasionar melhor aderência a camadas prévias nos pontos de conexão, mas atrasos muito longos podem causar estruturas murchas. Somente se aplica à Impressão em Arame." + +#~ msgctxt "inset_direction description" +#~ msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed." +#~ msgstr "Determina em que ordem as paredes são impressas. Imprimir parede mais externas antes ajuda com acurácia dimensional, já que falhas das paredes mais internas não se propagam para o exterior. No entanto imprimi-las depois permite melhor empilhamento quando seções pendentes são impressas." + +#~ msgctxt "infill_mesh_order description" +#~ msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." +#~ msgstr "Determina a prioridade desta malha ao considerar múltiplas malhas de preenchimento sobrepostas. Áreas onde elas se sobrepõem terão as configurações da malha com o menor número. Uma malha de prenchimento de ordem maior modificará o preenchimento das malhas de preenchimento com as malhas de ordem mais baixa e normais." + +#~ msgctxt "infill_mesh_order description" +#~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." +#~ msgstr "Determina a prioridade desta malha ao se considerar volumes sobrepostos. Áread onde múltiplas malhas residem serão ganhas pela malha com menor número. Uma malha de preenchimento com maior ordem modificará o preenchimento das malhas de preenchimento com malhas de ordem normal e menor." + +#~ msgctxt "infill_mesh_order description" +#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." +#~ msgstr "Determina que malha de preenchimento está dentro do preenchimento de outra malha de preenchimento. Uma malha de preenchimento com ordem mais alta modificará o preenchimento de malhas de preenchimento com ordem mais baixa e malhas normais." + +#~ msgctxt "machine_disallowed_areas label" +#~ msgid "Disallowed areas" +#~ msgstr "Áreas proibidas" + +#~ msgctxt "wireframe_nozzle_clearance description" +#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." +#~ msgstr "Distância entre o bico e os filetes descendentes horizontais. Espaços livres maiores resultarão em filetes descendentes diagonais com ângulo menos acentuado, o que por sua vez resulta em menos conexões ascendentes à próxima camada. Somente se aplica à Impressão em Arame." + +#~ msgctxt "support_interface_line_distance description" +#~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately." +#~ msgstr "Distância entre as linhas impressas da interface de suporte. Este ajuste é calculado pela Densidade de Interface de Suporte, mas pode ser ajustado separadamente." + +#~ msgctxt "support_bottom_distance description" +#~ msgid "Distance from the print to the bottom of the support." +#~ msgstr "Distância da parte inferior do suporte até a impressão." + +#~ msgctxt "support_z_distance description" +#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded down to a multiple of the layer height." +#~ msgstr "Distância do topo/base da estrutura de suporte à impressão. Este vão provê o espaço para remover os suportes depois do modelo ser impresso. Este valor é arredondando para um múltiplo da altura de camada." + +#~ msgctxt "support_z_distance description" +#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." +#~ msgstr "Distância do topo e base da estrutura de suporte para a impressão. Este vão provê um espaço para remover os suportes depois de o modelo ser impresso. O valor é arredondado para um múltiplo da altura de camada." + +#~ msgctxt "wireframe_up_half_speed description" +#~ msgid "" +#~ "Distance of an upward move which is extruded with half speed.\n" +#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." +#~ msgstr "" +#~ "Distância de um movimento ascendente que é extrudado com metade da velocidade.\n" +#~ "Isto pode resultar em melhor aderência às camadas prévias, ao mesmo tempo em que não aquece demais essas camadas. Somente se aplica à Impressão em Arame." + +#~ msgctxt "support_xy_distance_overhang description" +#~ msgid "Distance of the support structure from the overhang in the X/Y directions. " +#~ msgstr "Distância da estrutura de suporte até a seção pendente nas direções X/Y. " + +#~ msgctxt "wireframe_fall_down description" +#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Distância na qual o material desaba após uma extrusão ascendente. Esta distância é compensada. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wireframe_drag_along description" +#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Distância na qual o material de uma extrusão ascendente é arrastado com a extrusão descendente diagonal. Esta distância é compensada. Somente se aplica à Impressão em Arame." + +#~ msgctxt "multiple_mesh_overlap label" +#~ msgid "Dual Extrusion Overlap" +#~ msgstr "Sobreposição de Extrusão Dual" + +#~ msgctxt "gradual_flow_discretisation_step_size description" +#~ msgid "Duration of each step in the gradual flow change" +#~ msgstr "Duração de cada passo na alteração de fluxo gradual" + +#~ msgctxt "support_enable label" +#~ msgid "Enable Support" +#~ msgstr "Habilitar Suportes" + +#~ msgctxt "gradual_flow_enabled description" +#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +#~ msgstr "Habilita mudanças graduais de fluxo. Quando habilitado, o fluxo é gradualmente aumentado ou reduzido para o fluxo alvo. Útil para impressoras com tubo bowden onde o fluxo não é imediatamente alterado quando o motor do extrusor inicia ou para." + +#~ msgctxt "support_enable description" +#~ msgid "Enable support structures. These structures support parts of the model with severe overhangs." +#~ msgstr "Habilita as estruturas de suporte. Essas estruturas apóiam partes do modelo que tenham seções pendentes." + +#~ msgctxt "machine_end_gcode label" +#~ msgid "End GCode" +#~ msgstr "G-Code Final" + +#~ msgctxt "material_end_of_filament_purge_length label" +#~ msgid "End Of Filament Purge Length" +#~ msgstr "Comprimento de Purga de Fim de Filamento" + +#~ msgctxt "material_end_of_filament_purge_speed label" +#~ msgid "End Of Filament Purge Speed" +#~ msgstr "Velocidade de Purga de Fim de Filamento" + +#~ msgctxt "speed_equalize_flow_enabled label" +#~ msgid "Equalize Filament Flow" +#~ msgstr "Equalizar Fluxo de Filamento" + +#~ msgctxt "fill_perimeter_gaps option everywhere" +#~ msgid "Everywhere" +#~ msgstr "Em todos os lugares" + +#~ msgctxt "expand_lower_skins label" +#~ msgid "Expand Bottom Skins Into Infill" +#~ msgstr "Expande Contorno da Base Para Preenchimento" + +#~ msgctxt "expand_lower_skins label" +#~ msgid "Expand Lower Skins" +#~ msgstr "Expandir Contornos Inferiores" + +#~ msgctxt "expand_skins_into_infill label" +#~ msgid "Expand Skins Into Infill" +#~ msgstr "Expandir Contorno Para Preenchimento" + +#~ msgctxt "expand_upper_skins label" +#~ msgid "Expand Top Skins Into Infill" +#~ msgstr "Expandir Contorno do Topo Para Preenchimento" + +#~ msgctxt "expand_upper_skins label" +#~ msgid "Expand Upper Skins" +#~ msgstr "Expandir Contornos Superiores" + +#~ msgctxt "expand_lower_skins description" +#~ msgid "Expand lower skin areas (areas with air below) so that they are anchored by the infill layers above and below." +#~ msgstr "Expandir as áreas de contorno inferiores (áreas com ar abaixo) de modo que fiquem ancoradas pelas camadas de preenchimento acima e abaixo." + +#~ msgctxt "expand_skins_into_infill description" +#~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin." +#~ msgstr "Expandir áreas de perímetro das partes superiores e inferiores de superfícies chatas. Por default, o perímetro para sob as paredes que rodeiam o preenchimento mas isso pode fazer com que buracos apareçam caso a densidade de preenchimento seja baixa. Este ajuste estenda os perímetros além das linhas de parede de modo que o preenchimento da próxima camada fique em cima de perímetros." + +#~ msgctxt "expand_lower_skins description" +#~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below." +#~ msgstr "Expande as áreas de perímetro da base (áreas com ar abaixo delas) de modo que se ancorem nas camadas de preenchimento embaixo e acima." + +#~ msgctxt "expand_upper_skins description" +#~ msgid "Expand the top skin areas (areas with air above) so that they support infill above." +#~ msgstr "Expande as áreas de perímetro do topo (áreas com ar acima delas) de modo que suportem o preenchimento de cima." + +#~ msgctxt "expand_upper_skins description" +#~ msgid "Expand upper skin areas (areas with air above) so that they support infill above." +#~ msgstr "Expandir as áreas de contorno superiores (áreas com ar acima) de modo que suportem o preenchimento acima." + +#~ msgctxt "support_conical_enabled description" +#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." +#~ msgstr "Recurso experimental: Faz as áreas de suporte menores na base que na seção pendente." + +#~ msgctxt "machine_filament_park_distance label" +#~ msgid "Filament Park Distance" +#~ msgstr "Distância de Descanso do Filamento" + +#~ msgctxt "fill_perimeter_gaps label" +#~ msgid "Fill Gaps Between Walls" +#~ msgstr "Preenche Lacunas Entre Paredes" + +#~ msgctxt "fill_perimeter_gaps description" +#~ msgid "Fills the gaps between walls where no walls fit." +#~ msgstr "Preenche as lacunas que ficam entre paredes quando paredes intermediárias não caberiam." + +#~ msgctxt "filter_out_tiny_gaps label" +#~ msgid "Filter Out Tiny Gaps" +#~ msgstr "Filtrar Pequenas Lacunas" + +#~ msgctxt "filter_out_tiny_gaps description" +#~ msgid "Filter out tiny gaps to reduce blobs on outside of model." +#~ msgstr "Filtrar (rempver) pequenas lacunas para reduzir bolhas no exterior do modelo." + +#~ msgctxt "small_feature_speed_factor_0 label" +#~ msgid "First Layer Speed" +#~ msgstr "Velocidade da Primeira Camada" + +#~ msgctxt "wireframe_flow_connection description" +#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." +#~ msgstr "Compensação de Fluxo quanto subindo ou descendo. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wireframe_flow_flat description" +#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." +#~ msgstr "Compensação de fluxo ao imprimir filetes planos. Somente se aplica à Impressão em Arame." + +#~ msgctxt "prime_tower_flow description" +#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value." +#~ msgstr "Compensação de Fluxo: a quantidade de material extrudado é multiplicado por este valor." + +#~ msgctxt "wireframe_flow description" +#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." +#~ msgstr "Compensação de fluxo: a quantidade de material extrudado é multiplicado por este valor. Somente se aplica à Impressão em Arame." + +#~ msgctxt "flow_rate_extrusion_offset_factor label" +#~ msgid "Flow rate compensation factor" +#~ msgstr "Fator de compensaçõ de taxa de fluxo" + +#~ msgctxt "flow_rate_max_extrusion_offset label" +#~ msgid "Flow rate compensation max extrusion offset" +#~ msgstr "Deslocamento de extrusão máxima da compensação de taxa de fluxo" + +#~ msgctxt "reset_flow_duration description" +#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +#~ msgstr "Para qualquer movimento mais longo que este valor, o fluxo material é resetado para o fluxo-alvo do percurso." + +#~ msgctxt "machine_gcode_flavor label" +#~ msgid "G-code Flavour" +#~ msgstr "Sabor de G-Code" + +#~ msgctxt "machine_gcode_flavor label" +#~ msgid "G-code flavour" +#~ msgstr "Sabor de G-Code" + +#~ msgctxt "material_guid description" +#~ msgid "GUID of the material. This is set automatically. " +#~ msgstr "GUID do material. Este valor é ajustado automaticamente. " + +#~ msgctxt "gantry_height label" +#~ msgid "Gantry height" +#~ msgstr "Altura do eixo" + +#~ msgctxt "machine_end_gcode description" +#~ msgid "" +#~ "Gcode commands to be executed at the very end - separated by \n" +#~ "." +#~ msgstr "" +#~ "Comandos de G-Code a serem executados no fim da impressão - separados por \n" +#~ "." + +#~ msgctxt "machine_start_gcode description" +#~ msgid "" +#~ "Gcode commands to be executed at the very start - separated by \n" +#~ "." +#~ msgstr "" +#~ "Comandos de G-Code a serem executados durante o início da impressão - separados por \n" +#~ "." + +#~ msgctxt "machine_gcode_flavor label" +#~ msgid "Gcode flavour" +#~ msgstr "Tipo de G-Code" + +#~ msgctxt "support_tree_enable description" +#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." +#~ msgstr "Gera um suporte em árvore com galhos que apóiam sua impressão. Isto pode reduzir uso de material e tempo de impressão, mas aumenta bastante o tempo de fatiamento." + +#~ msgctxt "ironing_enabled description" +#~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." +#~ msgstr "Passar sobre a superfície superior depois de impressa, mas sem extrudar material. A idéia é derreter o plástico do topo ainda mais, criando uma superfície mais lisa." + +#~ msgctxt "gradual_flow_discretisation_step_size label" +#~ msgid "Gradual flow discretisation step size" +#~ msgstr "Tamanho de passo da discretização de fluxo gradual" + +# ## Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better. +#~ msgctxt "gradual_flow_enabled label" +#~ msgid "Gradual flow enabled" +#~ msgstr "Fluxo gradual habilitado" + +#~ msgctxt "max_flow_acceleration label" +#~ msgid "Gradual flow max acceleration" +#~ msgstr "Aceleração máxima do fluxo gradual" + +#~ msgctxt "machine_heated_bed label" +#~ msgid "Has heated build plate" +#~ msgstr "Tem mesa de impressão aquecida" + +#~ msgctxt "machine_nozzle_heat_up_speed label" +#~ msgid "Heat up speed" +#~ msgstr "Velocidade de aquecimento" + +#~ msgctxt "machine_heat_zone_length label" +#~ msgid "Heat zone length" +#~ msgstr "Comprimento da zona de aquecimento" + +#~ msgctxt "infill_hollow label" +#~ msgid "Hollow Out Objects" +#~ msgstr "Tornar Objetos Ocos" + +#~ msgctxt "support_tree_branch_distance description" +#~ msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." +#~ msgstr "Quão distantes os galhos precisam estar quando tocam o modelo. Tornar esta distância pequena fará com que o suporte em árvore toque o modelo em mais pontos, permitindo maior sustentação mas tornando o suporte mais difícil de remover." + +#~ msgctxt "machine_steps_per_mm_e description" +#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." +#~ msgstr "Quantos passos do motor de passo resultarão em um milímetro de extrusão." + +#~ msgctxt "slicing_tolerance description" +#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." +#~ msgstr "Como fatiar camadas com superfícies diagonais. As áreas de uma camada podem ser geradas baseadas em onde o meio da camada interseciona a superfície (Meio). Alternativamente, cada camada pode ter as áreas que se encontram dentro do volume por toda a altura da camada (Exclusivo) ou a camada pode abranger todas as áreas que tenham qualquer penetração dentro do volume (Inclusivo). Exclusivo retém mais detalhes, Inclusivo é melhor para encaixes e Meio toma menos tempo para processar." + +#~ msgctxt "wall_min_flow_retract description" +#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." +#~ msgstr "Se usado, a retração é usada ao invés de combing para movimentos de percurso que substituem paredes cujo fluxo estiver abaixo do limite mínimo." + +#~ msgctxt "skin_no_small_gaps_heuristic label" +#~ msgid "Ignore Small Z Gaps" +#~ msgstr "Ignorar Pequenas Lacunas em Z" + +#~ msgctxt "start_layers_at_same_position description" +#~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time." +#~ msgstr "Em cada camada iniciar imprimindo o objeto próximo ao mesmo ponto, de modo que não comecemos uma nova camada quando imprimir a peça com que a camada anterior terminou. Isso permite seções pendentes e partes pequenas melhores, mas aumenta o tempo de impressão." + +#~ msgctxt "material_bed_temp_prepend label" +#~ msgid "Include build plate temperature" +#~ msgstr "Incluir temperatura da mesa de impressão" + +#~ msgctxt "material_print_temp_prepend label" +#~ msgid "Include material temperatures" +#~ msgstr "Incluir temperaturas dos materiais" + +#~ msgctxt "infill_mesh_order label" +#~ msgid "Infill Mesh Order" +#~ msgstr "Order das Malhas de Preenchimento" + +#~ msgctxt "z_offset_layer_0 label" +#~ msgid "Initial Layer Z Offset" +#~ msgstr "Deslocamento em Z da Camada Inicial" + +#~ msgctxt "layer_0_max_flow_acceleration label" +#~ msgid "Initial layer max flow acceleration" +#~ msgstr "Aceleração máxima de fluxo da camada inicial" + +#~ msgctxt "wall_x_extruder_nr label" +#~ msgid "Inner Walls Extruder" +#~ msgstr "Extrusor das Paredes Internas" + +#~ msgctxt "machine_center_is_zero label" +#~ msgid "Is center origin" +#~ msgstr "A origem está no centro" + +#~ msgctxt "wireframe_strategy option knot" +#~ msgid "Knot" +#~ msgstr "Nó" + +#~ msgctxt "limit_support_retractions label" +#~ msgid "Limit Support Retractions" +#~ msgstr "Limitar Retrações de Suporte" + +#~ msgctxt "machine_head_polygon label" +#~ msgid "Machine Head Polygon" +#~ msgstr "Polígono Da Cabeça da Máquina" + +#~ msgctxt "machine_depth label" +#~ msgid "Machine depth" +#~ msgstr "Profundidada da mesa" + +#~ msgctxt "machine_head_with_fans_polygon label" +#~ msgid "Machine head & Fan polygon" +#~ msgstr "Polígono da cabeça da máquina e da ventoinha" + +#~ msgctxt "machine_head_polygon label" +#~ msgid "Machine head polygon" +#~ msgstr "Polígono da cabeça da máquina" + +#~ msgctxt "machine_height label" +#~ msgid "Machine height" +#~ msgstr "Altura do volume de impressão" + +#~ msgctxt "machine_width label" +#~ msgid "Machine width" +#~ msgstr "Largura da mesa" + +#~ msgctxt "prime_tower_circular description" +#~ msgid "Make the prime tower as a circular shape." +#~ msgstr "Faz a torre de purga na forma circular." + +#~ msgctxt "material_end_of_filament_purge_length description" +#~ msgid "Material Station internal value" +#~ msgstr "Valor interno da Estação de Material" + +#~ msgctxt "material_end_of_filament_purge_speed description" +#~ msgid "Material Station internal value" +#~ msgstr "Valor interno da Estação de Material" + +#~ msgctxt "material_flush_purge_length description" +#~ msgid "Material Station internal value" +#~ msgstr "Valor interno da Estação de Material" + +#~ msgctxt "material_flush_purge_speed description" +#~ msgid "Material Station internal value" +#~ msgstr "Valor interno da Estação de Material" + +#~ msgctxt "material_maximum_park_duration description" +#~ msgid "Material Station internal value" +#~ msgstr "Valor interno da Estação de Material" + +#~ msgctxt "material_no_load_move_factor description" +#~ msgid "Material Station internal value" +#~ msgstr "Valor interno da Estação de Material" + +#~ msgctxt "machine_max_feedrate_e label" +#~ msgid "Maximum Feedrate" +#~ msgstr "Velocidade Máxima de Alimentação" + +#~ msgctxt "speed_equalize_flow_max label" +#~ msgid "Maximum Speed for Flow Equalization" +#~ msgstr "Velocidade Máxima para Equalização de Fluxo" + +#~ msgctxt "max_feedrate_z_override label" +#~ msgid "Maximum Z Speed" +#~ msgstr "Velocidade Máxima em Z" + +#~ msgctxt "max_flow_acceleration description" +#~ msgid "Maximum acceleration for gradual flow changes" +#~ msgstr "Aceleração máxima para alterações de fluxo gradual" + +#~ msgctxt "max_extrusion_before_wipe description" +#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated." +#~ msgstr "Material máximo que pode ser extrudado antes que outra limpeza do bico seja iniciada." + +#~ msgctxt "speed_equalize_flow_max description" +#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." +#~ msgstr "Velocidade máxima de impressão no ajuste de velocidades para equalizar o fluxo." + +#~ msgctxt "mesh_position_x label" +#~ msgid "Mesh position x" +#~ msgstr "Posição X da malha" + +#~ msgctxt "mesh_position_y label" +#~ msgid "Mesh position y" +#~ msgstr "Posição Y da malha" + +#~ msgctxt "mesh_position_z label" +#~ msgid "Mesh position z" +#~ msgstr "Posição Z da malha" + +#~ msgctxt "support_minimal_diameter label" +#~ msgid "Minimum Diameter" +#~ msgstr "Diâmetro mínimo" + +#~ msgctxt "wall_min_flow label" +#~ msgid "Minimum Wall Flow" +#~ msgstr "Mínimo Fluxo da Parede" + +#~ msgctxt "wall_min_flow description" +#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." +#~ msgstr "Mínima porcentagem de fluxo permite para um filete de parede. A compensação de sobreposição de parede reduz o fluxo de uma parede quando ela está próxima a outra já impressa. Paredes cujo fluxo seja menor que este valor serão trocadas por um momento de percurso. Ao usar este ajuste, você deve habilitar a compensação de sobreposição de paredes e imprimir as paredes externas antes das internas." + +#~ msgctxt "minimum_interface_area description" +#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated." +#~ msgstr "Área mínima para polígonos de interface de suporte. Polígonos que tiverem uma área menor que este valor não serão gerados." + +#~ msgctxt "minimum_bottom_area description" +#~ msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will not be generated." +#~ msgstr "Área mínima para as bases do suporte. Polígonos que tiverem uma área menor que este valor não serão gerados." + +#~ msgctxt "minimum_roof_area description" +#~ msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will not be generated." +#~ msgstr "Área mínima para os tetos do suporte. Polígonos que tiverem área menor que este valor são serão gerados." + +#~ msgctxt "support_minimal_diameter description" +#~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +#~ msgstr "Diâmeto mínimo nas direções X/Y de uma área pequena que deverá ser suportada por uma torre de suporte especial." + +#~ msgctxt "layer_0_max_flow_acceleration description" +#~ msgid "Minimum speed for gradual flow changes for the first layer" +#~ msgstr "Velocidade mínima para alterações graduais de fluxo na primeira camada" + +#~ msgctxt "retraction_combing option noskin" +#~ msgid "No Skin" +#~ msgstr "Evita Contornos" + +#~ msgctxt "meshfix_keep_open_polygons description" +#~ msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper GCode." +#~ msgstr "Normalmente o Cura tenta costurar pequenos furos na malha e remover partes de uma camada com grandes furos. Habilitar esta opção mantém aquelas partes que não podem ser costuradas. Este opção deve ser usada somente como uma última alternativa quando tudo o mais falha em produzir G-Code apropriado." + +#~ msgctxt "fill_perimeter_gaps option nowhere" +#~ msgid "Nowhere" +#~ msgstr "Em lugar nenhum" + +#~ msgctxt "machine_nozzle_expansion_angle label" +#~ msgid "Nozzle angle" +#~ msgstr "Ângulo do bico" + +#~ msgctxt "machine_nozzle_head_distance label" +#~ msgid "Nozzle length" +#~ msgstr "Comprimento do bico" + +#~ msgctxt "extruders_enabled_count label" +#~ msgid "Number of Extruders that are enabled" +#~ msgstr "Número de Extrusores habilitados" + +#~ msgctxt "machine_use_extruder_offset_to_offset_coords label" +#~ msgid "Offset With Extruder" +#~ msgstr "Deslocamento do Extrusor" + +#~ msgctxt "limit_support_retractions description" +#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure." +#~ msgstr "Omitir retrações quando mudar de suporte a suporte em linha reta. Habilitar este ajuste economiza tempo de impressão, mas pode levar a fiapos entremeados à estrutura de suporte." + +#~ msgctxt "limit_support_retractions description" +#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." +#~ msgstr "Omitir a retração ao mover de suporte a suporte em linha reta. Habilitar este ajuste economiza tempo de impressão, mas pode levar a fiapos excessivos na estrutura de suporte." + +#~ msgctxt "cross_infill_apply_pockets_alternatingly description" +#~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." +#~ msgstr "Somente aplicar bolso em metades dos cruzamentos quádruplos no padrão cruzado 3D e alternar a localização dos bolso entre alturas onde o padrão esteja se tocando." + +#~ msgctxt "optimize_wall_printing_order description" +#~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization." +#~ msgstr "Otimiza a ordem em que paredes são impressas de modo a reduzir o número de retrações e a distância percorrida. A maioria das peças se beneficiarão deste ajuste habilitado mas algumas podem acabar levando mais tempo, portanto por favor compare as estimativas de tempo de impressão com e sem otimização." + +#~ msgctxt "support_infill_angles description" +#~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." +#~ msgstr "Orientação do padrão de preenchimento para suportes. O padrão de preenchimento do suporte é rotacionado no plano horizontal." + +#~ msgctxt "outer_inset_first label" +#~ msgid "Outer Before Inner Walls" +#~ msgstr "Paredes exteriores antes das interiores" + +#~ msgctxt "machine_nozzle_tip_outer_diameter label" +#~ msgid "Outer nozzle diameter" +#~ msgstr "Diametro externo do bico" + +#~ msgctxt "wireframe_straight_before_down description" +#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." +#~ msgstr "Porcentagem de um filete descendente diagonal que é coberto por uma peça de filete horizontal. Isto pode prevenir enfraquecimento do ponto superior das linhas ascendentes. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wall_min_flow_retract label" +#~ msgid "Prefer Retract" +#~ msgstr "Preferir Retração" + +#~ msgctxt "prime_tower_brim_enable label" +#~ msgid "Prime Tower Brim" +#~ msgstr "Brim da Torre de Purga" + +#~ msgctxt "prime_tower_purge_volume label" +#~ msgid "Prime Tower Purge Volume" +#~ msgstr "Volume de Purga da Torre de Purga" + +#~ msgctxt "prime_tower_wall_thickness label" +#~ msgid "Prime Tower Thickness" +#~ msgstr "Espessura da Torre de Purga" + +#~ msgctxt "prime_tower_brim_enable description" +#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +#~ msgstr "Torres de Prime podem precisar de aderência extra dada por um brim mesmo se o modelo não precisar. No momento não pode ser usado com o tipo de aderência 'Raft'." + +#~ msgctxt "wireframe_enabled description" +#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." +#~ msgstr "Imprime somente a superfície exterior usando uma estrutura esparsa em forma de teia sem usar as camadas horizontais de impressão, e imprimindo no ar. Isto é feito imprimindo horizontalmente os contornos do modelo em dados intervalos Z que são conectados por filetes diagonais para cima e para baixo." + +#~ msgctxt "spaghetti_infill_enabled description" +#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." +#~ msgstr "Imprime o preenchimento intermitentemente de modo que o filamento se enrole caoticamente dentro do objeto. Isto reduz o tempo de impressão, mas tem comportamento bem imprevisível." + +#~ msgctxt "speed_equalize_flow_enabled description" +#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." +#~ msgstr "Imprime filetes mais finos que o normal mais rapidamente de modo que a quantidade de material extrudado por segundo se mantenha o mesmo. Partes pequenas em seu modelo podem exigir filetes impressos com largura menor que as providas nos ajustes. Este ajuste controla as mudanças de velocidade para tais filetes." + +#~ msgctxt "outer_inset_first description" +#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." +#~ msgstr "Imprime as paredes em ordem de fora para dentro quando habilitado. Isto pode ajudar a melhorar a acurácia dimensional e X e Y quando se usa um plástico de alta viscosidade como ABS; no entanto pode também diminuir a qualidade de impressão da superfície externa, especialmente em seções pendentes." + +#~ msgctxt "raft_base_line_spacing label" +#~ msgid "Raft Line Spacing" +#~ msgstr "Espaçamento de Linhas do Raft" + +#~ msgctxt "infill_hollow description" +#~ msgid "Remove all infill and make the inside of the object eligible for support." +#~ msgstr "Remove todo o preenchimento e torna o interior oco do objeto elegível a suporte." + +#~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +#~ msgid "RepRap (Marlin/Sprinter)" +#~ msgstr "RepRap (Marlin/Sprinter)" + +#~ msgctxt "machine_gcode_flavor option RepRap (Volumatric)" +#~ msgid "RepRap (Volumetric)" +#~ msgstr "RepRap (Volumétrico)" + +#~ msgctxt "reset_flow_duration label" +#~ msgid "Reset flow duration" +#~ msgstr "Duração de reset do fluxo" + +#~ msgctxt "support_tree_collision_resolution description" +#~ msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." +#~ msgstr "Resolução para computar colisões com a qual evitar tocar o modelo. Ajustar valor mais baixos produzirá árvore mais precisas que falharão menos, mas aumentará o tempo de fatiamento dramaticamente." + +#~ msgctxt "wireframe_strategy option retract" +#~ msgid "Retract" +#~ msgstr "Retrair" + +#~ msgctxt "retraction_enable description" +#~ msgid "Retract the filament when the nozzle is moving over a non-printed area. " +#~ msgstr "Retrai o filamento quando o bico está se movendo sobre uma área não impressa. " + +#~ msgctxt "wipe_retraction_prime_speed label" +#~ msgid "Retraction Prime Speed" +#~ msgstr "Velocidade de Purga da Retração" + +#~ msgctxt "shell label" +#~ msgid "Shell" +#~ msgstr "Perímetro" + +#~ msgctxt "machine_show_variants label" +#~ msgid "Show machine variants" +#~ msgstr "Mostrar variantes da máquina" + +#~ msgctxt "material_shrinkage_percentage label" +#~ msgid "Shrinkage Ratio" +#~ msgstr "Raio de Contração" + +#~ msgctxt "material_shrinkage_percentage description" +#~ msgid "Shrinkage ratio in percentage." +#~ msgstr "Raio de contração do material em porcentagem." + +#~ msgctxt "support_skip_some_zags label" +#~ msgid "Skip Some ZigZags Connections" +#~ msgstr "Pular Algumas Conexões de Ziguezague" + +#~ msgctxt "support_zag_skip_count description" +#~ msgid "Skip one in every N connection lines to make the support structure easier to break." +#~ msgstr "Pular uma em cada N linhas de conexão para fazer a estrutura de suporte mais fácil de ser removida." + +#~ msgctxt "support_skip_some_zags description" +#~ msgid "Skip some ZigZags connections to make the support structure easier to break." +#~ msgstr "Pula algumas conexões de Ziguezague para fazer a estrutura de suporte mais fácil de ser removida." + +#~ msgctxt "small_feature_speed_factor_0 description" +#~ msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy." +#~ msgstr "Aspectos pequenos na primeira camada serão impressos nesta porcentagem de sua velocidade normal de impressão. Impressão mais lenta pode ajudar com aderência e precisão." + +#~ msgctxt "small_feature_speed_factor description" +#~ msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy." +#~ msgstr "Pequenos aspectos serão impressos com esta porcentagem de sua velocidade normal de impressão. Impressão mais lenta pode ajudar com aderência e precisão." + +#~ msgctxt "small_skin_width description" +#~ msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions." +#~ msgstr "Regiões pequenas de teto/base são preenchidas com paredes ao invés do padrão default de teto/base. Isto ajuda a prevenir movimentos bruscos." + +#~ msgctxt "smooth_spiralized_contours description" +#~ msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z-seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +#~ msgstr "Suaviza os contornos espiralizados para reduzir a visibilidade da costura em Z (esta costura será quase invisível na impressão mas ainda pode ser vista na visão de camadas). Note que suavizar tenderá a remover detalhes finos de superfície." + +#~ msgctxt "spaghetti_flow label" +#~ msgid "Spaghetti Flow" +#~ msgstr "Fluxo de Espaguete" + +#~ msgctxt "spaghetti_infill_enabled label" +#~ msgid "Spaghetti Infill" +#~ msgstr "Preenchimento em Espaguete" + +#~ msgctxt "spaghetti_infill_extra_volume label" +#~ msgid "Spaghetti Infill Extra Volume" +#~ msgstr "Volume Extra do Preenchimento Espaguete" + +#~ msgctxt "spaghetti_max_height label" +#~ msgid "Spaghetti Infill Maximum Height" +#~ msgstr "Altura Máxima do Preenchimento Espaguete" + +#~ msgctxt "spaghetti_infill_stepped label" +#~ msgid "Spaghetti Infill Stepping" +#~ msgstr "Passos do Preenchimento de Espaguete" + +#~ msgctxt "spaghetti_inset label" +#~ msgid "Spaghetti Inset" +#~ msgstr "Penetração do Espaguete" + +#~ msgctxt "spaghetti_max_infill_angle label" +#~ msgid "Spaghetti Maximum Infill Angle" +#~ msgstr "Ângulo de Preenchimento Máximo do Espaguete" + +#~ msgctxt "wireframe_printspeed description" +#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." +#~ msgstr "Velocidade com que a cabeça de impressão se move ao extrudar material. Somente se aplica a Impressão em Arame." + +#~ msgctxt "wireframe_printspeed_down description" +#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." +#~ msgstr "Velocidade de impressão dos filetes descendentes feitas 'no ar'. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wireframe_printspeed_up description" +#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." +#~ msgstr "Velocidade de impressão dos filetes ascendentes feitas 'no ar'. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wireframe_printspeed_bottom description" +#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." +#~ msgstr "Velocidade de Impressão da primeira camada, que é a única camada que toca a mesa. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wireframe_printspeed_flat description" +#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." +#~ msgstr "Velocidade de impressão dos contornos horizontais do modelo. Somente se aplica à Impressão em Arame." + +#~ msgctxt "magic_spiralize description" +#~ msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature used to be called Joris in older versions." +#~ msgstr "Este modo, também chamado de Modo Vaso ou Joris, transforma a trajetória do filete de plástico de impressão em uma espiral ascendente, com o Z lentamente subindo. Para isso, torna um modelo sólido em uma casca de parede única com a base sólida. Nem toda forma funciona corretamente com o modo vaso." + +#~ msgctxt "wall_split_middle_threshold label" +#~ msgid "Split Middle Line Threshold" +#~ msgstr "Limite de Filete Central Dividido" + +#~ msgctxt "machine_start_gcode label" +#~ msgid "Start GCode" +#~ msgstr "G-Code Inicial" + +#~ msgctxt "start_layers_at_same_position label" +#~ msgid "Start Layers with the Same Part" +#~ msgstr "Iniciar Camadas com a Mesma Parte" + +#~ msgctxt "wireframe_strategy description" +#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." +#~ msgstr "Estratégia para se assegurar que duas camadas consecutivas se conectam a cada ponto de conexão. Retração faz com que os filetes ascendentes se solidifiquem na posição correta, mas pode causar desgaste de filamento. Um nó pode ser feito no fim de um filete ascendentes para aumentar a chance de se conectar a ele e deixar o filete esfriar; no entanto, pode exigir velocidades de impressão lentas. Outra estratégia é compensar pelo enfraquecimento do topo de uma linha ascendente; no entanto, as linhas nem sempre cairão como preditas." + +#~ msgctxt "support_bottom_height label" +#~ msgid "Support Bottom Thickness" +#~ msgstr "Espessura da Base do Suporte" + +#~ msgctxt "support_interface_line_distance label" +#~ msgid "Support Interface Line Distance" +#~ msgstr "Distância entre Linhas da Interface de Suporte" + +#~ msgctxt "infill_pattern option tetrahedral" +#~ msgid "Tetrahedral" +#~ msgstr "Tetraédrico" + +#~ msgctxt "acceleration_support_interface description" +#~ msgid "The acceleration with which the roofs and bottoms of support are printed. Printing them at lower accelerations can improve overhang quality." +#~ msgstr "Aceleração com que o topo e base dos suportes são impressos. Imprimi-lo a menores acelerações pode aprimorar a qualidade das seções pendentes." + +#~ msgctxt "infill_overlap description" +#~ msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +#~ msgstr "Porcentagem de sobreposição entre o preenchimento e as paredes. Uma leve sobreposição permite que as paredes fiquem firmemente aderidas ao preenchimento." + +#~ msgctxt "skin_overlap description" +#~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." +#~ msgstr "A quantidade de sobreposição entre o contorno e as paredes como uma porcentagem da largura de extrusão. Uma sobreposição leve permite que as paredes se conectem firmemente ao contorno. Este ajuste é uma porcentagem das larguras de extrusão média do contorno e da parede mais interna." + +#~ msgctxt "skin_overlap description" +#~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." +#~ msgstr "A quantidade de sobreposição entre o contorno e as paredes como uma porcentagem da largura de extrusão do contorno. Uma leve sobreposição permite que as paredes se conectem firmemente ao contorno. É uma porcentagem das larguras de extrusão médias das linhas de contorno e a parede mais interna." + +#~ msgctxt "skin_overlap description" +#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." +#~ msgstr "Porcentagem de sobreposição entre o contorno e as paredes. Uma ligeira sobreposição permite às paredes ficarem firmemente aderidas ao contorno." + +#~ msgctxt "skin_overlap_mm description" +#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." +#~ msgstr "A quantidade de sobreposição entre o contorno e as paredes. Uma leve sobreposição permite às paredes ficarem firmemente aderidas ao contorno." + +#~ msgctxt "switch_extruder_retraction_amount description" +#~ msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone." +#~ msgstr "A quantidade de retração: coloque em '0' para nenhuma retração. Isto deve geralmente ser o mesmo que o comprimento da zona de aquecimento dentro do hotend." + +#~ msgctxt "support_tree_angle description" +#~ msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +#~ msgstr "Ô angulo dos galhos. Use um ângulo menor para torná-los mais verticais e mais estáveis. Use um ângulo maior para aumentar o alcance." + +#~ msgctxt "lightning_infill_prune_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." +#~ msgstr "A diferença que uma camada de preenchimento relâmpago pode ter em relação à camada imediatamente superior de acordo com a poda das extremidades externas das árvores. Medido em ângulo de acordo com a espessura." + +#~ msgctxt "lightning_infill_straightening_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." +#~ msgstr "A diferença que uma camada de preenchimento relâmpago pode ter em relação à camada imediatamente superior de acordo com a suavização de árvores. Medido em ângulo de acordo com a espessura." + +#~ msgctxt "wireframe_roof_inset description" +#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." +#~ msgstr "A distância coberta quando é feita uma conexão do contorno do teto para dentro. Somente se aplica a Impressão em Arame." + +#~ msgctxt "wireframe_roof_drag_along description" +#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "A distância da parte final de um filete para dentro que é arrastada quando o extrusor começa a voltar para o contorno externo do topo. Esta distância é compensada. Somente se aplica à Impressão em Arame." + +#~ msgctxt "expand_skins_expand_distance description" +#~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient." +#~ msgstr "A distância que os contornos são expandidos para dentro do preenchimento. A distância default é suficiente para ligar o vão entre as linhas de preenchimento e impedirá que buracos apareçam no contorno onde ele encontrar a parede em que a densidade de preenchimento é baixa. Uma distância menor pode ser suficiente." + +#~ msgctxt "wireframe_roof_fall_down description" +#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "A distância em que filetes horizontais do topo impressos no ar caem quando sendo impressos. Esta distância é compensada. Somente se aplica à Impressão em Arame." + +#~ msgctxt "z_offset_layer_0 description" +#~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly." +#~ msgstr "O extrusor é deslocado da altura normal da primeira camada por esta distância. Pode ser positiva (elevada) ou negativa (abaixada). Alguns tipos de filamento aderem à camada de impressão melhor se o extrusor for elevado ligeiramente." + +#~ msgctxt "support_interface_extruder_nr description" +#~ msgid "The extruder train to use for printing the roofs and bottoms of the support. This is used in multi-extrusion." +#~ msgstr "O extrusor a usar para imprimir o topo e base dos suportes. Isto é utilizado em multi-extrusão." + +#~ msgctxt "support_bottom_stair_step_height description" +#~ msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +#~ msgstr "A altura dos passos da base tipo escada do suporte em cima do modelo. Um valor baixo faz o suporte ser mais difícil de remover, mas valores muito altos podem criar estruturas de suporte instáveis." + +#~ msgctxt "wireframe_height description" +#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." +#~ msgstr "A altura dos filetes diagonais para cima e para baixo entre duas partes horizontais. Isto determina a densidade geral da estrutura em rede. Somente se aplica a Impressão em Arame." + +#~ msgctxt "skirt_gap description" +#~ msgid "" +#~ "The horizontal distance between the skirt and the first layer of the print.\n" +#~ "This is the minimum distance, multiple skirt lines will extend outwards from this distance." +#~ msgstr "" +#~ "A distância horizontal entre o skirt e a primeira camada da impressão.\n" +#~ "Esta é a distância mínima; múltiplas linhas de skirt se estenderão pra fora a partir desta distância." + +#~ msgctxt "infill_offset_x description" +#~ msgid "The infill pattern is offset this distance along the X axis." +#~ msgstr "O padrão de preenchimento é corrigido/deslocado nesta distância no eixo X." + +#~ msgctxt "infill_offset_y description" +#~ msgid "The infill pattern is offset this distance along the Y axis." +#~ msgstr "O padrão de preenchimento é corrigido/deslocado nesta distância no eixo Y." + +#~ msgctxt "adaptive_layer_height_variation description" +#~ msgid "The maximum allowed height different from the base layer height in mm." +#~ msgstr "A dferença de altura máxima permitida da altura de camada base permitida, em mm." + +#~ msgctxt "bridge_wall_max_overhang description" +#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." +#~ msgstr "O comprimento máximo permitido da região de ar abaixo da linha da parede antes que a parede seja impressa usando ajustes de ponte. Expressado como uma porcentagem da espessura de filete de parede. Quando o vão for mais largo que esta quantia, a parede é impressa usando os ajustes de ponte. Senão, a parede é impressa com os ajustes normais. Quanto menor o valor, mais provável que os filetes da parede sejam impressos com os ajustes de ponte." + +#~ msgctxt "spaghetti_max_infill_angle description" +#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." +#~ msgstr "O ângulo máximo em relação ao Z do interior da impressão para áreas que serão preenchidas com espaguete no final. Abaixar este valor faz com que mais partes anguladas do seu modelo sejam preenchidas a cada camada." + +#~ msgctxt "meshfix_maximum_deviation description" +#~ msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller." +#~ msgstr "O valor máximo de desvio permitido ao reduzir a resolução para o ajuste de Resolução Máxima. Se você aumenta este número, a impressão terá menos acuidade, mas o G-Code será menor." + +#~ msgctxt "support_join_distance description" +#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one." +#~ msgstr "Distância máxima entre as estruturas de suporte nas direções X/Y. Quando estrutura separadas estão mais perto que este valor, as estruturas são combinadas em uma única." + +#~ msgctxt "flow_rate_max_extrusion_offset description" +#~ msgid "The maximum distance in mm to compensate." +#~ msgstr "A distância máxima em mm a compensar." + +#~ msgctxt "spaghetti_max_height description" +#~ msgid "The maximum height of inside space which can be combined and filled from the top." +#~ msgstr "A altura máxima do espaço interior que pode ser combinado e preenchido a partir do topo." + +#~ msgctxt "jerk_support_interface description" +#~ msgid "The maximum instantaneous velocity change with which the roofs and bottoms of support are printed." +#~ msgstr "A mudança instantânea máxima de velocidade em uma direção com que a base e o topo dos suporte é impresso." + +#~ msgctxt "max_feedrate_z_override description" +#~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed." +#~ msgstr "A velocidade máxima com que o eixo Z é movido. Colocar isto em zero faz com que a impressão use os defaults de firmware para a velocidade máxima de Z." + +#~ msgctxt "mold_width description" +#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." +#~ msgstr "A distância mínima entre o exterior do molde e do modelo." + +#~ msgctxt "min_odd_wall_line_width description" +#~ msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width," +#~ msgstr "A largura mínima de filete para as paredes multifiletes de preenchimento de vão de filete central. Este ajuste determina em que espessura de modelo nós alternamos de imprimir dois filetes de parede para imprimir duas paredes externas e uma parede central no centro. Uma Largura Mínima de Filete de Parede Ímpar leva a uma largura máxima de filete de parede par mais alta. A largura máxima de filete de parede par é calculada como 2 * Largura Mínima de Filete de Parede Par." + +#~ msgctxt "flow_rate_extrusion_offset_factor description" +#~ msgid "The multiplication factor for the flow rate -> distance translation." +#~ msgstr "O fator de multiplicação para a tradução entre taxa de fluxo -> distância." + +#~ msgctxt "support_tree_wall_count description" +#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." +#~ msgstr "O número de filetes da parede dos galhos do suporte em árvore. Paredes mais espessas tomarão mais tempo pra imprimir mas não tombarão facilmente." + +#~ msgctxt "spaghetti_inset description" +#~ msgid "The offset from the walls from where the spaghetti infill will be printed." +#~ msgstr "O deslocamento a partir das paredes de onde o preenchimento espaguete será impresso." + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction." +#~ msgstr "Padrão ou estampa do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague trocam de direção em camadas alternadas, reduzindo custo de material. Os padrões de grade, triângulo, cúbico, tetraédrico e concêntrico são totalmente impressos a cada camada. Os padrões cúbico e tetraédrico mudam a cada camada para prover uma distribuição mais igualitária de força para cada direção." + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." +#~ msgstr "O padrão do material de preenchimento da impressão. Preenchimento de Linhas e Ziguezague trocam direções em camadas alternadas, reduzindo custo do material. Os padrões de Grade, Triângulo, Tri-Hexágono, Cúbico, Octeto, Quarto Cúbico, Cruzado e Concêntrico são totalmente impressos em cada camada. Os preenchimentos Cúbico, Quarto Cúbico e Octeto mudam em cada camada para prover uma distribuição mais uniforme de forças em cada direção." + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." +#~ msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague mudam de direção em camadas alternadas, reduzindo o custo do material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são impressos em totalidade a cada camada. Os padrões giróide, cúbico, quarto cúbico e octeto mudam a cada camada para prover uma distribuição mais igualitária de força em cada direção." + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." +#~ msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague trocam de direção em camadas alternadas, reduzindo o custo de material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são impressos a cada camada. Os preenchimentos giroide, cúbico, quarto cúbico e octeto mudam em cada camada para prover uma distribuição mais uniforme de força em cada direção. O preenchimento de relâmpago tenta minimizar o material suportando apenas os tetos (internos) do objeto. Como tal, a porcentagem de preenchimento somente é 'válida' uma camada abaixo do que quer que seja que ela precise para suportar o modelo." + +#~ msgctxt "wall_add_middle_threshold description" +#~ msgid "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." +#~ msgstr "A largura de filete mínima, como fator da largura de filete normal, acima da qual um filete central (se já não houver algum) será adicionado. Reduza este ajuste para usar mais e e mais finos filetes. Aumente para usar menos, mais largos filetes. Note que isto se aplica -como se- a forma inteira devesse ser preenchida com paredes, portanto o centro aqui se refere ao meio do objeto entre duas arestas externas da forma, mesmo se houver preenchimento ou contornos na impressão ao invés de paredes." + +#~ msgctxt "wall_split_middle_threshold description" +#~ msgid "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." +#~ msgstr "A largura de filete mínima, como fator da largura de filete normal, acima da qual o filete central (se houver algum) será dividido em dois. Reduza este ajuste para usar mais e maiores filetes. Aumente para usar menos e menores filetes. Note que isto se aplica -como se- a forma inteira devesse ser preenchida com parede, dado que o centro aqui se refere ao meio do objeto entre duas arestas externas da forma, mesmo se houver preenchimento ou (outros) contornos na impressão ao invés de paredes." + +#~ msgctxt "speed_support_interface description" +#~ msgid "The speed at which the roofs and bottoms of support are printed. Printing the them at lower speeds can improve overhang quality." +#~ msgstr "A velocidade em que o topo e base dos suportes são impressos. Imprimi-lo a menores velocidade pode melhor a qualidade das seções pendentes." + +#~ msgctxt "speed_layer_0 description" +#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." +#~ msgstr "A velocidade para a camada inicial. Um valor menor é aconselhado para aprimorar a aderência à mesa de impressão." + +#~ msgctxt "build_volume_temperature description" +#~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted." +#~ msgstr "A temperatura usada para o volume de construção. Se o valor for zero, a temperatura de volume de impressão não será ajustada." + +#~ msgctxt "material_print_temperature_layer_0 description" +#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +#~ msgstr "A temperatura usada para imprimir a primeira camada. Coloque 0 para desabilitar processamento especial da camada inicial." + +#~ msgctxt "material_print_temperature description" +#~ msgid "The temperature used for printing. Set at 0 to pre-heat the printer manually." +#~ msgstr "Temperatura usada para a impressão. COloque em '0' para pré-aquecer a impressora manualmente." + +#~ msgctxt "material_bed_temperature_layer_0 description" +#~ msgid "The temperature used for the heated build plate at the first layer." +#~ msgstr "A temperatura usada para a mesa aquecida na primeira camada." + +#~ msgctxt "material_bed_temperature description" +#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." +#~ msgstr "A temperatura usada para a plataforma de impressão aquecida. Se for 0, a temperatura da mesa não será ajustada." + +#~ msgctxt "material_bed_temperature description" +#~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print." +#~ msgstr "A temperatura usada pela mesa aquecida de impressão. Se for 0, a mesa não aquecerá para esta impressão." + +#~ msgctxt "material_bed_temperature description" +#~ msgid "The temperature used for the heated build plate. Set at 0 to pre-heat the printer manually." +#~ msgstr "A temperatura usada para a mesa aquecida. Coloque em '0' para pré-aquecer a impressora manualmente." + +#~ msgctxt "prime_tower_wall_thickness description" +#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." +#~ msgstr "A espessura da torre de purga (que é oca). Uma espessura maior que a metade do volume mínimo da torre de purga resultará em uma torre de purga densa." + +#~ msgctxt "wall_thickness description" +#~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +#~ msgstr "A espessura das paredes na direção horizontal. Este valor dividido pela largura de extrusão da parede define o número de paredes." + +#~ msgctxt "support_bottom_height description" +#~ msgid "The thickness of the support bottoms. This controls the number of dense layers are printed on top of places of a model on which support rests." +#~ msgstr "A espessura da base do suporte. Isto controla o número de camadas densas que são impressas no topo de lugares do modelo em que o suporte se assenta." + +#~ msgctxt "support_tree_wall_thickness description" +#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." +#~ msgstr "A espessura das paredes dos galhos do suporte em árvore. Paredes mais espessas tomarão mais tempo pra imprimir mas não tombarão facilmente." + +#~ msgctxt "machine_gcode_flavor description" +#~ msgid "The type of gcode to be generated." +#~ msgstr "Tipo de G-Code a ser gerado para a impressora." + +#~ msgctxt "raft_smoothing description" +#~ msgid "This setting control how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +#~ msgstr "Este ajuste controla quantos cantos interiores no contorno do raft são arredondados. Cantos no sentido interior são arredondados para um semicírculo com raio igual ao valor dado aqui. Este ajuste também remove buracos que sejam menores que tal círculo no contorno do raft." + +#~ msgctxt "adaptive_layer_height_threshold description" +#~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." +#~ msgstr "Limite até onde se usa uma camada menor ou não. Este número é comparado à tangente da ladeira mais vertical da camada." + +#~ msgctxt "wireframe_roof_outer_delay description" +#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." +#~ msgstr "El tiempo empleado en los perímetros exteriores del agujero que se convertirá en un techo. Cuanto mayor sea el tiempo, mejor será la conexión. Solo se aplica a la impresión de alambre." + +#~ msgctxt "max_skin_angle_for_expansion description" +#~ msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal, while an angle of 90° is vertical." +#~ msgstr "Superfícies Superiores e/ou Inferiores de seu objeto com um ângulo maior que este ajuste não terão seus contornos superior/inferior expandidos. Isto evita que expandam as áreas estreitas de contorno que são criadas quando a superfície do modelo tem uma inclinação praticamente vertical. Um ângulo de 0° é horizontal, um ângulo de 90° é vertical." + +#~ msgctxt "support_tree_enable label" +#~ msgid "Tree Support" +#~ msgstr "Suporte de Árvore" + +#~ msgctxt "support_tree_angle label" +#~ msgid "Tree Support Branch Angle" +#~ msgstr "Ângulo do Galho do Suporte em Árvore" + +#~ msgctxt "support_tree_branch_diameter label" +#~ msgid "Tree Support Branch Diameter" +#~ msgstr "Diâmetro de Galho do Suporte em Árvore" + +#~ msgctxt "support_tree_branch_diameter_angle label" +#~ msgid "Tree Support Branch Diameter Angle" +#~ msgstr "Ângulo do Diâmetro do Galho do Suporte em Árvore" + +#~ msgctxt "support_tree_branch_distance label" +#~ msgid "Tree Support Branch Distance" +#~ msgstr "Distância dos Galhos do Suporte em Árvore" + +#~ msgctxt "support_tree_collision_resolution label" +#~ msgid "Tree Support Collision Resolution" +#~ msgstr "Resolução de Colisão do Suporte em Árvore" + +#~ msgctxt "support_tree_max_diameter label" +#~ msgid "Tree Support Trunk Diameter" +#~ msgstr "Diâmetro de Tronco do Suporte em Árvore" + +#~ msgctxt "support_tree_wall_count label" +#~ msgid "Tree Support Wall Line Count" +#~ msgstr "Número de Filetes da Parede do Suporte em Árvore" + +#~ msgctxt "support_tree_wall_thickness label" +#~ msgid "Tree Support Wall Thickness" +#~ msgstr "Espessura de Parede do Suporte em Árvore" + +#~ msgctxt "adaptive_layer_height_enabled label" +#~ msgid "Use adaptive layers" +#~ msgstr "Usar camadas adaptativas" + +#~ msgctxt "relative_extrusion description" +#~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any Gcode script is output." +#~ msgstr "Usar extrusão relativa ao invés de absoluta. Usar passos de extrusor relativos permite pós-processamento do G-Code mais fácil. No entanto, não é suportado por todas as impressoras e pode produzir desvios bem pequenos na quantidade de material depositado comparado aos passos de extrusor absolutos. Independente deste ajuste, o modo de extrusão sempre será configurado para absoluto antes que qualquer script de G-Code seja escrito." + +#~ msgctxt "wireframe_bottom_delay label" +#~ msgid "WP Bottom Delay" +#~ msgstr "Espera da Base de IA" + +#~ msgctxt "wireframe_printspeed_bottom label" +#~ msgid "WP Bottom Printing Speed" +#~ msgstr "Velocidade de Impressão da Base da IA" + +#~ msgctxt "wireframe_flow_connection label" +#~ msgid "WP Connection Flow" +#~ msgstr "Fluxo de Conexão da IA" + +#~ msgctxt "wireframe_height label" +#~ msgid "WP Connection Height" +#~ msgstr "Altura da Conexão IA" + +#~ msgctxt "wireframe_printspeed_down label" +#~ msgid "WP Downward Printing Speed" +#~ msgstr "Velocidade de Impressão Descendente de IA" + +#~ msgctxt "wireframe_drag_along label" +#~ msgid "WP Drag Along" +#~ msgstr "Arrasto de IA" + +#~ msgctxt "wireframe_up_half_speed label" +#~ msgid "WP Ease Upward" +#~ msgstr "Facilitador Ascendente da IA" + +#~ msgctxt "wireframe_fall_down label" +#~ msgid "WP Fall Down" +#~ msgstr "Queda de IA" + +#~ msgctxt "wireframe_flat_delay label" +#~ msgid "WP Flat Delay" +#~ msgstr "Espera Plana de IA" + +#~ msgctxt "wireframe_flow_flat label" +#~ msgid "WP Flat Flow" +#~ msgstr "Fluxo Plano de IA" + +#~ msgctxt "wireframe_flow label" +#~ msgid "WP Flow" +#~ msgstr "Fluxo da IA" + +#~ msgctxt "wireframe_printspeed_flat label" +#~ msgid "WP Horizontal Printing Speed" +#~ msgstr "Velocidade de Impressão Horizontal de IA" + +#~ msgctxt "wireframe_top_jump label" +#~ msgid "WP Knot Size" +#~ msgstr "Tamanho do Nó de IA" + +#~ msgctxt "wireframe_nozzle_clearance label" +#~ msgid "WP Nozzle Clearance" +#~ msgstr "Espaço Livre para o Bico em IA" + +#~ msgctxt "wireframe_roof_drag_along label" +#~ msgid "WP Roof Drag Along" +#~ msgstr "Arrasto do Topo de IA" + +#~ msgctxt "wireframe_roof_fall_down label" +#~ msgid "WP Roof Fall Down" +#~ msgstr "Queda do Topo de IA" + +#~ msgctxt "wireframe_roof_inset label" +#~ msgid "WP Roof Inset Distance" +#~ msgstr "Distância de Penetração do Teto da IA" + +#~ msgctxt "wireframe_roof_outer_delay label" +#~ msgid "WP Roof Outer Delay" +#~ msgstr "Retardo exterior del techo en IA" + +#~ msgctxt "wireframe_printspeed label" +#~ msgid "WP Speed" +#~ msgstr "Velocidade da IA" + +#~ msgctxt "wireframe_straight_before_down label" +#~ msgid "WP Straighten Downward Lines" +#~ msgstr "Endireitar Filetes Descendentes de IA" + +#~ msgctxt "wireframe_strategy label" +#~ msgid "WP Strategy" +#~ msgstr "Estratégia de IA" + +#~ msgctxt "wireframe_top_delay label" +#~ msgid "WP Top Delay" +#~ msgstr "Espera do Topo de IA" + +#~ msgctxt "wireframe_printspeed_up label" +#~ msgid "WP Upward Printing Speed" +#~ msgstr "Velocidade de Impressão Ascendente da IA" + +#, fuzzy +#~ msgctxt "material_bed_temp_wait label" +#~ msgid "Wait for build plate heatup" +#~ msgstr "Aguardar o aquecimento do bico" + +#~ msgctxt "material_print_temp_wait label" +#~ msgid "Wait for nozzle heatup" +#~ msgstr "Aguardar o aquecimento do bico" + +#~ msgctxt "wall_overhang_angle description" +#~ msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging." +#~ msgstr "Paredes que têm inclinação maior que este ângulo serão impressas usando ajustes de seção pendente de parede. Quando o valor for 90, nenhuma parede será tratada como seção pendente." + +#~ msgctxt "support_interface_skip_height description" +#~ msgid "When checking where there's model above the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +#~ msgstr "Quando se verificar onde há modelo sobre suporte, use passos da altura dada. Valores baixos vão fatiar mais lentamente, enquanto valores altos podem fazer o suporte normal ser impresso em lugares onde deveria haver interface de suporte." + +#~ msgctxt "retraction_combing_max_distance description" +#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." +#~ msgstr "Quando não-zero, os movimentos de percurso de combing que são maiores que esta distância usarão retração." + +#~ msgctxt "z_offset_taper_layers description" +#~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print." +#~ msgstr "Quando não for zero, o deslocamento em Z é reduzido a zero depois deste número de camadas. O valor zero significa que o deslocamento em Z permanece constante para todas as camadas da impressão." + +#~ msgctxt "skin_no_small_gaps_heuristic description" +#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." +#~ msgstr "Quando o modelo tem pequenas lacunas verticais, aproximadamente 5% de tempo de computação adicional pode ser gasto ao gerar camada externa superior e inferior nestes espaços estreitos. Em tal caso, desabilite este ajuste." + +#~ msgctxt "wipe_hop_enable description" +#~ msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +#~ msgstr "Sempre que uma retração é feita, a posição Z do extrusor é aumentada para aumentar a distância entre o bico e a impressão. Isso evita que o bico bata na impressão durante movimentos de percurso, reduzindo a chance de descolar a impressão da plataforma." + +#~ msgctxt "clean_between_layers description" +#~ msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." +#~ msgstr "Incluir ou não o G-Code para movimento de limpeza de bico (wipe) entre camadas. Habilitar este ajuste pode influenciar o comportamento de retração na mudança de camadas. Por favor use os ajustes de Retração de Limpeza para controlar retração nas camadas onde o script de limpeza funcionará." + +#~ msgctxt "print_sequence description" +#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." +#~ msgstr "Esta opção decide se vocÊ deseja imprimir todos os modelos de uma só vez ou um modelo de cada vez. O modo de um modelo de cada vez só é possível se os modelos estiverem separados de tal forma que a cabeça de impressão possa se mover no meio e todos os modelos sejam mais baixos que a distância entre o bico e os carros X ou Y." + +#~ msgctxt "print_sequence description" +#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes. " +#~ msgstr "Opção que dz se se imprime todos os modelos uma camada por vez, ou se se espera que cada um termine para ir para o próximo. Modo um de cada vez é possível se a) somente um extrusor estiver habilitado e b) todos os modelos estiverem separados de maneira que a cabeça de impressão possa se mover entre eles e todos os modelos forem mais baixos que a distância entre o bico e os eixos X/Y." + +#~ msgctxt "spaghetti_infill_stepped description" +#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." +#~ msgstr "Opção para ou se imprimir o preenchimento espaguete em passos discretos ou extrudar todo o filamento de preenchimento no final da impressão." + +#~ msgctxt "support_interface_line_width description" +#~ msgid "Width of a single support interface line." +#~ msgstr "Largura de extrusão de um filete usado na interface da estrutura de suporte com o modelo." + +#~ msgctxt "dual_pre_wipe label" +#~ msgid "Wipe Nozzle After Switch" +#~ msgstr "Limpar Bico Depois da Troca" + +#~ msgctxt "wipe_hop_enable label" +#~ msgid "Wipe Z Hop When Retracted" +#~ msgstr "Salto Z da Limpeza Quando Retraída" + +#~ msgctxt "wireframe_enabled label" +#~ msgid "Wire Printing" +#~ msgstr "Impressão em Arame" + +#~ msgctxt "z_offset_taper_layers label" +#~ msgid "Z Offset Taper Layers" +#~ msgstr "Camadas de Amenização do Deslocamento Z" + +#~ msgctxt "support_zag_skip_count label" +#~ msgid "ZigZag Connection Skip Count" +#~ msgstr "Contagem de Pulos das Conexões de Ziguezague" + +#~ msgctxt "blackmagic description" +#~ msgid "category_blackmagic" +#~ msgstr "categoria_blackmagic" + +#~ msgctxt "meshfix description" +#~ msgid "category_fixes" +#~ msgstr "reparos_de_categoria" + +#~ msgctxt "experimental description" +#~ msgid "experimental!" +#~ msgstr "experimental!" From 1d8918f30d8f777f90c62c96abb4602ebd1d47db Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Fri, 24 Nov 2023 10:18:11 +0100 Subject: [PATCH 144/765] Use conf to get i18n options This will give us more finegrained control if we want the pot files extracted or build the mo files Contributes to CURA-11300 --- conanfile.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/conanfile.py b/conanfile.py index e8cc61e7bcc..b67fdeb0214 100644 --- a/conanfile.py +++ b/conanfile.py @@ -52,6 +52,10 @@ def set_version(self): if not self.version: self.version = "5.6.0-beta.2" + @property + def _i18n_options(self): + return self.conf.get("user.i18n:options", default = {"extract": True, "build": True}, check_type = dict) + @property def _pycharm_targets(self): return self.conan_data["pycharm_targets"] @@ -407,7 +411,7 @@ def generate(self): entitlements_file=entitlements_file if self.settings.os == "Macos" else "None" ) - if self.options.get_safe("enable_i18n", False): + if self.options.get_safe("enable_i18n", False) and self._i18n_options["extract"]: # Update the po and pot files vb = VirtualBuildEnv(self) vb.generate() @@ -418,7 +422,7 @@ def generate(self): pot.generate() def build(self): - if self.options.get_safe("enable_i18n", False): + if self.options.get_safe("enable_i18n", False) and self._i18n_options["build"]: for po_file in self.source_path.joinpath("resources", "i18n").glob("**/*.po"): mo_file = Path(self.build_folder, po_file.with_suffix('.mo').relative_to(self.source_path)) mo_file = mo_file.parent.joinpath("LC_MESSAGES", mo_file.name) From b7c1022ed1f2a6fa7cb586439ff826156cb70385 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Fri, 24 Nov 2023 10:20:46 +0100 Subject: [PATCH 145/765] Use conf to get Cura version --- conanfile.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/conanfile.py b/conanfile.py index b67fdeb0214..0796a71bae5 100644 --- a/conanfile.py +++ b/conanfile.py @@ -261,7 +261,7 @@ def _generate_pyinstaller_spec(self, location, entrypoint_location, icon_path, e with open(os.path.join(self.recipe_folder, "UltiMaker-Cura.spec.jinja"), "r") as f: pyinstaller = Template(f.read()) - version = self.conf_info.get("user.cura:version", default = self.version, check_type = str) + version = self.conf.get("user.cura:version", default = self.version, check_type = str) cura_version = Version(version) with open(os.path.join(location, "UltiMaker-Cura.spec"), "w") as f: @@ -312,7 +312,7 @@ def configure(self): self.options["curaengine_grpc_definitions"].shared = True def validate(self): - version = self.conf_info.get("user.cura:version", default = self.version, check_type = str) + version = self.conf.get("user.cura:version", default = self.version, check_type = str) if version and Version(version) <= Version("4"): raise ConanInvalidConfiguration("Only versions 5+ are support") @@ -446,7 +446,7 @@ def deploy(self): copy(self, "*", uranium.libdirs[0], str(self._site_packages.joinpath("UM")), keep_path = True) # Generate the GitHub Action version info Environment - version = self.conf_info.get("user.cura:version", default = self.version, check_type = str) + version = self.conf.get("user.cura:version", default = self.version, check_type = str) cura_version = Version(version) env_prefix = "Env:" if self.settings.os == "Windows" else "" activate_github_actions_version_env = Template(r"""echo "CURA_VERSION_MAJOR={{ cura_version_major }}" >> ${{ env_prefix }}GITHUB_ENV From 3811e37c7308434ba90bac66fc236f2781630a1d Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Fri, 24 Nov 2023 12:59:46 +0100 Subject: [PATCH 146/765] Use updated translation tools These also take bundled plugin settings into account Contribute to CURA-11300 --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index 0796a71bae5..8a182354ec2 100644 --- a/conanfile.py +++ b/conanfile.py @@ -25,7 +25,7 @@ class CuraConan(ConanFile): settings = "os", "compiler", "build_type", "arch" # FIXME: Remove specific branch once merged to main - python_requires = "translationextractor/[>=2.1.1]@ultimaker/stable" + python_requires = "translationextractor/[>=2.2.0]@ultimaker/stable" options = { "enterprise": ["True", "False", "true", "false"], # Workaround for GH Action passing boolean as lowercase string From 7daba598367ed18c6efb43cdf40e4730ef557ef4 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Fri, 24 Nov 2023 13:45:53 +0100 Subject: [PATCH 147/765] Extract and generate i18n po(t) files for bundled plugin Contribute to CURA-11300 --- resources/i18n/cs_CZ/fdmprinter.def.json.po | 2 +- .../cs_CZ/gradual_flow_settings.def.json.po | 54 + resources/i18n/de_DE/fdmprinter.def.json.po | 2 +- .../de_DE/gradual_flow_settings.def.json.po | 54 + resources/i18n/es_ES/fdmprinter.def.json.po | 2 +- .../es_ES/gradual_flow_settings.def.json.po | 54 + resources/i18n/fdmprinter.def.json.pot | 44 +- resources/i18n/fi_FI/fdmprinter.def.json.po | 2 +- .../fi_FI/gradual_flow_settings.def.json.po | 54 + resources/i18n/fr_FR/fdmprinter.def.json.po | 2 +- .../fr_FR/gradual_flow_settings.def.json.po | 54 + .../i18n/gradual_flow_settings.def.json.pot | 58 + resources/i18n/hu_HU/fdmprinter.def.json.po | 2 +- .../hu_HU/gradual_flow_settings.def.json.po | 54 + resources/i18n/it_IT/fdmprinter.def.json.po | 2 +- .../it_IT/gradual_flow_settings.def.json.po | 54 + resources/i18n/ja_JP/fdmprinter.def.json.po | 2 +- .../ja_JP/gradual_flow_settings.def.json.po | 54 + resources/i18n/ko_KR/fdmprinter.def.json.po | 2 +- .../ko_KR/gradual_flow_settings.def.json.po | 54 + resources/i18n/nl_NL/fdmprinter.def.json.po | 2 +- .../nl_NL/gradual_flow_settings.def.json.po | 54 + resources/i18n/pl_PL/fdmprinter.def.json.po | 2 +- .../pl_PL/gradual_flow_settings.def.json.po | 54 + resources/i18n/pt_BR/cura.po | 11292 ++++++------- resources/i18n/pt_BR/fdmprinter.def.json.po | 13722 ++++++++-------- .../pt_BR/gradual_flow_settings.def.json.po | 54 + resources/i18n/pt_PT/fdmprinter.def.json.po | 2 +- .../pt_PT/gradual_flow_settings.def.json.po | 54 + resources/i18n/ru_RU/fdmprinter.def.json.po | 2 +- .../ru_RU/gradual_flow_settings.def.json.po | 54 + resources/i18n/tr_TR/fdmprinter.def.json.po | 2 +- .../tr_TR/gradual_flow_settings.def.json.po | 54 + resources/i18n/zh_CN/fdmprinter.def.json.po | 2 +- .../zh_CN/gradual_flow_settings.def.json.po | 54 + resources/i18n/zh_TW/fdmprinter.def.json.po | 2 +- .../zh_TW/gradual_flow_settings.def.json.po | 54 + 37 files changed, 13500 insertions(+), 12566 deletions(-) create mode 100644 resources/i18n/cs_CZ/gradual_flow_settings.def.json.po create mode 100644 resources/i18n/de_DE/gradual_flow_settings.def.json.po create mode 100644 resources/i18n/es_ES/gradual_flow_settings.def.json.po create mode 100644 resources/i18n/fi_FI/gradual_flow_settings.def.json.po create mode 100644 resources/i18n/fr_FR/gradual_flow_settings.def.json.po create mode 100644 resources/i18n/gradual_flow_settings.def.json.pot create mode 100644 resources/i18n/hu_HU/gradual_flow_settings.def.json.po create mode 100644 resources/i18n/it_IT/gradual_flow_settings.def.json.po create mode 100644 resources/i18n/ja_JP/gradual_flow_settings.def.json.po create mode 100644 resources/i18n/ko_KR/gradual_flow_settings.def.json.po create mode 100644 resources/i18n/nl_NL/gradual_flow_settings.def.json.po create mode 100644 resources/i18n/pl_PL/gradual_flow_settings.def.json.po create mode 100644 resources/i18n/pt_BR/gradual_flow_settings.def.json.po create mode 100644 resources/i18n/pt_PT/gradual_flow_settings.def.json.po create mode 100644 resources/i18n/ru_RU/gradual_flow_settings.def.json.po create mode 100644 resources/i18n/tr_TR/gradual_flow_settings.def.json.po create mode 100644 resources/i18n/zh_CN/gradual_flow_settings.def.json.po create mode 100644 resources/i18n/zh_TW/gradual_flow_settings.def.json.po diff --git a/resources/i18n/cs_CZ/fdmprinter.def.json.po b/resources/i18n/cs_CZ/fdmprinter.def.json.po index b1ebf34fa27..3ec140d2593 100644 --- a/resources/i18n/cs_CZ/fdmprinter.def.json.po +++ b/resources/i18n/cs_CZ/fdmprinter.def.json.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-15 12:26+0000\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" "PO-Revision-Date: 2023-02-16 20:35+0100\n" "Last-Translator: Miroslav Šustek \n" "Language-Team: DenyCZ \n" diff --git a/resources/i18n/cs_CZ/gradual_flow_settings.def.json.po b/resources/i18n/cs_CZ/gradual_flow_settings.def.json.po new file mode 100644 index 00000000000..e65b1822a1f --- /dev/null +++ b/resources/i18n/cs_CZ/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"PO-Revision-Date: 2023-11-24 12:51+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Doba trvání každého kroku v postupné změně průtoku" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Povolit postupné změny průtoku. Když je povoleno, průtok se postupně zvyšuje / snižuje na cílový průtok. Toto je užitečné pro tiskárny s Bowdenovou trubicí, kde se průtok okamžitě nezmění, když se spustí / zastaví extrudér." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Pro jakýkoli pohyb delší než tato hodnota se materiálový průtok resetuje na cílový průtok dráhy" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Velikost kroku diskretizace postupné změny průtoku" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Postupné změny průtoku povoleny" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Maximální zrychlení postupných změn průtoku" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Maximální zrychlení průtoku pro první vrstvu" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximální zrychlení pro postupné změny průtoku" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimální rychlost pro postupné změny průtoku pro první vrstvu" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Doba trvání resetování průtoku" diff --git a/resources/i18n/de_DE/fdmprinter.def.json.po b/resources/i18n/de_DE/fdmprinter.def.json.po index 12eb435dd81..16bd7baadbf 100644 --- a/resources/i18n/de_DE/fdmprinter.def.json.po +++ b/resources/i18n/de_DE/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-15 12:26+0000\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/resources/i18n/de_DE/gradual_flow_settings.def.json.po b/resources/i18n/de_DE/gradual_flow_settings.def.json.po new file mode 100644 index 00000000000..5288002c6eb --- /dev/null +++ b/resources/i18n/de_DE/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"PO-Revision-Date: 2023-11-24 12:51+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Dauer der einzelnen Schritte bei der stufenweisen Änderung des Flusses" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Aktivieren Sie stufenweise Flussänderungen. Wenn diese Option aktiviert ist, wird der Fluss stufenweise auf den Sollwert des Flusses erhöht bzw. verringert. Dies ist bei Druckern mit Bowden-Röhren sinnvoll, bei denen der Fluss nicht sofort geändert wird, sobald der Extrudermotor startet/stoppt." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Bei jeder Fahrtbewegung, die diesen Wert überschreitet, wird der Materialfluss auf den Sollwert des Flusses für den Weg zurückgesetzt" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Schrittgröße der stufenweisen Fluss-Diskretisierung" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Stufenweiser Fluss aktiviert" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Maximale Beschleunigung bei stufenweisem Fluss" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Maximale Flussbeschleunigung bei erster Schicht" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximale Beschleunigung für stufenweise Änderung des Flusses" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Mindestgeschwindigkeit für stufenweise Änderung des Flusses in der ersten Schicht" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Flussdauer zurücksetzen" diff --git a/resources/i18n/es_ES/fdmprinter.def.json.po b/resources/i18n/es_ES/fdmprinter.def.json.po index 25480e8a560..acb175302a3 100644 --- a/resources/i18n/es_ES/fdmprinter.def.json.po +++ b/resources/i18n/es_ES/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-15 12:26+0000\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/resources/i18n/es_ES/gradual_flow_settings.def.json.po b/resources/i18n/es_ES/gradual_flow_settings.def.json.po new file mode 100644 index 00000000000..c183912ef65 --- /dev/null +++ b/resources/i18n/es_ES/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"PO-Revision-Date: 2023-11-24 12:51+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duración de cada paso en el cambio de flujo gradual" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Activar cambios graduales de flujo. Cuando está activado, el flujo aumenta/disminuye gradualmente hasta el flujo objetivo. Esto es útil para impresoras con un tubo bowden donde el flujo no cambia inmediatamente cuando el motor del extrusor se enciende/apaga." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Para cualquier movimiento de desplazamiento superior a este valor, el flujo de material se restablece con el flujo objetivo de las trayectorias" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Tamaño del paso de discretización del flujo gradual" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Flujo gradual activado" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Aceleración máxima del flujo gradual" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Aceleración máxima del flujo de la capa inicial" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Aceleración máxima para los cambios de flujo graduales" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Velocidad mínima para los cambios de flujo graduales de la primera capa" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Restablecer duración del flujo" diff --git a/resources/i18n/fdmprinter.def.json.pot b/resources/i18n/fdmprinter.def.json.pot index d6fe0f96cef..bf94f19c816 100644 --- a/resources/i18n/fdmprinter.def.json.pot +++ b/resources/i18n/fdmprinter.def.json.pot @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-15 12:26+0000\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -5476,45 +5476,3 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "" - -### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better. - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts\/stops." -msgstr "" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "" \ No newline at end of file diff --git a/resources/i18n/fi_FI/fdmprinter.def.json.po b/resources/i18n/fi_FI/fdmprinter.def.json.po index fff8528d166..73fd8da0dcf 100644 --- a/resources/i18n/fi_FI/fdmprinter.def.json.po +++ b/resources/i18n/fi_FI/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-15 12:26+0000\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" "PO-Revision-Date: 2022-07-15 11:17+0200\n" "Last-Translator: Bothof \n" "Language-Team: Finnish\n" diff --git a/resources/i18n/fi_FI/gradual_flow_settings.def.json.po b/resources/i18n/fi_FI/gradual_flow_settings.def.json.po new file mode 100644 index 00000000000..56b299bfef0 --- /dev/null +++ b/resources/i18n/fi_FI/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"PO-Revision-Date: 2023-11-24 12:51+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/i18n/fr_FR/fdmprinter.def.json.po b/resources/i18n/fr_FR/fdmprinter.def.json.po index ce10b7aff01..bcb82fdf203 100644 --- a/resources/i18n/fr_FR/fdmprinter.def.json.po +++ b/resources/i18n/fr_FR/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-15 12:26+0000\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/resources/i18n/fr_FR/gradual_flow_settings.def.json.po b/resources/i18n/fr_FR/gradual_flow_settings.def.json.po new file mode 100644 index 00000000000..ee753f511fb --- /dev/null +++ b/resources/i18n/fr_FR/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"PO-Revision-Date: 2023-11-24 12:51+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Durée de chaque étape du changement progressif de débit" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Permettre des changements de débit progressifs. Lorsque cette option est activée, le débit est progressivement augmenté/diminué jusqu'au débit cible. Cette option est utile pour les imprimantes équipées d'un tube Bowden avec lesquelles le débit n'est pas immédiatement modifié lorsque le moteur de l'extrudeuse démarre/s'arrête." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Pour tout déplacement plus long que cette valeur, le débit de matière est réinitialisé au débit cible du parcours" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Taille du pas de discrétisation du débit progressif" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Débit progressif activé" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Accélération maximale du débit progressif" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Accélération maximale du débit de la couche initiale" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Accélération maximale des changements de débit progressifs" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Vitesse minimale des changements de débit progressifs pour la première couche" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Réinitialiser la durée du débit" diff --git a/resources/i18n/gradual_flow_settings.def.json.pot b/resources/i18n/gradual_flow_settings.def.json.pot new file mode 100644 index 00000000000..69ac80a24f3 --- /dev/null +++ b/resources/i18n/gradual_flow_settings.def.json.pot @@ -0,0 +1,58 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + + + + + + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" + diff --git a/resources/i18n/hu_HU/fdmprinter.def.json.po b/resources/i18n/hu_HU/fdmprinter.def.json.po index 186e0dc9145..97352c86e5e 100644 --- a/resources/i18n/hu_HU/fdmprinter.def.json.po +++ b/resources/i18n/hu_HU/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-15 12:26+0000\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" "PO-Revision-Date: 2020-03-24 09:43+0100\n" "Last-Translator: Nagy Attila \n" "Language-Team: AT-VLOG\n" diff --git a/resources/i18n/hu_HU/gradual_flow_settings.def.json.po b/resources/i18n/hu_HU/gradual_flow_settings.def.json.po new file mode 100644 index 00000000000..56b299bfef0 --- /dev/null +++ b/resources/i18n/hu_HU/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"PO-Revision-Date: 2023-11-24 12:51+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/i18n/it_IT/fdmprinter.def.json.po b/resources/i18n/it_IT/fdmprinter.def.json.po index 5bfc9c836c1..c43f854923d 100644 --- a/resources/i18n/it_IT/fdmprinter.def.json.po +++ b/resources/i18n/it_IT/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-15 12:26+0000\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/resources/i18n/it_IT/gradual_flow_settings.def.json.po b/resources/i18n/it_IT/gradual_flow_settings.def.json.po new file mode 100644 index 00000000000..cd45dd3ab74 --- /dev/null +++ b/resources/i18n/it_IT/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"PO-Revision-Date: 2023-11-24 12:51+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Durata di ciascuna fase nella modifica del flusso graduale" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Abilita le modifiche del flusso graduale. Se abilitate, il flusso viene gradualmente aumentato/diminuito rispetto al flusso target. Questa impostazione è utile per le stampanti con un tubo bowden in cui il flusso non viene immediatamente modificato all'avvio/all'arresto del motore dell'estrusore." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Per ogni corsa più lunga di questo valore, il flusso di materiale viene reimpostato al flusso target dei percorsi" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Dimensione della fase di discretizzazione del flusso graduale" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Flusso graduale abilitato" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Accelerazione max del flusso graduale" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Accelerazione del flusso max del livello iniziale" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Accelerazione massima per modifiche di flusso graduale" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Velocità minima per le modifiche del flusso graduale per il primo livello" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reimposta durata flusso" diff --git a/resources/i18n/ja_JP/fdmprinter.def.json.po b/resources/i18n/ja_JP/fdmprinter.def.json.po index 0848c2451f0..e3aee14cbfb 100644 --- a/resources/i18n/ja_JP/fdmprinter.def.json.po +++ b/resources/i18n/ja_JP/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-15 12:26+0000\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/resources/i18n/ja_JP/gradual_flow_settings.def.json.po b/resources/i18n/ja_JP/gradual_flow_settings.def.json.po new file mode 100644 index 00000000000..926683a8464 --- /dev/null +++ b/resources/i18n/ja_JP/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"PO-Revision-Date: 2023-11-24 12:51+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "段階的なフローの変化におけるステップごとの時間" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "段階的なフローの変化を有効にできます。有効にすると、フローは目標フローまで段階的に増減します。これは、押し出しモーターの始動/停止時にフローがすぐに変化しないボーデンチューブを備えたプリンターに便利です。" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "この値より長い移動の場合、素材フローは目標フローにリセットされます。" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "段階的なフローの離散化ステップのサイズ" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "段階的なフローが有効" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "段階的なフローの最大加速度" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "初期層の最大フロー加速度" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "フローを段階的に変化させるための最大加速度" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "第1層のフローを段階的に変化させるための最低速度" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "フロー期間をリセット" diff --git a/resources/i18n/ko_KR/fdmprinter.def.json.po b/resources/i18n/ko_KR/fdmprinter.def.json.po index 8dfcca63822..f240c9dbbd5 100644 --- a/resources/i18n/ko_KR/fdmprinter.def.json.po +++ b/resources/i18n/ko_KR/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-15 12:26+0000\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/resources/i18n/ko_KR/gradual_flow_settings.def.json.po b/resources/i18n/ko_KR/gradual_flow_settings.def.json.po new file mode 100644 index 00000000000..a484eae6777 --- /dev/null +++ b/resources/i18n/ko_KR/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"PO-Revision-Date: 2023-11-24 12:51+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "점진적 흐름 변화의 각 단계 지속 시간" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "점진적 흐름 변경을 활성화합니다. 활성화하면 흐름이 목표 흐름까지 점진적으로 증가/감소됩니다. 이는 압출기 모터가 시작/정지될 때 흐름이 즉시 변경되지 않는 보우덴 튜브가 있는 프린터에 유용합니다." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "이 값보다 긴 이동에 대해서는 재료 흐름이 경로 목표 흐름으로 재설정됩니다" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "점진적 흐름 이산화 단계 크기" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "점진적 흐름 활성화" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "점진적 흐름 최대 가속도" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "초기 레이어 최대 흐름 가속도" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "점진적 흐름 변경에 대한 최대 가속도" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "첫 번째 레이어의 점진적인 흐름 변화를 위한 최소 속도" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "흐름 지속 시간 재설정" diff --git a/resources/i18n/nl_NL/fdmprinter.def.json.po b/resources/i18n/nl_NL/fdmprinter.def.json.po index 70cd4c18060..9a3e2db8ba7 100644 --- a/resources/i18n/nl_NL/fdmprinter.def.json.po +++ b/resources/i18n/nl_NL/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-15 12:26+0000\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/resources/i18n/nl_NL/gradual_flow_settings.def.json.po b/resources/i18n/nl_NL/gradual_flow_settings.def.json.po new file mode 100644 index 00000000000..868a6304d1c --- /dev/null +++ b/resources/i18n/nl_NL/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"PO-Revision-Date: 2023-11-24 12:51+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duur van elke stap in de geleidelijke flowverandering" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Geleidelijke veranderingen in flow inschakelen. Indien ingeschakeld, wordt de flow geleidelijk verhoogd/verlaagd tot de doelflow. Dit is handig voor printers met een bowdenbuis waarbij de flow niet onmiddellijk verandert wanneer de extrudermotor start/stopt." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Voor elke verplaatsing die langer is dan deze waarde, wordt de materiaalflow teruggezet op de doelflow van de paden." + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Stapgrootte geleidelijke flowdiscretisatie" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Geleidelijke flow ingeschakeld" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Max. versnelling geleidelijke flow" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Maximale flowversnelling in de beginlaag" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximale versnelling voor geleidelijke flowveranderingen" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimumsnelheid voor geleidelijke flowveranderingen voor de eerste laag" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Flowduur resetten" diff --git a/resources/i18n/pl_PL/fdmprinter.def.json.po b/resources/i18n/pl_PL/fdmprinter.def.json.po index b257ac305a1..70959794f3c 100644 --- a/resources/i18n/pl_PL/fdmprinter.def.json.po +++ b/resources/i18n/pl_PL/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-15 12:26+0000\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" "PO-Revision-Date: 2019-11-15 15:34+0100\n" "Last-Translator: Mariusz Matłosz \n" "Language-Team: Mariusz Matłosz , reprapy.pl\n" diff --git a/resources/i18n/pl_PL/gradual_flow_settings.def.json.po b/resources/i18n/pl_PL/gradual_flow_settings.def.json.po new file mode 100644 index 00000000000..56b299bfef0 --- /dev/null +++ b/resources/i18n/pl_PL/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"PO-Revision-Date: 2023-11-24 12:51+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/i18n/pt_BR/cura.po b/resources/i18n/pt_BR/cura.po index 1e11b80d053..1c4590a0161 100644 --- a/resources/i18n/pt_BR/cura.po +++ b/resources/i18n/pt_BR/cura.po @@ -2,5649 +2,5649 @@ # Copyright (C) 2022 UltiMaker. # This file is distributed under the same license as the Cura package. # Ultimaker , 2022. -# -msgid "" -msgstr "" -"Project-Id-Version: Cura 5.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-31 19:13+0100\n" -"PO-Revision-Date: 2023-11-19 19:51+0100\n" -"Last-Translator: Cláudio Sampaio \n" -"Language-Team: Cláudio Sampaio \n" -"Language: pt_BR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.4.1\n" - -#, python-format -msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." -msgid "%(width).1f x %(depth).1f x %(height).1f mm" -msgstr "%(width).1f x %(depth).1f x %(height).1f mm" - -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 & material" - -msgctxt "@action:label" -msgid "%1 out of %2" -msgstr "%1 de %2" - -msgctxt "@action:label" -msgid "%1 override" -msgid_plural "%1 overrides" -msgstr[0] "%1 sobreposto" -msgstr[1] "%1 sobrepostos" - -msgctxt "@action:label" -msgid "%1, %2 override" -msgid_plural "%1, %2 overrides" -msgstr[0] "%1, %2 sobreposição" -msgstr[1] "%1, %2 sobreposições" - -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1g" - -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1m" - -msgctxt "@action:inmenu menubar:printer" -msgid "&Add Printer..." -msgstr "&Adicionar Impressora..." - -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "Posição da &câmera" - -msgctxt "@action:inmenu menubar:profile" -msgid "&Create profile from current settings/overrides..." -msgstr "&Criar perfil a partir de ajustes/sobreposições atuais..." - -msgctxt "@action:inmenu menubar:profile" -msgid "&Discard current changes" -msgstr "&Descartar ajustes atuais" - -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "&Editar" - -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "&Exportar..." - -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "Arquivo (&F)" - -msgctxt "@action:inmenu menubar:edit" -msgid "&Group Models" -msgstr "A&grupar Modelos" - -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "Ajuda (&H)" - -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Material" - -msgctxt "@action:inmenu menubar:edit" -msgid "&Merge Models" -msgstr "Co&mbinar Modelos" - -msgctxt "@action:inmenu" -msgid "&Multiply Model..." -msgstr "&Multiplicar Modelo..." - -msgctxt "@action:inmenu menubar:file" -msgid "&New Project..." -msgstr "&Novo Projeto..." - -msgctxt "@action:inmenu menubar:file" -msgid "&Open File(s)..." -msgstr "Abrir Arquiv&o(s)..." - -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "Im&pressora" - -msgctxt "@action:inmenu menubar:file" -msgid "&Quit" -msgstr "Sair (&Q)" - -msgctxt "@action:inmenu menubar:edit" -msgid "&Redo" -msgstr "&Refazer" - -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "&Salvar Projeto..." - -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "Aju&stes" - -msgctxt "@action:inmenu menubar:edit" -msgid "&Undo" -msgstr "Desfazer (&U)" - -msgctxt "@action:inmenu menubar:profile" -msgid "&Update profile with current settings/overrides" -msgstr "At&ualizar perfil com valores e sobreposições atuais" - -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "&Ver" - -msgctxt "@label" -msgid "*You will need to restart the application for these changes to have effect." -msgstr "*Você precisa reiniciar a aplicação para que estas alterações tenham efeito." - -msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "" -"- Adicione perfis de material e plug-ins do Marketplace\n" -"- Faça backup e sincronize seus perfis de materiais e plugins\n" -"- Compartilhe ideias e consiga ajuda de mais de 48.000 usuários da comunidade UltiMaker" - -msgctxt "@heading" -msgid "-- incomplete --" -msgstr "-- incompleto --" - -msgctxt "@action:label" -msgid "1mm Transmittance (%)" -msgstr "Transmitância de 1mm (%)" - -msgctxt "@info:title" -msgid "3D Model Assistant" -msgstr "Assistente de Modelo 3D" - -msgctxt "@action:inmenu menubar:view" -msgid "3D View" -msgstr "Visão &3D" - -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "Visão 3D" - -msgctxt "@item:inlistbox" -msgid "3MF File" -msgstr "Arquivo 3MF" - -msgctxt "name" -msgid "3MF Reader" -msgstr "Leitor de 3MF" - -msgctxt "name" -msgid "3MF Writer" -msgstr "Gerador de 3MF" - -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "O complemento de Escrita 3MF está corrompido." - -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "Arquivo 3MF" - -msgctxt "@info, %1 is the name of the custom profile" -msgid "%1 custom profile is active and you overwrote some settings." -msgstr "%1 perfil personalizado está ativo e alguns ajustes foram sobrescritos." - -msgctxt "@info, %1 is the name of the custom profile" -msgid "%1 custom profile is overriding some settings." -msgstr "%1 perfil personalizado está sobrepondo alguns ajustes." - -msgctxt "@label %i will be replaced with a profile name" -msgid "Only user changed settings will be saved in the custom profile.
    For materials that support it, the new custom profile will inherit properties from %1." -msgstr "Somente ajuste alterados por usuário serão salvos no perfil personalizado.
    Para materiais que o suportam, este novo perfil personalizado herdará propriedades de %1." - -#, python-brace-format -msgctxt "@label OpenGL renderer" -msgid "
  • OpenGL Renderer: {renderer}
  • " -msgstr "
  • Renderizador da OpenGL: {renderer}
  • " - -#, python-brace-format -msgctxt "@label OpenGL vendor" -msgid "
  • OpenGL Vendor: {vendor}
  • " -msgstr "
  • Fornecedor da OpenGL: {vendor}
  • " - -#, python-brace-format -msgctxt "@label OpenGL version" -msgid "
  • OpenGL Version: {version}
  • " -msgstr "
  • Versão da OpenGL: {version}
  • " - -msgctxt "@label crash message" -msgid "" -"

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" -"

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n" -" " -msgstr "" -"

    Um erro fatal ocorreu no Cura. Por favor nos envie este Relatório de Falha para consertar o problema

    \n" -"

    Por favor use o botão \"Enviar relatório\" para publicar um relatório de erro automaticamente em nossos servidores

    \n" -" " - -msgctxt "@label crash message" -msgid "" -"

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n" -"

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n" -"

    Backups can be found in the configuration folder.

    \n" -"

    Please send us this Crash Report to fix the problem.

    \n" -" " -msgstr "" -"

    Oops, o UltiMaker Cura encontrou algo que não parece estar correto.

    \n" -"

    Encontramos um erro irrecuperável durante a inicialização. Ele foi possivelmente causado por arquivos de configuração incorretos. Sugerimos salvar e restabelecer sua configuração.

    \n" -"

    Cópias salvas podem ser encontradas na pasta de configuração.

    \n" -"

    Por favor nos envie este Relatório de Falha para consertar o problema.

    \n" -" " - -#, python-brace-format -msgctxt "@info:status" -msgid "" -"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" -"

    {model_names}

    \n" -"

    Find out how to ensure the best possible print quality and reliability.

    \n" -"

    View print quality guide

    " -msgstr "" -"

    Um ou mais modelos 3D podem não ser impressos otimamente devido ao tamanho e configuração de material:

    \n" -"

    {model_names}

    \n" -"

    Descubra como assegurar a melhor qualidade de impressão e confiabilidade possível.

    \n" -"

    Ver guia de qualidade de impressão

    " - -msgctxt "@label" -msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" -msgstr "Uma impressão USB está em progresso, fechar o Cura interromperá esta impressão. Tem certeza?" - -msgctxt "info:status" -msgid "A cloud connection is not available for a printer" -msgid_plural "A cloud connection is not available for some printers" -msgstr[0] "Conexão de nuvem não está disponível para uma impressora" -msgstr[1] "Conexão de nuvem não está disponível para algumas impressoras" - -msgctxt "@message" -msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." -msgstr "Uma impressão ainda está em progresso. O Cura não pode iniciar outra impressão via USB até que a impressão anterior tenha completado." - -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "Arquivo AMF" - -msgctxt "name" -msgid "AMF Reader" -msgstr "Leitor AMF" - -msgctxt "@label" -msgid "Abort" -msgstr "Abortar" - -msgctxt "@label" -msgid "Abort Print" -msgstr "Abortar Impressão" - -msgctxt "@window:title" -msgid "Abort print" -msgstr "Abortar impressão" - -msgctxt "@label:status" -msgid "Aborted" -msgstr "Abortado" - -msgctxt "@label" -msgid "Aborting..." -msgstr "Abortando..." - -msgctxt "@label:status" -msgid "Aborting..." -msgstr "Abortando..." - -msgctxt "@title:window The argument is the application name." -msgid "About %1" -msgstr "Sobre %1" - -msgctxt "@action:inmenu menubar:help" -msgid "About..." -msgstr "Sobre..." - -msgctxt "@button" -msgid "Accept" -msgstr "Aceitar" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Aceita G-Code e o envia a uma impressora. O complemento também pode atualizar o firmware." - -msgctxt "@label" -msgid "Account synced" -msgstr "Conta sincronizada" - -msgctxt "@label:status" -msgid "Action required" -msgstr "Necessária uma ação" - -msgctxt "@action:button" -msgid "Activate" -msgstr "Ativar" - -msgctxt "@label" -msgid "Active print" -msgstr "Impressão ativa" - -msgctxt "@action:button" -msgid "Add" -msgstr "Adicionar" - -msgctxt "@button" -msgid "Add" -msgstr "Adicionar" - -msgctxt "@action:button" -msgid "Add New" -msgstr "Adicionar Novo" - -msgctxt "@title:window" -msgid "Add Printer" -msgstr "Adicionar Impressora" - -msgctxt "@button" -msgid "Add UltiMaker printer via Digital Factory" -msgstr "Adicionar impressora UltiMaker via Digital Factory" - -msgctxt "@label" -msgid "Add a Cloud printer" -msgstr "Adicionar uma impressora de Nuvem" - -msgctxt "@label" -msgid "Add a networked printer" -msgstr "Adicionar uma impressora de rede" - -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "Adicionar uma impressora local" - -msgctxt "@action" -msgid "Add a script" -msgstr "Adicionar um script" - -msgctxt "@option:check" -msgid "Add icon to system tray *" -msgstr "Adicionar ícone à bandeja do sistema *" - -msgctxt "@button" -msgid "Add local printer" -msgstr "Adicionar impressora local" - -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "Adicionar prefixo de máquina ao nome do trabalho" - -msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" -msgstr "Adicionar ajustes de materiais e plugins do Marketplace" - -msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate." -msgid "Add more materials from Marketplace" -msgstr "Adicionar mais materiais ao Marketplace" - -msgctxt "@button" -msgid "Add printer" -msgstr "Adicionar impressora" - -msgctxt "@label" -msgid "Add printer" -msgstr "Adicionar impressora" - -msgctxt "@label" -msgid "Add printer by IP" -msgstr "Adicionar impressora por IP" - -msgctxt "@label" -msgid "Add printer by IP address" -msgstr "Adicionar impressora por endereço IP" - -msgctxt "@button" -msgid "Add printer manually" -msgstr "Adicionar impressora manualmente" - -#, python-brace-format -msgctxt "info:status Filled in with printer name and printer model." -msgid "Adding printer {name} ({model}) from your account" -msgstr "Adicionando impressora {name} ({model}) da sua conta" - -msgctxt "@label" -msgid "Address" -msgstr "Endereço" - -msgctxt "@label" -msgid "Adhesion" -msgstr "Aderência" - -msgctxt "@label" -msgid "Adhesion Information" -msgstr "Informação sobre Aderência" - -msgctxt "@label" -msgid "Adjusts the density of infill of the print." -msgstr "Ajusta a densidade do preenchimento da impressão." - -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "Ajusta o posicionamento das estruturas de suporte. Este posicionamento pode ser ajustado à plataforma de impressão ou em todo lugar. Se for escolhido em todo lugar, as estruturas de suporte também se apoiarão no próprio modelo." - -msgctxt "@label Header for list of settings." -msgid "Affected By" -msgstr "Afetado Por" - -msgctxt "@label Header for list of settings." -msgid "Affects" -msgstr "Afeta" - -msgctxt "@button" -msgid "Agree" -msgstr "Concordar" - -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "Todos Os Arquivos (*)" - -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "Todos Os Tipos Suportados ({0})" - -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Permitir enviar dados anônimos" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Permite carregar e exibir arquivos G-Code." - -msgctxt "@option:discardOrKeep" -msgid "Always ask me this" -msgstr "Sempre perguntar" - -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "Sempre me perguntar" - -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "Sempre descartar alterações da configuração" - -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "Sempre importar modelos" - -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "Sempre abrir como projeto" - -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "Sempre transferir as alterações para o novo perfil" - -msgctxt "@info:tooltip" -msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" -msgstr "Um modelo pode ser carregado diminuto se sua unidade for por exemplo em metros ao invés de milímetros. Devem esses modelos ser redimensionados?" - -msgctxt "@label" -msgid "Annealing" -msgstr "Recozimento" - -msgctxt "@label" -msgid "Anonymous" -msgstr "Anônimo" - -msgctxt "@label Description for application component" -msgid "Application framework" -msgstr "Framework de Aplicações" - -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "Aplicar deslocamentos de Extrusão ao G-Code" - -msgctxt "@info:title" -msgid "Are you ready for cloud printing?" -msgstr "Você está pronto para a impressão de nuvem?" - -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" -msgstr "Você tem certeza que quer abortar %1?" - -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "Tem certeza que deseja abortar a impressão?" - -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" -msgstr "Você tem certeza que quer remover %1?" - -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "Você tem certeza que deseja apagar este backup? Isto não pode ser desfeito." - -msgctxt "@label %1 is the application name" -msgid "Are you sure you want to exit %1?" -msgstr "Tem certeza que quer sair de %1?" - -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to move %1 to the top of the queue?" -msgstr "Você tem certeza que quer mover %1 para o topo da fila?" - -#, python-brace-format -msgctxt "@message {printer_name} is replaced with the name of the printer" -msgid "Are you sure you want to remove {printer_name} temporarily?" -msgstr "Tem certeza que quer remover {printer_name} temporariamente?" - -msgctxt "@info:question" -msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings." -msgstr "Tem certeza que quer iniciar novo projeto? Isto esvaziará a mesa de impressão e quaisquer ajustes não salvos." - -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "Tem certeza que deseja remover %1? Isto não poderá ser desfeito!" - -#, python-brace-format -msgctxt "@label {0} is the name of a printer that's about to be deleted." -msgid "Are you sure you wish to remove {0}? This cannot be undone!" -msgstr "Tem certeza que deseja remover {0}? Isto não pode ser defeito!" - -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models" -msgstr "Posicionar Todos os Modelos" - -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models in a grid" -msgstr "Organizar Todos os Modelos em Grade" - -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange Selection" -msgstr "Posicionar Seleção" - -msgctxt "@label:button" -msgid "Ask a question" -msgstr "Fazer uma pergunta" - -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Auto Backup" - -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "Criar um backup automaticamente toda vez que o Cura iniciar." - -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "Automaticamente fazer os modelos caírem na mesa de impressão" - -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Automaticamente atualizar Firmware" - -msgctxt "@label" -msgid "Available networked printers" -msgstr "Impressoras de rede disponíveis" - -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "Imagem BMP" - -msgctxt "@button" -msgid "Back" -msgstr "Voltar" - -msgctxt "@button:tooltip" -msgid "Back" -msgstr "Voltar" - -msgctxt "@info:title" -msgid "Backup" -msgstr "Backup" - -msgctxt "@button" -msgid "Backup Now" -msgstr "Backup Agora" - -msgctxt "@action:button" -msgid "Backup and Reset Configuration" -msgstr "Salvar e Restabelecer Configuração" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Permite backup e restauração da configuração." - -msgctxt "@text" -msgid "Backup and sync your material settings and plugins" -msgstr "Fazer backup e sincronizar seus ajustes de materiais e plugins" - -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "Fazer backup e sincronizar os ajustes do Cura." - -msgctxt "@info:title" -msgid "Backups" -msgstr "Backups" - -msgctxt "@label" -msgid "Balanced" -msgstr "Equilibrado" - -msgctxt "@action:label" -msgid "Base (mm)" -msgstr "Base (mm)" - -msgctxt "@action:inmenu menubar:view" -msgid "Bottom View" -msgstr "Visão de Baixo" - -msgctxt "@label" -msgid "Brand" -msgstr "Marca" - -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "Nivelamento da mesa de impressão" - -msgctxt "@info:title" -msgid "Build Volume" -msgstr "Volume de Impressão" - -msgctxt "@label" -msgid "Build plate" -msgstr "Mesa de Impressão" - -msgctxt "@label" -msgid "Build plate shape" -msgstr "Forma da plataforma de impressão" - -msgctxt "@label" -msgid "Bundled Materials" -msgstr "Materiais Empacotados" - -msgctxt "@label" -msgid "Bundled Plugins" -msgstr "Complementos Empacotados" - -msgctxt "@button" -msgid "Buy spool" -msgstr "Comprar carretel" - -msgctxt "@label Is followed by the name of an author" -msgid "By" -msgstr "Por" - -msgctxt "@label Description for application dependency" -msgid "C/C++ Binding library" -msgstr "Biblioteca de Ligações C/C++" - -msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "Câmbio de Ativos Digitais COLLADA" - -msgctxt "@info:status" -msgid "Calculated" -msgstr "Calculado" - -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "Renderização de câmera:" - -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "Visão de câmera" - -msgctxt "@info:title" -msgid "Can't Find Location" -msgstr "Não Foi Encontrada Localização" - -msgctxt "@info:title" -msgid "Can't Open Project File" -msgstr "Não Foi Possível Abrir o Arquivo de Projeto" - -msgctxt "@label" -msgid "Can't connect to your UltiMaker printer?" -msgstr "Não consegue conectar à sua impressora UltiMaker?" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags !" -msgid "Can't import profile from {0} before a printer is added." -msgstr "Não foi possível importar perfil de {0} antes de uma impressora ser adicionada." - -#, python-brace-format -msgctxt "@info:status" -msgid "Can't open any other file if G-code is loading. Skipped importing {0}" -msgstr "Não é possível abrir nenhum outro arquivo se G-Code estiver sendo carregado. Pulando importação de {0}" - -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "Não foi possível escrever no arquivo UFP:" - -msgctxt "@action:button" -msgid "Cancel" -msgstr "Cancelar" - -msgctxt "@button" -msgid "Cancel" -msgstr "Cancelar" - -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Cancelar" - -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "Mensagem de alera no leitor de G-Code" - -msgctxt "@action:inmenu" -msgid "Ce&nter Model on Platform" -msgstr "Ce&ntralizar Modelo na Mesa" - -msgctxt "@action:inmenu menubar:edit" -msgid "Center Selected" -msgstr "Centralizar Selecionados" - -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "Centralizar câmera quanto o item é selecionado" - -msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "Alterar scripts de pós-processamento ativos." - -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "Alterar material %1 de %2 para %3." - -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "Alterar núcleo de impressão %1 de %2 para %3." - -msgctxt "@info:title" -msgid "Changes detected from your UltiMaker account" -msgstr "Alterações detectadas de sua conta UltiMaker" - -msgctxt "@title" -msgid "Changes from your account" -msgstr "Alterações da sua conta" - -msgctxt "@label:textbox" -msgid "Check all" -msgstr "Verificar tudo" - -msgctxt "@button" -msgid "Check for account updates" -msgstr "Verificar atualizações da conta" - -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "Verificar atualizações na inicialização" - -msgctxt "@label" -msgid "Checking..." -msgstr "Verificando..." - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Verifica por atualizações de firmware." - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Verifica modelos e configurações de impressão por possíveis problema e dá sugestões." - -msgctxt "@label" -msgid "" -"Chooses between the techniques available to generate support. \n" -"\n" -"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" -"\n" -"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "" -"Escolhe entre as técnicas disponíveis para a geração de suporte.\n" -"\n" -"Suporte \"Normal\" cria uma estrutura de suporte diretamente abaixo das partes pendentes e continua em linha reta para baixo.\n" -"\n" -"Suporte de \"Árvore\" cria galhos em direção às áreas pendentes que suportam o modelo em suas pontas, e permite que os galhos se espalhem em volta do modelo para suportá-lo a partir da plataforma de impressão tanto quanto possível." - -msgctxt "@action:inmenu menubar:edit" -msgid "Clear Build Plate" -msgstr "Esvaziar a Mesa de Impressão" - -msgctxt "@option:check" -msgid "Clear buildplate before loading model into the single instance" -msgstr "Limpar a plataforma de impressão antes de carregar modelo em instância única" - -msgctxt "@text" -msgid "Click the export material archive button." -msgstr "Clique no botão de exportar arquivo de material." - -msgctxt "@action:button" -msgid "Close" -msgstr "Fechar" - -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" -msgstr "Fechando %1" - -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "Encolher Todas As Categorias" - -msgctxt "@label" -msgid "Color" -msgstr "Cor" - -msgctxt "@action:label" -msgid "Color Model" -msgstr "Modelo de Cor" - -msgctxt "@label" -msgid "Color scheme" -msgstr "Esquema de Cores" - -msgctxt "@info" -msgid "Compare and save." -msgstr "Comparar e salvar." - -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Modo de Compatibilidade" - -msgctxt "@label Description for application dependency" -msgid "Compatibility between Python 2 and 3" -msgstr "Compatibilidade entre Python 2 e 3" - -msgctxt "@title:label" -msgid "Compatible Printers" -msgstr "Impressoras Compatíveis" - -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Diâmetro de material compatível" - -msgctxt "@header" -msgid "Compatible printers" -msgstr "Impressoras compatíveis" - -msgctxt "@header" -msgid "Compatible support materials" -msgstr "Materiais de suporte compatíveis" - -msgctxt "@header" -msgid "Compatible with Material Station" -msgstr "Compatível com Material Station" - -msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "Câmbio de Ativos Digitais COLLADA Comprimido" - -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "Arquivo de G-Code Comprimido" - -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Leitor de G-Code Comprimido" - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Gerador de G-Code Comprimido" - -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Alterações de Configuração" - -msgctxt "@error" -msgid "Configuration not supported" -msgstr "Configuração não suportada" - -msgctxt "@header" -msgid "Configurations" -msgstr "Configurações" - -msgctxt "@label" -msgid "Configurations" -msgstr "Configurações" - -msgctxt "@action:inmenu" -msgid "Configure Cura..." -msgstr "Configurar Cura..." - -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "Configurar ajustes por Modelo" - -msgctxt "@action" -msgid "Configure group" -msgstr "Configurar grupo" - -msgctxt "@action:menu" -msgid "Configure setting visibility..." -msgstr "Configurar a visibilidade dos ajustes..." - -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "Confirmar Mudança de Diâmetro" - -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Confirmar Remoção" - -msgctxt "@action:button" -msgid "Connect" -msgstr "Conectar" - -msgctxt "@button" -msgid "Connect" -msgstr "Conectar" - -msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Conectar a Impressora de Rede" - -msgctxt "@action" -msgid "Connect via Network" -msgstr "Conectar pela rede" - -msgctxt "@info:status" -msgid "Connected over the network" -msgstr "Conectado pela rede" - -msgctxt "@label" -msgid "Connected printers" -msgstr "Impressoras conectadas" - -msgctxt "@info:status" -msgid "Connected via USB" -msgstr "Conectado via USB" - -msgctxt "@info:status" -msgid "Connected via cloud" -msgstr "Conectado pela nuvem" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Conecta-se à Digital Library, permitindo ao Cura abrir arquivos dela e gravar arquivos nela." - -msgctxt "@tooltip:button" -msgid "Consult the UltiMaker Community." -msgstr "Consultar a Comunidade UltiMaker." - -msgctxt "@title:window" -msgid "Convert Image" -msgstr "Converter Imagem" - -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Número da Ventoinha de Resfriamento" - -msgctxt "@action:menu" -msgid "Copy all changed values to all extruders" -msgstr "Copiar todos os valores alterados para todos os extrusores" - -msgctxt "@action:inmenu menubar:edit" -msgid "Copy to clipboard" -msgstr "Copiar para a área de transferência" - -msgctxt "@action:menu" -msgid "Copy value to all extruders" -msgstr "Copiar valor para todos os extrusores" - -msgctxt "@label" -msgid "Cost per Meter" -msgstr "Custo por Metro" - -msgctxt "@info" -msgid "Could not access update information." -msgstr "Não foi possível acessar informação de atualização." - -msgctxt "@label" -msgid "Could not connect to device." -msgstr "Não foi possível conectar ao dispositivo." - -msgctxt "@info:backup_failed" -msgid "Could not create archive from user data directory: {}" -msgstr "Não pude criar arquivo do diretório de dados de usuário: {}" - -#, python-brace-format -msgctxt "@info:status Don't translate the tag {device}!" -msgid "Could not find a file name when trying to write to {device}." -msgstr "Não foi possível encontrar nome de arquivo ao tentar escrever em {device}." - -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not import material %1: %2" -msgstr "Não foi possível importar material %1: %2" - -msgctxt "@info:error" -msgid "Could not interpret the server's response." -msgstr "Não foi possível interpretar a resposta de servidor." - -msgctxt "@error:load" -msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." -msgstr "Não foi possível carregar o plugin GCodeWriter. Tente reabilitar o plugin." - -msgctxt "@info:error" -msgid "Could not reach Marketplace." -msgstr "Não foi possível conectar ao Marketplace." - -msgctxt "@message" -msgid "Could not read response." -msgstr "Não foi possível ler a resposta." - -msgctxt "@message:text" -msgid "Could not save material archive to {}:" -msgstr "Não foi possível salvar o arquivo de materiais para {}:" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "Não foi possível salvar em {0}: {1}" - -#, python-brace-format -msgctxt "@info:status" -msgid "Could not save to removable drive {0}: {1}" -msgstr "Não foi possível salvar em unidade removível {0}: {1}" - -msgctxt "@info:text" -msgid "Could not upload the data to the printer." -msgstr "Não foi possível transferir os dados para a impressora." - -#, python-brace-format -msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"No permission to execute process." -msgstr "" -"Não foi possível iniciar EnginePlugin: {self._plugin_id}\n" -"Sem permissão para executar processo." - -#, python-brace-format -msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Operating system is blocking it (antivirus?)" -msgstr "" -"Não foi possível iniciar EnginePlugin: {self._plugin_id}\n" -"O sistema operacional está bloqueando (antivírus?)" - -#, python-brace-format -msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Resource is temporarily unavailable" -msgstr "" -"Não foi possível iniciar EnginePlugin: {self._plugin_id}\n" -"O recurso está temporariamente indisponível" - -msgctxt "@title:window" -msgid "Crash Report" -msgstr "Relatório de Problema" - -msgctxt "@title:window" -msgid "Create Profile" -msgstr "Criar Perfil" - -msgctxt "@text" -msgid "Create a free UltiMaker Account" -msgstr "Criar uma conta UltiMaker gratuita" - -msgctxt "@button" -msgid "Create a free UltiMaker account" -msgstr "Criar uma conta UltiMaker gratuita" - -msgctxt "@info:tooltip" -msgid "Create a volume in which supports are not printed." -msgstr "Cria um volume em que os suportes não são impressos." - -msgctxt "@action:ComboBox Save settings in a new profile" -msgid "Create new" -msgstr "Criar novos" - -msgctxt "@action:button" -msgid "Create new" -msgstr "Criar novo" - -msgctxt "@button" -msgid "Create new" -msgstr "Criar novos" - -msgctxt "@action:tooltip" -msgid "Create new profile from current settings/overrides" -msgstr "Criar novo perfil a partir dos ajustes/sobreposições atuais" - -msgctxt "@tooltip:button" -msgid "Create print projects in Digital Library." -msgstr "Cria projetos de impressão na Digital Library." - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Cria uma malha apagadora para bloquear a impressão de suporte em certos lugares" - -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "Criando seu backup..." - -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Perfis do Cura 15.04" - -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Backups do Cura" - -msgctxt "name" -msgid "Cura Backups" -msgstr "Backups Cura" - -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Perfil do Cura" - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Leitor de Perfis do Cura" - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Gravador de Perfis do Cura" - -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Arquivo de Projeto 3MF do Cura" - -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Versão do Cura" - -msgctxt "@title:window" -msgid "Cura can't start" -msgstr "O Cura não consegue iniciar" - -#, python-brace-format -msgctxt "@info:status" -msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." -msgstr "O Cura detectou perfis de material que não estão instalados ainda na impressora host do grupo {0}." - -msgctxt "@info:credit" -msgid "" -"Cura is developed by UltiMaker in cooperation with the community.\n" -"Cura proudly uses the following open source projects:" -msgstr "" -"Cura é desenvolvido pela Ultimaker B.V. em cooperação com a comunidade.\n" -"Cura orgulhosamente usa os seguintes projetos open-source:" - -msgctxt "@label" -msgid "Cura language" -msgstr "Linguagem do Cura" - -msgctxt "@label Cura version number" -msgid "Cura version" -msgstr "Versão do Cura" - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine Backend" - -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "Complemento do CuraEngine para gradualmente suavizar o fluxo para limitar rajadas de fluxo intenso" - -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - -msgctxt "@label" -msgid "Currency:" -msgstr "Moeda:" - -msgctxt "@title:column" -msgid "Current" -msgstr "Atual" - -msgctxt "@title:column" -msgid "Current changes" -msgstr "Alterações atuais" - -msgctxt "@header" -msgid "Custom" -msgstr "Personalizado" - -msgctxt "@label" -msgid "Custom" -msgstr "Personalizado" - -msgctxt "@title:tab" -msgid "Custom" -msgstr "Personalizado" - -msgctxt "@label" -msgid "Custom Material" -msgstr "Material Personalizado" - -msgctxt "@label" -msgid "Custom profile" -msgstr "Perfil personalizado" - -msgctxt "@info" -msgid "Custom profile name:" -msgstr "Nome de perfil personalizado:" - -msgctxt "@label" -msgid "Custom profiles" -msgstr "Perfis personalizados" - -msgctxt "@label:header" -msgid "Custom profiles" -msgstr "Perfis personalizados" - -msgctxt "@action:inmenu menubar:edit" -msgid "Cut" -msgstr "Cortar" - -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "Malha de corte" - -msgctxt "@item:inlistbox" -msgid "Darker is higher" -msgstr "Mais escuro é mais alto" - -msgctxt "@info:title" -msgid "Data Sent" -msgstr "Dados Enviados" - -msgctxt "@label Description for application dependency" -msgid "Data interchange format" -msgstr "Formato de Intercâmbio de Dados" - -msgctxt "@button" -msgid "Decline" -msgstr "Recusar" - -msgctxt "@button" -msgid "Decline and close" -msgstr "Rejeitar e fechar" - -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "Recusar e remover da conta" - -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "Default" - -msgctxt "@window:text" -msgid "Default behavior for changed setting values when switching to a different profile: " -msgstr "Comportamento default para valores de configuração alterados ao mudar para um perfil diferente: " - -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "Comportamento default ao abrir um arquivo de projeto" - -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "Comportamento default ao abrir um arquivo de projeto: " - -msgctxt "@action:button" -msgid "Defaults" -msgstr "Defaults" - -msgctxt "@label" -msgid "Defines the thickness of your part side walls, roof and floor." -msgstr "Define a espessura das paredes laterais, teto e base da sua peça." - -msgctxt "@label" -msgid "Delete" -msgstr "Remover" - -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Apagar o Backup" - -msgctxt "@action:inmenu" -msgid "Delete Model" -msgstr "Remover Modelo" - -msgctxt "@action:inmenu menubar:edit" -msgid "Delete Selected" -msgstr "Remover Selecionados" - -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Remover trabalho de impressão" - -msgctxt "@label" -msgid "Density" -msgstr "Densidade" - -msgctxt "@label Description for development tool" -msgid "Dependency and package manager" -msgstr "Gestor de pacote e dependência" - -msgctxt "@action:label" -msgid "Depth (mm)" -msgstr "Profundidade (mm)" - -msgctxt "@action:label" -msgid "Derivative from" -msgstr "Derivado de" - -msgctxt "@header" -msgid "Description" -msgstr "Descrição" - -msgctxt "@label" -msgid "Description" -msgstr "Descrição" - -msgctxt "@action:button" -msgid "Details" -msgstr "Detalhes" - -msgctxt "@label" -msgid "Diameter" -msgstr "Diâmetro" - -msgctxt "@button" -msgid "Disable" -msgstr "Desabilitar" - -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Desabilitar Extrusor" - -msgctxt "@option:discardOrKeep" -msgid "Discard and never ask again" -msgstr "Descartar e não perguntar novamente" - -msgctxt "@action:button" -msgid "Discard changes" -msgstr "Descartar alterações" - -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "Descartar ajustes atuais" - -msgctxt "@title:window" -msgid "Discard or Keep changes" -msgstr "Descartar ou Manter alterações" - -msgctxt "@button" -msgid "Dismiss" -msgstr "Dispensar" - -msgctxt "@label" -msgid "Display Name" -msgstr "Exibir Nome" - -msgctxt "@option:check" -msgid "Display model errors" -msgstr "Exibir erros de modelo" - -msgctxt "@option:check" -msgid "Display overhang" -msgstr "Exibir seções pendentes" - -msgctxt "@info:option_text" -msgid "Do not show this message again" -msgstr "Não mostrar essa mensagem novamente" - -msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "Você quer sincronizar os pacotes de material e software com sua conta?" - -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "Não exibir resumo do projeto ao salvar novamente" - -msgctxt "@action:menu" -msgid "Don't show this setting" -msgstr "Não exibir este ajuste" - -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "Não suportar sobreposições" - -msgctxt "@button" -msgid "Done" -msgstr "Feito" - -msgctxt "@button" -msgid "Downgrade" -msgstr "Downgrade" - -msgctxt "@button" -msgid "Downgrading..." -msgstr "Fazendo downgrade..." - -msgctxt "@label" -msgid "Draft" -msgstr "Rascunho" - -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Duplicar" - -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "Duplicar Perfil" - -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "Durante a fase de pré-visualização, você estará limitado a 5 backups visíveis. Remova um backup para ver os mais antigos." - -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "E&xtensões" - -msgctxt "@action:button" -msgid "Edit" -msgstr "Editar" - -msgctxt "@action:button" -msgid "Eject" -msgstr "Ejetar" - -#, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "Ejetar dispositivo removível {0}" - -#, python-brace-format -msgctxt "@info:status" -msgid "Ejected {0}. You can now safely remove the drive." -msgstr "{0} ejetado. A unidade agora pode ser removida de forma segura." - -msgctxt "@label" -msgid "Empty" -msgstr "Vazio" - -msgctxt "@button" -msgid "Enable" -msgstr "Habilitar" - -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Habilitar Extrusor" - -msgctxt "@label" -msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards. Disabling it results in a skirt around object by default." -msgstr "Habilita a impressão de brim ou raft. Adicionará uma área plana em volta do objeto ou abaixo dele que seja fácil de destacar depois. Desabilitar este ajuste resulta em um skirt em volta do objeto por default." - -msgctxt "@label" -msgid "Enabled" -msgstr "Habilitado" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Habilita a geração de geometria imprimível de arquivos de imagem 2D." - -msgctxt "@title:label" -msgid "End G-code" -msgstr "G-Code Final" - -msgctxt "@label" -msgid "End-to-end solution for fused filament 3D printing." -msgstr "Solução completa para impressão 3D com filamento fundido." - -msgctxt "@info:title" -msgid "EnginePlugin" -msgstr "EnginePlugin" - -msgctxt "@label" -msgid "Engineering" -msgstr "Engenharia" - -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "Assegurar que os modelos sejam mantidos separados" - -msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "Entre o endereço IP da sua impressora na rede." - -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "Entre o endereço IP de sua impressora." - -msgctxt "@info:title" -msgid "Error" -msgstr "Erro" - -msgctxt "@title:groupbox" -msgid "Error traceback" -msgstr "Traceback do erro" - -msgctxt "@label" -msgid "Estimated time left" -msgstr "Tempo restante estimado" - -msgctxt "@action:inmenu" -msgid "Exit Full Screen" -msgstr "Sair da Tela Cheia" - -msgctxt "@label" -msgid "Experimental" -msgstr "Experimental" - -msgctxt "@action:button" -msgid "Export" -msgstr "Exportar" - -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "Exportar Todos Os Materiais" - -msgctxt "@title:window" -msgid "Export Material" -msgstr "Exportar Material" - -msgctxt "@title:window" -msgid "Export Profile" -msgstr "Exportar Perfil" - -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "Exportar Seleção..." - -msgctxt "@button" -msgid "Export material archive" -msgstr "Exportar arquivo de material" - -msgctxt "@info:title" -msgid "Export succeeded" -msgstr "Exportação concluída" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tag !" -msgid "Exported profile to {0}" -msgstr "Perfil exportado para {0}" - -msgctxt "@tooltip:button" -msgid "Extend UltiMaker Cura with plugins and material profiles." -msgstr "Estende o UltiMaker Cura com complementos e perfis de material." - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Extensão que permite scripts criados por usuários para pós-processamento" - -msgctxt "@label" -msgid "Extruder" -msgstr "Extrusor" - -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "Extrusor %1" - -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "G-Code Final do Extrusor" - -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "G-Code Inicial do Extrusor" - -msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "Extrusor(es) Desabilitado(s)" - -msgctxt "@label:status" -msgid "Failed" -msgstr "Falhado" - -msgctxt "@text:error" -msgid "Failed to connect to Digital Factory to sync materials with some of the printers." -msgstr "Falha em conectar com a Digital Factory para sincronizar materiais com algumas das impressoras." - -msgctxt "@text:error" -msgid "Failed to connect to Digital Factory." -msgstr "Falha em conectar à Digital Factory." - -msgctxt "@text:error" -msgid "Failed to create archive of materials to sync with printers." -msgstr "Falha em criar arquivo de materiais para sincronizar com impressoras." - -#, python-brace-format -msgctxt "@info:status" -msgid "Failed to eject {0}. Another program may be using the drive." -msgstr "Erro ao ejetar {0}. Outro programa pode estar usando a unidade." - -msgctxt "@info:status Don't translate the XML tags and !" -msgid "Failed to export material to %1: %2" -msgstr "Falha em exportar material para %1: %2" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Failed to export profile to {0}: {1}" -msgstr "Falha ao exportar perfil para {0}: {1}" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tag !" -msgid "Failed to export profile to {0}: Writer plugin reported failure." -msgstr "Falha ao exportar perfil para {0}: complemento escritor relatou erro." - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tag !" -msgid "Failed to import profile from {0}:" -msgstr "Erro ao importar perfil de {0}:" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags !" -msgid "Failed to import profile from {0}:" -msgstr "Erro ao importar perfil de {0}:" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags !" -msgid "Failed to import profile from {0}: {1}" -msgstr "Falha ao importar perfil de {0}: {1}" - -msgctxt "@button" -msgid "Failed to load packages:" -msgstr "Falha em carregar pacotes:" - -msgctxt "@text:error" -msgid "Failed to load the archive of materials to sync it with printers." -msgstr "Falha em carregar o arquivo de materiais para sincronizar com impressoras." - -msgctxt "@message:title" -msgid "Failed to save material archive" -msgstr "Falha em salvar o arquivo de materiais" - -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "Favoritos" - -msgctxt "@label" -msgid "Filament Cost" -msgstr "Custo do Filamento" - -msgctxt "@label" -msgid "Filament length" -msgstr "Comprimento do Filamento" - -msgctxt "@label" -msgid "Filament weight" -msgstr "Peso do Filamento" - -msgctxt "@title:window" -msgid "File Already Exists" -msgstr "O Arquivo Já Existe" - -msgctxt "@info:title" -msgid "File Saved" -msgstr "Arquivo Salvo" - -#, python-brace-format -msgctxt "@info:status" -msgid "File {0} does not contain any valid profile." -msgstr "Arquivo {0} não contém nenhum perfil válido." - -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Filtrar..." - -msgctxt "@info:title" -msgid "Finding Location" -msgstr "Buscando Localização" - -msgctxt "@info:status" -msgid "Finding new location for objects" -msgstr "Achando novos lugares para objetos" - -msgctxt "@action:button" -msgid "Finish" -msgstr "Finalizar" - -msgctxt "@label:status" -msgid "Finished" -msgstr "Finalizado" - -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "Termina %1 em %2" - -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Atualização do Firmware" - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Verificador de Atualizações de Firmware" - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Atualizador de Firmware" - -msgctxt "@label" -msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." -msgstr "O firmware não pode ser atualizado porque a conexão com a impressora não suporta atualização de firmware." - -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "O firmware não pode ser atualizado porque não há conexão com a impressora." - -msgctxt "@label" -msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." -msgstr "O firmware é o software rodando diretamente no maquinário de sua impressora 3D. Este firmware controla os motores de passo, regula a temperatura e é o que faz a sua impressora funcionar." - -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Atualização do Firmware completada." - -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "A atualização de firmware falhou devido a um erro de comunicação." - -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "A atualização de firmware falhou devido a um erro de entrada e saída." - -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "A atualização de Firmware falhou devido a um erro desconhecido." - -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "A atualização de firmware falhou devido a firmware não encontrado." - -msgctxt "@label" -msgid "Firmware version" -msgstr "Versão do firmware" - -msgctxt "@label" -msgid "First available" -msgstr "Primeira disponível" - -msgctxt "@label:listbox" -msgid "Flow" -msgstr "Fluxo" - -msgctxt "@text In the UI this is followed by a list of steps the user needs to take." -msgid "Follow the following steps to load the new material profiles to your printer." -msgstr "Siga os passos seguintes para carregar os perfis de material novos na sua impressora." - -msgctxt "@info" -msgid "Follow the procedure to add a new printer" -msgstr "Siga o procedimento para adicionar uma nova impressora" - -msgctxt "@text" -msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." -msgstr "Seguindo alguns passos simples, você conseguirá sincronizar todos os seus perfis de material com suas impressoras." - -msgctxt "@label" -msgid "Font" -msgstr "Fonte" - -msgctxt "@label" -msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." -msgstr "Para cada posição; insira um pedaço de papel abaixo do bico e ajuste a altura da mesa de impressão. A altura da mesa de impressão está adequada quando o papel for levemente pressionado pela ponta do bico." - -msgctxt "@info:tooltip" -msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." -msgstr "Para litofanos, um modelo logarítmico simples para translucidez está disponível. Para mapas de altura os valores de pixels correspondem a alturas, linearmente." - -msgctxt "@info:tooltip" -msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." -msgstr "Para litofanos, pixels escuros devem corresponder a locais mais espessos para conseguir bloquear mais luz. Para mapas de altura, pixels mais claros significam terreno mais alto, portanto tais pixels devem corresponder a locais mais espessos no modelo 3d gerado." - -msgctxt "@option:check" -msgid "Force layer view compatibility mode (restart required)" -msgstr "Forçar modo de compatibilidade da visão de camadas (requer reinício)" - -msgctxt "@action:inmenu menubar:view" -msgid "Front View" -msgstr "Visão Frontal" - -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "Viso de Frente" - -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "Arquivo G" - -msgctxt "@info:title" -msgid "G-code Details" -msgstr "Detalhes do G-Code" - -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "Arquivo G-Code" - -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Leitor de Perfil de G-Code" - -msgctxt "name" -msgid "G-code Reader" -msgstr "Leitor de G-Code" - -msgctxt "name" -msgid "G-code Writer" -msgstr "Gerador de G-Code" - -msgctxt "@label" -msgid "G-code flavor" -msgstr "Sabor de G-Code" - -msgctxt "@label Description for application component" -msgid "G-code generator" -msgstr "Gerador de G-Code" - -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "O GCodeGzWriter não suporta modo binário." - -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "O GCodeWriter não suporta modo binário." - -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "Imagem GIF" - -msgctxt "@label Description for application dependency" -msgid "GUI framework" -msgstr "Framework Gráfica" - -msgctxt "@label Description for application dependency" -msgid "GUI framework bindings" -msgstr "Ligações da Framework Gráfica" - -msgctxt "@label" -msgid "Gantry Height" -msgstr "Altura do Eixo" - -msgctxt "@title:tab" -msgid "General" -msgstr "Geral" - -msgctxt "@label" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." -msgstr "Gera estrutura que suportarão partes do modelo que têm seções pendentes. Sem estas estruturas, tais partes desabariam durante a impressão." - -msgctxt "@label Description for development tool" -msgid "Generating Windows installers" -msgstr "Gerando instaladores Windows" - -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "Genérico" - -msgctxt "@option:check" -msgid "Get notifications for plugin updates" -msgstr "Ter notificações para atualizações de complementos" - -msgctxt "@action" -msgid "Get started" -msgstr "Começar" - -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "Ajustes globais" - -msgctxt "@label Description for application component" -msgid "Graphical user interface" -msgstr "Interface Gráfica de usuário" - -msgctxt "@label" -msgid "Grid Placement" -msgstr "Posicionamento em Grade" - -#, python-brace-format -msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "Grupo #{group_nr}" - -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "Aquecer a mesa antes de imprimir. Você pode continuar ajustando sua impressão enquanto ela está aquecendo, e não terá que esperar o aquecimento quando estiver pronto pra imprimir." - -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "Aquece o hotend com antecedência antes de imprimir. Você pode continuar ajustando sua impressão enquanto está aquecendo e não terá que esperar que o hotend termine o aquecimento quando estiver pronto para imprimir." - -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "Mesa de Impressão Aquecida (kit Oficial ou auto-construído)" - -msgctxt "@label" -msgid "Heated bed" -msgstr "Mesa aquecida" - -msgctxt "@label" -msgid "Heated build volume" -msgstr "Volume de construção aquecido" - -msgctxt "@action:label" -msgid "Height (mm)" -msgstr "Altura (mm)" - -msgctxt "@label" -msgid "Helpers" -msgstr "Assistentes" - -msgctxt "@label" -msgid "Hide all connected printers" -msgstr "Omitir todas as impressoras conectadas" - -msgctxt "@action:menu" -msgid "Hide this setting" -msgstr "Ocultar este ajuste" - -msgctxt "@info:tooltip" -msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." -msgstr "Ressalta superfícies faltantes ou incorretas do modelo usando sinais de alerta. Os caminhos de extrusão frequentemente terão partes da geometria pretendida ausentes." - -msgctxt "@info:tooltip" -msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." -msgstr "Ressaltar áreas sem suporte do modelo em vermelho. Sem suporte, estas áreas não serão impressas corretamente." - -msgctxt "@button" -msgid "How to load new material profiles to my printer" -msgstr "Como carregar novos perfis de material na minha impressora" - -msgctxt "@action:button" -msgid "How to update" -msgstr "Como atualizar" - -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "Recusar enviar dados anônimos" - -msgctxt "@label:status" -msgid "Idle" -msgstr "Ocioso" - -msgctxt "@label" -msgid "If you are trying to add a new UltiMaker printer to Cura" -msgstr "Se você está tentando adicionar uma nova impressora UltiMaker ao Cura" - -msgctxt "@label" -msgid "If your printer is not listed, read the network printing troubleshooting guide" -msgstr "Se sua impressora não está listada, leia o guia de resolução de problemas de impressão em rede" - -msgctxt "name" -msgid "Image Reader" -msgstr "Leitor de Imagens" - -msgctxt "@action:button" -msgid "Import" -msgstr "Importar" - -msgctxt "@title:window" -msgid "Import Material" -msgstr "Importar Material" - -msgctxt "@title:window" -msgid "Import Profile" -msgstr "Importar Perfil" - -msgctxt "@action:button" -msgid "Import all as models" -msgstr "Importar todos como modelos" - -msgctxt "@action:button" -msgid "Import models" -msgstr "Importar modelos" - -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "Em manutenção. Por favor verifique a impressora" - -msgctxt "@info" -msgid "In order to monitor your print from Cura, please connect the printer." -msgstr "Para monitorar sua impressão pelo Cura, por favor conecte a impressora." - -msgctxt "@label" -msgid "In order to start using Cura you will need to configure a printer." -msgstr "Para poder iniciar o uso do Cura você precisará configurar uma impressora." - -msgctxt "@button" -msgid "In order to use the package you will need to restart Cura" -msgstr "Para usar o pacote você precisará reiniciar o Cura" - -msgctxt "@label" -msgid "Infill" -msgstr "Preenchimento" - -msgctxt "@tooltip" -msgid "Infill" -msgstr "Preenchimento" - -msgctxt "infill_sparse_density description" -msgid "Infill Density" -msgstr "Densidade de Preenchimento" - -msgctxt "@action:label" -msgid "Infill Pattern" -msgstr "Padrão de Preenchimento" - -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "Somente malha de preenchimento" - -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "Preenchimento se sobrepondo a este modelo foi modificado." - -msgctxt "@info:title" -msgid "Information" -msgstr "Informação" - -msgctxt "@title" -msgid "Information" -msgstr "Informação" - -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "Inicializando Máquina Ativa..." - -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "Inicializando volume de impressão..." - -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "Inicializando motor..." - -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "Inicializando gestor de máquinas..." - -msgctxt "@label" -msgid "Inner Wall" -msgstr "Parede Interna" - -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "Paredes Internas" - -msgctxt "@text" -msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." -msgstr "Insira o pendrive USB na sua impressora e faça o procedimento de carregar novos perfis de material." - -msgctxt "@button" -msgid "Install" -msgstr "Instalar" - -msgctxt "@header" -msgid "Install Materials" -msgstr "Instalar Materiais" - -msgctxt "@window:title" -msgid "Install Package" -msgstr "Instalar Pacote" - -msgctxt "@action:button" -msgid "Install Packages" -msgstr "Instalar Pacotes" - -msgctxt "@header" -msgid "Install Packages" -msgstr "Instala Pacotes" - -msgctxt "@header" -msgid "Install Plugins" -msgstr "Instalar Complementos" - -msgctxt "@action:button" -msgid "Install missing packages" -msgstr "Instalar pacotes faltantes" - -msgctxt "@title" -msgid "Install missing packages" -msgstr "Instala pacotes faltantes" - -msgctxt "@label" -msgid "Install missing packages from project file." -msgstr "Instala pacotes faltantes do arquivo de projeto." - -msgctxt "@button" -msgid "Install pending updates" -msgstr "Instalação aguardando atualizações" - -msgctxt "@label" -msgid "Installed Materials" -msgstr "Materiais Instalados" - -msgctxt "@label" -msgid "Installed Plugins" -msgstr "Complementos Instalados" - -msgctxt "@button" -msgid "Installing..." -msgstr "Instalando..." - -msgctxt "@action:label" -msgid "Intent" -msgstr "Objetivo" - -msgctxt "@label" -msgid "Interface" -msgstr "Interface" - -msgctxt "@label Description for application component" -msgid "Interprocess communication library" -msgstr "Biblioteca de comunicação interprocessos" - -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Endereço IP inválido" - -msgctxt "@info:status" -msgid "Invalid file URL:" -msgstr "URL de arquivo inválida:" - -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "Inverter a direção da ampliação de câmera." - -msgctxt "@label" -msgid "Is printed as support." -msgstr "Está impresso como suporte." - -msgctxt "@text" -msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware." -msgstr "Parece que você não tem impressoras compatíveis conectadas à Digital Factory. Certifique-se que sua impressora esteja conectada e rodando o firmware mais recente." - -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "Imagem JPEG" - -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "Imagem JPG" - -msgctxt "@label Description for application dependency" -msgid "JSON parser" -msgstr "Parser JSON" - -msgctxt "@label" -msgid "Job Name" -msgstr "Nome do Trabalho" - -msgctxt "@label" -msgid "Jog Distance" -msgstr "Distância de Trote" - -msgctxt "@label" -msgid "Jog Position" -msgstr "Posição de Trote" - -msgctxt "@option:discardOrKeep" -msgid "Keep and never ask again" -msgstr "Manter e não perguntar novamente" - -msgctxt "@action:button" -msgid "Keep changes" -msgstr "Manter alterações" - -msgctxt "@action:button" -msgid "Keep printer configurations" -msgstr "Manter configurações da impressora" - -msgctxt "@action:menu" -msgid "Keep this setting visible" -msgstr "Manter este ajuste visível" - -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "Última atualização: %1" - -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "Espessura de Camada" - -msgctxt "@item:inlistbox" -msgid "Layer view" -msgstr "Visão de Camadas" - -msgctxt "@button:label" -msgid "Learn More" -msgstr "Saiba mais" - -msgctxt "@button" -msgid "Learn how to connect your printer to Digital Factory" -msgstr "Aprenda como conectar sua impressora à Digital Factory" - -msgctxt "@tooltip:button" -msgid "Learn how to get started with UltiMaker Cura." -msgstr "Saiba como começar com o UltiMaker Cura." - -msgctxt "@action" -msgid "Learn more" -msgstr "Saiba mais" - -msgctxt "@action:button" -msgid "Learn more" -msgstr "Saiba mais" - -msgctxt "@button" -msgid "Learn more" -msgstr "Saiba mais" - -msgctxt "@button:label" -msgid "Learn more" -msgstr "Saber mais" - -msgctxt "@action:button" -msgid "Learn more about Cura print profiles" -msgstr "Saber mais sobre perfis de impressão do Cura" - -msgctxt "@button" -msgid "Learn more about adding printers to Cura" -msgstr "Saiba mais sobre adicionar impressoras ao Cura" - -msgctxt "@label" -msgid "Learn more about project packages." -msgstr "Aprenda mais sobre pacotes de projeto" - -msgctxt "@action:inmenu menubar:view" -msgid "Left Side View" -msgstr "Visão do Lado Esquerdo" - -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "Visão à Esquerda" - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Leitor de Perfis de Cura Legado" - -msgctxt "@tooltip:button" -msgid "Let developers know that something is going wrong." -msgstr "Deixe os desenvolvedores saberem que algo está errado." - -msgctxt "@action" -msgid "Level build plate" -msgstr "Nivelar mesa" - -msgctxt "@item:inlistbox" -msgid "Lighter is higher" -msgstr "Mais claro é mais alto" - -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Tipo de Linha" - -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "Largura de Extrusão" - -msgctxt "@item:inlistbox" -msgid "Linear" -msgstr "Linear" - -msgctxt "@label Description for development tool" -msgid "Linux cross-distribution application deployment" -msgstr "Implementação de aplicação multidistribuição em Linux" - -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "Carregar %3 como material %1 (isto não pode ser sobreposto)." - -msgctxt "@button" -msgid "Load more" -msgstr "Carregar mais" - -msgctxt "@button" -msgid "Loading" -msgstr "Carregando" - -msgctxt "@action:warning" -msgid "Loading a project will clear all models on the build plate." -msgstr "Carregar um projeto limpará todos os modelos da mesa de impressão." - -msgctxt "@label" -msgid "Loading available configurations from the printer..." -msgstr "Carregando configurações disponíveis da impressora..." - -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "Carregando interface..." - -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "Carregando máquinas..." - -msgctxt "@label:status" -msgid "Loading..." -msgstr "Carregando..." - -msgctxt "@title" -msgid "Loading..." -msgstr "Carregando..." - -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "Impressoras locais" - -msgctxt "@info:title" -msgid "Log-in failed" -msgstr "Login falhou" - -msgctxt "@info:title" -msgid "Login failed" -msgstr "Login falhou" - -msgctxt "@title:groupbox" -msgid "Logs" -msgstr "Registros" - -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Registra certos eventos de forma que possam ser usados pelo relator de acidentes" - -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "A conexão à impressora foi perdida" - -msgctxt "@action" -msgid "Machine Settings" -msgstr "Ajustes da Máquina" - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Ação de Ajustes de Máquina" - -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Máquinas" - -msgctxt "@text" -msgid "Make sure all your printers are turned ON and connected to Digital Factory." -msgstr "Certifique-se de que todas as suas impressoras estejam LIGADAS e conectadas à Digital Factory." - -msgctxt "@info:generic" -msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." -msgstr "Certifique que o g-code é adequado para sua impressora e configuração antes de enviar o arquivo. A representação de g-code pode não ser acurada." - -msgctxt "@item:inlistbox" -msgid "Makerbot Printfile" -msgstr "Makerbot Printfile" - -msgctxt "name" -msgid "Makerbot Printfile Writer" -msgstr "Gerador de Makerbot Printfile" - -msgctxt "@error" -msgid "MakerbotWriter could not save to the designated path." -msgstr "MakerbotWriter não conseguiu salvar no caminho designado." - -msgctxt "@error:not supported" -msgid "MakerbotWriter does not support text mode." -msgstr "MakerbotWriter não suporta modo texto." - -msgctxt "@action:inmenu" -msgid "Manage Materials..." -msgstr "Administrar Materiais..." - -msgctxt "@action:inmenu menubar:printer" -msgid "Manage Pr&inters..." -msgstr "Adm&inistrar Impressoras..." - -msgctxt "@action:inmenu menubar:profile" -msgid "Manage Profiles..." -msgstr "Administrar perfis..." - -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "Gerenciar Visibilidade dos Ajustes..." - -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Gerenciar backups" - -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Gerir no navegador" - -msgctxt "@header" -msgid "Manage packages" -msgstr "Gerir pacotes" - -msgctxt "@info:tooltip" -msgid "Manage packages" -msgstr "Gerir pacotes" - -msgctxt "@action" -msgid "Manage print jobs" -msgstr "Gerenciar trabalhos de impressão" - -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Gerir Impressora" - -msgctxt "@button" -msgid "Manage printers" -msgstr "Gerenciar impressoras" - -msgctxt "@text" -msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." -msgstr "Gerencie seu complementos e perfis de materiais do Cura aqui. Se assegure de manter seus complementos atualizados e fazer backup de sua configuração regularmente." - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "Gerencia extensões à aplicação e permite navegar extensões do website da UltiMaker." - -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "Gerencia conexões de rede com as impressoras de rede da UltiMaker." - -msgctxt "@label" -msgid "Manufacturer" -msgstr "Fabricante" - -msgctxt "@action:button" -msgid "Marketplace" -msgstr "Mercado" - -msgctxt "@label" -msgid "Marketplace" -msgstr "Mercado" - -msgctxt "name" -msgid "Marketplace" -msgstr "Marketplace" - -msgctxt "@action:label" -msgid "Material" -msgstr "Material" - -msgctxt "@label" -msgid "Material" -msgstr "Material" - -msgctxt "@label:category menu label" -msgid "Material" -msgstr "Material" - -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Cor do Material" - -msgctxt "name" -msgid "Material Profiles" -msgstr "Perfis de Material" - -msgctxt "@label" -msgid "Material Type" -msgstr "Tipo de Material" - -msgctxt "@title" -msgid "Material color picker" -msgstr "Seletor de cores do material" - -msgctxt "@label" -msgid "Material estimation" -msgstr "Estimativa de material" - -msgctxt "@title:header" -msgid "Material profiles successfully synced with the following printers:" -msgstr "Perfis de material sincronizados com sucesso com as seguintes impressoras:" - -msgctxt "@action:label" -msgid "Material settings" -msgstr "Ajustes de material" - -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Materiais" - -msgctxt "@button" -msgid "Materials" -msgstr "Materiais" - -msgctxt "@title:tab" -msgid "Materials" -msgstr "Materiais" - -msgctxt "@label" -msgid "Materials compatible with active printer:" -msgstr "Materiais compatíveis com a impressora ativa:" - -msgctxt "@label" -msgid "Mesh Type" -msgstr "Tipo de Malha" - -msgctxt "@action:label" -msgid "Mode" -msgstr "Modo" - -msgctxt "name" -msgid "Model Checker" -msgstr "Verificador de Modelo" - -msgctxt "@info:title" -msgid "Model Errors" -msgstr "Erros de Modelo" - -msgctxt "@item:inmenu" -msgid "Modify G-Code" -msgstr "Modificar G-Code" - -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Modificar ajustes para sobreposições" - -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "Monitor" - -msgctxt "name" -msgid "Monitor Stage" -msgstr "Estágio de Monitor" - -msgctxt "@action:button" -msgid "Monitor print" -msgstr "Monitorar impressão" - -msgctxt "@tooltip:button" -msgid "Monitor print jobs and reprint from your print history." -msgstr "Monitora trabalhos de impressão e reimprime a partir do histórico." - -msgctxt "@tooltip:button" -msgid "Monitor printers in Ultimaker Digital Factory." -msgstr "Monitora as impressoras na Ultimaker Digital Factory." - -msgctxt "@info" -msgid "Monitor your printers from everywhere using Ultimaker Digital Factory" -msgstr "Monitora suas impressoras de todo lugar usando a Ultimaker Digital Factory" - -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Mais informações em coleção anônima de dados" - -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Move o trabalho de impressão para o topo da fila" - -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "Mover pra a Posição Seguinte" - -msgctxt "@label" -msgid "Move to top" -msgstr "Mover para o topo" - -msgctxt "@info:tooltip" -msgid "Moves the camera so the model is in the center of the view when a model is selected" -msgstr "Move a câmera de modo que o modelo fique no centro da visão quando for selecionado" - -msgctxt "@action:inmenu menubar:edit" -msgid "Multiply Selected" -msgstr "Multiplicar Selecionados" - -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "Multiplicar Modelo Selecionado" -msgstr[1] "Multiplicar Modelos Selecionados" - -msgctxt "@info" -msgid "Multiply selected item and place them in a grid of build plate." -msgstr "Multiplica o item selecionado e o dispõe em grade na plataforma de impressão." - -msgctxt "@info:status" -msgid "Multiplying and placing objects" -msgstr "Multiplicando e colocando objetos" - -msgctxt "@title" -msgid "My Backups" -msgstr "Meus backups" - -msgctxt "@label:button" -msgid "My printers" -msgstr "Minhas impressoras" - -msgctxt "@action:label" -msgid "Name" -msgstr "Nome" - -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "Impressoras habilitadas pela rede" - -msgctxt "@info:title" -msgid "Network error" -msgstr "Erro de rede" - -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s stable firmware available" -msgstr "Novo firmware estável de %s disponível" - -msgctxt "@textfield:placeholder" -msgid "New Custom Profile" -msgstr "Novo Perfil Personalizado" - -msgctxt "@label" -msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." -msgstr "Novas impressoras UltiMaker podem ser conectadas à Digital Factory e monitoradas remotamente." - -#, python-brace-format -msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." -msgstr "Novos recursos ou consertos de bugs podem estar disponíveis para sua {machine_name}! Se você não o fez ainda, recomenda-se que atualize o firmware de sua impressora para a versão {latest_version}." - -msgctxt "@action:button" -msgid "New materials installed" -msgstr "Novos materiais instalados" - -msgctxt "info:status" -msgid "New printer detected from your Ultimaker account" -msgid_plural "New printers detected from your Ultimaker account" -msgstr[0] "Nova impressora detectada na sua conta Ultimaker" -msgstr[1] "Novas impressoras detectadas na sua conta Ultimaker" - -msgctxt "@title:window" -msgid "New project" -msgstr "Novo projeto" - -msgctxt "@action:button" -msgid "Next" -msgstr "Próximo" - -msgctxt "@button" -msgid "Next" -msgstr "Próximo" - -msgctxt "@info:title" -msgid "Nightly build" -msgstr "Compilação noturna" - -msgctxt "@info" -msgid "No" -msgstr "Não" - -msgctxt "@info" -msgid "No compatibility information" -msgstr "Sem informação de compatibilidade" - -msgctxt "@description" -msgid "No compatible printers, that are currently online, were found." -msgstr "Não foram encontradas impressoras compatíveis que estivessem online no momento." - -msgctxt "@label" -msgid "No cost estimation available" -msgstr "Sem estimativa de custo disponível" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags !" -msgid "No custom profile to import in file {0}" -msgstr "Não há perfil personalizado a importar no arquivo {0}" - -msgctxt "@label" -msgid "No items to select from" -msgstr "Sem itens para selecionar" - -msgctxt "@info:title" -msgid "No layers to show" -msgstr "Não há camadas a exibir" - -msgctxt "@message" -msgid "No more results to load" -msgstr "Não há mais resultados a carregar" - -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "Sem permissão para gravar o espaço de trabalho aqui." - -msgctxt "@title:header" -msgid "No printers found" -msgstr "Nenhuma impressora encontrada" - -msgctxt "@label" -msgid "No printers found in your account?" -msgstr "Nenhuma impressora encontrada em sua conta?" - -msgctxt "@message:text %1 is the name the printer uses for 'nozzle'." -msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration." -msgstr "Nenhum perfil está disponível para a configuração selecionada de material/%1. Por favor altere sua configuração." - -msgctxt "@message" -msgid "No results found with current filter" -msgstr "Não há resultados encontrados com o filtro atual" - -msgctxt "@label" -msgid "No time estimation available" -msgstr "Sem estimativa de tempo disponível" - -msgctxt "@button" -msgid "Non UltiMaker printer" -msgstr "Impressora Não-UltiMaker" - -msgctxt "@info No materials" -msgid "None" -msgstr "Nenhum" - -msgctxt "@label" -msgid "Normal model" -msgstr "Modelo normal" - -msgctxt "@info:title" -msgid "Not a group host" -msgstr "Não é host de grupo" - -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "Não conectado a nenhuma impressora" - -msgctxt "@action:label" -msgid "Not in profile" -msgstr "Ausente no perfil" - -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Não sobreposto" - -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "Não Suportado" - -msgctxt "@label" -msgid "Not yet initialized" -msgstr "Ainda não inicializado" - -msgctxt "@info:status" -msgid "Nothing is shown because you need to slice first." -msgstr "Nada está exibido porque você precisa fatiar primeiro." - -msgctxt "@label" -msgid "Nozzle" -msgstr "Bico" - -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Ajustes do Bico" - -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Deslocamento X do Bico" - -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Deslocamento Y do Bico" - -msgctxt "@label" -msgid "Nozzle size" -msgstr "Tamanho do bico" - -msgctxt "@label" -msgid "Number of Copies" -msgstr "Número de Cópias" - -msgctxt "@label" -msgid "Number of Extruders" -msgstr "Número de Extrusores" - -msgctxt "@action:button" -msgid "OK" -msgstr "Ok" - -msgctxt "@label" -msgid "OS language" -msgstr "Linguagem do SO" - -msgctxt "@label" -msgid "Object list" -msgstr "Lista de objetos" - -msgctxt "@label:Should be short" -msgid "Off" -msgstr "Off" - -msgctxt "@label:Should be short" -msgid "On" -msgstr "On" - -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Somente Exibir Camadas Superiores" - -#, python-brace-format -msgctxt "@info:status" -msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" -msgstr "Somente um arquivo G-Code pode ser carregado por vez. Pulando importação de {0}" - -msgctxt "@action:button" -msgid "Open" -msgstr "Abrir" - -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "Abrir &Recente" - -msgctxt "@item:inlistbox 'Open' is part of the name of this file format." -msgid "Open Compressed Triangle Mesh" -msgstr "Open Compressed Triangle Mesh" - -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "Abrir Arquivo(s)" - -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "Abrir Arquivo(s)..." - -msgctxt "@title:window" -msgid "Open Project" -msgstr "Abrir Projeto" - -msgctxt "@info:title" -msgid "Open Project File" -msgstr "Abrir Arquivo de Projeto" - -msgctxt "@action:label" -msgid "Open With" -msgstr "Abrir Com" - -msgctxt "@action:button" -msgid "Open as project" -msgstr "Abrir como projeto" - -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "Abrir arquivo(s)" - -msgctxt "@action:button" -msgid "Open project anyway" -msgstr "Abrir o projeto mesmo assim" - -msgctxt "@title:window" -msgid "Open project file" -msgstr "Abrir arquivo de projeto" - -msgctxt "@label OpenGL version" -msgid "OpenGL" -msgstr "OpenGL" - -msgctxt "@label" -msgid "Opening and saving files" -msgstr "Abrindo e salvando arquivos" - -msgctxt "@header" -msgid "Optimized for Air Manager" -msgstr "Otimizado para o Air Manager" - -msgctxt "@label" -msgid "Origin at center" -msgstr "Origem no centro" - -msgid "Orthographic" -msgstr "Ortográfica" - -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "Ortográfico" - -msgctxt "@tooltip" -msgid "Other" -msgstr "Outros" - -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "Outros modelos se sobrepondo a esse modelo foram modificados." - -msgctxt "@label" -msgid "Other printers" -msgstr "Outras impressoras" - -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "Parede Externa" - -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "Sobreposições neste modelo não são suportadas." - -msgctxt "@action:button" -msgid "Override" -msgstr "Sobrepor" - -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "Sobrepor irá usar os ajustes especificados com a configuração existente da impressora. Isto pode causar falha da impressão." - -msgctxt "@label %1 is the number of settings it overrides." -msgid "Overrides %1 setting." -msgid_plural "Overrides %1 settings." -msgstr[0] "Sobrepõe %1 ajuste." -msgstr[1] "Sobrepõe %1 ajustes." - -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "P&referências" - -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "Imagem PNG" - -msgctxt "@header" -msgid "Package details" -msgstr "Detalhes do pacote" - -msgctxt "@label Description for development tool" -msgid "Packaging Python-applications" -msgstr "Empacotamento de aplicações Python" - -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "Interpretando G-Code" - -msgctxt "@action:inmenu menubar:edit" -msgid "Paste from clipboard" -msgstr "Colar da área de transferência" - -msgctxt "@label" -msgid "Pause" -msgstr "Pausar" - -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "Pausado" - -msgctxt "@label:status" -msgid "Paused" -msgstr "Pausado" - -msgctxt "@label" -msgid "Pausing..." -msgstr "Pausando..." - -msgctxt "@label:status" -msgid "Pausing..." -msgstr "Pausando..." - -msgctxt "@label" -msgid "Per Model Settings" -msgstr "Ajustes por Modelo" - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Ferramenta de Ajustes Por Modelo" - -msgid "Perspective" -msgstr "Perspectiva" - -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "Perspectiva" - -msgctxt "@action:label" -msgid "Placement" -msgstr "Posicionamento" - -msgctxt "@info:title" -msgid "Placing Object" -msgstr "Colocando Objeto" - -msgctxt "@info:title" -msgid "Placing Objects" -msgstr "Colocando Objetos" - -msgctxt "@label Type of platform" -msgid "Platform" -msgstr "Plataforma" - -msgctxt "@info" -msgid "Please connect your printer to the network." -msgstr "Por favor conecte sua impressora à rede." - -msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "Por favor entre um endereço IP válido." - -msgctxt "@message" -msgid "Please give the required permissions when authorizing this application." -msgstr "Por favor dê as permissões requeridas ao autorizar esta aplicação." - -msgctxt "@info" -msgid "" -"Please make sure your printer has a connection:\n" -"- Check if the printer is turned on.\n" -"- Check if the printer is connected to the network.\n" -"- Check if you are signed in to discover cloud-connected printers." -msgstr "" -"Por favor certifique-se que sua impressora está conectada>\n" -"- Verifique se ela está ligada.\n" -"- Verifique se ela está conectada à rede.\n" -"- Verifique se você está logado para descobrir impressoras conectadas à nuvem." - -msgctxt "@text" -msgid "Please name your printer" -msgstr "Por favor dê um nome à sua impressora" - -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "Por favor prepare o G-Code antes de exportar." - -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "Por favor dê um nome a este perfil." - -msgctxt "@info" -msgid "Please provide a new name." -msgstr "Por favor, escolha um novo nome." - -msgctxt "@text" -msgid "Please read and agree with the plugin licence." -msgstr "Por favor leia e concorde com a licença do complemento." - -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "Por favor remova a impressão" - -msgctxt "@info:status" -msgid "" -"Please review settings and check if your models:\n" -"- Fit within the build volume\n" -"- Are assigned to an enabled extruder\n" -"- Are not all set as modifier meshes" -msgstr "" -"Por favor revise os ajustes e verifique se seus modelos:\n" -"- Cabem dentro do volume de impressão\n" -"- Estão associados a um extrusor habilitado\n" -"- Não estão todos configurados como malhas de modificação" - -msgctxt "@label" -msgid "Please select any upgrades made to this UltiMaker Original" -msgstr "Por favor selecionar quaisquer atualizações feitas nesta UltiMaker Original" - -msgctxt "@description" -msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" -msgstr "Por favor se logue para adquirir complementos e materiais verificados para o UltiMaker Cura Enterprise" - -msgctxt "@action:button" -msgid "Please sync the material profiles with your printers before starting to print." -msgstr "Por favor sincronize os perfis de material com suas impressoras antes de começar a imprimir." - -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "Por favor atualize o firmware de sua impressora parar gerir a fila remotamente." - -msgctxt "@info:status" -msgid "Please wait until the current job has been sent." -msgstr "Por favor espere até que o trabalho atual tenha sido enviado." - -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Acordo de Licença do Complemento" - -msgctxt "@button" -msgid "Plugin license agreement" -msgstr "Acordo de licença do complemento" - -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Complementos" - -msgctxt "@button" -msgid "Plugins" -msgstr "Complementos" - -msgctxt "@label Description for application dependency" -msgid "Polygon clipping library" -msgstr "Biblioteca de recorte de polígonos" - -msgctxt "@label Description for application component" -msgid "Polygon packing library, developed by Prusa Research" -msgstr "Biblioteca de empacotamento Polygon, desenvolvido pela Prusa Research" - -msgctxt "@item:inmenu" -msgid "Post Processing" -msgstr "Pós-Processamento" - -msgctxt "name" -msgid "Post Processing" -msgstr "Pós-processamento" - -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "Complemento de Pós-Processamento" - -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "Scripts de Pós-Processamento" - -msgctxt "@button" -msgid "Pre-heat" -msgstr "Pré-aquecer" - -msgctxt "@item:inmenu" -msgid "Prepare" -msgstr "Preparar" - -msgctxt "name" -msgid "Prepare Stage" -msgstr "Estágio de Preparação" - -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "Preparando..." - -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Preparando..." - -msgctxt "@label" -msgid "Preset printers" -msgstr "Impressoras pré-ajustadas" - -msgctxt "@button" -msgid "Preview" -msgstr "Pré-visualização" - -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "Pré-visualização" - -msgctxt "name" -msgid "Preview Stage" -msgstr "Estágio de Pré-visualização" - -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "Torre de Prime" - -msgctxt "@action:button" -msgid "Print" -msgstr "Imprimir" - -msgctxt "@label" -msgid "Print Selected Model With:" -msgid_plural "Print Selected Models With:" -msgstr[0] "Imprimir Modelo Selecionado Com:" -msgstr[1] "Imprimir Modelos Selecionados Com:" - -msgctxt "@label %1 is filled in with the name of an extruder" -msgid "Print Selected Model with %1" -msgid_plural "Print Selected Models with %1" -msgstr[0] "Imprimir Modelo Selecionado com %1" -msgstr[1] "Imprimir Modelos Selecionados com %1" - -msgctxt "@label" -msgid "Print as support" -msgstr "Imprimir como suporte" - -msgctxt "@info:title" -msgid "Print error" -msgstr "Erro de impressão" - -msgctxt "@message" -msgid "Print in Progress" -msgstr "Impressão em Progresso" - -msgctxt "@info:status" -msgid "Print job queue is full. The printer can't accept a new job." -msgstr "A fila de trabalhos de impressão está cheia. A impressora não pode aceitar novo trabalho." - -msgctxt "@info:status" -msgid "Print job was successfully sent to the printer." -msgstr "Trabalho de impressão enviado à impressora com sucesso." - -msgctxt "@label" -msgid "Print jobs" -msgstr "Trabalhos de impressão" - -msgctxt "@label:button" -msgid "Print jobs" -msgstr "Trabalhos de impressão" - -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "Imprimir pela rede" - -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "Imprime pela rede" - -msgctxt "@title:window" -msgid "Print over network" -msgstr "Imprimir pela rede" - -msgctxt "@label" -msgid "Print settings" -msgstr "Ajustes de impressão" - -msgctxt "@label shown when we load a Gcode file" -msgid "Print setup disabled. G-code file can not be modified." -msgstr "Configuração de Impressão desabilitada. O arquivo de G-Code não pode ser modificado." - -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "Imprimir pela USB" - -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "Imprimir pela USB" - -msgctxt "@action:button" -msgid "Print via cloud" -msgstr "Imprimir pela nuvem" - -msgctxt "@properties:tooltip" -msgid "Print via cloud" -msgstr "Imprimir pela nuvem" - -msgctxt "@action:label" -msgid "Print with" -msgstr "Imprimir com" - -msgctxt "@title:tab" -msgid "Printer" -msgstr "Impressora" - -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Endereço da Impressora" - -msgctxt "@action:label" -msgid "Printer Group" -msgstr "Grupo de Impressora" - -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Ajustes de Impressora" - -msgctxt "@label" -msgid "Printer control" -msgstr "Controle da Impressora" - -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "A impressora não aceita comandos" - -msgctxt "@label" -msgid "Printer name" -msgstr "Nome da impressora" - -msgctxt "@label" -msgid "Printer selection" -msgstr "Seleção de impressora" - -msgctxt "@action:label" -msgid "Printer settings" -msgstr "Ajustes da impressora" - -msgctxt "@info:tooltip" -msgid "Printer settings will be updated to match the settings saved with the project." -msgstr "Os ajustes de impressora serão atualizados para concordar com os ajustes salvos com o projeto." - -msgctxt "@title:tab" -msgid "Printers" -msgstr "Impressoras" - -msgctxt "info:status" -msgid "Printers added from Digital Factory:" -msgstr "Impressoras adicionadas da Digital Factory:" - -msgctxt "@text Asking the user whether printers are missing in a list." -msgid "Printers missing?" -msgstr "Impressoras faltando?" - -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Ajustes da Cabeça de Impressão" - -msgctxt "@label:status" -msgid "Printing" -msgstr "Imprimindo" - -msgctxt "@label" -msgid "Printing Time" -msgstr "Tempo de Impressão" - -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "Imprimindo..." - -msgctxt "@label" -msgid "Privacy" -msgstr "Privacidade" - -msgctxt "@button" -msgid "Processing" -msgstr "Processando" - -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Processando Camadas" - -msgctxt "@label" -msgid "Profile" -msgstr "Perfil" - -msgctxt "@title:column" -msgid "Profile" -msgstr "Perfil" - -msgctxt "@label" -msgid "Profile author" -msgstr "Autor do perfil" - -msgctxt "@info:status" -msgid "Profile is missing a quality type." -msgstr "Falta um tipo de qualidade ao Perfil." - -msgctxt "@action:label" -msgid "Profile settings" -msgstr "Ajustes de perfil" - -msgctxt "@title:column" -msgid "Profile settings" -msgstr "Ajustes de perfil" - -#, python-brace-format -msgctxt "@info:status" -msgid "Profile {0} has an unknown file type or is corrupted." -msgstr "O Perfil {0} tem tipo de arquivo desconhecido ou está corrompido." - -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Perfis" - -msgctxt "@label" -msgid "Profiles" -msgstr "Perfis" - -msgctxt "@title:tab" -msgid "Profiles" -msgstr "Perfis" - -msgctxt "@label" -msgid "Profiles compatible with active printer:" -msgstr "Perfis compatíveis com a impressora ativa:" - -msgctxt "@label Description for application dependency" -msgid "Programming language" -msgstr "Linguagem de Programação" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." -msgstr "O arquivo de projeto {0} contém um tipo de máquina desconhecido {1}. Não foi possível importar a máquina. Os modelos serão importados ao invés dela." - -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is corrupt: {1}." -msgstr "Arquivo de projeto {0} está corrompido: {1}." - -#, python-brace-format -msgctxt "@info:error Don't translate the XML tag !" -msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." -msgstr "O arquivo de projeto {0} foi feito usando perfis que são desconhecidos para esta versão do UltiMaker Cura." - -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is suddenly inaccessible: {1}." -msgstr "O arquivo de projeto {0} tornou-se subitamente inacessível: {1}." - -msgctxt "@label" -msgid "Properties" -msgstr "Propriedades" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Provê ações de máquina para atualização do firmware." - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Provê um estágio de monitor no Cura." - -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Provê uma visualização de malha sólida normal." - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Provê um estágio de preparação no Cura." - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Provê uma etapa de pré-visualização ao Cura." - -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Provê uma maneira de alterar ajustes de máquina (tais como volume de impressão, tamanho do bico, etc.)." - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Provê capacidade de ler e escrever perfis de material baseado em XML." - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Provê ações de máquina para impressoras da UltiMaker (tais como assistente de nivelamento de mesa, seleção de atualizações, etc.)." - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Provê suporte a escrita e reconhecimento de drives a quente." - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Provê suporte à exportação de perfis do Cura." - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Provê suporte à importação de perfis do Cura." - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Provê suporte a importar perfis de arquivos G-Code." - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Provê suporte a importação de perfis de versões legadas do Cura." - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Provê suporte à leitura de arquivos 3MF." - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Provê suporta à leitura de arquivos AMF." - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Provê suporte à leitura de Formatos de Pacote Ultimaker." - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Provê suporte à leitura de arquivos X3D." - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Provê suporta a ler arquivos de modelo." - -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Provê suporte à escrita de arquivos 3MF." - -msgctxt "description" -msgid "Provides support for writing MakerBot Format Packages." -msgstr "Provê suporte à escrita de Pacotes de Formato MakerBot." - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Provê suporte à escrita de Formatos de Pacote Ultimaker." - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Provê Ajustes Por Modelo." - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Provê a visão de Raios-X." - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Provê a ligação ao backend de fatiamento CuraEngine." - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Provê a pré-visualização de dados de camada fatiados." - -msgctxt "@label" -msgid "PyQt version" -msgstr "Versão do PyQt" - -msgctxt "@Label Description for application dependency" -msgid "Python Error tracking library" -msgstr "Biblioteca de rastreamento de Erros Python" - -msgctxt "@label Description for application dependency" -msgid "Python bindings for Clipper" -msgstr "Ligações de Python pra Clipper" - -msgctxt "@label Description for application component" -msgid "Python bindings for libnest2d" -msgstr "Ligações de Python para a libnest2d" - -msgctxt "@label" -msgid "Qt version" -msgstr "Versão do Qt" - -#, python-brace-format -msgctxt "@info:status" -msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." -msgstr "Tipo de qualidade '{0}' não é compatível com a definição de máquina ativa atual '{1}'." - -msgctxt "@info:title" -msgid "Queue Full" -msgstr "Fila Cheia" - -msgctxt "@label" -msgid "Queued" -msgstr "Enfileirados" - -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "Sair de %1" - -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Lê G-Code de um arquivo comprimido." - -msgctxt "@button" -msgid "Recommended" -msgstr "Recomendado" - -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Recomendado" - -msgctxt "@label" -msgid "Recommended print settings" -msgstr "Ajustes recomendados de impressão" - -msgctxt "@info %1 is the name of a profile" -msgid "Recommended settings (for %1) were altered." -msgstr "Ajustes recomendados (para %1) foram alterados." - -msgctxt "@action:button" -msgid "Refresh" -msgstr "Atualizar" - -msgctxt "@button" -msgid "Refresh" -msgstr "Atualizar" - -msgctxt "@label" -msgid "Refresh" -msgstr "Atualizar" - -msgctxt "@button" -msgid "Refresh List" -msgstr "Atualizar Lista" - -msgctxt "@button" -msgid "Refreshing..." -msgstr "Atualizando..." - -msgctxt "@label" -msgid "Release Notes" -msgstr "Notas de lançamento" - -msgctxt "@action:inmenu menubar:file" -msgid "Reload All Models" -msgstr "Recarregar Todos Os Modelos" - -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "Lembrar minha escolha" - -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "Unidade Removível" - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Complemento de Dispositivo de Escrita Removível" - -msgctxt "@action:button" -msgid "Remove" -msgstr "Remover" - -msgctxt "@action:button" -msgid "Remove printers" -msgstr "Remover impressoras" - -msgctxt "@title:window" -msgid "Remove printers?" -msgstr "Remover impressoras?" - -msgctxt "@action:button" -msgid "Rename" -msgstr "Renomear" - -msgctxt "@title:window" -msgid "Rename" -msgstr "Renomear" - -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "Renomear Perfil" - -msgctxt "@action:inmenu menubar:help" -msgid "Report a &Bug" -msgstr "Relatar um &Bug" - -msgctxt "@label:button" -msgid "Report a bug" -msgstr "Relatar um problema" - -msgctxt "@message:button" -msgid "Report a bug" -msgstr "Relatar um bug" - -msgctxt "@message:description" -msgid "Report a bug on UltiMaker Cura's issue tracker." -msgstr "Relatar um bug no issue tracker do UltiMaker Cura." - -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Requer mudanças na configuração" - -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Positions" -msgstr "Reestabelecer as Posições de Todos Os Modelos" - -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Transformations" -msgstr "Remover as Transformações de Todos Os Modelos" - -msgctxt "@info" -msgid "Reset to defaults." -msgstr "Restaurar aos defaults." - -msgctxt "@label" -msgid "Resolution" -msgstr "Resolução" - -msgctxt "@button" -msgid "Restore" -msgstr "Restaurar" - -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Restaurar Backup" - -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "Restaurar posição da janela no início" - -msgctxt "@label" -msgid "Resume" -msgstr "Continuar" - -msgctxt "@label" -msgid "Resuming..." -msgstr "Continuando..." - -msgctxt "@label:status" -msgid "Resuming..." -msgstr "Continuando..." - -msgctxt "@tooltip" -msgid "Retractions" -msgstr "Retrações" - -msgctxt "@button" -msgid "Retry?" -msgstr "Tentar novamente?" - -msgctxt "@action:inmenu menubar:view" -msgid "Right Side View" -msgstr "Visão do Lado Direito" - -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "Visão à Direita" - -msgctxt "@label Description for application dependency" -msgid "Root Certificates for validating SSL trustworthiness" -msgstr "Certificados-Raiz para validar confiança SSL" - -msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "Remover Hardware com Segurança" - -msgctxt "@button" -msgid "Safety datasheet" -msgstr "Ficha de segurança" - -msgctxt "@action:button" -msgid "Save" -msgstr "Salvar" - -msgctxt "@option" -msgid "Save Cura project" -msgstr "Salvar o projeto Cura" - -msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "Salvar o projeto Cura e imprimir o arquivo" - -msgctxt "@title:window" -msgid "Save Custom Profile" -msgstr "Salvar Perfil Personalizado" - -msgctxt "@title:window" -msgid "Save Project" -msgstr "Salvar Projeto" - -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "Salvar Projeto..." - -msgctxt "@action:button" -msgid "Save as new custom profile" -msgstr "Salvar como novo perfil personalizado" - -msgctxt "@action:button" -msgid "Save changes" -msgstr "Salvar alterações" - -msgctxt "@button" -msgid "Save new profile" -msgstr "Salvar novo perfil" - -msgctxt "@text" -msgid "Save the .umm file on a USB stick." -msgstr "Grava o arquivo .umm em um pendrive USB." - -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "Salvar em Unidade Removível" - -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "Save to Removable Drive {0}" -msgstr "Salvar em Unidade Removível {0}" - -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "Salvo em Unidade Removível {0} como {1}" - -msgctxt "@info:title" -msgid "Saving" -msgstr "Salvando" - -#, python-brace-format -msgctxt "@info:progress Don't translate the XML tags !" -msgid "Saving to Removable Drive {0}" -msgstr "Salvando na Unidade Removível {0}" - -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "Redimensionar modelos minúsculos" - -msgctxt "@option:check" -msgid "Scale large models" -msgstr "Redimensionar modelos grandes" - -msgctxt "@placeholder" -msgid "Search" -msgstr "Buscar" - -msgctxt "@info" -msgid "Search in the browser" -msgstr "Buscar no navegador" - -msgctxt "@label:textbox" -msgid "Search settings" -msgstr "Ajustes de busca" - -msgctxt "@action:inmenu menubar:edit" -msgid "Select All Models" -msgstr "Selecionar Todos Os Modelos" - -msgctxt "@title:window" -msgid "Select Printer" -msgstr "Selecione Impressora" - -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Selecionar Ajustes a Personalizar para este modelo" - -msgctxt "@text" -msgid "Select and install material profiles optimised for your UltiMaker 3D printers." -msgstr "Selecione e instale perfis de material otimizados para suas impressoras 3D UltiMaker." - -msgctxt "@label" -msgid "Select configuration" -msgstr "Selecione configuração" - -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Selecionar firmware personalizado" - -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "Selecionar modelos ao carregar" - -msgctxt "@action:button" -msgid "Select settings" -msgstr "Selecionar ajustes" - -msgctxt "@action" -msgid "Select upgrades" -msgstr "Selecionar Atualizações" - -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Selecione sua impressora da lista abaixo:" - -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "Enviar informação (anônima) de impressão" - -msgctxt "@label" -msgid "Send G-code" -msgstr "Enviar G-Code" - -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "Enviar comando G-Code personalizado para a impressora conectada. Pressione 'enter' para enviar o comando." - -msgctxt "@action:button" -msgid "Send crash report to UltiMaker" -msgstr "Enviar relatório de falha à UltiMaker" - -msgctxt "@action:button" -msgid "Send report" -msgstr "Enviar relatório" - -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "Enviando Trabalho de Impressão" - -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "Enviando material para a impressora" - -msgctxt "name" -msgid "Sentry Logger" -msgstr "Sentinela para Registro" - -msgctxt "@label Description for application dependency" -msgid "Serial communication library" -msgstr "Biblioteca de comunicação serial" - -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Definir Como Extrusor Ativo" - -msgctxt "@title:column" -msgid "Setting" -msgstr "Ajustes" - -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "Visibilidade dos Ajustes" - -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "Ajustando preferências..." - -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "Configurando cena..." - -msgctxt "@action:label" -msgid "Setting visibility" -msgstr "Visibilidade dos ajustes" - -msgctxt "@label" -msgid "Settings" -msgstr "Ajustes" - -msgctxt "@title:tab" -msgid "Settings" -msgstr "Ajustes" - -msgctxt "@info:message Followed by a list of settings." -msgid "Settings have been changed to match the current availability of extruders:" -msgstr "Os ajustes foram alterados para seguir a disponibilidade de extrusores atuais:" - -msgctxt "@info:title" -msgid "Settings updated" -msgstr "Ajustes atualizados" - -msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community" -msgstr "Compartilhe ideias e consiga ajuda de mais de 48.000 usuários da Comunidade UltiMaker" - -msgctxt "@label" -msgid "Shell" -msgstr "Perímetro" - -msgctxt "@action:label" -msgid "Shell Thickness" -msgstr "Espessura de Perímetro" - -msgctxt "@info:tooltip" -msgid "Should Cura check for updates when the program is started?" -msgstr "O Cura deve verificar novas atualizações quando o programa for iniciado?" - -msgctxt "@info:tooltip" -msgid "Should Cura open at the location it was closed?" -msgstr "O Cura deve abrir no lugar onde foi fechado?" - -msgctxt "@info:tooltip" -msgid "Should a prefix based on the printer name be added to the print job name automatically?" -msgstr "Um prefixo baseado no nome da impressora deve ser adicionado ao nome do trabalho de impressão automaticamente?" - -msgctxt "@info:tooltip" -msgid "Should a summary be shown when saving a project file?" -msgstr "Um resumo deve ser exibido ao salvar um arquivo de projeto?" - -msgctxt "@info:tooltip" -msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!" -msgstr "Uma verificação automática por novos complementos deve ser feita toda vez que o Cura iniciar? É altamente recomendado que não desabilite esta opção!" - -msgctxt "@info:tooltip" -msgid "Should anonymous data about your print be sent to UltiMaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." -msgstr "Dados anônimos sobre sua impressão podem ser enviados para a UltiMaker? Nota: nenhuma informação pessoalmente identificável, modelos ou endereços IP são enviados ou armazenados." - -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "A Visão de Camada deve ser forçada a ficar em modo de compatibilidade?" - -msgctxt "@info:tooltip" -msgid "Should models be scaled to the build volume if they are too large?" -msgstr "Os modelos devem ser redimensionados dentro do volume de impressão se forem muito grandes?" - -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "Os modelos devem ser selecionados após serem carregados?" - -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved down to touch the build plate?" -msgstr "Os modelos devem ser movidos pra baixo pra se assentar na plataforma de impressão?" - -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved so that they no longer intersect?" -msgstr "Os modelos devem ser movidos na plataforma de modo que não se sobreponham?" - -msgctxt "@info:tooltip" -msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" -msgstr "Arquivos da área de trabalho ou de aplicações externas devem ser abertos na mesma instância do Cura?" - -msgctxt "@info:tooltip" -msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" -msgstr "A plataforma de construção deve ser esvaziada antes de carregar um modelo novo na instância única do Cura?" - -msgctxt "@info:tooltip" -msgid "Should the default zoom behavior of cura be inverted?" -msgstr "O comportamento default de ampliação deve ser invertido?" - -msgctxt "@info:tooltip" -msgid "Should zooming move in the direction of the mouse?" -msgstr "A ampliação (zoom) deve se mover na direção do mouse?" - -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "Exibir 5 Camadas Superiores Detalhadas" - -msgctxt "@action:inmenu menubar:help" -msgid "Show Configuration Folder" -msgstr "Exibir Pasta de Configuração" - -msgctxt "@button" -msgid "Show Custom" -msgstr "Mostrar Personalizado" - -msgctxt "@action:inmenu menubar:help" -msgid "Show Online &Documentation" -msgstr "Exibir &Documentação Online" - -msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting" -msgstr "Mostrar Resolução de Problemas Online" - -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Exibir tudo" - -msgctxt "@label" -msgid "Show all connected printers" -msgstr "Mostrar todas as impressoras conectadas" - -msgctxt "@info:tooltip" -msgid "Show an icon and notifications in the system notification area." -msgstr "Mostrar um ícone e notificações na área de notificações do sistema." - -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "Exibir mensagem de alerta no leitor de G-Code." - -msgctxt "@action:button" -msgid "Show configuration folder" -msgstr "Mostrar a pasta de configuração" - -msgctxt "@action:button" -msgid "Show detailed crash report" -msgstr "Exibir relatório de falha detalhado" - -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "Exibir diálogo de resumo ao salvar projeto" - -msgctxt "@tooltip:button" -msgid "Show your support for Cura with a donation." -msgstr "Mostre seu suporte ao Cura com uma doação." - -msgctxt "@button" -msgid "Sign Out" -msgstr "Deslogar" - -msgctxt "@action:button" -msgid "Sign in" -msgstr "Entrar" - -msgctxt "@button" -msgid "Sign in" -msgstr "Entrar" - -msgctxt "@title:header" -msgid "Sign in" -msgstr "Entrar" - -msgctxt "@info" -msgid "Sign in into UltiMaker Digital Factory" -msgstr "Fazer login na Ultimaker Digital Factory" - -msgctxt "@button" -msgid "Sign in to Digital Factory" -msgstr "Fazer login na Digital Factory" - -msgctxt "@label" -msgid "Sign in to the UltiMaker platform" -msgstr "Entre na plataforma UltiMaker" - -msgctxt "name" -msgid "Simulation View" -msgstr "Visão Simulada" - -msgctxt "@tooltip" -msgid "Skin" -msgstr "Contorno" - -msgctxt "@action:button" -msgid "Skip" -msgstr "Pular" - -msgctxt "@button" -msgid "Skip" -msgstr "Pular" - -msgctxt "@tooltip" -msgid "Skirt" -msgstr "Skirt (Saia)" - -msgctxt "@button" -msgid "Slice" -msgstr "Fatiar" - -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "Fatiar automaticamente" - -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "Fatiar automaticamente quando mudar ajustes." - -msgctxt "name" -msgid "Slice info" -msgstr "Informação de fatiamento" - -msgctxt "@message:title" -msgid "Slicing failed" -msgstr "Fatiamento falhado" - -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "O fatiamento falhou com um erro não esperado. Por favor considere relatar um bug em nosso issue tracker." - -msgctxt "@label:PrintjobStatus" -msgid "Slicing..." -msgstr "Fatiando..." - -msgctxt "@action:label" -msgid "Smoothing" -msgstr "Suavização" - -msgctxt "name" -msgid "Solid View" -msgstr "Visão Sólida" - -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "Visão sólida" - -msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "" -"Alguns ajustes ocultos usam valores diferentes de seu valor calculado normal.\n" -"\n" -"Clique para tornar estes ajustes visíveis." - -msgctxt "@info:status" -msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." -msgstr "Alguns dos pacotes usados no arquivo de projeto não estão atualmente instalados no Cura, isto pode produzir resultados de impressão não desejados. Recomendamos fortemente instalar todos os pacotes requeridos pelo MarketPlace." - -msgctxt "@info:title" -msgid "Some required packages are not installed" -msgstr "Alguns pacotes requeridos não estão instalados" - -msgctxt "@info %1 is the name of a profile" -msgid "Some setting-values defined in %1 were overridden." -msgstr "Alguns valores de ajustes definidos em %1 foram sobrepostos." - -msgctxt "@tooltip" -msgid "" -"Some setting/override values are different from the values stored in the profile.\n" -"\n" -"Click to open the profile manager." -msgstr "" -"Alguns ajustes/sobreposições têm valores diferentes dos que estão armazenados no perfil.\n" -"\n" -"Clique para abrir o gerenciador de perfis." - -msgctxt "@action:label" -msgid "Some settings from current profile were overwritten." -msgstr "Alguns ajustes do perfil atual foram sobrescritos." - -msgctxt "@message" -msgid "Something unexpected happened when trying to log in, please try again." -msgstr "Algo inesperado aconteceu ao tentar login, por favor tente novamente." - -msgctxt "@title:header" -msgid "Something went wrong when sending the materials to the printers." -msgstr "Algo de errado aconteceu ao enviar os materiais às impressoras." - -msgctxt "@label" -msgid "Something went wrong..." -msgstr "Alguma coisa deu errado..." - -msgctxt "@label:listbox" -msgid "Speed" -msgstr "Velocidade" - -msgctxt "@action:inmenu" -msgid "Sponsor Cura" -msgstr "Patrocinar o Cura" - -msgctxt "@label:button" -msgid "Sponsor Cura" -msgstr "Patrocinar o Cura" - -msgctxt "@option:radio" -msgid "Stable and Beta releases" -msgstr "Versões estáveis ou beta" - -msgctxt "@option:radio" -msgid "Stable releases only" -msgstr "Versões estáveis somente" - -msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Formato de Triângulos de Stanford" - -msgctxt "@button" -msgid "Start" -msgstr "Iniciar" - -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "Iniciar Nivelamento da Mesa de Impressão" - -msgctxt "@title:label" -msgid "Start G-code" -msgstr "G-Code Inicial" - -msgctxt "@label" -msgid "Start the slicing process" -msgstr "Inicia o processo de fatiamento" - -msgctxt "@label" -msgid "Starts" -msgstr "Inícios" - -msgctxt "@text" -msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users." -msgstr "Simplifique seu fluxo de trabalho e personalize sua experiência do UltiMaker Cura com complementos contribuídos por nossa fantástica comunidade de usuários." - -msgctxt "@label" -msgid "Strength" -msgstr "Força" - -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Submete informações de fatiamento anônimas. Pode ser desabilitado nas preferências." - -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "Material exportado para %1 com sucesso" - -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Material %1 importado com sucesso" - -#, python-brace-format -msgctxt "@info:status" -msgid "Successfully imported profile {0}." -msgstr "Perfil {0} importado com sucesso." - -msgctxt "@action:title" -msgid "Summary - Cura Project" -msgstr "Resumo - Projeto do Cura" - -msgctxt "@label" -msgid "Support" -msgstr "Suporte" - -msgctxt "@tooltip" -msgid "Support" -msgstr "Suporte" - -msgctxt "@label" -msgid "Support Blocker" -msgstr "Bloqueador de Suporte" - -msgctxt "name" -msgid "Support Eraser" -msgstr "Apagador de Suporte" - -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "Preenchimento de Suporte" - -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "Interface de Suporte" - -msgctxt "@action:label" -msgid "Support Type" -msgstr "Tipo de Suporte" - -msgctxt "@label Description for application dependency" -msgid "Support library for faster math" -msgstr "Biblioteca de suporte para matemática acelerada" - -msgctxt "@label Description for application component" -msgid "Support library for file metadata and streaming" -msgstr "Biblioteca de suporte para streaming e metadados de arquivo" - -msgctxt "@label Description for application component" -msgid "Support library for handling 3MF files" -msgstr "Biblioteca de suporte para manuseamento de arquivos 3MF" - -msgctxt "@label Description for application dependency" -msgid "Support library for handling STL files" -msgstr "Biblioteca de suporte para manuseamento de arquivos STL" - -msgctxt "@label Description for application dependency" -msgid "Support library for handling triangular meshes" -msgstr "Biblioteca de suporte para manuseamento de malhas triangulares" - -msgctxt "@label Description for application dependency" -msgid "Support library for scientific computing" -msgstr "Biblioteca de suporte para computação científica" - -msgctxt "@label Description for application dependency" -msgid "Support library for system keyring access" -msgstr "Biblioteca de suporte para acesso ao chaveiro do sistema" - -msgctxt "@action:button" -msgid "Sync" -msgstr "Sincronizar" - -msgctxt "@button" -msgid "Sync" -msgstr "Sincronizar" - -msgctxt "@title:header" -msgid "Sync material profiles via USB" -msgstr "Sincronizar perfis de material via USB" - -msgctxt "@action:button" -msgid "Sync materials" -msgstr "Sincronizar materiais" - -msgctxt "@button" -msgid "Sync materials with USB" -msgstr "Sincronizar materiais usando USB" - -msgctxt "@title:header" -msgid "Sync materials with printers" -msgstr "Sincronizar materiais com impressoras" - -msgctxt "@title:window" -msgid "Sync materials with printers" -msgstr "Sincronizar materiais com impressoras" - -msgctxt "@action:button" -msgid "Sync with Printers" -msgstr "Sincronizar com Impressoras" - -msgctxt "@button" -msgid "Syncing" -msgstr "Sincronizando" - -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "Sincronizando..." - -msgctxt "@title:groupbox" -msgid "System information" -msgstr "Informação do Sistema" - -msgctxt "@button" -msgid "Technical datasheet" -msgstr "Ficha técnica" - -msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "A quantidade de suavização para aplicar na imagem." - -msgctxt "@text" -msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance." -msgstr "O perfil de recozimento requer pós-processamento em um forno depois da impressão terminar. Este perfil retém a acuidade dimensional da parte impressão depois do recozimento e melhora a força, rigidez e resistência térmica." - -msgctxt "@label" -msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "The assigned printer, %1, requires the following configuration changes:" -msgstr[0] "A impressora associada, %1, requer a seguinte alteração de configuração:" -msgstr[1] "A impressora associada, %1, requer as seguintes alterações de configuração:" - -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "O backup excede o tamanho máximo de arquivo." - -msgctxt "@text" -msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." -msgstr "O perfil equilibrado é projetado para conseguir um equilíbrio entre produtividade, qualidade de superfície, propriedades mecânicas e acuidade dimensional." - -msgctxt "@info:tooltip" -msgid "The base height from the build plate in millimeters." -msgstr "A altura-base da mesa de impressão em milímetros." - -msgctxt "@info:status" -msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." -msgstr "A altura do volume de impressão foi reduzida para que o valor da \"Sequência de Impressão\" impeça o eixo de colidir com os modelos impressos." - -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "A conexão de nuvem está indisponível. Por favor verifique sua conexão de internet." - -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "A conexão de nuvem está indisponível. Por favor se logue para se conectar à impressora de nuvem." - -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "A impressora de nuvem está offline. Por favor verifique se a impressora está ligada e conectada à internet." - -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "A cor do material neste extrusor." - -msgctxt "@tooltip" -msgid "The configuration of this extruder is not allowed, and prohibits slicing." -msgstr "A configuração deste extrusor não é permitida e proíbe o fatiamento." - -msgctxt "@label" -msgid "The configurations are not available because the printer is disconnected." -msgstr "As configurações não estão disponíveis porque a impressora está desconectada." - -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "A temperatura atual da mesa aquecida." - -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "A temperatura atual deste hotend." - -msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "A profundidade da mesa de impressão em milímetros" - -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "O perfil de rascunho é projetado para imprimir protótipos iniciais e validações de conceito com o objetivo de redução significativa de tempo de impressão." - -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "O perfil de engenharia é projetado para imprimir protótipos funcionais e partes de uso final com o objetivo de melhor precisão e tolerâncias mais estritas." - -msgctxt "@label" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "O carro extrusor usado para imprimir o suporte. Isto é usado em multi-extrusão." - -#, python-brace-format -msgctxt "@label Don't translate the XML tag !" -msgid "The file {0} already exists. Are you sure you want to overwrite it?" -msgstr "O arquivo {0} já existe. Tem certeza que quer sobrescrevê-lo?" - -msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "O firmware que já vêm embutido nas novas impressoras funciona, mas novas versões costumam ter mais recursos, correções e melhorias." - -msgctxt "@info:backup_failed" -msgid "The following error occurred while trying to restore a Cura backup:" -msgstr "O seguinte erro ocorreu ao tentar restaurar um backup do Cura:" - -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "Os seguintes pacotes não podem ser instalados por incompatibilidade de versão do Cura:" - -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "Os seguintes pacotes serão adicionados:" - -msgctxt "@label" -msgid "The following printers in your account have been added in Cura:" -msgstr "As seguintes impressoras da sua conta foram adicionadas ao Cura:" - -msgctxt "@title:header" -msgid "The following printers will receive the new material profiles:" -msgstr "Os seguintes materiais receberão novos perfis de material:" - -msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "O seguinte script está ativo:" -msgstr[1] "Os seguintes scripts estão ativos:" - -msgctxt "@label" -msgid "The following settings define the strength of your part." -msgstr "Os seguintes ajustes definem a força de sua peça." - -msgctxt "@info:status" -msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." -msgstr "As áreas ressaltadas indicam superfícies faltantes ou incorretas. Conserte seu modelo e o abra novamente no Cura." - -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "O material neste extrusor." - -msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate" -msgid "The material package associated with the Cura project could not be found on the Ultimaker Marketplace. Use the partial material profile definition stored in the Cura project file at your own risk." -msgstr "O pacote de material associado com este projeto Cura não pôde ser encontrado no Ultimaker Marketplace. Use a definição parcial de perfil de material gravada no arquivo de projeto Cura por seu próprio risco." - -msgctxt "@info:tooltip" -msgid "The maximum distance of each pixel from \"Base.\"" -msgstr "A distância máxima de cada pixel da \"Base\"." - -msgctxt "@label (%1 is a number)" -msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" -msgstr "O novo diâmetro de filamento está ajustado em %1 mm, que não é compatível com o extrusor atual. Você deseja continuar?" - -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "O bico inserido neste extrusor." - -msgctxt "@label" -msgid "" -"The pattern of the infill material of the print:\n" -"\n" -"For quick prints of non functional model choose line, zig zag or lightning infill.\n" -"\n" -"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" -"\n" -"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "" -"O padrão do material de preenchimento da impressão:\n" -"\n" -"Para impressões rápidas de modelos não-funcionais escolha preenchimento de linha, ziguezague ou relâmpago.\n" -"\n" -"Para partes funcionais não sujeitas a muito stress, recomandos preenchimento de grade, triângulo ou tri-hexágono.\n" -"\n" -"Para impressões 3D funcionais que requeiram bastante força em múltiplas direções use cúbico, subdivisão cúbica, quarto cúbico, octeto e giroide." - -msgctxt "@info:tooltip" -msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." -msgstr "A porcentagem de luz penetrando uma impressão com espessura de 1 milímetro. Abaixar este valor aumenta o contraste em regiões escuras e diminui o contraste em regiões claras da imagem." - -msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate" -msgid "The plugin associated with the Cura project could not be found on the Ultimaker Marketplace. As the plugin may be required to slice the project it might not be possible to correctly slice the file." -msgstr "O complemento associado com o projeto Cura não foi encontrado no Ultimaker Marketplace. Como o complemento pode ser necessário para fatiar o projeto, pode não ser possível corretamente fatiar este arquivo." - -msgctxt "@info:title" -msgid "The print job was successfully submitted" -msgstr "O trabalho de impressão foi submetido com sucesso" - -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "A impressora %1 está associada, mas o trabalho contém configuração de material desconhecida." - -msgctxt "@label" -msgid "The printer at this address has not responded yet." -msgstr "A impressora neste endereço ainda não respondeu." - -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "A impressora neste endereço ainda não respondeu." - -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "A impressora não está conectada." - -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "As impressoras abaixo não podem ser conectadas por serem parte de um grupo" - -msgctxt "@message" -msgid "The provided state is not correct." -msgstr "O estado provido não está correto." - -msgctxt "@text:window" -msgid "The release notes could not be opened." -msgstr "As notas de lançamento não puderam ser abertas." - -msgctxt "@text:error" -msgid "The response from Digital Factory appears to be corrupted." -msgstr "A resposta da Digital Factory parece estar corrompida." - -msgctxt "@text:error" -msgid "The response from Digital Factory is missing important information." -msgstr "A resposta da Digital Factory veio sem informações importantes." - -msgctxt "@tooltip" -msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." -msgstr "A temperatura-alvo da mesa aquecida. A mesa aquecerá ou resfriará para esta temperatura. Se for zero, o aquecimento é desligado." - -msgctxt "@tooltip" -msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." -msgstr "A temperatura-alvo do hotend. O hotend vai aquecer ou esfriar na direção desta temperatura. Se for zero, o aquecimento de hotend é desligado." - -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "A temperatura em que pré-aquecer a mesa." - -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "A temperatura com a qual pré-aquecer o hotend." - -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "O perfil visual é projetado para imprimir protótipos e modelos virtuais com o objetivo de alta qualidade visual e de superfície." - -msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate" -msgstr "A largura em milímetros na plataforma de impressão" - -msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed." -msgid "Theme*:" -msgstr "Tema*:" - -msgctxt "@info:status" -msgid "There are no file formats available to write with!" -msgstr "Não há formatos de arquivo disponíveis com os quais escrever!" - -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "Não há trabalhos de impressão na fila. Fatie e envie um trabalho para adicioná-lo." - -msgctxt "@tooltip" -msgid "There are no profiles matching the configuration of this extruder." -msgstr "Não há perfis correspondendo à configuração deste extrusor." - -msgctxt "@info:status" -msgid "There is no active printer yet." -msgstr "Não há impressora ativa ainda." - -msgctxt "@label" -msgid "There is no printer found over your network." -msgstr "Não foi encontrada nenhuma impressora em sua rede." - -msgctxt "@error" -msgid "There is no workspace yet to write. Please add a printer first." -msgstr "Não existe espaço de trabalho ainda para a escrita. Por favor adicione uma impressora primeiro." - -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "Houve um erro ao tentar restaurar seu backup." - -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "Houve um erro ao criar seu backup." - -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "Houve um erro ao transferir seu backup." - -msgctxt "@label" -msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." -msgstr "Esta configuração não está disponível porque %1 não foi reconhecido. Por favor visite %2 para baixar o perfil de materil correto." - -msgctxt "@text:window" -msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" -msgstr "Este é um arquivo de projeto do Cura. Gostaria de abri-lo como um projeto ou importar os modelos dele?" - -msgctxt "@label" -msgid "This material is linked to %1 and shares some of its properties." -msgstr "Este material está vinculado a %1 e compartilha algumas de suas propriedades." - -msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "Este pacote será instalado após o reinício." - -msgctxt "@label" -msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." -msgstr "Esta impressora não pode ser adicionada porque é uma impressora desconhecida ou porque não é o host do grupo." - -msgctxt "info:status" -msgid "This printer is not linked to the Digital Factory:" -msgid_plural "These printers are not linked to the Digital Factory:" -msgstr[0] "Esta impressora não está ligada à Digital Factory:" -msgstr[1] "Estas impressoras não estão ligadas à Digital Factory:" - -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "Esta impressora não está vinculada à sua conta. Por favor visite a Ultimaker Digital Factory para estabelecer uma conexão." - -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras." - -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "Esta impressora é a hospedeira de um grupo de %1 impressoras." - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags !" -msgid "This profile {0} contains incorrect data, could not import it." -msgstr "Este perfil {0} contém dados incorretos, não foi possível importá-lo." - -msgctxt "@action:label" -msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." -msgstr "Este perfil usa os defaults especificados pela impressora, portanto não tem ajustes/sobreposições na lista abaixo." - -msgctxt "@label" -msgid "This project contains materials or plugins that are currently not installed in Cura.
    Install the missing packages and reopen the project." -msgstr "Este projeto contém materiais ou complementos que não estão atualmente instalados no Cura.
    Instale os pacotes faltantes e abra novamente o projeto." - -msgctxt "@label" -msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." -msgstr "" -"Este ajuste tem um valor que é diferente do perfil.\n" -"\n" -"Clique para restaurar o valor do perfil." - -msgctxt "@item:tooltip" -msgid "This setting has been hidden by the active machine and will not be visible." -msgstr "Este ajuste foi omitido para a máquina ativa e não ficará visível." - -msgctxt "@item:tooltip %1 is list of setting names" -msgid "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible." -msgid_plural "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible." -msgstr[0] "Este ajuste foi mantido invisível pelo valor de %1. Altere o valor desse ajuste para tornar este ajuste visível." -msgstr[1] "Este ajuste foi mantido invisível pelos valores de %1. Altere o valor desses ajustes para tornar este ajuste visível." - -msgctxt "@label" -msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." -msgstr "Este ajuste é sempre compartilhado entre todos os extrusores. Modificá-lo aqui mudará o valor para todos." - -msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "" -"Este ajuste é normalmente calculado, mas atualmente tem um conjunto absoluto de valores.\n" -"\n" -"Clique para restaurar o valor calculado." - -msgctxt "@label" -msgid "This setting is not used because all the settings that it influences are overridden." -msgstr "Este ajuste não é usado porque todos os ajustes que ele influencia estão sobrepostos." - -msgctxt "@label" -msgid "This setting is resolved from conflicting extruder-specific values:" -msgstr "Este ajuste é resolvido dos valores conflitante específicos de extrusor:" - -msgctxt "@info:warning" -msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" -msgstr "Esta versão não é pretendida para uso em produção. Se você encontrar quaisquer problemas, por favor relate-os na nossa página de GitHub, mencionando a versão completa {self.getVersion()}" - -msgctxt "@label" -msgid "Time estimation" -msgstr "Estimativa de tempo" - -msgctxt "@message" -msgid "Timeout when authenticating with the account server." -msgstr "Tempo esgotado ao autenticar com o servidor da conta." - -msgctxt "@text" -msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." -msgstr "Para automaticamente sincronizar os perfis de material com todas as suas impressoras conectadas à Digital Factory, você precisa estar logado pelo Cura." - -#, python-brace-format -msgctxt "info:status" -msgid "To establish a connection, please visit the {website_link}" -msgstr "Para estabelecer uma conexão, por favor visite o {website_link}" - -msgctxt "@label" -msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." -msgstr "Para garantir que suas impressões saiam ótimas, você deve agora ajustar sua mesa de impressão. Quando você clicar em 'Mover para a Posição Seguinte', o bico se moverá para posições diferentes que podem ser ajustadas." - -msgctxt "@label" -msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." -msgstr "Para imprimir diretamente na sua impressora pela rede, certifique-se que ela esteja conectada à rede usando um cabo de rede ou conectando sua impressora à sua WIFI. Se você não conectar Cura à sua impressora, você ainda pode usar um drive USB ou SDCard para transferir arquivos G-Code a ela." - -#, python-brace-format -msgctxt "@message {printer_name} is replaced with the name of the printer" -msgid "To remove {printer_name} permanently, visit {digital_factory_link}" -msgstr "Para remover {printer_name} permanentemente, visite {digital_factory_link}" - -msgctxt "@action:inmenu" -msgid "Toggle Full Screen" -msgstr "Alternar Tela Cheia" - -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Topo / Base" - -msgctxt "@action:inmenu menubar:view" -msgid "Top View" -msgstr "Visão Superior" - -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "Visão de Cima" - -msgctxt "@label" -msgid "Total print time" -msgstr "Tempo total de impressão" - -msgctxt "@action:tooltip" -msgid "Track the print in Ultimaker Digital Factory" -msgstr "Rastrear a impressão na Ultimaker Digital Factory" - -msgctxt "@item:inlistbox" -msgid "Translucency" -msgstr "Translucidez" - -msgctxt "@tooltip" -msgid "Travel" -msgstr "Percurso" - -msgctxt "@label" -msgid "Travels" -msgstr "Percursos" - -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup that is higher than the current version." -msgstr "Tentativa de restauração de backup do Cura de versão maior que a atual." - -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup without having proper data or meta data." -msgstr "Tentativa de restauração de backup do Cura sem dados ou metadados apropriados." - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Leitor Trimesh" - -msgctxt "@button" -msgid "Troubleshooting" -msgstr "Resolução de problemas" - -msgctxt "@label" -msgid "Troubleshooting" -msgstr "Resolução de problemas" - -msgctxt "@button" -msgid "Try again" -msgstr "Tentar novamente" - -msgctxt "@action:label" -msgid "Type" -msgstr "Tipo" - -msgctxt "@label" -msgid "Type" -msgstr "Tipo" - -msgctxt "name" -msgid "UFP Reader" -msgstr "Leitor UFP" - -msgctxt "name" -msgid "UFP Writer" -msgstr "Gerador de UFP" - -msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "Impressão USB" - -msgctxt "name" -msgid "USB printing" -msgstr "Impressão USB" - -msgctxt "@button" -msgid "UltiMaker Account" -msgstr "Conta na UltiMaker" - -msgctxt "@info" -msgid "UltiMaker Certified Material" -msgstr "Material Certificado UltiMaker" - -msgctxt "@text:window" -msgid "UltiMaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" -msgstr "O UltiMaker Cura coleta dados anônimos para poder aprimorar a qualidade de impressão e experiência do usuário. Abaixo segue um exemplo de todos os dados que são compartilhados:" - -msgctxt "@item:inlistbox" -msgid "UltiMaker Format Package" -msgstr "Pacote de Formato da UltiMaker" - -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "Conexão de Rede UltiMaker" - -msgctxt "@info" -msgid "UltiMaker Verified Package" -msgstr "Pacote Verificado UltiMaker" - -msgctxt "@info" -msgid "UltiMaker Verified Plug-in" -msgstr "Complemento Verificado UltiMaker" - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "Ações de máquina UltiMaker" - -msgctxt "@button" -msgid "UltiMaker printer" -msgstr "Impressora UltiMaker" - -msgctxt "@label:button" -msgid "UltiMaker support" -msgstr "Suporte UltiMaker" - -msgctxt "info:name" -msgid "Ultimaker Digital Factory" -msgstr "Ultimaker Digital Factory" - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Digital Library da UltiMaker" - -msgctxt "@info:status" -msgid "Unable to add the profile." -msgstr "Não foi possível adicionar o perfil." - -msgctxt "@info:status" -msgid "Unable to find a location within the build volume for all objects" -msgstr "Não foi possível achar um lugar dentro do volume de construção para todos os objetos" - -#, python-brace-format -msgctxt "@info:plugin_failed" -msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" -msgstr "Não foi possível encontrar o executável do servidor local de EnginePlugin para: {self._plugin_id}" - -#, python-brace-format -msgctxt "@info:plugin_failed" -msgid "" -"Unable to kill running EnginePlugin: {self._plugin_id}\n" -"Access is denied." -msgstr "" -"Não foi possível matar o processo EnginePlugin: {self._plugin_id}\n" -"Acesso negado." - -msgctxt "@info" -msgid "Unable to reach the UltiMaker account server." -msgstr "Não foi possível contactar o servidor de contas da UltiMaker." - -msgctxt "@text" -msgid "Unable to read example data file." -msgstr "Não foi possível ler o arquivo de dados de exemplo." - -msgctxt "@info:title" -msgid "Unable to slice" -msgstr "Não foi possível fatiar" - -msgctxt "@label:PrintjobStatus" -msgid "Unable to slice" -msgstr "Não foi possível fatiar" - -msgctxt "@info:status" -msgid "Unable to slice because the prime tower or prime position(s) are invalid." -msgstr "Não foi possível fatiar porque a torre de purga ou posição de purga são inválidas." - -#, python-format -msgctxt "@info:status" -msgid "Unable to slice because there are objects associated with disabled Extruder %s." -msgstr "Não foi possível fatiar porque há objetos associados com o Extrusor desabilitado %s." - -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" -msgstr "Não foi possível fatiar devido a alguns ajustes por modelo. Os seguintes ajustes têm erros em um dos modelos ou mais: {error_labels}" - -msgctxt "@info:status" -msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." -msgstr "Não foi possível fatiar com o material atual visto que é incompatível com a máquina ou configuração selecionada." - -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice with the current settings. The following settings have errors: {0}" -msgstr "Não foi possível fatiar com os ajustes atuais. Os seguintes ajustes têm erros: {0}" - -msgctxt "@info" -msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." -msgstr "Não foi possível iniciar processo de login. Verifique se outra tentativa de login ainda está ativa." - -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Indisponível" - -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Impressora indisponível" - -msgctxt "@action:inmenu menubar:edit" -msgid "Ungroup Models" -msgstr "Desagrupar Modelos" - -msgctxt "@button" -msgid "Uninstall" -msgstr "Desinstalar" - -msgctxt "@title:column Unit of measurement" -msgid "Unit" -msgstr "Unidade" - -msgctxt "@label Description for development tool" -msgid "Universal build system configuration" -msgstr "Configuração de sistema universal de construção" - -msgctxt "@label" -msgid "Unknown" -msgstr "Desconhecido" - -msgctxt "@label unknown version of Cura" -msgid "Unknown" -msgstr "Desconhecida" - -msgctxt "@label:property" -msgid "Unknown Author" -msgstr "Autor Desconhecido" - -msgctxt "@label:property" -msgid "Unknown Package" -msgstr "Pacote Desconhecido" - -#, python-brace-format -msgctxt "@error:send" -msgid "Unknown error code when uploading print job: {0}" -msgstr "Código de erro desconhecido ao transferir trabalho de impressão: {0}" - -msgctxt "@text" -msgid "Unknown error." -msgstr "Erro desconhecido." - -msgctxt "@label" -msgid "Unlink Material" -msgstr "Desvincular Material" - -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Inacessivel" - -msgctxt "@label" -msgid "Untitled" -msgstr "Sem Título" - -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "Sem Título" - -msgctxt "@button" -msgid "Update" -msgstr "Atualizar" - -msgctxt "@action" -msgid "Update Firmware" -msgstr "Atualizar Firmware" - -msgctxt "@title" -msgid "Update Firmware" -msgstr "Atualizar Firmware" - -msgctxt "@action:ComboBox Update/override existing profile" -msgid "Update existing" -msgstr "Atualizar existentes" - -msgctxt "@action:tooltip" -msgid "Update profile with current settings/overrides" -msgstr "Atualizar perfil com ajustes/sobreposições atuais" - -msgctxt "@action:button" -msgid "Update profile." -msgstr "Atualizar perfil." - -msgctxt "@info:title" -msgid "Update your printer" -msgstr "Atualize sua impressora" - -msgctxt "@label" -msgid "Updates" -msgstr "Atualizações" - -msgctxt "@label" -msgid "Updating firmware." -msgstr "Atualizando firmware." - -msgctxt "@button" -msgid "Updating..." -msgstr "Atualizando..." - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Atualiza configurações do Cura 2.1 para o Cura 2.2." - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Atualiza configurações do Cura 2.2 para o Cura 2.4." - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Atualiza configurações do Cura 2.5 para o Cura 2.6." - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Atualiza configurações do Cura 2.6 para o Cura 2.7." - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Atualiza configuração do Cura 2.7 para o Cura 3.0." - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Atualiza configurações do Cura 3.0 para o Cura 3.1." - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Atualiza configurações do Cura 3.2 para o Cura 3.3." - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Atualiza configuração do Cura 3.3 para o Cura 3.4." - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Atualiza configurações do Cura 3.4 para o Cura 3.5." - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Atualiza configuração do Cura 3.5 para o Cura 4.0." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Atualiza configurações do Cura 4.0 para o Cura 4.1." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Atualiza configurações do Cura 4.1 para o Cura 4.2." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Atualiza configurações do Cura 4.11 para o Cura 4.12." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Atualiza configurações do Cura 4.13 para o Cura 5.0." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Atualiza configurações do Cura 4.2 para o Cura 4.3." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Atualiza configurações do Cura 4.3 para o Cura 4.4." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Atualiza configurações do Cura 4.4 para o Cura 4.5." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Atualiza configurações do Cura 4.5 para o Cura 4.6." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Atualiza configurações do Cura 4.6.0 para o Cura 4.6.2." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Atualiza configurações do Cura 4.6.2 para o Cura 4.7." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Atualiza configurações do Cura 4.7 para o Cura 4.8." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Atualiza configurações do Cura 4.8 para o Cura 4.9." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Atualiza configurações do Cura 4.9 para o Cura 4.10." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Atualiza configurações do Cura 5.2 para o Cura 5.3." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Atualiza configurações do Cura 5.3 para o Cura 5.4." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Atualiza configurações do Cura 5.4 para o Cura 5.5." - -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Carregar Firmware personalizado" - -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Transferindo trabalho de impressão para a impressora." - -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Enviando seu backup..." - -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Usar uma única instância do Cura" - -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "Use cola para melhor aderência com essa combinação de materiais." - -msgctxt "@label" -msgid "User Agreement" -msgstr "Contrato de Usuário" - -msgctxt "@label Description for application dependency" -msgid "Utility functions, including an image loader" -msgstr "Funções de utilidade, incluindo um carregador de imagem" - -msgctxt "@label Description for application dependency" -msgid "Utility library, including Voronoi generation" -msgstr "Biblioteca de utilidade, incluindo geração Voronoi" - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Atualização de Versão de 2.1 para 2.2" - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Atualização de Versão de 2.2 para 2.4" - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Atualização de Versão de 2.5 para 2.6" - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Atualização de Versão de 2.6 para 2.7" - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Atualização de Versão de 2.7 para 3.0" - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Atualização de Versão 3.0 para 3.1" - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Atualização de Versão de 3.2 para 3.3" - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Atualização de Versão de 3.3 para 3.4" - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Atualização de Versão de 3.4 para 3.5" - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Atualização de Versão de 3.5 para 4.0" - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Atualização de Versão de 4.0 para 4.1" - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Atualização de Versão de 4.1 para 4.2" - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Atualização de Versão de 4.11 para 4.12" - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Atualização de Versão de 4.13 para 5.0" - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Atualização de Versão de 4.2 para 4.3" - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Atualização de Versão de 4.3 para 4.4" - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Atualização de Versão de 4.4 para 4.5" - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Atualização de Versão de 4.5 para 4.6" - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Atualização de Versão de 4.6.0 para 4.6.2" - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Atualização de Versão de 4.6.2 para 4.7" - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Atualização de Versão de 4.7 para 4.8" - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Atualização de Versão de 4.8 para 4.9" - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Atualização de Versão de 4.9 para 4.10" - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "Atualização de Versão de 5.2 para 5.3" - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "Atualização de Versão de 5.3 para 5.4" - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "Atualização de Versão de 5.4 para 5.5" - -msgctxt "@button" -msgid "View printers in Digital Factory" -msgstr "Ver impressoras na Digital Factory" - -msgctxt "@label" -msgid "View type" -msgstr "Tipo de Visão" - -msgctxt "@label link to technical assistance" -msgid "View user manuals online" -msgstr "Ver manuais de usuário online" - -msgctxt "@label" -msgid "Viewport behavior" -msgstr "Comportamento da área de visualização" - -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "Ajustes Visíveis" - -msgctxt "@button" -msgid "Visit plug-in website" -msgstr "Visitar sítio web de complementos" - -msgctxt "@tooltip:button" -msgid "Visit the UltiMaker website." -msgstr "Visita o website da UltiMaker." - -msgctxt "@label" -msgid "Visual" -msgstr "Visual" - -msgctxt "@label" -msgid "Waiting for" -msgstr "Esperando por" - -msgctxt "@label" -msgid "Waiting for Cloud response" -msgstr "Aguardando resposta da Nuvem" - -msgctxt "@button" -msgid "Waiting for new printers" -msgstr "Esperando por novas impressoras" - -msgctxt "@button" -msgid "Want more?" -msgstr "Quer mais?" - -msgctxt "@info:title" -msgid "Warning" -msgstr "Aviso" - -#, python-brace-format -msgctxt "@info:status" -msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." -msgstr "Alerta: o perfil não está visível porque seu tipo de qualidade '{0}' não está disponível para a configuração atual. Altere para uma combinação de material/bico que possa usar este tipo de qualidade." - -msgctxt "@text:window" -msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." -msgstr "Encontramos um ou mais arquivos de G-Code entre os arquivos que você selecionou. Você só pode abrir um arquivo de G-Code por vez. Se você quiser abrir um arquivo de G-Code, por favor selecione somente um." - -msgctxt "@text:window" -msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" -msgstr "Encontramos um ou mais arquivo(s) de projeto entre os arquivos que você selecionou. Você só pode abrir um arquivo de projeto por vez. Sugerimos que somente importe modelos destes arquivos. Gostaria de prosseguir?" - -msgctxt "@info" -msgid "Webcam feeds for cloud printers cannot be viewed from UltiMaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam." -msgstr "Fontes de webcam para impressoras de nuvem não podem ser vistas pelo UltiMaker Cura. Clique em \"Gerenciar impressora\" para visitar a Ultimaker Digital Factory e visualizar esta webcam." - -msgctxt "@button" -msgid "Website" -msgstr "Sítio web" - -msgctxt "@label" -msgid "What printer would you like to setup?" -msgstr "Que impressora você gostaria de configurar?" - -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "Que tipo de renderização de câmera deve ser usada?" - -msgctxt "@action:inmenu menubar:help" -msgid "What's New" -msgstr "Novidades" - -msgctxt "@label" -msgid "What's New" -msgstr "O Que Há de Novo" - -msgctxt "@title:window" -msgid "What's New" -msgstr "Novidades" - -msgctxt "@info:tooltip" -msgid "When checking for updates, check for both stable and for beta releases." -msgstr "Ao procurar por atualizações, fazer para versões estáveis ou beta." - -msgctxt "@info:tooltip" -msgid "When checking for updates, only check for stable releases." -msgstr "Ao procurar por atualizações, somente o fazer para versões estáveis." - -msgctxt "@info:tooltip" -msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." -msgstr "Quando você faz alterações em um perfil e troca para um diferent, um diálogo aparecerá perguntando se você quer manter ou aplicar suas modificações, ou você pode forçar um comportamento default e não ter o diálogo." - -msgctxt "@button" -msgid "Why do I need to sync material profiles?" -msgstr "Por que eu preciso sincronizar perfis de material?" - -msgctxt "@action:label" -msgid "Width (mm)" -msgstr "Largura (mm)" - -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Escreve em formato G-Code comprimido." - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Escreve em formato G-Code." - -msgctxt "@label" -msgid "X (Width)" -msgstr "X (largura)" - -msgctxt "@label" -msgid "X max" -msgstr "X máx" - -msgctxt "@label" -msgid "X min" -msgstr "X mín" - -msgctxt "name" -msgid "X-Ray View" -msgstr "Visão de Raios-X" - -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Visão de Raios-X" - -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "Arquivo X3D" - -msgctxt "name" -msgid "X3D Reader" -msgstr "Leitor de X3D" - -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Profundidade)" - -msgctxt "@label" -msgid "Y max" -msgstr "Y máx" - -msgctxt "@label" -msgid "Y min" -msgstr "Y mín" - -msgctxt "@info" -msgid "Yes" -msgstr "Sim" - -msgctxt "@label" -msgid "" -"You are about to remove all printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr "" -"Você está prestes a remover todas as impressoras do Cura. Esta ação não pode ser desfeita.\n" -"Tem certeza que quer continuar?" - -#, python-brace-format -msgctxt "@label" -msgid "" -"You are about to remove {0} printer from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgid_plural "" -"You are about to remove {0} printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr[0] "" -"Você está prestes a remover {0} impressora do Cura. Esta ação não pode ser desfeita.\n" -"Tem certeza que quer continuar?" -msgstr[1] "" -"Você está prestes a remover {0} impressoras do Cura. Esta ação não pode ser desfeita.\n" -"Tem certeza que quer continuar?" - -msgctxt "@info:status" -msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." -msgstr "Você está tentando conectar a uma impressora que não está rodando UltiMaker Connect. Por favor atualize a impressora para o firmware mais recente." - -#, python-brace-format -msgctxt "@info:status" -msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." -msgstr "Você está tentando conectar a {0} mas ele não é host de um grupo. Você pode visitar a página web para configurá-lo como host de grupo." - -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "Você não tem nenhum backup atualmente. Use o botão 'Backup Agora' para criar um." - -msgctxt "@text:window, %1 is a profile name" -msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "Você personalizou alguns ajustes de perfil. Gostaria de manter estes ajustes alterados após trocar perfis? Alternativamente, você pode descartar as alterações para carregar os defaults de '%1'." - -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "Você precisa aceitar a licença para que o pacote possa ser instalado" - -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "Você precisa sair e reiniciar {} para que as alterações tenham efeito." - -msgctxt "@dialog:info" -msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" -msgstr "Você precisará reiniciar o Cura antes que seu backup seja restaurado. Deseja fechar o Cura agora?" - -msgctxt "@info:status" -msgid "You will receive a confirmation via email when the print job is approved" -msgstr "Você receberá uma confirmação por email quando o trabalho de impressão for aprovado" - -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "Seu backup terminou de ser enviado." - -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "Seus ajustes atuais coincidem com o perfil selecionado." - -msgctxt "@info" -msgid "Your new printer will automatically appear in Cura" -msgstr "Sua nova impressora vai automaticamente aparecer no Cura" - -#, python-brace-format -msgctxt "@info:status" -msgid "" -"Your printer {printer_name} could be connected via cloud.\n" -" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "" -"Sua impressora {printer_name} poderia estar conectada via nuvem.\n" -" Gerencie sua fila de impressão e monitore suas impressoras de qualquer lugar conectando sua impressora à Digital Factory" - -msgctxt "@label" -msgid "Z" -msgstr "Z" - -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Altura)" - -msgctxt "@label Description for application dependency" -msgid "ZeroConf discovery library" -msgstr "Biblioteca de descoberta 'ZeroConf'" - -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "Ampliar na direção do mouse" - -msgctxt "@info:tooltip" -msgid "Zooming towards the mouse is not supported in the orthographic perspective." -msgstr "Ampliar com o mouse não é suportado na perspectiva ortográfica." - -msgctxt "@text Placeholder for the username if it has been deleted" -msgid "deleted user" -msgstr "usuário removido" - -msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "Binário glTF" - -msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "glTF Embutido JSON" - -msgctxt "@label" -msgid "max" -msgstr "máx" - -msgctxt "@label" -msgid "min" -msgstr "mín" - -msgctxt "@label" -msgid "mm" -msgstr "mm" - -msgctxt "@info:status" -msgid "today" -msgstr "hoje" - -msgctxt "@info:status" -msgid "tomorrow" -msgstr "amanhã" - -msgctxt "@label" -msgid "version: %1" -msgstr "versão: %1" - -#, python-brace-format -msgctxt "@message {printer_name} is replaced with the name of the printer" -msgid "{printer_name} will be removed until the next account sync." -msgstr "{printer_name} será removida até a próxima sincronização de conta." - -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "{} complementos falharam em baixar" - -#, python-brace-format -#~ msgctxt "info:{0} gets replaced by a number of printers" -#~ msgid "... and {0} other" -#~ msgid_plural "... and {0} others" -#~ msgstr[0] "... e {0} outra" -#~ msgstr[1] "... e {0} outras" - -#~ msgctxt "@tooltip:button" -#~ msgid "Become a 3D printing expert with UltiMaker e-learning." -#~ msgstr "Torne-se um especialista em impressão 3D com UltiMaker e-learning." - -#~ msgctxt "@info:status" -#~ msgid "Cura does not accurately display layers when Wire Printing is enabled." -#~ msgstr "O Cura não exibe camadas de forma precisa quando Impressão em Arame está habilitada." - -#~ msgctxt "@label" -#~ msgid "Default" -#~ msgstr "Default" - -#~ msgctxt "@label" -#~ msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." -#~ msgstr "Habilita imprimir um brim (bainha) ou raft (jangada). Adicionará uma área chata em volta ou sob o objeto que é fácil de remover após a impressão ter finalizado." - -#~ msgctxt "@error:zip" -#~ msgid "Error writing 3mf file." -#~ msgstr "Erro ao escrever arquivo 3mf." - -#~ msgctxt "@label" -#~ msgid "Hex" -#~ msgstr "Hexa" - -#~ msgctxt "@action:button" -#~ msgid "Install Materials" -#~ msgstr "Instalar Materiais" - -#~ msgctxt "@title" -#~ msgid "Install missing Materials" -#~ msgstr "Instalar Materiais faltantes" - -#~ msgctxt "@action:button" -#~ msgid "Install missing material" -#~ msgstr "Instalar material faltante" - -#~ msgctxt "@info:title" -#~ msgid "Material profiles not installed" -#~ msgstr "Perfis de material não instalados" - -#~ msgctxt "@info:title" -#~ msgid "Simulation View" -#~ msgstr "Visão Simulada" - -#~ msgctxt "@label" -#~ msgid "The material used in this project is currently not installed in Cura.
    Install the material profile and reopen the project." -#~ msgstr "O material usado neste projeto não está instalado atualmente no Cura.
    Instale o perfil de material e reabra o projeto." - -#~ msgctxt "@info:status" -#~ msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." -#~ msgstr "O material usado neste projeto depende de algumas definições de material não disponíveis no Cura e isto pode produzir resultados de impressão indesejáveis. Recomendamos altamente instalar o pacote completo de material do Marketplace." - -#~ msgctxt "@error:zip" -#~ msgid "The operating system does not allow saving a project file to this location or with this file name." -#~ msgstr "O sistema operacional não permite salvar um arquivo de projeto nesta localização ou com este nome de arquivo." +# +msgid "" +msgstr "" +"Project-Id-Version: Cura 5.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-31 19:13+0100\n" +"PO-Revision-Date: 2023-11-19 19:51+0100\n" +"Last-Translator: Cláudio Sampaio \n" +"Language-Team: Cláudio Sampaio \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 3.4.1\n" + +#, python-format +msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." +msgid "%(width).1f x %(depth).1f x %(height).1f mm" +msgstr "%(width).1f x %(depth).1f x %(height).1f mm" + +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 & material" + +msgctxt "@action:label" +msgid "%1 out of %2" +msgstr "%1 de %2" + +msgctxt "@action:label" +msgid "%1 override" +msgid_plural "%1 overrides" +msgstr[0] "%1 sobreposto" +msgstr[1] "%1 sobrepostos" + +msgctxt "@action:label" +msgid "%1, %2 override" +msgid_plural "%1, %2 overrides" +msgstr[0] "%1, %2 sobreposição" +msgstr[1] "%1, %2 sobreposições" + +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1g" + +msgctxt "@label m for meter" +msgid "%1m" +msgstr "%1m" + +msgctxt "@action:inmenu menubar:printer" +msgid "&Add Printer..." +msgstr "&Adicionar Impressora..." + +msgctxt "@action:inmenu menubar:view" +msgid "&Camera position" +msgstr "Posição da &câmera" + +msgctxt "@action:inmenu menubar:profile" +msgid "&Create profile from current settings/overrides..." +msgstr "&Criar perfil a partir de ajustes/sobreposições atuais..." + +msgctxt "@action:inmenu menubar:profile" +msgid "&Discard current changes" +msgstr "&Descartar ajustes atuais" + +msgctxt "@title:menu menubar:toplevel" +msgid "&Edit" +msgstr "&Editar" + +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "&Exportar..." + +msgctxt "@title:menu menubar:toplevel" +msgid "&File" +msgstr "Arquivo (&F)" + +msgctxt "@action:inmenu menubar:edit" +msgid "&Group Models" +msgstr "A&grupar Modelos" + +msgctxt "@title:menu menubar:toplevel" +msgid "&Help" +msgstr "Ajuda (&H)" + +msgctxt "@title:menu" +msgid "&Material" +msgstr "&Material" + +msgctxt "@action:inmenu menubar:edit" +msgid "&Merge Models" +msgstr "Co&mbinar Modelos" + +msgctxt "@action:inmenu" +msgid "&Multiply Model..." +msgstr "&Multiplicar Modelo..." + +msgctxt "@action:inmenu menubar:file" +msgid "&New Project..." +msgstr "&Novo Projeto..." + +msgctxt "@action:inmenu menubar:file" +msgid "&Open File(s)..." +msgstr "Abrir Arquiv&o(s)..." + +msgctxt "@title:menu menubar:settings" +msgid "&Printer" +msgstr "Im&pressora" + +msgctxt "@action:inmenu menubar:file" +msgid "&Quit" +msgstr "Sair (&Q)" + +msgctxt "@action:inmenu menubar:edit" +msgid "&Redo" +msgstr "&Refazer" + +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "&Salvar Projeto..." + +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "Aju&stes" + +msgctxt "@action:inmenu menubar:edit" +msgid "&Undo" +msgstr "Desfazer (&U)" + +msgctxt "@action:inmenu menubar:profile" +msgid "&Update profile with current settings/overrides" +msgstr "At&ualizar perfil com valores e sobreposições atuais" + +msgctxt "@title:menu menubar:toplevel" +msgid "&View" +msgstr "&Ver" + +msgctxt "@label" +msgid "*You will need to restart the application for these changes to have effect." +msgstr "*Você precisa reiniciar a aplicação para que estas alterações tenham efeito." + +msgctxt "@text" +msgid "" +"- Add material profiles and plug-ins from the Marketplace\n" +"- Back-up and sync your material profiles and plug-ins\n" +"- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgstr "" +"- Adicione perfis de material e plug-ins do Marketplace\n" +"- Faça backup e sincronize seus perfis de materiais e plugins\n" +"- Compartilhe ideias e consiga ajuda de mais de 48.000 usuários da comunidade UltiMaker" + +msgctxt "@heading" +msgid "-- incomplete --" +msgstr "-- incompleto --" + +msgctxt "@action:label" +msgid "1mm Transmittance (%)" +msgstr "Transmitância de 1mm (%)" + +msgctxt "@info:title" +msgid "3D Model Assistant" +msgstr "Assistente de Modelo 3D" + +msgctxt "@action:inmenu menubar:view" +msgid "3D View" +msgstr "Visão &3D" + +msgctxt "@info:tooltip" +msgid "3D View" +msgstr "Visão 3D" + +msgctxt "@item:inlistbox" +msgid "3MF File" +msgstr "Arquivo 3MF" + +msgctxt "name" +msgid "3MF Reader" +msgstr "Leitor de 3MF" + +msgctxt "name" +msgid "3MF Writer" +msgstr "Gerador de 3MF" + +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "O complemento de Escrita 3MF está corrompido." + +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "Arquivo 3MF" + +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is active and you overwrote some settings." +msgstr "%1 perfil personalizado está ativo e alguns ajustes foram sobrescritos." + +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is overriding some settings." +msgstr "%1 perfil personalizado está sobrepondo alguns ajustes." + +msgctxt "@label %i will be replaced with a profile name" +msgid "Only user changed settings will be saved in the custom profile.
    For materials that support it, the new custom profile will inherit properties from %1." +msgstr "Somente ajuste alterados por usuário serão salvos no perfil personalizado.
    Para materiais que o suportam, este novo perfil personalizado herdará propriedades de %1." + +#, python-brace-format +msgctxt "@label OpenGL renderer" +msgid "
  • OpenGL Renderer: {renderer}
  • " +msgstr "
  • Renderizador da OpenGL: {renderer}
  • " + +#, python-brace-format +msgctxt "@label OpenGL vendor" +msgid "
  • OpenGL Vendor: {vendor}
  • " +msgstr "
  • Fornecedor da OpenGL: {vendor}
  • " + +#, python-brace-format +msgctxt "@label OpenGL version" +msgid "
  • OpenGL Version: {version}
  • " +msgstr "
  • Versão da OpenGL: {version}
  • " + +msgctxt "@label crash message" +msgid "" +"

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" +"

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n" +" " +msgstr "" +"

    Um erro fatal ocorreu no Cura. Por favor nos envie este Relatório de Falha para consertar o problema

    \n" +"

    Por favor use o botão \"Enviar relatório\" para publicar um relatório de erro automaticamente em nossos servidores

    \n" +" " + +msgctxt "@label crash message" +msgid "" +"

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n" +"

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n" +"

    Backups can be found in the configuration folder.

    \n" +"

    Please send us this Crash Report to fix the problem.

    \n" +" " +msgstr "" +"

    Oops, o UltiMaker Cura encontrou algo que não parece estar correto.

    \n" +"

    Encontramos um erro irrecuperável durante a inicialização. Ele foi possivelmente causado por arquivos de configuração incorretos. Sugerimos salvar e restabelecer sua configuração.

    \n" +"

    Cópias salvas podem ser encontradas na pasta de configuração.

    \n" +"

    Por favor nos envie este Relatório de Falha para consertar o problema.

    \n" +" " + +#, python-brace-format +msgctxt "@info:status" +msgid "" +"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" +"

    {model_names}

    \n" +"

    Find out how to ensure the best possible print quality and reliability.

    \n" +"

    View print quality guide

    " +msgstr "" +"

    Um ou mais modelos 3D podem não ser impressos otimamente devido ao tamanho e configuração de material:

    \n" +"

    {model_names}

    \n" +"

    Descubra como assegurar a melhor qualidade de impressão e confiabilidade possível.

    \n" +"

    Ver guia de qualidade de impressão

    " + +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "Uma impressão USB está em progresso, fechar o Cura interromperá esta impressão. Tem certeza?" + +msgctxt "info:status" +msgid "A cloud connection is not available for a printer" +msgid_plural "A cloud connection is not available for some printers" +msgstr[0] "Conexão de nuvem não está disponível para uma impressora" +msgstr[1] "Conexão de nuvem não está disponível para algumas impressoras" + +msgctxt "@message" +msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." +msgstr "Uma impressão ainda está em progresso. O Cura não pode iniciar outra impressão via USB até que a impressão anterior tenha completado." + +msgctxt "@item:inlistbox" +msgid "AMF File" +msgstr "Arquivo AMF" + +msgctxt "name" +msgid "AMF Reader" +msgstr "Leitor AMF" + +msgctxt "@label" +msgid "Abort" +msgstr "Abortar" + +msgctxt "@label" +msgid "Abort Print" +msgstr "Abortar Impressão" + +msgctxt "@window:title" +msgid "Abort print" +msgstr "Abortar impressão" + +msgctxt "@label:status" +msgid "Aborted" +msgstr "Abortado" + +msgctxt "@label" +msgid "Aborting..." +msgstr "Abortando..." + +msgctxt "@label:status" +msgid "Aborting..." +msgstr "Abortando..." + +msgctxt "@title:window The argument is the application name." +msgid "About %1" +msgstr "Sobre %1" + +msgctxt "@action:inmenu menubar:help" +msgid "About..." +msgstr "Sobre..." + +msgctxt "@button" +msgid "Accept" +msgstr "Aceitar" + +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Aceita G-Code e o envia a uma impressora. O complemento também pode atualizar o firmware." + +msgctxt "@label" +msgid "Account synced" +msgstr "Conta sincronizada" + +msgctxt "@label:status" +msgid "Action required" +msgstr "Necessária uma ação" + +msgctxt "@action:button" +msgid "Activate" +msgstr "Ativar" + +msgctxt "@label" +msgid "Active print" +msgstr "Impressão ativa" + +msgctxt "@action:button" +msgid "Add" +msgstr "Adicionar" + +msgctxt "@button" +msgid "Add" +msgstr "Adicionar" + +msgctxt "@action:button" +msgid "Add New" +msgstr "Adicionar Novo" + +msgctxt "@title:window" +msgid "Add Printer" +msgstr "Adicionar Impressora" + +msgctxt "@button" +msgid "Add UltiMaker printer via Digital Factory" +msgstr "Adicionar impressora UltiMaker via Digital Factory" + +msgctxt "@label" +msgid "Add a Cloud printer" +msgstr "Adicionar uma impressora de Nuvem" + +msgctxt "@label" +msgid "Add a networked printer" +msgstr "Adicionar uma impressora de rede" + +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "Adicionar uma impressora local" + +msgctxt "@action" +msgid "Add a script" +msgstr "Adicionar um script" + +msgctxt "@option:check" +msgid "Add icon to system tray *" +msgstr "Adicionar ícone à bandeja do sistema *" + +msgctxt "@button" +msgid "Add local printer" +msgstr "Adicionar impressora local" + +msgctxt "@option:check" +msgid "Add machine prefix to job name" +msgstr "Adicionar prefixo de máquina ao nome do trabalho" + +msgctxt "@text" +msgid "Add material settings and plugins from the Marketplace" +msgstr "Adicionar ajustes de materiais e plugins do Marketplace" + +msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate." +msgid "Add more materials from Marketplace" +msgstr "Adicionar mais materiais ao Marketplace" + +msgctxt "@button" +msgid "Add printer" +msgstr "Adicionar impressora" + +msgctxt "@label" +msgid "Add printer" +msgstr "Adicionar impressora" + +msgctxt "@label" +msgid "Add printer by IP" +msgstr "Adicionar impressora por IP" + +msgctxt "@label" +msgid "Add printer by IP address" +msgstr "Adicionar impressora por endereço IP" + +msgctxt "@button" +msgid "Add printer manually" +msgstr "Adicionar impressora manualmente" + +#, python-brace-format +msgctxt "info:status Filled in with printer name and printer model." +msgid "Adding printer {name} ({model}) from your account" +msgstr "Adicionando impressora {name} ({model}) da sua conta" + +msgctxt "@label" +msgid "Address" +msgstr "Endereço" + +msgctxt "@label" +msgid "Adhesion" +msgstr "Aderência" + +msgctxt "@label" +msgid "Adhesion Information" +msgstr "Informação sobre Aderência" + +msgctxt "@label" +msgid "Adjusts the density of infill of the print." +msgstr "Ajusta a densidade do preenchimento da impressão." + +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Ajusta o posicionamento das estruturas de suporte. Este posicionamento pode ser ajustado à plataforma de impressão ou em todo lugar. Se for escolhido em todo lugar, as estruturas de suporte também se apoiarão no próprio modelo." + +msgctxt "@label Header for list of settings." +msgid "Affected By" +msgstr "Afetado Por" + +msgctxt "@label Header for list of settings." +msgid "Affects" +msgstr "Afeta" + +msgctxt "@button" +msgid "Agree" +msgstr "Concordar" + +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Todos Os Arquivos (*)" + +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Todos Os Tipos Suportados ({0})" + +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "Permitir enviar dados anônimos" + +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Permite carregar e exibir arquivos G-Code." + +msgctxt "@option:discardOrKeep" +msgid "Always ask me this" +msgstr "Sempre perguntar" + +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "Sempre me perguntar" + +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "Sempre descartar alterações da configuração" + +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "Sempre importar modelos" + +msgctxt "@option:openProject" +msgid "Always open as a project" +msgstr "Sempre abrir como projeto" + +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "Sempre transferir as alterações para o novo perfil" + +msgctxt "@info:tooltip" +msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" +msgstr "Um modelo pode ser carregado diminuto se sua unidade for por exemplo em metros ao invés de milímetros. Devem esses modelos ser redimensionados?" + +msgctxt "@label" +msgid "Annealing" +msgstr "Recozimento" + +msgctxt "@label" +msgid "Anonymous" +msgstr "Anônimo" + +msgctxt "@label Description for application component" +msgid "Application framework" +msgstr "Framework de Aplicações" + +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "Aplicar deslocamentos de Extrusão ao G-Code" + +msgctxt "@info:title" +msgid "Are you ready for cloud printing?" +msgstr "Você está pronto para a impressão de nuvem?" + +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "Você tem certeza que quer abortar %1?" + +msgctxt "@label" +msgid "Are you sure you want to abort the print?" +msgstr "Tem certeza que deseja abortar a impressão?" + +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "Você tem certeza que quer remover %1?" + +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "Você tem certeza que deseja apagar este backup? Isto não pode ser desfeito." + +msgctxt "@label %1 is the application name" +msgid "Are you sure you want to exit %1?" +msgstr "Tem certeza que quer sair de %1?" + +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to move %1 to the top of the queue?" +msgstr "Você tem certeza que quer mover %1 para o topo da fila?" + +#, python-brace-format +msgctxt "@message {printer_name} is replaced with the name of the printer" +msgid "Are you sure you want to remove {printer_name} temporarily?" +msgstr "Tem certeza que quer remover {printer_name} temporariamente?" + +msgctxt "@info:question" +msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings." +msgstr "Tem certeza que quer iniciar novo projeto? Isto esvaziará a mesa de impressão e quaisquer ajustes não salvos." + +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "Tem certeza que deseja remover %1? Isto não poderá ser desfeito!" + +#, python-brace-format +msgctxt "@label {0} is the name of a printer that's about to be deleted." +msgid "Are you sure you wish to remove {0}? This cannot be undone!" +msgstr "Tem certeza que deseja remover {0}? Isto não pode ser defeito!" + +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models" +msgstr "Posicionar Todos os Modelos" + +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models in a grid" +msgstr "Organizar Todos os Modelos em Grade" + +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Posicionar Seleção" + +msgctxt "@label:button" +msgid "Ask a question" +msgstr "Fazer uma pergunta" + +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "Auto Backup" + +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "Criar um backup automaticamente toda vez que o Cura iniciar." + +msgctxt "@option:check" +msgid "Automatically drop models to the build plate" +msgstr "Automaticamente fazer os modelos caírem na mesa de impressão" + +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Automaticamente atualizar Firmware" + +msgctxt "@label" +msgid "Available networked printers" +msgstr "Impressoras de rede disponíveis" + +msgctxt "@item:inlistbox" +msgid "BMP Image" +msgstr "Imagem BMP" + +msgctxt "@button" +msgid "Back" +msgstr "Voltar" + +msgctxt "@button:tooltip" +msgid "Back" +msgstr "Voltar" + +msgctxt "@info:title" +msgid "Backup" +msgstr "Backup" + +msgctxt "@button" +msgid "Backup Now" +msgstr "Backup Agora" + +msgctxt "@action:button" +msgid "Backup and Reset Configuration" +msgstr "Salvar e Restabelecer Configuração" + +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Permite backup e restauração da configuração." + +msgctxt "@text" +msgid "Backup and sync your material settings and plugins" +msgstr "Fazer backup e sincronizar seus ajustes de materiais e plugins" + +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "Fazer backup e sincronizar os ajustes do Cura." + +msgctxt "@info:title" +msgid "Backups" +msgstr "Backups" + +msgctxt "@label" +msgid "Balanced" +msgstr "Equilibrado" + +msgctxt "@action:label" +msgid "Base (mm)" +msgstr "Base (mm)" + +msgctxt "@action:inmenu menubar:view" +msgid "Bottom View" +msgstr "Visão de Baixo" + +msgctxt "@label" +msgid "Brand" +msgstr "Marca" + +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "Nivelamento da mesa de impressão" + +msgctxt "@info:title" +msgid "Build Volume" +msgstr "Volume de Impressão" + +msgctxt "@label" +msgid "Build plate" +msgstr "Mesa de Impressão" + +msgctxt "@label" +msgid "Build plate shape" +msgstr "Forma da plataforma de impressão" + +msgctxt "@label" +msgid "Bundled Materials" +msgstr "Materiais Empacotados" + +msgctxt "@label" +msgid "Bundled Plugins" +msgstr "Complementos Empacotados" + +msgctxt "@button" +msgid "Buy spool" +msgstr "Comprar carretel" + +msgctxt "@label Is followed by the name of an author" +msgid "By" +msgstr "Por" + +msgctxt "@label Description for application dependency" +msgid "C/C++ Binding library" +msgstr "Biblioteca de Ligações C/C++" + +msgctxt "@item:inlistbox" +msgid "COLLADA Digital Asset Exchange" +msgstr "Câmbio de Ativos Digitais COLLADA" + +msgctxt "@info:status" +msgid "Calculated" +msgstr "Calculado" + +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "Renderização de câmera:" + +msgctxt "@action:inmenu menubar:view" +msgid "Camera view" +msgstr "Visão de câmera" + +msgctxt "@info:title" +msgid "Can't Find Location" +msgstr "Não Foi Encontrada Localização" + +msgctxt "@info:title" +msgid "Can't Open Project File" +msgstr "Não Foi Possível Abrir o Arquivo de Projeto" + +msgctxt "@label" +msgid "Can't connect to your UltiMaker printer?" +msgstr "Não consegue conectar à sua impressora UltiMaker?" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags !" +msgid "Can't import profile from {0} before a printer is added." +msgstr "Não foi possível importar perfil de {0} antes de uma impressora ser adicionada." + +#, python-brace-format +msgctxt "@info:status" +msgid "Can't open any other file if G-code is loading. Skipped importing {0}" +msgstr "Não é possível abrir nenhum outro arquivo se G-Code estiver sendo carregado. Pulando importação de {0}" + +msgctxt "@info:error" +msgid "Can't write to UFP file:" +msgstr "Não foi possível escrever no arquivo UFP:" + +msgctxt "@action:button" +msgid "Cancel" +msgstr "Cancelar" + +msgctxt "@button" +msgid "Cancel" +msgstr "Cancelar" + +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "Cancelar" + +msgctxt "@option:check" +msgid "Caution message in g-code reader" +msgstr "Mensagem de alera no leitor de G-Code" + +msgctxt "@action:inmenu" +msgid "Ce&nter Model on Platform" +msgstr "Ce&ntralizar Modelo na Mesa" + +msgctxt "@action:inmenu menubar:edit" +msgid "Center Selected" +msgstr "Centralizar Selecionados" + +msgctxt "@action:button" +msgid "Center camera when item is selected" +msgstr "Centralizar câmera quanto o item é selecionado" + +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." +msgstr "Alterar scripts de pós-processamento ativos." + +msgctxt "@label" +msgid "Change material %1 from %2 to %3." +msgstr "Alterar material %1 de %2 para %3." + +msgctxt "@label" +msgid "Change print core %1 from %2 to %3." +msgstr "Alterar núcleo de impressão %1 de %2 para %3." + +msgctxt "@info:title" +msgid "Changes detected from your UltiMaker account" +msgstr "Alterações detectadas de sua conta UltiMaker" + +msgctxt "@title" +msgid "Changes from your account" +msgstr "Alterações da sua conta" + +msgctxt "@label:textbox" +msgid "Check all" +msgstr "Verificar tudo" + +msgctxt "@button" +msgid "Check for account updates" +msgstr "Verificar atualizações da conta" + +msgctxt "@option:check" +msgid "Check for updates on start" +msgstr "Verificar atualizações na inicialização" + +msgctxt "@label" +msgid "Checking..." +msgstr "Verificando..." + +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Verifica por atualizações de firmware." + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Verifica modelos e configurações de impressão por possíveis problema e dá sugestões." + +msgctxt "@label" +msgid "" +"Chooses between the techniques available to generate support. \n" +"\n" +"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" +"\n" +"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "" +"Escolhe entre as técnicas disponíveis para a geração de suporte.\n" +"\n" +"Suporte \"Normal\" cria uma estrutura de suporte diretamente abaixo das partes pendentes e continua em linha reta para baixo.\n" +"\n" +"Suporte de \"Árvore\" cria galhos em direção às áreas pendentes que suportam o modelo em suas pontas, e permite que os galhos se espalhem em volta do modelo para suportá-lo a partir da plataforma de impressão tanto quanto possível." + +msgctxt "@action:inmenu menubar:edit" +msgid "Clear Build Plate" +msgstr "Esvaziar a Mesa de Impressão" + +msgctxt "@option:check" +msgid "Clear buildplate before loading model into the single instance" +msgstr "Limpar a plataforma de impressão antes de carregar modelo em instância única" + +msgctxt "@text" +msgid "Click the export material archive button." +msgstr "Clique no botão de exportar arquivo de material." + +msgctxt "@action:button" +msgid "Close" +msgstr "Fechar" + +msgctxt "@title:window %1 is the application name" +msgid "Closing %1" +msgstr "Fechando %1" + +msgctxt "@action:inmenu" +msgid "Collapse All Categories" +msgstr "Encolher Todas As Categorias" + +msgctxt "@label" +msgid "Color" +msgstr "Cor" + +msgctxt "@action:label" +msgid "Color Model" +msgstr "Modelo de Cor" + +msgctxt "@label" +msgid "Color scheme" +msgstr "Esquema de Cores" + +msgctxt "@info" +msgid "Compare and save." +msgstr "Comparar e salvar." + +msgctxt "@label" +msgid "Compatibility Mode" +msgstr "Modo de Compatibilidade" + +msgctxt "@label Description for application dependency" +msgid "Compatibility between Python 2 and 3" +msgstr "Compatibilidade entre Python 2 e 3" + +msgctxt "@title:label" +msgid "Compatible Printers" +msgstr "Impressoras Compatíveis" + +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "Diâmetro de material compatível" + +msgctxt "@header" +msgid "Compatible printers" +msgstr "Impressoras compatíveis" + +msgctxt "@header" +msgid "Compatible support materials" +msgstr "Materiais de suporte compatíveis" + +msgctxt "@header" +msgid "Compatible with Material Station" +msgstr "Compatível com Material Station" + +msgctxt "@item:inlistbox" +msgid "Compressed COLLADA Digital Asset Exchange" +msgstr "Câmbio de Ativos Digitais COLLADA Comprimido" + +msgctxt "@item:inlistbox" +msgid "Compressed G-code File" +msgstr "Arquivo de G-Code Comprimido" + +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Leitor de G-Code Comprimido" + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Gerador de G-Code Comprimido" + +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "Alterações de Configuração" + +msgctxt "@error" +msgid "Configuration not supported" +msgstr "Configuração não suportada" + +msgctxt "@header" +msgid "Configurations" +msgstr "Configurações" + +msgctxt "@label" +msgid "Configurations" +msgstr "Configurações" + +msgctxt "@action:inmenu" +msgid "Configure Cura..." +msgstr "Configurar Cura..." + +msgctxt "@info:tooltip" +msgid "Configure Per Model Settings" +msgstr "Configurar ajustes por Modelo" + +msgctxt "@action" +msgid "Configure group" +msgstr "Configurar grupo" + +msgctxt "@action:menu" +msgid "Configure setting visibility..." +msgstr "Configurar a visibilidade dos ajustes..." + +msgctxt "@title:window" +msgid "Confirm Diameter Change" +msgstr "Confirmar Mudança de Diâmetro" + +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Confirmar Remoção" + +msgctxt "@action:button" +msgid "Connect" +msgstr "Conectar" + +msgctxt "@button" +msgid "Connect" +msgstr "Conectar" + +msgctxt "@title:window" +msgid "Connect to Networked Printer" +msgstr "Conectar a Impressora de Rede" + +msgctxt "@action" +msgid "Connect via Network" +msgstr "Conectar pela rede" + +msgctxt "@info:status" +msgid "Connected over the network" +msgstr "Conectado pela rede" + +msgctxt "@label" +msgid "Connected printers" +msgstr "Impressoras conectadas" + +msgctxt "@info:status" +msgid "Connected via USB" +msgstr "Conectado via USB" + +msgctxt "@info:status" +msgid "Connected via cloud" +msgstr "Conectado pela nuvem" + +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Conecta-se à Digital Library, permitindo ao Cura abrir arquivos dela e gravar arquivos nela." + +msgctxt "@tooltip:button" +msgid "Consult the UltiMaker Community." +msgstr "Consultar a Comunidade UltiMaker." + +msgctxt "@title:window" +msgid "Convert Image" +msgstr "Converter Imagem" + +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "Número da Ventoinha de Resfriamento" + +msgctxt "@action:menu" +msgid "Copy all changed values to all extruders" +msgstr "Copiar todos os valores alterados para todos os extrusores" + +msgctxt "@action:inmenu menubar:edit" +msgid "Copy to clipboard" +msgstr "Copiar para a área de transferência" + +msgctxt "@action:menu" +msgid "Copy value to all extruders" +msgstr "Copiar valor para todos os extrusores" + +msgctxt "@label" +msgid "Cost per Meter" +msgstr "Custo por Metro" + +msgctxt "@info" +msgid "Could not access update information." +msgstr "Não foi possível acessar informação de atualização." + +msgctxt "@label" +msgid "Could not connect to device." +msgstr "Não foi possível conectar ao dispositivo." + +msgctxt "@info:backup_failed" +msgid "Could not create archive from user data directory: {}" +msgstr "Não pude criar arquivo do diretório de dados de usuário: {}" + +#, python-brace-format +msgctxt "@info:status Don't translate the tag {device}!" +msgid "Could not find a file name when trying to write to {device}." +msgstr "Não foi possível encontrar nome de arquivo ao tentar escrever em {device}." + +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not import material %1: %2" +msgstr "Não foi possível importar material %1: %2" + +msgctxt "@info:error" +msgid "Could not interpret the server's response." +msgstr "Não foi possível interpretar a resposta de servidor." + +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "Não foi possível carregar o plugin GCodeWriter. Tente reabilitar o plugin." + +msgctxt "@info:error" +msgid "Could not reach Marketplace." +msgstr "Não foi possível conectar ao Marketplace." + +msgctxt "@message" +msgid "Could not read response." +msgstr "Não foi possível ler a resposta." + +msgctxt "@message:text" +msgid "Could not save material archive to {}:" +msgstr "Não foi possível salvar o arquivo de materiais para {}:" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "Não foi possível salvar em {0}: {1}" + +#, python-brace-format +msgctxt "@info:status" +msgid "Could not save to removable drive {0}: {1}" +msgstr "Não foi possível salvar em unidade removível {0}: {1}" + +msgctxt "@info:text" +msgid "Could not upload the data to the printer." +msgstr "Não foi possível transferir os dados para a impressora." + +#, python-brace-format +msgctxt "@info:plugin_failed" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"No permission to execute process." +msgstr "" +"Não foi possível iniciar EnginePlugin: {self._plugin_id}\n" +"Sem permissão para executar processo." + +#, python-brace-format +msgctxt "@info:plugin_failed" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"Operating system is blocking it (antivirus?)" +msgstr "" +"Não foi possível iniciar EnginePlugin: {self._plugin_id}\n" +"O sistema operacional está bloqueando (antivírus?)" + +#, python-brace-format +msgctxt "@info:plugin_failed" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"Resource is temporarily unavailable" +msgstr "" +"Não foi possível iniciar EnginePlugin: {self._plugin_id}\n" +"O recurso está temporariamente indisponível" + +msgctxt "@title:window" +msgid "Crash Report" +msgstr "Relatório de Problema" + +msgctxt "@title:window" +msgid "Create Profile" +msgstr "Criar Perfil" + +msgctxt "@text" +msgid "Create a free UltiMaker Account" +msgstr "Criar uma conta UltiMaker gratuita" + +msgctxt "@button" +msgid "Create a free UltiMaker account" +msgstr "Criar uma conta UltiMaker gratuita" + +msgctxt "@info:tooltip" +msgid "Create a volume in which supports are not printed." +msgstr "Cria um volume em que os suportes não são impressos." + +msgctxt "@action:ComboBox Save settings in a new profile" +msgid "Create new" +msgstr "Criar novos" + +msgctxt "@action:button" +msgid "Create new" +msgstr "Criar novo" + +msgctxt "@button" +msgid "Create new" +msgstr "Criar novos" + +msgctxt "@action:tooltip" +msgid "Create new profile from current settings/overrides" +msgstr "Criar novo perfil a partir dos ajustes/sobreposições atuais" + +msgctxt "@tooltip:button" +msgid "Create print projects in Digital Library." +msgstr "Cria projetos de impressão na Digital Library." + +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Cria uma malha apagadora para bloquear a impressão de suporte em certos lugares" + +msgctxt "@info:backup_status" +msgid "Creating your backup..." +msgstr "Criando seu backup..." + +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Perfis do Cura 15.04" + +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Backups do Cura" + +msgctxt "name" +msgid "Cura Backups" +msgstr "Backups Cura" + +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Perfil do Cura" + +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Leitor de Perfis do Cura" + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Gravador de Perfis do Cura" + +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "Arquivo de Projeto 3MF do Cura" + +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Versão do Cura" + +msgctxt "@title:window" +msgid "Cura can't start" +msgstr "O Cura não consegue iniciar" + +#, python-brace-format +msgctxt "@info:status" +msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." +msgstr "O Cura detectou perfis de material que não estão instalados ainda na impressora host do grupo {0}." + +msgctxt "@info:credit" +msgid "" +"Cura is developed by UltiMaker in cooperation with the community.\n" +"Cura proudly uses the following open source projects:" +msgstr "" +"Cura é desenvolvido pela Ultimaker B.V. em cooperação com a comunidade.\n" +"Cura orgulhosamente usa os seguintes projetos open-source:" + +msgctxt "@label" +msgid "Cura language" +msgstr "Linguagem do Cura" + +msgctxt "@label Cura version number" +msgid "Cura version" +msgstr "Versão do Cura" + +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine Backend" + +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "Complemento do CuraEngine para gradualmente suavizar o fluxo para limitar rajadas de fluxo intenso" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + +msgctxt "@label" +msgid "Currency:" +msgstr "Moeda:" + +msgctxt "@title:column" +msgid "Current" +msgstr "Atual" + +msgctxt "@title:column" +msgid "Current changes" +msgstr "Alterações atuais" + +msgctxt "@header" +msgid "Custom" +msgstr "Personalizado" + +msgctxt "@label" +msgid "Custom" +msgstr "Personalizado" + +msgctxt "@title:tab" +msgid "Custom" +msgstr "Personalizado" + +msgctxt "@label" +msgid "Custom Material" +msgstr "Material Personalizado" + +msgctxt "@label" +msgid "Custom profile" +msgstr "Perfil personalizado" + +msgctxt "@info" +msgid "Custom profile name:" +msgstr "Nome de perfil personalizado:" + +msgctxt "@label" +msgid "Custom profiles" +msgstr "Perfis personalizados" + +msgctxt "@label:header" +msgid "Custom profiles" +msgstr "Perfis personalizados" + +msgctxt "@action:inmenu menubar:edit" +msgid "Cut" +msgstr "Cortar" + +msgctxt "@item:inlistbox" +msgid "Cutting mesh" +msgstr "Malha de corte" + +msgctxt "@item:inlistbox" +msgid "Darker is higher" +msgstr "Mais escuro é mais alto" + +msgctxt "@info:title" +msgid "Data Sent" +msgstr "Dados Enviados" + +msgctxt "@label Description for application dependency" +msgid "Data interchange format" +msgstr "Formato de Intercâmbio de Dados" + +msgctxt "@button" +msgid "Decline" +msgstr "Recusar" + +msgctxt "@button" +msgid "Decline and close" +msgstr "Rejeitar e fechar" + +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "Recusar e remover da conta" + +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "Default" + +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "Comportamento default para valores de configuração alterados ao mudar para um perfil diferente: " + +msgctxt "@info:tooltip" +msgid "Default behavior when opening a project file" +msgstr "Comportamento default ao abrir um arquivo de projeto" + +msgctxt "@window:text" +msgid "Default behavior when opening a project file: " +msgstr "Comportamento default ao abrir um arquivo de projeto: " + +msgctxt "@action:button" +msgid "Defaults" +msgstr "Defaults" + +msgctxt "@label" +msgid "Defines the thickness of your part side walls, roof and floor." +msgstr "Define a espessura das paredes laterais, teto e base da sua peça." + +msgctxt "@label" +msgid "Delete" +msgstr "Remover" + +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "Apagar o Backup" + +msgctxt "@action:inmenu" +msgid "Delete Model" +msgstr "Remover Modelo" + +msgctxt "@action:inmenu menubar:edit" +msgid "Delete Selected" +msgstr "Remover Selecionados" + +msgctxt "@window:title" +msgid "Delete print job" +msgstr "Remover trabalho de impressão" + +msgctxt "@label" +msgid "Density" +msgstr "Densidade" + +msgctxt "@label Description for development tool" +msgid "Dependency and package manager" +msgstr "Gestor de pacote e dependência" + +msgctxt "@action:label" +msgid "Depth (mm)" +msgstr "Profundidade (mm)" + +msgctxt "@action:label" +msgid "Derivative from" +msgstr "Derivado de" + +msgctxt "@header" +msgid "Description" +msgstr "Descrição" + +msgctxt "@label" +msgid "Description" +msgstr "Descrição" + +msgctxt "@action:button" +msgid "Details" +msgstr "Detalhes" + +msgctxt "@label" +msgid "Diameter" +msgstr "Diâmetro" + +msgctxt "@button" +msgid "Disable" +msgstr "Desabilitar" + +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "Desabilitar Extrusor" + +msgctxt "@option:discardOrKeep" +msgid "Discard and never ask again" +msgstr "Descartar e não perguntar novamente" + +msgctxt "@action:button" +msgid "Discard changes" +msgstr "Descartar alterações" + +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "Descartar ajustes atuais" + +msgctxt "@title:window" +msgid "Discard or Keep changes" +msgstr "Descartar ou Manter alterações" + +msgctxt "@button" +msgid "Dismiss" +msgstr "Dispensar" + +msgctxt "@label" +msgid "Display Name" +msgstr "Exibir Nome" + +msgctxt "@option:check" +msgid "Display model errors" +msgstr "Exibir erros de modelo" + +msgctxt "@option:check" +msgid "Display overhang" +msgstr "Exibir seções pendentes" + +msgctxt "@info:option_text" +msgid "Do not show this message again" +msgstr "Não mostrar essa mensagem novamente" + +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "Você quer sincronizar os pacotes de material e software com sua conta?" + +msgctxt "@action:label" +msgid "Don't show project summary on save again" +msgstr "Não exibir resumo do projeto ao salvar novamente" + +msgctxt "@action:menu" +msgid "Don't show this setting" +msgstr "Não exibir este ajuste" + +msgctxt "@label" +msgid "Don't support overlaps" +msgstr "Não suportar sobreposições" + +msgctxt "@button" +msgid "Done" +msgstr "Feito" + +msgctxt "@button" +msgid "Downgrade" +msgstr "Downgrade" + +msgctxt "@button" +msgid "Downgrading..." +msgstr "Fazendo downgrade..." + +msgctxt "@label" +msgid "Draft" +msgstr "Rascunho" + +msgctxt "@action:button" +msgid "Duplicate" +msgstr "Duplicar" + +msgctxt "@title:window" +msgid "Duplicate Profile" +msgstr "Duplicar Perfil" + +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "Durante a fase de pré-visualização, você estará limitado a 5 backups visíveis. Remova um backup para ver os mais antigos." + +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "E&xtensões" + +msgctxt "@action:button" +msgid "Edit" +msgstr "Editar" + +msgctxt "@action:button" +msgid "Eject" +msgstr "Ejetar" + +#, python-brace-format +msgctxt "@action" +msgid "Eject removable device {0}" +msgstr "Ejetar dispositivo removível {0}" + +#, python-brace-format +msgctxt "@info:status" +msgid "Ejected {0}. You can now safely remove the drive." +msgstr "{0} ejetado. A unidade agora pode ser removida de forma segura." + +msgctxt "@label" +msgid "Empty" +msgstr "Vazio" + +msgctxt "@button" +msgid "Enable" +msgstr "Habilitar" + +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "Habilitar Extrusor" + +msgctxt "@label" +msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards. Disabling it results in a skirt around object by default." +msgstr "Habilita a impressão de brim ou raft. Adicionará uma área plana em volta do objeto ou abaixo dele que seja fácil de destacar depois. Desabilitar este ajuste resulta em um skirt em volta do objeto por default." + +msgctxt "@label" +msgid "Enabled" +msgstr "Habilitado" + +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Habilita a geração de geometria imprimível de arquivos de imagem 2D." + +msgctxt "@title:label" +msgid "End G-code" +msgstr "G-Code Final" + +msgctxt "@label" +msgid "End-to-end solution for fused filament 3D printing." +msgstr "Solução completa para impressão 3D com filamento fundido." + +msgctxt "@info:title" +msgid "EnginePlugin" +msgstr "EnginePlugin" + +msgctxt "@label" +msgid "Engineering" +msgstr "Engenharia" + +msgctxt "@option:check" +msgid "Ensure models are kept apart" +msgstr "Assegurar que os modelos sejam mantidos separados" + +msgctxt "@label" +msgid "Enter the IP address of your printer on the network." +msgstr "Entre o endereço IP da sua impressora na rede." + +msgctxt "@text" +msgid "Enter your printer's IP address." +msgstr "Entre o endereço IP de sua impressora." + +msgctxt "@info:title" +msgid "Error" +msgstr "Erro" + +msgctxt "@title:groupbox" +msgid "Error traceback" +msgstr "Traceback do erro" + +msgctxt "@label" +msgid "Estimated time left" +msgstr "Tempo restante estimado" + +msgctxt "@action:inmenu" +msgid "Exit Full Screen" +msgstr "Sair da Tela Cheia" + +msgctxt "@label" +msgid "Experimental" +msgstr "Experimental" + +msgctxt "@action:button" +msgid "Export" +msgstr "Exportar" + +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "Exportar Todos Os Materiais" + +msgctxt "@title:window" +msgid "Export Material" +msgstr "Exportar Material" + +msgctxt "@title:window" +msgid "Export Profile" +msgstr "Exportar Perfil" + +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "Exportar Seleção..." + +msgctxt "@button" +msgid "Export material archive" +msgstr "Exportar arquivo de material" + +msgctxt "@info:title" +msgid "Export succeeded" +msgstr "Exportação concluída" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tag !" +msgid "Exported profile to {0}" +msgstr "Perfil exportado para {0}" + +msgctxt "@tooltip:button" +msgid "Extend UltiMaker Cura with plugins and material profiles." +msgstr "Estende o UltiMaker Cura com complementos e perfis de material." + +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Extensão que permite scripts criados por usuários para pós-processamento" + +msgctxt "@label" +msgid "Extruder" +msgstr "Extrusor" + +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "Extrusor %1" + +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "G-Code Final do Extrusor" + +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "G-Code Inicial do Extrusor" + +msgctxt "@info:title" +msgid "Extruder(s) Disabled" +msgstr "Extrusor(es) Desabilitado(s)" + +msgctxt "@label:status" +msgid "Failed" +msgstr "Falhado" + +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory to sync materials with some of the printers." +msgstr "Falha em conectar com a Digital Factory para sincronizar materiais com algumas das impressoras." + +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory." +msgstr "Falha em conectar à Digital Factory." + +msgctxt "@text:error" +msgid "Failed to create archive of materials to sync with printers." +msgstr "Falha em criar arquivo de materiais para sincronizar com impressoras." + +#, python-brace-format +msgctxt "@info:status" +msgid "Failed to eject {0}. Another program may be using the drive." +msgstr "Erro ao ejetar {0}. Outro programa pode estar usando a unidade." + +msgctxt "@info:status Don't translate the XML tags and !" +msgid "Failed to export material to %1: %2" +msgstr "Falha em exportar material para %1: %2" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Failed to export profile to {0}: {1}" +msgstr "Falha ao exportar perfil para {0}: {1}" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tag !" +msgid "Failed to export profile to {0}: Writer plugin reported failure." +msgstr "Falha ao exportar perfil para {0}: complemento escritor relatou erro." + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tag !" +msgid "Failed to import profile from {0}:" +msgstr "Erro ao importar perfil de {0}:" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags !" +msgid "Failed to import profile from {0}:" +msgstr "Erro ao importar perfil de {0}:" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags !" +msgid "Failed to import profile from {0}: {1}" +msgstr "Falha ao importar perfil de {0}: {1}" + +msgctxt "@button" +msgid "Failed to load packages:" +msgstr "Falha em carregar pacotes:" + +msgctxt "@text:error" +msgid "Failed to load the archive of materials to sync it with printers." +msgstr "Falha em carregar o arquivo de materiais para sincronizar com impressoras." + +msgctxt "@message:title" +msgid "Failed to save material archive" +msgstr "Falha em salvar o arquivo de materiais" + +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "Favoritos" + +msgctxt "@label" +msgid "Filament Cost" +msgstr "Custo do Filamento" + +msgctxt "@label" +msgid "Filament length" +msgstr "Comprimento do Filamento" + +msgctxt "@label" +msgid "Filament weight" +msgstr "Peso do Filamento" + +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "O Arquivo Já Existe" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "Arquivo Salvo" + +#, python-brace-format +msgctxt "@info:status" +msgid "File {0} does not contain any valid profile." +msgstr "Arquivo {0} não contém nenhum perfil válido." + +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Filtrar..." + +msgctxt "@info:title" +msgid "Finding Location" +msgstr "Buscando Localização" + +msgctxt "@info:status" +msgid "Finding new location for objects" +msgstr "Achando novos lugares para objetos" + +msgctxt "@action:button" +msgid "Finish" +msgstr "Finalizar" + +msgctxt "@label:status" +msgid "Finished" +msgstr "Finalizado" + +msgctxt "@label:status" +msgid "Finishes %1 at %2" +msgstr "Termina %1 em %2" + +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Atualização do Firmware" + +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Verificador de Atualizações de Firmware" + +msgctxt "name" +msgid "Firmware Updater" +msgstr "Atualizador de Firmware" + +msgctxt "@label" +msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." +msgstr "O firmware não pode ser atualizado porque a conexão com a impressora não suporta atualização de firmware." + +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "O firmware não pode ser atualizado porque não há conexão com a impressora." + +msgctxt "@label" +msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." +msgstr "O firmware é o software rodando diretamente no maquinário de sua impressora 3D. Este firmware controla os motores de passo, regula a temperatura e é o que faz a sua impressora funcionar." + +msgctxt "@label" +msgid "Firmware update completed." +msgstr "Atualização do Firmware completada." + +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "A atualização de firmware falhou devido a um erro de comunicação." + +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "A atualização de firmware falhou devido a um erro de entrada e saída." + +msgctxt "@label" +msgid "Firmware update failed due to an unknown error." +msgstr "A atualização de Firmware falhou devido a um erro desconhecido." + +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "A atualização de firmware falhou devido a firmware não encontrado." + +msgctxt "@label" +msgid "Firmware version" +msgstr "Versão do firmware" + +msgctxt "@label" +msgid "First available" +msgstr "Primeira disponível" + +msgctxt "@label:listbox" +msgid "Flow" +msgstr "Fluxo" + +msgctxt "@text In the UI this is followed by a list of steps the user needs to take." +msgid "Follow the following steps to load the new material profiles to your printer." +msgstr "Siga os passos seguintes para carregar os perfis de material novos na sua impressora." + +msgctxt "@info" +msgid "Follow the procedure to add a new printer" +msgstr "Siga o procedimento para adicionar uma nova impressora" + +msgctxt "@text" +msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." +msgstr "Seguindo alguns passos simples, você conseguirá sincronizar todos os seus perfis de material com suas impressoras." + +msgctxt "@label" +msgid "Font" +msgstr "Fonte" + +msgctxt "@label" +msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." +msgstr "Para cada posição; insira um pedaço de papel abaixo do bico e ajuste a altura da mesa de impressão. A altura da mesa de impressão está adequada quando o papel for levemente pressionado pela ponta do bico." + +msgctxt "@info:tooltip" +msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." +msgstr "Para litofanos, um modelo logarítmico simples para translucidez está disponível. Para mapas de altura os valores de pixels correspondem a alturas, linearmente." + +msgctxt "@info:tooltip" +msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." +msgstr "Para litofanos, pixels escuros devem corresponder a locais mais espessos para conseguir bloquear mais luz. Para mapas de altura, pixels mais claros significam terreno mais alto, portanto tais pixels devem corresponder a locais mais espessos no modelo 3d gerado." + +msgctxt "@option:check" +msgid "Force layer view compatibility mode (restart required)" +msgstr "Forçar modo de compatibilidade da visão de camadas (requer reinício)" + +msgctxt "@action:inmenu menubar:view" +msgid "Front View" +msgstr "Visão Frontal" + +msgctxt "@info:tooltip" +msgid "Front View" +msgstr "Viso de Frente" + +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "Arquivo G" + +msgctxt "@info:title" +msgid "G-code Details" +msgstr "Detalhes do G-Code" + +msgctxt "@item:inlistbox" +msgid "G-code File" +msgstr "Arquivo G-Code" + +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "Leitor de Perfil de G-Code" + +msgctxt "name" +msgid "G-code Reader" +msgstr "Leitor de G-Code" + +msgctxt "name" +msgid "G-code Writer" +msgstr "Gerador de G-Code" + +msgctxt "@label" +msgid "G-code flavor" +msgstr "Sabor de G-Code" + +msgctxt "@label Description for application component" +msgid "G-code generator" +msgstr "Gerador de G-Code" + +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "O GCodeGzWriter não suporta modo binário." + +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "O GCodeWriter não suporta modo binário." + +msgctxt "@item:inlistbox" +msgid "GIF Image" +msgstr "Imagem GIF" + +msgctxt "@label Description for application dependency" +msgid "GUI framework" +msgstr "Framework Gráfica" + +msgctxt "@label Description for application dependency" +msgid "GUI framework bindings" +msgstr "Ligações da Framework Gráfica" + +msgctxt "@label" +msgid "Gantry Height" +msgstr "Altura do Eixo" + +msgctxt "@title:tab" +msgid "General" +msgstr "Geral" + +msgctxt "@label" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." +msgstr "Gera estrutura que suportarão partes do modelo que têm seções pendentes. Sem estas estruturas, tais partes desabariam durante a impressão." + +msgctxt "@label Description for development tool" +msgid "Generating Windows installers" +msgstr "Gerando instaladores Windows" + +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "Genérico" + +msgctxt "@option:check" +msgid "Get notifications for plugin updates" +msgstr "Ter notificações para atualizações de complementos" + +msgctxt "@action" +msgid "Get started" +msgstr "Começar" + +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "Ajustes globais" + +msgctxt "@label Description for application component" +msgid "Graphical user interface" +msgstr "Interface Gráfica de usuário" + +msgctxt "@label" +msgid "Grid Placement" +msgstr "Posicionamento em Grade" + +#, python-brace-format +msgctxt "@label" +msgid "Group #{group_nr}" +msgstr "Grupo #{group_nr}" + +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "Aquecer a mesa antes de imprimir. Você pode continuar ajustando sua impressão enquanto ela está aquecendo, e não terá que esperar o aquecimento quando estiver pronto pra imprimir." + +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "Aquece o hotend com antecedência antes de imprimir. Você pode continuar ajustando sua impressão enquanto está aquecendo e não terá que esperar que o hotend termine o aquecimento quando estiver pronto para imprimir." + +msgctxt "@label" +msgid "Heated Build Plate (official kit or self-built)" +msgstr "Mesa de Impressão Aquecida (kit Oficial ou auto-construído)" + +msgctxt "@label" +msgid "Heated bed" +msgstr "Mesa aquecida" + +msgctxt "@label" +msgid "Heated build volume" +msgstr "Volume de construção aquecido" + +msgctxt "@action:label" +msgid "Height (mm)" +msgstr "Altura (mm)" + +msgctxt "@label" +msgid "Helpers" +msgstr "Assistentes" + +msgctxt "@label" +msgid "Hide all connected printers" +msgstr "Omitir todas as impressoras conectadas" + +msgctxt "@action:menu" +msgid "Hide this setting" +msgstr "Ocultar este ajuste" + +msgctxt "@info:tooltip" +msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." +msgstr "Ressalta superfícies faltantes ou incorretas do modelo usando sinais de alerta. Os caminhos de extrusão frequentemente terão partes da geometria pretendida ausentes." + +msgctxt "@info:tooltip" +msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." +msgstr "Ressaltar áreas sem suporte do modelo em vermelho. Sem suporte, estas áreas não serão impressas corretamente." + +msgctxt "@button" +msgid "How to load new material profiles to my printer" +msgstr "Como carregar novos perfis de material na minha impressora" + +msgctxt "@action:button" +msgid "How to update" +msgstr "Como atualizar" + +msgctxt "@text:window" +msgid "I don't want to send anonymous data" +msgstr "Recusar enviar dados anônimos" + +msgctxt "@label:status" +msgid "Idle" +msgstr "Ocioso" + +msgctxt "@label" +msgid "If you are trying to add a new UltiMaker printer to Cura" +msgstr "Se você está tentando adicionar uma nova impressora UltiMaker ao Cura" + +msgctxt "@label" +msgid "If your printer is not listed, read the network printing troubleshooting guide" +msgstr "Se sua impressora não está listada, leia o guia de resolução de problemas de impressão em rede" + +msgctxt "name" +msgid "Image Reader" +msgstr "Leitor de Imagens" + +msgctxt "@action:button" +msgid "Import" +msgstr "Importar" + +msgctxt "@title:window" +msgid "Import Material" +msgstr "Importar Material" + +msgctxt "@title:window" +msgid "Import Profile" +msgstr "Importar Perfil" + +msgctxt "@action:button" +msgid "Import all as models" +msgstr "Importar todos como modelos" + +msgctxt "@action:button" +msgid "Import models" +msgstr "Importar modelos" + +msgctxt "@label:MonitorStatus" +msgid "In maintenance. Please check the printer" +msgstr "Em manutenção. Por favor verifique a impressora" + +msgctxt "@info" +msgid "In order to monitor your print from Cura, please connect the printer." +msgstr "Para monitorar sua impressão pelo Cura, por favor conecte a impressora." + +msgctxt "@label" +msgid "In order to start using Cura you will need to configure a printer." +msgstr "Para poder iniciar o uso do Cura você precisará configurar uma impressora." + +msgctxt "@button" +msgid "In order to use the package you will need to restart Cura" +msgstr "Para usar o pacote você precisará reiniciar o Cura" + +msgctxt "@label" +msgid "Infill" +msgstr "Preenchimento" + +msgctxt "@tooltip" +msgid "Infill" +msgstr "Preenchimento" + +msgctxt "infill_sparse_density description" +msgid "Infill Density" +msgstr "Densidade de Preenchimento" + +msgctxt "@action:label" +msgid "Infill Pattern" +msgstr "Padrão de Preenchimento" + +msgctxt "@item:inlistbox" +msgid "Infill mesh only" +msgstr "Somente malha de preenchimento" + +msgctxt "@label" +msgid "Infill overlapping with this model is modified." +msgstr "Preenchimento se sobrepondo a este modelo foi modificado." + +msgctxt "@info:title" +msgid "Information" +msgstr "Informação" + +msgctxt "@title" +msgid "Information" +msgstr "Informação" + +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "Inicializando Máquina Ativa..." + +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "Inicializando volume de impressão..." + +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "Inicializando motor..." + +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "Inicializando gestor de máquinas..." + +msgctxt "@label" +msgid "Inner Wall" +msgstr "Parede Interna" + +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "Paredes Internas" + +msgctxt "@text" +msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." +msgstr "Insira o pendrive USB na sua impressora e faça o procedimento de carregar novos perfis de material." + +msgctxt "@button" +msgid "Install" +msgstr "Instalar" + +msgctxt "@header" +msgid "Install Materials" +msgstr "Instalar Materiais" + +msgctxt "@window:title" +msgid "Install Package" +msgstr "Instalar Pacote" + +msgctxt "@action:button" +msgid "Install Packages" +msgstr "Instalar Pacotes" + +msgctxt "@header" +msgid "Install Packages" +msgstr "Instala Pacotes" + +msgctxt "@header" +msgid "Install Plugins" +msgstr "Instalar Complementos" + +msgctxt "@action:button" +msgid "Install missing packages" +msgstr "Instalar pacotes faltantes" + +msgctxt "@title" +msgid "Install missing packages" +msgstr "Instala pacotes faltantes" + +msgctxt "@label" +msgid "Install missing packages from project file." +msgstr "Instala pacotes faltantes do arquivo de projeto." + +msgctxt "@button" +msgid "Install pending updates" +msgstr "Instalação aguardando atualizações" + +msgctxt "@label" +msgid "Installed Materials" +msgstr "Materiais Instalados" + +msgctxt "@label" +msgid "Installed Plugins" +msgstr "Complementos Instalados" + +msgctxt "@button" +msgid "Installing..." +msgstr "Instalando..." + +msgctxt "@action:label" +msgid "Intent" +msgstr "Objetivo" + +msgctxt "@label" +msgid "Interface" +msgstr "Interface" + +msgctxt "@label Description for application component" +msgid "Interprocess communication library" +msgstr "Biblioteca de comunicação interprocessos" + +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "Endereço IP inválido" + +msgctxt "@info:status" +msgid "Invalid file URL:" +msgstr "URL de arquivo inválida:" + +msgctxt "@action:button" +msgid "Invert the direction of camera zoom." +msgstr "Inverter a direção da ampliação de câmera." + +msgctxt "@label" +msgid "Is printed as support." +msgstr "Está impresso como suporte." + +msgctxt "@text" +msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware." +msgstr "Parece que você não tem impressoras compatíveis conectadas à Digital Factory. Certifique-se que sua impressora esteja conectada e rodando o firmware mais recente." + +msgctxt "@item:inlistbox" +msgid "JPEG Image" +msgstr "Imagem JPEG" + +msgctxt "@item:inlistbox" +msgid "JPG Image" +msgstr "Imagem JPG" + +msgctxt "@label Description for application dependency" +msgid "JSON parser" +msgstr "Parser JSON" + +msgctxt "@label" +msgid "Job Name" +msgstr "Nome do Trabalho" + +msgctxt "@label" +msgid "Jog Distance" +msgstr "Distância de Trote" + +msgctxt "@label" +msgid "Jog Position" +msgstr "Posição de Trote" + +msgctxt "@option:discardOrKeep" +msgid "Keep and never ask again" +msgstr "Manter e não perguntar novamente" + +msgctxt "@action:button" +msgid "Keep changes" +msgstr "Manter alterações" + +msgctxt "@action:button" +msgid "Keep printer configurations" +msgstr "Manter configurações da impressora" + +msgctxt "@action:menu" +msgid "Keep this setting visible" +msgstr "Manter este ajuste visível" + +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "Última atualização: %1" + +msgctxt "@label:listbox" +msgid "Layer Thickness" +msgstr "Espessura de Camada" + +msgctxt "@item:inlistbox" +msgid "Layer view" +msgstr "Visão de Camadas" + +msgctxt "@button:label" +msgid "Learn More" +msgstr "Saiba mais" + +msgctxt "@button" +msgid "Learn how to connect your printer to Digital Factory" +msgstr "Aprenda como conectar sua impressora à Digital Factory" + +msgctxt "@tooltip:button" +msgid "Learn how to get started with UltiMaker Cura." +msgstr "Saiba como começar com o UltiMaker Cura." + +msgctxt "@action" +msgid "Learn more" +msgstr "Saiba mais" + +msgctxt "@action:button" +msgid "Learn more" +msgstr "Saiba mais" + +msgctxt "@button" +msgid "Learn more" +msgstr "Saiba mais" + +msgctxt "@button:label" +msgid "Learn more" +msgstr "Saber mais" + +msgctxt "@action:button" +msgid "Learn more about Cura print profiles" +msgstr "Saber mais sobre perfis de impressão do Cura" + +msgctxt "@button" +msgid "Learn more about adding printers to Cura" +msgstr "Saiba mais sobre adicionar impressoras ao Cura" + +msgctxt "@label" +msgid "Learn more about project packages." +msgstr "Aprenda mais sobre pacotes de projeto" + +msgctxt "@action:inmenu menubar:view" +msgid "Left Side View" +msgstr "Visão do Lado Esquerdo" + +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "Visão à Esquerda" + +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Leitor de Perfis de Cura Legado" + +msgctxt "@tooltip:button" +msgid "Let developers know that something is going wrong." +msgstr "Deixe os desenvolvedores saberem que algo está errado." + +msgctxt "@action" +msgid "Level build plate" +msgstr "Nivelar mesa" + +msgctxt "@item:inlistbox" +msgid "Lighter is higher" +msgstr "Mais claro é mais alto" + +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Tipo de Linha" + +msgctxt "@label:listbox" +msgid "Line Width" +msgstr "Largura de Extrusão" + +msgctxt "@item:inlistbox" +msgid "Linear" +msgstr "Linear" + +msgctxt "@label Description for development tool" +msgid "Linux cross-distribution application deployment" +msgstr "Implementação de aplicação multidistribuição em Linux" + +msgctxt "@label" +msgid "Load %3 as material %1 (This cannot be overridden)." +msgstr "Carregar %3 como material %1 (isto não pode ser sobreposto)." + +msgctxt "@button" +msgid "Load more" +msgstr "Carregar mais" + +msgctxt "@button" +msgid "Loading" +msgstr "Carregando" + +msgctxt "@action:warning" +msgid "Loading a project will clear all models on the build plate." +msgstr "Carregar um projeto limpará todos os modelos da mesa de impressão." + +msgctxt "@label" +msgid "Loading available configurations from the printer..." +msgstr "Carregando configurações disponíveis da impressora..." + +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "Carregando interface..." + +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "Carregando máquinas..." + +msgctxt "@label:status" +msgid "Loading..." +msgstr "Carregando..." + +msgctxt "@title" +msgid "Loading..." +msgstr "Carregando..." + +msgctxt "@label:category menu label" +msgid "Local printers" +msgstr "Impressoras locais" + +msgctxt "@info:title" +msgid "Log-in failed" +msgstr "Login falhou" + +msgctxt "@info:title" +msgid "Login failed" +msgstr "Login falhou" + +msgctxt "@title:groupbox" +msgid "Logs" +msgstr "Registros" + +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Registra certos eventos de forma que possam ser usados pelo relator de acidentes" + +msgctxt "@label:MonitorStatus" +msgid "Lost connection with the printer" +msgstr "A conexão à impressora foi perdida" + +msgctxt "@action" +msgid "Machine Settings" +msgstr "Ajustes da Máquina" + +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Ação de Ajustes de Máquina" + +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "Máquinas" + +msgctxt "@text" +msgid "Make sure all your printers are turned ON and connected to Digital Factory." +msgstr "Certifique-se de que todas as suas impressoras estejam LIGADAS e conectadas à Digital Factory." + +msgctxt "@info:generic" +msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." +msgstr "Certifique que o g-code é adequado para sua impressora e configuração antes de enviar o arquivo. A representação de g-code pode não ser acurada." + +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "Makerbot Printfile" + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "Gerador de Makerbot Printfile" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "MakerbotWriter não conseguiu salvar no caminho designado." + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "MakerbotWriter não suporta modo texto." + +msgctxt "@action:inmenu" +msgid "Manage Materials..." +msgstr "Administrar Materiais..." + +msgctxt "@action:inmenu menubar:printer" +msgid "Manage Pr&inters..." +msgstr "Adm&inistrar Impressoras..." + +msgctxt "@action:inmenu menubar:profile" +msgid "Manage Profiles..." +msgstr "Administrar perfis..." + +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "Gerenciar Visibilidade dos Ajustes..." + +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "Gerenciar backups" + +msgctxt "@label link to connect manager" +msgid "Manage in browser" +msgstr "Gerir no navegador" + +msgctxt "@header" +msgid "Manage packages" +msgstr "Gerir pacotes" + +msgctxt "@info:tooltip" +msgid "Manage packages" +msgstr "Gerir pacotes" + +msgctxt "@action" +msgid "Manage print jobs" +msgstr "Gerenciar trabalhos de impressão" + +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "Gerir Impressora" + +msgctxt "@button" +msgid "Manage printers" +msgstr "Gerenciar impressoras" + +msgctxt "@text" +msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." +msgstr "Gerencie seu complementos e perfis de materiais do Cura aqui. Se assegure de manter seus complementos atualizados e fazer backup de sua configuração regularmente." + +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Gerencia extensões à aplicação e permite navegar extensões do website da UltiMaker." + +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Gerencia conexões de rede com as impressoras de rede da UltiMaker." + +msgctxt "@label" +msgid "Manufacturer" +msgstr "Fabricante" + +msgctxt "@action:button" +msgid "Marketplace" +msgstr "Mercado" + +msgctxt "@label" +msgid "Marketplace" +msgstr "Mercado" + +msgctxt "name" +msgid "Marketplace" +msgstr "Marketplace" + +msgctxt "@action:label" +msgid "Material" +msgstr "Material" + +msgctxt "@label" +msgid "Material" +msgstr "Material" + +msgctxt "@label:category menu label" +msgid "Material" +msgstr "Material" + +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Cor do Material" + +msgctxt "name" +msgid "Material Profiles" +msgstr "Perfis de Material" + +msgctxt "@label" +msgid "Material Type" +msgstr "Tipo de Material" + +msgctxt "@title" +msgid "Material color picker" +msgstr "Seletor de cores do material" + +msgctxt "@label" +msgid "Material estimation" +msgstr "Estimativa de material" + +msgctxt "@title:header" +msgid "Material profiles successfully synced with the following printers:" +msgstr "Perfis de material sincronizados com sucesso com as seguintes impressoras:" + +msgctxt "@action:label" +msgid "Material settings" +msgstr "Ajustes de material" + +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "Materiais" + +msgctxt "@button" +msgid "Materials" +msgstr "Materiais" + +msgctxt "@title:tab" +msgid "Materials" +msgstr "Materiais" + +msgctxt "@label" +msgid "Materials compatible with active printer:" +msgstr "Materiais compatíveis com a impressora ativa:" + +msgctxt "@label" +msgid "Mesh Type" +msgstr "Tipo de Malha" + +msgctxt "@action:label" +msgid "Mode" +msgstr "Modo" + +msgctxt "name" +msgid "Model Checker" +msgstr "Verificador de Modelo" + +msgctxt "@info:title" +msgid "Model Errors" +msgstr "Erros de Modelo" + +msgctxt "@item:inmenu" +msgid "Modify G-Code" +msgstr "Modificar G-Code" + +msgctxt "@label" +msgid "Modify settings for overlaps" +msgstr "Modificar ajustes para sobreposições" + +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "Monitor" + +msgctxt "name" +msgid "Monitor Stage" +msgstr "Estágio de Monitor" + +msgctxt "@action:button" +msgid "Monitor print" +msgstr "Monitorar impressão" + +msgctxt "@tooltip:button" +msgid "Monitor print jobs and reprint from your print history." +msgstr "Monitora trabalhos de impressão e reimprime a partir do histórico." + +msgctxt "@tooltip:button" +msgid "Monitor printers in Ultimaker Digital Factory." +msgstr "Monitora as impressoras na Ultimaker Digital Factory." + +msgctxt "@info" +msgid "Monitor your printers from everywhere using Ultimaker Digital Factory" +msgstr "Monitora suas impressoras de todo lugar usando a Ultimaker Digital Factory" + +msgctxt "@title:window" +msgid "More information on anonymous data collection" +msgstr "Mais informações em coleção anônima de dados" + +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "Move o trabalho de impressão para o topo da fila" + +msgctxt "@action:button" +msgid "Move to Next Position" +msgstr "Mover pra a Posição Seguinte" + +msgctxt "@label" +msgid "Move to top" +msgstr "Mover para o topo" + +msgctxt "@info:tooltip" +msgid "Moves the camera so the model is in the center of the view when a model is selected" +msgstr "Move a câmera de modo que o modelo fique no centro da visão quando for selecionado" + +msgctxt "@action:inmenu menubar:edit" +msgid "Multiply Selected" +msgstr "Multiplicar Selecionados" + +msgctxt "@title:window" +msgid "Multiply Selected Model" +msgid_plural "Multiply Selected Models" +msgstr[0] "Multiplicar Modelo Selecionado" +msgstr[1] "Multiplicar Modelos Selecionados" + +msgctxt "@info" +msgid "Multiply selected item and place them in a grid of build plate." +msgstr "Multiplica o item selecionado e o dispõe em grade na plataforma de impressão." + +msgctxt "@info:status" +msgid "Multiplying and placing objects" +msgstr "Multiplicando e colocando objetos" + +msgctxt "@title" +msgid "My Backups" +msgstr "Meus backups" + +msgctxt "@label:button" +msgid "My printers" +msgstr "Minhas impressoras" + +msgctxt "@action:label" +msgid "Name" +msgstr "Nome" + +msgctxt "@label:category menu label" +msgid "Network enabled printers" +msgstr "Impressoras habilitadas pela rede" + +msgctxt "@info:title" +msgid "Network error" +msgstr "Erro de rede" + +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "Novo firmware estável de %s disponível" + +msgctxt "@textfield:placeholder" +msgid "New Custom Profile" +msgstr "Novo Perfil Personalizado" + +msgctxt "@label" +msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." +msgstr "Novas impressoras UltiMaker podem ser conectadas à Digital Factory e monitoradas remotamente." + +#, python-brace-format +msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." +msgstr "Novos recursos ou consertos de bugs podem estar disponíveis para sua {machine_name}! Se você não o fez ainda, recomenda-se que atualize o firmware de sua impressora para a versão {latest_version}." + +msgctxt "@action:button" +msgid "New materials installed" +msgstr "Novos materiais instalados" + +msgctxt "info:status" +msgid "New printer detected from your Ultimaker account" +msgid_plural "New printers detected from your Ultimaker account" +msgstr[0] "Nova impressora detectada na sua conta Ultimaker" +msgstr[1] "Novas impressoras detectadas na sua conta Ultimaker" + +msgctxt "@title:window" +msgid "New project" +msgstr "Novo projeto" + +msgctxt "@action:button" +msgid "Next" +msgstr "Próximo" + +msgctxt "@button" +msgid "Next" +msgstr "Próximo" + +msgctxt "@info:title" +msgid "Nightly build" +msgstr "Compilação noturna" + +msgctxt "@info" +msgid "No" +msgstr "Não" + +msgctxt "@info" +msgid "No compatibility information" +msgstr "Sem informação de compatibilidade" + +msgctxt "@description" +msgid "No compatible printers, that are currently online, were found." +msgstr "Não foram encontradas impressoras compatíveis que estivessem online no momento." + +msgctxt "@label" +msgid "No cost estimation available" +msgstr "Sem estimativa de custo disponível" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags !" +msgid "No custom profile to import in file {0}" +msgstr "Não há perfil personalizado a importar no arquivo {0}" + +msgctxt "@label" +msgid "No items to select from" +msgstr "Sem itens para selecionar" + +msgctxt "@info:title" +msgid "No layers to show" +msgstr "Não há camadas a exibir" + +msgctxt "@message" +msgid "No more results to load" +msgstr "Não há mais resultados a carregar" + +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "Sem permissão para gravar o espaço de trabalho aqui." + +msgctxt "@title:header" +msgid "No printers found" +msgstr "Nenhuma impressora encontrada" + +msgctxt "@label" +msgid "No printers found in your account?" +msgstr "Nenhuma impressora encontrada em sua conta?" + +msgctxt "@message:text %1 is the name the printer uses for 'nozzle'." +msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration." +msgstr "Nenhum perfil está disponível para a configuração selecionada de material/%1. Por favor altere sua configuração." + +msgctxt "@message" +msgid "No results found with current filter" +msgstr "Não há resultados encontrados com o filtro atual" + +msgctxt "@label" +msgid "No time estimation available" +msgstr "Sem estimativa de tempo disponível" + +msgctxt "@button" +msgid "Non UltiMaker printer" +msgstr "Impressora Não-UltiMaker" + +msgctxt "@info No materials" +msgid "None" +msgstr "Nenhum" + +msgctxt "@label" +msgid "Normal model" +msgstr "Modelo normal" + +msgctxt "@info:title" +msgid "Not a group host" +msgstr "Não é host de grupo" + +msgctxt "@label:MonitorStatus" +msgid "Not connected to a printer" +msgstr "Não conectado a nenhuma impressora" + +msgctxt "@action:label" +msgid "Not in profile" +msgstr "Ausente no perfil" + +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Não sobreposto" + +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "Não Suportado" + +msgctxt "@label" +msgid "Not yet initialized" +msgstr "Ainda não inicializado" + +msgctxt "@info:status" +msgid "Nothing is shown because you need to slice first." +msgstr "Nada está exibido porque você precisa fatiar primeiro." + +msgctxt "@label" +msgid "Nozzle" +msgstr "Bico" + +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Ajustes do Bico" + +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "Deslocamento X do Bico" + +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "Deslocamento Y do Bico" + +msgctxt "@label" +msgid "Nozzle size" +msgstr "Tamanho do bico" + +msgctxt "@label" +msgid "Number of Copies" +msgstr "Número de Cópias" + +msgctxt "@label" +msgid "Number of Extruders" +msgstr "Número de Extrusores" + +msgctxt "@action:button" +msgid "OK" +msgstr "Ok" + +msgctxt "@label" +msgid "OS language" +msgstr "Linguagem do SO" + +msgctxt "@label" +msgid "Object list" +msgstr "Lista de objetos" + +msgctxt "@label:Should be short" +msgid "Off" +msgstr "Off" + +msgctxt "@label:Should be short" +msgid "On" +msgstr "On" + +msgctxt "@label" +msgid "Only Show Top Layers" +msgstr "Somente Exibir Camadas Superiores" + +#, python-brace-format +msgctxt "@info:status" +msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" +msgstr "Somente um arquivo G-Code pode ser carregado por vez. Pulando importação de {0}" + +msgctxt "@action:button" +msgid "Open" +msgstr "Abrir" + +msgctxt "@title:menu menubar:file" +msgid "Open &Recent" +msgstr "Abrir &Recente" + +msgctxt "@item:inlistbox 'Open' is part of the name of this file format." +msgid "Open Compressed Triangle Mesh" +msgstr "Open Compressed Triangle Mesh" + +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "Abrir Arquivo(s)" + +msgctxt "@title:menu menubar:file" +msgid "Open File(s)..." +msgstr "Abrir Arquivo(s)..." + +msgctxt "@title:window" +msgid "Open Project" +msgstr "Abrir Projeto" + +msgctxt "@info:title" +msgid "Open Project File" +msgstr "Abrir Arquivo de Projeto" + +msgctxt "@action:label" +msgid "Open With" +msgstr "Abrir Com" + +msgctxt "@action:button" +msgid "Open as project" +msgstr "Abrir como projeto" + +msgctxt "@title:window" +msgid "Open file(s)" +msgstr "Abrir arquivo(s)" + +msgctxt "@action:button" +msgid "Open project anyway" +msgstr "Abrir o projeto mesmo assim" + +msgctxt "@title:window" +msgid "Open project file" +msgstr "Abrir arquivo de projeto" + +msgctxt "@label OpenGL version" +msgid "OpenGL" +msgstr "OpenGL" + +msgctxt "@label" +msgid "Opening and saving files" +msgstr "Abrindo e salvando arquivos" + +msgctxt "@header" +msgid "Optimized for Air Manager" +msgstr "Otimizado para o Air Manager" + +msgctxt "@label" +msgid "Origin at center" +msgstr "Origem no centro" + +msgid "Orthographic" +msgstr "Ortográfica" + +msgctxt "@action:inmenu menubar:view" +msgid "Orthographic" +msgstr "Ortográfico" + +msgctxt "@tooltip" +msgid "Other" +msgstr "Outros" + +msgctxt "@label" +msgid "Other models overlapping with this model are modified." +msgstr "Outros modelos se sobrepondo a esse modelo foram modificados." + +msgctxt "@label" +msgid "Other printers" +msgstr "Outras impressoras" + +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "Parede Externa" + +msgctxt "@label" +msgid "Overlaps with this model are not supported." +msgstr "Sobreposições neste modelo não são suportadas." + +msgctxt "@action:button" +msgid "Override" +msgstr "Sobrepor" + +msgctxt "@label" +msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." +msgstr "Sobrepor irá usar os ajustes especificados com a configuração existente da impressora. Isto pode causar falha da impressão." + +msgctxt "@label %1 is the number of settings it overrides." +msgid "Overrides %1 setting." +msgid_plural "Overrides %1 settings." +msgstr[0] "Sobrepõe %1 ajuste." +msgstr[1] "Sobrepõe %1 ajustes." + +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "P&referências" + +msgctxt "@item:inlistbox" +msgid "PNG Image" +msgstr "Imagem PNG" + +msgctxt "@header" +msgid "Package details" +msgstr "Detalhes do pacote" + +msgctxt "@label Description for development tool" +msgid "Packaging Python-applications" +msgstr "Empacotamento de aplicações Python" + +msgctxt "@info:status" +msgid "Parsing G-code" +msgstr "Interpretando G-Code" + +msgctxt "@action:inmenu menubar:edit" +msgid "Paste from clipboard" +msgstr "Colar da área de transferência" + +msgctxt "@label" +msgid "Pause" +msgstr "Pausar" + +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "Pausado" + +msgctxt "@label:status" +msgid "Paused" +msgstr "Pausado" + +msgctxt "@label" +msgid "Pausing..." +msgstr "Pausando..." + +msgctxt "@label:status" +msgid "Pausing..." +msgstr "Pausando..." + +msgctxt "@label" +msgid "Per Model Settings" +msgstr "Ajustes por Modelo" + +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Ferramenta de Ajustes Por Modelo" + +msgid "Perspective" +msgstr "Perspectiva" + +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "Perspectiva" + +msgctxt "@action:label" +msgid "Placement" +msgstr "Posicionamento" + +msgctxt "@info:title" +msgid "Placing Object" +msgstr "Colocando Objeto" + +msgctxt "@info:title" +msgid "Placing Objects" +msgstr "Colocando Objetos" + +msgctxt "@label Type of platform" +msgid "Platform" +msgstr "Plataforma" + +msgctxt "@info" +msgid "Please connect your printer to the network." +msgstr "Por favor conecte sua impressora à rede." + +msgctxt "@text" +msgid "Please enter a valid IP address." +msgstr "Por favor entre um endereço IP válido." + +msgctxt "@message" +msgid "Please give the required permissions when authorizing this application." +msgstr "Por favor dê as permissões requeridas ao autorizar esta aplicação." + +msgctxt "@info" +msgid "" +"Please make sure your printer has a connection:\n" +"- Check if the printer is turned on.\n" +"- Check if the printer is connected to the network.\n" +"- Check if you are signed in to discover cloud-connected printers." +msgstr "" +"Por favor certifique-se que sua impressora está conectada>\n" +"- Verifique se ela está ligada.\n" +"- Verifique se ela está conectada à rede.\n" +"- Verifique se você está logado para descobrir impressoras conectadas à nuvem." + +msgctxt "@text" +msgid "Please name your printer" +msgstr "Por favor dê um nome à sua impressora" + +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "Por favor prepare o G-Code antes de exportar." + +msgctxt "@info" +msgid "Please provide a name for this profile." +msgstr "Por favor dê um nome a este perfil." + +msgctxt "@info" +msgid "Please provide a new name." +msgstr "Por favor, escolha um novo nome." + +msgctxt "@text" +msgid "Please read and agree with the plugin licence." +msgstr "Por favor leia e concorde com a licença do complemento." + +msgctxt "@label:MonitorStatus" +msgid "Please remove the print" +msgstr "Por favor remova a impressão" + +msgctxt "@info:status" +msgid "" +"Please review settings and check if your models:\n" +"- Fit within the build volume\n" +"- Are assigned to an enabled extruder\n" +"- Are not all set as modifier meshes" +msgstr "" +"Por favor revise os ajustes e verifique se seus modelos:\n" +"- Cabem dentro do volume de impressão\n" +"- Estão associados a um extrusor habilitado\n" +"- Não estão todos configurados como malhas de modificação" + +msgctxt "@label" +msgid "Please select any upgrades made to this UltiMaker Original" +msgstr "Por favor selecionar quaisquer atualizações feitas nesta UltiMaker Original" + +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" +msgstr "Por favor se logue para adquirir complementos e materiais verificados para o UltiMaker Cura Enterprise" + +msgctxt "@action:button" +msgid "Please sync the material profiles with your printers before starting to print." +msgstr "Por favor sincronize os perfis de material com suas impressoras antes de começar a imprimir." + +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "Por favor atualize o firmware de sua impressora parar gerir a fila remotamente." + +msgctxt "@info:status" +msgid "Please wait until the current job has been sent." +msgstr "Por favor espere até que o trabalho atual tenha sido enviado." + +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "Acordo de Licença do Complemento" + +msgctxt "@button" +msgid "Plugin license agreement" +msgstr "Acordo de licença do complemento" + +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "Complementos" + +msgctxt "@button" +msgid "Plugins" +msgstr "Complementos" + +msgctxt "@label Description for application dependency" +msgid "Polygon clipping library" +msgstr "Biblioteca de recorte de polígonos" + +msgctxt "@label Description for application component" +msgid "Polygon packing library, developed by Prusa Research" +msgstr "Biblioteca de empacotamento Polygon, desenvolvido pela Prusa Research" + +msgctxt "@item:inmenu" +msgid "Post Processing" +msgstr "Pós-Processamento" + +msgctxt "name" +msgid "Post Processing" +msgstr "Pós-processamento" + +msgctxt "@title:window" +msgid "Post Processing Plugin" +msgstr "Complemento de Pós-Processamento" + +msgctxt "@label" +msgid "Post Processing Scripts" +msgstr "Scripts de Pós-Processamento" + +msgctxt "@button" +msgid "Pre-heat" +msgstr "Pré-aquecer" + +msgctxt "@item:inmenu" +msgid "Prepare" +msgstr "Preparar" + +msgctxt "name" +msgid "Prepare Stage" +msgstr "Estágio de Preparação" + +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "Preparando..." + +msgctxt "@label:status" +msgid "Preparing..." +msgstr "Preparando..." + +msgctxt "@label" +msgid "Preset printers" +msgstr "Impressoras pré-ajustadas" + +msgctxt "@button" +msgid "Preview" +msgstr "Pré-visualização" + +msgctxt "@item:inmenu" +msgid "Preview" +msgstr "Pré-visualização" + +msgctxt "name" +msgid "Preview Stage" +msgstr "Estágio de Pré-visualização" + +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "Torre de Prime" + +msgctxt "@action:button" +msgid "Print" +msgstr "Imprimir" + +msgctxt "@label" +msgid "Print Selected Model With:" +msgid_plural "Print Selected Models With:" +msgstr[0] "Imprimir Modelo Selecionado Com:" +msgstr[1] "Imprimir Modelos Selecionados Com:" + +msgctxt "@label %1 is filled in with the name of an extruder" +msgid "Print Selected Model with %1" +msgid_plural "Print Selected Models with %1" +msgstr[0] "Imprimir Modelo Selecionado com %1" +msgstr[1] "Imprimir Modelos Selecionados com %1" + +msgctxt "@label" +msgid "Print as support" +msgstr "Imprimir como suporte" + +msgctxt "@info:title" +msgid "Print error" +msgstr "Erro de impressão" + +msgctxt "@message" +msgid "Print in Progress" +msgstr "Impressão em Progresso" + +msgctxt "@info:status" +msgid "Print job queue is full. The printer can't accept a new job." +msgstr "A fila de trabalhos de impressão está cheia. A impressora não pode aceitar novo trabalho." + +msgctxt "@info:status" +msgid "Print job was successfully sent to the printer." +msgstr "Trabalho de impressão enviado à impressora com sucesso." + +msgctxt "@label" +msgid "Print jobs" +msgstr "Trabalhos de impressão" + +msgctxt "@label:button" +msgid "Print jobs" +msgstr "Trabalhos de impressão" + +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print over network" +msgstr "Imprimir pela rede" + +msgctxt "@properties:tooltip" +msgid "Print over network" +msgstr "Imprime pela rede" + +msgctxt "@title:window" +msgid "Print over network" +msgstr "Imprimir pela rede" + +msgctxt "@label" +msgid "Print settings" +msgstr "Ajustes de impressão" + +msgctxt "@label shown when we load a Gcode file" +msgid "Print setup disabled. G-code file can not be modified." +msgstr "Configuração de Impressão desabilitada. O arquivo de G-Code não pode ser modificado." + +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print via USB" +msgstr "Imprimir pela USB" + +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "Imprimir pela USB" + +msgctxt "@action:button" +msgid "Print via cloud" +msgstr "Imprimir pela nuvem" + +msgctxt "@properties:tooltip" +msgid "Print via cloud" +msgstr "Imprimir pela nuvem" + +msgctxt "@action:label" +msgid "Print with" +msgstr "Imprimir com" + +msgctxt "@title:tab" +msgid "Printer" +msgstr "Impressora" + +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Endereço da Impressora" + +msgctxt "@action:label" +msgid "Printer Group" +msgstr "Grupo de Impressora" + +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "Ajustes de Impressora" + +msgctxt "@label" +msgid "Printer control" +msgstr "Controle da Impressora" + +msgctxt "@label:MonitorStatus" +msgid "Printer does not accept commands" +msgstr "A impressora não aceita comandos" + +msgctxt "@label" +msgid "Printer name" +msgstr "Nome da impressora" + +msgctxt "@label" +msgid "Printer selection" +msgstr "Seleção de impressora" + +msgctxt "@action:label" +msgid "Printer settings" +msgstr "Ajustes da impressora" + +msgctxt "@info:tooltip" +msgid "Printer settings will be updated to match the settings saved with the project." +msgstr "Os ajustes de impressora serão atualizados para concordar com os ajustes salvos com o projeto." + +msgctxt "@title:tab" +msgid "Printers" +msgstr "Impressoras" + +msgctxt "info:status" +msgid "Printers added from Digital Factory:" +msgstr "Impressoras adicionadas da Digital Factory:" + +msgctxt "@text Asking the user whether printers are missing in a list." +msgid "Printers missing?" +msgstr "Impressoras faltando?" + +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "Ajustes da Cabeça de Impressão" + +msgctxt "@label:status" +msgid "Printing" +msgstr "Imprimindo" + +msgctxt "@label" +msgid "Printing Time" +msgstr "Tempo de Impressão" + +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "Imprimindo..." + +msgctxt "@label" +msgid "Privacy" +msgstr "Privacidade" + +msgctxt "@button" +msgid "Processing" +msgstr "Processando" + +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "Processando Camadas" + +msgctxt "@label" +msgid "Profile" +msgstr "Perfil" + +msgctxt "@title:column" +msgid "Profile" +msgstr "Perfil" + +msgctxt "@label" +msgid "Profile author" +msgstr "Autor do perfil" + +msgctxt "@info:status" +msgid "Profile is missing a quality type." +msgstr "Falta um tipo de qualidade ao Perfil." + +msgctxt "@action:label" +msgid "Profile settings" +msgstr "Ajustes de perfil" + +msgctxt "@title:column" +msgid "Profile settings" +msgstr "Ajustes de perfil" + +#, python-brace-format +msgctxt "@info:status" +msgid "Profile {0} has an unknown file type or is corrupted." +msgstr "O Perfil {0} tem tipo de arquivo desconhecido ou está corrompido." + +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "Perfis" + +msgctxt "@label" +msgid "Profiles" +msgstr "Perfis" + +msgctxt "@title:tab" +msgid "Profiles" +msgstr "Perfis" + +msgctxt "@label" +msgid "Profiles compatible with active printer:" +msgstr "Perfis compatíveis com a impressora ativa:" + +msgctxt "@label Description for application dependency" +msgid "Programming language" +msgstr "Linguagem de Programação" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." +msgstr "O arquivo de projeto {0} contém um tipo de máquina desconhecido {1}. Não foi possível importar a máquina. Os modelos serão importados ao invés dela." + +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is corrupt: {1}." +msgstr "Arquivo de projeto {0} está corrompido: {1}." + +#, python-brace-format +msgctxt "@info:error Don't translate the XML tag !" +msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." +msgstr "O arquivo de projeto {0} foi feito usando perfis que são desconhecidos para esta versão do UltiMaker Cura." + +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is suddenly inaccessible: {1}." +msgstr "O arquivo de projeto {0} tornou-se subitamente inacessível: {1}." + +msgctxt "@label" +msgid "Properties" +msgstr "Propriedades" + +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Provê ações de máquina para atualização do firmware." + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Provê um estágio de monitor no Cura." + +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Provê uma visualização de malha sólida normal." + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Provê um estágio de preparação no Cura." + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Provê uma etapa de pré-visualização ao Cura." + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Provê uma maneira de alterar ajustes de máquina (tais como volume de impressão, tamanho do bico, etc.)." + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Provê capacidade de ler e escrever perfis de material baseado em XML." + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Provê ações de máquina para impressoras da UltiMaker (tais como assistente de nivelamento de mesa, seleção de atualizações, etc.)." + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Provê suporte a escrita e reconhecimento de drives a quente." + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Provê suporte à exportação de perfis do Cura." + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Provê suporte à importação de perfis do Cura." + +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Provê suporte a importar perfis de arquivos G-Code." + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Provê suporte a importação de perfis de versões legadas do Cura." + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Provê suporte à leitura de arquivos 3MF." + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Provê suporta à leitura de arquivos AMF." + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Provê suporte à leitura de Formatos de Pacote Ultimaker." + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Provê suporte à leitura de arquivos X3D." + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Provê suporta a ler arquivos de modelo." + +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "Provê suporte à escrita de arquivos 3MF." + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "Provê suporte à escrita de Pacotes de Formato MakerBot." + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Provê suporte à escrita de Formatos de Pacote Ultimaker." + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Provê Ajustes Por Modelo." + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Provê a visão de Raios-X." + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Provê a ligação ao backend de fatiamento CuraEngine." + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Provê a pré-visualização de dados de camada fatiados." + +msgctxt "@label" +msgid "PyQt version" +msgstr "Versão do PyQt" + +msgctxt "@Label Description for application dependency" +msgid "Python Error tracking library" +msgstr "Biblioteca de rastreamento de Erros Python" + +msgctxt "@label Description for application dependency" +msgid "Python bindings for Clipper" +msgstr "Ligações de Python pra Clipper" + +msgctxt "@label Description for application component" +msgid "Python bindings for libnest2d" +msgstr "Ligações de Python para a libnest2d" + +msgctxt "@label" +msgid "Qt version" +msgstr "Versão do Qt" + +#, python-brace-format +msgctxt "@info:status" +msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." +msgstr "Tipo de qualidade '{0}' não é compatível com a definição de máquina ativa atual '{1}'." + +msgctxt "@info:title" +msgid "Queue Full" +msgstr "Fila Cheia" + +msgctxt "@label" +msgid "Queued" +msgstr "Enfileirados" + +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "Sair de %1" + +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Lê G-Code de um arquivo comprimido." + +msgctxt "@button" +msgid "Recommended" +msgstr "Recomendado" + +msgctxt "@title:tab" +msgid "Recommended" +msgstr "Recomendado" + +msgctxt "@label" +msgid "Recommended print settings" +msgstr "Ajustes recomendados de impressão" + +msgctxt "@info %1 is the name of a profile" +msgid "Recommended settings (for %1) were altered." +msgstr "Ajustes recomendados (para %1) foram alterados." + +msgctxt "@action:button" +msgid "Refresh" +msgstr "Atualizar" + +msgctxt "@button" +msgid "Refresh" +msgstr "Atualizar" + +msgctxt "@label" +msgid "Refresh" +msgstr "Atualizar" + +msgctxt "@button" +msgid "Refresh List" +msgstr "Atualizar Lista" + +msgctxt "@button" +msgid "Refreshing..." +msgstr "Atualizando..." + +msgctxt "@label" +msgid "Release Notes" +msgstr "Notas de lançamento" + +msgctxt "@action:inmenu menubar:file" +msgid "Reload All Models" +msgstr "Recarregar Todos Os Modelos" + +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "Lembrar minha escolha" + +msgctxt "@item:intext" +msgid "Removable Drive" +msgstr "Unidade Removível" + +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Complemento de Dispositivo de Escrita Removível" + +msgctxt "@action:button" +msgid "Remove" +msgstr "Remover" + +msgctxt "@action:button" +msgid "Remove printers" +msgstr "Remover impressoras" + +msgctxt "@title:window" +msgid "Remove printers?" +msgstr "Remover impressoras?" + +msgctxt "@action:button" +msgid "Rename" +msgstr "Renomear" + +msgctxt "@title:window" +msgid "Rename" +msgstr "Renomear" + +msgctxt "@title:window" +msgid "Rename Profile" +msgstr "Renomear Perfil" + +msgctxt "@action:inmenu menubar:help" +msgid "Report a &Bug" +msgstr "Relatar um &Bug" + +msgctxt "@label:button" +msgid "Report a bug" +msgstr "Relatar um problema" + +msgctxt "@message:button" +msgid "Report a bug" +msgstr "Relatar um bug" + +msgctxt "@message:description" +msgid "Report a bug on UltiMaker Cura's issue tracker." +msgstr "Relatar um bug no issue tracker do UltiMaker Cura." + +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "Requer mudanças na configuração" + +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Positions" +msgstr "Reestabelecer as Posições de Todos Os Modelos" + +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Transformations" +msgstr "Remover as Transformações de Todos Os Modelos" + +msgctxt "@info" +msgid "Reset to defaults." +msgstr "Restaurar aos defaults." + +msgctxt "@label" +msgid "Resolution" +msgstr "Resolução" + +msgctxt "@button" +msgid "Restore" +msgstr "Restaurar" + +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "Restaurar Backup" + +msgctxt "@option:check" +msgid "Restore window position on start" +msgstr "Restaurar posição da janela no início" + +msgctxt "@label" +msgid "Resume" +msgstr "Continuar" + +msgctxt "@label" +msgid "Resuming..." +msgstr "Continuando..." + +msgctxt "@label:status" +msgid "Resuming..." +msgstr "Continuando..." + +msgctxt "@tooltip" +msgid "Retractions" +msgstr "Retrações" + +msgctxt "@button" +msgid "Retry?" +msgstr "Tentar novamente?" + +msgctxt "@action:inmenu menubar:view" +msgid "Right Side View" +msgstr "Visão do Lado Direito" + +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "Visão à Direita" + +msgctxt "@label Description for application dependency" +msgid "Root Certificates for validating SSL trustworthiness" +msgstr "Certificados-Raiz para validar confiança SSL" + +msgctxt "@info:title" +msgid "Safely Remove Hardware" +msgstr "Remover Hardware com Segurança" + +msgctxt "@button" +msgid "Safety datasheet" +msgstr "Ficha de segurança" + +msgctxt "@action:button" +msgid "Save" +msgstr "Salvar" + +msgctxt "@option" +msgid "Save Cura project" +msgstr "Salvar o projeto Cura" + +msgctxt "@option" +msgid "Save Cura project and print file" +msgstr "Salvar o projeto Cura e imprimir o arquivo" + +msgctxt "@title:window" +msgid "Save Custom Profile" +msgstr "Salvar Perfil Personalizado" + +msgctxt "@title:window" +msgid "Save Project" +msgstr "Salvar Projeto" + +msgctxt "@title:menu menubar:file" +msgid "Save Project..." +msgstr "Salvar Projeto..." + +msgctxt "@action:button" +msgid "Save as new custom profile" +msgstr "Salvar como novo perfil personalizado" + +msgctxt "@action:button" +msgid "Save changes" +msgstr "Salvar alterações" + +msgctxt "@button" +msgid "Save new profile" +msgstr "Salvar novo perfil" + +msgctxt "@text" +msgid "Save the .umm file on a USB stick." +msgstr "Grava o arquivo .umm em um pendrive USB." + +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Save to Removable Drive" +msgstr "Salvar em Unidade Removível" + +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "Save to Removable Drive {0}" +msgstr "Salvar em Unidade Removível {0}" + +#, python-brace-format +msgctxt "@info:status" +msgid "Saved to Removable Drive {0} as {1}" +msgstr "Salvo em Unidade Removível {0} como {1}" + +msgctxt "@info:title" +msgid "Saving" +msgstr "Salvando" + +#, python-brace-format +msgctxt "@info:progress Don't translate the XML tags !" +msgid "Saving to Removable Drive {0}" +msgstr "Salvando na Unidade Removível {0}" + +msgctxt "@option:check" +msgid "Scale extremely small models" +msgstr "Redimensionar modelos minúsculos" + +msgctxt "@option:check" +msgid "Scale large models" +msgstr "Redimensionar modelos grandes" + +msgctxt "@placeholder" +msgid "Search" +msgstr "Buscar" + +msgctxt "@info" +msgid "Search in the browser" +msgstr "Buscar no navegador" + +msgctxt "@label:textbox" +msgid "Search settings" +msgstr "Ajustes de busca" + +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "Selecionar Todos Os Modelos" + +msgctxt "@title:window" +msgid "Select Printer" +msgstr "Selecione Impressora" + +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "Selecionar Ajustes a Personalizar para este modelo" + +msgctxt "@text" +msgid "Select and install material profiles optimised for your UltiMaker 3D printers." +msgstr "Selecione e instale perfis de material otimizados para suas impressoras 3D UltiMaker." + +msgctxt "@label" +msgid "Select configuration" +msgstr "Selecione configuração" + +msgctxt "@title:window" +msgid "Select custom firmware" +msgstr "Selecionar firmware personalizado" + +msgctxt "@option:check" +msgid "Select models when loaded" +msgstr "Selecionar modelos ao carregar" + +msgctxt "@action:button" +msgid "Select settings" +msgstr "Selecionar ajustes" + +msgctxt "@action" +msgid "Select upgrades" +msgstr "Selecionar Atualizações" + +msgctxt "@label" +msgid "Select your printer from the list below:" +msgstr "Selecione sua impressora da lista abaixo:" + +msgctxt "@option:check" +msgid "Send (anonymous) print information" +msgstr "Enviar informação (anônima) de impressão" + +msgctxt "@label" +msgid "Send G-code" +msgstr "Enviar G-Code" + +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "Enviar comando G-Code personalizado para a impressora conectada. Pressione 'enter' para enviar o comando." + +msgctxt "@action:button" +msgid "Send crash report to UltiMaker" +msgstr "Enviar relatório de falha à UltiMaker" + +msgctxt "@action:button" +msgid "Send report" +msgstr "Enviar relatório" + +msgctxt "@info:status" +msgid "Sending Print Job" +msgstr "Enviando Trabalho de Impressão" + +msgctxt "@info:title" +msgid "Sending materials to printer" +msgstr "Enviando material para a impressora" + +msgctxt "name" +msgid "Sentry Logger" +msgstr "Sentinela para Registro" + +msgctxt "@label Description for application dependency" +msgid "Serial communication library" +msgstr "Biblioteca de comunicação serial" + +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "Definir Como Extrusor Ativo" + +msgctxt "@title:column" +msgid "Setting" +msgstr "Ajustes" + +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "Visibilidade dos Ajustes" + +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "Ajustando preferências..." + +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "Configurando cena..." + +msgctxt "@action:label" +msgid "Setting visibility" +msgstr "Visibilidade dos ajustes" + +msgctxt "@label" +msgid "Settings" +msgstr "Ajustes" + +msgctxt "@title:tab" +msgid "Settings" +msgstr "Ajustes" + +msgctxt "@info:message Followed by a list of settings." +msgid "Settings have been changed to match the current availability of extruders:" +msgstr "Os ajustes foram alterados para seguir a disponibilidade de extrusores atuais:" + +msgctxt "@info:title" +msgid "Settings updated" +msgstr "Ajustes atualizados" + +msgctxt "@text" +msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community" +msgstr "Compartilhe ideias e consiga ajuda de mais de 48.000 usuários da Comunidade UltiMaker" + +msgctxt "@label" +msgid "Shell" +msgstr "Perímetro" + +msgctxt "@action:label" +msgid "Shell Thickness" +msgstr "Espessura de Perímetro" + +msgctxt "@info:tooltip" +msgid "Should Cura check for updates when the program is started?" +msgstr "O Cura deve verificar novas atualizações quando o programa for iniciado?" + +msgctxt "@info:tooltip" +msgid "Should Cura open at the location it was closed?" +msgstr "O Cura deve abrir no lugar onde foi fechado?" + +msgctxt "@info:tooltip" +msgid "Should a prefix based on the printer name be added to the print job name automatically?" +msgstr "Um prefixo baseado no nome da impressora deve ser adicionado ao nome do trabalho de impressão automaticamente?" + +msgctxt "@info:tooltip" +msgid "Should a summary be shown when saving a project file?" +msgstr "Um resumo deve ser exibido ao salvar um arquivo de projeto?" + +msgctxt "@info:tooltip" +msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!" +msgstr "Uma verificação automática por novos complementos deve ser feita toda vez que o Cura iniciar? É altamente recomendado que não desabilite esta opção!" + +msgctxt "@info:tooltip" +msgid "Should anonymous data about your print be sent to UltiMaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." +msgstr "Dados anônimos sobre sua impressão podem ser enviados para a UltiMaker? Nota: nenhuma informação pessoalmente identificável, modelos ou endereços IP são enviados ou armazenados." + +msgctxt "@info:tooltip" +msgid "Should layer be forced into compatibility mode?" +msgstr "A Visão de Camada deve ser forçada a ficar em modo de compatibilidade?" + +msgctxt "@info:tooltip" +msgid "Should models be scaled to the build volume if they are too large?" +msgstr "Os modelos devem ser redimensionados dentro do volume de impressão se forem muito grandes?" + +msgctxt "@info:tooltip" +msgid "Should models be selected after they are loaded?" +msgstr "Os modelos devem ser selecionados após serem carregados?" + +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved down to touch the build plate?" +msgstr "Os modelos devem ser movidos pra baixo pra se assentar na plataforma de impressão?" + +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved so that they no longer intersect?" +msgstr "Os modelos devem ser movidos na plataforma de modo que não se sobreponham?" + +msgctxt "@info:tooltip" +msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" +msgstr "Arquivos da área de trabalho ou de aplicações externas devem ser abertos na mesma instância do Cura?" + +msgctxt "@info:tooltip" +msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" +msgstr "A plataforma de construção deve ser esvaziada antes de carregar um modelo novo na instância única do Cura?" + +msgctxt "@info:tooltip" +msgid "Should the default zoom behavior of cura be inverted?" +msgstr "O comportamento default de ampliação deve ser invertido?" + +msgctxt "@info:tooltip" +msgid "Should zooming move in the direction of the mouse?" +msgstr "A ampliação (zoom) deve se mover na direção do mouse?" + +msgctxt "@label" +msgid "Show 5 Detailed Layers On Top" +msgstr "Exibir 5 Camadas Superiores Detalhadas" + +msgctxt "@action:inmenu menubar:help" +msgid "Show Configuration Folder" +msgstr "Exibir Pasta de Configuração" + +msgctxt "@button" +msgid "Show Custom" +msgstr "Mostrar Personalizado" + +msgctxt "@action:inmenu menubar:help" +msgid "Show Online &Documentation" +msgstr "Exibir &Documentação Online" + +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting" +msgstr "Mostrar Resolução de Problemas Online" + +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Exibir tudo" + +msgctxt "@label" +msgid "Show all connected printers" +msgstr "Mostrar todas as impressoras conectadas" + +msgctxt "@info:tooltip" +msgid "Show an icon and notifications in the system notification area." +msgstr "Mostrar um ícone e notificações na área de notificações do sistema." + +msgctxt "@info:tooltip" +msgid "Show caution message in g-code reader." +msgstr "Exibir mensagem de alerta no leitor de G-Code." + +msgctxt "@action:button" +msgid "Show configuration folder" +msgstr "Mostrar a pasta de configuração" + +msgctxt "@action:button" +msgid "Show detailed crash report" +msgstr "Exibir relatório de falha detalhado" + +msgctxt "@option:check" +msgid "Show summary dialog when saving project" +msgstr "Exibir diálogo de resumo ao salvar projeto" + +msgctxt "@tooltip:button" +msgid "Show your support for Cura with a donation." +msgstr "Mostre seu suporte ao Cura com uma doação." + +msgctxt "@button" +msgid "Sign Out" +msgstr "Deslogar" + +msgctxt "@action:button" +msgid "Sign in" +msgstr "Entrar" + +msgctxt "@button" +msgid "Sign in" +msgstr "Entrar" + +msgctxt "@title:header" +msgid "Sign in" +msgstr "Entrar" + +msgctxt "@info" +msgid "Sign in into UltiMaker Digital Factory" +msgstr "Fazer login na Ultimaker Digital Factory" + +msgctxt "@button" +msgid "Sign in to Digital Factory" +msgstr "Fazer login na Digital Factory" + +msgctxt "@label" +msgid "Sign in to the UltiMaker platform" +msgstr "Entre na plataforma UltiMaker" + +msgctxt "name" +msgid "Simulation View" +msgstr "Visão Simulada" + +msgctxt "@tooltip" +msgid "Skin" +msgstr "Contorno" + +msgctxt "@action:button" +msgid "Skip" +msgstr "Pular" + +msgctxt "@button" +msgid "Skip" +msgstr "Pular" + +msgctxt "@tooltip" +msgid "Skirt" +msgstr "Skirt (Saia)" + +msgctxt "@button" +msgid "Slice" +msgstr "Fatiar" + +msgctxt "@option:check" +msgid "Slice automatically" +msgstr "Fatiar automaticamente" + +msgctxt "@info:tooltip" +msgid "Slice automatically when changing settings." +msgstr "Fatiar automaticamente quando mudar ajustes." + +msgctxt "name" +msgid "Slice info" +msgstr "Informação de fatiamento" + +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "Fatiamento falhado" + +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "O fatiamento falhou com um erro não esperado. Por favor considere relatar um bug em nosso issue tracker." + +msgctxt "@label:PrintjobStatus" +msgid "Slicing..." +msgstr "Fatiando..." + +msgctxt "@action:label" +msgid "Smoothing" +msgstr "Suavização" + +msgctxt "name" +msgid "Solid View" +msgstr "Visão Sólida" + +msgctxt "@item:inmenu" +msgid "Solid view" +msgstr "Visão sólida" + +msgctxt "@label" +msgid "" +"Some hidden settings use values different from their normal calculated value.\n" +"\n" +"Click to make these settings visible." +msgstr "" +"Alguns ajustes ocultos usam valores diferentes de seu valor calculado normal.\n" +"\n" +"Clique para tornar estes ajustes visíveis." + +msgctxt "@info:status" +msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." +msgstr "Alguns dos pacotes usados no arquivo de projeto não estão atualmente instalados no Cura, isto pode produzir resultados de impressão não desejados. Recomendamos fortemente instalar todos os pacotes requeridos pelo MarketPlace." + +msgctxt "@info:title" +msgid "Some required packages are not installed" +msgstr "Alguns pacotes requeridos não estão instalados" + +msgctxt "@info %1 is the name of a profile" +msgid "Some setting-values defined in %1 were overridden." +msgstr "Alguns valores de ajustes definidos em %1 foram sobrepostos." + +msgctxt "@tooltip" +msgid "" +"Some setting/override values are different from the values stored in the profile.\n" +"\n" +"Click to open the profile manager." +msgstr "" +"Alguns ajustes/sobreposições têm valores diferentes dos que estão armazenados no perfil.\n" +"\n" +"Clique para abrir o gerenciador de perfis." + +msgctxt "@action:label" +msgid "Some settings from current profile were overwritten." +msgstr "Alguns ajustes do perfil atual foram sobrescritos." + +msgctxt "@message" +msgid "Something unexpected happened when trying to log in, please try again." +msgstr "Algo inesperado aconteceu ao tentar login, por favor tente novamente." + +msgctxt "@title:header" +msgid "Something went wrong when sending the materials to the printers." +msgstr "Algo de errado aconteceu ao enviar os materiais às impressoras." + +msgctxt "@label" +msgid "Something went wrong..." +msgstr "Alguma coisa deu errado..." + +msgctxt "@label:listbox" +msgid "Speed" +msgstr "Velocidade" + +msgctxt "@action:inmenu" +msgid "Sponsor Cura" +msgstr "Patrocinar o Cura" + +msgctxt "@label:button" +msgid "Sponsor Cura" +msgstr "Patrocinar o Cura" + +msgctxt "@option:radio" +msgid "Stable and Beta releases" +msgstr "Versões estáveis ou beta" + +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "Versões estáveis somente" + +msgctxt "@item:inlistbox" +msgid "Stanford Triangle Format" +msgstr "Formato de Triângulos de Stanford" + +msgctxt "@button" +msgid "Start" +msgstr "Iniciar" + +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "Iniciar Nivelamento da Mesa de Impressão" + +msgctxt "@title:label" +msgid "Start G-code" +msgstr "G-Code Inicial" + +msgctxt "@label" +msgid "Start the slicing process" +msgstr "Inicia o processo de fatiamento" + +msgctxt "@label" +msgid "Starts" +msgstr "Inícios" + +msgctxt "@text" +msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users." +msgstr "Simplifique seu fluxo de trabalho e personalize sua experiência do UltiMaker Cura com complementos contribuídos por nossa fantástica comunidade de usuários." + +msgctxt "@label" +msgid "Strength" +msgstr "Força" + +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Submete informações de fatiamento anônimas. Pode ser desabilitado nas preferências." + +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully exported material to %1" +msgstr "Material exportado para %1 com sucesso" + +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "Material %1 importado com sucesso" + +#, python-brace-format +msgctxt "@info:status" +msgid "Successfully imported profile {0}." +msgstr "Perfil {0} importado com sucesso." + +msgctxt "@action:title" +msgid "Summary - Cura Project" +msgstr "Resumo - Projeto do Cura" + +msgctxt "@label" +msgid "Support" +msgstr "Suporte" + +msgctxt "@tooltip" +msgid "Support" +msgstr "Suporte" + +msgctxt "@label" +msgid "Support Blocker" +msgstr "Bloqueador de Suporte" + +msgctxt "name" +msgid "Support Eraser" +msgstr "Apagador de Suporte" + +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "Preenchimento de Suporte" + +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "Interface de Suporte" + +msgctxt "@action:label" +msgid "Support Type" +msgstr "Tipo de Suporte" + +msgctxt "@label Description for application dependency" +msgid "Support library for faster math" +msgstr "Biblioteca de suporte para matemática acelerada" + +msgctxt "@label Description for application component" +msgid "Support library for file metadata and streaming" +msgstr "Biblioteca de suporte para streaming e metadados de arquivo" + +msgctxt "@label Description for application component" +msgid "Support library for handling 3MF files" +msgstr "Biblioteca de suporte para manuseamento de arquivos 3MF" + +msgctxt "@label Description for application dependency" +msgid "Support library for handling STL files" +msgstr "Biblioteca de suporte para manuseamento de arquivos STL" + +msgctxt "@label Description for application dependency" +msgid "Support library for handling triangular meshes" +msgstr "Biblioteca de suporte para manuseamento de malhas triangulares" + +msgctxt "@label Description for application dependency" +msgid "Support library for scientific computing" +msgstr "Biblioteca de suporte para computação científica" + +msgctxt "@label Description for application dependency" +msgid "Support library for system keyring access" +msgstr "Biblioteca de suporte para acesso ao chaveiro do sistema" + +msgctxt "@action:button" +msgid "Sync" +msgstr "Sincronizar" + +msgctxt "@button" +msgid "Sync" +msgstr "Sincronizar" + +msgctxt "@title:header" +msgid "Sync material profiles via USB" +msgstr "Sincronizar perfis de material via USB" + +msgctxt "@action:button" +msgid "Sync materials" +msgstr "Sincronizar materiais" + +msgctxt "@button" +msgid "Sync materials with USB" +msgstr "Sincronizar materiais usando USB" + +msgctxt "@title:header" +msgid "Sync materials with printers" +msgstr "Sincronizar materiais com impressoras" + +msgctxt "@title:window" +msgid "Sync materials with printers" +msgstr "Sincronizar materiais com impressoras" + +msgctxt "@action:button" +msgid "Sync with Printers" +msgstr "Sincronizar com Impressoras" + +msgctxt "@button" +msgid "Syncing" +msgstr "Sincronizando" + +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "Sincronizando..." + +msgctxt "@title:groupbox" +msgid "System information" +msgstr "Informação do Sistema" + +msgctxt "@button" +msgid "Technical datasheet" +msgstr "Ficha técnica" + +msgctxt "@info:tooltip" +msgid "The amount of smoothing to apply to the image." +msgstr "A quantidade de suavização para aplicar na imagem." + +msgctxt "@text" +msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance." +msgstr "O perfil de recozimento requer pós-processamento em um forno depois da impressão terminar. Este perfil retém a acuidade dimensional da parte impressão depois do recozimento e melhora a força, rigidez e resistência térmica." + +msgctxt "@label" +msgid "The assigned printer, %1, requires the following configuration change:" +msgid_plural "The assigned printer, %1, requires the following configuration changes:" +msgstr[0] "A impressora associada, %1, requer a seguinte alteração de configuração:" +msgstr[1] "A impressora associada, %1, requer as seguintes alterações de configuração:" + +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "O backup excede o tamanho máximo de arquivo." + +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "O perfil equilibrado é projetado para conseguir um equilíbrio entre produtividade, qualidade de superfície, propriedades mecânicas e acuidade dimensional." + +msgctxt "@info:tooltip" +msgid "The base height from the build plate in millimeters." +msgstr "A altura-base da mesa de impressão em milímetros." + +msgctxt "@info:status" +msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." +msgstr "A altura do volume de impressão foi reduzida para que o valor da \"Sequência de Impressão\" impeça o eixo de colidir com os modelos impressos." + +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "A conexão de nuvem está indisponível. Por favor verifique sua conexão de internet." + +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "A conexão de nuvem está indisponível. Por favor se logue para se conectar à impressora de nuvem." + +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "A impressora de nuvem está offline. Por favor verifique se a impressora está ligada e conectada à internet." + +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "A cor do material neste extrusor." + +msgctxt "@tooltip" +msgid "The configuration of this extruder is not allowed, and prohibits slicing." +msgstr "A configuração deste extrusor não é permitida e proíbe o fatiamento." + +msgctxt "@label" +msgid "The configurations are not available because the printer is disconnected." +msgstr "As configurações não estão disponíveis porque a impressora está desconectada." + +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "A temperatura atual da mesa aquecida." + +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "A temperatura atual deste hotend." + +msgctxt "@info:tooltip" +msgid "The depth in millimeters on the build plate" +msgstr "A profundidade da mesa de impressão em milímetros" + +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "O perfil de rascunho é projetado para imprimir protótipos iniciais e validações de conceito com o objetivo de redução significativa de tempo de impressão." + +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "O perfil de engenharia é projetado para imprimir protótipos funcionais e partes de uso final com o objetivo de melhor precisão e tolerâncias mais estritas." + +msgctxt "@label" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "O carro extrusor usado para imprimir o suporte. Isto é usado em multi-extrusão." + +#, python-brace-format +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "O arquivo {0} já existe. Tem certeza que quer sobrescrevê-lo?" + +msgctxt "@label" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "O firmware que já vêm embutido nas novas impressoras funciona, mas novas versões costumam ter mais recursos, correções e melhorias." + +msgctxt "@info:backup_failed" +msgid "The following error occurred while trying to restore a Cura backup:" +msgstr "O seguinte erro ocorreu ao tentar restaurar um backup do Cura:" + +msgctxt "@label" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "Os seguintes pacotes não podem ser instalados por incompatibilidade de versão do Cura:" + +msgctxt "@label" +msgid "The following packages will be added:" +msgstr "Os seguintes pacotes serão adicionados:" + +msgctxt "@label" +msgid "The following printers in your account have been added in Cura:" +msgstr "As seguintes impressoras da sua conta foram adicionadas ao Cura:" + +msgctxt "@title:header" +msgid "The following printers will receive the new material profiles:" +msgstr "Os seguintes materiais receberão novos perfis de material:" + +msgctxt "@info:tooltip" +msgid "The following script is active:" +msgid_plural "The following scripts are active:" +msgstr[0] "O seguinte script está ativo:" +msgstr[1] "Os seguintes scripts estão ativos:" + +msgctxt "@label" +msgid "The following settings define the strength of your part." +msgstr "Os seguintes ajustes definem a força de sua peça." + +msgctxt "@info:status" +msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." +msgstr "As áreas ressaltadas indicam superfícies faltantes ou incorretas. Conserte seu modelo e o abra novamente no Cura." + +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "O material neste extrusor." + +msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate" +msgid "The material package associated with the Cura project could not be found on the Ultimaker Marketplace. Use the partial material profile definition stored in the Cura project file at your own risk." +msgstr "O pacote de material associado com este projeto Cura não pôde ser encontrado no Ultimaker Marketplace. Use a definição parcial de perfil de material gravada no arquivo de projeto Cura por seu próprio risco." + +msgctxt "@info:tooltip" +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "A distância máxima de cada pixel da \"Base\"." + +msgctxt "@label (%1 is a number)" +msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" +msgstr "O novo diâmetro de filamento está ajustado em %1 mm, que não é compatível com o extrusor atual. Você deseja continuar?" + +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "O bico inserido neste extrusor." + +msgctxt "@label" +msgid "" +"The pattern of the infill material of the print:\n" +"\n" +"For quick prints of non functional model choose line, zig zag or lightning infill.\n" +"\n" +"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" +"\n" +"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "" +"O padrão do material de preenchimento da impressão:\n" +"\n" +"Para impressões rápidas de modelos não-funcionais escolha preenchimento de linha, ziguezague ou relâmpago.\n" +"\n" +"Para partes funcionais não sujeitas a muito stress, recomandos preenchimento de grade, triângulo ou tri-hexágono.\n" +"\n" +"Para impressões 3D funcionais que requeiram bastante força em múltiplas direções use cúbico, subdivisão cúbica, quarto cúbico, octeto e giroide." + +msgctxt "@info:tooltip" +msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." +msgstr "A porcentagem de luz penetrando uma impressão com espessura de 1 milímetro. Abaixar este valor aumenta o contraste em regiões escuras e diminui o contraste em regiões claras da imagem." + +msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate" +msgid "The plugin associated with the Cura project could not be found on the Ultimaker Marketplace. As the plugin may be required to slice the project it might not be possible to correctly slice the file." +msgstr "O complemento associado com o projeto Cura não foi encontrado no Ultimaker Marketplace. Como o complemento pode ser necessário para fatiar o projeto, pode não ser possível corretamente fatiar este arquivo." + +msgctxt "@info:title" +msgid "The print job was successfully submitted" +msgstr "O trabalho de impressão foi submetido com sucesso" + +msgctxt "@label" +msgid "The printer %1 is assigned, but the job contains an unknown material configuration." +msgstr "A impressora %1 está associada, mas o trabalho contém configuração de material desconhecida." + +msgctxt "@label" +msgid "The printer at this address has not responded yet." +msgstr "A impressora neste endereço ainda não respondeu." + +msgctxt "@label" +msgid "The printer at this address has not yet responded." +msgstr "A impressora neste endereço ainda não respondeu." + +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "A impressora não está conectada." + +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "As impressoras abaixo não podem ser conectadas por serem parte de um grupo" + +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "O estado provido não está correto." + +msgctxt "@text:window" +msgid "The release notes could not be opened." +msgstr "As notas de lançamento não puderam ser abertas." + +msgctxt "@text:error" +msgid "The response from Digital Factory appears to be corrupted." +msgstr "A resposta da Digital Factory parece estar corrompida." + +msgctxt "@text:error" +msgid "The response from Digital Factory is missing important information." +msgstr "A resposta da Digital Factory veio sem informações importantes." + +msgctxt "@tooltip" +msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." +msgstr "A temperatura-alvo da mesa aquecida. A mesa aquecerá ou resfriará para esta temperatura. Se for zero, o aquecimento é desligado." + +msgctxt "@tooltip" +msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." +msgstr "A temperatura-alvo do hotend. O hotend vai aquecer ou esfriar na direção desta temperatura. Se for zero, o aquecimento de hotend é desligado." + +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "A temperatura em que pré-aquecer a mesa." + +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "A temperatura com a qual pré-aquecer o hotend." + +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "O perfil visual é projetado para imprimir protótipos e modelos virtuais com o objetivo de alta qualidade visual e de superfície." + +msgctxt "@info:tooltip" +msgid "The width in millimeters on the build plate" +msgstr "A largura em milímetros na plataforma de impressão" + +msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed." +msgid "Theme*:" +msgstr "Tema*:" + +msgctxt "@info:status" +msgid "There are no file formats available to write with!" +msgstr "Não há formatos de arquivo disponíveis com os quais escrever!" + +msgctxt "@label" +msgid "There are no print jobs in the queue. Slice and send a job to add one." +msgstr "Não há trabalhos de impressão na fila. Fatie e envie um trabalho para adicioná-lo." + +msgctxt "@tooltip" +msgid "There are no profiles matching the configuration of this extruder." +msgstr "Não há perfis correspondendo à configuração deste extrusor." + +msgctxt "@info:status" +msgid "There is no active printer yet." +msgstr "Não há impressora ativa ainda." + +msgctxt "@label" +msgid "There is no printer found over your network." +msgstr "Não foi encontrada nenhuma impressora em sua rede." + +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "Não existe espaço de trabalho ainda para a escrita. Por favor adicione uma impressora primeiro." + +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "Houve um erro ao tentar restaurar seu backup." + +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "Houve um erro ao criar seu backup." + +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "Houve um erro ao transferir seu backup." + +msgctxt "@label" +msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." +msgstr "Esta configuração não está disponível porque %1 não foi reconhecido. Por favor visite %2 para baixar o perfil de materil correto." + +msgctxt "@text:window" +msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" +msgstr "Este é um arquivo de projeto do Cura. Gostaria de abri-lo como um projeto ou importar os modelos dele?" + +msgctxt "@label" +msgid "This material is linked to %1 and shares some of its properties." +msgstr "Este material está vinculado a %1 e compartilha algumas de suas propriedades." + +msgctxt "@label" +msgid "This package will be installed after restarting." +msgstr "Este pacote será instalado após o reinício." + +msgctxt "@label" +msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." +msgstr "Esta impressora não pode ser adicionada porque é uma impressora desconhecida ou porque não é o host do grupo." + +msgctxt "info:status" +msgid "This printer is not linked to the Digital Factory:" +msgid_plural "These printers are not linked to the Digital Factory:" +msgstr[0] "Esta impressora não está ligada à Digital Factory:" +msgstr[1] "Estas impressoras não estão ligadas à Digital Factory:" + +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "Esta impressora não está vinculada à sua conta. Por favor visite a Ultimaker Digital Factory para estabelecer uma conexão." + +msgctxt "@label" +msgid "This printer is not set up to host a group of printers." +msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras." + +msgctxt "@label" +msgid "This printer is the host for a group of %1 printers." +msgstr "Esta impressora é a hospedeira de um grupo de %1 impressoras." + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags !" +msgid "This profile {0} contains incorrect data, could not import it." +msgstr "Este perfil {0} contém dados incorretos, não foi possível importá-lo." + +msgctxt "@action:label" +msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." +msgstr "Este perfil usa os defaults especificados pela impressora, portanto não tem ajustes/sobreposições na lista abaixo." + +msgctxt "@label" +msgid "This project contains materials or plugins that are currently not installed in Cura.
    Install the missing packages and reopen the project." +msgstr "Este projeto contém materiais ou complementos que não estão atualmente instalados no Cura.
    Instale os pacotes faltantes e abra novamente o projeto." + +msgctxt "@label" +msgid "" +"This setting has a value that is different from the profile.\n" +"\n" +"Click to restore the value of the profile." +msgstr "" +"Este ajuste tem um valor que é diferente do perfil.\n" +"\n" +"Clique para restaurar o valor do perfil." + +msgctxt "@item:tooltip" +msgid "This setting has been hidden by the active machine and will not be visible." +msgstr "Este ajuste foi omitido para a máquina ativa e não ficará visível." + +msgctxt "@item:tooltip %1 is list of setting names" +msgid "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible." +msgid_plural "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible." +msgstr[0] "Este ajuste foi mantido invisível pelo valor de %1. Altere o valor desse ajuste para tornar este ajuste visível." +msgstr[1] "Este ajuste foi mantido invisível pelos valores de %1. Altere o valor desses ajustes para tornar este ajuste visível." + +msgctxt "@label" +msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." +msgstr "Este ajuste é sempre compartilhado entre todos os extrusores. Modificá-lo aqui mudará o valor para todos." + +msgctxt "@label" +msgid "" +"This setting is normally calculated, but it currently has an absolute value set.\n" +"\n" +"Click to restore the calculated value." +msgstr "" +"Este ajuste é normalmente calculado, mas atualmente tem um conjunto absoluto de valores.\n" +"\n" +"Clique para restaurar o valor calculado." + +msgctxt "@label" +msgid "This setting is not used because all the settings that it influences are overridden." +msgstr "Este ajuste não é usado porque todos os ajustes que ele influencia estão sobrepostos." + +msgctxt "@label" +msgid "This setting is resolved from conflicting extruder-specific values:" +msgstr "Este ajuste é resolvido dos valores conflitante específicos de extrusor:" + +msgctxt "@info:warning" +msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" +msgstr "Esta versão não é pretendida para uso em produção. Se você encontrar quaisquer problemas, por favor relate-os na nossa página de GitHub, mencionando a versão completa {self.getVersion()}" + +msgctxt "@label" +msgid "Time estimation" +msgstr "Estimativa de tempo" + +msgctxt "@message" +msgid "Timeout when authenticating with the account server." +msgstr "Tempo esgotado ao autenticar com o servidor da conta." + +msgctxt "@text" +msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." +msgstr "Para automaticamente sincronizar os perfis de material com todas as suas impressoras conectadas à Digital Factory, você precisa estar logado pelo Cura." + +#, python-brace-format +msgctxt "info:status" +msgid "To establish a connection, please visit the {website_link}" +msgstr "Para estabelecer uma conexão, por favor visite o {website_link}" + +msgctxt "@label" +msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." +msgstr "Para garantir que suas impressões saiam ótimas, você deve agora ajustar sua mesa de impressão. Quando você clicar em 'Mover para a Posição Seguinte', o bico se moverá para posições diferentes que podem ser ajustadas." + +msgctxt "@label" +msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." +msgstr "Para imprimir diretamente na sua impressora pela rede, certifique-se que ela esteja conectada à rede usando um cabo de rede ou conectando sua impressora à sua WIFI. Se você não conectar Cura à sua impressora, você ainda pode usar um drive USB ou SDCard para transferir arquivos G-Code a ela." + +#, python-brace-format +msgctxt "@message {printer_name} is replaced with the name of the printer" +msgid "To remove {printer_name} permanently, visit {digital_factory_link}" +msgstr "Para remover {printer_name} permanentemente, visite {digital_factory_link}" + +msgctxt "@action:inmenu" +msgid "Toggle Full Screen" +msgstr "Alternar Tela Cheia" + +msgctxt "@label" +msgid "Top / Bottom" +msgstr "Topo / Base" + +msgctxt "@action:inmenu menubar:view" +msgid "Top View" +msgstr "Visão Superior" + +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "Visão de Cima" + +msgctxt "@label" +msgid "Total print time" +msgstr "Tempo total de impressão" + +msgctxt "@action:tooltip" +msgid "Track the print in Ultimaker Digital Factory" +msgstr "Rastrear a impressão na Ultimaker Digital Factory" + +msgctxt "@item:inlistbox" +msgid "Translucency" +msgstr "Translucidez" + +msgctxt "@tooltip" +msgid "Travel" +msgstr "Percurso" + +msgctxt "@label" +msgid "Travels" +msgstr "Percursos" + +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup that is higher than the current version." +msgstr "Tentativa de restauração de backup do Cura de versão maior que a atual." + +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup without having proper data or meta data." +msgstr "Tentativa de restauração de backup do Cura sem dados ou metadados apropriados." + +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Leitor Trimesh" + +msgctxt "@button" +msgid "Troubleshooting" +msgstr "Resolução de problemas" + +msgctxt "@label" +msgid "Troubleshooting" +msgstr "Resolução de problemas" + +msgctxt "@button" +msgid "Try again" +msgstr "Tentar novamente" + +msgctxt "@action:label" +msgid "Type" +msgstr "Tipo" + +msgctxt "@label" +msgid "Type" +msgstr "Tipo" + +msgctxt "name" +msgid "UFP Reader" +msgstr "Leitor UFP" + +msgctxt "name" +msgid "UFP Writer" +msgstr "Gerador de UFP" + +msgctxt "@item:inmenu" +msgid "USB printing" +msgstr "Impressão USB" + +msgctxt "name" +msgid "USB printing" +msgstr "Impressão USB" + +msgctxt "@button" +msgid "UltiMaker Account" +msgstr "Conta na UltiMaker" + +msgctxt "@info" +msgid "UltiMaker Certified Material" +msgstr "Material Certificado UltiMaker" + +msgctxt "@text:window" +msgid "UltiMaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" +msgstr "O UltiMaker Cura coleta dados anônimos para poder aprimorar a qualidade de impressão e experiência do usuário. Abaixo segue um exemplo de todos os dados que são compartilhados:" + +msgctxt "@item:inlistbox" +msgid "UltiMaker Format Package" +msgstr "Pacote de Formato da UltiMaker" + +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "Conexão de Rede UltiMaker" + +msgctxt "@info" +msgid "UltiMaker Verified Package" +msgstr "Pacote Verificado UltiMaker" + +msgctxt "@info" +msgid "UltiMaker Verified Plug-in" +msgstr "Complemento Verificado UltiMaker" + +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Ações de máquina UltiMaker" + +msgctxt "@button" +msgid "UltiMaker printer" +msgstr "Impressora UltiMaker" + +msgctxt "@label:button" +msgid "UltiMaker support" +msgstr "Suporte UltiMaker" + +msgctxt "info:name" +msgid "Ultimaker Digital Factory" +msgstr "Ultimaker Digital Factory" + +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Digital Library da UltiMaker" + +msgctxt "@info:status" +msgid "Unable to add the profile." +msgstr "Não foi possível adicionar o perfil." + +msgctxt "@info:status" +msgid "Unable to find a location within the build volume for all objects" +msgstr "Não foi possível achar um lugar dentro do volume de construção para todos os objetos" + +#, python-brace-format +msgctxt "@info:plugin_failed" +msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" +msgstr "Não foi possível encontrar o executável do servidor local de EnginePlugin para: {self._plugin_id}" + +#, python-brace-format +msgctxt "@info:plugin_failed" +msgid "" +"Unable to kill running EnginePlugin: {self._plugin_id}\n" +"Access is denied." +msgstr "" +"Não foi possível matar o processo EnginePlugin: {self._plugin_id}\n" +"Acesso negado." + +msgctxt "@info" +msgid "Unable to reach the UltiMaker account server." +msgstr "Não foi possível contactar o servidor de contas da UltiMaker." + +msgctxt "@text" +msgid "Unable to read example data file." +msgstr "Não foi possível ler o arquivo de dados de exemplo." + +msgctxt "@info:title" +msgid "Unable to slice" +msgstr "Não foi possível fatiar" + +msgctxt "@label:PrintjobStatus" +msgid "Unable to slice" +msgstr "Não foi possível fatiar" + +msgctxt "@info:status" +msgid "Unable to slice because the prime tower or prime position(s) are invalid." +msgstr "Não foi possível fatiar porque a torre de purga ou posição de purga são inválidas." + +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "Não foi possível fatiar porque há objetos associados com o Extrusor desabilitado %s." + +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" +msgstr "Não foi possível fatiar devido a alguns ajustes por modelo. Os seguintes ajustes têm erros em um dos modelos ou mais: {error_labels}" + +msgctxt "@info:status" +msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." +msgstr "Não foi possível fatiar com o material atual visto que é incompatível com a máquina ou configuração selecionada." + +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice with the current settings. The following settings have errors: {0}" +msgstr "Não foi possível fatiar com os ajustes atuais. Os seguintes ajustes têm erros: {0}" + +msgctxt "@info" +msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." +msgstr "Não foi possível iniciar processo de login. Verifique se outra tentativa de login ainda está ativa." + +msgctxt "@label:status" +msgid "Unavailable" +msgstr "Indisponível" + +msgctxt "@label" +msgid "Unavailable printer" +msgstr "Impressora indisponível" + +msgctxt "@action:inmenu menubar:edit" +msgid "Ungroup Models" +msgstr "Desagrupar Modelos" + +msgctxt "@button" +msgid "Uninstall" +msgstr "Desinstalar" + +msgctxt "@title:column Unit of measurement" +msgid "Unit" +msgstr "Unidade" + +msgctxt "@label Description for development tool" +msgid "Universal build system configuration" +msgstr "Configuração de sistema universal de construção" + +msgctxt "@label" +msgid "Unknown" +msgstr "Desconhecido" + +msgctxt "@label unknown version of Cura" +msgid "Unknown" +msgstr "Desconhecida" + +msgctxt "@label:property" +msgid "Unknown Author" +msgstr "Autor Desconhecido" + +msgctxt "@label:property" +msgid "Unknown Package" +msgstr "Pacote Desconhecido" + +#, python-brace-format +msgctxt "@error:send" +msgid "Unknown error code when uploading print job: {0}" +msgstr "Código de erro desconhecido ao transferir trabalho de impressão: {0}" + +msgctxt "@text" +msgid "Unknown error." +msgstr "Erro desconhecido." + +msgctxt "@label" +msgid "Unlink Material" +msgstr "Desvincular Material" + +msgctxt "@label:status" +msgid "Unreachable" +msgstr "Inacessivel" + +msgctxt "@label" +msgid "Untitled" +msgstr "Sem Título" + +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "Sem Título" + +msgctxt "@button" +msgid "Update" +msgstr "Atualizar" + +msgctxt "@action" +msgid "Update Firmware" +msgstr "Atualizar Firmware" + +msgctxt "@title" +msgid "Update Firmware" +msgstr "Atualizar Firmware" + +msgctxt "@action:ComboBox Update/override existing profile" +msgid "Update existing" +msgstr "Atualizar existentes" + +msgctxt "@action:tooltip" +msgid "Update profile with current settings/overrides" +msgstr "Atualizar perfil com ajustes/sobreposições atuais" + +msgctxt "@action:button" +msgid "Update profile." +msgstr "Atualizar perfil." + +msgctxt "@info:title" +msgid "Update your printer" +msgstr "Atualize sua impressora" + +msgctxt "@label" +msgid "Updates" +msgstr "Atualizações" + +msgctxt "@label" +msgid "Updating firmware." +msgstr "Atualizando firmware." + +msgctxt "@button" +msgid "Updating..." +msgstr "Atualizando..." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Atualiza configurações do Cura 2.1 para o Cura 2.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Atualiza configurações do Cura 2.2 para o Cura 2.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Atualiza configurações do Cura 2.5 para o Cura 2.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Atualiza configurações do Cura 2.6 para o Cura 2.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Atualiza configuração do Cura 2.7 para o Cura 3.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Atualiza configurações do Cura 3.0 para o Cura 3.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Atualiza configurações do Cura 3.2 para o Cura 3.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Atualiza configuração do Cura 3.3 para o Cura 3.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Atualiza configurações do Cura 3.4 para o Cura 3.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Atualiza configuração do Cura 3.5 para o Cura 4.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Atualiza configurações do Cura 4.0 para o Cura 4.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Atualiza configurações do Cura 4.1 para o Cura 4.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Atualiza configurações do Cura 4.11 para o Cura 4.12." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Atualiza configurações do Cura 4.13 para o Cura 5.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Atualiza configurações do Cura 4.2 para o Cura 4.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Atualiza configurações do Cura 4.3 para o Cura 4.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Atualiza configurações do Cura 4.4 para o Cura 4.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Atualiza configurações do Cura 4.5 para o Cura 4.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Atualiza configurações do Cura 4.6.0 para o Cura 4.6.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Atualiza configurações do Cura 4.6.2 para o Cura 4.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Atualiza configurações do Cura 4.7 para o Cura 4.8." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Atualiza configurações do Cura 4.8 para o Cura 4.9." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Atualiza configurações do Cura 4.9 para o Cura 4.10." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Atualiza configurações do Cura 5.2 para o Cura 5.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Atualiza configurações do Cura 5.3 para o Cura 5.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Atualiza configurações do Cura 5.4 para o Cura 5.5." + +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Carregar Firmware personalizado" + +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "Transferindo trabalho de impressão para a impressora." + +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "Enviando seu backup..." + +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "Usar uma única instância do Cura" + +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "Use cola para melhor aderência com essa combinação de materiais." + +msgctxt "@label" +msgid "User Agreement" +msgstr "Contrato de Usuário" + +msgctxt "@label Description for application dependency" +msgid "Utility functions, including an image loader" +msgstr "Funções de utilidade, incluindo um carregador de imagem" + +msgctxt "@label Description for application dependency" +msgid "Utility library, including Voronoi generation" +msgstr "Biblioteca de utilidade, incluindo geração Voronoi" + +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Atualização de Versão de 2.1 para 2.2" + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Atualização de Versão de 2.2 para 2.4" + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Atualização de Versão de 2.5 para 2.6" + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Atualização de Versão de 2.6 para 2.7" + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Atualização de Versão de 2.7 para 3.0" + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Atualização de Versão 3.0 para 3.1" + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Atualização de Versão de 3.2 para 3.3" + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Atualização de Versão de 3.3 para 3.4" + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Atualização de Versão de 3.4 para 3.5" + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Atualização de Versão de 3.5 para 4.0" + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Atualização de Versão de 4.0 para 4.1" + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Atualização de Versão de 4.1 para 4.2" + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Atualização de Versão de 4.11 para 4.12" + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Atualização de Versão de 4.13 para 5.0" + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Atualização de Versão de 4.2 para 4.3" + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Atualização de Versão de 4.3 para 4.4" + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Atualização de Versão de 4.4 para 4.5" + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Atualização de Versão de 4.5 para 4.6" + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Atualização de Versão de 4.6.0 para 4.6.2" + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Atualização de Versão de 4.6.2 para 4.7" + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Atualização de Versão de 4.7 para 4.8" + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Atualização de Versão de 4.8 para 4.9" + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Atualização de Versão de 4.9 para 4.10" + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Atualização de Versão de 5.2 para 5.3" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "Atualização de Versão de 5.3 para 5.4" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "Atualização de Versão de 5.4 para 5.5" + +msgctxt "@button" +msgid "View printers in Digital Factory" +msgstr "Ver impressoras na Digital Factory" + +msgctxt "@label" +msgid "View type" +msgstr "Tipo de Visão" + +msgctxt "@label link to technical assistance" +msgid "View user manuals online" +msgstr "Ver manuais de usuário online" + +msgctxt "@label" +msgid "Viewport behavior" +msgstr "Comportamento da área de visualização" + +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "Ajustes Visíveis" + +msgctxt "@button" +msgid "Visit plug-in website" +msgstr "Visitar sítio web de complementos" + +msgctxt "@tooltip:button" +msgid "Visit the UltiMaker website." +msgstr "Visita o website da UltiMaker." + +msgctxt "@label" +msgid "Visual" +msgstr "Visual" + +msgctxt "@label" +msgid "Waiting for" +msgstr "Esperando por" + +msgctxt "@label" +msgid "Waiting for Cloud response" +msgstr "Aguardando resposta da Nuvem" + +msgctxt "@button" +msgid "Waiting for new printers" +msgstr "Esperando por novas impressoras" + +msgctxt "@button" +msgid "Want more?" +msgstr "Quer mais?" + +msgctxt "@info:title" +msgid "Warning" +msgstr "Aviso" + +#, python-brace-format +msgctxt "@info:status" +msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." +msgstr "Alerta: o perfil não está visível porque seu tipo de qualidade '{0}' não está disponível para a configuração atual. Altere para uma combinação de material/bico que possa usar este tipo de qualidade." + +msgctxt "@text:window" +msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." +msgstr "Encontramos um ou mais arquivos de G-Code entre os arquivos que você selecionou. Você só pode abrir um arquivo de G-Code por vez. Se você quiser abrir um arquivo de G-Code, por favor selecione somente um." + +msgctxt "@text:window" +msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" +msgstr "Encontramos um ou mais arquivo(s) de projeto entre os arquivos que você selecionou. Você só pode abrir um arquivo de projeto por vez. Sugerimos que somente importe modelos destes arquivos. Gostaria de prosseguir?" + +msgctxt "@info" +msgid "Webcam feeds for cloud printers cannot be viewed from UltiMaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam." +msgstr "Fontes de webcam para impressoras de nuvem não podem ser vistas pelo UltiMaker Cura. Clique em \"Gerenciar impressora\" para visitar a Ultimaker Digital Factory e visualizar esta webcam." + +msgctxt "@button" +msgid "Website" +msgstr "Sítio web" + +msgctxt "@label" +msgid "What printer would you like to setup?" +msgstr "Que impressora você gostaria de configurar?" + +msgctxt "@info:tooltip" +msgid "What type of camera rendering should be used?" +msgstr "Que tipo de renderização de câmera deve ser usada?" + +msgctxt "@action:inmenu menubar:help" +msgid "What's New" +msgstr "Novidades" + +msgctxt "@label" +msgid "What's New" +msgstr "O Que Há de Novo" + +msgctxt "@title:window" +msgid "What's New" +msgstr "Novidades" + +msgctxt "@info:tooltip" +msgid "When checking for updates, check for both stable and for beta releases." +msgstr "Ao procurar por atualizações, fazer para versões estáveis ou beta." + +msgctxt "@info:tooltip" +msgid "When checking for updates, only check for stable releases." +msgstr "Ao procurar por atualizações, somente o fazer para versões estáveis." + +msgctxt "@info:tooltip" +msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." +msgstr "Quando você faz alterações em um perfil e troca para um diferent, um diálogo aparecerá perguntando se você quer manter ou aplicar suas modificações, ou você pode forçar um comportamento default e não ter o diálogo." + +msgctxt "@button" +msgid "Why do I need to sync material profiles?" +msgstr "Por que eu preciso sincronizar perfis de material?" + +msgctxt "@action:label" +msgid "Width (mm)" +msgstr "Largura (mm)" + +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Escreve em formato G-Code comprimido." + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Escreve em formato G-Code." + +msgctxt "@label" +msgid "X (Width)" +msgstr "X (largura)" + +msgctxt "@label" +msgid "X max" +msgstr "X máx" + +msgctxt "@label" +msgid "X min" +msgstr "X mín" + +msgctxt "name" +msgid "X-Ray View" +msgstr "Visão de Raios-X" + +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "Visão de Raios-X" + +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "Arquivo X3D" + +msgctxt "name" +msgid "X3D Reader" +msgstr "Leitor de X3D" + +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (Profundidade)" + +msgctxt "@label" +msgid "Y max" +msgstr "Y máx" + +msgctxt "@label" +msgid "Y min" +msgstr "Y mín" + +msgctxt "@info" +msgid "Yes" +msgstr "Sim" + +msgctxt "@label" +msgid "" +"You are about to remove all printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr "" +"Você está prestes a remover todas as impressoras do Cura. Esta ação não pode ser desfeita.\n" +"Tem certeza que quer continuar?" + +#, python-brace-format +msgctxt "@label" +msgid "" +"You are about to remove {0} printer from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgid_plural "" +"You are about to remove {0} printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr[0] "" +"Você está prestes a remover {0} impressora do Cura. Esta ação não pode ser desfeita.\n" +"Tem certeza que quer continuar?" +msgstr[1] "" +"Você está prestes a remover {0} impressoras do Cura. Esta ação não pode ser desfeita.\n" +"Tem certeza que quer continuar?" + +msgctxt "@info:status" +msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." +msgstr "Você está tentando conectar a uma impressora que não está rodando UltiMaker Connect. Por favor atualize a impressora para o firmware mais recente." + +#, python-brace-format +msgctxt "@info:status" +msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." +msgstr "Você está tentando conectar a {0} mas ele não é host de um grupo. Você pode visitar a página web para configurá-lo como host de grupo." + +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "Você não tem nenhum backup atualmente. Use o botão 'Backup Agora' para criar um." + +msgctxt "@text:window, %1 is a profile name" +msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." +msgstr "Você personalizou alguns ajustes de perfil. Gostaria de manter estes ajustes alterados após trocar perfis? Alternativamente, você pode descartar as alterações para carregar os defaults de '%1'." + +msgctxt "@label" +msgid "You need to accept the license to install the package" +msgstr "Você precisa aceitar a licença para que o pacote possa ser instalado" + +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "Você precisa sair e reiniciar {} para que as alterações tenham efeito." + +msgctxt "@dialog:info" +msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" +msgstr "Você precisará reiniciar o Cura antes que seu backup seja restaurado. Deseja fechar o Cura agora?" + +msgctxt "@info:status" +msgid "You will receive a confirmation via email when the print job is approved" +msgstr "Você receberá uma confirmação por email quando o trabalho de impressão for aprovado" + +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "Seu backup terminou de ser enviado." + +msgctxt "@action:label" +msgid "Your current settings match the selected profile." +msgstr "Seus ajustes atuais coincidem com o perfil selecionado." + +msgctxt "@info" +msgid "Your new printer will automatically appear in Cura" +msgstr "Sua nova impressora vai automaticamente aparecer no Cura" + +#, python-brace-format +msgctxt "@info:status" +msgid "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "" +"Sua impressora {printer_name} poderia estar conectada via nuvem.\n" +" Gerencie sua fila de impressão e monitore suas impressoras de qualquer lugar conectando sua impressora à Digital Factory" + +msgctxt "@label" +msgid "Z" +msgstr "Z" + +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (Altura)" + +msgctxt "@label Description for application dependency" +msgid "ZeroConf discovery library" +msgstr "Biblioteca de descoberta 'ZeroConf'" + +msgctxt "@action:button" +msgid "Zoom toward mouse direction" +msgstr "Ampliar na direção do mouse" + +msgctxt "@info:tooltip" +msgid "Zooming towards the mouse is not supported in the orthographic perspective." +msgstr "Ampliar com o mouse não é suportado na perspectiva ortográfica." + +msgctxt "@text Placeholder for the username if it has been deleted" +msgid "deleted user" +msgstr "usuário removido" + +msgctxt "@item:inlistbox" +msgid "glTF Binary" +msgstr "Binário glTF" + +msgctxt "@item:inlistbox" +msgid "glTF Embedded JSON" +msgstr "glTF Embutido JSON" + +msgctxt "@label" +msgid "max" +msgstr "máx" + +msgctxt "@label" +msgid "min" +msgstr "mín" + +msgctxt "@label" +msgid "mm" +msgstr "mm" + +msgctxt "@info:status" +msgid "today" +msgstr "hoje" + +msgctxt "@info:status" +msgid "tomorrow" +msgstr "amanhã" + +msgctxt "@label" +msgid "version: %1" +msgstr "versão: %1" + +#, python-brace-format +msgctxt "@message {printer_name} is replaced with the name of the printer" +msgid "{printer_name} will be removed until the next account sync." +msgstr "{printer_name} será removida até a próxima sincronização de conta." + +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "{} complementos falharam em baixar" + +#, python-brace-format +#~ msgctxt "info:{0} gets replaced by a number of printers" +#~ msgid "... and {0} other" +#~ msgid_plural "... and {0} others" +#~ msgstr[0] "... e {0} outra" +#~ msgstr[1] "... e {0} outras" + +#~ msgctxt "@tooltip:button" +#~ msgid "Become a 3D printing expert with UltiMaker e-learning." +#~ msgstr "Torne-se um especialista em impressão 3D com UltiMaker e-learning." + +#~ msgctxt "@info:status" +#~ msgid "Cura does not accurately display layers when Wire Printing is enabled." +#~ msgstr "O Cura não exibe camadas de forma precisa quando Impressão em Arame está habilitada." + +#~ msgctxt "@label" +#~ msgid "Default" +#~ msgstr "Default" + +#~ msgctxt "@label" +#~ msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." +#~ msgstr "Habilita imprimir um brim (bainha) ou raft (jangada). Adicionará uma área chata em volta ou sob o objeto que é fácil de remover após a impressão ter finalizado." + +#~ msgctxt "@error:zip" +#~ msgid "Error writing 3mf file." +#~ msgstr "Erro ao escrever arquivo 3mf." + +#~ msgctxt "@label" +#~ msgid "Hex" +#~ msgstr "Hexa" + +#~ msgctxt "@action:button" +#~ msgid "Install Materials" +#~ msgstr "Instalar Materiais" + +#~ msgctxt "@title" +#~ msgid "Install missing Materials" +#~ msgstr "Instalar Materiais faltantes" + +#~ msgctxt "@action:button" +#~ msgid "Install missing material" +#~ msgstr "Instalar material faltante" + +#~ msgctxt "@info:title" +#~ msgid "Material profiles not installed" +#~ msgstr "Perfis de material não instalados" + +#~ msgctxt "@info:title" +#~ msgid "Simulation View" +#~ msgstr "Visão Simulada" + +#~ msgctxt "@label" +#~ msgid "The material used in this project is currently not installed in Cura.
    Install the material profile and reopen the project." +#~ msgstr "O material usado neste projeto não está instalado atualmente no Cura.
    Instale o perfil de material e reabra o projeto." + +#~ msgctxt "@info:status" +#~ msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." +#~ msgstr "O material usado neste projeto depende de algumas definições de material não disponíveis no Cura e isto pode produzir resultados de impressão indesejáveis. Recomendamos altamente instalar o pacote completo de material do Marketplace." + +#~ msgctxt "@error:zip" +#~ msgid "The operating system does not allow saving a project file to this location or with this file name." +#~ msgstr "O sistema operacional não permite salvar um arquivo de projeto nesta localização ou com este nome de arquivo." diff --git a/resources/i18n/pt_BR/fdmprinter.def.json.po b/resources/i18n/pt_BR/fdmprinter.def.json.po index aeccec191c0..85d6ed8a08f 100644 --- a/resources/i18n/pt_BR/fdmprinter.def.json.po +++ b/resources/i18n/pt_BR/fdmprinter.def.json.po @@ -1,6865 +1,6865 @@ # Cura # Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. -# -msgid "" -msgstr "" -"Project-Id-Version: Cura 5.0\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-15 12:26+0000\n" -"PO-Revision-Date: 2023-11-22 17:17+0100\n" -"Last-Translator: Cláudio Sampaio \n" -"Language-Team: Cláudio Sampaio \n" -"Language: pt_BR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.4.1\n" - -msgctxt "ironing_inset description" -msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." -msgstr "A distância a manter das arestas do modelo. Passar a ferro as arestas da malha podem resultar em um aspecto entalhado da sua peça." - -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "Um fator indicando em quanto o filamento é comprimido entre o alimentador do hotend e o bico, usado para determinar em quanto mover o material na troca de filamento." - -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Uma lista de direções inteiras de filete a usar quando as camadas superiores usam o padrão de linhas ou ziguezague. Elementos desta lista são usados sequencialmente de acordo com o progresso das camadas e quando se chega ao fim da lista, se volta ao começo. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia que significa o uso dos ângulos default (45 e 135 graus)." - -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Uma lista de direções de linha inteiras para usar quando as camadas superiores e inferiores usarem os padrões de linha ou ziguezague. Elementos desta lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela inicia novamente. Os itens da lista são separados por vírgulas e a lita inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (45 e 135 graus)." - -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar o ângulo default de 0 graus." - -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (alternando entre 45 e 135 graus se as interfaces forem grossas, ou 90 se não)." - -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (alternando entre 45 e 135 graus se as interfaces forem grossas, ou 90 se não)." - -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (alternando entre 45 e 135 graus se as interfaces forem grossas, ou 90 se não)." - -msgctxt "infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." -msgstr "Uma lista de direções de filetes em números inteiros a usar. Elementos da lista são usados sequencialmente de acordo com o progresso das camadas e quando o fim da lista é alcançado, ela volta ao começo. Os itens da lista são separados por vírgula e a lista inteira é contida em colchetes. O default é uma lista vazia que implica em usar os ângulos default tradicionais (45 e 135 graus para os padrões linha e ziguezague e 45 graus para todos os outros padrões)." - -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "Uma lista de polígonos com áreas em que o bico é proibido de entrar." - -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "Uma lista de polígonos com áreas em que a cabeça de impressão é proibida de entrar." - -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "Uma peça completamente contida em outra peça pode gerar um brim externo que toca o interior da outra parte. Este ajuste remove todo o brim dentro desta distância dos buracos internos." - -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "Uma recomendação de quão distante galhos podem se mover dos pontos que eles suportam. Os galhos podem violar este valor para alcançar seu destino (plataforma de impressão ou parte chata do modelo). Abaixar este valor pode fazer o suporte ficar mais estável, mas aumentará o número de galhos (e por causa disso, ambos o uso de material e o tempo de impressão) " - -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Posição Absoluta de Purga do Extrusor" - -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Máximo Variação das Camadas Adaptativas" - -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Tamanho da Topografia de Camadas Adaptativas" - -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Tamanho de Passo da Variação das Camadas Adaptativas" - -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "Camadas adaptativas fazem a computação das alturas de camada depender da forma do modelo." - -msgctxt "infill_wall_line_count description" -msgid "" -"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" -"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "" -"Adiciona paredes extras em torno da área de preenchimento. Tais paredes podem fazer filetes de contorno de topo e base afundarem menos, o que significa que você precisará de menos camadas de contorno de topo e base para a mesma qualidade, à custa de algum material extra.\n" -"Este recurso pode combinar com o Conectar Polígonos de Preenchimento para conectar todo o preenchimento em um único caminho de extrusão sem a necessidade de percursos ou retrações se os ajustes forem consistentes." - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Aderência" - -msgctxt "material_adhesion_tendency label" -msgid "Adhesion Tendency" -msgstr "Tendência à Aderência" - -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Ajusta a quantidade de sobreposição entre as paredes e (os extremos de) linhas centrais do contorno, como uma porcentagem das larguras de filete de contorno e a parede mais interna. Uma sobreposição leve permite que as paredes se conectem firmemente ao contorno. Note que, dadas uma largura de contorno e filete de parede iguais, qualquer porcentagem acima de 50% pode fazer com que algum contorno ultrapasse a parede, pois a este ponto a posição do bico do extrusor de contorno pode já ter passado do meio da parede." - -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Ajusta a quantidade de sobreposição entre as paredes e (os extermos de) linhas centrais do contorno. Uma sobreposição pequena permite que as paredes se conectem firmemente ao contorno. Note que, dados uma largura de contorno e filete de parede iguais, qualquer valor maior que metade da largura da parede pode fazer com que o contorno ultrapasse a parede, pois a este ponto a posição do bico do extrusor de contorno pode já ter passado do meio da parede." - -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Ajusta a densidade de preenchimento da impressão." - -msgctxt "support_interface_density description" -msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Ajusta a densidade dos topos e bases da estrutura de suporte. Um valor maior resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." - -msgctxt "support_tree_top_rate description" -msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "Ajusta a densidade da estrutura de suporte usada para gerar as pontas dos galhos. Um valor mais alto resulta em melhores seções pendentes, mas os suportes ficam mais difíceis de remover. Use Teto de Suporte para valores muito altos ou assegure-se que a densidade de suporte é similarmente alta no topo." - -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Ajusta a densidade da estrutura de suporte. Um valor mais alto resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Ajusta o diâmetro do filamento utilizado. Acerte este valor com o diâmetro real do filamento." - -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "Ajusta a colocação das estruturas de suporte. Pode ser ajustada para suportes que somente tocam a mesa de impressão ou suportes em todos os lugares com seções pendentes (incluindo as que não estão pendentes em relação à mesa)." - -msgctxt "prime_tower_wipe_enabled description" -msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." -msgstr "Depois de imprimir a torre de purga com um bico, limpar o material escorrendo do outro bico na torre de purga." - -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "Quando a máquina troca de um extrusor para o outro, sobe-se um pouco em Z para criar um espaço entre o bico e a impressão. Isso impede que o bico escorra material em cima da impressão." - -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Tudo" - -msgctxt "print_sequence option all_at_once" -msgid "All at Once" -msgstr "Todos de Uma Vez" - -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "Todos os ajustes que influenciam a resolução da impressão. Estes ajustes têm um impacto maior na qualidade (e tempo de impressão)" - -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Alternar Parede Adicional" - -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Alternar a Remoção de Malhas" - -msgctxt "material_alternate_walls label" -msgid "Alternate Wall Directions" -msgstr "Alternar Direções de Parede" - -msgctxt "material_alternate_walls description" -msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." -msgstr "Alterna direções de parede a cada camada e reentrância. Útil para materiais que podem acumular stress, como em impressão com metal." - -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "Alumínio" - -msgctxt "machine_always_write_active_tool label" -msgid "Always Write Active Tool" -msgstr "Sempre Escrever a Ferramenta Ativa" - -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "Sempre retrair quando se mover para iniciar uma parede externa." - -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "Deslocamento adicional aplicado para todos os polígonos em cada camada. Valores positivos 'engordam' a camada e podem compensar por furos exagerados; valores negativos a 'emagrecem' e podem compensar por furos pequenos." - -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "Deslocamento adicional aplicado a todos os polígonos da primeira camada. Um valor negativo pode compensar pelo esmagamento da primeira camada conhecido como \"pata de elefante\"." - -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "Quantidade de deslocamento aplicado a todos os polígonos do suporte em cada camada. Valores positivos podem amaciar as áreas de suporte e resultar em suporte mais estável." - -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "Quantidade de deslocamento aplicado às bases do suporte." - -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "Quantidade de deslocamento aplicado aos tetos do suporte." - -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "Quantidade de deslocamento aplicado aos polígonos da interface de suporte." - -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "Quantidade a retrair do filamento tal que ele não escorra durante a sequência de limpeza." - -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "Um adicional ao raio do centro de cada cubo para verificar a borda do modelo, de modo a decidir se este cubo deve ser subdividido. Valores maiores levam a uma cobertura mais espessa de pequenos cubos perto da borda do modelo." - -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Malha Anti-Pendente" - -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Posição Retraída Anti-escorrimento" - -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Velocidade de Retração Anti-escorrimento" - -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "Aplicar o deslocamento de extrusor ao sistema de coordenadas. Afeta todos os extrusores." - -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "Nos lugares em que os modelos tocam, gerar uma estrutura de vigas interligada. Isto melhora a aderência entre modelos, especialmente modelos impressos com materiais diferentes." - -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Evitar Partes Impressas nas Viagens" - -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Evitar Suportes No Percurso" - -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Atrás" - -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Atrás à Esquerda" - -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Atrás à Direita" - -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Ambos" - -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "Ambos se sobrepõem" - -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Camadas Inferiores" - -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Camada Inicial do Padrão da Base" - -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Distância de Expansão do Contorno Inferior" - -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Largura de Remoção do Contorno Inferior" - -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Espessura Inferior" - -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "Densidade de Galho" - -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "Diâmetro de Galho" - -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "Ângulo de Diâmetro de Galho" - -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Posição Retraída de Preparação de Quebra" - -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Velocidade de Retração de Preparação de Quebra" - -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Temperatura de Quebra de Preparação" - -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Posição Retraída de Quebra" - -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Velocidade de Retração de Quebra" - -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Temperatura de Quebra" - -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Quebrar Suportes em Pedaços" - -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Velocidade de Ventoinha da Ponte" - -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Ponte Tem Camadas Múltiplas" - -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Densidade de Segundo Contorno da Ponte" - -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Velocidade da Ventoinha no Segundo Contorno da Ponte" - -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Fluxo de Segundo Contorno da Ponte" - -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Velocidade de Segundo Contorno da Ponte" - -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Densidade do Contorno de Ponte" - -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Fluxo do Contorno de Ponte" - -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Velocidade do Contorno de Ponte" - -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Limiar de Suporte de Contorno de Ponte" - -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Densidade Máxima do Preenchimento Esparso de Ponte" - -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Densidade de Terceiro Contorno da Ponte" - -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Velocidade da Ventoinha no Terceiro Contorno da Ponte" - -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Fluxo de Terceiro Contorno da Ponte" - -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Velocidade de Terceiro Contorno da Ponte" - -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Desengrenagem de Parede de Ponte" - -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Fluxo da Parede de Ponte" - -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Velocidade da Parede de Ponte" - -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Brim" - -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Distância do Brim" - -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "Brim Dentro da Margem a Evitar" - -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Contagem de Linhas do Brim" - -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Brim Somente Para Fora" - -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Brim Substitui Suporte" - -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Largura do Brim" - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Aderência à Mesa" - -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Extrusor de Aderência à Mesa" - -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Tipo de Aderência da Mesa de Impressão" - -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Material da Plataforma de Impressão" - -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Forma da Mesa" - -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Temperatura da Mesa de Impressão" - -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Temperatura da Mesa de Impressão da Camada Inicial" - -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Temperatura do Volume de Impressão" - -msgctxt "prime_tower_brim_enable description" -msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "Ao habilitar este ajuste sua torre de purga ganhará um brim, mesmo que o modelo não tenha. Se você quiser uma base mais firme para uma torre alta, pode aumentar a altura." - -msgctxt "center_object label" -msgid "Center Object" -msgstr "Centralizar Objeto" - -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "Altera a geometria do modelo a ser impresso de tal modo que o mínimo de suporte seja exigido. Seções pendentes agudas serão torcidas pra ficar mais verticais. Áreas de seções pendentes profundas se tornarão mais rasas." - -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "Permite escolher entre as técnicas para geração de suporte. Suporte \"normal\" cria a estrutura de suporte diretamente abaixo das seções pendentes e vai em linha reta pra baixo. Suporte \"em árvore\" cria galhos na direção das seções pendentes, suportando o modelo nas pontas destes, e permitndo que se distribuam em torno do modelo para apoiá-lo na plataforma de impressão tanto quanto possível." - -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Velocidade de Desengrenagem" - -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Volume de Desengrenagem" - -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "A desengrenagem ou 'coasting' troca a última parte do caminho de uma extrusão pelo caminho sem extrudar. O material escorrendo é usado para imprimir a última parte do caminho de extrusão de modo a reduzir fiapos." - -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Modo de Combing" - -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "O Combing mantém o bico dentro de áreas já impressas ao fazer o percurso. Isto causa movimentações de percurso um pouco mais demoradas mas reduz a necessidade de retrações. Se o combing estiver desligado, o material sofrerá retração eo bico se moverá em linha reta até o próximo ponto. É possível também evitar combing sobre contornos inferiores e superiores ou somente fazer combing dentro do preenchimento." - -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Ajustes de Linha de Comando" - -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Ângulo de Suporte Cônico" - -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Largura Mínima do Suporte Cônico" - -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Conectar Linhas de Preenchimento" - -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Conectar Polígonos do Preenchimento" - -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Conectar Linhas de Suporte" - -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Conectar os Ziguezagues do Suporte" - -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Conectar Polígonos do Topo e Base" - -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "Conecta os caminhos de preenchimentos onde estiverem próximos um ao outro. Para padrões de preenchimento que consistam de vários polígonos fechados, a habilitação deste ajuste reduz bastante o tempo de percurso." - -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "Conecta os ziguezagues. Isto aumentará a força da estrutura de suporte em ziguezague." - -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "Conecta os extremos das linhas de suporte juntos. Habilitar este ajuste pode tornar seu suporte mais robusto e reduzir subextrusão, mas gastará mais material." - -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "Conecta as extremidades onde o padrão de preenchimento toca a parede interna usando uma linha que segue a forma da parede interna. Habilitar este ajuste pode fazer o preenchimento aderir melhor às paredes e reduzir o efeito do preenchimento na qualidade de superfícies verticais. Desabilitar este ajuda diminui a quantidade de material usado." - -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "Conectar caminhos de contorno da base e topo quando estiverem próximos entre si. Para o padrão concêntrico, habilitar este ajuste reduzirá bastante o tempo de percurso, mas por as conexões poderem acontecer no meio do preenchimento, este recurso pode reduzir a qualidade da superfície superior." - -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "Controla se os cantos do contorno do modelo influenciam a posição da costura. Nenhum significa que os cantos não terão influência na posição da costura. Ocultar Costura torna mais provável que a costura ocorra em um canto interior. Expôr Costura torna mais provável que a costura ocorra em um canto exterior. Ocultar ou Expôr Costura torna mais provável que a costura ocorra em um canto interior ou exterior. Ocultação Inteligente permite tanto cantos interiores quanto exteriores, mas escolhe os interiores mais frequentemente se apropriado." - -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "Converte cada file de preenchimento para este número de filetes. Os filetes extras não se cruzam, se evitam. Isto torna o preenchimento mais rígido, mas aumenta o tempo de impressão e uso do material." - -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Velocidade de Resfriamento" - -msgctxt "cooling description" -msgid "Cooling" -msgstr "Refrigeração" - -msgctxt "cooling label" -msgid "Cooling" -msgstr "Refrigeração" - -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Cruzado" - -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Cruzado" - -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "Cruzado 3D" - -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Tamanho de Bolso do Cruzado 3D" - -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Imagem de Densidade de Preenchimento Cruzado para Suporte" - -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Imagem de Densidade do Preenchimento Cruzado" - -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Material Cristalino" - -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Cúbico" - -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Subdivisão Cúbica" - -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Cobertura de Subdivisão Cúbica" - -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Malha de Corte" - -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "Dados relacionando fluxo de material (em mm³ por segundo) a temperatura (graus Celsius)." - -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Aceleração Default" - -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Temperatura Default da Plataforma de Impressão" - -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Jerk Default do Filamento" - -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Temperatura Default de Impressão" - -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Jerk Default nos eixos X-Y" - -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "O Jerk Default em Z" - -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "O valor default de jerk para movimentos no plano horizontal." - -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "O valor default de jerk para movimento na direção Z." - -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "O valor default de jerk para movimentação do filamento." - -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "Detectar pontes e modificar a velocidade de impressão, de fluxo e ajustes de fan onde elas forem detectadas." - -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "Determina a ordem na qual paredes são impressas. Imprimir as paredes externas primeiro ajuda na acuracidade dimensional, visto que falhas das paredes internas não poderão propagar externamente. No entanto, imprimi-las no final ajuda a haver melhor empilhamento quando seções pendentes são impressas. Quando há uma quantidade ímpar de paredes internas totais, a 'última linha central' é sempre impressa por último." - -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "Determina a prioridade desta malha ao considerar múltiplas malhas de preenchimento sobrepostas. Áreas onde múltiplas malhas de preenchimento se sobrepõem terão os ajustes da malha com a maior prioridade. Uma malha de preenchimento com prioridade maior modificará o preenchimento tanto das malhas de preenchimento com prioridade menor quanto das malhas normais." - -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "Determina quando uma camada do preenchimento relâmpago deve suportar algo sobre si. Medido no ângulo de acordo com a espessura da camada." - -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "Determina quando a camada de preenchimento relâmpago deve suportar o modelo sobre si. Medido no ângulo de acordo com a espessura." - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diâmetro" - -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "Aumento de Diâmetro para o Modelo" - -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "O diâmetro que cada galho tenta alcançar quando se aproxima da plataforma de impressão. Melhora aderência à plataforma." - -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "Diferentes opções que ajudam a melhorar a extrusão e a aderência à plataforma de impressão. Brim (bainha) adiciona uma camada única e chata em volta da base de seu modelo para impedir warping. Raft (balsa) adiciona uma grade densa com 'teto' abaixo do modelo. Skirt (saia) é uma linha impressa em volta do modelo, mas não conectada ao modelo, para apenas iniciar o processo de extrusão." - -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Áreas Proibidas" - -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "Distância entre as linhas de preenchimento impressas. Este ajuste é calculado pela densidade de preenchimento e a largura de extrusão do preenchimento." - -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "Distância entre os filetes da camada inicial da camada de suporte. Este ajuste é calculado pela densidade de suporte." - -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "Distância entre os filetes de impressão da base de suporte. Este ajuste é calculado pela densidade da Base de Suporte, mas pode ser ajustado separadamente." - -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "Distância entre os filetes de impressão do teto de suporte. Este ajuste é calculado pela Densidade do Teto de Suporte mas pode ser ajustado separadamente." - -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "Distância entre as linhas impressas da estrutura de suporte. Este ajuste é calculado a partir da densidade de suporte." - -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." -msgstr "Distância da impressão até a base do suporte. Note que o valor é arredondado pra cima para a próxima altura de camada." - -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "Distância do topo do suporte à impressão." - -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." -msgstr "Distância da base ou topo do suporte à impressão. Esta lacuna provê uma folga pra remover os suporte depois da impressão do modelo. A camada de suporte superior abaixo do modelo pode ser uma fração de camadas regulares." - -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "Distância do percurso inserido após cada linha de preenchimento, para fazer o preenchimento aderir melhor às paredes. Esta opção é similar à sobreposição de preenchimento mas sem extrusão e somente em uma extremidade do filete de preenchimento." - -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "Distância do percurso inserido após a parede externa para esconder melhor a costura em Z." - -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "Distância da Cobertura de Trabalho da impressão nas direções X e Y." - -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "Distância da cobertura de escorrimento da impressão nas direções X e Y." - -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "Distância da estrutura de suporte da seção pendente nas direções X/Y." - -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "Distância da estrutura de suporte até a impressão nas direções X e Y." - -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Pontos de distância são deslocados para suavizar o caminho" - -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Pontos de distância são deslocados para suavizar o caminho" - -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "Não gerar preenchimento para áreas menores que esta (usar contorno)." - -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Altura da Cobertura de Trabalho" - -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Limitação da Cobertura de Trabalho" - -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Distância X/Y da Cobertura de Trabalho" - -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Malha de Suporte Abaixo" - -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Extrusão Dual" - -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Elíptica" - -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Habilitar Controle de Aceleração" - -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Habilitar Ajustes de Ponte" - -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Habilitar Desengrenagem" - -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Habilitar Suporte Cônico" - -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Habilitar Cobertura de Trabalho" - -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "Habilitar Movimento Fluido" - -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Habilitar Passar a Ferro" - -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Habilitar Controle de Jerk" - -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Habilitar Controle de Temperatura do Bico" - -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Habilitar Cobertura de Escorrimento" - -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "Habilitar Massa de Purga" - -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Habilitar Torre de Purga" - -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Habilitar Refrigeração de Impressão" - -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Habilitar Retração" - -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Habilitar Brim de Suporte" - -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Habilitar Base de Suporte" - -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Habilitar Interface de Suporte" - -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Habilitar Teto de Suporte" - -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "Habilitar Aceleração de Percurso" - -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "Habilitar Jerk de Percurso" - -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "Habilita a cobertura exterior de escorrimento. Isso criará uma casca ou cobertura em volta do modelo que ajudará a limpar o segundo bico se estiver na mesma altura do primeiro bico." - -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "Habilita pequenas regiões (até a 'Largura de Teto/Base Pequenos') na camada superior com contorno (exposta ao ar) pra serem preenchidas com paredes ao invés do padrão default." - -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "Permite ajustar o jerk da cabeça de impressão quando a velocidade nos eixos X ou Y muda. Aumentar o jerk pode reduzir o tempo de impressão ao custo de qualidade de impressão." - -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "Permite ajustar a aceleração da cabeça de impressão. Aumentar as acelerações pode reduzir tempo de impressão ao custo de qualidade de impressão." - -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "Habilita as ventoinhas de refrigeração ao imprimir. As ventoinhas aprimoram a qualidade de impressão em camadas de tempo curto de impressão e em pontes e seções pendentes." - -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "G-Code Final" - -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Comprimento de Purga do Fim do Filamento" - -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Velocidade de Purga do Fim do Filamento" - -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "Força que o brim seja impresso em volta do modelo mesmo se este espaço fosse ser ocupado por suporte. Isto substitui algumas regiões da primeira camada de suporte por regiões de brim." - -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "Em Todo Lugar" - -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Exclusivo" - -msgctxt "experimental label" -msgid "Experimental" -msgstr "Experimental" - -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Expôr Costura" - -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Costura Extensa" - -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "Costura Extensa tenta costurar furos abertos na malha fechando o furo com polígonos que o tocam. Esta opção pode adicionar bastante tempo ao fatiamento das peças." - -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "Contagem de Paredes de Preenchimento Extras" - -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Contagem de Paredes Extras de Contorno" - -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "Material extra a avançar depois da troca de bico." - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Posição X da Purga do Extrusor" - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Posição Y da Purga do Extrusor" - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Posição Z de Purga do Extrusor" - -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Extrusores Compartilham Aquecedor" - -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Extrusores Compartilham o Bico" - -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Modificador de Velocidade de Resfriamento de Extrusão" - -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "Fator de correção de largura de extrusão baseada na velocidade. Em 0%, a velocidade de movimento é mantida constante na Velocidade de Impressão. Em 100%, a velocidade de movimento é ajustada de forma que o fluxo (em mm³/s) seja mantido constante, isto é, filetes de metade da Largura de Filete normal são impressos duas vezes mais rápido e filetes duas vezes mais espessos são impressos na metade da velocidade. Um valor mais alto que 100% pode ajudar a compensar pela maior pressão necessária para extrudar filetes espessos." - -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Velocidade da Ventoinha" - -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Sobrepor Velocidade de Ventoinha" - -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "Contornos de aspectos menores que este comprimento serão impressos usando a Velocidade de Aspecto Pequeno." - -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Recursos que não foram completamente desenvolvidos ainda." - -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Diâmetro da Engrenagem de Alimentação" - -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Temperatura de Impressão Final" - -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Retração de Firmware" - -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Extrusor de Suporte da Primeira Camada" - -msgctxt "material_flow label" -msgid "Flow" -msgstr "Fluxo" - -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Raio de Equalização de Fluxo" - -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Fator de Compensação da Taxa de Fluxo" - -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Máximo Deslocamento de Extrusão de Compensação de Taxa de Fluxo" - -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Gráfico de Fluxo de Temperatura" - -msgctxt "material_flow_layer_0 description" -msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." -msgstr "Compensação de fluxo para a primeira camada; a quantidade de material extrudado na camada inicial é multiplicada por este valor." - -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "Compensação de fluxo nos filetes da base da primeira camada" - -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Compensação de fluxo em filetes de preenchimento." - -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "Compensação de fluxo em filetes do teto ou base do suporte." - -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "Compensação de Fluxo em filetes das áreas no topo da impressão." - -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Compensação de fluxo em filetes de torre de purga." - -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Compensação de Fluxo em filetes de Skirt e Brim." - -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Compensação de fluxo nos filetes da base do suporte." - -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Compensação de fluxo em filetes do teto de suporte." - -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Compensação de fluxo em filetes de estruturas de suporte." - -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "Compensação de fluxo no filete de parede mais externo da primeira camada." - -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "Compensação de fluxo no filete de parede mais externo." - -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Compensação de fluxo no filete de parede externo de superfície do topo." - -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Compensação de fluxo nos files de parede de superfície do topo excetuando o mais externo." - -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Compensação de fluxo em filetes do topo e base." - -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "Compensação de fluxo nos filetes de parede para todos os filetes exceto o mais externo, mas só para a primeira camada" - -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "Compensação de fluxo em todos os filetes de parede excetuando o mais externo." - -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Compensação de fluxo em filetes das paredes." - -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "Compensação de fluxo: a quantidade de material extrudado é multiplicado por este valor." - -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "Ângulo de Movimento Fluido" - -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "Distância de Deslocamento do Movimento Fluido" - -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "Distância Pequena do Movimento Fluido" - -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Comprimento da Descarga de Purga" - -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Velocidade de Descarga de Purga" - -msgctxt "min_wall_line_width description" -msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." -msgstr "Para estruturas finas por volta de uma ou duas vezes o tamanho do bico, as larguras de linhas precisam ser alteradas para aderir à grossura do modelo. Este ajuste controla a largura mínima de filete permite para as paredes. As larguras mínimas de filete inerentemente também determinam as larguras máximas, já que transicionamos de N pra N+1 parede na grossura de geometria onde paredes N são largas e as paredes N+1 são estreitas. A maior largura possível de parede é duas vezes a Largura Mínima de Filete de Parede." - -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Frente" - -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Frente à Esquerda" - -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Frente à Direita" - -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Completo" - -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Contorno Felpudo" - -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Densidade do Contorno Felpudo" - -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Contorno Felpudo Externo Apenas" - -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Distância de Pontos do Contorno Felpudo" - -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Espessura do Contorno Felpudo" - -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "Sabor de G-Code" - -msgctxt "machine_end_gcode description" -msgid "" -"G-code commands to be executed at the very end - separated by \n" -"." -msgstr "" -"Comandos G-Code a serem executados no final da impressão - separados por \n" -"." - -msgctxt "machine_start_gcode description" -msgid "" -"G-code commands to be executed at the very start - separated by \n" -"." -msgstr "" -"Comandos G-Code a serem executados no início da impressão - separados por \n" -"." - -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "GUID do material. É ajustado automaticamente." - -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Altura do Eixo" - -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "Gerar Estrutura Interligada" - -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Gerar Suporte" - -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "Gera o brim dentro das regiões de preenchimento de suporte da primeira camada. Este brim é impresso sob o suporte, não em volta dele. Habilitar este ajuste aumenta a aderência de suporte à mesa de impressão." - -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "Gera uma interface densa entre o modelo e o suporte. Isto criará um contorno no topo do suporte em que o modelo é impresso e na base do suporte, onde ele fica sobre o modelo." - -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "Gera um bloco denso de material entre a base do suporte e o modelo. Isto criará uma divisória entre o modelo e o suporte." - -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "Gera um bloco denso de material entre o topo do suporte e o modelo. Isto criará uma divisória entre o modelo e o suporte." - -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "Gerar estrutura que suportem partes do modelo que tenham seções pendentes. Sem estas estruturas, tais partes desabariam durante a impressão." - -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Vidro" - -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "Passa sobre a superfície superior uma vez a mais, mas extrudando muito pouco material. Isto serve para derreter mais o plástico em cima, criando uma superfície lisa. A pressão na câmara do bico é mantida alta tal que as rugas na superfície são preenchidas com material." - -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Altura de Passo do Preenchimento Gradual" - -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Passos Graduais de Preenchimento" - -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Altura de Passo do Preenchimento Gradual de Suporte" - -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Passos de Preenchimento Gradual de Suporte" - -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "Gradualmente reduzir até esta temperatura quanto se estiver imprimindo a velocidades reduzidas devidas ao tempo mínimo de camada." - -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Grade" - -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Grade" - -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Grade" - -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Grade" - -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Grade" - -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" - -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Agrupar Paredes Externas" - -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Giróide" - -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Giróide" - -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "Tem Estabilização de Temperatura do Volume de Impressão" - -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Tem Mesa Aquecida" - -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Velocidade de Aquecimento" - -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Comprimento da Zona de Aquecimento" - -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "Limitação de altura da cobertura de trabalho. Acima desta altura a cobertura não será impressa." - -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Ocultar Costura" - -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Ocultar ou Expor Costura" - -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Expansão Horizontal do Furo" - -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "Diâmetro Máximo da Expansão Horizontal de Furo" - -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "Furos e contornos de partes com diâmetro menor que este serão impressos usando a Velocidade de Aspecto Pequeno." - -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Expansão Horizontal" - -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Compensação de Fator de Encolhimento Horizontal" - -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "Quanto o filamento pode ser esticado antes que quebre, quando aquecido." - -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "De quanto o material precisa ser retraído antes que pare de escorrer." - -msgctxt "flow_rate_extrusion_offset_factor description" -msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." -msgstr "Em quanto mover o filamento para compensar mudanças na taxa de fluxo, como uma porcentagem da distância que o filamento seria movido em um segundo de extrusão." - -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "De quanto o filamento deve ser retraído para se destacar completamente." - -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "Qual a velocidade do material para que seja retraído antes de quebrar em uma retração." - -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "Qual a velocidade do material para que seja retraído durante a troca de filamento sem escorrimento." - -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "Quão rápido purgar o material depois de trocar um carretel vazio por um novo carretel do mesmo material." - -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "Quão rápido purgar o material depois de alternar para um material diferente." - -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "Quanto tempo o material pode ser mantido fora de armazenamento seco com segurança." - -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção X." - -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção Y." - -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção Z." - -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "Quantos passos dos motores resultarão no movimento da engrenagem de alimentação em um milímetro da circunferência." - -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "Quanto material usar para purgar o material anterior do bico (em comprimento de filamento) quando um carretel vazio for trocado por um carretel novo do mesmo material." - -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "Quanto material usar para purgar o material anterior do bico (em comprimento de filamento) quando alternar para um material diferente." - -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "Quanto é assumido que o filamento de cada extrusor tenha retraído da ponta do bico ao completar o script g-code de início da impressora; o valor deve ser igual ou superior ao comprimento da parte comum dos dutos do bico." - -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "Como a interface de suporte a o suporte interagirão quando eles se sobrepuserem. No momento implementado apenas para teto de suporte." - -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "Quão alto um galho tem que ser para ser agregado ao modelo. Previne pequenos nódulos de suporte. Este ajuste é ignorado quando um galho está suportando teto de suporte." - -msgctxt "bridge_skin_support_threshold description" -msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." -msgstr "Se uma região do contorno for suportada por menos do que esta porcentagem de sua área, imprimi-la com os ajustes de ponte. Senão, imprimir usando os ajustes normais de contorno." - -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "Se um segmento do percurso do extrusor se desviar do movimento geral por um ângulo maior que esse, será suavizado." - -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "Se habilitado, a segunda e terceira camadas sobre o ar serão impressas usando os ajustes seguintes. Senão, estas camadas serão impressas com ajustes normais." - -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "Se for detectado que a cabeça de impressão estaria alternando em rápida sucessão entre números diferentes de parede, não fazer tal alternação. Remove transições se elas estiverem próximas até essa distância." - -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Se o Raft estiver habilitado, esta é a área extra do raft em volta do modelo que também faz parte dele. Aumentar esta margem criará um raft mais forte mas também gastará mais material e deixará menos área para sua impressão." - -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "Ignora a geometria interna de volumes sobrepostos dentro de uma malha e imprime os volumes como um único volume. Isto pode ter o efeito não-intencional de fazer cavidades desaparecerem." - -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Incluir Temperatura da Mesa" - -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Incluir Temperaturas de Material" - -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Inclusivo" - -msgctxt "infill description" -msgid "Infill" -msgstr "Preenchimento" - -msgctxt "infill label" -msgid "Infill" -msgstr "Preenchimento" - -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Aceleração do Preenchimento" - -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Preenchimento Antes das Paredes" - -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Densidade do Preenchimento" - -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Extrusor do Preenchimento" - -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Fluxo de Preenchimento" - -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Jerk do Preenchimento" - -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Espessura da Camada de Preenchimento" - -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "Direções de Filetes de Preenchimento" - -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Distância da Linha de Preenchimento" - -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "Multiplicador de Filete de Preenchimento" - -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Largura de Extrusão do Preenchimento" - -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Malha de Preenchimento" - -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Ângulo de Seções Pendentes do Preenchimento" - -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Sobreposição de Preenchimento" - -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "Porcentagem de Sobreposição do Preenchimento" - -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Padrão de Preenchimento" - -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Velocidade de Preenchimento" - -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Suporte do Preenchimento" - -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Otimização de Percurso de Preenchimento" - -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "Distância de Varredura do Preenchimento" - -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "Deslocamento X do Preenchimento" - -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Deslocamento do Preenchimento Y" - -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "Camadas Inferiores Iniciais" - -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Velocidade Inicial da Ventoinha" - -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Aceleração da Camada Inicial" - -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "Fluxo da Base da Camada Inicial" - -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "Diâmetro da Camada Inicial" - -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Fluxo Inicial de Camada" - -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Altura da Primeira Camada" - -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Expansão Horizontal da Camada Inicial" - -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "Fluxo de Parede Interna da Camada Inicial" - -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Jerk da Camada Inicial" - -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Largura de Extrusão da Camada Inicial" - -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "Fluxo de Parede Externa da Camada Inicial" - -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Aceleração de Impressão da Camada Inicial" - -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Jerk de Impressão da Camada Inicial" - -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Velocidade de Impressão da Camada Inicial" - -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Velocidade da Camada Inicial" - -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "Distância de Filetes da Camada Inicial de Suporte" - -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Aceleração de Percurso da Camada Inicial" - -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Jerk de Percurso da Camada Inicial" - -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Velocidade de Percurso da Camada Inicial" - -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Sobreposição em Z das Camadas Iniciais" - -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Temperatura Inicial de Impressão" - -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Aceleração das Paredes Interiores" - -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Extrusor da Parede Interior" - -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Jerk das Paredes Internas" - -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Velocidade da Parede Interior" - -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Fluxo da(s) Parede(s) Interna(s)" - -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Largura de Extrusão das Paredes Internas" - -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "Penetração adicional aplicada ao caminho da parede externa. Se a parede externa for menor que o bico, e impressa depois das paredes internas, use este deslocamento para fazer o orifício do bico se sobrepor às paredes internas ao invés de ao lado de fora do modelo." - -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "De Dentro Pra Fora" - -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "Linhas de interface preferidas" - -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "Interface preferida" - -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "Contagem de Camadas das Vigas Interligadas" - -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "Largura da Viga Interligada" - -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "Prevenção de Fronteira de Interligação" - -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "Profundidade de Interligação" - -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "Orientação da Estrutura de Interligação" - -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Passar a Ferro Somente Camada Mais Alta" - -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Aceleração de Passar a Ferro" - -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Fluxo de Passagem a Ferro" - -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Penetração da Passagem a Ferro" - -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Jerk de Passar a Ferro" - -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Espaçamento de Passagem a Ferro" - -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Padrão de Passagem a Ferro" - -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Velocidade de Passar o Ferro" - -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "Origem é no Centro" - -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "É material de suporte" - -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "Este material é do tipo que se destaca completamente quando aquecido (cristalino), ou é o tipo que produz cadeias de polímero entrelaçadas (não-cristalino)?" - -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "Se esse material é ou não tipicamente usado como material de suporte durante a impressão." - -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "Flutuar movimento apenas nos contornos e não nos furos das peças." - -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Manter Faces Desconectadas" - -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Altura de Camada" - -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "X Inicial da Camada" - -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Y Inicial da Camada" - -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "Espessura de camada da camada de base do raft. Esta camada deve ser grossa para poder aderir firmemente à mesa." - -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "Espessura da camada intermediária do raft." - -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Espessura de camada das camadas superiores do raft." - -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "Evita uma conexão entre linhas de suporte uma vez a cada N milímetros para fazer a estrutura de suporte mais fácil de ser removida." - -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Esquerda" - -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Levantar Cabeça" - -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Relâmpago" - -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Ângulo de Seção Pendente do Preenchimento Relâmpago" - -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Ângulo de Poda do Preenchimento Relâmpago" - -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Ângulo de Retificação do Preenchimento Relâmpago" - -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Ângulo de Suporte do Preenchimento Relâmpago" - -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "Limitar Alcance de Galho" - -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "Limita quão longe cada galho deve percorrer do ponto que ele suporta. Isto pode fazer o suporte mais estável, mas aumentará a quantidade de galhos (e por causa disso, uso de material e tempo de impressão)" - -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "Limitar o volume desta malha para dentro de outras malhas. Você pode usar isto para fazer certas áreas de uma malha imprimirem com ajustes diferentes, incluindo extrusor diferente." - -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Limitado" - -msgctxt "line_width label" -msgid "Line Width" -msgstr "Largura de Extrusão" - -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" - -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Máquina" - -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Profundidade da Mesa" - -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Polígono da Cabeça com Ventoinha" - -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Altura do Volume" - -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Tipo de Máquina" - -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Largura da Mesa" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Ajustes específicos da máquina" - -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Torna Seções Pendentes Imprimíveis" - -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "Faz malhas que tocam uma à outra se sobreporem um pouco. Isto faz com que elas se combinem com mais força." - -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "Faz as áreas de suporte menores na base que na seção pendente." - -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "Cria suport em todo lugar abaixo da malha de suporte de modo que não haja seções pendentes nela." - -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "Faz a posição de purga do extrusor absoluta ao invés de relativa à última posição conhecida da cabeça." - -msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "Faz a primeira e segunda camadas do modelo se sobreporem na direção Z para compensar pelo filamento perdido no vão aéreo. Todos os modelos acima da primeira camada de modelo serão deslocados para baixo por essa distância." - -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Faz as malhas mais adequadas para impressão 3D." - -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" - -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" - -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volumétrico)" - -msgctxt "material description" -msgid "Material" -msgstr "Material" - -msgctxt "material label" -msgid "Material" -msgstr "Material" - -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "GUID do Material" - -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Volume de Material Entre Limpezas" - -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Máxima Distância de Combing Sem Retração" - -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Aceleração Máxima em X" - -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Aceleração Máxima em Y" - -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Aceleração Máxima em Z" - -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "Ângulo Máximo de Galho" - -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Desvio Máximo" - -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Desvio Máximo de Área de Extrusão" - -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Velocidade Máxima da Ventoinha" - -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Aceleração Máxima do Filamento" - -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Ângulo Máximo do Modelo" - -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Área Máxima de Furo de Seções Pendentes" - -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Duração Máxima de Descanso" - -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Resolução Máxima" - -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Contagem de Retrações Máxima" - -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Ângulo Máximo do Contorno para Expansão" - -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Velocidade Máxima de Extrusão" - -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Velocidade Máxima em X" - -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Velocidade Máxima em Y" - -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Velocidade Máxima em Z" - -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Diâmetro Máximo Suportado por Torres" - -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Máxima Resolução de Percurso" - -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "A aceleração máxima para o motor da impressora na direção X" - -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "A aceleração máxima para o motor da impressora na direção Y." - -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "A aceleração máxima para o motor da impressora na direção Z." - -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "Aceleração máxima para a entrada de filamento no hotend." - -msgctxt "bridge_sparse_infill_max_density description" -msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." -msgstr "Densidade máxima do preenchimento considerado esparso. Contorno sobre o preenchimento esparso é considerado não-suportado e portanto será tratado como contorno de ponte." - -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "Diâmetro máximo nas direções X e Y da pequena área que será suportada por uma torre especializada de suporte." - -msgctxt "max_extrusion_before_wipe description" -msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." -msgstr "Material máximo que pode ser extrudado antes que outra limpeza de bico seja iniciada. Se este valor for menor que o volume de material requerido em uma camada, ele não terá efeito nenhum nesta camada, isto é, está limitado a uma limpeza por camada." - -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Sobreposição de Malhas Combinadas" - -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Correções de Malha" - -msgctxt "mesh_position_x label" -msgid "Mesh Position X" -msgstr "Posição X da Malha" - -msgctxt "mesh_position_y label" -msgid "Mesh Position Y" -msgstr "Posição Y da Malha" - -msgctxt "mesh_position_z label" -msgid "Mesh Position Z" -msgstr "Posição Z da Malha" - -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Hierarquia do Processamento de Malha" - -msgctxt "mesh_rotation_matrix label" -msgid "Mesh Rotation Matrix" -msgstr "Matriz de Rotação da Malha" - -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Meio" - -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Largura Mínima do Molde" - -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Tempo Mínima em Temperatura de Espera" - -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Comprimento de Parede de Ponte Mínimo" - -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Largura Mínima de Filete de Parede Par" - -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Janela de Distância de Extrusão Mínima" - -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Mínimo Tamanho de Detalhe" - -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Velocidade Mínima de Alimentação" - -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "Altura Mínima Para O Modelo" - -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Área Mínima para Preenchimento" - -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Tempo Mínimo de Camada" - -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Largura Mínima de Filete de Parede Ímpar" - -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Mínima Circunferência do Polígono" - -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Largura Mínima de Contorno para Expansão" - -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Velocidade Mínima" - -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Área Mínima de Suporte" - -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Área Mínima de Base de Suporte" - -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Área Mínima de Interface de Suporte" - -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Área Mínima de Teto de Suporte" - -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Distância Mínima de Suporte X/Y" - -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Largura Mínima de Filete de Parede Fina" - -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Volume Mínimo Antes da Desengrenagem" - -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Largura Mínina de Filete de Parede" - -msgctxt "minimum_interface_area description" -msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Área mínima para os polígonos da interface de suporte. Polígonos que têm área menor que este valor serão impressos como suporte normal." - -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "Área mínima para polígonos de suporte. Polígonos que tiverem uma área menor que essa não serão gerados." - -msgctxt "minimum_bottom_area description" -msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Área mínima para as bases do suport. Polígonos que têm área menor que este valor serão impressos como suporte normal." - -msgctxt "minimum_roof_area description" -msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Área mínima para os tetos do suporte. Polígonos que têm área menor que este valor serão impressos como suporte normal." - -msgctxt "min_feature_size description" -msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." -msgstr "Espessura mínima de detalhes finos. Detalhes de modelo que forem mais finos que este valor não serão impressos, enquanto que detalhes mais espessos que o Tamanho Mínimo de Detalhe serão aumentados para a Largura Mínima de Filete de Parede." - -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "Largura mínima para a qual a base do suporte cônico é reduzida. Pequenas larguras podem levar a estruturas de suporte instáveis." - -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Molde" - -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Ângulo do Molde" - -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Altura de Teto do Molde" - -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Ordem de Passagem a Ferro Monotônica" - -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Ordem da Superfície Monotônica Superior" - -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Ordem Monotônica Superior/Inferior" - -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "Múltiplas linhas de skirt te ajudam a fazer purga de sua extrusão melhor para pequenos modelos. Se o valor for zero o skirt é desabilitado." - -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "Multiplicador da largura de extrusão da primeira camada. Aumentar este ajuste pode melhorar a aderência à mesa." - -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Fator de Movimento Sem Carga" - -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Sem Contorno nas Lacunas Z" - -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Jeitos não-tradicionais de imprimir seus modelos." - -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Nenhuma" - -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Nenhum" - -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normal" - -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Normal" - -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "Normalmente o Cura tenta costurar pequenos furos na malha e remover partes de uma camada com grandes furos. Habilitar esta opção mantém as partes que ele não consegue costurar. Esta opção deve ser usada como última alternativa quando tudo o mais falhar para produzir G-Code apropriado." - -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Não no Contorno" - -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "Não na Superfície Externa" - -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Ângulo do Bico" - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diâmetro do bico" - -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Áreas Proibidas para o Bico" - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ID do Bico" - -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Comprimento do Bico" - -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Quantidade de Avanço Extra da Troca de Bico" - -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Velocidade de Avanço da Troca de Bico" - -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Velocidade de Retração da Troca de Bico" - -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Distância de Retração da Troca de Bico" - -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Velocidade de Retração da Troca do Bico" - -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Número de extrusores" - -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Número de Extrusores Habilitados" - -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Número de Camadas Mais Lentas" - -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "O número de carros extrusores que estão habilitados; automaticamente ajustado em software" - -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "Número de carros extrusores. Um carro extrusor é a combinação de um alimentador/tracionador, opcional tubo de filamento guiado e o hotend." - -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "Número de vezes com que mover o bico através da varredura." - -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "Número de vezes para reduzir a densidade de preenchimento pela metade quando estiver chegando mais além embaixo das superfícies superiores. Áreas que estão mais perto das superfícies superiores ganham uma densidade maior, numa gradação até a densidade configurada de preenchimento." - -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "Número de vezes para reduzir a densidade de preenchimento de suporte pela metade quando avançando abaixo das superfícies inferiores. Áreas mais próximas ao topo terão maior densidade, até a Densidade de Preenchimento de Suporte." - -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Octeto" - -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Desligado" - -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "Deslocamento aplicado ao objeto na direção X." - -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "Deslocamento aplicado ao objeto na direção Y." - -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "Deslocamento aplicado ao objeto na direção Z. Com isto você pode fazer afundamento do objeto na plataforma." - -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Deslocamento com o Extrusor" - -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "Na plataforma de impressão quando possível" - -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "No modelo se requerido" - -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "Um de Cada Vez" - -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "Somente fazer o Salto Z quando se mover sobre partes impressas que não podem ser evitadas pelo movimento horizontal quando a opção 'Evitar Peças Impressas nas Viagens' estiver ligada." - -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "Somente executar a passagem a ferro na última camada da malha. Isto economiza tempo se as camadas abaixo não precisarem de um acabamento de superfície amaciado." - -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Imprimir o Brim somente no lado de fora do modelo. Isto reduz a quantidade de brim a ser removida no final, e não reduz tanto a aderência à mesa." - -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Ângulo da Cobertura de Escorrimento" - -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Distância da Cobertura de Escorrimento" - -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "Alcance Ótimo de Galho" - -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Otimizar Ordem de Impressão de Paredes" - -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "Otimiza a ordem em que as paredes são impressas, tais que o número de retrações e a distância percorrida sejam reduzidos. A maioria das peças se beneficiará deste ajuste habilitado mas outras poderão demorar mais, portanto compare as estimativas de tempo de impressão com e sem otimização. A primeira camada não é otimizada quando o brim é selecionado como tipo de aderência da mesa de impressão." - -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Diâmetro Externo do Bico" - -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Aceleração da Parede Exterior" - -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Extrusor da Parede Externa" - -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Fluxo da Parede Externa" - -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Penetração da Parede Externa" - -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "Jerk da Parede Exterior" - -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Largura de Extrusão da Parede Externa" - -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Velocidade da Parede Exterior" - -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Distância de Varredura da Parede Externa" - -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Paredes externas de ilhas diferentes na mesma camada são impressas em sequência. Quando habilitado, as mudanças de fluxo são limitadas porque as paredes são impressas um tipo a cada vez; quando desabilitado, o número de percursos entre as ilhas é reduzido porque as paredes nas mesmas ilhas são agrupadas." - -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "De Fora Pra Dentro" - -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Ângulo de Parede Pendente" - -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Velocidade de Parede Pendente" - -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "Paredes pendentes serão impressas com esta porcentagem de sua velocidade de impressão normal." - -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Pausa após desfazimento da retração." - -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "Porcentagem da velocidade de ventoinha a usar quando imprimir paredes e contornos em pontes." - -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "Porcentagem da velocidade da ventoinha a usar quando se imprimir a segunda camada de contorno da ponte." - -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "Porcentagem de velocidade da ventoinha a usar ao imprimir as regiões de contorno imediatamente sobre o suporte. Usar uma velocidade de ventoinha alta pode fazer o suporte mais fácil de remover." - -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "Porcentagem da velocidade da ventoinha a usar quando se imprimir a terceira camada de contorno da ponte." - -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "Polígonos em camadas fatiadas que tiverem uma circunferência menor que esta quantia serão excluídos. Menores valores levam a malha de maior resolução ao custo de tempo de fatiamento. Serve melhor para impressoras SLA de alta resolução e pequenos modelos 3D com muitos detalhes." - -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "Ângulo Preferido de Galho" - -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "Impede de alternar entre uma parede a mais e uma a menos. Esta margem estende o alcance dos comprimentos de file a seguir para [Largura Mínima de Filete de Parede - Margem, 2 * Largura Mínima de Filete de Parede + Margem]. Aumentar esta margem reduz o número de transições, que por sua vez reduz o número de paradas e inícios de extrusão e tempo de percurso. No entanto, variação de largura de filete pode levar a problemas de subextrusão ou sobre-extrusão." - -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Aceleração da Torre de Purga" - -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Base" -msgstr "Base da Torre de Purga" - -msgctxt "prime_tower_base_height label" -msgid "Prime Tower Base Height" -msgstr "Altura da Base da Torre de Purga" - -msgctxt "prime_tower_base_size label" -msgid "Prime Tower Base Size" -msgstr "Tamanho da Base da Torre de Purga" - -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Slope" -msgstr "Inclinação da Base da Torre de Purga" - -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Fluxo da Torre de Purga" - -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "Jerk da Torre de Purga" - -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Largura de Extrusão da Torre de Purga" - -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Volume Mínimo da Torre de Purga" - -msgctxt "prime_tower_raft_base_line_spacing label" -msgid "Prime Tower Raft Line Spacing" -msgstr "Espaçamento do Filete de Raft da Torre de Purga" - -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Tamanho da Torre de Purga" - -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Velocidade da Torre de Purga" - -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "Posição X da Torre de Purga" - -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Posição Y da Torre de Purga" - -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Aceleração da Impressão" - -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Jerk da Impressão" - -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Sequência de Impressão" - -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Velocidade de Impressão" - -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Imprimir Paredes Finas" - -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "Imprimir uma torre próxima à impressão que serve para purgar o material a cada troca de bico." - -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "Imprime estruturas de preenchimento somente onde os tetos do modelo devam ser suportados. Habilitar este ajuste reduz tempo de impressão e uso de material, mas leva a resistências não-uniformes no objeto." - -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprime filetes de passagem a ferro em uma ordem que os faz com que sempre se sobreponham a linhas adjacentes em uma única direção. Isso faz levar um pouco mais de tempo na impressão, mas torna as superfícies mais consistentes." - -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "Imprimir modelos como moldes com o negativo das peças de modo que se possa encher de resina para as gerar." - -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "Imprime partes do modelo que são horizontalmente mais finas que o tamanho do bico." - -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "Velocidade de impressão a usar quando imprimir a segunda camada de ponte." - -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "Velocidade de impressão a usar quando imprimir a terceira camada de ponte." - -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "Imprime o preenchimento antes de imprimir as paredes. Imprimir as paredes primeiro pode levar a paredes mais precisas, mas seções pendentes são impressas com pior qualidade. Imprimir o preenchimento primeiro leva a paredes mais fortes, mas o padrão de preenchimento pode às vezes aparecer através da superfície." - -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprime os filetes da superfície superior em uma ordem que faz com que sempre se sobreponham a linhas adjacentes em uma única direção. Faz levar um pouco mais de tempo na impressão, mas torna as superfícies planas mais consistentes." - -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprime filetes superiores e inferiores em uma ordem que os faz sempre se sobreporem a filetes adjacentes em uma única direção. Faz levar um pouco mais de tempo na impressão, mas torna superfícies planas mais consistentes." - -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Temperatura de Impressão" - -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Temperatura de Impressão da Camada Inicial" - -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "Imprimir o filete mais interno de skirt com múltiplas camadas torna mais fácil removê-lo." - -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "Imprime uma parede adicional a cada duas camadas. Deste jeito o preenchimento fica aprisionado entre estas paredes extras, resultando em impressões mais fortes." - -msgctxt "resolution label" -msgid "Quality" -msgstr "Qualidade" - -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Quarto Cúbico" - -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Raft" - -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Vão Aéreo do Raft" - -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Extrusor da Base do Raft" - -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Velocidade de Ventoinha da Base do Raft" - -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Espaçamento de Filete de Base do Raft" - -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Largura de Linha da Base do Raft" - -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Aceleração de Impressão da Base do Raft" - -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Jerk de Impressão da Base do Raft" - -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Velocidade de Impressão da Base do Raft" - -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Espessura da Base do Raft" - -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Contagem de Paredes da Base do Raft" - -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Margem Adicional do Raft" - -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Velocidade de Ventoinha no Raft" - -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Extrusor do Meio do Raft" - -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Velocidade de Ventoinha do Meio do Raft" - -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Camadas Centrais do Raft" - -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Largura da Linha do Meio do Raft" - -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Aceleração de Impressão do Meio do Raft" - -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Jerk de Impressão do Meio do Raft" - -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Velocidade de Impressão do Meio do Raft" - -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Espaçamento do Meio do Raft" - -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Espessura do Meio do Raft" - -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Aceleração de Impressão do Raft" - -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Jerk de Impressão do Raft" - -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Velocidade de Impressão do Raft" - -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Amaciamento do Raft" - -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Extrusor do Topo do Raft" - -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Velocidade da Ventoinha para o Topo do Raft" - -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Espessura da Camada Superior do Raft" - -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Camadas Superiores do Raft" - -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Largura do Filete Superior do Raft" - -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Aceleração de Impressão do Topo do Raft" - -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Jerk de Impressão do Topo do Raft" - -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Velocidade de Impressão do Topo do Raft" - -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Espaçamento Superior do Raft" - -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Aleatório" - -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "Aleatorizar o Começo do Preenchimento" - -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "Aleatoriza qual linha do preenchimento é impressa primeiro. Isto evita que um segmento seja mais forte que os outros, mas ao custo de um percurso adicional." - -msgctxt "magic_fuzzy_skin_enabled description" -msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." -msgstr "Faz flutuações de movimento aleatório enquanto imprime a parede mais externa, de modo que a superfície do objeto ganhe uma aparência felpuda ou acidentada." - -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Retangular" - -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "Velocidade Regular da Ventoinha" - -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Velocidade Regular da Ventoinha na Altura" - -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Velocidade Regular da Ventoinha na Camada" - -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "Limite de Tempo para Mudança de Velocidade da Ventoinha" - -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Extrusão Relativa" - -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Remover Todos os Furos" - -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Remover Camadas Iniciais Vazias" - -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Remover Interseções de Malha" - -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Remover Cantos Internos de Raft" - -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "Remove áreas onde várias malhas estão sobrepondo uma à outra. Isto pode ser usado se objetos de material duplo se sobrepõem um ao outro." - -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "Remove camadas vazias entre a primeira camada impressa se estiverem presentes. Desabilitar este ajuste pode criar camadas iniciais vazias se a Tolerância de Fatiamento estiver configurada para Exclusivo ou Meio." - -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Remove os cantos internos do raft, fazendo com que ele se torne convexo." - -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "Remove os furos de cada camada e mantém somente aqueles da forma externa. Isto ignorará qualquer geometria interna invisível. No entanto, também ignorará furos de camada que poderiam ser vistos de cima ou de baixo." - -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" - -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" - -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "Substitui a parte externa do padrão superior/inferir com um número de linhas concêntricas. Usar uma ou duas linhas melhora tetos e topos que começam a ser construídos em cima de padrões de preenchimento." - -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "Preferência de Descanso" - -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Retrair Antes da Parede Externa" - -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Retrai em Mudança de Camada" - -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Retrair o filamento quando o bico estiver se movendo sobre uma área não-impressa." - -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Retrair o filamento quando o bico se mover sobre uma área não impressa." - -msgctxt "retract_at_layer_change description" -msgid "Retract the filament when the nozzle is moving to the next layer." -msgstr "Retrai o filamento quando o bico está se movendo para a próxima camada." - -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Distância da Retração" - -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Quantidade Adicional de Avanço da Retração" - -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Percurso Mínimo para Retração" - -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Velocidade de Avanço da Retração" - -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Velocidade de Recolhimento de Retração" - -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Velocidade de Retração" - -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Direita" - -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "Velocidade de Escala da Ventoinha A 0-1" - -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "Usa a escala da velocidade da ventoinha como um número entre 0 e 1 ao invés de 0 a 256." - -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Compensação de Fator de Encolhimento" - -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "A Cena Tem Malhas de Suporte" - -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Preferência do Canto da Costura" - -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "Estabelece a altura da cobertura de trabalho. Escolha imprimir a cobertura na altura total dos modelos ou até uma altura limitada." - -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Ajustes usados para imprimir com vários extrusores." - -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "Ajustes que sào usados somentes se o CuraEngine não for chamado da interface do Cura." - -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Retração Inicial do Bico Compartilhado" - -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Canto Mais Agudo" - -msgctxt "shell description" -msgid "Shell" -msgstr "Perímetro" - -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Mais Curto" - -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Exibir Variantes de Máquina" - -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Camadas do Suporte da Aresta de Contorno" - -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Espessura do Suporte da Aresta de Contorno" - -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Distância de Expansão do Contorno" - -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Sobreposição do Contorno" - -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Porcentagem de Sobreposição do Contorno" - -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Largura de Remoção de Contorno" - -msgctxt "min_skin_width_for_expansion description" -msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." -msgstr "Áreas de contorno mais estreitas que esta não são expandidas. Isto evita expandir as áreas estreitas que são criadas quando a superfície do modelo tem inclinações quase verticais." - -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "Evitar uma em cada N linhas de conexão para fazer a estrutura de suporte mais fácil de ser removida." - -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "Evitar algumas conexões de linha de suporte para fazer a estrutura de suporte mais fácil de ser removida. Este ajuste é aplicável ao padrão de preenchimento de suporte de ziguezague." - -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Skirt" - -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Distância do Skirt" - -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "Altura do Skirt" - -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Contagem de linhas de Skirt" - -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Aceleração para Skirt e Brim" - -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Extrusor do Skirt/Brim" - -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Fluxo de Skirt/Brim" - -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Jerk de Skirt e Brim" - -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Largura de Extrusão do Brim e Skirt" - -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Mínimo Comprimento do Skirt e Brim" - -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Velocidade do Skirt e Brim" - -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Tolerância de Fatiamento" - -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Velocidade de Camada Inicial de Aspecto Pequeno" - -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Comprimento Máximo do Aspecto Pequeno" - -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Velocidade de Aspecto Pequeno" - -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Tamanho Máximo de Furos Pequenos" - -#, fuzzy -msgctxt "cool_min_temperature label" -msgid "Small Layer Printing Temperature" -msgstr "Temperatura de Impressão Final" - -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "Pequena Base/Teto Na Superfície" - -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "Largura do Teto/Base Pequenos" - -msgctxt "small_feature_speed_factor_0 description" -msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "Aspectos pequenos na primeira camada serão impressos nesta porcentagem de sua velocidade de impressão normal. Impressão mais lenta pode ajudar com aderência e precisão." - -msgctxt "small_feature_speed_factor description" -msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "Aspectos pequenos serão impressos nessa porcentagem da velocidade normal. Impressão mais lenta pode ajudar com aderência e precisão." - -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "Regiões pequenas de base/teto são preenchidas com paredes ao invés do padrão default de teto/base. Isto ajuda a prevenir movimentos bruscos. Desligado por default para a camada superior (exposta ao ar) (Veja 'Pequena Base/Teto Na Superfície')" - -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "Brim Inteligente" - -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Ocultação Inteligente" - -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Suavizar Contornos Espiralizados" - -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "Suavizar os contornos espiralizados para reduzir a visibilidade da costura Z (a costura Z deve ser quase invisível na impressão mas ainda será visível na visão de camadas). Note que a suavização tenderá a embaçar detalhes finos de superfície." - -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "Alguns materiais podem escorrer um pouco durante o percurso, o que pode ser compensando neste ajuste." - -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "Um pouco de material pode escorrer durante os movimentos do percurso de limpeza e isso pode ser compensado neste ajuste." - -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Modos Especiais" - -msgctxt "speed description" -msgid "Speed" -msgstr "Velocidade" - -msgctxt "speed label" -msgid "Speed" -msgstr "Velocidade" - -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "Velocidade com que mover o eixo Z durante o salto." - -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Espiralizar o Contorno Externo" - -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "'Espiralizar' faz com que o movimento vertical (em Z) seja contínuo e gradual seguindo o contorno da peça. Este recurso transforma um modelo sólido em uma simples linha contínua em espiral partindo de uma base sólida. O recurso só deve ser habilitado quando cada camada horizontal contiver somente um contorno." - -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Temperatura de Espera" - -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "G-Code Inicial" - -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "Ponto de partida de cada caminho em uma camada. Quando caminhos em camadas consecutivas iniciam no mesmo ponto (X,Y), uma 'costura' vertical pode ser vista na impressão. Quando se alinha esta costura a uma coordenada especificada pelo usuário, a costura é mais fácil de remover pós-impressão. Quando colocada aleatoriamente as bolhinhas do início dos caminhos será menos perceptível. Quando se toma o menor caminho, a impressão será mais rápida." - -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Passos por Milímetro (E)" - -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Passos por Milímetro (X)" - -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Passos por Milímetro (Y)" - -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Passos por Milímetro (Z)" - -msgctxt "support description" -msgid "Support" -msgstr "Suporte" - -msgctxt "support label" -msgid "Support" -msgstr "Suporte" - -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Aceleração do Suporte" - -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Distância Inferior do Suporte" - -#, fuzzy -msgctxt "support_bottom_wall_count label" -msgid "Support Bottom Wall Line Count" -msgstr "Contagem de Linhas de Parede de Suporte" - -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Número de Filetes do Brim de Suporte" - -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Largura do Brim de Suporte" - -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Contagem de Linhas de Pedaço de Suporte" - -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Tamanho do Pedaço de Suporte" - -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "Densidade do Suporte" - -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Prioridade das Distâncias de Suporte" - -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Extrusor do Suporte" - -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Aceleração da Base do Suporte" - -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Densidade da Base do Suporte" - -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Extrusor da Base do Suporte" - -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Fluxo da Base de Suporte" - -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Expansão Horizontal da Base do Suporte" - -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Jerk da Base do Suporte" - -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Direções de Filete da Base do Suporte" - -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Distância de Filetes da Base de Suporte" - -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Largura de Extrusão da Base do Suporte" - -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Padrão de Base de Suporte" - -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Velocidade de Base do Suporte" - -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Espessura da Base de Suporte" - -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Fluxo de Suporte" - -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Expansão Horizontal do Suporte" - -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Aceleração do Preenchimento do Suporte" - -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Extrusor do Preenchimento do Suporte" - -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Jerk de Preenchimento de Suporte" - -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Espessura de Camada do Preenchimento de Suporte" - -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Direção de Filete do Preenchimento de Suporte" - -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Velocidade do Preenchimento do Suporte" - -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Aceleração da Interface de Suporte" - -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "Densidade da Interface de Suporte" - -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Extrusor da Interface de Suporte" - -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Fluxo de Interface de Suporte" - -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Expansão Horizontal da Interface de Suporte" - -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Jerk da Interface de Suporte" - -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Direções do Filete de Interface de Suporte" - -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Largura de Extrusão da Interface do Suporte" - -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Padrão da Interface de Suporte" - -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "Prioridade de Interface de Suporte" - -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Resolução da Interface de Suporte" - -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Velocidade da Interface de Suporte" - -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Espessura da Interface de Suporte" - -#, fuzzy -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "Contagem de Linhas de Parede de Suporte" - -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Jerk do Suporte" - -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "Distância de União do Suporte" - -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "Distância das Linhas do Suporte" - -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Largura de Extrusão do Suporte" - -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Malha de Suporte" - -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Ângulo para Caracterizar Seções Pendentes" - -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Padrão do Suporte" - -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Colocação dos Suportes" - -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Aceleração do Teto de Suporte" - -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Densidade do Teto de Suporte" - -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Extrusor do Teto do Suporte" - -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Fluxo do Teto de Suporte" - -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Expansão Horizontal do Teto de Suporte" - -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Jerk do Teto de Suporte" - -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Direções de Filete do Teto do Suporte" - -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Distância de Filetes do Teto de Suporte" - -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Largura de Extrusão do Teto do Suporte" - -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Padrão de Teto de Suporte" - -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Velocidade do Teto de Suporte" - -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "Espessura do Topo do Suporte" - -#, fuzzy -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "Contagem de Linhas de Parede de Suporte" - -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Velocidade do Suporte" - -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "Altura do Passo de Suporte em Escada" - -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "Largura Máxima do Passo de Suporte em Escada" - -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "Ângulo Mínimo de Inclinação do Passo de Suporte em Escada" - -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Estrutura de Suporte" - -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Distância Superior do Suporte" - -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Contagem de Linhas de Parede de Suporte" - -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "Distância X/Y do Suporte" - -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Distância em Z do Suporte" - -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "Filetes de suporte preferidos" - -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "Suporte preferido" - -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Velocidade de Ventoinha do Contorno Suportado" - -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Superfície" - -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "Energia de Superfície" - -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Modo de Superficie" - -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "Tendência de aderência da superfície." - -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Energia de superfície." - -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "Troca a ordem de impressão do filete de brim mais interno e o segundo mais interno. Isto melhora a remoção do brim." - -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "Troca quais volumes sobrepondo malhas vão pertencer a cada camada, de modo que as malhas sobrepostas se tornem entrelaçadas. Desligar esta opção vai fazer com que uma das malhas obtenha todo o volume da sobreposiçào, removendo este volume das outras malhas." - -msgctxt "adaptive_layer_height_threshold description" -msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." -msgstr "Trata da distância horizontal entre duas camadas adjacentes. Reduzir este ajuste faz com que camadas mais finas sejam usadas para reunir as bordas das camadas mais perto uma da outra." - -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "A coordenada X da posição próxima de onde achar a parte com que começar a imprimir cada camada." - -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "A coordenada X da posição onde iniciar a impressão de cada parte em uma camada." - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "A coordenada X da posição onde o bico faz a purga no início da impressão." - -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "A coordenada Y da posição próxima de onde achar a parte com que começar a imprimir cada camada." - -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "A coordenada Y da posição onde iniciar a impressão de cada parte em uma camada." - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "A coordenada Y da posição onde o bico faz a purga no início da impressão." - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Coordenada Z da posição onde o bico faz a purga no início da impressão." - -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "Aceleração durante a impressão da camada inicial." - -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "Aceleração para a camada inicial." - -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Aceleração para percursos na camada inicial." - -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "A mudança instantânea máxima de velocidade em uma direção nos percursos da camada inicial." - -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "Aceleração com que se imprimem as paredes interiores." - -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "A aceleração com que o preenchimento é impresso." - -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "A aceleração com que o recurso de passar a ferro é feito." - -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "Aceleração com que se realiza a impressão." - -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "A aceleração com que as camadas de base do raft são impressas." - -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "A aceleração com que as bases do suporte são impressas. Imprimi-las em aceleração menor pode melhorar aderência dos suportes no topo da superfície." - -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "Aceleração com que se imprime o preenchimento dos suportes." - -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "A aceleração com que a camada intermediária do raft é impressa." - -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "Aceleração com que se imprime a parede exterior." - -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "Aceleração com que a torre de purga é impressa." - -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "A aceleração com que o raft é impresso." - -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "A aceleração com que os tetos e bases de suporte são impressos. Imprimi-los em aceleração menor pode melhorar a qualidade das seções pendentes." - -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "A aceleração com que os tetos de suporte são impressos. Imprimi-los em aceleração menor pode melhorar a qualidade das seções pendentes." - -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "Aceleração com a qual o skirt e o brim são impressos. Normalmente isto é feito com a aceleração de camada inicial, mas às vezes você pode querer imprimir o skirt ou brim em uma aceleração diferente." - -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "Aceleração com que as estruturas de suporte são impressas." - -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "A aceleração com que as camadas superiores do raft são impressas." - -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "A aceleração com que as paredes internas da superfície superior são impressas." - -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "A aceleração com que as paredes externas da superfície superior são impressas." - -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "Aceleração com que se imprimem as paredes." - -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "A aceleração com a qual as camadas da superfície superior são impressas." - -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "Aceleração com que as camadas superiores e inferiores são impressas." - -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "Aceleração com que se realizam os percursos." - -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "A quantidade de material, relativa ao filete normal de extrusão, para extrudar durante a passagem a ferro. Manter o bico com algum material ajuda a preencher algumas das lacunas e fendas da superfície superior, mas material demais resulta em superextrusão e verrugas nas laterais da superfície." - -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "A quantidade de sobreposição entre o preenchimento e as paredes como uma porcentagem da largura de extrusão de preenchimento. Uma leve sobreposição permite que as paredes se conectem firmemente ao preenchimento." - -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "A quantidade de sobreposição entre o preenchimento e as paredes. Uma leve sobreposição permite que as paredes se conectem firmemente ao preenchimento." - -msgctxt "switch_extruder_retraction_amount description" -msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." -msgstr "A quantidade de retração ao mudar extrusores. Coloque em 0 para não haver retração. Isto deve geralmente ser o mesmo que o comprimento da zona de aquecimento do hotend." - -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "Ângulo entre o plano horizontal e a parte cônica logo acima da ponta do bico." - -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "Ângulo do Teto (parte superior) de uma torre. Um valor maior resulta em tetos pontiagudos, um valor menor resulta em tetos achatados." - -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "O ângulo de seção pendente das paredes externas criadas para o molde. 0° fará a superfície externa do molde vertical, enquanto 90° fará a superfície externa do molde seguir o contorno do modelo." - -msgctxt "support_tree_branch_diameter_angle description" -msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." -msgstr "O ângulo do diâmetro dos galhos enquanto se tornam gradualmente mais grossos na direção da base. Um ângulo de 0 fará com que os galhos tenham grossura uniforme no seu comrpimento. Um ângulo levemente maior que zero pode aumentar a estabilidade do suporte em árvore." - -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "O ângulo da inclinação do suporte cônico. Como 0 graus sendo vertical e 90 graus sendo horizontal. Ângulos menores farão o suporte ser mais firme, mas gastarão mais material. Ângulos negativos farão a base do suporte mais larga que o topo." - -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "A densidade média dos pontos introduzidos em cada polígono de uma camada. Note que os pontos originais do polígono são descartados, portanto uma densidade baixa resulta da redução de resolução." - -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "A distância média entre os pontos aleatórios introduzidos em cada segmento de linha. Note que os pontos originais do polígono são descartados, portanto umo alto alisamento resulta em redução da resolução. Este valor deve ser maior que a metade da Espessura do Contorno Felpudo." - -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "A aceleração default a ser usada nos eixos para o movimento da cabeça de impressão." - -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "A temperatura default usada para a impressão. Esta deve ser a temperatura \"base\" de um material. Todas as outras temperaturas de impressão devem usar diferenças baseadas neste valor" - -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "A temperatura default usada para a plataforma aquecida de impressão. Este valor deve ser a temperatura \"base\" da plataforma. Todas as outras temperaturas de impressão devem usar diferenças baseadas neste valor" - -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "A densidade da camada de contorno de ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno." - -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "A densidade das bases da estrutura de suporte. Um valor maior resulta em melhor aderência do suporte no topo da superfície." - -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "A densidade dos tetos da estrutura de suporte. Um valor maior resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." - -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "A densidade da segunda camada de contorno da ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno." - -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "A densidade da terceira camada de contorno da ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno." - -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "A profundidade (direção Y) da área imprimível." - -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "O diâmetro da torre especial." - -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "O diâmetro dos galhos mais finos do suporte em árvore. Galhos mais grossos são mais resistentes. Galhos na direção da base serão mais grossos que essa medida." - -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "O diâmetro do topo da ponta dos galhos de suporte em árvore." - -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "O diâmetro da engrenagem que traciona o material no alimentador." - -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "O diâmetro dos galhos mais espessos do suporte em árvore. Um tronco mais espesso é mais robusto; um tronco mais fino ocupa menos espaço na plataforma de impressão." - -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "A diferença em tamanho da próxima camada comparada à anterior." - -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "A distância entre as trajetórias de passagem a ferro." - -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "A distância entre o bico e as partes já impressas quando evitadas durante o percurso." - -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "A distância entre as linhas do raft para a camada de base do raft. Um espaçamento esparso permite a remoção fácil do raft da mesa." - -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "A distância entre as linhas do raft para a camada intermediária. O espaçamento do meio deve ser grande, ao mesmo tempo que deve ser denso o suficiente para suportar as camadas superiores." - -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "Distância entre as linhas do raft para as camadas superiores. O espaçamento deve ser igual à largura de linha, de modo que a superfície seja sólida." - -msgctxt "prime_tower_raft_base_line_spacing description" -msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "A distância entre os filetes do raft para a camada única de raft de torre de purga. Espaçamento alto permite remoção fácil do raft da plataforma de impressão." - -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "A distância da fronteira entre os modelos para gerar a estrutura de interligação, medida em células. Poucas células resultam em baixa aderência." - -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "A distância do modelo à linha mais externa do brim. Um brim mais largo aumenta a aderência à mesa, mas também reduz a área efetiva de impressão." - -#, fuzzy -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "Distância da ponta do bico onde 'estacionar' o filamento quando seu extrusor não estiver sendo usado." - -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "Distância da ponta do bico, em que calor do bico é transferido para o filamento." - -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "A distância com que os contornos inferiores são expandidos para dentro do preenchimento. Valores mais altos fazem o contorno se anexar melhor ao padrão de preenchimento e fazem as paredes da camada abaixo aderirem melhor ao contorno. Valores mais baixos economizam a quantidade de material usado." - -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "A distância em que os contornos são expandidos pra dentro do preenchimento. Valores mais altos fazem o contorno aderir melhor ao padrão de preenchimento e faz as paredes de camadas vizinhas aderirem melhor ao contorno. Valores menores diminuem a quantidade de material usado." - -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "A distância com que os contornos superiores são expandidos para dentro do preenchimento. Valores mais altos fazem o contorno se anexar melhor ao padrão de preenchimento e fazem as paredes da camada acima aderirem melhor ao contorno. Valores mais baixos economizam a quantidade de material usado." - -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "A distância com que mover a cabeça pra frente e pra trás durante a varredura." - -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "As pontas dos filetes de preenchimento são encurtadas para poupar material. Este ajuste é o ângulo da seção pendente das pontas desses filetes." - -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "Velocidade adicional pela qual o bico resfria enquanto extruda. O mesmo valor é uso para denotar a velocidade de aquecimento quando se esquenta ao extrudar." - -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "O extrusor a usar para imprimir a primeira camada de preenchimento de suporte. Isto é utilizado em multi-extrusão." - -msgctxt "raft_base_extruder_nr description" -msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." -msgstr "O carro extrusor a ser usado para imprimir a primeira camada do Raft. Isto é usado em multi-extrusão." - -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "O extrusor a usar para imprimir as bases dos suportes. Isto é utilizado em multi-extrusão." - -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "O extrusor a usar para imprimir o preenchimento do suporte. Isto é utilizado em multi-extrusão." - -msgctxt "raft_interface_extruder_nr description" -msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." -msgstr "O carro extrusor a ser usado para imprimir a camada central do raft. Isto é usado em multi-extrusão." - -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "O extrusor a usar para imprimir os tetos e bases dos suportes. Isto é utilizado em multi-extrusão." - -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "O extrusor a usar para imprimir o teto do suporte. Isto é utilizado em multi-extrusão." - -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "O carro extrusor a ser usado para imprimir o skirt ou brim. Isto é usado em multi-extrusão." - -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "O extrusor usado ara imprimir skirt, brim ou raft. Usado em multi-extrusão." - -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "O extrusor a usar para imprimir os suportes. Isto é utilizado em multi-extrusão." - -msgctxt "raft_surface_extruder_nr description" -msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." -msgstr "O carro extrusor a ser usado para imprimir a(s) camada(s) central(is) do raft. Isto é usado em multi-extrusão." - -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "O carro extrusor usado para imprimir preenchimento. Este ajuste é usado em multi-extrusão." - -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "O carro extrusor usado para imprimir as paredes internas. Este ajuste é usado em multi-extrusão." - -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "O carro extrusor usado para imprimir a parede externa. Este ajuste é usado em multi-extrusão." - -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "O carro extrusor usado para imprimir as paredes superiores e inferiores. Este ajuste é usado na multi-extrusão." - -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "O carro extrusor usado para imprimir a parte superior da peça. Este ajuste é usado em multi-extrusão." - -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "O carro extrusor usado para imprimir paredes. Este ajuste é usado em multi-extrusão." - -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "A velocidade de ventoinha para a camada base do raft." - -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "A velocidade de ventoina para a camada intermediária do raft." - -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "A velocidade da ventoinha para a impressão do raft." - -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "A velocidade da ventoinha para as camadas superiores do raft." - -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "A localização do arquivo de imagem onde os valores de brilho determinam a densidade mínima no local correspondente do preenchimento da impressão." - -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "A localização do arquivo de imagem onde os valores de brilho determinam a densidade mínima no local correspondente do suporte." - -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "As poucas primeiras camadas são impressas mais devagar que o resto do modelo, para conseguir melhor aderência à mesa e melhorar a taxa de sucesso geral das impressão. A velocidade é gradualmente aumentada entre estas camadas." - -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "O vão entre a camada final do raft e a primeira camada do modelo. Somente a primeira camada é elevada por esta distância para enfraquecer a conexão entre o raft e o modelo, tornando mais fácil a remoção do raft." - -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "A altura (direção Z) do volume imprimível." - -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "A altura acima das partes horizontais do modelo onde criar o molde." - -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "A altura em que as ventoinhas girarão na velocidade regular. Nas camadas abaixo a velocidade da ventoinha gradualmente aumenta da velocidade inicial para a velocidade regular." - -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "Diferença de altura entre a ponta do bico e o sistema de eixos X ou X e Y (onde o extrusor desliza)." - -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "Diferença de altura entre a ponta do bico e a parte mais baixa da cabeça de impressão." - -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "A diferença de altura ao executar um Salto Z após trocar extrusores." - -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Diferença de altura ao realizar um Salto Z." - -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "A diferença de altura ao executar um Salto Z." - -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "A altura das camadas em mm. Valores mais altos produzem impressões mais rápidas em resoluções baixas, valores mais baixos produzem impressão mais lentas em resolução mais alta. Recomenda-se não deixar a altura de camada maior que 80% do diâmetro do bico." - -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "A altura do preenchimento de uma dada densidade antes de trocar para a metade desta densidade." - -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "A altura do preenchimento de suporte de dada densidade antes de trocar para metade desta densidade." - -msgctxt "interlocking_beam_layer_count description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "A altura das vigas da estrutura de interligação, medida em número de camadas. Menos camadas são mais fortes, mas mais susceptíveis a defeitos." - -msgctxt "interlocking_orientation description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "A altura das vigas da estrutura de interligação, medidas em número de camadas. Menos camadas são mais fortes, mas mais susceptíveis a defeitos." - -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "A altura da camada inicial em mm. Uma camada inicial mais espessa faz a aderência à mesa de impressão ser maior." - -msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "A altura da base da torre de purga. Aumentar este valor resultará em uma torre de purga mais firme porque a base se tornará mais larga. Se o ajuste for muito baixo, a torre de purga não terá uma base firme." - -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "A altura dos degraus da base estilo escada do suporte em cima do modelo. Um valor baixo faz o suporte mais difícil de remover, mas valores muito altos podem levar a estruturas de suporte instáveis. Deixe em zero para desligar o comportamento de escada." - -msgctxt "brim_gap description" -msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." -msgstr "A distância horizontal entre o primeiro filete de brim e o contorno da primeira camada da impressão. Um pequeno vão pode fazer o brim mais fácil de remover sem deixar de prover os benefícios térmicos." - -msgctxt "skirt_gap description" -msgid "" -"The horizontal distance between the skirt and the first layer of the print.\n" -"This is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "" -"A distância horizontal entre o skirt a primeira camada da impressão.\n" -"Esta é a distância mínima. Linhas múltiplas de skirt estenderão além desta distância." - -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "Os filetes de preenchimentos são retificados para poupar tempo de impressão. Este é o ângulo máximo de seção pendente permito através do comprimento do filete de preenchimento." - -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "O padrão de preenchimento é movido por esta distância no eixo X." - -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "O padrão de preenchimento é movido por esta distância no eixo Y." - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "O diâmetro interior do bico (o orifício). Altere este ajuste quanto estiver usando um tamanho de bico fora do padrão." - -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "O jerk com o qual a camada de base do raft é impressa." - -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "O jerk com o qual a camada intermediária do raft é impressa." - -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "O jerk com o qual o raft é impresso." - -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "O jerk com o qual as camadas superiores do raft são impressas." - -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "A maior largura das áreas de contorno inferiores que serão removidas. Cada área de contorno menor que este valor desaparecerá. Isto pode ajudar em limitar a quantidade de tempo e material gastos em impressão de contornos inferiores em superfícies inclinadas do modelo." - -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "A maior largura das áreas de contorno que serão removidas. Cada área de contorno menor que este valor desaparecerá. Isto pode ajudar em limitar a quantidade de tempo e material gastos em impressão de contornos inferiores e superiores em superfícies inclinadas do modelo." - -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "A maior largura das áreas de contorno superiores que serão removidas. Cada área de contorno menor que este valor desaparecerá. Isto pode ajudar em limitar a quantidade de tempo e material gastos em impressão de contornos superiores em superfícies inclinadas do modelo." - -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "A camada em que as ventoinhas girarão na velocidade regular. Se a 'velocidade regular na altura' estiver ajustada, este valor é calculado e arredondado para um número inteiro." - -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "O tempo de camada que define o limite entre a velocidade regular da ventoinha e a máxima. Camadas cuja impressão é mais lenta que este tempo usarão a velocidade regular. Camadas mais rápidas gradualmente aumentarão até a velocidade máxima de ventoinha." - -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "O comprimento de filamento retornado durante uma retração." - -msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "O fator de magnitude usado para a inclinação da base da torre de purga. Se você aumentar este valor, a base se tornará mais fina. Se você diminuí-lo, ela se tornará mais grossa." - -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "O material da plataforma de impressão presente na impressora." - -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "A variação de altura máxima permitida para a camada de base." - -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "O ângulo de separação máximo que partes da cobertura de escorrimento terão. Com 0 graus sendo na vertical e 90 graus sendo horizontal. Um ângulo menor leva a coberturas de escorrimento falhando menos, mas mais gasto de material." - -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "O ângulo máximo de seçọes pendentes depois de se tornarem imprimíveis. Com o valor de 0° todas as seções pendentes serão trocadas por uma parte do modelo conectada à mesa e 90° não mudará o modelo." - -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "O ângulo máximo dos galhos quando eles crescem em volta do modelo. Use um ângulo menor para torná-los mais verticais e estáveis. Use um ângulo maior para poder ter maior alcance." - -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "A área máxima de um furo na base do modelo antes que seja removido por \"Torna Seções Pendentes Imprimíveis\". Furos com área menor que esta serão retidos. O valor de 0 mm² preenche todos os furos na base do modelo." - -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "O desvio máximo permitido ao reduzir a resolução para o ajuste de Máxima Resolução. Se você aumentar isto, a impressão será menos precisa, mas o G-Code será menor. O Desvio Máximo é um limite para Resolução Máxima, portanto se os dois conflitarem o Desvio Máximo sempre será o valor dominante." - -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "A distância máxima entre as estruturas de suporte nas direções X/Y. Quando estruturas separadas estão mais próximas que este valor, elas são fundidas em uma só." - -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "A distância máxima em mm para mover o filamento para compensar mudanças na taxa de fluxo." - -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "O desvio máximo da área de extrusão permitido ao remover pontos intermediários de uma linha reta. Um ponto intermediário pode servir como ponto de mudança de largura em uma longa linha reta. Portanto, se ele for removido, fará com que a linha tenha uma largura uniforme e, como resultado, perderá (ou ganhará) um pouco de área de extrusão. Se você aumentar o valor, você poderá perceber uma sutil sobre-extrusão ou sub-extrusão no meio de paredes retas paralelas, já que mais pontos intermediários com espessura variante poderão ser removidos. Sua impressão será menos acurada, mas o G-Code será menor." - -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "A mudança instantânea máxima de velocidade em uma direção durante a impressão da camada inicial." - -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "A mudança instantânea máxima de velocidade em uma direção da cabeça de impressão." - -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que o recurso de passar a ferro é feito." - -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que as paredes internas são impressas." - -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "A mudança instantânea máxima de velocidade em uma direção com que o preenchimento é impresso." - -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "A máxima mudança de velocidade instantânea com que as bases dos suportes são impressas." - -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que o preenchimento do suporte é impresso." - -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que a parede externa é impressa." - -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "A mudança instantânea máxima de velocidade em uma direção com que a torre de purga é impressa." - -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "A máxima mudança de velocidade instantânea com a qual os tetos e bases dos suportes são impressos." - -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "A máxima mudança de velocidade instantânea com que os tetos dos suportes são impressos." - -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "A mudança instantânea máxima de velocidade em uma direção com que o skirt (saia) e brim (bainha) são impressos." - -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que as estruturas de suporte são impressas." - -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "A mudança máxima de velocidade instantânea com que as paredes internas da superfície superior são impressas." - -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "A mudança máxima de velocidade instantânea com que as paredes mais externas da superfície superior são impressas." - -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que as paredes são impressas." - -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que as camadas da superfície superior são impressas." - -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que as camadas superiores e inferiores são impressas." - -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "A mudança instantânea máxima de velocidade em uma direção com que os percursos são feitos." - -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "A velocidade máxima para o motor da impressora na direção X." - -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "A velocidade máxima para o motor da impressora na direção Y." - -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "A velocidade máxima para o motor da impressora na direção Z." - -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "A velocidade máxima de entrada de filamento no hotend." - -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "A largura máxima dos passos da base estilo escada do suporte em cima do modelo. Um valor baixo faz o suporte mais difícil de remover, mas valores muito altos podem levar a estruturas de suporte instáveis." - -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "A distância mínima entre o exterior do molde e o exterior do modelo." - -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "Velocidade mínima de entrada de filamento no hotend." - -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "A temperatura mínima enquanto se esquenta até a Temperatura de Impressão na qual a impressão pode já ser iniciada." - -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "Tempo mínimo em que um extrusor precisará estar inativo antes que o bico seja resfriado. Somente quando o extrusor não for usado por um tempo maior que esse, lhe será permitido resfriar até a temperatura de espera." - -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "O ângulo mínimo de seções pendentes internas para as quais o preenchimento é adicionado. Em um valor de 0°, objetos são completamente preenchidos no padrão escolhido, e 90° torna o volume oco, sem preenchimento." - -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "O ângulo mínimo de seções pendentes para os quais o suporte é criado. Com o valor de 0° todas as seções pendentes serão suportadas, e 90° não criará nenhum suporte." - -msgctxt "retraction_min_travel description" -msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." -msgstr "A distância mínima de percurso necessária para que uma retração aconteça. Isto ajuda a ter menos retrações em uma área pequena." - -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "O comprimento mínimo do skirt ou brim. Se este comprimento não for cumprido por todas as linhas do skirt ou brim juntas, mais linhas serão adicionadas até que o mínimo comprimento seja alcançado. Se a contagem de linhas estiver em 0, isto é ignorado." - -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "A mínima largura de extrusão para paredes multifiletes de preenchimento de vão de filete central. Este ajuste determina em que espessura de modelo nós alternamos de imprimir dois filetes de parede para imprimir duas paredes externas e uma parede central no meio. Uma Largura de Extrusão de Parede Ímpar Mínima mais alta leva a uma largura máxima de extrusão de parede par mais alta. A largura máxima de extrusão de parede ímpar é calculada como 2 * Largura Mínima de Extrusão de Parede Par." - -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "A mínima largura de filete para paredes poligonais normais. Este ajuste determina em que espessura do modelo nós alternamos da impressão de um file de parede fina único para a impressão de dois filetes de parede. Uma Largura Mínima de Filete de Parede Par mais alta leva a uma largura máxima de filete de parede ímpar também mais alta. A largura máxima de filete de parede par é calculada como a Largura de Filete da Parede Externa + 0.5 * Largura Mínima de Filete de Parede Ímpar." - -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "A velocidade mínima de impressão, mesmo que se tente desacelerar para obedecer ao tempo mínimo de camada. Quando a impressora desacelera demais, a pressão no bico pode ficar muito baixa, o que resulta em baixa qualidade de impressão." - -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "O tamanho mínimo de um segmento de linha após o fatiamento. Se você aumentar este valor, a malha terá uma resolução menor. Isto pode permitir que a impressora mantenha a velocidade que precisa para processar o G-Code e aumentará a velocidade de fatiamento ao remover detalhes da malha que não poderia processar de qualquer jeito." - -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "O tamanho mínimo de um segmento de linha de percurso após o fatiamento. Se o valor aumenta, os movimentos de percurso terão cantos menos suaves. Isto pode permitir que a impressora mantenha a velocidade necessária para processar o G-Code, mas pode fazer com que evitar topar no modelo fique menos preciso." - -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "A mínima inclinação da área para que o suporte em escada tenha efeito. Valores baixos devem tornar o suporte mais fácil de remover em inclinações rasas, mas muitos baixos resultarão em resultados bastante contra-intuitivos em outras partes do modelo." - -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "O tempo mínimo empregado em uma camada. Isto força a impressora a desacelerar para no mínimo usar o tempo ajustado aqui em uma camada. Isto permite que o material impresso resfrie apropriadamente antes de passar para a próxima camada. As camadas podem ainda assim levar menos tempo que o tempo mínimo de camada se Levantar Cabeça estiver desabilitado e se a Velocidade Mínima fosse violada com a lentidão." - -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "O volume mínimo para cada camada da torre de purga de forma a purgar material suficiente." - -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "O máximo que o diâmetro de um galho que tem que se conectar ao modelo pode aumentar ao mesclar-se com galhos que podem alcançar a plataforma de impressão. Aumentar este valor reduz tempo de impressão, mas aumenta a área de suporte que se apoia no modelo" - -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "Nome do seu modelo de impressora 3D." - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "O identificador do bico para o carro extrusor, tais como \"AA 0.4\" ou \"BB 0.8\"." - -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "O bico evita partes já impressas quando está em uma percurso. Esta opção está disponível somente quando combing (penteamento) está habilitado." - -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "O bico evita suportes já impressos durante o percurso. Esta opção só está disponível quando combing estiver habilitado." - -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "O número de camadas inferiores. Quando calculado da espessura inferior, este valor é arredondado para um inteiro." - -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "O número de contornos a serem impressos em volta do padrão linear na camada base do raft." - -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "O número de camadas de preenchimento que suportam arestas de contorno." - -msgctxt "initial_bottom_layers description" -msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "O número de camadas inferiores iniciais da plataforma de impressão pra cima. Quanto calculado a partir da espessura inferior, esse valor é arrendado para um número inteiro." - -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "O número de camadas entre a base e a superfície do raft. Isso corresponde à espessura principal do raft. Aumentar este valor cria um raft mais espesso e resistente." - -msgctxt "brim_line_count description" -msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." -msgstr "O número de linhas usada para o brim. Mais linhas de brim melhoram a aderência à mesa, mas também reduzem a área efetiva de impressão." - -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "O número de filetes usado para o brim de suporte. Mais filetes melhoram a aderência na mesa de impressão, ao custo de material extra." - -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "O número de camadas superiores acima da segunda camada do raft. Estas são camadas completamente preenchidas em que o modelo se assenta. 2 camadas resultam em uma superfície superior mais lisa que apenas uma." - -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "O número de camadas superiores. Quando calculado da espessura superior, este valor é arredondado para um inteiro." - -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "O número de camadas da superfície superior. Geralmente somente uma camada é suficiente para gerar superfícies de alta qualidade." - -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." - -#, fuzzy -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." - -#, fuzzy -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." - -#, fuzzy -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." - -msgctxt "wall_distribution_count description" -msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." -msgstr "O número de paredes, contadas a partir do centro, sobre as quais a variação será distribuída. Valores menores significam que as paredes mais externas não mudam de comprimento." - -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "Número de filetes da parede. Quando calculado pela espessura de parede, este valor é arredondado para um inteiro." - -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "Diâmetro exterior do bico (a ponta do hotend)." - -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague trocam de direção em camadas alternadas, reduzindo custo de material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são completamente impressos a cada camada. Os preenchimentos giroide, cúbico, quarto cúbico e octeto mudam a cada camada para prover uma distribuição de força mais uniforme em cada direção. O preenchimento de relâmpago tenta minimizar material somente suportando o teto do objeto." - -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "O padrão (estampa) das estruturas de suporte da impressão. As diferentes opções disponíveis resultam em suportes mais resistentes ou mais fáceis de remover." - -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "O padrão das camadas superiores." - -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Padrão ou Estampa das camadas superiores e inferiores." - -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "O padrão na base da impressão na primeira camada." - -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "O padrão a usar quando se passa a ferro as superfícies superiores." - -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "O padrão com o qual as bases do suporte são impressas." - -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "Padrão (estampa) com a qual a interface do suporte para o modelo é impressa." - -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "O padrão com o qual o teto do suporte é impresso." - -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "A posição perto da qual se inicia a impressão de cada parte em uma camada." - -msgctxt "support_tree_angle_slow description" -msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." -msgstr "O ângulo preferido para os galhos, quando eles não têm que evitar o modelo. Use um ângulo menor para torná-los mais verticais e estáveis. Use um ângulo maior para que os galhos se mesclem mais rapidamente." - -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "O posicionamento preferido das estruturas de suporte.Se as estruturas não puderem ser colocadas na localização escolhida, serão colocadas em outro lugar, mesmo que seja no modelo." - -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "A mudança instantânea máxima de velocidade em uma direção para a camada inicial." - -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "A forma da mesa de impressão sem levar área não-imprimíveis em consideração." - -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "A forma da cabeça de impressão. Essas são coordenadas relativas à posição da cabeça de impressão, que é geralmente a posição do seu primeiro extrusor. As dimensões à esquerda e na frente da cabeça devem ser coordenadas negativas." - -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "O tamanho dos bolso em cruzamentos quádruplos no padrão cruzado 3D em alturas onde o padrão esteja se tocando." - -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "O menor volume que um caminho de extrusão deve apresentar antes que lhe seja permitido desengrenar. Para caminhos de extrusão menores, menos pressão é criada dentro do hotend e o volume de desengrenagem é redimensionado linearmente. Este valor deve sempre ser maior que o Volume de Desengrenagem." - -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "Velocidade (°C/s) pela qual o bico resfria tirada pela média na janela de temperaturas normais de impressão e temperatura de espera." - -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "Velocidade (°C/s) pela qual o bico aquece tirada pela média na janela de temperaturas normais de impressão e temperatura de espera." - -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "A velocidade em que todas as paredes interiores são impressas. Imprimir a parede interior mais rapidamente que a parede externa reduzirá o tempo de impressão. Funciona bem ajustar este valor a meio caminho entre a velocidade da parede mais externa e a velocidade de preenchimento." - -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "A velocidade com a qual regiões de contorno de ponte são impressas." - -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "Velocidade em que se imprime o preenchimento." - -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "Velocidade em que se realiza a impressão." - -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "A velocidade em que a camada de base do raft é impressa. Deve ser impressa lentamente, já que o volume do material saindo do bico será bem alto." - -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "A velocidade com a qual as paredes de ponte são impressas." - -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "A velocidade em que as ventoinhas giram no início da impressão. Em camadas subsequentes a velocidade da ventoinha é gradualmente aumentada até a camada correspondente ao ajuste 'Velocidade Regular da Ventoinha na Altura'." - -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "Velocidade em que as ventoinhas giram antes de dispararem o limite. Quando uma camada imprime mais rapidamente que o limite de tempo, a velocidade de ventoinha aumenta gradualmente até a velocidade máxima." - -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "Velocidade em que as ventoinhas giram no tempo mínimo de camada. A velocidade da ventoinha gradualmente aumenta da regular até a máxima quando o limite é atingido." - -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "A velocidade com a qual o filamento é avançado durante o movimento de retração." - -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "A velocidade com que o filamento é purgado durante um movimento de retração de limpeza." - -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "A velocidade em que o filamento é empurrado para a frente depois de uma retração de troca de bico." - -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "A velocidade com a qual o filamento é recolhido e avançado durante o movimento de retração." - -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "A velocidade com que o filamento é retraído e purgado durante um movimento de retração de limpeza." - -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "A velocidade em que o filamento é retraído durante uma retração de troca de bico." - -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "A velocidade com a qual o filamento é recolhido durante o movimento de retração." - -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "A velocidade com que o filamento é retraído durante um movimento de retração de limpeza." - -msgctxt "switch_extruder_retraction_speeds description" -msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." -msgstr "A velocidade em que o filamento é retraído. Uma velocidade de retração mais alta funciona melhor, mas uma velocidade muito alta pode levar a desgaste do filamento." - -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "A velocidade em que a base do suporte é impressa. Imprimi-la em velocidade mais baixa pode melhorar a aderência do suporte no topo da superfície." - -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "A velocidade em que o preenchimento do suporte é impresso. Imprimir o preenchimento em velocidades menores melhora a estabilidade." - -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "A velocidade em que a camada intermediária do raft é impressa. Esta deve ser impressa devagar, já que o volume de material saindo do bico é bem alto." - -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "A velocidade em que as paredes mais externas são impressas. Imprimir a parede mais externa a uma velocidade menor melhora a qualidade final do contorno. No entanto, ter uma diferença muito grande entre a velocidade da parede interna e a velocidade da parede externa afetará a qualidade de forma negativa." - -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "A velocidade em que a torre de purga é impressa. Imprimir a torre de purga mais lentamente pode torná-la mais estável quando a aderência entre os diferentes filamentos é subótima." - -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "A velocidade em que as ventoinhas giram." - -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "A velocidade em que o raft é impresso." - -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "A velocidade com que os tetos e bases do suporte são impressos. Imprimi-los em velocidades mais baixas pode melhorar a qualidade de seções pendentes." - -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "A velocidade em que os tetos dos suportes são impressos. Imprimi-los em velocidade mais baixas pode melhorar a qualidade de seções pendentes." - -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "Velocidade em que o Brim (Bainha) e Skirt (Saia) são impressos. Normalmente isto é feito na velocidade de camada inicial, mas você pode querer imprimi-los em velocidade diferente." - -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "A velocidade em que a estrutura de suporte é impressa. Imprimir o suporte a velocidades mais altas pode reduzir bastante o tempo de impressão. A qualidade de superfície das estruturas de suporte não é importante já que são removidas após a impressão." - -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "A velocidade em que as camadas superiores do raft são impressas. Elas devem ser impressas um pouco mais devagar, de modo que o bico possa lentamente alisar as linhas de superfície adjacentes." - -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "A velocidade com que as paredes internas da superfície superior são impressas." - -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "A velocidade com que a parede mais externa da superfície superior é impressa." - -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "A velocidade em que o movimento Z vertical é feito para os saltos Z. Tipicamente mais baixa que a velocidade de impressão já que mover a mesa de impressão ou eixos da máquina é mais difícil." - -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "Velocidade em que se imprimem as paredes." - -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "A velocidade com a qual o ajuste de passar ferro é aplicado sobre a superfície superior." - -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "A velocidade com a qual retrair o filamento para que se destaque completamente." - -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "A velocidade com que as camadas superiores são impressas." - -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "Velocidade em que as camadas superiores e inferiores são impressas." - -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "Velocidade em que ocorrem os movimentos de percurso." - -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "A velocidade pela qual se mover durante a desengrenagem, relativa à velocidade do caminho de extrusão. Um valor ligeiramente menor que 100% é sugerido, já que durante a desengrenagem a pressão dentro do hotend cai." - -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "A velocidade para a camada inicial. Um valor menor é sugerido para melhorar aderência à mesa de impressão. Não afeta as estruturas de aderência à mesa de impressão como o brim e o raft." - -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "A velocidade de impressão para a camada inicial. Um valor menor é aconselhado para aprimorar a aderência à mesa de impressão." - -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "A velocidade dos percursos da camada inicial. Um valor mais baixo que o normal é aconselhado para prevenir o puxão de partes impressas da mesa de impressão. O valor deste ajuste pode ser automaticamente calculado do raio entre a Velocidade de Percurso e a Velocidade de Impressão." - -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "A temperatura em que o filamento é destacado completamente." - -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "A temperatura do ambiente em que imprimir. Se este valor for 0, a temperatura de volume de impressão não será ajustada." - -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "A temperatura do bico quando outro bico está sendo usado para a impressão." - -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "A temperatura para a qual se deve começar a esfriar pouco antes do fim da impressão." - -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer." -msgstr "A temperatura usada para imprimir a primeira camada." - -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "A temperatura usada para impressão." - -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "A temperatura usada para a plataforma aquecida de impressão na primeira camada. Se for 0, a plataforma de impressão não será aquecida durante a primeira camada." - -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "A temperatura usada para a plataforma aquecida de impressão. Se for 0, a plataforma de impressão não será aquecida." - -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "A temperatura usada para purgar material, deve ser grosso modo a temperatura de impressão mais alta possível." - -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "A espessura das camadas inferiores da impressão. Este valor dividido pela altura de camada define o número de camadas inferiores." - -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "A espessura do preenchimento extra que suporta arestas de contorno." - -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "A espessura da interface do suporte onde ele toca o modelo na base ou no topo." - -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "A espessura das bases de suporte. Isto controla o número de camadas densas que são impressas no topo dos pontos do modelo em que o suporte se assenta." - -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "A espessura do topo do suporte. Isto controla a quantidade de camadas densas no topo do suporte em que o modelo se assenta." - -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "A espessura das camadas superiores da impressão. Este valor dividido pela altura de camada define o número de camadas superiores." - -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "A espessura das camadas superiores e inferiores da impressão. Este valor dividido pela altura de camada define o número de camadas superiores e inferiores." - -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "A espessura das paredes na direção horizontal. Este valor dividido pela largura de extrusão da parede define o número de filetes da parede." - -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "A espessura por camada de material de preenchimento. Este valor deve sempre ser um múltiplo da altura de camada e se não for, é arredondado." - -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "A espessura por camada do material de preenchimento de suporte. Este valor deve sempre ser um múltiplo da altura de camada e é arredondado." - -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "O tipo de G-Code a ser gerado." - -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "Volume que seria escorrido. Este valor deve em geral estar perto do diâmetro do bico ao cubo." - -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "A largura (direção X) da área imprimível." - -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "A largura do brim a ser impresso sob o suporte. Um brim mais largo melhora a aderência à mesa de impressão, ao custo de material extra." - -#, fuzzy -msgctxt "interlocking_beam_width description" -msgid "The width of the interlocking structure beams." -msgstr "A largura da torre de purga." - -msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "A largura da base ou brim da torre de purga. Uma base maior melhora a aderência à mesa mas também reduz a área efetiva de impressão." - -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "A largura da torre de purga." - -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "A largura dentro da qual flutuar. É sugerido deixar este valor abaixo da largura da parede externa, já que as paredes internas não são alteradas pelo algoritmo." - -msgctxt "retraction_extrusion_window description" -msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." -msgstr "A janela em que a contagem de retrações máxima é válida. Este valor deve ser aproximadamente o mesmo que a distância de retração, de modo que efetivamente o número de vez que a retração passa pelo mesmo segmento de material é limitada." - -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "A coordenada X da posição da torre de purga." - -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "A coordenada Y da posição da torre de purga." - -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "Há malhas de suporte presentes na cena. Este ajuste é controlado pelo Cura." - -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "Este ajuste controla a distância que o extrusor deve parar de extrudar antes que a parede de ponte comece. Desengrenar antes da ponte iniciar pode reduzir a pressão no bico e produzir em uma ponte mais horizontal." - -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Este ajuste controla quanto os cantos internos do contorno do raft são arredondados. Esses cantos internos são convertidos em semicírculos com raio igual ao valor dado aqui. Este ajuste também remove furos no contorno do raft que forem menores que o círculo equivalente." - -msgctxt "retraction_count_max description" -msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." -msgstr "Este ajuste limita o número de retrações ocorrendo dentro da janela de distância de extrusão mínima. Retrações subsequentes dentro desta janela serão ignoradas. Isto previne repetidas retrações no mesmo pedaço de filamento, já que isso pode acabar ovalando e desgastando o filamento." - -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "Isto criará uma parede em volta do modelo que aprisiona ar quente da mesa e protege contra fluxo de ar do exterior. Especialmente útil para materiais que sofrem bastante warp e impressoras 3D que não são cobertas." - -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "Diâmetro da Ponta" - -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "Para compensar pelo encolhimento do material enquanto ele esfria, o modelo será ampliado por este fator na direção XY (horizontalmente)." - -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "Para compensar pelo encolhimento do material enquanto esfria, o modelo será ampliado por este fator na direção Z (verticalmente)." - -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "Para compensar o encolhimento do material enquanto esfria, o modelo será redimensionado por este fator." - -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Camadas Superiores" - -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Distância de Expansão do Contorno Superior" - -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Largura de Remoção do Contorno Superior" - -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Aceleração da Parede Interna da Superfície Superior" - -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Jerk da Parede Interna da Superfície Superior" - -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Velocidade da Parede Interna da Superfície Superior" - -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Fluxo das Paredes Internas da Superfície Superior" - -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Aceleração da Parede Externa da Superfície Superior" - -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Fluxo da Parede Externa da Superfície Superior" - -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Jerk da Parede Externa da Superfície Superior" - -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Velocidade da Parede Externa da Superfície Superior" - -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Aceleração da Superfície Superior" - -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Extrusor da Superfície Superior" - -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Fluxo do Contorno da Superfície Superior" - -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Jerk da Superfície Superior" - -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Camadas da Superfície Superior" - -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Direções dos Filetes da Superfície Superior" - -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Largura de extrusão da Superfície Superior" - -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Padrão da Superfície Superior" - -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Velocidade da Superfície Superior" - -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Espessura Superior" - -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "Superfícies superiores e/ou inferiores de seu objeto com um ângulo maior que este ajuste não terão seu contorno expandido. Isto permite evitar a expansão de áreas estreitas de contorno que são criadas quando a superfície do modelo tem uma inclinação quase vertical. Um ângulo de 0° é horizontal e não causará expansão no contorno, enquanto que um ângulo de 90° é vertical e causará expansão em todo o contorno." - -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Superior/Inferior" - -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Superior/Inferior" - -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Aceleração Superior/Inferior" - -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Extrusor Superior/Inferior" - -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Fluxo de Topo/Base" - -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Jerk Superior/Inferior" - -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Direções de Linha Superior/Inferior" - -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Largura de Extrusão Superior/Inferior" - -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Padrão Superior/Inferior" - -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Velocidade Superior/Inferior" - -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Espessura Superior/Inferior" - -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "Tocando a Mesa" - -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Diâmetro da Torre" - -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Ângulo do Teto da Torre" - -msgctxt "mesh_rotation_matrix description" -msgid "Transformation matrix to be applied to the model when loading it from file." -msgstr "Matriz de transformação a ser aplicada ao modelo após o carregamento do arquivo." - -msgctxt "travel label" -msgid "Travel" -msgstr "Percurso" - -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Aceleração de Percurso" - -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Distância de Desvio de Percurso" - -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Jerk de Percurso" - -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Velocidade de Percurso" - -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "Tratar o modelo como apenas superfície, um volume ou volumes com superfícies soltas. O modo de impressão normal somente imprime volumes fechados. O modo \"superfície\" imprime uma parede única traçando a superfície da malha sem nenhun preenchimento e sem paredes superiores ou inferiores. O modo \"ambos\" imprime volumes fechados como o modo normal e volumes abertos como superfícies." - -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Árvore" - -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Tri-Hexágono" - -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" - -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Triângulo" - -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" - -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" - -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" - -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "Diâmetro do Tronco" - -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" - -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Volumes de Sobreposição de Uniões" - -msgctxt "bridge_wall_min_length description" -msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." -msgstr "Paredes não-suportadas mais curtas que esta quantia serão impressas usando ajustes normais de paredes. Paredes mais longas serão impressas com os ajustes de parede de ponte." - -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Usar Camadas Adaptativas" - -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Usar Torres" - -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "Usar taxa de aceleração separada para movimentos de percurso. Se desabilitado, os movimentos de percurso usarão o valor de aceleração da linha impressa em seu destino." - -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "Usar taxa de jerk separada para movimentos de percurso. Se desabilitado, os movimentos de percurso usarão o valor de jerk da linha impressa em seu destino." - -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "Usar extrusão relativa ao invés de extrusão absoluta. Passos de extrusão relativos no G-Code tornam o pós-processamento mais fácil. No entanto, isso não é suportado por todas as impressoras e pode produzir pequenos desvios na quantidade de material depositado comparado a passos de extrusão absolutos. Independente deste ajuste, o modo de extrusão sempre será ajustado para absoluto antes que qualquer script G-Code seja processado." - -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "Usa torres especializadas como suporte de pequenas seções pendentes. Essas torres têm um diâmetro mais largo que a região que elas suportam. Perto da seção pendente, o diâmetro das torres aumenta, formando um 'teto'." - -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "Utilize esta malha para modificar o preenchimento de outras malhas com as quais ela se sobrepõe. Substitui regiões de preenchimento de outras malhas com regiões desta malha. É sugerido que se imprima com somente uma parede e sem paredes superiores e inferiores para esta malha." - -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "Use esta malha para especificar áreas obrigatoriamente suportadas. Isto será usado para gerar estruturas de suporte." - -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "Use esta malha para especificar onde nenhuma parte do modelo deverá ser detectada como seção Pendente e por conseguinte não elegível a receber suporte. Com esta malha sobreposta a um modelo, você poderá marcar onde ele não deverá receber suporte." - -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Especificado pelo Usuário" - -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Compensação de Fator de Encolhimento Vertical" - -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "Tolerância vertical das camadas fatiadas. Os contornos de uma camada são normalmente gerados se tomando seções cruzadas pelo meio de cada espessura de camada (Meio). Alternativamente, cada camada pode ter as áreas que caem fora do volume por toda a espessura da camada (Exclusivo) ou a camada pode ter as áreas que caem dentro de qualquer lugar dentro da camada (Inclusivo). Inclusivo retém mais detalhes, Exclusivo proporciona o melhor encaixe e Meio permanece mais próximo da superfície original." - -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Aguardar o Aquecimento da Mesa" - -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Aguardar Aquecimento do Bico" - -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Aceleração da Parede" - -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Contagem de Distribuição de Parede" - -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Extrusor das Paredes" - -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Fluxo de Parede" - -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Jerk da Parede" - -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Número de Filetes da Parede" - -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Largura de Extrusão da Parede" - -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Ordem de Parede" - -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Velocidade da Parede" - -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Espessura de Parede" - -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Comprimento de Transição de Parede" - -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Distância de Filtro da Transição de Parede" - -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Margem de Filtro de Transição de Parede" - -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Ângulo-Limite de Transição de Parede" - -msgctxt "shell label" -msgid "Walls" -msgstr "Paredes" - -msgctxt "wall_overhang_angle description" -msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." -msgstr "Paredes que pendem por mais do que esse ângulo serão impressas usando ajustes de paredes pendentes. Quando este valor for 90, nenhuma parede será tratada como pendente. Seções pendentes que têm suportes também não serão tratadas como pendentes." - -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "Quando verificar se há partes do modelo abaixo e acima do suporte, usar passos de dada altura. Valores baixos fatiarão mais lentamente, enquanto que valores altos farão com que suporte convencional seja impresso em lugares em que deveria haver interface de suporte." - -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "Quando habilitado os percursos do extrusor são corrigidos para impressora com planejadores de movimento suavizado. Pequenos movimentos que se desviariam da direção geral do percurso do extrusor são suavizados para melhorar os movimentos fluidos." - -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "Quando habilitado, a ordem em que os filetes de preenchimento são impressos é otimizada para reduzir a distância percorrida. A redução em tempo de percurso conseguida depende bastante do modelo sendo fatiado, do padrão de preenchimento, da densidade, etc. Note que, para alguns modelos que têm áreas bem pequenas de preenchimento, o tempo de fatiamento pode ser aumentado bastante." - -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "Quando habilitado, a velocidade da ventoinha de resfriamento é alterada para as regiões de contorno imediatamente acima do suporte." - -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "Quando habilitado, as coordenadas da costura Z são relativas ao centro de cada parte. Quando desabilitado, as coordenadas definem uma posição absoluta na plataforma de impressão." - -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "Quando maior que zero, os movimentos de percurso de combing que forem maiores que essa distância usarão retração. Se deixado em zero, não haverá máximo e os movimentos de combing não usarão retração." - -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "Quando maior que zero, a Expansão Horizontal de Furo é gradualmente aplicada em pequenos furos (eles são mais expandidos). Quanto é deixada em zero, a Expansão Horizontal de Furo será aplicada a todos os furos. Furos maiores que o Diâmetro Máximo de Expansão Horizontal de Furo não serão expandidos." - -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "Quando maior que zero, a Expansão Original do Furo designa a distância de compensação aplicada a todos os furos em cada camada. Valores positivos aumentam os tamanhos dos furos, valores negativos reduzem os tamanhos dos furos. Quando este ajuste é habilitado, ele pode ser ainda aprimorado com o ajuste 'Diâmetro Máximo da Expansão Horizontal de Furo'." - -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "Ao imprimir regiões de contorno de ponte, a quantidade de material extrudado é multiplicada por este valor." - -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "Ao se imprimir paredes de ponte, a quantidade de material extrudado é multiplicada por este valor." - -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Ao imprimir a segunda camada de contorno de ponte, a quantidade de material é multiplicada por este valor." - -msgctxt "bridge_skin_material_flow_3 description" -msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Ao imprimir a terceira de contorno da ponte, a quantidade de material é multiplicada por este valor." - -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "Quando a velocidade mínima acaba sendo usada por causa do tempo mínimo de camada, levanta a cabeça para longe da impressão e espera tempo extra até que o tempo mínimo de camada seja alcançado." - -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "Quando o modelo tem pequenas lacunas verticais de apenas umas poucas camadas, normalmente há contorno em volta dessas camadas no espaço estreito. Habilite este ajuste para não gerar o contorno se a lacuna vertical for bem pequena. Isso melhora o tempo de impressão e fatiamento, mas tecnicamente deixa preenchimento exposto ao ar." - -msgctxt "wall_transition_angle description" -msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." -msgstr "Quanto criar transições entre números de paredes pares e ímpares. A forma de cunha em ângulo maior que este ajuste não terá transições e nenhuma parede será impressa no centro para preencher o espaço remanescente. Reduzir este ajuste faz reduzir o número e comprimento das paredes centrais, mas pode deixar vãos ou sobre-extrudar." - -msgctxt "wall_transition_length description" -msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." -msgstr "Ao transicionar entre diferentes números de paredes à medida que a peça fica mais fina, uma certa quantidade de espaço é alocada para partir ou juntar os filetes de parede." - -msgctxt "wipe_hop_enable description" -msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "Quando limpando, a plataforma de impressão é abaixada para criar uma folga entre o bico e a impressão. Isso previne que o bico bata na impressão durante movimentos de percurso, reduzindo a chance de descolar o objeto da plataforma." - -msgctxt "retraction_hop_enabled description" -msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "Sempre que uma retração é feita, sobe-se um pouco em Z para criar um espaço entre o bico e a impressão. Isso evita que o bico fique batendo nas impressões durante o percurso, reduzindo a chance de chutar a peça para fora da mesa." - -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "Decide se a distância XY substitui a distância Z de suporte ou vice-versa. Quando XY substitui Z a distância XY pode afastar o suporte do modelo, influenciando a distância Z real até a seção pendente. Podemos desabilitar isso não aplicando a distância XY em volta das seções pendentes." - -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "Decide se as coordenadas X/Y da posição zero da impressão estão no centro da área imprimível (senão, estarão no canto inferior esquerdo)." - -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "Decide se o endstop do eixo X está na direção positiva (coordenada X alta) ou negativa (coordenada X baixa)." - -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "Decide se o endstop do eixo Y está na direção positiva (coordenada Y alta) ou negativa (coordenada Y baixa)." - -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "Decide se o endstop do eixo Z está na direção positiva (coordenada Z alta) ou negativa (coordenada Z baixa)." - -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "Decide se os extrusores usam um único aquecedor combinado ou cada um tem o seu respectivo aquecedor." - -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "Decide se os extrusores compartilham um único bico ao invés de cada extrusor ter seu próprio. Quando colocado em verdadeiro, é esperado que o script g-code de início da impressora configure todos os extrusores em um estado inicial de retração que seja conhecido e mutuamente compatível (ou zero ou filamento não retraído); neste caso, o status de retração inicial é descrito, por extrusor, pelo parâmetro 'machine_extruders_shared_nozzle_initial_retraction'." - -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "Decide se a plataforma de impressão pode ser aquecida." - -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "Decide se a máquina consegue estabilizar a temperatura do volume de construção." - -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "Decide se o objeto deve ser centralizado no meio da plataforma de impressão, ao invés de usar o sistema de coordenadas em que o objeto foi salvo." - -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "Decide se a temperatura deve ser controlada pelo Cura. Desligue para controlar a temperatura do bico fora do Cura." - -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "Decide se haverá a inclusão de comandos de temperatura da mesa de impressão no início do G-Code. Quando o G-Code Inicial já contiver comandos de temperatura da mesa, a interface do Cura automaticamente desabilitará este ajuste." - -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "Decide se haverá a inclusão de comandos de temperatura do bico no início do G-Code. Quando o G-Code Inicial já contiver comandos de temperatura do bico, a interface do Cura automaticamente desabilitará este ajuste." - -msgctxt "clean_between_layers description" -msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." -msgstr "Decide se haverá inclusão de G-Code de limpeza de bico entre camadas (no máximo 1 por camada). Habilitar este ajuste pode influenciar o comportamento de retração na mudança de camada. Por favor use ajustes de Retração de Limpeza para controlar retração nas camadas onde o script de limpeza estará atuando." - -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "Decide se haverá inserção do comando para aguardar que a temperatura-alvo da mesa de impressão estabilize no início." - -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "Decide se é preciso descarregar o filamento com uma massa de purga antes de imprimir. Ligar este ajuste assegurará que o extrusor tenha material pronto no bico antes de imprimir. Imprimir um Brim ou Skirt pode funcionar como purga também, em cujo caso desligar esse ajuste faz ganhar algum tempo." - -msgctxt "print_sequence description" -msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -msgstr "Decide se os modelos devem ser impressos todos de uma vez só, uma camada por vez, ou se se deve esperar a cada modelo terminar antes de prosseguir para o próximo. O modo um de cada vez só é possível se a) somente um extrusor estiver habilitado e b) todos os modelos estiverem separados de modo que a cabeça de impressão pode se mover entre todos e todos os modelos estiverem em altura mais baixa que a distância entre o bico e os eixos X e Y." - -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "Decide se deseja exibir as variantes desta máquina, que são descrita em arquivos .json separados." - -msgctxt "machine_firmware_retract description" -msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." -msgstr "Decide se serão usados comandos de retração de firmware (G10/G11) ao invés da propriedade E dos comandos G1 para retrair o material." - -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "Decide se haverá a inserção do comando para aguardar que a temperatura-alvo do bico estabilize no início." - -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Largura de um filete de preenchimento." - -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "Largura de um filete usado no teto ou base do suporte." - -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "Largura de extrusão de um filete das áreas no topo da peça." - -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "Largura de uma única linha de filete extrudado. Geralmente, a largura da linha corresponde ao diâmetro do bico. No entanto, reduzir ligeiramente este valor pode produzir impressões melhores." - -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "Largura de um filete usado na torre de purga." - -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "Largura de um filete do brim (bainha) ou skirt (saia)." - -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "Largura de um filete usado na base do suporte." - -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "Largura de um filete usado no teto do suporte." - -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Largura de um filete usado nas estruturas de suporte." - -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Largura de extrusão dos filetes das paredes do topo e base dos modelos." - -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "Largura de extrusão das paredes internas (todas menos a mais externa)." - -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Largura de um filete que faz parte de uma parede." - -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "Largura das linhas na camada de base do raft. Devem ser grossas para auxiliar na aderência à mesa." - -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "Largura das linhas na camada intermediária do raft. Fazer a segunda camada extrudar mais faz as linhas grudarem melhor na mesa." - -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "Largura das linhas na superfície superior do raft. Estas podem ser linhas finas de modo que o topo do raft fique liso." - -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "Largura de Extrusão somente da parede mais externa do modelo. Diminuindo este valor, níveis de detalhes mais altos podem ser impressos." - -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "Largura da parede que substituirá detalhes finos (de acordo com o Tamanho Mínimo de Detalhe) do modelo. Se a Largura Mínima de Filete de Parede for mais fina que a espessura do detalhe, a parede se tornará tão espessa quanto o próprio detalhe." - -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "Posição X da Varredura de Limpeza" - -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Velocidade do Salto de Limpeza" - -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "Limpar Bico Inativo na Torre de Purga" - -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Distância de Movimentação da Limpeza" - -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "Limpar o Bico Entre Camadas" - -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Pausa de Limpeza" - -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Contagem de Repetições de Limpeza" - -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Distância de Retração da Limpeza" - -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "Habilitar Retração de Limpeza" - -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "Quantidade Extra de Purga da Retração de Limpeza" - -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Velocidade de Purga da Retração de Limpeza" - -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "Velocidade da Retração da Retração de Limpeza" - -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Velocidade da Retração de Limpeza" - -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "Salto Z da Limpeza" - -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "Altura do Salto Z da Limpeza" - -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "Dentro do Preenchimento" - -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "Escreve a ferramenta ativa depois de enviar comandos de temperatura para a ferramenta inativa. Requerido para impressão de Extrusor Duplo com Smoothie ou outros firmwares com comandos modais de ferramenta." - -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "Endstop X na Direção Positiva" - -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "Localização X onde o script de limpeza iniciará." - -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y substitui Z" - -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Endstop Y na Direção Positiva" - -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Endstop Z na Direção Positiva" - -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Salto Z Após Troca de Extrusor" - -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Salto Z Após Troca de Altura do Extrusor" - -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Altura do Salto Z" - -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Salto Z Somente Sobre Partes Impressas" - -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Velocidade do Salto Z" - -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Salto Z Ao Retrair" - -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Alinhamento da Costura em Z" - -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Posição da Costura Z" - -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Costura Z Relativa" - -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "Coordenada X da Costura Z" - -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Coordenada Y da Costura Z" - -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z substitui X/Y" - -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "travel description" -msgid "travel" -msgstr "percurso" - -#~ msgctxt "machine_head_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps excluded)." -#~ msgstr "Uma silhueta 2D da cabeça de impressão (sem os suportes de ventoinhas)." - -#~ msgctxt "machine_head_with_fans_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps included)." -#~ msgstr "Silhueta da cabeça de impressão com os suportes de ventoinhas inclusos." - -#~ msgctxt "spaghetti_infill_extra_volume description" -#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." -#~ msgstr "Um termo de correção para ajustar o volume total sendo extrudado a cada vez que se preencher com estilo espaguete." - -#~ msgctxt "sub_div_rad_mult description" -#~ msgid "A multiplier on the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to more subdivisions, i.e. more small cubes." -#~ msgstr "Um multiplicador do raio do centro de cada cubo para verificar a borda do modelo, de modo a decidir se este cubo deve ser subdividido. Valores maiores levam a maiores subdivisões, isto é, mais cubos pequenos." - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive Layers Threshold" -#~ msgstr "Limite das Camadas Adaptativas" - -#~ msgctxt "adaptive_layer_height_variation label" -#~ msgid "Adaptive layers maximum variation" -#~ msgstr "Variação máxima das camadas adaptativas" - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive layers threshold" -#~ msgstr "Limite das camadas adaptativas" - -#~ msgctxt "adaptive_layer_height_variation_step label" -#~ msgid "Adaptive layers variation step size" -#~ msgstr "Tamanho de passo da variação das camadas adaptativas" - -#~ msgctxt "wall_add_middle_threshold label" -#~ msgid "Add Middle Line Threshold" -#~ msgstr "Adicionar Limite de Filete Central" - -#~ msgctxt "support_interface_density description" -#~ msgid "Adjusts the density of the roofs and bottoms of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -#~ msgstr "Ajusta a densidade dos topos e bases das estruturas de suporte. Um valor mais alto resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." - -#~ msgctxt "spaghetti_flow description" -#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." -#~ msgstr "Ajusta a densidade do preenchimento espaguete. Note que a Densidade de Preenchimento controla somente o espaçamento entre linhas do padrão de preenchimento, não a quantidade de extrusão para o preenchimento espaguete." - -#~ msgctxt "dual_pre_wipe description" -#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -#~ msgstr "Depois de trocar extrusores, limpar o material escorrendo do bico na primeira peça impressa. Isso causa um movimento lento de limpeza do bico em um lugar onde o material escorrido causa o menor dano à qualidade de superfície da sua impressão." - -#~ msgctxt "material_bed_temp_wait label" -#~ msgid "Aguardar o aquecimento da mesa de impressão" -#~ msgstr "Esperar a que la placa de impresión se caliente" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly label" -#~ msgid "Alternate Cross 3D Pockets" -#~ msgstr "Bolso Alternados de Cruzado 3D" - -#~ msgctxt "skin_alternate_rotation label" -#~ msgid "Alternate Skin Rotation" -#~ msgstr "Alterna a Rotação do Contorno" - -#~ msgctxt "skin_alternate_rotation description" -#~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." -#~ msgstr "Alterna a direção em que as camadas superiores e inferiores são impressas. Normalmente elas são impressas somente na diagonal. Este ajuste permite direções somente no X e somente no Y." - -#~ msgctxt "prime_tower_purge_volume description" -#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -#~ msgstr "Quantidade de filamento a ser purgado na torre de purga. A purga é útil para compensar filamento perdido por escorrimento durante inatividade do bico." - -#~ msgctxt "hole_xy_offset description" -#~ msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes." -#~ msgstr "Quantidade de deslocamento aplicado a todos os furos em cada camada. Valores positivos aumentam o tamanho dos furos, valores negativos reduzem o tamanho dos furos." - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" -#~ msgid "Apply the extruder offset to the coordinate system." -#~ msgstr "Aplicar o deslocamento do extrusor ao sistema de coordenadas." - -#~ msgctxt "material_flow_dependent_temperature label" -#~ msgid "Auto Temperature" -#~ msgstr "Temperatura Automática" - -#~ msgctxt "z_seam_type option back" -#~ msgid "Back" -#~ msgstr "Costas" - -#~ msgctxt "bridge_wall_max_overhang label" -#~ msgid "Bridge Wall Max Overhang" -#~ msgstr "Seção Pendente Máxima da Parede de Ponte" - -#~ msgctxt "machine_shape label" -#~ msgid "Build plate shape" -#~ msgstr "Forma da mesa de impressão" - -#~ msgctxt "center_object label" -#~ msgid "Center object" -#~ msgstr "Centralizar Objeto" - -#~ msgctxt "material_flow_dependent_temperature description" -#~ msgid "Change the temperature for each layer automatically with the average flow speed of that layer." -#~ msgstr "Troca a temperatura para cada camada automaticamente de acordo com a velocidade média de fluxo desta camada." - -#~ msgctxt "prime_tower_circular label" -#~ msgid "Circular Prime Tower" -#~ msgstr "Torre de Purga Circular" - -#~ msgctxt "retraction_combing description" -#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." -#~ msgstr "O Combing (penteamento) mantém o bico dentro de áreas já impressas durante os percursos. Isto resulta em movimentações um pouco mais amplas mas reduz a necessidade de retrações. Se o combing for desligado, o material sofrerá retração e o bico se moverá em linha reta ao próximo ponto. É também possível evitar combing sobre áreas de contorno de topo e base e ainda só fazer combing no preenchimento. Note que a opção 'Dentro do Preenchimento' se comporta exatamente como a 'Não no Contorno' em versões anteriores do Cura." - -#~ msgctxt "retraction_combing description" -#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." -#~ msgstr "O Combing, ou penteamento, mantém o bico dentro de áreas já impressas se movimenta. Isso resulta em percursos ligeiramente mais longos mas reduz a necessidade de retrações. Se o penteamento estiver desligado, o material sofrerá retração e o bico se moverá em linha reta para o próximo ponto. É também possível evitar o penteamento em área de contornos superiores e inferiores habilitando o penteamento no preenchimento somente." - -#~ msgctxt "wireframe_strategy option compensate" -#~ msgid "Compensate" -#~ msgstr "Compensar" - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" -#~ msgid "Compensate Inner Wall Overlaps" -#~ msgstr "Compensar Sobreposições da Parede Interna" - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" -#~ msgid "Compensate Outer Wall Overlaps" -#~ msgstr "Compensar Sobreposições de Parede Externa" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled label" -#~ msgid "Compensate Wall Overlaps" -#~ msgstr "Compensar Sobreposições de Parede" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled description" -#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." -#~ msgstr "Compensa o fluxo para partes de uma parede sendo impressa onde já há outra parede." - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" -#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." -#~ msgstr "Compensa o fluxo para partes de uma parede interna sendo impressa onde já há outra parede." - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" -#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." -#~ msgstr "Compensa o fluxo para partes de uma parede externa sendo impressa onde já há outra parede." - -#~ msgctxt "infill_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "support_bottom_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "support_interface_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "support_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "support_roof_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "zig_zaggify_infill description" -#~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -#~ msgstr "Conecta as extremidades onde o padrão de preenchimento se encontra com a parede interna usando linhas que seguem a forma dessa parede. Habilitar este ajuste pode fazer o preenchimento aderir melhor às paredes e reduz os efeitos do preenchimento na qualidade das superfícies verticais. Desabilitar este ajuste reduz a quantidade de material usado." - -#~ msgctxt "connect_skin_polygons description" -#~ msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happend midway over infill this feature can reduce the top surface quality." -#~ msgstr "Conectar camihos de contorno do topo e base onde se situarem próximos. Habilitar para o padrão concêntrico reduzirá bastante o tempo de percurso, mas visto que as conexões podem acontecer sobre o preenchimento no meio do caminho, este recurso pode reduzir a qualidade da superfície superior." - -#~ msgctxt "z_seam_corner description" -#~ msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner." -#~ msgstr "Controla se cantos no contorno do modelo influenciam a posição da costura. Nenhum significa que cantos não têm influência na posição da costura. Esconder Costura torna mais provável que ela ocorra em um canto interior. Expor Costura torna mais provável que ela ocorra em um canto exterior. Esconder ou Expor Costura torna mais provável que ocorra em um canto, externo ou externo." - -#~ msgctxt "machine_nozzle_cool_down_speed label" -#~ msgid "Cool down speed" -#~ msgstr "Velocidade de resfriamento" - -#~ msgctxt "wireframe_top_jump description" -#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." -#~ msgstr "Cria um pequeno 'nódulo' ou 'nó' no topo do filete ascendente de tal modo que a camada horizontal consecutiva tem melhor chance de se conectar ao filete. Somente se aplica à Impressão em Arame." - -#~ msgctxt "sub_div_rad_mult label" -#~ msgid "Cubic Subdivision Radius" -#~ msgstr "Raio de Subdivisão Cúbica" - -#~ msgctxt "wireframe_bottom_delay description" -#~ msgid "Delay time after a downward move. Only applies to Wire Printing." -#~ msgstr "Tempo de espera depois de um movimento descendente tal que o filete possa se solidificar. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_top_delay description" -#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." -#~ msgstr "Tempo de espera depois de um movimento ascendente tal que o filete ascendente possa se solidifcar. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_flat_delay description" -#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." -#~ msgstr "Tempo de espera entre dois segmentos horizontais. Inserir tal espera pode ocasionar melhor aderência a camadas prévias nos pontos de conexão, mas atrasos muito longos podem causar estruturas murchas. Somente se aplica à Impressão em Arame." - -#~ msgctxt "inset_direction description" -#~ msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed." -#~ msgstr "Determina em que ordem as paredes são impressas. Imprimir parede mais externas antes ajuda com acurácia dimensional, já que falhas das paredes mais internas não se propagam para o exterior. No entanto imprimi-las depois permite melhor empilhamento quando seções pendentes são impressas." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Determina a prioridade desta malha ao considerar múltiplas malhas de preenchimento sobrepostas. Áreas onde elas se sobrepõem terão as configurações da malha com o menor número. Uma malha de prenchimento de ordem maior modificará o preenchimento das malhas de preenchimento com as malhas de ordem mais baixa e normais." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Determina a prioridade desta malha ao se considerar volumes sobrepostos. Áread onde múltiplas malhas residem serão ganhas pela malha com menor número. Uma malha de preenchimento com maior ordem modificará o preenchimento das malhas de preenchimento com malhas de ordem normal e menor." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Determina que malha de preenchimento está dentro do preenchimento de outra malha de preenchimento. Uma malha de preenchimento com ordem mais alta modificará o preenchimento de malhas de preenchimento com ordem mais baixa e malhas normais." - -#~ msgctxt "machine_disallowed_areas label" -#~ msgid "Disallowed areas" -#~ msgstr "Áreas proibidas" - -#~ msgctxt "wireframe_nozzle_clearance description" -#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." -#~ msgstr "Distância entre o bico e os filetes descendentes horizontais. Espaços livres maiores resultarão em filetes descendentes diagonais com ângulo menos acentuado, o que por sua vez resulta em menos conexões ascendentes à próxima camada. Somente se aplica à Impressão em Arame." - -#~ msgctxt "support_interface_line_distance description" -#~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately." -#~ msgstr "Distância entre as linhas impressas da interface de suporte. Este ajuste é calculado pela Densidade de Interface de Suporte, mas pode ser ajustado separadamente." - -#~ msgctxt "support_bottom_distance description" -#~ msgid "Distance from the print to the bottom of the support." -#~ msgstr "Distância da parte inferior do suporte até a impressão." - -#~ msgctxt "support_z_distance description" -#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded down to a multiple of the layer height." -#~ msgstr "Distância do topo/base da estrutura de suporte à impressão. Este vão provê o espaço para remover os suportes depois do modelo ser impresso. Este valor é arredondando para um múltiplo da altura de camada." - -#~ msgctxt "support_z_distance description" -#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -#~ msgstr "Distância do topo e base da estrutura de suporte para a impressão. Este vão provê um espaço para remover os suportes depois de o modelo ser impresso. O valor é arredondado para um múltiplo da altura de camada." - -#~ msgctxt "wireframe_up_half_speed description" -#~ msgid "" -#~ "Distance of an upward move which is extruded with half speed.\n" -#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -#~ msgstr "" -#~ "Distância de um movimento ascendente que é extrudado com metade da velocidade.\n" -#~ "Isto pode resultar em melhor aderência às camadas prévias, ao mesmo tempo em que não aquece demais essas camadas. Somente se aplica à Impressão em Arame." - -#~ msgctxt "support_xy_distance_overhang description" -#~ msgid "Distance of the support structure from the overhang in the X/Y directions. " -#~ msgstr "Distância da estrutura de suporte até a seção pendente nas direções X/Y. " - -#~ msgctxt "wireframe_fall_down description" -#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Distância na qual o material desaba após uma extrusão ascendente. Esta distância é compensada. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_drag_along description" -#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Distância na qual o material de uma extrusão ascendente é arrastado com a extrusão descendente diagonal. Esta distância é compensada. Somente se aplica à Impressão em Arame." - -#~ msgctxt "multiple_mesh_overlap label" -#~ msgid "Dual Extrusion Overlap" -#~ msgstr "Sobreposição de Extrusão Dual" - -#~ msgctxt "gradual_flow_discretisation_step_size description" -#~ msgid "Duration of each step in the gradual flow change" -#~ msgstr "Duração de cada passo na alteração de fluxo gradual" - -#~ msgctxt "support_enable label" -#~ msgid "Enable Support" -#~ msgstr "Habilitar Suportes" - -#~ msgctxt "gradual_flow_enabled description" -#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -#~ msgstr "Habilita mudanças graduais de fluxo. Quando habilitado, o fluxo é gradualmente aumentado ou reduzido para o fluxo alvo. Útil para impressoras com tubo bowden onde o fluxo não é imediatamente alterado quando o motor do extrusor inicia ou para." - -#~ msgctxt "support_enable description" -#~ msgid "Enable support structures. These structures support parts of the model with severe overhangs." -#~ msgstr "Habilita as estruturas de suporte. Essas estruturas apóiam partes do modelo que tenham seções pendentes." - -#~ msgctxt "machine_end_gcode label" -#~ msgid "End GCode" -#~ msgstr "G-Code Final" - -#~ msgctxt "material_end_of_filament_purge_length label" -#~ msgid "End Of Filament Purge Length" -#~ msgstr "Comprimento de Purga de Fim de Filamento" - -#~ msgctxt "material_end_of_filament_purge_speed label" -#~ msgid "End Of Filament Purge Speed" -#~ msgstr "Velocidade de Purga de Fim de Filamento" - -#~ msgctxt "speed_equalize_flow_enabled label" -#~ msgid "Equalize Filament Flow" -#~ msgstr "Equalizar Fluxo de Filamento" - -#~ msgctxt "fill_perimeter_gaps option everywhere" -#~ msgid "Everywhere" -#~ msgstr "Em todos os lugares" - -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Bottom Skins Into Infill" -#~ msgstr "Expande Contorno da Base Para Preenchimento" - -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Lower Skins" -#~ msgstr "Expandir Contornos Inferiores" - -#~ msgctxt "expand_skins_into_infill label" -#~ msgid "Expand Skins Into Infill" -#~ msgstr "Expandir Contorno Para Preenchimento" - -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Top Skins Into Infill" -#~ msgstr "Expandir Contorno do Topo Para Preenchimento" - -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Upper Skins" -#~ msgstr "Expandir Contornos Superiores" - -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand lower skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Expandir as áreas de contorno inferiores (áreas com ar abaixo) de modo que fiquem ancoradas pelas camadas de preenchimento acima e abaixo." - -#~ msgctxt "expand_skins_into_infill description" -#~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin." -#~ msgstr "Expandir áreas de perímetro das partes superiores e inferiores de superfícies chatas. Por default, o perímetro para sob as paredes que rodeiam o preenchimento mas isso pode fazer com que buracos apareçam caso a densidade de preenchimento seja baixa. Este ajuste estenda os perímetros além das linhas de parede de modo que o preenchimento da próxima camada fique em cima de perímetros." - -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Expande as áreas de perímetro da base (áreas com ar abaixo delas) de modo que se ancorem nas camadas de preenchimento embaixo e acima." - -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand the top skin areas (areas with air above) so that they support infill above." -#~ msgstr "Expande as áreas de perímetro do topo (áreas com ar acima delas) de modo que suportem o preenchimento de cima." - -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand upper skin areas (areas with air above) so that they support infill above." -#~ msgstr "Expandir as áreas de contorno superiores (áreas com ar acima) de modo que suportem o preenchimento acima." - -#~ msgctxt "support_conical_enabled description" -#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." -#~ msgstr "Recurso experimental: Faz as áreas de suporte menores na base que na seção pendente." - -#~ msgctxt "machine_filament_park_distance label" -#~ msgid "Filament Park Distance" -#~ msgstr "Distância de Descanso do Filamento" - -#~ msgctxt "fill_perimeter_gaps label" -#~ msgid "Fill Gaps Between Walls" -#~ msgstr "Preenche Lacunas Entre Paredes" - -#~ msgctxt "fill_perimeter_gaps description" -#~ msgid "Fills the gaps between walls where no walls fit." -#~ msgstr "Preenche as lacunas que ficam entre paredes quando paredes intermediárias não caberiam." - -#~ msgctxt "filter_out_tiny_gaps label" -#~ msgid "Filter Out Tiny Gaps" -#~ msgstr "Filtrar Pequenas Lacunas" - -#~ msgctxt "filter_out_tiny_gaps description" -#~ msgid "Filter out tiny gaps to reduce blobs on outside of model." -#~ msgstr "Filtrar (rempver) pequenas lacunas para reduzir bolhas no exterior do modelo." - -#~ msgctxt "small_feature_speed_factor_0 label" -#~ msgid "First Layer Speed" -#~ msgstr "Velocidade da Primeira Camada" - -#~ msgctxt "wireframe_flow_connection description" -#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." -#~ msgstr "Compensação de Fluxo quanto subindo ou descendo. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_flow_flat description" -#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." -#~ msgstr "Compensação de fluxo ao imprimir filetes planos. Somente se aplica à Impressão em Arame." - -#~ msgctxt "prime_tower_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value." -#~ msgstr "Compensação de Fluxo: a quantidade de material extrudado é multiplicado por este valor." - -#~ msgctxt "wireframe_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." -#~ msgstr "Compensação de fluxo: a quantidade de material extrudado é multiplicado por este valor. Somente se aplica à Impressão em Arame." - -#~ msgctxt "flow_rate_extrusion_offset_factor label" -#~ msgid "Flow rate compensation factor" -#~ msgstr "Fator de compensaçõ de taxa de fluxo" - -#~ msgctxt "flow_rate_max_extrusion_offset label" -#~ msgid "Flow rate compensation max extrusion offset" -#~ msgstr "Deslocamento de extrusão máxima da compensação de taxa de fluxo" - -#~ msgctxt "reset_flow_duration description" -#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -#~ msgstr "Para qualquer movimento mais longo que este valor, o fluxo material é resetado para o fluxo-alvo do percurso." - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code Flavour" -#~ msgstr "Sabor de G-Code" - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code flavour" -#~ msgstr "Sabor de G-Code" - -#~ msgctxt "material_guid description" -#~ msgid "GUID of the material. This is set automatically. " -#~ msgstr "GUID do material. Este valor é ajustado automaticamente. " - -#~ msgctxt "gantry_height label" -#~ msgid "Gantry height" -#~ msgstr "Altura do eixo" - -#~ msgctxt "machine_end_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very end - separated by \n" -#~ "." -#~ msgstr "" -#~ "Comandos de G-Code a serem executados no fim da impressão - separados por \n" -#~ "." - -#~ msgctxt "machine_start_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very start - separated by \n" -#~ "." -#~ msgstr "" -#~ "Comandos de G-Code a serem executados durante o início da impressão - separados por \n" -#~ "." - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "Gcode flavour" -#~ msgstr "Tipo de G-Code" - -#~ msgctxt "support_tree_enable description" -#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." -#~ msgstr "Gera um suporte em árvore com galhos que apóiam sua impressão. Isto pode reduzir uso de material e tempo de impressão, mas aumenta bastante o tempo de fatiamento." - -#~ msgctxt "ironing_enabled description" -#~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." -#~ msgstr "Passar sobre a superfície superior depois de impressa, mas sem extrudar material. A idéia é derreter o plástico do topo ainda mais, criando uma superfície mais lisa." - -#~ msgctxt "gradual_flow_discretisation_step_size label" -#~ msgid "Gradual flow discretisation step size" -#~ msgstr "Tamanho de passo da discretização de fluxo gradual" - +# +msgid "" +msgstr "" +"Project-Id-Version: Cura 5.0\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"PO-Revision-Date: 2023-11-22 17:17+0100\n" +"Last-Translator: Cláudio Sampaio \n" +"Language-Team: Cláudio Sampaio \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 3.4.1\n" + +msgctxt "ironing_inset description" +msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." +msgstr "A distância a manter das arestas do modelo. Passar a ferro as arestas da malha podem resultar em um aspecto entalhado da sua peça." + +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "Um fator indicando em quanto o filamento é comprimido entre o alimentador do hotend e o bico, usado para determinar em quanto mover o material na troca de filamento." + +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Uma lista de direções inteiras de filete a usar quando as camadas superiores usam o padrão de linhas ou ziguezague. Elementos desta lista são usados sequencialmente de acordo com o progresso das camadas e quando se chega ao fim da lista, se volta ao começo. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia que significa o uso dos ângulos default (45 e 135 graus)." + +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Uma lista de direções de linha inteiras para usar quando as camadas superiores e inferiores usarem os padrões de linha ou ziguezague. Elementos desta lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela inicia novamente. Os itens da lista são separados por vírgulas e a lita inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (45 e 135 graus)." + +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar o ângulo default de 0 graus." + +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (alternando entre 45 e 135 graus se as interfaces forem grossas, ou 90 se não)." + +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (alternando entre 45 e 135 graus se as interfaces forem grossas, ou 90 se não)." + +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (alternando entre 45 e 135 graus se as interfaces forem grossas, ou 90 se não)." + +msgctxt "infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." +msgstr "Uma lista de direções de filetes em números inteiros a usar. Elementos da lista são usados sequencialmente de acordo com o progresso das camadas e quando o fim da lista é alcançado, ela volta ao começo. Os itens da lista são separados por vírgula e a lista inteira é contida em colchetes. O default é uma lista vazia que implica em usar os ângulos default tradicionais (45 e 135 graus para os padrões linha e ziguezague e 45 graus para todos os outros padrões)." + +msgctxt "nozzle_disallowed_areas description" +msgid "A list of polygons with areas the nozzle is not allowed to enter." +msgstr "Uma lista de polígonos com áreas em que o bico é proibido de entrar." + +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "Uma lista de polígonos com áreas em que a cabeça de impressão é proibida de entrar." + +msgctxt "brim_inside_margin description" +msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +msgstr "Uma peça completamente contida em outra peça pode gerar um brim externo que toca o interior da outra parte. Este ajuste remove todo o brim dentro desta distância dos buracos internos." + +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "Uma recomendação de quão distante galhos podem se mover dos pontos que eles suportam. Os galhos podem violar este valor para alcançar seu destino (plataforma de impressão ou parte chata do modelo). Abaixar este valor pode fazer o suporte ficar mais estável, mas aumentará o número de galhos (e por causa disso, ambos o uso de material e o tempo de impressão) " + +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "Posição Absoluta de Purga do Extrusor" + +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "Máximo Variação das Camadas Adaptativas" + +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "Tamanho da Topografia de Camadas Adaptativas" + +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "Tamanho de Passo da Variação das Camadas Adaptativas" + +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "Camadas adaptativas fazem a computação das alturas de camada depender da forma do modelo." + +msgctxt "infill_wall_line_count description" +msgid "" +"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" +"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "" +"Adiciona paredes extras em torno da área de preenchimento. Tais paredes podem fazer filetes de contorno de topo e base afundarem menos, o que significa que você precisará de menos camadas de contorno de topo e base para a mesma qualidade, à custa de algum material extra.\n" +"Este recurso pode combinar com o Conectar Polígonos de Preenchimento para conectar todo o preenchimento em um único caminho de extrusão sem a necessidade de percursos ou retrações se os ajustes forem consistentes." + +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Aderência" + +msgctxt "material_adhesion_tendency label" +msgid "Adhesion Tendency" +msgstr "Tendência à Aderência" + +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Ajusta a quantidade de sobreposição entre as paredes e (os extremos de) linhas centrais do contorno, como uma porcentagem das larguras de filete de contorno e a parede mais interna. Uma sobreposição leve permite que as paredes se conectem firmemente ao contorno. Note que, dadas uma largura de contorno e filete de parede iguais, qualquer porcentagem acima de 50% pode fazer com que algum contorno ultrapasse a parede, pois a este ponto a posição do bico do extrusor de contorno pode já ter passado do meio da parede." + +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Ajusta a quantidade de sobreposição entre as paredes e (os extermos de) linhas centrais do contorno. Uma sobreposição pequena permite que as paredes se conectem firmemente ao contorno. Note que, dados uma largura de contorno e filete de parede iguais, qualquer valor maior que metade da largura da parede pode fazer com que o contorno ultrapasse a parede, pois a este ponto a posição do bico do extrusor de contorno pode já ter passado do meio da parede." + +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "Ajusta a densidade de preenchimento da impressão." + +msgctxt "support_interface_density description" +msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Ajusta a densidade dos topos e bases da estrutura de suporte. Um valor maior resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." + +msgctxt "support_tree_top_rate description" +msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "Ajusta a densidade da estrutura de suporte usada para gerar as pontas dos galhos. Um valor mais alto resulta em melhores seções pendentes, mas os suportes ficam mais difíceis de remover. Use Teto de Suporte para valores muito altos ou assegure-se que a densidade de suporte é similarmente alta no topo." + +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Ajusta a densidade da estrutura de suporte. Um valor mais alto resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Ajusta o diâmetro do filamento utilizado. Acerte este valor com o diâmetro real do filamento." + +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Ajusta a colocação das estruturas de suporte. Pode ser ajustada para suportes que somente tocam a mesa de impressão ou suportes em todos os lugares com seções pendentes (incluindo as que não estão pendentes em relação à mesa)." + +msgctxt "prime_tower_wipe_enabled description" +msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." +msgstr "Depois de imprimir a torre de purga com um bico, limpar o material escorrendo do outro bico na torre de purga." + +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "Quando a máquina troca de um extrusor para o outro, sobe-se um pouco em Z para criar um espaço entre o bico e a impressão. Isso impede que o bico escorra material em cima da impressão." + +msgctxt "retraction_combing option all" +msgid "All" +msgstr "Tudo" + +msgctxt "print_sequence option all_at_once" +msgid "All at Once" +msgstr "Todos de Uma Vez" + +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "Todos os ajustes que influenciam a resolução da impressão. Estes ajustes têm um impacto maior na qualidade (e tempo de impressão)" + +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Alternar Parede Adicional" + +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "Alternar a Remoção de Malhas" + +msgctxt "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "Alternar Direções de Parede" + +msgctxt "material_alternate_walls description" +msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." +msgstr "Alterna direções de parede a cada camada e reentrância. Útil para materiais que podem acumular stress, como em impressão com metal." + +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "Alumínio" + +msgctxt "machine_always_write_active_tool label" +msgid "Always Write Active Tool" +msgstr "Sempre Escrever a Ferramenta Ativa" + +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "Sempre retrair quando se mover para iniciar uma parede externa." + +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "Deslocamento adicional aplicado para todos os polígonos em cada camada. Valores positivos 'engordam' a camada e podem compensar por furos exagerados; valores negativos a 'emagrecem' e podem compensar por furos pequenos." + +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "Deslocamento adicional aplicado a todos os polígonos da primeira camada. Um valor negativo pode compensar pelo esmagamento da primeira camada conhecido como \"pata de elefante\"." + +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "Quantidade de deslocamento aplicado a todos os polígonos do suporte em cada camada. Valores positivos podem amaciar as áreas de suporte e resultar em suporte mais estável." + +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "Quantidade de deslocamento aplicado às bases do suporte." + +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "Quantidade de deslocamento aplicado aos tetos do suporte." + +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "Quantidade de deslocamento aplicado aos polígonos da interface de suporte." + +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "Quantidade a retrair do filamento tal que ele não escorra durante a sequência de limpeza." + +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "Um adicional ao raio do centro de cada cubo para verificar a borda do modelo, de modo a decidir se este cubo deve ser subdividido. Valores maiores levam a uma cobertura mais espessa de pequenos cubos perto da borda do modelo." + +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Malha Anti-Pendente" + +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Posição Retraída Anti-escorrimento" + +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Velocidade de Retração Anti-escorrimento" + +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "Aplicar o deslocamento de extrusor ao sistema de coordenadas. Afeta todos os extrusores." + +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "Nos lugares em que os modelos tocam, gerar uma estrutura de vigas interligada. Isto melhora a aderência entre modelos, especialmente modelos impressos com materiais diferentes." + +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Evitar Partes Impressas nas Viagens" + +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Evitar Suportes No Percurso" + +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Atrás" + +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Atrás à Esquerda" + +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Atrás à Direita" + +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" + +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Ambos" + +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "Ambos se sobrepõem" + +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Camadas Inferiores" + +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Camada Inicial do Padrão da Base" + +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Distância de Expansão do Contorno Inferior" + +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Largura de Remoção do Contorno Inferior" + +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Espessura Inferior" + +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "Densidade de Galho" + +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "Diâmetro de Galho" + +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "Ângulo de Diâmetro de Galho" + +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Posição Retraída de Preparação de Quebra" + +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Velocidade de Retração de Preparação de Quebra" + +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Temperatura de Quebra de Preparação" + +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Posição Retraída de Quebra" + +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Velocidade de Retração de Quebra" + +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Temperatura de Quebra" + +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Quebrar Suportes em Pedaços" + +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Velocidade de Ventoinha da Ponte" + +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Ponte Tem Camadas Múltiplas" + +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Densidade de Segundo Contorno da Ponte" + +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Velocidade da Ventoinha no Segundo Contorno da Ponte" + +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Fluxo de Segundo Contorno da Ponte" + +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Velocidade de Segundo Contorno da Ponte" + +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Densidade do Contorno de Ponte" + +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Fluxo do Contorno de Ponte" + +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Velocidade do Contorno de Ponte" + +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Limiar de Suporte de Contorno de Ponte" + +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Densidade Máxima do Preenchimento Esparso de Ponte" + +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Densidade de Terceiro Contorno da Ponte" + +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Velocidade da Ventoinha no Terceiro Contorno da Ponte" + +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Fluxo de Terceiro Contorno da Ponte" + +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Velocidade de Terceiro Contorno da Ponte" + +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Desengrenagem de Parede de Ponte" + +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Fluxo da Parede de Ponte" + +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Velocidade da Parede de Ponte" + +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Brim" + +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Distância do Brim" + +msgctxt "brim_inside_margin label" +msgid "Brim Inside Avoid Margin" +msgstr "Brim Dentro da Margem a Evitar" + +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Contagem de Linhas do Brim" + +msgctxt "brim_outside_only label" +msgid "Brim Only on Outside" +msgstr "Brim Somente Para Fora" + +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Brim Substitui Suporte" + +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Largura do Brim" + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Aderência à Mesa" + +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Extrusor de Aderência à Mesa" + +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Tipo de Aderência da Mesa de Impressão" + +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Material da Plataforma de Impressão" + +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Forma da Mesa" + +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Temperatura da Mesa de Impressão" + +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Temperatura da Mesa de Impressão da Camada Inicial" + +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Temperatura do Volume de Impressão" + +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "Ao habilitar este ajuste sua torre de purga ganhará um brim, mesmo que o modelo não tenha. Se você quiser uma base mais firme para uma torre alta, pode aumentar a altura." + +msgctxt "center_object label" +msgid "Center Object" +msgstr "Centralizar Objeto" + +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "Altera a geometria do modelo a ser impresso de tal modo que o mínimo de suporte seja exigido. Seções pendentes agudas serão torcidas pra ficar mais verticais. Áreas de seções pendentes profundas se tornarão mais rasas." + +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "Permite escolher entre as técnicas para geração de suporte. Suporte \"normal\" cria a estrutura de suporte diretamente abaixo das seções pendentes e vai em linha reta pra baixo. Suporte \"em árvore\" cria galhos na direção das seções pendentes, suportando o modelo nas pontas destes, e permitndo que se distribuam em torno do modelo para apoiá-lo na plataforma de impressão tanto quanto possível." + +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Velocidade de Desengrenagem" + +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Volume de Desengrenagem" + +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "A desengrenagem ou 'coasting' troca a última parte do caminho de uma extrusão pelo caminho sem extrudar. O material escorrendo é usado para imprimir a última parte do caminho de extrusão de modo a reduzir fiapos." + +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Modo de Combing" + +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "O Combing mantém o bico dentro de áreas já impressas ao fazer o percurso. Isto causa movimentações de percurso um pouco mais demoradas mas reduz a necessidade de retrações. Se o combing estiver desligado, o material sofrerá retração eo bico se moverá em linha reta até o próximo ponto. É possível também evitar combing sobre contornos inferiores e superiores ou somente fazer combing dentro do preenchimento." + +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Ajustes de Linha de Comando" + +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Ângulo de Suporte Cônico" + +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Largura Mínima do Suporte Cônico" + +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Conectar Linhas de Preenchimento" + +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Conectar Polígonos do Preenchimento" + +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Conectar Linhas de Suporte" + +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Conectar os Ziguezagues do Suporte" + +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Conectar Polígonos do Topo e Base" + +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "Conecta os caminhos de preenchimentos onde estiverem próximos um ao outro. Para padrões de preenchimento que consistam de vários polígonos fechados, a habilitação deste ajuste reduz bastante o tempo de percurso." + +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "Conecta os ziguezagues. Isto aumentará a força da estrutura de suporte em ziguezague." + +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "Conecta os extremos das linhas de suporte juntos. Habilitar este ajuste pode tornar seu suporte mais robusto e reduzir subextrusão, mas gastará mais material." + +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "Conecta as extremidades onde o padrão de preenchimento toca a parede interna usando uma linha que segue a forma da parede interna. Habilitar este ajuste pode fazer o preenchimento aderir melhor às paredes e reduzir o efeito do preenchimento na qualidade de superfícies verticais. Desabilitar este ajuda diminui a quantidade de material usado." + +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "Conectar caminhos de contorno da base e topo quando estiverem próximos entre si. Para o padrão concêntrico, habilitar este ajuste reduzirá bastante o tempo de percurso, mas por as conexões poderem acontecer no meio do preenchimento, este recurso pode reduzir a qualidade da superfície superior." + +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "Controla se os cantos do contorno do modelo influenciam a posição da costura. Nenhum significa que os cantos não terão influência na posição da costura. Ocultar Costura torna mais provável que a costura ocorra em um canto interior. Expôr Costura torna mais provável que a costura ocorra em um canto exterior. Ocultar ou Expôr Costura torna mais provável que a costura ocorra em um canto interior ou exterior. Ocultação Inteligente permite tanto cantos interiores quanto exteriores, mas escolhe os interiores mais frequentemente se apropriado." + +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "Converte cada file de preenchimento para este número de filetes. Os filetes extras não se cruzam, se evitam. Isto torna o preenchimento mais rígido, mas aumenta o tempo de impressão e uso do material." + +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Velocidade de Resfriamento" + +msgctxt "cooling description" +msgid "Cooling" +msgstr "Refrigeração" + +msgctxt "cooling label" +msgid "Cooling" +msgstr "Refrigeração" + +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Cruzado" + +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Cruzado" + +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "Cruzado 3D" + +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Tamanho de Bolso do Cruzado 3D" + +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Imagem de Densidade de Preenchimento Cruzado para Suporte" + +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Imagem de Densidade do Preenchimento Cruzado" + +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Material Cristalino" + +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Cúbico" + +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Subdivisão Cúbica" + +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Cobertura de Subdivisão Cúbica" + +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Malha de Corte" + +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "Dados relacionando fluxo de material (em mm³ por segundo) a temperatura (graus Celsius)." + +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Aceleração Default" + +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Temperatura Default da Plataforma de Impressão" + +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Jerk Default do Filamento" + +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Temperatura Default de Impressão" + +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Jerk Default nos eixos X-Y" + +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "O Jerk Default em Z" + +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "O valor default de jerk para movimentos no plano horizontal." + +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "O valor default de jerk para movimento na direção Z." + +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "O valor default de jerk para movimentação do filamento." + +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "Detectar pontes e modificar a velocidade de impressão, de fluxo e ajustes de fan onde elas forem detectadas." + +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "Determina a ordem na qual paredes são impressas. Imprimir as paredes externas primeiro ajuda na acuracidade dimensional, visto que falhas das paredes internas não poderão propagar externamente. No entanto, imprimi-las no final ajuda a haver melhor empilhamento quando seções pendentes são impressas. Quando há uma quantidade ímpar de paredes internas totais, a 'última linha central' é sempre impressa por último." + +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "Determina a prioridade desta malha ao considerar múltiplas malhas de preenchimento sobrepostas. Áreas onde múltiplas malhas de preenchimento se sobrepõem terão os ajustes da malha com a maior prioridade. Uma malha de preenchimento com prioridade maior modificará o preenchimento tanto das malhas de preenchimento com prioridade menor quanto das malhas normais." + +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Determina quando uma camada do preenchimento relâmpago deve suportar algo sobre si. Medido no ângulo de acordo com a espessura da camada." + +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Determina quando a camada de preenchimento relâmpago deve suportar o modelo sobre si. Medido no ângulo de acordo com a espessura." + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diâmetro" + +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "Aumento de Diâmetro para o Modelo" + +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "O diâmetro que cada galho tenta alcançar quando se aproxima da plataforma de impressão. Melhora aderência à plataforma." + +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "Diferentes opções que ajudam a melhorar a extrusão e a aderência à plataforma de impressão. Brim (bainha) adiciona uma camada única e chata em volta da base de seu modelo para impedir warping. Raft (balsa) adiciona uma grade densa com 'teto' abaixo do modelo. Skirt (saia) é uma linha impressa em volta do modelo, mas não conectada ao modelo, para apenas iniciar o processo de extrusão." + +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Áreas Proibidas" + +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "Distância entre as linhas de preenchimento impressas. Este ajuste é calculado pela densidade de preenchimento e a largura de extrusão do preenchimento." + +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "Distância entre os filetes da camada inicial da camada de suporte. Este ajuste é calculado pela densidade de suporte." + +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "Distância entre os filetes de impressão da base de suporte. Este ajuste é calculado pela densidade da Base de Suporte, mas pode ser ajustado separadamente." + +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "Distância entre os filetes de impressão do teto de suporte. Este ajuste é calculado pela Densidade do Teto de Suporte mas pode ser ajustado separadamente." + +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "Distância entre as linhas impressas da estrutura de suporte. Este ajuste é calculado a partir da densidade de suporte." + +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "Distância da impressão até a base do suporte. Note que o valor é arredondado pra cima para a próxima altura de camada." + +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "Distância do topo do suporte à impressão." + +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "Distância da base ou topo do suporte à impressão. Esta lacuna provê uma folga pra remover os suporte depois da impressão do modelo. A camada de suporte superior abaixo do modelo pode ser uma fração de camadas regulares." + +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "Distância do percurso inserido após cada linha de preenchimento, para fazer o preenchimento aderir melhor às paredes. Esta opção é similar à sobreposição de preenchimento mas sem extrusão e somente em uma extremidade do filete de preenchimento." + +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "Distância do percurso inserido após a parede externa para esconder melhor a costura em Z." + +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "Distância da Cobertura de Trabalho da impressão nas direções X e Y." + +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "Distância da cobertura de escorrimento da impressão nas direções X e Y." + +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "Distância da estrutura de suporte da seção pendente nas direções X/Y." + +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "Distância da estrutura de suporte até a impressão nas direções X e Y." + +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Pontos de distância são deslocados para suavizar o caminho" + +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Pontos de distância são deslocados para suavizar o caminho" + +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "Não gerar preenchimento para áreas menores que esta (usar contorno)." + +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Altura da Cobertura de Trabalho" + +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Limitação da Cobertura de Trabalho" + +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Distância X/Y da Cobertura de Trabalho" + +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Malha de Suporte Abaixo" + +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Extrusão Dual" + +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Elíptica" + +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Habilitar Controle de Aceleração" + +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Habilitar Ajustes de Ponte" + +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Habilitar Desengrenagem" + +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Habilitar Suporte Cônico" + +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Habilitar Cobertura de Trabalho" + +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "Habilitar Movimento Fluido" + +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Habilitar Passar a Ferro" + +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Habilitar Controle de Jerk" + +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Habilitar Controle de Temperatura do Bico" + +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Habilitar Cobertura de Escorrimento" + +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "Habilitar Massa de Purga" + +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Habilitar Torre de Purga" + +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Habilitar Refrigeração de Impressão" + +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Habilitar Retração" + +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Habilitar Brim de Suporte" + +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Habilitar Base de Suporte" + +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Habilitar Interface de Suporte" + +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Habilitar Teto de Suporte" + +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Habilitar Aceleração de Percurso" + +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Habilitar Jerk de Percurso" + +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "Habilita a cobertura exterior de escorrimento. Isso criará uma casca ou cobertura em volta do modelo que ajudará a limpar o segundo bico se estiver na mesma altura do primeiro bico." + +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "Habilita pequenas regiões (até a 'Largura de Teto/Base Pequenos') na camada superior com contorno (exposta ao ar) pra serem preenchidas com paredes ao invés do padrão default." + +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "Permite ajustar o jerk da cabeça de impressão quando a velocidade nos eixos X ou Y muda. Aumentar o jerk pode reduzir o tempo de impressão ao custo de qualidade de impressão." + +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "Permite ajustar a aceleração da cabeça de impressão. Aumentar as acelerações pode reduzir tempo de impressão ao custo de qualidade de impressão." + +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "Habilita as ventoinhas de refrigeração ao imprimir. As ventoinhas aprimoram a qualidade de impressão em camadas de tempo curto de impressão e em pontes e seções pendentes." + +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "G-Code Final" + +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Comprimento de Purga do Fim do Filamento" + +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Velocidade de Purga do Fim do Filamento" + +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "Força que o brim seja impresso em volta do modelo mesmo se este espaço fosse ser ocupado por suporte. Isto substitui algumas regiões da primeira camada de suporte por regiões de brim." + +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "Em Todo Lugar" + +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Exclusivo" + +msgctxt "experimental label" +msgid "Experimental" +msgstr "Experimental" + +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Expôr Costura" + +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Costura Extensa" + +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "Costura Extensa tenta costurar furos abertos na malha fechando o furo com polígonos que o tocam. Esta opção pode adicionar bastante tempo ao fatiamento das peças." + +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Contagem de Paredes de Preenchimento Extras" + +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Contagem de Paredes Extras de Contorno" + +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "Material extra a avançar depois da troca de bico." + +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posição X da Purga do Extrusor" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posição Y da Purga do Extrusor" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posição Z de Purga do Extrusor" + +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Extrusores Compartilham Aquecedor" + +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Extrusores Compartilham o Bico" + +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Modificador de Velocidade de Resfriamento de Extrusão" + +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "Fator de correção de largura de extrusão baseada na velocidade. Em 0%, a velocidade de movimento é mantida constante na Velocidade de Impressão. Em 100%, a velocidade de movimento é ajustada de forma que o fluxo (em mm³/s) seja mantido constante, isto é, filetes de metade da Largura de Filete normal são impressos duas vezes mais rápido e filetes duas vezes mais espessos são impressos na metade da velocidade. Um valor mais alto que 100% pode ajudar a compensar pela maior pressão necessária para extrudar filetes espessos." + +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Velocidade da Ventoinha" + +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Sobrepor Velocidade de Ventoinha" + +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "Contornos de aspectos menores que este comprimento serão impressos usando a Velocidade de Aspecto Pequeno." + +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Recursos que não foram completamente desenvolvidos ainda." + +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Diâmetro da Engrenagem de Alimentação" + +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Temperatura de Impressão Final" + +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Retração de Firmware" + +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Extrusor de Suporte da Primeira Camada" + +msgctxt "material_flow label" +msgid "Flow" +msgstr "Fluxo" + +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Raio de Equalização de Fluxo" + +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Fator de Compensação da Taxa de Fluxo" + +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Máximo Deslocamento de Extrusão de Compensação de Taxa de Fluxo" + +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Gráfico de Fluxo de Temperatura" + +msgctxt "material_flow_layer_0 description" +msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." +msgstr "Compensação de fluxo para a primeira camada; a quantidade de material extrudado na camada inicial é multiplicada por este valor." + +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "Compensação de fluxo nos filetes da base da primeira camada" + +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Compensação de fluxo em filetes de preenchimento." + +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "Compensação de fluxo em filetes do teto ou base do suporte." + +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "Compensação de Fluxo em filetes das áreas no topo da impressão." + +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Compensação de fluxo em filetes de torre de purga." + +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Compensação de Fluxo em filetes de Skirt e Brim." + +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Compensação de fluxo nos filetes da base do suporte." + +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Compensação de fluxo em filetes do teto de suporte." + +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Compensação de fluxo em filetes de estruturas de suporte." + +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "Compensação de fluxo no filete de parede mais externo da primeira camada." + +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "Compensação de fluxo no filete de parede mais externo." + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Compensação de fluxo no filete de parede externo de superfície do topo." + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Compensação de fluxo nos files de parede de superfície do topo excetuando o mais externo." + +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Compensação de fluxo em filetes do topo e base." + +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "Compensação de fluxo nos filetes de parede para todos os filetes exceto o mais externo, mas só para a primeira camada" + +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "Compensação de fluxo em todos os filetes de parede excetuando o mais externo." + +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Compensação de fluxo em filetes das paredes." + +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "Compensação de fluxo: a quantidade de material extrudado é multiplicado por este valor." + +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "Ângulo de Movimento Fluido" + +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "Distância de Deslocamento do Movimento Fluido" + +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "Distância Pequena do Movimento Fluido" + +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Comprimento da Descarga de Purga" + +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Velocidade de Descarga de Purga" + +msgctxt "min_wall_line_width description" +msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." +msgstr "Para estruturas finas por volta de uma ou duas vezes o tamanho do bico, as larguras de linhas precisam ser alteradas para aderir à grossura do modelo. Este ajuste controla a largura mínima de filete permite para as paredes. As larguras mínimas de filete inerentemente também determinam as larguras máximas, já que transicionamos de N pra N+1 parede na grossura de geometria onde paredes N são largas e as paredes N+1 são estreitas. A maior largura possível de parede é duas vezes a Largura Mínima de Filete de Parede." + +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Frente" + +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Frente à Esquerda" + +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Frente à Direita" + +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Completo" + +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Contorno Felpudo" + +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Densidade do Contorno Felpudo" + +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Contorno Felpudo Externo Apenas" + +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Distância de Pontos do Contorno Felpudo" + +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Espessura do Contorno Felpudo" + +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "Sabor de G-Code" + +msgctxt "machine_end_gcode description" +msgid "" +"G-code commands to be executed at the very end - separated by \n" +"." +msgstr "" +"Comandos G-Code a serem executados no final da impressão - separados por \n" +"." + +msgctxt "machine_start_gcode description" +msgid "" +"G-code commands to be executed at the very start - separated by \n" +"." +msgstr "" +"Comandos G-Code a serem executados no início da impressão - separados por \n" +"." + +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "GUID do material. É ajustado automaticamente." + +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Altura do Eixo" + +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "Gerar Estrutura Interligada" + +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Gerar Suporte" + +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "Gera o brim dentro das regiões de preenchimento de suporte da primeira camada. Este brim é impresso sob o suporte, não em volta dele. Habilitar este ajuste aumenta a aderência de suporte à mesa de impressão." + +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "Gera uma interface densa entre o modelo e o suporte. Isto criará um contorno no topo do suporte em que o modelo é impresso e na base do suporte, onde ele fica sobre o modelo." + +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "Gera um bloco denso de material entre a base do suporte e o modelo. Isto criará uma divisória entre o modelo e o suporte." + +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "Gera um bloco denso de material entre o topo do suporte e o modelo. Isto criará uma divisória entre o modelo e o suporte." + +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "Gerar estrutura que suportem partes do modelo que tenham seções pendentes. Sem estas estruturas, tais partes desabariam durante a impressão." + +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Vidro" + +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "Passa sobre a superfície superior uma vez a mais, mas extrudando muito pouco material. Isto serve para derreter mais o plástico em cima, criando uma superfície lisa. A pressão na câmara do bico é mantida alta tal que as rugas na superfície são preenchidas com material." + +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Altura de Passo do Preenchimento Gradual" + +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Passos Graduais de Preenchimento" + +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Altura de Passo do Preenchimento Gradual de Suporte" + +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Passos de Preenchimento Gradual de Suporte" + +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "Gradualmente reduzir até esta temperatura quanto se estiver imprimindo a velocidades reduzidas devidas ao tempo mínimo de camada." + +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Grade" + +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Grade" + +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Grade" + +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Grade" + +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Grade" + +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" + +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Agrupar Paredes Externas" + +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Giróide" + +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Giróide" + +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "Tem Estabilização de Temperatura do Volume de Impressão" + +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Tem Mesa Aquecida" + +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Velocidade de Aquecimento" + +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Comprimento da Zona de Aquecimento" + +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "Limitação de altura da cobertura de trabalho. Acima desta altura a cobertura não será impressa." + +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Ocultar Costura" + +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Ocultar ou Expor Costura" + +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Expansão Horizontal do Furo" + +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "Diâmetro Máximo da Expansão Horizontal de Furo" + +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "Furos e contornos de partes com diâmetro menor que este serão impressos usando a Velocidade de Aspecto Pequeno." + +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Expansão Horizontal" + +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Compensação de Fator de Encolhimento Horizontal" + +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "Quanto o filamento pode ser esticado antes que quebre, quando aquecido." + +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "De quanto o material precisa ser retraído antes que pare de escorrer." + +msgctxt "flow_rate_extrusion_offset_factor description" +msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." +msgstr "Em quanto mover o filamento para compensar mudanças na taxa de fluxo, como uma porcentagem da distância que o filamento seria movido em um segundo de extrusão." + +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "De quanto o filamento deve ser retraído para se destacar completamente." + +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "Qual a velocidade do material para que seja retraído antes de quebrar em uma retração." + +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "Qual a velocidade do material para que seja retraído durante a troca de filamento sem escorrimento." + +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "Quão rápido purgar o material depois de trocar um carretel vazio por um novo carretel do mesmo material." + +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "Quão rápido purgar o material depois de alternar para um material diferente." + +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "Quanto tempo o material pode ser mantido fora de armazenamento seco com segurança." + +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção X." + +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção Y." + +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção Z." + +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "Quantos passos dos motores resultarão no movimento da engrenagem de alimentação em um milímetro da circunferência." + +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "Quanto material usar para purgar o material anterior do bico (em comprimento de filamento) quando um carretel vazio for trocado por um carretel novo do mesmo material." + +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "Quanto material usar para purgar o material anterior do bico (em comprimento de filamento) quando alternar para um material diferente." + +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "Quanto é assumido que o filamento de cada extrusor tenha retraído da ponta do bico ao completar o script g-code de início da impressora; o valor deve ser igual ou superior ao comprimento da parte comum dos dutos do bico." + +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "Como a interface de suporte a o suporte interagirão quando eles se sobrepuserem. No momento implementado apenas para teto de suporte." + +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "Quão alto um galho tem que ser para ser agregado ao modelo. Previne pequenos nódulos de suporte. Este ajuste é ignorado quando um galho está suportando teto de suporte." + +msgctxt "bridge_skin_support_threshold description" +msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." +msgstr "Se uma região do contorno for suportada por menos do que esta porcentagem de sua área, imprimi-la com os ajustes de ponte. Senão, imprimir usando os ajustes normais de contorno." + +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "Se um segmento do percurso do extrusor se desviar do movimento geral por um ângulo maior que esse, será suavizado." + +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "Se habilitado, a segunda e terceira camadas sobre o ar serão impressas usando os ajustes seguintes. Senão, estas camadas serão impressas com ajustes normais." + +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "Se for detectado que a cabeça de impressão estaria alternando em rápida sucessão entre números diferentes de parede, não fazer tal alternação. Remove transições se elas estiverem próximas até essa distância." + +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Se o Raft estiver habilitado, esta é a área extra do raft em volta do modelo que também faz parte dele. Aumentar esta margem criará um raft mais forte mas também gastará mais material e deixará menos área para sua impressão." + +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "Ignora a geometria interna de volumes sobrepostos dentro de uma malha e imprime os volumes como um único volume. Isto pode ter o efeito não-intencional de fazer cavidades desaparecerem." + +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Incluir Temperatura da Mesa" + +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Incluir Temperaturas de Material" + +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Inclusivo" + +msgctxt "infill description" +msgid "Infill" +msgstr "Preenchimento" + +msgctxt "infill label" +msgid "Infill" +msgstr "Preenchimento" + +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Aceleração do Preenchimento" + +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Preenchimento Antes das Paredes" + +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Densidade do Preenchimento" + +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Extrusor do Preenchimento" + +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Fluxo de Preenchimento" + +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Jerk do Preenchimento" + +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Espessura da Camada de Preenchimento" + +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Direções de Filetes de Preenchimento" + +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Distância da Linha de Preenchimento" + +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "Multiplicador de Filete de Preenchimento" + +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Largura de Extrusão do Preenchimento" + +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Malha de Preenchimento" + +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Ângulo de Seções Pendentes do Preenchimento" + +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Sobreposição de Preenchimento" + +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "Porcentagem de Sobreposição do Preenchimento" + +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Padrão de Preenchimento" + +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Velocidade de Preenchimento" + +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Suporte do Preenchimento" + +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Otimização de Percurso de Preenchimento" + +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "Distância de Varredura do Preenchimento" + +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "Deslocamento X do Preenchimento" + +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Deslocamento do Preenchimento Y" + +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "Camadas Inferiores Iniciais" + +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Velocidade Inicial da Ventoinha" + +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Aceleração da Camada Inicial" + +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "Fluxo da Base da Camada Inicial" + +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "Diâmetro da Camada Inicial" + +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Fluxo Inicial de Camada" + +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Altura da Primeira Camada" + +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Expansão Horizontal da Camada Inicial" + +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "Fluxo de Parede Interna da Camada Inicial" + +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Jerk da Camada Inicial" + +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Largura de Extrusão da Camada Inicial" + +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "Fluxo de Parede Externa da Camada Inicial" + +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Aceleração de Impressão da Camada Inicial" + +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Jerk de Impressão da Camada Inicial" + +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Velocidade de Impressão da Camada Inicial" + +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Velocidade da Camada Inicial" + +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "Distância de Filetes da Camada Inicial de Suporte" + +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Aceleração de Percurso da Camada Inicial" + +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Jerk de Percurso da Camada Inicial" + +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Velocidade de Percurso da Camada Inicial" + +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Sobreposição em Z das Camadas Iniciais" + +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Temperatura Inicial de Impressão" + +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Aceleração das Paredes Interiores" + +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Extrusor da Parede Interior" + +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Jerk das Paredes Internas" + +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Velocidade da Parede Interior" + +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Fluxo da(s) Parede(s) Interna(s)" + +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Largura de Extrusão das Paredes Internas" + +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "Penetração adicional aplicada ao caminho da parede externa. Se a parede externa for menor que o bico, e impressa depois das paredes internas, use este deslocamento para fazer o orifício do bico se sobrepor às paredes internas ao invés de ao lado de fora do modelo." + +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "De Dentro Pra Fora" + +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "Linhas de interface preferidas" + +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "Interface preferida" + +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "Contagem de Camadas das Vigas Interligadas" + +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "Largura da Viga Interligada" + +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "Prevenção de Fronteira de Interligação" + +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "Profundidade de Interligação" + +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "Orientação da Estrutura de Interligação" + +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Passar a Ferro Somente Camada Mais Alta" + +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Aceleração de Passar a Ferro" + +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Fluxo de Passagem a Ferro" + +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Penetração da Passagem a Ferro" + +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Jerk de Passar a Ferro" + +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Espaçamento de Passagem a Ferro" + +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Padrão de Passagem a Ferro" + +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Velocidade de Passar o Ferro" + +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "Origem é no Centro" + +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "É material de suporte" + +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "Este material é do tipo que se destaca completamente quando aquecido (cristalino), ou é o tipo que produz cadeias de polímero entrelaçadas (não-cristalino)?" + +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "Se esse material é ou não tipicamente usado como material de suporte durante a impressão." + +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "Flutuar movimento apenas nos contornos e não nos furos das peças." + +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Manter Faces Desconectadas" + +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Altura de Camada" + +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "X Inicial da Camada" + +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Y Inicial da Camada" + +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "Espessura de camada da camada de base do raft. Esta camada deve ser grossa para poder aderir firmemente à mesa." + +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "Espessura da camada intermediária do raft." + +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Espessura de camada das camadas superiores do raft." + +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "Evita uma conexão entre linhas de suporte uma vez a cada N milímetros para fazer a estrutura de suporte mais fácil de ser removida." + +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Esquerda" + +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Levantar Cabeça" + +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Relâmpago" + +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Ângulo de Seção Pendente do Preenchimento Relâmpago" + +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Ângulo de Poda do Preenchimento Relâmpago" + +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Ângulo de Retificação do Preenchimento Relâmpago" + +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Ângulo de Suporte do Preenchimento Relâmpago" + +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "Limitar Alcance de Galho" + +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "Limita quão longe cada galho deve percorrer do ponto que ele suporta. Isto pode fazer o suporte mais estável, mas aumentará a quantidade de galhos (e por causa disso, uso de material e tempo de impressão)" + +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "Limitar o volume desta malha para dentro de outras malhas. Você pode usar isto para fazer certas áreas de uma malha imprimirem com ajustes diferentes, incluindo extrusor diferente." + +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Limitado" + +msgctxt "line_width label" +msgid "Line Width" +msgstr "Largura de Extrusão" + +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Máquina" + +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Profundidade da Mesa" + +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Polígono da Cabeça com Ventoinha" + +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Altura do Volume" + +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Tipo de Máquina" + +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Largura da Mesa" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Ajustes específicos da máquina" + +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Torna Seções Pendentes Imprimíveis" + +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "Faz malhas que tocam uma à outra se sobreporem um pouco. Isto faz com que elas se combinem com mais força." + +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "Faz as áreas de suporte menores na base que na seção pendente." + +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "Cria suport em todo lugar abaixo da malha de suporte de modo que não haja seções pendentes nela." + +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "Faz a posição de purga do extrusor absoluta ao invés de relativa à última posição conhecida da cabeça." + +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +msgstr "Faz a primeira e segunda camadas do modelo se sobreporem na direção Z para compensar pelo filamento perdido no vão aéreo. Todos os modelos acima da primeira camada de modelo serão deslocados para baixo por essa distância." + +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Faz as malhas mais adequadas para impressão 3D." + +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" + +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" + +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volumétrico)" + +msgctxt "material description" +msgid "Material" +msgstr "Material" + +msgctxt "material label" +msgid "Material" +msgstr "Material" + +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "GUID do Material" + +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Volume de Material Entre Limpezas" + +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Máxima Distância de Combing Sem Retração" + +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Aceleração Máxima em X" + +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Aceleração Máxima em Y" + +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Aceleração Máxima em Z" + +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "Ângulo Máximo de Galho" + +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Desvio Máximo" + +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Desvio Máximo de Área de Extrusão" + +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Velocidade Máxima da Ventoinha" + +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Aceleração Máxima do Filamento" + +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Ângulo Máximo do Modelo" + +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Área Máxima de Furo de Seções Pendentes" + +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Duração Máxima de Descanso" + +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Resolução Máxima" + +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Contagem de Retrações Máxima" + +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Ângulo Máximo do Contorno para Expansão" + +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Velocidade Máxima de Extrusão" + +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Velocidade Máxima em X" + +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Velocidade Máxima em Y" + +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Velocidade Máxima em Z" + +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Diâmetro Máximo Suportado por Torres" + +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Máxima Resolução de Percurso" + +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "A aceleração máxima para o motor da impressora na direção X" + +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "A aceleração máxima para o motor da impressora na direção Y." + +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "A aceleração máxima para o motor da impressora na direção Z." + +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "Aceleração máxima para a entrada de filamento no hotend." + +msgctxt "bridge_sparse_infill_max_density description" +msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." +msgstr "Densidade máxima do preenchimento considerado esparso. Contorno sobre o preenchimento esparso é considerado não-suportado e portanto será tratado como contorno de ponte." + +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "Diâmetro máximo nas direções X e Y da pequena área que será suportada por uma torre especializada de suporte." + +msgctxt "max_extrusion_before_wipe description" +msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." +msgstr "Material máximo que pode ser extrudado antes que outra limpeza de bico seja iniciada. Se este valor for menor que o volume de material requerido em uma camada, ele não terá efeito nenhum nesta camada, isto é, está limitado a uma limpeza por camada." + +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Sobreposição de Malhas Combinadas" + +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Correções de Malha" + +msgctxt "mesh_position_x label" +msgid "Mesh Position X" +msgstr "Posição X da Malha" + +msgctxt "mesh_position_y label" +msgid "Mesh Position Y" +msgstr "Posição Y da Malha" + +msgctxt "mesh_position_z label" +msgid "Mesh Position Z" +msgstr "Posição Z da Malha" + +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "Hierarquia do Processamento de Malha" + +msgctxt "mesh_rotation_matrix label" +msgid "Mesh Rotation Matrix" +msgstr "Matriz de Rotação da Malha" + +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Meio" + +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Largura Mínima do Molde" + +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Tempo Mínima em Temperatura de Espera" + +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Comprimento de Parede de Ponte Mínimo" + +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Largura Mínima de Filete de Parede Par" + +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Janela de Distância de Extrusão Mínima" + +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Mínimo Tamanho de Detalhe" + +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Velocidade Mínima de Alimentação" + +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "Altura Mínima Para O Modelo" + +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Área Mínima para Preenchimento" + +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Tempo Mínimo de Camada" + +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Largura Mínima de Filete de Parede Ímpar" + +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Mínima Circunferência do Polígono" + +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Largura Mínima de Contorno para Expansão" + +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Velocidade Mínima" + +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Área Mínima de Suporte" + +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Área Mínima de Base de Suporte" + +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Área Mínima de Interface de Suporte" + +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Área Mínima de Teto de Suporte" + +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Distância Mínima de Suporte X/Y" + +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Largura Mínima de Filete de Parede Fina" + +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Volume Mínimo Antes da Desengrenagem" + +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Largura Mínina de Filete de Parede" + +msgctxt "minimum_interface_area description" +msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Área mínima para os polígonos da interface de suporte. Polígonos que têm área menor que este valor serão impressos como suporte normal." + +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "Área mínima para polígonos de suporte. Polígonos que tiverem uma área menor que essa não serão gerados." + +msgctxt "minimum_bottom_area description" +msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Área mínima para as bases do suport. Polígonos que têm área menor que este valor serão impressos como suporte normal." + +msgctxt "minimum_roof_area description" +msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Área mínima para os tetos do suporte. Polígonos que têm área menor que este valor serão impressos como suporte normal." + +msgctxt "min_feature_size description" +msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." +msgstr "Espessura mínima de detalhes finos. Detalhes de modelo que forem mais finos que este valor não serão impressos, enquanto que detalhes mais espessos que o Tamanho Mínimo de Detalhe serão aumentados para a Largura Mínima de Filete de Parede." + +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "Largura mínima para a qual a base do suporte cônico é reduzida. Pequenas larguras podem levar a estruturas de suporte instáveis." + +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Molde" + +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Ângulo do Molde" + +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Altura de Teto do Molde" + +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Ordem de Passagem a Ferro Monotônica" + +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Ordem da Superfície Monotônica Superior" + +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Ordem Monotônica Superior/Inferior" + +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "Múltiplas linhas de skirt te ajudam a fazer purga de sua extrusão melhor para pequenos modelos. Se o valor for zero o skirt é desabilitado." + +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "Multiplicador da largura de extrusão da primeira camada. Aumentar este ajuste pode melhorar a aderência à mesa." + +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Fator de Movimento Sem Carga" + +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Sem Contorno nas Lacunas Z" + +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Jeitos não-tradicionais de imprimir seus modelos." + +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Nenhuma" + +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Nenhum" + +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Normal" + +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Normal" + +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "Normalmente o Cura tenta costurar pequenos furos na malha e remover partes de uma camada com grandes furos. Habilitar esta opção mantém as partes que ele não consegue costurar. Esta opção deve ser usada como última alternativa quando tudo o mais falhar para produzir G-Code apropriado." + +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Não no Contorno" + +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Não na Superfície Externa" + +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Ângulo do Bico" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diâmetro do bico" + +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Áreas Proibidas para o Bico" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID do Bico" + +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Comprimento do Bico" + +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Quantidade de Avanço Extra da Troca de Bico" + +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Velocidade de Avanço da Troca de Bico" + +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Velocidade de Retração da Troca de Bico" + +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Distância de Retração da Troca de Bico" + +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Velocidade de Retração da Troca do Bico" + +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Número de extrusores" + +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Número de Extrusores Habilitados" + +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Número de Camadas Mais Lentas" + +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "O número de carros extrusores que estão habilitados; automaticamente ajustado em software" + +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "Número de carros extrusores. Um carro extrusor é a combinação de um alimentador/tracionador, opcional tubo de filamento guiado e o hotend." + +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "Número de vezes com que mover o bico através da varredura." + +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "Número de vezes para reduzir a densidade de preenchimento pela metade quando estiver chegando mais além embaixo das superfícies superiores. Áreas que estão mais perto das superfícies superiores ganham uma densidade maior, numa gradação até a densidade configurada de preenchimento." + +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "Número de vezes para reduzir a densidade de preenchimento de suporte pela metade quando avançando abaixo das superfícies inferiores. Áreas mais próximas ao topo terão maior densidade, até a Densidade de Preenchimento de Suporte." + +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Octeto" + +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Desligado" + +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "Deslocamento aplicado ao objeto na direção X." + +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "Deslocamento aplicado ao objeto na direção Y." + +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "Deslocamento aplicado ao objeto na direção Z. Com isto você pode fazer afundamento do objeto na plataforma." + +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Deslocamento com o Extrusor" + +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "Na plataforma de impressão quando possível" + +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "No modelo se requerido" + +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "Um de Cada Vez" + +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "Somente fazer o Salto Z quando se mover sobre partes impressas que não podem ser evitadas pelo movimento horizontal quando a opção 'Evitar Peças Impressas nas Viagens' estiver ligada." + +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "Somente executar a passagem a ferro na última camada da malha. Isto economiza tempo se as camadas abaixo não precisarem de um acabamento de superfície amaciado." + +msgctxt "brim_outside_only description" +msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +msgstr "Imprimir o Brim somente no lado de fora do modelo. Isto reduz a quantidade de brim a ser removida no final, e não reduz tanto a aderência à mesa." + +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Ângulo da Cobertura de Escorrimento" + +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Distância da Cobertura de Escorrimento" + +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "Alcance Ótimo de Galho" + +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Otimizar Ordem de Impressão de Paredes" + +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "Otimiza a ordem em que as paredes são impressas, tais que o número de retrações e a distância percorrida sejam reduzidos. A maioria das peças se beneficiará deste ajuste habilitado mas outras poderão demorar mais, portanto compare as estimativas de tempo de impressão com e sem otimização. A primeira camada não é otimizada quando o brim é selecionado como tipo de aderência da mesa de impressão." + +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Diâmetro Externo do Bico" + +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Aceleração da Parede Exterior" + +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Extrusor da Parede Externa" + +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Fluxo da Parede Externa" + +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Penetração da Parede Externa" + +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "Jerk da Parede Exterior" + +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Largura de Extrusão da Parede Externa" + +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Velocidade da Parede Exterior" + +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Distância de Varredura da Parede Externa" + +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Paredes externas de ilhas diferentes na mesma camada são impressas em sequência. Quando habilitado, as mudanças de fluxo são limitadas porque as paredes são impressas um tipo a cada vez; quando desabilitado, o número de percursos entre as ilhas é reduzido porque as paredes nas mesmas ilhas são agrupadas." + +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "De Fora Pra Dentro" + +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Ângulo de Parede Pendente" + +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Velocidade de Parede Pendente" + +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "Paredes pendentes serão impressas com esta porcentagem de sua velocidade de impressão normal." + +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Pausa após desfazimento da retração." + +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "Porcentagem da velocidade de ventoinha a usar quando imprimir paredes e contornos em pontes." + +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "Porcentagem da velocidade da ventoinha a usar quando se imprimir a segunda camada de contorno da ponte." + +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "Porcentagem de velocidade da ventoinha a usar ao imprimir as regiões de contorno imediatamente sobre o suporte. Usar uma velocidade de ventoinha alta pode fazer o suporte mais fácil de remover." + +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "Porcentagem da velocidade da ventoinha a usar quando se imprimir a terceira camada de contorno da ponte." + +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "Polígonos em camadas fatiadas que tiverem uma circunferência menor que esta quantia serão excluídos. Menores valores levam a malha de maior resolução ao custo de tempo de fatiamento. Serve melhor para impressoras SLA de alta resolução e pequenos modelos 3D com muitos detalhes." + +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "Ângulo Preferido de Galho" + +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "Impede de alternar entre uma parede a mais e uma a menos. Esta margem estende o alcance dos comprimentos de file a seguir para [Largura Mínima de Filete de Parede - Margem, 2 * Largura Mínima de Filete de Parede + Margem]. Aumentar esta margem reduz o número de transições, que por sua vez reduz o número de paradas e inícios de extrusão e tempo de percurso. No entanto, variação de largura de filete pode levar a problemas de subextrusão ou sobre-extrusão." + +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Aceleração da Torre de Purga" + +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Base" +msgstr "Base da Torre de Purga" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "Altura da Base da Torre de Purga" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "Tamanho da Base da Torre de Purga" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "Inclinação da Base da Torre de Purga" + +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Fluxo da Torre de Purga" + +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "Jerk da Torre de Purga" + +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Largura de Extrusão da Torre de Purga" + +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Volume Mínimo da Torre de Purga" + +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "Espaçamento do Filete de Raft da Torre de Purga" + +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Tamanho da Torre de Purga" + +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Velocidade da Torre de Purga" + +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "Posição X da Torre de Purga" + +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Posição Y da Torre de Purga" + +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Aceleração da Impressão" + +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Jerk da Impressão" + +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Sequência de Impressão" + +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Velocidade de Impressão" + +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Imprimir Paredes Finas" + +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "Imprimir uma torre próxima à impressão que serve para purgar o material a cada troca de bico." + +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "Imprime estruturas de preenchimento somente onde os tetos do modelo devam ser suportados. Habilitar este ajuste reduz tempo de impressão e uso de material, mas leva a resistências não-uniformes no objeto." + +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprime filetes de passagem a ferro em uma ordem que os faz com que sempre se sobreponham a linhas adjacentes em uma única direção. Isso faz levar um pouco mais de tempo na impressão, mas torna as superfícies mais consistentes." + +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "Imprimir modelos como moldes com o negativo das peças de modo que se possa encher de resina para as gerar." + +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "Imprime partes do modelo que são horizontalmente mais finas que o tamanho do bico." + +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "Velocidade de impressão a usar quando imprimir a segunda camada de ponte." + +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "Velocidade de impressão a usar quando imprimir a terceira camada de ponte." + +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "Imprime o preenchimento antes de imprimir as paredes. Imprimir as paredes primeiro pode levar a paredes mais precisas, mas seções pendentes são impressas com pior qualidade. Imprimir o preenchimento primeiro leva a paredes mais fortes, mas o padrão de preenchimento pode às vezes aparecer através da superfície." + +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprime os filetes da superfície superior em uma ordem que faz com que sempre se sobreponham a linhas adjacentes em uma única direção. Faz levar um pouco mais de tempo na impressão, mas torna as superfícies planas mais consistentes." + +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprime filetes superiores e inferiores em uma ordem que os faz sempre se sobreporem a filetes adjacentes em uma única direção. Faz levar um pouco mais de tempo na impressão, mas torna superfícies planas mais consistentes." + +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Temperatura de Impressão" + +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Temperatura de Impressão da Camada Inicial" + +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "Imprimir o filete mais interno de skirt com múltiplas camadas torna mais fácil removê-lo." + +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "Imprime uma parede adicional a cada duas camadas. Deste jeito o preenchimento fica aprisionado entre estas paredes extras, resultando em impressões mais fortes." + +msgctxt "resolution label" +msgid "Quality" +msgstr "Qualidade" + +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Quarto Cúbico" + +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Raft" + +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Vão Aéreo do Raft" + +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Extrusor da Base do Raft" + +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Velocidade de Ventoinha da Base do Raft" + +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Espaçamento de Filete de Base do Raft" + +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Largura de Linha da Base do Raft" + +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Aceleração de Impressão da Base do Raft" + +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Jerk de Impressão da Base do Raft" + +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Velocidade de Impressão da Base do Raft" + +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Espessura da Base do Raft" + +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Contagem de Paredes da Base do Raft" + +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Margem Adicional do Raft" + +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Velocidade de Ventoinha no Raft" + +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Extrusor do Meio do Raft" + +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Velocidade de Ventoinha do Meio do Raft" + +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Camadas Centrais do Raft" + +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Largura da Linha do Meio do Raft" + +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Aceleração de Impressão do Meio do Raft" + +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Jerk de Impressão do Meio do Raft" + +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Velocidade de Impressão do Meio do Raft" + +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Espaçamento do Meio do Raft" + +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Espessura do Meio do Raft" + +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Aceleração de Impressão do Raft" + +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Jerk de Impressão do Raft" + +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Velocidade de Impressão do Raft" + +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Amaciamento do Raft" + +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Extrusor do Topo do Raft" + +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Velocidade da Ventoinha para o Topo do Raft" + +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Espessura da Camada Superior do Raft" + +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Camadas Superiores do Raft" + +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Largura do Filete Superior do Raft" + +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Aceleração de Impressão do Topo do Raft" + +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Jerk de Impressão do Topo do Raft" + +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Velocidade de Impressão do Topo do Raft" + +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Espaçamento Superior do Raft" + +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Aleatório" + +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Aleatorizar o Começo do Preenchimento" + +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "Aleatoriza qual linha do preenchimento é impressa primeiro. Isto evita que um segmento seja mais forte que os outros, mas ao custo de um percurso adicional." + +msgctxt "magic_fuzzy_skin_enabled description" +msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." +msgstr "Faz flutuações de movimento aleatório enquanto imprime a parede mais externa, de modo que a superfície do objeto ganhe uma aparência felpuda ou acidentada." + +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Retangular" + +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "Velocidade Regular da Ventoinha" + +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Velocidade Regular da Ventoinha na Altura" + +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Velocidade Regular da Ventoinha na Camada" + +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "Limite de Tempo para Mudança de Velocidade da Ventoinha" + +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Extrusão Relativa" + +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Remover Todos os Furos" + +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Remover Camadas Iniciais Vazias" + +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Remover Interseções de Malha" + +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Remover Cantos Internos de Raft" + +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "Remove áreas onde várias malhas estão sobrepondo uma à outra. Isto pode ser usado se objetos de material duplo se sobrepõem um ao outro." + +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "Remove camadas vazias entre a primeira camada impressa se estiverem presentes. Desabilitar este ajuste pode criar camadas iniciais vazias se a Tolerância de Fatiamento estiver configurada para Exclusivo ou Meio." + +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Remove os cantos internos do raft, fazendo com que ele se torne convexo." + +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "Remove os furos de cada camada e mantém somente aqueles da forma externa. Isto ignorará qualquer geometria interna invisível. No entanto, também ignorará furos de camada que poderiam ser vistos de cima ou de baixo." + +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "Substitui a parte externa do padrão superior/inferir com um número de linhas concêntricas. Usar uma ou duas linhas melhora tetos e topos que começam a ser construídos em cima de padrões de preenchimento." + +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "Preferência de Descanso" + +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Retrair Antes da Parede Externa" + +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Retrai em Mudança de Camada" + +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Retrair o filamento quando o bico estiver se movendo sobre uma área não-impressa." + +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Retrair o filamento quando o bico se mover sobre uma área não impressa." + +msgctxt "retract_at_layer_change description" +msgid "Retract the filament when the nozzle is moving to the next layer." +msgstr "Retrai o filamento quando o bico está se movendo para a próxima camada." + +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Distância da Retração" + +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Quantidade Adicional de Avanço da Retração" + +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Percurso Mínimo para Retração" + +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Velocidade de Avanço da Retração" + +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Velocidade de Recolhimento de Retração" + +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Velocidade de Retração" + +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Direita" + +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "Velocidade de Escala da Ventoinha A 0-1" + +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "Usa a escala da velocidade da ventoinha como um número entre 0 e 1 ao invés de 0 a 256." + +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Compensação de Fator de Encolhimento" + +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "A Cena Tem Malhas de Suporte" + +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Preferência do Canto da Costura" + +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "Estabelece a altura da cobertura de trabalho. Escolha imprimir a cobertura na altura total dos modelos ou até uma altura limitada." + +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Ajustes usados para imprimir com vários extrusores." + +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "Ajustes que sào usados somentes se o CuraEngine não for chamado da interface do Cura." + +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Retração Inicial do Bico Compartilhado" + +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Canto Mais Agudo" + +msgctxt "shell description" +msgid "Shell" +msgstr "Perímetro" + +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Mais Curto" + +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Exibir Variantes de Máquina" + +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Camadas do Suporte da Aresta de Contorno" + +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Espessura do Suporte da Aresta de Contorno" + +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Distância de Expansão do Contorno" + +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Sobreposição do Contorno" + +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Porcentagem de Sobreposição do Contorno" + +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Largura de Remoção de Contorno" + +msgctxt "min_skin_width_for_expansion description" +msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." +msgstr "Áreas de contorno mais estreitas que esta não são expandidas. Isto evita expandir as áreas estreitas que são criadas quando a superfície do modelo tem inclinações quase verticais." + +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "Evitar uma em cada N linhas de conexão para fazer a estrutura de suporte mais fácil de ser removida." + +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "Evitar algumas conexões de linha de suporte para fazer a estrutura de suporte mais fácil de ser removida. Este ajuste é aplicável ao padrão de preenchimento de suporte de ziguezague." + +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Skirt" + +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Distância do Skirt" + +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "Altura do Skirt" + +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Contagem de linhas de Skirt" + +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Aceleração para Skirt e Brim" + +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Extrusor do Skirt/Brim" + +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Fluxo de Skirt/Brim" + +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Jerk de Skirt e Brim" + +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Largura de Extrusão do Brim e Skirt" + +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Mínimo Comprimento do Skirt e Brim" + +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Velocidade do Skirt e Brim" + +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Tolerância de Fatiamento" + +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Velocidade de Camada Inicial de Aspecto Pequeno" + +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Comprimento Máximo do Aspecto Pequeno" + +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Velocidade de Aspecto Pequeno" + +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Tamanho Máximo de Furos Pequenos" + +#, fuzzy +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "Temperatura de Impressão Final" + +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "Pequena Base/Teto Na Superfície" + +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "Largura do Teto/Base Pequenos" + +msgctxt "small_feature_speed_factor_0 description" +msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "Aspectos pequenos na primeira camada serão impressos nesta porcentagem de sua velocidade de impressão normal. Impressão mais lenta pode ajudar com aderência e precisão." + +msgctxt "small_feature_speed_factor description" +msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "Aspectos pequenos serão impressos nessa porcentagem da velocidade normal. Impressão mais lenta pode ajudar com aderência e precisão." + +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "Regiões pequenas de base/teto são preenchidas com paredes ao invés do padrão default de teto/base. Isto ajuda a prevenir movimentos bruscos. Desligado por default para a camada superior (exposta ao ar) (Veja 'Pequena Base/Teto Na Superfície')" + +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "Brim Inteligente" + +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Ocultação Inteligente" + +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Suavizar Contornos Espiralizados" + +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "Suavizar os contornos espiralizados para reduzir a visibilidade da costura Z (a costura Z deve ser quase invisível na impressão mas ainda será visível na visão de camadas). Note que a suavização tenderá a embaçar detalhes finos de superfície." + +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "Alguns materiais podem escorrer um pouco durante o percurso, o que pode ser compensando neste ajuste." + +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "Um pouco de material pode escorrer durante os movimentos do percurso de limpeza e isso pode ser compensado neste ajuste." + +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Modos Especiais" + +msgctxt "speed description" +msgid "Speed" +msgstr "Velocidade" + +msgctxt "speed label" +msgid "Speed" +msgstr "Velocidade" + +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "Velocidade com que mover o eixo Z durante o salto." + +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Espiralizar o Contorno Externo" + +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "'Espiralizar' faz com que o movimento vertical (em Z) seja contínuo e gradual seguindo o contorno da peça. Este recurso transforma um modelo sólido em uma simples linha contínua em espiral partindo de uma base sólida. O recurso só deve ser habilitado quando cada camada horizontal contiver somente um contorno." + +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Temperatura de Espera" + +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "G-Code Inicial" + +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "Ponto de partida de cada caminho em uma camada. Quando caminhos em camadas consecutivas iniciam no mesmo ponto (X,Y), uma 'costura' vertical pode ser vista na impressão. Quando se alinha esta costura a uma coordenada especificada pelo usuário, a costura é mais fácil de remover pós-impressão. Quando colocada aleatoriamente as bolhinhas do início dos caminhos será menos perceptível. Quando se toma o menor caminho, a impressão será mais rápida." + +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Passos por Milímetro (E)" + +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Passos por Milímetro (X)" + +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Passos por Milímetro (Y)" + +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Passos por Milímetro (Z)" + +msgctxt "support description" +msgid "Support" +msgstr "Suporte" + +msgctxt "support label" +msgid "Support" +msgstr "Suporte" + +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Aceleração do Suporte" + +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Distância Inferior do Suporte" + +#, fuzzy +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "Contagem de Linhas de Parede de Suporte" + +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Número de Filetes do Brim de Suporte" + +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Largura do Brim de Suporte" + +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Contagem de Linhas de Pedaço de Suporte" + +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Tamanho do Pedaço de Suporte" + +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "Densidade do Suporte" + +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Prioridade das Distâncias de Suporte" + +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Extrusor do Suporte" + +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Aceleração da Base do Suporte" + +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Densidade da Base do Suporte" + +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Extrusor da Base do Suporte" + +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Fluxo da Base de Suporte" + +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Expansão Horizontal da Base do Suporte" + +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Jerk da Base do Suporte" + +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Direções de Filete da Base do Suporte" + +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Distância de Filetes da Base de Suporte" + +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Largura de Extrusão da Base do Suporte" + +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Padrão de Base de Suporte" + +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Velocidade de Base do Suporte" + +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Espessura da Base de Suporte" + +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Fluxo de Suporte" + +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Expansão Horizontal do Suporte" + +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Aceleração do Preenchimento do Suporte" + +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Extrusor do Preenchimento do Suporte" + +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Jerk de Preenchimento de Suporte" + +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Espessura de Camada do Preenchimento de Suporte" + +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Direção de Filete do Preenchimento de Suporte" + +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Velocidade do Preenchimento do Suporte" + +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Aceleração da Interface de Suporte" + +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Densidade da Interface de Suporte" + +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Extrusor da Interface de Suporte" + +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Fluxo de Interface de Suporte" + +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Expansão Horizontal da Interface de Suporte" + +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Jerk da Interface de Suporte" + +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Direções do Filete de Interface de Suporte" + +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Largura de Extrusão da Interface do Suporte" + +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Padrão da Interface de Suporte" + +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "Prioridade de Interface de Suporte" + +msgctxt "support_interface_skip_height label" +msgid "Support Interface Resolution" +msgstr "Resolução da Interface de Suporte" + +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Velocidade da Interface de Suporte" + +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Espessura da Interface de Suporte" + +#, fuzzy +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Contagem de Linhas de Parede de Suporte" + +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Jerk do Suporte" + +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "Distância de União do Suporte" + +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "Distância das Linhas do Suporte" + +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Largura de Extrusão do Suporte" + +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Malha de Suporte" + +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Ângulo para Caracterizar Seções Pendentes" + +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Padrão do Suporte" + +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Colocação dos Suportes" + +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Aceleração do Teto de Suporte" + +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Densidade do Teto de Suporte" + +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Extrusor do Teto do Suporte" + +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Fluxo do Teto de Suporte" + +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Expansão Horizontal do Teto de Suporte" + +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Jerk do Teto de Suporte" + +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Direções de Filete do Teto do Suporte" + +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Distância de Filetes do Teto de Suporte" + +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Largura de Extrusão do Teto do Suporte" + +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Padrão de Teto de Suporte" + +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Velocidade do Teto de Suporte" + +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "Espessura do Topo do Suporte" + +#, fuzzy +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Contagem de Linhas de Parede de Suporte" + +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Velocidade do Suporte" + +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "Altura do Passo de Suporte em Escada" + +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "Largura Máxima do Passo de Suporte em Escada" + +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "Ângulo Mínimo de Inclinação do Passo de Suporte em Escada" + +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Estrutura de Suporte" + +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Distância Superior do Suporte" + +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Contagem de Linhas de Parede de Suporte" + +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "Distância X/Y do Suporte" + +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Distância em Z do Suporte" + +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "Filetes de suporte preferidos" + +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "Suporte preferido" + +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Velocidade de Ventoinha do Contorno Suportado" + +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Superfície" + +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Energia de Superfície" + +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Modo de Superficie" + +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "Tendência de aderência da superfície." + +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Energia de superfície." + +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "Troca a ordem de impressão do filete de brim mais interno e o segundo mais interno. Isto melhora a remoção do brim." + +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "Troca quais volumes sobrepondo malhas vão pertencer a cada camada, de modo que as malhas sobrepostas se tornem entrelaçadas. Desligar esta opção vai fazer com que uma das malhas obtenha todo o volume da sobreposiçào, removendo este volume das outras malhas." + +msgctxt "adaptive_layer_height_threshold description" +msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." +msgstr "Trata da distância horizontal entre duas camadas adjacentes. Reduzir este ajuste faz com que camadas mais finas sejam usadas para reunir as bordas das camadas mais perto uma da outra." + +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "A coordenada X da posição próxima de onde achar a parte com que começar a imprimir cada camada." + +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "A coordenada X da posição onde iniciar a impressão de cada parte em uma camada." + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "A coordenada X da posição onde o bico faz a purga no início da impressão." + +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "A coordenada Y da posição próxima de onde achar a parte com que começar a imprimir cada camada." + +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "A coordenada Y da posição onde iniciar a impressão de cada parte em uma camada." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "A coordenada Y da posição onde o bico faz a purga no início da impressão." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Coordenada Z da posição onde o bico faz a purga no início da impressão." + +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "Aceleração durante a impressão da camada inicial." + +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "Aceleração para a camada inicial." + +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Aceleração para percursos na camada inicial." + +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "A mudança instantânea máxima de velocidade em uma direção nos percursos da camada inicial." + +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "Aceleração com que se imprimem as paredes interiores." + +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "A aceleração com que o preenchimento é impresso." + +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "A aceleração com que o recurso de passar a ferro é feito." + +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "Aceleração com que se realiza a impressão." + +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "A aceleração com que as camadas de base do raft são impressas." + +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "A aceleração com que as bases do suporte são impressas. Imprimi-las em aceleração menor pode melhorar aderência dos suportes no topo da superfície." + +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "Aceleração com que se imprime o preenchimento dos suportes." + +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "A aceleração com que a camada intermediária do raft é impressa." + +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "Aceleração com que se imprime a parede exterior." + +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "Aceleração com que a torre de purga é impressa." + +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "A aceleração com que o raft é impresso." + +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "A aceleração com que os tetos e bases de suporte são impressos. Imprimi-los em aceleração menor pode melhorar a qualidade das seções pendentes." + +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "A aceleração com que os tetos de suporte são impressos. Imprimi-los em aceleração menor pode melhorar a qualidade das seções pendentes." + +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "Aceleração com a qual o skirt e o brim são impressos. Normalmente isto é feito com a aceleração de camada inicial, mas às vezes você pode querer imprimir o skirt ou brim em uma aceleração diferente." + +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "Aceleração com que as estruturas de suporte são impressas." + +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "A aceleração com que as camadas superiores do raft são impressas." + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "A aceleração com que as paredes internas da superfície superior são impressas." + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "A aceleração com que as paredes externas da superfície superior são impressas." + +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "Aceleração com que se imprimem as paredes." + +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "A aceleração com a qual as camadas da superfície superior são impressas." + +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "Aceleração com que as camadas superiores e inferiores são impressas." + +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "Aceleração com que se realizam os percursos." + +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "A quantidade de material, relativa ao filete normal de extrusão, para extrudar durante a passagem a ferro. Manter o bico com algum material ajuda a preencher algumas das lacunas e fendas da superfície superior, mas material demais resulta em superextrusão e verrugas nas laterais da superfície." + +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "A quantidade de sobreposição entre o preenchimento e as paredes como uma porcentagem da largura de extrusão de preenchimento. Uma leve sobreposição permite que as paredes se conectem firmemente ao preenchimento." + +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "A quantidade de sobreposição entre o preenchimento e as paredes. Uma leve sobreposição permite que as paredes se conectem firmemente ao preenchimento." + +msgctxt "switch_extruder_retraction_amount description" +msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." +msgstr "A quantidade de retração ao mudar extrusores. Coloque em 0 para não haver retração. Isto deve geralmente ser o mesmo que o comprimento da zona de aquecimento do hotend." + +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "Ângulo entre o plano horizontal e a parte cônica logo acima da ponta do bico." + +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "Ângulo do Teto (parte superior) de uma torre. Um valor maior resulta em tetos pontiagudos, um valor menor resulta em tetos achatados." + +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "O ângulo de seção pendente das paredes externas criadas para o molde. 0° fará a superfície externa do molde vertical, enquanto 90° fará a superfície externa do molde seguir o contorno do modelo." + +msgctxt "support_tree_branch_diameter_angle description" +msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." +msgstr "O ângulo do diâmetro dos galhos enquanto se tornam gradualmente mais grossos na direção da base. Um ângulo de 0 fará com que os galhos tenham grossura uniforme no seu comrpimento. Um ângulo levemente maior que zero pode aumentar a estabilidade do suporte em árvore." + +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "O ângulo da inclinação do suporte cônico. Como 0 graus sendo vertical e 90 graus sendo horizontal. Ângulos menores farão o suporte ser mais firme, mas gastarão mais material. Ângulos negativos farão a base do suporte mais larga que o topo." + +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "A densidade média dos pontos introduzidos em cada polígono de uma camada. Note que os pontos originais do polígono são descartados, portanto uma densidade baixa resulta da redução de resolução." + +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "A distância média entre os pontos aleatórios introduzidos em cada segmento de linha. Note que os pontos originais do polígono são descartados, portanto umo alto alisamento resulta em redução da resolução. Este valor deve ser maior que a metade da Espessura do Contorno Felpudo." + +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "A aceleração default a ser usada nos eixos para o movimento da cabeça de impressão." + +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "A temperatura default usada para a impressão. Esta deve ser a temperatura \"base\" de um material. Todas as outras temperaturas de impressão devem usar diferenças baseadas neste valor" + +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "A temperatura default usada para a plataforma aquecida de impressão. Este valor deve ser a temperatura \"base\" da plataforma. Todas as outras temperaturas de impressão devem usar diferenças baseadas neste valor" + +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "A densidade da camada de contorno de ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno." + +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "A densidade das bases da estrutura de suporte. Um valor maior resulta em melhor aderência do suporte no topo da superfície." + +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "A densidade dos tetos da estrutura de suporte. Um valor maior resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." + +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "A densidade da segunda camada de contorno da ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno." + +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "A densidade da terceira camada de contorno da ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno." + +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "A profundidade (direção Y) da área imprimível." + +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "O diâmetro da torre especial." + +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "O diâmetro dos galhos mais finos do suporte em árvore. Galhos mais grossos são mais resistentes. Galhos na direção da base serão mais grossos que essa medida." + +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "O diâmetro do topo da ponta dos galhos de suporte em árvore." + +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "O diâmetro da engrenagem que traciona o material no alimentador." + +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "O diâmetro dos galhos mais espessos do suporte em árvore. Um tronco mais espesso é mais robusto; um tronco mais fino ocupa menos espaço na plataforma de impressão." + +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "A diferença em tamanho da próxima camada comparada à anterior." + +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "A distância entre as trajetórias de passagem a ferro." + +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "A distância entre o bico e as partes já impressas quando evitadas durante o percurso." + +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "A distância entre as linhas do raft para a camada de base do raft. Um espaçamento esparso permite a remoção fácil do raft da mesa." + +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "A distância entre as linhas do raft para a camada intermediária. O espaçamento do meio deve ser grande, ao mesmo tempo que deve ser denso o suficiente para suportar as camadas superiores." + +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "Distância entre as linhas do raft para as camadas superiores. O espaçamento deve ser igual à largura de linha, de modo que a superfície seja sólida." + +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "A distância entre os filetes do raft para a camada única de raft de torre de purga. Espaçamento alto permite remoção fácil do raft da plataforma de impressão." + +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "A distância da fronteira entre os modelos para gerar a estrutura de interligação, medida em células. Poucas células resultam em baixa aderência." + +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "A distância do modelo à linha mais externa do brim. Um brim mais largo aumenta a aderência à mesa, mas também reduz a área efetiva de impressão." + +#, fuzzy +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "Distância da ponta do bico onde 'estacionar' o filamento quando seu extrusor não estiver sendo usado." + +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "Distância da ponta do bico, em que calor do bico é transferido para o filamento." + +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "A distância com que os contornos inferiores são expandidos para dentro do preenchimento. Valores mais altos fazem o contorno se anexar melhor ao padrão de preenchimento e fazem as paredes da camada abaixo aderirem melhor ao contorno. Valores mais baixos economizam a quantidade de material usado." + +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "A distância em que os contornos são expandidos pra dentro do preenchimento. Valores mais altos fazem o contorno aderir melhor ao padrão de preenchimento e faz as paredes de camadas vizinhas aderirem melhor ao contorno. Valores menores diminuem a quantidade de material usado." + +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "A distância com que os contornos superiores são expandidos para dentro do preenchimento. Valores mais altos fazem o contorno se anexar melhor ao padrão de preenchimento e fazem as paredes da camada acima aderirem melhor ao contorno. Valores mais baixos economizam a quantidade de material usado." + +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "A distância com que mover a cabeça pra frente e pra trás durante a varredura." + +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "As pontas dos filetes de preenchimento são encurtadas para poupar material. Este ajuste é o ângulo da seção pendente das pontas desses filetes." + +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "Velocidade adicional pela qual o bico resfria enquanto extruda. O mesmo valor é uso para denotar a velocidade de aquecimento quando se esquenta ao extrudar." + +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "O extrusor a usar para imprimir a primeira camada de preenchimento de suporte. Isto é utilizado em multi-extrusão." + +msgctxt "raft_base_extruder_nr description" +msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." +msgstr "O carro extrusor a ser usado para imprimir a primeira camada do Raft. Isto é usado em multi-extrusão." + +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "O extrusor a usar para imprimir as bases dos suportes. Isto é utilizado em multi-extrusão." + +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "O extrusor a usar para imprimir o preenchimento do suporte. Isto é utilizado em multi-extrusão." + +msgctxt "raft_interface_extruder_nr description" +msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." +msgstr "O carro extrusor a ser usado para imprimir a camada central do raft. Isto é usado em multi-extrusão." + +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "O extrusor a usar para imprimir os tetos e bases dos suportes. Isto é utilizado em multi-extrusão." + +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "O extrusor a usar para imprimir o teto do suporte. Isto é utilizado em multi-extrusão." + +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "O carro extrusor a ser usado para imprimir o skirt ou brim. Isto é usado em multi-extrusão." + +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "O extrusor usado ara imprimir skirt, brim ou raft. Usado em multi-extrusão." + +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "O extrusor a usar para imprimir os suportes. Isto é utilizado em multi-extrusão." + +msgctxt "raft_surface_extruder_nr description" +msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." +msgstr "O carro extrusor a ser usado para imprimir a(s) camada(s) central(is) do raft. Isto é usado em multi-extrusão." + +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "O carro extrusor usado para imprimir preenchimento. Este ajuste é usado em multi-extrusão." + +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "O carro extrusor usado para imprimir as paredes internas. Este ajuste é usado em multi-extrusão." + +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "O carro extrusor usado para imprimir a parede externa. Este ajuste é usado em multi-extrusão." + +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "O carro extrusor usado para imprimir as paredes superiores e inferiores. Este ajuste é usado na multi-extrusão." + +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "O carro extrusor usado para imprimir a parte superior da peça. Este ajuste é usado em multi-extrusão." + +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "O carro extrusor usado para imprimir paredes. Este ajuste é usado em multi-extrusão." + +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "A velocidade de ventoinha para a camada base do raft." + +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "A velocidade de ventoina para a camada intermediária do raft." + +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "A velocidade da ventoinha para a impressão do raft." + +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "A velocidade da ventoinha para as camadas superiores do raft." + +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "A localização do arquivo de imagem onde os valores de brilho determinam a densidade mínima no local correspondente do preenchimento da impressão." + +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "A localização do arquivo de imagem onde os valores de brilho determinam a densidade mínima no local correspondente do suporte." + +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "As poucas primeiras camadas são impressas mais devagar que o resto do modelo, para conseguir melhor aderência à mesa e melhorar a taxa de sucesso geral das impressão. A velocidade é gradualmente aumentada entre estas camadas." + +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "O vão entre a camada final do raft e a primeira camada do modelo. Somente a primeira camada é elevada por esta distância para enfraquecer a conexão entre o raft e o modelo, tornando mais fácil a remoção do raft." + +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "A altura (direção Z) do volume imprimível." + +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "A altura acima das partes horizontais do modelo onde criar o molde." + +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "A altura em que as ventoinhas girarão na velocidade regular. Nas camadas abaixo a velocidade da ventoinha gradualmente aumenta da velocidade inicial para a velocidade regular." + +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "Diferença de altura entre a ponta do bico e o sistema de eixos X ou X e Y (onde o extrusor desliza)." + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "Diferença de altura entre a ponta do bico e a parte mais baixa da cabeça de impressão." + +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "A diferença de altura ao executar um Salto Z após trocar extrusores." + +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Diferença de altura ao realizar um Salto Z." + +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "A diferença de altura ao executar um Salto Z." + +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "A altura das camadas em mm. Valores mais altos produzem impressões mais rápidas em resoluções baixas, valores mais baixos produzem impressão mais lentas em resolução mais alta. Recomenda-se não deixar a altura de camada maior que 80% do diâmetro do bico." + +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "A altura do preenchimento de uma dada densidade antes de trocar para a metade desta densidade." + +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "A altura do preenchimento de suporte de dada densidade antes de trocar para metade desta densidade." + +msgctxt "interlocking_beam_layer_count description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "A altura das vigas da estrutura de interligação, medida em número de camadas. Menos camadas são mais fortes, mas mais susceptíveis a defeitos." + +msgctxt "interlocking_orientation description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "A altura das vigas da estrutura de interligação, medidas em número de camadas. Menos camadas são mais fortes, mas mais susceptíveis a defeitos." + +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "A altura da camada inicial em mm. Uma camada inicial mais espessa faz a aderência à mesa de impressão ser maior." + +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "A altura da base da torre de purga. Aumentar este valor resultará em uma torre de purga mais firme porque a base se tornará mais larga. Se o ajuste for muito baixo, a torre de purga não terá uma base firme." + +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "A altura dos degraus da base estilo escada do suporte em cima do modelo. Um valor baixo faz o suporte mais difícil de remover, mas valores muito altos podem levar a estruturas de suporte instáveis. Deixe em zero para desligar o comportamento de escada." + +msgctxt "brim_gap description" +msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." +msgstr "A distância horizontal entre o primeiro filete de brim e o contorno da primeira camada da impressão. Um pequeno vão pode fazer o brim mais fácil de remover sem deixar de prover os benefícios térmicos." + +msgctxt "skirt_gap description" +msgid "" +"The horizontal distance between the skirt and the first layer of the print.\n" +"This is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "" +"A distância horizontal entre o skirt a primeira camada da impressão.\n" +"Esta é a distância mínima. Linhas múltiplas de skirt estenderão além desta distância." + +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "Os filetes de preenchimentos são retificados para poupar tempo de impressão. Este é o ângulo máximo de seção pendente permito através do comprimento do filete de preenchimento." + +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "O padrão de preenchimento é movido por esta distância no eixo X." + +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "O padrão de preenchimento é movido por esta distância no eixo Y." + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "O diâmetro interior do bico (o orifício). Altere este ajuste quanto estiver usando um tamanho de bico fora do padrão." + +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "O jerk com o qual a camada de base do raft é impressa." + +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "O jerk com o qual a camada intermediária do raft é impressa." + +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "O jerk com o qual o raft é impresso." + +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "O jerk com o qual as camadas superiores do raft são impressas." + +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "A maior largura das áreas de contorno inferiores que serão removidas. Cada área de contorno menor que este valor desaparecerá. Isto pode ajudar em limitar a quantidade de tempo e material gastos em impressão de contornos inferiores em superfícies inclinadas do modelo." + +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "A maior largura das áreas de contorno que serão removidas. Cada área de contorno menor que este valor desaparecerá. Isto pode ajudar em limitar a quantidade de tempo e material gastos em impressão de contornos inferiores e superiores em superfícies inclinadas do modelo." + +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "A maior largura das áreas de contorno superiores que serão removidas. Cada área de contorno menor que este valor desaparecerá. Isto pode ajudar em limitar a quantidade de tempo e material gastos em impressão de contornos superiores em superfícies inclinadas do modelo." + +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "A camada em que as ventoinhas girarão na velocidade regular. Se a 'velocidade regular na altura' estiver ajustada, este valor é calculado e arredondado para um número inteiro." + +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "O tempo de camada que define o limite entre a velocidade regular da ventoinha e a máxima. Camadas cuja impressão é mais lenta que este tempo usarão a velocidade regular. Camadas mais rápidas gradualmente aumentarão até a velocidade máxima de ventoinha." + +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "O comprimento de filamento retornado durante uma retração." + +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "O fator de magnitude usado para a inclinação da base da torre de purga. Se você aumentar este valor, a base se tornará mais fina. Se você diminuí-lo, ela se tornará mais grossa." + +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "O material da plataforma de impressão presente na impressora." + +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "A variação de altura máxima permitida para a camada de base." + +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "O ângulo de separação máximo que partes da cobertura de escorrimento terão. Com 0 graus sendo na vertical e 90 graus sendo horizontal. Um ângulo menor leva a coberturas de escorrimento falhando menos, mas mais gasto de material." + +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "O ângulo máximo de seçọes pendentes depois de se tornarem imprimíveis. Com o valor de 0° todas as seções pendentes serão trocadas por uma parte do modelo conectada à mesa e 90° não mudará o modelo." + +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "O ângulo máximo dos galhos quando eles crescem em volta do modelo. Use um ângulo menor para torná-los mais verticais e estáveis. Use um ângulo maior para poder ter maior alcance." + +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "A área máxima de um furo na base do modelo antes que seja removido por \"Torna Seções Pendentes Imprimíveis\". Furos com área menor que esta serão retidos. O valor de 0 mm² preenche todos os furos na base do modelo." + +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "O desvio máximo permitido ao reduzir a resolução para o ajuste de Máxima Resolução. Se você aumentar isto, a impressão será menos precisa, mas o G-Code será menor. O Desvio Máximo é um limite para Resolução Máxima, portanto se os dois conflitarem o Desvio Máximo sempre será o valor dominante." + +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "A distância máxima entre as estruturas de suporte nas direções X/Y. Quando estruturas separadas estão mais próximas que este valor, elas são fundidas em uma só." + +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "A distância máxima em mm para mover o filamento para compensar mudanças na taxa de fluxo." + +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "O desvio máximo da área de extrusão permitido ao remover pontos intermediários de uma linha reta. Um ponto intermediário pode servir como ponto de mudança de largura em uma longa linha reta. Portanto, se ele for removido, fará com que a linha tenha uma largura uniforme e, como resultado, perderá (ou ganhará) um pouco de área de extrusão. Se você aumentar o valor, você poderá perceber uma sutil sobre-extrusão ou sub-extrusão no meio de paredes retas paralelas, já que mais pontos intermediários com espessura variante poderão ser removidos. Sua impressão será menos acurada, mas o G-Code será menor." + +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "A mudança instantânea máxima de velocidade em uma direção durante a impressão da camada inicial." + +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "A mudança instantânea máxima de velocidade em uma direção da cabeça de impressão." + +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que o recurso de passar a ferro é feito." + +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que as paredes internas são impressas." + +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "A mudança instantânea máxima de velocidade em uma direção com que o preenchimento é impresso." + +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "A máxima mudança de velocidade instantânea com que as bases dos suportes são impressas." + +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que o preenchimento do suporte é impresso." + +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que a parede externa é impressa." + +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "A mudança instantânea máxima de velocidade em uma direção com que a torre de purga é impressa." + +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "A máxima mudança de velocidade instantânea com a qual os tetos e bases dos suportes são impressos." + +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "A máxima mudança de velocidade instantânea com que os tetos dos suportes são impressos." + +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "A mudança instantânea máxima de velocidade em uma direção com que o skirt (saia) e brim (bainha) são impressos." + +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que as estruturas de suporte são impressas." + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "A mudança máxima de velocidade instantânea com que as paredes internas da superfície superior são impressas." + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "A mudança máxima de velocidade instantânea com que as paredes mais externas da superfície superior são impressas." + +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que as paredes são impressas." + +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que as camadas da superfície superior são impressas." + +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que as camadas superiores e inferiores são impressas." + +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "A mudança instantânea máxima de velocidade em uma direção com que os percursos são feitos." + +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "A velocidade máxima para o motor da impressora na direção X." + +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "A velocidade máxima para o motor da impressora na direção Y." + +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "A velocidade máxima para o motor da impressora na direção Z." + +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "A velocidade máxima de entrada de filamento no hotend." + +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "A largura máxima dos passos da base estilo escada do suporte em cima do modelo. Um valor baixo faz o suporte mais difícil de remover, mas valores muito altos podem levar a estruturas de suporte instáveis." + +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "A distância mínima entre o exterior do molde e o exterior do modelo." + +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "Velocidade mínima de entrada de filamento no hotend." + +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "A temperatura mínima enquanto se esquenta até a Temperatura de Impressão na qual a impressão pode já ser iniciada." + +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "Tempo mínimo em que um extrusor precisará estar inativo antes que o bico seja resfriado. Somente quando o extrusor não for usado por um tempo maior que esse, lhe será permitido resfriar até a temperatura de espera." + +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "O ângulo mínimo de seções pendentes internas para as quais o preenchimento é adicionado. Em um valor de 0°, objetos são completamente preenchidos no padrão escolhido, e 90° torna o volume oco, sem preenchimento." + +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "O ângulo mínimo de seções pendentes para os quais o suporte é criado. Com o valor de 0° todas as seções pendentes serão suportadas, e 90° não criará nenhum suporte." + +msgctxt "retraction_min_travel description" +msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." +msgstr "A distância mínima de percurso necessária para que uma retração aconteça. Isto ajuda a ter menos retrações em uma área pequena." + +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "O comprimento mínimo do skirt ou brim. Se este comprimento não for cumprido por todas as linhas do skirt ou brim juntas, mais linhas serão adicionadas até que o mínimo comprimento seja alcançado. Se a contagem de linhas estiver em 0, isto é ignorado." + +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "A mínima largura de extrusão para paredes multifiletes de preenchimento de vão de filete central. Este ajuste determina em que espessura de modelo nós alternamos de imprimir dois filetes de parede para imprimir duas paredes externas e uma parede central no meio. Uma Largura de Extrusão de Parede Ímpar Mínima mais alta leva a uma largura máxima de extrusão de parede par mais alta. A largura máxima de extrusão de parede ímpar é calculada como 2 * Largura Mínima de Extrusão de Parede Par." + +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "A mínima largura de filete para paredes poligonais normais. Este ajuste determina em que espessura do modelo nós alternamos da impressão de um file de parede fina único para a impressão de dois filetes de parede. Uma Largura Mínima de Filete de Parede Par mais alta leva a uma largura máxima de filete de parede ímpar também mais alta. A largura máxima de filete de parede par é calculada como a Largura de Filete da Parede Externa + 0.5 * Largura Mínima de Filete de Parede Ímpar." + +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "A velocidade mínima de impressão, mesmo que se tente desacelerar para obedecer ao tempo mínimo de camada. Quando a impressora desacelera demais, a pressão no bico pode ficar muito baixa, o que resulta em baixa qualidade de impressão." + +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "O tamanho mínimo de um segmento de linha após o fatiamento. Se você aumentar este valor, a malha terá uma resolução menor. Isto pode permitir que a impressora mantenha a velocidade que precisa para processar o G-Code e aumentará a velocidade de fatiamento ao remover detalhes da malha que não poderia processar de qualquer jeito." + +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "O tamanho mínimo de um segmento de linha de percurso após o fatiamento. Se o valor aumenta, os movimentos de percurso terão cantos menos suaves. Isto pode permitir que a impressora mantenha a velocidade necessária para processar o G-Code, mas pode fazer com que evitar topar no modelo fique menos preciso." + +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "A mínima inclinação da área para que o suporte em escada tenha efeito. Valores baixos devem tornar o suporte mais fácil de remover em inclinações rasas, mas muitos baixos resultarão em resultados bastante contra-intuitivos em outras partes do modelo." + +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "O tempo mínimo empregado em uma camada. Isto força a impressora a desacelerar para no mínimo usar o tempo ajustado aqui em uma camada. Isto permite que o material impresso resfrie apropriadamente antes de passar para a próxima camada. As camadas podem ainda assim levar menos tempo que o tempo mínimo de camada se Levantar Cabeça estiver desabilitado e se a Velocidade Mínima fosse violada com a lentidão." + +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "O volume mínimo para cada camada da torre de purga de forma a purgar material suficiente." + +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "O máximo que o diâmetro de um galho que tem que se conectar ao modelo pode aumentar ao mesclar-se com galhos que podem alcançar a plataforma de impressão. Aumentar este valor reduz tempo de impressão, mas aumenta a área de suporte que se apoia no modelo" + +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "Nome do seu modelo de impressora 3D." + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "O identificador do bico para o carro extrusor, tais como \"AA 0.4\" ou \"BB 0.8\"." + +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "O bico evita partes já impressas quando está em uma percurso. Esta opção está disponível somente quando combing (penteamento) está habilitado." + +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "O bico evita suportes já impressos durante o percurso. Esta opção só está disponível quando combing estiver habilitado." + +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "O número de camadas inferiores. Quando calculado da espessura inferior, este valor é arredondado para um inteiro." + +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "O número de contornos a serem impressos em volta do padrão linear na camada base do raft." + +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "O número de camadas de preenchimento que suportam arestas de contorno." + +msgctxt "initial_bottom_layers description" +msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "O número de camadas inferiores iniciais da plataforma de impressão pra cima. Quanto calculado a partir da espessura inferior, esse valor é arrendado para um número inteiro." + +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "O número de camadas entre a base e a superfície do raft. Isso corresponde à espessura principal do raft. Aumentar este valor cria um raft mais espesso e resistente." + +msgctxt "brim_line_count description" +msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." +msgstr "O número de linhas usada para o brim. Mais linhas de brim melhoram a aderência à mesa, mas também reduzem a área efetiva de impressão." + +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "O número de filetes usado para o brim de suporte. Mais filetes melhoram a aderência na mesa de impressão, ao custo de material extra." + +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "O número de camadas superiores acima da segunda camada do raft. Estas são camadas completamente preenchidas em que o modelo se assenta. 2 camadas resultam em uma superfície superior mais lisa que apenas uma." + +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "O número de camadas superiores. Quando calculado da espessura superior, este valor é arredondado para um inteiro." + +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "O número de camadas da superfície superior. Geralmente somente uma camada é suficiente para gerar superfícies de alta qualidade." + +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." + +#, fuzzy +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." + +#, fuzzy +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." + +#, fuzzy +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." + +msgctxt "wall_distribution_count description" +msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." +msgstr "O número de paredes, contadas a partir do centro, sobre as quais a variação será distribuída. Valores menores significam que as paredes mais externas não mudam de comprimento." + +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "Número de filetes da parede. Quando calculado pela espessura de parede, este valor é arredondado para um inteiro." + +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "Diâmetro exterior do bico (a ponta do hotend)." + +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague trocam de direção em camadas alternadas, reduzindo custo de material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são completamente impressos a cada camada. Os preenchimentos giroide, cúbico, quarto cúbico e octeto mudam a cada camada para prover uma distribuição de força mais uniforme em cada direção. O preenchimento de relâmpago tenta minimizar material somente suportando o teto do objeto." + +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "O padrão (estampa) das estruturas de suporte da impressão. As diferentes opções disponíveis resultam em suportes mais resistentes ou mais fáceis de remover." + +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "O padrão das camadas superiores." + +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Padrão ou Estampa das camadas superiores e inferiores." + +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "O padrão na base da impressão na primeira camada." + +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "O padrão a usar quando se passa a ferro as superfícies superiores." + +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "O padrão com o qual as bases do suporte são impressas." + +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "Padrão (estampa) com a qual a interface do suporte para o modelo é impressa." + +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "O padrão com o qual o teto do suporte é impresso." + +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "A posição perto da qual se inicia a impressão de cada parte em uma camada." + +msgctxt "support_tree_angle_slow description" +msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." +msgstr "O ângulo preferido para os galhos, quando eles não têm que evitar o modelo. Use um ângulo menor para torná-los mais verticais e estáveis. Use um ângulo maior para que os galhos se mesclem mais rapidamente." + +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "O posicionamento preferido das estruturas de suporte.Se as estruturas não puderem ser colocadas na localização escolhida, serão colocadas em outro lugar, mesmo que seja no modelo." + +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "A mudança instantânea máxima de velocidade em uma direção para a camada inicial." + +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "A forma da mesa de impressão sem levar área não-imprimíveis em consideração." + +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "A forma da cabeça de impressão. Essas são coordenadas relativas à posição da cabeça de impressão, que é geralmente a posição do seu primeiro extrusor. As dimensões à esquerda e na frente da cabeça devem ser coordenadas negativas." + +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "O tamanho dos bolso em cruzamentos quádruplos no padrão cruzado 3D em alturas onde o padrão esteja se tocando." + +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "O menor volume que um caminho de extrusão deve apresentar antes que lhe seja permitido desengrenar. Para caminhos de extrusão menores, menos pressão é criada dentro do hotend e o volume de desengrenagem é redimensionado linearmente. Este valor deve sempre ser maior que o Volume de Desengrenagem." + +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "Velocidade (°C/s) pela qual o bico resfria tirada pela média na janela de temperaturas normais de impressão e temperatura de espera." + +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "Velocidade (°C/s) pela qual o bico aquece tirada pela média na janela de temperaturas normais de impressão e temperatura de espera." + +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "A velocidade em que todas as paredes interiores são impressas. Imprimir a parede interior mais rapidamente que a parede externa reduzirá o tempo de impressão. Funciona bem ajustar este valor a meio caminho entre a velocidade da parede mais externa e a velocidade de preenchimento." + +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "A velocidade com a qual regiões de contorno de ponte são impressas." + +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "Velocidade em que se imprime o preenchimento." + +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "Velocidade em que se realiza a impressão." + +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "A velocidade em que a camada de base do raft é impressa. Deve ser impressa lentamente, já que o volume do material saindo do bico será bem alto." + +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "A velocidade com a qual as paredes de ponte são impressas." + +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "A velocidade em que as ventoinhas giram no início da impressão. Em camadas subsequentes a velocidade da ventoinha é gradualmente aumentada até a camada correspondente ao ajuste 'Velocidade Regular da Ventoinha na Altura'." + +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "Velocidade em que as ventoinhas giram antes de dispararem o limite. Quando uma camada imprime mais rapidamente que o limite de tempo, a velocidade de ventoinha aumenta gradualmente até a velocidade máxima." + +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "Velocidade em que as ventoinhas giram no tempo mínimo de camada. A velocidade da ventoinha gradualmente aumenta da regular até a máxima quando o limite é atingido." + +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "A velocidade com a qual o filamento é avançado durante o movimento de retração." + +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "A velocidade com que o filamento é purgado durante um movimento de retração de limpeza." + +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "A velocidade em que o filamento é empurrado para a frente depois de uma retração de troca de bico." + +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "A velocidade com a qual o filamento é recolhido e avançado durante o movimento de retração." + +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "A velocidade com que o filamento é retraído e purgado durante um movimento de retração de limpeza." + +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "A velocidade em que o filamento é retraído durante uma retração de troca de bico." + +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "A velocidade com a qual o filamento é recolhido durante o movimento de retração." + +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "A velocidade com que o filamento é retraído durante um movimento de retração de limpeza." + +msgctxt "switch_extruder_retraction_speeds description" +msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." +msgstr "A velocidade em que o filamento é retraído. Uma velocidade de retração mais alta funciona melhor, mas uma velocidade muito alta pode levar a desgaste do filamento." + +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "A velocidade em que a base do suporte é impressa. Imprimi-la em velocidade mais baixa pode melhorar a aderência do suporte no topo da superfície." + +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "A velocidade em que o preenchimento do suporte é impresso. Imprimir o preenchimento em velocidades menores melhora a estabilidade." + +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "A velocidade em que a camada intermediária do raft é impressa. Esta deve ser impressa devagar, já que o volume de material saindo do bico é bem alto." + +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "A velocidade em que as paredes mais externas são impressas. Imprimir a parede mais externa a uma velocidade menor melhora a qualidade final do contorno. No entanto, ter uma diferença muito grande entre a velocidade da parede interna e a velocidade da parede externa afetará a qualidade de forma negativa." + +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "A velocidade em que a torre de purga é impressa. Imprimir a torre de purga mais lentamente pode torná-la mais estável quando a aderência entre os diferentes filamentos é subótima." + +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "A velocidade em que as ventoinhas giram." + +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "A velocidade em que o raft é impresso." + +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "A velocidade com que os tetos e bases do suporte são impressos. Imprimi-los em velocidades mais baixas pode melhorar a qualidade de seções pendentes." + +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "A velocidade em que os tetos dos suportes são impressos. Imprimi-los em velocidade mais baixas pode melhorar a qualidade de seções pendentes." + +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "Velocidade em que o Brim (Bainha) e Skirt (Saia) são impressos. Normalmente isto é feito na velocidade de camada inicial, mas você pode querer imprimi-los em velocidade diferente." + +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "A velocidade em que a estrutura de suporte é impressa. Imprimir o suporte a velocidades mais altas pode reduzir bastante o tempo de impressão. A qualidade de superfície das estruturas de suporte não é importante já que são removidas após a impressão." + +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "A velocidade em que as camadas superiores do raft são impressas. Elas devem ser impressas um pouco mais devagar, de modo que o bico possa lentamente alisar as linhas de superfície adjacentes." + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "A velocidade com que as paredes internas da superfície superior são impressas." + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "A velocidade com que a parede mais externa da superfície superior é impressa." + +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "A velocidade em que o movimento Z vertical é feito para os saltos Z. Tipicamente mais baixa que a velocidade de impressão já que mover a mesa de impressão ou eixos da máquina é mais difícil." + +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "Velocidade em que se imprimem as paredes." + +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "A velocidade com a qual o ajuste de passar ferro é aplicado sobre a superfície superior." + +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "A velocidade com a qual retrair o filamento para que se destaque completamente." + +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "A velocidade com que as camadas superiores são impressas." + +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "Velocidade em que as camadas superiores e inferiores são impressas." + +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "Velocidade em que ocorrem os movimentos de percurso." + +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "A velocidade pela qual se mover durante a desengrenagem, relativa à velocidade do caminho de extrusão. Um valor ligeiramente menor que 100% é sugerido, já que durante a desengrenagem a pressão dentro do hotend cai." + +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "A velocidade para a camada inicial. Um valor menor é sugerido para melhorar aderência à mesa de impressão. Não afeta as estruturas de aderência à mesa de impressão como o brim e o raft." + +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "A velocidade de impressão para a camada inicial. Um valor menor é aconselhado para aprimorar a aderência à mesa de impressão." + +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "A velocidade dos percursos da camada inicial. Um valor mais baixo que o normal é aconselhado para prevenir o puxão de partes impressas da mesa de impressão. O valor deste ajuste pode ser automaticamente calculado do raio entre a Velocidade de Percurso e a Velocidade de Impressão." + +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "A temperatura em que o filamento é destacado completamente." + +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "A temperatura do ambiente em que imprimir. Se este valor for 0, a temperatura de volume de impressão não será ajustada." + +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "A temperatura do bico quando outro bico está sendo usado para a impressão." + +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "A temperatura para a qual se deve começar a esfriar pouco antes do fim da impressão." + +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer." +msgstr "A temperatura usada para imprimir a primeira camada." + +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "A temperatura usada para impressão." + +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "A temperatura usada para a plataforma aquecida de impressão na primeira camada. Se for 0, a plataforma de impressão não será aquecida durante a primeira camada." + +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "A temperatura usada para a plataforma aquecida de impressão. Se for 0, a plataforma de impressão não será aquecida." + +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "A temperatura usada para purgar material, deve ser grosso modo a temperatura de impressão mais alta possível." + +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "A espessura das camadas inferiores da impressão. Este valor dividido pela altura de camada define o número de camadas inferiores." + +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "A espessura do preenchimento extra que suporta arestas de contorno." + +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "A espessura da interface do suporte onde ele toca o modelo na base ou no topo." + +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "A espessura das bases de suporte. Isto controla o número de camadas densas que são impressas no topo dos pontos do modelo em que o suporte se assenta." + +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "A espessura do topo do suporte. Isto controla a quantidade de camadas densas no topo do suporte em que o modelo se assenta." + +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "A espessura das camadas superiores da impressão. Este valor dividido pela altura de camada define o número de camadas superiores." + +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "A espessura das camadas superiores e inferiores da impressão. Este valor dividido pela altura de camada define o número de camadas superiores e inferiores." + +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "A espessura das paredes na direção horizontal. Este valor dividido pela largura de extrusão da parede define o número de filetes da parede." + +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "A espessura por camada de material de preenchimento. Este valor deve sempre ser um múltiplo da altura de camada e se não for, é arredondado." + +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "A espessura por camada do material de preenchimento de suporte. Este valor deve sempre ser um múltiplo da altura de camada e é arredondado." + +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "O tipo de G-Code a ser gerado." + +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "Volume que seria escorrido. Este valor deve em geral estar perto do diâmetro do bico ao cubo." + +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "A largura (direção X) da área imprimível." + +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "A largura do brim a ser impresso sob o suporte. Um brim mais largo melhora a aderência à mesa de impressão, ao custo de material extra." + +#, fuzzy +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "A largura da torre de purga." + +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "A largura da base ou brim da torre de purga. Uma base maior melhora a aderência à mesa mas também reduz a área efetiva de impressão." + +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "A largura da torre de purga." + +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "A largura dentro da qual flutuar. É sugerido deixar este valor abaixo da largura da parede externa, já que as paredes internas não são alteradas pelo algoritmo." + +msgctxt "retraction_extrusion_window description" +msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." +msgstr "A janela em que a contagem de retrações máxima é válida. Este valor deve ser aproximadamente o mesmo que a distância de retração, de modo que efetivamente o número de vez que a retração passa pelo mesmo segmento de material é limitada." + +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "A coordenada X da posição da torre de purga." + +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "A coordenada Y da posição da torre de purga." + +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "Há malhas de suporte presentes na cena. Este ajuste é controlado pelo Cura." + +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "Este ajuste controla a distância que o extrusor deve parar de extrudar antes que a parede de ponte comece. Desengrenar antes da ponte iniciar pode reduzir a pressão no bico e produzir em uma ponte mais horizontal." + +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Este ajuste controla quanto os cantos internos do contorno do raft são arredondados. Esses cantos internos são convertidos em semicírculos com raio igual ao valor dado aqui. Este ajuste também remove furos no contorno do raft que forem menores que o círculo equivalente." + +msgctxt "retraction_count_max description" +msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." +msgstr "Este ajuste limita o número de retrações ocorrendo dentro da janela de distância de extrusão mínima. Retrações subsequentes dentro desta janela serão ignoradas. Isto previne repetidas retrações no mesmo pedaço de filamento, já que isso pode acabar ovalando e desgastando o filamento." + +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "Isto criará uma parede em volta do modelo que aprisiona ar quente da mesa e protege contra fluxo de ar do exterior. Especialmente útil para materiais que sofrem bastante warp e impressoras 3D que não são cobertas." + +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "Diâmetro da Ponta" + +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "Para compensar pelo encolhimento do material enquanto ele esfria, o modelo será ampliado por este fator na direção XY (horizontalmente)." + +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "Para compensar pelo encolhimento do material enquanto esfria, o modelo será ampliado por este fator na direção Z (verticalmente)." + +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "Para compensar o encolhimento do material enquanto esfria, o modelo será redimensionado por este fator." + +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Camadas Superiores" + +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Distância de Expansão do Contorno Superior" + +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Largura de Remoção do Contorno Superior" + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Aceleração da Parede Interna da Superfície Superior" + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Jerk da Parede Interna da Superfície Superior" + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Velocidade da Parede Interna da Superfície Superior" + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Fluxo das Paredes Internas da Superfície Superior" + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Aceleração da Parede Externa da Superfície Superior" + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Fluxo da Parede Externa da Superfície Superior" + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Jerk da Parede Externa da Superfície Superior" + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Velocidade da Parede Externa da Superfície Superior" + +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Aceleração da Superfície Superior" + +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Extrusor da Superfície Superior" + +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Fluxo do Contorno da Superfície Superior" + +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Jerk da Superfície Superior" + +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Camadas da Superfície Superior" + +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Direções dos Filetes da Superfície Superior" + +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Largura de extrusão da Superfície Superior" + +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Padrão da Superfície Superior" + +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Velocidade da Superfície Superior" + +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Espessura Superior" + +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "Superfícies superiores e/ou inferiores de seu objeto com um ângulo maior que este ajuste não terão seu contorno expandido. Isto permite evitar a expansão de áreas estreitas de contorno que são criadas quando a superfície do modelo tem uma inclinação quase vertical. Um ângulo de 0° é horizontal e não causará expansão no contorno, enquanto que um ângulo de 90° é vertical e causará expansão em todo o contorno." + +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Superior/Inferior" + +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Superior/Inferior" + +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Aceleração Superior/Inferior" + +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Extrusor Superior/Inferior" + +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Fluxo de Topo/Base" + +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Jerk Superior/Inferior" + +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Direções de Linha Superior/Inferior" + +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Largura de Extrusão Superior/Inferior" + +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Padrão Superior/Inferior" + +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Velocidade Superior/Inferior" + +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Espessura Superior/Inferior" + +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "Tocando a Mesa" + +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Diâmetro da Torre" + +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Ângulo do Teto da Torre" + +msgctxt "mesh_rotation_matrix description" +msgid "Transformation matrix to be applied to the model when loading it from file." +msgstr "Matriz de transformação a ser aplicada ao modelo após o carregamento do arquivo." + +msgctxt "travel label" +msgid "Travel" +msgstr "Percurso" + +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Aceleração de Percurso" + +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Distância de Desvio de Percurso" + +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Jerk de Percurso" + +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Velocidade de Percurso" + +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "Tratar o modelo como apenas superfície, um volume ou volumes com superfícies soltas. O modo de impressão normal somente imprime volumes fechados. O modo \"superfície\" imprime uma parede única traçando a superfície da malha sem nenhun preenchimento e sem paredes superiores ou inferiores. O modo \"ambos\" imprime volumes fechados como o modo normal e volumes abertos como superfícies." + +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Árvore" + +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Tri-Hexágono" + +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" + +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Triângulo" + +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" + +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" + +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" + +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "Diâmetro do Tronco" + +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Volumes de Sobreposição de Uniões" + +msgctxt "bridge_wall_min_length description" +msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." +msgstr "Paredes não-suportadas mais curtas que esta quantia serão impressas usando ajustes normais de paredes. Paredes mais longas serão impressas com os ajustes de parede de ponte." + +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Usar Camadas Adaptativas" + +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Usar Torres" + +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "Usar taxa de aceleração separada para movimentos de percurso. Se desabilitado, os movimentos de percurso usarão o valor de aceleração da linha impressa em seu destino." + +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "Usar taxa de jerk separada para movimentos de percurso. Se desabilitado, os movimentos de percurso usarão o valor de jerk da linha impressa em seu destino." + +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "Usar extrusão relativa ao invés de extrusão absoluta. Passos de extrusão relativos no G-Code tornam o pós-processamento mais fácil. No entanto, isso não é suportado por todas as impressoras e pode produzir pequenos desvios na quantidade de material depositado comparado a passos de extrusão absolutos. Independente deste ajuste, o modo de extrusão sempre será ajustado para absoluto antes que qualquer script G-Code seja processado." + +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "Usa torres especializadas como suporte de pequenas seções pendentes. Essas torres têm um diâmetro mais largo que a região que elas suportam. Perto da seção pendente, o diâmetro das torres aumenta, formando um 'teto'." + +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "Utilize esta malha para modificar o preenchimento de outras malhas com as quais ela se sobrepõe. Substitui regiões de preenchimento de outras malhas com regiões desta malha. É sugerido que se imprima com somente uma parede e sem paredes superiores e inferiores para esta malha." + +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "Use esta malha para especificar áreas obrigatoriamente suportadas. Isto será usado para gerar estruturas de suporte." + +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "Use esta malha para especificar onde nenhuma parte do modelo deverá ser detectada como seção Pendente e por conseguinte não elegível a receber suporte. Com esta malha sobreposta a um modelo, você poderá marcar onde ele não deverá receber suporte." + +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Especificado pelo Usuário" + +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Compensação de Fator de Encolhimento Vertical" + +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "Tolerância vertical das camadas fatiadas. Os contornos de uma camada são normalmente gerados se tomando seções cruzadas pelo meio de cada espessura de camada (Meio). Alternativamente, cada camada pode ter as áreas que caem fora do volume por toda a espessura da camada (Exclusivo) ou a camada pode ter as áreas que caem dentro de qualquer lugar dentro da camada (Inclusivo). Inclusivo retém mais detalhes, Exclusivo proporciona o melhor encaixe e Meio permanece mais próximo da superfície original." + +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Aguardar o Aquecimento da Mesa" + +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Aguardar Aquecimento do Bico" + +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Aceleração da Parede" + +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Contagem de Distribuição de Parede" + +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Extrusor das Paredes" + +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Fluxo de Parede" + +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Jerk da Parede" + +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Número de Filetes da Parede" + +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Largura de Extrusão da Parede" + +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Ordem de Parede" + +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Velocidade da Parede" + +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Espessura de Parede" + +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Comprimento de Transição de Parede" + +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Distância de Filtro da Transição de Parede" + +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Margem de Filtro de Transição de Parede" + +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Ângulo-Limite de Transição de Parede" + +msgctxt "shell label" +msgid "Walls" +msgstr "Paredes" + +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." +msgstr "Paredes que pendem por mais do que esse ângulo serão impressas usando ajustes de paredes pendentes. Quando este valor for 90, nenhuma parede será tratada como pendente. Seções pendentes que têm suportes também não serão tratadas como pendentes." + +msgctxt "support_interface_skip_height description" +msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +msgstr "Quando verificar se há partes do modelo abaixo e acima do suporte, usar passos de dada altura. Valores baixos fatiarão mais lentamente, enquanto que valores altos farão com que suporte convencional seja impresso em lugares em que deveria haver interface de suporte." + +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "Quando habilitado os percursos do extrusor são corrigidos para impressora com planejadores de movimento suavizado. Pequenos movimentos que se desviariam da direção geral do percurso do extrusor são suavizados para melhorar os movimentos fluidos." + +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "Quando habilitado, a ordem em que os filetes de preenchimento são impressos é otimizada para reduzir a distância percorrida. A redução em tempo de percurso conseguida depende bastante do modelo sendo fatiado, do padrão de preenchimento, da densidade, etc. Note que, para alguns modelos que têm áreas bem pequenas de preenchimento, o tempo de fatiamento pode ser aumentado bastante." + +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "Quando habilitado, a velocidade da ventoinha de resfriamento é alterada para as regiões de contorno imediatamente acima do suporte." + +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "Quando habilitado, as coordenadas da costura Z são relativas ao centro de cada parte. Quando desabilitado, as coordenadas definem uma posição absoluta na plataforma de impressão." + +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "Quando maior que zero, os movimentos de percurso de combing que forem maiores que essa distância usarão retração. Se deixado em zero, não haverá máximo e os movimentos de combing não usarão retração." + +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "Quando maior que zero, a Expansão Horizontal de Furo é gradualmente aplicada em pequenos furos (eles são mais expandidos). Quanto é deixada em zero, a Expansão Horizontal de Furo será aplicada a todos os furos. Furos maiores que o Diâmetro Máximo de Expansão Horizontal de Furo não serão expandidos." + +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "Quando maior que zero, a Expansão Original do Furo designa a distância de compensação aplicada a todos os furos em cada camada. Valores positivos aumentam os tamanhos dos furos, valores negativos reduzem os tamanhos dos furos. Quando este ajuste é habilitado, ele pode ser ainda aprimorado com o ajuste 'Diâmetro Máximo da Expansão Horizontal de Furo'." + +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "Ao imprimir regiões de contorno de ponte, a quantidade de material extrudado é multiplicada por este valor." + +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "Ao se imprimir paredes de ponte, a quantidade de material extrudado é multiplicada por este valor." + +msgctxt "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Ao imprimir a segunda camada de contorno de ponte, a quantidade de material é multiplicada por este valor." + +msgctxt "bridge_skin_material_flow_3 description" +msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Ao imprimir a terceira de contorno da ponte, a quantidade de material é multiplicada por este valor." + +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "Quando a velocidade mínima acaba sendo usada por causa do tempo mínimo de camada, levanta a cabeça para longe da impressão e espera tempo extra até que o tempo mínimo de camada seja alcançado." + +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "Quando o modelo tem pequenas lacunas verticais de apenas umas poucas camadas, normalmente há contorno em volta dessas camadas no espaço estreito. Habilite este ajuste para não gerar o contorno se a lacuna vertical for bem pequena. Isso melhora o tempo de impressão e fatiamento, mas tecnicamente deixa preenchimento exposto ao ar." + +msgctxt "wall_transition_angle description" +msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." +msgstr "Quanto criar transições entre números de paredes pares e ímpares. A forma de cunha em ângulo maior que este ajuste não terá transições e nenhuma parede será impressa no centro para preencher o espaço remanescente. Reduzir este ajuste faz reduzir o número e comprimento das paredes centrais, mas pode deixar vãos ou sobre-extrudar." + +msgctxt "wall_transition_length description" +msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." +msgstr "Ao transicionar entre diferentes números de paredes à medida que a peça fica mais fina, uma certa quantidade de espaço é alocada para partir ou juntar os filetes de parede." + +msgctxt "wipe_hop_enable description" +msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "Quando limpando, a plataforma de impressão é abaixada para criar uma folga entre o bico e a impressão. Isso previne que o bico bata na impressão durante movimentos de percurso, reduzindo a chance de descolar o objeto da plataforma." + +msgctxt "retraction_hop_enabled description" +msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "Sempre que uma retração é feita, sobe-se um pouco em Z para criar um espaço entre o bico e a impressão. Isso evita que o bico fique batendo nas impressões durante o percurso, reduzindo a chance de chutar a peça para fora da mesa." + +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "Decide se a distância XY substitui a distância Z de suporte ou vice-versa. Quando XY substitui Z a distância XY pode afastar o suporte do modelo, influenciando a distância Z real até a seção pendente. Podemos desabilitar isso não aplicando a distância XY em volta das seções pendentes." + +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "Decide se as coordenadas X/Y da posição zero da impressão estão no centro da área imprimível (senão, estarão no canto inferior esquerdo)." + +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "Decide se o endstop do eixo X está na direção positiva (coordenada X alta) ou negativa (coordenada X baixa)." + +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "Decide se o endstop do eixo Y está na direção positiva (coordenada Y alta) ou negativa (coordenada Y baixa)." + +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "Decide se o endstop do eixo Z está na direção positiva (coordenada Z alta) ou negativa (coordenada Z baixa)." + +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "Decide se os extrusores usam um único aquecedor combinado ou cada um tem o seu respectivo aquecedor." + +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "Decide se os extrusores compartilham um único bico ao invés de cada extrusor ter seu próprio. Quando colocado em verdadeiro, é esperado que o script g-code de início da impressora configure todos os extrusores em um estado inicial de retração que seja conhecido e mutuamente compatível (ou zero ou filamento não retraído); neste caso, o status de retração inicial é descrito, por extrusor, pelo parâmetro 'machine_extruders_shared_nozzle_initial_retraction'." + +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "Decide se a plataforma de impressão pode ser aquecida." + +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "Decide se a máquina consegue estabilizar a temperatura do volume de construção." + +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "Decide se o objeto deve ser centralizado no meio da plataforma de impressão, ao invés de usar o sistema de coordenadas em que o objeto foi salvo." + +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "Decide se a temperatura deve ser controlada pelo Cura. Desligue para controlar a temperatura do bico fora do Cura." + +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "Decide se haverá a inclusão de comandos de temperatura da mesa de impressão no início do G-Code. Quando o G-Code Inicial já contiver comandos de temperatura da mesa, a interface do Cura automaticamente desabilitará este ajuste." + +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "Decide se haverá a inclusão de comandos de temperatura do bico no início do G-Code. Quando o G-Code Inicial já contiver comandos de temperatura do bico, a interface do Cura automaticamente desabilitará este ajuste." + +msgctxt "clean_between_layers description" +msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." +msgstr "Decide se haverá inclusão de G-Code de limpeza de bico entre camadas (no máximo 1 por camada). Habilitar este ajuste pode influenciar o comportamento de retração na mudança de camada. Por favor use ajustes de Retração de Limpeza para controlar retração nas camadas onde o script de limpeza estará atuando." + +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "Decide se haverá inserção do comando para aguardar que a temperatura-alvo da mesa de impressão estabilize no início." + +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "Decide se é preciso descarregar o filamento com uma massa de purga antes de imprimir. Ligar este ajuste assegurará que o extrusor tenha material pronto no bico antes de imprimir. Imprimir um Brim ou Skirt pode funcionar como purga também, em cujo caso desligar esse ajuste faz ganhar algum tempo." + +msgctxt "print_sequence description" +msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." +msgstr "Decide se os modelos devem ser impressos todos de uma vez só, uma camada por vez, ou se se deve esperar a cada modelo terminar antes de prosseguir para o próximo. O modo um de cada vez só é possível se a) somente um extrusor estiver habilitado e b) todos os modelos estiverem separados de modo que a cabeça de impressão pode se mover entre todos e todos os modelos estiverem em altura mais baixa que a distância entre o bico e os eixos X e Y." + +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "Decide se deseja exibir as variantes desta máquina, que são descrita em arquivos .json separados." + +msgctxt "machine_firmware_retract description" +msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." +msgstr "Decide se serão usados comandos de retração de firmware (G10/G11) ao invés da propriedade E dos comandos G1 para retrair o material." + +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "Decide se haverá a inserção do comando para aguardar que a temperatura-alvo do bico estabilize no início." + +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Largura de um filete de preenchimento." + +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "Largura de um filete usado no teto ou base do suporte." + +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "Largura de extrusão de um filete das áreas no topo da peça." + +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "Largura de uma única linha de filete extrudado. Geralmente, a largura da linha corresponde ao diâmetro do bico. No entanto, reduzir ligeiramente este valor pode produzir impressões melhores." + +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "Largura de um filete usado na torre de purga." + +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "Largura de um filete do brim (bainha) ou skirt (saia)." + +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "Largura de um filete usado na base do suporte." + +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "Largura de um filete usado no teto do suporte." + +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Largura de um filete usado nas estruturas de suporte." + +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Largura de extrusão dos filetes das paredes do topo e base dos modelos." + +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "Largura de extrusão das paredes internas (todas menos a mais externa)." + +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Largura de um filete que faz parte de uma parede." + +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "Largura das linhas na camada de base do raft. Devem ser grossas para auxiliar na aderência à mesa." + +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "Largura das linhas na camada intermediária do raft. Fazer a segunda camada extrudar mais faz as linhas grudarem melhor na mesa." + +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "Largura das linhas na superfície superior do raft. Estas podem ser linhas finas de modo que o topo do raft fique liso." + +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "Largura de Extrusão somente da parede mais externa do modelo. Diminuindo este valor, níveis de detalhes mais altos podem ser impressos." + +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "Largura da parede que substituirá detalhes finos (de acordo com o Tamanho Mínimo de Detalhe) do modelo. Se a Largura Mínima de Filete de Parede for mais fina que a espessura do detalhe, a parede se tornará tão espessa quanto o próprio detalhe." + +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "Posição X da Varredura de Limpeza" + +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Velocidade do Salto de Limpeza" + +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Limpar Bico Inativo na Torre de Purga" + +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Distância de Movimentação da Limpeza" + +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "Limpar o Bico Entre Camadas" + +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Pausa de Limpeza" + +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Contagem de Repetições de Limpeza" + +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Distância de Retração da Limpeza" + +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "Habilitar Retração de Limpeza" + +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "Quantidade Extra de Purga da Retração de Limpeza" + +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Velocidade de Purga da Retração de Limpeza" + +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "Velocidade da Retração da Retração de Limpeza" + +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Velocidade da Retração de Limpeza" + +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "Salto Z da Limpeza" + +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "Altura do Salto Z da Limpeza" + +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "Dentro do Preenchimento" + +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "Escreve a ferramenta ativa depois de enviar comandos de temperatura para a ferramenta inativa. Requerido para impressão de Extrusor Duplo com Smoothie ou outros firmwares com comandos modais de ferramenta." + +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "Endstop X na Direção Positiva" + +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "Localização X onde o script de limpeza iniciará." + +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y substitui Z" + +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Endstop Y na Direção Positiva" + +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Endstop Z na Direção Positiva" + +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Salto Z Após Troca de Extrusor" + +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Salto Z Após Troca de Altura do Extrusor" + +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Altura do Salto Z" + +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Salto Z Somente Sobre Partes Impressas" + +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Velocidade do Salto Z" + +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Salto Z Ao Retrair" + +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Alinhamento da Costura em Z" + +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Posição da Costura Z" + +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Costura Z Relativa" + +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "Coordenada X da Costura Z" + +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Coordenada Y da Costura Z" + +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z substitui X/Y" + +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "travel description" +msgid "travel" +msgstr "percurso" + +#~ msgctxt "machine_head_polygon description" +#~ msgid "A 2D silhouette of the print head (fan caps excluded)." +#~ msgstr "Uma silhueta 2D da cabeça de impressão (sem os suportes de ventoinhas)." + +#~ msgctxt "machine_head_with_fans_polygon description" +#~ msgid "A 2D silhouette of the print head (fan caps included)." +#~ msgstr "Silhueta da cabeça de impressão com os suportes de ventoinhas inclusos." + +#~ msgctxt "spaghetti_infill_extra_volume description" +#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." +#~ msgstr "Um termo de correção para ajustar o volume total sendo extrudado a cada vez que se preencher com estilo espaguete." + +#~ msgctxt "sub_div_rad_mult description" +#~ msgid "A multiplier on the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to more subdivisions, i.e. more small cubes." +#~ msgstr "Um multiplicador do raio do centro de cada cubo para verificar a borda do modelo, de modo a decidir se este cubo deve ser subdividido. Valores maiores levam a maiores subdivisões, isto é, mais cubos pequenos." + +#~ msgctxt "adaptive_layer_height_threshold label" +#~ msgid "Adaptive Layers Threshold" +#~ msgstr "Limite das Camadas Adaptativas" + +#~ msgctxt "adaptive_layer_height_variation label" +#~ msgid "Adaptive layers maximum variation" +#~ msgstr "Variação máxima das camadas adaptativas" + +#~ msgctxt "adaptive_layer_height_threshold label" +#~ msgid "Adaptive layers threshold" +#~ msgstr "Limite das camadas adaptativas" + +#~ msgctxt "adaptive_layer_height_variation_step label" +#~ msgid "Adaptive layers variation step size" +#~ msgstr "Tamanho de passo da variação das camadas adaptativas" + +#~ msgctxt "wall_add_middle_threshold label" +#~ msgid "Add Middle Line Threshold" +#~ msgstr "Adicionar Limite de Filete Central" + +#~ msgctxt "support_interface_density description" +#~ msgid "Adjusts the density of the roofs and bottoms of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +#~ msgstr "Ajusta a densidade dos topos e bases das estruturas de suporte. Um valor mais alto resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." + +#~ msgctxt "spaghetti_flow description" +#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." +#~ msgstr "Ajusta a densidade do preenchimento espaguete. Note que a Densidade de Preenchimento controla somente o espaçamento entre linhas do padrão de preenchimento, não a quantidade de extrusão para o preenchimento espaguete." + +#~ msgctxt "dual_pre_wipe description" +#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." +#~ msgstr "Depois de trocar extrusores, limpar o material escorrendo do bico na primeira peça impressa. Isso causa um movimento lento de limpeza do bico em um lugar onde o material escorrido causa o menor dano à qualidade de superfície da sua impressão." + +#~ msgctxt "material_bed_temp_wait label" +#~ msgid "Aguardar o aquecimento da mesa de impressão" +#~ msgstr "Esperar a que la placa de impresión se caliente" + +#~ msgctxt "cross_infill_apply_pockets_alternatingly label" +#~ msgid "Alternate Cross 3D Pockets" +#~ msgstr "Bolso Alternados de Cruzado 3D" + +#~ msgctxt "skin_alternate_rotation label" +#~ msgid "Alternate Skin Rotation" +#~ msgstr "Alterna a Rotação do Contorno" + +#~ msgctxt "skin_alternate_rotation description" +#~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." +#~ msgstr "Alterna a direção em que as camadas superiores e inferiores são impressas. Normalmente elas são impressas somente na diagonal. Este ajuste permite direções somente no X e somente no Y." + +#~ msgctxt "prime_tower_purge_volume description" +#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." +#~ msgstr "Quantidade de filamento a ser purgado na torre de purga. A purga é útil para compensar filamento perdido por escorrimento durante inatividade do bico." + +#~ msgctxt "hole_xy_offset description" +#~ msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes." +#~ msgstr "Quantidade de deslocamento aplicado a todos os furos em cada camada. Valores positivos aumentam o tamanho dos furos, valores negativos reduzem o tamanho dos furos." + +#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" +#~ msgid "Apply the extruder offset to the coordinate system." +#~ msgstr "Aplicar o deslocamento do extrusor ao sistema de coordenadas." + +#~ msgctxt "material_flow_dependent_temperature label" +#~ msgid "Auto Temperature" +#~ msgstr "Temperatura Automática" + +#~ msgctxt "z_seam_type option back" +#~ msgid "Back" +#~ msgstr "Costas" + +#~ msgctxt "bridge_wall_max_overhang label" +#~ msgid "Bridge Wall Max Overhang" +#~ msgstr "Seção Pendente Máxima da Parede de Ponte" + +#~ msgctxt "machine_shape label" +#~ msgid "Build plate shape" +#~ msgstr "Forma da mesa de impressão" + +#~ msgctxt "center_object label" +#~ msgid "Center object" +#~ msgstr "Centralizar Objeto" + +#~ msgctxt "material_flow_dependent_temperature description" +#~ msgid "Change the temperature for each layer automatically with the average flow speed of that layer." +#~ msgstr "Troca a temperatura para cada camada automaticamente de acordo com a velocidade média de fluxo desta camada." + +#~ msgctxt "prime_tower_circular label" +#~ msgid "Circular Prime Tower" +#~ msgstr "Torre de Purga Circular" + +#~ msgctxt "retraction_combing description" +#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." +#~ msgstr "O Combing (penteamento) mantém o bico dentro de áreas já impressas durante os percursos. Isto resulta em movimentações um pouco mais amplas mas reduz a necessidade de retrações. Se o combing for desligado, o material sofrerá retração e o bico se moverá em linha reta ao próximo ponto. É também possível evitar combing sobre áreas de contorno de topo e base e ainda só fazer combing no preenchimento. Note que a opção 'Dentro do Preenchimento' se comporta exatamente como a 'Não no Contorno' em versões anteriores do Cura." + +#~ msgctxt "retraction_combing description" +#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." +#~ msgstr "O Combing, ou penteamento, mantém o bico dentro de áreas já impressas se movimenta. Isso resulta em percursos ligeiramente mais longos mas reduz a necessidade de retrações. Se o penteamento estiver desligado, o material sofrerá retração e o bico se moverá em linha reta para o próximo ponto. É também possível evitar o penteamento em área de contornos superiores e inferiores habilitando o penteamento no preenchimento somente." + +#~ msgctxt "wireframe_strategy option compensate" +#~ msgid "Compensate" +#~ msgstr "Compensar" + +#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" +#~ msgid "Compensate Inner Wall Overlaps" +#~ msgstr "Compensar Sobreposições da Parede Interna" + +#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" +#~ msgid "Compensate Outer Wall Overlaps" +#~ msgstr "Compensar Sobreposições de Parede Externa" + +#~ msgctxt "travel_compensate_overlapping_walls_enabled label" +#~ msgid "Compensate Wall Overlaps" +#~ msgstr "Compensar Sobreposições de Parede" + +#~ msgctxt "travel_compensate_overlapping_walls_enabled description" +#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." +#~ msgstr "Compensa o fluxo para partes de uma parede sendo impressa onde já há outra parede." + +#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" +#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." +#~ msgstr "Compensa o fluxo para partes de uma parede interna sendo impressa onde já há outra parede." + +#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" +#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." +#~ msgstr "Compensa o fluxo para partes de uma parede externa sendo impressa onde já há outra parede." + +#~ msgctxt "infill_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concêntrico 3D" + +#~ msgctxt "support_bottom_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concêntrico 3D" + +#~ msgctxt "support_interface_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concêntrico 3D" + +#~ msgctxt "support_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concêntrico 3D" + +#~ msgctxt "support_roof_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concêntrico 3D" + +#~ msgctxt "zig_zaggify_infill description" +#~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +#~ msgstr "Conecta as extremidades onde o padrão de preenchimento se encontra com a parede interna usando linhas que seguem a forma dessa parede. Habilitar este ajuste pode fazer o preenchimento aderir melhor às paredes e reduz os efeitos do preenchimento na qualidade das superfícies verticais. Desabilitar este ajuste reduz a quantidade de material usado." + +#~ msgctxt "connect_skin_polygons description" +#~ msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happend midway over infill this feature can reduce the top surface quality." +#~ msgstr "Conectar camihos de contorno do topo e base onde se situarem próximos. Habilitar para o padrão concêntrico reduzirá bastante o tempo de percurso, mas visto que as conexões podem acontecer sobre o preenchimento no meio do caminho, este recurso pode reduzir a qualidade da superfície superior." + +#~ msgctxt "z_seam_corner description" +#~ msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner." +#~ msgstr "Controla se cantos no contorno do modelo influenciam a posição da costura. Nenhum significa que cantos não têm influência na posição da costura. Esconder Costura torna mais provável que ela ocorra em um canto interior. Expor Costura torna mais provável que ela ocorra em um canto exterior. Esconder ou Expor Costura torna mais provável que ocorra em um canto, externo ou externo." + +#~ msgctxt "machine_nozzle_cool_down_speed label" +#~ msgid "Cool down speed" +#~ msgstr "Velocidade de resfriamento" + +#~ msgctxt "wireframe_top_jump description" +#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." +#~ msgstr "Cria um pequeno 'nódulo' ou 'nó' no topo do filete ascendente de tal modo que a camada horizontal consecutiva tem melhor chance de se conectar ao filete. Somente se aplica à Impressão em Arame." + +#~ msgctxt "sub_div_rad_mult label" +#~ msgid "Cubic Subdivision Radius" +#~ msgstr "Raio de Subdivisão Cúbica" + +#~ msgctxt "wireframe_bottom_delay description" +#~ msgid "Delay time after a downward move. Only applies to Wire Printing." +#~ msgstr "Tempo de espera depois de um movimento descendente tal que o filete possa se solidificar. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wireframe_top_delay description" +#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." +#~ msgstr "Tempo de espera depois de um movimento ascendente tal que o filete ascendente possa se solidifcar. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wireframe_flat_delay description" +#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." +#~ msgstr "Tempo de espera entre dois segmentos horizontais. Inserir tal espera pode ocasionar melhor aderência a camadas prévias nos pontos de conexão, mas atrasos muito longos podem causar estruturas murchas. Somente se aplica à Impressão em Arame." + +#~ msgctxt "inset_direction description" +#~ msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed." +#~ msgstr "Determina em que ordem as paredes são impressas. Imprimir parede mais externas antes ajuda com acurácia dimensional, já que falhas das paredes mais internas não se propagam para o exterior. No entanto imprimi-las depois permite melhor empilhamento quando seções pendentes são impressas." + +#~ msgctxt "infill_mesh_order description" +#~ msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." +#~ msgstr "Determina a prioridade desta malha ao considerar múltiplas malhas de preenchimento sobrepostas. Áreas onde elas se sobrepõem terão as configurações da malha com o menor número. Uma malha de prenchimento de ordem maior modificará o preenchimento das malhas de preenchimento com as malhas de ordem mais baixa e normais." + +#~ msgctxt "infill_mesh_order description" +#~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." +#~ msgstr "Determina a prioridade desta malha ao se considerar volumes sobrepostos. Áread onde múltiplas malhas residem serão ganhas pela malha com menor número. Uma malha de preenchimento com maior ordem modificará o preenchimento das malhas de preenchimento com malhas de ordem normal e menor." + +#~ msgctxt "infill_mesh_order description" +#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." +#~ msgstr "Determina que malha de preenchimento está dentro do preenchimento de outra malha de preenchimento. Uma malha de preenchimento com ordem mais alta modificará o preenchimento de malhas de preenchimento com ordem mais baixa e malhas normais." + +#~ msgctxt "machine_disallowed_areas label" +#~ msgid "Disallowed areas" +#~ msgstr "Áreas proibidas" + +#~ msgctxt "wireframe_nozzle_clearance description" +#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." +#~ msgstr "Distância entre o bico e os filetes descendentes horizontais. Espaços livres maiores resultarão em filetes descendentes diagonais com ângulo menos acentuado, o que por sua vez resulta em menos conexões ascendentes à próxima camada. Somente se aplica à Impressão em Arame." + +#~ msgctxt "support_interface_line_distance description" +#~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately." +#~ msgstr "Distância entre as linhas impressas da interface de suporte. Este ajuste é calculado pela Densidade de Interface de Suporte, mas pode ser ajustado separadamente." + +#~ msgctxt "support_bottom_distance description" +#~ msgid "Distance from the print to the bottom of the support." +#~ msgstr "Distância da parte inferior do suporte até a impressão." + +#~ msgctxt "support_z_distance description" +#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded down to a multiple of the layer height." +#~ msgstr "Distância do topo/base da estrutura de suporte à impressão. Este vão provê o espaço para remover os suportes depois do modelo ser impresso. Este valor é arredondando para um múltiplo da altura de camada." + +#~ msgctxt "support_z_distance description" +#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." +#~ msgstr "Distância do topo e base da estrutura de suporte para a impressão. Este vão provê um espaço para remover os suportes depois de o modelo ser impresso. O valor é arredondado para um múltiplo da altura de camada." + +#~ msgctxt "wireframe_up_half_speed description" +#~ msgid "" +#~ "Distance of an upward move which is extruded with half speed.\n" +#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." +#~ msgstr "" +#~ "Distância de um movimento ascendente que é extrudado com metade da velocidade.\n" +#~ "Isto pode resultar em melhor aderência às camadas prévias, ao mesmo tempo em que não aquece demais essas camadas. Somente se aplica à Impressão em Arame." + +#~ msgctxt "support_xy_distance_overhang description" +#~ msgid "Distance of the support structure from the overhang in the X/Y directions. " +#~ msgstr "Distância da estrutura de suporte até a seção pendente nas direções X/Y. " + +#~ msgctxt "wireframe_fall_down description" +#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Distância na qual o material desaba após uma extrusão ascendente. Esta distância é compensada. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wireframe_drag_along description" +#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Distância na qual o material de uma extrusão ascendente é arrastado com a extrusão descendente diagonal. Esta distância é compensada. Somente se aplica à Impressão em Arame." + +#~ msgctxt "multiple_mesh_overlap label" +#~ msgid "Dual Extrusion Overlap" +#~ msgstr "Sobreposição de Extrusão Dual" + +#~ msgctxt "gradual_flow_discretisation_step_size description" +#~ msgid "Duration of each step in the gradual flow change" +#~ msgstr "Duração de cada passo na alteração de fluxo gradual" + +#~ msgctxt "support_enable label" +#~ msgid "Enable Support" +#~ msgstr "Habilitar Suportes" + +#~ msgctxt "gradual_flow_enabled description" +#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +#~ msgstr "Habilita mudanças graduais de fluxo. Quando habilitado, o fluxo é gradualmente aumentado ou reduzido para o fluxo alvo. Útil para impressoras com tubo bowden onde o fluxo não é imediatamente alterado quando o motor do extrusor inicia ou para." + +#~ msgctxt "support_enable description" +#~ msgid "Enable support structures. These structures support parts of the model with severe overhangs." +#~ msgstr "Habilita as estruturas de suporte. Essas estruturas apóiam partes do modelo que tenham seções pendentes." + +#~ msgctxt "machine_end_gcode label" +#~ msgid "End GCode" +#~ msgstr "G-Code Final" + +#~ msgctxt "material_end_of_filament_purge_length label" +#~ msgid "End Of Filament Purge Length" +#~ msgstr "Comprimento de Purga de Fim de Filamento" + +#~ msgctxt "material_end_of_filament_purge_speed label" +#~ msgid "End Of Filament Purge Speed" +#~ msgstr "Velocidade de Purga de Fim de Filamento" + +#~ msgctxt "speed_equalize_flow_enabled label" +#~ msgid "Equalize Filament Flow" +#~ msgstr "Equalizar Fluxo de Filamento" + +#~ msgctxt "fill_perimeter_gaps option everywhere" +#~ msgid "Everywhere" +#~ msgstr "Em todos os lugares" + +#~ msgctxt "expand_lower_skins label" +#~ msgid "Expand Bottom Skins Into Infill" +#~ msgstr "Expande Contorno da Base Para Preenchimento" + +#~ msgctxt "expand_lower_skins label" +#~ msgid "Expand Lower Skins" +#~ msgstr "Expandir Contornos Inferiores" + +#~ msgctxt "expand_skins_into_infill label" +#~ msgid "Expand Skins Into Infill" +#~ msgstr "Expandir Contorno Para Preenchimento" + +#~ msgctxt "expand_upper_skins label" +#~ msgid "Expand Top Skins Into Infill" +#~ msgstr "Expandir Contorno do Topo Para Preenchimento" + +#~ msgctxt "expand_upper_skins label" +#~ msgid "Expand Upper Skins" +#~ msgstr "Expandir Contornos Superiores" + +#~ msgctxt "expand_lower_skins description" +#~ msgid "Expand lower skin areas (areas with air below) so that they are anchored by the infill layers above and below." +#~ msgstr "Expandir as áreas de contorno inferiores (áreas com ar abaixo) de modo que fiquem ancoradas pelas camadas de preenchimento acima e abaixo." + +#~ msgctxt "expand_skins_into_infill description" +#~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin." +#~ msgstr "Expandir áreas de perímetro das partes superiores e inferiores de superfícies chatas. Por default, o perímetro para sob as paredes que rodeiam o preenchimento mas isso pode fazer com que buracos apareçam caso a densidade de preenchimento seja baixa. Este ajuste estenda os perímetros além das linhas de parede de modo que o preenchimento da próxima camada fique em cima de perímetros." + +#~ msgctxt "expand_lower_skins description" +#~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below." +#~ msgstr "Expande as áreas de perímetro da base (áreas com ar abaixo delas) de modo que se ancorem nas camadas de preenchimento embaixo e acima." + +#~ msgctxt "expand_upper_skins description" +#~ msgid "Expand the top skin areas (areas with air above) so that they support infill above." +#~ msgstr "Expande as áreas de perímetro do topo (áreas com ar acima delas) de modo que suportem o preenchimento de cima." + +#~ msgctxt "expand_upper_skins description" +#~ msgid "Expand upper skin areas (areas with air above) so that they support infill above." +#~ msgstr "Expandir as áreas de contorno superiores (áreas com ar acima) de modo que suportem o preenchimento acima." + +#~ msgctxt "support_conical_enabled description" +#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." +#~ msgstr "Recurso experimental: Faz as áreas de suporte menores na base que na seção pendente." + +#~ msgctxt "machine_filament_park_distance label" +#~ msgid "Filament Park Distance" +#~ msgstr "Distância de Descanso do Filamento" + +#~ msgctxt "fill_perimeter_gaps label" +#~ msgid "Fill Gaps Between Walls" +#~ msgstr "Preenche Lacunas Entre Paredes" + +#~ msgctxt "fill_perimeter_gaps description" +#~ msgid "Fills the gaps between walls where no walls fit." +#~ msgstr "Preenche as lacunas que ficam entre paredes quando paredes intermediárias não caberiam." + +#~ msgctxt "filter_out_tiny_gaps label" +#~ msgid "Filter Out Tiny Gaps" +#~ msgstr "Filtrar Pequenas Lacunas" + +#~ msgctxt "filter_out_tiny_gaps description" +#~ msgid "Filter out tiny gaps to reduce blobs on outside of model." +#~ msgstr "Filtrar (rempver) pequenas lacunas para reduzir bolhas no exterior do modelo." + +#~ msgctxt "small_feature_speed_factor_0 label" +#~ msgid "First Layer Speed" +#~ msgstr "Velocidade da Primeira Camada" + +#~ msgctxt "wireframe_flow_connection description" +#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." +#~ msgstr "Compensação de Fluxo quanto subindo ou descendo. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wireframe_flow_flat description" +#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." +#~ msgstr "Compensação de fluxo ao imprimir filetes planos. Somente se aplica à Impressão em Arame." + +#~ msgctxt "prime_tower_flow description" +#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value." +#~ msgstr "Compensação de Fluxo: a quantidade de material extrudado é multiplicado por este valor." + +#~ msgctxt "wireframe_flow description" +#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." +#~ msgstr "Compensação de fluxo: a quantidade de material extrudado é multiplicado por este valor. Somente se aplica à Impressão em Arame." + +#~ msgctxt "flow_rate_extrusion_offset_factor label" +#~ msgid "Flow rate compensation factor" +#~ msgstr "Fator de compensaçõ de taxa de fluxo" + +#~ msgctxt "flow_rate_max_extrusion_offset label" +#~ msgid "Flow rate compensation max extrusion offset" +#~ msgstr "Deslocamento de extrusão máxima da compensação de taxa de fluxo" + +#~ msgctxt "reset_flow_duration description" +#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +#~ msgstr "Para qualquer movimento mais longo que este valor, o fluxo material é resetado para o fluxo-alvo do percurso." + +#~ msgctxt "machine_gcode_flavor label" +#~ msgid "G-code Flavour" +#~ msgstr "Sabor de G-Code" + +#~ msgctxt "machine_gcode_flavor label" +#~ msgid "G-code flavour" +#~ msgstr "Sabor de G-Code" + +#~ msgctxt "material_guid description" +#~ msgid "GUID of the material. This is set automatically. " +#~ msgstr "GUID do material. Este valor é ajustado automaticamente. " + +#~ msgctxt "gantry_height label" +#~ msgid "Gantry height" +#~ msgstr "Altura do eixo" + +#~ msgctxt "machine_end_gcode description" +#~ msgid "" +#~ "Gcode commands to be executed at the very end - separated by \n" +#~ "." +#~ msgstr "" +#~ "Comandos de G-Code a serem executados no fim da impressão - separados por \n" +#~ "." + +#~ msgctxt "machine_start_gcode description" +#~ msgid "" +#~ "Gcode commands to be executed at the very start - separated by \n" +#~ "." +#~ msgstr "" +#~ "Comandos de G-Code a serem executados durante o início da impressão - separados por \n" +#~ "." + +#~ msgctxt "machine_gcode_flavor label" +#~ msgid "Gcode flavour" +#~ msgstr "Tipo de G-Code" + +#~ msgctxt "support_tree_enable description" +#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." +#~ msgstr "Gera um suporte em árvore com galhos que apóiam sua impressão. Isto pode reduzir uso de material e tempo de impressão, mas aumenta bastante o tempo de fatiamento." + +#~ msgctxt "ironing_enabled description" +#~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." +#~ msgstr "Passar sobre a superfície superior depois de impressa, mas sem extrudar material. A idéia é derreter o plástico do topo ainda mais, criando uma superfície mais lisa." + +#~ msgctxt "gradual_flow_discretisation_step_size label" +#~ msgid "Gradual flow discretisation step size" +#~ msgstr "Tamanho de passo da discretização de fluxo gradual" + # ## Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better. -#~ msgctxt "gradual_flow_enabled label" -#~ msgid "Gradual flow enabled" -#~ msgstr "Fluxo gradual habilitado" - -#~ msgctxt "max_flow_acceleration label" -#~ msgid "Gradual flow max acceleration" -#~ msgstr "Aceleração máxima do fluxo gradual" - -#~ msgctxt "machine_heated_bed label" -#~ msgid "Has heated build plate" -#~ msgstr "Tem mesa de impressão aquecida" - -#~ msgctxt "machine_nozzle_heat_up_speed label" -#~ msgid "Heat up speed" -#~ msgstr "Velocidade de aquecimento" - -#~ msgctxt "machine_heat_zone_length label" -#~ msgid "Heat zone length" -#~ msgstr "Comprimento da zona de aquecimento" - -#~ msgctxt "infill_hollow label" -#~ msgid "Hollow Out Objects" -#~ msgstr "Tornar Objetos Ocos" - -#~ msgctxt "support_tree_branch_distance description" -#~ msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." -#~ msgstr "Quão distantes os galhos precisam estar quando tocam o modelo. Tornar esta distância pequena fará com que o suporte em árvore toque o modelo em mais pontos, permitindo maior sustentação mas tornando o suporte mais difícil de remover." - -#~ msgctxt "machine_steps_per_mm_e description" -#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -#~ msgstr "Quantos passos do motor de passo resultarão em um milímetro de extrusão." - -#~ msgctxt "slicing_tolerance description" -#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." -#~ msgstr "Como fatiar camadas com superfícies diagonais. As áreas de uma camada podem ser geradas baseadas em onde o meio da camada interseciona a superfície (Meio). Alternativamente, cada camada pode ter as áreas que se encontram dentro do volume por toda a altura da camada (Exclusivo) ou a camada pode abranger todas as áreas que tenham qualquer penetração dentro do volume (Inclusivo). Exclusivo retém mais detalhes, Inclusivo é melhor para encaixes e Meio toma menos tempo para processar." - -#~ msgctxt "wall_min_flow_retract description" -#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." -#~ msgstr "Se usado, a retração é usada ao invés de combing para movimentos de percurso que substituem paredes cujo fluxo estiver abaixo do limite mínimo." - -#~ msgctxt "skin_no_small_gaps_heuristic label" -#~ msgid "Ignore Small Z Gaps" -#~ msgstr "Ignorar Pequenas Lacunas em Z" - -#~ msgctxt "start_layers_at_same_position description" -#~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time." -#~ msgstr "Em cada camada iniciar imprimindo o objeto próximo ao mesmo ponto, de modo que não comecemos uma nova camada quando imprimir a peça com que a camada anterior terminou. Isso permite seções pendentes e partes pequenas melhores, mas aumenta o tempo de impressão." - -#~ msgctxt "material_bed_temp_prepend label" -#~ msgid "Include build plate temperature" -#~ msgstr "Incluir temperatura da mesa de impressão" - -#~ msgctxt "material_print_temp_prepend label" -#~ msgid "Include material temperatures" -#~ msgstr "Incluir temperaturas dos materiais" - -#~ msgctxt "infill_mesh_order label" -#~ msgid "Infill Mesh Order" -#~ msgstr "Order das Malhas de Preenchimento" - -#~ msgctxt "z_offset_layer_0 label" -#~ msgid "Initial Layer Z Offset" -#~ msgstr "Deslocamento em Z da Camada Inicial" - -#~ msgctxt "layer_0_max_flow_acceleration label" -#~ msgid "Initial layer max flow acceleration" -#~ msgstr "Aceleração máxima de fluxo da camada inicial" - -#~ msgctxt "wall_x_extruder_nr label" -#~ msgid "Inner Walls Extruder" -#~ msgstr "Extrusor das Paredes Internas" - -#~ msgctxt "machine_center_is_zero label" -#~ msgid "Is center origin" -#~ msgstr "A origem está no centro" - -#~ msgctxt "wireframe_strategy option knot" -#~ msgid "Knot" -#~ msgstr "Nó" - -#~ msgctxt "limit_support_retractions label" -#~ msgid "Limit Support Retractions" -#~ msgstr "Limitar Retrações de Suporte" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine Head Polygon" -#~ msgstr "Polígono Da Cabeça da Máquina" - -#~ msgctxt "machine_depth label" -#~ msgid "Machine depth" -#~ msgstr "Profundidada da mesa" - -#~ msgctxt "machine_head_with_fans_polygon label" -#~ msgid "Machine head & Fan polygon" -#~ msgstr "Polígono da cabeça da máquina e da ventoinha" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine head polygon" -#~ msgstr "Polígono da cabeça da máquina" - -#~ msgctxt "machine_height label" -#~ msgid "Machine height" -#~ msgstr "Altura do volume de impressão" - -#~ msgctxt "machine_width label" -#~ msgid "Machine width" -#~ msgstr "Largura da mesa" - -#~ msgctxt "prime_tower_circular description" -#~ msgid "Make the prime tower as a circular shape." -#~ msgstr "Faz a torre de purga na forma circular." - -#~ msgctxt "material_end_of_filament_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "material_end_of_filament_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "material_flush_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "material_flush_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "material_maximum_park_duration description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "material_no_load_move_factor description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "machine_max_feedrate_e label" -#~ msgid "Maximum Feedrate" -#~ msgstr "Velocidade Máxima de Alimentação" - -#~ msgctxt "speed_equalize_flow_max label" -#~ msgid "Maximum Speed for Flow Equalization" -#~ msgstr "Velocidade Máxima para Equalização de Fluxo" - -#~ msgctxt "max_feedrate_z_override label" -#~ msgid "Maximum Z Speed" -#~ msgstr "Velocidade Máxima em Z" - -#~ msgctxt "max_flow_acceleration description" -#~ msgid "Maximum acceleration for gradual flow changes" -#~ msgstr "Aceleração máxima para alterações de fluxo gradual" - -#~ msgctxt "max_extrusion_before_wipe description" -#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated." -#~ msgstr "Material máximo que pode ser extrudado antes que outra limpeza do bico seja iniciada." - -#~ msgctxt "speed_equalize_flow_max description" -#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -#~ msgstr "Velocidade máxima de impressão no ajuste de velocidades para equalizar o fluxo." - -#~ msgctxt "mesh_position_x label" -#~ msgid "Mesh position x" -#~ msgstr "Posição X da malha" - -#~ msgctxt "mesh_position_y label" -#~ msgid "Mesh position y" -#~ msgstr "Posição Y da malha" - -#~ msgctxt "mesh_position_z label" -#~ msgid "Mesh position z" -#~ msgstr "Posição Z da malha" - -#~ msgctxt "support_minimal_diameter label" -#~ msgid "Minimum Diameter" -#~ msgstr "Diâmetro mínimo" - -#~ msgctxt "wall_min_flow label" -#~ msgid "Minimum Wall Flow" -#~ msgstr "Mínimo Fluxo da Parede" - -#~ msgctxt "wall_min_flow description" -#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." -#~ msgstr "Mínima porcentagem de fluxo permite para um filete de parede. A compensação de sobreposição de parede reduz o fluxo de uma parede quando ela está próxima a outra já impressa. Paredes cujo fluxo seja menor que este valor serão trocadas por um momento de percurso. Ao usar este ajuste, você deve habilitar a compensação de sobreposição de paredes e imprimir as paredes externas antes das internas." - -#~ msgctxt "minimum_interface_area description" -#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "Área mínima para polígonos de interface de suporte. Polígonos que tiverem uma área menor que este valor não serão gerados." - -#~ msgctxt "minimum_bottom_area description" -#~ msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "Área mínima para as bases do suporte. Polígonos que tiverem uma área menor que este valor não serão gerados." - -#~ msgctxt "minimum_roof_area description" -#~ msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "Área mínima para os tetos do suporte. Polígonos que tiverem área menor que este valor são serão gerados." - -#~ msgctxt "support_minimal_diameter description" -#~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -#~ msgstr "Diâmeto mínimo nas direções X/Y de uma área pequena que deverá ser suportada por uma torre de suporte especial." - -#~ msgctxt "layer_0_max_flow_acceleration description" -#~ msgid "Minimum speed for gradual flow changes for the first layer" -#~ msgstr "Velocidade mínima para alterações graduais de fluxo na primeira camada" - -#~ msgctxt "retraction_combing option noskin" -#~ msgid "No Skin" -#~ msgstr "Evita Contornos" - -#~ msgctxt "meshfix_keep_open_polygons description" -#~ msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper GCode." -#~ msgstr "Normalmente o Cura tenta costurar pequenos furos na malha e remover partes de uma camada com grandes furos. Habilitar esta opção mantém aquelas partes que não podem ser costuradas. Este opção deve ser usada somente como uma última alternativa quando tudo o mais falha em produzir G-Code apropriado." - -#~ msgctxt "fill_perimeter_gaps option nowhere" -#~ msgid "Nowhere" -#~ msgstr "Em lugar nenhum" - -#~ msgctxt "machine_nozzle_expansion_angle label" -#~ msgid "Nozzle angle" -#~ msgstr "Ângulo do bico" - -#~ msgctxt "machine_nozzle_head_distance label" -#~ msgid "Nozzle length" -#~ msgstr "Comprimento do bico" - -#~ msgctxt "extruders_enabled_count label" -#~ msgid "Number of Extruders that are enabled" -#~ msgstr "Número de Extrusores habilitados" - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords label" -#~ msgid "Offset With Extruder" -#~ msgstr "Deslocamento do Extrusor" - -#~ msgctxt "limit_support_retractions description" -#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure." -#~ msgstr "Omitir retrações quando mudar de suporte a suporte em linha reta. Habilitar este ajuste economiza tempo de impressão, mas pode levar a fiapos entremeados à estrutura de suporte." - -#~ msgctxt "limit_support_retractions description" -#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." -#~ msgstr "Omitir a retração ao mover de suporte a suporte em linha reta. Habilitar este ajuste economiza tempo de impressão, mas pode levar a fiapos excessivos na estrutura de suporte." - -#~ msgctxt "cross_infill_apply_pockets_alternatingly description" -#~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." -#~ msgstr "Somente aplicar bolso em metades dos cruzamentos quádruplos no padrão cruzado 3D e alternar a localização dos bolso entre alturas onde o padrão esteja se tocando." - -#~ msgctxt "optimize_wall_printing_order description" -#~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization." -#~ msgstr "Otimiza a ordem em que paredes são impressas de modo a reduzir o número de retrações e a distância percorrida. A maioria das peças se beneficiarão deste ajuste habilitado mas algumas podem acabar levando mais tempo, portanto por favor compare as estimativas de tempo de impressão com e sem otimização." - -#~ msgctxt "support_infill_angles description" -#~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." -#~ msgstr "Orientação do padrão de preenchimento para suportes. O padrão de preenchimento do suporte é rotacionado no plano horizontal." - -#~ msgctxt "outer_inset_first label" -#~ msgid "Outer Before Inner Walls" -#~ msgstr "Paredes exteriores antes das interiores" - -#~ msgctxt "machine_nozzle_tip_outer_diameter label" -#~ msgid "Outer nozzle diameter" -#~ msgstr "Diametro externo do bico" - -#~ msgctxt "wireframe_straight_before_down description" -#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." -#~ msgstr "Porcentagem de um filete descendente diagonal que é coberto por uma peça de filete horizontal. Isto pode prevenir enfraquecimento do ponto superior das linhas ascendentes. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wall_min_flow_retract label" -#~ msgid "Prefer Retract" -#~ msgstr "Preferir Retração" - -#~ msgctxt "prime_tower_brim_enable label" -#~ msgid "Prime Tower Brim" -#~ msgstr "Brim da Torre de Purga" - -#~ msgctxt "prime_tower_purge_volume label" -#~ msgid "Prime Tower Purge Volume" -#~ msgstr "Volume de Purga da Torre de Purga" - -#~ msgctxt "prime_tower_wall_thickness label" -#~ msgid "Prime Tower Thickness" -#~ msgstr "Espessura da Torre de Purga" - -#~ msgctxt "prime_tower_brim_enable description" -#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -#~ msgstr "Torres de Prime podem precisar de aderência extra dada por um brim mesmo se o modelo não precisar. No momento não pode ser usado com o tipo de aderência 'Raft'." - -#~ msgctxt "wireframe_enabled description" -#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." -#~ msgstr "Imprime somente a superfície exterior usando uma estrutura esparsa em forma de teia sem usar as camadas horizontais de impressão, e imprimindo no ar. Isto é feito imprimindo horizontalmente os contornos do modelo em dados intervalos Z que são conectados por filetes diagonais para cima e para baixo." - -#~ msgctxt "spaghetti_infill_enabled description" -#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." -#~ msgstr "Imprime o preenchimento intermitentemente de modo que o filamento se enrole caoticamente dentro do objeto. Isto reduz o tempo de impressão, mas tem comportamento bem imprevisível." - -#~ msgctxt "speed_equalize_flow_enabled description" -#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." -#~ msgstr "Imprime filetes mais finos que o normal mais rapidamente de modo que a quantidade de material extrudado por segundo se mantenha o mesmo. Partes pequenas em seu modelo podem exigir filetes impressos com largura menor que as providas nos ajustes. Este ajuste controla as mudanças de velocidade para tais filetes." - -#~ msgctxt "outer_inset_first description" -#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." -#~ msgstr "Imprime as paredes em ordem de fora para dentro quando habilitado. Isto pode ajudar a melhorar a acurácia dimensional e X e Y quando se usa um plástico de alta viscosidade como ABS; no entanto pode também diminuir a qualidade de impressão da superfície externa, especialmente em seções pendentes." - -#~ msgctxt "raft_base_line_spacing label" -#~ msgid "Raft Line Spacing" -#~ msgstr "Espaçamento de Linhas do Raft" - -#~ msgctxt "infill_hollow description" -#~ msgid "Remove all infill and make the inside of the object eligible for support." -#~ msgstr "Remove todo o preenchimento e torna o interior oco do objeto elegível a suporte." - -#~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -#~ msgid "RepRap (Marlin/Sprinter)" -#~ msgstr "RepRap (Marlin/Sprinter)" - -#~ msgctxt "machine_gcode_flavor option RepRap (Volumatric)" -#~ msgid "RepRap (Volumetric)" -#~ msgstr "RepRap (Volumétrico)" - -#~ msgctxt "reset_flow_duration label" -#~ msgid "Reset flow duration" -#~ msgstr "Duração de reset do fluxo" - -#~ msgctxt "support_tree_collision_resolution description" -#~ msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." -#~ msgstr "Resolução para computar colisões com a qual evitar tocar o modelo. Ajustar valor mais baixos produzirá árvore mais precisas que falharão menos, mas aumentará o tempo de fatiamento dramaticamente." - -#~ msgctxt "wireframe_strategy option retract" -#~ msgid "Retract" -#~ msgstr "Retrair" - -#~ msgctxt "retraction_enable description" -#~ msgid "Retract the filament when the nozzle is moving over a non-printed area. " -#~ msgstr "Retrai o filamento quando o bico está se movendo sobre uma área não impressa. " - -#~ msgctxt "wipe_retraction_prime_speed label" -#~ msgid "Retraction Prime Speed" -#~ msgstr "Velocidade de Purga da Retração" - -#~ msgctxt "shell label" -#~ msgid "Shell" -#~ msgstr "Perímetro" - -#~ msgctxt "machine_show_variants label" -#~ msgid "Show machine variants" -#~ msgstr "Mostrar variantes da máquina" - -#~ msgctxt "material_shrinkage_percentage label" -#~ msgid "Shrinkage Ratio" -#~ msgstr "Raio de Contração" - -#~ msgctxt "material_shrinkage_percentage description" -#~ msgid "Shrinkage ratio in percentage." -#~ msgstr "Raio de contração do material em porcentagem." - -#~ msgctxt "support_skip_some_zags label" -#~ msgid "Skip Some ZigZags Connections" -#~ msgstr "Pular Algumas Conexões de Ziguezague" - -#~ msgctxt "support_zag_skip_count description" -#~ msgid "Skip one in every N connection lines to make the support structure easier to break." -#~ msgstr "Pular uma em cada N linhas de conexão para fazer a estrutura de suporte mais fácil de ser removida." - -#~ msgctxt "support_skip_some_zags description" -#~ msgid "Skip some ZigZags connections to make the support structure easier to break." -#~ msgstr "Pula algumas conexões de Ziguezague para fazer a estrutura de suporte mais fácil de ser removida." - -#~ msgctxt "small_feature_speed_factor_0 description" -#~ msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy." -#~ msgstr "Aspectos pequenos na primeira camada serão impressos nesta porcentagem de sua velocidade normal de impressão. Impressão mais lenta pode ajudar com aderência e precisão." - -#~ msgctxt "small_feature_speed_factor description" -#~ msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy." -#~ msgstr "Pequenos aspectos serão impressos com esta porcentagem de sua velocidade normal de impressão. Impressão mais lenta pode ajudar com aderência e precisão." - -#~ msgctxt "small_skin_width description" -#~ msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions." -#~ msgstr "Regiões pequenas de teto/base são preenchidas com paredes ao invés do padrão default de teto/base. Isto ajuda a prevenir movimentos bruscos." - -#~ msgctxt "smooth_spiralized_contours description" -#~ msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z-seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -#~ msgstr "Suaviza os contornos espiralizados para reduzir a visibilidade da costura em Z (esta costura será quase invisível na impressão mas ainda pode ser vista na visão de camadas). Note que suavizar tenderá a remover detalhes finos de superfície." - -#~ msgctxt "spaghetti_flow label" -#~ msgid "Spaghetti Flow" -#~ msgstr "Fluxo de Espaguete" - -#~ msgctxt "spaghetti_infill_enabled label" -#~ msgid "Spaghetti Infill" -#~ msgstr "Preenchimento em Espaguete" - -#~ msgctxt "spaghetti_infill_extra_volume label" -#~ msgid "Spaghetti Infill Extra Volume" -#~ msgstr "Volume Extra do Preenchimento Espaguete" - -#~ msgctxt "spaghetti_max_height label" -#~ msgid "Spaghetti Infill Maximum Height" -#~ msgstr "Altura Máxima do Preenchimento Espaguete" - -#~ msgctxt "spaghetti_infill_stepped label" -#~ msgid "Spaghetti Infill Stepping" -#~ msgstr "Passos do Preenchimento de Espaguete" - -#~ msgctxt "spaghetti_inset label" -#~ msgid "Spaghetti Inset" -#~ msgstr "Penetração do Espaguete" - -#~ msgctxt "spaghetti_max_infill_angle label" -#~ msgid "Spaghetti Maximum Infill Angle" -#~ msgstr "Ângulo de Preenchimento Máximo do Espaguete" - -#~ msgctxt "wireframe_printspeed description" -#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." -#~ msgstr "Velocidade com que a cabeça de impressão se move ao extrudar material. Somente se aplica a Impressão em Arame." - -#~ msgctxt "wireframe_printspeed_down description" -#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." -#~ msgstr "Velocidade de impressão dos filetes descendentes feitas 'no ar'. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_printspeed_up description" -#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." -#~ msgstr "Velocidade de impressão dos filetes ascendentes feitas 'no ar'. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_printspeed_bottom description" -#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." -#~ msgstr "Velocidade de Impressão da primeira camada, que é a única camada que toca a mesa. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_printspeed_flat description" -#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." -#~ msgstr "Velocidade de impressão dos contornos horizontais do modelo. Somente se aplica à Impressão em Arame." - -#~ msgctxt "magic_spiralize description" -#~ msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature used to be called Joris in older versions." -#~ msgstr "Este modo, também chamado de Modo Vaso ou Joris, transforma a trajetória do filete de plástico de impressão em uma espiral ascendente, com o Z lentamente subindo. Para isso, torna um modelo sólido em uma casca de parede única com a base sólida. Nem toda forma funciona corretamente com o modo vaso." - -#~ msgctxt "wall_split_middle_threshold label" -#~ msgid "Split Middle Line Threshold" -#~ msgstr "Limite de Filete Central Dividido" - -#~ msgctxt "machine_start_gcode label" -#~ msgid "Start GCode" -#~ msgstr "G-Code Inicial" - -#~ msgctxt "start_layers_at_same_position label" -#~ msgid "Start Layers with the Same Part" -#~ msgstr "Iniciar Camadas com a Mesma Parte" - -#~ msgctxt "wireframe_strategy description" -#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." -#~ msgstr "Estratégia para se assegurar que duas camadas consecutivas se conectam a cada ponto de conexão. Retração faz com que os filetes ascendentes se solidifiquem na posição correta, mas pode causar desgaste de filamento. Um nó pode ser feito no fim de um filete ascendentes para aumentar a chance de se conectar a ele e deixar o filete esfriar; no entanto, pode exigir velocidades de impressão lentas. Outra estratégia é compensar pelo enfraquecimento do topo de uma linha ascendente; no entanto, as linhas nem sempre cairão como preditas." - -#~ msgctxt "support_bottom_height label" -#~ msgid "Support Bottom Thickness" -#~ msgstr "Espessura da Base do Suporte" - -#~ msgctxt "support_interface_line_distance label" -#~ msgid "Support Interface Line Distance" -#~ msgstr "Distância entre Linhas da Interface de Suporte" - -#~ msgctxt "infill_pattern option tetrahedral" -#~ msgid "Tetrahedral" -#~ msgstr "Tetraédrico" - -#~ msgctxt "acceleration_support_interface description" -#~ msgid "The acceleration with which the roofs and bottoms of support are printed. Printing them at lower accelerations can improve overhang quality." -#~ msgstr "Aceleração com que o topo e base dos suportes são impressos. Imprimi-lo a menores acelerações pode aprimorar a qualidade das seções pendentes." - -#~ msgctxt "infill_overlap description" -#~ msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -#~ msgstr "Porcentagem de sobreposição entre o preenchimento e as paredes. Uma leve sobreposição permite que as paredes fiquem firmemente aderidas ao preenchimento." - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "A quantidade de sobreposição entre o contorno e as paredes como uma porcentagem da largura de extrusão. Uma sobreposição leve permite que as paredes se conectem firmemente ao contorno. Este ajuste é uma porcentagem das larguras de extrusão média do contorno e da parede mais interna." - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "A quantidade de sobreposição entre o contorno e as paredes como uma porcentagem da largura de extrusão do contorno. Uma leve sobreposição permite que as paredes se conectem firmemente ao contorno. É uma porcentagem das larguras de extrusão médias das linhas de contorno e a parede mais interna." - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "Porcentagem de sobreposição entre o contorno e as paredes. Uma ligeira sobreposição permite às paredes ficarem firmemente aderidas ao contorno." - -#~ msgctxt "skin_overlap_mm description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "A quantidade de sobreposição entre o contorno e as paredes. Uma leve sobreposição permite às paredes ficarem firmemente aderidas ao contorno." - -#~ msgctxt "switch_extruder_retraction_amount description" -#~ msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone." -#~ msgstr "A quantidade de retração: coloque em '0' para nenhuma retração. Isto deve geralmente ser o mesmo que o comprimento da zona de aquecimento dentro do hotend." - -#~ msgctxt "support_tree_angle description" -#~ msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -#~ msgstr "Ô angulo dos galhos. Use um ângulo menor para torná-los mais verticais e mais estáveis. Use um ângulo maior para aumentar o alcance." - -#~ msgctxt "lightning_infill_prune_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." -#~ msgstr "A diferença que uma camada de preenchimento relâmpago pode ter em relação à camada imediatamente superior de acordo com a poda das extremidades externas das árvores. Medido em ângulo de acordo com a espessura." - -#~ msgctxt "lightning_infill_straightening_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." -#~ msgstr "A diferença que uma camada de preenchimento relâmpago pode ter em relação à camada imediatamente superior de acordo com a suavização de árvores. Medido em ângulo de acordo com a espessura." - -#~ msgctxt "wireframe_roof_inset description" -#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." -#~ msgstr "A distância coberta quando é feita uma conexão do contorno do teto para dentro. Somente se aplica a Impressão em Arame." - -#~ msgctxt "wireframe_roof_drag_along description" -#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "A distância da parte final de um filete para dentro que é arrastada quando o extrusor começa a voltar para o contorno externo do topo. Esta distância é compensada. Somente se aplica à Impressão em Arame." - -#~ msgctxt "expand_skins_expand_distance description" -#~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient." -#~ msgstr "A distância que os contornos são expandidos para dentro do preenchimento. A distância default é suficiente para ligar o vão entre as linhas de preenchimento e impedirá que buracos apareçam no contorno onde ele encontrar a parede em que a densidade de preenchimento é baixa. Uma distância menor pode ser suficiente." - -#~ msgctxt "wireframe_roof_fall_down description" -#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "A distância em que filetes horizontais do topo impressos no ar caem quando sendo impressos. Esta distância é compensada. Somente se aplica à Impressão em Arame." - -#~ msgctxt "z_offset_layer_0 description" -#~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly." -#~ msgstr "O extrusor é deslocado da altura normal da primeira camada por esta distância. Pode ser positiva (elevada) ou negativa (abaixada). Alguns tipos de filamento aderem à camada de impressão melhor se o extrusor for elevado ligeiramente." - -#~ msgctxt "support_interface_extruder_nr description" -#~ msgid "The extruder train to use for printing the roofs and bottoms of the support. This is used in multi-extrusion." -#~ msgstr "O extrusor a usar para imprimir o topo e base dos suportes. Isto é utilizado em multi-extrusão." - -#~ msgctxt "support_bottom_stair_step_height description" -#~ msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -#~ msgstr "A altura dos passos da base tipo escada do suporte em cima do modelo. Um valor baixo faz o suporte ser mais difícil de remover, mas valores muito altos podem criar estruturas de suporte instáveis." - -#~ msgctxt "wireframe_height description" -#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." -#~ msgstr "A altura dos filetes diagonais para cima e para baixo entre duas partes horizontais. Isto determina a densidade geral da estrutura em rede. Somente se aplica a Impressão em Arame." - -#~ msgctxt "skirt_gap description" -#~ msgid "" -#~ "The horizontal distance between the skirt and the first layer of the print.\n" -#~ "This is the minimum distance, multiple skirt lines will extend outwards from this distance." -#~ msgstr "" -#~ "A distância horizontal entre o skirt e a primeira camada da impressão.\n" -#~ "Esta é a distância mínima; múltiplas linhas de skirt se estenderão pra fora a partir desta distância." - -#~ msgctxt "infill_offset_x description" -#~ msgid "The infill pattern is offset this distance along the X axis." -#~ msgstr "O padrão de preenchimento é corrigido/deslocado nesta distância no eixo X." - -#~ msgctxt "infill_offset_y description" -#~ msgid "The infill pattern is offset this distance along the Y axis." -#~ msgstr "O padrão de preenchimento é corrigido/deslocado nesta distância no eixo Y." - -#~ msgctxt "adaptive_layer_height_variation description" -#~ msgid "The maximum allowed height different from the base layer height in mm." -#~ msgstr "A dferença de altura máxima permitida da altura de camada base permitida, em mm." - -#~ msgctxt "bridge_wall_max_overhang description" -#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -#~ msgstr "O comprimento máximo permitido da região de ar abaixo da linha da parede antes que a parede seja impressa usando ajustes de ponte. Expressado como uma porcentagem da espessura de filete de parede. Quando o vão for mais largo que esta quantia, a parede é impressa usando os ajustes de ponte. Senão, a parede é impressa com os ajustes normais. Quanto menor o valor, mais provável que os filetes da parede sejam impressos com os ajustes de ponte." - -#~ msgctxt "spaghetti_max_infill_angle description" -#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." -#~ msgstr "O ângulo máximo em relação ao Z do interior da impressão para áreas que serão preenchidas com espaguete no final. Abaixar este valor faz com que mais partes anguladas do seu modelo sejam preenchidas a cada camada." - -#~ msgctxt "meshfix_maximum_deviation description" -#~ msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller." -#~ msgstr "O valor máximo de desvio permitido ao reduzir a resolução para o ajuste de Resolução Máxima. Se você aumenta este número, a impressão terá menos acuidade, mas o G-Code será menor." - -#~ msgctxt "support_join_distance description" -#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one." -#~ msgstr "Distância máxima entre as estruturas de suporte nas direções X/Y. Quando estrutura separadas estão mais perto que este valor, as estruturas são combinadas em uma única." - -#~ msgctxt "flow_rate_max_extrusion_offset description" -#~ msgid "The maximum distance in mm to compensate." -#~ msgstr "A distância máxima em mm a compensar." - -#~ msgctxt "spaghetti_max_height description" -#~ msgid "The maximum height of inside space which can be combined and filled from the top." -#~ msgstr "A altura máxima do espaço interior que pode ser combinado e preenchido a partir do topo." - -#~ msgctxt "jerk_support_interface description" -#~ msgid "The maximum instantaneous velocity change with which the roofs and bottoms of support are printed." -#~ msgstr "A mudança instantânea máxima de velocidade em uma direção com que a base e o topo dos suporte é impresso." - -#~ msgctxt "max_feedrate_z_override description" -#~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed." -#~ msgstr "A velocidade máxima com que o eixo Z é movido. Colocar isto em zero faz com que a impressão use os defaults de firmware para a velocidade máxima de Z." - -#~ msgctxt "mold_width description" -#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." -#~ msgstr "A distância mínima entre o exterior do molde e do modelo." - -#~ msgctxt "min_odd_wall_line_width description" -#~ msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width," -#~ msgstr "A largura mínima de filete para as paredes multifiletes de preenchimento de vão de filete central. Este ajuste determina em que espessura de modelo nós alternamos de imprimir dois filetes de parede para imprimir duas paredes externas e uma parede central no centro. Uma Largura Mínima de Filete de Parede Ímpar leva a uma largura máxima de filete de parede par mais alta. A largura máxima de filete de parede par é calculada como 2 * Largura Mínima de Filete de Parede Par." - -#~ msgctxt "flow_rate_extrusion_offset_factor description" -#~ msgid "The multiplication factor for the flow rate -> distance translation." -#~ msgstr "O fator de multiplicação para a tradução entre taxa de fluxo -> distância." - -#~ msgctxt "support_tree_wall_count description" -#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "O número de filetes da parede dos galhos do suporte em árvore. Paredes mais espessas tomarão mais tempo pra imprimir mas não tombarão facilmente." - -#~ msgctxt "spaghetti_inset description" -#~ msgid "The offset from the walls from where the spaghetti infill will be printed." -#~ msgstr "O deslocamento a partir das paredes de onde o preenchimento espaguete será impresso." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Padrão ou estampa do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague trocam de direção em camadas alternadas, reduzindo custo de material. Os padrões de grade, triângulo, cúbico, tetraédrico e concêntrico são totalmente impressos a cada camada. Os padrões cúbico e tetraédrico mudam a cada camada para prover uma distribuição mais igualitária de força para cada direção." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "O padrão do material de preenchimento da impressão. Preenchimento de Linhas e Ziguezague trocam direções em camadas alternadas, reduzindo custo do material. Os padrões de Grade, Triângulo, Tri-Hexágono, Cúbico, Octeto, Quarto Cúbico, Cruzado e Concêntrico são totalmente impressos em cada camada. Os preenchimentos Cúbico, Quarto Cúbico e Octeto mudam em cada camada para prover uma distribuição mais uniforme de forças em cada direção." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague mudam de direção em camadas alternadas, reduzindo o custo do material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são impressos em totalidade a cada camada. Os padrões giróide, cúbico, quarto cúbico e octeto mudam a cada camada para prover uma distribuição mais igualitária de força em cada direção." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." -#~ msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague trocam de direção em camadas alternadas, reduzindo o custo de material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são impressos a cada camada. Os preenchimentos giroide, cúbico, quarto cúbico e octeto mudam em cada camada para prover uma distribuição mais uniforme de força em cada direção. O preenchimento de relâmpago tenta minimizar o material suportando apenas os tetos (internos) do objeto. Como tal, a porcentagem de preenchimento somente é 'válida' uma camada abaixo do que quer que seja que ela precise para suportar o modelo." - -#~ msgctxt "wall_add_middle_threshold description" -#~ msgid "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -#~ msgstr "A largura de filete mínima, como fator da largura de filete normal, acima da qual um filete central (se já não houver algum) será adicionado. Reduza este ajuste para usar mais e e mais finos filetes. Aumente para usar menos, mais largos filetes. Note que isto se aplica -como se- a forma inteira devesse ser preenchida com paredes, portanto o centro aqui se refere ao meio do objeto entre duas arestas externas da forma, mesmo se houver preenchimento ou contornos na impressão ao invés de paredes." - -#~ msgctxt "wall_split_middle_threshold description" -#~ msgid "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -#~ msgstr "A largura de filete mínima, como fator da largura de filete normal, acima da qual o filete central (se houver algum) será dividido em dois. Reduza este ajuste para usar mais e maiores filetes. Aumente para usar menos e menores filetes. Note que isto se aplica -como se- a forma inteira devesse ser preenchida com parede, dado que o centro aqui se refere ao meio do objeto entre duas arestas externas da forma, mesmo se houver preenchimento ou (outros) contornos na impressão ao invés de paredes." - -#~ msgctxt "speed_support_interface description" -#~ msgid "The speed at which the roofs and bottoms of support are printed. Printing the them at lower speeds can improve overhang quality." -#~ msgstr "A velocidade em que o topo e base dos suportes são impressos. Imprimi-lo a menores velocidade pode melhor a qualidade das seções pendentes." - -#~ msgctxt "speed_layer_0 description" -#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." -#~ msgstr "A velocidade para a camada inicial. Um valor menor é aconselhado para aprimorar a aderência à mesa de impressão." - -#~ msgctxt "build_volume_temperature description" -#~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted." -#~ msgstr "A temperatura usada para o volume de construção. Se o valor for zero, a temperatura de volume de impressão não será ajustada." - -#~ msgctxt "material_print_temperature_layer_0 description" -#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -#~ msgstr "A temperatura usada para imprimir a primeira camada. Coloque 0 para desabilitar processamento especial da camada inicial." - -#~ msgctxt "material_print_temperature description" -#~ msgid "The temperature used for printing. Set at 0 to pre-heat the printer manually." -#~ msgstr "Temperatura usada para a impressão. COloque em '0' para pré-aquecer a impressora manualmente." - -#~ msgctxt "material_bed_temperature_layer_0 description" -#~ msgid "The temperature used for the heated build plate at the first layer." -#~ msgstr "A temperatura usada para a mesa aquecida na primeira camada." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." -#~ msgstr "A temperatura usada para a plataforma de impressão aquecida. Se for 0, a temperatura da mesa não será ajustada." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print." -#~ msgstr "A temperatura usada pela mesa aquecida de impressão. Se for 0, a mesa não aquecerá para esta impressão." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. Set at 0 to pre-heat the printer manually." -#~ msgstr "A temperatura usada para a mesa aquecida. Coloque em '0' para pré-aquecer a impressora manualmente." - -#~ msgctxt "prime_tower_wall_thickness description" -#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -#~ msgstr "A espessura da torre de purga (que é oca). Uma espessura maior que a metade do volume mínimo da torre de purga resultará em uma torre de purga densa." - -#~ msgctxt "wall_thickness description" -#~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -#~ msgstr "A espessura das paredes na direção horizontal. Este valor dividido pela largura de extrusão da parede define o número de paredes." - -#~ msgctxt "support_bottom_height description" -#~ msgid "The thickness of the support bottoms. This controls the number of dense layers are printed on top of places of a model on which support rests." -#~ msgstr "A espessura da base do suporte. Isto controla o número de camadas densas que são impressas no topo de lugares do modelo em que o suporte se assenta." - -#~ msgctxt "support_tree_wall_thickness description" -#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "A espessura das paredes dos galhos do suporte em árvore. Paredes mais espessas tomarão mais tempo pra imprimir mas não tombarão facilmente." - -#~ msgctxt "machine_gcode_flavor description" -#~ msgid "The type of gcode to be generated." -#~ msgstr "Tipo de G-Code a ser gerado para a impressora." - -#~ msgctxt "raft_smoothing description" -#~ msgid "This setting control how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -#~ msgstr "Este ajuste controla quantos cantos interiores no contorno do raft são arredondados. Cantos no sentido interior são arredondados para um semicírculo com raio igual ao valor dado aqui. Este ajuste também remove buracos que sejam menores que tal círculo no contorno do raft." - -#~ msgctxt "adaptive_layer_height_threshold description" -#~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." -#~ msgstr "Limite até onde se usa uma camada menor ou não. Este número é comparado à tangente da ladeira mais vertical da camada." - -#~ msgctxt "wireframe_roof_outer_delay description" -#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." -#~ msgstr "El tiempo empleado en los perímetros exteriores del agujero que se convertirá en un techo. Cuanto mayor sea el tiempo, mejor será la conexión. Solo se aplica a la impresión de alambre." - -#~ msgctxt "max_skin_angle_for_expansion description" -#~ msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal, while an angle of 90° is vertical." -#~ msgstr "Superfícies Superiores e/ou Inferiores de seu objeto com um ângulo maior que este ajuste não terão seus contornos superior/inferior expandidos. Isto evita que expandam as áreas estreitas de contorno que são criadas quando a superfície do modelo tem uma inclinação praticamente vertical. Um ângulo de 0° é horizontal, um ângulo de 90° é vertical." - -#~ msgctxt "support_tree_enable label" -#~ msgid "Tree Support" -#~ msgstr "Suporte de Árvore" - -#~ msgctxt "support_tree_angle label" -#~ msgid "Tree Support Branch Angle" -#~ msgstr "Ângulo do Galho do Suporte em Árvore" - -#~ msgctxt "support_tree_branch_diameter label" -#~ msgid "Tree Support Branch Diameter" -#~ msgstr "Diâmetro de Galho do Suporte em Árvore" - -#~ msgctxt "support_tree_branch_diameter_angle label" -#~ msgid "Tree Support Branch Diameter Angle" -#~ msgstr "Ângulo do Diâmetro do Galho do Suporte em Árvore" - -#~ msgctxt "support_tree_branch_distance label" -#~ msgid "Tree Support Branch Distance" -#~ msgstr "Distância dos Galhos do Suporte em Árvore" - -#~ msgctxt "support_tree_collision_resolution label" -#~ msgid "Tree Support Collision Resolution" -#~ msgstr "Resolução de Colisão do Suporte em Árvore" - -#~ msgctxt "support_tree_max_diameter label" -#~ msgid "Tree Support Trunk Diameter" -#~ msgstr "Diâmetro de Tronco do Suporte em Árvore" - -#~ msgctxt "support_tree_wall_count label" -#~ msgid "Tree Support Wall Line Count" -#~ msgstr "Número de Filetes da Parede do Suporte em Árvore" - -#~ msgctxt "support_tree_wall_thickness label" -#~ msgid "Tree Support Wall Thickness" -#~ msgstr "Espessura de Parede do Suporte em Árvore" - -#~ msgctxt "adaptive_layer_height_enabled label" -#~ msgid "Use adaptive layers" -#~ msgstr "Usar camadas adaptativas" - -#~ msgctxt "relative_extrusion description" -#~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any Gcode script is output." -#~ msgstr "Usar extrusão relativa ao invés de absoluta. Usar passos de extrusor relativos permite pós-processamento do G-Code mais fácil. No entanto, não é suportado por todas as impressoras e pode produzir desvios bem pequenos na quantidade de material depositado comparado aos passos de extrusor absolutos. Independente deste ajuste, o modo de extrusão sempre será configurado para absoluto antes que qualquer script de G-Code seja escrito." - -#~ msgctxt "wireframe_bottom_delay label" -#~ msgid "WP Bottom Delay" -#~ msgstr "Espera da Base de IA" - -#~ msgctxt "wireframe_printspeed_bottom label" -#~ msgid "WP Bottom Printing Speed" -#~ msgstr "Velocidade de Impressão da Base da IA" - -#~ msgctxt "wireframe_flow_connection label" -#~ msgid "WP Connection Flow" -#~ msgstr "Fluxo de Conexão da IA" - -#~ msgctxt "wireframe_height label" -#~ msgid "WP Connection Height" -#~ msgstr "Altura da Conexão IA" - -#~ msgctxt "wireframe_printspeed_down label" -#~ msgid "WP Downward Printing Speed" -#~ msgstr "Velocidade de Impressão Descendente de IA" - -#~ msgctxt "wireframe_drag_along label" -#~ msgid "WP Drag Along" -#~ msgstr "Arrasto de IA" - -#~ msgctxt "wireframe_up_half_speed label" -#~ msgid "WP Ease Upward" -#~ msgstr "Facilitador Ascendente da IA" - -#~ msgctxt "wireframe_fall_down label" -#~ msgid "WP Fall Down" -#~ msgstr "Queda de IA" - -#~ msgctxt "wireframe_flat_delay label" -#~ msgid "WP Flat Delay" -#~ msgstr "Espera Plana de IA" - -#~ msgctxt "wireframe_flow_flat label" -#~ msgid "WP Flat Flow" -#~ msgstr "Fluxo Plano de IA" - -#~ msgctxt "wireframe_flow label" -#~ msgid "WP Flow" -#~ msgstr "Fluxo da IA" - -#~ msgctxt "wireframe_printspeed_flat label" -#~ msgid "WP Horizontal Printing Speed" -#~ msgstr "Velocidade de Impressão Horizontal de IA" - -#~ msgctxt "wireframe_top_jump label" -#~ msgid "WP Knot Size" -#~ msgstr "Tamanho do Nó de IA" - -#~ msgctxt "wireframe_nozzle_clearance label" -#~ msgid "WP Nozzle Clearance" -#~ msgstr "Espaço Livre para o Bico em IA" - -#~ msgctxt "wireframe_roof_drag_along label" -#~ msgid "WP Roof Drag Along" -#~ msgstr "Arrasto do Topo de IA" - -#~ msgctxt "wireframe_roof_fall_down label" -#~ msgid "WP Roof Fall Down" -#~ msgstr "Queda do Topo de IA" - -#~ msgctxt "wireframe_roof_inset label" -#~ msgid "WP Roof Inset Distance" -#~ msgstr "Distância de Penetração do Teto da IA" - -#~ msgctxt "wireframe_roof_outer_delay label" -#~ msgid "WP Roof Outer Delay" -#~ msgstr "Retardo exterior del techo en IA" - -#~ msgctxt "wireframe_printspeed label" -#~ msgid "WP Speed" -#~ msgstr "Velocidade da IA" - -#~ msgctxt "wireframe_straight_before_down label" -#~ msgid "WP Straighten Downward Lines" -#~ msgstr "Endireitar Filetes Descendentes de IA" - -#~ msgctxt "wireframe_strategy label" -#~ msgid "WP Strategy" -#~ msgstr "Estratégia de IA" - -#~ msgctxt "wireframe_top_delay label" -#~ msgid "WP Top Delay" -#~ msgstr "Espera do Topo de IA" - -#~ msgctxt "wireframe_printspeed_up label" -#~ msgid "WP Upward Printing Speed" -#~ msgstr "Velocidade de Impressão Ascendente da IA" - -#, fuzzy -#~ msgctxt "material_bed_temp_wait label" -#~ msgid "Wait for build plate heatup" -#~ msgstr "Aguardar o aquecimento do bico" - -#~ msgctxt "material_print_temp_wait label" -#~ msgid "Wait for nozzle heatup" -#~ msgstr "Aguardar o aquecimento do bico" - -#~ msgctxt "wall_overhang_angle description" -#~ msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging." -#~ msgstr "Paredes que têm inclinação maior que este ângulo serão impressas usando ajustes de seção pendente de parede. Quando o valor for 90, nenhuma parede será tratada como seção pendente." - -#~ msgctxt "support_interface_skip_height description" -#~ msgid "When checking where there's model above the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -#~ msgstr "Quando se verificar onde há modelo sobre suporte, use passos da altura dada. Valores baixos vão fatiar mais lentamente, enquanto valores altos podem fazer o suporte normal ser impresso em lugares onde deveria haver interface de suporte." - -#~ msgctxt "retraction_combing_max_distance description" -#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." -#~ msgstr "Quando não-zero, os movimentos de percurso de combing que são maiores que esta distância usarão retração." - -#~ msgctxt "z_offset_taper_layers description" -#~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print." -#~ msgstr "Quando não for zero, o deslocamento em Z é reduzido a zero depois deste número de camadas. O valor zero significa que o deslocamento em Z permanece constante para todas as camadas da impressão." - -#~ msgctxt "skin_no_small_gaps_heuristic description" -#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." -#~ msgstr "Quando o modelo tem pequenas lacunas verticais, aproximadamente 5% de tempo de computação adicional pode ser gasto ao gerar camada externa superior e inferior nestes espaços estreitos. Em tal caso, desabilite este ajuste." - -#~ msgctxt "wipe_hop_enable description" -#~ msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -#~ msgstr "Sempre que uma retração é feita, a posição Z do extrusor é aumentada para aumentar a distância entre o bico e a impressão. Isso evita que o bico bata na impressão durante movimentos de percurso, reduzindo a chance de descolar a impressão da plataforma." - -#~ msgctxt "clean_between_layers description" -#~ msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." -#~ msgstr "Incluir ou não o G-Code para movimento de limpeza de bico (wipe) entre camadas. Habilitar este ajuste pode influenciar o comportamento de retração na mudança de camadas. Por favor use os ajustes de Retração de Limpeza para controlar retração nas camadas onde o script de limpeza funcionará." - -#~ msgctxt "print_sequence description" -#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -#~ msgstr "Esta opção decide se vocÊ deseja imprimir todos os modelos de uma só vez ou um modelo de cada vez. O modo de um modelo de cada vez só é possível se os modelos estiverem separados de tal forma que a cabeça de impressão possa se mover no meio e todos os modelos sejam mais baixos que a distância entre o bico e os carros X ou Y." - -#~ msgctxt "print_sequence description" -#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes. " -#~ msgstr "Opção que dz se se imprime todos os modelos uma camada por vez, ou se se espera que cada um termine para ir para o próximo. Modo um de cada vez é possível se a) somente um extrusor estiver habilitado e b) todos os modelos estiverem separados de maneira que a cabeça de impressão possa se mover entre eles e todos os modelos forem mais baixos que a distância entre o bico e os eixos X/Y." - -#~ msgctxt "spaghetti_infill_stepped description" -#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." -#~ msgstr "Opção para ou se imprimir o preenchimento espaguete em passos discretos ou extrudar todo o filamento de preenchimento no final da impressão." - -#~ msgctxt "support_interface_line_width description" -#~ msgid "Width of a single support interface line." -#~ msgstr "Largura de extrusão de um filete usado na interface da estrutura de suporte com o modelo." - -#~ msgctxt "dual_pre_wipe label" -#~ msgid "Wipe Nozzle After Switch" -#~ msgstr "Limpar Bico Depois da Troca" - -#~ msgctxt "wipe_hop_enable label" -#~ msgid "Wipe Z Hop When Retracted" -#~ msgstr "Salto Z da Limpeza Quando Retraída" - -#~ msgctxt "wireframe_enabled label" -#~ msgid "Wire Printing" -#~ msgstr "Impressão em Arame" - -#~ msgctxt "z_offset_taper_layers label" -#~ msgid "Z Offset Taper Layers" -#~ msgstr "Camadas de Amenização do Deslocamento Z" - -#~ msgctxt "support_zag_skip_count label" -#~ msgid "ZigZag Connection Skip Count" -#~ msgstr "Contagem de Pulos das Conexões de Ziguezague" - -#~ msgctxt "blackmagic description" -#~ msgid "category_blackmagic" -#~ msgstr "categoria_blackmagic" - -#~ msgctxt "meshfix description" -#~ msgid "category_fixes" -#~ msgstr "reparos_de_categoria" - -#~ msgctxt "experimental description" -#~ msgid "experimental!" -#~ msgstr "experimental!" +#~ msgctxt "gradual_flow_enabled label" +#~ msgid "Gradual flow enabled" +#~ msgstr "Fluxo gradual habilitado" + +#~ msgctxt "max_flow_acceleration label" +#~ msgid "Gradual flow max acceleration" +#~ msgstr "Aceleração máxima do fluxo gradual" + +#~ msgctxt "machine_heated_bed label" +#~ msgid "Has heated build plate" +#~ msgstr "Tem mesa de impressão aquecida" + +#~ msgctxt "machine_nozzle_heat_up_speed label" +#~ msgid "Heat up speed" +#~ msgstr "Velocidade de aquecimento" + +#~ msgctxt "machine_heat_zone_length label" +#~ msgid "Heat zone length" +#~ msgstr "Comprimento da zona de aquecimento" + +#~ msgctxt "infill_hollow label" +#~ msgid "Hollow Out Objects" +#~ msgstr "Tornar Objetos Ocos" + +#~ msgctxt "support_tree_branch_distance description" +#~ msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." +#~ msgstr "Quão distantes os galhos precisam estar quando tocam o modelo. Tornar esta distância pequena fará com que o suporte em árvore toque o modelo em mais pontos, permitindo maior sustentação mas tornando o suporte mais difícil de remover." + +#~ msgctxt "machine_steps_per_mm_e description" +#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." +#~ msgstr "Quantos passos do motor de passo resultarão em um milímetro de extrusão." + +#~ msgctxt "slicing_tolerance description" +#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." +#~ msgstr "Como fatiar camadas com superfícies diagonais. As áreas de uma camada podem ser geradas baseadas em onde o meio da camada interseciona a superfície (Meio). Alternativamente, cada camada pode ter as áreas que se encontram dentro do volume por toda a altura da camada (Exclusivo) ou a camada pode abranger todas as áreas que tenham qualquer penetração dentro do volume (Inclusivo). Exclusivo retém mais detalhes, Inclusivo é melhor para encaixes e Meio toma menos tempo para processar." + +#~ msgctxt "wall_min_flow_retract description" +#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." +#~ msgstr "Se usado, a retração é usada ao invés de combing para movimentos de percurso que substituem paredes cujo fluxo estiver abaixo do limite mínimo." + +#~ msgctxt "skin_no_small_gaps_heuristic label" +#~ msgid "Ignore Small Z Gaps" +#~ msgstr "Ignorar Pequenas Lacunas em Z" + +#~ msgctxt "start_layers_at_same_position description" +#~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time." +#~ msgstr "Em cada camada iniciar imprimindo o objeto próximo ao mesmo ponto, de modo que não comecemos uma nova camada quando imprimir a peça com que a camada anterior terminou. Isso permite seções pendentes e partes pequenas melhores, mas aumenta o tempo de impressão." + +#~ msgctxt "material_bed_temp_prepend label" +#~ msgid "Include build plate temperature" +#~ msgstr "Incluir temperatura da mesa de impressão" + +#~ msgctxt "material_print_temp_prepend label" +#~ msgid "Include material temperatures" +#~ msgstr "Incluir temperaturas dos materiais" + +#~ msgctxt "infill_mesh_order label" +#~ msgid "Infill Mesh Order" +#~ msgstr "Order das Malhas de Preenchimento" + +#~ msgctxt "z_offset_layer_0 label" +#~ msgid "Initial Layer Z Offset" +#~ msgstr "Deslocamento em Z da Camada Inicial" + +#~ msgctxt "layer_0_max_flow_acceleration label" +#~ msgid "Initial layer max flow acceleration" +#~ msgstr "Aceleração máxima de fluxo da camada inicial" + +#~ msgctxt "wall_x_extruder_nr label" +#~ msgid "Inner Walls Extruder" +#~ msgstr "Extrusor das Paredes Internas" + +#~ msgctxt "machine_center_is_zero label" +#~ msgid "Is center origin" +#~ msgstr "A origem está no centro" + +#~ msgctxt "wireframe_strategy option knot" +#~ msgid "Knot" +#~ msgstr "Nó" + +#~ msgctxt "limit_support_retractions label" +#~ msgid "Limit Support Retractions" +#~ msgstr "Limitar Retrações de Suporte" + +#~ msgctxt "machine_head_polygon label" +#~ msgid "Machine Head Polygon" +#~ msgstr "Polígono Da Cabeça da Máquina" + +#~ msgctxt "machine_depth label" +#~ msgid "Machine depth" +#~ msgstr "Profundidada da mesa" + +#~ msgctxt "machine_head_with_fans_polygon label" +#~ msgid "Machine head & Fan polygon" +#~ msgstr "Polígono da cabeça da máquina e da ventoinha" + +#~ msgctxt "machine_head_polygon label" +#~ msgid "Machine head polygon" +#~ msgstr "Polígono da cabeça da máquina" + +#~ msgctxt "machine_height label" +#~ msgid "Machine height" +#~ msgstr "Altura do volume de impressão" + +#~ msgctxt "machine_width label" +#~ msgid "Machine width" +#~ msgstr "Largura da mesa" + +#~ msgctxt "prime_tower_circular description" +#~ msgid "Make the prime tower as a circular shape." +#~ msgstr "Faz a torre de purga na forma circular." + +#~ msgctxt "material_end_of_filament_purge_length description" +#~ msgid "Material Station internal value" +#~ msgstr "Valor interno da Estação de Material" + +#~ msgctxt "material_end_of_filament_purge_speed description" +#~ msgid "Material Station internal value" +#~ msgstr "Valor interno da Estação de Material" + +#~ msgctxt "material_flush_purge_length description" +#~ msgid "Material Station internal value" +#~ msgstr "Valor interno da Estação de Material" + +#~ msgctxt "material_flush_purge_speed description" +#~ msgid "Material Station internal value" +#~ msgstr "Valor interno da Estação de Material" + +#~ msgctxt "material_maximum_park_duration description" +#~ msgid "Material Station internal value" +#~ msgstr "Valor interno da Estação de Material" + +#~ msgctxt "material_no_load_move_factor description" +#~ msgid "Material Station internal value" +#~ msgstr "Valor interno da Estação de Material" + +#~ msgctxt "machine_max_feedrate_e label" +#~ msgid "Maximum Feedrate" +#~ msgstr "Velocidade Máxima de Alimentação" + +#~ msgctxt "speed_equalize_flow_max label" +#~ msgid "Maximum Speed for Flow Equalization" +#~ msgstr "Velocidade Máxima para Equalização de Fluxo" + +#~ msgctxt "max_feedrate_z_override label" +#~ msgid "Maximum Z Speed" +#~ msgstr "Velocidade Máxima em Z" + +#~ msgctxt "max_flow_acceleration description" +#~ msgid "Maximum acceleration for gradual flow changes" +#~ msgstr "Aceleração máxima para alterações de fluxo gradual" + +#~ msgctxt "max_extrusion_before_wipe description" +#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated." +#~ msgstr "Material máximo que pode ser extrudado antes que outra limpeza do bico seja iniciada." + +#~ msgctxt "speed_equalize_flow_max description" +#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." +#~ msgstr "Velocidade máxima de impressão no ajuste de velocidades para equalizar o fluxo." + +#~ msgctxt "mesh_position_x label" +#~ msgid "Mesh position x" +#~ msgstr "Posição X da malha" + +#~ msgctxt "mesh_position_y label" +#~ msgid "Mesh position y" +#~ msgstr "Posição Y da malha" + +#~ msgctxt "mesh_position_z label" +#~ msgid "Mesh position z" +#~ msgstr "Posição Z da malha" + +#~ msgctxt "support_minimal_diameter label" +#~ msgid "Minimum Diameter" +#~ msgstr "Diâmetro mínimo" + +#~ msgctxt "wall_min_flow label" +#~ msgid "Minimum Wall Flow" +#~ msgstr "Mínimo Fluxo da Parede" + +#~ msgctxt "wall_min_flow description" +#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." +#~ msgstr "Mínima porcentagem de fluxo permite para um filete de parede. A compensação de sobreposição de parede reduz o fluxo de uma parede quando ela está próxima a outra já impressa. Paredes cujo fluxo seja menor que este valor serão trocadas por um momento de percurso. Ao usar este ajuste, você deve habilitar a compensação de sobreposição de paredes e imprimir as paredes externas antes das internas." + +#~ msgctxt "minimum_interface_area description" +#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated." +#~ msgstr "Área mínima para polígonos de interface de suporte. Polígonos que tiverem uma área menor que este valor não serão gerados." + +#~ msgctxt "minimum_bottom_area description" +#~ msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will not be generated." +#~ msgstr "Área mínima para as bases do suporte. Polígonos que tiverem uma área menor que este valor não serão gerados." + +#~ msgctxt "minimum_roof_area description" +#~ msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will not be generated." +#~ msgstr "Área mínima para os tetos do suporte. Polígonos que tiverem área menor que este valor são serão gerados." + +#~ msgctxt "support_minimal_diameter description" +#~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +#~ msgstr "Diâmeto mínimo nas direções X/Y de uma área pequena que deverá ser suportada por uma torre de suporte especial." + +#~ msgctxt "layer_0_max_flow_acceleration description" +#~ msgid "Minimum speed for gradual flow changes for the first layer" +#~ msgstr "Velocidade mínima para alterações graduais de fluxo na primeira camada" + +#~ msgctxt "retraction_combing option noskin" +#~ msgid "No Skin" +#~ msgstr "Evita Contornos" + +#~ msgctxt "meshfix_keep_open_polygons description" +#~ msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper GCode." +#~ msgstr "Normalmente o Cura tenta costurar pequenos furos na malha e remover partes de uma camada com grandes furos. Habilitar esta opção mantém aquelas partes que não podem ser costuradas. Este opção deve ser usada somente como uma última alternativa quando tudo o mais falha em produzir G-Code apropriado." + +#~ msgctxt "fill_perimeter_gaps option nowhere" +#~ msgid "Nowhere" +#~ msgstr "Em lugar nenhum" + +#~ msgctxt "machine_nozzle_expansion_angle label" +#~ msgid "Nozzle angle" +#~ msgstr "Ângulo do bico" + +#~ msgctxt "machine_nozzle_head_distance label" +#~ msgid "Nozzle length" +#~ msgstr "Comprimento do bico" + +#~ msgctxt "extruders_enabled_count label" +#~ msgid "Number of Extruders that are enabled" +#~ msgstr "Número de Extrusores habilitados" + +#~ msgctxt "machine_use_extruder_offset_to_offset_coords label" +#~ msgid "Offset With Extruder" +#~ msgstr "Deslocamento do Extrusor" + +#~ msgctxt "limit_support_retractions description" +#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure." +#~ msgstr "Omitir retrações quando mudar de suporte a suporte em linha reta. Habilitar este ajuste economiza tempo de impressão, mas pode levar a fiapos entremeados à estrutura de suporte." + +#~ msgctxt "limit_support_retractions description" +#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." +#~ msgstr "Omitir a retração ao mover de suporte a suporte em linha reta. Habilitar este ajuste economiza tempo de impressão, mas pode levar a fiapos excessivos na estrutura de suporte." + +#~ msgctxt "cross_infill_apply_pockets_alternatingly description" +#~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." +#~ msgstr "Somente aplicar bolso em metades dos cruzamentos quádruplos no padrão cruzado 3D e alternar a localização dos bolso entre alturas onde o padrão esteja se tocando." + +#~ msgctxt "optimize_wall_printing_order description" +#~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization." +#~ msgstr "Otimiza a ordem em que paredes são impressas de modo a reduzir o número de retrações e a distância percorrida. A maioria das peças se beneficiarão deste ajuste habilitado mas algumas podem acabar levando mais tempo, portanto por favor compare as estimativas de tempo de impressão com e sem otimização." + +#~ msgctxt "support_infill_angles description" +#~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." +#~ msgstr "Orientação do padrão de preenchimento para suportes. O padrão de preenchimento do suporte é rotacionado no plano horizontal." + +#~ msgctxt "outer_inset_first label" +#~ msgid "Outer Before Inner Walls" +#~ msgstr "Paredes exteriores antes das interiores" + +#~ msgctxt "machine_nozzle_tip_outer_diameter label" +#~ msgid "Outer nozzle diameter" +#~ msgstr "Diametro externo do bico" + +#~ msgctxt "wireframe_straight_before_down description" +#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." +#~ msgstr "Porcentagem de um filete descendente diagonal que é coberto por uma peça de filete horizontal. Isto pode prevenir enfraquecimento do ponto superior das linhas ascendentes. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wall_min_flow_retract label" +#~ msgid "Prefer Retract" +#~ msgstr "Preferir Retração" + +#~ msgctxt "prime_tower_brim_enable label" +#~ msgid "Prime Tower Brim" +#~ msgstr "Brim da Torre de Purga" + +#~ msgctxt "prime_tower_purge_volume label" +#~ msgid "Prime Tower Purge Volume" +#~ msgstr "Volume de Purga da Torre de Purga" + +#~ msgctxt "prime_tower_wall_thickness label" +#~ msgid "Prime Tower Thickness" +#~ msgstr "Espessura da Torre de Purga" + +#~ msgctxt "prime_tower_brim_enable description" +#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +#~ msgstr "Torres de Prime podem precisar de aderência extra dada por um brim mesmo se o modelo não precisar. No momento não pode ser usado com o tipo de aderência 'Raft'." + +#~ msgctxt "wireframe_enabled description" +#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." +#~ msgstr "Imprime somente a superfície exterior usando uma estrutura esparsa em forma de teia sem usar as camadas horizontais de impressão, e imprimindo no ar. Isto é feito imprimindo horizontalmente os contornos do modelo em dados intervalos Z que são conectados por filetes diagonais para cima e para baixo." + +#~ msgctxt "spaghetti_infill_enabled description" +#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." +#~ msgstr "Imprime o preenchimento intermitentemente de modo que o filamento se enrole caoticamente dentro do objeto. Isto reduz o tempo de impressão, mas tem comportamento bem imprevisível." + +#~ msgctxt "speed_equalize_flow_enabled description" +#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." +#~ msgstr "Imprime filetes mais finos que o normal mais rapidamente de modo que a quantidade de material extrudado por segundo se mantenha o mesmo. Partes pequenas em seu modelo podem exigir filetes impressos com largura menor que as providas nos ajustes. Este ajuste controla as mudanças de velocidade para tais filetes." + +#~ msgctxt "outer_inset_first description" +#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." +#~ msgstr "Imprime as paredes em ordem de fora para dentro quando habilitado. Isto pode ajudar a melhorar a acurácia dimensional e X e Y quando se usa um plástico de alta viscosidade como ABS; no entanto pode também diminuir a qualidade de impressão da superfície externa, especialmente em seções pendentes." + +#~ msgctxt "raft_base_line_spacing label" +#~ msgid "Raft Line Spacing" +#~ msgstr "Espaçamento de Linhas do Raft" + +#~ msgctxt "infill_hollow description" +#~ msgid "Remove all infill and make the inside of the object eligible for support." +#~ msgstr "Remove todo o preenchimento e torna o interior oco do objeto elegível a suporte." + +#~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +#~ msgid "RepRap (Marlin/Sprinter)" +#~ msgstr "RepRap (Marlin/Sprinter)" + +#~ msgctxt "machine_gcode_flavor option RepRap (Volumatric)" +#~ msgid "RepRap (Volumetric)" +#~ msgstr "RepRap (Volumétrico)" + +#~ msgctxt "reset_flow_duration label" +#~ msgid "Reset flow duration" +#~ msgstr "Duração de reset do fluxo" + +#~ msgctxt "support_tree_collision_resolution description" +#~ msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." +#~ msgstr "Resolução para computar colisões com a qual evitar tocar o modelo. Ajustar valor mais baixos produzirá árvore mais precisas que falharão menos, mas aumentará o tempo de fatiamento dramaticamente." + +#~ msgctxt "wireframe_strategy option retract" +#~ msgid "Retract" +#~ msgstr "Retrair" + +#~ msgctxt "retraction_enable description" +#~ msgid "Retract the filament when the nozzle is moving over a non-printed area. " +#~ msgstr "Retrai o filamento quando o bico está se movendo sobre uma área não impressa. " + +#~ msgctxt "wipe_retraction_prime_speed label" +#~ msgid "Retraction Prime Speed" +#~ msgstr "Velocidade de Purga da Retração" + +#~ msgctxt "shell label" +#~ msgid "Shell" +#~ msgstr "Perímetro" + +#~ msgctxt "machine_show_variants label" +#~ msgid "Show machine variants" +#~ msgstr "Mostrar variantes da máquina" + +#~ msgctxt "material_shrinkage_percentage label" +#~ msgid "Shrinkage Ratio" +#~ msgstr "Raio de Contração" + +#~ msgctxt "material_shrinkage_percentage description" +#~ msgid "Shrinkage ratio in percentage." +#~ msgstr "Raio de contração do material em porcentagem." + +#~ msgctxt "support_skip_some_zags label" +#~ msgid "Skip Some ZigZags Connections" +#~ msgstr "Pular Algumas Conexões de Ziguezague" + +#~ msgctxt "support_zag_skip_count description" +#~ msgid "Skip one in every N connection lines to make the support structure easier to break." +#~ msgstr "Pular uma em cada N linhas de conexão para fazer a estrutura de suporte mais fácil de ser removida." + +#~ msgctxt "support_skip_some_zags description" +#~ msgid "Skip some ZigZags connections to make the support structure easier to break." +#~ msgstr "Pula algumas conexões de Ziguezague para fazer a estrutura de suporte mais fácil de ser removida." + +#~ msgctxt "small_feature_speed_factor_0 description" +#~ msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy." +#~ msgstr "Aspectos pequenos na primeira camada serão impressos nesta porcentagem de sua velocidade normal de impressão. Impressão mais lenta pode ajudar com aderência e precisão." + +#~ msgctxt "small_feature_speed_factor description" +#~ msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy." +#~ msgstr "Pequenos aspectos serão impressos com esta porcentagem de sua velocidade normal de impressão. Impressão mais lenta pode ajudar com aderência e precisão." + +#~ msgctxt "small_skin_width description" +#~ msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions." +#~ msgstr "Regiões pequenas de teto/base são preenchidas com paredes ao invés do padrão default de teto/base. Isto ajuda a prevenir movimentos bruscos." + +#~ msgctxt "smooth_spiralized_contours description" +#~ msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z-seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +#~ msgstr "Suaviza os contornos espiralizados para reduzir a visibilidade da costura em Z (esta costura será quase invisível na impressão mas ainda pode ser vista na visão de camadas). Note que suavizar tenderá a remover detalhes finos de superfície." + +#~ msgctxt "spaghetti_flow label" +#~ msgid "Spaghetti Flow" +#~ msgstr "Fluxo de Espaguete" + +#~ msgctxt "spaghetti_infill_enabled label" +#~ msgid "Spaghetti Infill" +#~ msgstr "Preenchimento em Espaguete" + +#~ msgctxt "spaghetti_infill_extra_volume label" +#~ msgid "Spaghetti Infill Extra Volume" +#~ msgstr "Volume Extra do Preenchimento Espaguete" + +#~ msgctxt "spaghetti_max_height label" +#~ msgid "Spaghetti Infill Maximum Height" +#~ msgstr "Altura Máxima do Preenchimento Espaguete" + +#~ msgctxt "spaghetti_infill_stepped label" +#~ msgid "Spaghetti Infill Stepping" +#~ msgstr "Passos do Preenchimento de Espaguete" + +#~ msgctxt "spaghetti_inset label" +#~ msgid "Spaghetti Inset" +#~ msgstr "Penetração do Espaguete" + +#~ msgctxt "spaghetti_max_infill_angle label" +#~ msgid "Spaghetti Maximum Infill Angle" +#~ msgstr "Ângulo de Preenchimento Máximo do Espaguete" + +#~ msgctxt "wireframe_printspeed description" +#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." +#~ msgstr "Velocidade com que a cabeça de impressão se move ao extrudar material. Somente se aplica a Impressão em Arame." + +#~ msgctxt "wireframe_printspeed_down description" +#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." +#~ msgstr "Velocidade de impressão dos filetes descendentes feitas 'no ar'. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wireframe_printspeed_up description" +#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." +#~ msgstr "Velocidade de impressão dos filetes ascendentes feitas 'no ar'. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wireframe_printspeed_bottom description" +#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." +#~ msgstr "Velocidade de Impressão da primeira camada, que é a única camada que toca a mesa. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wireframe_printspeed_flat description" +#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." +#~ msgstr "Velocidade de impressão dos contornos horizontais do modelo. Somente se aplica à Impressão em Arame." + +#~ msgctxt "magic_spiralize description" +#~ msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature used to be called Joris in older versions." +#~ msgstr "Este modo, também chamado de Modo Vaso ou Joris, transforma a trajetória do filete de plástico de impressão em uma espiral ascendente, com o Z lentamente subindo. Para isso, torna um modelo sólido em uma casca de parede única com a base sólida. Nem toda forma funciona corretamente com o modo vaso." + +#~ msgctxt "wall_split_middle_threshold label" +#~ msgid "Split Middle Line Threshold" +#~ msgstr "Limite de Filete Central Dividido" + +#~ msgctxt "machine_start_gcode label" +#~ msgid "Start GCode" +#~ msgstr "G-Code Inicial" + +#~ msgctxt "start_layers_at_same_position label" +#~ msgid "Start Layers with the Same Part" +#~ msgstr "Iniciar Camadas com a Mesma Parte" + +#~ msgctxt "wireframe_strategy description" +#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." +#~ msgstr "Estratégia para se assegurar que duas camadas consecutivas se conectam a cada ponto de conexão. Retração faz com que os filetes ascendentes se solidifiquem na posição correta, mas pode causar desgaste de filamento. Um nó pode ser feito no fim de um filete ascendentes para aumentar a chance de se conectar a ele e deixar o filete esfriar; no entanto, pode exigir velocidades de impressão lentas. Outra estratégia é compensar pelo enfraquecimento do topo de uma linha ascendente; no entanto, as linhas nem sempre cairão como preditas." + +#~ msgctxt "support_bottom_height label" +#~ msgid "Support Bottom Thickness" +#~ msgstr "Espessura da Base do Suporte" + +#~ msgctxt "support_interface_line_distance label" +#~ msgid "Support Interface Line Distance" +#~ msgstr "Distância entre Linhas da Interface de Suporte" + +#~ msgctxt "infill_pattern option tetrahedral" +#~ msgid "Tetrahedral" +#~ msgstr "Tetraédrico" + +#~ msgctxt "acceleration_support_interface description" +#~ msgid "The acceleration with which the roofs and bottoms of support are printed. Printing them at lower accelerations can improve overhang quality." +#~ msgstr "Aceleração com que o topo e base dos suportes são impressos. Imprimi-lo a menores acelerações pode aprimorar a qualidade das seções pendentes." + +#~ msgctxt "infill_overlap description" +#~ msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +#~ msgstr "Porcentagem de sobreposição entre o preenchimento e as paredes. Uma leve sobreposição permite que as paredes fiquem firmemente aderidas ao preenchimento." + +#~ msgctxt "skin_overlap description" +#~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." +#~ msgstr "A quantidade de sobreposição entre o contorno e as paredes como uma porcentagem da largura de extrusão. Uma sobreposição leve permite que as paredes se conectem firmemente ao contorno. Este ajuste é uma porcentagem das larguras de extrusão média do contorno e da parede mais interna." + +#~ msgctxt "skin_overlap description" +#~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." +#~ msgstr "A quantidade de sobreposição entre o contorno e as paredes como uma porcentagem da largura de extrusão do contorno. Uma leve sobreposição permite que as paredes se conectem firmemente ao contorno. É uma porcentagem das larguras de extrusão médias das linhas de contorno e a parede mais interna." + +#~ msgctxt "skin_overlap description" +#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." +#~ msgstr "Porcentagem de sobreposição entre o contorno e as paredes. Uma ligeira sobreposição permite às paredes ficarem firmemente aderidas ao contorno." + +#~ msgctxt "skin_overlap_mm description" +#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." +#~ msgstr "A quantidade de sobreposição entre o contorno e as paredes. Uma leve sobreposição permite às paredes ficarem firmemente aderidas ao contorno." + +#~ msgctxt "switch_extruder_retraction_amount description" +#~ msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone." +#~ msgstr "A quantidade de retração: coloque em '0' para nenhuma retração. Isto deve geralmente ser o mesmo que o comprimento da zona de aquecimento dentro do hotend." + +#~ msgctxt "support_tree_angle description" +#~ msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +#~ msgstr "Ô angulo dos galhos. Use um ângulo menor para torná-los mais verticais e mais estáveis. Use um ângulo maior para aumentar o alcance." + +#~ msgctxt "lightning_infill_prune_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." +#~ msgstr "A diferença que uma camada de preenchimento relâmpago pode ter em relação à camada imediatamente superior de acordo com a poda das extremidades externas das árvores. Medido em ângulo de acordo com a espessura." + +#~ msgctxt "lightning_infill_straightening_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." +#~ msgstr "A diferença que uma camada de preenchimento relâmpago pode ter em relação à camada imediatamente superior de acordo com a suavização de árvores. Medido em ângulo de acordo com a espessura." + +#~ msgctxt "wireframe_roof_inset description" +#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." +#~ msgstr "A distância coberta quando é feita uma conexão do contorno do teto para dentro. Somente se aplica a Impressão em Arame." + +#~ msgctxt "wireframe_roof_drag_along description" +#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "A distância da parte final de um filete para dentro que é arrastada quando o extrusor começa a voltar para o contorno externo do topo. Esta distância é compensada. Somente se aplica à Impressão em Arame." + +#~ msgctxt "expand_skins_expand_distance description" +#~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient." +#~ msgstr "A distância que os contornos são expandidos para dentro do preenchimento. A distância default é suficiente para ligar o vão entre as linhas de preenchimento e impedirá que buracos apareçam no contorno onde ele encontrar a parede em que a densidade de preenchimento é baixa. Uma distância menor pode ser suficiente." + +#~ msgctxt "wireframe_roof_fall_down description" +#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "A distância em que filetes horizontais do topo impressos no ar caem quando sendo impressos. Esta distância é compensada. Somente se aplica à Impressão em Arame." + +#~ msgctxt "z_offset_layer_0 description" +#~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly." +#~ msgstr "O extrusor é deslocado da altura normal da primeira camada por esta distância. Pode ser positiva (elevada) ou negativa (abaixada). Alguns tipos de filamento aderem à camada de impressão melhor se o extrusor for elevado ligeiramente." + +#~ msgctxt "support_interface_extruder_nr description" +#~ msgid "The extruder train to use for printing the roofs and bottoms of the support. This is used in multi-extrusion." +#~ msgstr "O extrusor a usar para imprimir o topo e base dos suportes. Isto é utilizado em multi-extrusão." + +#~ msgctxt "support_bottom_stair_step_height description" +#~ msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +#~ msgstr "A altura dos passos da base tipo escada do suporte em cima do modelo. Um valor baixo faz o suporte ser mais difícil de remover, mas valores muito altos podem criar estruturas de suporte instáveis." + +#~ msgctxt "wireframe_height description" +#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." +#~ msgstr "A altura dos filetes diagonais para cima e para baixo entre duas partes horizontais. Isto determina a densidade geral da estrutura em rede. Somente se aplica a Impressão em Arame." + +#~ msgctxt "skirt_gap description" +#~ msgid "" +#~ "The horizontal distance between the skirt and the first layer of the print.\n" +#~ "This is the minimum distance, multiple skirt lines will extend outwards from this distance." +#~ msgstr "" +#~ "A distância horizontal entre o skirt e a primeira camada da impressão.\n" +#~ "Esta é a distância mínima; múltiplas linhas de skirt se estenderão pra fora a partir desta distância." + +#~ msgctxt "infill_offset_x description" +#~ msgid "The infill pattern is offset this distance along the X axis." +#~ msgstr "O padrão de preenchimento é corrigido/deslocado nesta distância no eixo X." + +#~ msgctxt "infill_offset_y description" +#~ msgid "The infill pattern is offset this distance along the Y axis." +#~ msgstr "O padrão de preenchimento é corrigido/deslocado nesta distância no eixo Y." + +#~ msgctxt "adaptive_layer_height_variation description" +#~ msgid "The maximum allowed height different from the base layer height in mm." +#~ msgstr "A dferença de altura máxima permitida da altura de camada base permitida, em mm." + +#~ msgctxt "bridge_wall_max_overhang description" +#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." +#~ msgstr "O comprimento máximo permitido da região de ar abaixo da linha da parede antes que a parede seja impressa usando ajustes de ponte. Expressado como uma porcentagem da espessura de filete de parede. Quando o vão for mais largo que esta quantia, a parede é impressa usando os ajustes de ponte. Senão, a parede é impressa com os ajustes normais. Quanto menor o valor, mais provável que os filetes da parede sejam impressos com os ajustes de ponte." + +#~ msgctxt "spaghetti_max_infill_angle description" +#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." +#~ msgstr "O ângulo máximo em relação ao Z do interior da impressão para áreas que serão preenchidas com espaguete no final. Abaixar este valor faz com que mais partes anguladas do seu modelo sejam preenchidas a cada camada." + +#~ msgctxt "meshfix_maximum_deviation description" +#~ msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller." +#~ msgstr "O valor máximo de desvio permitido ao reduzir a resolução para o ajuste de Resolução Máxima. Se você aumenta este número, a impressão terá menos acuidade, mas o G-Code será menor." + +#~ msgctxt "support_join_distance description" +#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one." +#~ msgstr "Distância máxima entre as estruturas de suporte nas direções X/Y. Quando estrutura separadas estão mais perto que este valor, as estruturas são combinadas em uma única." + +#~ msgctxt "flow_rate_max_extrusion_offset description" +#~ msgid "The maximum distance in mm to compensate." +#~ msgstr "A distância máxima em mm a compensar." + +#~ msgctxt "spaghetti_max_height description" +#~ msgid "The maximum height of inside space which can be combined and filled from the top." +#~ msgstr "A altura máxima do espaço interior que pode ser combinado e preenchido a partir do topo." + +#~ msgctxt "jerk_support_interface description" +#~ msgid "The maximum instantaneous velocity change with which the roofs and bottoms of support are printed." +#~ msgstr "A mudança instantânea máxima de velocidade em uma direção com que a base e o topo dos suporte é impresso." + +#~ msgctxt "max_feedrate_z_override description" +#~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed." +#~ msgstr "A velocidade máxima com que o eixo Z é movido. Colocar isto em zero faz com que a impressão use os defaults de firmware para a velocidade máxima de Z." + +#~ msgctxt "mold_width description" +#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." +#~ msgstr "A distância mínima entre o exterior do molde e do modelo." + +#~ msgctxt "min_odd_wall_line_width description" +#~ msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width," +#~ msgstr "A largura mínima de filete para as paredes multifiletes de preenchimento de vão de filete central. Este ajuste determina em que espessura de modelo nós alternamos de imprimir dois filetes de parede para imprimir duas paredes externas e uma parede central no centro. Uma Largura Mínima de Filete de Parede Ímpar leva a uma largura máxima de filete de parede par mais alta. A largura máxima de filete de parede par é calculada como 2 * Largura Mínima de Filete de Parede Par." + +#~ msgctxt "flow_rate_extrusion_offset_factor description" +#~ msgid "The multiplication factor for the flow rate -> distance translation." +#~ msgstr "O fator de multiplicação para a tradução entre taxa de fluxo -> distância." + +#~ msgctxt "support_tree_wall_count description" +#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." +#~ msgstr "O número de filetes da parede dos galhos do suporte em árvore. Paredes mais espessas tomarão mais tempo pra imprimir mas não tombarão facilmente." + +#~ msgctxt "spaghetti_inset description" +#~ msgid "The offset from the walls from where the spaghetti infill will be printed." +#~ msgstr "O deslocamento a partir das paredes de onde o preenchimento espaguete será impresso." + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction." +#~ msgstr "Padrão ou estampa do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague trocam de direção em camadas alternadas, reduzindo custo de material. Os padrões de grade, triângulo, cúbico, tetraédrico e concêntrico são totalmente impressos a cada camada. Os padrões cúbico e tetraédrico mudam a cada camada para prover uma distribuição mais igualitária de força para cada direção." + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." +#~ msgstr "O padrão do material de preenchimento da impressão. Preenchimento de Linhas e Ziguezague trocam direções em camadas alternadas, reduzindo custo do material. Os padrões de Grade, Triângulo, Tri-Hexágono, Cúbico, Octeto, Quarto Cúbico, Cruzado e Concêntrico são totalmente impressos em cada camada. Os preenchimentos Cúbico, Quarto Cúbico e Octeto mudam em cada camada para prover uma distribuição mais uniforme de forças em cada direção." + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." +#~ msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague mudam de direção em camadas alternadas, reduzindo o custo do material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são impressos em totalidade a cada camada. Os padrões giróide, cúbico, quarto cúbico e octeto mudam a cada camada para prover uma distribuição mais igualitária de força em cada direção." + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." +#~ msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague trocam de direção em camadas alternadas, reduzindo o custo de material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são impressos a cada camada. Os preenchimentos giroide, cúbico, quarto cúbico e octeto mudam em cada camada para prover uma distribuição mais uniforme de força em cada direção. O preenchimento de relâmpago tenta minimizar o material suportando apenas os tetos (internos) do objeto. Como tal, a porcentagem de preenchimento somente é 'válida' uma camada abaixo do que quer que seja que ela precise para suportar o modelo." + +#~ msgctxt "wall_add_middle_threshold description" +#~ msgid "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." +#~ msgstr "A largura de filete mínima, como fator da largura de filete normal, acima da qual um filete central (se já não houver algum) será adicionado. Reduza este ajuste para usar mais e e mais finos filetes. Aumente para usar menos, mais largos filetes. Note que isto se aplica -como se- a forma inteira devesse ser preenchida com paredes, portanto o centro aqui se refere ao meio do objeto entre duas arestas externas da forma, mesmo se houver preenchimento ou contornos na impressão ao invés de paredes." + +#~ msgctxt "wall_split_middle_threshold description" +#~ msgid "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." +#~ msgstr "A largura de filete mínima, como fator da largura de filete normal, acima da qual o filete central (se houver algum) será dividido em dois. Reduza este ajuste para usar mais e maiores filetes. Aumente para usar menos e menores filetes. Note que isto se aplica -como se- a forma inteira devesse ser preenchida com parede, dado que o centro aqui se refere ao meio do objeto entre duas arestas externas da forma, mesmo se houver preenchimento ou (outros) contornos na impressão ao invés de paredes." + +#~ msgctxt "speed_support_interface description" +#~ msgid "The speed at which the roofs and bottoms of support are printed. Printing the them at lower speeds can improve overhang quality." +#~ msgstr "A velocidade em que o topo e base dos suportes são impressos. Imprimi-lo a menores velocidade pode melhor a qualidade das seções pendentes." + +#~ msgctxt "speed_layer_0 description" +#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." +#~ msgstr "A velocidade para a camada inicial. Um valor menor é aconselhado para aprimorar a aderência à mesa de impressão." + +#~ msgctxt "build_volume_temperature description" +#~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted." +#~ msgstr "A temperatura usada para o volume de construção. Se o valor for zero, a temperatura de volume de impressão não será ajustada." + +#~ msgctxt "material_print_temperature_layer_0 description" +#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +#~ msgstr "A temperatura usada para imprimir a primeira camada. Coloque 0 para desabilitar processamento especial da camada inicial." + +#~ msgctxt "material_print_temperature description" +#~ msgid "The temperature used for printing. Set at 0 to pre-heat the printer manually." +#~ msgstr "Temperatura usada para a impressão. COloque em '0' para pré-aquecer a impressora manualmente." + +#~ msgctxt "material_bed_temperature_layer_0 description" +#~ msgid "The temperature used for the heated build plate at the first layer." +#~ msgstr "A temperatura usada para a mesa aquecida na primeira camada." + +#~ msgctxt "material_bed_temperature description" +#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." +#~ msgstr "A temperatura usada para a plataforma de impressão aquecida. Se for 0, a temperatura da mesa não será ajustada." + +#~ msgctxt "material_bed_temperature description" +#~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print." +#~ msgstr "A temperatura usada pela mesa aquecida de impressão. Se for 0, a mesa não aquecerá para esta impressão." + +#~ msgctxt "material_bed_temperature description" +#~ msgid "The temperature used for the heated build plate. Set at 0 to pre-heat the printer manually." +#~ msgstr "A temperatura usada para a mesa aquecida. Coloque em '0' para pré-aquecer a impressora manualmente." + +#~ msgctxt "prime_tower_wall_thickness description" +#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." +#~ msgstr "A espessura da torre de purga (que é oca). Uma espessura maior que a metade do volume mínimo da torre de purga resultará em uma torre de purga densa." + +#~ msgctxt "wall_thickness description" +#~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +#~ msgstr "A espessura das paredes na direção horizontal. Este valor dividido pela largura de extrusão da parede define o número de paredes." + +#~ msgctxt "support_bottom_height description" +#~ msgid "The thickness of the support bottoms. This controls the number of dense layers are printed on top of places of a model on which support rests." +#~ msgstr "A espessura da base do suporte. Isto controla o número de camadas densas que são impressas no topo de lugares do modelo em que o suporte se assenta." + +#~ msgctxt "support_tree_wall_thickness description" +#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." +#~ msgstr "A espessura das paredes dos galhos do suporte em árvore. Paredes mais espessas tomarão mais tempo pra imprimir mas não tombarão facilmente." + +#~ msgctxt "machine_gcode_flavor description" +#~ msgid "The type of gcode to be generated." +#~ msgstr "Tipo de G-Code a ser gerado para a impressora." + +#~ msgctxt "raft_smoothing description" +#~ msgid "This setting control how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +#~ msgstr "Este ajuste controla quantos cantos interiores no contorno do raft são arredondados. Cantos no sentido interior são arredondados para um semicírculo com raio igual ao valor dado aqui. Este ajuste também remove buracos que sejam menores que tal círculo no contorno do raft." + +#~ msgctxt "adaptive_layer_height_threshold description" +#~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." +#~ msgstr "Limite até onde se usa uma camada menor ou não. Este número é comparado à tangente da ladeira mais vertical da camada." + +#~ msgctxt "wireframe_roof_outer_delay description" +#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." +#~ msgstr "El tiempo empleado en los perímetros exteriores del agujero que se convertirá en un techo. Cuanto mayor sea el tiempo, mejor será la conexión. Solo se aplica a la impresión de alambre." + +#~ msgctxt "max_skin_angle_for_expansion description" +#~ msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal, while an angle of 90° is vertical." +#~ msgstr "Superfícies Superiores e/ou Inferiores de seu objeto com um ângulo maior que este ajuste não terão seus contornos superior/inferior expandidos. Isto evita que expandam as áreas estreitas de contorno que são criadas quando a superfície do modelo tem uma inclinação praticamente vertical. Um ângulo de 0° é horizontal, um ângulo de 90° é vertical." + +#~ msgctxt "support_tree_enable label" +#~ msgid "Tree Support" +#~ msgstr "Suporte de Árvore" + +#~ msgctxt "support_tree_angle label" +#~ msgid "Tree Support Branch Angle" +#~ msgstr "Ângulo do Galho do Suporte em Árvore" + +#~ msgctxt "support_tree_branch_diameter label" +#~ msgid "Tree Support Branch Diameter" +#~ msgstr "Diâmetro de Galho do Suporte em Árvore" + +#~ msgctxt "support_tree_branch_diameter_angle label" +#~ msgid "Tree Support Branch Diameter Angle" +#~ msgstr "Ângulo do Diâmetro do Galho do Suporte em Árvore" + +#~ msgctxt "support_tree_branch_distance label" +#~ msgid "Tree Support Branch Distance" +#~ msgstr "Distância dos Galhos do Suporte em Árvore" + +#~ msgctxt "support_tree_collision_resolution label" +#~ msgid "Tree Support Collision Resolution" +#~ msgstr "Resolução de Colisão do Suporte em Árvore" + +#~ msgctxt "support_tree_max_diameter label" +#~ msgid "Tree Support Trunk Diameter" +#~ msgstr "Diâmetro de Tronco do Suporte em Árvore" + +#~ msgctxt "support_tree_wall_count label" +#~ msgid "Tree Support Wall Line Count" +#~ msgstr "Número de Filetes da Parede do Suporte em Árvore" + +#~ msgctxt "support_tree_wall_thickness label" +#~ msgid "Tree Support Wall Thickness" +#~ msgstr "Espessura de Parede do Suporte em Árvore" + +#~ msgctxt "adaptive_layer_height_enabled label" +#~ msgid "Use adaptive layers" +#~ msgstr "Usar camadas adaptativas" + +#~ msgctxt "relative_extrusion description" +#~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any Gcode script is output." +#~ msgstr "Usar extrusão relativa ao invés de absoluta. Usar passos de extrusor relativos permite pós-processamento do G-Code mais fácil. No entanto, não é suportado por todas as impressoras e pode produzir desvios bem pequenos na quantidade de material depositado comparado aos passos de extrusor absolutos. Independente deste ajuste, o modo de extrusão sempre será configurado para absoluto antes que qualquer script de G-Code seja escrito." + +#~ msgctxt "wireframe_bottom_delay label" +#~ msgid "WP Bottom Delay" +#~ msgstr "Espera da Base de IA" + +#~ msgctxt "wireframe_printspeed_bottom label" +#~ msgid "WP Bottom Printing Speed" +#~ msgstr "Velocidade de Impressão da Base da IA" + +#~ msgctxt "wireframe_flow_connection label" +#~ msgid "WP Connection Flow" +#~ msgstr "Fluxo de Conexão da IA" + +#~ msgctxt "wireframe_height label" +#~ msgid "WP Connection Height" +#~ msgstr "Altura da Conexão IA" + +#~ msgctxt "wireframe_printspeed_down label" +#~ msgid "WP Downward Printing Speed" +#~ msgstr "Velocidade de Impressão Descendente de IA" + +#~ msgctxt "wireframe_drag_along label" +#~ msgid "WP Drag Along" +#~ msgstr "Arrasto de IA" + +#~ msgctxt "wireframe_up_half_speed label" +#~ msgid "WP Ease Upward" +#~ msgstr "Facilitador Ascendente da IA" + +#~ msgctxt "wireframe_fall_down label" +#~ msgid "WP Fall Down" +#~ msgstr "Queda de IA" + +#~ msgctxt "wireframe_flat_delay label" +#~ msgid "WP Flat Delay" +#~ msgstr "Espera Plana de IA" + +#~ msgctxt "wireframe_flow_flat label" +#~ msgid "WP Flat Flow" +#~ msgstr "Fluxo Plano de IA" + +#~ msgctxt "wireframe_flow label" +#~ msgid "WP Flow" +#~ msgstr "Fluxo da IA" + +#~ msgctxt "wireframe_printspeed_flat label" +#~ msgid "WP Horizontal Printing Speed" +#~ msgstr "Velocidade de Impressão Horizontal de IA" + +#~ msgctxt "wireframe_top_jump label" +#~ msgid "WP Knot Size" +#~ msgstr "Tamanho do Nó de IA" + +#~ msgctxt "wireframe_nozzle_clearance label" +#~ msgid "WP Nozzle Clearance" +#~ msgstr "Espaço Livre para o Bico em IA" + +#~ msgctxt "wireframe_roof_drag_along label" +#~ msgid "WP Roof Drag Along" +#~ msgstr "Arrasto do Topo de IA" + +#~ msgctxt "wireframe_roof_fall_down label" +#~ msgid "WP Roof Fall Down" +#~ msgstr "Queda do Topo de IA" + +#~ msgctxt "wireframe_roof_inset label" +#~ msgid "WP Roof Inset Distance" +#~ msgstr "Distância de Penetração do Teto da IA" + +#~ msgctxt "wireframe_roof_outer_delay label" +#~ msgid "WP Roof Outer Delay" +#~ msgstr "Retardo exterior del techo en IA" + +#~ msgctxt "wireframe_printspeed label" +#~ msgid "WP Speed" +#~ msgstr "Velocidade da IA" + +#~ msgctxt "wireframe_straight_before_down label" +#~ msgid "WP Straighten Downward Lines" +#~ msgstr "Endireitar Filetes Descendentes de IA" + +#~ msgctxt "wireframe_strategy label" +#~ msgid "WP Strategy" +#~ msgstr "Estratégia de IA" + +#~ msgctxt "wireframe_top_delay label" +#~ msgid "WP Top Delay" +#~ msgstr "Espera do Topo de IA" + +#~ msgctxt "wireframe_printspeed_up label" +#~ msgid "WP Upward Printing Speed" +#~ msgstr "Velocidade de Impressão Ascendente da IA" + +#, fuzzy +#~ msgctxt "material_bed_temp_wait label" +#~ msgid "Wait for build plate heatup" +#~ msgstr "Aguardar o aquecimento do bico" + +#~ msgctxt "material_print_temp_wait label" +#~ msgid "Wait for nozzle heatup" +#~ msgstr "Aguardar o aquecimento do bico" + +#~ msgctxt "wall_overhang_angle description" +#~ msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging." +#~ msgstr "Paredes que têm inclinação maior que este ângulo serão impressas usando ajustes de seção pendente de parede. Quando o valor for 90, nenhuma parede será tratada como seção pendente." + +#~ msgctxt "support_interface_skip_height description" +#~ msgid "When checking where there's model above the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +#~ msgstr "Quando se verificar onde há modelo sobre suporte, use passos da altura dada. Valores baixos vão fatiar mais lentamente, enquanto valores altos podem fazer o suporte normal ser impresso em lugares onde deveria haver interface de suporte." + +#~ msgctxt "retraction_combing_max_distance description" +#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." +#~ msgstr "Quando não-zero, os movimentos de percurso de combing que são maiores que esta distância usarão retração." + +#~ msgctxt "z_offset_taper_layers description" +#~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print." +#~ msgstr "Quando não for zero, o deslocamento em Z é reduzido a zero depois deste número de camadas. O valor zero significa que o deslocamento em Z permanece constante para todas as camadas da impressão." + +#~ msgctxt "skin_no_small_gaps_heuristic description" +#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." +#~ msgstr "Quando o modelo tem pequenas lacunas verticais, aproximadamente 5% de tempo de computação adicional pode ser gasto ao gerar camada externa superior e inferior nestes espaços estreitos. Em tal caso, desabilite este ajuste." + +#~ msgctxt "wipe_hop_enable description" +#~ msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +#~ msgstr "Sempre que uma retração é feita, a posição Z do extrusor é aumentada para aumentar a distância entre o bico e a impressão. Isso evita que o bico bata na impressão durante movimentos de percurso, reduzindo a chance de descolar a impressão da plataforma." + +#~ msgctxt "clean_between_layers description" +#~ msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." +#~ msgstr "Incluir ou não o G-Code para movimento de limpeza de bico (wipe) entre camadas. Habilitar este ajuste pode influenciar o comportamento de retração na mudança de camadas. Por favor use os ajustes de Retração de Limpeza para controlar retração nas camadas onde o script de limpeza funcionará." + +#~ msgctxt "print_sequence description" +#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." +#~ msgstr "Esta opção decide se vocÊ deseja imprimir todos os modelos de uma só vez ou um modelo de cada vez. O modo de um modelo de cada vez só é possível se os modelos estiverem separados de tal forma que a cabeça de impressão possa se mover no meio e todos os modelos sejam mais baixos que a distância entre o bico e os carros X ou Y." + +#~ msgctxt "print_sequence description" +#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes. " +#~ msgstr "Opção que dz se se imprime todos os modelos uma camada por vez, ou se se espera que cada um termine para ir para o próximo. Modo um de cada vez é possível se a) somente um extrusor estiver habilitado e b) todos os modelos estiverem separados de maneira que a cabeça de impressão possa se mover entre eles e todos os modelos forem mais baixos que a distância entre o bico e os eixos X/Y." + +#~ msgctxt "spaghetti_infill_stepped description" +#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." +#~ msgstr "Opção para ou se imprimir o preenchimento espaguete em passos discretos ou extrudar todo o filamento de preenchimento no final da impressão." + +#~ msgctxt "support_interface_line_width description" +#~ msgid "Width of a single support interface line." +#~ msgstr "Largura de extrusão de um filete usado na interface da estrutura de suporte com o modelo." + +#~ msgctxt "dual_pre_wipe label" +#~ msgid "Wipe Nozzle After Switch" +#~ msgstr "Limpar Bico Depois da Troca" + +#~ msgctxt "wipe_hop_enable label" +#~ msgid "Wipe Z Hop When Retracted" +#~ msgstr "Salto Z da Limpeza Quando Retraída" + +#~ msgctxt "wireframe_enabled label" +#~ msgid "Wire Printing" +#~ msgstr "Impressão em Arame" + +#~ msgctxt "z_offset_taper_layers label" +#~ msgid "Z Offset Taper Layers" +#~ msgstr "Camadas de Amenização do Deslocamento Z" + +#~ msgctxt "support_zag_skip_count label" +#~ msgid "ZigZag Connection Skip Count" +#~ msgstr "Contagem de Pulos das Conexões de Ziguezague" + +#~ msgctxt "blackmagic description" +#~ msgid "category_blackmagic" +#~ msgstr "categoria_blackmagic" + +#~ msgctxt "meshfix description" +#~ msgid "category_fixes" +#~ msgstr "reparos_de_categoria" + +#~ msgctxt "experimental description" +#~ msgid "experimental!" +#~ msgstr "experimental!" diff --git a/resources/i18n/pt_BR/gradual_flow_settings.def.json.po b/resources/i18n/pt_BR/gradual_flow_settings.def.json.po new file mode 100644 index 00000000000..b6a342e7f76 --- /dev/null +++ b/resources/i18n/pt_BR/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"PO-Revision-Date: 2023-11-24 12:51+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duração de cada passo na alteração de fluxo gradual" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Habilita mudanças graduais de fluxo. Quando habilitado, o fluxo é gradualmente aumentado ou reduzido para o fluxo alvo. Útil para impressoras com tubo bowden onde o fluxo não é imediatamente alterado quando o motor do extrusor inicia ou para." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Para qualquer movimento mais longo que este valor, o fluxo material é resetado para o fluxo-alvo do percurso." + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Tamanho de passo da discretização de fluxo gradual" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Fluxo gradual habilitado" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Aceleração máxima do fluxo gradual" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Aceleração máxima de fluxo da camada inicial" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Aceleração máxima para alterações de fluxo gradual" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Velocidade mínima para alterações graduais de fluxo na primeira camada" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Duração de reset do fluxo" diff --git a/resources/i18n/pt_PT/fdmprinter.def.json.po b/resources/i18n/pt_PT/fdmprinter.def.json.po index 0ebe5995c64..4dfc6132853 100644 --- a/resources/i18n/pt_PT/fdmprinter.def.json.po +++ b/resources/i18n/pt_PT/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-15 12:26+0000\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/resources/i18n/pt_PT/gradual_flow_settings.def.json.po b/resources/i18n/pt_PT/gradual_flow_settings.def.json.po new file mode 100644 index 00000000000..f7803061ca6 --- /dev/null +++ b/resources/i18n/pt_PT/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"PO-Revision-Date: 2023-11-24 12:51+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duração de cada etapa da alteração do fluxo gradual" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Permite alterar gradualmente o fluxo. Quando ativado, o fluxo é gradualmente aumentado/diminuído até atingir o fluxo-alvo. Esta funcionalidade é útil para impressoras com um tubo Bowden, onde o fluxo não é alterado imediatamente quando o motor extusor para/arranca." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Para qualquer movimento de deslocação superior a este valor, o fluxo de material é reposto para o fluxo de destino do percurso." + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Tamanho da etapa de discretização do fluxo gradual" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Fluxo gradual ativado" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Aceleração máxima do fluxo gradual" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Aceleração do fluxo máximo da camada inicial" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Aceleração máxima para alterações do fluxo gradual" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Velocidade mínima para alterações do fluxo gradual da primeira camada" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Repor duração do fluxo" diff --git a/resources/i18n/ru_RU/fdmprinter.def.json.po b/resources/i18n/ru_RU/fdmprinter.def.json.po index e4866356c92..4af756b3209 100644 --- a/resources/i18n/ru_RU/fdmprinter.def.json.po +++ b/resources/i18n/ru_RU/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-15 12:26+0000\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/resources/i18n/ru_RU/gradual_flow_settings.def.json.po b/resources/i18n/ru_RU/gradual_flow_settings.def.json.po new file mode 100644 index 00000000000..ddb6854a883 --- /dev/null +++ b/resources/i18n/ru_RU/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"PO-Revision-Date: 2023-11-24 12:51+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Продолжительность каждого этапа постепенного изменения потока" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Включите постепенное изменение потока. Если эта функция включена, поток постепенно увеличивается/уменьшается до целевого значения. Это полезно для принтеров с трубкой Боудена, где поток не меняется сразу при запуске/остановке двигателя экструдера." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Для любого перемещения, превышающего это значение, поток материала сбрасывается до целевого потока пути" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Размер шага дискретизации постепенного потока" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Постепенный поток включен" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Максимальное ускорение постепенного потока" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Максимальное ускорение потока начального слоя" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Максимальное ускорение для плавного изменения потока" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Минимальная скорость для постепенного изменения потока для первого слоя" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Сбросить продолжительность потока" diff --git a/resources/i18n/tr_TR/fdmprinter.def.json.po b/resources/i18n/tr_TR/fdmprinter.def.json.po index a8c83450c62..deb684e9d93 100644 --- a/resources/i18n/tr_TR/fdmprinter.def.json.po +++ b/resources/i18n/tr_TR/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-15 12:26+0000\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/resources/i18n/tr_TR/gradual_flow_settings.def.json.po b/resources/i18n/tr_TR/gradual_flow_settings.def.json.po new file mode 100644 index 00000000000..1d72943b18a --- /dev/null +++ b/resources/i18n/tr_TR/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"PO-Revision-Date: 2023-11-24 12:51+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Kademeli akış değişimindeki her adımın süresi" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Kademeli akış değişikliklerini etkinleştir. Bu ayar etkinleştirildiğinde, akış, hedef akışa doğru kademeli olarak artırılır/azaltılır. Bu, ekstruder motoru çalıştırıldığında/durdurulduğunda akışın hemen değişmediği, bowden tüplü yazıcılar için kullanışlı bir özelliktir." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Bu değerden daha uzun herhangi bir hareket için, malzeme akışı hedef akışına sıfırlanır" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Kademeli akış ayrıştırma adım boyutu" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Kademeli akış etkin" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Kademeli akış maksimum ivme" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "İlk katman maksimum akış ivmesi" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Kademeli akış değişiklikleri için maksimum ivme" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "İlk katmandaki kademeli akış değişiklikleri için minimum hız" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Akış süresini sıfırla" diff --git a/resources/i18n/zh_CN/fdmprinter.def.json.po b/resources/i18n/zh_CN/fdmprinter.def.json.po index 5778b5db871..f580058a272 100644 --- a/resources/i18n/zh_CN/fdmprinter.def.json.po +++ b/resources/i18n/zh_CN/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-15 12:26+0000\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/resources/i18n/zh_CN/gradual_flow_settings.def.json.po b/resources/i18n/zh_CN/gradual_flow_settings.def.json.po new file mode 100644 index 00000000000..cf0a6adfd49 --- /dev/null +++ b/resources/i18n/zh_CN/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"PO-Revision-Date: 2023-11-24 12:51+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "渐变流量每一步的持续时间" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "启用渐变流量。当启用时,流量逐渐增加/降低到目标流量。这对于有鲍登管的打印机很有用,当挤出机电机启动/停止时,流量不会立即改变。" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "对于任何超过此值的行程移动,材料流量将重置为路径目标流量" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "渐变流量离散步长" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "渐变流量已启用" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "渐变流量最大加速度" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "初始层最大流量加速度" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "渐变流量的最大加速度" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "第一层渐变流量的最小速度" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "重置流量持续时间" diff --git a/resources/i18n/zh_TW/fdmprinter.def.json.po b/resources/i18n/zh_TW/fdmprinter.def.json.po index a134e53b68f..833e201794c 100644 --- a/resources/i18n/zh_TW/fdmprinter.def.json.po +++ b/resources/i18n/zh_TW/fdmprinter.def.json.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-15 12:26+0000\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" "PO-Revision-Date: 2022-01-02 20:24+0800\n" "Last-Translator: Valen Chang \n" "Language-Team: Valen Chang \n" diff --git a/resources/i18n/zh_TW/gradual_flow_settings.def.json.po b/resources/i18n/zh_TW/gradual_flow_settings.def.json.po new file mode 100644 index 00000000000..56b299bfef0 --- /dev/null +++ b/resources/i18n/zh_TW/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"PO-Revision-Date: 2023-11-24 12:51+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" From 3bf84c88389a8c9cfb801d1fa8b94e6b2e645a93 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 24 Nov 2023 14:32:56 +0100 Subject: [PATCH 148/765] Terminology and descriptions refinement --- resources/definitions/fdmprinter.def.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 6ee61ab9a8a..af08b23cb2d 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6595,15 +6595,15 @@ { "prime_tower_mode": { - "label": "Prime Tower Mode", - "description": "Print a tower next to the print which serves to prime the material after each nozzle switch.", + "label": "Prime Tower", + "description": "Print a tower next to the model, which serves to prime the material after each nozzle switch.
    • None: do not generate a prime tower
    • Bucket: generate a solid prime bucket in which secondary materials are primed
    • Sparse bucket: generate a prime bucket while trying to waste as less material as possible
    • Sparse: generate a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other.
    ", "type": "enum", "options": { "none": "None", - "default": "Default", - "optimized": "Optimized", - "optimized_consistent": "Optimized consistent" + "default": "Bucket", + "optimized_consistent": "Sparse bucket", + "optimized": "Sparse" }, "default_value": "default", "enabled": "extruders_enabled_count > 1", From b6ceeee7a03fd0f12aaa6ac643b333d94d2b6d34 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Fri, 24 Nov 2023 14:43:44 +0100 Subject: [PATCH 149/765] Merge gradual_flow_settings in fdm_printer.def.json Contribute to CURA-11300 --- resources/i18n/cs_CZ/fdmprinter.def.json.po | 673 +------- .../cs_CZ/gradual_flow_settings.def.json.po | 54 - resources/i18n/de_DE/fdmprinter.def.json.po | 100 +- .../de_DE/gradual_flow_settings.def.json.po | 54 - resources/i18n/es_ES/fdmprinter.def.json.po | 100 +- .../es_ES/gradual_flow_settings.def.json.po | 54 - resources/i18n/fdmprinter.def.json.pot | 39 + resources/i18n/fi_FI/fdmprinter.def.json.po | 964 +----------- .../fi_FI/gradual_flow_settings.def.json.po | 54 - resources/i18n/fr_FR/fdmprinter.def.json.po | 100 +- .../fr_FR/gradual_flow_settings.def.json.po | 54 - .../i18n/gradual_flow_settings.def.json.pot | 58 - resources/i18n/hu_HU/fdmprinter.def.json.po | 650 +------- .../hu_HU/gradual_flow_settings.def.json.po | 54 - resources/i18n/it_IT/fdmprinter.def.json.po | 100 +- .../it_IT/gradual_flow_settings.def.json.po | 54 - resources/i18n/ja_JP/fdmprinter.def.json.po | 100 +- .../ja_JP/gradual_flow_settings.def.json.po | 54 - resources/i18n/ko_KR/fdmprinter.def.json.po | 100 +- .../ko_KR/gradual_flow_settings.def.json.po | 54 - resources/i18n/nl_NL/fdmprinter.def.json.po | 100 +- .../nl_NL/gradual_flow_settings.def.json.po | 54 - resources/i18n/pl_PL/fdmprinter.def.json.po | 1144 +------------- .../pl_PL/gradual_flow_settings.def.json.po | 54 - resources/i18n/pt_BR/fdmprinter.def.json.po | 1390 +---------------- .../pt_BR/gradual_flow_settings.def.json.po | 54 - resources/i18n/pt_PT/fdmprinter.def.json.po | 100 +- .../pt_PT/gradual_flow_settings.def.json.po | 54 - resources/i18n/ru_RU/fdmprinter.def.json.po | 100 +- .../ru_RU/gradual_flow_settings.def.json.po | 54 - resources/i18n/tr_TR/fdmprinter.def.json.po | 100 +- .../tr_TR/gradual_flow_settings.def.json.po | 54 - resources/i18n/zh_CN/fdmprinter.def.json.po | 100 +- .../zh_CN/gradual_flow_settings.def.json.po | 54 - resources/i18n/zh_TW/fdmprinter.def.json.po | 1100 +------------ .../zh_TW/gradual_flow_settings.def.json.po | 54 - 36 files changed, 553 insertions(+), 7483 deletions(-) delete mode 100644 resources/i18n/cs_CZ/gradual_flow_settings.def.json.po delete mode 100644 resources/i18n/de_DE/gradual_flow_settings.def.json.po delete mode 100644 resources/i18n/es_ES/gradual_flow_settings.def.json.po delete mode 100644 resources/i18n/fi_FI/gradual_flow_settings.def.json.po delete mode 100644 resources/i18n/fr_FR/gradual_flow_settings.def.json.po delete mode 100644 resources/i18n/gradual_flow_settings.def.json.pot delete mode 100644 resources/i18n/hu_HU/gradual_flow_settings.def.json.po delete mode 100644 resources/i18n/it_IT/gradual_flow_settings.def.json.po delete mode 100644 resources/i18n/ja_JP/gradual_flow_settings.def.json.po delete mode 100644 resources/i18n/ko_KR/gradual_flow_settings.def.json.po delete mode 100644 resources/i18n/nl_NL/gradual_flow_settings.def.json.po delete mode 100644 resources/i18n/pl_PL/gradual_flow_settings.def.json.po delete mode 100644 resources/i18n/pt_BR/gradual_flow_settings.def.json.po delete mode 100644 resources/i18n/pt_PT/gradual_flow_settings.def.json.po delete mode 100644 resources/i18n/ru_RU/gradual_flow_settings.def.json.po delete mode 100644 resources/i18n/tr_TR/gradual_flow_settings.def.json.po delete mode 100644 resources/i18n/zh_CN/gradual_flow_settings.def.json.po delete mode 100644 resources/i18n/zh_TW/gradual_flow_settings.def.json.po diff --git a/resources/i18n/cs_CZ/fdmprinter.def.json.po b/resources/i18n/cs_CZ/fdmprinter.def.json.po index 3ec140d2593..7588e81c526 100644 --- a/resources/i18n/cs_CZ/fdmprinter.def.json.po +++ b/resources/i18n/cs_CZ/fdmprinter.def.json.po @@ -5491,655 +5491,42 @@ msgctxt "travel description" msgid "travel" msgstr "cestování" -#~ msgctxt "machine_head_with_fans_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps included)." -#~ msgstr "2D silueta tiskové hlavy (včetně krytů ventilátoru)." +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Doba trvání každého kroku v postupné změně průtoku" -#~ msgctxt "spaghetti_infill_extra_volume description" -#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." -#~ msgstr "Korekční termín pro úpravu celkového objemu, který se vytlačuje pokaždé, když se plní špagety." - -#~ msgctxt "wall_add_middle_threshold label" -#~ msgid "Add Middle Line Threshold" -#~ msgstr "Mez pro přidání prostřední čáry" - -#~ msgctxt "spaghetti_flow description" -#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." -#~ msgstr "Upravuje hustotu výplně špaget. Mějte na paměti, že hustota výplně řídí pouze rozteč linií výplňového vzoru, nikoli velikost výtluku pro výplň špaget." - -#~ msgctxt "hole_xy_offset description" -#~ msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes." -#~ msgstr "Množství ofsetu aplikovaného na všechny díry v každé vrstvě. Pozitivní hodnoty zvětšují velikost děr, záporné hodnoty snižují velikost děr." - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" -#~ msgid "Apply the extruder offset to the coordinate system." -#~ msgstr "Naneste odsazení extrudéru na souřadnicový systém." - -#~ msgctxt "material_flow_dependent_temperature label" -#~ msgid "Auto Temperature" -#~ msgstr "Automatická teplota" - -#~ msgctxt "material_flow_dependent_temperature description" -#~ msgid "Change the temperature for each layer automatically with the average flow speed of that layer." -#~ msgstr "Změňte teplotu pro každou vrstvu automaticky s průměrnou rychlostí průtoku této vrstvy." - -#~ msgctxt "wireframe_strategy option compensate" -#~ msgid "Compensate" -#~ msgstr "Kompenzovat" - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" -#~ msgid "Compensate Inner Wall Overlaps" -#~ msgstr "Kompenzujte překrytí vnitřní stěny" - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" -#~ msgid "Compensate Outer Wall Overlaps" -#~ msgstr "Kompenzujte překrytí vnější stěny" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled label" -#~ msgid "Compensate Wall Overlaps" -#~ msgstr "Kompenzujte překrytí stěn" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled description" -#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." -#~ msgstr "Vykompenzujte tok částí tisku, které se tisknou tam, kde je již zeď na místě." - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" -#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." -#~ msgstr "Kompenzujte tok částí tisknuté vnitřní stěny, kde již je zeď na místě." - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" -#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." -#~ msgstr "Vykompenzujte tok částí tisknuté vnější stěny, kde již je zeď na místě." - -#~ msgctxt "wireframe_top_jump description" -#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." -#~ msgstr "Vytvoří malý uzel v horní části vzestupné linie, takže po sobě jdoucí vodorovná vrstva má lepší šanci se k němu připojit. Platí pouze pro drátový tisk." - -#~ msgctxt "wireframe_bottom_delay description" -#~ msgid "Delay time after a downward move. Only applies to Wire Printing." -#~ msgstr "Zpoždění po pohybu dolů. Platí pouze pro drátový tisk." - -#~ msgctxt "wireframe_top_delay description" -#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." -#~ msgstr "Zpoždění po pohybu vzhůru, aby mohla stoupající čára ztvrdnout. Platí pouze pro drátový tisk." - -#~ msgctxt "wireframe_flat_delay description" -#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." -#~ msgstr "Doba zpoždění mezi dvěma vodorovnými segmenty. Zavedení takového zpoždění může způsobit lepší přilnavost k předchozím vrstvám ve spojovacích bodech, zatímco příliš dlouhé zpoždění může způsobit ochabnutí. Platí pouze pro drátový tisk." - -#~ msgctxt "inset_direction description" -#~ msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed." -#~ msgstr "Určuje pořadí, v jakém budou tištěny zdi. Tištění vnějších zdí jako prvních pomáhá s rozměrovou přesností, jelikož se vady z vnitřních stěn nemohou přenášet na vnějšek. Naproti tomu tištění vnějších zdí nakonec dovoluje jejich lepší vrstvení při tištění převisů." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Určuje prioritu této sítě, když se překrývá více sítí výplně. U oblastí, kde se překrývá více sítí výplně, se nastavení přebírá ze sítě s nejnižším pořadím. Síť výplně s vyšším pořadím bude modifikovat výplň sítě výplně s nižším pořadím a běžné sítě." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Určuje prioritu této sítě při zvažování překrývajících se objemů. Oblasti, kde je umístěno více sítí, budou vyhrány sítí s nižším hodnocením. Výplňová síť s vyšším pořádkem upraví výplň síťových výplní s nižším řádem a běžnými oky." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Určuje, která výplň je uvnitř výplně jiné výplně. Výplňová síť s vyšším pořádkem upraví výplň síťových výplní s nižším řádem a normálními oky." - -#~ msgctxt "wireframe_nozzle_clearance description" -#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." -#~ msgstr "Vzdálenost mezi tryskou a vodorovnými liniemi dolů. Větší vůle vede k diagonálně dolů směřujícím liniím s menším strmým úhlem, což zase vede k menšímu spojení nahoru s další vrstvou. Platí pouze pro drátový tisk." - -#~ msgctxt "support_bottom_distance description" -#~ msgid "Distance from the print to the bottom of the support." -#~ msgstr "Vzdálenost od tisku ke spodní části podpěry." - -#~ msgctxt "support_z_distance description" -#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -#~ msgstr "Vzdálenost od horní / dolní nosné struktury k tisku. Tato mezera poskytuje vůli pro odstranění podpěr po vytištění modelu. Tato hodnota je zaokrouhlena nahoru na násobek výšky vrstvy." - -#~ msgctxt "wireframe_up_half_speed description" -#~ msgid "" -#~ "Distance of an upward move which is extruded with half speed.\n" -#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -#~ msgstr "" -#~ "Vzdálenost pohybu nahoru, který je vytlačován poloviční rychlostí.\n" -#~ "To může způsobit lepší přilnavost k předchozím vrstvám, aniž by se materiál v těchto vrstvách příliš zahříval. Platí pouze pro drátový tisk." - -#~ msgctxt "support_xy_distance_overhang description" -#~ msgid "Distance of the support structure from the overhang in the X/Y directions. " -#~ msgstr "Vzdálenost podpor od převisu ve směru X / Y. " - -#~ msgctxt "wireframe_fall_down description" -#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Vzdálenost, se kterou materiál padá po vytlačení směrem nahoru. Tato vzdálenost je kompenzována. Platí pouze pro drátový tisk." - -#~ msgctxt "wireframe_drag_along description" -#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Vzdálenost, se kterou je materiál vytlačování směrem vzhůru tažen spolu s diagonálně směrem dolů vytlačováním. Tato vzdálenost je kompenzována. Platí pouze pro drátový tisk." - -#~ msgctxt "gradual_flow_discretisation_step_size description" -#~ msgid "Duration of each step in the gradual flow change" -#~ msgstr "Doba trvání každého kroku v postupné změně průtoku" - -#~ msgctxt "gradual_flow_enabled description" -#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -#~ msgstr "Povolit postupné změny průtoku. Když je povoleno, průtok se postupně zvyšuje / snižuje na cílový průtok. Toto je užitečné pro tiskárny s Bowdenovou trubicí, kde se průtok okamžitě nezmění, když se spustí / zastaví extrudér." - -#~ msgctxt "material_end_of_filament_purge_length label" -#~ msgid "End Of Filament Purge Length" -#~ msgstr "Délka proplachování konce filamentu" - -#~ msgctxt "material_end_of_filament_purge_speed label" -#~ msgid "End Of Filament Purge Speed" -#~ msgstr "Rychlost proplachování konce filamentu" - -#~ msgctxt "speed_equalize_flow_enabled label" -#~ msgid "Equalize Filament Flow" -#~ msgstr "Vyrovnat tok vlákna" - -#~ msgctxt "fill_perimeter_gaps option everywhere" -#~ msgid "Everywhere" -#~ msgstr "Všude" - -#~ msgctxt "machine_filament_park_distance label" -#~ msgid "Filament Park Distance" -#~ msgstr "Vzdálenost filamentového parkingu" - -#~ msgctxt "fill_perimeter_gaps label" -#~ msgid "Fill Gaps Between Walls" -#~ msgstr "Vyplnit mezery mezi stěnami" - -#~ msgctxt "fill_perimeter_gaps description" -#~ msgid "Fills the gaps between walls where no walls fit." -#~ msgstr "Vyplní mezery mezi stěnami, kde se žádné stěny nehodí." - -#~ msgctxt "filter_out_tiny_gaps label" -#~ msgid "Filter Out Tiny Gaps" -#~ msgstr "Vyfiltrujte drobné mezery" - -#~ msgctxt "filter_out_tiny_gaps description" -#~ msgid "Filter out tiny gaps to reduce blobs on outside of model." -#~ msgstr "Filtrujte drobné mezery, abyste zmenšili kuličky na vnější straně modelu." - -#~ msgctxt "wireframe_flow_connection description" -#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." -#~ msgstr "Kompenzace toku při stoupání nebo klesání. Platí pouze pro drátový tisk." - -#~ msgctxt "wireframe_flow_flat description" -#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." -#~ msgstr "Kompenzace toku při tisku rovných čar. Platí pouze pro drátový tisk." - -#~ msgctxt "wireframe_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." -#~ msgstr "Kompenzace toku: množství vytlačovaného materiálu se vynásobí touto hodnotou. Platí pouze pro drátový tisk." - -#~ msgctxt "reset_flow_duration description" -#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -#~ msgstr "Pro jakýkoli pohyb delší než tato hodnota se materiálový průtok resetuje na cílový průtok dráhy" - -#~ msgctxt "material_guid description" -#~ msgid "GUID of the material. This is set automatically. " -#~ msgstr "GUID materiálu. Toto je nastaveno automaticky. " - -#~ msgctxt "support_tree_enable description" -#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." -#~ msgstr "Vygenerujte stromovou podporu s větvemi, které podporují váš tisk. To může snížit spotřebu materiálu a dobu tisku, ale výrazně prodlužuje dobu slicování." - -#~ msgctxt "gradual_flow_discretisation_step_size label" -#~ msgid "Gradual flow discretisation step size" -#~ msgstr "Velikost kroku diskretizace postupné změny průtoku" - -# ## Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better. -#~ msgctxt "gradual_flow_enabled label" -#~ msgid "Gradual flow enabled" -#~ msgstr "Postupné změny průtoku povoleny" - -#~ msgctxt "max_flow_acceleration label" -#~ msgid "Gradual flow max acceleration" -#~ msgstr "Maximální zrychlení postupných změn průtoku" - -#~ msgctxt "support_tree_branch_distance description" -#~ msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." -#~ msgstr "Jak daleko od sebe musí být větve, když se dotýkají modelu. Zmenšení této vzdálenosti způsobí, že se stromová podpora dotkne modelu ve více bodech, což způsobí lepší přesah, ale těžší odstranění podpory." +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Povolit postupné změny průtoku. Když je povoleno, průtok se postupně zvyšuje / snižuje na cílový průtok. Toto je užitečné pro tiskárny s Bowdenovou trubicí, kde se průtok okamžitě nezmění, když se spustí / zastaví extrudér." -#~ msgctxt "machine_steps_per_mm_e description" -#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -#~ msgstr "Kolik kroků krokových motorů vyústí v jeden milimetr vytlačování." +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Pro jakýkoli pohyb delší než tato hodnota se materiálový průtok resetuje na cílový průtok dráhy" -#~ msgctxt "slicing_tolerance description" -#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." -#~ msgstr "Jak krájet vrstvy s diagonálními povrchy. Oblasti vrstvy mohou být generovány na základě toho, kde střed vrstvy protíná povrch (Střední). Alternativně každá vrstva může mít oblasti, které padají uvnitř objemu po celé výšce vrstvy (Exkluzivní), nebo vrstva má oblasti, které padají dovnitř kdekoli v rámci vrstvy (Inkluzivní). Exkluzivní zachovává co nejvíce podrobností, Inkluzivní dělá to nejlepší a Střední trvá zpracování nejméně času." +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Velikost kroku diskretizace postupné změny průtoku" -#~ msgctxt "wall_min_flow_retract description" -#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." -#~ msgstr "Je-li tato funkce povolena, je pro retrakční pohyby, které nahrazují stěny, jejichž průtok je pod prahem minimálního průtoku, používáno spíše zatahování." +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Postupné změny průtoku povoleny" -#~ msgctxt "infill_mesh_order label" -#~ msgid "Infill Mesh Order" -#~ msgstr "Pořadí sítě výplně" +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Maximální zrychlení postupných změn průtoku" -#~ msgctxt "layer_0_max_flow_acceleration label" -#~ msgid "Initial layer max flow acceleration" -#~ msgstr "Maximální zrychlení průtoku pro první vrstvu" +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Maximální zrychlení průtoku pro první vrstvu" -#~ msgctxt "wireframe_strategy option knot" -#~ msgid "Knot" -#~ msgstr "Uzel" +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximální zrychlení pro postupné změny průtoku" -#~ msgctxt "limit_support_retractions label" -#~ msgid "Limit Support Retractions" -#~ msgstr "Omezení retrakce podpor" +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimální rychlost pro postupné změny průtoku pro první vrstvu" -#~ msgctxt "material_end_of_filament_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "Interní hodnota stanice materiálu" - -#~ msgctxt "material_end_of_filament_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "Interní hodnota stanice materiálu" - -#~ msgctxt "material_flush_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "Interní hodnota stanice materiálu" - -#~ msgctxt "material_flush_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "Interní hodnota stanice materiálu" - -#~ msgctxt "material_maximum_park_duration description" -#~ msgid "Material Station internal value" -#~ msgstr "Interní hodnota stanice materiálu" - -#~ msgctxt "material_no_load_move_factor description" -#~ msgid "Material Station internal value" -#~ msgstr "Interní hodnota stanice materiálu" - -#~ msgctxt "machine_max_feedrate_e label" -#~ msgid "Maximum Feedrate" -#~ msgstr "Maximální feedrate" - -#~ msgctxt "speed_equalize_flow_max label" -#~ msgid "Maximum Speed for Flow Equalization" -#~ msgstr "Maximální rychlost pro vyrovnávání průtoku" - -#~ msgctxt "max_flow_acceleration description" -#~ msgid "Maximum acceleration for gradual flow changes" -#~ msgstr "Maximální zrychlení pro postupné změny průtoku" - -#~ msgctxt "speed_equalize_flow_max description" -#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -#~ msgstr "Maximální rychlost tisku při úpravě rychlosti tisku za účelem vyrovnání toku." - -#~ msgctxt "wall_min_flow label" -#~ msgid "Minimum Wall Flow" -#~ msgstr "Minimální průtok zdi" - -#~ msgctxt "wall_min_flow description" -#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." -#~ msgstr "Minimální povolený procentuální průtok pro linii stěny. Kompenzace překrytí stěny snižuje průtok stěny, když leží blízko ke stávající zdi. Stěny, jejichž průtok je menší než tato hodnota, budou nahrazeny pohybem. Při použití tohoto nastavení musíte povolit kompenzaci překrytí stěny a vnější stěnu vytisknout před vnitřními stěnami." - -#~ msgctxt "layer_0_max_flow_acceleration description" -#~ msgid "Minimum speed for gradual flow changes for the first layer" -#~ msgstr "Minimální rychlost pro postupné změny průtoku pro první vrstvu" - -#~ msgctxt "fill_perimeter_gaps option nowhere" -#~ msgid "Nowhere" -#~ msgstr "Nikde" - -#~ msgctxt "limit_support_retractions description" -#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." -#~ msgstr "Při přechodu od podpory k podpoře v přímé linii vynechejte stažení. Povolením tohoto nastavení se šetří čas tisku, ale může to vést k nadměrnému strunění uvnitř podpůrné struktury." - -#~ msgctxt "outer_inset_first label" -#~ msgid "Outer Before Inner Walls" -#~ msgstr "Vnější stěny před vnitřními" - -#~ msgctxt "wireframe_straight_before_down description" -#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." -#~ msgstr "Procento diagonálně sestupné linie, která je zakryta vodorovnou čárou. To může zabránit ochabnutí nejvyššího bodu vzhůru. Platí pouze pro drátový tisk." - -#~ msgctxt "wall_min_flow_retract label" -#~ msgid "Prefer Retract" -#~ msgstr "Preferovat retrakci" - -#~ msgctxt "prime_tower_brim_enable label" -#~ msgid "Prime Tower Brim" -#~ msgstr "Límec hlavní věže" - -#~ msgctxt "prime_tower_brim_enable description" -#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -#~ msgstr "Hlavní věže mohou potřebovat zvláštní přilnavost, kterou poskytuje límec, i když to model neumožňuje. V současnosti nelze použít s adhezním typem „Raft“." - -#~ msgctxt "wireframe_enabled description" -#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." -#~ msgstr "Tiskněte pouze vnější povrch s řídkou strukturou struktury a tiskněte „na vzduchu“. To je realizováno horizontálním tiskem kontur modelu v daných intervalech Z, které jsou spojeny pomocí linií nahoru a diagonálně dolů." - -#~ msgctxt "spaghetti_infill_enabled description" -#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." -#~ msgstr "Výplň tiskněte tak často, aby se vlákno chaoticky stočilo uvnitř objektu. To zkracuje dobu tisku, ale chování je spíše nepředvídatelné." - -#~ msgctxt "speed_equalize_flow_enabled description" -#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." -#~ msgstr "Tiskněte tenčí než normální čáry rychleji, takže množství materiálu vytlačovaného za sekundu zůstává stejné. Tenké kousky ve vašem modelu mohou vyžadovat čáry vytištěné s menší šířkou čáry, než je uvedeno v nastavení. Toto nastavení řídí změny rychlosti těchto linek." - -#~ msgctxt "outer_inset_first description" -#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." -#~ msgstr "Když je povoleno, tiskne stěny v pořadí od vnějšku dovnitř. To může pomoci zlepšit rozměrovou přesnost v X a Y při použití plastu s vysokou viskozitou, jako je ABS; může však snížit kvalitu tisku vnějšího povrchu, zejména na převisy." - -#~ msgctxt "reset_flow_duration label" -#~ msgid "Reset flow duration" -#~ msgstr "Doba trvání resetování průtoku" - -#~ msgctxt "support_tree_collision_resolution description" -#~ msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." -#~ msgstr "Rozlišení pro výpočet kolizí, aby nedošlo k nárazu do modelu. Nastavením této nižší se vytvoří přesnější stromy, které selhávají méně často, ale dramaticky se zvyšuje doba slicování." - -#~ msgctxt "wireframe_strategy option retract" -#~ msgid "Retract" -#~ msgstr "Retrakce" - -#~ msgctxt "retraction_enable description" -#~ msgid "Retract the filament when the nozzle is moving over a non-printed area. " -#~ msgstr "Zasuňte vlákno, když se tryska pohybuje po netisknuté oblasti. " - -#~ msgctxt "shell label" -#~ msgid "Shell" -#~ msgstr "Shell" - -#~ msgctxt "material_shrinkage_percentage label" -#~ msgid "Shrinkage Ratio" -#~ msgstr "Poměr smrštění" - -#~ msgctxt "material_shrinkage_percentage description" -#~ msgid "Shrinkage ratio in percentage." -#~ msgstr "Poměr smrštění v procentech." - -#~ msgctxt "spaghetti_flow label" -#~ msgid "Spaghetti Flow" -#~ msgstr "Průtok při špagetové výplni" - -#~ msgctxt "spaghetti_infill_enabled label" -#~ msgid "Spaghetti Infill" -#~ msgstr "Špagetová výplň" - -#~ msgctxt "spaghetti_infill_extra_volume label" -#~ msgid "Spaghetti Infill Extra Volume" -#~ msgstr "Objem navíc při špagetové výplni" - -#~ msgctxt "spaghetti_max_height label" -#~ msgid "Spaghetti Infill Maximum Height" -#~ msgstr "Maximální výška špagetové výplně" - -#~ msgctxt "spaghetti_infill_stepped label" -#~ msgid "Spaghetti Infill Stepping" -#~ msgstr "Krokování při špagetové výplni" - -#~ msgctxt "spaghetti_inset label" -#~ msgid "Spaghetti Inset" -#~ msgstr "Špagetová výplň" - -#~ msgctxt "spaghetti_max_infill_angle label" -#~ msgid "Spaghetti Maximum Infill Angle" -#~ msgstr "Maximální úhel špagetové výplně" - -#~ msgctxt "wireframe_printspeed description" -#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." -#~ msgstr "Rychlost, jakou se tryska pohybuje při vytlačování materiálu. Platí pouze pro drátový tisk." - -#~ msgctxt "wireframe_printspeed_down description" -#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." -#~ msgstr "Rychlost tisku linie šikmo dolů. Platí pouze pro drátový tisk." - -#~ msgctxt "wireframe_printspeed_up description" -#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." -#~ msgstr "Rychlost tisku řádku nahoru „na vzduchu“. Platí pouze pro drátový tisk." - -#~ msgctxt "wireframe_printspeed_bottom description" -#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." -#~ msgstr "Rychlost tisku první vrstvy, která je jedinou vrstvou dotýkající se platformy sestavení. Platí pouze pro drátový tisk." - -#~ msgctxt "wireframe_printspeed_flat description" -#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." -#~ msgstr "Rychlost tisku vodorovných obrysů modelu. Platí pouze pro drátový tisk." - -#~ msgctxt "wall_split_middle_threshold label" -#~ msgid "Split Middle Line Threshold" -#~ msgstr "Mez pro rozdělení prostřední čáry" - -#~ msgctxt "wireframe_strategy description" -#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." -#~ msgstr "Strategie pro zajištění toho, aby se v každém místě připojení připojily dvě po sobě následující vrstvy. Zpětné zasunutí umožní, aby linie vzhůru ztvrdly ve správné poloze, ale mohou způsobit broušení vlákna. Uzel může být vytvořen na konci vzestupné linie, aby se zvýšila šance na připojení k ní a aby se linka ochladila; to však může vyžadovat nízké rychlosti tisku. Další strategií je kompenzovat prohnutý vrchol horní linie; čáry však nebudou vždy klesat, jak bylo předpovězeno." - -#~ msgctxt "support_tree_angle description" -#~ msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -#~ msgstr "Úhel větví. Použijte nižší úhel, aby byly více vertikální a stabilnější. K dosažení většího dosahu použijte vyšší úhel." - -#~ msgctxt "lightning_infill_prune_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." -#~ msgstr "Určuje, pod jakým úhlem mezi jednotlivými vrstvami se větve bleskové výplně zkracují." - -#~ msgctxt "lightning_infill_straightening_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." -#~ msgstr "Určuje, pod jakým úhlem mezi jednotlivými vrstvami může docházet k vyrovnávání větví bleskové výplně." - -#~ msgctxt "wireframe_roof_inset description" -#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." -#~ msgstr "Vzdálenost ujetá při vytváření spojení od obrysu střechy dovnitř. Platí pouze pro drátový tisk." - -#~ msgctxt "wireframe_roof_drag_along description" -#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Vzdálenost koncového kusu vnitřní linie, která se táhne, když se vrací zpět k vnějšímu obrysu střechy. Tato vzdálenost je kompenzována. Platí pouze pro drátový tisk." - -#~ msgctxt "wireframe_roof_fall_down description" -#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Vzdálenost, kterou vodorovné linie střechy vytištěné „na vzduchu“ klesají při tisku. Tato vzdálenost je kompenzována. Platí pouze pro drátový tisk." - -#~ msgctxt "wireframe_height description" -#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." -#~ msgstr "Výška nahoru a diagonálně dolů směřujících čar mezi dvěma vodorovnými částmi. To určuje celkovou hustotu struktury sítě. Platí pouze pro drátový tisk." - -#~ msgctxt "spaghetti_max_infill_angle description" -#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." -#~ msgstr "Maximální úhel osy Z uvnitř tisku pro oblasti, které mají být poté vyplněny špagetovou výplní. Snížení této hodnoty způsobí, že se na každé vrstvě vyplní více šikmých částí modelu." - -#~ msgctxt "spaghetti_max_height description" -#~ msgid "The maximum height of inside space which can be combined and filled from the top." -#~ msgstr "Maximální výška vnitřního prostoru, kterou lze kombinovat a naplnit shora." - -#~ msgctxt "mold_width description" -#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." -#~ msgstr "Minimální vzdálenost mezi vnější stranou formy a vnější stranou modelu." - -#~ msgctxt "min_odd_wall_line_width description" -#~ msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width," -#~ msgstr "Minimální šířka čáry použité jako výplň mezi párovými čárami zdi. Toto nastavení určuje tloušťku modelu, při které se přepíná z tisku dvou čar zdi na tisk dvou vnějších čar zdi a jedné centrální čáry zdi mezi nimi. Vyšší hodnota Minimální šířky nepárové čáry zdi vede k vyšší maximální šířce párové čáry zdi. Maximální šířka nepárové čáry zdi je vypočtena jako 2 * Minimální šířka párové čáry zdi," - -#~ msgctxt "spaghetti_inset description" -#~ msgid "The offset from the walls from where the spaghetti infill will be printed." -#~ msgstr "Odsazení od stěn, odkud bude vytištěna výplň špaget." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Vzor výplňového materiálu tisku. Směr a cik-cak vyplňují směr výměny na alternativních vrstvách, čímž se snižují náklady na materiál. Mřížka, trojúhelník, tri-hexagon, krychlový, oktet, čtvrtý krychlový, křížový a soustředný obrazec jsou plně vytištěny v každé vrstvě. Výplň Gyroid, krychlový, kvartální a oktet se mění s každou vrstvou, aby se zajistilo rovnoměrnější rozložení síly v každém směru." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." -#~ msgstr "Vzor výplňového materiálu tisku. Čáry a cik-cak s každou vrstvou obracejí směr výplně, čímž se snižují náklady na materiál. Mřížka, trojúhelník, tri-hexagon, krychle, oktet, čtvrtinově krychlový, křížový a soustředný vzor jsou plně vytištěny v každé vrstvě. Vzory gyroid, krychlový, čtvrtinově krychlový a oktet se mění s každou vrstvou, aby se zajistilo rovnoměrnější rozložení síly v každém směru. Bleskový vzor se snaží minimalizovat množství výplně tím, že podporuje pouze horní povrchy objektu. U bleskového vzoru má procento význam pouze v první vrstvě pod každým povrchem." - -#~ msgctxt "wall_add_middle_threshold description" -#~ msgid "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -#~ msgstr "Nejnižší šířka čáry, zadaná jako procento běžné šířky čáry, nad kterou bude přidána prostřední nepárová čára mezi dvě párové čáry (pokud mezi nimi ještě nebyla). Snižte toto nastavení, aby se používalo více tenkých čar. Zvyšte toto nastavení pro použití méně a širších čar. Je třeba si uvědomit, že toto nastavení se použije, jako kdyby byl celý tvar vyplněn zdmi. Takže termín prostřední zde znamená prostředek objektu mezi dvěma vnějšími hranami tvaru, a to i v případě, že se namísto zdi tiskne výplň nebo jiný povrch." - -#~ msgctxt "wall_split_middle_threshold description" -#~ msgid "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -#~ msgstr "Nejnižší šířka čáry, zadaná jako procento běžné šířky čáry, nad kterou bude prostřední nepárová čára (pokud nějaká je) rozdělena na dvě párové čáry. Snižte toto nastavení, aby se používalo více tenkých čar. Zvyšte toto nastavení pro použití méně a širších čar. Je třeba si uvědomit, že toto nastavení se použije, jako kdyby byl celý tvar vyplněn zdmi. Takže termín prostřední zde znamená prostředek objektu mezi dvěma vnějšími hranami tvaru, a to i v případě, že se namísto zdi tiskne výplň nebo jiný povrch." - -#~ msgctxt "speed_layer_0 description" -#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." -#~ msgstr "Rychlost počáteční vrstvy. Doporučuje se nižší hodnota pro zlepšení přilnavosti k montážní desce." - -#~ msgctxt "material_print_temperature_layer_0 description" -#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -#~ msgstr "Teplota, která se používá pro tisk první vrstvy." - -#~ msgctxt "material_bed_temperature_layer_0 description" -#~ msgid "The temperature used for the heated build plate at the first layer." -#~ msgstr "Teplota použitá pro vyhřívanou podložku v první vrstvě." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." -#~ msgstr "Teplota použitá pro vyhřívanou podložku. Pokud je to 0, teplota podložky nebude upravena." - -#~ msgctxt "wireframe_roof_outer_delay description" -#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." -#~ msgstr "Čas strávený na vnějším obvodu díry, která se má stát střechou. Delší časy mohou zajistit lepší spojení. Platí pouze pro drátový tisk." - -#~ msgctxt "max_skin_angle_for_expansion description" -#~ msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal, while an angle of 90° is vertical." -#~ msgstr "Horní a/nebo dolní povrch objektu s větším úhlem, než je toto nastavení, nebudou mít rozbalenou horní/dolní plochu. Tím se zabrání rozšíření úzkých oblastí vzhledu, které jsou vytvořeny, když má povrch modelu téměř svislý sklon. Úhel 0° je vodorovný, zatímco úhel 90° je svislý." - -#~ msgctxt "support_tree_enable label" -#~ msgid "Tree Support" -#~ msgstr "Stromová podpora" - -#~ msgctxt "support_tree_angle label" -#~ msgid "Tree Support Branch Angle" -#~ msgstr "Úhel větve stromové podpory" - -#~ msgctxt "support_tree_branch_diameter label" -#~ msgid "Tree Support Branch Diameter" -#~ msgstr "Průměr větve podpěry stromu" - -#~ msgctxt "support_tree_branch_diameter_angle label" -#~ msgid "Tree Support Branch Diameter Angle" -#~ msgstr "Průměr úhlu větve podpěry stromu" - -#~ msgctxt "support_tree_branch_distance label" -#~ msgid "Tree Support Branch Distance" -#~ msgstr "Vzdálenost větví stromu" - -#~ msgctxt "support_tree_collision_resolution label" -#~ msgid "Tree Support Collision Resolution" -#~ msgstr "Stromová podpora - rozlišení kolize" - -#~ msgctxt "support_tree_max_diameter label" -#~ msgid "Tree Support Trunk Diameter" -#~ msgstr "Průměr kmene stromové podpory" - -#~ msgctxt "wireframe_bottom_delay label" -#~ msgid "WP Bottom Delay" -#~ msgstr "Zpoždení pohybu dole při tisku DT" - -#~ msgctxt "wireframe_printspeed_bottom label" -#~ msgid "WP Bottom Printing Speed" -#~ msgstr "Rychlost tisku spodního DT" - -#~ msgctxt "wireframe_flow_connection label" -#~ msgid "WP Connection Flow" -#~ msgstr "Průtok při spojování DT" - -#~ msgctxt "wireframe_height label" -#~ msgid "WP Connection Height" -#~ msgstr "Výška připojení DT" - -#~ msgctxt "wireframe_printspeed_down label" -#~ msgid "WP Downward Printing Speed" -#~ msgstr "Rychlost tisku směrem dolů u DT" - -#~ msgctxt "wireframe_drag_along label" -#~ msgid "WP Drag Along" -#~ msgstr "Tah DT" - -#~ msgctxt "wireframe_up_half_speed label" -#~ msgid "WP Ease Upward" -#~ msgstr "Poloviční rychlost DT" - -#~ msgctxt "wireframe_fall_down label" -#~ msgid "WP Fall Down" -#~ msgstr "Pád materiálu DT" - -#~ msgctxt "wireframe_flat_delay label" -#~ msgid "WP Flat Delay" -#~ msgstr "Zpoždění při tisku plochých segmentů DT" - -#~ msgctxt "wireframe_flow_flat label" -#~ msgid "WP Flat Flow" -#~ msgstr "Průtok při plochém DT" - -#~ msgctxt "wireframe_flow label" -#~ msgid "WP Flow" -#~ msgstr "Průtok při DT" - -#~ msgctxt "wireframe_printspeed_flat label" -#~ msgid "WP Horizontal Printing Speed" -#~ msgstr "Rychlost horizontálního tisku DT" - -#~ msgctxt "wireframe_top_jump label" -#~ msgid "WP Knot Size" -#~ msgstr "Velikost uzlu DT" - -#~ msgctxt "wireframe_nozzle_clearance label" -#~ msgid "WP Nozzle Clearance" -#~ msgstr "Vyčištění trysky DT" - -#~ msgctxt "wireframe_roof_drag_along label" -#~ msgid "WP Roof Drag Along" -#~ msgstr "Tah střechy DT" - -#~ msgctxt "wireframe_roof_fall_down label" -#~ msgid "WP Roof Fall Down" -#~ msgstr "Pád materiálu střechy DT" - -#~ msgctxt "wireframe_roof_inset label" -#~ msgid "WP Roof Inset Distance" -#~ msgstr "Vzdálenost střechy DT" - -#~ msgctxt "wireframe_roof_outer_delay label" -#~ msgid "WP Roof Outer Delay" -#~ msgstr "Vnější zpoždění střechy DT" - -#~ msgctxt "wireframe_printspeed label" -#~ msgid "WP Speed" -#~ msgstr "Rychlost DT" - -#~ msgctxt "wireframe_straight_before_down label" -#~ msgid "WP Straighten Downward Lines" -#~ msgstr "Vyrovnat spodní linky DT" - -#~ msgctxt "wireframe_strategy label" -#~ msgid "WP Strategy" -#~ msgstr "Strategie DT" - -#~ msgctxt "wireframe_top_delay label" -#~ msgid "WP Top Delay" -#~ msgstr "Zpoždení pohybu nahoře při tisku DT" - -#~ msgctxt "wireframe_printspeed_up label" -#~ msgid "WP Upward Printing Speed" -#~ msgstr "Rychlost tisku nahoru u DT" - -#~ msgctxt "retraction_combing_max_distance description" -#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." -#~ msgstr "Pokud nenulové, pohyby combingového pohybu, které jsou delší než tato vzdálenost, použijí zatažení." - -#~ msgctxt "print_sequence description" -#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes. " -#~ msgstr "Zda se mají tisknout všechny modely po jedné vrstvě najednou, nebo počkat na dokončení jednoho modelu, než se přesunete na další. Jeden za časovým režimem je možný, pokud a) je povolen pouze jeden extruder ab) všechny modely jsou odděleny tak, že celá tisková hlava se může pohybovat mezi a všechny modely jsou menší než vzdálenost mezi tryskou a X / Osy Y. " - -#~ msgctxt "spaghetti_infill_stepped description" -#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." -#~ msgstr "Zda se má tisknout špagetová výplň po krocích, nebo se vytlačí veškeré výplňové vlákno na konci tisku." - -#~ msgctxt "wireframe_enabled label" -#~ msgid "Wire Printing" -#~ msgstr "Drátový tisk" - -#~ msgctxt "blackmagic description" -#~ msgid "category_blackmagic" -#~ msgstr "category_blackmagic" - -#~ msgctxt "meshfix description" -#~ msgid "category_fixes" -#~ msgstr "category_fixes" - -#~ msgctxt "experimental description" -#~ msgid "experimental!" -#~ msgstr "experimentální!" +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Doba trvání resetování průtoku" \ No newline at end of file diff --git a/resources/i18n/cs_CZ/gradual_flow_settings.def.json.po b/resources/i18n/cs_CZ/gradual_flow_settings.def.json.po deleted file mode 100644 index e65b1822a1f..00000000000 --- a/resources/i18n/cs_CZ/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,54 +0,0 @@ -# -msgid "" -msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" -"PO-Revision-Date: 2023-11-24 12:51+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Doba trvání každého kroku v postupné změně průtoku" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Povolit postupné změny průtoku. Když je povoleno, průtok se postupně zvyšuje / snižuje na cílový průtok. Toto je užitečné pro tiskárny s Bowdenovou trubicí, kde se průtok okamžitě nezmění, když se spustí / zastaví extrudér." - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Pro jakýkoli pohyb delší než tato hodnota se materiálový průtok resetuje na cílový průtok dráhy" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Velikost kroku diskretizace postupné změny průtoku" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Postupné změny průtoku povoleny" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Maximální zrychlení postupných změn průtoku" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Maximální zrychlení průtoku pro první vrstvu" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximální zrychlení pro postupné změny průtoku" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimální rychlost pro postupné změny průtoku pro první vrstvu" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Doba trvání resetování průtoku" diff --git a/resources/i18n/de_DE/fdmprinter.def.json.po b/resources/i18n/de_DE/fdmprinter.def.json.po index 16bd7baadbf..ca893ad1496 100644 --- a/resources/i18n/de_DE/fdmprinter.def.json.po +++ b/resources/i18n/de_DE/fdmprinter.def.json.po @@ -5488,82 +5488,42 @@ msgctxt "travel description" msgid "travel" msgstr "Bewegungen" -#~ msgctxt "support_bottom_distance description" -#~ msgid "Distance from the print to the bottom of the support." -#~ msgstr "Der Abstand vom gedruckten Objekt bis zur Unterseite der Stützstruktur." +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Dauer der einzelnen Schritte bei der stufenweisen Änderung des Flusses" -#~ msgctxt "support_z_distance description" -#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -#~ msgstr "Der Abstand der Ober-/Unterseite der Stützstruktur vom Druck. So wird ein Zwischenraum geschaffen, der die Entfernung der Stützstrukturen nach dem Drucken des Modells ermöglicht. Dieser Wert wird auf ein Vielfaches der Schichtdicke aufgerundet." +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Aktivieren Sie stufenweise Flussänderungen. Wenn diese Option aktiviert ist, wird der Fluss stufenweise auf den Sollwert des Flusses erhöht bzw. verringert. Dies ist bei Druckern mit Bowden-Röhren sinnvoll, bei denen der Fluss nicht sofort geändert wird, sobald der Extrudermotor startet/stoppt." -#~ msgctxt "gradual_flow_discretisation_step_size description" -#~ msgid "Duration of each step in the gradual flow change" -#~ msgstr "Dauer der einzelnen Schritte bei der stufenweisen Änderung des Flusses" +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Bei jeder Fahrtbewegung, die diesen Wert überschreitet, wird der Materialfluss auf den Sollwert des Flusses für den Weg zurückgesetzt" -#~ msgctxt "gradual_flow_enabled description" -#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -#~ msgstr "Aktivieren Sie stufenweise Flussänderungen. Wenn diese Option aktiviert ist, wird der Fluss stufenweise auf den Sollwert des Flusses erhöht bzw. verringert. Dies ist bei Druckern mit Bowden-Röhren sinnvoll, bei denen der Fluss nicht sofort geändert wird, sobald der Extrudermotor startet/stoppt." +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Schrittgröße der stufenweisen Fluss-Diskretisierung" -#~ msgctxt "reset_flow_duration description" -#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -#~ msgstr "Bei jeder Fahrtbewegung, die diesen Wert überschreitet, wird der Materialfluss auf den Sollwert des Flusses für den Weg zurückgesetzt" +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Stufenweiser Fluss aktiviert" -#~ msgctxt "gradual_flow_discretisation_step_size label" -#~ msgid "Gradual flow discretisation step size" -#~ msgstr "Schrittgröße der stufenweisen Fluss-Diskretisierung" +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Maximale Beschleunigung bei stufenweisem Fluss" -#~ msgctxt "gradual_flow_enabled label" -#~ msgid "Gradual flow enabled" -#~ msgstr "Stufenweiser Fluss aktiviert" +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Maximale Flussbeschleunigung bei erster Schicht" -#~ msgctxt "max_flow_acceleration label" -#~ msgid "Gradual flow max acceleration" -#~ msgstr "Maximale Beschleunigung bei stufenweisem Fluss" +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximale Beschleunigung für stufenweise Änderung des Flusses" -#~ msgctxt "layer_0_max_flow_acceleration label" -#~ msgid "Initial layer max flow acceleration" -#~ msgstr "Maximale Flussbeschleunigung bei erster Schicht" +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Mindestgeschwindigkeit für stufenweise Änderung des Flusses in der ersten Schicht" -#~ msgctxt "max_flow_acceleration description" -#~ msgid "Maximum acceleration for gradual flow changes" -#~ msgstr "Maximale Beschleunigung für stufenweise Änderung des Flusses" - -#~ msgctxt "layer_0_max_flow_acceleration description" -#~ msgid "Minimum speed for gradual flow changes for the first layer" -#~ msgstr "Mindestgeschwindigkeit für stufenweise Änderung des Flusses in der ersten Schicht" - -#~ msgctxt "prime_tower_base_curve_magnitude label" -#~ msgid "Prime Tower Base Curve Magnitude" -#~ msgstr "Krümmungsstärke der Prime-Turm-Basis" - -#~ msgctxt "prime_tower_brim_enable label" -#~ msgid "Prime Tower Brim" -#~ msgstr "Brim Einzugsturm" - -#~ msgctxt "prime_tower_brim_enable description" -#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -#~ msgstr "Einzugstürme benötigen möglicherweise zusätzliche Haftung in Form eines Brims, auch wenn das Modell selbst dies nicht benötigt. Kann derzeit nicht mit dem „Raft“-Haftungstyp verwendet werden." - -#~ msgctxt "prime_tower_brim_enable description" -#~ msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -#~ msgstr "Prime-Türme benötigen möglicherweise die zusätzliche Haftung durch einen Rand oder ein Floß, selbst wenn das Modell dies nicht tut." - -#~ msgctxt "reset_flow_duration label" -#~ msgid "Reset flow duration" -#~ msgstr "Flussdauer zurücksetzen" - -#~ msgctxt "prime_tower_base_height description" -#~ msgid "The height of the prime tower base." -#~ msgstr "Die Höhe der Prime-Turm-Basis." - -#~ msgctxt "prime_tower_base_curve_magnitude description" -#~ msgid "The magnitude factor used for the curve of the prime tower foot." -#~ msgstr "Der Größenfaktor, der für die Kurve des Prime-Turm-Fußes verwendet wird." - -#~ msgctxt "material_print_temperature_layer_0 description" -#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -#~ msgstr "Die Temperatur, die für das Drucken der ersten Schicht verwendet wird. Wählen Sie hier 0, um eine spezielle Behandlung der ersten Schicht zu deaktivieren." - -#~ msgctxt "prime_tower_base_size description" -#~ msgid "The width of the prime tower base." -#~ msgstr "Die Breite der Prime-Turm-Basis." +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Flussdauer zurücksetzen" diff --git a/resources/i18n/de_DE/gradual_flow_settings.def.json.po b/resources/i18n/de_DE/gradual_flow_settings.def.json.po deleted file mode 100644 index 5288002c6eb..00000000000 --- a/resources/i18n/de_DE/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,54 +0,0 @@ -# -msgid "" -msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" -"PO-Revision-Date: 2023-11-24 12:51+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Dauer der einzelnen Schritte bei der stufenweisen Änderung des Flusses" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Aktivieren Sie stufenweise Flussänderungen. Wenn diese Option aktiviert ist, wird der Fluss stufenweise auf den Sollwert des Flusses erhöht bzw. verringert. Dies ist bei Druckern mit Bowden-Röhren sinnvoll, bei denen der Fluss nicht sofort geändert wird, sobald der Extrudermotor startet/stoppt." - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Bei jeder Fahrtbewegung, die diesen Wert überschreitet, wird der Materialfluss auf den Sollwert des Flusses für den Weg zurückgesetzt" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Schrittgröße der stufenweisen Fluss-Diskretisierung" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Stufenweiser Fluss aktiviert" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Maximale Beschleunigung bei stufenweisem Fluss" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Maximale Flussbeschleunigung bei erster Schicht" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximale Beschleunigung für stufenweise Änderung des Flusses" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Mindestgeschwindigkeit für stufenweise Änderung des Flusses in der ersten Schicht" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Flussdauer zurücksetzen" diff --git a/resources/i18n/es_ES/fdmprinter.def.json.po b/resources/i18n/es_ES/fdmprinter.def.json.po index acb175302a3..4b797652ed3 100644 --- a/resources/i18n/es_ES/fdmprinter.def.json.po +++ b/resources/i18n/es_ES/fdmprinter.def.json.po @@ -5488,82 +5488,42 @@ msgctxt "travel description" msgid "travel" msgstr "desplazamiento" -#~ msgctxt "support_bottom_distance description" -#~ msgid "Distance from the print to the bottom of the support." -#~ msgstr "Distancia desde la parte inferior del soporte a la impresión." +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duración de cada paso en el cambio de flujo gradual" -#~ msgctxt "support_z_distance description" -#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -#~ msgstr "Distancia desde la parte superior/inferior de la estructura de soporte a la impresión. Este hueco ofrece holgura para retirar los soportes tras imprimir el modelo. Este valor se redondea hacia el múltiplo de la altura de la capa." +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Activar cambios graduales de flujo. Cuando está activado, el flujo aumenta/disminuye gradualmente hasta el flujo objetivo. Esto es útil para impresoras con un tubo bowden donde el flujo no cambia inmediatamente cuando el motor del extrusor se enciende/apaga." -#~ msgctxt "gradual_flow_discretisation_step_size description" -#~ msgid "Duration of each step in the gradual flow change" -#~ msgstr "Duración de cada paso en el cambio de flujo gradual" +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Para cualquier movimiento de desplazamiento superior a este valor, el flujo de material se restablece con el flujo objetivo de las trayectorias" -#~ msgctxt "gradual_flow_enabled description" -#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -#~ msgstr "Activar cambios graduales de flujo. Cuando está activado, el flujo aumenta/disminuye gradualmente hasta el flujo objetivo. Esto es útil para impresoras con un tubo bowden donde el flujo no cambia inmediatamente cuando el motor del extrusor se enciende/apaga." +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Tamaño del paso de discretización del flujo gradual" -#~ msgctxt "reset_flow_duration description" -#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -#~ msgstr "Para cualquier movimiento de desplazamiento superior a este valor, el flujo de material se restablece con el flujo objetivo de las trayectorias" +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Flujo gradual activado" -#~ msgctxt "gradual_flow_discretisation_step_size label" -#~ msgid "Gradual flow discretisation step size" -#~ msgstr "Tamaño del paso de discretización del flujo gradual" +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Aceleración máxima del flujo gradual" -#~ msgctxt "gradual_flow_enabled label" -#~ msgid "Gradual flow enabled" -#~ msgstr "Flujo gradual activado" +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Aceleración máxima del flujo de la capa inicial" -#~ msgctxt "max_flow_acceleration label" -#~ msgid "Gradual flow max acceleration" -#~ msgstr "Aceleración máxima del flujo gradual" +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Aceleración máxima para los cambios de flujo graduales" -#~ msgctxt "layer_0_max_flow_acceleration label" -#~ msgid "Initial layer max flow acceleration" -#~ msgstr "Aceleración máxima del flujo de la capa inicial" +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Velocidad mínima para los cambios de flujo graduales de la primera capa" -#~ msgctxt "max_flow_acceleration description" -#~ msgid "Maximum acceleration for gradual flow changes" -#~ msgstr "Aceleración máxima para los cambios de flujo graduales" - -#~ msgctxt "layer_0_max_flow_acceleration description" -#~ msgid "Minimum speed for gradual flow changes for the first layer" -#~ msgstr "Velocidad mínima para los cambios de flujo graduales de la primera capa" - -#~ msgctxt "prime_tower_base_curve_magnitude label" -#~ msgid "Prime Tower Base Curve Magnitude" -#~ msgstr "Magnitud de la curva de la base de la torre de cebado" - -#~ msgctxt "prime_tower_brim_enable label" -#~ msgid "Prime Tower Brim" -#~ msgstr "Borde de la torre auxiliar" - -#~ msgctxt "prime_tower_brim_enable description" -#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -#~ msgstr "Puede que las torres auxiliares necesiten la adherencia adicional que proporciona un borde, aunque no sea requisito del modelo. Actualmente, no se puede usar con el tipo de adherencia «balsa»." - -#~ msgctxt "prime_tower_brim_enable description" -#~ msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -#~ msgstr "Las torres de cebado pueden necesitar la adhesión extra que proporciona un borde o raft, incluso si el modelo no lo necesita." - -#~ msgctxt "reset_flow_duration label" -#~ msgid "Reset flow duration" -#~ msgstr "Restablecer duración del flujo" - -#~ msgctxt "prime_tower_base_height description" -#~ msgid "The height of the prime tower base." -#~ msgstr "La altura de la base de la torre de cebado." - -#~ msgctxt "prime_tower_base_curve_magnitude description" -#~ msgid "The magnitude factor used for the curve of the prime tower foot." -#~ msgstr "El factor de magnitud utilizado para la curva del pie de la torre de cebado." - -#~ msgctxt "material_print_temperature_layer_0 description" -#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -#~ msgstr "Temperatura que se usa para imprimir la primera capa. Se ajusta a 0 para desactivar la manipulación especial de la capa inicial." - -#~ msgctxt "prime_tower_base_size description" -#~ msgid "The width of the prime tower base." -#~ msgstr "El ancho de la base de la torre de cebado." +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Restablecer duración del flujo" diff --git a/resources/i18n/es_ES/gradual_flow_settings.def.json.po b/resources/i18n/es_ES/gradual_flow_settings.def.json.po deleted file mode 100644 index c183912ef65..00000000000 --- a/resources/i18n/es_ES/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,54 +0,0 @@ -# -msgid "" -msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" -"PO-Revision-Date: 2023-11-24 12:51+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duración de cada paso en el cambio de flujo gradual" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Activar cambios graduales de flujo. Cuando está activado, el flujo aumenta/disminuye gradualmente hasta el flujo objetivo. Esto es útil para impresoras con un tubo bowden donde el flujo no cambia inmediatamente cuando el motor del extrusor se enciende/apaga." - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Para cualquier movimiento de desplazamiento superior a este valor, el flujo de material se restablece con el flujo objetivo de las trayectorias" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Tamaño del paso de discretización del flujo gradual" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Flujo gradual activado" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Aceleración máxima del flujo gradual" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Aceleración máxima del flujo de la capa inicial" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Aceleración máxima para los cambios de flujo graduales" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Velocidad mínima para los cambios de flujo graduales de la primera capa" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Restablecer duración del flujo" diff --git a/resources/i18n/fdmprinter.def.json.pot b/resources/i18n/fdmprinter.def.json.pot index bf94f19c816..6b61ec31732 100644 --- a/resources/i18n/fdmprinter.def.json.pot +++ b/resources/i18n/fdmprinter.def.json.pot @@ -5476,3 +5476,42 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "" +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" \ No newline at end of file diff --git a/resources/i18n/fi_FI/fdmprinter.def.json.po b/resources/i18n/fi_FI/fdmprinter.def.json.po index 73fd8da0dcf..19a83d2f6aa 100644 --- a/resources/i18n/fi_FI/fdmprinter.def.json.po +++ b/resources/i18n/fi_FI/fdmprinter.def.json.po @@ -5484,946 +5484,42 @@ msgctxt "travel description" msgid "travel" msgstr "siirtoliike" -#~ msgctxt "machine_head_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps excluded)." -#~ msgstr "2D-siluetti tulostuspäästä (tuulettimen kannattimet pois lukien)" - -#~ msgctxt "machine_head_with_fans_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps included)." -#~ msgstr "2D-siluetti tulostuspäästä (tuulettimen päät mukaan lukien)" - -#~ msgctxt "spaghetti_infill_extra_volume description" -#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." -#~ msgstr "Korjausehto pursotettavan aineen kokonaismäärän säätöön jokaisen spagettitäytön aikana." - -#~ msgctxt "sub_div_rad_mult description" -#~ msgid "A multiplier on the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to more subdivisions, i.e. more small cubes." -#~ msgstr "Säteen kerroin kunkin kuution keskipisteestä mallin rajojen tarkistamiseksi. Näin määritetään, tuleeko kuutioon tehdä alajako. Suuremmat arvot tuottavat enemmän alajakoja eli enemmän pieniä kuutioita." - -#~ msgctxt "support_interface_density description" -#~ msgid "Adjusts the density of the roofs and bottoms of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -#~ msgstr "Säätää tukirakenteen kattojen ja alaosien tiheyttä. Korkeammat arvot tuottavat parempia ulokkeita, mutta tuet on vaikeampi poistaa." - -#~ msgctxt "spaghetti_flow description" -#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." -#~ msgstr "Säätää spagettitäytön tiheyttä. Huomaa, että täyttötiheys hallitsee vain täyttökuvion linjojen välien suuruutta, ei spagettitäytön pursotusmäärää." - -#~ msgctxt "dual_pre_wipe description" -#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -#~ msgstr "Pyyhi suuttimen vaihdon jälkeen tihkunut materiaali pois suuttimesta, kun ensimmäinen kappale on tulostettu. Näin saadaan aikaan turvallinen ja hidas pyyhkäisyliike kohdassa, jossa tihkunut materiaali vaurioittaa mahdollisimman vähän tulostuksen pinnan laatua." - -#~ msgctxt "cross_infill_apply_pockets_alternatingly label" -#~ msgid "Alternate Cross 3D Pockets" -#~ msgstr "Vuoroittaiset risti 3D -taskut" - -#~ msgctxt "skin_alternate_rotation label" -#~ msgid "Alternate Skin Rotation" -#~ msgstr "Vuorottele pintakalvon pyöritystä" - -#~ msgctxt "skin_alternate_rotation description" -#~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." -#~ msgstr "Muuttaa ylä-/alakerrosten tulostussuuntaa. Normaalisti ne tulostetaan vain vinottain. Tämä asetus lisää vain X- ja vain Y -suunnat." - -#~ msgctxt "prime_tower_purge_volume description" -#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -#~ msgstr "Poistettavan tulostuslangan määrä esitäyttötornia pyyhittäessä. Poisto on hyödyllinen menetetyn tulostuslangan kompensointiin, silloin kun sitä tihkuu suuttimen ollessa ei-aktiivinen." - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" -#~ msgid "Apply the extruder offset to the coordinate system." -#~ msgstr "Käytä suulakkeen siirtymää koordinaattijärjestelmään." - -#~ msgctxt "material_flow_dependent_temperature label" -#~ msgid "Auto Temperature" -#~ msgstr "Automaattinen lämpötila" - -#~ msgctxt "z_seam_type option back" -#~ msgid "Back" -#~ msgstr "Taakse" - -#~ msgctxt "machine_shape label" -#~ msgid "Build plate shape" -#~ msgstr "Alustan muoto" - -#~ msgctxt "center_object label" -#~ msgid "Center object" -#~ msgstr "Keskitä kappale" - -#~ msgctxt "material_flow_dependent_temperature description" -#~ msgid "Change the temperature for each layer automatically with the average flow speed of that layer." -#~ msgstr "Muuta kunkin kerroksen lämpötilaa automaattisesti kyseisen kerroksen keskimääräisen virtausnopeuden mukaan." - -#~ msgctxt "retraction_combing description" -#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." -#~ msgstr "Pyyhkäisy pitää suuttimen aiemmin tulostetuilla alueilla siirtoliikkeitä tehtäessä. Tämä johtaa hieman pidempiin siirtoliikkeisiin, mutta vähentää takaisinvedon tarvetta. Jos pyyhkäisy on poistettu käytöstä, materiaalille tehdään takaisinveto ja suutin liikkuu suoraan seuraavaan pisteeseen. On myös mahdollista välttää pyyhkäisy ylä- tai alapintakalvojen yli pyyhkäisemällä vain täytössä." - -#~ msgctxt "wireframe_strategy option compensate" -#~ msgid "Compensate" -#~ msgstr "Kompensoi" - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" -#~ msgid "Compensate Inner Wall Overlaps" -#~ msgstr "Kompensoi sisäseinämän limityksiä" - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" -#~ msgid "Compensate Outer Wall Overlaps" -#~ msgstr "Kompensoi ulkoseinämän limityksiä" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled label" -#~ msgid "Compensate Wall Overlaps" -#~ msgstr "Kompensoi seinämän limityksiä" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled description" -#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." -#~ msgstr "Kompensoi tulostettaessa virtausta niiden seinämien osien kohdalla, joissa on jo olemassa seinämä." - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" -#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." -#~ msgstr "Kompensoi tulostettaessa virtausta niiden sisäseinämien osien kohdalla, joissa on jo olemassa seinämä." - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" -#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." -#~ msgstr "Kompensoi tulostettaessa virtausta niiden ulkoseinämien osien kohdalla, joissa on jo olemassa seinämä." - -#~ msgctxt "infill_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Samankeskinen 3D" - -#~ msgctxt "support_bottom_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Samankeskinen 3D" - -#~ msgctxt "support_interface_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Samankeskinen 3D" - -#~ msgctxt "support_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Samankeskinen 3D" - -#~ msgctxt "support_roof_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Samankeskinen 3D" - -#~ msgctxt "zig_zaggify_infill description" -#~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -#~ msgstr "Yhdistä päät, joissa täyttökuvio kohtaa sisäseinämän käyttämällä linjoja, jotka seuraavat sisäseinämän muotoa. Tämän asetuksen ottaminen käyttöön voi saada täytön tarttumaan seinämiin paremmin ja vähentää täytön vaikutusta pystypintojen laatuun. Tämän asetuksen poistaminen käytöstä vähentää käytettävän materiaalin määrää." - -#~ msgctxt "z_seam_corner description" -#~ msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner." -#~ msgstr "Määritä, vaikuttavatko mallin ulkolinjan kulmat sauman sijaintiin. Ei mitään tarkoittaa, että kulmilla ei ole vaikutusta sauman sijaintiin. Piilota sauma -valinnalla sauman sijainti sisäkulmassa on todennäköisempää. Paljasta sauma -valinnalla sauman sijainti ulkokulmassa on todennäköisempää. Piilota tai paljasta sauma -valinnalla sauman sijainti sisä- tai ulkokulmassa on todennäköisempää." - -#~ msgctxt "machine_nozzle_cool_down_speed label" -#~ msgid "Cool down speed" -#~ msgstr "Jäähdytysnopeus" - -#~ msgctxt "wireframe_top_jump description" -#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." -#~ msgstr "Tekee pienen solmun nousulinjan yläpäähän, jotta seuraava vaakasuora kerros pystyy paremmin liittymään siihen. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "sub_div_rad_mult label" -#~ msgid "Cubic Subdivision Radius" -#~ msgstr "Kuution alajaon säde" - -#~ msgctxt "wireframe_bottom_delay description" -#~ msgid "Delay time after a downward move. Only applies to Wire Printing." -#~ msgstr "Viive laskuliikkeen jälkeen. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "wireframe_top_delay description" -#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." -#~ msgstr "Viive nousuliikkeen jälkeen, jotta linja voi kovettua. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "wireframe_flat_delay description" -#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." -#~ msgstr "Viive kahden vaakasuoran segmentin välillä. Tämän viiveen käyttöönotto voi parantaa tarttuvuutta edellisiin kerroksiin liitoskohdissa, mutta liian suuret viiveet aiheuttavat riippumista. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Määrittää, mikä täyttöverkko on toisen täyttöverkon täytön sisällä. Korkeamman järjestyksen täyttöverkko muokkaa pienemmän järjestyksen täyttöverkkojen ja normaalien verkkojen täyttöä." - -#~ msgctxt "machine_disallowed_areas label" -#~ msgid "Disallowed areas" -#~ msgstr "Kielletyt alueet" - -#~ msgctxt "wireframe_nozzle_clearance description" -#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." -#~ msgstr "Suuttimen ja vaakasuoraan laskevien linjojen välinen etäisyys. Suurempi väli aiheuttaa vähemmän jyrkän kulman diagonaalisesti laskeviin linjoihin, mikä puolestaan johtaa harvempiin yläliitoksiin seuraavan kerroksen kanssa. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "support_interface_line_distance description" -#~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately." -#~ msgstr "Tulostettujen tukiliittymän linjojen välinen etäisyys. Tämä asetus lasketaan tukiliittymän tiheysarvosta, mutta sitä voidaan säätää erikseen." - -#~ msgctxt "support_bottom_distance description" -#~ msgid "Distance from the print to the bottom of the support." -#~ msgstr "Etäisyys tulosteesta tuen alaosaan." - -#~ msgctxt "support_z_distance description" -#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded down to a multiple of the layer height." -#~ msgstr "Tukirakenteen etäisyys tulosteesta ylä-/alasuunnassa. Tämä rako sallii tukien poistamisen mallin tulostuksen jälkeen. Tämä arvo pyöristetään alaspäin kerroksen korkeuden kerrannaiseksi." - -#~ msgctxt "support_z_distance description" -#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -#~ msgstr "Tukirakenteen etäisyys tulosteesta ylä-/alasuunnassa. Tämä rako sallii tukien poistamisen mallin tulostuksen jälkeen. Tämä arvo pyöristetään ylöspäin kerroksen korkeuden kerrannaiseksi." - -#~ msgctxt "wireframe_up_half_speed description" -#~ msgid "" -#~ "Distance of an upward move which is extruded with half speed.\n" -#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -#~ msgstr "" -#~ "Puolella nopeudella pursotetun nousuliikkeen etäisyys.\n" -#~ "Se voi parantaa tarttuvuutta edellisiin kerroksiin kuumentamatta materiaalia liikaa kyseisissä kerroksissa. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "support_xy_distance_overhang description" -#~ msgid "Distance of the support structure from the overhang in the X/Y directions. " -#~ msgstr "Tukirakenteen etäisyys ulokkeesta X-/Y-suunnissa. " - -#~ msgctxt "wireframe_fall_down description" -#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Etäisyys, jonka materiaali putoaa ylöspäin menevän pursotuksen jälkeen. Tämä etäisyys kompensoidaan. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "wireframe_drag_along description" -#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Etäisyys, jonka ylöspäin pursotettu materiaali laahautuu diagonaalisen laskevan pursotuksen mukana. Tämä etäisyys kompensoidaan. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "multiple_mesh_overlap label" -#~ msgid "Dual Extrusion Overlap" -#~ msgstr "Kaksoispursotuksen limitys" - -#~ msgctxt "support_enable label" -#~ msgid "Enable Support" -#~ msgstr "Ota tuki käyttöön" - -#~ msgctxt "support_enable description" -#~ msgid "Enable support structures. These structures support parts of the model with severe overhangs." -#~ msgstr "Ota tukirakenteet käyttöön. Nämä rakenteet tukevat mallin osia, joissa on merkittäviä ulokkeita." - -#~ msgctxt "machine_end_gcode label" -#~ msgid "End GCode" -#~ msgstr "Lopetus-GCode" - -#~ msgctxt "speed_equalize_flow_enabled label" -#~ msgid "Equalize Filament Flow" -#~ msgstr "Yhdenmukaista tulostuslangan virtaus" - -#~ msgctxt "fill_perimeter_gaps option everywhere" -#~ msgid "Everywhere" -#~ msgstr "Kaikkialla" - -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Bottom Skins Into Infill" -#~ msgstr "Alimpien pintakalvojen laajennus täyttöalueelle" - -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Lower Skins" -#~ msgstr "Laajenna alemmat pintakalvot" - -#~ msgctxt "expand_skins_into_infill label" -#~ msgid "Expand Skins Into Infill" -#~ msgstr "Laajenna pintakalvot täyttöalueelle" - -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Top Skins Into Infill" -#~ msgstr "Ylimpien pintakalvojen laajennus täyttöalueelle" - -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Upper Skins" -#~ msgstr "Laajenna ylemmät pintakalvot" - -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand lower skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Laajenna alemmat pintakalvot (alueet, joiden alapuolella on ilmaa) niin, että ylä- ja alapuoliset täyttökerrokset ankkuroivat ne." - -#~ msgctxt "expand_skins_into_infill description" -#~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin." -#~ msgstr "Laajenna tasaisten pintojen ylä- ja/tai alapuolen pintakalvot. Oletuksena pintakalvot päättyvät täyttöalueen ympäröivien seinämälinjojen alla, mutta tämä voi aiheuttaa reikiä, kun täyttöalueen tiheys on alhainen. Tämä asetus laajentaa pintakalvot seinämälinjoja pidemmälle niin, että seuraavan kerroksen täyttöalue lepää pintakalvon päällä." - -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Laajenna alimmat pintakalvot (alueet, joiden alapuolella on ilmaa) niin, että ylä- ja alapuoliset täyttökerrokset ankkuroivat ne." - -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand the top skin areas (areas with air above) so that they support infill above." -#~ msgstr "Laajenna ylimmät pintakalvot (alueet, joiden yläpuolella on ilmaa) niin, että ne tukevat yläpuolista täyttöaluetta." - -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand upper skin areas (areas with air above) so that they support infill above." -#~ msgstr "Laajenna ylemmät pintakalvot (alueet, joiden yläpuolella on ilmaa) niin, että ne tukevat yläpuolista täyttöaluetta." - -#~ msgctxt "support_conical_enabled description" -#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." -#~ msgstr "Kokeellinen ominaisuus: tekee tukialueet pienemmiksi alaosassa verrattuna ulokkeeseen." - -#~ msgctxt "machine_filament_park_distance label" -#~ msgid "Filament Park Distance" -#~ msgstr "Tulostuslangan säilytysetäisyys" - -#~ msgctxt "fill_perimeter_gaps label" -#~ msgid "Fill Gaps Between Walls" -#~ msgstr "Täytä seinämien väliset raot" - -#~ msgctxt "fill_perimeter_gaps description" -#~ msgid "Fills the gaps between walls where no walls fit." -#~ msgstr "Täyttää raot seinämien välissä, kun seinämät eivät ole sopivia." - -#~ msgctxt "wireframe_flow_connection description" -#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." -#~ msgstr "Virtauksen kompensointi ylös tai alas mentäessä. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "wireframe_flow_flat description" -#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." -#~ msgstr "Virtauksen kompensointi tulostettaessa latteita linjoja. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "prime_tower_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value." -#~ msgstr "Virtauksen kompensointi: pursotetun materiaalin määrä kerrotaan tällä arvolla." - -#~ msgctxt "wireframe_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." -#~ msgstr "Virtauksen kompensointi: Pursotetun materiaalin määrä kerrotaan tällä arvolla. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "material_guid description" -#~ msgid "GUID of the material. This is set automatically. " -#~ msgstr "Materiaalin GUID. Tämä määritetään automaattisesti. " - -#~ msgctxt "gantry_height label" -#~ msgid "Gantry height" -#~ msgstr "Korokkeen korkeus" - -#~ msgctxt "machine_end_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very end - separated by \n" -#~ "." -#~ msgstr "" -#~ "GCode-komennot, jotka suoritetaan aivan lopussa – eroteltuina merkillä \n" -#~ "." - -#~ msgctxt "machine_start_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very start - separated by \n" -#~ "." -#~ msgstr "" -#~ "GCode-komennot, jotka suoritetaan aivan alussa – eroteltuina merkillä \n" -#~ "." - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "Gcode flavour" -#~ msgstr "GCode-tyyppi" - -#~ msgctxt "ironing_enabled description" -#~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." -#~ msgstr "Yläpinnan läpikäynti yhden ylimääräisen kerran ilman materiaalin pursotusta. Tämän tarkoitus on sulattaa yläosan muovia enemmän, jolloin saadaan sileämpi pinta." - -#~ msgctxt "machine_heated_bed label" -#~ msgid "Has heated build plate" -#~ msgstr "Sisältää lämmitettävän alustan" - -#~ msgctxt "machine_nozzle_heat_up_speed label" -#~ msgid "Heat up speed" -#~ msgstr "Lämpenemisnopeus" - -#~ msgctxt "machine_heat_zone_length label" -#~ msgid "Heat zone length" -#~ msgstr "Lämpöalueen pituus" - -#~ msgctxt "infill_hollow label" -#~ msgid "Hollow Out Objects" -#~ msgstr "Kappaleiden tekeminen ontoiksi" - -#~ msgctxt "skin_no_small_gaps_heuristic label" -#~ msgid "Ignore Small Z Gaps" -#~ msgstr "Ohita pienet Z-raot" - -#~ msgctxt "start_layers_at_same_position description" -#~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time." -#~ msgstr "Aloita tulostus jokaisessa kerroksessa tulostamalla kappale, joka on lähellä samaa pistettä, jotta uutta kerrosta ei aloiteta tulostamalla kappaletta, johon edellinen kerros päättyi. Näin saadaan aikaan paremmat ulokkeet ja pienet osat, mutta tulostus kestää kauemmin." - -#~ msgctxt "material_bed_temp_prepend label" -#~ msgid "Include build plate temperature" -#~ msgstr "Sisällytä alustan lämpötila" - -#~ msgctxt "material_print_temp_prepend label" -#~ msgid "Include material temperatures" -#~ msgstr "Sisällytä materiaalilämpötilat" - -#~ msgctxt "infill_mesh_order label" -#~ msgid "Infill Mesh Order" -#~ msgstr "Täyttöverkkojärjestys" - -#~ msgctxt "z_offset_layer_0 label" -#~ msgid "Initial Layer Z Offset" -#~ msgstr "Alkukerroksen Z-siirtymä" - -#~ msgctxt "wall_x_extruder_nr label" -#~ msgid "Inner Walls Extruder" -#~ msgstr "Sisäseinämien suulake" - -#~ msgctxt "machine_center_is_zero label" -#~ msgid "Is center origin" -#~ msgstr "On keskikohdassa" - -#~ msgctxt "wireframe_strategy option knot" -#~ msgid "Knot" -#~ msgstr "Solmu" - -#~ msgctxt "machine_depth label" -#~ msgid "Machine depth" -#~ msgstr "Laitteen syvyys" - -#~ msgctxt "machine_head_with_fans_polygon label" -#~ msgid "Machine head & Fan polygon" -#~ msgstr "Laiteen pään ja tuulettimen monikulmio" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine head polygon" -#~ msgstr "Laiteen pään monikulmio" - -#~ msgctxt "machine_height label" -#~ msgid "Machine height" -#~ msgstr "Laitteen korkeus" - -#~ msgctxt "machine_width label" -#~ msgid "Machine width" -#~ msgstr "Laitteen leveys" - -#~ msgctxt "machine_max_feedrate_e label" -#~ msgid "Maximum Feedrate" -#~ msgstr "Maksimisyöttönopeus" - -#~ msgctxt "speed_equalize_flow_max label" -#~ msgid "Maximum Speed for Flow Equalization" -#~ msgstr "Virtauksen yhdenmukaistamisen maksiminopeus" - -#~ msgctxt "max_feedrate_z_override label" -#~ msgid "Maximum Z Speed" -#~ msgstr "Z:n maksiminopeus" - -#~ msgctxt "speed_equalize_flow_max description" -#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -#~ msgstr "Tulostuksen maksiminopeus, kun tulostusnopeutta säädetään virtauksen yhdenmukaistamista varten." - -#~ msgctxt "mesh_position_x label" -#~ msgid "Mesh position x" -#~ msgstr "Verkon x-sijainti" - -#~ msgctxt "mesh_position_y label" -#~ msgid "Mesh position y" -#~ msgstr "Verkon y-sijainti" - -#~ msgctxt "mesh_position_z label" -#~ msgid "Mesh position z" -#~ msgstr "Verkon z-sijainti" - -#~ msgctxt "support_minimal_diameter label" -#~ msgid "Minimum Diameter" -#~ msgstr "Minimiläpimitta" - -#~ msgctxt "support_minimal_diameter description" -#~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -#~ msgstr "Erityisellä tukitornilla tuettavan pienen alueen minimiläpimitta X- ja Y-suunnissa." - -#~ msgctxt "retraction_combing option noskin" -#~ msgid "No Skin" -#~ msgstr "Ei pintakalvoa" - -#~ msgctxt "meshfix_keep_open_polygons description" -#~ msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper GCode." -#~ msgstr "Normaalisti Cura yrittää silmukoida umpeen pieniä reikiä verkosta ja poistaa kerroksesta osat, joissa on isoja reikiä. Tämän vaihtoehdon käyttöönotto pitää ne osat, joita ei voida silmukoida. Tätä tulisi pitää viimeisenä vaihtoehtona, kun millään muulla ei saada aikaan kunnollista GCodea." - -#~ msgctxt "fill_perimeter_gaps option nowhere" -#~ msgid "Nowhere" -#~ msgstr "Ei missään" - -#~ msgctxt "machine_nozzle_expansion_angle label" -#~ msgid "Nozzle angle" -#~ msgstr "Suuttimen kulma" - -#~ msgctxt "machine_nozzle_head_distance label" -#~ msgid "Nozzle length" -#~ msgstr "Suuttimen pituus" - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords label" -#~ msgid "Offset With Extruder" -#~ msgstr "Suulakkeen siirtymä" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly description" -#~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." -#~ msgstr "Käytä taskuja vain puolessa nelisuuntaisista risteyksistä risti 3D -kuviossa ja vuorottele taskujen sijainnit sellaisten korkeuksien välillä, joissa kuvio koskettaa itseään." - -#~ msgctxt "optimize_wall_printing_order description" -#~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization." -#~ msgstr "Optimoi seinämien tulostusjärjestys takaisinvetojen ja kuljetun etäisyyden vähentämiseksi. Useimmat osat hyötyvät tämän asetuksen käytöstä, mutta joissakin saattaa kestää kauemmin, joten vertaa tulostusajan arvioita optimointia käytettäessä ja ilman sitä." - -#~ msgctxt "outer_inset_first label" -#~ msgid "Outer Before Inner Walls" -#~ msgstr "Ulkoseinämät ennen sisäseinämiä" - -#~ msgctxt "machine_nozzle_tip_outer_diameter label" -#~ msgid "Outer nozzle diameter" -#~ msgstr "Suuttimen ulkoläpimitta" - -#~ msgctxt "wireframe_straight_before_down description" -#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." -#~ msgstr "Prosenttiluku diagonaalisesti laskevasta linjasta, jota peittää vaakalinjan pätkä. Tämä voi estää nousulinjojen ylimmän kohdan riippumista. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "prime_tower_purge_volume label" -#~ msgid "Prime Tower Purge Volume" -#~ msgstr "Esitäyttötornin poistoainemäärä" - -#~ msgctxt "prime_tower_wall_thickness label" -#~ msgid "Prime Tower Thickness" -#~ msgstr "Esitäyttötornin paksuus" - -#~ msgctxt "wireframe_enabled description" -#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." -#~ msgstr "Tulostetaan vain ulkopinta harvalla verkkorakenteella eli tulostetaan \"suoraan ilmaan\". Tämä toteutetaan tulostamalla mallin ääriviivat vaakasuoraan tietyin Z-välein, jotka yhdistetään ylöspäin menevillä linjoilla ja alaspäin menevillä diagonaalilinjoilla." - -#~ msgctxt "spaghetti_infill_enabled description" -#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." -#~ msgstr "Tulostaa täytön silloin tällöin, niin että tulostuslanka kiertyy sattumanvaraisesti kappaleen sisälle. Tämä lyhentää tulostusaikaa, mutta toimintatapa on melko arvaamaton." - -#~ msgctxt "speed_equalize_flow_enabled description" -#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." -#~ msgstr "Normaaleja ohuempien linjojen tulostus nopeammin niin, että pursotetun materiaalin määrä sekunnissa pysyy samana. Mallin ohuet kappaleet saattavat edellyttää asetuksia pienemmällä linjan leveydellä tulostettuja linjoja. Tällä asetuksella hallitaan tällaisten linjojen nopeuden muutoksia." - -#~ msgctxt "outer_inset_first description" -#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." -#~ msgstr "Seinämät tulostetaan ulkoa sisäänpäin, kun tämä on käytössä. Asetuksella voidaan auttaa parantamaan X:n ja Y:n dimensiotarkkuutta ABS:n kaltaista korkeaviskoosista muovia käytettäessä. Se voi kuitenkin heikentää ulkopinnan tulostuslaatua etenkin ulokkeissa." - -#~ msgctxt "raft_base_line_spacing label" -#~ msgid "Raft Line Spacing" -#~ msgstr "Pohjaristikon linjajako" - -#~ msgctxt "infill_hollow description" -#~ msgid "Remove all infill and make the inside of the object eligible for support." -#~ msgstr "Poistaa kaikki täytöt, jotta kappaletta voidaan käyttää tukena." - -#~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -#~ msgid "RepRap (Marlin/Sprinter)" -#~ msgstr "RepRap (Marlin/Sprinter)" - -#~ msgctxt "machine_gcode_flavor option RepRap (Volumatric)" -#~ msgid "RepRap (Volumetric)" -#~ msgstr "RepRap (volymetrinen)" - -#~ msgctxt "wireframe_strategy option retract" -#~ msgid "Retract" -#~ msgstr "Takaisinveto" - -#~ msgctxt "retraction_enable description" -#~ msgid "Retract the filament when the nozzle is moving over a non-printed area. " -#~ msgstr "Vedä tulostuslanka takaisin, kun suutin liikkuu sellaisen alueen yli, jota ei tulosteta. " - -#~ msgctxt "shell label" -#~ msgid "Shell" -#~ msgstr "Kuori" - -#~ msgctxt "machine_show_variants label" -#~ msgid "Show machine variants" -#~ msgstr "Näytä laitteen variantit" - -#~ msgctxt "support_skip_some_zags label" -#~ msgid "Skip Some ZigZags Connections" -#~ msgstr "Ohita jotkin siksakien yhdistämiset" - -#~ msgctxt "support_zag_skip_count description" -#~ msgid "Skip one in every N connection lines to make the support structure easier to break." -#~ msgstr "Ohita yksi jokaisesta N-yhdistämislinjasta, jotta tukirakenne on helpompi rikkoa." - -#~ msgctxt "support_skip_some_zags description" -#~ msgid "Skip some ZigZags connections to make the support structure easier to break." -#~ msgstr "Ohita jotkin siksakien yhdistämiset, jotta tukirakenne on helpompi rikkoa." - -#~ msgctxt "smooth_spiralized_contours description" -#~ msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z-seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -#~ msgstr "Vähennä Z-sauman näkyvyyttä tasoittamalla kierukoidut ääriviivat (Z-sauman pitäisi olla lähes näkymätön tulosteessa, mutta kerrosnäkymässä sen voi edelleen havaita). Ota huomioon, että tasoittaminen usein sumentaa pinnan pieniä yksityiskohtia." - -#~ msgctxt "spaghetti_flow label" -#~ msgid "Spaghetti Flow" -#~ msgstr "Spagettivirtaus" - -#~ msgctxt "spaghetti_infill_enabled label" -#~ msgid "Spaghetti Infill" -#~ msgstr "Spagettitäyttö" - -#~ msgctxt "spaghetti_infill_extra_volume label" -#~ msgid "Spaghetti Infill Extra Volume" -#~ msgstr "Spagettitäytön ylimääräinen ainemäärä" - -#~ msgctxt "spaghetti_max_height label" -#~ msgid "Spaghetti Infill Maximum Height" -#~ msgstr "Spagettitäytön enimmäiskorkeus" - -#~ msgctxt "spaghetti_infill_stepped label" -#~ msgid "Spaghetti Infill Stepping" -#~ msgstr "Spagettitäyttö vaiheittain" - -#~ msgctxt "spaghetti_inset label" -#~ msgid "Spaghetti Inset" -#~ msgstr "Spagettiliitos" - -#~ msgctxt "spaghetti_max_infill_angle label" -#~ msgid "Spaghetti Maximum Infill Angle" -#~ msgstr "Spagettitäytön enimmäiskulma" - -#~ msgctxt "wireframe_printspeed description" -#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." -#~ msgstr "Nopeus, jolla suutin liikkuu materiaalia pursottaessaan. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "wireframe_printspeed_down description" -#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." -#~ msgstr "Nopeus, jolla tulostetaan linja diagonaalisesti alaspäin. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "wireframe_printspeed_up description" -#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." -#~ msgstr "Nopeus, jolla tulostetaan linja ylöspäin \"suoraan ilmaan\". Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "wireframe_printspeed_bottom description" -#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." -#~ msgstr "Nopeus, jolla tulostetaan ensimmäinen kerros, joka on ainoa alustaa koskettava kerros. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "wireframe_printspeed_flat description" -#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." -#~ msgstr "Nopeus, jolla tulostetaan mallin vaakasuorat ääriviivat. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "magic_spiralize description" -#~ msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature used to be called Joris in older versions." -#~ msgstr "Kierukointi pehmentää ulkoreunan Z-liikettä. Se muodostaa tasaisen Z-lisän koko tulosteelle. Tämä toiminto muuttaa umpinaisen mallin yksiseinäiseksi tulosteeksi, jossa on umpinainen pohja. Vanhemmissa versioissa tätä toimintoa kutsuttiin nimellä Joris." - -#~ msgctxt "machine_start_gcode label" -#~ msgid "Start GCode" -#~ msgstr "Aloitus-GCode" - -#~ msgctxt "start_layers_at_same_position label" -#~ msgid "Start Layers with the Same Part" -#~ msgstr "Aloita kerrokset samalla osalla" - -#~ msgctxt "wireframe_strategy description" -#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." -#~ msgstr "Strategia, jolla varmistetaan, että kaksi peräkkäistä kerrosta liittyy toisiinsa kussakin liitoskohdassa. Takaisinveto antaa nousulinjojen kovettua oikeaan asentoon, mutta voi aiheuttaa tulostuslangan hiertymistä. Solmu voidaan tehdä nousulinjan päähän, jolloin siihen liittyminen helpottuu ja linja jäähtyy, mutta se voi vaatia hitaampia tulostusnopeuksia. Toisena strategiana on kompensoida nousulinjan yläpään riippumista, mutta linjat eivät aina putoa ennustettavalla tavalla." - -#~ msgctxt "support_bottom_height label" -#~ msgid "Support Bottom Thickness" -#~ msgstr "Tuen alaosan paksuus" - -#~ msgctxt "support_interface_line_distance label" -#~ msgid "Support Interface Line Distance" -#~ msgstr "Tukiliittymän linjaetäisyys" - -#~ msgctxt "infill_pattern option tetrahedral" -#~ msgid "Tetrahedral" -#~ msgstr "Nelitaho" - -#~ msgctxt "acceleration_support_interface description" -#~ msgid "The acceleration with which the roofs and bottoms of support are printed. Printing them at lower accelerations can improve overhang quality." -#~ msgstr "Kiihtyvyys, jolla tuen katot ja alaosat tulostetaan. Niiden tulostus hitaammilla kiihtyvyyksillä voi parantaa ulokkeen laatua." - -#~ msgctxt "infill_overlap description" -#~ msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -#~ msgstr "Limityksen määrä täytön ja seinämien välillä. Pienellä limityksellä seinämät liittyvät tukevasti täyttöön." - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "Limityksen määrä pintakalvon ja seinämien välillä linjaleveyden prosenttina. Pienellä limityksellä seinämät liittyvät tukevasti pintakalvoon. Tämä on pintakalvon linjojen ja sisimmän seinämän keskimääräisten linjaleveyksien prosenttiluku." - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "Limityksen määrä pintakalvon ja seinämien välillä. Pienellä limityksellä seinämät liittyvät tukevasti pintakalvoon." - -#~ msgctxt "skin_overlap_mm description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "Limityksen määrä pintakalvon ja seinämien välillä. Pienellä limityksellä seinämät liittyvät tukevasti pintakalvoon." - -#~ msgctxt "switch_extruder_retraction_amount description" -#~ msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone." -#~ msgstr "Takaisinvedon määrä: 0 tarkoittaa, että takaisinvetoa ei ole lainkaan. Tämän on yleensä oltava sama kuin lämpöalueen pituus." - -#~ msgctxt "wireframe_roof_inset description" -#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." -#~ msgstr "Etäisyys, jolla tehdään liitos katon ääriviivalta sisäänpäin. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "wireframe_roof_drag_along description" -#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Sisäpuolisen linjan päätyosan etäisyys ko. linjan laahautuessa mukana, kun mennään takaisin katon ulommalle ulkolinjalle. Tämä etäisyys kompensoidaan. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "expand_skins_expand_distance description" -#~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient." -#~ msgstr "Pintakalvojen laajennusetäisyys täyttöalueelle. Oletusetäisyys riittää kuromaan umpeen täyttölinjojen väliset raot, ja se estää reikien ilmestymisen pintakalvoon seinämän liitoskohdassa, kun täytön tiheys on alhainen." - -#~ msgctxt "wireframe_roof_fall_down description" -#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Etäisyys, jonka \"suoraan ilmaan\" tulostetut vaakasuorat kattolinjat roikkuvat tulostettaessa. Tämä etäisyys kompensoidaan. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "z_offset_layer_0 description" -#~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly." -#~ msgstr "Suulaketta siirretään ensimmäisen kerroksen normaalista korkeudesta tällä määrällä. Se voi olla positiivinen (nostettu) tai negatiivinen (laskettu). Jotkin tulostuslankatyypit tarttuvat alustaan paremmin, jos suulaketta nostetaan hieman." - -#~ msgctxt "support_interface_extruder_nr description" -#~ msgid "The extruder train to use for printing the roofs and bottoms of the support. This is used in multi-extrusion." -#~ msgstr "Tuen kattojen ja alaosien tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa." - -#~ msgctxt "support_bottom_stair_step_height description" -#~ msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -#~ msgstr "Mallin päällä olevan porrasmaisen tuen pohjan portaiden korkeus. Matala arvo tekee tuesta vaikeamman poistaa, mutta liian korkeat arvot voivat johtaa epävakaisiin tukirakenteisiin." - -#~ msgctxt "wireframe_height description" -#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." -#~ msgstr "Kahden vaakaosan välisen nousulinjan ja laskevan diagonaalilinjan korkeus. Tämä määrää verkkorakenteen kokonaistiheyden. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "skirt_gap description" -#~ msgid "" -#~ "The horizontal distance between the skirt and the first layer of the print.\n" -#~ "This is the minimum distance, multiple skirt lines will extend outwards from this distance." -#~ msgstr "" -#~ "Vaakasuora etäisyys helman ja tulosteen ensimmäisen kerroksen välillä.\n" -#~ "Tämä on minimietäisyys; useampia helmalinjoja käytettäessä ne ulottuvat tämän etäisyyden ulkopuolelle." - -#~ msgctxt "spaghetti_max_infill_angle description" -#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." -#~ msgstr "Tulosteen sisustan suurin mahdollinen kulma Z-akseliin nähden alueilla, jotka täytetään myöhemmin spagettitäytöllä. Tämän arvon alentaminen johtaa siihen, että useampia mallin vinottaisia osia täytetään jokaisessa kerroksessa." - -#~ msgctxt "support_join_distance description" -#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one." -#~ msgstr "Tukirakenteiden maksimietäisyys toisistaan X-/Y-suunnissa. Kun erilliset rakenteet ovat tätä arvoa lähempänä toisiaan, rakenteet sulautuvat toisiinsa." - -#~ msgctxt "spaghetti_max_height description" -#~ msgid "The maximum height of inside space which can be combined and filled from the top." -#~ msgstr "Yhdistettävän ja yläpuolelta täytettävän sisätilan enimmäiskorkeus." - -#~ msgctxt "jerk_support_interface description" -#~ msgid "The maximum instantaneous velocity change with which the roofs and bottoms of support are printed." -#~ msgstr "Tuen kattojen ja alaosien tulostuksen nopeuden hetkellinen maksimimuutos." - -#~ msgctxt "max_feedrate_z_override description" -#~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed." -#~ msgstr "Maksiminopeus, jolla alustaa liikutetaan. Jos tämä määritetään nollaan, tulostuksessa käytetään laiteohjelmiston oletusasetuksia Z:n maksiminopeudelle." - -#~ msgctxt "mold_width description" -#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." -#~ msgstr "Muotin ulkoseinän ja mallin ulkoseinän välinen vähimmäisetäisyys." - -#~ msgctxt "spaghetti_inset description" -#~ msgid "The offset from the walls from where the spaghetti infill will be printed." -#~ msgstr "Siirtymä seinämistä, joista spagettitäyttö tulostetaan." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, cubic, octet, quarter cubic and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Tulostettava täyttömateriaalin kuvio. Linja- ja siksak-täytöt vaihtavat suuntaa kerrosten välillä, mikä vähentää materiaalikustannuksia. Ristikko-, kolmio-, kuutio-, oktetti-, neljänneskuutio- ja samankeskinen-kuviot tulostetaan kokonaisuudessaan kuhunkin kerrokseen. Kuutio-, neljänneskuutio- ja oktettitäytöt muuttuvat kerroksittain, jotta vahvuus jakautuu tasaisemmin kussakin suunnassa." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Tulostettava täyttömateriaalin kuvio. Linja- ja siksak-täytöt vaihtavat suuntaa kerrosten välillä, mikä vähentää materiaalikustannuksia. Ristikko-, kolmio-, kuutio-, nelitaho- ja samankeskinen-kuviot tulostetaan kokonaisuudessaan kuhunkin kerrokseen. Kuutio- ja nelitaho-täytöt muuttuvat kerroksittain, jotta vahvuus jakautuu tasaisemmin kussakin suunnassa." - -#~ msgctxt "speed_support_interface description" -#~ msgid "The speed at which the roofs and bottoms of support are printed. Printing the them at lower speeds can improve overhang quality." -#~ msgstr "Nopeus, jolla tuen katot ja alaosat tulostetaan. Niiden tulostus hitaammilla nopeuksilla voi parantaa ulokkeen laatua." - -#~ msgctxt "speed_layer_0 description" -#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." -#~ msgstr "Alkukerroksen nopeus. Alhaisempi arvo on suositeltava, jotta tarttuvuus alustaan on parempi." - -#~ msgctxt "material_print_temperature_layer_0 description" -#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -#~ msgstr "Ensimmäisen kerroksen tulostuksessa käytettävä lämpötila. Aseta arvoon 0, jos et halua käyttää alkukerroksen erikoiskäsittelyä." - -#~ msgctxt "material_print_temperature description" -#~ msgid "The temperature used for printing. Set at 0 to pre-heat the printer manually." -#~ msgstr "Tulostuksessa käytettävä lämpötila. Aseta arvoon 0 esilämmittääksesi tulostimen manuaalisesti." - -#~ msgctxt "material_bed_temperature_layer_0 description" -#~ msgid "The temperature used for the heated build plate at the first layer." -#~ msgstr "Lämmitettävän alustan lämpötila ensimmäistä kerrosta tulostettaessa." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print." -#~ msgstr "Lämmitettävän alustan lämpötila. Jos tämä on 0, pöytä ei lämpene tätä tulostusta varten." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. Set at 0 to pre-heat the printer manually." -#~ msgstr "Lämmitettävän alustan lämpötila. Aseta arvoon 0 esilämmittääksesi tulostimen manuaalisesti." - -#~ msgctxt "prime_tower_wall_thickness description" -#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -#~ msgstr "Onton esitäyttötornin paksuus. Jos paksuus ylittää puolet esitäyttötornin minimitilavuudesta, tuloksena on tiheä esitäyttötorni." - -#~ msgctxt "wall_thickness description" -#~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -#~ msgstr "Ulkoseinämien paksuus vaakatasossa. Tämä arvo jaettuna seinämälinjan leveysarvolla määrittää seinämien lukumäärän." - -#~ msgctxt "support_bottom_height description" -#~ msgid "The thickness of the support bottoms. This controls the number of dense layers are printed on top of places of a model on which support rests." -#~ msgstr "Tuen alaosien paksuus. Tällä hallitaan sellaisten tiheiden kerrosten määrää, jotka tulostetaan mallin tukea kannattelevien kohtien päälle." - -#~ msgctxt "machine_gcode_flavor description" -#~ msgid "The type of gcode to be generated." -#~ msgstr "Luotavan GCoden tyyppi." - -#~ msgctxt "raft_smoothing description" -#~ msgid "This setting control how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -#~ msgstr "Tällä asetuksella säädetään, kuinka paljon pohjaristikon ulkolinjan sisäkulmia pyöristetään. Sisäpuoliset kulmat pyöristetään puoliympyräksi, jonka säde on yhtä suuri kuin tässä annettu arvo. Asetuksella myös poistetaan pohjaristikon ulkolinjan reiät, jotka ovat pienempiä kuin tällainen ympyrä." - -#~ msgctxt "wireframe_roof_outer_delay description" -#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." -#~ msgstr "Katoksi tulevan aukon ulkoreunoihin käytetty aika. Pitemmät ajat varmistavat paremman liitoksen. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "max_skin_angle_for_expansion description" -#~ msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal, while an angle of 90° is vertical." -#~ msgstr "Kappaleesi ylä- ja/tai alapinnan ylä- ja alapintakalvoja ei laajenneta, jos niiden kulma on suurempi kuin tämä asetus. Tällä vältetään laajentamasta kapeita pintakalvoja, jotka syntyvät, kun mallin pinnalla on lähes pystysuora rinne. 0 °:n kulma on vaakasuora ja 90 °:n kulma on pystysuora." - -#~ msgctxt "relative_extrusion description" -#~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any Gcode script is output." -#~ msgstr "Käytä suhteellista pursotusta absoluuttisen pursotuksen sijaan. Suhteellisten E-askelten käyttö helpottaa Gcoden jälkikäsittelyä. Kaikki tulostimet eivät kuitenkaan tue sitä, ja se saattaa aiheuttaa hyvin vähäisiä poikkeamia materiaalin määrässä absoluuttisiin E-askeliin verrattuna. Tästä asetuksesta riippumatta pursotustila on aina absoluuttinen, ennen kuin mitään Gcode-komentosarjaa tuotetaan." - -#~ msgctxt "wireframe_bottom_delay label" -#~ msgid "WP Bottom Delay" -#~ msgstr "Rautalankatulostuksen viive alhaalla" - -#~ msgctxt "wireframe_printspeed_bottom label" -#~ msgid "WP Bottom Printing Speed" -#~ msgstr "Rautalankapohjan tulostusnopeus" - -#~ msgctxt "wireframe_flow_connection label" -#~ msgid "WP Connection Flow" -#~ msgstr "Rautalankatulostuksen liitosvirtaus" - -#~ msgctxt "wireframe_height label" -#~ msgid "WP Connection Height" -#~ msgstr "Rautalankatulostuksen liitoskorkeus" - -#~ msgctxt "wireframe_printspeed_down label" -#~ msgid "WP Downward Printing Speed" -#~ msgstr "Rautalangan tulostusnopeus alaspäin" - -#~ msgctxt "wireframe_drag_along label" -#~ msgid "WP Drag Along" -#~ msgstr "Rautalankatulostuksen laahaus" - -#~ msgctxt "wireframe_up_half_speed label" -#~ msgid "WP Ease Upward" -#~ msgstr "Rautalankatulostuksen hidas liike ylöspäin" - -#~ msgctxt "wireframe_fall_down label" -#~ msgid "WP Fall Down" -#~ msgstr "Rautalankatulostuksen pudotus" - -#~ msgctxt "wireframe_flat_delay label" -#~ msgid "WP Flat Delay" -#~ msgstr "Rautalankatulostuksen lattea viive" - -#~ msgctxt "wireframe_flow_flat label" -#~ msgid "WP Flat Flow" -#~ msgstr "Rautalangan lattea virtaus" - -#~ msgctxt "wireframe_flow label" -#~ msgid "WP Flow" -#~ msgstr "Rautalankatulostuksen virtaus" - -#~ msgctxt "wireframe_printspeed_flat label" -#~ msgid "WP Horizontal Printing Speed" -#~ msgstr "Rautalangan tulostusnopeus vaakasuoraan" - -#~ msgctxt "wireframe_top_jump label" -#~ msgid "WP Knot Size" -#~ msgstr "Rautalankatulostuksen solmukoko" - -#~ msgctxt "wireframe_nozzle_clearance label" -#~ msgid "WP Nozzle Clearance" -#~ msgstr "Rautalankatulostuksen suutinväli" - -#~ msgctxt "wireframe_roof_drag_along label" -#~ msgid "WP Roof Drag Along" -#~ msgstr "Rautalankatulostuksen katon laahaus" - -#~ msgctxt "wireframe_roof_fall_down label" -#~ msgid "WP Roof Fall Down" -#~ msgstr "Rautalankatulostuksen katon pudotus" - -#~ msgctxt "wireframe_roof_inset label" -#~ msgid "WP Roof Inset Distance" -#~ msgstr "Rautalankatulostuksen katon liitosetäisyys" - -#~ msgctxt "wireframe_roof_outer_delay label" -#~ msgid "WP Roof Outer Delay" -#~ msgstr "Rautalankatulostuksen katon ulompi viive" - -#~ msgctxt "wireframe_printspeed label" -#~ msgid "WP Speed" -#~ msgstr "Rautalankatulostuksen nopeus" - -#~ msgctxt "wireframe_straight_before_down label" -#~ msgid "WP Straighten Downward Lines" -#~ msgstr "Rautalankatulostuksen laskulinjojen suoristus" - -#~ msgctxt "wireframe_strategy label" -#~ msgid "WP Strategy" -#~ msgstr "Rautalankatulostuksen strategia" - -#~ msgctxt "wireframe_top_delay label" -#~ msgid "WP Top Delay" -#~ msgstr "Rautalankatulostuksen viive ylhäällä" - -#~ msgctxt "wireframe_printspeed_up label" -#~ msgid "WP Upward Printing Speed" -#~ msgstr "Rautalangan tulostusnopeus ylöspäin" - -#~ msgctxt "material_bed_temp_wait label" -#~ msgid "Wait for build plate heatup" -#~ msgstr "Odota alustan lämpenemistä" - -#~ msgctxt "material_print_temp_wait label" -#~ msgid "Wait for nozzle heatup" -#~ msgstr "Odota suuttimen lämpenemistä" - -#~ msgctxt "support_interface_skip_height description" -#~ msgid "When checking where there's model above the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -#~ msgstr "Kun tarkistat mallia tuen päällä, toimi annetun korkeuden mukaisesti. Pienemmillä arvoilla viipalointi tapahtuu hitaammin, ja korkeammat arvot saattavat aiheuttaa normaalin tuen tulostumisen paikkoihin, joissa olisi pitänyt olla tukiliittymä." - -#~ msgctxt "z_offset_taper_layers description" -#~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print." -#~ msgstr "Kun tämä ei ole nolla, Z-siirtymä pienenee nollaan niin monen kerroksen matkalla. Kun arvo on 0, Z-siirtymä pysyy vakiona kaikille tulostuksen kerroksille." - -#~ msgctxt "skin_no_small_gaps_heuristic description" -#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." -#~ msgstr "Kun mallissa on pieniä pystyrakoja, ylä- ja alapuolen pintakalvon tekemiseen näihin kapeisiin paikkoihin voi kulua noin 5 % ylimääräistä laskenta-aikaa. Poista siinä tapauksessa tämä asetus käytöstä." - -#~ msgctxt "print_sequence description" -#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -#~ msgstr "Tulostetaanko kaikki mallit kerros kerrallaan vai odotetaanko yhden mallin valmistumista ennen kuin siirrytään seuraavaan. Yksi kerrallaan -tila on mahdollinen vain silloin, jos kaikki mallit ovat erillään siten, että koko tulostuspää voi siirtyä niiden välillä ja kaikki mallit ovat suuttimen ja X-/Y-akselien välistä etäisyyttä alempana." - -#~ msgctxt "spaghetti_infill_stepped description" -#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." -#~ msgstr "Spagettitäytön tulostus vaiheittain vai kaiken täyttötulostuslangan pursotus tulostuksen lopussa." +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "" -#~ msgctxt "support_interface_line_width description" -#~ msgid "Width of a single support interface line." -#~ msgstr "Yhden tukiliittymän linjan leveys." +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" -#~ msgctxt "dual_pre_wipe label" -#~ msgid "Wipe Nozzle After Switch" -#~ msgstr "Pyyhi suutin vaihdon jälkeen" +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" -#~ msgctxt "wireframe_enabled label" -#~ msgid "Wire Printing" -#~ msgstr "Rautalankatulostus" +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "" -#~ msgctxt "speed_wall_0_roofing label" -#~ msgid "Yläpinnan uloimman seinän nopeus" -#~ msgstr "Vitesse d'impression de la paroi externe de la surface supérieure" +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "" -#~ msgctxt "z_offset_taper_layers label" -#~ msgid "Z Offset Taper Layers" -#~ msgstr "Z-siirtymän kapenevat kerrokset" +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "" -#~ msgctxt "support_zag_skip_count label" -#~ msgid "ZigZag Connection Skip Count" -#~ msgstr "Siksakien yhdistämisten ohitusten määrä" +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "" -#~ msgctxt "blackmagic description" -#~ msgid "category_blackmagic" -#~ msgstr "category_blackmagic" +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "" -#~ msgctxt "meshfix description" -#~ msgid "category_fixes" -#~ msgstr "category_fixes" +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "" -#~ msgctxt "experimental description" -#~ msgid "experimental!" -#~ msgstr "kokeellinen!" +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "" diff --git a/resources/i18n/fi_FI/gradual_flow_settings.def.json.po b/resources/i18n/fi_FI/gradual_flow_settings.def.json.po deleted file mode 100644 index 56b299bfef0..00000000000 --- a/resources/i18n/fi_FI/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,54 +0,0 @@ -# -msgid "" -msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" -"PO-Revision-Date: 2023-11-24 12:51+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Gradual flow max acceleration" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximum acceleration for gradual flow changes" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimum speed for gradual flow changes for the first layer" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Reset flow duration" diff --git a/resources/i18n/fr_FR/fdmprinter.def.json.po b/resources/i18n/fr_FR/fdmprinter.def.json.po index bcb82fdf203..87d030344c1 100644 --- a/resources/i18n/fr_FR/fdmprinter.def.json.po +++ b/resources/i18n/fr_FR/fdmprinter.def.json.po @@ -5488,82 +5488,42 @@ msgctxt "travel description" msgid "travel" msgstr "déplacement" -#~ msgctxt "support_bottom_distance description" -#~ msgid "Distance from the print to the bottom of the support." -#~ msgstr "Distance entre l’impression et le bas des supports." +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Durée de chaque étape du changement progressif de débit" -#~ msgctxt "support_z_distance description" -#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -#~ msgstr "Distance entre le dessus/dessous du support et l'impression. Cet écart offre un espace permettant de retirer les supports une fois l'impression du modèle terminée. Cette valeur est arrondie au chiffre supérieur jusqu'à atteindre un multiple de la hauteur de la couche." +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Permettre des changements de débit progressifs. Lorsque cette option est activée, le débit est progressivement augmenté/diminué jusqu'au débit cible. Cette option est utile pour les imprimantes équipées d'un tube Bowden avec lesquelles le débit n'est pas immédiatement modifié lorsque le moteur de l'extrudeuse démarre/s'arrête." -#~ msgctxt "gradual_flow_discretisation_step_size description" -#~ msgid "Duration of each step in the gradual flow change" -#~ msgstr "Durée de chaque étape du changement progressif de débit" +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Pour tout déplacement plus long que cette valeur, le débit de matière est réinitialisé au débit cible du parcours" -#~ msgctxt "gradual_flow_enabled description" -#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -#~ msgstr "Permettre des changements de débit progressifs. Lorsque cette option est activée, le débit est progressivement augmenté/diminué jusqu'au débit cible. Cette option est utile pour les imprimantes équipées d'un tube Bowden avec lesquelles le débit n'est pas immédiatement modifié lorsque le moteur de l'extrudeuse démarre/s'arrête." +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Taille du pas de discrétisation du débit progressif" -#~ msgctxt "reset_flow_duration description" -#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -#~ msgstr "Pour tout déplacement plus long que cette valeur, le débit de matière est réinitialisé au débit cible du parcours" +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Débit progressif activé" -#~ msgctxt "gradual_flow_discretisation_step_size label" -#~ msgid "Gradual flow discretisation step size" -#~ msgstr "Taille du pas de discrétisation du débit progressif" +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Accélération maximale du débit progressif" -#~ msgctxt "gradual_flow_enabled label" -#~ msgid "Gradual flow enabled" -#~ msgstr "Débit progressif activé" +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Accélération maximale du débit de la couche initiale" -#~ msgctxt "max_flow_acceleration label" -#~ msgid "Gradual flow max acceleration" -#~ msgstr "Accélération maximale du débit progressif" +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Accélération maximale des changements de débit progressifs" -#~ msgctxt "layer_0_max_flow_acceleration label" -#~ msgid "Initial layer max flow acceleration" -#~ msgstr "Accélération maximale du débit de la couche initiale" +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Vitesse minimale des changements de débit progressifs pour la première couche" -#~ msgctxt "max_flow_acceleration description" -#~ msgid "Maximum acceleration for gradual flow changes" -#~ msgstr "Accélération maximale des changements de débit progressifs" - -#~ msgctxt "layer_0_max_flow_acceleration description" -#~ msgid "Minimum speed for gradual flow changes for the first layer" -#~ msgstr "Vitesse minimale des changements de débit progressifs pour la première couche" - -#~ msgctxt "prime_tower_base_curve_magnitude label" -#~ msgid "Prime Tower Base Curve Magnitude" -#~ msgstr "Amplitude de la courbe de base de la tour de prime" - -#~ msgctxt "prime_tower_brim_enable label" -#~ msgid "Prime Tower Brim" -#~ msgstr "Bordure de la tour d'amorçage" - -#~ msgctxt "prime_tower_brim_enable description" -#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -#~ msgstr "Les tours d'amorçage peuvent avoir besoin de l'adhérence supplémentaire d'une bordure, même si le modèle n'en a pas besoin. Ne peut actuellement pas être utilisé avec le type d'adhérence « Raft » (radeau)." - -#~ msgctxt "prime_tower_brim_enable description" -#~ msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -#~ msgstr "Les tours de prime pourraient nécessiter l'adhésion supplémentaire offerte par un bord ou un radeau, même si le modèle n'en a pas besoin." - -#~ msgctxt "reset_flow_duration label" -#~ msgid "Reset flow duration" -#~ msgstr "Réinitialiser la durée du débit" - -#~ msgctxt "prime_tower_base_height description" -#~ msgid "The height of the prime tower base." -#~ msgstr "La hauteur de la base de la tour de prime." - -#~ msgctxt "prime_tower_base_curve_magnitude description" -#~ msgid "The magnitude factor used for the curve of the prime tower foot." -#~ msgstr "Le facteur d'amplitude utilisé pour la courbe du pied de la tour de prime." - -#~ msgctxt "material_print_temperature_layer_0 description" -#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -#~ msgstr "Température utilisée pour l'impression de la première couche. Définissez-la sur 0 pour désactiver le traitement spécial de la couche initiale." - -#~ msgctxt "prime_tower_base_size description" -#~ msgid "The width of the prime tower base." -#~ msgstr "La largeur de la base de la tour de prime." +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Réinitialiser la durée du débit" diff --git a/resources/i18n/fr_FR/gradual_flow_settings.def.json.po b/resources/i18n/fr_FR/gradual_flow_settings.def.json.po deleted file mode 100644 index ee753f511fb..00000000000 --- a/resources/i18n/fr_FR/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,54 +0,0 @@ -# -msgid "" -msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" -"PO-Revision-Date: 2023-11-24 12:51+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Durée de chaque étape du changement progressif de débit" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Permettre des changements de débit progressifs. Lorsque cette option est activée, le débit est progressivement augmenté/diminué jusqu'au débit cible. Cette option est utile pour les imprimantes équipées d'un tube Bowden avec lesquelles le débit n'est pas immédiatement modifié lorsque le moteur de l'extrudeuse démarre/s'arrête." - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Pour tout déplacement plus long que cette valeur, le débit de matière est réinitialisé au débit cible du parcours" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Taille du pas de discrétisation du débit progressif" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Débit progressif activé" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Accélération maximale du débit progressif" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Accélération maximale du débit de la couche initiale" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Accélération maximale des changements de débit progressifs" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Vitesse minimale des changements de débit progressifs pour la première couche" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Réinitialiser la durée du débit" diff --git a/resources/i18n/gradual_flow_settings.def.json.pot b/resources/i18n/gradual_flow_settings.def.json.pot deleted file mode 100644 index 69ac80a24f3..00000000000 --- a/resources/i18n/gradual_flow_settings.def.json.pot +++ /dev/null @@ -1,58 +0,0 @@ -# -msgid "" -msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - - - - - - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "" - diff --git a/resources/i18n/hu_HU/fdmprinter.def.json.po b/resources/i18n/hu_HU/fdmprinter.def.json.po index 97352c86e5e..789454be374 100644 --- a/resources/i18n/hu_HU/fdmprinter.def.json.po +++ b/resources/i18n/hu_HU/fdmprinter.def.json.po @@ -5493,632 +5493,42 @@ msgctxt "travel description" msgid "travel" msgstr "fej átpozícionálás" -#~ msgctxt "machine_head_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps excluded)." -#~ msgstr "A nyomtatófej 2D -s árnyéka (ventillátor nélkül)." - -#~ msgctxt "machine_head_with_fans_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps included)." -#~ msgstr "A nyomtatófej 2D -s árnyéka (ventillátorral együtt)." - -#~ msgctxt "spaghetti_infill_extra_volume description" -#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." -#~ msgstr "Ez egy korrekció, amivel a spagetti kitöltéskor az extrudált teljes mennyiség beállítható." - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive Layers Threshold" -#~ msgstr "Küszöbérték" - -#~ msgctxt "spaghetti_flow description" -#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." -#~ msgstr "Beállítja a spagetti kitöltés sűrűségét. Vegye figyelembe, hogy a töltési sűrűség csak a töltési minta sorközét szabályozza, nem pedig a spagetti kitöltés extrudálásának mértékét." - -#~ msgctxt "skin_alternate_rotation label" -#~ msgid "Alternate Skin Rotation" -#~ msgstr "Alternatív felületi forgás" - -#~ msgctxt "skin_alternate_rotation description" -#~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." -#~ msgstr "Az alsó/felső felületi kéregvonalak nyomtatási irányát változtatja meg.Általában ezek az irányok csak átlósak, azonban ez a beállítás hozzáadja a csak X és csak Y irányokat is." - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" -#~ msgid "Apply the extruder offset to the coordinate system." -#~ msgstr "Alkalmazza az extruder eltolását a koordinátarendszerre vonatkoztatva." - -#~ msgctxt "material_flow_dependent_temperature label" -#~ msgid "Auto Temperature" -#~ msgstr "Automatikus hőfok" - -#~ msgctxt "material_flow_dependent_temperature description" -#~ msgid "Change the temperature for each layer automatically with the average flow speed of that layer." -#~ msgstr "Automatikusan változtassuk a hőmérsékletet az egyes rétegeknél, annak függvényében, hogy milyen az adott réteg átlagos adagolási sebessége." - -#~ msgctxt "wireframe_strategy option compensate" -#~ msgid "Compensate" -#~ msgstr "Kompenzáció" - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" -#~ msgid "Compensate Inner Wall Overlaps" -#~ msgstr "Kompenzálja a belső fal átfedéseit" - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" -#~ msgid "Compensate Outer Wall Overlaps" -#~ msgstr "Kompenzálja a külső fal átfedéseit" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled label" -#~ msgid "Compensate Wall Overlaps" -#~ msgstr "Fali átlapolások kompenzálása" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled description" -#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." -#~ msgstr "Kompenzálja a száladagolást a fal azon részeinél, ahol az már elkészült." - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" -#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." -#~ msgstr "Kompenzálja a száladagolást a belső fal azon részeinél, ahol az már elkészült." - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" -#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." -#~ msgstr "Kompenzálja a száladagolást a külső fal azon részeinél, ahol az már elkészült." - -#~ msgctxt "wireframe_top_jump description" -#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." -#~ msgstr "Kicsi csomót hoz létre egy felfelé mutató vonal tetején, hogy az egymást követő vízszintes réteg nagyobb eséllyel csatlakozzon hozzá. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "wireframe_bottom_delay description" -#~ msgid "Delay time after a downward move. Only applies to Wire Printing." -#~ msgstr "Késleltesse az időt lefelé történő mozgatás után, hogy a lefelé mutató vonal megszilárduljon. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "wireframe_top_delay description" -#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." -#~ msgstr "Késleltesse az időt felfelé történő mozgatás után, hogy a felfelé mutató vonal megszilárduljon. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "wireframe_flat_delay description" -#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." -#~ msgstr "Késleltetési idő két vízszintes szegmens között. Egy ilyen késleltetés bevezetése jobb tapadást okozhat az előző rétegekhez a csatlakozási pontokon, míg a túl hosszú késleltetések megereszkedést okozhatnak. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Meghatározza, hogy melyik kitöltési háló helyezkedjen el egy másik kitöltési hálón. A magasabb rendű kitöltési háló megváltoztatja az alacsonyabb rendű és normál hálókat." - -#~ msgctxt "wireframe_nozzle_clearance description" -#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." -#~ msgstr "A fúvóka és a vízszintesen lefelé mutató vonalak közötti távolság. A nagyobb hézag átlósan lefelé mutató vonalakat eredményez, kevésbé meredek szöggel, ami viszont kevésbé felfelé irányuló kapcsolatokat eredményez a következő réteggel. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "support_bottom_distance description" -#~ msgid "Distance from the print to the bottom of the support." -#~ msgstr "A támasz alja és az alatta lévő nyomtatvány közötti távolság." - -#~ msgctxt "support_z_distance description" -#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -#~ msgstr "A támaszok struktúrájának alsó/felső részének távolsága a nyomtatott tárgytól.Ez a rés szabadon marad, így segíti a támaszok eltávolítását a nyomtatás után.Ez az érték a rétegmagasság többszörösére lesz kerekítve." - -#~ msgctxt "wireframe_up_half_speed description" -#~ msgid "" -#~ "Distance of an upward move which is extruded with half speed.\n" -#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -#~ msgstr "A felfelé irányuló mozgás távolsága, amelyet fél sebességgel extrudálunk. Ez jobb tapadást eredményez az előző rétegekhez, miközben az anyag nem melegíti túl az anyagot ezekben a rétegekben. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "support_xy_distance_overhang description" -#~ msgid "Distance of the support structure from the overhang in the X/Y directions. " -#~ msgstr "A támasz X/Y távolsága az alátamasztott kinyúlástól. " - -#~ msgctxt "wireframe_fall_down description" -#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Az a távolság, amellyel az anyag leesik egy felfelé történő extrudálás után. Ezt a távolságot tudjuk itt kompenzálni. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "wireframe_drag_along description" -#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Az a távolság, ameddig egy felfelé irányuló extrudálás anyagát az átlósan lefelé irányuló extrudálással együtt meghúzzuk. Ezt a távolságot kompenzálni kell. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "speed_equalize_flow_enabled label" -#~ msgid "Equalize Filament Flow" -#~ msgstr "Adagolás kiegyenlítés" - -#~ msgctxt "fill_perimeter_gaps option everywhere" -#~ msgid "Everywhere" -#~ msgstr "Mindenhol" - -#~ msgctxt "machine_filament_park_distance label" -#~ msgid "Filament Park Distance" -#~ msgstr "Nyomtatószál park távolsága" - -#~ msgctxt "fill_perimeter_gaps label" -#~ msgid "Fill Gaps Between Walls" -#~ msgstr "Falak közötti rések kitöltése" - -#~ msgctxt "fill_perimeter_gaps description" -#~ msgid "Fills the gaps between walls where no walls fit." -#~ msgstr "Tölti ki a falak között azokat a réseket, ahol a falak nem találkoznak." - -#~ msgctxt "filter_out_tiny_gaps label" -#~ msgid "Filter Out Tiny Gaps" -#~ msgstr "Apró hézagok kiszűrése" - -#~ msgctxt "filter_out_tiny_gaps description" -#~ msgid "Filter out tiny gaps to reduce blobs on outside of model." -#~ msgstr "Szűrje ki az apró hézagokat, hogy csökkentse a hibák megjelenését a modell külsején." - -#~ msgctxt "small_feature_speed_factor_0 label" -#~ msgid "First Layer Speed" -#~ msgstr "Első réteg sebesség" - -#~ msgctxt "wireframe_flow_connection description" -#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." -#~ msgstr "Ádagoláskompenzáció felfelé vagy lefelé irányban haladva. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "wireframe_flow_flat description" -#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." -#~ msgstr "Ádagoláskompenzáció vízszintes vonalak nyomtatásakor. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "wireframe_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." -#~ msgstr "Ádagoláskompenzáció: az extrudált anyag mennyiségét megszorozzuk ezzel az értékkel. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "flow_rate_extrusion_offset_factor label" -#~ msgid "Flow rate compensation factor" -#~ msgstr "Adagoláskompenzáció faktor" - -#~ msgctxt "flow_rate_max_extrusion_offset label" -#~ msgid "Flow rate compensation max extrusion offset" -#~ msgstr "Maximális extrudálási eltolás adagoláskompenzáció" - -#~ msgctxt "material_guid description" -#~ msgid "GUID of the material. This is set automatically. " -#~ msgstr "Az alapanyag GUID -je. Ez egy automatikus beállítás. " - -#~ msgctxt "support_tree_enable description" -#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." -#~ msgstr "Generáljon fához hasonló támasz ágakkal, amelyek megtámasztják a nyomtatványt.Ez csökkentheti az anyagfelhasználást és a nyomtatási időt, de jelentősen megnöveli a szeletelési időt." - -#~ msgctxt "support_tree_branch_distance description" -#~ msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." -#~ msgstr "Azt adja meg, hogy milyen messze kell lenniük az ágaknak, mikor a modellt érintik. Ha a távolság kicsi, a ta támasza több ponton is megérinti a modellt, ami jobb alátámasztást ad, de nehezebb eltávolítani majd a támaszt utólag." - -#~ msgctxt "machine_steps_per_mm_e description" -#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -#~ msgstr "Hány lépést kell a motornak megtenni ahhoz, hogy 1 mm mozgás történjen a nyomtatószál adagolásakor." - -#~ msgctxt "slicing_tolerance description" -#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." -#~ msgstr "A szeleteléskor az egyes szeletek a tárgy egy adott pontjában haladnak át, keresztben. Az adott réteg területei úgy alakulnak ki, hogy az adott réteg középpontjában metszi-e a szelet felületét. (Középső)Alternatív megoldásként az egyes rétegeknek lehetnek olyan területei, amelyek a térfogat beljesébe esnek a teljes rétegmagasság alatt (Kizáró).A rétegnek lehetnek olyan területei, amelyek a réteg bármely pontján belülre esnek (Befoglaló).A kizárólagos megtartja a legtöbb részletet, amíg a befoglalt a legjobban illeszkedik. A középső igényli a legkevesebb feldolgozási időt." - -#~ msgctxt "wall_min_flow_retract description" -#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." -#~ msgstr "Ha engedélyezve van, akkor a visszahúzás van elsődlegesen használva a fésülés helyett, s így helyettesíti azokat a falakat, amiknek az anyag szükséglete az adagolási küszöb alatt lenne." - -#~ msgctxt "infill_mesh_order label" -#~ msgid "Infill Mesh Order" -#~ msgstr "Kitöltés háló rend" - -#~ msgctxt "wireframe_strategy option knot" -#~ msgid "Knot" -#~ msgstr "Csomó" - -#~ msgctxt "limit_support_retractions label" -#~ msgid "Limit Support Retractions" -#~ msgstr "Támasz visszahúzás korlátozása" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine Head Polygon" -#~ msgstr "A nyomtatófej ábrázolása" - -#~ msgctxt "machine_max_feedrate_e label" -#~ msgid "Maximum Feedrate" -#~ msgstr "Adagolás maximum" - -#~ msgctxt "speed_equalize_flow_max label" -#~ msgid "Maximum Speed for Flow Equalization" -#~ msgstr "Maximális adagolás kompenzáció sebesség" - -#~ msgctxt "max_extrusion_before_wipe description" -#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated." -#~ msgstr "A maximális anyagmennyiség, amit ki tudunk extrudálni mielőtt a fűvókatörlés végre lesz hajtva." - -#~ msgctxt "speed_equalize_flow_max description" -#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -#~ msgstr "A maximális nyomtatási sebesség, amire a nyomtató kompenzálni tudja az adagolást." - -#~ msgctxt "wall_min_flow label" -#~ msgid "Minimum Wall Flow" -#~ msgstr "Minimális fal adagolás" - -#~ msgctxt "wall_min_flow description" -#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." -#~ msgstr "A fali vonalak minimális adagolása. A fal átlapolás kompenzáció csökkenti az adagolást, amikor a már meglévő falakhoz közel nyomtatunk. Azoknak a falaknak, ahol az adagolási sebesség kissebb lenne, mint ez a megadott érték, az útvonalat módosítani kell. Ennek a beállításnak a használatakor engedélyezni kell a a fal átfedés kompenzációját, és a külső falakat a belsők előtt kell nyomtatni." - -#~ msgctxt "minimum_interface_area description" -#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "A támasz interfész minimális területe. Az ezen az értéken kisebb területtel rendelkező támaszokat nem generálják." - -#~ msgctxt "minimum_bottom_area description" -#~ msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "A támaszaljzat interfész minimális területe. Ha a terület kevesebbre jön ki a megadott értéktől, az nem lesz legenerálva." - -#~ msgctxt "minimum_roof_area description" -#~ msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "A támasztető interfész minimális területe. Ha a terület kevesebbre jön ki a megadott értéktől, az nem lesz legenerálva." - -#~ msgctxt "fill_perimeter_gaps option nowhere" -#~ msgid "Nowhere" -#~ msgstr "Seholsem" - -#~ msgctxt "limit_support_retractions description" -#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." -#~ msgstr "A támasz és a normál tárgyvonalak között kihagyja a visszahúzást. Ez időt takaríthat meg, de ez szálazást eredményezhet." - -#~ msgctxt "outer_inset_first label" -#~ msgid "Outer Before Inner Walls" -#~ msgstr "Külső falak a belsők előtt" - -#~ msgctxt "wireframe_straight_before_down description" -#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." -#~ msgstr "Az átlósan lefelé mutató vonal százaléka, amelyet egy vízszintes vonaldarab fed le. Ez megakadályozhatja a felfelé mutató vonalak legfelső pontjának elhajlását. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "wall_min_flow_retract label" -#~ msgid "Prefer Retract" -#~ msgstr "Visszahúzás preferálása" - -#~ msgctxt "prime_tower_brim_enable label" -#~ msgid "Prime Tower Brim" -#~ msgstr "Előtorony perem" - -#~ msgctxt "prime_tower_brim_enable description" -#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -#~ msgstr "Előfordulhat, hogy az előtornyokhoz szükség van a peremek által biztosított extra tapadásra, még akkor is, ha a modell nem rendelkezik peremmel. Jelenleg nem használható a tutaj 'Raft' mint tapadástípus ehhez a művelethez." - -#~ msgctxt "wireframe_enabled description" -#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." -#~ msgstr "Csak a külső felületet nyomtatja, egy ritkás hevederezett szerkezettel, a levegőben. Ez úgy valósul meg, hogy a modell kontúrjai vízszintesen kinyomtatásra kerülnek meghatározott Z intervallumban, amiket felfelé, és átlósan lefelé egyenesen összeköt." - -#~ msgctxt "spaghetti_infill_enabled description" -#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." -#~ msgstr "Ez a kitöltés nem minta alapján történik, hanem a nyomtatószálat kaotikusan, össze-vissza folyatja a kitöltésen belül. Ez csökkenti a nyomtatási időt, azonban a struktúra stabilitása, és viselkedése kiszámíthatatlan." - -#~ msgctxt "speed_equalize_flow_enabled description" -#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." -#~ msgstr "A normál vonalaktól vékonyabb vonalak nyomtatásakor a sebességet növelni fogja, miközben az extrudálás sebességét nem változatja. Így előfordulhat, hogy a modell vékonyabb darabjainál a vonalak szélessége kissebb lesz, mint a megadott.Ez a beállítás szabályozza az ilyen vonalaknak a nyomatatási sebesség változását." - -#~ msgctxt "outer_inset_first description" -#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." -#~ msgstr "A falakat külső, majd belső sorrendben nyomtatja, ha ez engedélyezve van.Ez hozzájárulhat a X és Y méret pontosságának javításához, különösen nagy viszkozitású műanyag, például ABS használatakor. Ez azonban csökkentheti a külső felület nyomtatási minőségét, különösen az átlapolásoknál." - -#~ msgctxt "support_tree_collision_resolution description" -#~ msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." -#~ msgstr "Felbontás az ütközések kiszámítására, annak érdekében, hogy elkerüljük a modellel való ütközést. Ha alacsonyabb a beállítás, az pontosabb fákat eredményez, amik kevésbé dőlnek el, de a szeletelési időt drámai módon megnöveli." - -#~ msgctxt "wireframe_strategy option retract" -#~ msgid "Retract" -#~ msgstr "Visszahúzás" - -#~ msgctxt "retraction_enable description" -#~ msgid "Retract the filament when the nozzle is moving over a non-printed area. " -#~ msgstr "Visszahúzza a nyomtatószálat, amikor a fúvóka mozog azon a területek felett, ahol nincs nyomtatás. " - -#~ msgctxt "wipe_retraction_prime_speed label" -#~ msgid "Retraction Prime Speed" -#~ msgstr "Visszatöltési sebesség" - -#~ msgctxt "shell label" -#~ msgid "Shell" -#~ msgstr "Héj" - -#~ msgctxt "material_shrinkage_percentage label" -#~ msgid "Shrinkage Ratio" -#~ msgstr "Zsugorodási arány" - -#~ msgctxt "material_shrinkage_percentage description" -#~ msgid "Shrinkage ratio in percentage." -#~ msgstr "ZSugorodási arány százalékban megadva." - -#~ msgctxt "small_feature_speed_factor_0 description" -#~ msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy." -#~ msgstr "Az első réteg kis elemeit a normál nyomtatási sebesség megadott százalékában nyomtatják ki. A lassabb nyomtatás segíthet a tapadásban és a pontosságban." - -#~ msgctxt "small_feature_speed_factor description" -#~ msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy." -#~ msgstr "A kisméretű elemeket a normál nyomtatási sebesség megadott százalékában nyomtatják ki. A lassabb nyomtatás segíthet a tapadásban és a pontosságban." - -#~ msgctxt "spaghetti_flow label" -#~ msgid "Spaghetti Flow" -#~ msgstr "Spagetti adagolás" - -#~ msgctxt "spaghetti_infill_enabled label" -#~ msgid "Spaghetti Infill" -#~ msgstr "Spagetti kitöltés" - -#~ msgctxt "spaghetti_infill_extra_volume label" -#~ msgid "Spaghetti Infill Extra Volume" -#~ msgstr "Extra kitöltési térfogat" - -#~ msgctxt "spaghetti_max_height label" -#~ msgid "Spaghetti Infill Maximum Height" -#~ msgstr "Kitöltés maximum magasság" - -#~ msgctxt "spaghetti_infill_stepped label" -#~ msgid "Spaghetti Infill Stepping" -#~ msgstr "Lépésenkénti kitöltés" - -#~ msgctxt "spaghetti_inset label" -#~ msgid "Spaghetti Inset" -#~ msgstr "Spagetti berakás" - -#~ msgctxt "spaghetti_max_infill_angle label" -#~ msgid "Spaghetti Maximum Infill Angle" -#~ msgstr "Maximális kitöltési szög" - -#~ msgctxt "wireframe_printspeed description" -#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." -#~ msgstr "A fúvóka mozgásának sebessége az anyag extrudálásakor. Csak a huzalnyomtatásra vonatkozik." - -#~ msgctxt "wireframe_printspeed_down description" -#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." -#~ msgstr "A vonalak lefelé, Z irányban 'a levegőben' történő nyomtatási sebessége. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "wireframe_printspeed_up description" -#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." -#~ msgstr "A vonalak felfelé, Z irányban 'a levegőben' történő nyomtatási sebessége. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "wireframe_printspeed_bottom description" -#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." -#~ msgstr "Az első réteg nyomtatásának sebessége, amely az egyetlen réteg, amely megérinti a tárgyasztalt. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "wireframe_printspeed_flat description" -#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." -#~ msgstr "A modell kontúrjának vizszintes irnyban történő nyomtatási sebessége.Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "wireframe_strategy description" -#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." -#~ msgstr "Stratégia annak biztosítására, hogy két egymást követő réteg kapcsolódjon minden egyes csatlakozási ponthoz. A visszahúzás lehetővé teszi, hogy a felfelé mutató vonalak a megfelelő helyzetben megkeményedjenek, de ez az adagolókerék megcsúszását, és a szál eldarálását okozhatja. Egy felfelé mutató vonal végén csomót lehet készíteni, hogy növeljük az ahhoz való csatlakozás eredményességét, és hagyjuk, hogy a vonal vége lehűljön; ez azonban lassú nyomtatási sebességet igényelhet. Egy másik stratégia, a felfelé mutató vonal tetejének elmaradásának kompenzálása; azonban a vonalak nem mindig esnek le a várt módon." - -#~ msgctxt "support_tree_angle description" -#~ msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -#~ msgstr "Az ágak szöge. Használjon alacsonyabb szöget, hogy függőlegesebb és stabilabbak legyenek. A jobb kinyúláshoz használjon nagyobb szöget." - -#~ msgctxt "wireframe_roof_inset description" -#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." -#~ msgstr "A beépített távolság, amikor a tetőtől körvonalakat bekapcsolnak. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "wireframe_roof_drag_along description" -#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "A belső vonal végdarabjának távolsága, amely elhúzódik, amikor visszamegy a tető külső körvonalaihoz. Ezt a távolságot kompenzálni kell. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "wireframe_roof_fall_down description" -#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "A 'vékony, levegőben' nyomtatott vízszintes tetővonalak nyomtatáskor csökkennek a távolságok. Ezeket a távolságokat kompenzálni kell. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "wireframe_height description" -#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." -#~ msgstr "Két vízszintes rész közötti felfelé és átlósan lefelé mutató vonalak magassága. Ez határozza meg a nettó szerkezet általános sűrűségét. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "spaghetti_max_infill_angle description" -#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." -#~ msgstr "A maximális w.r.t. szög a nyomtatás belsejében, és a Z tengelye azokon a területeken, amelyeket utána spagetti töltelékkel kell kitölteni. Ennek az értéknek a csökkentésével több olyan szögben lévő részeket hoz létre, amit minden rétegben meg kell tölteni." - -#~ msgctxt "flow_rate_max_extrusion_offset description" -#~ msgid "The maximum distance in mm to compensate." -#~ msgstr "A maximális távolság mm -ben történő kompenzációja." - -#~ msgctxt "spaghetti_max_height description" -#~ msgid "The maximum height of inside space which can be combined and filled from the top." -#~ msgstr "A belső tér maximális magassága, amelyet felülről ki lehet tölteni." - -#~ msgctxt "mold_width description" -#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." -#~ msgstr "Az öntőforma külseje és a modell külső héja közötti minimális távolság." - -#~ msgctxt "flow_rate_extrusion_offset_factor description" -#~ msgid "The multiplication factor for the flow rate -> distance translation." -#~ msgstr "Az adagolási sebesség szorzótényezője -> távolságtranszláció." - -#~ msgctxt "support_tree_wall_count description" -#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "A faágak falainak száma. A vastagabb falak nyomtatása hosszabb ideig tart, de nem törik le olyan könnyen." - -#~ msgctxt "spaghetti_inset description" -#~ msgid "The offset from the walls from where the spaghetti infill will be printed." -#~ msgstr "Az eltolás a falaktól, ahonnan a spagetti kitöltés kinyomtatásra kerül." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "A kitöltés mintázata. A vonal és a cikcakk felváltva cserélgeti az irányát rétegenként, csökkentve ezzel az anyagköltséget. A rács, háromszög, háromhatszög,kocka, oktett, negyed kocka, kereszt és koncentrikus mintákat minden rétegben nyomtatjuk. A gyroid, a kocka, a negyedkocka, és az oktett töltés minden rétegben változik, és így egyenletesebb az erő eloszlása minden irányban." - -#~ msgctxt "speed_layer_0 description" -#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." -#~ msgstr "A kezdő réteg sebessége. Az alacsonyabb érték segít növelni a tapadást a tárgyasztalhoz." - -#~ msgctxt "material_print_temperature_layer_0 description" -#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -#~ msgstr "Az a hőmérséklet, amin az első réteg nyomtatása fog történni. Ha az érték 0, akkor nem kezeli külön a kezdő réteg hőmérsékleti beállítását." - -#~ msgctxt "material_bed_temperature_layer_0 description" -#~ msgid "The temperature used for the heated build plate at the first layer." -#~ msgstr "A tárgyasztal erre a hőmérsékletre fűt fel az első réteg nyomtatásához." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." -#~ msgstr "A tárgyasztal hőmérséklete. Ha ez az érték 0, akkor tárgyasztal hőmérséklete nem lesz beállítva, azaz nem fogja fűteni a gép." - -#~ msgctxt "support_tree_wall_thickness description" -#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "A faágak falainak vastagsága. A vastagabb falak nyomtatása hosszabb ideig tart, de nem törik le olyan könnyen." - -#~ msgctxt "adaptive_layer_height_threshold description" -#~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." -#~ msgstr "Annak a küszöbértéke, hogy kisebb legyen a rétegmagasság, vagy sem.Ezt a számot hasonlítják össze a réteg legmeredekebb meredekségével." - -#~ msgctxt "wireframe_roof_outer_delay description" -#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." -#~ msgstr "A tetővé váló lyuk külső kerületein eltöltött idő. A hosszabb idő biztosítja a jobb kapcsolódást. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "max_skin_angle_for_expansion description" -#~ msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal, while an angle of 90° is vertical." -#~ msgstr "A tárgy alsó/felső felületén, az itt megadott szögnél nagyobb szög esetén a kéreg nem lesz kibővítve. Így elkerülhető, hogy a keskeny kéregrészek ne legyenek kibővítve, amik akkor jönnek létre, mikor a modell felülete közel függőleges szögben áll. A 0° szög a vízszintes, míg a 90° szög a függőlegest jelenti." - -#~ msgctxt "support_tree_enable label" -#~ msgid "Tree Support" -#~ msgstr "Fa támasz" - -#~ msgctxt "support_tree_angle label" -#~ msgid "Tree Support Branch Angle" -#~ msgstr "Támaszágak szöge" - -#~ msgctxt "support_tree_branch_diameter label" -#~ msgid "Tree Support Branch Diameter" -#~ msgstr "Támaszágak átmérője" - -#~ msgctxt "support_tree_branch_diameter_angle label" -#~ msgid "Tree Support Branch Diameter Angle" -#~ msgstr "Támaszágak átmérő szög" - -#~ msgctxt "support_tree_branch_distance label" -#~ msgid "Tree Support Branch Distance" -#~ msgstr "Támaszágak távolsága" - -#~ msgctxt "support_tree_collision_resolution label" -#~ msgid "Tree Support Collision Resolution" -#~ msgstr "Ütközés felbontás" - -#~ msgctxt "support_tree_wall_count label" -#~ msgid "Tree Support Wall Line Count" -#~ msgstr "Fal vonal szám" - -#~ msgctxt "support_tree_wall_thickness label" -#~ msgid "Tree Support Wall Thickness" -#~ msgstr "Fal vastagság" - -#~ msgctxt "wireframe_bottom_delay label" -#~ msgid "WP Bottom Delay" -#~ msgstr "Alsó késleltetés" - -#~ msgctxt "wireframe_printspeed_bottom label" -#~ msgid "WP Bottom Printing Speed" -#~ msgstr "Aljzat nyomtatási sebesség" - -#~ msgctxt "wireframe_flow_connection label" -#~ msgid "WP Connection Flow" -#~ msgstr "Kapcsolódási adagolás" - -#~ msgctxt "wireframe_height label" -#~ msgid "WP Connection Height" -#~ msgstr "Kapcsolódási magasság" - -#~ msgctxt "wireframe_printspeed_down label" -#~ msgid "WP Downward Printing Speed" -#~ msgstr "Lefelé nyomtatási sebesség" - -#~ msgctxt "wireframe_drag_along label" -#~ msgid "WP Drag Along" -#~ msgstr "Húzási távolság" - -#~ msgctxt "wireframe_up_half_speed label" -#~ msgid "WP Ease Upward" -#~ msgstr "Emelés távolság" - -#~ msgctxt "wireframe_fall_down label" -#~ msgid "WP Fall Down" -#~ msgstr "Ejtés távolság" - -#~ msgctxt "wireframe_flat_delay label" -#~ msgid "WP Flat Delay" -#~ msgstr "Vízszintes késleltetés" - -#~ msgctxt "wireframe_flow_flat label" -#~ msgid "WP Flat Flow" -#~ msgstr "Vízszintes adagolás" - -#~ msgctxt "wireframe_flow label" -#~ msgid "WP Flow" -#~ msgstr "Adagolás" - -#~ msgctxt "wireframe_printspeed_flat label" -#~ msgid "WP Horizontal Printing Speed" -#~ msgstr "Vízszintes nyomtatási sebesség" - -#~ msgctxt "wireframe_top_jump label" -#~ msgid "WP Knot Size" -#~ msgstr "Csomó méret" - -#~ msgctxt "wireframe_nozzle_clearance label" -#~ msgid "WP Nozzle Clearance" -#~ msgstr "Fúvúka hézag" - -#~ msgctxt "wireframe_roof_drag_along label" -#~ msgid "WP Roof Drag Along" -#~ msgstr "Fedél húzás" - -#~ msgctxt "wireframe_roof_fall_down label" -#~ msgid "WP Roof Fall Down" -#~ msgstr "Fedél ejtés" - -#~ msgctxt "wireframe_roof_inset label" -#~ msgid "WP Roof Inset Distance" -#~ msgstr "Fedél betét távolság" - -#~ msgctxt "wireframe_roof_outer_delay label" -#~ msgid "WP Roof Outer Delay" -#~ msgstr "Fedél külső késleltetése" - -#~ msgctxt "wireframe_printspeed label" -#~ msgid "WP Speed" -#~ msgstr "Sebesség" - -#~ msgctxt "wireframe_straight_before_down label" -#~ msgid "WP Straighten Downward Lines" -#~ msgstr "Vonal egyenesítés lefelé" - -#~ msgctxt "wireframe_strategy label" -#~ msgid "WP Strategy" -#~ msgstr "Startégia" - -#~ msgctxt "wireframe_top_delay label" -#~ msgid "WP Top Delay" -#~ msgstr "Felső késleltetés" - -#~ msgctxt "wireframe_printspeed_up label" -#~ msgid "WP Upward Printing Speed" -#~ msgstr "Felfelé nyomtatási sebesség" - -#~ msgctxt "wall_overhang_angle description" -#~ msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging." -#~ msgstr "Ettől a szögtől nagyobb mértékben túlnyúló falakat, a túlnyúló falbeállítások segítségével nyomtatjuk ki. Ha az érték 90, egyetlen falat sem tekintünk túlnyúlásnak." - -#~ msgctxt "retraction_combing_max_distance description" -#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." -#~ msgstr "Ha ez az érték nem nulla, akkor a megadott értéktől hosszabb utazáskor nyomtatószál visszahúzás fog történni." +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "" -#~ msgctxt "wipe_hop_enable description" -#~ msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -#~ msgstr "Amikor a szál visszahúzódik, akkor a Z tengelyen történik egy emelés, hogy a nyomtatófej és a tárgy között legyen egy Z irányú hézag.Ez megakadályozza, hogy a fúvóka beleüzközzön, és esetleg elmozdítsa a testet a tárgylemezről." +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" -#~ msgctxt "clean_between_layers description" -#~ msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." -#~ msgstr "Ha ezt használjuk, akkor lesz a G-kód -ban egy fúvóka törlés rétegváltáskor.A beállítás befolyásolhatja a visszahúzást rétegváltáskor.Kérjük használa a törlés visszahúzáskor beállításokat, ha felügyelni szeretné ezt olyan rétegeken, ahol a törlés kódrészlet működni fog." +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" -#~ msgctxt "print_sequence description" -#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -#~ msgstr "Beállíthatjuk, hogy az összes modellt egy rétegben, egyszerre nyomtassa, vagy egyesével, egymás után nyomtatódjanak ki. Ha egymás után nyomtatódnak, akkor a modellek teljes egészében kinyomtatódnak, majd ez után lép át a következő modellre. Azonban ez csak akkor hasznáható, ha a modellek megfelelő távolságra helyezkednek el egymástól, és a fej nem tud beleütközni egy már kész modellbe.Továbbá arra is ügyelni kell, hogy az X/Y kinematikai rendszer (kereszttengelyek)magasságánál alacsonyabbak legyenek a modellek." +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "" -#~ msgctxt "spaghetti_infill_stepped description" -#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." -#~ msgstr "A spagetti kitöltést lépésenként végezze, vagy egyszerre, a nyomtatás végén extrudálja a töltőszálat. (beleömleszti, össze-vissza)" +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "" -#~ msgctxt "wipe_hop_enable label" -#~ msgid "Wipe Z Hop When Retracted" -#~ msgstr "Törlési Z emelés visszahúzáskor" +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "" -#~ msgctxt "wireframe_enabled label" -#~ msgid "Wire Printing" -#~ msgstr "Huzalváz nyomtatás" +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "" -#~ msgctxt "blackmagic description" -#~ msgid "category_blackmagic" -#~ msgstr "fekete mágia kategória" +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "" -#~ msgctxt "meshfix description" -#~ msgid "category_fixes" -#~ msgstr "korrekció kategóriák" +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "" -#~ msgctxt "experimental description" -#~ msgid "experimental!" -#~ msgstr "ezek még kísérleti stádiumban lévő funkciók!" +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "" diff --git a/resources/i18n/hu_HU/gradual_flow_settings.def.json.po b/resources/i18n/hu_HU/gradual_flow_settings.def.json.po deleted file mode 100644 index 56b299bfef0..00000000000 --- a/resources/i18n/hu_HU/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,54 +0,0 @@ -# -msgid "" -msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" -"PO-Revision-Date: 2023-11-24 12:51+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Gradual flow max acceleration" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximum acceleration for gradual flow changes" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimum speed for gradual flow changes for the first layer" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Reset flow duration" diff --git a/resources/i18n/it_IT/fdmprinter.def.json.po b/resources/i18n/it_IT/fdmprinter.def.json.po index c43f854923d..4565e30aa9f 100644 --- a/resources/i18n/it_IT/fdmprinter.def.json.po +++ b/resources/i18n/it_IT/fdmprinter.def.json.po @@ -5488,82 +5488,42 @@ msgctxt "travel description" msgid "travel" msgstr "spostamenti" -#~ msgctxt "support_bottom_distance description" -#~ msgid "Distance from the print to the bottom of the support." -#~ msgstr "È la distanza tra la stampa e la parte inferiore del supporto." +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Durata di ciascuna fase nella modifica del flusso graduale" -#~ msgctxt "support_z_distance description" -#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -#~ msgstr "È la distanza dalla parte superiore/inferiore della struttura di supporto alla stampa. Questa distanza fornisce lo spazio per rimuovere i supporti dopo aver stampato il modello. Questo valore viene arrotondato per eccesso a un multiplo dell’altezza strato." +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Abilita le modifiche del flusso graduale. Se abilitate, il flusso viene gradualmente aumentato/diminuito rispetto al flusso target. Questa impostazione è utile per le stampanti con un tubo bowden in cui il flusso non viene immediatamente modificato all'avvio/all'arresto del motore dell'estrusore." -#~ msgctxt "gradual_flow_discretisation_step_size description" -#~ msgid "Duration of each step in the gradual flow change" -#~ msgstr "Durata di ciascuna fase nella modifica del flusso graduale" +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Per ogni corsa più lunga di questo valore, il flusso di materiale viene reimpostato al flusso target dei percorsi" -#~ msgctxt "gradual_flow_enabled description" -#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -#~ msgstr "Abilita le modifiche del flusso graduale. Se abilitate, il flusso viene gradualmente aumentato/diminuito rispetto al flusso target. Questa impostazione è utile per le stampanti con un tubo bowden in cui il flusso non viene immediatamente modificato all'avvio/all'arresto del motore dell'estrusore." +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Dimensione della fase di discretizzazione del flusso graduale" -#~ msgctxt "reset_flow_duration description" -#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -#~ msgstr "Per ogni corsa più lunga di questo valore, il flusso di materiale viene reimpostato al flusso target dei percorsi" +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Flusso graduale abilitato" -#~ msgctxt "gradual_flow_discretisation_step_size label" -#~ msgid "Gradual flow discretisation step size" -#~ msgstr "Dimensione della fase di discretizzazione del flusso graduale" +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Accelerazione max del flusso graduale" -#~ msgctxt "gradual_flow_enabled label" -#~ msgid "Gradual flow enabled" -#~ msgstr "Flusso graduale abilitato" +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Accelerazione del flusso max del livello iniziale" -#~ msgctxt "max_flow_acceleration label" -#~ msgid "Gradual flow max acceleration" -#~ msgstr "Accelerazione max del flusso graduale" +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Accelerazione massima per modifiche di flusso graduale" -#~ msgctxt "layer_0_max_flow_acceleration label" -#~ msgid "Initial layer max flow acceleration" -#~ msgstr "Accelerazione del flusso max del livello iniziale" +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Velocità minima per le modifiche del flusso graduale per il primo livello" -#~ msgctxt "max_flow_acceleration description" -#~ msgid "Maximum acceleration for gradual flow changes" -#~ msgstr "Accelerazione massima per modifiche di flusso graduale" - -#~ msgctxt "layer_0_max_flow_acceleration description" -#~ msgid "Minimum speed for gradual flow changes for the first layer" -#~ msgstr "Velocità minima per le modifiche del flusso graduale per il primo livello" - -#~ msgctxt "prime_tower_base_curve_magnitude label" -#~ msgid "Prime Tower Base Curve Magnitude" -#~ msgstr "Magnitudo della Curva della Base della Torre di Primerizzazione" - -#~ msgctxt "prime_tower_brim_enable label" -#~ msgid "Prime Tower Brim" -#~ msgstr "Brim torre di innesco" - -#~ msgctxt "prime_tower_brim_enable description" -#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -#~ msgstr "Le torri di innesco potrebbero richiedere un'adesione supplementare fornita da un bordo (brim), anche se il modello non lo prevede. Attualmente non può essere utilizzato con il tipo di adesione 'Raft'." - -#~ msgctxt "prime_tower_brim_enable description" -#~ msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -#~ msgstr "Le torri di primerizzazione potrebbero necessitare di un'adesione extra fornita da un bordo o radeau, anche se il modello non lo richiede." - -#~ msgctxt "reset_flow_duration label" -#~ msgid "Reset flow duration" -#~ msgstr "Reimposta durata flusso" - -#~ msgctxt "prime_tower_base_height description" -#~ msgid "The height of the prime tower base." -#~ msgstr "L'altezza della base della torre di primerizzazione." - -#~ msgctxt "prime_tower_base_curve_magnitude description" -#~ msgid "The magnitude factor used for the curve of the prime tower foot." -#~ msgstr "Il fattore di magnitudo usato per la curva del piede della torre di primerizzazione." - -#~ msgctxt "material_print_temperature_layer_0 description" -#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -#~ msgstr "Indica la temperatura usata per la stampa del primo strato. Impostare a 0 per disabilitare la manipolazione speciale dello strato iniziale." - -#~ msgctxt "prime_tower_base_size description" -#~ msgid "The width of the prime tower base." -#~ msgstr "La larghezza della base della torre di primerizzazione." +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reimposta durata flusso" \ No newline at end of file diff --git a/resources/i18n/it_IT/gradual_flow_settings.def.json.po b/resources/i18n/it_IT/gradual_flow_settings.def.json.po deleted file mode 100644 index cd45dd3ab74..00000000000 --- a/resources/i18n/it_IT/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,54 +0,0 @@ -# -msgid "" -msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" -"PO-Revision-Date: 2023-11-24 12:51+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Durata di ciascuna fase nella modifica del flusso graduale" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Abilita le modifiche del flusso graduale. Se abilitate, il flusso viene gradualmente aumentato/diminuito rispetto al flusso target. Questa impostazione è utile per le stampanti con un tubo bowden in cui il flusso non viene immediatamente modificato all'avvio/all'arresto del motore dell'estrusore." - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Per ogni corsa più lunga di questo valore, il flusso di materiale viene reimpostato al flusso target dei percorsi" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Dimensione della fase di discretizzazione del flusso graduale" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Flusso graduale abilitato" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Accelerazione max del flusso graduale" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Accelerazione del flusso max del livello iniziale" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Accelerazione massima per modifiche di flusso graduale" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Velocità minima per le modifiche del flusso graduale per il primo livello" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Reimposta durata flusso" diff --git a/resources/i18n/ja_JP/fdmprinter.def.json.po b/resources/i18n/ja_JP/fdmprinter.def.json.po index e3aee14cbfb..8e473e72ae7 100644 --- a/resources/i18n/ja_JP/fdmprinter.def.json.po +++ b/resources/i18n/ja_JP/fdmprinter.def.json.po @@ -5492,82 +5492,42 @@ msgctxt "travel description" msgid "travel" msgstr "移動" -#~ msgctxt "support_bottom_distance description" -#~ msgid "Distance from the print to the bottom of the support." -#~ msgstr "印刷物とサポート材底部までの距離。" +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "段階的なフローの変化におけるステップごとの時間" -#~ msgctxt "support_z_distance description" -#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -#~ msgstr "サポート材のトップ/ボトム部分と印刷物との距離。この幅がプリント後のサポート材を除去する隙間を作ります。値は積層ピッチの倍数にて計算されます。" +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "段階的なフローの変化を有効にできます。有効にすると、フローは目標フローまで段階的に増減します。これは、押し出しモーターの始動/停止時にフローがすぐに変化しないボーデンチューブを備えたプリンターに便利です。" -#~ msgctxt "gradual_flow_discretisation_step_size description" -#~ msgid "Duration of each step in the gradual flow change" -#~ msgstr "段階的なフローの変化におけるステップごとの時間" +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "この値より長い移動の場合、素材フローは目標フローにリセットされます。" -#~ msgctxt "gradual_flow_enabled description" -#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -#~ msgstr "段階的なフローの変化を有効にできます。有効にすると、フローは目標フローまで段階的に増減します。これは、押し出しモーターの始動/停止時にフローがすぐに変化しないボーデンチューブを備えたプリンターに便利です。" +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "段階的なフローの離散化ステップのサイズ" -#~ msgctxt "reset_flow_duration description" -#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -#~ msgstr "この値より長い移動の場合、素材フローは目標フローにリセットされます。" +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "段階的なフローが有効" -#~ msgctxt "gradual_flow_discretisation_step_size label" -#~ msgid "Gradual flow discretisation step size" -#~ msgstr "段階的なフローの離散化ステップのサイズ" +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "段階的なフローの最大加速度" -#~ msgctxt "gradual_flow_enabled label" -#~ msgid "Gradual flow enabled" -#~ msgstr "段階的なフローが有効" +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "初期層の最大フロー加速度" -#~ msgctxt "max_flow_acceleration label" -#~ msgid "Gradual flow max acceleration" -#~ msgstr "段階的なフローの最大加速度" +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "フローを段階的に変化させるための最大加速度" -#~ msgctxt "layer_0_max_flow_acceleration label" -#~ msgid "Initial layer max flow acceleration" -#~ msgstr "初期層の最大フロー加速度" +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "第1層のフローを段階的に変化させるための最低速度" -#~ msgctxt "max_flow_acceleration description" -#~ msgid "Maximum acceleration for gradual flow changes" -#~ msgstr "フローを段階的に変化させるための最大加速度" - -#~ msgctxt "layer_0_max_flow_acceleration description" -#~ msgid "Minimum speed for gradual flow changes for the first layer" -#~ msgstr "第1層のフローを段階的に変化させるための最低速度" - -#~ msgctxt "prime_tower_base_curve_magnitude label" -#~ msgid "Prime Tower Base Curve Magnitude" -#~ msgstr "プライムタワーベースカーブの大きさ" - -#~ msgctxt "prime_tower_brim_enable label" -#~ msgid "Prime Tower Brim" -#~ msgstr "プライムタワーブリム" - -#~ msgctxt "prime_tower_brim_enable description" -#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -#~ msgstr "モデルがない場合でも、プライムタワーには、ブリムによって与えられる追加の付着が必要なことがあります。現在は「ラフト」密着型では使用できません。" - -#~ msgctxt "prime_tower_brim_enable description" -#~ msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -#~ msgstr "プライムタワーはモデルでは不要でも、ブリムやラフトによる追加の接着が必要かもしれません。" - -#~ msgctxt "reset_flow_duration label" -#~ msgid "Reset flow duration" -#~ msgstr "フロー期間をリセット" - -#~ msgctxt "prime_tower_base_height description" -#~ msgid "The height of the prime tower base." -#~ msgstr "プライムタワーベースの高さです。" - -#~ msgctxt "prime_tower_base_curve_magnitude description" -#~ msgid "The magnitude factor used for the curve of the prime tower foot." -#~ msgstr "プライムタワーの足のカーブに使用される倍率係数です。" - -#~ msgctxt "material_print_temperature_layer_0 description" -#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -#~ msgstr "最初のレイヤーを印刷する温度。初期レイヤーのみ特別設定が必要ない場合は 0 に設定します。" - -#~ msgctxt "prime_tower_base_size description" -#~ msgid "The width of the prime tower base." -#~ msgstr "プライムタワーベースの幅です。" +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "フロー期間をリセット" \ No newline at end of file diff --git a/resources/i18n/ja_JP/gradual_flow_settings.def.json.po b/resources/i18n/ja_JP/gradual_flow_settings.def.json.po deleted file mode 100644 index 926683a8464..00000000000 --- a/resources/i18n/ja_JP/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,54 +0,0 @@ -# -msgid "" -msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" -"PO-Revision-Date: 2023-11-24 12:51+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "段階的なフローの変化におけるステップごとの時間" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "段階的なフローの変化を有効にできます。有効にすると、フローは目標フローまで段階的に増減します。これは、押し出しモーターの始動/停止時にフローがすぐに変化しないボーデンチューブを備えたプリンターに便利です。" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "この値より長い移動の場合、素材フローは目標フローにリセットされます。" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "段階的なフローの離散化ステップのサイズ" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "段階的なフローが有効" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "段階的なフローの最大加速度" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "初期層の最大フロー加速度" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "フローを段階的に変化させるための最大加速度" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "第1層のフローを段階的に変化させるための最低速度" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "フロー期間をリセット" diff --git a/resources/i18n/ko_KR/fdmprinter.def.json.po b/resources/i18n/ko_KR/fdmprinter.def.json.po index f240c9dbbd5..7e2974dd37d 100644 --- a/resources/i18n/ko_KR/fdmprinter.def.json.po +++ b/resources/i18n/ko_KR/fdmprinter.def.json.po @@ -5488,82 +5488,42 @@ msgctxt "travel description" msgid "travel" msgstr "이동" -#~ msgctxt "support_bottom_distance description" -#~ msgid "Distance from the print to the bottom of the support." -#~ msgstr "출력물에서 서포트의 바닥까지의 거리." +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "점진적 흐름 변화의 각 단계 지속 시간" -#~ msgctxt "support_z_distance description" -#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -#~ msgstr "서포트 구조의 위/아래에서 프린팅까지의 거리. 이 틈새는 모형 프린팅 후 서포트를 제거하기 위한 공간을 제공합니다. 이 값은 레이어 높이의 배수로 반올림됩니다." +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "점진적 흐름 변경을 활성화합니다. 활성화하면 흐름이 목표 흐름까지 점진적으로 증가/감소됩니다. 이는 압출기 모터가 시작/정지될 때 흐름이 즉시 변경되지 않는 보우덴 튜브가 있는 프린터에 유용합니다." -#~ msgctxt "gradual_flow_discretisation_step_size description" -#~ msgid "Duration of each step in the gradual flow change" -#~ msgstr "점진적 흐름 변화의 각 단계 지속 시간" +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "이 값보다 긴 이동에 대해서는 재료 흐름이 경로 목표 흐름으로 재설정됩니다" -#~ msgctxt "gradual_flow_enabled description" -#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -#~ msgstr "점진적 흐름 변경을 활성화합니다. 활성화하면 흐름이 목표 흐름까지 점진적으로 증가/감소됩니다. 이는 압출기 모터가 시작/정지될 때 흐름이 즉시 변경되지 않는 보우덴 튜브가 있는 프린터에 유용합니다." +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "점진적 흐름 이산화 단계 크기" -#~ msgctxt "reset_flow_duration description" -#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -#~ msgstr "이 값보다 긴 이동에 대해서는 재료 흐름이 경로 목표 흐름으로 재설정됩니다" +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "점진적 흐름 활성화" -#~ msgctxt "gradual_flow_discretisation_step_size label" -#~ msgid "Gradual flow discretisation step size" -#~ msgstr "점진적 흐름 이산화 단계 크기" +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "점진적 흐름 최대 가속도" -#~ msgctxt "gradual_flow_enabled label" -#~ msgid "Gradual flow enabled" -#~ msgstr "점진적 흐름 활성화" +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "초기 레이어 최대 흐름 가속도" -#~ msgctxt "max_flow_acceleration label" -#~ msgid "Gradual flow max acceleration" -#~ msgstr "점진적 흐름 최대 가속도" +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "점진적 흐름 변경에 대한 최대 가속도" -#~ msgctxt "layer_0_max_flow_acceleration label" -#~ msgid "Initial layer max flow acceleration" -#~ msgstr "초기 레이어 최대 흐름 가속도" +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "첫 번째 레이어의 점진적인 흐름 변화를 위한 최소 속도" -#~ msgctxt "max_flow_acceleration description" -#~ msgid "Maximum acceleration for gradual flow changes" -#~ msgstr "점진적 흐름 변경에 대한 최대 가속도" - -#~ msgctxt "layer_0_max_flow_acceleration description" -#~ msgid "Minimum speed for gradual flow changes for the first layer" -#~ msgstr "첫 번째 레이어의 점진적인 흐름 변화를 위한 최소 속도" - -#~ msgctxt "prime_tower_base_curve_magnitude label" -#~ msgid "Prime Tower Base Curve Magnitude" -#~ msgstr "프라임 타워 베이스 커브 크기" - -#~ msgctxt "prime_tower_brim_enable label" -#~ msgid "Prime Tower Brim" -#~ msgstr "프라임 타워 브림" - -#~ msgctxt "prime_tower_brim_enable description" -#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -#~ msgstr "프라임 타워는 모델이 제공하지 않더라도 브림이 제공하는 추가 접착이 필요할 수 있습니다. 현재 '래프트' 접착 유형을 사용할 수 없습니다." - -#~ msgctxt "prime_tower_brim_enable description" -#~ msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -#~ msgstr "모델이 필요하지 않더라도 프라임 타워는 브림이나 래프트에 의한 추가 접착이 필요할 수 있습니다." - -#~ msgctxt "reset_flow_duration label" -#~ msgid "Reset flow duration" -#~ msgstr "흐름 지속 시간 재설정" - -#~ msgctxt "prime_tower_base_height description" -#~ msgid "The height of the prime tower base." -#~ msgstr "프라임 타워 베이스의 높이입니다." - -#~ msgctxt "prime_tower_base_curve_magnitude description" -#~ msgid "The magnitude factor used for the curve of the prime tower foot." -#~ msgstr "프라임 타워 발의 곡선을 위한 크기 계수입니다." - -#~ msgctxt "material_print_temperature_layer_0 description" -#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -#~ msgstr "첫 번째 레이어에 프린팅에 사용되는 온도입니다. 초기 레이어의 특수 처리를 사용하지 않으려면 0으로 설정합니다." - -#~ msgctxt "prime_tower_base_size description" -#~ msgid "The width of the prime tower base." -#~ msgstr "프라임 타워 베이스의 폭입니다." +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "흐름 지속 시간 재설정" diff --git a/resources/i18n/ko_KR/gradual_flow_settings.def.json.po b/resources/i18n/ko_KR/gradual_flow_settings.def.json.po deleted file mode 100644 index a484eae6777..00000000000 --- a/resources/i18n/ko_KR/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,54 +0,0 @@ -# -msgid "" -msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" -"PO-Revision-Date: 2023-11-24 12:51+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "점진적 흐름 변화의 각 단계 지속 시간" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "점진적 흐름 변경을 활성화합니다. 활성화하면 흐름이 목표 흐름까지 점진적으로 증가/감소됩니다. 이는 압출기 모터가 시작/정지될 때 흐름이 즉시 변경되지 않는 보우덴 튜브가 있는 프린터에 유용합니다." - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "이 값보다 긴 이동에 대해서는 재료 흐름이 경로 목표 흐름으로 재설정됩니다" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "점진적 흐름 이산화 단계 크기" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "점진적 흐름 활성화" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "점진적 흐름 최대 가속도" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "초기 레이어 최대 흐름 가속도" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "점진적 흐름 변경에 대한 최대 가속도" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "첫 번째 레이어의 점진적인 흐름 변화를 위한 최소 속도" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "흐름 지속 시간 재설정" diff --git a/resources/i18n/nl_NL/fdmprinter.def.json.po b/resources/i18n/nl_NL/fdmprinter.def.json.po index 9a3e2db8ba7..7d6b32e0ac4 100644 --- a/resources/i18n/nl_NL/fdmprinter.def.json.po +++ b/resources/i18n/nl_NL/fdmprinter.def.json.po @@ -5488,82 +5488,42 @@ msgctxt "travel description" msgid "travel" msgstr "beweging" -#~ msgctxt "support_bottom_distance description" -#~ msgid "Distance from the print to the bottom of the support." -#~ msgstr "De afstand van de print tot de onderkant van de supportstructuur." +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duur van elke stap in de geleidelijke flowverandering" -#~ msgctxt "support_z_distance description" -#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -#~ msgstr "De afstand tussen de boven-/onderkant van de supportstructuur en de print. Deze afstand zorgt ervoor dat de supportstructuren na het printen van het model kunnen worden verwijderd. De waarde wordt naar boven afgerond op een veelvoud van de laaghoogte." +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Geleidelijke veranderingen in flow inschakelen. Indien ingeschakeld, wordt de flow geleidelijk verhoogd/verlaagd tot de doelflow. Dit is handig voor printers met een bowdenbuis waarbij de flow niet onmiddellijk verandert wanneer de extrudermotor start/stopt." -#~ msgctxt "gradual_flow_discretisation_step_size description" -#~ msgid "Duration of each step in the gradual flow change" -#~ msgstr "Duur van elke stap in de geleidelijke flowverandering" +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Voor elke verplaatsing die langer is dan deze waarde, wordt de materiaalflow teruggezet op de doelflow van de paden." -#~ msgctxt "gradual_flow_enabled description" -#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -#~ msgstr "Geleidelijke veranderingen in flow inschakelen. Indien ingeschakeld, wordt de flow geleidelijk verhoogd/verlaagd tot de doelflow. Dit is handig voor printers met een bowdenbuis waarbij de flow niet onmiddellijk verandert wanneer de extrudermotor start/stopt." +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Stapgrootte geleidelijke flowdiscretisatie" -#~ msgctxt "reset_flow_duration description" -#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -#~ msgstr "Voor elke verplaatsing die langer is dan deze waarde, wordt de materiaalflow teruggezet op de doelflow van de paden." +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Geleidelijke flow ingeschakeld" -#~ msgctxt "gradual_flow_discretisation_step_size label" -#~ msgid "Gradual flow discretisation step size" -#~ msgstr "Stapgrootte geleidelijke flowdiscretisatie" +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Max. versnelling geleidelijke flow" -#~ msgctxt "gradual_flow_enabled label" -#~ msgid "Gradual flow enabled" -#~ msgstr "Geleidelijke flow ingeschakeld" +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Maximale flowversnelling in de beginlaag" -#~ msgctxt "max_flow_acceleration label" -#~ msgid "Gradual flow max acceleration" -#~ msgstr "Max. versnelling geleidelijke flow" +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximale versnelling voor geleidelijke flowveranderingen" -#~ msgctxt "layer_0_max_flow_acceleration label" -#~ msgid "Initial layer max flow acceleration" -#~ msgstr "Maximale flowversnelling in de beginlaag" +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimumsnelheid voor geleidelijke flowveranderingen voor de eerste laag" -#~ msgctxt "max_flow_acceleration description" -#~ msgid "Maximum acceleration for gradual flow changes" -#~ msgstr "Maximale versnelling voor geleidelijke flowveranderingen" - -#~ msgctxt "layer_0_max_flow_acceleration description" -#~ msgid "Minimum speed for gradual flow changes for the first layer" -#~ msgstr "Minimumsnelheid voor geleidelijke flowveranderingen voor de eerste laag" - -#~ msgctxt "prime_tower_base_curve_magnitude label" -#~ msgid "Prime Tower Base Curve Magnitude" -#~ msgstr "Krachtmagnitude van de basiscurve van de Primepijler" - -#~ msgctxt "prime_tower_brim_enable label" -#~ msgid "Prime Tower Brim" -#~ msgstr "Brim primepijler" - -#~ msgctxt "prime_tower_brim_enable description" -#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -#~ msgstr "Primepijlers hebben mogelijk de extra hechting van een brim nodig, ook als het model dit niet nodig heeft. Kan momenteel niet worden gebruikt met het hechtingstype 'Raft'." - -#~ msgctxt "prime_tower_brim_enable description" -#~ msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -#~ msgstr "Prime-towers hebben mogelijk de extra hechting nodig die een rand of vlot biedt, zelfs als het model dat niet doet." - -#~ msgctxt "reset_flow_duration label" -#~ msgid "Reset flow duration" -#~ msgstr "Flowduur resetten" - -#~ msgctxt "prime_tower_base_height description" -#~ msgid "The height of the prime tower base." -#~ msgstr "De hoogte van de basis van de Prime Tower." - -#~ msgctxt "prime_tower_base_curve_magnitude description" -#~ msgid "The magnitude factor used for the curve of the prime tower foot." -#~ msgstr "De groottefactor die gebruikt wordt voor de curve van de voet van de Prime Tower." - -#~ msgctxt "material_print_temperature_layer_0 description" -#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -#~ msgstr "De temperatuur waarmee de eerste laag wordt geprint. Stel deze optie in op 0 om speciale bewerkingen voor de eerste laag uit te schakelen." - -#~ msgctxt "prime_tower_base_size description" -#~ msgid "The width of the prime tower base." -#~ msgstr "De breedte van de basis van de Prime Tower." +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Flowduur resetten" diff --git a/resources/i18n/nl_NL/gradual_flow_settings.def.json.po b/resources/i18n/nl_NL/gradual_flow_settings.def.json.po deleted file mode 100644 index 868a6304d1c..00000000000 --- a/resources/i18n/nl_NL/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,54 +0,0 @@ -# -msgid "" -msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" -"PO-Revision-Date: 2023-11-24 12:51+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duur van elke stap in de geleidelijke flowverandering" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Geleidelijke veranderingen in flow inschakelen. Indien ingeschakeld, wordt de flow geleidelijk verhoogd/verlaagd tot de doelflow. Dit is handig voor printers met een bowdenbuis waarbij de flow niet onmiddellijk verandert wanneer de extrudermotor start/stopt." - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Voor elke verplaatsing die langer is dan deze waarde, wordt de materiaalflow teruggezet op de doelflow van de paden." - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Stapgrootte geleidelijke flowdiscretisatie" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Geleidelijke flow ingeschakeld" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Max. versnelling geleidelijke flow" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Maximale flowversnelling in de beginlaag" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximale versnelling voor geleidelijke flowveranderingen" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimumsnelheid voor geleidelijke flowveranderingen voor de eerste laag" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Flowduur resetten" diff --git a/resources/i18n/pl_PL/fdmprinter.def.json.po b/resources/i18n/pl_PL/fdmprinter.def.json.po index 70959794f3c..b772775d09d 100644 --- a/resources/i18n/pl_PL/fdmprinter.def.json.po +++ b/resources/i18n/pl_PL/fdmprinter.def.json.po @@ -5492,1126 +5492,42 @@ msgctxt "travel description" msgid "travel" msgstr "ruch jałowy" -#~ msgctxt "machine_head_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps excluded)." -#~ msgstr "Sylwetka 2D głowicy drukującej (bez nasadki wentylatora)." - -#~ msgctxt "machine_head_with_fans_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps included)." -#~ msgstr "Sylwetka 2D głowicy drukującej (z nasadką wentylatora)." - -#~ msgctxt "spaghetti_infill_extra_volume description" -#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." -#~ msgstr "Korekcja objętości materiału ekstrudowanego za każdym razem, kiedy drukowane jest wypełn. spaghetti." - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive Layers Threshold" -#~ msgstr "Próg zmiany warstw" - -#~ msgctxt "adaptive_layer_height_variation label" -#~ msgid "Adaptive layers maximum variation" -#~ msgstr "Maks. zmiana zmiennych warstw" - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive layers threshold" -#~ msgstr "Opóźnienie zmiennych warstw" - -#~ msgctxt "adaptive_layer_height_variation_step label" -#~ msgid "Adaptive layers variation step size" -#~ msgstr "Krok zmian zmiennych warstw" - -#~ msgctxt "spaghetti_flow description" -#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." -#~ msgstr "Dostosowuje gęstość wypełnienia spaghetti. Należy zauważyć, że Gęstość Wypełnienia kontroluje tylko rozstaw linii wzoru napełniania, a nie ilość wytłaczania wypełnienia spaghetti." - -#~ msgctxt "dual_pre_wipe description" -#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -#~ msgstr "Po przełączeniu ekstrudera, wytrzyj materiał wyciekający z dyszy na pierwszą drukowaną część. powoduje to bezpieczny, powolny ruch wycierania w miejscu gdzie wyciekający materiał nie spowoduje dużej szkody dla powierzchni modelu." - -#~ msgctxt "cross_infill_apply_pockets_alternatingly label" -#~ msgid "Alternate Cross 3D Pockets" -#~ msgstr "Zamieniaj Kieszenie Krzyża 3D" - -#~ msgctxt "skin_alternate_rotation label" -#~ msgid "Alternate Skin Rotation" -#~ msgstr "Zmień Kierunek Skóry" - -#~ msgctxt "skin_alternate_rotation description" -#~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." -#~ msgstr "Zmień kierunek, w jakim drukowane są górne/dolne warstwy. Zazwyczaj są one drukowane na ukos. Ustawienie to dodaje kierunek \"tylko X\" i \"tylko Y\"." - -#~ msgctxt "prime_tower_purge_volume description" -#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -#~ msgstr "Ilość filamentu, która jest czyszczona podczas wycierania na wieży czyszczącej. Czyszczenie jest użyteczne do kompensowania utraty filamentu przez wypływanie z nieużywanej dyszy." - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" -#~ msgid "Apply the extruder offset to the coordinate system." -#~ msgstr "Zastosuj przesunięcie głowicy względem." - -#~ msgctxt "material_flow_dependent_temperature label" -#~ msgid "Auto Temperature" -#~ msgstr "Auto Temperatura" - -#~ msgctxt "bridge_wall_max_overhang label" -#~ msgid "Bridge Wall Max Overhang" -#~ msgstr "Maks. Nachylenie Ściany Mostu" - -#~ msgctxt "machine_shape label" -#~ msgid "Build plate shape" -#~ msgstr "Kształt stołu" - -#~ msgctxt "center_object label" -#~ msgid "Center object" -#~ msgstr "Wyśrodkuj Obiekt" - -#~ msgctxt "material_flow_dependent_temperature description" -#~ msgid "Change the temperature for each layer automatically with the average flow speed of that layer." -#~ msgstr "Zmień temperaturę każdej warstwy automatycznie przy średniej prędkości przepływu tej warstwy." - -#~ msgctxt "prime_tower_circular label" -#~ msgid "Circular Prime Tower" -#~ msgstr "Okrągła Wieża Czyszcząca" - -#~ msgctxt "retraction_combing description" -#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." -#~ msgstr "Kombinowanie utrzymuje dyszę w już zadrukowanych obszarach podczas ruchu jałowego. Powoduje to nieco dłuższe ruchy jałowe, ale zmniejsza potrzebę retrakcji. Jeśli kombinowanie jest wyłączone, materiał się cofa, a dysza przemieszcza się w linii prostej do następnego punktu. Można też unikać kombinowania na górnych/dolnych obszarach powłoki, a także kombinować tylko wewnątrz wypełnienia. Opcja \"Wewnątrz Wypełnienia\" wymusza takie samo zachowanie, jak opcja \"Nie w Powłoce\" we wcześniejszych wydaniach Cura." - -#~ msgctxt "retraction_combing description" -#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." -#~ msgstr "Kombinowanie utrzymuje dyszę w już zadrukowanych obszarach podczas ruchu jałowego. Powoduje to nieco dłuższe ruchy jałowe, ale zmniejsza potrzebę retrakcji Jeśli kombinowanie jest wyłączone, materiał się cofa, a dysza przemieszcza się w linii prostej do następnego punktu. Można też unikać kombinowania na górnych/dolnych obszarach skóry przez kombinowanie tylko wewnątrz wypełnienia." - -#~ msgctxt "wireframe_strategy option compensate" -#~ msgid "Compensate" -#~ msgstr "Kompensuj" - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" -#~ msgid "Compensate Inner Wall Overlaps" -#~ msgstr "Komp. Wew. Nakład. się Ścian" - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" -#~ msgid "Compensate Outer Wall Overlaps" -#~ msgstr "Komp. Zew. Nakład. się Ścian" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled label" -#~ msgid "Compensate Wall Overlaps" -#~ msgstr "Kompensuj Nakładanie się Ścian" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled description" -#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." -#~ msgstr "Kompensuje przepływ dla części, których ściana jest drukowana kiedy jest już w tym miejscu ściana." - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" -#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." -#~ msgstr "Kompensuje przepływ dla części, których wewnętrzna ściana jest drukowana kiedy jest już w tym miejscu ściana." - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" -#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." -#~ msgstr "Kompensuje przepływ dla części, których zewnętrzna ściana jest drukowana kiedy jest już w tym miejscu ściana." - -#~ msgctxt "infill_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Koncentryczny 3D" - -#~ msgctxt "support_bottom_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Koncentryczny 3D" - -#~ msgctxt "support_interface_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Koncentryczny 3D" - -#~ msgctxt "support_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Koncentryczny 3D" - -#~ msgctxt "support_roof_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Koncentryczny 3D" - -#~ msgctxt "zig_zaggify_infill description" -#~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -#~ msgstr "Łączy końce gdzie wypełnienie spotyka się z wewn. ścianą za pomocą linii, które podążają za kształtem wewn. ściany. Włączenie tej opcji może spowodować lepsze łączenie się wypełnienia ze ścianą i redukuje efekty związane z jakością na pionowych ścianach. Wyłączenie tej opcji redukuje ilość użytego materiału." - -#~ msgctxt "connect_skin_polygons description" -#~ msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happend midway over infill this feature can reduce the top surface quality." -#~ msgstr "Łączy górne/dolne ścieżki powłoki, gdy są one prowadzone obok siebie. Przy wzorze koncentrycznym, załączenie tego ustawienia znacznie zredukuje czas ruchów jałowych, ale ze względu na to, że połączenie może nastąpić w połowie drogi ponad wypełnieniem, ta fukncja może pogorszyć jakość górnej powierzchni." - -#~ msgctxt "z_seam_corner description" -#~ msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner." -#~ msgstr "Kontroluje, czy rogi na zewn. linii modelu wpływają na pozycję szwu. Brak oznacza, że rogi nie mają wpływu na pozycję szwu. Ukryj Szew powoduje, że szew będzie się bardziej pojawiał na wewn. rogach. Pokaż Szew powoduje, że szew będzie się bardziej pojawiał na zewn. rogach. Ukryj lub Pokaż Szew powoduje, że szew będzie się bardziej pojawiał na wewn. lub zewn. rogach." - -#~ msgctxt "machine_nozzle_cool_down_speed label" -#~ msgid "Cool down speed" -#~ msgstr "Prędkość Chłodzenia" - -#~ msgctxt "wireframe_top_jump description" -#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." -#~ msgstr "Tworzy mały węzeł u góry linii w górę, dzięki czemu kolejna pozioma warstwa ma większą szansę połączenia się z nią. Dotyczy tylko Drukowania Drutu." - -#~ msgctxt "wireframe_bottom_delay description" -#~ msgid "Delay time after a downward move. Only applies to Wire Printing." -#~ msgstr "Opóźnienie po pochyłym ruchu. Dotyczy tylko Drukowania Drutu." - -#~ msgctxt "wireframe_top_delay description" -#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." -#~ msgstr "Opóźnienie czasu po wzniesieniu w górę, tak aby linia idąca w górę mogła zesztywniać. Dotyczy tylko Drukowania Drutu." - -#~ msgctxt "wireframe_flat_delay description" -#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." -#~ msgstr "Czas opóźnienia pomiędzy dwoma poziomymi segmentami. Dzięki takiemu opóźnieniu może powstać lepsza przyczepność do poprzedniej warstwy, przy zbyt dużym opóźnieniu może jednak prowadzić do opadania. Odnosi się tylko do Drukowania Drutu." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Określa, która siatka wypełnienia znajduje się wewnątrz wypełnienia innej siatki wypełnienia. Siatka wypełniająca o wyższym porządku modyfikuje wypełnienie siatki wypełnień o niższym porządku i normalnych siatek." - -#~ msgctxt "machine_disallowed_areas label" -#~ msgid "Disallowed areas" -#~ msgstr "Zakazane obszary" - -#~ msgctxt "wireframe_nozzle_clearance description" -#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." -#~ msgstr "Odległość między dyszą a liniami skierowanymi w dół. Większe prześwity powodują ukośne linie skierowanie w dół o mniej stromym kącie, co z kolei skutkuje mniejszymi połączeniami z następną warstwą. Dotyczy tylko Drukowania Drutu." - -#~ msgctxt "support_bottom_distance description" -#~ msgid "Distance from the print to the bottom of the support." -#~ msgstr "Odległość od wydruku do dolnej części podpory." - -#~ msgctxt "support_z_distance description" -#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -#~ msgstr "Odległość od góry/dołu podpory do wydruku. Ta luka zapewnia luz, aby usunąć wsporniki po wydrukowaniu modelu. Ta wartość jest zaokrąglana do wielokrotności wysokości warstwy." - -#~ msgctxt "wireframe_up_half_speed description" -#~ msgid "" -#~ "Distance of an upward move which is extruded with half speed.\n" -#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -#~ msgstr "" -#~ "Dystans przemieszczania się ku górze, który jest wytłaczany z połową szybkości.\n" -#~ "Może to prowadzić do lepszej przyczepności do wcześniejszych warstw, bez zbytniego podgrzewania materiału na tych warstwach. Odnosi się tylko do Drukowania Drutu." - -#~ msgctxt "support_xy_distance_overhang description" -#~ msgid "Distance of the support structure from the overhang in the X/Y directions. " -#~ msgstr "Odległość podpory od zwisu w kierunkach X/Y " - -#~ msgctxt "wireframe_fall_down description" -#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Odległość o jaką spada materiału przez wytłaczanie w górę. Długość ta jest kompensowana. Odnosi się tylko do Drukowania Drutu." - -#~ msgctxt "wireframe_drag_along description" -#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Odległość, z jaką materiał wytłoczony z góry jest przeciągany równolegle do dolnej ekstruzji. Ta odległość jest kompensowana. Dotyczy tylko Drukowania Drutu." - -#~ msgctxt "machine_end_gcode label" -#~ msgid "End GCode" -#~ msgstr "Końcowy G-code" - -#~ msgctxt "speed_equalize_flow_enabled label" -#~ msgid "Equalize Filament Flow" -#~ msgstr "Zrówn. Przepływ Filamentu" - -#~ msgctxt "fill_perimeter_gaps option everywhere" -#~ msgid "Everywhere" -#~ msgstr "Wszędzie" - -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Bottom Skins Into Infill" -#~ msgstr "Rozszerz Dolną Powłokę Do Wypełn." - -#~ msgctxt "expand_skins_into_infill label" -#~ msgid "Expand Skins Into Infill" -#~ msgstr "Rozszerz Powłokę Do Wypełn." - -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Top Skins Into Infill" -#~ msgstr "Rozszerz Górną Powłokę Do Wypełn." - -#~ msgctxt "expand_skins_into_infill description" -#~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin." -#~ msgstr "Rozszerz obszary powłoki na górze i/lub dole powierzchni płaskich. Domyślnie, powłoka kończy się na linii ściany otaczające wypełnienie, chociaż może to prowadzić do powstawania dziur kiedy gęstość wypełnienia jest niska. Ustawienie to rozciąga powłokę poza linię ściany, dzięki czemu wypełnienie na kolejnej warstwie osiada na powłoce." - -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Rozszerz dolną powłokę (obszary, pod którym jest powietrze) tak, aby zostały zakotwiczone o warstwy wypełniające powyżej i poniżej." - -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand the top skin areas (areas with air above) so that they support infill above." -#~ msgstr "Rozszerz górne obszary ścian (obszary, które mają ponad sobą powietrze) tak, aby wspomagały wypełnienie powyżej." - -#~ msgctxt "support_conical_enabled description" -#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." -#~ msgstr "Opcja eksperymentalna: W dolnym obszarze podpory powinny być mniejsze niż na zwisie." - -#~ msgctxt "machine_filament_park_distance label" -#~ msgid "Filament Park Distance" -#~ msgstr "Odległość Park. Filamentu" - -#~ msgctxt "fill_perimeter_gaps label" -#~ msgid "Fill Gaps Between Walls" -#~ msgstr "Wypełnij Szczeliny Między Ścianami" - -#~ msgctxt "fill_perimeter_gaps description" -#~ msgid "Fills the gaps between walls where no walls fit." -#~ msgstr "Wypełnia szczeliny pomiędzy ściany gdzie żadna ściana nie pasuje." - -#~ msgctxt "filter_out_tiny_gaps label" -#~ msgid "Filter Out Tiny Gaps" -#~ msgstr "Filtruj Małe Luki" - -#~ msgctxt "filter_out_tiny_gaps description" -#~ msgid "Filter out tiny gaps to reduce blobs on outside of model." -#~ msgstr "Filtruj małe luki, aby zredukować bloby na zewnątrz modelu." - -#~ msgctxt "small_feature_speed_factor_0 label" -#~ msgid "First Layer Speed" -#~ msgstr "Prędkość pierwszej warstwy" - -#~ msgctxt "wireframe_flow_connection description" -#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." -#~ msgstr "Kompensacja przepływu w górę i w dół. Odnosi się tylko do Drukowania Drutu." - -#~ msgctxt "wireframe_flow_flat description" -#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." -#~ msgstr "Kompensacja przepływu podczas drukowania płaskich linii. Dotyczy tylko Drukowania Drutu." - -#~ msgctxt "prime_tower_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value." -#~ msgstr "Kompensacja przepływu: ilość ekstrudowanego materiału jest mnożona przez tę wartość." - -#~ msgctxt "wireframe_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." -#~ msgstr "Kompensacja przepływu: ilość wytłaczanego materiału jest mnożona przez tę wartość. Odnosi się tylko do Drukowania Drutu." - -#~ msgctxt "flow_rate_extrusion_offset_factor label" -#~ msgid "Flow rate compensation factor" -#~ msgstr "Współczynnik kompensacji przepływu" - -#~ msgctxt "flow_rate_max_extrusion_offset label" -#~ msgid "Flow rate compensation max extrusion offset" -#~ msgstr "Maks. offset ekstruzji do kompensowania przepływu" - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code Flavour" -#~ msgstr "Wersja G-code" - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code flavour" -#~ msgstr "Wersja G-code" - -#~ msgctxt "material_guid description" -#~ msgid "GUID of the material. This is set automatically. " -#~ msgstr "GUID materiału. To jest ustawiana automatycznie " - -#~ msgctxt "gantry_height label" -#~ msgid "Gantry height" -#~ msgstr "Wysokość Suwnicy (Gantry)" - -#~ msgctxt "machine_end_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very end - separated by \n" -#~ "." -#~ msgstr "" -#~ "Polecenia G-code, które są wykonywane na samym końcu - oddzielone za pomocą \n" -#~ "." - -#~ msgctxt "machine_start_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very start - separated by \n" -#~ "." -#~ msgstr "" -#~ "Polecenia G-code, które są wykonywane na samym początku - oddzielone za pomocą \n" -#~ "." - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "Gcode flavour" -#~ msgstr "Wersja G-code" - -#~ msgctxt "support_tree_enable description" -#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." -#~ msgstr "Generuj drzewiaste podpory z gałęziami podpierającymi wydruk. Może to zredukować zużycie materiału i czas wydruku, ale bardzo zwiększa czas cięcia." - -#~ msgctxt "ironing_enabled description" -#~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." -#~ msgstr "Przejedź nad górną powierzchnią dodatkowy raz, ale bez ekstrudowania materiału. Topi to plastyk na górze, co powoduje gładszą powierzchnię." - -#~ msgctxt "machine_heated_bed label" -#~ msgid "Has heated build plate" -#~ msgstr "Posiada podgrzewany stół" - -#~ msgctxt "machine_nozzle_heat_up_speed label" -#~ msgid "Heat up speed" -#~ msgstr "Prędkość nagrzewania" - -#~ msgctxt "machine_heat_zone_length label" -#~ msgid "Heat zone length" -#~ msgstr "Długość strefy cieplnej" - -#~ msgctxt "infill_hollow label" -#~ msgid "Hollow Out Objects" -#~ msgstr "Wydrąż Model" - -#~ msgctxt "support_tree_branch_distance description" -#~ msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." -#~ msgstr "W jakich odległościach powinny znajdować się gałęzie kiedy dotykają modelu. Mały dystans spowoduje więcej punktów podparcia, co da lepsze nawisy, ale utrudni usuwanie podpór." - -#~ msgctxt "machine_steps_per_mm_e description" -#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -#~ msgstr "Ile kroków silnika krokowego będzie skutkowało ekstruzją 1mm." - -#~ msgctxt "slicing_tolerance description" -#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." -#~ msgstr "Jak ciąć warstwy z ukośnymi powierzchniami. Obszary warstwy mogą być generowane na podstawie miejsca gdzie środek warstwy przecina się z powierzchnią (Środek). Alternatywnie każda warstwa może mieć obszary, które wpadają do środka objętości poprzez wysokość warstwy (Wyłączne) lub warstwa ma obszary, które wpadają do środka w każdym miejscu na warstwie (Włącznie). Wyłącznie zatrzymuje najwięcej detali, Włącznie powoduje najlepsze dopasowanie, a Środek wymaga najmniej czasu do przetworzenia." - -#~ msgctxt "wall_min_flow_retract description" -#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." -#~ msgstr "Gdy załączone, retrakcja jest używana zamiast kombinowanego ruchu jałowego, który zastępuje ściankę, której przepływ jest mniejszy od minimalnego." - -#~ msgctxt "skin_no_small_gaps_heuristic label" -#~ msgid "Ignore Small Z Gaps" -#~ msgstr "Zignoruj Małe Luki Z" - -#~ msgctxt "start_layers_at_same_position description" -#~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time." -#~ msgstr "Na każdej warstwie rozpocznij drukowanie obiektu blisko tego samego punktu, abyśmy nie rozpoczynali nowej warstwy w miejscu gdzie skończyła się poprzednia warstwa. Powoduje to lepsze nawisy i małe elementy, ale wydłuża czas druku." - -#~ msgctxt "material_bed_temp_prepend label" -#~ msgid "Include build plate temperature" -#~ msgstr "Należy uwzględnić temperaturę stołu" - -#~ msgctxt "material_print_temp_prepend label" -#~ msgid "Include material temperatures" -#~ msgstr "Uwzględnij temperaturę materiału" - -#~ msgctxt "infill_mesh_order label" -#~ msgid "Infill Mesh Order" -#~ msgstr "Porządek Siatki Wypełnienia" - -#~ msgctxt "z_offset_layer_0 label" -#~ msgid "Initial Layer Z Offset" -#~ msgstr "Przesunięcie w Osi Z Warstwy Początk." - -#~ msgctxt "wall_x_extruder_nr label" -#~ msgid "Inner Walls Extruder" -#~ msgstr "Esktruder Wewn. Ściany" - -#~ msgctxt "machine_center_is_zero label" -#~ msgid "Is center origin" -#~ msgstr "Począt. na Środku" - -#~ msgctxt "wireframe_strategy option knot" -#~ msgid "Knot" -#~ msgstr "Węzeł" - -#~ msgctxt "limit_support_retractions label" -#~ msgid "Limit Support Retractions" -#~ msgstr "Ogranicz Retrakcje Pomiędzy Podporami" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine Head Polygon" -#~ msgstr "Obszar głowicy drukarki" - -#~ msgctxt "machine_depth label" -#~ msgid "Machine depth" -#~ msgstr "Głębokość Drukarki" - -#~ msgctxt "machine_head_with_fans_polygon label" -#~ msgid "Machine head & Fan polygon" -#~ msgstr "Obszar Głowicy i Wentylatora Drukarki" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine head polygon" -#~ msgstr "Obszar Głowicy Drukarki" - -#~ msgctxt "machine_height label" -#~ msgid "Machine height" -#~ msgstr "Wysokość drukarki" - -#~ msgctxt "machine_width label" -#~ msgid "Machine width" -#~ msgstr "Szerokość drukarki" - -#~ msgctxt "prime_tower_circular description" -#~ msgid "Make the prime tower as a circular shape." -#~ msgstr "Twórz wieżę czyszczącą o okrągłym kształcie." - -#~ msgctxt "machine_max_feedrate_e label" -#~ msgid "Maximum Feedrate" -#~ msgstr "Maksymalna Prędk. Posuwu" - -#~ msgctxt "speed_equalize_flow_max label" -#~ msgid "Maximum Speed for Flow Equalization" -#~ msgstr "Maks. Prędk. dla Zrówn. Przepływu" - -#~ msgctxt "max_feedrate_z_override label" -#~ msgid "Maximum Z Speed" -#~ msgstr "Maksymalna Prędk. Z" - -#~ msgctxt "max_extrusion_before_wipe description" -#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated." -#~ msgstr "Maksymalna ilość materiału, który można wytłoczyć przed zainicjowaniem kolejnego czyszczenia dyszy." - -#~ msgctxt "speed_equalize_flow_max description" -#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -#~ msgstr "Maksymalna prędkość drukowania podczas ustawiania prędkości druku w celu zrównoważenia przepływu." - -#~ msgctxt "mesh_position_x label" -#~ msgid "Mesh position x" -#~ msgstr "Pozycja siatki X" - -#~ msgctxt "mesh_position_y label" -#~ msgid "Mesh position y" -#~ msgstr "Pozycja siatki Y" - -#~ msgctxt "mesh_position_z label" -#~ msgid "Mesh position z" -#~ msgstr "Pozycja siatki Z" - -#~ msgctxt "support_minimal_diameter label" -#~ msgid "Minimum Diameter" -#~ msgstr "Minimalna Średnica" - -#~ msgctxt "wall_min_flow label" -#~ msgid "Minimum Wall Flow" -#~ msgstr "Minimalny Przepływ Dla Ścianek" - -#~ msgctxt "wall_min_flow description" -#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." -#~ msgstr "Minimalny dopuszczalny przepływ procentowy dla linii ścianki. Kompensacja nakładania się ścianek redukuje przepływ, gdy dana ścianka znajduje się blisko wydrukowanej już ścianki. Ścianki, których przepływ powinien być mniejszy, niż ta wartość, będą zastąpione ruchami jałowymi. Aby używać tego ustawienia należy załączyć kompensację nakładających się ścianek oraz drukowanie ścianek zewnętrznych przed wewnętrznymi." - -#~ msgctxt "minimum_interface_area description" -#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "Minimalny rozmiar obszaru dla interfejsu podpór. Obszary, które mają powierzchnię mniejszą od tej wartości, nie będą generowane." - -#~ msgctxt "minimum_bottom_area description" -#~ msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "Minimalny rozmiar obszaru dla podłoża podpór. Obszary, które mają powierzchnię mniejszą od tej wartości, nie będą generowane." - -#~ msgctxt "minimum_roof_area description" -#~ msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "Minimalny rozmiar obszaru dla dachu podpór. Obszary, które mają powierzchnię mniejszą od tej wartości, nie będą generowane." - -#~ msgctxt "support_minimal_diameter description" -#~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -#~ msgstr "Minimalna średnica w kierunkach X/Y o małej powierzchni, który jest wspierana przez specjalną wieżę wspierającą." - -#~ msgctxt "retraction_combing option noskin" -#~ msgid "No Skin" -#~ msgstr "Bez skóry" - -#~ msgctxt "meshfix_keep_open_polygons description" -#~ msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper GCode." -#~ msgstr "Zwykle Cura próbuje zszywać małe dziury w siatce i usunąć części warstwy z dużymi otworami. Włączenie tej opcji powoduje zostawienie tych części, których nie można zszywać. Ta opcja powinna być używana jako ostatnia deska ratunku, gdy wszystko inne nie dostarczy właściwego G-code." - -#~ msgctxt "fill_perimeter_gaps option nowhere" -#~ msgid "Nowhere" -#~ msgstr "Nigdzie" - -#~ msgctxt "machine_nozzle_expansion_angle label" -#~ msgid "Nozzle angle" -#~ msgstr "Kąt dyszy" - -#~ msgctxt "machine_nozzle_head_distance label" -#~ msgid "Nozzle length" -#~ msgstr "Długość dyszy" - -#~ msgctxt "extruders_enabled_count label" -#~ msgid "Number of Extruders that are enabled" -#~ msgstr "Liczba Ekstruderów, które są dostępne" - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords label" -#~ msgid "Offset With Extruder" -#~ msgstr "Przesunięcie Ekstrudera" - -#~ msgctxt "limit_support_retractions description" -#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure." -#~ msgstr "Unikaj retrakcji podczas poruszania się od podpory do podpory w linii prostej. Załączenie tej funkcji spowoduje skrócenie czasu druku, lecz może prowadzić do nadmiernego nitkowania wewnątrz struktur podporowych." - -#~ msgctxt "limit_support_retractions description" -#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." -#~ msgstr "Pomiń retrakcję, przechodząc od podpory do podpory w linii prostej. Włączenie tego ustawienia oszczędza czas drukowania, ale może prowadzić do nadmiernego ciągnięcia filamentu w strukturze nośnej." - -#~ msgctxt "cross_infill_apply_pockets_alternatingly description" -#~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." -#~ msgstr "Twórz kieszenie tylko w połowie czterostronnych skrzyżowań we wzorze krzyż 3D i zamieniaj pozycję kieszonek pomiędzy wysokościami gdzie wzór dotyka samego siebie." - -#~ msgctxt "optimize_wall_printing_order description" -#~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization." -#~ msgstr "Optymalizuj kolejność, według której drukowane są ściany, aby zredukować ilość retrakcji i długości ruchu jałowego. Większość części powinno na tym zyskać, ale niektóre mogą drukować się dłużej, dlatego prosimy o porównaniu czasu drukowania z i bez włączonej opcji." - -#~ msgctxt "support_infill_angles description" -#~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." -#~ msgstr "Orientacja wzoru wypełnienia dla podpór. Wzór podpory jest obracany w płaszczyźnie poziomej." - -#~ msgctxt "outer_inset_first label" -#~ msgid "Outer Before Inner Walls" -#~ msgstr "Zew. Ściany Przed Wew" - -#~ msgctxt "machine_nozzle_tip_outer_diameter label" -#~ msgid "Outer nozzle diameter" -#~ msgstr "Zew. średnica dyszy" - -#~ msgctxt "wireframe_straight_before_down description" -#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." -#~ msgstr "Odsetek ukośnych linii ułożonych w dół, który jest przykryty poziomą linią. Może to uniemożliwić zwisanie górnej krawędzi linii ułożonejw górę. Dotyczy tylko Drukowania Drutu." - -#~ msgctxt "wall_min_flow_retract label" -#~ msgid "Prefer Retract" -#~ msgstr "Preferuj Retrakcję" - -#~ msgctxt "prime_tower_brim_enable label" -#~ msgid "Prime Tower Brim" -#~ msgstr "Obrys wieży czyszczącej" - -#~ msgctxt "prime_tower_purge_volume label" -#~ msgid "Prime Tower Purge Volume" -#~ msgstr "Pole Czyszczące Wieży Czyszcz." - -#~ msgctxt "prime_tower_wall_thickness label" -#~ msgid "Prime Tower Thickness" -#~ msgstr "Grubość Wieży Czyszcz." - -#~ msgctxt "prime_tower_brim_enable description" -#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -#~ msgstr "Wieże czyszczące mogą potrzebować dodatkowej adhezji zapewnionej przez obrys, nawet jeśli model nie potrzebuje. Nie można używać z typem przyczepności „tratwa”." - -#~ msgctxt "wireframe_enabled description" -#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." -#~ msgstr "Wydrukuj tylko zewnętrzną powierzchnię o słabej strukturze tkaniny, drukując \"w cienkim powietrzu\". Jest to realizowane poprzez poziomy wydruk konturów modelu w określonych przedziałach Z, które są połączone przez linie skierowane w górę i w dół po porzekątnej." - -#~ msgctxt "spaghetti_infill_enabled description" -#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." -#~ msgstr "Drukowanie wypełnienia tak często, aby filament zwisał chaotycznie wewnątrz przedmiotu. Zmniejsza to czas drukowania, ale zachowanie jest raczej nieprzewidywalne." - -#~ msgctxt "speed_equalize_flow_enabled description" -#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." -#~ msgstr "Wydrukuj cieńsze niż normalne linie szybciej, tak aby ilość materiału wytłaczanego na sekundę pozostała taka sama. Cienkie części modelu mogą wymagać drukowania linii o mniejszej szerokości linii niż podane w ustawieniach. To ustawienie kontroluje zmiany prędkości dla takich linii." - -#~ msgctxt "outer_inset_first description" -#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." -#~ msgstr "Drukuje ściany w kolejności od zewnątrz do wewnątrz, gdy jest włączona. Może to poprawić dokładność wymiarów w modelach X i Y przy użyciu plastiku o wysokiej lepkości, takiego jak ABS; może jednak zmniejszyć jakość druku zewnętrznego, zwłaszcza na zwisach." - -#~ msgctxt "raft_base_line_spacing label" -#~ msgid "Raft Line Spacing" -#~ msgstr "Rozstaw Linii Tratwy" - -#~ msgctxt "infill_hollow description" -#~ msgid "Remove all infill and make the inside of the object eligible for support." -#~ msgstr "Usuń całe wypełnienie i spowoduj, aby środek modelu był wybieralny dla podpór." - -#~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -#~ msgid "RepRap (Marlin/Sprinter)" -#~ msgstr "RepRap (Marlin/Sprinter)" - -#~ msgctxt "machine_gcode_flavor option RepRap (Volumatric)" -#~ msgid "RepRap (Volumetric)" -#~ msgstr "RepRap (Objętościowy)" - -#~ msgctxt "support_tree_collision_resolution description" -#~ msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." -#~ msgstr "Rozdzielczość przeliczania kolizji, aby unikać zderzeń z modelem. Ustawienie niższej wartości spowoduje bardziej dokładne drzewa, które rzadziej zawodzą, ale zwiększa to drastycznie czas cięcia." - -#~ msgctxt "wireframe_strategy option retract" -#~ msgid "Retract" -#~ msgstr "Wycofanie" - -#~ msgctxt "retraction_enable description" -#~ msgid "Retract the filament when the nozzle is moving over a non-printed area. " -#~ msgstr "Cofnij filament, gdy dysza porusza się nad obszarem, w którym nie ma drukować. " - -#~ msgctxt "wipe_retraction_prime_speed label" -#~ msgid "Retraction Prime Speed" -#~ msgstr "Prędkość retrakcji Czyszczenia" - -#~ msgctxt "shell label" -#~ msgid "Shell" -#~ msgstr "Powłoka" - -#~ msgctxt "machine_show_variants label" -#~ msgid "Show machine variants" -#~ msgstr "Pokaż warianty drukarki" - -#~ msgctxt "material_shrinkage_percentage label" -#~ msgid "Shrinkage Ratio" -#~ msgstr "Współczynnik Skurczu" - -#~ msgctxt "material_shrinkage_percentage description" -#~ msgid "Shrinkage ratio in percentage." -#~ msgstr "Współczynnik skurczu w procentach." - -#~ msgctxt "support_skip_some_zags label" -#~ msgid "Skip Some ZigZags Connections" -#~ msgstr "Pomijaj Niektóre Połączenia Zygzak" - -#~ msgctxt "support_zag_skip_count description" -#~ msgid "Skip one in every N connection lines to make the support structure easier to break." -#~ msgstr "Pomijaj jedno na każde N linii połączeń, aby struktury podpór łatwiej się odrywały." - -#~ msgctxt "support_skip_some_zags description" -#~ msgid "Skip some ZigZags connections to make the support structure easier to break." -#~ msgstr "Pomijaj niektóre połączenia Zygzak, aby struktura podpór łatwiej się odrywała." - -#~ msgctxt "small_feature_speed_factor_0 description" -#~ msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy." -#~ msgstr "Małe elementy na pierwszej warstwie zostaną wydrukowane z podanym procentem ich normalnej prędkości drukowania. Wolniejsze drukowanie może pomóc w zachowaniu dokładności i dokładności." - -#~ msgctxt "small_feature_speed_factor description" -#~ msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy." -#~ msgstr "Małe obiekty zostaną wydrukowane z podanym procentem ich normalnej prędkości drukowania. Wolniejsze drukowanie może pomóc w zachowaniu dokładności." - -#~ msgctxt "smooth_spiralized_contours description" -#~ msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z-seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -#~ msgstr "Wygładź spiralny kontur, aby zmniejszyć widoczność szwu Z (szew Z powinien być ledwo widoczny na wydruku, ale nadal będzie widoczny w widoku warstwy). Należy pamiętać, że wygładzanie będzie miało tendencję do rozmycia drobnych szczegółów powierzchni." - -#~ msgctxt "spaghetti_flow label" -#~ msgid "Spaghetti Flow" -#~ msgstr "Przepływ Spaghetti" - -#~ msgctxt "spaghetti_infill_enabled label" -#~ msgid "Spaghetti Infill" -#~ msgstr "Wypełnienie Spaghetti" - -#~ msgctxt "spaghetti_infill_extra_volume label" -#~ msgid "Spaghetti Infill Extra Volume" -#~ msgstr "Ekstra Objętość Wypełn. Spaghetti" - -#~ msgctxt "spaghetti_max_height label" -#~ msgid "Spaghetti Infill Maximum Height" -#~ msgstr "Maks. Wys. Wypełn. Spaghetti" - -#~ msgctxt "spaghetti_infill_stepped label" -#~ msgid "Spaghetti Infill Stepping" -#~ msgstr "Krokowe Wypełn. Spaghetti" - -#~ msgctxt "spaghetti_inset label" -#~ msgid "Spaghetti Inset" -#~ msgstr "Wkład Spaghetti" - -#~ msgctxt "spaghetti_max_infill_angle label" -#~ msgid "Spaghetti Maximum Infill Angle" -#~ msgstr "Maks. Kąt Wypełn. Spaghetti" - -#~ msgctxt "wireframe_printspeed description" -#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." -#~ msgstr "Prędkość, z jaką porusza się dysza podczas wytłaczania materiału. Dotyczy tylko Drukowania Drutu." - -#~ msgctxt "wireframe_printspeed_down description" -#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." -#~ msgstr "Prędkość drukowania ukośnej linii w dół. Odnosi się tylko do Drukowania Drutu." - -#~ msgctxt "wireframe_printspeed_up description" -#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." -#~ msgstr "Szybkość drukowania linii do góry „w powietrzu”. Odnosi się tylko do Drukowania Drutu." - -#~ msgctxt "wireframe_printspeed_bottom description" -#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." -#~ msgstr "Prędkość drukowania pierwszej warstwy, która jest jedyną warstwą dotykającą stołu. Dotyczy tylko Drukowania Drutu." - -#~ msgctxt "wireframe_printspeed_flat description" -#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." -#~ msgstr "Prędkość drukowania poziomych konturów modelu. Odnosi się tylko do Drukowania Drutu." - -#~ msgctxt "machine_start_gcode label" -#~ msgid "Start GCode" -#~ msgstr "Początk. G-code" - -#~ msgctxt "start_layers_at_same_position label" -#~ msgid "Start Layers with the Same Part" -#~ msgstr "Rozp. Warstwy w tym Samym Punkcie" - -#~ msgctxt "wireframe_strategy description" -#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." -#~ msgstr "Strategia zapewniająca podłączenie dwóch kolejnych warstw w każdym punkcie połączenia. Wycofanie pozwala na utwardzenie linii idących w górę we właściwej pozycji, ale może powodować \"mielenie\" filamentu. Węzeł może być wykonany na końcu linii do góry, aby zwiększyć szanse na połączenie z nią i pozostawić dobrą linię; może to jednak wymagać wolnych prędkości druku. Inną strategią jest wyrównanie opadania górnej krawędzi. Jednak linie nie zawsze spadają zgodnie z przewidywaniami." - -#~ msgctxt "infill_pattern option tetrahedral" -#~ msgid "Tetrahedral" -#~ msgstr "Czworościenny" - -#~ msgctxt "infill_overlap description" -#~ msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -#~ msgstr "Ilość nałożenia pomiędzy wypełnieniem a ścianami. Nieznaczne nałożenie pozwala ściśle łączyć się z wypełnieniem." - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "Wartość nałożenia pomiędzy skórą a ścianami jako procent szerokości linii. Delikatne nałożenie pozwala na dobre połączenie ścian ze skórą. Jest to procent średniej szerokości linii skóry i wewnętrznej ściany." - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "Ilość nałożenia pomiędzy skórą a ścianami w procentach szerokości linii skóry. Delikatne nałożenie pozawala na lepsze połączenie się ścian ze skórą. Jest to procent średniej szerokości linii skóry i wewnętrznej ściany." - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "Ilość nakładania się skóry i ścian. Lekkie nałożenie pozwala ściśle łączyć się ze skórą." - -#~ msgctxt "skin_overlap_mm description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "Ilość nakładania się skóry i ścian. Lekkie nałożenie pozwala ściśle łączyć się ze skórą." - -#~ msgctxt "switch_extruder_retraction_amount description" -#~ msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone." -#~ msgstr "Długość retrakcji: Ustaw na 0, aby wyłączyć retrkację. To powinno ogólnie być takie samo jak długość strefy grzewczej." - -#~ msgctxt "support_tree_angle description" -#~ msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -#~ msgstr "Kąt gałęzi. Użyj mniejszego kąta, aby były bardziej pionowe i stabilne. Użyj większego kąta, aby mieć większy zasięg." - -#~ msgctxt "wireframe_roof_inset description" -#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." -#~ msgstr "Odległość jaka zostaje pokryta podczas tworzenia połączenia z wewnętrznego konturu dachu. Odnosi się tylko do Drukowania Drutu." - -#~ msgctxt "wireframe_roof_drag_along description" -#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Długość końcówki wewnętrznej linii, która jest rozciągana podczas powrotu do zewnętrznej linii dachu. Trasa ta jest kompensowana. Odnosi się tylko do Drukowania Drutu." - -#~ msgctxt "expand_skins_expand_distance description" -#~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient." -#~ msgstr "Odległość na jaką powłoki zostają rozszerzone do wypełnienia. Domyślna odległość wystarcza, aby pokonać szczelinę między liniami wypełnienia i nie dopuścić do powstania dziur, gdzie spotyka się z powłoką, gdy gęstość wypełnienia jest niska. Mniejsza odległość będzie często wystarczająca." - -#~ msgctxt "wireframe_roof_fall_down description" -#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Odległość, na jaką opadają linie dachu wydrukowane \"w powietrzu\" podczas druku. Ta odległość jest kompensowana. Dotyczy tylko Drukowania Drutu." - -#~ msgctxt "z_offset_layer_0 description" -#~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly." -#~ msgstr "Ekstruder jest przesuwany z normalnej wysokości pierwszej warstwy o tą wartość. Może być dodatnia (uniesienie) lub ujemna (obniżenie). Niektóre typy filamentu przyklejają się lepiej do stołu jeżeli ekstruder jest lekko uniesiony." - -#~ msgctxt "wireframe_height description" -#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." -#~ msgstr "Wysokość linii w górę i po przekątnej w dół między dwiema częściami poziomymi. Określa ona całkowitą gęstość struktury siatki. Dotyczy tylko Drukowania Drutu." - -#~ msgctxt "skirt_gap description" -#~ msgid "" -#~ "The horizontal distance between the skirt and the first layer of the print.\n" -#~ "This is the minimum distance, multiple skirt lines will extend outwards from this distance." -#~ msgstr "" -#~ "Pozioma odległość między obwódką a pierwszą warstwą nadruku.\n" -#~ "Jest to o minimalnej odległości. Z tej odległości linie będą nakładane w kierunku zewnętrznym." - -#~ msgctxt "infill_offset_x description" -#~ msgid "The infill pattern is offset this distance along the X axis." -#~ msgstr "Wypełnienie jest przesunięte o taką odległość wzdłuż osi X." - -#~ msgctxt "infill_offset_y description" -#~ msgid "The infill pattern is offset this distance along the Y axis." -#~ msgstr "Wypełnienie jest przesunięte o taką odległość wzdłuż osi Y." - -#~ msgctxt "adaptive_layer_height_variation description" -#~ msgid "The maximum allowed height different from the base layer height in mm." -#~ msgstr "Maksymalna dozwolona różnica wysokości od podstawowej wysokości warstwy w mm." - -#~ msgctxt "bridge_wall_max_overhang description" -#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -#~ msgstr "Maksymalna dozwolona szerokość obszaru powietrza pod linią ściany zanim zostanie wydrukowana ściana używająca ustawień mostu. Wyrażona w procentach szerokości linii ściany. Kiedy przestrzeń powietrza jest szersza od tego, linia ściany jest drukowana używając ustawień mostu. W przeciwnym wypadku linia ściany jest drukowana z normalnymi ustawieniami. Tym niższa wartość, tym większa szansa, że linie ściany na nawisach będą drukowane z ustawieniami mostu." - -#~ msgctxt "spaghetti_max_infill_angle description" -#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." -#~ msgstr "Maksymalny kąt w odniesieniu do Osi Z wewnątrz wydruku dla obszarów, które mają być wypełnione wypełnieniem spaghetti. Obniżenie tej wartości powoduje, że więcej części modelu, które są pod kątem, będzie wypełnianych na każdej warstwie." - -#~ msgctxt "meshfix_maximum_deviation description" -#~ msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller." -#~ msgstr "Maksymalne odchylenie dozwolone przy zmniejszaniu rozdzielczości dla ustawienia „Maksymalna rozdzielczość”. Jeśli to zwiększysz, wydruk będzie mniej dokładny, ale G-Code będzie mniejszy." - -#~ msgctxt "support_join_distance description" -#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one." -#~ msgstr "Maksymalna odległość między podporami w kierunkach X/Y. Gdy oddzielne struktury są bliżej siebie niż ta wartość, struktury łączą się w jedną." - -#~ msgctxt "flow_rate_max_extrusion_offset description" -#~ msgid "The maximum distance in mm to compensate." -#~ msgstr "Maksymalna odległość w mm do skompensowania." - -#~ msgctxt "spaghetti_max_height description" -#~ msgid "The maximum height of inside space which can be combined and filled from the top." -#~ msgstr "Maksymalna wysokość przestrzeni wewnętrznej, którą można łączyć i napełniać od góry." - -#~ msgctxt "max_feedrate_z_override description" -#~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed." -#~ msgstr "Maksymalna prędkość przesuwu stołu. Ustawienie na zero powoduje, że druk używa domyślnych ustawień oprogramowania dla maksymalnej prędkości z." - -#~ msgctxt "mold_width description" -#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." -#~ msgstr "Minimalna odległość między zewnętrzną stroną formy i zewnętrzną stroną modelu." - -#~ msgctxt "flow_rate_extrusion_offset_factor description" -#~ msgid "The multiplication factor for the flow rate -> distance translation." -#~ msgstr "Współczynnik mnożący przepływu -> tłumaczenie odległości." - -#~ msgctxt "support_tree_wall_count description" -#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "Liczba ścian gałęzi drzewiastej podpory. Grubsze ściany drukują się dłużej , ale nie odpadają tak łatwo." - -#~ msgctxt "spaghetti_inset description" -#~ msgid "The offset from the walls from where the spaghetti infill will be printed." -#~ msgstr "Odsunięcie od ścian, z których będzie drukowane wypełnienie spaghetti." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, cubic, octet, quarter cubic and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Wzór materiału wypełniającego wydruk. Linie i zygzaki zmieniają kierunek na przemiennych warstwach, redukując koszty materiału. Kratka, trójkąty, sześcienne, ośmiościenne, ćwierć sześcienny i koncentryczny wzór są drukowane w pełni na każdej warstwie. Sześcienne, ćwierć sześcienne i czworościenne wypełnienie zmienia się co każdą warstwę, aby zapewnić równy rozkład siły w każdym kierunku." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Wzór materiału wypełniającego. Linia i zygzakowy wypełnienie zmienia kierunek na przemiennych warstwach zmniejszając koszt materiału. Wzory siatki, trójkątne, sześcienne, czworościenne i koncentryczne są w pełni drukowane na każdej warstwie. Wypełnienie sześcienne i czworościenne zmienia się co każdą warstwę, aby zapewnić równe rozłożenie siły w każdym kierunku." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Wzór materiału wypełniającego wydruk. Linie i zygzaki zmieniają kierunek na przemiennych warstwach, redukując koszty materiału. Kratka, trójkąty, tri-sześciokąt, sześcienne, ośmiościenne, ćwierć sześcienny i koncentryczny wzór są drukowane w pełni na każdej warstwie. Sześcienne, ćwierć sześcienne i czworościenne wypełnienie zmienia się co każdą warstwę, aby zapewnić równy rozkład siły w każdym kierunku." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Wzorzec wypełnienia wydruku. Kierunek zamiany linii i zygzaka na alternatywnych warstwach, zmniejsza koszty materiałów. Wzorzec siatki, trójkąta, sześcianu, oktetu, ćwiartki sześciennej, krzyżyka i koncentryczny, są w pełni drukowane na każdej warstwie. Gyroid, sześcian, świartka sześcienna i oktet zmienia się z każdą warstwą, aby zapewnić bardziej równomierny rozkład sił w każdym kierunku." - -#~ msgctxt "speed_layer_0 description" -#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." -#~ msgstr "Prędkość dla pierwszej warstwy. Niższa wartość jest zalecane w celu poprawy przyczepności do stołu." - -#~ msgctxt "build_volume_temperature description" -#~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted." -#~ msgstr "Temperatura stosowana dla obszaru roboczego. Jeżeli jest ustawione 0, temperatura nie będzie ustawiona." - -#~ msgctxt "material_print_temperature_layer_0 description" -#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -#~ msgstr "Temperatura stosowana do drukowania pierwszej warstwy. Ustaw wartość 0, aby wyłączyć szczególną obsługę początkowej warstwy." - -#~ msgctxt "material_bed_temperature_layer_0 description" -#~ msgid "The temperature used for the heated build plate at the first layer." -#~ msgstr "Temperatura stosowana przy podgrzewanym stole na pierwszej warstwie." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." -#~ msgstr "Temperatura stosowana dla podgrzewanej platformy roboczej. Jeżeli jest ustawione 0, temperatura stołu nie będzie ustawiona." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print." -#~ msgstr "Temperatura stosowana przy podgrzewanym stole. Jeśli jest to 0, stół nie rozgrzeje się dla tego wydruku." - -#~ msgctxt "prime_tower_wall_thickness description" -#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -#~ msgstr "Grubość pustej wieży czyszczącej. Grubość większa niż połowa minimalnej objętości wieży czyszczącej spowoduje, że wieża będzie miała dużą gęstość." - -#~ msgctxt "wall_thickness description" -#~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -#~ msgstr "Grubość ścian zewnętrznych w kierunku poziomym. Ta wartość podzielona przez szerokość linii ściany określa liczbę ścian." - -#~ msgctxt "support_tree_wall_thickness description" -#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "Grubość ścian gałęzi drzewiastej podpory. Grubsze ściany drukują się dłużej, ale nie odpadają tak łatwo." - -#~ msgctxt "machine_gcode_flavor description" -#~ msgid "The type of gcode to be generated." -#~ msgstr "Typ G-code jaki ma być generowany." - -#~ msgctxt "raft_smoothing description" -#~ msgid "This setting control how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -#~ msgstr "To ustawienie kontroluje jak bardzo wewn. narożniki zewn. linii tratwy są zaokrąglone. Wewn. narożniki są zaokrąglone do pół-okręgów o promieniu równym wartości podanej w tym miejscu. To ustawienie usuwa też otwory w zewn. linii tratwy, które są mniejsze niż taki okrąg." - -#~ msgctxt "adaptive_layer_height_threshold description" -#~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." -#~ msgstr "Opóźnienie w wyborze, czy użyć mniejszej warstwy, czy nie. Ta liczba jest porównywana do najbardziej stromego nachylenia na warstwie." - -#~ msgctxt "wireframe_roof_outer_delay description" -#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." -#~ msgstr "Czas, który poświęca się na zewnętrznych obrzeżach otworu, który ma stać się dachem. Dłuższy czas może spowodować lepsze połączenie. Odnosi się tylko do Drukowania Drutu." - -#~ msgctxt "max_skin_angle_for_expansion description" -#~ msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal, while an angle of 90° is vertical." -#~ msgstr "Górne i/lub dolne powierzchnie przedmiotu o kącie większym niż to ustawienie nie będą miały rozszerzonego górnej/dolnej skóry. Pozwala to uniknąć powiększania wąskich ścian, które powstają, gdy powierzchnia modelu ma blisko pionowe nachylenie. Kąt 0 ° jest poziomy, a kąt 90 ° jest pionowy." - -#~ msgctxt "support_tree_enable label" -#~ msgid "Tree Support" -#~ msgstr "Drzewne Podpory" - -#~ msgctxt "support_tree_angle label" -#~ msgid "Tree Support Branch Angle" -#~ msgstr "Kąt Gałęzi Drzewnej Podpory" - -#~ msgctxt "support_tree_branch_diameter label" -#~ msgid "Tree Support Branch Diameter" -#~ msgstr "Średnica Gałęzi Drzewiastej Podpory" - -#~ msgctxt "support_tree_branch_diameter_angle label" -#~ msgid "Tree Support Branch Diameter Angle" -#~ msgstr "Kąt Średnicy Gałęzi Drzewiastej Podpory" - -#~ msgctxt "support_tree_branch_distance label" -#~ msgid "Tree Support Branch Distance" -#~ msgstr "Odległość Gałęzi Drzewiastej Podpory" - -#~ msgctxt "support_tree_collision_resolution label" -#~ msgid "Tree Support Collision Resolution" -#~ msgstr "Rozdzielczość Kolizji Drzewiastej Podpory" - -#~ msgctxt "support_tree_wall_count label" -#~ msgid "Tree Support Wall Line Count" -#~ msgstr "Liczba Linii Ściany Drzewiastej Podpory" - -#~ msgctxt "support_tree_wall_thickness label" -#~ msgid "Tree Support Wall Thickness" -#~ msgstr "Grubość Ściany Drzewiastej Podpory" - -#~ msgctxt "adaptive_layer_height_enabled label" -#~ msgid "Use adaptive layers" -#~ msgstr "Użyj zmiennych warstw" - -#~ msgctxt "relative_extrusion description" -#~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any Gcode script is output." -#~ msgstr "Używaj ekstruzji względnej zamiast bezwzględnej. Używanie względnych kroków osi E powoduje łatwiejszy postprocessing Gcodu. Jednakże nie jest to wspierane przez wszystkie drukarki i może powodować lekkie zakłamania w ilości podawanego materiału w porównaniu do kroków bezwzględnych. Niezależnie od tego ustawienia, tryb ekstruzji będzie zawsze ustawiany jako bezwzględny przez wyjściem jakiegokolwiek skryptu Gcode" - -#~ msgctxt "wireframe_bottom_delay label" -#~ msgid "WP Bottom Delay" -#~ msgstr "DD Dolne Opóźnienie" - -#~ msgctxt "wireframe_printspeed_bottom label" -#~ msgid "WP Bottom Printing Speed" -#~ msgstr "DD Prędk. Drukowania Dołu" - -#~ msgctxt "wireframe_flow_connection label" -#~ msgid "WP Connection Flow" -#~ msgstr "DD Przepływ Połączenia" - -#~ msgctxt "wireframe_height label" -#~ msgid "WP Connection Height" -#~ msgstr "DD Wysokość Połączenia" - -#~ msgctxt "wireframe_printspeed_down label" -#~ msgid "WP Downward Printing Speed" -#~ msgstr "DD Prędkość Drukowania w Dół" - -#~ msgctxt "wireframe_drag_along label" -#~ msgid "WP Drag Along" -#~ msgstr "DD Przeciągnij Wzdłuż" - -#~ msgctxt "wireframe_up_half_speed label" -#~ msgid "WP Ease Upward" -#~ msgstr "DD Łatwe Wzniesienie" - -#~ msgctxt "wireframe_fall_down label" -#~ msgid "WP Fall Down" -#~ msgstr "DD Spadek" - -#~ msgctxt "wireframe_flat_delay label" -#~ msgid "WP Flat Delay" -#~ msgstr "DD Płaskie Opóźnienie" - -#~ msgctxt "wireframe_flow_flat label" -#~ msgid "WP Flat Flow" -#~ msgstr "DD Płaskie Przepływ" - -#~ msgctxt "wireframe_flow label" -#~ msgid "WP Flow" -#~ msgstr "DD Przepływ" - -#~ msgctxt "wireframe_printspeed_flat label" -#~ msgid "WP Horizontal Printing Speed" -#~ msgstr "DD Prędkość Drukowania Poziomo" - -#~ msgctxt "wireframe_top_jump label" -#~ msgid "WP Knot Size" -#~ msgstr "DD Rozmiar Węzła" - -#~ msgctxt "wireframe_nozzle_clearance label" -#~ msgid "WP Nozzle Clearance" -#~ msgstr "DD Prześwit Dyszy" - -#~ msgctxt "wireframe_roof_drag_along label" -#~ msgid "WP Roof Drag Along" -#~ msgstr "DD Rozciągaj Dach" - -#~ msgctxt "wireframe_roof_fall_down label" -#~ msgid "WP Roof Fall Down" -#~ msgstr "DD Spadek Dachu" - -#~ msgctxt "wireframe_roof_inset label" -#~ msgid "WP Roof Inset Distance" -#~ msgstr "DD Długość Wkładu Dachu" - -#~ msgctxt "wireframe_roof_outer_delay label" -#~ msgid "WP Roof Outer Delay" -#~ msgstr "DD Opóźnienie Zew. Dachu" - -#~ msgctxt "wireframe_printspeed label" -#~ msgid "WP Speed" -#~ msgstr "DD Prędkość" - -#~ msgctxt "wireframe_straight_before_down label" -#~ msgid "WP Straighten Downward Lines" -#~ msgstr "DD Prostuj Linie w Dół" - -#~ msgctxt "wireframe_strategy label" -#~ msgid "WP Strategy" -#~ msgstr "DD Strategia" - -#~ msgctxt "wireframe_top_delay label" -#~ msgid "WP Top Delay" -#~ msgstr "DD Opóźnienie Góry" - -#~ msgctxt "wireframe_printspeed_up label" -#~ msgid "WP Upward Printing Speed" -#~ msgstr "DD Prędkość Drukowania do Góry" - -#~ msgctxt "material_bed_temp_wait label" -#~ msgid "Wait for build plate heatup" -#~ msgstr "Oczekiwanie na ogrzanie stołu" - -#~ msgctxt "material_print_temp_wait label" -#~ msgid "Wait for nozzle heatup" -#~ msgstr "Oczekiwanie na ogrzanie dyszy" - -#~ msgctxt "wall_overhang_angle description" -#~ msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging." -#~ msgstr "Ścianka o większym kącie nawisu niż podany będzie drukowana z użyciem ustawień nawisającej ścianki. Przy wartości 90°, żadna ścianka nie będzie traktowana jako ścianka nawisająca." - -#~ msgctxt "retraction_combing_max_distance description" -#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." -#~ msgstr "Przy wartości niezerowej, kombinowane ruchy jałowe o dystansie większym niż zadany bedą używały retrakcji." - -#~ msgctxt "z_offset_taper_layers description" -#~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print." -#~ msgstr "Kiedy niezerowe, przesunięcie w osi Z jest redukowane do zera w trakcie drukowania takiej ilości warstw. Wartość 0 oznacza, że przesunięcie pozostaje stałe dla wszystkich warstw wydruku." - -#~ msgctxt "skin_no_small_gaps_heuristic description" -#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." -#~ msgstr "Jeśli model ma małe, pionowe szczeliny, to można wykorzystać dodatkowe 5% mocy obliczeniowej do wygenerowania górnej i dolnej skóry w wąskich przestrzeniach. W takim wypadku, wyłącz tę opcję." - -#~ msgctxt "wipe_hop_enable description" -#~ msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -#~ msgstr "Zawsze, gdy następuje retrakcja, stół roboczy jest opuszczany w celu utworzenia luzu między dyszą a drukiem. Zapobiega to uderzeniu dyszy podczas ruchu jałowego, co zmniejsza szanse uderzenia wydruku na stole." - -#~ msgctxt "clean_between_layers description" -#~ msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." -#~ msgstr "Włącza w G-Code wycieranie dyszy między warstwami. Włączenie tego ustawienia może wpłynąć na zachowanie retrakcji przy zmianie warstwy. Użyj ustawień „Czyszczenie przy retrakcji”, aby kontrolować retrakcję na warstwach, na których będzie działał skrypt czyszczenia." - -#~ msgctxt "print_sequence description" -#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -#~ msgstr "Czy drukować wszystkie modele po jednej warstwie, czy poczekać na zakończenie jednego modelu, przed przejściem do następnego. Tryb Jeden na raz jest możliwy, gdy wszystkie modele są oddzielone w taki sposób, aby cała głowica drukująca mogła się poruszać między wszystkimi modelami i są one niższe niż odległość pomiędzy dyszą i osiami X/Y." +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "" -#~ msgctxt "spaghetti_infill_stepped description" -#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." -#~ msgstr "Czy drukować wypełnienie spaghetti krokami, czy ekstrudować filament wypełnienia na końcu wydruku." +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" -#~ msgctxt "dual_pre_wipe label" -#~ msgid "Wipe Nozzle After Switch" -#~ msgstr "Wytrzyj Dyszę po Przełączeniu" +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" -#~ msgctxt "wipe_hop_enable label" -#~ msgid "Wipe Z Hop When Retracted" -#~ msgstr "Czyszczący skok Z jeśli jest retrakcja" +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "" -#~ msgctxt "wireframe_enabled label" -#~ msgid "Wire Printing" -#~ msgstr "Drukowanie Drutu" +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "" -#~ msgctxt "z_offset_taper_layers label" -#~ msgid "Z Offset Taper Layers" -#~ msgstr "Warstwy Zbieżne Przesunięcia Z" +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "" -#~ msgctxt "support_zag_skip_count label" -#~ msgid "ZigZag Connection Skip Count" -#~ msgstr "Ilość Pominięć Połącz. Zygzak" +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "" -#~ msgctxt "blackmagic description" -#~ msgid "category_blackmagic" -#~ msgstr "category_blackmagic" +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "" -#~ msgctxt "meshfix description" -#~ msgid "category_fixes" -#~ msgstr "poprawki_kategorii" +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "" -#~ msgctxt "experimental description" -#~ msgid "experimental!" -#~ msgstr "eksperymentalne!" +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "" diff --git a/resources/i18n/pl_PL/gradual_flow_settings.def.json.po b/resources/i18n/pl_PL/gradual_flow_settings.def.json.po deleted file mode 100644 index 56b299bfef0..00000000000 --- a/resources/i18n/pl_PL/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,54 +0,0 @@ -# -msgid "" -msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" -"PO-Revision-Date: 2023-11-24 12:51+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Gradual flow max acceleration" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximum acceleration for gradual flow changes" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimum speed for gradual flow changes for the first layer" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Reset flow duration" diff --git a/resources/i18n/pt_BR/fdmprinter.def.json.po b/resources/i18n/pt_BR/fdmprinter.def.json.po index 85d6ed8a08f..651837f4589 100644 --- a/resources/i18n/pt_BR/fdmprinter.def.json.po +++ b/resources/i18n/pt_BR/fdmprinter.def.json.po @@ -1,7 +1,7 @@ -# Cura -# Copyright (C) 2022 Ultimaker B.V. -# This file is distributed under the same license as the Cura package. -# +# Cura +# Copyright (C) 2022 Ultimaker B.V. +# This file is distributed under the same license as the Cura package. +# msgid "" msgstr "" "Project-Id-Version: Cura 5.0\n" @@ -5502,1364 +5502,42 @@ msgctxt "travel description" msgid "travel" msgstr "percurso" -#~ msgctxt "machine_head_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps excluded)." -#~ msgstr "Uma silhueta 2D da cabeça de impressão (sem os suportes de ventoinhas)." +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duração de cada passo na alteração de fluxo gradual" -#~ msgctxt "machine_head_with_fans_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps included)." -#~ msgstr "Silhueta da cabeça de impressão com os suportes de ventoinhas inclusos." +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Habilita mudanças graduais de fluxo. Quando habilitado, o fluxo é gradualmente aumentado ou reduzido para o fluxo alvo. Útil para impressoras com tubo bowden onde o fluxo não é imediatamente alterado quando o motor do extrusor inicia ou para." -#~ msgctxt "spaghetti_infill_extra_volume description" -#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." -#~ msgstr "Um termo de correção para ajustar o volume total sendo extrudado a cada vez que se preencher com estilo espaguete." +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Para qualquer movimento mais longo que este valor, o fluxo material é resetado para o fluxo-alvo do percurso." -#~ msgctxt "sub_div_rad_mult description" -#~ msgid "A multiplier on the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to more subdivisions, i.e. more small cubes." -#~ msgstr "Um multiplicador do raio do centro de cada cubo para verificar a borda do modelo, de modo a decidir se este cubo deve ser subdividido. Valores maiores levam a maiores subdivisões, isto é, mais cubos pequenos." +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Tamanho de passo da discretização de fluxo gradual" -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive Layers Threshold" -#~ msgstr "Limite das Camadas Adaptativas" +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Fluxo gradual habilitado" -#~ msgctxt "adaptive_layer_height_variation label" -#~ msgid "Adaptive layers maximum variation" -#~ msgstr "Variação máxima das camadas adaptativas" +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Aceleração máxima do fluxo gradual" -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive layers threshold" -#~ msgstr "Limite das camadas adaptativas" +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Aceleração máxima de fluxo da camada inicial" -#~ msgctxt "adaptive_layer_height_variation_step label" -#~ msgid "Adaptive layers variation step size" -#~ msgstr "Tamanho de passo da variação das camadas adaptativas" +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Aceleração máxima para alterações de fluxo gradual" -#~ msgctxt "wall_add_middle_threshold label" -#~ msgid "Add Middle Line Threshold" -#~ msgstr "Adicionar Limite de Filete Central" +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Velocidade mínima para alterações graduais de fluxo na primeira camada" -#~ msgctxt "support_interface_density description" -#~ msgid "Adjusts the density of the roofs and bottoms of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -#~ msgstr "Ajusta a densidade dos topos e bases das estruturas de suporte. Um valor mais alto resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." - -#~ msgctxt "spaghetti_flow description" -#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." -#~ msgstr "Ajusta a densidade do preenchimento espaguete. Note que a Densidade de Preenchimento controla somente o espaçamento entre linhas do padrão de preenchimento, não a quantidade de extrusão para o preenchimento espaguete." - -#~ msgctxt "dual_pre_wipe description" -#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -#~ msgstr "Depois de trocar extrusores, limpar o material escorrendo do bico na primeira peça impressa. Isso causa um movimento lento de limpeza do bico em um lugar onde o material escorrido causa o menor dano à qualidade de superfície da sua impressão." - -#~ msgctxt "material_bed_temp_wait label" -#~ msgid "Aguardar o aquecimento da mesa de impressão" -#~ msgstr "Esperar a que la placa de impresión se caliente" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly label" -#~ msgid "Alternate Cross 3D Pockets" -#~ msgstr "Bolso Alternados de Cruzado 3D" - -#~ msgctxt "skin_alternate_rotation label" -#~ msgid "Alternate Skin Rotation" -#~ msgstr "Alterna a Rotação do Contorno" - -#~ msgctxt "skin_alternate_rotation description" -#~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." -#~ msgstr "Alterna a direção em que as camadas superiores e inferiores são impressas. Normalmente elas são impressas somente na diagonal. Este ajuste permite direções somente no X e somente no Y." - -#~ msgctxt "prime_tower_purge_volume description" -#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -#~ msgstr "Quantidade de filamento a ser purgado na torre de purga. A purga é útil para compensar filamento perdido por escorrimento durante inatividade do bico." - -#~ msgctxt "hole_xy_offset description" -#~ msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes." -#~ msgstr "Quantidade de deslocamento aplicado a todos os furos em cada camada. Valores positivos aumentam o tamanho dos furos, valores negativos reduzem o tamanho dos furos." - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" -#~ msgid "Apply the extruder offset to the coordinate system." -#~ msgstr "Aplicar o deslocamento do extrusor ao sistema de coordenadas." - -#~ msgctxt "material_flow_dependent_temperature label" -#~ msgid "Auto Temperature" -#~ msgstr "Temperatura Automática" - -#~ msgctxt "z_seam_type option back" -#~ msgid "Back" -#~ msgstr "Costas" - -#~ msgctxt "bridge_wall_max_overhang label" -#~ msgid "Bridge Wall Max Overhang" -#~ msgstr "Seção Pendente Máxima da Parede de Ponte" - -#~ msgctxt "machine_shape label" -#~ msgid "Build plate shape" -#~ msgstr "Forma da mesa de impressão" - -#~ msgctxt "center_object label" -#~ msgid "Center object" -#~ msgstr "Centralizar Objeto" - -#~ msgctxt "material_flow_dependent_temperature description" -#~ msgid "Change the temperature for each layer automatically with the average flow speed of that layer." -#~ msgstr "Troca a temperatura para cada camada automaticamente de acordo com a velocidade média de fluxo desta camada." - -#~ msgctxt "prime_tower_circular label" -#~ msgid "Circular Prime Tower" -#~ msgstr "Torre de Purga Circular" - -#~ msgctxt "retraction_combing description" -#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." -#~ msgstr "O Combing (penteamento) mantém o bico dentro de áreas já impressas durante os percursos. Isto resulta em movimentações um pouco mais amplas mas reduz a necessidade de retrações. Se o combing for desligado, o material sofrerá retração e o bico se moverá em linha reta ao próximo ponto. É também possível evitar combing sobre áreas de contorno de topo e base e ainda só fazer combing no preenchimento. Note que a opção 'Dentro do Preenchimento' se comporta exatamente como a 'Não no Contorno' em versões anteriores do Cura." - -#~ msgctxt "retraction_combing description" -#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." -#~ msgstr "O Combing, ou penteamento, mantém o bico dentro de áreas já impressas se movimenta. Isso resulta em percursos ligeiramente mais longos mas reduz a necessidade de retrações. Se o penteamento estiver desligado, o material sofrerá retração e o bico se moverá em linha reta para o próximo ponto. É também possível evitar o penteamento em área de contornos superiores e inferiores habilitando o penteamento no preenchimento somente." - -#~ msgctxt "wireframe_strategy option compensate" -#~ msgid "Compensate" -#~ msgstr "Compensar" - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" -#~ msgid "Compensate Inner Wall Overlaps" -#~ msgstr "Compensar Sobreposições da Parede Interna" - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" -#~ msgid "Compensate Outer Wall Overlaps" -#~ msgstr "Compensar Sobreposições de Parede Externa" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled label" -#~ msgid "Compensate Wall Overlaps" -#~ msgstr "Compensar Sobreposições de Parede" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled description" -#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." -#~ msgstr "Compensa o fluxo para partes de uma parede sendo impressa onde já há outra parede." - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" -#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." -#~ msgstr "Compensa o fluxo para partes de uma parede interna sendo impressa onde já há outra parede." - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" -#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." -#~ msgstr "Compensa o fluxo para partes de uma parede externa sendo impressa onde já há outra parede." - -#~ msgctxt "infill_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "support_bottom_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "support_interface_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "support_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "support_roof_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "zig_zaggify_infill description" -#~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -#~ msgstr "Conecta as extremidades onde o padrão de preenchimento se encontra com a parede interna usando linhas que seguem a forma dessa parede. Habilitar este ajuste pode fazer o preenchimento aderir melhor às paredes e reduz os efeitos do preenchimento na qualidade das superfícies verticais. Desabilitar este ajuste reduz a quantidade de material usado." - -#~ msgctxt "connect_skin_polygons description" -#~ msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happend midway over infill this feature can reduce the top surface quality." -#~ msgstr "Conectar camihos de contorno do topo e base onde se situarem próximos. Habilitar para o padrão concêntrico reduzirá bastante o tempo de percurso, mas visto que as conexões podem acontecer sobre o preenchimento no meio do caminho, este recurso pode reduzir a qualidade da superfície superior." - -#~ msgctxt "z_seam_corner description" -#~ msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner." -#~ msgstr "Controla se cantos no contorno do modelo influenciam a posição da costura. Nenhum significa que cantos não têm influência na posição da costura. Esconder Costura torna mais provável que ela ocorra em um canto interior. Expor Costura torna mais provável que ela ocorra em um canto exterior. Esconder ou Expor Costura torna mais provável que ocorra em um canto, externo ou externo." - -#~ msgctxt "machine_nozzle_cool_down_speed label" -#~ msgid "Cool down speed" -#~ msgstr "Velocidade de resfriamento" - -#~ msgctxt "wireframe_top_jump description" -#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." -#~ msgstr "Cria um pequeno 'nódulo' ou 'nó' no topo do filete ascendente de tal modo que a camada horizontal consecutiva tem melhor chance de se conectar ao filete. Somente se aplica à Impressão em Arame." - -#~ msgctxt "sub_div_rad_mult label" -#~ msgid "Cubic Subdivision Radius" -#~ msgstr "Raio de Subdivisão Cúbica" - -#~ msgctxt "wireframe_bottom_delay description" -#~ msgid "Delay time after a downward move. Only applies to Wire Printing." -#~ msgstr "Tempo de espera depois de um movimento descendente tal que o filete possa se solidificar. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_top_delay description" -#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." -#~ msgstr "Tempo de espera depois de um movimento ascendente tal que o filete ascendente possa se solidifcar. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_flat_delay description" -#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." -#~ msgstr "Tempo de espera entre dois segmentos horizontais. Inserir tal espera pode ocasionar melhor aderência a camadas prévias nos pontos de conexão, mas atrasos muito longos podem causar estruturas murchas. Somente se aplica à Impressão em Arame." - -#~ msgctxt "inset_direction description" -#~ msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed." -#~ msgstr "Determina em que ordem as paredes são impressas. Imprimir parede mais externas antes ajuda com acurácia dimensional, já que falhas das paredes mais internas não se propagam para o exterior. No entanto imprimi-las depois permite melhor empilhamento quando seções pendentes são impressas." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Determina a prioridade desta malha ao considerar múltiplas malhas de preenchimento sobrepostas. Áreas onde elas se sobrepõem terão as configurações da malha com o menor número. Uma malha de prenchimento de ordem maior modificará o preenchimento das malhas de preenchimento com as malhas de ordem mais baixa e normais." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Determina a prioridade desta malha ao se considerar volumes sobrepostos. Áread onde múltiplas malhas residem serão ganhas pela malha com menor número. Uma malha de preenchimento com maior ordem modificará o preenchimento das malhas de preenchimento com malhas de ordem normal e menor." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Determina que malha de preenchimento está dentro do preenchimento de outra malha de preenchimento. Uma malha de preenchimento com ordem mais alta modificará o preenchimento de malhas de preenchimento com ordem mais baixa e malhas normais." - -#~ msgctxt "machine_disallowed_areas label" -#~ msgid "Disallowed areas" -#~ msgstr "Áreas proibidas" - -#~ msgctxt "wireframe_nozzle_clearance description" -#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." -#~ msgstr "Distância entre o bico e os filetes descendentes horizontais. Espaços livres maiores resultarão em filetes descendentes diagonais com ângulo menos acentuado, o que por sua vez resulta em menos conexões ascendentes à próxima camada. Somente se aplica à Impressão em Arame." - -#~ msgctxt "support_interface_line_distance description" -#~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately." -#~ msgstr "Distância entre as linhas impressas da interface de suporte. Este ajuste é calculado pela Densidade de Interface de Suporte, mas pode ser ajustado separadamente." - -#~ msgctxt "support_bottom_distance description" -#~ msgid "Distance from the print to the bottom of the support." -#~ msgstr "Distância da parte inferior do suporte até a impressão." - -#~ msgctxt "support_z_distance description" -#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded down to a multiple of the layer height." -#~ msgstr "Distância do topo/base da estrutura de suporte à impressão. Este vão provê o espaço para remover os suportes depois do modelo ser impresso. Este valor é arredondando para um múltiplo da altura de camada." - -#~ msgctxt "support_z_distance description" -#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -#~ msgstr "Distância do topo e base da estrutura de suporte para a impressão. Este vão provê um espaço para remover os suportes depois de o modelo ser impresso. O valor é arredondado para um múltiplo da altura de camada." - -#~ msgctxt "wireframe_up_half_speed description" -#~ msgid "" -#~ "Distance of an upward move which is extruded with half speed.\n" -#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -#~ msgstr "" -#~ "Distância de um movimento ascendente que é extrudado com metade da velocidade.\n" -#~ "Isto pode resultar em melhor aderência às camadas prévias, ao mesmo tempo em que não aquece demais essas camadas. Somente se aplica à Impressão em Arame." - -#~ msgctxt "support_xy_distance_overhang description" -#~ msgid "Distance of the support structure from the overhang in the X/Y directions. " -#~ msgstr "Distância da estrutura de suporte até a seção pendente nas direções X/Y. " - -#~ msgctxt "wireframe_fall_down description" -#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Distância na qual o material desaba após uma extrusão ascendente. Esta distância é compensada. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_drag_along description" -#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Distância na qual o material de uma extrusão ascendente é arrastado com a extrusão descendente diagonal. Esta distância é compensada. Somente se aplica à Impressão em Arame." - -#~ msgctxt "multiple_mesh_overlap label" -#~ msgid "Dual Extrusion Overlap" -#~ msgstr "Sobreposição de Extrusão Dual" - -#~ msgctxt "gradual_flow_discretisation_step_size description" -#~ msgid "Duration of each step in the gradual flow change" -#~ msgstr "Duração de cada passo na alteração de fluxo gradual" - -#~ msgctxt "support_enable label" -#~ msgid "Enable Support" -#~ msgstr "Habilitar Suportes" - -#~ msgctxt "gradual_flow_enabled description" -#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -#~ msgstr "Habilita mudanças graduais de fluxo. Quando habilitado, o fluxo é gradualmente aumentado ou reduzido para o fluxo alvo. Útil para impressoras com tubo bowden onde o fluxo não é imediatamente alterado quando o motor do extrusor inicia ou para." - -#~ msgctxt "support_enable description" -#~ msgid "Enable support structures. These structures support parts of the model with severe overhangs." -#~ msgstr "Habilita as estruturas de suporte. Essas estruturas apóiam partes do modelo que tenham seções pendentes." - -#~ msgctxt "machine_end_gcode label" -#~ msgid "End GCode" -#~ msgstr "G-Code Final" - -#~ msgctxt "material_end_of_filament_purge_length label" -#~ msgid "End Of Filament Purge Length" -#~ msgstr "Comprimento de Purga de Fim de Filamento" - -#~ msgctxt "material_end_of_filament_purge_speed label" -#~ msgid "End Of Filament Purge Speed" -#~ msgstr "Velocidade de Purga de Fim de Filamento" - -#~ msgctxt "speed_equalize_flow_enabled label" -#~ msgid "Equalize Filament Flow" -#~ msgstr "Equalizar Fluxo de Filamento" - -#~ msgctxt "fill_perimeter_gaps option everywhere" -#~ msgid "Everywhere" -#~ msgstr "Em todos os lugares" - -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Bottom Skins Into Infill" -#~ msgstr "Expande Contorno da Base Para Preenchimento" - -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Lower Skins" -#~ msgstr "Expandir Contornos Inferiores" - -#~ msgctxt "expand_skins_into_infill label" -#~ msgid "Expand Skins Into Infill" -#~ msgstr "Expandir Contorno Para Preenchimento" - -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Top Skins Into Infill" -#~ msgstr "Expandir Contorno do Topo Para Preenchimento" - -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Upper Skins" -#~ msgstr "Expandir Contornos Superiores" - -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand lower skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Expandir as áreas de contorno inferiores (áreas com ar abaixo) de modo que fiquem ancoradas pelas camadas de preenchimento acima e abaixo." - -#~ msgctxt "expand_skins_into_infill description" -#~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin." -#~ msgstr "Expandir áreas de perímetro das partes superiores e inferiores de superfícies chatas. Por default, o perímetro para sob as paredes que rodeiam o preenchimento mas isso pode fazer com que buracos apareçam caso a densidade de preenchimento seja baixa. Este ajuste estenda os perímetros além das linhas de parede de modo que o preenchimento da próxima camada fique em cima de perímetros." - -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Expande as áreas de perímetro da base (áreas com ar abaixo delas) de modo que se ancorem nas camadas de preenchimento embaixo e acima." - -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand the top skin areas (areas with air above) so that they support infill above." -#~ msgstr "Expande as áreas de perímetro do topo (áreas com ar acima delas) de modo que suportem o preenchimento de cima." - -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand upper skin areas (areas with air above) so that they support infill above." -#~ msgstr "Expandir as áreas de contorno superiores (áreas com ar acima) de modo que suportem o preenchimento acima." - -#~ msgctxt "support_conical_enabled description" -#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." -#~ msgstr "Recurso experimental: Faz as áreas de suporte menores na base que na seção pendente." - -#~ msgctxt "machine_filament_park_distance label" -#~ msgid "Filament Park Distance" -#~ msgstr "Distância de Descanso do Filamento" - -#~ msgctxt "fill_perimeter_gaps label" -#~ msgid "Fill Gaps Between Walls" -#~ msgstr "Preenche Lacunas Entre Paredes" - -#~ msgctxt "fill_perimeter_gaps description" -#~ msgid "Fills the gaps between walls where no walls fit." -#~ msgstr "Preenche as lacunas que ficam entre paredes quando paredes intermediárias não caberiam." - -#~ msgctxt "filter_out_tiny_gaps label" -#~ msgid "Filter Out Tiny Gaps" -#~ msgstr "Filtrar Pequenas Lacunas" - -#~ msgctxt "filter_out_tiny_gaps description" -#~ msgid "Filter out tiny gaps to reduce blobs on outside of model." -#~ msgstr "Filtrar (rempver) pequenas lacunas para reduzir bolhas no exterior do modelo." - -#~ msgctxt "small_feature_speed_factor_0 label" -#~ msgid "First Layer Speed" -#~ msgstr "Velocidade da Primeira Camada" - -#~ msgctxt "wireframe_flow_connection description" -#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." -#~ msgstr "Compensação de Fluxo quanto subindo ou descendo. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_flow_flat description" -#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." -#~ msgstr "Compensação de fluxo ao imprimir filetes planos. Somente se aplica à Impressão em Arame." - -#~ msgctxt "prime_tower_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value." -#~ msgstr "Compensação de Fluxo: a quantidade de material extrudado é multiplicado por este valor." - -#~ msgctxt "wireframe_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." -#~ msgstr "Compensação de fluxo: a quantidade de material extrudado é multiplicado por este valor. Somente se aplica à Impressão em Arame." - -#~ msgctxt "flow_rate_extrusion_offset_factor label" -#~ msgid "Flow rate compensation factor" -#~ msgstr "Fator de compensaçõ de taxa de fluxo" - -#~ msgctxt "flow_rate_max_extrusion_offset label" -#~ msgid "Flow rate compensation max extrusion offset" -#~ msgstr "Deslocamento de extrusão máxima da compensação de taxa de fluxo" - -#~ msgctxt "reset_flow_duration description" -#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -#~ msgstr "Para qualquer movimento mais longo que este valor, o fluxo material é resetado para o fluxo-alvo do percurso." - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code Flavour" -#~ msgstr "Sabor de G-Code" - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code flavour" -#~ msgstr "Sabor de G-Code" - -#~ msgctxt "material_guid description" -#~ msgid "GUID of the material. This is set automatically. " -#~ msgstr "GUID do material. Este valor é ajustado automaticamente. " - -#~ msgctxt "gantry_height label" -#~ msgid "Gantry height" -#~ msgstr "Altura do eixo" - -#~ msgctxt "machine_end_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very end - separated by \n" -#~ "." -#~ msgstr "" -#~ "Comandos de G-Code a serem executados no fim da impressão - separados por \n" -#~ "." - -#~ msgctxt "machine_start_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very start - separated by \n" -#~ "." -#~ msgstr "" -#~ "Comandos de G-Code a serem executados durante o início da impressão - separados por \n" -#~ "." - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "Gcode flavour" -#~ msgstr "Tipo de G-Code" - -#~ msgctxt "support_tree_enable description" -#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." -#~ msgstr "Gera um suporte em árvore com galhos que apóiam sua impressão. Isto pode reduzir uso de material e tempo de impressão, mas aumenta bastante o tempo de fatiamento." - -#~ msgctxt "ironing_enabled description" -#~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." -#~ msgstr "Passar sobre a superfície superior depois de impressa, mas sem extrudar material. A idéia é derreter o plástico do topo ainda mais, criando uma superfície mais lisa." - -#~ msgctxt "gradual_flow_discretisation_step_size label" -#~ msgid "Gradual flow discretisation step size" -#~ msgstr "Tamanho de passo da discretização de fluxo gradual" - -# ## Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better. -#~ msgctxt "gradual_flow_enabled label" -#~ msgid "Gradual flow enabled" -#~ msgstr "Fluxo gradual habilitado" - -#~ msgctxt "max_flow_acceleration label" -#~ msgid "Gradual flow max acceleration" -#~ msgstr "Aceleração máxima do fluxo gradual" - -#~ msgctxt "machine_heated_bed label" -#~ msgid "Has heated build plate" -#~ msgstr "Tem mesa de impressão aquecida" - -#~ msgctxt "machine_nozzle_heat_up_speed label" -#~ msgid "Heat up speed" -#~ msgstr "Velocidade de aquecimento" - -#~ msgctxt "machine_heat_zone_length label" -#~ msgid "Heat zone length" -#~ msgstr "Comprimento da zona de aquecimento" - -#~ msgctxt "infill_hollow label" -#~ msgid "Hollow Out Objects" -#~ msgstr "Tornar Objetos Ocos" - -#~ msgctxt "support_tree_branch_distance description" -#~ msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." -#~ msgstr "Quão distantes os galhos precisam estar quando tocam o modelo. Tornar esta distância pequena fará com que o suporte em árvore toque o modelo em mais pontos, permitindo maior sustentação mas tornando o suporte mais difícil de remover." - -#~ msgctxt "machine_steps_per_mm_e description" -#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -#~ msgstr "Quantos passos do motor de passo resultarão em um milímetro de extrusão." - -#~ msgctxt "slicing_tolerance description" -#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." -#~ msgstr "Como fatiar camadas com superfícies diagonais. As áreas de uma camada podem ser geradas baseadas em onde o meio da camada interseciona a superfície (Meio). Alternativamente, cada camada pode ter as áreas que se encontram dentro do volume por toda a altura da camada (Exclusivo) ou a camada pode abranger todas as áreas que tenham qualquer penetração dentro do volume (Inclusivo). Exclusivo retém mais detalhes, Inclusivo é melhor para encaixes e Meio toma menos tempo para processar." - -#~ msgctxt "wall_min_flow_retract description" -#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." -#~ msgstr "Se usado, a retração é usada ao invés de combing para movimentos de percurso que substituem paredes cujo fluxo estiver abaixo do limite mínimo." - -#~ msgctxt "skin_no_small_gaps_heuristic label" -#~ msgid "Ignore Small Z Gaps" -#~ msgstr "Ignorar Pequenas Lacunas em Z" - -#~ msgctxt "start_layers_at_same_position description" -#~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time." -#~ msgstr "Em cada camada iniciar imprimindo o objeto próximo ao mesmo ponto, de modo que não comecemos uma nova camada quando imprimir a peça com que a camada anterior terminou. Isso permite seções pendentes e partes pequenas melhores, mas aumenta o tempo de impressão." - -#~ msgctxt "material_bed_temp_prepend label" -#~ msgid "Include build plate temperature" -#~ msgstr "Incluir temperatura da mesa de impressão" - -#~ msgctxt "material_print_temp_prepend label" -#~ msgid "Include material temperatures" -#~ msgstr "Incluir temperaturas dos materiais" - -#~ msgctxt "infill_mesh_order label" -#~ msgid "Infill Mesh Order" -#~ msgstr "Order das Malhas de Preenchimento" - -#~ msgctxt "z_offset_layer_0 label" -#~ msgid "Initial Layer Z Offset" -#~ msgstr "Deslocamento em Z da Camada Inicial" - -#~ msgctxt "layer_0_max_flow_acceleration label" -#~ msgid "Initial layer max flow acceleration" -#~ msgstr "Aceleração máxima de fluxo da camada inicial" - -#~ msgctxt "wall_x_extruder_nr label" -#~ msgid "Inner Walls Extruder" -#~ msgstr "Extrusor das Paredes Internas" - -#~ msgctxt "machine_center_is_zero label" -#~ msgid "Is center origin" -#~ msgstr "A origem está no centro" - -#~ msgctxt "wireframe_strategy option knot" -#~ msgid "Knot" -#~ msgstr "Nó" - -#~ msgctxt "limit_support_retractions label" -#~ msgid "Limit Support Retractions" -#~ msgstr "Limitar Retrações de Suporte" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine Head Polygon" -#~ msgstr "Polígono Da Cabeça da Máquina" - -#~ msgctxt "machine_depth label" -#~ msgid "Machine depth" -#~ msgstr "Profundidada da mesa" - -#~ msgctxt "machine_head_with_fans_polygon label" -#~ msgid "Machine head & Fan polygon" -#~ msgstr "Polígono da cabeça da máquina e da ventoinha" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine head polygon" -#~ msgstr "Polígono da cabeça da máquina" - -#~ msgctxt "machine_height label" -#~ msgid "Machine height" -#~ msgstr "Altura do volume de impressão" - -#~ msgctxt "machine_width label" -#~ msgid "Machine width" -#~ msgstr "Largura da mesa" - -#~ msgctxt "prime_tower_circular description" -#~ msgid "Make the prime tower as a circular shape." -#~ msgstr "Faz a torre de purga na forma circular." - -#~ msgctxt "material_end_of_filament_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "material_end_of_filament_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "material_flush_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "material_flush_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "material_maximum_park_duration description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "material_no_load_move_factor description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "machine_max_feedrate_e label" -#~ msgid "Maximum Feedrate" -#~ msgstr "Velocidade Máxima de Alimentação" - -#~ msgctxt "speed_equalize_flow_max label" -#~ msgid "Maximum Speed for Flow Equalization" -#~ msgstr "Velocidade Máxima para Equalização de Fluxo" - -#~ msgctxt "max_feedrate_z_override label" -#~ msgid "Maximum Z Speed" -#~ msgstr "Velocidade Máxima em Z" - -#~ msgctxt "max_flow_acceleration description" -#~ msgid "Maximum acceleration for gradual flow changes" -#~ msgstr "Aceleração máxima para alterações de fluxo gradual" - -#~ msgctxt "max_extrusion_before_wipe description" -#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated." -#~ msgstr "Material máximo que pode ser extrudado antes que outra limpeza do bico seja iniciada." - -#~ msgctxt "speed_equalize_flow_max description" -#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -#~ msgstr "Velocidade máxima de impressão no ajuste de velocidades para equalizar o fluxo." - -#~ msgctxt "mesh_position_x label" -#~ msgid "Mesh position x" -#~ msgstr "Posição X da malha" - -#~ msgctxt "mesh_position_y label" -#~ msgid "Mesh position y" -#~ msgstr "Posição Y da malha" - -#~ msgctxt "mesh_position_z label" -#~ msgid "Mesh position z" -#~ msgstr "Posição Z da malha" - -#~ msgctxt "support_minimal_diameter label" -#~ msgid "Minimum Diameter" -#~ msgstr "Diâmetro mínimo" - -#~ msgctxt "wall_min_flow label" -#~ msgid "Minimum Wall Flow" -#~ msgstr "Mínimo Fluxo da Parede" - -#~ msgctxt "wall_min_flow description" -#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." -#~ msgstr "Mínima porcentagem de fluxo permite para um filete de parede. A compensação de sobreposição de parede reduz o fluxo de uma parede quando ela está próxima a outra já impressa. Paredes cujo fluxo seja menor que este valor serão trocadas por um momento de percurso. Ao usar este ajuste, você deve habilitar a compensação de sobreposição de paredes e imprimir as paredes externas antes das internas." - -#~ msgctxt "minimum_interface_area description" -#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "Área mínima para polígonos de interface de suporte. Polígonos que tiverem uma área menor que este valor não serão gerados." - -#~ msgctxt "minimum_bottom_area description" -#~ msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "Área mínima para as bases do suporte. Polígonos que tiverem uma área menor que este valor não serão gerados." - -#~ msgctxt "minimum_roof_area description" -#~ msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "Área mínima para os tetos do suporte. Polígonos que tiverem área menor que este valor são serão gerados." - -#~ msgctxt "support_minimal_diameter description" -#~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -#~ msgstr "Diâmeto mínimo nas direções X/Y de uma área pequena que deverá ser suportada por uma torre de suporte especial." - -#~ msgctxt "layer_0_max_flow_acceleration description" -#~ msgid "Minimum speed for gradual flow changes for the first layer" -#~ msgstr "Velocidade mínima para alterações graduais de fluxo na primeira camada" - -#~ msgctxt "retraction_combing option noskin" -#~ msgid "No Skin" -#~ msgstr "Evita Contornos" - -#~ msgctxt "meshfix_keep_open_polygons description" -#~ msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper GCode." -#~ msgstr "Normalmente o Cura tenta costurar pequenos furos na malha e remover partes de uma camada com grandes furos. Habilitar esta opção mantém aquelas partes que não podem ser costuradas. Este opção deve ser usada somente como uma última alternativa quando tudo o mais falha em produzir G-Code apropriado." - -#~ msgctxt "fill_perimeter_gaps option nowhere" -#~ msgid "Nowhere" -#~ msgstr "Em lugar nenhum" - -#~ msgctxt "machine_nozzle_expansion_angle label" -#~ msgid "Nozzle angle" -#~ msgstr "Ângulo do bico" - -#~ msgctxt "machine_nozzle_head_distance label" -#~ msgid "Nozzle length" -#~ msgstr "Comprimento do bico" - -#~ msgctxt "extruders_enabled_count label" -#~ msgid "Number of Extruders that are enabled" -#~ msgstr "Número de Extrusores habilitados" - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords label" -#~ msgid "Offset With Extruder" -#~ msgstr "Deslocamento do Extrusor" - -#~ msgctxt "limit_support_retractions description" -#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure." -#~ msgstr "Omitir retrações quando mudar de suporte a suporte em linha reta. Habilitar este ajuste economiza tempo de impressão, mas pode levar a fiapos entremeados à estrutura de suporte." - -#~ msgctxt "limit_support_retractions description" -#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." -#~ msgstr "Omitir a retração ao mover de suporte a suporte em linha reta. Habilitar este ajuste economiza tempo de impressão, mas pode levar a fiapos excessivos na estrutura de suporte." - -#~ msgctxt "cross_infill_apply_pockets_alternatingly description" -#~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." -#~ msgstr "Somente aplicar bolso em metades dos cruzamentos quádruplos no padrão cruzado 3D e alternar a localização dos bolso entre alturas onde o padrão esteja se tocando." - -#~ msgctxt "optimize_wall_printing_order description" -#~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization." -#~ msgstr "Otimiza a ordem em que paredes são impressas de modo a reduzir o número de retrações e a distância percorrida. A maioria das peças se beneficiarão deste ajuste habilitado mas algumas podem acabar levando mais tempo, portanto por favor compare as estimativas de tempo de impressão com e sem otimização." - -#~ msgctxt "support_infill_angles description" -#~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." -#~ msgstr "Orientação do padrão de preenchimento para suportes. O padrão de preenchimento do suporte é rotacionado no plano horizontal." - -#~ msgctxt "outer_inset_first label" -#~ msgid "Outer Before Inner Walls" -#~ msgstr "Paredes exteriores antes das interiores" - -#~ msgctxt "machine_nozzle_tip_outer_diameter label" -#~ msgid "Outer nozzle diameter" -#~ msgstr "Diametro externo do bico" - -#~ msgctxt "wireframe_straight_before_down description" -#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." -#~ msgstr "Porcentagem de um filete descendente diagonal que é coberto por uma peça de filete horizontal. Isto pode prevenir enfraquecimento do ponto superior das linhas ascendentes. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wall_min_flow_retract label" -#~ msgid "Prefer Retract" -#~ msgstr "Preferir Retração" - -#~ msgctxt "prime_tower_brim_enable label" -#~ msgid "Prime Tower Brim" -#~ msgstr "Brim da Torre de Purga" - -#~ msgctxt "prime_tower_purge_volume label" -#~ msgid "Prime Tower Purge Volume" -#~ msgstr "Volume de Purga da Torre de Purga" - -#~ msgctxt "prime_tower_wall_thickness label" -#~ msgid "Prime Tower Thickness" -#~ msgstr "Espessura da Torre de Purga" - -#~ msgctxt "prime_tower_brim_enable description" -#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -#~ msgstr "Torres de Prime podem precisar de aderência extra dada por um brim mesmo se o modelo não precisar. No momento não pode ser usado com o tipo de aderência 'Raft'." - -#~ msgctxt "wireframe_enabled description" -#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." -#~ msgstr "Imprime somente a superfície exterior usando uma estrutura esparsa em forma de teia sem usar as camadas horizontais de impressão, e imprimindo no ar. Isto é feito imprimindo horizontalmente os contornos do modelo em dados intervalos Z que são conectados por filetes diagonais para cima e para baixo." - -#~ msgctxt "spaghetti_infill_enabled description" -#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." -#~ msgstr "Imprime o preenchimento intermitentemente de modo que o filamento se enrole caoticamente dentro do objeto. Isto reduz o tempo de impressão, mas tem comportamento bem imprevisível." - -#~ msgctxt "speed_equalize_flow_enabled description" -#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." -#~ msgstr "Imprime filetes mais finos que o normal mais rapidamente de modo que a quantidade de material extrudado por segundo se mantenha o mesmo. Partes pequenas em seu modelo podem exigir filetes impressos com largura menor que as providas nos ajustes. Este ajuste controla as mudanças de velocidade para tais filetes." - -#~ msgctxt "outer_inset_first description" -#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." -#~ msgstr "Imprime as paredes em ordem de fora para dentro quando habilitado. Isto pode ajudar a melhorar a acurácia dimensional e X e Y quando se usa um plástico de alta viscosidade como ABS; no entanto pode também diminuir a qualidade de impressão da superfície externa, especialmente em seções pendentes." - -#~ msgctxt "raft_base_line_spacing label" -#~ msgid "Raft Line Spacing" -#~ msgstr "Espaçamento de Linhas do Raft" - -#~ msgctxt "infill_hollow description" -#~ msgid "Remove all infill and make the inside of the object eligible for support." -#~ msgstr "Remove todo o preenchimento e torna o interior oco do objeto elegível a suporte." - -#~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -#~ msgid "RepRap (Marlin/Sprinter)" -#~ msgstr "RepRap (Marlin/Sprinter)" - -#~ msgctxt "machine_gcode_flavor option RepRap (Volumatric)" -#~ msgid "RepRap (Volumetric)" -#~ msgstr "RepRap (Volumétrico)" - -#~ msgctxt "reset_flow_duration label" -#~ msgid "Reset flow duration" -#~ msgstr "Duração de reset do fluxo" - -#~ msgctxt "support_tree_collision_resolution description" -#~ msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." -#~ msgstr "Resolução para computar colisões com a qual evitar tocar o modelo. Ajustar valor mais baixos produzirá árvore mais precisas que falharão menos, mas aumentará o tempo de fatiamento dramaticamente." - -#~ msgctxt "wireframe_strategy option retract" -#~ msgid "Retract" -#~ msgstr "Retrair" - -#~ msgctxt "retraction_enable description" -#~ msgid "Retract the filament when the nozzle is moving over a non-printed area. " -#~ msgstr "Retrai o filamento quando o bico está se movendo sobre uma área não impressa. " - -#~ msgctxt "wipe_retraction_prime_speed label" -#~ msgid "Retraction Prime Speed" -#~ msgstr "Velocidade de Purga da Retração" - -#~ msgctxt "shell label" -#~ msgid "Shell" -#~ msgstr "Perímetro" - -#~ msgctxt "machine_show_variants label" -#~ msgid "Show machine variants" -#~ msgstr "Mostrar variantes da máquina" - -#~ msgctxt "material_shrinkage_percentage label" -#~ msgid "Shrinkage Ratio" -#~ msgstr "Raio de Contração" - -#~ msgctxt "material_shrinkage_percentage description" -#~ msgid "Shrinkage ratio in percentage." -#~ msgstr "Raio de contração do material em porcentagem." - -#~ msgctxt "support_skip_some_zags label" -#~ msgid "Skip Some ZigZags Connections" -#~ msgstr "Pular Algumas Conexões de Ziguezague" - -#~ msgctxt "support_zag_skip_count description" -#~ msgid "Skip one in every N connection lines to make the support structure easier to break." -#~ msgstr "Pular uma em cada N linhas de conexão para fazer a estrutura de suporte mais fácil de ser removida." - -#~ msgctxt "support_skip_some_zags description" -#~ msgid "Skip some ZigZags connections to make the support structure easier to break." -#~ msgstr "Pula algumas conexões de Ziguezague para fazer a estrutura de suporte mais fácil de ser removida." - -#~ msgctxt "small_feature_speed_factor_0 description" -#~ msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy." -#~ msgstr "Aspectos pequenos na primeira camada serão impressos nesta porcentagem de sua velocidade normal de impressão. Impressão mais lenta pode ajudar com aderência e precisão." - -#~ msgctxt "small_feature_speed_factor description" -#~ msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy." -#~ msgstr "Pequenos aspectos serão impressos com esta porcentagem de sua velocidade normal de impressão. Impressão mais lenta pode ajudar com aderência e precisão." - -#~ msgctxt "small_skin_width description" -#~ msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions." -#~ msgstr "Regiões pequenas de teto/base são preenchidas com paredes ao invés do padrão default de teto/base. Isto ajuda a prevenir movimentos bruscos." - -#~ msgctxt "smooth_spiralized_contours description" -#~ msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z-seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -#~ msgstr "Suaviza os contornos espiralizados para reduzir a visibilidade da costura em Z (esta costura será quase invisível na impressão mas ainda pode ser vista na visão de camadas). Note que suavizar tenderá a remover detalhes finos de superfície." - -#~ msgctxt "spaghetti_flow label" -#~ msgid "Spaghetti Flow" -#~ msgstr "Fluxo de Espaguete" - -#~ msgctxt "spaghetti_infill_enabled label" -#~ msgid "Spaghetti Infill" -#~ msgstr "Preenchimento em Espaguete" - -#~ msgctxt "spaghetti_infill_extra_volume label" -#~ msgid "Spaghetti Infill Extra Volume" -#~ msgstr "Volume Extra do Preenchimento Espaguete" - -#~ msgctxt "spaghetti_max_height label" -#~ msgid "Spaghetti Infill Maximum Height" -#~ msgstr "Altura Máxima do Preenchimento Espaguete" - -#~ msgctxt "spaghetti_infill_stepped label" -#~ msgid "Spaghetti Infill Stepping" -#~ msgstr "Passos do Preenchimento de Espaguete" - -#~ msgctxt "spaghetti_inset label" -#~ msgid "Spaghetti Inset" -#~ msgstr "Penetração do Espaguete" - -#~ msgctxt "spaghetti_max_infill_angle label" -#~ msgid "Spaghetti Maximum Infill Angle" -#~ msgstr "Ângulo de Preenchimento Máximo do Espaguete" - -#~ msgctxt "wireframe_printspeed description" -#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." -#~ msgstr "Velocidade com que a cabeça de impressão se move ao extrudar material. Somente se aplica a Impressão em Arame." - -#~ msgctxt "wireframe_printspeed_down description" -#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." -#~ msgstr "Velocidade de impressão dos filetes descendentes feitas 'no ar'. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_printspeed_up description" -#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." -#~ msgstr "Velocidade de impressão dos filetes ascendentes feitas 'no ar'. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_printspeed_bottom description" -#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." -#~ msgstr "Velocidade de Impressão da primeira camada, que é a única camada que toca a mesa. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_printspeed_flat description" -#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." -#~ msgstr "Velocidade de impressão dos contornos horizontais do modelo. Somente se aplica à Impressão em Arame." - -#~ msgctxt "magic_spiralize description" -#~ msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature used to be called Joris in older versions." -#~ msgstr "Este modo, também chamado de Modo Vaso ou Joris, transforma a trajetória do filete de plástico de impressão em uma espiral ascendente, com o Z lentamente subindo. Para isso, torna um modelo sólido em uma casca de parede única com a base sólida. Nem toda forma funciona corretamente com o modo vaso." - -#~ msgctxt "wall_split_middle_threshold label" -#~ msgid "Split Middle Line Threshold" -#~ msgstr "Limite de Filete Central Dividido" - -#~ msgctxt "machine_start_gcode label" -#~ msgid "Start GCode" -#~ msgstr "G-Code Inicial" - -#~ msgctxt "start_layers_at_same_position label" -#~ msgid "Start Layers with the Same Part" -#~ msgstr "Iniciar Camadas com a Mesma Parte" - -#~ msgctxt "wireframe_strategy description" -#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." -#~ msgstr "Estratégia para se assegurar que duas camadas consecutivas se conectam a cada ponto de conexão. Retração faz com que os filetes ascendentes se solidifiquem na posição correta, mas pode causar desgaste de filamento. Um nó pode ser feito no fim de um filete ascendentes para aumentar a chance de se conectar a ele e deixar o filete esfriar; no entanto, pode exigir velocidades de impressão lentas. Outra estratégia é compensar pelo enfraquecimento do topo de uma linha ascendente; no entanto, as linhas nem sempre cairão como preditas." - -#~ msgctxt "support_bottom_height label" -#~ msgid "Support Bottom Thickness" -#~ msgstr "Espessura da Base do Suporte" - -#~ msgctxt "support_interface_line_distance label" -#~ msgid "Support Interface Line Distance" -#~ msgstr "Distância entre Linhas da Interface de Suporte" - -#~ msgctxt "infill_pattern option tetrahedral" -#~ msgid "Tetrahedral" -#~ msgstr "Tetraédrico" - -#~ msgctxt "acceleration_support_interface description" -#~ msgid "The acceleration with which the roofs and bottoms of support are printed. Printing them at lower accelerations can improve overhang quality." -#~ msgstr "Aceleração com que o topo e base dos suportes são impressos. Imprimi-lo a menores acelerações pode aprimorar a qualidade das seções pendentes." - -#~ msgctxt "infill_overlap description" -#~ msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -#~ msgstr "Porcentagem de sobreposição entre o preenchimento e as paredes. Uma leve sobreposição permite que as paredes fiquem firmemente aderidas ao preenchimento." - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "A quantidade de sobreposição entre o contorno e as paredes como uma porcentagem da largura de extrusão. Uma sobreposição leve permite que as paredes se conectem firmemente ao contorno. Este ajuste é uma porcentagem das larguras de extrusão média do contorno e da parede mais interna." - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "A quantidade de sobreposição entre o contorno e as paredes como uma porcentagem da largura de extrusão do contorno. Uma leve sobreposição permite que as paredes se conectem firmemente ao contorno. É uma porcentagem das larguras de extrusão médias das linhas de contorno e a parede mais interna." - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "Porcentagem de sobreposição entre o contorno e as paredes. Uma ligeira sobreposição permite às paredes ficarem firmemente aderidas ao contorno." - -#~ msgctxt "skin_overlap_mm description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "A quantidade de sobreposição entre o contorno e as paredes. Uma leve sobreposição permite às paredes ficarem firmemente aderidas ao contorno." - -#~ msgctxt "switch_extruder_retraction_amount description" -#~ msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone." -#~ msgstr "A quantidade de retração: coloque em '0' para nenhuma retração. Isto deve geralmente ser o mesmo que o comprimento da zona de aquecimento dentro do hotend." - -#~ msgctxt "support_tree_angle description" -#~ msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -#~ msgstr "Ô angulo dos galhos. Use um ângulo menor para torná-los mais verticais e mais estáveis. Use um ângulo maior para aumentar o alcance." - -#~ msgctxt "lightning_infill_prune_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." -#~ msgstr "A diferença que uma camada de preenchimento relâmpago pode ter em relação à camada imediatamente superior de acordo com a poda das extremidades externas das árvores. Medido em ângulo de acordo com a espessura." - -#~ msgctxt "lightning_infill_straightening_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." -#~ msgstr "A diferença que uma camada de preenchimento relâmpago pode ter em relação à camada imediatamente superior de acordo com a suavização de árvores. Medido em ângulo de acordo com a espessura." - -#~ msgctxt "wireframe_roof_inset description" -#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." -#~ msgstr "A distância coberta quando é feita uma conexão do contorno do teto para dentro. Somente se aplica a Impressão em Arame." - -#~ msgctxt "wireframe_roof_drag_along description" -#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "A distância da parte final de um filete para dentro que é arrastada quando o extrusor começa a voltar para o contorno externo do topo. Esta distância é compensada. Somente se aplica à Impressão em Arame." - -#~ msgctxt "expand_skins_expand_distance description" -#~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient." -#~ msgstr "A distância que os contornos são expandidos para dentro do preenchimento. A distância default é suficiente para ligar o vão entre as linhas de preenchimento e impedirá que buracos apareçam no contorno onde ele encontrar a parede em que a densidade de preenchimento é baixa. Uma distância menor pode ser suficiente." - -#~ msgctxt "wireframe_roof_fall_down description" -#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "A distância em que filetes horizontais do topo impressos no ar caem quando sendo impressos. Esta distância é compensada. Somente se aplica à Impressão em Arame." - -#~ msgctxt "z_offset_layer_0 description" -#~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly." -#~ msgstr "O extrusor é deslocado da altura normal da primeira camada por esta distância. Pode ser positiva (elevada) ou negativa (abaixada). Alguns tipos de filamento aderem à camada de impressão melhor se o extrusor for elevado ligeiramente." - -#~ msgctxt "support_interface_extruder_nr description" -#~ msgid "The extruder train to use for printing the roofs and bottoms of the support. This is used in multi-extrusion." -#~ msgstr "O extrusor a usar para imprimir o topo e base dos suportes. Isto é utilizado em multi-extrusão." - -#~ msgctxt "support_bottom_stair_step_height description" -#~ msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -#~ msgstr "A altura dos passos da base tipo escada do suporte em cima do modelo. Um valor baixo faz o suporte ser mais difícil de remover, mas valores muito altos podem criar estruturas de suporte instáveis." - -#~ msgctxt "wireframe_height description" -#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." -#~ msgstr "A altura dos filetes diagonais para cima e para baixo entre duas partes horizontais. Isto determina a densidade geral da estrutura em rede. Somente se aplica a Impressão em Arame." - -#~ msgctxt "skirt_gap description" -#~ msgid "" -#~ "The horizontal distance between the skirt and the first layer of the print.\n" -#~ "This is the minimum distance, multiple skirt lines will extend outwards from this distance." -#~ msgstr "" -#~ "A distância horizontal entre o skirt e a primeira camada da impressão.\n" -#~ "Esta é a distância mínima; múltiplas linhas de skirt se estenderão pra fora a partir desta distância." - -#~ msgctxt "infill_offset_x description" -#~ msgid "The infill pattern is offset this distance along the X axis." -#~ msgstr "O padrão de preenchimento é corrigido/deslocado nesta distância no eixo X." - -#~ msgctxt "infill_offset_y description" -#~ msgid "The infill pattern is offset this distance along the Y axis." -#~ msgstr "O padrão de preenchimento é corrigido/deslocado nesta distância no eixo Y." - -#~ msgctxt "adaptive_layer_height_variation description" -#~ msgid "The maximum allowed height different from the base layer height in mm." -#~ msgstr "A dferença de altura máxima permitida da altura de camada base permitida, em mm." - -#~ msgctxt "bridge_wall_max_overhang description" -#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -#~ msgstr "O comprimento máximo permitido da região de ar abaixo da linha da parede antes que a parede seja impressa usando ajustes de ponte. Expressado como uma porcentagem da espessura de filete de parede. Quando o vão for mais largo que esta quantia, a parede é impressa usando os ajustes de ponte. Senão, a parede é impressa com os ajustes normais. Quanto menor o valor, mais provável que os filetes da parede sejam impressos com os ajustes de ponte." - -#~ msgctxt "spaghetti_max_infill_angle description" -#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." -#~ msgstr "O ângulo máximo em relação ao Z do interior da impressão para áreas que serão preenchidas com espaguete no final. Abaixar este valor faz com que mais partes anguladas do seu modelo sejam preenchidas a cada camada." - -#~ msgctxt "meshfix_maximum_deviation description" -#~ msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller." -#~ msgstr "O valor máximo de desvio permitido ao reduzir a resolução para o ajuste de Resolução Máxima. Se você aumenta este número, a impressão terá menos acuidade, mas o G-Code será menor." - -#~ msgctxt "support_join_distance description" -#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one." -#~ msgstr "Distância máxima entre as estruturas de suporte nas direções X/Y. Quando estrutura separadas estão mais perto que este valor, as estruturas são combinadas em uma única." - -#~ msgctxt "flow_rate_max_extrusion_offset description" -#~ msgid "The maximum distance in mm to compensate." -#~ msgstr "A distância máxima em mm a compensar." - -#~ msgctxt "spaghetti_max_height description" -#~ msgid "The maximum height of inside space which can be combined and filled from the top." -#~ msgstr "A altura máxima do espaço interior que pode ser combinado e preenchido a partir do topo." - -#~ msgctxt "jerk_support_interface description" -#~ msgid "The maximum instantaneous velocity change with which the roofs and bottoms of support are printed." -#~ msgstr "A mudança instantânea máxima de velocidade em uma direção com que a base e o topo dos suporte é impresso." - -#~ msgctxt "max_feedrate_z_override description" -#~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed." -#~ msgstr "A velocidade máxima com que o eixo Z é movido. Colocar isto em zero faz com que a impressão use os defaults de firmware para a velocidade máxima de Z." - -#~ msgctxt "mold_width description" -#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." -#~ msgstr "A distância mínima entre o exterior do molde e do modelo." - -#~ msgctxt "min_odd_wall_line_width description" -#~ msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width," -#~ msgstr "A largura mínima de filete para as paredes multifiletes de preenchimento de vão de filete central. Este ajuste determina em que espessura de modelo nós alternamos de imprimir dois filetes de parede para imprimir duas paredes externas e uma parede central no centro. Uma Largura Mínima de Filete de Parede Ímpar leva a uma largura máxima de filete de parede par mais alta. A largura máxima de filete de parede par é calculada como 2 * Largura Mínima de Filete de Parede Par." - -#~ msgctxt "flow_rate_extrusion_offset_factor description" -#~ msgid "The multiplication factor for the flow rate -> distance translation." -#~ msgstr "O fator de multiplicação para a tradução entre taxa de fluxo -> distância." - -#~ msgctxt "support_tree_wall_count description" -#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "O número de filetes da parede dos galhos do suporte em árvore. Paredes mais espessas tomarão mais tempo pra imprimir mas não tombarão facilmente." - -#~ msgctxt "spaghetti_inset description" -#~ msgid "The offset from the walls from where the spaghetti infill will be printed." -#~ msgstr "O deslocamento a partir das paredes de onde o preenchimento espaguete será impresso." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Padrão ou estampa do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague trocam de direção em camadas alternadas, reduzindo custo de material. Os padrões de grade, triângulo, cúbico, tetraédrico e concêntrico são totalmente impressos a cada camada. Os padrões cúbico e tetraédrico mudam a cada camada para prover uma distribuição mais igualitária de força para cada direção." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "O padrão do material de preenchimento da impressão. Preenchimento de Linhas e Ziguezague trocam direções em camadas alternadas, reduzindo custo do material. Os padrões de Grade, Triângulo, Tri-Hexágono, Cúbico, Octeto, Quarto Cúbico, Cruzado e Concêntrico são totalmente impressos em cada camada. Os preenchimentos Cúbico, Quarto Cúbico e Octeto mudam em cada camada para prover uma distribuição mais uniforme de forças em cada direção." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague mudam de direção em camadas alternadas, reduzindo o custo do material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são impressos em totalidade a cada camada. Os padrões giróide, cúbico, quarto cúbico e octeto mudam a cada camada para prover uma distribuição mais igualitária de força em cada direção." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." -#~ msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague trocam de direção em camadas alternadas, reduzindo o custo de material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são impressos a cada camada. Os preenchimentos giroide, cúbico, quarto cúbico e octeto mudam em cada camada para prover uma distribuição mais uniforme de força em cada direção. O preenchimento de relâmpago tenta minimizar o material suportando apenas os tetos (internos) do objeto. Como tal, a porcentagem de preenchimento somente é 'válida' uma camada abaixo do que quer que seja que ela precise para suportar o modelo." - -#~ msgctxt "wall_add_middle_threshold description" -#~ msgid "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -#~ msgstr "A largura de filete mínima, como fator da largura de filete normal, acima da qual um filete central (se já não houver algum) será adicionado. Reduza este ajuste para usar mais e e mais finos filetes. Aumente para usar menos, mais largos filetes. Note que isto se aplica -como se- a forma inteira devesse ser preenchida com paredes, portanto o centro aqui se refere ao meio do objeto entre duas arestas externas da forma, mesmo se houver preenchimento ou contornos na impressão ao invés de paredes." - -#~ msgctxt "wall_split_middle_threshold description" -#~ msgid "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -#~ msgstr "A largura de filete mínima, como fator da largura de filete normal, acima da qual o filete central (se houver algum) será dividido em dois. Reduza este ajuste para usar mais e maiores filetes. Aumente para usar menos e menores filetes. Note que isto se aplica -como se- a forma inteira devesse ser preenchida com parede, dado que o centro aqui se refere ao meio do objeto entre duas arestas externas da forma, mesmo se houver preenchimento ou (outros) contornos na impressão ao invés de paredes." - -#~ msgctxt "speed_support_interface description" -#~ msgid "The speed at which the roofs and bottoms of support are printed. Printing the them at lower speeds can improve overhang quality." -#~ msgstr "A velocidade em que o topo e base dos suportes são impressos. Imprimi-lo a menores velocidade pode melhor a qualidade das seções pendentes." - -#~ msgctxt "speed_layer_0 description" -#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." -#~ msgstr "A velocidade para a camada inicial. Um valor menor é aconselhado para aprimorar a aderência à mesa de impressão." - -#~ msgctxt "build_volume_temperature description" -#~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted." -#~ msgstr "A temperatura usada para o volume de construção. Se o valor for zero, a temperatura de volume de impressão não será ajustada." - -#~ msgctxt "material_print_temperature_layer_0 description" -#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -#~ msgstr "A temperatura usada para imprimir a primeira camada. Coloque 0 para desabilitar processamento especial da camada inicial." - -#~ msgctxt "material_print_temperature description" -#~ msgid "The temperature used for printing. Set at 0 to pre-heat the printer manually." -#~ msgstr "Temperatura usada para a impressão. COloque em '0' para pré-aquecer a impressora manualmente." - -#~ msgctxt "material_bed_temperature_layer_0 description" -#~ msgid "The temperature used for the heated build plate at the first layer." -#~ msgstr "A temperatura usada para a mesa aquecida na primeira camada." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." -#~ msgstr "A temperatura usada para a plataforma de impressão aquecida. Se for 0, a temperatura da mesa não será ajustada." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print." -#~ msgstr "A temperatura usada pela mesa aquecida de impressão. Se for 0, a mesa não aquecerá para esta impressão." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. Set at 0 to pre-heat the printer manually." -#~ msgstr "A temperatura usada para a mesa aquecida. Coloque em '0' para pré-aquecer a impressora manualmente." - -#~ msgctxt "prime_tower_wall_thickness description" -#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -#~ msgstr "A espessura da torre de purga (que é oca). Uma espessura maior que a metade do volume mínimo da torre de purga resultará em uma torre de purga densa." - -#~ msgctxt "wall_thickness description" -#~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -#~ msgstr "A espessura das paredes na direção horizontal. Este valor dividido pela largura de extrusão da parede define o número de paredes." - -#~ msgctxt "support_bottom_height description" -#~ msgid "The thickness of the support bottoms. This controls the number of dense layers are printed on top of places of a model on which support rests." -#~ msgstr "A espessura da base do suporte. Isto controla o número de camadas densas que são impressas no topo de lugares do modelo em que o suporte se assenta." - -#~ msgctxt "support_tree_wall_thickness description" -#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "A espessura das paredes dos galhos do suporte em árvore. Paredes mais espessas tomarão mais tempo pra imprimir mas não tombarão facilmente." - -#~ msgctxt "machine_gcode_flavor description" -#~ msgid "The type of gcode to be generated." -#~ msgstr "Tipo de G-Code a ser gerado para a impressora." - -#~ msgctxt "raft_smoothing description" -#~ msgid "This setting control how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -#~ msgstr "Este ajuste controla quantos cantos interiores no contorno do raft são arredondados. Cantos no sentido interior são arredondados para um semicírculo com raio igual ao valor dado aqui. Este ajuste também remove buracos que sejam menores que tal círculo no contorno do raft." - -#~ msgctxt "adaptive_layer_height_threshold description" -#~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." -#~ msgstr "Limite até onde se usa uma camada menor ou não. Este número é comparado à tangente da ladeira mais vertical da camada." - -#~ msgctxt "wireframe_roof_outer_delay description" -#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." -#~ msgstr "El tiempo empleado en los perímetros exteriores del agujero que se convertirá en un techo. Cuanto mayor sea el tiempo, mejor será la conexión. Solo se aplica a la impresión de alambre." - -#~ msgctxt "max_skin_angle_for_expansion description" -#~ msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal, while an angle of 90° is vertical." -#~ msgstr "Superfícies Superiores e/ou Inferiores de seu objeto com um ângulo maior que este ajuste não terão seus contornos superior/inferior expandidos. Isto evita que expandam as áreas estreitas de contorno que são criadas quando a superfície do modelo tem uma inclinação praticamente vertical. Um ângulo de 0° é horizontal, um ângulo de 90° é vertical." - -#~ msgctxt "support_tree_enable label" -#~ msgid "Tree Support" -#~ msgstr "Suporte de Árvore" - -#~ msgctxt "support_tree_angle label" -#~ msgid "Tree Support Branch Angle" -#~ msgstr "Ângulo do Galho do Suporte em Árvore" - -#~ msgctxt "support_tree_branch_diameter label" -#~ msgid "Tree Support Branch Diameter" -#~ msgstr "Diâmetro de Galho do Suporte em Árvore" - -#~ msgctxt "support_tree_branch_diameter_angle label" -#~ msgid "Tree Support Branch Diameter Angle" -#~ msgstr "Ângulo do Diâmetro do Galho do Suporte em Árvore" - -#~ msgctxt "support_tree_branch_distance label" -#~ msgid "Tree Support Branch Distance" -#~ msgstr "Distância dos Galhos do Suporte em Árvore" - -#~ msgctxt "support_tree_collision_resolution label" -#~ msgid "Tree Support Collision Resolution" -#~ msgstr "Resolução de Colisão do Suporte em Árvore" - -#~ msgctxt "support_tree_max_diameter label" -#~ msgid "Tree Support Trunk Diameter" -#~ msgstr "Diâmetro de Tronco do Suporte em Árvore" - -#~ msgctxt "support_tree_wall_count label" -#~ msgid "Tree Support Wall Line Count" -#~ msgstr "Número de Filetes da Parede do Suporte em Árvore" - -#~ msgctxt "support_tree_wall_thickness label" -#~ msgid "Tree Support Wall Thickness" -#~ msgstr "Espessura de Parede do Suporte em Árvore" - -#~ msgctxt "adaptive_layer_height_enabled label" -#~ msgid "Use adaptive layers" -#~ msgstr "Usar camadas adaptativas" - -#~ msgctxt "relative_extrusion description" -#~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any Gcode script is output." -#~ msgstr "Usar extrusão relativa ao invés de absoluta. Usar passos de extrusor relativos permite pós-processamento do G-Code mais fácil. No entanto, não é suportado por todas as impressoras e pode produzir desvios bem pequenos na quantidade de material depositado comparado aos passos de extrusor absolutos. Independente deste ajuste, o modo de extrusão sempre será configurado para absoluto antes que qualquer script de G-Code seja escrito." - -#~ msgctxt "wireframe_bottom_delay label" -#~ msgid "WP Bottom Delay" -#~ msgstr "Espera da Base de IA" - -#~ msgctxt "wireframe_printspeed_bottom label" -#~ msgid "WP Bottom Printing Speed" -#~ msgstr "Velocidade de Impressão da Base da IA" - -#~ msgctxt "wireframe_flow_connection label" -#~ msgid "WP Connection Flow" -#~ msgstr "Fluxo de Conexão da IA" - -#~ msgctxt "wireframe_height label" -#~ msgid "WP Connection Height" -#~ msgstr "Altura da Conexão IA" - -#~ msgctxt "wireframe_printspeed_down label" -#~ msgid "WP Downward Printing Speed" -#~ msgstr "Velocidade de Impressão Descendente de IA" - -#~ msgctxt "wireframe_drag_along label" -#~ msgid "WP Drag Along" -#~ msgstr "Arrasto de IA" - -#~ msgctxt "wireframe_up_half_speed label" -#~ msgid "WP Ease Upward" -#~ msgstr "Facilitador Ascendente da IA" - -#~ msgctxt "wireframe_fall_down label" -#~ msgid "WP Fall Down" -#~ msgstr "Queda de IA" - -#~ msgctxt "wireframe_flat_delay label" -#~ msgid "WP Flat Delay" -#~ msgstr "Espera Plana de IA" - -#~ msgctxt "wireframe_flow_flat label" -#~ msgid "WP Flat Flow" -#~ msgstr "Fluxo Plano de IA" - -#~ msgctxt "wireframe_flow label" -#~ msgid "WP Flow" -#~ msgstr "Fluxo da IA" - -#~ msgctxt "wireframe_printspeed_flat label" -#~ msgid "WP Horizontal Printing Speed" -#~ msgstr "Velocidade de Impressão Horizontal de IA" - -#~ msgctxt "wireframe_top_jump label" -#~ msgid "WP Knot Size" -#~ msgstr "Tamanho do Nó de IA" - -#~ msgctxt "wireframe_nozzle_clearance label" -#~ msgid "WP Nozzle Clearance" -#~ msgstr "Espaço Livre para o Bico em IA" - -#~ msgctxt "wireframe_roof_drag_along label" -#~ msgid "WP Roof Drag Along" -#~ msgstr "Arrasto do Topo de IA" - -#~ msgctxt "wireframe_roof_fall_down label" -#~ msgid "WP Roof Fall Down" -#~ msgstr "Queda do Topo de IA" - -#~ msgctxt "wireframe_roof_inset label" -#~ msgid "WP Roof Inset Distance" -#~ msgstr "Distância de Penetração do Teto da IA" - -#~ msgctxt "wireframe_roof_outer_delay label" -#~ msgid "WP Roof Outer Delay" -#~ msgstr "Retardo exterior del techo en IA" - -#~ msgctxt "wireframe_printspeed label" -#~ msgid "WP Speed" -#~ msgstr "Velocidade da IA" - -#~ msgctxt "wireframe_straight_before_down label" -#~ msgid "WP Straighten Downward Lines" -#~ msgstr "Endireitar Filetes Descendentes de IA" - -#~ msgctxt "wireframe_strategy label" -#~ msgid "WP Strategy" -#~ msgstr "Estratégia de IA" - -#~ msgctxt "wireframe_top_delay label" -#~ msgid "WP Top Delay" -#~ msgstr "Espera do Topo de IA" - -#~ msgctxt "wireframe_printspeed_up label" -#~ msgid "WP Upward Printing Speed" -#~ msgstr "Velocidade de Impressão Ascendente da IA" - -#, fuzzy -#~ msgctxt "material_bed_temp_wait label" -#~ msgid "Wait for build plate heatup" -#~ msgstr "Aguardar o aquecimento do bico" - -#~ msgctxt "material_print_temp_wait label" -#~ msgid "Wait for nozzle heatup" -#~ msgstr "Aguardar o aquecimento do bico" - -#~ msgctxt "wall_overhang_angle description" -#~ msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging." -#~ msgstr "Paredes que têm inclinação maior que este ângulo serão impressas usando ajustes de seção pendente de parede. Quando o valor for 90, nenhuma parede será tratada como seção pendente." - -#~ msgctxt "support_interface_skip_height description" -#~ msgid "When checking where there's model above the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -#~ msgstr "Quando se verificar onde há modelo sobre suporte, use passos da altura dada. Valores baixos vão fatiar mais lentamente, enquanto valores altos podem fazer o suporte normal ser impresso em lugares onde deveria haver interface de suporte." - -#~ msgctxt "retraction_combing_max_distance description" -#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." -#~ msgstr "Quando não-zero, os movimentos de percurso de combing que são maiores que esta distância usarão retração." - -#~ msgctxt "z_offset_taper_layers description" -#~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print." -#~ msgstr "Quando não for zero, o deslocamento em Z é reduzido a zero depois deste número de camadas. O valor zero significa que o deslocamento em Z permanece constante para todas as camadas da impressão." - -#~ msgctxt "skin_no_small_gaps_heuristic description" -#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." -#~ msgstr "Quando o modelo tem pequenas lacunas verticais, aproximadamente 5% de tempo de computação adicional pode ser gasto ao gerar camada externa superior e inferior nestes espaços estreitos. Em tal caso, desabilite este ajuste." - -#~ msgctxt "wipe_hop_enable description" -#~ msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -#~ msgstr "Sempre que uma retração é feita, a posição Z do extrusor é aumentada para aumentar a distância entre o bico e a impressão. Isso evita que o bico bata na impressão durante movimentos de percurso, reduzindo a chance de descolar a impressão da plataforma." - -#~ msgctxt "clean_between_layers description" -#~ msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." -#~ msgstr "Incluir ou não o G-Code para movimento de limpeza de bico (wipe) entre camadas. Habilitar este ajuste pode influenciar o comportamento de retração na mudança de camadas. Por favor use os ajustes de Retração de Limpeza para controlar retração nas camadas onde o script de limpeza funcionará." - -#~ msgctxt "print_sequence description" -#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -#~ msgstr "Esta opção decide se vocÊ deseja imprimir todos os modelos de uma só vez ou um modelo de cada vez. O modo de um modelo de cada vez só é possível se os modelos estiverem separados de tal forma que a cabeça de impressão possa se mover no meio e todos os modelos sejam mais baixos que a distância entre o bico e os carros X ou Y." - -#~ msgctxt "print_sequence description" -#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes. " -#~ msgstr "Opção que dz se se imprime todos os modelos uma camada por vez, ou se se espera que cada um termine para ir para o próximo. Modo um de cada vez é possível se a) somente um extrusor estiver habilitado e b) todos os modelos estiverem separados de maneira que a cabeça de impressão possa se mover entre eles e todos os modelos forem mais baixos que a distância entre o bico e os eixos X/Y." - -#~ msgctxt "spaghetti_infill_stepped description" -#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." -#~ msgstr "Opção para ou se imprimir o preenchimento espaguete em passos discretos ou extrudar todo o filamento de preenchimento no final da impressão." - -#~ msgctxt "support_interface_line_width description" -#~ msgid "Width of a single support interface line." -#~ msgstr "Largura de extrusão de um filete usado na interface da estrutura de suporte com o modelo." - -#~ msgctxt "dual_pre_wipe label" -#~ msgid "Wipe Nozzle After Switch" -#~ msgstr "Limpar Bico Depois da Troca" - -#~ msgctxt "wipe_hop_enable label" -#~ msgid "Wipe Z Hop When Retracted" -#~ msgstr "Salto Z da Limpeza Quando Retraída" - -#~ msgctxt "wireframe_enabled label" -#~ msgid "Wire Printing" -#~ msgstr "Impressão em Arame" - -#~ msgctxt "z_offset_taper_layers label" -#~ msgid "Z Offset Taper Layers" -#~ msgstr "Camadas de Amenização do Deslocamento Z" - -#~ msgctxt "support_zag_skip_count label" -#~ msgid "ZigZag Connection Skip Count" -#~ msgstr "Contagem de Pulos das Conexões de Ziguezague" - -#~ msgctxt "blackmagic description" -#~ msgid "category_blackmagic" -#~ msgstr "categoria_blackmagic" - -#~ msgctxt "meshfix description" -#~ msgid "category_fixes" -#~ msgstr "reparos_de_categoria" - -#~ msgctxt "experimental description" -#~ msgid "experimental!" -#~ msgstr "experimental!" +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Duração de reset do fluxo" diff --git a/resources/i18n/pt_BR/gradual_flow_settings.def.json.po b/resources/i18n/pt_BR/gradual_flow_settings.def.json.po deleted file mode 100644 index b6a342e7f76..00000000000 --- a/resources/i18n/pt_BR/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,54 +0,0 @@ -# -msgid "" -msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" -"PO-Revision-Date: 2023-11-24 12:51+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duração de cada passo na alteração de fluxo gradual" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Habilita mudanças graduais de fluxo. Quando habilitado, o fluxo é gradualmente aumentado ou reduzido para o fluxo alvo. Útil para impressoras com tubo bowden onde o fluxo não é imediatamente alterado quando o motor do extrusor inicia ou para." - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Para qualquer movimento mais longo que este valor, o fluxo material é resetado para o fluxo-alvo do percurso." - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Tamanho de passo da discretização de fluxo gradual" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Fluxo gradual habilitado" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Aceleração máxima do fluxo gradual" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Aceleração máxima de fluxo da camada inicial" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Aceleração máxima para alterações de fluxo gradual" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Velocidade mínima para alterações graduais de fluxo na primeira camada" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Duração de reset do fluxo" diff --git a/resources/i18n/pt_PT/fdmprinter.def.json.po b/resources/i18n/pt_PT/fdmprinter.def.json.po index 4dfc6132853..dea593ffe45 100644 --- a/resources/i18n/pt_PT/fdmprinter.def.json.po +++ b/resources/i18n/pt_PT/fdmprinter.def.json.po @@ -5488,82 +5488,42 @@ msgctxt "travel description" msgid "travel" msgstr "deslocação" -#~ msgctxt "support_bottom_distance description" -#~ msgid "Distance from the print to the bottom of the support." -#~ msgstr "A distância entre a impressão e a parte inferior do suporte." +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duração de cada etapa da alteração do fluxo gradual" -#~ msgctxt "support_z_distance description" -#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -#~ msgstr "A distância entre a parte superior/inferior da estrutura de suporte e a impressão. Esta folga permite retirar os suportes depois de o modelo ser impresso. Este valor é arredondado para um múltiplo da espessura da camada." +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Permite alterar gradualmente o fluxo. Quando ativado, o fluxo é gradualmente aumentado/diminuído até atingir o fluxo-alvo. Esta funcionalidade é útil para impressoras com um tubo Bowden, onde o fluxo não é alterado imediatamente quando o motor extusor para/arranca." -#~ msgctxt "gradual_flow_discretisation_step_size description" -#~ msgid "Duration of each step in the gradual flow change" -#~ msgstr "Duração de cada etapa da alteração do fluxo gradual" +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Para qualquer movimento de deslocação superior a este valor, o fluxo de material é reposto para o fluxo de destino do percurso." -#~ msgctxt "gradual_flow_enabled description" -#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -#~ msgstr "Permite alterar gradualmente o fluxo. Quando ativado, o fluxo é gradualmente aumentado/diminuído até atingir o fluxo-alvo. Esta funcionalidade é útil para impressoras com um tubo Bowden, onde o fluxo não é alterado imediatamente quando o motor extusor para/arranca." +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Tamanho da etapa de discretização do fluxo gradual" -#~ msgctxt "reset_flow_duration description" -#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -#~ msgstr "Para qualquer movimento de deslocação superior a este valor, o fluxo de material é reposto para o fluxo de destino do percurso." +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Fluxo gradual ativado" -#~ msgctxt "gradual_flow_discretisation_step_size label" -#~ msgid "Gradual flow discretisation step size" -#~ msgstr "Tamanho da etapa de discretização do fluxo gradual" +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Aceleração máxima do fluxo gradual" -#~ msgctxt "gradual_flow_enabled label" -#~ msgid "Gradual flow enabled" -#~ msgstr "Fluxo gradual ativado" +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Aceleração do fluxo máximo da camada inicial" -#~ msgctxt "max_flow_acceleration label" -#~ msgid "Gradual flow max acceleration" -#~ msgstr "Aceleração máxima do fluxo gradual" +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Aceleração máxima para alterações do fluxo gradual" -#~ msgctxt "layer_0_max_flow_acceleration label" -#~ msgid "Initial layer max flow acceleration" -#~ msgstr "Aceleração do fluxo máximo da camada inicial" +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Velocidade mínima para alterações do fluxo gradual da primeira camada" -#~ msgctxt "max_flow_acceleration description" -#~ msgid "Maximum acceleration for gradual flow changes" -#~ msgstr "Aceleração máxima para alterações do fluxo gradual" - -#~ msgctxt "layer_0_max_flow_acceleration description" -#~ msgid "Minimum speed for gradual flow changes for the first layer" -#~ msgstr "Velocidade mínima para alterações do fluxo gradual da primeira camada" - -#~ msgctxt "prime_tower_base_curve_magnitude label" -#~ msgid "Prime Tower Base Curve Magnitude" -#~ msgstr "Magnitude da Curva da Base da Torre de Primagem" - -#~ msgctxt "prime_tower_brim_enable label" -#~ msgid "Prime Tower Brim" -#~ msgstr "Aba da torre de preparação" - -#~ msgctxt "prime_tower_brim_enable description" -#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -#~ msgstr "As torres de preparação poderão necessitar de uma aderência adicional concedida por uma aba, ainda que o modelo não o necessite. Atualmente, não é possível utilizá-la com o tipo de aderência \"Raft\"." - -#~ msgctxt "prime_tower_brim_enable description" -#~ msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -#~ msgstr "As torres de primagem podem precisar da aderência extra fornecida por uma aba ou jangada, mesmo que o modelo não necessite." - -#~ msgctxt "reset_flow_duration label" -#~ msgid "Reset flow duration" -#~ msgstr "Repor duração do fluxo" - -#~ msgctxt "prime_tower_base_height description" -#~ msgid "The height of the prime tower base." -#~ msgstr "A altura da base da torre de primagem." - -#~ msgctxt "prime_tower_base_curve_magnitude description" -#~ msgid "The magnitude factor used for the curve of the prime tower foot." -#~ msgstr "O fator de magnitude usado para a curva do pé da torre de primagem." - -#~ msgctxt "material_print_temperature_layer_0 description" -#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -#~ msgstr "A temperatura utilizada para imprimir a primeira camada. Esta é definida como 0 para desativar o manuseamento especial da camada inicial." - -#~ msgctxt "prime_tower_base_size description" -#~ msgid "The width of the prime tower base." -#~ msgstr "A largura da base da torre de primagem." +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Repor duração do fluxo" diff --git a/resources/i18n/pt_PT/gradual_flow_settings.def.json.po b/resources/i18n/pt_PT/gradual_flow_settings.def.json.po deleted file mode 100644 index f7803061ca6..00000000000 --- a/resources/i18n/pt_PT/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,54 +0,0 @@ -# -msgid "" -msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" -"PO-Revision-Date: 2023-11-24 12:51+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duração de cada etapa da alteração do fluxo gradual" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Permite alterar gradualmente o fluxo. Quando ativado, o fluxo é gradualmente aumentado/diminuído até atingir o fluxo-alvo. Esta funcionalidade é útil para impressoras com um tubo Bowden, onde o fluxo não é alterado imediatamente quando o motor extusor para/arranca." - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Para qualquer movimento de deslocação superior a este valor, o fluxo de material é reposto para o fluxo de destino do percurso." - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Tamanho da etapa de discretização do fluxo gradual" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Fluxo gradual ativado" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Aceleração máxima do fluxo gradual" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Aceleração do fluxo máximo da camada inicial" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Aceleração máxima para alterações do fluxo gradual" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Velocidade mínima para alterações do fluxo gradual da primeira camada" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Repor duração do fluxo" diff --git a/resources/i18n/ru_RU/fdmprinter.def.json.po b/resources/i18n/ru_RU/fdmprinter.def.json.po index 4af756b3209..99036d48652 100644 --- a/resources/i18n/ru_RU/fdmprinter.def.json.po +++ b/resources/i18n/ru_RU/fdmprinter.def.json.po @@ -5488,82 +5488,42 @@ msgctxt "travel description" msgid "travel" msgstr "перемещение" -#~ msgctxt "support_bottom_distance description" -#~ msgid "Distance from the print to the bottom of the support." -#~ msgstr "Расстояние между печатаемой моделью и низом поддержки." +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Продолжительность каждого этапа постепенного изменения потока" -#~ msgctxt "support_z_distance description" -#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -#~ msgstr "Дистанция от дна/крышки структуры поддержек до печати. Этот зазор упрощает извлечение поддержек после окончания печати модели. Это значение округляется до числа, кратного высоте слоя." +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Включите постепенное изменение потока. Если эта функция включена, поток постепенно увеличивается/уменьшается до целевого значения. Это полезно для принтеров с трубкой Боудена, где поток не меняется сразу при запуске/остановке двигателя экструдера." -#~ msgctxt "gradual_flow_discretisation_step_size description" -#~ msgid "Duration of each step in the gradual flow change" -#~ msgstr "Продолжительность каждого этапа постепенного изменения потока" +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Для любого перемещения, превышающего это значение, поток материала сбрасывается до целевого потока пути" -#~ msgctxt "gradual_flow_enabled description" -#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -#~ msgstr "Включите постепенное изменение потока. Если эта функция включена, поток постепенно увеличивается/уменьшается до целевого значения. Это полезно для принтеров с трубкой Боудена, где поток не меняется сразу при запуске/остановке двигателя экструдера." +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Размер шага дискретизации постепенного потока" -#~ msgctxt "reset_flow_duration description" -#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -#~ msgstr "Для любого перемещения, превышающего это значение, поток материала сбрасывается до целевого потока пути" +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Постепенный поток включен" -#~ msgctxt "gradual_flow_discretisation_step_size label" -#~ msgid "Gradual flow discretisation step size" -#~ msgstr "Размер шага дискретизации постепенного потока" +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Максимальное ускорение постепенного потока" -#~ msgctxt "gradual_flow_enabled label" -#~ msgid "Gradual flow enabled" -#~ msgstr "Постепенный поток включен" +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Максимальное ускорение потока начального слоя" -#~ msgctxt "max_flow_acceleration label" -#~ msgid "Gradual flow max acceleration" -#~ msgstr "Максимальное ускорение постепенного потока" +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Максимальное ускорение для плавного изменения потока" -#~ msgctxt "layer_0_max_flow_acceleration label" -#~ msgid "Initial layer max flow acceleration" -#~ msgstr "Максимальное ускорение потока начального слоя" +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Минимальная скорость для постепенного изменения потока для первого слоя" -#~ msgctxt "max_flow_acceleration description" -#~ msgid "Maximum acceleration for gradual flow changes" -#~ msgstr "Максимальное ускорение для плавного изменения потока" - -#~ msgctxt "layer_0_max_flow_acceleration description" -#~ msgid "Minimum speed for gradual flow changes for the first layer" -#~ msgstr "Минимальная скорость для постепенного изменения потока для первого слоя" - -#~ msgctxt "prime_tower_base_curve_magnitude label" -#~ msgid "Prime Tower Base Curve Magnitude" -#~ msgstr "Коэффициент кривизны основания башни подготовки" - -#~ msgctxt "prime_tower_brim_enable label" -#~ msgid "Prime Tower Brim" -#~ msgstr "Кайма черновой башни" - -#~ msgctxt "prime_tower_brim_enable description" -#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -#~ msgstr "Для черновых башен может потребоваться дополнительная адгезия с помощью каймы, даже если для модели это не требуется. В данный момент не может использоваться с типом адгезии с подложкой." - -#~ msgctxt "prime_tower_brim_enable description" -#~ msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -#~ msgstr "Башни подготовки могут требовать дополнительной адгезии с помощью бортика или рафта, даже если модель это не требует." - -#~ msgctxt "reset_flow_duration label" -#~ msgid "Reset flow duration" -#~ msgstr "Сбросить продолжительность потока" - -#~ msgctxt "prime_tower_base_height description" -#~ msgid "The height of the prime tower base." -#~ msgstr "Высота основания башни подготовки." - -#~ msgctxt "prime_tower_base_curve_magnitude description" -#~ msgid "The magnitude factor used for the curve of the prime tower foot." -#~ msgstr "Множитель для кривизны подножия башни подготовки." - -#~ msgctxt "material_print_temperature_layer_0 description" -#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -#~ msgstr "Температура при печати первого слоя. Установите в 0 для отключения специального поведения на первом слое." - -#~ msgctxt "prime_tower_base_size description" -#~ msgid "The width of the prime tower base." -#~ msgstr "Ширина основания башни подготовки." +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Сбросить продолжительность потока" diff --git a/resources/i18n/ru_RU/gradual_flow_settings.def.json.po b/resources/i18n/ru_RU/gradual_flow_settings.def.json.po deleted file mode 100644 index ddb6854a883..00000000000 --- a/resources/i18n/ru_RU/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,54 +0,0 @@ -# -msgid "" -msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" -"PO-Revision-Date: 2023-11-24 12:51+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Продолжительность каждого этапа постепенного изменения потока" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Включите постепенное изменение потока. Если эта функция включена, поток постепенно увеличивается/уменьшается до целевого значения. Это полезно для принтеров с трубкой Боудена, где поток не меняется сразу при запуске/остановке двигателя экструдера." - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Для любого перемещения, превышающего это значение, поток материала сбрасывается до целевого потока пути" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Размер шага дискретизации постепенного потока" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Постепенный поток включен" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Максимальное ускорение постепенного потока" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Максимальное ускорение потока начального слоя" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Максимальное ускорение для плавного изменения потока" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Минимальная скорость для постепенного изменения потока для первого слоя" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Сбросить продолжительность потока" diff --git a/resources/i18n/tr_TR/fdmprinter.def.json.po b/resources/i18n/tr_TR/fdmprinter.def.json.po index deb684e9d93..b57a0cd0bb7 100644 --- a/resources/i18n/tr_TR/fdmprinter.def.json.po +++ b/resources/i18n/tr_TR/fdmprinter.def.json.po @@ -5488,82 +5488,42 @@ msgctxt "travel description" msgid "travel" msgstr "hareket" -#~ msgctxt "support_bottom_distance description" -#~ msgid "Distance from the print to the bottom of the support." -#~ msgstr "Baskıdan desteğin altına olan mesafe." +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Kademeli akış değişimindeki her adımın süresi" -#~ msgctxt "support_z_distance description" -#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -#~ msgstr "Destek yapısının üst/alt kısmından baskıya olan mesafe. Bu boşluk, model yazdırıldıktan sonra desteklerin sökülmesi için açıklık sağlar. Bu değer, katman yüksekliğinin iki katına kadar yuvarlanır." +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Kademeli akış değişikliklerini etkinleştir. Bu ayar etkinleştirildiğinde, akış, hedef akışa doğru kademeli olarak artırılır/azaltılır. Bu, ekstruder motoru çalıştırıldığında/durdurulduğunda akışın hemen değişmediği, bowden tüplü yazıcılar için kullanışlı bir özelliktir." -#~ msgctxt "gradual_flow_discretisation_step_size description" -#~ msgid "Duration of each step in the gradual flow change" -#~ msgstr "Kademeli akış değişimindeki her adımın süresi" +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Bu değerden daha uzun herhangi bir hareket için, malzeme akışı hedef akışına sıfırlanır" -#~ msgctxt "gradual_flow_enabled description" -#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -#~ msgstr "Kademeli akış değişikliklerini etkinleştir. Bu ayar etkinleştirildiğinde, akış, hedef akışa doğru kademeli olarak artırılır/azaltılır. Bu, ekstruder motoru çalıştırıldığında/durdurulduğunda akışın hemen değişmediği, bowden tüplü yazıcılar için kullanışlı bir özelliktir." +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Kademeli akış ayrıştırma adım boyutu" -#~ msgctxt "reset_flow_duration description" -#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -#~ msgstr "Bu değerden daha uzun herhangi bir hareket için, malzeme akışı hedef akışına sıfırlanır" +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Kademeli akış etkin" -#~ msgctxt "gradual_flow_discretisation_step_size label" -#~ msgid "Gradual flow discretisation step size" -#~ msgstr "Kademeli akış ayrıştırma adım boyutu" +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Kademeli akış maksimum ivme" -#~ msgctxt "gradual_flow_enabled label" -#~ msgid "Gradual flow enabled" -#~ msgstr "Kademeli akış etkin" +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "İlk katman maksimum akış ivmesi" -#~ msgctxt "max_flow_acceleration label" -#~ msgid "Gradual flow max acceleration" -#~ msgstr "Kademeli akış maksimum ivme" +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Kademeli akış değişiklikleri için maksimum ivme" -#~ msgctxt "layer_0_max_flow_acceleration label" -#~ msgid "Initial layer max flow acceleration" -#~ msgstr "İlk katman maksimum akış ivmesi" +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "İlk katmandaki kademeli akış değişiklikleri için minimum hız" -#~ msgctxt "max_flow_acceleration description" -#~ msgid "Maximum acceleration for gradual flow changes" -#~ msgstr "Kademeli akış değişiklikleri için maksimum ivme" - -#~ msgctxt "layer_0_max_flow_acceleration description" -#~ msgid "Minimum speed for gradual flow changes for the first layer" -#~ msgstr "İlk katmandaki kademeli akış değişiklikleri için minimum hız" - -#~ msgctxt "prime_tower_base_curve_magnitude label" -#~ msgid "Prime Tower Base Curve Magnitude" -#~ msgstr "Başlangıç Kulesi Taban Eğim Büyüklüğü" - -#~ msgctxt "prime_tower_brim_enable label" -#~ msgid "Prime Tower Brim" -#~ msgstr "Astarlama Direği Kenarı" - -#~ msgctxt "prime_tower_brim_enable description" -#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -#~ msgstr "Model ihtiyaç duymasa da astarlama direkleri bir kenarın sağladığı ekstra yapışkanlığa ihtiyaç duyabilir. Şu anda \"radye\" yapışma tipi ile birlikte kullanılamamaktadır." - -#~ msgctxt "prime_tower_brim_enable description" -#~ msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -#~ msgstr "Baskı modeli gerektirmese bile, başlangıç kuleleri modelin ekstra yapışmasını sağlamak için bir kenarlık veya sal gerektirebilir." - -#~ msgctxt "reset_flow_duration label" -#~ msgid "Reset flow duration" -#~ msgstr "Akış süresini sıfırla" - -#~ msgctxt "prime_tower_base_height description" -#~ msgid "The height of the prime tower base." -#~ msgstr "Başlangıç kulesi tabanının yüksekliği." - -#~ msgctxt "prime_tower_base_curve_magnitude description" -#~ msgid "The magnitude factor used for the curve of the prime tower foot." -#~ msgstr "Başlangıç kulesi ayağının eğrisi için kullanılan büyüklük faktörü." - -#~ msgctxt "material_print_temperature_layer_0 description" -#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -#~ msgstr "İlk katmanı yazdırmak için kullanılan sıcaklık. İlk katmanın özel kullanımını devre dışı bırakmak için 0’a ayarlayın." - -#~ msgctxt "prime_tower_base_size description" -#~ msgid "The width of the prime tower base." -#~ msgstr "Başlangıç kulesi tabanının genişliği." +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Akış süresini sıfırla" diff --git a/resources/i18n/tr_TR/gradual_flow_settings.def.json.po b/resources/i18n/tr_TR/gradual_flow_settings.def.json.po deleted file mode 100644 index 1d72943b18a..00000000000 --- a/resources/i18n/tr_TR/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,54 +0,0 @@ -# -msgid "" -msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" -"PO-Revision-Date: 2023-11-24 12:51+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Kademeli akış değişimindeki her adımın süresi" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Kademeli akış değişikliklerini etkinleştir. Bu ayar etkinleştirildiğinde, akış, hedef akışa doğru kademeli olarak artırılır/azaltılır. Bu, ekstruder motoru çalıştırıldığında/durdurulduğunda akışın hemen değişmediği, bowden tüplü yazıcılar için kullanışlı bir özelliktir." - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Bu değerden daha uzun herhangi bir hareket için, malzeme akışı hedef akışına sıfırlanır" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Kademeli akış ayrıştırma adım boyutu" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Kademeli akış etkin" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Kademeli akış maksimum ivme" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "İlk katman maksimum akış ivmesi" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Kademeli akış değişiklikleri için maksimum ivme" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "İlk katmandaki kademeli akış değişiklikleri için minimum hız" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Akış süresini sıfırla" diff --git a/resources/i18n/zh_CN/fdmprinter.def.json.po b/resources/i18n/zh_CN/fdmprinter.def.json.po index f580058a272..1042199d5b5 100644 --- a/resources/i18n/zh_CN/fdmprinter.def.json.po +++ b/resources/i18n/zh_CN/fdmprinter.def.json.po @@ -5488,82 +5488,42 @@ msgctxt "travel description" msgid "travel" msgstr "空驶" -#~ msgctxt "support_bottom_distance description" -#~ msgid "Distance from the print to the bottom of the support." -#~ msgstr "从打印品到支撑底部的距离。" +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "渐变流量每一步的持续时间" -#~ msgctxt "support_z_distance description" -#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -#~ msgstr "支撑结构顶部/底部到打印品之间的距离。 该间隙提供了在模型打印完成后移除支撑的空隙。 该值舍入为层高的倍数。" +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "启用渐变流量。当启用时,流量逐渐增加/降低到目标流量。这对于有鲍登管的打印机很有用,当挤出机电机启动/停止时,流量不会立即改变。" -#~ msgctxt "gradual_flow_discretisation_step_size description" -#~ msgid "Duration of each step in the gradual flow change" -#~ msgstr "渐变流量每一步的持续时间" +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "对于任何超过此值的行程移动,材料流量将重置为路径目标流量" -#~ msgctxt "gradual_flow_enabled description" -#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -#~ msgstr "启用渐变流量。当启用时,流量逐渐增加/降低到目标流量。这对于有鲍登管的打印机很有用,当挤出机电机启动/停止时,流量不会立即改变。" +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "渐变流量离散步长" -#~ msgctxt "reset_flow_duration description" -#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -#~ msgstr "对于任何超过此值的行程移动,材料流量将重置为路径目标流量" +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "渐变流量已启用" -#~ msgctxt "gradual_flow_discretisation_step_size label" -#~ msgid "Gradual flow discretisation step size" -#~ msgstr "渐变流量离散步长" +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "渐变流量最大加速度" -#~ msgctxt "gradual_flow_enabled label" -#~ msgid "Gradual flow enabled" -#~ msgstr "渐变流量已启用" +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "初始层最大流量加速度" -#~ msgctxt "max_flow_acceleration label" -#~ msgid "Gradual flow max acceleration" -#~ msgstr "渐变流量最大加速度" +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "渐变流量的最大加速度" -#~ msgctxt "layer_0_max_flow_acceleration label" -#~ msgid "Initial layer max flow acceleration" -#~ msgstr "初始层最大流量加速度" +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "第一层渐变流量的最小速度" -#~ msgctxt "max_flow_acceleration description" -#~ msgid "Maximum acceleration for gradual flow changes" -#~ msgstr "渐变流量的最大加速度" - -#~ msgctxt "layer_0_max_flow_acceleration description" -#~ msgid "Minimum speed for gradual flow changes for the first layer" -#~ msgstr "第一层渐变流量的最小速度" - -#~ msgctxt "prime_tower_base_curve_magnitude label" -#~ msgid "Prime Tower Base Curve Magnitude" -#~ msgstr "底漆塔座曲率大小" - -#~ msgctxt "prime_tower_brim_enable label" -#~ msgid "Prime Tower Brim" -#~ msgstr "装填塔 Brim" - -#~ msgctxt "prime_tower_brim_enable description" -#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -#~ msgstr "装填塔可能需要 Brim 提供额外附着力,无论模型是否需要。目前不可与 'Raft' 附着类型配合使用。" - -#~ msgctxt "prime_tower_brim_enable description" -#~ msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." -#~ msgstr "即使模型不需要,底漆塔也可能需要边缘或筏的额外粘附力。" - -#~ msgctxt "reset_flow_duration label" -#~ msgid "Reset flow duration" -#~ msgstr "重置流量持续时间" - -#~ msgctxt "prime_tower_base_height description" -#~ msgid "The height of the prime tower base." -#~ msgstr "底漆塔座的高度。" - -#~ msgctxt "prime_tower_base_curve_magnitude description" -#~ msgid "The magnitude factor used for the curve of the prime tower foot." -#~ msgstr "用于底漆塔脚曲线的幅度因子。" - -#~ msgctxt "material_print_temperature_layer_0 description" -#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -#~ msgstr "用于打印第一层的温度。 设为 0 即禁用对起始层的特别处理。" - -#~ msgctxt "prime_tower_base_size description" -#~ msgid "The width of the prime tower base." -#~ msgstr "底漆塔座的宽度。" +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "重置流量持续时间" diff --git a/resources/i18n/zh_CN/gradual_flow_settings.def.json.po b/resources/i18n/zh_CN/gradual_flow_settings.def.json.po deleted file mode 100644 index cf0a6adfd49..00000000000 --- a/resources/i18n/zh_CN/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,54 +0,0 @@ -# -msgid "" -msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" -"PO-Revision-Date: 2023-11-24 12:51+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "渐变流量每一步的持续时间" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "启用渐变流量。当启用时,流量逐渐增加/降低到目标流量。这对于有鲍登管的打印机很有用,当挤出机电机启动/停止时,流量不会立即改变。" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "对于任何超过此值的行程移动,材料流量将重置为路径目标流量" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "渐变流量离散步长" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "渐变流量已启用" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "渐变流量最大加速度" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "初始层最大流量加速度" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "渐变流量的最大加速度" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "第一层渐变流量的最小速度" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "重置流量持续时间" diff --git a/resources/i18n/zh_TW/fdmprinter.def.json.po b/resources/i18n/zh_TW/fdmprinter.def.json.po index 833e201794c..c92a7f861ac 100644 --- a/resources/i18n/zh_TW/fdmprinter.def.json.po +++ b/resources/i18n/zh_TW/fdmprinter.def.json.po @@ -5493,1082 +5493,42 @@ msgctxt "travel description" msgid "travel" msgstr "空跑" -#~ msgctxt "machine_head_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps excluded)." -#~ msgstr "列印頭 2D 輪廓圖(不包含風扇蓋)。" - -#~ msgctxt "machine_head_with_fans_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps included)." -#~ msgstr "列印頭 2D 輪廓圖(包含風扇蓋)。" - -#~ msgctxt "spaghetti_infill_extra_volume description" -#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." -#~ msgstr "一個用於調整每次進行義大利麵式填充時擠出總量的修正項。" - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive Layers Threshold" -#~ msgstr "適應性層高門檻值" - -#~ msgctxt "adaptive_layer_height_variation label" -#~ msgid "Adaptive layers maximum variation" -#~ msgstr "適應層高最大變化量" - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive layers threshold" -#~ msgstr "適應層高門檻值" - -#~ msgctxt "adaptive_layer_height_variation_step label" -#~ msgid "Adaptive layers variation step size" -#~ msgstr "適應層高變化幅度" - -#~ msgctxt "spaghetti_flow description" -#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." -#~ msgstr "調整義大利麵式填充的密度。注意,填充密度僅控制填充列印樣式的線條間距,而不是義大利麵式填充的擠出量。" - -#~ msgctxt "dual_pre_wipe description" -#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -#~ msgstr "切換擠出機後,在列印的第一個物件上擦拭噴頭上的滲出耗材。這會在滲出耗材對列印品表面品質造成最小損害的位置進行緩慢安全的擦拭動作。" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly label" -#~ msgid "Alternate Cross 3D Pockets" -#~ msgstr "交錯立體十字形氣囊" - -#~ msgctxt "skin_alternate_rotation label" -#~ msgid "Alternate Skin Rotation" -#~ msgstr "交替表層旋轉" - -#~ msgctxt "skin_alternate_rotation description" -#~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." -#~ msgstr "交替列印頂部/底部層的方向。通常它們只進行對角線列印。此設定添加純 X 和純 Y 方向。" - -#~ msgctxt "prime_tower_purge_volume description" -#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -#~ msgstr "在換料塔上進行擦拭時要清洗的耗材量。清洗可用於補償在噴頭不活動期間由於滲出而損失的耗材。" - -#~ msgctxt "hole_xy_offset description" -#~ msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes." -#~ msgstr "套用到每一層孔洞的偏移量。正值增加孔洞的大小,負值減小孔洞的大小。" - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" -#~ msgid "Apply the extruder offset to the coordinate system." -#~ msgstr "將擠出機偏移量套用到座標軸系統。" - -#~ msgctxt "material_flow_dependent_temperature label" -#~ msgid "Auto Temperature" -#~ msgstr "自動溫度" - -#~ msgctxt "bridge_wall_max_overhang label" -#~ msgid "Bridge Wall Max Overhang" -#~ msgstr "最大橋樑牆壁突出" - -#~ msgctxt "center_object label" -#~ msgid "Center object" -#~ msgstr "模型置中" - -#~ msgctxt "material_flow_dependent_temperature description" -#~ msgid "Change the temperature for each layer automatically with the average flow speed of that layer." -#~ msgstr "根據每一層的平均流速自動更改每層的溫度。" - -#~ msgctxt "prime_tower_circular label" -#~ msgid "Circular Prime Tower" -#~ msgstr "圓型換料塔" - -#~ msgctxt "retraction_combing description" -#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." -#~ msgstr "梳理模式讓噴頭空跑時保持在已列印的區域內。這導致較長的空跑距離但減少回抽的需求。如果關閉梳理模式,噴頭將會回抽耗材,直線移動到下一點。梳理模式可以避開頂部/底部表層,也可以只用在內部填充。注意「內部填充」選項的行為與舊版 Cura 的「表層以外區域」選項是完全相同的。" - -#~ msgctxt "retraction_combing description" -#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." -#~ msgstr "梳理可在空跑時讓噴頭保持在已列印區域內。這會使空跑距離稍微延長,但可減少回抽需求。如果關閉梳理,則耗材將回抽,且噴頭沿著直線移動到下一個點。也可以通過僅在填充內進行梳理避免梳理頂部/底部表層區域。" - -#~ msgctxt "wireframe_strategy option compensate" -#~ msgid "Compensate" -#~ msgstr "補償" - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" -#~ msgid "Compensate Inner Wall Overlaps" -#~ msgstr "補償內壁重疊" - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" -#~ msgid "Compensate Outer Wall Overlaps" -#~ msgstr "補償外壁重疊" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled label" -#~ msgid "Compensate Wall Overlaps" -#~ msgstr "補償牆壁重疊" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled description" -#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." -#~ msgstr "彌補牆壁重疊部分的流量。" - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" -#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." -#~ msgstr "列印內壁時如果該位置已經有牆壁存在,所進行的的流量補償。" - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" -#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." -#~ msgstr "列印外壁時如果該位置已經有牆壁存在,所進行的的流量補償。" - -#~ msgctxt "infill_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "立體同心圓" - -#~ msgctxt "support_bottom_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "同心 3D" - -#~ msgctxt "support_interface_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "同心 3D" - -#~ msgctxt "support_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "同心 3D" - -#~ msgctxt "support_roof_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "立體同心圓" - -#~ msgctxt "connect_skin_polygons description" -#~ msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happend midway over infill this feature can reduce the top surface quality." -#~ msgstr "將頂部/底部表層路徑相鄰的位置連接。同心模式時開啟此設定,可以大大地減少空跑時間。但因連接可能發生在填充途中,所以此功能可能降低頂部表層的品質。" - -#~ msgctxt "z_seam_corner description" -#~ msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner." -#~ msgstr "控制接縫是否受模型輪廓上的角影響。'無'表示轉角不影響接縫位置。'隱藏接縫'表示使用盡可能使用凹角做為接縫位置。'暴露接縫'表示盡可能使用凸角做為接縫位置。'隱藏或暴露接縫'則同時使用凹角和凸角做為接縫位置。" - -#~ msgctxt "machine_nozzle_cool_down_speed label" -#~ msgid "Cool down speed" -#~ msgstr "冷卻速度" - -#~ msgctxt "wireframe_top_jump description" -#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." -#~ msgstr "在上行線條的頂部創建一個小紐結,使連續的水平層有更好的機會與其連接。僅套用於鐵絲網列印。" - -#~ msgctxt "wireframe_bottom_delay description" -#~ msgid "Delay time after a downward move. Only applies to Wire Printing." -#~ msgstr "向下移動後的延遲時間。僅套用於鐵絲網列印。" - -#~ msgctxt "wireframe_top_delay description" -#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." -#~ msgstr "向上移動後的延遲時間,以便上行線條硬化。僅套用於鐵絲網列印。" - -#~ msgctxt "wireframe_flat_delay description" -#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." -#~ msgstr "兩個水平部分之間的延遲時間。引入這樣的延遲可以在連接點處與先前的層產生更好的附著,而太長的延遲會引起下垂。僅套用於鐵絲網列印。" - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "決定當多個網格重疊時此網格的優先等級。在多個網格重疊的區域中,將採用處理等級值最小的網格設定。高順位的填充網格將覆蓋掉低順位和普通順位網格的填充設定。" - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "決定當空間重疊時此網格的優先等級。在多個網格重疊的區域中,處理等級值較低的網格將優先處理。高順位的填充網格將修改低順位和普通順位網格的填充。" - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "確定哪個填充網格在另一個填充網格的填充內。順序較高的填充網格將修改順序較低的填充網格以及普通網格的填充。" - -#~ msgctxt "machine_disallowed_areas label" -#~ msgid "Disallowed areas" -#~ msgstr "不允許區域" - -#~ msgctxt "wireframe_nozzle_clearance description" -#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." -#~ msgstr "噴頭和水平下行線之間的距離。較大的間隙會讓斜下行線角度較平緩,進而使第二層的上行連接較少。僅套用於鐵絲網列印。" - -#~ msgctxt "support_bottom_distance description" -#~ msgid "Distance from the print to the bottom of the support." -#~ msgstr "從列印品到支撐底部的距離。" - -#~ msgctxt "support_z_distance description" -#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -#~ msgstr "支撐結構距離模型頂部/底部的距離。這一個小的差距使得它更容易被去除,這個數值會被無條件進位到層高的倍數。" - -#~ msgctxt "wireframe_up_half_speed description" -#~ msgid "" -#~ "Distance of an upward move which is extruded with half speed.\n" -#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -#~ msgstr "" -#~ "以半速擠出的上行移動的距離。\n" -#~ "這會與之前的層產生更好的附著,而不會將這些層中的線材過度加熱。僅套用於鐵絲網列印。" - -#~ msgctxt "support_xy_distance_overhang description" -#~ msgid "Distance of the support structure from the overhang in the X/Y directions. " -#~ msgstr "支撐結構在 X/Y 方向與突出部分的間距。 " - -#~ msgctxt "wireframe_fall_down description" -#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "線材在向上擠出後倒塌的距離。將對此距離進行補償。僅套用於鐵絲網列印。" - -#~ msgctxt "wireframe_drag_along description" -#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "向上擠出線材與斜向下擠出一起拖動的距離。將對此距離進行補償。僅套用於鐵絲網列印。" - -#~ msgctxt "machine_end_gcode label" -#~ msgid "End GCode" -#~ msgstr "結束 G-code" - -#~ msgctxt "material_end_of_filament_purge_length label" -#~ msgid "End Of Filament Purge Length" -#~ msgstr "線材末端沖洗長度" - -#~ msgctxt "material_end_of_filament_purge_speed label" -#~ msgid "End Of Filament Purge Speed" -#~ msgstr "線材末端沖洗速度" - -#~ msgctxt "speed_equalize_flow_enabled label" -#~ msgid "Equalize Filament Flow" -#~ msgstr "均衡線材流量" - -#~ msgctxt "fill_perimeter_gaps option everywhere" -#~ msgid "Everywhere" -#~ msgstr "全部填充" - -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Bottom Skins Into Infill" -#~ msgstr "將底部表層延伸到填充中" - -#~ msgctxt "expand_skins_into_infill label" -#~ msgid "Expand Skins Into Infill" -#~ msgstr "將表層延伸到填充中" - -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Top Skins Into Infill" -#~ msgstr "將頂部表層延伸到填充中" - -#~ msgctxt "expand_skins_into_infill description" -#~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin." -#~ msgstr "延伸平面頂部和/或底部表層的區域。預設情况下,表層會在環繞填充的壁線下方停止,但如果填充密度較低,則可能導致出現孔洞。該設定將表層延展到壁線以外,因此下一層的填充會座落在表層上。" - -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "延伸底部表層區域(下方有空氣的區域),讓它們由上下的填充層錨定。" - -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand the top skin areas (areas with air above) so that they support infill above." -#~ msgstr "延伸頂部表層區域(上方有空氣的區域),讓它們支撐上方的填充。" - -#~ msgctxt "support_conical_enabled description" -#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." -#~ msgstr "實驗性功能: 讓底部的支撐區域小於突出部分的支撐區域。" - -#~ msgctxt "machine_filament_park_distance label" -#~ msgid "Filament Park Distance" -#~ msgstr "耗材停放距離" - -#~ msgctxt "fill_perimeter_gaps label" -#~ msgid "Fill Gaps Between Walls" -#~ msgstr "填充牆壁之間空隙" - -#~ msgctxt "fill_perimeter_gaps description" -#~ msgid "Fills the gaps between walls where no walls fit." -#~ msgstr "填充牆壁之間空隙。" - -#~ msgctxt "filter_out_tiny_gaps label" -#~ msgid "Filter Out Tiny Gaps" -#~ msgstr "濾除微小間隙" - -#~ msgctxt "filter_out_tiny_gaps description" -#~ msgid "Filter out tiny gaps to reduce blobs on outside of model." -#~ msgstr "濾除微小間隙以減少模型外側的斑點 。" - -#~ msgctxt "small_feature_speed_factor_0 label" -#~ msgid "First Layer Speed" -#~ msgstr "第一層速度" - -#~ msgctxt "wireframe_flow_connection description" -#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." -#~ msgstr "向上或向下時的流量補償。僅套用於鐵絲網列印。" - -#~ msgctxt "wireframe_flow_flat description" -#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." -#~ msgstr "列印平面線條時的流量補償。僅套用於鐵絲網列印。" - -#~ msgctxt "prime_tower_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value." -#~ msgstr "流量補償:擠出的耗材量乘以此值。" - -#~ msgctxt "wireframe_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." -#~ msgstr "流量補償:擠出的線材量乘以此值。僅套用於鐵絲網列印。" - -#~ msgctxt "flow_rate_extrusion_offset_factor label" -#~ msgid "Flow rate compensation factor" -#~ msgstr "流量補償因子" - -#~ msgctxt "flow_rate_max_extrusion_offset label" -#~ msgid "Flow rate compensation max extrusion offset" -#~ msgstr "流量補償的最大擠出偏移量" - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code Flavour" -#~ msgstr "G-code 類型" - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code flavour" -#~ msgstr "G-code 類型" - -#~ msgctxt "material_guid description" -#~ msgid "GUID of the material. This is set automatically. " -#~ msgstr "耗材 GUID,此項為自動設定。 " - -#~ msgctxt "gantry_height label" -#~ msgid "Gantry height" -#~ msgstr "吊車高度" - -#~ msgctxt "machine_end_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very end - separated by \n" -#~ "." -#~ msgstr "" -#~ "在結束前執行的 G-code 命令 - 以 \n" -#~ " 分行。" - -#~ msgctxt "machine_start_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very start - separated by \n" -#~ "." -#~ msgstr "" -#~ "在開始後執行的 G-code 命令 - 以 \n" -#~ " 分行。" - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "Gcode flavour" -#~ msgstr "G-code 類型" - -#~ msgctxt "support_tree_enable description" -#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." -#~ msgstr "產生帶有樹枝樹狀支撐結構支撐你的模型。這可能可以減少耗材的使用和列印的時間,但會大大的增加切片時間。" - -#~ msgctxt "ironing_enabled description" -#~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." -#~ msgstr "再一次經過頂部表面,但不擠出耗材。這是為了進一步融化頂部的塑料,打造更平滑的表面。" - -#~ msgctxt "machine_nozzle_heat_up_speed label" -#~ msgid "Heat up speed" -#~ msgstr "加熱速度" - -#~ msgctxt "machine_heat_zone_length label" -#~ msgid "Heat zone length" -#~ msgstr "加熱區長度" - -#~ msgctxt "infill_hollow label" -#~ msgid "Hollow Out Objects" -#~ msgstr "挖空模型" - -#~ msgctxt "support_tree_branch_distance description" -#~ msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." -#~ msgstr "樹支與模型接觸的點與點之間的間隔距離。較小的距離會讓支撐和模型有較多的接觸點,會有較佳的突出部分但支撐也較難移除。" - -#~ msgctxt "machine_steps_per_mm_e description" -#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -#~ msgstr "擠出機移動一毫米時,步進馬達所需移動的步數。" - -#~ msgctxt "slicing_tolerance description" -#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." -#~ msgstr "如何使用傾斜的外表切片。可以使用層高的中間與外表相交產生的截面(中間)。也可以使用該層高完全不超出模型體積的區域(排除),或是該層高的模型投影區域(包含)。「排除」保留最多的細節,「包含」有最符合的外形,而「中間」花最少的運算時間。" - -#~ msgctxt "wall_min_flow_retract description" -#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." -#~ msgstr "當此功能開啟時,對於低於最小流量門檻值的牆壁,使用回抽取代而非梳理模式空跑。" - -#~ msgctxt "skin_no_small_gaps_heuristic label" -#~ msgid "Ignore Small Z Gaps" -#~ msgstr "忽略 Z 方向的小間隙" - -#~ msgctxt "start_layers_at_same_position description" -#~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time." -#~ msgstr "每一層都在相同點附近開始列印,這樣在列印新的一層時,就不需要列印前一層結束時的那一小段區域。在突出部分和小零件有良好的效果,但會增加列印時間。" - -#~ msgctxt "infill_mesh_order label" -#~ msgid "Infill Mesh Order" -#~ msgstr "填充網格順序" - -#~ msgctxt "wireframe_strategy option knot" -#~ msgid "Knot" -#~ msgstr "紐結" - -#~ msgctxt "limit_support_retractions label" -#~ msgid "Limit Support Retractions" -#~ msgstr "限制支撐回抽" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine Head Polygon" -#~ msgstr "機器頭多邊形" - -#~ msgctxt "machine_head_with_fans_polygon label" -#~ msgid "Machine head & Fan polygon" -#~ msgstr "機器頭和風扇多邊形" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine head polygon" -#~ msgstr "機器頭多邊形" - -#~ msgctxt "prime_tower_circular description" -#~ msgid "Make the prime tower as a circular shape." -#~ msgstr "將換料塔印成圓型。" - -#~ msgctxt "material_end_of_filament_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "耗材站內部值" - -#~ msgctxt "material_end_of_filament_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "耗材站內部值" - -#~ msgctxt "material_flush_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "耗材站內部值" - -#~ msgctxt "material_flush_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "耗材站內部值" - -#~ msgctxt "material_maximum_park_duration description" -#~ msgid "Material Station internal value" -#~ msgstr "耗材站內部值" - -#~ msgctxt "material_no_load_move_factor description" -#~ msgid "Material Station internal value" -#~ msgstr "耗材站內部值" - -#~ msgctxt "machine_max_feedrate_e label" -#~ msgid "Maximum Feedrate" -#~ msgstr "最大進料速率" - -#~ msgctxt "speed_equalize_flow_max label" -#~ msgid "Maximum Speed for Flow Equalization" -#~ msgstr "流量均衡的最大速度" - -#~ msgctxt "max_feedrate_z_override label" -#~ msgid "Maximum Z Speed" -#~ msgstr "最大 Z 軸速度" - -#~ msgctxt "max_extrusion_before_wipe description" -#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated." -#~ msgstr "在另一次擦拭噴頭前可擠出的最大耗材量。" - -#~ msgctxt "speed_equalize_flow_max description" -#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -#~ msgstr "調整列印速度以便均衡流量時的最大列印速度。" - -#~ msgctxt "mesh_position_x label" -#~ msgid "Mesh position x" -#~ msgstr "網格位置 x" - -#~ msgctxt "mesh_position_y label" -#~ msgid "Mesh position y" -#~ msgstr "網格位置 y" - -#~ msgctxt "mesh_position_z label" -#~ msgid "Mesh position z" -#~ msgstr "網格位置 z" - -#~ msgctxt "support_minimal_diameter label" -#~ msgid "Minimum Diameter" -#~ msgstr "最小直徑" - -#~ msgctxt "wall_min_flow label" -#~ msgid "Minimum Wall Flow" -#~ msgstr "最小牆壁流量" - -#~ msgctxt "wall_min_flow description" -#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." -#~ msgstr "牆壁允許的最小流量百分比。當在已列印的牆壁旁列印牆壁時,「補償牆壁重疊」會減少線材流量。小於此設定流量的牆壁會被空跑取代。當啟用此設定時,必需啟用「補償牆壁重疊」並設定先列印外壁再列印內壁。" - -#~ msgctxt "minimum_interface_area description" -#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "支撐介面區域的最小面積大小。面積小於此值的區域將不會產生支撐介面。" - -#~ msgctxt "minimum_bottom_area description" -#~ msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "支撐底板區域的最小面積大小。面積小於此值的區域將不會產生支撐底板。" - -#~ msgctxt "minimum_roof_area description" -#~ msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "支撐頂板區域的最小面積大小。面積小於此值的區域將不會產生支撐頂板。" - -#~ msgctxt "support_minimal_diameter description" -#~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -#~ msgstr "小區域中支撐塔的 X/Y 軸方向最小直徑。" - -#~ msgctxt "retraction_combing option noskin" -#~ msgid "No Skin" -#~ msgstr "表層除外" - -#~ msgctxt "meshfix_keep_open_polygons description" -#~ msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper GCode." -#~ msgstr "一般情况下,Cura 會嘗試縫合網格中的小孔,並移除有大孔的部分層。啟用此選項將保留那些無法縫合的部分。當其他所有方法都無法產生正確的 GCode 時,該選項應該被用作最後手段。" - -#~ msgctxt "fill_perimeter_gaps option nowhere" -#~ msgid "Nowhere" -#~ msgstr "都不填充" - -#~ msgctxt "machine_nozzle_expansion_angle label" -#~ msgid "Nozzle angle" -#~ msgstr "噴頭角度" - -#~ msgctxt "machine_nozzle_head_distance label" -#~ msgid "Nozzle length" -#~ msgstr "噴頭長度" - -#~ msgctxt "extruders_enabled_count label" -#~ msgid "Number of Extruders that are enabled" -#~ msgstr "已啟用擠出機的數量" - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords label" -#~ msgid "Offset With Extruder" -#~ msgstr "擠出機偏移量" - -#~ msgctxt "limit_support_retractions description" -#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure." -#~ msgstr "當從支撐直線移動到另一支撐時,省略回抽。啟用此功能可節省列印時間,但會導致支撐內部有較多的牽絲。" - -#~ msgctxt "limit_support_retractions description" -#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." -#~ msgstr "當從支撐直線移動到另一支撐時,省略回抽。啟用此功能可節省列印時間,但會導致支撐內部有較多的牽絲。" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly description" -#~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." -#~ msgstr "在立體十字形樣式中,只在半數樣式閉合的中央十字交叉處使用氣囊,並在高度上交錯排列。" - -#~ msgctxt "optimize_wall_printing_order description" -#~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization." -#~ msgstr "最佳化牆壁列印順序以減少回抽的次數和空跑的距離。啟用此功能對大多數是有益的,但有的可能會花更多的時間。所以請比較有無最佳化的估算時間進行確認。" - -#~ msgctxt "support_infill_angles description" -#~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." -#~ msgstr "支撐填充樣式的方向。 支撐填充樣式的旋轉方向是在水平面上旋轉。" - -#~ msgctxt "outer_inset_first label" -#~ msgid "Outer Before Inner Walls" -#~ msgstr "先印外壁後印內壁" - -#~ msgctxt "machine_nozzle_tip_outer_diameter label" -#~ msgid "Outer nozzle diameter" -#~ msgstr "噴頭外徑" - -#~ msgctxt "wireframe_straight_before_down description" -#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." -#~ msgstr "水平線條部分所覆蓋的斜下行線條的百分比。這可以防止上行線最頂端點下垂。僅套用於鐵絲網列印。" - -#~ msgctxt "wall_min_flow_retract label" -#~ msgid "Prefer Retract" -#~ msgstr "回抽優先" - -#~ msgctxt "prime_tower_brim_enable label" -#~ msgid "Prime Tower Brim" -#~ msgstr "換料塔邊緣" - -#~ msgctxt "prime_tower_purge_volume label" -#~ msgid "Prime Tower Purge Volume" -#~ msgstr "換料塔清洗量" - -#~ msgctxt "prime_tower_wall_thickness label" -#~ msgid "Prime Tower Thickness" -#~ msgstr "換料塔厚度" - -#~ msgctxt "prime_tower_brim_enable description" -#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -#~ msgstr "即使模型沒有開啟邊緣功能,裝填塔也列印邊緣以提供額外的附著力。目前無法與「木筏」的平台附著類型同時使用。" - -#~ msgctxt "wireframe_enabled description" -#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." -#~ msgstr "只列印一個具有稀疏網狀結構的外表面,在“稀疏的空中”列印。這是在给定的 Z 軸間隔內,通過上行線和下行斜線連接,橫向列印模型的輪廓來實現的。" - -#~ msgctxt "spaghetti_infill_enabled description" -#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." -#~ msgstr "經常列印填充,使得耗材在模型內部混亂地捲曲。這會縮短列印時間,但行為會難以預測。" - -#~ msgctxt "speed_equalize_flow_enabled description" -#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." -#~ msgstr "以較快的速度列印比正常線條更細的線條,使每秒擠出的線材量保持相同。模型中較薄的部分可能需要以低於設定中所提供寬度的線寬來列印線條。該設定控制這些線條的速度變化。" - -#~ msgctxt "outer_inset_first description" -#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." -#~ msgstr "啟用時以從外向內的順序列印牆壁。當使用高黏度塑料如 ABS 時,這有助於提高 X 和 Y 的尺寸精度;但是,它可能會降低表面列印品質,尤其是在突出部分。" - -#~ msgctxt "raft_base_line_spacing label" -#~ msgid "Raft Line Spacing" -#~ msgstr "木筏底部間距" - -#~ msgctxt "infill_hollow description" -#~ msgid "Remove all infill and make the inside of the object eligible for support." -#~ msgstr "移除所有填充並讓模型內部可以進行支撐。" - -#~ msgctxt "support_tree_collision_resolution description" -#~ msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." -#~ msgstr "計算避免碰撞模型的計算精度。設定較低的值可產生較精確的樹狀支撐,這樣的支撐問題較少但會嚴重的增加切片所需的時間。" - -#~ msgctxt "wireframe_strategy option retract" -#~ msgid "Retract" -#~ msgstr "回抽" - -#~ msgctxt "retraction_enable description" -#~ msgid "Retract the filament when the nozzle is moving over a non-printed area. " -#~ msgstr "當噴頭移動到非列印區域上方時回抽耗材。 " - -#~ msgctxt "wipe_retraction_prime_speed label" -#~ msgid "Retraction Prime Speed" -#~ msgstr "擦拭回抽裝填速度" - -#~ msgctxt "shell label" -#~ msgid "Shell" -#~ msgstr "外殼" - -#~ msgctxt "material_shrinkage_percentage label" -#~ msgid "Shrinkage Ratio" -#~ msgstr "收縮率" - -#~ msgctxt "material_shrinkage_percentage description" -#~ msgid "Shrinkage ratio in percentage." -#~ msgstr "收縮率百分比。" - -#~ msgctxt "support_skip_some_zags label" -#~ msgid "Skip Some ZigZags Connections" -#~ msgstr "跳過部分鋸齒狀連接" - -#~ msgctxt "small_feature_speed_factor_0 description" -#~ msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy." -#~ msgstr "細部模式第一層將以正常列印速度的此百分比值列印。 較慢的列印有助於黏合和精度。" - -#~ msgctxt "small_feature_speed_factor description" -#~ msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy." -#~ msgstr "細部模式將以正常列印速度的此百分比值列印。 較慢的列印有助於黏合和精度。" - -#~ msgctxt "smooth_spiralized_contours description" -#~ msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z-seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -#~ msgstr "平滑螺旋輪廓可以減少 Z 縫的出現(Z 縫應在列印品上幾乎看不到,但在分層檢視中仍然可見)。請注意,平滑操作將傾向於模糊精細的表面細節。" - -#~ msgctxt "spaghetti_flow label" -#~ msgid "Spaghetti Flow" -#~ msgstr "義大利麵式填充流量" - -#~ msgctxt "spaghetti_infill_enabled label" -#~ msgid "Spaghetti Infill" -#~ msgstr "義大利麵式填充" - -#~ msgctxt "spaghetti_infill_extra_volume label" -#~ msgid "Spaghetti Infill Extra Volume" -#~ msgstr "義大利麵式填充額外體積" - -#~ msgctxt "spaghetti_max_height label" -#~ msgid "Spaghetti Infill Maximum Height" -#~ msgstr "義大利麵式填充 - 最大填充高度" - -#~ msgctxt "spaghetti_infill_stepped label" -#~ msgid "Spaghetti Infill Stepping" -#~ msgstr "義大利麵式逐步填充" - -#~ msgctxt "spaghetti_inset label" -#~ msgid "Spaghetti Inset" -#~ msgstr "義大利麵式填充內嵌" - -#~ msgctxt "spaghetti_max_infill_angle label" -#~ msgid "Spaghetti Maximum Infill Angle" -#~ msgstr "義大利麵式填充 - 最大填充角度" - -#~ msgctxt "wireframe_printspeed description" -#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." -#~ msgstr "擠出線材時噴頭移動的速度。僅套用於鐵絲網列印。" - -#~ msgctxt "wireframe_printspeed_down description" -#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." -#~ msgstr "列印下行斜線的速度。僅套用於鐵絲網列印。" - -#~ msgctxt "wireframe_printspeed_up description" -#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." -#~ msgstr "在“稀疏的空中”向上列印線條的速度。僅套用於鐵絲網列印。" - -#~ msgctxt "wireframe_printspeed_bottom description" -#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." -#~ msgstr "列印第一層的速度,該層是唯一接觸列印平台的層。僅套用於鐵絲網列印。" - -#~ msgctxt "wireframe_printspeed_flat description" -#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." -#~ msgstr "列印模型水平輪廓的速度。僅套用於鐵絲網列印。" - -#~ msgctxt "machine_start_gcode label" -#~ msgid "Start GCode" -#~ msgstr "起始 G-code" - -#~ msgctxt "start_layers_at_same_position label" -#~ msgid "Start Layers with the Same Part" -#~ msgstr "在相同的位置列印新層" - -#~ msgctxt "wireframe_strategy description" -#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." -#~ msgstr "用於確定兩個連續層在每個連接點連接的策略。回抽可讓上行線條在正確的位置硬化,但可能導致線材磨損。紐結可以在上行線條的尾端進行打結以便提高與其連接的幾率,並讓線條冷卻;但這會需要較慢的列印速度。另一種策略是補償上行線條頂部的下垂;然而,線條不會總是如預期的那樣下降。" - -#~ msgctxt "infill_pattern option tetrahedral" -#~ msgid "Tetrahedral" -#~ msgstr "正四面體" - -#~ msgctxt "infill_overlap description" -#~ msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -#~ msgstr "填充和牆壁之間的重疊量。稍微重疊可讓各個牆壁與填充牢固連接。" - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "表層和牆壁之間的重疊量,以線寬百分比表示。稍微重疊可讓各個牆壁與表層牢固連接。這是表層平均線寬和最內壁的百分比。" - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "表層與牆壁的重疊量佔表層線寬的百分比。輕微的重疊能讓填充與表層牢固地連接。這是表層線寬和最內層牆壁線寬平均的百分比。" - -#~ msgctxt "skin_overlap_mm description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "表層和牆壁之間的重疊量。稍微重疊可讓各個牆壁與表層牢固連接。" - -#~ msgctxt "switch_extruder_retraction_amount description" -#~ msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone." -#~ msgstr "回抽量:設為 0,不進行任何回抽。該值通常應與加熱區的長度相同。" - -#~ msgctxt "support_tree_angle description" -#~ msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -#~ msgstr "樹枝的角度。使用較小的角度讓樹枝較垂直且較平穩。使用較大的角度則可以支撐較大的範圍。" - -#~ msgctxt "lightning_infill_prune_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." -#~ msgstr "閃電形填充層與其附著物間的生成角度." - -#~ msgctxt "lightning_infill_straightening_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." -#~ msgstr "設定閃電形填充層間垂直堆疊角度,調整樹狀堆疊的平滑度." - -#~ msgctxt "wireframe_roof_inset description" -#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." -#~ msgstr "在從頂板輪廓向內進行連接時所覆蓋的距離。僅套用於鐵絲網列印。" - -#~ msgctxt "wireframe_roof_drag_along description" -#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "向內線的末端在返回至頂板外部輪廓時被拖行的距離。將對此距離進行補償。僅套用於鐵絲網列印。" - -#~ msgctxt "wireframe_roof_fall_down description" -#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "列印時,在“稀疏的空中”列印的水平頂板線條倒塌的距離。將對此距離進行補償。僅套用於鐵絲網列印。" - -#~ msgctxt "z_offset_layer_0 description" -#~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly." -#~ msgstr "擠出機在第一層從正常高度偏移了此設定量。它可以是正值(上升)或負值(下降)。某些耗材類型在擠出機稍微上升情況下,會更好地附著在列印平台上。" - -#~ msgctxt "wireframe_height description" -#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." -#~ msgstr "兩個水平部分之間上行線和下行斜線的高度。這决定網狀結構的整體密度。僅套用於鐵絲網列印。" - -#~ msgctxt "infill_offset_x description" -#~ msgid "The infill pattern is offset this distance along the X axis." -#~ msgstr "填充樣式在 X 軸方向偏移此距離。" - -#~ msgctxt "infill_offset_y description" -#~ msgid "The infill pattern is offset this distance along the Y axis." -#~ msgstr "填充樣式在 Y 軸方向偏移此距離。" - -#~ msgctxt "adaptive_layer_height_variation description" -#~ msgid "The maximum allowed height different from the base layer height in mm." -#~ msgstr "允許與層高基礎值相差的最大值(以毫米為單位)。" - -#~ msgctxt "bridge_wall_max_overhang description" -#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -#~ msgstr "使用一般設定列印牆壁線條允許最大的突出寬度。以牆壁線寬的百分比表示。當間隙比此寬時,使用橋樑設定列印牆壁線條。否則就使用一般設定列印牆壁線條。數值越低,越有可能使用橋樑設定列印牆壁線條。" - -#~ msgctxt "spaghetti_max_infill_angle description" -#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." -#~ msgstr "允許延後填充義大利麵式填充的最大角度,取列印物內側與 Z 軸的夾角。降低此值會導致模型中的更多有角度部位在各層填充。" - -#~ msgctxt "meshfix_maximum_deviation description" -#~ msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller." -#~ msgstr "「最高解析度」設定在降低解析度時允許的最大偏差。如果增加此值,列印精度會較差但 G-code 會較小。" - -#~ msgctxt "support_join_distance description" -#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one." -#~ msgstr "支撐結構間在 X/Y 方向的最大距離。當分離結構之間的距離小於此值時,這些結構將合併為一個。" - -#~ msgctxt "flow_rate_max_extrusion_offset description" -#~ msgid "The maximum distance in mm to compensate." -#~ msgstr "最大補償距離(以毫米為單位)。" - -#~ msgctxt "spaghetti_max_height description" -#~ msgid "The maximum height of inside space which can be combined and filled from the top." -#~ msgstr "可以從頂部組合和填充的內部空間的最大高度。" - -#~ msgctxt "max_feedrate_z_override description" -#~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed." -#~ msgstr "列印平台移動的最大速度。將該值設為零會使列印為最大 Z 速度採用韌體預設值。" - -#~ msgctxt "mold_width description" -#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." -#~ msgstr "模具外側和模型外側之間的最小距離。" - -#~ msgctxt "flow_rate_extrusion_offset_factor description" -#~ msgid "The multiplication factor for the flow rate -> distance translation." -#~ msgstr "流量倍率 -> 移動距離。" - -#~ msgctxt "support_tree_wall_count description" -#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "樹狀支撐樹枝牆壁的圈數。較厚的牆壁需要花較長的時間列印,但較不易倒下。" - -#~ msgctxt "spaghetti_inset description" -#~ msgid "The offset from the walls from where the spaghetti infill will be printed." -#~ msgstr "列印義大利麵式填充開始位置與牆壁的偏移量。" - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "填充耗材的樣式。線條和鋸齒狀填充輪流在每一層交換方向,以降低耗材成本。網格、三角形、三-六邊形、立方體、八面體、四分立方體、十字形和同心的列印樣式在每層完整列印。立方體、四分立方體和八面體填充隨每層變化,以在各個方向提供更均衡的强度分布。" - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "選擇填充線材的樣式。直線和鋸齒狀填充輪流在每一層交換方向,以降低線材成本。網格、三角形、三-六邊形、立方體、八面體、四分立方體、十字形和同心的列印樣式在每層完整列印。螺旋形、立方體、四分立方體和八面體填充隨每層變化,以在各個方向提供更均衡的强度分布。" - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." -#~ msgstr "列印填充樣式;直線型與鋸齒狀填充於層間交替方向,減少線材消耗;網格型、三角形、三角-六邊形混和、立方體、八面體、四分立方體、十字形、同心於每層間皆完整列印;螺旋形、立方體、四分立方體及八面體填充於每層一間進行改變,確保每個方向都有相同的強度分配,閃電形填充透過只支撐物件內層頂部來最小化填充,因此填充百分比只對於下一層才有效果." - -#~ msgctxt "speed_layer_0 description" -#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." -#~ msgstr "起始層的速度。建議採用較低的值以便改善與列印平台的附著。" - -#~ msgctxt "build_volume_temperature description" -#~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted." -#~ msgstr "設定列印空間的溫度。如果設定為 0,就不會加熱列印空間。" - -#~ msgctxt "material_print_temperature_layer_0 description" -#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -#~ msgstr "用於列印第一層的溫度。設為 0 即關閉對起始層的特别處理。" - -#~ msgctxt "material_bed_temperature_layer_0 description" -#~ msgid "The temperature used for the heated build plate at the first layer." -#~ msgstr "用於第一層加熱列印平台的溫度。" - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." -#~ msgstr "設定列印平台的溫度。如果設定為 0,就不會加熱列印平台。" - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print." -#~ msgstr "用於加熱列印平台的溫度。如果列印平台溫度為 0,則熱床將不會為此次列印加熱。" - -#~ msgctxt "prime_tower_wall_thickness description" -#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -#~ msgstr "空心換料塔的厚度。如果厚度大於換料塔最小體積的一半,則將形成一個密集的換料塔。" - -#~ msgctxt "support_tree_wall_thickness description" -#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "樹狀支撐樹枝的牆壁厚度。較厚的牆壁需要花較長的時間列印,但較不易倒下。" - -#~ msgctxt "machine_gcode_flavor description" -#~ msgid "The type of gcode to be generated." -#~ msgstr "需要產生的 G-code 類型。" - -#~ msgctxt "adaptive_layer_height_threshold description" -#~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." -#~ msgstr "決定是否使用較小層高的門檻值。此值會與一層中最陡坡度的 tan 值做比較。" - -#~ msgctxt "wireframe_roof_outer_delay description" -#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." -#~ msgstr "在成為頂板的孔的外圍花費的時間。較長的時間可確保更好的連接。僅套用於鐵絲網列印。" - -#~ msgctxt "max_skin_angle_for_expansion description" -#~ msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal, while an angle of 90° is vertical." -#~ msgstr "如果模型的頂部和/或底部表面的角度大於此設定,則不要延伸其頂部/底部表層。這會避免延伸作用在模型表面有接近垂直的斜面時所形成的狹窄表層區域。0° 的角為水平,90° 的角為垂直。" - -#~ msgctxt "support_tree_enable label" -#~ msgid "Tree Support" -#~ msgstr "樹狀支撐" - -#~ msgctxt "support_tree_angle label" -#~ msgid "Tree Support Branch Angle" -#~ msgstr "樹狀支撐樹枝角度" - -#~ msgctxt "support_tree_branch_diameter label" -#~ msgid "Tree Support Branch Diameter" -#~ msgstr "樹狀支撐樹枝直徑" - -#~ msgctxt "support_tree_branch_diameter_angle label" -#~ msgid "Tree Support Branch Diameter Angle" -#~ msgstr "樹狀支撐樹枝外徑角度" - -#~ msgctxt "support_tree_branch_distance label" -#~ msgid "Tree Support Branch Distance" -#~ msgstr "樹狀支撐樹枝距離" - -#~ msgctxt "support_tree_collision_resolution label" -#~ msgid "Tree Support Collision Resolution" -#~ msgstr "樹狀支撐碰撞計算精度" - -#~ msgctxt "support_tree_wall_count label" -#~ msgid "Tree Support Wall Line Count" -#~ msgstr "樹狀支撐牆壁線條數量" - -#~ msgctxt "support_tree_wall_thickness label" -#~ msgid "Tree Support Wall Thickness" -#~ msgstr "樹狀支撐牆厚" - -#~ msgctxt "adaptive_layer_height_enabled label" -#~ msgid "Use adaptive layers" -#~ msgstr "使用適應層高" - -#~ msgctxt "relative_extrusion description" -#~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any Gcode script is output." -#~ msgstr "擠出控制使用相對模式而非絕對模式。使用相對的 E 步數使 G-code 在後處理上更為簡便。然而並非所有印表機都支援此模式,而且和絕對的 E 步數相比,它可能在沉積耗材的使用量上產生輕微的偏差。無論此設定為何,在輸出任何 G-code 腳本之前,擠出模式將始終設定為絕對模式。" - -#~ msgctxt "wireframe_bottom_delay label" -#~ msgid "WP Bottom Delay" -#~ msgstr "WP 底部延遲" - -#~ msgctxt "wireframe_printspeed_bottom label" -#~ msgid "WP Bottom Printing Speed" -#~ msgstr "WP 底部列印速度" - -#~ msgctxt "wireframe_flow_connection label" -#~ msgid "WP Connection Flow" -#~ msgstr "WP 連接流量" - -#~ msgctxt "wireframe_height label" -#~ msgid "WP Connection Height" -#~ msgstr "WP 連接高度" - -#~ msgctxt "wireframe_printspeed_down label" -#~ msgid "WP Downward Printing Speed" -#~ msgstr "WP 下降列印速度" - -#~ msgctxt "wireframe_drag_along label" -#~ msgid "WP Drag Along" -#~ msgstr "WP 拖行" - -#~ msgctxt "wireframe_up_half_speed label" -#~ msgid "WP Ease Upward" -#~ msgstr "WP 輕鬆上行" - -#~ msgctxt "wireframe_fall_down label" -#~ msgid "WP Fall Down" -#~ msgstr "WP 倒塌" - -#~ msgctxt "wireframe_flat_delay label" -#~ msgid "WP Flat Delay" -#~ msgstr "WP 平面延遲" - -#~ msgctxt "wireframe_flow_flat label" -#~ msgid "WP Flat Flow" -#~ msgstr "WP 平面流量" - -#~ msgctxt "wireframe_flow label" -#~ msgid "WP Flow" -#~ msgstr "WP 列印流量" - -#~ msgctxt "wireframe_printspeed_flat label" -#~ msgid "WP Horizontal Printing Speed" -#~ msgstr "WP 水平列印速度" - -#~ msgctxt "wireframe_top_jump label" -#~ msgid "WP Knot Size" -#~ msgstr "WP 紐結大小" - -#~ msgctxt "wireframe_nozzle_clearance label" -#~ msgid "WP Nozzle Clearance" -#~ msgstr "WP 噴頭間隙" - -#~ msgctxt "wireframe_roof_drag_along label" -#~ msgid "WP Roof Drag Along" -#~ msgstr "WP 頂板拖行" - -#~ msgctxt "wireframe_roof_fall_down label" -#~ msgid "WP Roof Fall Down" -#~ msgstr "WP 頂板倒塌" - -#~ msgctxt "wireframe_roof_inset label" -#~ msgid "WP Roof Inset Distance" -#~ msgstr "WP 頂板嵌入距離" - -#~ msgctxt "wireframe_roof_outer_delay label" -#~ msgid "WP Roof Outer Delay" -#~ msgstr "WP 頂板外部延遲" - -#~ msgctxt "wireframe_printspeed label" -#~ msgid "WP Speed" -#~ msgstr "WP 速度" - -#~ msgctxt "wireframe_straight_before_down label" -#~ msgid "WP Straighten Downward Lines" -#~ msgstr "WP 拉直下行線條" - -#~ msgctxt "wireframe_strategy label" -#~ msgid "WP Strategy" -#~ msgstr "WP 使用策略" - -#~ msgctxt "wireframe_top_delay label" -#~ msgid "WP Top Delay" -#~ msgstr "WP 頂部延遲" - -#~ msgctxt "wireframe_printspeed_up label" -#~ msgid "WP Upward Printing Speed" -#~ msgstr "WP 上升列印速度" - -#~ msgctxt "wall_overhang_angle description" -#~ msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging." -#~ msgstr "牆壁突出的角度大於此值時,將使用突出牆壁的設定列印。當此值設定為 90 時,所有牆壁都不會被當作突出牆壁。" - -#~ msgctxt "retraction_combing_max_distance description" -#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." -#~ msgstr "當此值不為 0 時,在梳理模式空跑超過此距離時,會啟用回抽。" - -#~ msgctxt "z_offset_taper_layers description" -#~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print." -#~ msgstr "當此值不為 0 時,Z 軸偏移量在經過此層數時逐漸降為 0。此值設為 0 表示所有列印層的 Z 軸偏移量保持為固定值。" - -#~ msgctxt "skin_no_small_gaps_heuristic description" -#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." -#~ msgstr "當模型具有微小的垂直間隙時,為了在這些間隙上產生頂部、底部等表面,會花費大約5%的額外的計算時間。勾選這個項目可以節省時間,但是間隙會消失,若要保留這些間隙,不要勾選這個項目。" - -#~ msgctxt "wipe_hop_enable description" -#~ msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -#~ msgstr "每當回抽完成時,列印平台會降低以便在噴頭和列印品之間形成空隙。它可以防止噴頭在空跑過程中撞到列印品,降低將列印品從列印平台撞掉的幾率。" - -#~ msgctxt "clean_between_layers description" -#~ msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." -#~ msgstr "是否在層與層之間加入擦拭噴頭的 G-code。啟用此設定會影響換層時的回抽行為。請用「擦拭回抽」設定來控制擦拭時的回抽量。" - -#~ msgctxt "print_sequence description" -#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -#~ msgstr "選擇一次列印一層中的所有模型或等待一個模型完成後再轉到下一個模型。排隊模式只有在所有模型以一種整個列印頭可以在各個模型之間移動的方式分隔開,且所有模型都低於噴頭和 X / Y 軸之間距離的情况下可用。" - -#~ msgctxt "print_sequence description" -#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes. " -#~ msgstr "選擇一次列印一層中的所有模型或等待一個模型完成後再轉到下一個模型。只有在 a) 只使用一個擠出機而且 b) 所有模型以整個列印頭可以在各個模型之間移動的方式分隔開,且所有模型都低於噴頭和 X / Y 軸之間距離的情况下,排隊列印才可使用。 " +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "" -#~ msgctxt "spaghetti_infill_stepped description" -#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." -#~ msgstr "是否逐步列印義大利麵式填充或在列印結束時一次擠出所有填充耗材。" +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" -#~ msgctxt "dual_pre_wipe label" -#~ msgid "Wipe Nozzle After Switch" -#~ msgstr "切換後擦拭噴頭" +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" -#~ msgctxt "wipe_hop_enable label" -#~ msgid "Wipe Z Hop When Retracted" -#~ msgstr "擦拭回抽後 Z 抬升" +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "" -#~ msgctxt "wireframe_enabled label" -#~ msgid "Wire Printing" -#~ msgstr "鐵絲網列印(以下簡稱 WP)" +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "" -#~ msgctxt "z_offset_taper_layers label" -#~ msgid "Z Offset Taper Layers" -#~ msgstr "Z 軸偏移漸減層數" +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "" -#~ msgctxt "support_zag_skip_count label" -#~ msgid "ZigZag Connection Skip Count" -#~ msgstr "鋸齒狀連接跳過計數" +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "" -#~ msgctxt "blackmagic description" -#~ msgid "category_blackmagic" -#~ msgstr "黑魔法" +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "" -#~ msgctxt "meshfix description" -#~ msgid "category_fixes" -#~ msgstr "修復" +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "" -#~ msgctxt "experimental description" -#~ msgid "experimental!" -#~ msgstr "實驗性!" +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "" diff --git a/resources/i18n/zh_TW/gradual_flow_settings.def.json.po b/resources/i18n/zh_TW/gradual_flow_settings.def.json.po deleted file mode 100644 index 56b299bfef0..00000000000 --- a/resources/i18n/zh_TW/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,54 +0,0 @@ -# -msgid "" -msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" -"PO-Revision-Date: 2023-11-24 12:51+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Gradual flow max acceleration" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximum acceleration for gradual flow changes" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimum speed for gradual flow changes for the first layer" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Reset flow duration" From 6107a49627bed900e15992a77083def5fc863519 Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Fri, 24 Nov 2023 15:32:24 +0100 Subject: [PATCH 150/765] Take nozzle-offset into account. Nozzle offsets can inflience the disallowed areas, so they should be taken into account for the prime-tower position. part of CURA-11379 --- resources/definitions/fdmprinter.def.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 54ab8760c72..08c418bbe27 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6640,7 +6640,7 @@ "unit": "mm", "enabled": "resolveOrValue('prime_tower_enable')", "default_value": 200, - "value": "(resolveOrValue('machine_width') / 2 + resolveOrValue('prime_tower_size') / 2) if resolveOrValue('machine_shape') == 'elliptic' else (resolveOrValue('machine_width') - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_x'))), 1)) - (resolveOrValue('machine_width') / 2 if resolveOrValue('machine_center_is_zero') else 0)", + "value": "(resolveOrValue('machine_width') / 2 + resolveOrValue('prime_tower_size') / 2) if resolveOrValue('machine_shape') == 'elliptic' else (resolveOrValue('machine_width') - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('machine_nozzle_offset_x')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_x'))), 1)) - (resolveOrValue('machine_width') / 2 if resolveOrValue('machine_center_is_zero') else 0)", "maximum_value": "(machine_width / 2 if machine_center_is_zero else machine_width) - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0)", "minimum_value": "resolveOrValue('prime_tower_size') + (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - (machine_width / 2 if machine_center_is_zero else 0)", "settable_per_mesh": false, @@ -6654,7 +6654,7 @@ "unit": "mm", "enabled": "resolveOrValue('prime_tower_enable')", "default_value": 200, - "value": "machine_depth - prime_tower_size - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (resolveOrValue('machine_depth') / 2 if resolveOrValue('machine_center_is_zero') else 0)", + "value": "machine_depth - prime_tower_size - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('machine_nozzle_offset_y')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (resolveOrValue('machine_depth') / 2 if resolveOrValue('machine_center_is_zero') else 0)", "maximum_value": "(machine_depth / 2 - resolveOrValue('prime_tower_size') if machine_center_is_zero else machine_depth - resolveOrValue('prime_tower_size')) - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0)", "minimum_value": "(machine_depth / -2 if machine_center_is_zero else 0) + (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0)", "settable_per_mesh": false, From 31976e591f03d4b4012a6269b6cecbd501c72102 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 24 Nov 2023 15:35:31 +0100 Subject: [PATCH 151/765] All method printers are cloud connected CURA-11377 --- .../src/Cloud/CloudOutputDevice.py | 23 +++++++++++++------ 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py index edbc509d840..987125f1286 100644 --- a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py +++ b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py @@ -58,7 +58,6 @@ class CloudOutputDevice(UltimakerNetworkedPrinterOutputDevice): # The minimum version of firmware that support print job actions over cloud. PRINT_JOB_ACTIONS_MIN_VERSION = Version("5.2.12") - PRINT_JOB_ACTIONS_MIN_VERSION_METHOD = Version("2.700") # Notify can only use signals that are defined by the class that they are in, not inherited ones. # Therefore, we create a private signal used to trigger the printersChanged signal. @@ -319,19 +318,29 @@ def _onUploadError(self, message: str = None) -> None: PrintJobUploadErrorMessage(message).show() self.writeError.emit() + @pyqtProperty(bool, notify=_cloudClusterPrintersChanged) + def isMethod(self) -> bool: + """Whether the printer that this output device represents is a Method series printer.""" + + if not self._printers: + return False + + [printer, *_] = self._printers + return printer.pinterType in ("ultimaker_methodx", "ultimaker_methodxl") + @pyqtProperty(bool, notify=_cloudClusterPrintersChanged) def supportsPrintJobActions(self) -> bool: """Whether the printer that this output device represents supports print job actions via the cloud.""" if not self._printers: return False + + if self.isMethod: + return True + version_number = self.printers[0].firmwareVersion.split(".") - if len(version_number)> 2: - firmware_version = Version([version_number[0], version_number[1], version_number[2]]) - return firmware_version >= self.PRINT_JOB_ACTIONS_MIN_VERSION - else: - firmware_version = Version([version_number[0], version_number[1]]) - return firmware_version >= self.PRINT_JOB_ACTIONS_MIN_VERSION_METHOD + firmware_version = Version([version_number[0], version_number[1], version_number[2]]) + return firmware_version >= self.PRINT_JOB_ACTIONS_MIN_VERSION @pyqtProperty(bool, constant = True) From e66a3cda67fb24978831e51a16e193a8d277dc45 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 24 Nov 2023 15:40:11 +0100 Subject: [PATCH 152/765] Only extend file formats for um3 This was a mistake in the previous implementation. The relevant piece of code was adding ufp support for um3 printers. This is legacy support for this printer since the printer didn't know it supported ufp, but through the digital factory it could support ufp files. However, with the addition of method printers we should have added an additional check where we also check if the printer is an um3. Instead an additional check was added that did the same for makerbot printers. Because of this check didn't have a "is method" check support for makerbot format is also added to s-line printers and legacy um printers. (fyi @saumyaj3) CURA-11377 --- .../src/Cloud/CloudOutputDevice.py | 7 ++++++- plugins/UM3NetworkPrinting/src/ExportFileJob.py | 6 +++--- .../UM3NetworkPrinting/src/MeshFormatHandler.py | 15 ++++++--------- 3 files changed, 15 insertions(+), 13 deletions(-) diff --git a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py index 987125f1286..aed38a39496 100644 --- a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py +++ b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py @@ -213,7 +213,12 @@ def requestWrite(self, nodes: List[SceneNode], file_name: Optional[str] = None, return # Export the scene to the correct file type. - job = ExportFileJob(file_handler=file_handler, nodes=nodes, firmware_version=self.firmwareVersion) + job = ExportFileJob( + file_handler=file_handler, + nodes=nodes, + firmware_version=self.firmwareVersion, + print_type=self.printerType, + ) job.finished.connect(self._onPrintJobCreated) job.start() diff --git a/plugins/UM3NetworkPrinting/src/ExportFileJob.py b/plugins/UM3NetworkPrinting/src/ExportFileJob.py index 953b167a6e0..ac3da657190 100644 --- a/plugins/UM3NetworkPrinting/src/ExportFileJob.py +++ b/plugins/UM3NetworkPrinting/src/ExportFileJob.py @@ -16,9 +16,9 @@ class ExportFileJob(WriteFileJob): """Job that exports the build plate to the correct file format for the target cluster.""" - def __init__(self, file_handler: Optional[FileHandler], nodes: List[SceneNode], firmware_version: str) -> None: - - self._mesh_format_handler = MeshFormatHandler(file_handler, firmware_version) + def __init__(self, file_handler: Optional[FileHandler], nodes: List[SceneNode], firmware_version: str, + print_type: str) -> None: + self._mesh_format_handler = MeshFormatHandler(file_handler, firmware_version, print_type) if not self._mesh_format_handler.is_valid: Logger.log("e", "Missing file or mesh writer!") return diff --git a/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py b/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py index e6054773d8c..2ca8f9f3ce0 100644 --- a/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py +++ b/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py @@ -19,10 +19,9 @@ class MeshFormatHandler: """This class is responsible for choosing the formats used by the connected clusters.""" - - def __init__(self, file_handler: Optional[FileHandler], firmware_version: str) -> None: + def __init__(self, file_handler: Optional[FileHandler], firmware_version: str, printer_type: str) -> None: self._file_handler = file_handler or CuraApplication.getInstance().getMeshFileHandler() - self._preferred_format = self._getPreferredFormat(firmware_version) + self._preferred_format = self._getPreferredFormat(firmware_version, printer_type) self._writer = self._getWriter(self.mime_type) if self._preferred_format else None @property @@ -82,7 +81,7 @@ def getBytes(self, nodes: List[SceneNode]) -> bytes: value = value.encode() return value - def _getPreferredFormat(self, firmware_version: str) -> Dict[str, Union[str, int, bool]]: + def _getPreferredFormat(self, firmware_version: str, printer_type: str) -> Dict[str, Union[str, int, bool]]: """Chooses the preferred file format for the given file handler. :param firmware_version: The version of the firmware. @@ -103,13 +102,11 @@ def _getPreferredFormat(self, firmware_version: str) -> Dict[str, Union[str, int machine_file_formats = [file_type.strip() for file_type in machine_file_formats] # Exception for UM3 firmware version >=4.4: UFP is now supported and should be the preferred file format. - if "application/x-ufp" not in machine_file_formats and Version(firmware_version) >= Version("4.4"): + if printer_type in ( + "ultimaker3", "ultimaker3_extended") and "application/x-ufp" not in machine_file_formats and Version( + firmware_version) >= Version("4.4"): machine_file_formats = ["application/x-ufp"] + machine_file_formats - # Exception for makerbot firmware version >=2.700: makerbot is supported - elif "application/x-makerbot" not in machine_file_formats and Version(firmware_version >= Version("2.700")): - machine_file_formats = ["application/x-makerbot"] + machine_file_formats - # Take the intersection between file_formats and machine_file_formats. format_by_mimetype = {f["mime_type"]: f for f in file_formats} From b3d9b22ec0fc663d8edd265f7ecd663b62f28602 Mon Sep 17 00:00:00 2001 From: Casper Lamboo Date: Fri, 24 Nov 2023 16:08:45 +0100 Subject: [PATCH 153/765] Add labs extruder to lookuptable --- plugins/MakerbotWriter/MakerbotWriter.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/MakerbotWriter/MakerbotWriter.py b/plugins/MakerbotWriter/MakerbotWriter.py index b650cf23387..9021a3345fd 100644 --- a/plugins/MakerbotWriter/MakerbotWriter.py +++ b/plugins/MakerbotWriter/MakerbotWriter.py @@ -61,6 +61,7 @@ def __init__(self) -> None: "1C": "mk14_c", "1A": "mk14", "2A": "mk14_s", + "LABS": "mk14_e", } _MATERIAL_MAP = {"2780b345-577b-4a24-a2c5-12e6aad3e690": "abs", "88c8919c-6a09-471a-b7b6-e801263d862d": "abs-wss1", From 2d04650c619a8e7a96cf8e3d6cee3969fa3532ab Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Fri, 24 Nov 2023 16:38:29 +0100 Subject: [PATCH 154/765] Fixed prime-tower for machines with explicit disallowed areas. These machines have disallowed areas (either 'machine_disallowed_areas' or 'nozzle_dissalowed_areas'), which can't at the moment be calculated with formula's (not without adding a feature at least, but we're currently in feature-freeze). part of CURA-11379 --- resources/definitions/Mark2_for_Ultimaker2.def.json | 1 + resources/definitions/dagoma_pro_430_dual.def.json | 3 ++- resources/definitions/deltacomb_dc20dual.def.json | 4 +++- resources/definitions/dxu.def.json | 1 + resources/definitions/ultimaker3.def.json | 1 + 5 files changed, 8 insertions(+), 2 deletions(-) diff --git a/resources/definitions/Mark2_for_Ultimaker2.def.json b/resources/definitions/Mark2_for_Ultimaker2.def.json index 5eda5ca6f29..7c7f8a36333 100644 --- a/resources/definitions/Mark2_for_Ultimaker2.def.json +++ b/resources/definitions/Mark2_for_Ultimaker2.def.json @@ -137,6 +137,7 @@ "machine_start_gcode": { "value": "\"\" if machine_gcode_flavor == \"UltiGCode\" else \"G21 ;metric values\\nG90 ;absolute positioning\\nM82 ;set extruder to absolute mode\\nM107 ;start with the fan off\\nM200 D0 T0 ;reset filament diameter\\nM200 D0 T1\\nG28 Z0; home all\\nG28 X0 Y0\\nG0 Z20 F2400 ;move the platform to 20mm\\nG92 E0\\nM190 S{material_bed_temperature_layer_0}\\nM109 T0 S{material_standby_temperature, 0}\\nM109 T1 S{material_print_temperature_layer_0, 1}\\nM104 T0 S{material_print_temperature_layer_0, 0}\\nT1 ; move to the 2th head\\nG0 Z20 F2400\\nG92 E-7.0 ;prime distance\\nG1 E0 F45 ;purge nozzle\\nG1 E-5.1 F1500 ; retract\\nG1 X90 Z0.01 F5000 ; move away from the prime poop\\nG1 X50 F9000\\nG0 Z20 F2400\\nT0 ; move to the first head\\nM104 T1 S{material_standby_temperature, 1}\\nG0 Z20 F2400\\nM104 T{initial_extruder_nr} S{material_print_temperature_layer_0, initial_extruder_nr}\\nG92 E-7.0\\nG1 E0 F45 ;purge nozzle\\nG1 X60 Z0.01 F5000 ; move away from the prime poop\\nG1 X20 F9000\\nM400 ;finish all moves\\nG92 E0\\n;end of startup sequence\\n\"" }, "machine_use_extruder_offset_to_offset_coords": { "default_value": false }, "machine_width": { "default_value": 223 }, + "prime_tower_position_y": { "value": "170" }, "retraction_amount": { "default_value": 5.1 }, "retraction_speed": { "default_value": 25 }, "speed_support": { "value": "speed_wall_0" }, diff --git a/resources/definitions/dagoma_pro_430_dual.def.json b/resources/definitions/dagoma_pro_430_dual.def.json index 6038ce9e576..df537809f83 100644 --- a/resources/definitions/dagoma_pro_430_dual.def.json +++ b/resources/definitions/dagoma_pro_430_dual.def.json @@ -55,6 +55,7 @@ [215, 160] ] ] - } + }, + "prime_tower_position_x": { "value": "350" } } } \ No newline at end of file diff --git a/resources/definitions/deltacomb_dc20dual.def.json b/resources/definitions/deltacomb_dc20dual.def.json index f90e40d5b4d..60a71276d2e 100644 --- a/resources/definitions/deltacomb_dc20dual.def.json +++ b/resources/definitions/deltacomb_dc20dual.def.json @@ -101,6 +101,8 @@ }, "machine_height": { "default_value": 250 }, "machine_name": { "default_value": "Deltacomb DC-20 DUAL" }, - "machine_width": { "default_value": 190 } + "machine_width": { "default_value": 190 }, + "prime_tower_position_x": { "value": "60" }, + "prime_tower_position_y": { "value": "60" } } } \ No newline at end of file diff --git a/resources/definitions/dxu.def.json b/resources/definitions/dxu.def.json index bb61db16867..a5d360d0110 100644 --- a/resources/definitions/dxu.def.json +++ b/resources/definitions/dxu.def.json @@ -131,6 +131,7 @@ "machine_width": { "default_value": 238 }, "material_adhesion_tendency": { "enabled": true }, "material_diameter": { "default_value": 1.75 }, + "prime_tower_position_x": { "value": "200" }, "retraction_amount": { "default_value": 6.5 }, "retraction_speed": { "default_value": 25 }, "speed_support": { "value": "speed_wall_0" }, diff --git a/resources/definitions/ultimaker3.def.json b/resources/definitions/ultimaker3.def.json index 058b3dfa7ad..19df92c08d7 100644 --- a/resources/definitions/ultimaker3.def.json +++ b/resources/definitions/ultimaker3.def.json @@ -150,6 +150,7 @@ "value": "resolveOrValue('print_sequence') != 'one_at_a_time'" }, "prime_tower_enable": { "default_value": true }, + "prime_tower_position_x": { "value": "185" }, "prime_tower_wipe_enabled": { "default_value": false }, "retraction_amount": { "value": "6.5" }, "retraction_hop": { "value": "2" }, From 495079f3d9b39a08396c14a1927b6982d3b0b9bb Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 24 Nov 2023 16:49:31 +0100 Subject: [PATCH 155/765] Clean up bot LUT We had a lot of Look up Tables scattered around in the cura repository. This can be solved by adding a `bot_id` entry to metadata of the various makerbot extruders/materials/definitions --- .../VariantDatabaseHandler.py | 21 +++--- plugins/MakerbotWriter/MakerbotWriter.py | 65 +------------------ .../definitions/ultimaker_methodx.def.json | 1 + .../definitions/ultimaker_methodxl.def.json | 1 + .../variants/ultimaker_methodx_1C.inst.cfg | 1 + .../variants/ultimaker_methodx_1XA.inst.cfg | 1 + .../variants/ultimaker_methodx_2XA.inst.cfg | 1 + .../variants/ultimaker_methodx_LABS.inst.cfg | 1 + .../variants/ultimaker_methodxl_1C.inst.cfg | 1 + .../variants/ultimaker_methodxl_1XA.inst.cfg | 1 + .../variants/ultimaker_methodxl_2XA.inst.cfg | 1 + .../variants/ultimaker_methodxl_LABS.inst.cfg | 2 +- 12 files changed, 25 insertions(+), 72 deletions(-) diff --git a/cura/Settings/DatabaseHandlers/VariantDatabaseHandler.py b/cura/Settings/DatabaseHandlers/VariantDatabaseHandler.py index 4b1deae3569..376add478f8 100644 --- a/cura/Settings/DatabaseHandlers/VariantDatabaseHandler.py +++ b/cura/Settings/DatabaseHandlers/VariantDatabaseHandler.py @@ -10,13 +10,16 @@ class VariantDatabaseHandler(DatabaseMetadataContainerController): """The Database handler for Variant containers""" def __init__(self): - super().__init__(SQLQueryFactory(table = "variant", - fields = { - "id": "text", - "name": "text", - "hardware_type": "text", - "definition": "text", - "version": "text", - "setting_version": "text" - })) + super().__init__(SQLQueryFactory( + table="variant", + fields={ + "id": "text", + "name": "text", + "hardware_type": "text", + "definition": "text", + "version": "text", + "setting_version": "text", + "bot_id": "text", + }, + )) self._container_type = InstanceContainer diff --git a/plugins/MakerbotWriter/MakerbotWriter.py b/plugins/MakerbotWriter/MakerbotWriter.py index b650cf23387..0298998d65e 100644 --- a/plugins/MakerbotWriter/MakerbotWriter.py +++ b/plugins/MakerbotWriter/MakerbotWriter.py @@ -50,59 +50,6 @@ def __init__(self) -> None: {"prefix": "thumbnail", "width": 90, "height": 90}, ] _META_VERSION = "3.0.0" - _PRINT_NAME_MAP = { - "UltiMaker Method": "fire_e", - "UltiMaker Method X": "lava_f", - "UltiMaker Method XL": "magma_10", - } - _EXTRUDER_NAME_MAP = { - "1XA": "mk14_hot", - "2XA": "mk14_hot_s", - "1C": "mk14_c", - "1A": "mk14", - "2A": "mk14_s", - } - _MATERIAL_MAP = {"2780b345-577b-4a24-a2c5-12e6aad3e690": "abs", - "88c8919c-6a09-471a-b7b6-e801263d862d": "abs-wss1", - "416eead4-0d8e-4f0b-8bfc-a91a519befa5": "asa", - "85bbae0e-938d-46fb-989f-c9b3689dc4f0": "nylon-cf", - "283d439a-3490-4481-920c-c51d8cdecf9c": "nylon", - "62414577-94d1-490d-b1e4-7ef3ec40db02": "pc", - "69386c85-5b6c-421a-bec5-aeb1fb33f060": "petg", - "0ff92885-617b-4144-a03c-9989872454bc": "pla", - "a4255da2-cb2a-4042-be49-4a83957a2f9a": "pva", - "a140ef8f-4f26-4e73-abe0-cfc29d6d1024": "wss1", - "77873465-83a9-4283-bc44-4e542b8eb3eb": "sr30", - "96fca5d9-0371-4516-9e96-8e8182677f3c": "im-pla", - "9f52c514-bb53-46a6-8c0c-d507cd6ee742": "abs", - "0f9a2a91-f9d6-4b6b-bd9b-a120a29391be": "abs", - "d3e972f2-68c0-4d2f-8cfd-91028dfc3381": "abs", - "495a0ce5-9daf-4a16-b7b2-06856d82394d": "abs-cf10", - "cb76bd6e-91fd-480c-a191-12301712ec77": "abs-wss1", - "a017777e-3f37-4d89-a96c-dc71219aac77": "abs-wss1", - "4d96000d-66de-4d54-a580-91827dcfd28f": "abs-wss1", - "0ecb0e1a-6a66-49fb-b9ea-61a8924e0cf5": "asa", - "efebc2ea-2381-4937-926f-e824524524a5": "asa", - "b0199512-5714-4951-af85-be19693430f8": "asa", - "b9f55a0a-a2b6-4b8d-8d48-07802c575bd1": "pla", - "c439d884-9cdc-4296-a12c-1bacae01003f": "pla", - "16a723e3-44df-49f4-82ec-2a1173c1e7d9": "pla", - "74d0f5c2-fdfd-4c56-baf1-ff5fa92d177e": "pla", - "64dcb783-470d-4400-91b1-7001652f20da": "pla", - "3a1b479b-899c-46eb-a2ea-67050d1a4937": "pla", - "4708ac49-5dde-4cc2-8c0a-87425a92c2b3": "pla", - "4b560eda-1719-407f-b085-1c2c1fc8ffc1": "pla", - "e10a287d-0067-4a58-9083-b7054f479991": "im-pla", - "01a6b5b0-fab1-420c-a5d9-31713cbeb404": "im-pla", - "f65df4ad-a027-4a48-a51d-975cc8b87041": "im-pla", - "f48739f8-6d96-4a3d-9a2e-8505a47e2e35": "im-pla", - "5c7d7672-e885-4452-9a78-8ba90ec79937": "petg", - "91e05a6e-2f5b-4964-b973-d83b5afe6db4": "petg", - "bdc7dd03-bf38-48ee-aeca-c3e11cee799e": "petg", - "54f66c89-998d-4070-aa60-1cb0fd887518": "nylon", - "002c84b3-84ac-4b5a-b57d-fe1f555a6351": "pva", - "e4da5fcb-f62d-48a2-aaef-0b645aa6973b": "wss1", - "77f06146-6569-437d-8380-9edb0d635a32": "sr30"} # must be called from the main thread because of OpenGL @staticmethod @@ -197,7 +144,7 @@ def _getMeta(self, root_nodes: List[SceneNode]) -> Dict[str, any]: meta = dict() - meta["bot_type"] = MakerbotWriter._PRINT_NAME_MAP.get((name := global_stack.definition.name), name) + meta["bot_type"] = global_stack.definition.getMetaDataEntry("bot_id") bounds: Optional[AxisAlignedBox] = None for node in nodes: @@ -239,12 +186,7 @@ def _getMeta(self, root_nodes: List[SceneNode]) -> Dict[str, any]: meta["uuid"] = print_information.slice_uuid - materials = [] - for extruder in extruders: - guid = extruder.material.getMetaData().get("GUID") - material_name = extruder.material.getMetaData().get("material") - material = self._MATERIAL_MAP.get(guid, material_name) - materials.append(material) + materials = [extruder.material.getMetaData().get("bot_id") for extruder in extruders] meta["material"] = materials[0] meta["materials"] = materials @@ -256,8 +198,7 @@ def _getMeta(self, root_nodes: List[SceneNode]) -> Dict[str, any]: meta["model_counts"] = [{"count": 1, "name": node.getName()} for node in nodes] - tool_types = [MakerbotWriter._EXTRUDER_NAME_MAP.get((name := extruder.variant.getName()), name) for extruder in - extruders] + tool_types = [extruder.variant.getMetaDataEntry("bot_id") for extruder in extruders] meta["tool_type"] = tool_types[0] meta["tool_types"] = tool_types diff --git a/resources/definitions/ultimaker_methodx.def.json b/resources/definitions/ultimaker_methodx.def.json index d74a08baf36..0c2e09cbd9c 100644 --- a/resources/definitions/ultimaker_methodx.def.json +++ b/resources/definitions/ultimaker_methodx.def.json @@ -8,6 +8,7 @@ "author": "UltiMaker", "manufacturer": "Ultimaker B.V.", "file_formats": "application/x-makerbot", + "bot_id": "lava_f", "platform": "ultimaker_method_platform.stl", "exclude_materials": [ "dsm_", diff --git a/resources/definitions/ultimaker_methodxl.def.json b/resources/definitions/ultimaker_methodxl.def.json index 270379d6cd4..80a32872099 100644 --- a/resources/definitions/ultimaker_methodxl.def.json +++ b/resources/definitions/ultimaker_methodxl.def.json @@ -8,6 +8,7 @@ "author": "UltiMaker", "manufacturer": "Ultimaker B.V.", "file_formats": "application/x-makerbot", + "bot_id": "magma_10", "platform": "ultimaker_method_xl_platform.stl", "has_machine_materials": true, "has_machine_quality": true, diff --git a/resources/variants/ultimaker_methodx_1C.inst.cfg b/resources/variants/ultimaker_methodx_1C.inst.cfg index 74b8f9d8e18..579e1534de2 100644 --- a/resources/variants/ultimaker_methodx_1C.inst.cfg +++ b/resources/variants/ultimaker_methodx_1C.inst.cfg @@ -7,6 +7,7 @@ version = 4 hardware_type = nozzle setting_version = 22 type = variant +bot_id = mk14_c [values] machine_nozzle_id = 1C diff --git a/resources/variants/ultimaker_methodx_1XA.inst.cfg b/resources/variants/ultimaker_methodx_1XA.inst.cfg index b68db556e48..2189328aea2 100644 --- a/resources/variants/ultimaker_methodx_1XA.inst.cfg +++ b/resources/variants/ultimaker_methodx_1XA.inst.cfg @@ -7,6 +7,7 @@ version = 4 hardware_type = nozzle setting_version = 22 type = variant +bot_id = mk14_hot [values] machine_nozzle_id = 1XA diff --git a/resources/variants/ultimaker_methodx_2XA.inst.cfg b/resources/variants/ultimaker_methodx_2XA.inst.cfg index 9b951fe99e3..b5b2882179d 100644 --- a/resources/variants/ultimaker_methodx_2XA.inst.cfg +++ b/resources/variants/ultimaker_methodx_2XA.inst.cfg @@ -7,6 +7,7 @@ version = 4 hardware_type = nozzle setting_version = 22 type = variant +bot_id = mk14_hot_s [values] machine_nozzle_id = 2XA diff --git a/resources/variants/ultimaker_methodx_LABS.inst.cfg b/resources/variants/ultimaker_methodx_LABS.inst.cfg index a5232706b93..316d114a595 100644 --- a/resources/variants/ultimaker_methodx_LABS.inst.cfg +++ b/resources/variants/ultimaker_methodx_LABS.inst.cfg @@ -7,6 +7,7 @@ version = 4 hardware_type = nozzle setting_version = 22 type = variant +bot_id = mk14_e [values] machine_nozzle_id = LABS diff --git a/resources/variants/ultimaker_methodxl_1C.inst.cfg b/resources/variants/ultimaker_methodxl_1C.inst.cfg index 2e1c6905528..110aa9c964a 100644 --- a/resources/variants/ultimaker_methodxl_1C.inst.cfg +++ b/resources/variants/ultimaker_methodxl_1C.inst.cfg @@ -7,6 +7,7 @@ version = 4 hardware_type = nozzle setting_version = 22 type = variant +bot_id = mk14_c [values] machine_nozzle_id = 1C diff --git a/resources/variants/ultimaker_methodxl_1XA.inst.cfg b/resources/variants/ultimaker_methodxl_1XA.inst.cfg index 0db3501e1a4..024c224fe3b 100644 --- a/resources/variants/ultimaker_methodxl_1XA.inst.cfg +++ b/resources/variants/ultimaker_methodxl_1XA.inst.cfg @@ -7,6 +7,7 @@ version = 4 hardware_type = nozzle setting_version = 22 type = variant +bot_id = mk14_hot [values] machine_nozzle_id = 1XA diff --git a/resources/variants/ultimaker_methodxl_2XA.inst.cfg b/resources/variants/ultimaker_methodxl_2XA.inst.cfg index 52a2e0382cf..dba05e0af97 100644 --- a/resources/variants/ultimaker_methodxl_2XA.inst.cfg +++ b/resources/variants/ultimaker_methodxl_2XA.inst.cfg @@ -7,6 +7,7 @@ version = 4 hardware_type = nozzle setting_version = 22 type = variant +bot_id = mk14_hot_s [values] machine_nozzle_id = 2XA diff --git a/resources/variants/ultimaker_methodxl_LABS.inst.cfg b/resources/variants/ultimaker_methodxl_LABS.inst.cfg index 3c6e538c199..0b2a06b3ec5 100644 --- a/resources/variants/ultimaker_methodxl_LABS.inst.cfg +++ b/resources/variants/ultimaker_methodxl_LABS.inst.cfg @@ -7,8 +7,8 @@ version = 4 hardware_type = nozzle setting_version = 22 type = variant +bot_id = mk14_e [values] machine_nozzle_id = LABS machine_nozzle_size = 0.4 - From ae047d2f8cbce10453f0449ae9dbc477d04fdf6c Mon Sep 17 00:00:00 2001 From: casperlamboo Date: Fri, 24 Nov 2023 15:50:31 +0000 Subject: [PATCH 156/765] Applied printer-linter format --- resources/definitions/ultimaker_methodx.def.json | 2 +- resources/definitions/ultimaker_methodxl.def.json | 2 +- resources/variants/ultimaker_methodx_1C.inst.cfg | 2 +- resources/variants/ultimaker_methodx_1XA.inst.cfg | 2 +- resources/variants/ultimaker_methodx_2XA.inst.cfg | 2 +- resources/variants/ultimaker_methodx_LABS.inst.cfg | 2 +- resources/variants/ultimaker_methodxl_1C.inst.cfg | 2 +- resources/variants/ultimaker_methodxl_1XA.inst.cfg | 2 +- resources/variants/ultimaker_methodxl_2XA.inst.cfg | 2 +- resources/variants/ultimaker_methodxl_LABS.inst.cfg | 3 ++- 10 files changed, 11 insertions(+), 10 deletions(-) diff --git a/resources/definitions/ultimaker_methodx.def.json b/resources/definitions/ultimaker_methodx.def.json index 0c2e09cbd9c..ed1256e1e85 100644 --- a/resources/definitions/ultimaker_methodx.def.json +++ b/resources/definitions/ultimaker_methodx.def.json @@ -8,8 +8,8 @@ "author": "UltiMaker", "manufacturer": "Ultimaker B.V.", "file_formats": "application/x-makerbot", - "bot_id": "lava_f", "platform": "ultimaker_method_platform.stl", + "bot_id": "lava_f", "exclude_materials": [ "dsm_", "Essentium_", diff --git a/resources/definitions/ultimaker_methodxl.def.json b/resources/definitions/ultimaker_methodxl.def.json index 80a32872099..96a4728cbb6 100644 --- a/resources/definitions/ultimaker_methodxl.def.json +++ b/resources/definitions/ultimaker_methodxl.def.json @@ -8,8 +8,8 @@ "author": "UltiMaker", "manufacturer": "Ultimaker B.V.", "file_formats": "application/x-makerbot", - "bot_id": "magma_10", "platform": "ultimaker_method_xl_platform.stl", + "bot_id": "magma_10", "has_machine_materials": true, "has_machine_quality": true, "has_materials": true, diff --git a/resources/variants/ultimaker_methodx_1C.inst.cfg b/resources/variants/ultimaker_methodx_1C.inst.cfg index 579e1534de2..42a45fe3f96 100644 --- a/resources/variants/ultimaker_methodx_1C.inst.cfg +++ b/resources/variants/ultimaker_methodx_1C.inst.cfg @@ -4,10 +4,10 @@ name = 1C version = 4 [metadata] +bot_id = mk14_c hardware_type = nozzle setting_version = 22 type = variant -bot_id = mk14_c [values] machine_nozzle_id = 1C diff --git a/resources/variants/ultimaker_methodx_1XA.inst.cfg b/resources/variants/ultimaker_methodx_1XA.inst.cfg index 2189328aea2..05871055ace 100644 --- a/resources/variants/ultimaker_methodx_1XA.inst.cfg +++ b/resources/variants/ultimaker_methodx_1XA.inst.cfg @@ -4,10 +4,10 @@ name = 1XA version = 4 [metadata] +bot_id = mk14_hot hardware_type = nozzle setting_version = 22 type = variant -bot_id = mk14_hot [values] machine_nozzle_id = 1XA diff --git a/resources/variants/ultimaker_methodx_2XA.inst.cfg b/resources/variants/ultimaker_methodx_2XA.inst.cfg index b5b2882179d..fc9ccec85c0 100644 --- a/resources/variants/ultimaker_methodx_2XA.inst.cfg +++ b/resources/variants/ultimaker_methodx_2XA.inst.cfg @@ -4,10 +4,10 @@ name = 2XA version = 4 [metadata] +bot_id = mk14_hot_s hardware_type = nozzle setting_version = 22 type = variant -bot_id = mk14_hot_s [values] machine_nozzle_id = 2XA diff --git a/resources/variants/ultimaker_methodx_LABS.inst.cfg b/resources/variants/ultimaker_methodx_LABS.inst.cfg index 316d114a595..37e1ad8802a 100644 --- a/resources/variants/ultimaker_methodx_LABS.inst.cfg +++ b/resources/variants/ultimaker_methodx_LABS.inst.cfg @@ -4,10 +4,10 @@ name = LABS version = 4 [metadata] +bot_id = mk14_e hardware_type = nozzle setting_version = 22 type = variant -bot_id = mk14_e [values] machine_nozzle_id = LABS diff --git a/resources/variants/ultimaker_methodxl_1C.inst.cfg b/resources/variants/ultimaker_methodxl_1C.inst.cfg index 110aa9c964a..ba0f8d1d196 100644 --- a/resources/variants/ultimaker_methodxl_1C.inst.cfg +++ b/resources/variants/ultimaker_methodxl_1C.inst.cfg @@ -4,10 +4,10 @@ name = 1C version = 4 [metadata] +bot_id = mk14_c hardware_type = nozzle setting_version = 22 type = variant -bot_id = mk14_c [values] machine_nozzle_id = 1C diff --git a/resources/variants/ultimaker_methodxl_1XA.inst.cfg b/resources/variants/ultimaker_methodxl_1XA.inst.cfg index 024c224fe3b..1f1d60cde30 100644 --- a/resources/variants/ultimaker_methodxl_1XA.inst.cfg +++ b/resources/variants/ultimaker_methodxl_1XA.inst.cfg @@ -4,10 +4,10 @@ name = 1XA version = 4 [metadata] +bot_id = mk14_hot hardware_type = nozzle setting_version = 22 type = variant -bot_id = mk14_hot [values] machine_nozzle_id = 1XA diff --git a/resources/variants/ultimaker_methodxl_2XA.inst.cfg b/resources/variants/ultimaker_methodxl_2XA.inst.cfg index dba05e0af97..c462e2ed6fa 100644 --- a/resources/variants/ultimaker_methodxl_2XA.inst.cfg +++ b/resources/variants/ultimaker_methodxl_2XA.inst.cfg @@ -4,10 +4,10 @@ name = 2XA version = 4 [metadata] +bot_id = mk14_hot_s hardware_type = nozzle setting_version = 22 type = variant -bot_id = mk14_hot_s [values] machine_nozzle_id = 2XA diff --git a/resources/variants/ultimaker_methodxl_LABS.inst.cfg b/resources/variants/ultimaker_methodxl_LABS.inst.cfg index 0b2a06b3ec5..160361cd75f 100644 --- a/resources/variants/ultimaker_methodxl_LABS.inst.cfg +++ b/resources/variants/ultimaker_methodxl_LABS.inst.cfg @@ -4,11 +4,12 @@ name = LABS version = 4 [metadata] +bot_id = mk14_e hardware_type = nozzle setting_version = 22 type = variant -bot_id = mk14_e [values] machine_nozzle_id = LABS machine_nozzle_size = 0.4 + From e7de8597c14044f0ab8b729b41b039aa391b0808 Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Fri, 24 Nov 2023 16:56:26 +0100 Subject: [PATCH 157/765] Fix printer-linter warnings. done as part of CURA-11379 --- resources/definitions/Mark2_for_Ultimaker2.def.json | 1 - resources/definitions/dxu.def.json | 1 - 2 files changed, 2 deletions(-) diff --git a/resources/definitions/Mark2_for_Ultimaker2.def.json b/resources/definitions/Mark2_for_Ultimaker2.def.json index 7c7f8a36333..5913d681940 100644 --- a/resources/definitions/Mark2_for_Ultimaker2.def.json +++ b/resources/definitions/Mark2_for_Ultimaker2.def.json @@ -140,7 +140,6 @@ "prime_tower_position_y": { "value": "170" }, "retraction_amount": { "default_value": 5.1 }, "retraction_speed": { "default_value": 25 }, - "speed_support": { "value": "speed_wall_0" }, "speed_wall_x": { "value": "speed_wall" }, "switch_extruder_prime_speed": { diff --git a/resources/definitions/dxu.def.json b/resources/definitions/dxu.def.json index a5d360d0110..07f5dc1cb55 100644 --- a/resources/definitions/dxu.def.json +++ b/resources/definitions/dxu.def.json @@ -134,7 +134,6 @@ "prime_tower_position_x": { "value": "200" }, "retraction_amount": { "default_value": 6.5 }, "retraction_speed": { "default_value": 25 }, - "speed_support": { "value": "speed_wall_0" }, "speed_wall_x": { "value": "speed_wall" }, "switch_extruder_prime_speed": { From 969821008391fb2f2405456f36f334f7cc4cef90 Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Fri, 24 Nov 2023 17:03:20 +0100 Subject: [PATCH 158/765] Fix more printer-linter warnings. done as part of CURA-11379 --- resources/definitions/Mark2_for_Ultimaker2.def.json | 1 - resources/definitions/dxu.def.json | 1 - 2 files changed, 2 deletions(-) diff --git a/resources/definitions/Mark2_for_Ultimaker2.def.json b/resources/definitions/Mark2_for_Ultimaker2.def.json index 5913d681940..a3c5f5e06b1 100644 --- a/resources/definitions/Mark2_for_Ultimaker2.def.json +++ b/resources/definitions/Mark2_for_Ultimaker2.def.json @@ -140,7 +140,6 @@ "prime_tower_position_y": { "value": "170" }, "retraction_amount": { "default_value": 5.1 }, "retraction_speed": { "default_value": 25 }, - "speed_wall_x": { "value": "speed_wall" }, "switch_extruder_prime_speed": { "enabled": false, diff --git a/resources/definitions/dxu.def.json b/resources/definitions/dxu.def.json index 07f5dc1cb55..ebe94ee169d 100644 --- a/resources/definitions/dxu.def.json +++ b/resources/definitions/dxu.def.json @@ -134,7 +134,6 @@ "prime_tower_position_x": { "value": "200" }, "retraction_amount": { "default_value": 6.5 }, "retraction_speed": { "default_value": 25 }, - "speed_wall_x": { "value": "speed_wall" }, "switch_extruder_prime_speed": { "enabled": false, From 7c809f5f435448ad277adc6590acf7d646fc7eb4 Mon Sep 17 00:00:00 2001 From: GregValiant <64202104+GregValiant@users.noreply.github.com> Date: Fri, 24 Nov 2023 15:19:07 -0500 Subject: [PATCH 159/765] Update DisplayInfoOnLCD.py Added M73 options. Verbiage changes. --- .../scripts/DisplayInfoOnLCD.py | 88 +++++++++++++------ 1 file changed, 63 insertions(+), 25 deletions(-) diff --git a/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py b/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py index bfd88534f87..784a18b2e5a 100644 --- a/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py +++ b/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py @@ -24,7 +24,8 @@ # - Example line on LCD: 1/479 | ET 2h13m # - Time to Pauses changes the M117/M118 lines to countdown to the next pause as 1/479 | TP 2h36m # - 'Add M118 Line' is available with either option. M118 will bounce the message back to a remote print server through the USB connection. -# - Enable 'Finish-Time' Message - when enabled, takes the Print Time, adds 15 minutes for print start-up, and calculates when the print will end. It takes into account the Time Fudge Factor. The user may enter a print start time. This is also available for Display Filename. +# - 'Add M73 Line' is used by 'Display Progress' only. There are options to incluse M73 P(percent) and M73 R(time remaining) +# - Enable 'Finish-Time' Message - when enabled, takes the Print Time and calculates when the print will end. It takes into account the Time Fudge Factor. The user may enter a print start time. This is also available for Display Filename. from ..Script import Script from UM.Application import Application @@ -34,6 +35,7 @@ from UM.Preferences import Preferences import time import datetime +import math from UM.Message import Message class DisplayInfoOnLCD(Script): @@ -118,14 +120,38 @@ def getSettingDataString(self): "add_m118_line": { "label": "Add M118 Line", - "description": "Adds M118 in addition to the M117. It will bounce the message back through the USB port to a computer print server (if a printer server is enabled).", + "description": "Adds M118 in addition to the M117. It will bounce the message back through the USB port to a computer print server (if a printer server like Octoprint or Pronterface is in use).", "type": "bool", "default_value": false }, + "add_m73_line": + { + "label": "Add M73 Line(s)", + "description": "Adds M73 in addition to the M117. For some firmware this will set the printers time and or percentage.", + "type": "bool", + "default_value": false, + "enabled": "display_option == 'display_progress'" + }, + "add_m73_percent": + { + "label": " Add M73 Percentage", + "description": "Adds M73 with the P parameter. For some firmware this will set the printers 'percentage' of layers completed and it will count upward.", + "type": "bool", + "default_value": false, + "enabled": "add_m73_line and display_option == 'display_progress'" + }, + "add_m73_time": + { + "label": " Add M73 Time", + "description": "Adds M73 with the R parameter. For some firmware this will set the printers 'print time' and it will count downward.", + "type": "bool", + "default_value": false, + "enabled": "add_m73_line and display_option == 'display_progress'" + }, "speed_factor": { "label": "Time Fudge Factor %", - "description": "When using 'Display Progress' tweak this value to get better estimates. ([Actual Print Time]/[Cura Estimate]) x 100 = Time Fudge Factor. If Cura estimated 9hr and the print actually took 10hr30min then enter 117 here to adjust any estimate closer to reality. This Fudge Factor is also used to calculate the time that the print will end if you were to start it 15 minutes after slicing.", + "description": "When using 'Display Progress' tweak this value to get better estimates. ([Actual Print Time]/[Cura Estimate]) x 100 = Time Fudge Factor. If Cura estimated 9hr and the print actually took 10hr30min then enter 117 here to adjust any estimate closer to reality. This Fudge Factor is also used to calculate the print finish time.", "type": "float", "unit": "%", "default_value": 100, @@ -134,7 +160,7 @@ def getSettingDataString(self): "countdown_to_pause": { "label": "Countdown to Pauses", - "description": "When enabled - DisplayInfoOnLCD must run AFTER all PauseAtHeight and Filament Change scripts. Instead of layer number and remaining print time the LCD will show 'layers remaining before pause/filament change and the time to pause/filament change' (TP).", + "description": "Instead of the remaining print time the LCD will show the estimated time to pause (TP).", "type": "bool", "default_value": false, "enabled": "display_option == 'display_progress'" @@ -142,7 +168,7 @@ def getSettingDataString(self): "enable_end_message": { "label": "Enable 'Finish-Time' Message", - "description": "Get a message when you save a fresh slice. It will show the estimated date and time that the print would finish (with a 15 minute lag from the end of slicing to the start of the print).", + "description": "Get a message when you save a fresh slice. It will show the estimated date and time that the print would finish.", "type": "bool", "default_value": true, "enabled": true @@ -150,7 +176,7 @@ def getSettingDataString(self): "print_start_time": { "label": "Print Start Time (Ex 16:45)", - "description": "Use 'Military' time. 16:45 would be 4:45PM. 09:30 would be 9:30AM. If you leave this blank it will be assumed that the print start will 15 minutes after slicing.", + "description": "Use 'Military' time. 16:45 would be 4:45PM. 09:30 would be 9:30AM. If you leave this blank it will be assumed that the print will start Now. If you enter a guesstimate of your printer start time and that time is before 'Now' the guesstimate will consider that the print will start tomorrow at the entered time. ", "type": "str", "default_value": "", "unit": "hrs ", @@ -163,7 +189,10 @@ def getSettingDataString(self): def execute(self, data): display_option = self.getSettingValueByKey("display_option") add_m118_line = self.getSettingValueByKey("add_m118_line") - + add_m73_line = self.getSettingValueByKey("add_m73_line") + add_m73_time = self.getSettingValueByKey("add_m73_time") + add_m73_percent = self.getSettingValueByKey("add_m73_percent") + # This is Display Filename and Layer on LCD--------------------------------------------------------- if display_option == "filename_layer": max_layer = 0 @@ -217,6 +246,12 @@ def execute(self, data): display_total_layers = self.getSettingValueByKey("display_total_layers") display_remaining_time = self.getSettingValueByKey("display_remaining_time") speed_factor = self.getSettingValueByKey("speed_factor") / 100 + m73_time = False + m73_percent = False + if add_m73_line and add_m73_time: + m73_time = True + if add_m73_line and add_m73_percent: + m73_percent = True # initialize global variables first_layer_index = 0 time_total = 0 @@ -235,27 +270,26 @@ def execute(self, data): mmm = round((hhh % 1) * 60) orig_hhh = cura_time/3600 orig_hr = round(orig_hhh // 1) - orig_min = int((cura_time - (orig_hr * 3600))/60) # Not rounded up - orig_mmm = round((orig_hhh % 1) * 60) # Rounded up - orig_sec = round(cura_time - orig_hr * 3600 - orig_min * 60) + orig_mmm = math.floor((orig_hhh % 1) * 60) + orig_sec = round((((orig_hhh % 1) * 60) % 1) * 60) if add_m118_line: lines.insert(tindex + 3,"M118 Adjusted Print Time " + str(hr) + "hr " + str(mmm) + "min") lines.insert(tindex + 3,"M117 ET " + str(hr) + "hr " + str(mmm) + "min") - # If Countdown to pause is enabled then count the pauses and/or filament changes + # add M73 line at beginning + mins = int(60 * hr + mmm) + if m73_time: + lines.insert(tindex + 3, "M73 R{}".format(mins)) + if m73_percent: + lines.insert(tindex + 3, "M73 P0") + # If Countdonw to pause is enabled then count the pauses pause_str = "" if bool(self.getSettingValueByKey("countdown_to_pause")): pause_count = 0 - filament_change_count = 0 for num in range(2,len(data) - 1, 1): if "PauseAtHeight.py" in data[num]: pause_count += 1 - if "M600" in data[num]: - filament_change_count += 1 - if pause_count > 0: pause_str = f" with {pause_count} pause(s)" - if filament_change_count > 0: - pause_str += f" and {filament_change_count} filament change(s)" # This line goes in to convert seconds to hours and minutes - lines.insert(tindex + 3, f";Cura Time Estimate: {cura_time}sec = {orig_hr}hr {orig_min}min {orig_sec}sec {pause_str}") + lines.insert(tindex + 3, f";Cura Time Estimate: {cura_time}sec = {orig_hr}hr {orig_mmm}min {orig_sec}sec {pause_str}") data[0] = "\n".join(lines) data[len(data)-1] += "M117 Orig Cura Est " + str(orig_hr) + "hr " + str(orig_mmm) + "min\n" if add_m118_line: data[len(data)-1] += "M118 Est w/FudgeFactor " + str(speed_factor * 100) + "% was " + str(hr) + "hr " + str(mmm) + "min\n" @@ -322,6 +356,12 @@ def execute(self, data): for l_index, line in enumerate(lines): if line.startswith(";LAYER:"): lines[l_index] += "\nM117 " + display_text + # add M73 line + mins = int(60 * h + m) + if m73_time: + lines[l_index] += "\nM73 R{}".format(mins) + if m73_percent: + lines[l_index] += "\nM73 P" + str(round(int(current_layer) / int(number_of_layers) * 100)) if add_m118_line: lines[l_index] += "\nM118 " + display_text break @@ -344,7 +384,7 @@ def execute(self, data): if line.startswith(";TIME_ELAPSED:"): this_time = (float(line.split(":")[1]))*speed_factor time_list.append(str(this_time)) - if "PauseAtHeight.py" in layer or "M600" in layer: + if "PauseAtHeight.py" in layer: for qnum in range(num - 1, pause_index, -1): time_list[qnum] = str(float(this_time) - float(time_list[qnum])) + "P" pause_index = num-1 @@ -380,7 +420,7 @@ def execute(self, data): return data def message_to_user(self, speed_factor: float): - # Message the user of the projected finish time of the print (figuring a 15 minute delay from end-of-slice to start-of-print + # Message the user of the projected finish time of the print print_time = Application.getInstance().getPrintInformation().currentPrintTime.getDisplayString(DurationFormat.Format.ISO8601) print_start_time = self.getSettingValueByKey("print_start_time") # If the user entered a print start time make sure it is in the correct format or ignore it. @@ -391,12 +431,10 @@ def message_to_user(self, speed_factor: float): hr = int(print_start_time.split(":")[0]) min = int(print_start_time.split(":")[1]) sec = 0 - fifteen_minute_delay = 0 else: hr = int(time.strftime("%H")) min = int(time.strftime("%M")) sec = int(time.strftime("%S")) - fifteen_minute_delay = 900 #Get the current data/time info yr = int(time.strftime("%Y")) @@ -409,7 +447,7 @@ def message_to_user(self, speed_factor: float): pr_min = int(print_time.split(":")[1]) pr_sec = int(print_time.split(":")[2]) #Adjust the print time if none was entered - print_seconds = pr_hr*3600 + pr_min*60 + pr_sec + fifteen_minute_delay + print_seconds = pr_hr*3600 + pr_min*60 + pr_sec #Adjust the total seconds by the Fudge Factor adjusted_print_time = print_seconds * speed_factor #Break down the adjusted seconds back into hh:mm:ss @@ -435,13 +473,13 @@ def message_to_user(self, speed_factor: float): show_hr = str(new_time.strftime("%H")) + ":" show_ampm = " AM" if print_start_time == "": - start_str = "and a 15 minute lag between saving the file and starting the print." + start_str = "Now" else: start_str = "and your entered 'print start time' of " + print_start_time + "hrs." if print_start_time != "": print_start_str = "Print Start Time................." + str(print_start_time) + "hrs" else: - print_start_str = "Print Start Time.................15 minutes from now." + print_start_str = "Print Start Time.................Now." estimate_str = "Cura Time Estimate.........." + str(print_time) adjusted_str = "Adjusted Time Estimate..." + str(time_change) finish_str = week_day + " " + str(mo_str) + " " + str(new_time.strftime("%d")) + ", " + str(new_time.strftime("%Y")) + " at " + str(show_hr) + str(new_time.strftime("%M")) + str(show_ampm) From 9693ec2e0e47f68e64f9ffa805d09bfe792bbc2a Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 27 Nov 2023 08:10:34 +0100 Subject: [PATCH 160/765] Merge main and update versions Contribute to CURA-10831 --- conandata.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conandata.yml b/conandata.yml index 470f6f32e46..f12f129ec0d 100644 --- a/conandata.yml +++ b/conandata.yml @@ -1,11 +1,11 @@ -version: "5.6.0-beta.1" +version: "5.7.0-alpha.0" requirements: - "uranium/(latest)@ultimaker/stable" - "curaengine/(latest)@ultimaker/stable" - "cura_binary_data/(latest)@ultimaker/stable" - "fdm_materials/(latest)@ultimaker/stable" - "curaengine_plugin_gradual_flow/0.1.0" - - "dulcificum/(latest)@ultimaker/stable" + - "dulcificum/0.1.0-beta.1" - "pyarcus/5.3.0" - "pysavitar/5.3.0" - "pynest2d/5.3.0" From 0225f92ae0bc1c7e4e71c6e05c2b5924e6432ddd Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 27 Nov 2023 13:47:08 +0100 Subject: [PATCH 161/765] Fix local cloud printing for um printers CURA-11390 --- .../src/Network/LocalClusterOutputDevice.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py b/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py index 2ef18e76e44..2a57bd03219 100644 --- a/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py +++ b/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py @@ -146,7 +146,12 @@ def requestWrite(self, nodes: List[SceneNode], file_name: Optional[str] = None, self.writeStarted.emit(self) # Export the scene to the correct file type. - job = ExportFileJob(file_handler=file_handler, nodes=nodes, firmware_version=self.firmwareVersion) + job = ExportFileJob( + file_handler=file_handler, + nodes=nodes, + firmware_version=self.firmwareVersion, + print_type=self.printerType, + ) job.finished.connect(self._onPrintJobCreated) job.start() From a9dcfaa032be2607f9ebb1fb5a4667c6d673d277 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 27 Nov 2023 15:32:55 +0100 Subject: [PATCH 162/765] specify bot id type --- cura/Settings/DatabaseHandlers/VariantDatabaseHandler.py | 2 +- plugins/MakerbotWriter/MakerbotWriter.py | 6 +++--- resources/definitions/ultimaker_methodx.def.json | 2 +- resources/definitions/ultimaker_methodxl.def.json | 2 +- resources/variants/ultimaker_methodx_1C.inst.cfg | 2 +- resources/variants/ultimaker_methodx_1XA.inst.cfg | 2 +- resources/variants/ultimaker_methodx_2XA.inst.cfg | 2 +- resources/variants/ultimaker_methodx_LABS.inst.cfg | 2 +- resources/variants/ultimaker_methodxl_1C.inst.cfg | 2 +- resources/variants/ultimaker_methodxl_1XA.inst.cfg | 2 +- resources/variants/ultimaker_methodxl_2XA.inst.cfg | 2 +- resources/variants/ultimaker_methodxl_LABS.inst.cfg | 2 +- 12 files changed, 14 insertions(+), 14 deletions(-) diff --git a/cura/Settings/DatabaseHandlers/VariantDatabaseHandler.py b/cura/Settings/DatabaseHandlers/VariantDatabaseHandler.py index 376add478f8..b1932bcb9c3 100644 --- a/cura/Settings/DatabaseHandlers/VariantDatabaseHandler.py +++ b/cura/Settings/DatabaseHandlers/VariantDatabaseHandler.py @@ -19,7 +19,7 @@ def __init__(self): "definition": "text", "version": "text", "setting_version": "text", - "bot_id": "text", + "bot_extruder_id": "text", }, )) self._container_type = InstanceContainer diff --git a/plugins/MakerbotWriter/MakerbotWriter.py b/plugins/MakerbotWriter/MakerbotWriter.py index 0298998d65e..912457e0bd2 100644 --- a/plugins/MakerbotWriter/MakerbotWriter.py +++ b/plugins/MakerbotWriter/MakerbotWriter.py @@ -144,7 +144,7 @@ def _getMeta(self, root_nodes: List[SceneNode]) -> Dict[str, any]: meta = dict() - meta["bot_type"] = global_stack.definition.getMetaDataEntry("bot_id") + meta["bot_type"] = global_stack.definition.getMetaDataEntry("bot_machine_id") bounds: Optional[AxisAlignedBox] = None for node in nodes: @@ -186,7 +186,7 @@ def _getMeta(self, root_nodes: List[SceneNode]) -> Dict[str, any]: meta["uuid"] = print_information.slice_uuid - materials = [extruder.material.getMetaData().get("bot_id") for extruder in extruders] + materials = [extruder.material.getMetaData().get("bot_material_id") for extruder in extruders] meta["material"] = materials[0] meta["materials"] = materials @@ -198,7 +198,7 @@ def _getMeta(self, root_nodes: List[SceneNode]) -> Dict[str, any]: meta["model_counts"] = [{"count": 1, "name": node.getName()} for node in nodes] - tool_types = [extruder.variant.getMetaDataEntry("bot_id") for extruder in extruders] + tool_types = [extruder.variant.getMetaDataEntry("bot_extruder_id") for extruder in extruders] meta["tool_type"] = tool_types[0] meta["tool_types"] = tool_types diff --git a/resources/definitions/ultimaker_methodx.def.json b/resources/definitions/ultimaker_methodx.def.json index ed1256e1e85..bf0cef923f7 100644 --- a/resources/definitions/ultimaker_methodx.def.json +++ b/resources/definitions/ultimaker_methodx.def.json @@ -9,7 +9,7 @@ "manufacturer": "Ultimaker B.V.", "file_formats": "application/x-makerbot", "platform": "ultimaker_method_platform.stl", - "bot_id": "lava_f", + "bot_machine_id": "lava_f", "exclude_materials": [ "dsm_", "Essentium_", diff --git a/resources/definitions/ultimaker_methodxl.def.json b/resources/definitions/ultimaker_methodxl.def.json index 96a4728cbb6..3cf50e5b8c4 100644 --- a/resources/definitions/ultimaker_methodxl.def.json +++ b/resources/definitions/ultimaker_methodxl.def.json @@ -9,7 +9,7 @@ "manufacturer": "Ultimaker B.V.", "file_formats": "application/x-makerbot", "platform": "ultimaker_method_xl_platform.stl", - "bot_id": "magma_10", + "bot_machine_id": "magma_10", "has_machine_materials": true, "has_machine_quality": true, "has_materials": true, diff --git a/resources/variants/ultimaker_methodx_1C.inst.cfg b/resources/variants/ultimaker_methodx_1C.inst.cfg index 42a45fe3f96..4a5f41c057f 100644 --- a/resources/variants/ultimaker_methodx_1C.inst.cfg +++ b/resources/variants/ultimaker_methodx_1C.inst.cfg @@ -4,7 +4,7 @@ name = 1C version = 4 [metadata] -bot_id = mk14_c +bot_extruder_id = mk14_c hardware_type = nozzle setting_version = 22 type = variant diff --git a/resources/variants/ultimaker_methodx_1XA.inst.cfg b/resources/variants/ultimaker_methodx_1XA.inst.cfg index 05871055ace..dc0149928fa 100644 --- a/resources/variants/ultimaker_methodx_1XA.inst.cfg +++ b/resources/variants/ultimaker_methodx_1XA.inst.cfg @@ -4,7 +4,7 @@ name = 1XA version = 4 [metadata] -bot_id = mk14_hot +bot_extruder_id = mk14_hot hardware_type = nozzle setting_version = 22 type = variant diff --git a/resources/variants/ultimaker_methodx_2XA.inst.cfg b/resources/variants/ultimaker_methodx_2XA.inst.cfg index fc9ccec85c0..ef1eb62a48a 100644 --- a/resources/variants/ultimaker_methodx_2XA.inst.cfg +++ b/resources/variants/ultimaker_methodx_2XA.inst.cfg @@ -4,7 +4,7 @@ name = 2XA version = 4 [metadata] -bot_id = mk14_hot_s +bot_extruder_id = mk14_hot_s hardware_type = nozzle setting_version = 22 type = variant diff --git a/resources/variants/ultimaker_methodx_LABS.inst.cfg b/resources/variants/ultimaker_methodx_LABS.inst.cfg index 37e1ad8802a..bf6d495e905 100644 --- a/resources/variants/ultimaker_methodx_LABS.inst.cfg +++ b/resources/variants/ultimaker_methodx_LABS.inst.cfg @@ -4,7 +4,7 @@ name = LABS version = 4 [metadata] -bot_id = mk14_e +bot_extruder_id = mk14_e hardware_type = nozzle setting_version = 22 type = variant diff --git a/resources/variants/ultimaker_methodxl_1C.inst.cfg b/resources/variants/ultimaker_methodxl_1C.inst.cfg index ba0f8d1d196..1bed86aa6e2 100644 --- a/resources/variants/ultimaker_methodxl_1C.inst.cfg +++ b/resources/variants/ultimaker_methodxl_1C.inst.cfg @@ -4,7 +4,7 @@ name = 1C version = 4 [metadata] -bot_id = mk14_c +bot_extruder_id = mk14_c hardware_type = nozzle setting_version = 22 type = variant diff --git a/resources/variants/ultimaker_methodxl_1XA.inst.cfg b/resources/variants/ultimaker_methodxl_1XA.inst.cfg index 1f1d60cde30..ce303347f81 100644 --- a/resources/variants/ultimaker_methodxl_1XA.inst.cfg +++ b/resources/variants/ultimaker_methodxl_1XA.inst.cfg @@ -4,7 +4,7 @@ name = 1XA version = 4 [metadata] -bot_id = mk14_hot +bot_extruder_id = mk14_hot hardware_type = nozzle setting_version = 22 type = variant diff --git a/resources/variants/ultimaker_methodxl_2XA.inst.cfg b/resources/variants/ultimaker_methodxl_2XA.inst.cfg index c462e2ed6fa..8ab9108e711 100644 --- a/resources/variants/ultimaker_methodxl_2XA.inst.cfg +++ b/resources/variants/ultimaker_methodxl_2XA.inst.cfg @@ -4,7 +4,7 @@ name = 2XA version = 4 [metadata] -bot_id = mk14_hot_s +bot_extruder_id = mk14_hot_s hardware_type = nozzle setting_version = 22 type = variant diff --git a/resources/variants/ultimaker_methodxl_LABS.inst.cfg b/resources/variants/ultimaker_methodxl_LABS.inst.cfg index 160361cd75f..4ec3edcc337 100644 --- a/resources/variants/ultimaker_methodxl_LABS.inst.cfg +++ b/resources/variants/ultimaker_methodxl_LABS.inst.cfg @@ -4,7 +4,7 @@ name = LABS version = 4 [metadata] -bot_id = mk14_e +bot_extruder_id = mk14_e hardware_type = nozzle setting_version = 22 type = variant From 4e73e6230e68bd0dc85c07b67900afaded979d9d Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Mon, 27 Nov 2023 15:40:23 +0100 Subject: [PATCH 163/765] Fixed wrong French translations --- resources/i18n/fr_FR/cura.po | 2 +- resources/i18n/fr_FR/fdmprinter.def.json.po | 20 ++++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/resources/i18n/fr_FR/cura.po b/resources/i18n/fr_FR/cura.po index 054b77713a6..b597b2d5408 100644 --- a/resources/i18n/fr_FR/cura.po +++ b/resources/i18n/fr_FR/cura.po @@ -4219,7 +4219,7 @@ msgstr "Résumé - Projet Cura" msgctxt "@label" msgid "Support" -msgstr "Assistance" +msgstr "Support" msgctxt "@tooltip" msgid "Support" diff --git a/resources/i18n/fr_FR/fdmprinter.def.json.po b/resources/i18n/fr_FR/fdmprinter.def.json.po index 87d030344c1..e4018d33e57 100644 --- a/resources/i18n/fr_FR/fdmprinter.def.json.po +++ b/resources/i18n/fr_FR/fdmprinter.def.json.po @@ -458,7 +458,7 @@ msgstr "Température du volume d'impression" msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "En activant ce paramètre, votre tour principale recevra un bord même si le modèle n'en a pas. Si vous souhaitez une base plus solide pour une tour élevée, vous pouvez augmenter la hauteur de la base." +msgstr "En activant ce paramètre, votre tour d'amorçage aura un bord même si le modèle n'en a pas. Si vous souhaitez une base plus solide pour une tour élevée, vous pouvez augmenter la hauteur de la base." msgctxt "center_object label" msgid "Center Object" @@ -2518,19 +2518,19 @@ msgstr "Accélération de la tour d'amorçage" msgctxt "prime_tower_brim_enable label" msgid "Prime Tower Base" -msgstr "Base de la tour de prime" +msgstr "Base de la tour d'amorçage" msgctxt "prime_tower_base_height label" msgid "Prime Tower Base Height" -msgstr "Hauteur de la base de la tour de prime" +msgstr "Hauteur de la base de la tour d'amorçage" msgctxt "prime_tower_base_size label" msgid "Prime Tower Base Size" -msgstr "Taille de la base de la tour de prime" +msgstr "Taille de la base de la tour d'amorçage" msgctxt "prime_tower_base_curve_magnitude label" msgid "Prime Tower Base Slope" -msgstr "Pente de la base de la tour principale" +msgstr "Pente de la base de la tour d'amorçage" msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" @@ -2550,7 +2550,7 @@ msgstr "Volume minimum de la tour d'amorçage" msgctxt "prime_tower_raft_base_line_spacing label" msgid "Prime Tower Raft Line Spacing" -msgstr "Espacement des lignes de radeau de la tour de prime" +msgstr "Espacement des lignes de radeau de la tour d'amorçage" msgctxt "prime_tower_size label" msgid "Prime Tower Size" @@ -3786,7 +3786,7 @@ msgstr "La distance entre les lignes du radeau pour les couches supérieures de msgctxt "prime_tower_raft_base_line_spacing description" msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "La distance entre les lignes de radeau pour la couche de radeau unique de la tour de prime. Un espacement large permet un retrait facile du radeau de la plaque de construction." +msgstr "La distance entre les lignes de radeau pour la couche de radeau unique de la tour d'amorçage. Un espacement large permet un retrait facile du radeau du plateau" msgctxt "interlocking_depth description" msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." @@ -3986,7 +3986,7 @@ msgstr "La hauteur de la couche initiale en mm. Une couche initiale plus épaiss msgctxt "prime_tower_base_height description" msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "Augmenter cette valeur rendra la tour principale plus robuste car la base sera plus large. Si ce paramètre est trop bas, la tour principale n'aura pas une base solide." +msgstr "Augmenter cette valeur rendra la tour d'amorçage plus robuste car la base sera plus large. Si ce paramètre est trop bas, la tour d'amorçage n'aura pas une base solide." msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." @@ -4062,7 +4062,7 @@ msgstr "La longueur de matériau rétracté pendant une rétraction." msgctxt "prime_tower_base_curve_magnitude description" msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "Le facteur de magnitude utilisé pour la pente de la base de la tour principale. Si vous augmentez cette valeur, la base deviendra plus mince. Si vous la diminuez, la base deviendra plus épaisse." +msgstr "Le facteur de magnitude utilisé pour la pente de la base de la tour d'amorçage. Si vous augmentez cette valeur, la base deviendra plus mince. Si vous la diminuez, la base deviendra plus épaisse." msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." @@ -4698,7 +4698,7 @@ msgstr "La largeur des attaches de la structure de connexion." msgctxt "prime_tower_base_size description" msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "La largeur du bord/de la base de la tour principale. Une base plus large améliore l'adhésion au plateau d'impression, mais réduit également la zone d'impression effective." +msgstr "La largeur du bord/de la base de la tour d'amorçage. Une base plus large améliore l'adhésion au plateau, mais réduit également la zone d'impression effective." msgctxt "prime_tower_size description" msgid "The width of the prime tower." From e1110dd412c88d3d841a003bfe2fe9ce9ef5cf49 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 27 Nov 2023 16:23:13 +0100 Subject: [PATCH 164/765] Update workflow to be on par with other repo's Contribute to CURA-10831 --- .github/workflows/conan-package.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/conan-package.yml b/.github/workflows/conan-package.yml index e06b7dd2d5e..24793fa4cc2 100644 --- a/.github/workflows/conan-package.yml +++ b/.github/workflows/conan-package.yml @@ -11,21 +11,21 @@ on: - 'packaging/**' - '.github/workflows/conan-*.yml' - '.github/workflows/notify.yml' - - '.github/workflows/requirements-conan-package.txt' + - '.github/workflows/requirements-runner.txt' - 'requirements*.txt' - 'conanfile.py' - 'conandata.yml' - - 'GitVersion.yml' - '*.jinja' branches: - - main + - 'main' - 'CURA-*' - - '[1-9].[0-9]' - - '[1-9].[0-9][0-9]' + - 'PP-*' + - '[0-9].[0-9]' + - '[0-9].[0-9][0-9]' tags: - - '[1-9].[0-9].[0-9]*' - - '[1-9].[0-9].[0-9]' - - '[1-9].[0-9][0-9].[0-9]*' + - '[0-9].[0-9].[0-9]*' + - '[0-9].[0-9].[0-9]' + - '[0-9].[0-9][0-9].[0-9]*' env: CONAN_LOGIN_USERNAME_CURA: ${{ secrets.CONAN_USER }} From 8da1c6b40c040c5a5db74d7ad3d09187e85333df Mon Sep 17 00:00:00 2001 From: MariMakes <40423138+MariMakes@users.noreply.github.com> Date: Mon, 27 Nov 2023 17:00:08 +0100 Subject: [PATCH 165/765] Updated changelog from Stable Update changelog to reflect changes --- resources/texts/change_log.txt | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/resources/texts/change_log.txt b/resources/texts/change_log.txt index 50aee251e8a..129e9d93acb 100644 --- a/resources/texts/change_log.txt +++ b/resources/texts/change_log.txt @@ -2,23 +2,35 @@ * New features and improvements: - Introduced the MethodX and MethodXL printers with their materials and the option to write to .makerbot -- Prime tower base settings increase the stability of large prime towers; You can tune the Size, Height, and Slope to increase your prime tower sturdiness -- Introduced the setting for Raft Line Spacing, but for the primetower +- Prime tower base settings increase the stability of large prime towers; You can tune the Size, Height, and Slope to increase your prime tower's sturdiness +- Introduced the setting for Raft Line Spacing, but for the prime tower - The Start and End gcodes now accept variables, and math including those variables - Updated the Support Z Distance to allow for more different values, no longer only multiple layerheights * Bug fixes: - Fixed a crash for some linux users when trying to open the file menu +* Bugs resolved since the Beta Release +- Introduced Balanced and Solid profiles for 1C cores to UltiMaker Method X and Method XL +- Improved self-support for UltiMaker MethodX and MethodXL printers so the second extruder will not be used +- The prime tower is now always enabled when the second extruder is used for the MethodX and MethodXL printers +- Updated the default prime tower position so it doesn't prevent slicing for some printers +- The raft was affected by non-uniform scaling in Z only +- Slice information attributes were not available through start-end code formulas +- Resolved an issue with 100% support roof for tree support, contributed by @ThomasRahm + * Printer definitions, profiles and materials: +- Updated bridge flows for UltiMaker PLA, TPLA and ABS to address pillowing in AA 0.8 for UltiMaker printers - Introduced Ender 3 V3 SE, contributed by @dim1triy * Community translations: - Updated Spanish translation for Lightning infill, contributed by @Pelochus +- Updated German translation for Laying object flat on buildplate, contributed by @gluetolf +- Updated Brazilian translations, contributed by @Patola -* Known Issue -- The predicted printing time for dual extrusion printjobs on the Method are deviating from the actual printing time. Printjobs will take longer than predicted for now. - +* Known Issues +- The predicted printing time for dual extrusion printjobs on the Method X and Method XL are deviating from the actual printing time +- It’s not possible yet, to use Method series printers with Digital Factory. We hope to resolve this for the next release. [5.5] From efe43325ae844389c846b8337deaf8fce4c06be1 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 27 Nov 2023 17:21:20 +0100 Subject: [PATCH 166/765] Fix intent display in darkmode --- .../Recommended/RecommendedQualityProfileSelectorButton.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelectorButton.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelectorButton.qml index 37478781ca9..1bbc726b9d8 100644 --- a/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelectorButton.qml +++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelectorButton.qml @@ -84,6 +84,7 @@ Rectangle visible: icon === "" && custom_icon === "" border.width: UM.Theme.getSize("thick_lining").width border.color: UM.Theme.getColor("text") + color: "transparent" UM.Label { From d74edde1d75b14f5516cb38608f39dabadc72653 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 28 Nov 2023 07:00:50 +0100 Subject: [PATCH 167/765] Add the new Cura JFrog remote Upload to both remotes during the overlapping time Contribute to CURA-10831 --- .github/workflows/conan-package-create.yml | 17 ++++++++++++++--- .github/workflows/conan-package.yml | 5 +++++ .github/workflows/conan-recipe-export.yml | 13 ++++++++++++- 3 files changed, 31 insertions(+), 4 deletions(-) diff --git a/.github/workflows/conan-package-create.yml b/.github/workflows/conan-package-create.yml index 18e2600e1d7..6bffbb88573 100644 --- a/.github/workflows/conan-package-create.yml +++ b/.github/workflows/conan-package-create.yml @@ -139,15 +139,26 @@ jobs: conan config install https://github.com/Ultimaker/conan-config.git -a "-b runner/${{ runner.os }}/${{ runner.arch }}" - name: Add Cura private Artifactory remote - run: conan remote add cura-private https://ultimaker.jfrog.io/artifactory/api/conan/cura-private True + run: | + conan remote add cura-private https://ultimaker.jfrog.io/artifactory/api/conan/cura-private True + conan remote add cura-private-conan-dev https://cura.jfrog.io/artifactory/api/conan/cura-private-conan-dev True + + - name: Set GH service account for remote cura-conan-dev + run: | + conan user -p ${{ secrets.CONAN_GH_RUNNER_PASS }} -r cura-conan-dev ${{ secrets.CONAN_GH_RUNNER_USER }} + conan user -p ${{ secrets.CONAN_GH_RUNNER_PASS }} -r cura-private-conan-dev ${{ secrets.CONAN_GH_RUNNER_USER }} - name: Create the Packages run: conan install ${{ inputs.recipe_id_full }} --build=missing --update -c tools.build:skip_test=True - name: Upload the Package(s) if: ${{ always() && inputs.conan_upload_community }} - run: conan upload ${{ inputs.recipe_id_full }} -r cura --all -c + run: | + conan upload ${{ inputs.recipe_id_full }} -r cura --all -c + conan upload ${{ inputs.recipe_id_full }} -r cura-conan-dev --all -c - name: Upload the Package(s) to the private Artifactory if: ${{ always() && ! inputs.conan_upload_community }} - run: conan upload ${{ inputs.recipe_id_full }} -r cura-private --all -c + run: | + conan upload ${{ inputs.recipe_id_full }} -r cura-private --all -c + conan upload ${{ inputs.recipe_id_full }} -r cura-private-conan-dev --all -c diff --git a/.github/workflows/conan-package.yml b/.github/workflows/conan-package.yml index 4b5c0f914ab..736a5a7a994 100644 --- a/.github/workflows/conan-package.yml +++ b/.github/workflows/conan-package.yml @@ -118,6 +118,9 @@ jobs: conan config install https://github.com/Ultimaker/conan-config.git conan config install https://github.com/Ultimaker/conan-config.git -a "-b runner/${{ runner.os }}/${{ runner.arch }}" + - name: Set GH service account for remote cura-conan-dev + run: conan user -p ${{ secrets.CONAN_GH_RUNNER_PASS }} -r cura-conan-dev ${{ secrets.CONAN_GH_RUNNER_USER }} + - name: Create the Packages run: conan create . ${{ needs.conan-recipe-version.outputs.recipe_id_full }} --build=missing --update -o ${{ needs.conan-recipe-version.outputs.project_name }}:devtools=True -o ${{ needs.conan-recipe-version.outputs.project_name }}:enable_i18n=True -c tools.build:skip_test=True @@ -129,7 +132,9 @@ jobs: if: always() run: | conan upload ${{ needs.conan-recipe-version.outputs.recipe_id_full }} -r cura --all -c + conan upload ${{ needs.conan-recipe-version.outputs.recipe_id_full }} -r cura-conan-dev --all -c conan upload ${{ needs.conan-recipe-version.outputs.recipe_id_latest }} -r cura -c + conan upload ${{ needs.conan-recipe-version.outputs.recipe_id_latest }} -r cura-conan-dev -c notify-create: if: ${{ always() && (github.event_name == 'push' && (github.ref_name == 'main' || github.ref_name == 'master' || needs.conan-recipe-version.outputs.is_release_branch == 'true')) }} diff --git a/.github/workflows/conan-recipe-export.yml b/.github/workflows/conan-recipe-export.yml index ba5aaa49a13..9d72d9fa8a7 100644 --- a/.github/workflows/conan-recipe-export.yml +++ b/.github/workflows/conan-recipe-export.yml @@ -80,7 +80,14 @@ jobs: conan config install https://github.com/Ultimaker/conan-config.git -a "-b runner/${{ runner.os }}/${{ runner.arch }}" - name: Add Cura private Artifactory remote - run: conan remote add cura-private https://ultimaker.jfrog.io/artifactory/api/conan/cura-private True + run: | + conan remote add cura-private https://ultimaker.jfrog.io/artifactory/api/conan/cura-private True + conan remote add cura-private-conan-dev https://cura.jfrog.io/artifactory/api/conan/cura-private-conan-dev True + + - name: Set GH service account for remote cura-conan-dev + run: | + conan user -p ${{ secrets.CONAN_GH_RUNNER_PASS }} -r cura-conan-dev ${{ secrets.CONAN_GH_RUNNER_USER }} + conan user -p ${{ secrets.CONAN_GH_RUNNER_PASS }} -r cura-private-conan-dev ${{ secrets.CONAN_GH_RUNNER_USER }} - name: Export the Package (binaries) if: ${{ inputs.conan_export_binaries }} @@ -98,10 +105,14 @@ jobs: if: ${{ always() && inputs.conan_upload_community }} run: | conan upload ${{ inputs.recipe_id_full }} -r cura --all -c + conan upload ${{ inputs.recipe_id_full }} -r cura-conan-dev --all -c conan upload ${{ inputs.recipe_id_latest }} -r cura -c + conan upload ${{ inputs.recipe_id_latest }} -r cura-conan-dev -c - name: Upload the Package(s) to the private Artifactory if: ${{ always() && ! inputs.conan_upload_community }} run: | conan upload ${{ inputs.recipe_id_full }} -r cura-private --all -c + conan upload ${{ inputs.recipe_id_full }} -r cura-private-conan-dev --all -c conan upload ${{ inputs.recipe_id_latest }} -r cura-private -c + conan upload ${{ inputs.recipe_id_latest }} -r cura-private-conan-dev -c From c2b40bb562f77b20cf768bbe122c646fe82ad433 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 28 Nov 2023 07:48:17 +0100 Subject: [PATCH 168/765] Add missing quote marks Contribute to CURA-10831 --- .github/workflows/conan-package-create.yml | 4 ++-- .github/workflows/conan-package.yml | 2 +- .github/workflows/conan-recipe-export.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/conan-package-create.yml b/.github/workflows/conan-package-create.yml index 6bffbb88573..220c8feef3d 100644 --- a/.github/workflows/conan-package-create.yml +++ b/.github/workflows/conan-package-create.yml @@ -145,8 +145,8 @@ jobs: - name: Set GH service account for remote cura-conan-dev run: | - conan user -p ${{ secrets.CONAN_GH_RUNNER_PASS }} -r cura-conan-dev ${{ secrets.CONAN_GH_RUNNER_USER }} - conan user -p ${{ secrets.CONAN_GH_RUNNER_PASS }} -r cura-private-conan-dev ${{ secrets.CONAN_GH_RUNNER_USER }} + conan user -p ${{ secrets.CONAN_GH_RUNNER_PASS }} -r cura-conan-dev "${{ secrets.CONAN_GH_RUNNER_USER }}" + conan user -p ${{ secrets.CONAN_GH_RUNNER_PASS }} -r cura-private-conan-dev "${{ secrets.CONAN_GH_RUNNER_USER }}" - name: Create the Packages run: conan install ${{ inputs.recipe_id_full }} --build=missing --update -c tools.build:skip_test=True diff --git a/.github/workflows/conan-package.yml b/.github/workflows/conan-package.yml index 736a5a7a994..c561e85a946 100644 --- a/.github/workflows/conan-package.yml +++ b/.github/workflows/conan-package.yml @@ -119,7 +119,7 @@ jobs: conan config install https://github.com/Ultimaker/conan-config.git -a "-b runner/${{ runner.os }}/${{ runner.arch }}" - name: Set GH service account for remote cura-conan-dev - run: conan user -p ${{ secrets.CONAN_GH_RUNNER_PASS }} -r cura-conan-dev ${{ secrets.CONAN_GH_RUNNER_USER }} + run: conan user -p ${{ secrets.CONAN_GH_RUNNER_PASS }} -r cura-conan-dev "${{ secrets.CONAN_GH_RUNNER_USER }}" - name: Create the Packages run: conan create . ${{ needs.conan-recipe-version.outputs.recipe_id_full }} --build=missing --update -o ${{ needs.conan-recipe-version.outputs.project_name }}:devtools=True -o ${{ needs.conan-recipe-version.outputs.project_name }}:enable_i18n=True -c tools.build:skip_test=True diff --git a/.github/workflows/conan-recipe-export.yml b/.github/workflows/conan-recipe-export.yml index 9d72d9fa8a7..9036fe9a215 100644 --- a/.github/workflows/conan-recipe-export.yml +++ b/.github/workflows/conan-recipe-export.yml @@ -86,8 +86,8 @@ jobs: - name: Set GH service account for remote cura-conan-dev run: | - conan user -p ${{ secrets.CONAN_GH_RUNNER_PASS }} -r cura-conan-dev ${{ secrets.CONAN_GH_RUNNER_USER }} - conan user -p ${{ secrets.CONAN_GH_RUNNER_PASS }} -r cura-private-conan-dev ${{ secrets.CONAN_GH_RUNNER_USER }} + conan user -p ${{ secrets.CONAN_GH_RUNNER_PASS }} -r cura-conan-dev "${{ secrets.CONAN_GH_RUNNER_USER }}" + conan user -p ${{ secrets.CONAN_GH_RUNNER_PASS }} -r cura-private-conan-dev "${{ secrets.CONAN_GH_RUNNER_USER }}" - name: Export the Package (binaries) if: ${{ inputs.conan_export_binaries }} From a8d1c8b639b05bf40215f875e2f9a7746a5e4b3a Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 28 Nov 2023 08:16:08 +0100 Subject: [PATCH 169/765] Add new JFrog remote Contribute to CURA-10831 --- .github/workflows/conan-package.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/conan-package.yml b/.github/workflows/conan-package.yml index 4b5c0f914ab..c561e85a946 100644 --- a/.github/workflows/conan-package.yml +++ b/.github/workflows/conan-package.yml @@ -118,6 +118,9 @@ jobs: conan config install https://github.com/Ultimaker/conan-config.git conan config install https://github.com/Ultimaker/conan-config.git -a "-b runner/${{ runner.os }}/${{ runner.arch }}" + - name: Set GH service account for remote cura-conan-dev + run: conan user -p ${{ secrets.CONAN_GH_RUNNER_PASS }} -r cura-conan-dev "${{ secrets.CONAN_GH_RUNNER_USER }}" + - name: Create the Packages run: conan create . ${{ needs.conan-recipe-version.outputs.recipe_id_full }} --build=missing --update -o ${{ needs.conan-recipe-version.outputs.project_name }}:devtools=True -o ${{ needs.conan-recipe-version.outputs.project_name }}:enable_i18n=True -c tools.build:skip_test=True @@ -129,7 +132,9 @@ jobs: if: always() run: | conan upload ${{ needs.conan-recipe-version.outputs.recipe_id_full }} -r cura --all -c + conan upload ${{ needs.conan-recipe-version.outputs.recipe_id_full }} -r cura-conan-dev --all -c conan upload ${{ needs.conan-recipe-version.outputs.recipe_id_latest }} -r cura -c + conan upload ${{ needs.conan-recipe-version.outputs.recipe_id_latest }} -r cura-conan-dev -c notify-create: if: ${{ always() && (github.event_name == 'push' && (github.ref_name == 'main' || github.ref_name == 'master' || needs.conan-recipe-version.outputs.is_release_branch == 'true')) }} From 02655cde2ec4a48a29a55a73841af08335a5a26b Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 27 Nov 2023 17:28:24 +0100 Subject: [PATCH 170/765] Add tool tip + icon + description for solid intent CURA-11394 --- cura/Machines/Models/IntentCategoryModel.py | 5 +++++ cura/Machines/Models/IntentSelectionModel.py | 5 +++-- cura/Machines/Models/IntentTranslations.py | 5 +++++ 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/cura/Machines/Models/IntentCategoryModel.py b/cura/Machines/Models/IntentCategoryModel.py index e9b94d42334..cf08c53e74c 100644 --- a/cura/Machines/Models/IntentCategoryModel.py +++ b/cura/Machines/Models/IntentCategoryModel.py @@ -61,6 +61,11 @@ def _get_translations(cls): "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance.") } + cls._translations["solid"] = { + "name": catalog.i18nc("@label", "Solid"), + "description": catalog.i18nc("@text", + "A highly dense and strong part but at a slower print time. Great for functional parts.") + } return cls._translations def __init__(self, intent_category: str) -> None: diff --git a/cura/Machines/Models/IntentSelectionModel.py b/cura/Machines/Models/IntentSelectionModel.py index 3df94e4ad82..80176f823e3 100644 --- a/cura/Machines/Models/IntentSelectionModel.py +++ b/cura/Machines/Models/IntentSelectionModel.py @@ -57,8 +57,9 @@ def __init__(self, parent: Optional[QObject] = None) -> None: self._onChange() - _default_intent_categories = ["default", "visual", "engineering", "quick", "annealing"] - _icons = {"default": "GearCheck", "visual": "Visual", "engineering": "Nut", "quick": "SpeedOMeter", "annealing": "Anneal"} + _default_intent_categories = ["default", "visual", "engineering", "quick", "annealing", "solid"] + _icons = {"default": "GearCheck", "visual": "Visual", "engineering": "Nut", "quick": "SpeedOMeter", + "annealing": "Anneal", "solid": "Hammer"} def _onContainerChange(self, container: ContainerInterface) -> None: """Updates the list of intents if an intent profile was added or removed.""" diff --git a/cura/Machines/Models/IntentTranslations.py b/cura/Machines/Models/IntentTranslations.py index 43fe771d675..25c2bfab763 100644 --- a/cura/Machines/Models/IntentTranslations.py +++ b/cura/Machines/Models/IntentTranslations.py @@ -24,3 +24,8 @@ "name": catalog.i18nc("@label", "Draft"), "description": catalog.i18nc("@text", "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction.") } +intent_translations["quick"] = { + "name": catalog.i18nc("@label", "Solid"), + "description": catalog.i18nc("@text", + "A highly dense and strong part but at a slower print time. Great for functional parts.") +} From 6cca53430494dd8b8e728649c1d5f29fc79c0f63 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Tue, 28 Nov 2023 10:34:08 +0100 Subject: [PATCH 171/765] Fix previous commit CURA-11394 --- cura/Machines/Models/IntentTranslations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/Machines/Models/IntentTranslations.py b/cura/Machines/Models/IntentTranslations.py index 25c2bfab763..3a2afcb7c5c 100644 --- a/cura/Machines/Models/IntentTranslations.py +++ b/cura/Machines/Models/IntentTranslations.py @@ -24,7 +24,7 @@ "name": catalog.i18nc("@label", "Draft"), "description": catalog.i18nc("@text", "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction.") } -intent_translations["quick"] = { +intent_translations["solid"] = { "name": catalog.i18nc("@label", "Solid"), "description": catalog.i18nc("@text", "A highly dense and strong part but at a slower print time. Great for functional parts.") From 3e725448d9885a249d1ef2b35d64fea69498c253 Mon Sep 17 00:00:00 2001 From: Mariska <40423138+MariMakes@users.noreply.github.com> Date: Tue, 28 Nov 2023 10:36:45 +0100 Subject: [PATCH 172/765] Apply suggestions from code review Based on codereview Co-authored-by: Casper Lamboo --- resources/texts/change_log.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/texts/change_log.txt b/resources/texts/change_log.txt index 129e9d93acb..de95562b6eb 100644 --- a/resources/texts/change_log.txt +++ b/resources/texts/change_log.txt @@ -12,11 +12,11 @@ * Bugs resolved since the Beta Release - Introduced Balanced and Solid profiles for 1C cores to UltiMaker Method X and Method XL -- Improved self-support for UltiMaker MethodX and MethodXL printers so the second extruder will not be used +- Improved self-support for UltiMaker MethodX and MethodXL printers so the support extruder will not be used - The prime tower is now always enabled when the second extruder is used for the MethodX and MethodXL printers - Updated the default prime tower position so it doesn't prevent slicing for some printers -- The raft was affected by non-uniform scaling in Z only -- Slice information attributes were not available through start-end code formulas +- Fixed an issue where raft layers were partially printed +- Slice information template variables were not available through start-end code formulas - Resolved an issue with 100% support roof for tree support, contributed by @ThomasRahm * Printer definitions, profiles and materials: From 5b6e9d1005888e29190170c4b870a7db1eeef579 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 28 Nov 2023 11:57:11 +0100 Subject: [PATCH 173/765] Pin the release versions Contributes to CURA-11385 --- conanfile.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/conanfile.py b/conanfile.py index 8a182354ec2..af6c0fccf11 100644 --- a/conanfile.py +++ b/conanfile.py @@ -50,7 +50,7 @@ class CuraConan(ConanFile): def set_version(self): if not self.version: - self.version = "5.6.0-beta.2" + self.version = "5.6.0" @property def _i18n_options(self): @@ -323,18 +323,18 @@ def requirements(self): self.requires("zlib/1.2.13") self.requires("pyarcus/5.3.0") self.requires("dulcificum/0.1.0-beta.1") # TODO update pin for stable - self.requires("curaengine/(latest)@ultimaker/stable") + self.requires("curaengine/5.6.0") self.requires("pysavitar/5.3.0") self.requires("pynest2d/5.3.0") self.requires("curaengine_plugin_gradual_flow/0.1.0") - self.requires("uranium/(latest)@ultimaker/stable") - self.requires("cura_binary_data/(latest)@ultimaker/stable") + self.requires("uranium/5.6.0") + self.requires("cura_binary_data/5.6.0") self.requires("cpython/3.10.4") if self.options.internal: self.requires("cura_private_data/(latest)@internal/testing") self.requires("fdm_materials/(latest)@internal/testing") else: - self.requires("fdm_materials/(latest)@ultimaker/stable") + self.requires("fdm_materials/5.6.0") def build_requirements(self): if self.options.get_safe("enable_i18n", False): From 28d44f6fe020db1b53ee215ecccdc288d56688ee Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 28 Nov 2023 13:28:05 +0100 Subject: [PATCH 174/765] Esnure that the installers are aware of the new JFrog artifactory --- .github/workflows/linux.yml | 3 +++ .github/workflows/macos.yml | 3 +++ .github/workflows/windows.yml | 3 +++ 3 files changed, 9 insertions(+) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 1dee7a237f6..52dc5e73d3d 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -143,6 +143,9 @@ jobs: conan config install https://github.com/Ultimaker/conan-config.git conan config install https://github.com/Ultimaker/conan-config.git -a "-b runner/${{ runner.os }}/${{ runner.arch }}" + - name: Set GH service account for remote cura-conan-dev + run: conan user -p ${{ secrets.CONAN_GH_RUNNER_PASS }} -r cura-conan-dev "${{ secrets.CONAN_GH_RUNNER_USER }}" + - name: Use Conan download cache (Bash) run: conan config set storage.download_cache="$HOME/.conan/conan_download_cache" diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 3bde4f1b002..9e6dbf85410 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -152,6 +152,9 @@ jobs: conan config install https://github.com/Ultimaker/conan-config.git conan config install https://github.com/Ultimaker/conan-config.git -a "-b runner/${{ runner.os }}/${{ runner.arch }}" + - name: Set GH service account for remote cura-conan-dev + run: conan user -p ${{ secrets.CONAN_GH_RUNNER_PASS }} -r cura-conan-dev "${{ secrets.CONAN_GH_RUNNER_USER }}" + - name: Use Conan download cache (Bash) run: conan config set storage.download_cache="$HOME/.conan/conan_download_cache" diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index ad946d9d99f..eb0e47b2bfc 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -118,6 +118,9 @@ jobs: conan config install https://github.com/Ultimaker/conan-config.git conan config install https://github.com/Ultimaker/conan-config.git -a "-b runner/${{ runner.os }}/${{ runner.arch }}" + - name: Set GH service account for remote cura-conan-dev + run: conan user -p ${{ secrets.CONAN_GH_RUNNER_PASS }} -r cura-conan-dev "${{ secrets.CONAN_GH_RUNNER_USER }}" + - name: Use Conan download cache (Powershell) run: conan config set storage.download_cache="C:\Users\runneradmin\.conan\conan_download_cache" From 6f335e4ed3d031e7513ebf33aa92d272e6ec623b Mon Sep 17 00:00:00 2001 From: Pavel Polyakov Date: Tue, 28 Nov 2023 21:32:41 +0800 Subject: [PATCH 175/765] docs(readme): update Downloads badge --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 26b9ef06f9f..27df14607cb 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ [![Badge Test]][Test]    [![Badge Conan]][Conan]    -![Badge Downloads] +[![Badge Downloads]][Downloads]

    @@ -67,6 +67,7 @@ [Issues]: https://github.com/Ultimaker/Cura/issues [Conan]: https://github.com/Ultimaker/Cura/actions/workflows/conan-package.yml [Test]: https://github.com/Ultimaker/Cura/actions/workflows/unit-test.yml +[Downloads]: https://github.com/Ultimaker/Cura/releases/latest [License]: LICENSE [Report]: docs/Report.md From 2280b7c5a619793ef4b988dd9c17c455601a4366 Mon Sep 17 00:00:00 2001 From: Pavel Polyakov Date: Tue, 28 Nov 2023 21:47:17 +0800 Subject: [PATCH 176/765] docs(readme): fix Test and Conan badges --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 27df14607cb..7d1b575e690 100644 --- a/README.md +++ b/README.md @@ -82,8 +82,8 @@ [Badge License]: https://img.shields.io/badge/License-LGPL3-336887.svg?style=for-the-badge&labelColor=458cb5&logoColor=white&logo=GNU [Badge Closed]: https://img.shields.io/github/issues-closed/ultimaker/cura?style=for-the-badge&logoColor=white&labelColor=629944&color=446a30&logo=AddThis [Badge Issues]: https://img.shields.io/github/issues/ultimaker/cura?style=for-the-badge&logoColor=white&labelColor=c34360&color=933349&logo=AdBlock -[Badge Conan]: https://img.shields.io/github/workflow/status/Ultimaker/Cura/conan-package?style=for-the-badge&logoColor=white&labelColor=6185aa&color=4c6987&logo=Conan&label=Conan%20Package -[Badge Test]: https://img.shields.io/github/workflow/status/Ultimaker/Cura/unit-test?style=for-the-badge&logoColor=white&labelColor=4a999d&color=346c6e&logo=Codacy&label=Unit%20Test +[Badge Conan]: https://img.shields.io/github/actions/workflow/status/Ultimaker/Cura/conan-package.yml?branch=main&style=for-the-badge&logoColor=white&labelColor=6185aa&color=4c6987&logo=Conan&label=Conan%20Package +[Badge Test]: https://img.shields.io/github/actions/workflow/status/Ultimaker/Cura/unit-test.yml?branch=main&style=for-the-badge&logoColor=white&labelColor=4a999d&color=346c6e&logo=Codacy&label=Unit%20Test [Badge Size]: https://img.shields.io/github/repo-size/ultimaker/cura?style=for-the-badge&logoColor=white&labelColor=715a97&color=584674&logo=GoogleAnalytics [Badge Downloads]: https://img.shields.io/github/downloads-pre/Ultimaker/Cura/latest/total?style=for-the-badge From 1f9e0e2dee75bcbc12fbe1b54c61de10e5a5f65c Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Tue, 28 Nov 2023 15:15:39 +0100 Subject: [PATCH 177/765] Add url protocol support for msi, nsis, dmg and pkg installers CURA-11288 --- UltiMaker-Cura.spec.jinja | 4 +++ packaging/NSIS/Ultimaker-Cura.nsi.jinja | 15 +++++++++++ packaging/msi/UltiMaker-Cura.wxs.jinja | 36 +++++++++++++++++++++++++ 3 files changed, 55 insertions(+) diff --git a/UltiMaker-Cura.spec.jinja b/UltiMaker-Cura.spec.jinja index 3d540d3b8f9..cd939cf7362 100644 --- a/UltiMaker-Cura.spec.jinja +++ b/UltiMaker-Cura.spec.jinja @@ -266,6 +266,10 @@ app = UMBUNDLE( 'CFBundlePackageType': 'APPL', 'CFBundleVersionString': {{ version }}, 'CFBundleShortVersionString': {{ short_version }}, + 'CFBundleURLTypes': [{ + 'CFBundleURLName': '{{ display_name }}', + 'CFBundleURLSchemes': ['cura', 'slicer'], + }], 'CFBundleDocumentTypes': [{ 'CFBundleTypeRole': 'Viewer', 'CFBundleTypeExtensions': ['*'], diff --git a/packaging/NSIS/Ultimaker-Cura.nsi.jinja b/packaging/NSIS/Ultimaker-Cura.nsi.jinja index 9996b247738..228dba4fe48 100644 --- a/packaging/NSIS/Ultimaker-Cura.nsi.jinja +++ b/packaging/NSIS/Ultimaker-Cura.nsi.jinja @@ -192,3 +192,18 @@ DeleteRegKey ${REG_ROOT} "${UNINSTALL_PATH}" SectionEnd ###################################################################### + +Section UrlProtocol + WriteRegStr HKCR "cura" "" "URL:cura" + WriteRegStr HKCR "cura" "URL Protocol" "" + WriteRegStr HKCR "cura\DefaultIcon" "" "$INSTDIR\${MAIN_APP_EXE},1" + WriteRegStr HKCR "cura\shell" "" "open" + WriteRegStr HKCR "cura\shell\open\command" "" '"$INSTDIR\${MAIN_APP_EXE}" "%1"' + + WriteRegStr HKCR "slicer" "" "URL:slicer" + WriteRegStr HKCR "slicer" "URL Protocol" "" + WriteRegStr HKCR "slicer\DefaultIcon" "" "$INSTDIR\${MAIN_APP_EXE},1" + WriteRegStr HKCR "slicer\shell" "" "open" + WriteRegStr HKCR "slicer\shell\open\command" "" '"$INSTDIR\${MAIN_APP_EXE}" "%1"' + +SectionEnd \ No newline at end of file diff --git a/packaging/msi/UltiMaker-Cura.wxs.jinja b/packaging/msi/UltiMaker-Cura.wxs.jinja index a183a97d5f2..5ce8cd0a08b 100644 --- a/packaging/msi/UltiMaker-Cura.wxs.jinja +++ b/packaging/msi/UltiMaker-Cura.wxs.jinja @@ -33,6 +33,21 @@ /> + + + + + {% if "Enterprise" in app_name %} @@ -144,11 +159,32 @@ + + + + + + + + + + + + + + + + + + + + + From 17cc36a96d7da42b9ccf5d21448b51663d3fe2bf Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 28 Nov 2023 16:19:35 +0100 Subject: [PATCH 178/765] Switch to cura jfrog Contributes to CURA-10831 --- .github/workflows/conan-package-create.yml | 16 ++++------------ .github/workflows/conan-package.yml | 5 ----- .github/workflows/conan-recipe-export.yml | 12 ++---------- .github/workflows/linux.yml | 3 --- .github/workflows/macos.yml | 5 +---- .github/workflows/windows.yml | 3 --- 6 files changed, 7 insertions(+), 37 deletions(-) diff --git a/.github/workflows/conan-package-create.yml b/.github/workflows/conan-package-create.yml index 220c8feef3d..56c96f483fc 100644 --- a/.github/workflows/conan-package-create.yml +++ b/.github/workflows/conan-package-create.yml @@ -139,26 +139,18 @@ jobs: conan config install https://github.com/Ultimaker/conan-config.git -a "-b runner/${{ runner.os }}/${{ runner.arch }}" - name: Add Cura private Artifactory remote - run: | - conan remote add cura-private https://ultimaker.jfrog.io/artifactory/api/conan/cura-private True - conan remote add cura-private-conan-dev https://cura.jfrog.io/artifactory/api/conan/cura-private-conan-dev True + run: conan remote add cura-private-conan-dev https://cura.jfrog.io/artifactory/api/conan/cura-private-conan-dev True - name: Set GH service account for remote cura-conan-dev - run: | - conan user -p ${{ secrets.CONAN_GH_RUNNER_PASS }} -r cura-conan-dev "${{ secrets.CONAN_GH_RUNNER_USER }}" - conan user -p ${{ secrets.CONAN_GH_RUNNER_PASS }} -r cura-private-conan-dev "${{ secrets.CONAN_GH_RUNNER_USER }}" + run: conan user -p ${{ secrets.CONAN_GH_RUNNER_PASS }} -r cura-private-conan-dev "${{ secrets.CONAN_GH_RUNNER_USER }}" - name: Create the Packages run: conan install ${{ inputs.recipe_id_full }} --build=missing --update -c tools.build:skip_test=True - name: Upload the Package(s) if: ${{ always() && inputs.conan_upload_community }} - run: | - conan upload ${{ inputs.recipe_id_full }} -r cura --all -c - conan upload ${{ inputs.recipe_id_full }} -r cura-conan-dev --all -c + run: conan upload ${{ inputs.recipe_id_full }} -r cura --all -c - name: Upload the Package(s) to the private Artifactory if: ${{ always() && ! inputs.conan_upload_community }} - run: | - conan upload ${{ inputs.recipe_id_full }} -r cura-private --all -c - conan upload ${{ inputs.recipe_id_full }} -r cura-private-conan-dev --all -c + run: conan upload ${{ inputs.recipe_id_full }} -r cura-private-conan-dev --all -c diff --git a/.github/workflows/conan-package.yml b/.github/workflows/conan-package.yml index c561e85a946..4b5c0f914ab 100644 --- a/.github/workflows/conan-package.yml +++ b/.github/workflows/conan-package.yml @@ -118,9 +118,6 @@ jobs: conan config install https://github.com/Ultimaker/conan-config.git conan config install https://github.com/Ultimaker/conan-config.git -a "-b runner/${{ runner.os }}/${{ runner.arch }}" - - name: Set GH service account for remote cura-conan-dev - run: conan user -p ${{ secrets.CONAN_GH_RUNNER_PASS }} -r cura-conan-dev "${{ secrets.CONAN_GH_RUNNER_USER }}" - - name: Create the Packages run: conan create . ${{ needs.conan-recipe-version.outputs.recipe_id_full }} --build=missing --update -o ${{ needs.conan-recipe-version.outputs.project_name }}:devtools=True -o ${{ needs.conan-recipe-version.outputs.project_name }}:enable_i18n=True -c tools.build:skip_test=True @@ -132,9 +129,7 @@ jobs: if: always() run: | conan upload ${{ needs.conan-recipe-version.outputs.recipe_id_full }} -r cura --all -c - conan upload ${{ needs.conan-recipe-version.outputs.recipe_id_full }} -r cura-conan-dev --all -c conan upload ${{ needs.conan-recipe-version.outputs.recipe_id_latest }} -r cura -c - conan upload ${{ needs.conan-recipe-version.outputs.recipe_id_latest }} -r cura-conan-dev -c notify-create: if: ${{ always() && (github.event_name == 'push' && (github.ref_name == 'main' || github.ref_name == 'master' || needs.conan-recipe-version.outputs.is_release_branch == 'true')) }} diff --git a/.github/workflows/conan-recipe-export.yml b/.github/workflows/conan-recipe-export.yml index 9036fe9a215..69c4e4d34a4 100644 --- a/.github/workflows/conan-recipe-export.yml +++ b/.github/workflows/conan-recipe-export.yml @@ -80,14 +80,10 @@ jobs: conan config install https://github.com/Ultimaker/conan-config.git -a "-b runner/${{ runner.os }}/${{ runner.arch }}" - name: Add Cura private Artifactory remote - run: | - conan remote add cura-private https://ultimaker.jfrog.io/artifactory/api/conan/cura-private True - conan remote add cura-private-conan-dev https://cura.jfrog.io/artifactory/api/conan/cura-private-conan-dev True + run: conan remote add cura-private-conan-dev https://cura.jfrog.io/artifactory/api/conan/cura-private-conan-dev True - name: Set GH service account for remote cura-conan-dev - run: | - conan user -p ${{ secrets.CONAN_GH_RUNNER_PASS }} -r cura-conan-dev "${{ secrets.CONAN_GH_RUNNER_USER }}" - conan user -p ${{ secrets.CONAN_GH_RUNNER_PASS }} -r cura-private-conan-dev "${{ secrets.CONAN_GH_RUNNER_USER }}" + run: conan user -p ${{ secrets.CONAN_GH_RUNNER_PASS }} -r cura-private-conan-dev "${{ secrets.CONAN_GH_RUNNER_USER }}" - name: Export the Package (binaries) if: ${{ inputs.conan_export_binaries }} @@ -105,14 +101,10 @@ jobs: if: ${{ always() && inputs.conan_upload_community }} run: | conan upload ${{ inputs.recipe_id_full }} -r cura --all -c - conan upload ${{ inputs.recipe_id_full }} -r cura-conan-dev --all -c conan upload ${{ inputs.recipe_id_latest }} -r cura -c - conan upload ${{ inputs.recipe_id_latest }} -r cura-conan-dev -c - name: Upload the Package(s) to the private Artifactory if: ${{ always() && ! inputs.conan_upload_community }} run: | - conan upload ${{ inputs.recipe_id_full }} -r cura-private --all -c conan upload ${{ inputs.recipe_id_full }} -r cura-private-conan-dev --all -c - conan upload ${{ inputs.recipe_id_latest }} -r cura-private -c conan upload ${{ inputs.recipe_id_latest }} -r cura-private-conan-dev -c diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 52dc5e73d3d..1dee7a237f6 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -143,9 +143,6 @@ jobs: conan config install https://github.com/Ultimaker/conan-config.git conan config install https://github.com/Ultimaker/conan-config.git -a "-b runner/${{ runner.os }}/${{ runner.arch }}" - - name: Set GH service account for remote cura-conan-dev - run: conan user -p ${{ secrets.CONAN_GH_RUNNER_PASS }} -r cura-conan-dev "${{ secrets.CONAN_GH_RUNNER_USER }}" - - name: Use Conan download cache (Bash) run: conan config set storage.download_cache="$HOME/.conan/conan_download_cache" diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 9e6dbf85410..2c7186a764a 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -145,16 +145,13 @@ jobs: p12-password: ${{ secrets.MACOS_CERT_PASSPHRASE }} - name: Remove private Artifactory - run: conan remote remove cura-conan-private || true + run: conan remote remove cura-private-conan-dev || true - name: Get Conan configuration run: | conan config install https://github.com/Ultimaker/conan-config.git conan config install https://github.com/Ultimaker/conan-config.git -a "-b runner/${{ runner.os }}/${{ runner.arch }}" - - name: Set GH service account for remote cura-conan-dev - run: conan user -p ${{ secrets.CONAN_GH_RUNNER_PASS }} -r cura-conan-dev "${{ secrets.CONAN_GH_RUNNER_USER }}" - - name: Use Conan download cache (Bash) run: conan config set storage.download_cache="$HOME/.conan/conan_download_cache" diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index eb0e47b2bfc..ad946d9d99f 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -118,9 +118,6 @@ jobs: conan config install https://github.com/Ultimaker/conan-config.git conan config install https://github.com/Ultimaker/conan-config.git -a "-b runner/${{ runner.os }}/${{ runner.arch }}" - - name: Set GH service account for remote cura-conan-dev - run: conan user -p ${{ secrets.CONAN_GH_RUNNER_PASS }} -r cura-conan-dev "${{ secrets.CONAN_GH_RUNNER_USER }}" - - name: Use Conan download cache (Powershell) run: conan config set storage.download_cache="C:\Users\runneradmin\.conan\conan_download_cache" From d251d4c042d4bed2078c86758ddea181d19fb744 Mon Sep 17 00:00:00 2001 From: GregValiant <64202104+GregValiant@users.noreply.github.com> Date: Fri, 24 Nov 2023 15:19:07 -0500 Subject: [PATCH 179/765] Update DisplayInfoOnLCD.py Added M73 options. Verbiage changes. --- .../scripts/DisplayInfoOnLCD.py | 88 +++++++++++++------ 1 file changed, 63 insertions(+), 25 deletions(-) diff --git a/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py b/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py index bfd88534f87..784a18b2e5a 100644 --- a/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py +++ b/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py @@ -24,7 +24,8 @@ # - Example line on LCD: 1/479 | ET 2h13m # - Time to Pauses changes the M117/M118 lines to countdown to the next pause as 1/479 | TP 2h36m # - 'Add M118 Line' is available with either option. M118 will bounce the message back to a remote print server through the USB connection. -# - Enable 'Finish-Time' Message - when enabled, takes the Print Time, adds 15 minutes for print start-up, and calculates when the print will end. It takes into account the Time Fudge Factor. The user may enter a print start time. This is also available for Display Filename. +# - 'Add M73 Line' is used by 'Display Progress' only. There are options to incluse M73 P(percent) and M73 R(time remaining) +# - Enable 'Finish-Time' Message - when enabled, takes the Print Time and calculates when the print will end. It takes into account the Time Fudge Factor. The user may enter a print start time. This is also available for Display Filename. from ..Script import Script from UM.Application import Application @@ -34,6 +35,7 @@ from UM.Preferences import Preferences import time import datetime +import math from UM.Message import Message class DisplayInfoOnLCD(Script): @@ -118,14 +120,38 @@ def getSettingDataString(self): "add_m118_line": { "label": "Add M118 Line", - "description": "Adds M118 in addition to the M117. It will bounce the message back through the USB port to a computer print server (if a printer server is enabled).", + "description": "Adds M118 in addition to the M117. It will bounce the message back through the USB port to a computer print server (if a printer server like Octoprint or Pronterface is in use).", "type": "bool", "default_value": false }, + "add_m73_line": + { + "label": "Add M73 Line(s)", + "description": "Adds M73 in addition to the M117. For some firmware this will set the printers time and or percentage.", + "type": "bool", + "default_value": false, + "enabled": "display_option == 'display_progress'" + }, + "add_m73_percent": + { + "label": " Add M73 Percentage", + "description": "Adds M73 with the P parameter. For some firmware this will set the printers 'percentage' of layers completed and it will count upward.", + "type": "bool", + "default_value": false, + "enabled": "add_m73_line and display_option == 'display_progress'" + }, + "add_m73_time": + { + "label": " Add M73 Time", + "description": "Adds M73 with the R parameter. For some firmware this will set the printers 'print time' and it will count downward.", + "type": "bool", + "default_value": false, + "enabled": "add_m73_line and display_option == 'display_progress'" + }, "speed_factor": { "label": "Time Fudge Factor %", - "description": "When using 'Display Progress' tweak this value to get better estimates. ([Actual Print Time]/[Cura Estimate]) x 100 = Time Fudge Factor. If Cura estimated 9hr and the print actually took 10hr30min then enter 117 here to adjust any estimate closer to reality. This Fudge Factor is also used to calculate the time that the print will end if you were to start it 15 minutes after slicing.", + "description": "When using 'Display Progress' tweak this value to get better estimates. ([Actual Print Time]/[Cura Estimate]) x 100 = Time Fudge Factor. If Cura estimated 9hr and the print actually took 10hr30min then enter 117 here to adjust any estimate closer to reality. This Fudge Factor is also used to calculate the print finish time.", "type": "float", "unit": "%", "default_value": 100, @@ -134,7 +160,7 @@ def getSettingDataString(self): "countdown_to_pause": { "label": "Countdown to Pauses", - "description": "When enabled - DisplayInfoOnLCD must run AFTER all PauseAtHeight and Filament Change scripts. Instead of layer number and remaining print time the LCD will show 'layers remaining before pause/filament change and the time to pause/filament change' (TP).", + "description": "Instead of the remaining print time the LCD will show the estimated time to pause (TP).", "type": "bool", "default_value": false, "enabled": "display_option == 'display_progress'" @@ -142,7 +168,7 @@ def getSettingDataString(self): "enable_end_message": { "label": "Enable 'Finish-Time' Message", - "description": "Get a message when you save a fresh slice. It will show the estimated date and time that the print would finish (with a 15 minute lag from the end of slicing to the start of the print).", + "description": "Get a message when you save a fresh slice. It will show the estimated date and time that the print would finish.", "type": "bool", "default_value": true, "enabled": true @@ -150,7 +176,7 @@ def getSettingDataString(self): "print_start_time": { "label": "Print Start Time (Ex 16:45)", - "description": "Use 'Military' time. 16:45 would be 4:45PM. 09:30 would be 9:30AM. If you leave this blank it will be assumed that the print start will 15 minutes after slicing.", + "description": "Use 'Military' time. 16:45 would be 4:45PM. 09:30 would be 9:30AM. If you leave this blank it will be assumed that the print will start Now. If you enter a guesstimate of your printer start time and that time is before 'Now' the guesstimate will consider that the print will start tomorrow at the entered time. ", "type": "str", "default_value": "", "unit": "hrs ", @@ -163,7 +189,10 @@ def getSettingDataString(self): def execute(self, data): display_option = self.getSettingValueByKey("display_option") add_m118_line = self.getSettingValueByKey("add_m118_line") - + add_m73_line = self.getSettingValueByKey("add_m73_line") + add_m73_time = self.getSettingValueByKey("add_m73_time") + add_m73_percent = self.getSettingValueByKey("add_m73_percent") + # This is Display Filename and Layer on LCD--------------------------------------------------------- if display_option == "filename_layer": max_layer = 0 @@ -217,6 +246,12 @@ def execute(self, data): display_total_layers = self.getSettingValueByKey("display_total_layers") display_remaining_time = self.getSettingValueByKey("display_remaining_time") speed_factor = self.getSettingValueByKey("speed_factor") / 100 + m73_time = False + m73_percent = False + if add_m73_line and add_m73_time: + m73_time = True + if add_m73_line and add_m73_percent: + m73_percent = True # initialize global variables first_layer_index = 0 time_total = 0 @@ -235,27 +270,26 @@ def execute(self, data): mmm = round((hhh % 1) * 60) orig_hhh = cura_time/3600 orig_hr = round(orig_hhh // 1) - orig_min = int((cura_time - (orig_hr * 3600))/60) # Not rounded up - orig_mmm = round((orig_hhh % 1) * 60) # Rounded up - orig_sec = round(cura_time - orig_hr * 3600 - orig_min * 60) + orig_mmm = math.floor((orig_hhh % 1) * 60) + orig_sec = round((((orig_hhh % 1) * 60) % 1) * 60) if add_m118_line: lines.insert(tindex + 3,"M118 Adjusted Print Time " + str(hr) + "hr " + str(mmm) + "min") lines.insert(tindex + 3,"M117 ET " + str(hr) + "hr " + str(mmm) + "min") - # If Countdown to pause is enabled then count the pauses and/or filament changes + # add M73 line at beginning + mins = int(60 * hr + mmm) + if m73_time: + lines.insert(tindex + 3, "M73 R{}".format(mins)) + if m73_percent: + lines.insert(tindex + 3, "M73 P0") + # If Countdonw to pause is enabled then count the pauses pause_str = "" if bool(self.getSettingValueByKey("countdown_to_pause")): pause_count = 0 - filament_change_count = 0 for num in range(2,len(data) - 1, 1): if "PauseAtHeight.py" in data[num]: pause_count += 1 - if "M600" in data[num]: - filament_change_count += 1 - if pause_count > 0: pause_str = f" with {pause_count} pause(s)" - if filament_change_count > 0: - pause_str += f" and {filament_change_count} filament change(s)" # This line goes in to convert seconds to hours and minutes - lines.insert(tindex + 3, f";Cura Time Estimate: {cura_time}sec = {orig_hr}hr {orig_min}min {orig_sec}sec {pause_str}") + lines.insert(tindex + 3, f";Cura Time Estimate: {cura_time}sec = {orig_hr}hr {orig_mmm}min {orig_sec}sec {pause_str}") data[0] = "\n".join(lines) data[len(data)-1] += "M117 Orig Cura Est " + str(orig_hr) + "hr " + str(orig_mmm) + "min\n" if add_m118_line: data[len(data)-1] += "M118 Est w/FudgeFactor " + str(speed_factor * 100) + "% was " + str(hr) + "hr " + str(mmm) + "min\n" @@ -322,6 +356,12 @@ def execute(self, data): for l_index, line in enumerate(lines): if line.startswith(";LAYER:"): lines[l_index] += "\nM117 " + display_text + # add M73 line + mins = int(60 * h + m) + if m73_time: + lines[l_index] += "\nM73 R{}".format(mins) + if m73_percent: + lines[l_index] += "\nM73 P" + str(round(int(current_layer) / int(number_of_layers) * 100)) if add_m118_line: lines[l_index] += "\nM118 " + display_text break @@ -344,7 +384,7 @@ def execute(self, data): if line.startswith(";TIME_ELAPSED:"): this_time = (float(line.split(":")[1]))*speed_factor time_list.append(str(this_time)) - if "PauseAtHeight.py" in layer or "M600" in layer: + if "PauseAtHeight.py" in layer: for qnum in range(num - 1, pause_index, -1): time_list[qnum] = str(float(this_time) - float(time_list[qnum])) + "P" pause_index = num-1 @@ -380,7 +420,7 @@ def execute(self, data): return data def message_to_user(self, speed_factor: float): - # Message the user of the projected finish time of the print (figuring a 15 minute delay from end-of-slice to start-of-print + # Message the user of the projected finish time of the print print_time = Application.getInstance().getPrintInformation().currentPrintTime.getDisplayString(DurationFormat.Format.ISO8601) print_start_time = self.getSettingValueByKey("print_start_time") # If the user entered a print start time make sure it is in the correct format or ignore it. @@ -391,12 +431,10 @@ def message_to_user(self, speed_factor: float): hr = int(print_start_time.split(":")[0]) min = int(print_start_time.split(":")[1]) sec = 0 - fifteen_minute_delay = 0 else: hr = int(time.strftime("%H")) min = int(time.strftime("%M")) sec = int(time.strftime("%S")) - fifteen_minute_delay = 900 #Get the current data/time info yr = int(time.strftime("%Y")) @@ -409,7 +447,7 @@ def message_to_user(self, speed_factor: float): pr_min = int(print_time.split(":")[1]) pr_sec = int(print_time.split(":")[2]) #Adjust the print time if none was entered - print_seconds = pr_hr*3600 + pr_min*60 + pr_sec + fifteen_minute_delay + print_seconds = pr_hr*3600 + pr_min*60 + pr_sec #Adjust the total seconds by the Fudge Factor adjusted_print_time = print_seconds * speed_factor #Break down the adjusted seconds back into hh:mm:ss @@ -435,13 +473,13 @@ def message_to_user(self, speed_factor: float): show_hr = str(new_time.strftime("%H")) + ":" show_ampm = " AM" if print_start_time == "": - start_str = "and a 15 minute lag between saving the file and starting the print." + start_str = "Now" else: start_str = "and your entered 'print start time' of " + print_start_time + "hrs." if print_start_time != "": print_start_str = "Print Start Time................." + str(print_start_time) + "hrs" else: - print_start_str = "Print Start Time.................15 minutes from now." + print_start_str = "Print Start Time.................Now." estimate_str = "Cura Time Estimate.........." + str(print_time) adjusted_str = "Adjusted Time Estimate..." + str(time_change) finish_str = week_day + " " + str(mo_str) + " " + str(new_time.strftime("%d")) + ", " + str(new_time.strftime("%Y")) + " at " + str(show_hr) + str(new_time.strftime("%M")) + str(show_ampm) From 50fe469122a6ff8740bc6db67ea73cc3577286eb Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 28 Nov 2023 17:30:15 +0100 Subject: [PATCH 180/765] Use CCI gettext Contributes to CURA-10831 --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index a9ac2c18cb0..034879e6204 100644 --- a/conanfile.py +++ b/conanfile.py @@ -338,7 +338,7 @@ def requirements(self): def build_requirements(self): if self.options.get_safe("enable_i18n", False): - self.tool_requires("gettext/0.21@ultimaker/testing", force_host_context = True) + self.tool_requires("gettext/0.21", force_host_context = True) def layout(self): self.folders.source = "." From 015f41145d548e93d611b518718797909ec6ee98 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 28 Nov 2023 17:32:23 +0100 Subject: [PATCH 181/765] Also run on 0 versions Contributes to CURA-10831 --- .github/workflows/conan-package.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/conan-package.yml b/.github/workflows/conan-package.yml index 4b5c0f914ab..bf9df7fa038 100644 --- a/.github/workflows/conan-package.yml +++ b/.github/workflows/conan-package.yml @@ -41,12 +41,12 @@ on: branches: - main - 'CURA-*' - - '[1-9].[0-9]' - - '[1-9].[0-9][0-9]' + - '[0-9].[0-9]' + - '[0-9].[0-9][0-9]' tags: - - '[1-9].[0-9].[0-9]*' - - '[1-9].[0-9].[0-9]' - - '[1-9].[0-9][0-9].[0-9]*' + - '[0-9].[0-9].[0-9]*' + - '[0-9].[0-9].[0-9]' + - '[0-9].[0-9][0-9].[0-9]*' env: CONAN_LOGIN_USERNAME_CURA: ${{ secrets.CONAN_USER }} From 593e959dd574784481add3c897061ae07763195c Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Wed, 29 Nov 2023 10:42:12 +0100 Subject: [PATCH 182/765] Use cleaner notation for use_sentry env variable CURA-11364 Co-authored-by: Casper Lamboo --- plugins/CuraEngineBackend/CuraEngineBackend.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/plugins/CuraEngineBackend/CuraEngineBackend.py b/plugins/CuraEngineBackend/CuraEngineBackend.py index 24f3dc1ae1b..818766d7668 100755 --- a/plugins/CuraEngineBackend/CuraEngineBackend.py +++ b/plugins/CuraEngineBackend/CuraEngineBackend.py @@ -1101,10 +1101,7 @@ def _onPreferencesChanged(self, preference: str) -> None: if auto_slice: self._change_timer.start() elif preference == "info/send_engine_crash": - if CuraApplication.getInstance().getPreferences().getValue("info/send_engine_crash"): - os.environ["use_sentry"] = str(1) - else: - os.environ["use_sentry"] = str(0) + os.environ["use_sentry"] = "1" if CuraApplication.getInstance().getPreferences().getValue("info/send_engine_crash") else "0" def tickle(self) -> None: """Tickle the backend so in case of auto slicing, it starts the timer.""" From cf27163934e3d070961235a6447f35bc92625c11 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Wed, 29 Nov 2023 12:25:51 +0100 Subject: [PATCH 183/765] Update `bot` to `reference` --- cura/Settings/DatabaseHandlers/VariantDatabaseHandler.py | 2 +- plugins/MakerbotWriter/MakerbotWriter.py | 6 +++--- resources/definitions/ultimaker_methodx.def.json | 2 +- resources/definitions/ultimaker_methodxl.def.json | 2 +- resources/variants/ultimaker_methodx_1C.inst.cfg | 2 +- resources/variants/ultimaker_methodx_1XA.inst.cfg | 2 +- resources/variants/ultimaker_methodx_2XA.inst.cfg | 2 +- resources/variants/ultimaker_methodx_LABS.inst.cfg | 2 +- resources/variants/ultimaker_methodxl_1C.inst.cfg | 2 +- resources/variants/ultimaker_methodxl_1XA.inst.cfg | 2 +- resources/variants/ultimaker_methodxl_2XA.inst.cfg | 2 +- resources/variants/ultimaker_methodxl_LABS.inst.cfg | 2 +- 12 files changed, 14 insertions(+), 14 deletions(-) diff --git a/cura/Settings/DatabaseHandlers/VariantDatabaseHandler.py b/cura/Settings/DatabaseHandlers/VariantDatabaseHandler.py index b1932bcb9c3..b0293c5904c 100644 --- a/cura/Settings/DatabaseHandlers/VariantDatabaseHandler.py +++ b/cura/Settings/DatabaseHandlers/VariantDatabaseHandler.py @@ -19,7 +19,7 @@ def __init__(self): "definition": "text", "version": "text", "setting_version": "text", - "bot_extruder_id": "text", + "reference_extruder_id": "text", }, )) self._container_type = InstanceContainer diff --git a/plugins/MakerbotWriter/MakerbotWriter.py b/plugins/MakerbotWriter/MakerbotWriter.py index 912457e0bd2..1087ef0b164 100644 --- a/plugins/MakerbotWriter/MakerbotWriter.py +++ b/plugins/MakerbotWriter/MakerbotWriter.py @@ -144,7 +144,7 @@ def _getMeta(self, root_nodes: List[SceneNode]) -> Dict[str, any]: meta = dict() - meta["bot_type"] = global_stack.definition.getMetaDataEntry("bot_machine_id") + meta["bot_type"] = global_stack.definition.getMetaDataEntry("reference_machine_id") bounds: Optional[AxisAlignedBox] = None for node in nodes: @@ -186,7 +186,7 @@ def _getMeta(self, root_nodes: List[SceneNode]) -> Dict[str, any]: meta["uuid"] = print_information.slice_uuid - materials = [extruder.material.getMetaData().get("bot_material_id") for extruder in extruders] + materials = [extruder.material.getMetaData().get("reference_material_id") for extruder in extruders] meta["material"] = materials[0] meta["materials"] = materials @@ -198,7 +198,7 @@ def _getMeta(self, root_nodes: List[SceneNode]) -> Dict[str, any]: meta["model_counts"] = [{"count": 1, "name": node.getName()} for node in nodes] - tool_types = [extruder.variant.getMetaDataEntry("bot_extruder_id") for extruder in extruders] + tool_types = [extruder.variant.getMetaDataEntry("reference_extruder_id") for extruder in extruders] meta["tool_type"] = tool_types[0] meta["tool_types"] = tool_types diff --git a/resources/definitions/ultimaker_methodx.def.json b/resources/definitions/ultimaker_methodx.def.json index bf0cef923f7..6292d3c5d23 100644 --- a/resources/definitions/ultimaker_methodx.def.json +++ b/resources/definitions/ultimaker_methodx.def.json @@ -9,7 +9,7 @@ "manufacturer": "Ultimaker B.V.", "file_formats": "application/x-makerbot", "platform": "ultimaker_method_platform.stl", - "bot_machine_id": "lava_f", + "reference_machine_id": "lava_f", "exclude_materials": [ "dsm_", "Essentium_", diff --git a/resources/definitions/ultimaker_methodxl.def.json b/resources/definitions/ultimaker_methodxl.def.json index 3cf50e5b8c4..7409c185903 100644 --- a/resources/definitions/ultimaker_methodxl.def.json +++ b/resources/definitions/ultimaker_methodxl.def.json @@ -9,7 +9,7 @@ "manufacturer": "Ultimaker B.V.", "file_formats": "application/x-makerbot", "platform": "ultimaker_method_xl_platform.stl", - "bot_machine_id": "magma_10", + "reference_machine_id": "magma_10", "has_machine_materials": true, "has_machine_quality": true, "has_materials": true, diff --git a/resources/variants/ultimaker_methodx_1C.inst.cfg b/resources/variants/ultimaker_methodx_1C.inst.cfg index 4a5f41c057f..cf32997d678 100644 --- a/resources/variants/ultimaker_methodx_1C.inst.cfg +++ b/resources/variants/ultimaker_methodx_1C.inst.cfg @@ -4,7 +4,7 @@ name = 1C version = 4 [metadata] -bot_extruder_id = mk14_c +reference_extruder_id = mk14_c hardware_type = nozzle setting_version = 22 type = variant diff --git a/resources/variants/ultimaker_methodx_1XA.inst.cfg b/resources/variants/ultimaker_methodx_1XA.inst.cfg index dc0149928fa..5ccf8d3635c 100644 --- a/resources/variants/ultimaker_methodx_1XA.inst.cfg +++ b/resources/variants/ultimaker_methodx_1XA.inst.cfg @@ -4,7 +4,7 @@ name = 1XA version = 4 [metadata] -bot_extruder_id = mk14_hot +reference_extruder_id = mk14_hot hardware_type = nozzle setting_version = 22 type = variant diff --git a/resources/variants/ultimaker_methodx_2XA.inst.cfg b/resources/variants/ultimaker_methodx_2XA.inst.cfg index ef1eb62a48a..073e101ef7d 100644 --- a/resources/variants/ultimaker_methodx_2XA.inst.cfg +++ b/resources/variants/ultimaker_methodx_2XA.inst.cfg @@ -4,7 +4,7 @@ name = 2XA version = 4 [metadata] -bot_extruder_id = mk14_hot_s +reference_extruder_id = mk14_hot_s hardware_type = nozzle setting_version = 22 type = variant diff --git a/resources/variants/ultimaker_methodx_LABS.inst.cfg b/resources/variants/ultimaker_methodx_LABS.inst.cfg index bf6d495e905..96a49879231 100644 --- a/resources/variants/ultimaker_methodx_LABS.inst.cfg +++ b/resources/variants/ultimaker_methodx_LABS.inst.cfg @@ -4,7 +4,7 @@ name = LABS version = 4 [metadata] -bot_extruder_id = mk14_e +reference_extruder_id = mk14_e hardware_type = nozzle setting_version = 22 type = variant diff --git a/resources/variants/ultimaker_methodxl_1C.inst.cfg b/resources/variants/ultimaker_methodxl_1C.inst.cfg index 1bed86aa6e2..ac715e5df25 100644 --- a/resources/variants/ultimaker_methodxl_1C.inst.cfg +++ b/resources/variants/ultimaker_methodxl_1C.inst.cfg @@ -4,7 +4,7 @@ name = 1C version = 4 [metadata] -bot_extruder_id = mk14_c +reference_extruder_id = mk14_c hardware_type = nozzle setting_version = 22 type = variant diff --git a/resources/variants/ultimaker_methodxl_1XA.inst.cfg b/resources/variants/ultimaker_methodxl_1XA.inst.cfg index ce303347f81..a0d3bf96690 100644 --- a/resources/variants/ultimaker_methodxl_1XA.inst.cfg +++ b/resources/variants/ultimaker_methodxl_1XA.inst.cfg @@ -4,7 +4,7 @@ name = 1XA version = 4 [metadata] -bot_extruder_id = mk14_hot +reference_extruder_id = mk14_hot hardware_type = nozzle setting_version = 22 type = variant diff --git a/resources/variants/ultimaker_methodxl_2XA.inst.cfg b/resources/variants/ultimaker_methodxl_2XA.inst.cfg index 8ab9108e711..8e45222a7b7 100644 --- a/resources/variants/ultimaker_methodxl_2XA.inst.cfg +++ b/resources/variants/ultimaker_methodxl_2XA.inst.cfg @@ -4,7 +4,7 @@ name = 2XA version = 4 [metadata] -bot_extruder_id = mk14_hot_s +reference_extruder_id = mk14_hot_s hardware_type = nozzle setting_version = 22 type = variant diff --git a/resources/variants/ultimaker_methodxl_LABS.inst.cfg b/resources/variants/ultimaker_methodxl_LABS.inst.cfg index 4ec3edcc337..551567cf8ca 100644 --- a/resources/variants/ultimaker_methodxl_LABS.inst.cfg +++ b/resources/variants/ultimaker_methodxl_LABS.inst.cfg @@ -4,7 +4,7 @@ name = LABS version = 4 [metadata] -bot_extruder_id = mk14_e +reference_extruder_id = mk14_e hardware_type = nozzle setting_version = 22 type = variant From 7e0d633106836d9ad94930603845dcd6b031db8f Mon Sep 17 00:00:00 2001 From: casperlamboo Date: Wed, 29 Nov 2023 11:26:50 +0000 Subject: [PATCH 184/765] Applied printer-linter format --- resources/definitions/ultimaker_methodx.def.json | 2 +- resources/definitions/ultimaker_methodxl.def.json | 2 +- resources/variants/ultimaker_methodx_1C.inst.cfg | 2 +- resources/variants/ultimaker_methodx_1XA.inst.cfg | 2 +- resources/variants/ultimaker_methodx_2XA.inst.cfg | 2 +- resources/variants/ultimaker_methodx_LABS.inst.cfg | 2 +- resources/variants/ultimaker_methodxl_1C.inst.cfg | 2 +- resources/variants/ultimaker_methodxl_1XA.inst.cfg | 2 +- resources/variants/ultimaker_methodxl_2XA.inst.cfg | 2 +- resources/variants/ultimaker_methodxl_LABS.inst.cfg | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/resources/definitions/ultimaker_methodx.def.json b/resources/definitions/ultimaker_methodx.def.json index 6292d3c5d23..a6708a04216 100644 --- a/resources/definitions/ultimaker_methodx.def.json +++ b/resources/definitions/ultimaker_methodx.def.json @@ -9,7 +9,6 @@ "manufacturer": "Ultimaker B.V.", "file_formats": "application/x-makerbot", "platform": "ultimaker_method_platform.stl", - "reference_machine_id": "lava_f", "exclude_materials": [ "dsm_", "Essentium_", @@ -76,6 +75,7 @@ "preferred_material": "ultimaker_absr_175", "preferred_quality_type": "draft", "preferred_variant_name": "1XA", + "reference_machine_id": "lava_f", "supports_network_connection": true, "supports_usb_connection": false, "variant_definition": "ultimaker_methodx", diff --git a/resources/definitions/ultimaker_methodxl.def.json b/resources/definitions/ultimaker_methodxl.def.json index 7409c185903..6c12218b51d 100644 --- a/resources/definitions/ultimaker_methodxl.def.json +++ b/resources/definitions/ultimaker_methodxl.def.json @@ -9,7 +9,6 @@ "manufacturer": "Ultimaker B.V.", "file_formats": "application/x-makerbot", "platform": "ultimaker_method_xl_platform.stl", - "reference_machine_id": "magma_10", "has_machine_materials": true, "has_machine_quality": true, "has_materials": true, @@ -26,6 +25,7 @@ ], "platform_texture": "MakerbotMethod.png", "preferred_quality_type": "draft", + "reference_machine_id": "magma_10", "supports_network_connection": true, "supports_usb_connection": false, "variants_name": "Extruder", diff --git a/resources/variants/ultimaker_methodx_1C.inst.cfg b/resources/variants/ultimaker_methodx_1C.inst.cfg index cf32997d678..b2bd39e9067 100644 --- a/resources/variants/ultimaker_methodx_1C.inst.cfg +++ b/resources/variants/ultimaker_methodx_1C.inst.cfg @@ -4,8 +4,8 @@ name = 1C version = 4 [metadata] -reference_extruder_id = mk14_c hardware_type = nozzle +reference_extruder_id = mk14_c setting_version = 22 type = variant diff --git a/resources/variants/ultimaker_methodx_1XA.inst.cfg b/resources/variants/ultimaker_methodx_1XA.inst.cfg index 5ccf8d3635c..f63c2a4df76 100644 --- a/resources/variants/ultimaker_methodx_1XA.inst.cfg +++ b/resources/variants/ultimaker_methodx_1XA.inst.cfg @@ -4,8 +4,8 @@ name = 1XA version = 4 [metadata] -reference_extruder_id = mk14_hot hardware_type = nozzle +reference_extruder_id = mk14_hot setting_version = 22 type = variant diff --git a/resources/variants/ultimaker_methodx_2XA.inst.cfg b/resources/variants/ultimaker_methodx_2XA.inst.cfg index 073e101ef7d..24461cd5ef4 100644 --- a/resources/variants/ultimaker_methodx_2XA.inst.cfg +++ b/resources/variants/ultimaker_methodx_2XA.inst.cfg @@ -4,8 +4,8 @@ name = 2XA version = 4 [metadata] -reference_extruder_id = mk14_hot_s hardware_type = nozzle +reference_extruder_id = mk14_hot_s setting_version = 22 type = variant diff --git a/resources/variants/ultimaker_methodx_LABS.inst.cfg b/resources/variants/ultimaker_methodx_LABS.inst.cfg index 96a49879231..2c667e37f10 100644 --- a/resources/variants/ultimaker_methodx_LABS.inst.cfg +++ b/resources/variants/ultimaker_methodx_LABS.inst.cfg @@ -4,8 +4,8 @@ name = LABS version = 4 [metadata] -reference_extruder_id = mk14_e hardware_type = nozzle +reference_extruder_id = mk14_e setting_version = 22 type = variant diff --git a/resources/variants/ultimaker_methodxl_1C.inst.cfg b/resources/variants/ultimaker_methodxl_1C.inst.cfg index ac715e5df25..527415ca353 100644 --- a/resources/variants/ultimaker_methodxl_1C.inst.cfg +++ b/resources/variants/ultimaker_methodxl_1C.inst.cfg @@ -4,8 +4,8 @@ name = 1C version = 4 [metadata] -reference_extruder_id = mk14_c hardware_type = nozzle +reference_extruder_id = mk14_c setting_version = 22 type = variant diff --git a/resources/variants/ultimaker_methodxl_1XA.inst.cfg b/resources/variants/ultimaker_methodxl_1XA.inst.cfg index a0d3bf96690..6da0eb3bb2e 100644 --- a/resources/variants/ultimaker_methodxl_1XA.inst.cfg +++ b/resources/variants/ultimaker_methodxl_1XA.inst.cfg @@ -4,8 +4,8 @@ name = 1XA version = 4 [metadata] -reference_extruder_id = mk14_hot hardware_type = nozzle +reference_extruder_id = mk14_hot setting_version = 22 type = variant diff --git a/resources/variants/ultimaker_methodxl_2XA.inst.cfg b/resources/variants/ultimaker_methodxl_2XA.inst.cfg index 8e45222a7b7..a64b66b89f6 100644 --- a/resources/variants/ultimaker_methodxl_2XA.inst.cfg +++ b/resources/variants/ultimaker_methodxl_2XA.inst.cfg @@ -4,8 +4,8 @@ name = 2XA version = 4 [metadata] -reference_extruder_id = mk14_hot_s hardware_type = nozzle +reference_extruder_id = mk14_hot_s setting_version = 22 type = variant diff --git a/resources/variants/ultimaker_methodxl_LABS.inst.cfg b/resources/variants/ultimaker_methodxl_LABS.inst.cfg index 551567cf8ca..fa726c02abb 100644 --- a/resources/variants/ultimaker_methodxl_LABS.inst.cfg +++ b/resources/variants/ultimaker_methodxl_LABS.inst.cfg @@ -4,8 +4,8 @@ name = LABS version = 4 [metadata] -reference_extruder_id = mk14_e hardware_type = nozzle +reference_extruder_id = mk14_e setting_version = 22 type = variant From 1a9e82da869df700f315dfc6fff54da36f8099f6 Mon Sep 17 00:00:00 2001 From: nallath Date: Wed, 29 Nov 2023 12:04:33 +0000 Subject: [PATCH 185/765] Applied printer-linter format --- resources/definitions/flyingbear_ghost_6.def.json | 7 +++---- .../variants/flyingbear/flyingbear_ghost_6_0.25.inst.cfg | 3 ++- .../variants/flyingbear/flyingbear_ghost_6_0.30.inst.cfg | 3 ++- .../variants/flyingbear/flyingbear_ghost_6_0.40.inst.cfg | 3 ++- .../variants/flyingbear/flyingbear_ghost_6_0.50.inst.cfg | 3 ++- .../variants/flyingbear/flyingbear_ghost_6_0.60.inst.cfg | 3 ++- .../variants/flyingbear/flyingbear_ghost_6_0.80.inst.cfg | 3 ++- 7 files changed, 15 insertions(+), 10 deletions(-) diff --git a/resources/definitions/flyingbear_ghost_6.def.json b/resources/definitions/flyingbear_ghost_6.def.json index c6aa63eb83c..26c067285e0 100644 --- a/resources/definitions/flyingbear_ghost_6.def.json +++ b/resources/definitions/flyingbear_ghost_6.def.json @@ -12,7 +12,6 @@ }, "overrides": { - "machine_name": { "default_value": "Flying Bear Ghost 6" }, "acceleration_enabled": { "value": false }, "acceleration_print": { "value": 1500 }, "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, @@ -25,7 +24,6 @@ "machine_acceleration": { "value": 1500 }, "machine_depth": { "default_value": 210 }, "machine_height": { "default_value": 210 }, - "machine_width": { "default_value": 255 }, "machine_max_acceleration_e": { "value": 80000 }, "machine_max_acceleration_x": { "value": 1000 }, "machine_max_acceleration_y": { "value": 1000 }, @@ -42,8 +40,9 @@ "machine_steps_per_mm_x": { "default_value": 160 }, "machine_steps_per_mm_y": { "default_value": 160 }, "machine_steps_per_mm_z": { "default_value": 800 }, - "retraction_amount": { "value": 0.8 }, + "machine_width": { "default_value": 255 }, + "retraction_amount": { "value": 0.8 }, "retraction_extrusion_window": { "value": 1.5 }, "retraction_speed": { "default_value": 35 } } -} +} \ No newline at end of file diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.25.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.25.inst.cfg index db631d9c3d1..bb673ccc53d 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.25.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.25.inst.cfg @@ -9,4 +9,5 @@ setting_version = 22 type = variant [values] -machine_nozzle_size = 0.25 \ No newline at end of file +machine_nozzle_size = 0.25 + diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.30.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.30.inst.cfg index 4d33cff4234..ffae1f125d7 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.30.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.30.inst.cfg @@ -9,4 +9,5 @@ setting_version = 22 type = variant [values] -machine_nozzle_size = 0.3 \ No newline at end of file +machine_nozzle_size = 0.3 + diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.40.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.40.inst.cfg index 8ef6a7ab10a..574ec2638a3 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.40.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.40.inst.cfg @@ -9,4 +9,5 @@ setting_version = 22 type = variant [values] -machine_nozzle_size = 0.4 \ No newline at end of file +machine_nozzle_size = 0.4 + diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.50.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.50.inst.cfg index e9b6c77da51..908a07a12eb 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.50.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.50.inst.cfg @@ -9,4 +9,5 @@ setting_version = 22 type = variant [values] -machine_nozzle_size = 0.5 \ No newline at end of file +machine_nozzle_size = 0.5 + diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.60.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.60.inst.cfg index 6a2d974cc32..816401bed08 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.60.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.60.inst.cfg @@ -9,4 +9,5 @@ setting_version = 22 type = variant [values] -machine_nozzle_size = 0.6 \ No newline at end of file +machine_nozzle_size = 0.6 + diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.80.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.80.inst.cfg index 59b1af9de31..c34767b93e5 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.80.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.80.inst.cfg @@ -9,4 +9,5 @@ setting_version = 22 type = variant [values] -machine_nozzle_size = 0.8 \ No newline at end of file +machine_nozzle_size = 0.8 + From 26012cc9e384fe7d0c1b224badbb9dd81ddfcc79 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Wed, 29 Nov 2023 13:15:36 +0100 Subject: [PATCH 186/765] Update slicing crash template --- .github/ISSUE_TEMPLATE/SlicingCrash.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/SlicingCrash.yaml b/.github/ISSUE_TEMPLATE/SlicingCrash.yaml index daf25cf3954..2fe0a2f63b1 100644 --- a/.github/ISSUE_TEMPLATE/SlicingCrash.yaml +++ b/.github/ISSUE_TEMPLATE/SlicingCrash.yaml @@ -23,14 +23,14 @@ body: - type: input attributes: label: Cura Version - placeholder: 5.4.0 + placeholder: 5.6.0 validations: required: true - type: markdown attributes: value: | - We work hard on improving our slicing crashes. Our most recent release is 5.4.0. - If you are not on the latest version of Cura, [you can download it here](https://github.com/Ultimaker/Cura/releases/tag/5.4.0) + We work hard on improving our slicing crashes. Our most recent release is 5.6.0. + If you are not on the latest version of Cura, [you can download it here](https://github.com/Ultimaker/Cura/releases/latest) - type: input attributes: label: Operating System From dff3f1a4060b47af9a410a66134d39c9538b1dbd Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Wed, 29 Nov 2023 13:46:32 +0100 Subject: [PATCH 187/765] Remove redundant overrides Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- resources/definitions/Geeetech_Base_Dual_Extruder.def.json | 2 +- resources/definitions/Geeetech_Base_Multi_Extruder.def.json | 2 +- resources/definitions/Geeetech_Base_Single_Extruder.def.json | 2 +- resources/definitions/flyingbear_base.def.json | 2 +- resources/definitions/lotmaxx_sc10.def.json | 2 +- resources/definitions/uni_base.def.json | 4 ++-- resources/definitions/zav_base.def.json | 4 ++-- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/resources/definitions/Geeetech_Base_Dual_Extruder.def.json b/resources/definitions/Geeetech_Base_Dual_Extruder.def.json index 325e88e7faf..113c198298b 100644 --- a/resources/definitions/Geeetech_Base_Dual_Extruder.def.json +++ b/resources/definitions/Geeetech_Base_Dual_Extruder.def.json @@ -131,7 +131,7 @@ "support_interface_density": { "value": 33.333 }, "support_interface_height": { "value": "layer_height * 3" }, "support_interface_pattern": { "value": "'zigzag'" }, - "support_interface_skip_height": { "value": 0.2 }, + "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": 0 }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, diff --git a/resources/definitions/Geeetech_Base_Multi_Extruder.def.json b/resources/definitions/Geeetech_Base_Multi_Extruder.def.json index 31ba03f5f71..00a018eea7e 100644 --- a/resources/definitions/Geeetech_Base_Multi_Extruder.def.json +++ b/resources/definitions/Geeetech_Base_Multi_Extruder.def.json @@ -132,7 +132,7 @@ "support_interface_density": { "value": 33.333 }, "support_interface_height": { "value": "layer_height * 3" }, "support_interface_pattern": { "value": "'zigzag'" }, - "support_interface_skip_height": { "value": 0.2 }, + "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": 0 }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, diff --git a/resources/definitions/Geeetech_Base_Single_Extruder.def.json b/resources/definitions/Geeetech_Base_Single_Extruder.def.json index 7a96ee4b91d..6192d5634a3 100644 --- a/resources/definitions/Geeetech_Base_Single_Extruder.def.json +++ b/resources/definitions/Geeetech_Base_Single_Extruder.def.json @@ -119,7 +119,7 @@ "support_interface_density": { "value": 33.333 }, "support_interface_height": { "value": "layer_height * 3" }, "support_interface_pattern": { "value": "'zigzag'" }, - "support_interface_skip_height": { "value": 0.2 }, + "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": 0 }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, diff --git a/resources/definitions/flyingbear_base.def.json b/resources/definitions/flyingbear_base.def.json index d5ec8b0ecc3..9c6c03d4331 100644 --- a/resources/definitions/flyingbear_base.def.json +++ b/resources/definitions/flyingbear_base.def.json @@ -41,7 +41,7 @@ "infill_line_width": { "value": "line_width + 0.1" }, "infill_overlap": { "value": 30 }, "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, - "infill_sparse_density": { "value": 20 }, + "infill_wipe_dist": { "value": 0.0 }, "layer_height_0": { "value": 0.2 }, "machine_buildplate_type": { "value": "'glass'" }, diff --git a/resources/definitions/lotmaxx_sc10.def.json b/resources/definitions/lotmaxx_sc10.def.json index c3b47a2cdf1..1b0c02b4ef9 100644 --- a/resources/definitions/lotmaxx_sc10.def.json +++ b/resources/definitions/lotmaxx_sc10.def.json @@ -20,7 +20,7 @@ "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, "cool_min_layer_time": { "value": 10 }, "gantry_height": { "value": 40 }, - "jerk_enabled": { "value": false }, + "jerk_print": { "value": 8 }, "jerk_travel": { "value": "jerk_print" }, "jerk_travel_layer_0": { "value": "jerk_travel" }, diff --git a/resources/definitions/uni_base.def.json b/resources/definitions/uni_base.def.json index c79d2fcd872..92dcb7c9fee 100644 --- a/resources/definitions/uni_base.def.json +++ b/resources/definitions/uni_base.def.json @@ -47,9 +47,9 @@ "infill_enable_travel_optimization": { "value": "True" }, "infill_line_width": { "value": "round(line_width * 1.1, 2)" }, "infill_pattern": { "value": "'gyroid'" }, - "initial_layer_line_width_factor": { "value": "100" }, + "layer_height_0": { "value": "layer_height" }, - "line_width": { "value": "machine_nozzle_size" }, + "machine_buildplate_type": { "value": "'glass'" }, "machine_center_is_zero": { "default_value": false }, "machine_depth": { "default_value": 220 }, diff --git a/resources/definitions/zav_base.def.json b/resources/definitions/zav_base.def.json index c8ab0361a81..0451b59d49d 100644 --- a/resources/definitions/zav_base.def.json +++ b/resources/definitions/zav_base.def.json @@ -46,9 +46,9 @@ "infill_enable_travel_optimization": { "value": "True" }, "infill_line_width": { "value": "round(line_width * 1.1, 2)" }, "infill_pattern": { "value": "'gyroid'" }, - "initial_layer_line_width_factor": { "value": "100" }, + "layer_height_0": { "value": "layer_height" }, - "line_width": { "value": "machine_nozzle_size" }, + "machine_buildplate_type": { "value": "'glass'" }, "machine_center_is_zero": { "default_value": false }, "machine_depth": { "default_value": 200 }, From 3165b54624ae7b23984519e17eafc2b718bc3fe7 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Wed, 29 Nov 2023 13:49:02 +0100 Subject: [PATCH 188/765] Fix typo --- resources/definitions/SV02.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/SV02.def.json b/resources/definitions/SV02.def.json index 990917c9b86..ca7a1f057c3 100644 --- a/resources/definitions/SV02.def.json +++ b/resources/definitions/SV02.def.json @@ -59,7 +59,7 @@ "machine_width": { "default_value": 280 }, "material_diameter": { "default_value": 1.75 }, "material_initial_print_temperature": { "value": "material_print_temperature" }, - "prime_tower_min_volume": { "value": ""resolveOrValue('layer_height')/2" }, + "prime_tower_min_volume": { "value": "resolveOrValue('layer_height')/2" }, "prime_tower_size": { "value": "30" }, "prime_tower_wipe_enabled": { "default_value": true }, "retraction_amount": { "default_value": 5 }, From 8b0e914abbf7818a6c6a9333db4250451d123d88 Mon Sep 17 00:00:00 2001 From: nallath Date: Wed, 29 Nov 2023 12:49:59 +0000 Subject: [PATCH 189/765] Applied printer-linter format --- resources/definitions/Geeetech_Base_Dual_Extruder.def.json | 1 - resources/definitions/Geeetech_Base_Multi_Extruder.def.json | 1 - resources/definitions/Geeetech_Base_Single_Extruder.def.json | 1 - resources/definitions/SV02.def.json | 2 +- resources/definitions/flyingbear_base.def.json | 1 - resources/definitions/lotmaxx_sc10.def.json | 1 - resources/definitions/uni_base.def.json | 2 -- resources/definitions/zav_base.def.json | 2 -- 8 files changed, 1 insertion(+), 10 deletions(-) diff --git a/resources/definitions/Geeetech_Base_Dual_Extruder.def.json b/resources/definitions/Geeetech_Base_Dual_Extruder.def.json index 113c198298b..6050090e1d1 100644 --- a/resources/definitions/Geeetech_Base_Dual_Extruder.def.json +++ b/resources/definitions/Geeetech_Base_Dual_Extruder.def.json @@ -131,7 +131,6 @@ "support_interface_density": { "value": 33.333 }, "support_interface_height": { "value": "layer_height * 3" }, "support_interface_pattern": { "value": "'zigzag'" }, - "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": 0 }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, diff --git a/resources/definitions/Geeetech_Base_Multi_Extruder.def.json b/resources/definitions/Geeetech_Base_Multi_Extruder.def.json index 00a018eea7e..db239bf424d 100644 --- a/resources/definitions/Geeetech_Base_Multi_Extruder.def.json +++ b/resources/definitions/Geeetech_Base_Multi_Extruder.def.json @@ -132,7 +132,6 @@ "support_interface_density": { "value": 33.333 }, "support_interface_height": { "value": "layer_height * 3" }, "support_interface_pattern": { "value": "'zigzag'" }, - "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": 0 }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, diff --git a/resources/definitions/Geeetech_Base_Single_Extruder.def.json b/resources/definitions/Geeetech_Base_Single_Extruder.def.json index 6192d5634a3..03f9fa15cf8 100644 --- a/resources/definitions/Geeetech_Base_Single_Extruder.def.json +++ b/resources/definitions/Geeetech_Base_Single_Extruder.def.json @@ -119,7 +119,6 @@ "support_interface_density": { "value": 33.333 }, "support_interface_height": { "value": "layer_height * 3" }, "support_interface_pattern": { "value": "'zigzag'" }, - "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": 0 }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, diff --git a/resources/definitions/SV02.def.json b/resources/definitions/SV02.def.json index ca7a1f057c3..c700e3916b5 100644 --- a/resources/definitions/SV02.def.json +++ b/resources/definitions/SV02.def.json @@ -71,4 +71,4 @@ "top_bottom_thickness": { "default_value": 1 }, "wall_0_wipe_dist": { "value": 0.0 } } -} +} \ No newline at end of file diff --git a/resources/definitions/flyingbear_base.def.json b/resources/definitions/flyingbear_base.def.json index 9c6c03d4331..268d8a169b3 100644 --- a/resources/definitions/flyingbear_base.def.json +++ b/resources/definitions/flyingbear_base.def.json @@ -41,7 +41,6 @@ "infill_line_width": { "value": "line_width + 0.1" }, "infill_overlap": { "value": 30 }, "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, - "infill_wipe_dist": { "value": 0.0 }, "layer_height_0": { "value": 0.2 }, "machine_buildplate_type": { "value": "'glass'" }, diff --git a/resources/definitions/lotmaxx_sc10.def.json b/resources/definitions/lotmaxx_sc10.def.json index 1b0c02b4ef9..224328c5057 100644 --- a/resources/definitions/lotmaxx_sc10.def.json +++ b/resources/definitions/lotmaxx_sc10.def.json @@ -20,7 +20,6 @@ "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, "cool_min_layer_time": { "value": 10 }, "gantry_height": { "value": 40 }, - "jerk_print": { "value": 8 }, "jerk_travel": { "value": "jerk_print" }, "jerk_travel_layer_0": { "value": "jerk_travel" }, diff --git a/resources/definitions/uni_base.def.json b/resources/definitions/uni_base.def.json index 92dcb7c9fee..967a9423dc7 100644 --- a/resources/definitions/uni_base.def.json +++ b/resources/definitions/uni_base.def.json @@ -47,9 +47,7 @@ "infill_enable_travel_optimization": { "value": "True" }, "infill_line_width": { "value": "round(line_width * 1.1, 2)" }, "infill_pattern": { "value": "'gyroid'" }, - "layer_height_0": { "value": "layer_height" }, - "machine_buildplate_type": { "value": "'glass'" }, "machine_center_is_zero": { "default_value": false }, "machine_depth": { "default_value": 220 }, diff --git a/resources/definitions/zav_base.def.json b/resources/definitions/zav_base.def.json index 0451b59d49d..921f0b23be2 100644 --- a/resources/definitions/zav_base.def.json +++ b/resources/definitions/zav_base.def.json @@ -46,9 +46,7 @@ "infill_enable_travel_optimization": { "value": "True" }, "infill_line_width": { "value": "round(line_width * 1.1, 2)" }, "infill_pattern": { "value": "'gyroid'" }, - "layer_height_0": { "value": "layer_height" }, - "machine_buildplate_type": { "value": "'glass'" }, "machine_center_is_zero": { "default_value": false }, "machine_depth": { "default_value": 200 }, From 6b3d7d0f2ce1ca22f0752514e34ff7c85908d130 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Wed, 29 Nov 2023 13:57:06 +0100 Subject: [PATCH 190/765] Update conan-package.yml --- .github/workflows/conan-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/conan-package.yml b/.github/workflows/conan-package.yml index bf9df7fa038..47000752dd0 100644 --- a/.github/workflows/conan-package.yml +++ b/.github/workflows/conan-package.yml @@ -102,7 +102,7 @@ jobs: sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y sudo apt update sudo apt upgrade - sudo apt install efibootmgr build-essential checkinstall libegl-dev zlib1g-dev libssl-dev ninja-build autoconf libx11-dev libx11-xcb-dev libfontenc-dev libice-dev libsm-dev libxau-dev libxaw7-dev libxcomposite-dev libxcursor-dev libxdamage-dev libxdmcp-dev libxext-dev libxfixes-dev libxi-dev libxinerama-dev libxkbfile-dev libxmu-dev libxmuu-dev libxpm-dev libxrandr-dev libxrender-dev libxres-dev libxss-dev libxt-dev libxtst-dev libxv-dev libxvmc-dev libxxf86vm-dev xtrans-dev libxcb-render0-dev libxcb-render-util0-dev libxcb-xkb-dev libxcb-icccm4-dev libxcb-image0-dev libxcb-keysyms1-dev libxcb-randr0-dev libxcb-shape0-dev libxcb-sync-dev libxcb-xfixes0-dev libxcb-xinerama0-dev xkb-data libxcb-dri3-dev uuid-dev libxcb-util-dev libxkbcommon-x11-dev pkg-config flex bison g++-12 gcc-12 -y + sudo apt install efibootmgr build-essential checkinstall libegl-dev zlib1g-dev libssl-dev ninja-build autoconf libx11-dev libx11-xcb-dev libfontenc-dev libice-dev libsm-dev libxau-dev libxaw7-dev libxcomposite-dev libxcursor-dev libxdamage-dev libxdmcp-dev libxext-dev libxfixes-dev libxi-dev libxinerama-dev libxkbfile-dev libxmu-dev libxmuu-dev libxpm-dev libxrandr-dev libxrender-dev libxres-dev libxss-dev libxt-dev libxtst-dev libxv-dev libxvmc-dev libxxf86vm-dev xtrans-dev libxcb-render0-dev libxcb-render-util0-dev libxcb-xkb-dev libxcb-icccm4-dev libxcb-image0-dev libxcb-keysyms1-dev libxcb-randr0-dev libxcb-shape0-dev libxcb-sync-dev libxcb-xfixes0-dev libxcb-xinerama0-dev xkb-data libxcb-dri3-dev uuid-dev libxcb-util-dev libxkbcommon-x11-dev pkg-config flex bison libxcb-cursor-dev g++-12 gcc-12 -y - name: Install GCC-13 run: | From 794023711fc4adb530c0277e46fd24d0cfa8a91c Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Wed, 29 Nov 2023 14:06:39 +0100 Subject: [PATCH 191/765] WIP prime tower mode refinement --- resources/definitions/fdmprinter.def.json | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index af08b23cb2d..5ab88de33fe 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6596,18 +6596,17 @@ "prime_tower_mode": { "label": "Prime Tower", - "description": "Print a tower next to the model, which serves to prime the material after each nozzle switch.
    • None: do not generate a prime tower
    • Bucket: generate a solid prime bucket in which secondary materials are primed
    • Sparse bucket: generate a prime bucket while trying to waste as less material as possible
    • Sparse: generate a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other.
    ", + "description": "Print a tower next to the model, which serves to prime the material after each nozzle switch.
    • None: do not generate a prime tower
    • Bucket: generate a bucket in which secondary materials are primed
    • Sparse: generate a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other.
    ", "type": "enum", + "value": "'optimized' if all(material_type == extruderValues('material_type')[0] for material_type in extruderValues('material_type')) else 'optimized_consistent'", "options": { "none": "None", - "default": "Bucket", - "optimized_consistent": "Sparse bucket", + "optimized_consistent": "Bucket", "optimized": "Sparse" }, - "default_value": "default", + "default_value": "none", "enabled": "extruders_enabled_count > 1", - "resolve": "(extruders_enabled_count > 1) and any(extruderValues('prime_tower_mode'))", "settable_per_mesh": false, "settable_per_extruder": false }, From 7ed7cc260e25578c5746b44e2652ca7a16bff890 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Wed, 29 Nov 2023 15:22:30 +0100 Subject: [PATCH 192/765] Use testing conan packages Contributes to CURA-10831 --- conandata.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/conandata.yml b/conandata.yml index f12f129ec0d..9a26235e2cb 100644 --- a/conandata.yml +++ b/conandata.yml @@ -1,9 +1,9 @@ version: "5.7.0-alpha.0" requirements: - - "uranium/(latest)@ultimaker/stable" - - "curaengine/(latest)@ultimaker/stable" - - "cura_binary_data/(latest)@ultimaker/stable" - - "fdm_materials/(latest)@ultimaker/stable" + - "uranium/(latest)@ultimaker/testing" + - "curaengine/(latest)@ultimaker/testing" + - "cura_binary_data/(latest)@ultimaker/testing" + - "fdm_materials/(latest)@ultimaker/testing" - "curaengine_plugin_gradual_flow/0.1.0" - "dulcificum/0.1.0-beta.1" - "pyarcus/5.3.0" From 0d3a926259c6919e77dc7f39c9ff08f3fbb58ab9 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Wed, 29 Nov 2023 16:22:03 +0100 Subject: [PATCH 193/765] Update linux.yml --- .github/workflows/linux.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 1dee7a237f6..d8cd580190f 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -111,7 +111,7 @@ jobs: sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y sudo apt update sudo apt upgrade - sudo apt install build-essential checkinstall libegl-dev zlib1g-dev libssl-dev ninja-build autoconf libx11-dev libx11-xcb-dev libfontenc-dev libice-dev libsm-dev libxau-dev libxaw7-dev libxcomposite-dev libxcursor-dev libxdamage-dev libxdmcp-dev libxext-dev libxfixes-dev libxi-dev libxinerama-dev libxkbfile-dev libxmu-dev libxmuu-dev libxpm-dev libxrandr-dev libxrender-dev libxres-dev libxss-dev libxt-dev libxtst-dev libxv-dev libxvmc-dev libxxf86vm-dev xtrans-dev libxcb-render0-dev libxcb-render-util0-dev libxcb-xkb-dev libxcb-icccm4-dev libxcb-image0-dev libxcb-keysyms1-dev libxcb-randr0-dev libxcb-shape0-dev libxcb-sync-dev libxcb-xfixes0-dev libxcb-xinerama0-dev xkb-data libxcb-dri3-dev uuid-dev libxcb-util-dev libxkbcommon-x11-dev pkg-config binutils coreutils desktop-file-utils fakeroot fuse libgdk-pixbuf2.0-dev patchelf squashfs-tools strace util-linux zsync -y + sudo apt install build-essential checkinstall libegl-dev zlib1g-dev libssl-dev ninja-build autoconf libx11-dev libx11-xcb-dev libfontenc-dev libice-dev libsm-dev libxau-dev libxaw7-dev libxcomposite-dev libxcursor-dev libxdamage-dev libxdmcp-dev libxext-dev libxfixes-dev libxi-dev libxinerama-dev libxkbfile-dev libxmu-dev libxmuu-dev libxpm-dev libxrandr-dev libxrender-dev libxres-dev libxss-dev libxt-dev libxtst-dev libxv-dev libxvmc-dev libxxf86vm-dev xtrans-dev libxcb-render0-dev libxcb-render-util0-dev libxcb-xkb-dev libxcb-icccm4-dev libxcb-image0-dev libxcb-keysyms1-dev libxcb-randr0-dev libxcb-shape0-dev libxcb-sync-dev libxcb-xfixes0-dev libxcb-xinerama0-dev xkb-data libxcb-dri3-dev uuid-dev libxcb-util-dev libxkbcommon-x11-dev pkg-config binutils coreutils desktop-file-utils fakeroot fuse libgdk-pixbuf2.0-dev patchelf squashfs-tools strace util-linux zsync libxcb-cursor-dev -y # Get the AppImage tool wget --no-check-certificate --quiet https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage -O $GITHUB_WORKSPACE/appimagetool From 1a945fe06634329749cd4af3c6c294a718e3b136 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Wed, 29 Nov 2023 17:04:58 +0100 Subject: [PATCH 194/765] Update linux.yml --- .github/workflows/linux.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 1dee7a237f6..d8cd580190f 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -111,7 +111,7 @@ jobs: sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y sudo apt update sudo apt upgrade - sudo apt install build-essential checkinstall libegl-dev zlib1g-dev libssl-dev ninja-build autoconf libx11-dev libx11-xcb-dev libfontenc-dev libice-dev libsm-dev libxau-dev libxaw7-dev libxcomposite-dev libxcursor-dev libxdamage-dev libxdmcp-dev libxext-dev libxfixes-dev libxi-dev libxinerama-dev libxkbfile-dev libxmu-dev libxmuu-dev libxpm-dev libxrandr-dev libxrender-dev libxres-dev libxss-dev libxt-dev libxtst-dev libxv-dev libxvmc-dev libxxf86vm-dev xtrans-dev libxcb-render0-dev libxcb-render-util0-dev libxcb-xkb-dev libxcb-icccm4-dev libxcb-image0-dev libxcb-keysyms1-dev libxcb-randr0-dev libxcb-shape0-dev libxcb-sync-dev libxcb-xfixes0-dev libxcb-xinerama0-dev xkb-data libxcb-dri3-dev uuid-dev libxcb-util-dev libxkbcommon-x11-dev pkg-config binutils coreutils desktop-file-utils fakeroot fuse libgdk-pixbuf2.0-dev patchelf squashfs-tools strace util-linux zsync -y + sudo apt install build-essential checkinstall libegl-dev zlib1g-dev libssl-dev ninja-build autoconf libx11-dev libx11-xcb-dev libfontenc-dev libice-dev libsm-dev libxau-dev libxaw7-dev libxcomposite-dev libxcursor-dev libxdamage-dev libxdmcp-dev libxext-dev libxfixes-dev libxi-dev libxinerama-dev libxkbfile-dev libxmu-dev libxmuu-dev libxpm-dev libxrandr-dev libxrender-dev libxres-dev libxss-dev libxt-dev libxtst-dev libxv-dev libxvmc-dev libxxf86vm-dev xtrans-dev libxcb-render0-dev libxcb-render-util0-dev libxcb-xkb-dev libxcb-icccm4-dev libxcb-image0-dev libxcb-keysyms1-dev libxcb-randr0-dev libxcb-shape0-dev libxcb-sync-dev libxcb-xfixes0-dev libxcb-xinerama0-dev xkb-data libxcb-dri3-dev uuid-dev libxcb-util-dev libxkbcommon-x11-dev pkg-config binutils coreutils desktop-file-utils fakeroot fuse libgdk-pixbuf2.0-dev patchelf squashfs-tools strace util-linux zsync libxcb-cursor-dev -y # Get the AppImage tool wget --no-check-certificate --quiet https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage -O $GITHUB_WORKSPACE/appimagetool From ac55306d0bd78a95d590e2207ea195a20d44af63 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Wed, 29 Nov 2023 18:44:11 +0100 Subject: [PATCH 195/765] Use Dulcificum 0.1.0-beta.1 --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index 034879e6204..48cba847be4 100644 --- a/conanfile.py +++ b/conanfile.py @@ -322,7 +322,7 @@ def requirements(self): self.requires("curaengine_grpc_definitions/0.1.0") self.requires("zlib/1.2.13") self.requires("pyarcus/5.3.0") - self.requires("dulcificum/(latest)@ultimaker/stable") + self.requires("dulcificum/0.1.0-beta.1") self.requires("curaengine/(latest)@ultimaker/testing") self.requires("pysavitar/5.3.0") self.requires("pynest2d/5.3.0") From b65cd0181f9882b1bc68fd6d42db7e4fd4a200ef Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Wed, 29 Nov 2023 22:14:18 +0100 Subject: [PATCH 196/765] Disable shared openssl for Windows Temp fix Contributes to CURA-10561 --- .github/workflows/windows.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index ad946d9d99f..f1772c7f605 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -140,8 +140,8 @@ jobs: .\cura_inst\Scripts\activate_github_actions_env.ps1 .\cura_inst\Scripts\activate_github_actions_version_env.ps1 - - name: Install OpenSSL shared - run: conan install openssl/1.1.1l@_/_ --build=missing --update -o openssl:shared=True -g deploy +# - name: Install OpenSSL shared +# run: conan install openssl/1.1.1l@_/_ --build=missing --update -o openssl:shared=True -g deploy - name: Copy OpenSSL shared (Powershell) run: | From ff19142fdf749f3012677e8510099604563b2826 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Thu, 30 Nov 2023 07:16:15 +0100 Subject: [PATCH 197/765] Don't try to copy non existing openssl Contributes to CURA-10831 --- .github/workflows/windows.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index f1772c7f605..69449693138 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -142,11 +142,11 @@ jobs: # - name: Install OpenSSL shared # run: conan install openssl/1.1.1l@_/_ --build=missing --update -o openssl:shared=True -g deploy - - - name: Copy OpenSSL shared (Powershell) - run: | - cp openssl/bin/*.dll ./cura_inst/Scripts/ - cp openssl/lib/*.lib ./cura_inst/Lib/ +# +# - name: Copy OpenSSL shared (Powershell) +# run: | +# cp openssl/bin/*.dll ./cura_inst/Scripts/ +# cp openssl/lib/*.lib ./cura_inst/Lib/ - name: Create the Cura dist run: pyinstaller ./cura_inst/UltiMaker-Cura.spec From 2f452c6581ba11c3381b44ff1d5151fc56173687 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 30 Nov 2023 10:01:20 +0100 Subject: [PATCH 198/765] `enable_sentry` in install commands --- .github/workflows/linux.yml | 2 +- .github/workflows/macos.yml | 2 +- .github/workflows/windows.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 52dc5e73d3d..59f7c8dea8f 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -150,7 +150,7 @@ jobs: run: conan config set storage.download_cache="$HOME/.conan/conan_download_cache" - name: Create the Packages (Bash) - run: conan install $CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$ENTERPRISE -o cura:staging=$STAGING -c tools.build:skip_test=True + run: conan install $CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$ENTERPRISE -o cura:staging=$STAGING -o cura:enable_sentry=True -c tools.build:skip_test=True - name: Remove internal packages before uploading run: | diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 9e6dbf85410..1415b446b56 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -159,7 +159,7 @@ jobs: run: conan config set storage.download_cache="$HOME/.conan/conan_download_cache" - name: Create the Packages (Bash) - run: conan install $CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$ENTERPRISE -o cura:staging=$STAGING -c tools.build:skip_test=True + run: conan install $CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$ENTERPRISE -o cura:staging=$STAGING -o cura:enable_sentry=True -c tools.build:skip_test=True - name: Remove internal packages before uploading run: | diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index eb0e47b2bfc..00756ca425e 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -125,7 +125,7 @@ jobs: run: conan config set storage.download_cache="C:\Users\runneradmin\.conan\conan_download_cache" - name: Create the Packages (Powershell) - run: conan install $Env:CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$Env:ENTERPRISE -o cura:staging=$Env:STAGING -c tools.build:skip_test=True + run: conan install $Env:CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$Env:ENTERPRISE -o cura:staging=$Env:STAGING -o cura:enable_sentry=True -c tools.build:skip_test=True - name: Remove internal packages before uploading run: | From 29193d833c4fd3321e3936bff1dfe9c5ef107cb0 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 30 Nov 2023 11:01:51 +0100 Subject: [PATCH 199/765] Revert "`enable_sentry` in install commands" This reverts commit 2f452c6581ba11c3381b44ff1d5151fc56173687. --- .github/workflows/linux.yml | 2 +- .github/workflows/macos.yml | 2 +- .github/workflows/windows.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 23356d66529..d8cd580190f 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -147,7 +147,7 @@ jobs: run: conan config set storage.download_cache="$HOME/.conan/conan_download_cache" - name: Create the Packages (Bash) - run: conan install $CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$ENTERPRISE -o cura:staging=$STAGING -o cura:enable_sentry=True -c tools.build:skip_test=True + run: conan install $CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$ENTERPRISE -o cura:staging=$STAGING -c tools.build:skip_test=True - name: Remove internal packages before uploading run: | diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index a164cda0894..2c7186a764a 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -156,7 +156,7 @@ jobs: run: conan config set storage.download_cache="$HOME/.conan/conan_download_cache" - name: Create the Packages (Bash) - run: conan install $CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$ENTERPRISE -o cura:staging=$STAGING -o cura:enable_sentry=True -c tools.build:skip_test=True + run: conan install $CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$ENTERPRISE -o cura:staging=$STAGING -c tools.build:skip_test=True - name: Remove internal packages before uploading run: | diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 431627f89c5..69449693138 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -122,7 +122,7 @@ jobs: run: conan config set storage.download_cache="C:\Users\runneradmin\.conan\conan_download_cache" - name: Create the Packages (Powershell) - run: conan install $Env:CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$Env:ENTERPRISE -o cura:staging=$Env:STAGING -o cura:enable_sentry=True -c tools.build:skip_test=True + run: conan install $Env:CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$Env:ENTERPRISE -o cura:staging=$Env:STAGING -c tools.build:skip_test=True - name: Remove internal packages before uploading run: | From d53b2d94abc0219995757c4c2e922226cefd0054 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 30 Nov 2023 11:51:35 +0100 Subject: [PATCH 200/765] Add directory for wix components CURA-11288 --- packaging/msi/UltiMaker-Cura.wxs.jinja | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packaging/msi/UltiMaker-Cura.wxs.jinja b/packaging/msi/UltiMaker-Cura.wxs.jinja index 5ce8cd0a08b..de441443f46 100644 --- a/packaging/msi/UltiMaker-Cura.wxs.jinja +++ b/packaging/msi/UltiMaker-Cura.wxs.jinja @@ -160,7 +160,7 @@ - + @@ -169,7 +169,7 @@ - + From ef5bc6d3d5965a02f603c72da1d20db6d2009723 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Thu, 30 Nov 2023 12:57:14 +0100 Subject: [PATCH 201/765] Use custom CPython 3.10.4 and OpenSSL 3.2.0 Due to changes made to the recipes up stream, and some tweaks to our own cpython recipe. We can now build cpython with the newest OpenSSL version Contribute to CURA-11080 --- conanfile.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index 48cba847be4..18ad185d6a7 100644 --- a/conanfile.py +++ b/conanfile.py @@ -307,6 +307,7 @@ def configure(self): self.options["pynest2d"].shared = True self.options["dulcificum"].shared = self.settings.os != "Windows" self.options["cpython"].shared = True + self.options["openssl"].shared = True self.options["boost"].header_only = True if self.settings.os == "Linux": self.options["curaengine_grpc_definitions"].shared = True @@ -329,7 +330,8 @@ def requirements(self): self.requires("curaengine_plugin_gradual_flow/0.1.0") self.requires("uranium/(latest)@ultimaker/testing") self.requires("cura_binary_data/(latest)@ultimaker/testing") - self.requires("cpython/3.10.4") + self.requires("cpython/3.10.4@ultimaker/stable") + self.requires("openssl/3.2.0") if self.options.internal: self.requires("cura_private_data/(latest)@internal/testing") self.requires("fdm_materials/(latest)@internal/testing") From 7573c3e994a7880136dcfdef920b99d42708f133 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Thu, 30 Nov 2023 12:58:47 +0100 Subject: [PATCH 202/765] Build OpenSSL 3 shared No longer a need to deploy a shared dep independently. Contribute to CURA-11080 --- .github/workflows/linux.yml | 15 +-------------- .github/workflows/macos.yml | 12 ------------ .github/workflows/windows.yml | 8 -------- 3 files changed, 1 insertion(+), 34 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index d8cd580190f..8b6d892fa06 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -162,20 +162,7 @@ jobs: - name: Set Environment variables for Cura (bash) run: | . ./cura_inst/bin/activate_github_actions_env.sh - . ./cura_inst/bin/activate_github_actions_version_env.sh - - # FIXME: This is a workaround to ensure that we use and pack a shared library for OpenSSL 1.1.1l. We currently compile - # OpenSSL statically for CPython, but our Python Dependenies (such as PyQt6) require a shared library. - # Because Conan won't allow for building the same library with two different options (easily) we need to install it explicitly - # and do a manual copy to the VirtualEnv, such that Pyinstaller can find it. - - - name: Install OpenSSL shared - run: conan install openssl/1.1.1l@_/_ --build=missing --update -o openssl:shared=True -g deploy - - - name: Copy OpenSSL shared (Bash) - run: | - cp ./openssl/lib/*.so* ./cura_inst/bin/ || true - cp ./openssl/lib/*.dylib* ./cura_inst/bin/ || true + . ./cura_inst/bin/activate_github_actions_version_env.sh - name: Create the Cura dist run: pyinstaller ./cura_inst/UltiMaker-Cura.spec diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 2c7186a764a..c7c34d9d517 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -177,18 +177,6 @@ jobs: env: TEMP_KEYCHAIN_PASSWORD: ${{ steps.macos-keychain-developer-cert.outputs.keychain-password }} - # FIXME: This is a workaround to ensure that we use and pack a shared library for OpenSSL 1.1.1l. We currently compile - # OpenSSL statically for CPython, but our Python Dependenies (such as PyQt6) require a shared library. - # Because Conan won't allow for building the same library with two different options (easily) we need to install it explicitly - # and do a manual copy to the VirtualEnv, such that Pyinstaller can find it. - - name: Install OpenSSL shared - run: conan install openssl/1.1.1l@_/_ --build=missing --update -o openssl:shared=True -g deploy - - - name: Copy OpenSSL shared (Bash) - run: | - cp ./openssl/lib/*.so* ./cura_inst/bin/ || true - cp ./openssl/lib/*.dylib* ./cura_inst/bin/ || true - - name: Create the Cura dist run: pyinstaller ./cura_inst/UltiMaker-Cura.spec diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 69449693138..dfffc4540bd 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -140,14 +140,6 @@ jobs: .\cura_inst\Scripts\activate_github_actions_env.ps1 .\cura_inst\Scripts\activate_github_actions_version_env.ps1 -# - name: Install OpenSSL shared -# run: conan install openssl/1.1.1l@_/_ --build=missing --update -o openssl:shared=True -g deploy -# -# - name: Copy OpenSSL shared (Powershell) -# run: | -# cp openssl/bin/*.dll ./cura_inst/Scripts/ -# cp openssl/lib/*.lib ./cura_inst/Lib/ - - name: Create the Cura dist run: pyinstaller ./cura_inst/UltiMaker-Cura.spec From d1f4aa6cd3f9e97d9b5f5eaf220162d610923cfb Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Thu, 30 Nov 2023 13:03:22 +0100 Subject: [PATCH 203/765] PP-397 Adjust z shrinkage factor for the PET-CF annealing intent from 2.0 to 0.9% --- .../ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg | 2 +- .../ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg | 2 +- .../ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg | 2 +- .../ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg | 2 +- .../ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg | 2 +- .../ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg | 2 +- .../ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg | 2 +- .../ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg index e042d430901..0c1e598e6c6 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg @@ -15,7 +15,7 @@ variant = CC 0.4 infill_sparse_density = 100 jerk_print = 30 material_shrinkage_percentage_xy = 100.3 -material_shrinkage_percentage_z = 102.0 +material_shrinkage_percentage_z = 100.9 speed_infill = =speed_print speed_layer_0 = 20 speed_print = 25 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg index 8d8ec0f3fd9..7961bb5ca08 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg @@ -15,7 +15,7 @@ variant = CC 0.4 infill_sparse_density = 100 jerk_print = 30 material_shrinkage_percentage_xy = 100.3 -material_shrinkage_percentage_z = 102.0 +material_shrinkage_percentage_z = 100.9 speed_infill = =speed_print speed_layer_0 = 20 speed_print = 20 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg index 90f8fb6c16f..90401c220cb 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg @@ -15,7 +15,7 @@ variant = CC 0.6 infill_sparse_density = 100 jerk_print = 30 material_shrinkage_percentage_xy = 100.3 -material_shrinkage_percentage_z = 102.0 +material_shrinkage_percentage_z = 100.9 speed_infill = =speed_print speed_layer_0 = 20 speed_print = 25 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg index 392f21098a9..3b05f8fd309 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg @@ -15,7 +15,7 @@ variant = CC 0.6 infill_sparse_density = 100 jerk_print = 30 material_shrinkage_percentage_xy = 100.3 -material_shrinkage_percentage_z = 102.0 +material_shrinkage_percentage_z = 100.9 speed_infill = =speed_print speed_layer_0 = 20 speed_print = 25 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg index 923467092e6..e3da6ecedbb 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg @@ -15,7 +15,7 @@ variant = CC 0.4 infill_sparse_density = 100 jerk_print = 30 material_shrinkage_percentage_xy = 100.3 -material_shrinkage_percentage_z = 102.0 +material_shrinkage_percentage_z = 100.9 speed_infill = =speed_print speed_layer_0 = 20 speed_print = 25 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg index 8a09c840a1a..5141dba9475 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg @@ -15,7 +15,7 @@ variant = CC 0.4 infill_sparse_density = 100 jerk_print = 30 material_shrinkage_percentage_xy = 100.3 -material_shrinkage_percentage_z = 102.0 +material_shrinkage_percentage_z = 100.9 speed_infill = =speed_print speed_layer_0 = 20 speed_print = 20 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg index 069c039879a..6ce13e175fe 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg @@ -15,7 +15,7 @@ variant = CC 0.6 infill_sparse_density = 100 jerk_print = 30 material_shrinkage_percentage_xy = 100.3 -material_shrinkage_percentage_z = 102.0 +material_shrinkage_percentage_z = 100.9 speed_infill = =speed_print speed_layer_0 = 20 speed_print = 25 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg index 55faf125872..ceea80d7fd6 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg @@ -15,7 +15,7 @@ variant = CC 0.6 infill_sparse_density = 100 jerk_print = 30 material_shrinkage_percentage_xy = 100.3 -material_shrinkage_percentage_z = 102.0 +material_shrinkage_percentage_z = 100.9 speed_infill = =speed_print speed_layer_0 = 20 speed_print = 25 From 1e190ebcb969057942ecb6e75c51dc8454f9a3b3 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 30 Nov 2023 13:16:25 +0100 Subject: [PATCH 204/765] Format file CURA-1364 --- conanfile.py | 208 ++++++++++++++++++++++++++++++--------------------- 1 file changed, 121 insertions(+), 87 deletions(-) diff --git a/conanfile.py b/conanfile.py index f7ebb4ef9ce..6bae617e3a8 100644 --- a/conanfile.py +++ b/conanfile.py @@ -30,7 +30,8 @@ class CuraConan(ConanFile): options = { "enterprise": ["True", "False", "true", "false"], # Workaround for GH Action passing boolean as lowercase string "staging": ["True", "False", "true", "false"], # Workaround for GH Action passing boolean as lowercase string - "devtools": [True, False], # FIXME: Split this up in testing and (development / build (pyinstaller) / system installer) tools + "devtools": [True, False], + # FIXME: Split this up in testing and (development / build (pyinstaller) / system installer) tools "cloud_api_version": "ANY", "display_name": "ANY", # TODO: should this be an option?? "cura_debug_mode": [True, False], # FIXME: Use profiles @@ -72,7 +73,7 @@ def _cura_run_env(self): self._cura_env.define("QML2_IMPORT_PATH", str(self._site_packages.joinpath("PyQt6", "Qt6", "qml"))) self._cura_env.define("QT_PLUGIN_PATH", str(self._site_packages.joinpath("PyQt6", "Qt6", "plugins"))) if not self.in_local_cache: - self._cura_env.define( "CURA_DATA_ROOT", str(self._share_dir.joinpath("cura"))) + self._cura_env.define("CURA_DATA_ROOT", str(self._share_dir.joinpath("cura"))) if self.settings.os == "Linux": self._cura_env.define("QT_QPA_FONTDIR", "/usr/share/fonts") @@ -163,7 +164,7 @@ def _python_installs(self): python_ins_cmd = f"python -c \"import pkg_resources; print(';'.join([(s.key+','+ s.version) for s in pkg_resources.working_set]))\"" from six import StringIO buffer = StringIO() - self.run(python_ins_cmd, run_environment= True, env = "conanrun", output=buffer) + self.run(python_ins_cmd, run_environment=True, env="conanrun", output=buffer) packages = str(buffer.getvalue()).split("-----------------\n") packages = packages[1].strip('\r\n').split(";") @@ -179,7 +180,7 @@ def _generate_cura_version(self, location): # If you want a specific Cura version to show up on the splash screen add the user configuration `user.cura:version=VERSION` # the global.conf, profile, package_info (of dependency) or via the cmd line `-c user.cura:version=VERSION` - cura_version = Version(self.conf.get("user.cura:version", default = self.version, check_type = str)) + cura_version = Version(self.conf.get("user.cura:version", default=self.version, check_type=str)) pre_tag = f"-{cura_version.pre}" if cura_version.pre else "" build_tag = f"+{cura_version.build}" if cura_version.build else "" internal_tag = f"+internal" if self.options.internal else "" @@ -187,16 +188,16 @@ def _generate_cura_version(self, location): with open(os.path.join(location, "CuraVersion.py"), "w") as f: f.write(cura_version_py.render( - cura_app_name = self.name, - cura_app_display_name = self._app_name, - cura_version = cura_version, - cura_build_type = "Enterprise" if self._enterprise else "", - cura_debug_mode = self.options.cura_debug_mode, - cura_cloud_api_root = self.conan_data["urls"][self._urls]["cloud_api_root"], - cura_cloud_api_version = self.options.cloud_api_version, - cura_cloud_account_api_root = self.conan_data["urls"][self._urls]["cloud_account_api_root"], - cura_marketplace_root = self.conan_data["urls"][self._urls]["marketplace_root"], - cura_digital_factory_url = self.conan_data["urls"][self._urls]["digital_factory_url"], + cura_app_name=self.name, + cura_app_display_name=self._app_name, + cura_version=cura_version, + cura_build_type="Enterprise" if self._enterprise else "", + cura_debug_mode=self.options.cura_debug_mode, + cura_cloud_api_root=self.conan_data["urls"][self._urls]["cloud_api_root"], + cura_cloud_api_version=self.options.cloud_api_version, + cura_cloud_account_api_root=self.conan_data["urls"][self._urls]["cloud_account_api_root"], + cura_marketplace_root=self.conan_data["urls"][self._urls]["marketplace_root"], + cura_digital_factory_url=self.conan_data["urls"][self._urls]["digital_factory_url"], cura_latest_url=self.conan_data["urls"][self._urls]["cura_latest_url"], conan_installs=self._conan_installs(), python_installs=self._python_installs(), @@ -261,37 +262,43 @@ def _generate_pyinstaller_spec(self, location, entrypoint_location, icon_path, e with open(os.path.join(self.recipe_folder, "UltiMaker-Cura.spec.jinja"), "r") as f: pyinstaller = Template(f.read()) - version = self.conf.get("user.cura:version", default = self.version, check_type = str) + version = self.conf.get("user.cura:version", default=self.version, check_type=str) cura_version = Version(version) with open(os.path.join(location, "UltiMaker-Cura.spec"), "w") as f: f.write(pyinstaller.render( - name = str(self.options.display_name).replace(" ", "-"), - display_name = self._app_name, - entrypoint = entrypoint_location, - datas = datas, - binaries = binaries, - venv_script_path = str(self._script_dir), - hiddenimports = pyinstaller_metadata["hiddenimports"], - collect_all = pyinstaller_metadata["collect_all"], - icon = icon_path, - entitlements_file = entitlements_file, - osx_bundle_identifier = "'nl.ultimaker.cura'" if self.settings.os == "Macos" else "None", - upx = str(self.settings.os == "Windows"), - strip = False, # This should be possible on Linux and MacOS but, it can also cause issues on some distributions. Safest is to disable it for now - target_arch = self._pyinstaller_spec_arch, - macos = self.settings.os == "Macos", - version = f"'{version}'", - short_version = f"'{cura_version.major}.{cura_version.minor}.{cura_version.patch}'", + name=str(self.options.display_name).replace(" ", "-"), + display_name=self._app_name, + entrypoint=entrypoint_location, + datas=datas, + binaries=binaries, + venv_script_path=str(self._script_dir), + hiddenimports=pyinstaller_metadata["hiddenimports"], + collect_all=pyinstaller_metadata["collect_all"], + icon=icon_path, + entitlements_file=entitlements_file, + osx_bundle_identifier="'nl.ultimaker.cura'" if self.settings.os == "Macos" else "None", + upx=str(self.settings.os == "Windows"), + strip=False, + # This should be possible on Linux and MacOS but, it can also cause issues on some distributions. Safest is to disable it for now + target_arch=self._pyinstaller_spec_arch, + macos=self.settings.os == "Macos", + version=f"'{version}'", + short_version=f"'{cura_version.major}.{cura_version.minor}.{cura_version.patch}'", )) def export_sources(self): - copy(self, "*", os.path.join(self.recipe_folder, "plugins"), os.path.join(self.export_sources_folder, "plugins")) - copy(self, "*", os.path.join(self.recipe_folder, "resources"), os.path.join(self.export_sources_folder, "resources"), excludes = "*.mo") + copy(self, "*", os.path.join(self.recipe_folder, "plugins"), + os.path.join(self.export_sources_folder, "plugins")) + copy(self, "*", os.path.join(self.recipe_folder, "resources"), + os.path.join(self.export_sources_folder, "resources"), excludes="*.mo") copy(self, "*", os.path.join(self.recipe_folder, "tests"), os.path.join(self.export_sources_folder, "tests")) - copy(self, "*", os.path.join(self.recipe_folder, "cura"), os.path.join(self.export_sources_folder, "cura"), excludes="CuraVersion.py") - copy(self, "*", os.path.join(self.recipe_folder, "packaging"), os.path.join(self.export_sources_folder, "packaging")) - copy(self, "*", os.path.join(self.recipe_folder, ".run_templates"), os.path.join(self.export_sources_folder, ".run_templates")) + copy(self, "*", os.path.join(self.recipe_folder, "cura"), os.path.join(self.export_sources_folder, "cura"), + excludes="CuraVersion.py") + copy(self, "*", os.path.join(self.recipe_folder, "packaging"), + os.path.join(self.export_sources_folder, "packaging")) + copy(self, "*", os.path.join(self.recipe_folder, ".run_templates"), + os.path.join(self.export_sources_folder, ".run_templates")) copy(self, "requirements.txt", self.recipe_folder, self.export_sources_folder) copy(self, "requirements-dev.txt", self.recipe_folder, self.export_sources_folder) copy(self, "requirements-ultimaker.txt", self.recipe_folder, self.export_sources_folder) @@ -310,11 +317,11 @@ def configure(self): self.options["boost"].header_only = True if self.settings.os == "Linux": self.options["curaengine_grpc_definitions"].shared = True - if self.conf.get("user.curaengine:sentry_url", "", check_type = str) != "": + if self.conf.get("user.curaengine:sentry_url", "", check_type=str) != "": self.options["curaengine"].enable_sentry = True def validate(self): - version = self.conf.get("user.cura:version", default = self.version, check_type = str) + version = self.conf.get("user.cura:version", default=self.version, check_type=str) if version and Version(version) <= Version("4"): raise ConanInvalidConfiguration("Only versions 5+ are support") @@ -340,7 +347,7 @@ def requirements(self): def build_requirements(self): if self.options.get_safe("enable_i18n", False): - self.tool_requires("gettext/0.21", force_host_context = True) + self.tool_requires("gettext/0.21", force_host_context=True) def layout(self): self.folders.source = "." @@ -349,11 +356,12 @@ def layout(self): self.cpp.package.libdirs = [os.path.join("site-packages", "cura")] self.cpp.package.bindirs = ["bin"] - self.cpp.package.resdirs = ["resources", "plugins", "packaging", "pip_requirements"] # pip_requirements should be the last item in the list + self.cpp.package.resdirs = ["resources", "plugins", "packaging", + "pip_requirements"] # pip_requirements should be the last item in the list def generate(self): copy(self, "cura_app.py", self.source_folder, str(self._script_dir)) - cura_run_envvars = self._cura_run_env.vars(self, scope = "run") + cura_run_envvars = self._cura_run_env.vars(self, scope="run") ext = ".ps1" if self.settings.os == "Windows" else ".sh" cura_run_envvars.save_script(os.path.join(self.folders.generators, f"cura_run_environment{ext}")) @@ -365,30 +373,32 @@ def generate(self): if not self.in_local_cache: # Copy CuraEngine.exe to bindirs of Virtual Python Environment curaengine = self.dependencies["curaengine"].cpp_info - copy(self, "CuraEngine.exe", curaengine.bindirs[0], self.source_folder, keep_path = False) - copy(self, "CuraEngine", curaengine.bindirs[0], self.source_folder, keep_path = False) + copy(self, "CuraEngine.exe", curaengine.bindirs[0], self.source_folder, keep_path=False) + copy(self, "CuraEngine", curaengine.bindirs[0], self.source_folder, keep_path=False) # Copy the external plugins that we want to bundle with Cura - rmdir(self,str(self.source_path.joinpath("plugins", "CuraEngineGradualFlow"))) + rmdir(self, str(self.source_path.joinpath("plugins", "CuraEngineGradualFlow"))) curaengine_plugin_gradual_flow = self.dependencies["curaengine_plugin_gradual_flow"].cpp_info - copy(self, "*", curaengine_plugin_gradual_flow.resdirs[0], str(self.source_path.joinpath("plugins", "CuraEngineGradualFlow")), keep_path = True) - copy(self, "*", curaengine_plugin_gradual_flow.bindirs[0], self.source_folder, keep_path = False) - copy(self, "bundled_*.json", curaengine_plugin_gradual_flow.resdirs[1], str(self.source_path.joinpath("resources", "bundled_packages")), keep_path = False) + copy(self, "*", curaengine_plugin_gradual_flow.resdirs[0], + str(self.source_path.joinpath("plugins", "CuraEngineGradualFlow")), keep_path=True) + copy(self, "*", curaengine_plugin_gradual_flow.bindirs[0], self.source_folder, keep_path=False) + copy(self, "bundled_*.json", curaengine_plugin_gradual_flow.resdirs[1], + str(self.source_path.joinpath("resources", "bundled_packages")), keep_path=False) # Copy resources of cura_binary_data cura_binary_data = self.dependencies["cura_binary_data"].cpp_info - copy(self, "*", cura_binary_data.resdirs[0], str(self._share_dir.joinpath("cura")), keep_path = True) - copy(self, "*", cura_binary_data.resdirs[1], str(self._share_dir.joinpath("uranium")), keep_path = True) + copy(self, "*", cura_binary_data.resdirs[0], str(self._share_dir.joinpath("cura")), keep_path=True) + copy(self, "*", cura_binary_data.resdirs[1], str(self._share_dir.joinpath("uranium")), keep_path=True) if self.settings.os == "Windows": - copy(self, "*", cura_binary_data.resdirs[2], str(self._share_dir.joinpath("windows")), keep_path = True) + copy(self, "*", cura_binary_data.resdirs[2], str(self._share_dir.joinpath("windows")), keep_path=True) for dependency in self.dependencies.host.values(): for bindir in dependency.cpp_info.bindirs: - copy(self, "*.dll", bindir, str(self._site_packages), keep_path = False) + copy(self, "*.dll", bindir, str(self._site_packages), keep_path=False) for libdir in dependency.cpp_info.libdirs: - copy(self, "*.pyd", libdir, str(self._site_packages), keep_path = False) - copy(self, "*.pyi", libdir, str(self._site_packages), keep_path = False) - copy(self, "*.dylib", libdir, str(self._base_dir.joinpath("lib")), keep_path = False) + copy(self, "*.pyd", libdir, str(self._site_packages), keep_path=False) + copy(self, "*.pyi", libdir, str(self._site_packages), keep_path=False) + copy(self, "*.dylib", libdir, str(self._base_dir.joinpath("lib")), keep_path=False) # Copy materials (flat) rmdir(self, os.path.join(self.source_folder, "resources", "materials")) @@ -401,7 +411,8 @@ def generate(self): copy(self, "*", cura_private_data.resdirs[0], str(self._share_dir.joinpath("cura"))) if self.options.devtools: - entitlements_file = "'{}'".format(os.path.join(self.source_folder, "packaging", "MacOS", "cura.entitlements")) + entitlements_file = "'{}'".format( + os.path.join(self.source_folder, "packaging", "MacOS", "cura.entitlements")) self._generate_pyinstaller_spec( location=self.generators_folder, entrypoint_location="'{}'".format( @@ -430,64 +441,87 @@ def build(self): mo_file = mo_file.parent.joinpath("LC_MESSAGES", mo_file.name) mkdir(self, str(unix_path(self, Path(mo_file).parent))) cpp_info = self.dependencies["gettext"].cpp_info - self.run(f"{cpp_info.bindirs[0]}/msgfmt {po_file} -o {mo_file} -f", env="conanbuild", ignore_errors=True) + self.run(f"{cpp_info.bindirs[0]}/msgfmt {po_file} -o {mo_file} -f", env="conanbuild", + ignore_errors=True) def deploy(self): - copy(self, "*", os.path.join(self.package_folder, self.cpp.package.resdirs[2]), os.path.join(self.install_folder, "packaging"), keep_path = True) + copy(self, "*", os.path.join(self.package_folder, self.cpp.package.resdirs[2]), + os.path.join(self.install_folder, "packaging"), keep_path=True) # Copy resources of Cura (keep folder structure) needed by pyinstaller to determine the module structure - copy(self, "*", os.path.join(self.package_folder, self.cpp_info.bindirs[0]), str(self._base_dir), keep_path = False) - copy(self, "*", os.path.join(self.package_folder, self.cpp_info.libdirs[0]), str(self._site_packages.joinpath("cura")), keep_path = True) - copy(self, "*", os.path.join(self.package_folder, self.cpp_info.resdirs[0]), str(self._share_dir.joinpath("cura", "resources")), keep_path = True) - copy(self, "*", os.path.join(self.package_folder, self.cpp_info.resdirs[1]), str(self._share_dir.joinpath("cura", "plugins")), keep_path = True) + copy(self, "*", os.path.join(self.package_folder, self.cpp_info.bindirs[0]), str(self._base_dir), + keep_path=False) + copy(self, "*", os.path.join(self.package_folder, self.cpp_info.libdirs[0]), + str(self._site_packages.joinpath("cura")), keep_path=True) + copy(self, "*", os.path.join(self.package_folder, self.cpp_info.resdirs[0]), + str(self._share_dir.joinpath("cura", "resources")), keep_path=True) + copy(self, "*", os.path.join(self.package_folder, self.cpp_info.resdirs[1]), + str(self._share_dir.joinpath("cura", "plugins")), keep_path=True) # Copy resources of Uranium (keep folder structure) uranium = self.dependencies["uranium"].cpp_info - copy(self, "*", uranium.resdirs[0], str(self._share_dir.joinpath("uranium", "resources")), keep_path = True) - copy(self, "*", uranium.resdirs[1], str(self._share_dir.joinpath("uranium", "plugins")), keep_path = True) - copy(self, "*", uranium.libdirs[0], str(self._site_packages.joinpath("UM")), keep_path = True) + copy(self, "*", uranium.resdirs[0], str(self._share_dir.joinpath("uranium", "resources")), keep_path=True) + copy(self, "*", uranium.resdirs[1], str(self._share_dir.joinpath("uranium", "plugins")), keep_path=True) + copy(self, "*", uranium.libdirs[0], str(self._site_packages.joinpath("UM")), keep_path=True) # Generate the GitHub Action version info Environment - version = self.conf.get("user.cura:version", default = self.version, check_type = str) + version = self.conf.get("user.cura:version", default=self.version, check_type=str) cura_version = Version(version) env_prefix = "Env:" if self.settings.os == "Windows" else "" - activate_github_actions_version_env = Template(r"""echo "CURA_VERSION_MAJOR={{ cura_version_major }}" >> ${{ env_prefix }}GITHUB_ENV + activate_github_actions_version_env = (Template(r"""echo "CURA_VERSION_MAJOR={{ cura_version_major }}" >> ${{ env_prefix }}GITHUB_ENV echo "CURA_VERSION_MINOR={{ cura_version_minor }}" >> ${{ env_prefix }}GITHUB_ENV echo "CURA_VERSION_PATCH={{ cura_version_patch }}" >> ${{ env_prefix }}GITHUB_ENV echo "CURA_VERSION_BUILD={{ cura_version_build }}" >> ${{ env_prefix }}GITHUB_ENV echo "CURA_VERSION_FULL={{ cura_version_full }}" >> ${{ env_prefix }}GITHUB_ENV -echo "CURA_APP_NAME={{ cura_app_name }}" >> ${{ env_prefix }}GITHUB_ENV - """).render(cura_version_major = cura_version.major, - cura_version_minor = cura_version.minor, - cura_version_patch = cura_version.patch, - cura_version_build = cura_version.build if cura_version.build != "" else "0", - cura_version_full = self.version, - cura_app_name = self._app_name, - env_prefix = env_prefix) +echo "CURA_APP_NAME={{ cura_app_name }}" >> ${{ env_prefix }}GITHUB_ENV""") + .render( + cura_version_major=cura_version.major, + cura_version_minor=cura_version.minor, + cura_version_patch=cura_version.patch, + cura_version_build=cura_version.build if cura_version.build != "" else "0", + cura_version_full=self.version, + cura_app_name=self._app_name, + env_prefix=env_prefix, + ) + ) ext = ".sh" if self.settings.os != "Windows" else ".ps1" - save(self, os.path.join(self._script_dir, f"activate_github_actions_version_env{ext}"), activate_github_actions_version_env) + save(self, os.path.join(self._script_dir, f"activate_github_actions_version_env{ext}"), + activate_github_actions_version_env) self._generate_cura_version(os.path.join(self._site_packages, "cura")) entitlements_file = "'{}'".format(Path(self.cpp_info.res_paths[2], "MacOS", "cura.entitlements")) - self._generate_pyinstaller_spec(location = self._base_dir, - entrypoint_location = "'{}'".format(os.path.join(self.package_folder, self.cpp_info.bindirs[0], self.conan_data["pyinstaller"]["runinfo"]["entrypoint"])).replace("\\", "\\\\"), - icon_path = "'{}'".format(os.path.join(self.package_folder, self.cpp_info.resdirs[2], self.conan_data["pyinstaller"]["icon"][str(self.settings.os)])).replace("\\", "\\\\"), - entitlements_file = entitlements_file if self.settings.os == "Macos" else "None") + self._generate_pyinstaller_spec(location=self._base_dir, + entrypoint_location="'{}'".format( + os.path.join(self.package_folder, self.cpp_info.bindirs[0], + self.conan_data["pyinstaller"]["runinfo"][ + "entrypoint"])).replace("\\", "\\\\"), + icon_path="'{}'".format( + os.path.join(self.package_folder, self.cpp_info.resdirs[2], + self.conan_data["pyinstaller"]["icon"][ + str(self.settings.os)])).replace("\\", "\\\\"), + entitlements_file=entitlements_file if self.settings.os == "Macos" else "None") def package(self): - copy(self, "cura_app.py", src = self.source_folder, dst = os.path.join(self.package_folder, self.cpp.package.bindirs[0])) - copy(self, "*", src = os.path.join(self.source_folder, "cura"), dst = os.path.join(self.package_folder, self.cpp.package.libdirs[0])) - copy(self, "*", src = os.path.join(self.source_folder, "resources"), dst = os.path.join(self.package_folder, self.cpp.package.resdirs[0])) + copy(self, "cura_app.py", src=self.source_folder, + dst=os.path.join(self.package_folder, self.cpp.package.bindirs[0])) + copy(self, "*", src=os.path.join(self.source_folder, "cura"), + dst=os.path.join(self.package_folder, self.cpp.package.libdirs[0])) + copy(self, "*", src=os.path.join(self.source_folder, "resources"), + dst=os.path.join(self.package_folder, self.cpp.package.resdirs[0])) copy(self, "*.mo", os.path.join(self.build_folder, "resources"), os.path.join(self.package_folder, "resources")) - copy(self, "*", src = os.path.join(self.source_folder, "plugins"), dst = os.path.join(self.package_folder, self.cpp.package.resdirs[1])) - copy(self, "requirement*.txt", src = self.source_folder, dst = os.path.join(self.package_folder, self.cpp.package.resdirs[-1])) - copy(self, "*", src = os.path.join(self.source_folder, "packaging"), dst = os.path.join(self.package_folder, self.cpp.package.resdirs[2])) + copy(self, "*", src=os.path.join(self.source_folder, "plugins"), + dst=os.path.join(self.package_folder, self.cpp.package.resdirs[1])) + copy(self, "requirement*.txt", src=self.source_folder, + dst=os.path.join(self.package_folder, self.cpp.package.resdirs[-1])) + copy(self, "*", src=os.path.join(self.source_folder, "packaging"), + dst=os.path.join(self.package_folder, self.cpp.package.resdirs[2])) # Remove the CuraEngineGradualFlow plugin from the package rmdir(self, os.path.join(self.package_folder, self.cpp.package.resdirs[1], "CuraEngineGradualFlow")) - rm(self, "bundled_*.json", os.path.join(self.package_folder, self.cpp.package.resdirs[0], "bundled_packages"), recursive = False) + rm(self, "bundled_*.json", os.path.join(self.package_folder, self.cpp.package.resdirs[0], "bundled_packages"), + recursive=False) # Remove the fdm_materials from the package rmdir(self, os.path.join(self.package_folder, self.cpp.package.resdirs[0], "materials")) From 2b5f8b3a7c4a77e7eb99fc974996efcd4b77ace0 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 30 Nov 2023 13:23:37 +0100 Subject: [PATCH 205/765] Remove deprecated `createAndRemoveOnUninstall` action from wix installer CURA-11288 --- packaging/msi/UltiMaker-Cura.wxs.jinja | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packaging/msi/UltiMaker-Cura.wxs.jinja b/packaging/msi/UltiMaker-Cura.wxs.jinja index de441443f46..07a2c7d8c9b 100644 --- a/packaging/msi/UltiMaker-Cura.wxs.jinja +++ b/packaging/msi/UltiMaker-Cura.wxs.jinja @@ -161,7 +161,7 @@ - + @@ -170,7 +170,7 @@ - + From 87caa0307a80040a74d68a2060b9f34853e09115 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 30 Nov 2023 13:28:33 +0100 Subject: [PATCH 206/765] Display message on open file event CURA-11288 --- cura/CuraApplication.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index c6c44cf8f58..0ac71187767 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -1154,6 +1154,15 @@ def event(self, event): """Handle Qt events""" if event.type() == QEvent.Type.FileOpen: + + result_message = Message( + f"file: {str(event.file())}, url: {str(event.url())}", + lifetime=0, + title="OPENING FILE", + message_type=Message.MessageType.NEUTRAL, + ) + result_message.show() + if self._plugins_loaded: self._openFile(event.file()) else: From ad871c627ed5a4de7e93613f83e7439d8030818c Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 30 Nov 2023 13:42:48 +0100 Subject: [PATCH 207/765] Don't open file on open file event CURA-11288 --- cura/CuraApplication.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 0ac71187767..da1594c37b8 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -1163,10 +1163,10 @@ def event(self, event): ) result_message.show() - if self._plugins_loaded: - self._openFile(event.file()) - else: - self._open_file_queue.append(event.file()) + # if self._plugins_loaded: + # self._openFile(event.file()) + # else: + # self._open_file_queue.append(event.file()) if int(event.type()) == 20: # 'QEvent.Type.Quit' enum isn't there, even though it should be according to docs. # Once we're at this point, everything should have been flushed already (past OnExitCallbackManager). From d93d66dd8adad41fb693b8c6e135caf44f92cd5f Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 30 Nov 2023 13:45:21 +0100 Subject: [PATCH 208/765] Use sentry cura engine version CURA-11364 --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index 6bae617e3a8..3706604205e 100644 --- a/conanfile.py +++ b/conanfile.py @@ -332,7 +332,7 @@ def requirements(self): self.requires("zlib/1.2.13") self.requires("pyarcus/5.3.0") self.requires("dulcificum/0.1.0-beta.1") - self.requires("curaengine/(latest)@ultimaker/testing") + self.requires("curaengine/latest@ultimaker/cura_11364") self.requires("pysavitar/5.3.0") self.requires("pynest2d/5.3.0") self.requires("curaengine_plugin_gradual_flow/0.1.0") From 66ad006bc528392bd7246a29cfec4896fb31105d Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Thu, 30 Nov 2023 14:15:00 +0100 Subject: [PATCH 209/765] Reduced line width of the middle raft layer from 1.2 to 0.4 Increase speed from 27.5mm/s to 90mm/s. --- resources/definitions/ultimaker_method_base.def.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/definitions/ultimaker_method_base.def.json b/resources/definitions/ultimaker_method_base.def.json index 8e9034c9547..6ac68ef2de1 100644 --- a/resources/definitions/ultimaker_method_base.def.json +++ b/resources/definitions/ultimaker_method_base.def.json @@ -357,7 +357,8 @@ "raft_base_thickness": { "value": 0.8 }, "raft_interface_extruder_nr": { "value": "raft_surface_extruder_nr" }, "raft_interface_layers": { "value": 2 }, - "raft_interface_line_width": { "value": 1.2 }, + "raft_interface_line_width": { "value": "line_width" }, + "raft_interface_speed": { "value": 90 }, "raft_interface_thickness": { "value": 0.3 }, "raft_margin": { "value": 3 }, "raft_surface_extruder_nr": { "value": "int(anyExtruderWithMaterial('material_is_support_material')) if support_enable and extruderValue(support_extruder_nr,'material_is_support_material') else raft_base_extruder_nr" }, From a442228f38d758870f7753870f03438e9fd6986b Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 30 Nov 2023 22:45:18 +0100 Subject: [PATCH 210/765] Open file on url scheme CURA-11289 --- cura/CuraApplication.py | 73 ++++++++++++++++++++++++++++++++--------- 1 file changed, 57 insertions(+), 16 deletions(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index da1594c37b8..e7289a225ff 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -8,9 +8,11 @@ import platform from pathlib import Path from typing import cast, TYPE_CHECKING, Optional, Callable, List, Any, Dict +import re +import requests import numpy -from PyQt6.QtCore import QObject, QTimer, QUrl, pyqtSignal, pyqtProperty, QEvent, pyqtEnum, QCoreApplication +from PyQt6.QtCore import QObject, QTimer, QUrl, QUrlQuery, pyqtSignal, pyqtProperty, QEvent, pyqtEnum, QCoreApplication from PyQt6.QtGui import QColor, QIcon from PyQt6.QtQml import qmlRegisterUncreatableType, qmlRegisterUncreatableMetaObject, qmlRegisterSingletonType, qmlRegisterType from PyQt6.QtWidgets import QMessageBox @@ -249,7 +251,7 @@ def __init__(self, *args, **kwargs): self._additional_components = {} # Components to add to certain areas in the interface self._open_file_queue = [] # A list of files to open (after the application has started) - + self._open_url_queue = [] # A list of urls to open (after the application has started) self._update_platform_activity_timer = None self._sidebar_custom_menu_items = [] # type: list # Keeps list of custom menu items for the side bar @@ -946,6 +948,8 @@ def _onPostStart(self): self.callLater(self._openFile, file_name) for file_name in self._open_file_queue: # Open all the files that were queued up while plug-ins were loading. self.callLater(self._openFile, file_name) + for url in self._open_url_queue: + self.callLater(self._openUrl, url) initializationFinished = pyqtSignal() showAddPrintersUncancellableDialog = pyqtSignal() # Used to show the add printers dialog with a greyed background @@ -1154,19 +1158,16 @@ def event(self, event): """Handle Qt events""" if event.type() == QEvent.Type.FileOpen: - - result_message = Message( - f"file: {str(event.file())}, url: {str(event.url())}", - lifetime=0, - title="OPENING FILE", - message_type=Message.MessageType.NEUTRAL, - ) - result_message.show() - - # if self._plugins_loaded: - # self._openFile(event.file()) - # else: - # self._open_file_queue.append(event.file()) + if self._plugins_loaded: + if event.file(): + self._openFile(event.file()) + if event.url(): + self._openUrl(event.url()) + else: + if event.file(): + self._open_file_queue.append(event.file()) + if event.url(): + self._open_url_queue.append(event.url()) if int(event.type()) == 20: # 'QEvent.Type.Quit' enum isn't there, even though it should be according to docs. # Once we're at this point, everything should have been flushed already (past OnExitCallbackManager). @@ -1550,7 +1551,7 @@ def reloadAll(self) -> None: if not nodes: return - objects_in_filename = {} # type: Dict[str, List[CuraSceneNode]] + objects_in_filename: Dict[str, List[CuraSceneNode]] = {} for node in nodes: mesh_data = node.getMeshData() if mesh_data: @@ -1791,6 +1792,46 @@ def _reloadMeshFinished(self, job) -> None: def _openFile(self, filename): self.readLocalFile(QUrl.fromLocalFile(filename)) + def _openUrl(self, url: QUrl) -> None: + supported_schemes = ["cura", "slicer"] + if url.scheme() not in supported_schemes: + # only handle cura:// and slicer:// urls schemes + return + + match url.host() + url.path(): + case "open": + query = QUrlQuery(url.query()) + model_url = QUrl(query.queryItemValue("file", options=QUrl.ComponentFormattingOption.FullyDecoded)) + response = requests.get(model_url.url()) + if response.status_code is not 200: + Logger.log("e", "Could not download file from {0}".format(model_url.url())) + return + + content_disposition = response.headers.get('Content-Disposition') + if content_disposition is None: + Logger.log("w", + "Could not find Content-Disposition header in response from {0}".format(model_url.url())) + # Use the last part of the url as the filename, and assume it is an STL file + filename = model_url.path().split("/")[-1] + ".stl" + else: + # content_disposition is in the following format + # ``` + # content_disposition attachment; "filename=[FILENAME]" + # ``` + # Use a regex to extract the filename + # content_disposition = response.headers.get('Content-Disposition') + content_disposition_match = re.match(r'attachment; filename="(?P.*)"', + content_disposition) + assert content_disposition_match is not None + filename = content_disposition_match.group("filename") + + tmp = tempfile.NamedTemporaryFile(suffix=filename, delete=False) + with open(tmp.name, "wb") as f: + f.write(response.content) + self.readLocalFile(QUrl.fromLocalFile(tmp.name), add_to_recent_files=False) + case path: + Logger.log("w", "Unsupported url scheme path: {0}".format(path)) + def _addProfileReader(self, profile_reader): # TODO: Add the profile reader to the list of plug-ins that can be used when importing profiles. pass From b629669f77ee7dc3345283170b8148d017f073f7 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Thu, 30 Nov 2023 14:00:28 +0100 Subject: [PATCH 211/765] Use sip<=6.7.12 6.8.0 seams to have bug which is botching up building pyArcus Contribute to CURA-11080 --- .github/workflows/requirements-conan-package.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/requirements-conan-package.txt b/.github/workflows/requirements-conan-package.txt index 9380d1cb986..215557e3679 100644 --- a/.github/workflows/requirements-conan-package.txt +++ b/.github/workflows/requirements-conan-package.txt @@ -1,2 +1,2 @@ conan>=1.60.2,<2.0.0 -sip +sip<=6.7.12 From 10b69e801e7547bbf730345552ba61f337685aab Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Thu, 30 Nov 2023 23:38:27 +0100 Subject: [PATCH 212/765] Openssl shared on Linux static for the rest Contribute to CURA-11080 --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index 18ad185d6a7..d52d62e5cc0 100644 --- a/conanfile.py +++ b/conanfile.py @@ -307,10 +307,10 @@ def configure(self): self.options["pynest2d"].shared = True self.options["dulcificum"].shared = self.settings.os != "Windows" self.options["cpython"].shared = True - self.options["openssl"].shared = True self.options["boost"].header_only = True if self.settings.os == "Linux": self.options["curaengine_grpc_definitions"].shared = True + self.options["openssl"].shared = True def validate(self): version = self.conf.get("user.cura:version", default = self.version, check_type = str) From 79c7db3e6f621ad444be94d98a2c27da6d2c9c04 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Fri, 1 Dec 2023 08:13:30 +0100 Subject: [PATCH 213/765] Use Uranium workign branch CURA-11137 Contributes to CURA-10831 and CURA-11137 --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index d52d62e5cc0..12446618499 100644 --- a/conanfile.py +++ b/conanfile.py @@ -328,7 +328,7 @@ def requirements(self): self.requires("pysavitar/5.3.0") self.requires("pynest2d/5.3.0") self.requires("curaengine_plugin_gradual_flow/0.1.0") - self.requires("uranium/(latest)@ultimaker/testing") + self.requires("uranium/(latest)@ultimaker/cura_11137") # FIXME: Use `testing` once the branch is merged self.requires("cura_binary_data/(latest)@ultimaker/testing") self.requires("cpython/3.10.4@ultimaker/stable") self.requires("openssl/3.2.0") From 31d48aabe7ca0b2eca3033b94f2eed7d9b3e20f5 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Fri, 1 Dec 2023 09:15:21 +0100 Subject: [PATCH 214/765] Use Qt6.6 and PyQt6.6 Contributes to CURA-11137 --- requirements.txt | 79 +++++++++++++++++++++++++----------------------- 1 file changed, 42 insertions(+), 37 deletions(-) diff --git a/requirements.txt b/requirements.txt index 48ee3abcdc1..76339c884fd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,41 +1,46 @@ ### Direct requirements for Uranium and libCharon ### -PyQt6-sip==13.5.2 \ - --hash=sha256:1bdb1f7b5b2f6ac31d517a6f3a13c38055640ac0014f67a2e5422d2083ce69ec \ - --hash=sha256:318d4d1c7ef60f69c68227cef78fc439accc9028ec6149200eea3d34c433d373 \ - --hash=sha256:4b5b0c4b557e0293eba008021342459a0f91c69a7a2eb5231276d495d1d2960a \ - --hash=sha256:5b499eff7150d9f31fe835a73cc41f076bba2fcde0f5b0325b1284797f17c0ac \ - --hash=sha256:5d0fd42da765198b51d7fe12c29721cbe3e14b77ca4f68aa43618149ee7dbeff \ - --hash=sha256:831f5d606fc5296a80303ab30892c3308954c5766039bf7a96267488bb2524a5 \ - --hash=sha256:87d758ba999baa16459f0a3c7f7ed47a5b45e8991ad691f17345bf3c493a4281 \ - --hash=sha256:91812f0094443b816a74a89954d60bb50060807f54d7c016a4de7bd29454091e \ - --hash=sha256:94afb031db89159aa330891eba2c937b0378b4b264570998848c7a78eddf7c94 \ - --hash=sha256:9ad5b8c4c92d62e00ebf254a4c9656668b130f2a1d2792034e0d82b2d6571509 \ - --hash=sha256:9c9dac067710015895f523f5a2a4d59cbef8624a152b6f9a426e5b848d8c6d29 \ - --hash=sha256:ace942b78378bff8ae2d6bafccc84465f1ff0cf30720b8321e0bd6c95c36ede6 \ - --hash=sha256:b54b0d8d21c5835af8f6d6d8a323a23106e67b7cd4c31e23c35bb4c321000de8 \ - --hash=sha256:c0b4e55c4d0dc44728da90eb1451dfff0d05260b4a3496ff0014494e6c1865a6 \ - --hash=sha256:dcf602c233ee7600e810927adcb9e518d61bc796a6b2013c17feedd24c4e5413 \ - --hash=sha256:ebf6264b6feda01ba37d3b60a4bb87493bdb87be70f7b2a5384a7acd4902d88d -PyQt6==6.5.2 \ - --hash=sha256:1487ee7350f9ffb66d60ab4176519252c2b371762cbe8f8340fd951f63801280 \ - --hash=sha256:5bad1437eb0c1ae801103b32ef04ef62ef1cce505b448525f60089ce36329b89 \ - --hash=sha256:70468cca4537756c714a57fa1baa5beabb9b38775f52f9611f49870705672c55 \ - --hash=sha256:ff1d12767b578f0f0e87cdb12198e7dcad9a176c40d1d1d799984181b0af93cb -PyQt6-Qt6==6.5.2 \ - --hash=sha256:4b37f6f93c0980469ccc570998d3e3de243028bae7389fb6330443ab215ce2f6 \ - --hash=sha256:5a3c7bb899678bf801136b31cd589ed4d0d54ab32be5fb76c2bdeb161a9662ad \ - --hash=sha256:8dad61b4666d91882d7e1c4d619c71e7429c13e19182f8b3bebf3ecf95107d4c \ - --hash=sha256:953f3c0e99e486081a6d438b32fbc240da97457226562eb68cf1b11c516386fd -PyQt6-NetworkAuth==6.5.0 \ - --hash=sha256:6dc9e44a978698b673926e34da486f946ccbbeeac02078517c4d1ee23d0546a4 \ - --hash=sha256:7170db3f99e13aef855d9d52a00a8baa2dea92d12f9b441fed9c6dec57f83e09 \ - --hash=sha256:a8c8cb00a615dde1efaf1d7926e8532df77d6d08798d33b6325fb8f2ff0f220d \ - --hash=sha256:ac56d362c9efcfc194e358cc2bba362535b0775dc2bd8257f964e0bcfe7d421a -PyQt6-NetworkAuth-Qt6==6.5.2 \ - --hash=sha256:0588b93ec5a6f2c492a42dc56967f06d33306169e716c5636448816a65956278 \ - --hash=sha256:29396a63b68e8fa26587c35e8befad0a84e3a05e03551d1329ffd527684edc68 \ - --hash=sha256:2ec8ca45764d2f122912ad6c754b5ffe65f143b5a52f99649cc7931b475e064b \ - --hash=sha256:76e0877ed86247784740a0eb928f3c77da7466f08d96d17306efda6060df2c44 +PyQt6-sip==13.6.0 \ + --hash=sha256:0dfd22cfedd87e96f9d51e0778ca2ba3dc0be83e424e9e0f98f6994d8d9c90f0 \ + --hash=sha256:13885361ca2cb2f5085d50359ba61b3fabd41b139fb58f37332acbe631ef2357 \ + --hash=sha256:24441032a29791e82beb7dfd76878339058def0e97fdb7c1cea517f3a0e6e96b \ + --hash=sha256:2486e1588071943d4f6657ba09096dc9fffd2322ad2c30041e78ea3f037b5778 \ + --hash=sha256:3075d8b325382750829e6cde6971c943352309d35768a4d4da0587459606d562 \ + --hash=sha256:33ea771fe777eb0d1a2c3ef35bcc3f7a286eb3ff09cd5b2fdd3d87d1f392d7e8 \ + --hash=sha256:39854dba35f8e5a4288da26ecb5f40b4c5ec1932efffb3f49d5ea435a7f37fb3 \ + --hash=sha256:3bf03e130fbfd75c9c06e687b86ba375410c7a9e835e4e03285889e61dd4b0c4 \ + --hash=sha256:43fb8551796030aae3d66d6e35e277494071ec6172cd182c9569ab7db268a2f5 \ + --hash=sha256:58f68a48400e0b3d1ccb18090090299bad26e3aed7ccb7057c65887b79b8aeea \ + --hash=sha256:5b9c6b6f9cfccb48cbb78a59603145a698fb4ffd176764d7083e5bf47631d8df \ + --hash=sha256:747f6ca44af81777a2c696bd501bc4815a53ec6fc94d4e25830e10bc1391f8ab \ + --hash=sha256:86a7b67c64436e32bffa9c28c9f21bf14a9faa54991520b12c3f6f435f24df7f \ + --hash=sha256:8c282062125eea5baf830c6998587d98c50be7c3a817a057fb95fef647184012 \ + --hash=sha256:8f9df9f7ccd8a9f0f1d36948c686f03ce1a1281543a3e636b7b7d5e086e1a436 \ + --hash=sha256:98bf954103b087162fa63b3a78f30b0b63da22fd6450b610ec1b851dbb798228 \ + --hash=sha256:9adf672f9114687533a74d5c2d4c03a9a929ad5ad9c3e88098a7da1a440ab916 \ + --hash=sha256:a6ce80bc24618d8a41be8ca51ad9f10e8bc4296dd90ab2809573df30a23ae0e5 \ + --hash=sha256:d6b5f699aaed0ac1fcd23e8fbca70d8a77965831b7c1ce474b81b1678817a49d \ + --hash=sha256:fa759b6339ff7e25f9afe2a6b651b775f0a36bcb3f5fa85e81a90d3b033c83f4 \ + --hash=sha256:fa7b10af7488efc5e53b41dd42c0f421bde6c2865a107af7ae259aff9d841da9 +PyQt6==6.6.0 \ + --hash=sha256:33655db05ac2de699320f035250c21434c77144a6a2943aca3f4c579dabc3f7b \ + --hash=sha256:3ef68830a9b32050c30f7962c56a5927802c9193b68eaf405faecb8ce9ae10a8 \ + --hash=sha256:d41512d66044c2df9c5f515a56a922170d68a37b3406ffddc8b4adc57181b576 \ + --hash=sha256:fc7185d65755f26d7a6842492ec5398c92544dc4eafbbcbef1b1922aca585c96 +PyQt6-Qt6==6.6.0 \ + --hash=sha256:1b079a33088d32ff47872cdb37fd15aa42101f0be46c3340244483849b781438 \ + --hash=sha256:8cb30d64a4d32465ea1686bc827cbe452225fb387c4873356b0fa7b9ae63534f \ + --hash=sha256:a151f34712cd645111e89cb30b02e5fb69c9dcc3603ab3c03a561e874bd7cbcf \ + --hash=sha256:e5483ae04bf107411c7469f1be9f9e2eb9840303e788b3ac524fe30af90d45f4 +PyQt6-NetworkAuth==6.6.0 \ + --hash=sha256:7b90b81792fe53105287c8cbb5e4b22bc44a482268ffb7d3e33f852807f86182 \ + --hash=sha256:c7e2335159aa795e2fe6fb069ccce6308672ab80f26c50fab57caf957371cbb5 \ + --hash=sha256:cdfc0bfaea16a9e09f075bdafefb996aa9fdec392052ba4fb3cbac233c1958fb \ + --hash=sha256:f60ff9a62f5129dc2a9d4c495fb47f9a03e4dfb666b50fb7d61f46e89bf7b6a2 +PyQt6-NetworkAuth-Qt6==6.6.0 \ + --hash=sha256:481d9093e1fb1ac6843d8beabcd359cc34b74b9a2cbb3e2b68d96bd3f178d4e0 \ + --hash=sha256:4cc48fd375730a0ba5fbed9d64abb2914f587377560a78a63aff893f9e276a45 \ + --hash=sha256:5006deabf55304d4a3e0b3c954f93e5835546b11e789d14653a2493d12d3a063 \ + --hash=sha256:bcd56bfc892fec961c51eba3c0bf32ba8317a762d9e254d3830569611ed569d6 certifi==2023.5.7; \ --hash=sha256:c6c2e98f5c7869efca1f8916fed228dd91539f9f1b444c314c06eef02980c716 From cf6874c98481bd899a4a47c9af05af1570688a34 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 1 Dec 2023 10:53:30 +0100 Subject: [PATCH 215/765] Use the `HttpRequestManager` to avoid blocking the main thread CURA-11289 --- cura/CuraApplication.py | 65 ++++++++++++++++++++++++----------------- 1 file changed, 38 insertions(+), 27 deletions(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index e7289a225ff..079a27b6cea 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -2,17 +2,18 @@ # Cura is released under the terms of the LGPLv3 or higher. import enum import os +import re import sys import tempfile import time import platform from pathlib import Path from typing import cast, TYPE_CHECKING, Optional, Callable, List, Any, Dict -import re import requests import numpy -from PyQt6.QtCore import QObject, QTimer, QUrl, QUrlQuery, pyqtSignal, pyqtProperty, QEvent, pyqtEnum, QCoreApplication +from PyQt6.QtCore import QObject, QTimer, QUrl, QUrlQuery, pyqtSignal, pyqtProperty, QEvent, pyqtEnum, QCoreApplication, \ + QByteArray from PyQt6.QtGui import QColor, QIcon from PyQt6.QtQml import qmlRegisterUncreatableType, qmlRegisterUncreatableMetaObject, qmlRegisterSingletonType, qmlRegisterType from PyQt6.QtWidgets import QMessageBox @@ -1802,33 +1803,43 @@ def _openUrl(self, url: QUrl) -> None: case "open": query = QUrlQuery(url.query()) model_url = QUrl(query.queryItemValue("file", options=QUrl.ComponentFormattingOption.FullyDecoded)) - response = requests.get(model_url.url()) - if response.status_code is not 200: - Logger.log("e", "Could not download file from {0}".format(model_url.url())) + + def on_finish(response): + content_disposition_header_key = QByteArray("content-disposition".encode()) + + if not response.hasRawHeader(content_disposition_header_key): + Logger.log("w", "Could not find Content-Disposition header in response from {0}".format( + model_url.url())) + # Use the last part of the url as the filename, and assume it is an STL file + filename = model_url.path().split("/")[-1] + ".stl" + else: + # content_disposition is in the format + # ``` + # content_disposition attachment; "filename=[FILENAME]" + # ``` + # Use a regex to extract the filename + content_disposition = str(response.rawHeader(content_disposition_header_key).data(), + encoding='utf-8') + content_disposition_match = re.match(r'attachment; filename="(?P.*)"', + content_disposition) + assert content_disposition_match is not None + filename = content_disposition_match.group("filename") + + tmp = tempfile.NamedTemporaryFile(suffix=filename, delete=False) + with open(tmp.name, "wb") as f: + f.write(response.readAll()) + + self.readLocalFile(QUrl.fromLocalFile(tmp.name), add_to_recent_files=False) + + def on_error(): + Logger.log("w", "Could not download file from {0}".format(model_url.url())) return - content_disposition = response.headers.get('Content-Disposition') - if content_disposition is None: - Logger.log("w", - "Could not find Content-Disposition header in response from {0}".format(model_url.url())) - # Use the last part of the url as the filename, and assume it is an STL file - filename = model_url.path().split("/")[-1] + ".stl" - else: - # content_disposition is in the following format - # ``` - # content_disposition attachment; "filename=[FILENAME]" - # ``` - # Use a regex to extract the filename - # content_disposition = response.headers.get('Content-Disposition') - content_disposition_match = re.match(r'attachment; filename="(?P.*)"', - content_disposition) - assert content_disposition_match is not None - filename = content_disposition_match.group("filename") - - tmp = tempfile.NamedTemporaryFile(suffix=filename, delete=False) - with open(tmp.name, "wb") as f: - f.write(response.content) - self.readLocalFile(QUrl.fromLocalFile(tmp.name), add_to_recent_files=False) + self.getHttpRequestManager().get( + model_url.url(), + callback=on_finish, + error_callback=on_error, + ) case path: Logger.log("w", "Unsupported url scheme path: {0}".format(path)) From b847cf626bed6827aeaa3064bed8fb26a1f59549 Mon Sep 17 00:00:00 2001 From: jellespijker Date: Fri, 1 Dec 2023 11:29:02 +0100 Subject: [PATCH 216/765] Use working CURA-10831 packages Contribute to CURA-10831 --- conandata.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/conandata.yml b/conandata.yml index 9a26235e2cb..aa83523ad9a 100644 --- a/conandata.yml +++ b/conandata.yml @@ -1,9 +1,9 @@ version: "5.7.0-alpha.0" requirements: - - "uranium/(latest)@ultimaker/testing" - - "curaengine/(latest)@ultimaker/testing" - - "cura_binary_data/(latest)@ultimaker/testing" - - "fdm_materials/(latest)@ultimaker/testing" + - "uranium/(latest)@ultimaker/cura_10831" + - "curaengine/(latest)@ultimaker/cura_10831" + - "cura_binary_data/(latest)@ultimaker/cura_10831" + - "fdm_materials/(latest)@ultimaker/cura_10831" - "curaengine_plugin_gradual_flow/0.1.0" - "dulcificum/0.1.0-beta.1" - "pyarcus/5.3.0" @@ -11,8 +11,8 @@ requirements: - "pynest2d/5.3.0" - "curaengine_grpc_definitions/0.1.0" requirements_internal: - - "fdm_materials/(latest)@internal/testing" - - "cura_private_data/(latest)@internal/testing" + - "fdm_materials/(latest)@internal/cura_10831" + - "cura_private_data/(latest)@internal/cura_10831" urls: default: cloud_api_root: "https://api.ultimaker.com" From 4b4b8b351462f7b788816c2ddbf2d75d38ee7de6 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 1 Dec 2023 13:03:40 +0100 Subject: [PATCH 217/765] Update nsi installer CURA-11288 --- packaging/NSIS/Ultimaker-Cura.nsi.jinja | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/packaging/NSIS/Ultimaker-Cura.nsi.jinja b/packaging/NSIS/Ultimaker-Cura.nsi.jinja index 228dba4fe48..c562e5f6542 100644 --- a/packaging/NSIS/Ultimaker-Cura.nsi.jinja +++ b/packaging/NSIS/Ultimaker-Cura.nsi.jinja @@ -197,13 +197,11 @@ Section UrlProtocol WriteRegStr HKCR "cura" "" "URL:cura" WriteRegStr HKCR "cura" "URL Protocol" "" WriteRegStr HKCR "cura\DefaultIcon" "" "$INSTDIR\${MAIN_APP_EXE},1" - WriteRegStr HKCR "cura\shell" "" "open" - WriteRegStr HKCR "cura\shell\open\command" "" '"$INSTDIR\${MAIN_APP_EXE}" "%1"' + WriteRegStr HKCR "cura\shell\open\command" "" '"$INSTDIR\${MAIN_APP_EXE}"' WriteRegStr HKCR "slicer" "" "URL:slicer" WriteRegStr HKCR "slicer" "URL Protocol" "" WriteRegStr HKCR "slicer\DefaultIcon" "" "$INSTDIR\${MAIN_APP_EXE},1" - WriteRegStr HKCR "slicer\shell" "" "open" - WriteRegStr HKCR "slicer\shell\open\command" "" '"$INSTDIR\${MAIN_APP_EXE}" "%1"' + WriteRegStr HKCR "slicer\shell\open\command" "" '"$INSTDIR\${MAIN_APP_EXE}"' SectionEnd \ No newline at end of file From 34aecf20fe4f8f5e1ff4e52e80969d2f4279cb15 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 1 Dec 2023 13:04:49 +0100 Subject: [PATCH 218/765] pin uranium CURA-11288 --- conanfile.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/conanfile.py b/conanfile.py index 48cba847be4..2c756f20c8e 100644 --- a/conanfile.py +++ b/conanfile.py @@ -327,7 +327,7 @@ def requirements(self): self.requires("pysavitar/5.3.0") self.requires("pynest2d/5.3.0") self.requires("curaengine_plugin_gradual_flow/0.1.0") - self.requires("uranium/(latest)@ultimaker/testing") + self.requires("uranium/latest@ultimaker/cura_11288") self.requires("cura_binary_data/(latest)@ultimaker/testing") self.requires("cpython/3.10.4") if self.options.internal: @@ -358,7 +358,7 @@ def generate(self): vr = VirtualRunEnv(self) vr.generate() - self._generate_cura_version(os.path.join(self.source_folder, "cura")) + # self._generate_cura_version(os.path.join(self.source_folder, "cura")) if not self.in_local_cache: # Copy CuraEngine.exe to bindirs of Virtual Python Environment @@ -466,7 +466,7 @@ def deploy(self): ext = ".sh" if self.settings.os != "Windows" else ".ps1" save(self, os.path.join(self._script_dir, f"activate_github_actions_version_env{ext}"), activate_github_actions_version_env) - self._generate_cura_version(os.path.join(self._site_packages, "cura")) + # self._generate_cura_version(os.path.join(self._site_packages, "cura")) entitlements_file = "'{}'".format(Path(self.cpp_info.res_paths[2], "MacOS", "cura.entitlements")) self._generate_pyinstaller_spec(location = self._base_dir, From 19b75b96fb007973bb2fe3f3c0ef0e1e95567903 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 1 Dec 2023 16:13:19 +0100 Subject: [PATCH 219/765] unpin dulcificum CURA-11288 --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index 2c756f20c8e..b58cbb4b7fe 100644 --- a/conanfile.py +++ b/conanfile.py @@ -322,7 +322,7 @@ def requirements(self): self.requires("curaengine_grpc_definitions/0.1.0") self.requires("zlib/1.2.13") self.requires("pyarcus/5.3.0") - self.requires("dulcificum/0.1.0-beta.1") + self.requires("dulcificum/(latest)@ultimaker/testing") self.requires("curaengine/(latest)@ultimaker/testing") self.requires("pysavitar/5.3.0") self.requires("pynest2d/5.3.0") From 4d97e779ed3322bc99c53ab7d0f4b7ad152e5d58 Mon Sep 17 00:00:00 2001 From: jellespijker Date: Fri, 1 Dec 2023 16:18:44 +0100 Subject: [PATCH 220/765] Use process-pull-request workflow Contribute to CURA-10831 --- .github/workflows/process-pull-request.yml | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/.github/workflows/process-pull-request.yml b/.github/workflows/process-pull-request.yml index 7fe3aedc967..f34e26f13ee 100644 --- a/.github/workflows/process-pull-request.yml +++ b/.github/workflows/process-pull-request.yml @@ -1,15 +1,11 @@ name: process-pull-request on: - pull_request_target: - types: [opened, reopened, edited, synchronize, review_requested, ready_for_review, assigned] + pull_request_target: + types: [ opened, reopened, edited, review_requested, ready_for_review, assigned ] +# FIXME: Use `main` instead of `CURA-10831` once merged jobs: - add_label: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions-ecosystem/action-add-labels@v1 - if: ${{ github.event.pull_request.head.repo.full_name != github.repository }} - with: - labels: 'PR: Community Contribution :crown:' \ No newline at end of file + add_label: + uses: ultimaker/cura-workflows/.github/workflows/process-pull-request.yml@CURA-10831 + secrets: inherit \ No newline at end of file From bffbded591d85735ad0110517061e744b2765983 Mon Sep 17 00:00:00 2001 From: jellespijker Date: Fri, 1 Dec 2023 17:42:27 +0100 Subject: [PATCH 221/765] Override spdlog version --- conanfile.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index 48cba847be4..d40b668a6e4 100644 --- a/conanfile.py +++ b/conanfile.py @@ -318,7 +318,8 @@ def validate(self): def requirements(self): self.requires("boost/1.82.0") - self.requires("fmt/9.0.0") + self.requires("spdlog/1.12.0") + self.requires("fmt/10.1.1") self.requires("curaengine_grpc_definitions/0.1.0") self.requires("zlib/1.2.13") self.requires("pyarcus/5.3.0") From b19d5d47d35a8874c8f2aee14f2a2e311c02d742 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 4 Dec 2023 10:22:44 +0100 Subject: [PATCH 222/765] Use dulcificum 0.1.1-beta.0 Contributes to CURA-10831 --- .github/workflows/notify.yml | 54 ------------------------------------ conandata.yml | 2 +- 2 files changed, 1 insertion(+), 55 deletions(-) delete mode 100644 .github/workflows/notify.yml diff --git a/.github/workflows/notify.yml b/.github/workflows/notify.yml deleted file mode 100644 index 370b54c78b0..00000000000 --- a/.github/workflows/notify.yml +++ /dev/null @@ -1,54 +0,0 @@ -name: Get Conan Recipe Version - -on: - workflow_call: - inputs: - success: - required: true - type: boolean - - success_title: - required: true - type: string - - success_body: - required: true - type: string - - failure_title: - required: true - type: string - - failure_body: - required: true - type: string - - -jobs: - slackNotification: - name: Slack Notification - - runs-on: ubuntu-latest - - steps: - - name: Slack notify on-success - if: ${{ inputs.success }} - uses: rtCamp/action-slack-notify@v2 - env: - SLACK_USERNAME: ${{ github.repository }} - SLACK_COLOR: green - SLACK_ICON: https://github.com/Ultimaker/Cura/blob/main/icons/cura-128.png?raw=true - SLACK_TITLE: ${{ inputs.success_title }} - SLACK_MESSAGE: ${{ inputs.success_body }} - SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} - - - name: Slack notify on-failure - if: ${{ !inputs.success }} - uses: rtCamp/action-slack-notify@v2 - env: - SLACK_USERNAME: ${{ github.repository }} - SLACK_COLOR: red - SLACK_ICON: https://github.com/Ultimaker/Cura/blob/main/icons/cura-128.png?raw=true - SLACK_TITLE: ${{ inputs.failure_title }} - SLACK_MESSAGE: ${{ inputs.failure_body }} - SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} diff --git a/conandata.yml b/conandata.yml index aa83523ad9a..d0856481f16 100644 --- a/conandata.yml +++ b/conandata.yml @@ -5,7 +5,7 @@ requirements: - "cura_binary_data/(latest)@ultimaker/cura_10831" - "fdm_materials/(latest)@ultimaker/cura_10831" - "curaengine_plugin_gradual_flow/0.1.0" - - "dulcificum/0.1.0-beta.1" + - "dulcificum/latest@ultimaker/cura_10831" - "pyarcus/5.3.0" - "pysavitar/5.3.0" - "pynest2d/5.3.0" From ba9e122f6add419824e6fc03d55df40766d4e71d Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 4 Dec 2023 11:45:12 +0100 Subject: [PATCH 223/765] unpin dulcificum --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index 53d1c9799d0..03648f66d8b 100644 --- a/conanfile.py +++ b/conanfile.py @@ -324,7 +324,7 @@ def requirements(self): self.requires("curaengine_grpc_definitions/0.1.0") self.requires("zlib/1.2.13") self.requires("pyarcus/5.3.0") - self.requires("dulcificum/0.1.0-beta.1") + self.requires("dulcificum/(latest)@ultimaker/testing") self.requires("curaengine/(latest)@ultimaker/testing") self.requires("pysavitar/5.3.0") self.requires("pynest2d/5.3.0") From 7f1158c36454184fe00be15e5e22df86cb2c2769 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 4 Dec 2023 13:43:30 +0100 Subject: [PATCH 224/765] Use cura-workflow OS installers Contribute to CURA-10831 --- .github/workflows/installers.yml | 92 ++++++----- .github/workflows/linux.yml | 257 ----------------------------- .github/workflows/macos.yml | 270 ------------------------------- .github/workflows/windows.yml | 264 ------------------------------ 4 files changed, 48 insertions(+), 835 deletions(-) delete mode 100644 .github/workflows/linux.yml delete mode 100644 .github/workflows/macos.yml delete mode 100644 .github/workflows/windows.yml diff --git a/.github/workflows/installers.yml b/.github/workflows/installers.yml index 38133ad1dea..b3ea88969c8 100644 --- a/.github/workflows/installers.yml +++ b/.github/workflows/installers.yml @@ -50,45 +50,46 @@ jobs: release_tag: ${{ steps.default.outputs.release_tag }} steps: - - name: Output default values - id: default - shell: python - run: | - import os - import datetime - - if "${{ github.event_name }}" != "schedule": - cura_conan_version = "${{ github.event.inputs.cura_conan_version }}" - else: - now = datetime.datetime.now() - cura_conan_version = "cura/latest@ultimaker/stable" if now.hour == int(os.environ['LATEST_RELEASE_SCHEDULE_HOUR']) else "cura/latest@ultimaker/testing" - - release_tag = f"nightly-{os.environ['LATEST_RELEASE']}" if "/stable" in cura_conan_version else "nightly" - - # Set cura_conan_version environment variable - output_env = os.environ["GITHUB_OUTPUT"] - content = "" - if os.path.exists(output_env): - with open(output_env, "r") as f: - content = f.read() - with open(output_env, "w") as f: - f.write(content) - f.writelines(f"cura_conan_version={cura_conan_version}\n") - f.writelines(f"release_tag={release_tag}\n") - - summary_env = os.environ["GITHUB_STEP_SUMMARY"] - content = "" - if os.path.exists(summary_env): - with open(summary_env, "r") as f: - content = f.read() - - with open(summary_env, "w") as f: - f.write(content) - f.writelines(f"# cura_conan_version = {cura_conan_version}\n") - f.writelines(f"# release_tag = {release_tag}\n") + - name: Output default values + id: default + shell: python + run: | + import os + import datetime + + if "${{ github.event_name }}" != "schedule": + cura_conan_version = "${{ github.event.inputs.cura_conan_version }}" + else: + now = datetime.datetime.now() + cura_conan_version = "cura/latest@ultimaker/stable" if now.hour == int(os.environ['LATEST_RELEASE_SCHEDULE_HOUR']) else "cura/latest@ultimaker/testing" + + release_tag = f"nightly-{os.environ['LATEST_RELEASE']}" if "/stable" in cura_conan_version else "nightly" + + # Set cura_conan_version environment variable + output_env = os.environ["GITHUB_OUTPUT"] + content = "" + if os.path.exists(output_env): + with open(output_env, "r") as f: + content = f.read() + with open(output_env, "w") as f: + f.write(content) + f.writelines(f"cura_conan_version={cura_conan_version}\n") + f.writelines(f"release_tag={release_tag}\n") + + summary_env = os.environ["GITHUB_STEP_SUMMARY"] + content = "" + if os.path.exists(summary_env): + with open(summary_env, "r") as f: + content = f.read() + + with open(summary_env, "w") as f: + f.write(content) + f.writelines(f"# cura_conan_version = {cura_conan_version}\n") + f.writelines(f"# release_tag = {release_tag}\n") + # FIXME: point to `main` once merged windows-installer: - uses: ./.github/workflows/windows.yml + uses: ultimaker/cura-workflows/.github/workflows/cura-installer-windows.yml@CURA-10831 needs: [ default_values ] with: cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} @@ -99,8 +100,9 @@ jobs: operating_system: windows-2022 secrets: inherit + # FIXME: point to `main` once merged linux-installer: - uses: ./.github/workflows/linux.yml + uses: ultimaker/cura-workflows/.github/workflows/cura-installer-linux.yml@CURA-10831 needs: [ default_values ] with: cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} @@ -111,8 +113,9 @@ jobs: operating_system: ubuntu-22.04 secrets: inherit + # FIXME: point to `main` once merged macos-installer: - uses: ./.github/workflows/macos.yml + uses: ultimaker/cura-workflows/.github/workflows/cura-installer-macos.yml@CURA-10831 needs: [ default_values ] with: cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} @@ -123,8 +126,9 @@ jobs: operating_system: self-hosted-X64 secrets: inherit + # FIXME: point to `main` once merged macos-arm-installer: - uses: ./.github/workflows/macos.yml + uses: ultimaker/cura-workflows/.github/workflows/cura-installer-macos.yml@CURA-10831 needs: [ default_values ] with: cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} @@ -142,9 +146,9 @@ jobs: needs: [ default_values, windows-installer, linux-installer, macos-installer, macos-arm-installer ] steps: - name: Checkout - uses: actions/checkout@v3 - - # It's not necessary to download all three, but it does make sure we have at least one if an OS is skipped. + uses: actions/checkout@v4 + with: + fetch-depth: 1 - name: Download the run info uses: actions/download-artifact@v2 @@ -193,7 +197,7 @@ jobs: with: name: ${{ steps.filename.outputs.LINUX }}-AppImage path: installers - + - name: Download linux installer jobs asc artifacts uses: actions/download-artifact@v2 with: diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml deleted file mode 100644 index 8b6d892fa06..00000000000 --- a/.github/workflows/linux.yml +++ /dev/null @@ -1,257 +0,0 @@ -name: Linux Installer -run-name: ${{ inputs.cura_conan_version }} for Linux-${{ inputs.architecture }} by @${{ github.actor }} - -on: - workflow_dispatch: - inputs: - cura_conan_version: - description: 'Cura Conan Version' - default: 'cura/latest@ultimaker/testing' - required: true - type: string - conan_args: - description: 'Conan args: eq.: --require-override' - default: '' - required: false - type: string - enterprise: - description: 'Build Cura as an Enterprise edition' - default: false - required: true - type: boolean - staging: - description: 'Use staging API' - default: false - required: true - type: boolean - architecture: - description: 'Architecture' - required: true - default: 'X64' - type: choice - options: - - X64 - operating_system: - description: 'OS' - required: true - default: 'ubuntu-22.04' - type: choice - options: - - ubuntu-22.04 - - workflow_call: - inputs: - cura_conan_version: - description: 'Cura Conan Version' - default: 'cura/latest@ultimaker/testing' - required: true - type: string - conan_args: - description: 'Conan args: eq.: --require-override' - default: '' - required: false - type: string - enterprise: - description: 'Build Cura as an Enterprise edition' - default: false - required: true - type: boolean - staging: - description: 'Use staging API' - default: false - required: true - type: boolean - architecture: - description: 'Architecture' - required: true - default: 'X64' - type: string - operating_system: - description: 'OS' - required: true - default: 'ubuntu-22.04' - type: string - -env: - CONAN_LOGIN_USERNAME_CURA: ${{ secrets.CONAN_USER }} - CONAN_PASSWORD_CURA: ${{ secrets.CONAN_PASS }} - GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} - CURA_CONAN_VERSION: ${{ inputs.cura_conan_version }} - ENTERPRISE: ${{ inputs.enterprise }} - STAGING: ${{ inputs.staging }} - -jobs: - cura-installer-create: - runs-on: ${{ inputs.operating_system }} - - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Setup Python and pip - uses: actions/setup-python@v4 - with: - python-version: '3.10.x' - cache: 'pip' - cache-dependency-path: .github/workflows/requirements-conan-package.txt - - - name: Install Python requirements for runner - run: pip install -r .github/workflows/requirements-conan-package.txt - - - name: Cache Conan local repository packages (Bash) - uses: actions/cache@v3 - with: - path: | - $HOME/.conan/data - $HOME/.conan/conan_download_cache - key: conan-${{ runner.os }}-${{ runner.arch }}-installer-cache - - - name: Install Linux system requirements - run: | - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo apt update - sudo apt upgrade - sudo apt install build-essential checkinstall libegl-dev zlib1g-dev libssl-dev ninja-build autoconf libx11-dev libx11-xcb-dev libfontenc-dev libice-dev libsm-dev libxau-dev libxaw7-dev libxcomposite-dev libxcursor-dev libxdamage-dev libxdmcp-dev libxext-dev libxfixes-dev libxi-dev libxinerama-dev libxkbfile-dev libxmu-dev libxmuu-dev libxpm-dev libxrandr-dev libxrender-dev libxres-dev libxss-dev libxt-dev libxtst-dev libxv-dev libxvmc-dev libxxf86vm-dev xtrans-dev libxcb-render0-dev libxcb-render-util0-dev libxcb-xkb-dev libxcb-icccm4-dev libxcb-image0-dev libxcb-keysyms1-dev libxcb-randr0-dev libxcb-shape0-dev libxcb-sync-dev libxcb-xfixes0-dev libxcb-xinerama0-dev xkb-data libxcb-dri3-dev uuid-dev libxcb-util-dev libxkbcommon-x11-dev pkg-config binutils coreutils desktop-file-utils fakeroot fuse libgdk-pixbuf2.0-dev patchelf squashfs-tools strace util-linux zsync libxcb-cursor-dev -y - - # Get the AppImage tool - wget --no-check-certificate --quiet https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage -O $GITHUB_WORKSPACE/appimagetool - chmod +x $GITHUB_WORKSPACE/appimagetool - echo "APPIMAGETOOL_LOCATION=$GITHUB_WORKSPACE/appimagetool" >> $GITHUB_ENV - - # Get the AppImage builder - wget --no-check-certificate --quiet -O $GITHUB_WORKSPACE/appimage-builder-x86_64.AppImage https://github.com/AppImageCrafters/appimage-builder/releases/download/v1.1.0/appimage-builder-1.1.0-x86_64.AppImage - chmod +x appimage-builder-x86_64.AppImage - echo "APPIMAGEBUILDER_LOCATION=$GITHUB_WORKSPACE/appimage-builder-x86_64.AppImage" >> $GITHUB_ENV - - # Make sure these tools can be found on the path - echo "$GITHUB_WORKSPACE" >> $GITHUB_PATH - - - name: Install GCC-13 - run: | - sudo apt install g++-13 gcc-13 -y - sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 13 - sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-13 13 - - - name: Create the default Conan profile - run: conan profile new default --detect --force - - - name: Configure GPG Key Linux (Bash) - run: echo -n "$GPG_PRIVATE_KEY" | base64 --decode | gpg --import - - - name: Get Conan configuration - run: | - conan config install https://github.com/Ultimaker/conan-config.git - conan config install https://github.com/Ultimaker/conan-config.git -a "-b runner/${{ runner.os }}/${{ runner.arch }}" - - - name: Use Conan download cache (Bash) - run: conan config set storage.download_cache="$HOME/.conan/conan_download_cache" - - - name: Create the Packages (Bash) - run: conan install $CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$ENTERPRISE -o cura:staging=$STAGING -c tools.build:skip_test=True - - - name: Remove internal packages before uploading - run: | - conan remove "*@internal/*" -f || true - conan remove "cura_private_data*" -f || true - - - name: Upload the Package(s) - if: always() - run: | - conan upload "*" -r cura --all -c - - - name: Set Environment variables for Cura (bash) - run: | - . ./cura_inst/bin/activate_github_actions_env.sh - . ./cura_inst/bin/activate_github_actions_version_env.sh - - - name: Create the Cura dist - run: pyinstaller ./cura_inst/UltiMaker-Cura.spec - - - name: Output the name file name and extension - id: filename - shell: python - run: | - import os - enterprise = "-Enterprise" if "${{ inputs.enterprise }}" == "true" else "" - installer_filename = f"UltiMaker-Cura-{os.getenv('CURA_VERSION_FULL')}{enterprise}-linux-${{ inputs.architecture }}" - output_env = os.environ["GITHUB_OUTPUT"] - content = "" - if os.path.exists(output_env): - with open(output_env, "r") as f: - content = f.read() - with open(output_env, "w") as f: - f.write(content) - f.writelines(f"INSTALLER_FILENAME={installer_filename}\n") - - - name: Summarize the used dependencies - shell: python - run: | - import os - - from cura.CuraVersion import ConanInstalls, PythonInstalls - - summary_env = os.environ["GITHUB_STEP_SUMMARY"] - content = "" - if os.path.exists(summary_env): - with open(summary_env, "r") as f: - content = f.read() - - with open(summary_env, "w") as f: - f.write(content) - f.writelines("# ${{ steps.filename.outputs.INSTALLER_FILENAME }}\n") - f.writelines("## Conan packages:\n") - for dep_name, dep_info in ConanInstalls.items(): - f.writelines(f"`{dep_name} {dep_info['version']} {dep_info['revision']}`\n") - - f.writelines("## Python modules:\n") - for dep_name, dep_info in PythonInstalls.items(): - f.writelines(f"`{dep_name} {dep_info['version']}`\n") - - - name: Create the Linux AppImage (Bash) - run: | - python ../cura_inst/packaging/AppImage-builder/create_appimage.py ./UltiMaker-Cura $CURA_VERSION_FULL "${{ steps.filename.outputs.INSTALLER_FILENAME }}.AppImage" - chmod +x "${{ steps.filename.outputs.INSTALLER_FILENAME }}.AppImage" - working-directory: dist - - - name: Upload the AppImage - uses: actions/upload-artifact@v3 - with: - name: ${{ steps.filename.outputs.INSTALLER_FILENAME }}-AppImage - path: | - dist/${{ steps.filename.outputs.INSTALLER_FILENAME }}.AppImage - retention-days: 5 - - - name: Upload the asc - uses: actions/upload-artifact@v3 - with: - name: ${{ steps.filename.outputs.INSTALLER_FILENAME }}-asc - path: | - dist/${{ steps.filename.outputs.INSTALLER_FILENAME }}.AppImage.asc - retention-days: 5 - - - name: Write the run info - shell: python - run: | - import os - with open("run_info.sh", "w") as f: - f.writelines(f'echo "CURA_VERSION_FULL={os.environ["CURA_VERSION_FULL"]}" >> $GITHUB_ENV\n') - - name: Upload the run info - uses: actions/upload-artifact@v3 - with: - name: linux-run-info - path: | - run_info.sh - retention-days: 5 - - notify-export: - if: ${{ always() }} - needs: [ cura-installer-create ] - - uses: ultimaker/cura/.github/workflows/notify.yml@main - with: - success: ${{ contains(join(needs.*.result, ','), 'success') }} - success_title: "Create the Cura distributions" - success_body: "Installers for ${{ inputs.cura_conan_version }}" - failure_title: "Failed to create the Cura distributions" - failure_body: "Failed to create at least 1 installer for ${{ inputs.cura_conan_version }}" - secrets: inherit diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml deleted file mode 100644 index c7c34d9d517..00000000000 --- a/.github/workflows/macos.yml +++ /dev/null @@ -1,270 +0,0 @@ -name: Macos Installer -run-name: ${{ inputs.cura_conan_version }} for Macos-${{ inputs.architecture }} by @${{ github.actor }} - -on: - workflow_dispatch: - inputs: - cura_conan_version: - description: 'Cura Conan Version' - default: 'cura/latest@ultimaker/testing' - required: true - type: string - conan_args: - description: 'Conan args: eq.: --require-override' - default: '' - required: false - type: string - enterprise: - description: 'Build Cura as an Enterprise edition' - default: false - required: true - type: boolean - staging: - description: 'Use staging API' - default: false - required: true - type: boolean - architecture: - description: 'Architecture' - required: true - default: 'ARM64' - type: choice - options: - - X64 - - ARM64 - operating_system: - description: 'OS' - required: true - default: 'self-hosted-ARM64' - type: choice - options: - - self-hosted-X64 - - self-hosted-ARM64 - - macos-11 - - macos-12 - workflow_call: - inputs: - cura_conan_version: - description: 'Cura Conan Version' - default: 'cura/latest@ultimaker/testing' - required: true - type: string - conan_args: - description: 'Conan args: eq.: --require-override' - default: '' - required: false - type: string - enterprise: - description: 'Build Cura as an Enterprise edition' - default: false - required: true - type: boolean - staging: - description: 'Use staging API' - default: false - required: true - type: boolean - architecture: - description: 'Architecture' - required: true - default: 'ARM64' - type: string - operating_system: - description: 'OS' - required: true - default: 'self-hosted-ARM64' - type: string - -env: - CONAN_LOGIN_USERNAME_CURA: ${{ secrets.CONAN_USER }} - CONAN_PASSWORD_CURA: ${{ secrets.CONAN_PASS }} - CODESIGN_IDENTITY: ${{ secrets.CODESIGN_IDENTITY }} - MAC_NOTARIZE_USER: ${{ secrets.MAC_NOTARIZE_USER }} - MAC_NOTARIZE_PASS: ${{ secrets.MAC_NOTARIZE_PASS }} - MACOS_CERT_P12: ${{ secrets.MACOS_CERT_P12 }} - MACOS_CERT_INSTALLER_P12: ${{ secrets.MACOS_CERT_INSTALLER_P12 }} - MACOS_CERT_USER: ${{ secrets.MACOS_CERT_USER }} - MACOS_CERT_PASSPHRASE: ${{ secrets.MACOS_CERT_PASSPHRASE }} - CURA_CONAN_VERSION: ${{ inputs.cura_conan_version }} - ENTERPRISE: ${{ inputs.enterprise }} - STAGING: ${{ inputs.staging }} - -jobs: - cura-installer-create: - runs-on: ${{ inputs.operating_system }} - - outputs: - INSTALLER_FILENAME: ${{ steps.filename.outputs.INSTALLER_FILENAME }} - - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Setup Python and pip - uses: actions/setup-python@v4 - with: - python-version: '3.11.x' - cache: 'pip' - cache-dependency-path: .github/workflows/requirements-conan-package.txt - - - name: Install Python requirements for runner - run: pip install -r .github/workflows/requirements-conan-package.txt - - - name: Cache Conan local repository packages (Bash) - uses: actions/cache@v3 - with: - path: | - $HOME/.conan/data - $HOME/.conan/conan_download_cache - key: conan-${{ runner.os }}-${{ runner.arch }}-installer-cache - - - name: Install MacOS system requirements - run: brew install cmake autoconf automake ninja create-dmg - - - name: Create the default Conan profile - run: conan profile new default --detect --force - - - name: Remove Macos keychain (Bash) - run: security delete-keychain signing_temp.keychain || true - - - name: Configure Macos keychain Developer Cert(Bash) - id: macos-keychain-developer-cert - uses: apple-actions/import-codesign-certs@v1 - with: - keychain-password: ${{ secrets.MACOS_KEYCHAIN_PASSWORD }} - p12-file-base64: ${{ secrets.MACOS_CERT_P12 }} - p12-password: ${{ secrets.MACOS_CERT_PASSPHRASE }} - - - name: Configure Macos keychain Installer Cert (Bash) - id: macos-keychain-installer-cert - uses: apple-actions/import-codesign-certs@v1 - with: - keychain-password: ${{ secrets.MACOS_KEYCHAIN_PASSWORD }} - create-keychain: false # keychain is created in previous use of action. - p12-file-base64: ${{ secrets.MACOS_CERT_INSTALLER_P12 }} - p12-password: ${{ secrets.MACOS_CERT_PASSPHRASE }} - - - name: Remove private Artifactory - run: conan remote remove cura-private-conan-dev || true - - - name: Get Conan configuration - run: | - conan config install https://github.com/Ultimaker/conan-config.git - conan config install https://github.com/Ultimaker/conan-config.git -a "-b runner/${{ runner.os }}/${{ runner.arch }}" - - - name: Use Conan download cache (Bash) - run: conan config set storage.download_cache="$HOME/.conan/conan_download_cache" - - - name: Create the Packages (Bash) - run: conan install $CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$ENTERPRISE -o cura:staging=$STAGING -c tools.build:skip_test=True - - - name: Remove internal packages before uploading - run: | - conan remove "*@internal/*" -f || true - conan remove "cura_private_data*" -f || true - - - name: Upload the Package(s) - run: | - conan upload "*" -r cura --all -c - - - name: Set Environment variables for Cura (bash) - run: | - . ./cura_inst/bin/activate_github_actions_env.sh - . ./cura_inst/bin/activate_github_actions_version_env.sh - - - name: Unlock Macos keychain (Bash) - run: security unlock -p $TEMP_KEYCHAIN_PASSWORD signing_temp.keychain - env: - TEMP_KEYCHAIN_PASSWORD: ${{ steps.macos-keychain-developer-cert.outputs.keychain-password }} - - - name: Create the Cura dist - run: pyinstaller ./cura_inst/UltiMaker-Cura.spec - - - name: Output the name file name and extension - id: filename - shell: python - run: | - import os - enterprise = "-Enterprise" if "${{ inputs.enterprise }}" == "true" else "" - installer_filename = f"UltiMaker-Cura-{os.getenv('CURA_VERSION_FULL')}{enterprise}-macos-${{ inputs.architecture }}" - output_env = os.environ["GITHUB_OUTPUT"] - content = "" - if os.path.exists(output_env): - with open(output_env, "r") as f: - content = f.read() - with open(output_env, "w") as f: - f.write(content) - f.writelines(f"INSTALLER_FILENAME={installer_filename}\n") - - - name: Summarize the used dependencies - shell: python - run: | - import os - - from cura.CuraVersion import ConanInstalls, PythonInstalls - - summary_env = os.environ["GITHUB_STEP_SUMMARY"] - content = "" - if os.path.exists(summary_env): - with open(summary_env, "r") as f: - content = f.read() - - with open(summary_env, "w") as f: - f.write(content) - f.writelines("# ${{ steps.filename.outputs.INSTALLER_FILENAME }}\n") - f.writelines("## Conan packages:\n") - for dep_name, dep_info in ConanInstalls.items(): - f.writelines(f"`{dep_name} {dep_info['version']} {dep_info['revision']}`\n") - - f.writelines("## Python modules:\n") - for dep_name, dep_info in PythonInstalls.items(): - f.writelines(f"`{dep_name} {dep_info['version']}`\n") - - - name: Create the Macos dmg (Bash) - run: python ../cura_inst/packaging/MacOS/build_macos.py --source_path ../cura_inst --dist_path . --cura_conan_version $CURA_CONAN_VERSION --filename "${{ steps.filename.outputs.INSTALLER_FILENAME }}" --build_dmg --build_pkg --app_name "$CURA_APP_NAME" - working-directory: dist - - - name: Upload the dmg - uses: actions/upload-artifact@v3 - with: - name: ${{ steps.filename.outputs.INSTALLER_FILENAME }}-dmg - path: | - dist/${{ steps.filename.outputs.INSTALLER_FILENAME }}.dmg - retention-days: 5 - - - name: Upload the pkg - uses: actions/upload-artifact@v3 - with: - name: ${{ steps.filename.outputs.INSTALLER_FILENAME }}-pkg - path: | - dist/${{ steps.filename.outputs.INSTALLER_FILENAME }}.pkg - retention-days: 5 - - - name: Write the run info - shell: python - run: | - import os - with open("run_info.sh", "w") as f: - f.writelines(f'echo "CURA_VERSION_FULL={os.environ["CURA_VERSION_FULL"]}" >> $GITHUB_ENV\n') - - - name: Upload the run info - uses: actions/upload-artifact@v3 - with: - name: macos-run-info - path: | - run_info.sh - retention-days: 5 - - - notify-export: - if: ${{ always() }} - needs: [ cura-installer-create ] - - uses: ultimaker/cura/.github/workflows/notify.yml@main - with: - success: ${{ contains(join(needs.*.result, ','), 'success') }} - success_title: "Create the Cura distributions" - success_body: "Installers for ${{ inputs.cura_conan_version }}" - failure_title: "Failed to create the Cura distributions" - failure_body: "Failed to create at least 1 installer for ${{ inputs.cura_conan_version }}" - secrets: inherit diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml deleted file mode 100644 index dfffc4540bd..00000000000 --- a/.github/workflows/windows.yml +++ /dev/null @@ -1,264 +0,0 @@ -name: Windows Installer -run-name: ${{ inputs.cura_conan_version }} for Windows-${{ inputs.architecture }} by @${{ github.actor }} - -on: - workflow_dispatch: - inputs: - cura_conan_version: - description: 'Cura Conan Version' - default: 'cura/latest@ultimaker/testing' - required: true - type: string - conan_args: - description: 'Conan args: eq.: --require-override' - default: '' - required: false - type: string - enterprise: - description: 'Build Cura as an Enterprise edition' - default: false - required: true - type: boolean - staging: - description: 'Use staging API' - default: false - required: true - type: boolean - architecture: - description: 'Architecture' - required: true - default: 'X64' - type: choice - options: - - X64 - operating_system: - description: 'OS' - required: true - default: 'windows-2022' - type: choice - options: - - windows-2022 - workflow_call: - inputs: - cura_conan_version: - description: 'Cura Conan Version' - default: 'cura/latest@ultimaker/testing' - required: true - type: string - conan_args: - description: 'Conan args: eq.: --require-override' - default: '' - required: false - type: string - enterprise: - description: 'Build Cura as an Enterprise edition' - default: false - required: true - type: boolean - staging: - description: 'Use staging API' - default: false - required: true - type: boolean - architecture: - description: 'Architecture' - required: true - default: 'X64' - type: string - operating_system: - description: 'OS' - required: true - default: 'windows-2022' - type: string - -env: - CONAN_LOGIN_USERNAME_CURA: ${{ secrets.CONAN_USER }} - CONAN_PASSWORD_CURA: ${{ secrets.CONAN_PASS }} - WIN_CERT_INSTALLER_CER: ${{ secrets.WIN_CERT_INSTALLER_CER }} - WIN_CERT_INSTALLER_CER_PASS: ${{ secrets.WIN_CERT_INSTALLER_CER_PASS }} - CURA_CONAN_VERSION: ${{ inputs.cura_conan_version }} - ENTERPRISE: ${{ inputs.enterprise }} - STAGING: ${{ inputs.staging }} - -jobs: - cura-installer-create: - runs-on: ${{ inputs.operating_system }} - - outputs: - INSTALLER_FILENAME: ${{ steps.filename.outputs.INSTALLER_FILENAME }} - - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Setup Python and pip - uses: actions/setup-python@v4 - with: - python-version: '3.10.x' - cache: 'pip' - cache-dependency-path: .github/workflows/requirements-conan-package.txt - - - name: Install Python requirements for runner - run: pip install -r .github/workflows/requirements-conan-package.txt - - - name: Cache Conan local repository packages (Powershell) - uses: actions/cache@v3 - with: - path: | - C:\Users\runneradmin\.conan\data - C:\.conan - C:\Users\runneradmin\.conan\conan_download_cache - key: conan-${{ runner.os }}-${{ runner.arch }}-installer-cache - - - name: Create the default Conan profile - run: conan profile new default --detect --force - - - name: Get Conan configuration - run: | - conan config install https://github.com/Ultimaker/conan-config.git - conan config install https://github.com/Ultimaker/conan-config.git -a "-b runner/${{ runner.os }}/${{ runner.arch }}" - - - name: Use Conan download cache (Powershell) - run: conan config set storage.download_cache="C:\Users\runneradmin\.conan\conan_download_cache" - - - name: Create the Packages (Powershell) - run: conan install $Env:CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$Env:ENTERPRISE -o cura:staging=$Env:STAGING -c tools.build:skip_test=True - - - name: Remove internal packages before uploading - run: | - conan remove "*@internal/*" -f || true - conan remove "cura_private_data*" -f || true - - - name: Upload the Package(s) - if: always() - run: | - conan upload "*" -r cura --all -c - - - name: Set Environment variables for Cura (Powershell) - run: | - echo "${Env:WIX}\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append - .\cura_inst\Scripts\activate_github_actions_env.ps1 - .\cura_inst\Scripts\activate_github_actions_version_env.ps1 - - - name: Create the Cura dist - run: pyinstaller ./cura_inst/UltiMaker-Cura.spec - - - name: Output the name file name and extension - id: filename - shell: python - run: | - import os - enterprise = "-Enterprise" if "${{ inputs.enterprise }}" == "true" else "" - installer_filename = f"UltiMaker-Cura-{os.getenv('CURA_VERSION_FULL')}{enterprise}-win64-${{ inputs.architecture }}" - output_env = os.environ["GITHUB_OUTPUT"] - content = "" - if os.path.exists(output_env): - with open(output_env, "r") as f: - content = f.read() - with open(output_env, "w") as f: - f.write(content) - f.writelines(f"INSTALLER_FILENAME={installer_filename}\n") - - - name: Summarize the used dependencies - shell: python - run: | - import os - - from cura.CuraVersion import ConanInstalls, PythonInstalls - - summary_env = os.environ["GITHUB_STEP_SUMMARY"] - content = "" - if os.path.exists(summary_env): - with open(summary_env, "r") as f: - content = f.read() - - with open(summary_env, "w") as f: - f.write(content) - f.writelines("# ${{ steps.filename.outputs.INSTALLER_FILENAME }}\n") - f.writelines("## Conan packages:\n") - for dep_name, dep_info in ConanInstalls.items(): - f.writelines(f"`{dep_name} {dep_info['version']} {dep_info['revision']}`\n") - - f.writelines("## Python modules:\n") - for dep_name, dep_info in PythonInstalls.items(): - f.writelines(f"`{dep_name} {dep_info['version']}`\n") - - - name: Create PFX certificate from BASE64_PFX_CONTENT secret - id: create-pfx - env: - PFX_CONTENT: ${{ secrets.WIN_CERT_INSTALLER_CER }} - run: | - $pfxPath = Join-Path -Path $env:RUNNER_TEMP -ChildPath "cert.pfx"; - $encodedBytes = [System.Convert]::FromBase64String($env:PFX_CONTENT); - Set-Content $pfxPath -Value $encodedBytes -AsByteStream; - echo "PFX_PATH=$pfxPath" >> $env:GITHUB_OUTPUT; - - - name: Create the Windows msi installer (Powershell) - run: | - python ..\cura_inst\packaging\msi\create_windows_msi.py ..\cura_inst .\UltiMaker-Cura "${{steps.filename.outputs.INSTALLER_FILENAME }}.msi" "$Env:CURA_APP_NAME" - working-directory: dist - - - name: Sign the Windows msi installer (Powershell) - env: - PFX_PATH: ${{ steps.create-pfx.outputs.PFX_PATH }} - run: | - & "C:/Program Files (x86)/Windows Kits/10/bin/10.0.17763.0/x86/signtool.exe" sign /f $Env:PFX_PATH /p "$Env:WIN_CERT_INSTALLER_CER_PASS" /fd SHA256 /t http://timestamp.digicert.com "${{steps.filename.outputs.INSTALLER_FILENAME }}.msi" - working-directory: dist - - - name: Create the Windows exe installer (Powershell) - run: | - python ..\cura_inst\packaging\NSIS\create_windows_installer.py ../cura_inst . "${{steps.filename.outputs.INSTALLER_FILENAME }}.exe" - working-directory: dist - - - name: Sign the Windows exe installer (Powershell) - env: - PFX_PATH: ${{ steps.create-pfx.outputs.PFX_PATH }} - run: | - & "C:/Program Files (x86)/Windows Kits/10/bin/10.0.17763.0/x86/signtool.exe" sign /f $Env:PFX_PATH /p "$Env:WIN_CERT_INSTALLER_CER_PASS" /fd SHA256 /t http://timestamp.digicert.com "${{steps.filename.outputs.INSTALLER_FILENAME }}.exe" - working-directory: dist - - - name: Upload the msi - uses: actions/upload-artifact@v3 - with: - name: ${{steps.filename.outputs.INSTALLER_FILENAME }}-msi - path: | - dist/${{steps.filename.outputs.INSTALLER_FILENAME }}.msi - retention-days: 5 - - - name: Upload the exe - uses: actions/upload-artifact@v3 - with: - name: ${{steps.filename.outputs.INSTALLER_FILENAME }}-exe - path: | - dist/${{steps.filename.outputs.INSTALLER_FILENAME }}.exe - retention-days: 5 - - # NOTE: The extension is .sh, since this isn't going to build-environment, so not on the Win build image. - - name: Write the run info - shell: python - run: | - import os - with open("run_info.sh", "w") as f: - f.writelines(f'echo "CURA_VERSION_FULL={os.environ["CURA_VERSION_FULL"]}" >> $GITHUB_ENV\n') - - # NOTE: The extension is .sh, since this isn't going to build-environment, so not on the Win build image. - - name: Upload the run info - uses: actions/upload-artifact@v3 - with: - name: windows-run-info - path: | - run_info.sh - retention-days: 5 - - notify-export: - if: ${{ always() }} - needs: [ cura-installer-create ] - - uses: ultimaker/cura/.github/workflows/notify.yml@main - with: - success: ${{ contains(join(needs.*.result, ','), 'success') }} - success_title: "Create the Cura distributions" - success_body: "Installers for ${{ inputs.cura_conan_version }}" - failure_title: "Failed to create the Cura distributions" - failure_body: "Failed to create at least 1 installer for ${{ inputs.cura_conan_version }}" - secrets: inherit From 89be765841bf453d6ee02ef8490a29dd02995072 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 4 Dec 2023 13:48:05 +0100 Subject: [PATCH 225/765] Revert "unpin dulcificum" This reverts commit ba9e122f6add419824e6fc03d55df40766d4e71d. --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index 03648f66d8b..53d1c9799d0 100644 --- a/conanfile.py +++ b/conanfile.py @@ -324,7 +324,7 @@ def requirements(self): self.requires("curaengine_grpc_definitions/0.1.0") self.requires("zlib/1.2.13") self.requires("pyarcus/5.3.0") - self.requires("dulcificum/(latest)@ultimaker/testing") + self.requires("dulcificum/0.1.0-beta.1") self.requires("curaengine/(latest)@ultimaker/testing") self.requires("pysavitar/5.3.0") self.requires("pynest2d/5.3.0") From 58c174ff6884b2054f3f19faa1602dfd48c35694 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 4 Dec 2023 13:49:02 +0100 Subject: [PATCH 226/765] pin dulcificum to `0.1.0-beta.2` --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index 53d1c9799d0..4a5201edb7c 100644 --- a/conanfile.py +++ b/conanfile.py @@ -324,7 +324,7 @@ def requirements(self): self.requires("curaengine_grpc_definitions/0.1.0") self.requires("zlib/1.2.13") self.requires("pyarcus/5.3.0") - self.requires("dulcificum/0.1.0-beta.1") + self.requires("dulcificum/0.1.0-beta.2") self.requires("curaengine/(latest)@ultimaker/testing") self.requires("pysavitar/5.3.0") self.requires("pynest2d/5.3.0") From 2d3ef87a472bf60252f3a214a0ed862badf99f31 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 4 Dec 2023 13:54:08 +0100 Subject: [PATCH 227/765] Use the latest `stable` dulcificum build Contribute to CURA-10831 --- conandata.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conandata.yml b/conandata.yml index d0856481f16..52f15cb3f3a 100644 --- a/conandata.yml +++ b/conandata.yml @@ -5,7 +5,7 @@ requirements: - "cura_binary_data/(latest)@ultimaker/cura_10831" - "fdm_materials/(latest)@ultimaker/cura_10831" - "curaengine_plugin_gradual_flow/0.1.0" - - "dulcificum/latest@ultimaker/cura_10831" + - "dulcificum/latest@ultimaker/stable" - "pyarcus/5.3.0" - "pysavitar/5.3.0" - "pynest2d/5.3.0" From 7a4d26452adc81f74f7fc2d6c6700d4c69a1a466 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 4 Dec 2023 14:00:42 +0100 Subject: [PATCH 228/765] Fix testing against literal instead of value Contribute to CURA-10831 --- cura/PrinterOutput/Models/MaterialOutputModel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/PrinterOutput/Models/MaterialOutputModel.py b/cura/PrinterOutput/Models/MaterialOutputModel.py index 6920cead1bc..dedcc2136ba 100644 --- a/cura/PrinterOutput/Models/MaterialOutputModel.py +++ b/cura/PrinterOutput/Models/MaterialOutputModel.py @@ -43,7 +43,7 @@ def getMaterialFromDefinition(guid, type, brand, name): } - if guid is None and brand is not "empty" and type in _MATERIAL_MAP: + if guid is None and brand != "empty" and type in _MATERIAL_MAP: name = _MATERIAL_MAP[type]["name"] guid = _MATERIAL_MAP[type]["guid"] return name, guid From e904123b8095376d31138b0c095909773a4e7d43 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 4 Dec 2023 14:41:46 +0100 Subject: [PATCH 229/765] Use Uranium CURA-11137 Contribute to CURA-11137 --- .github/workflows/conan-recipe-export.yml | 110 ---------------------- conandata.yml | 2 +- 2 files changed, 1 insertion(+), 111 deletions(-) delete mode 100644 .github/workflows/conan-recipe-export.yml diff --git a/.github/workflows/conan-recipe-export.yml b/.github/workflows/conan-recipe-export.yml deleted file mode 100644 index 69c4e4d34a4..00000000000 --- a/.github/workflows/conan-recipe-export.yml +++ /dev/null @@ -1,110 +0,0 @@ -name: Export Conan Recipe to server - -on: - workflow_call: - inputs: - recipe_id_full: - required: true - type: string - - recipe_id_latest: - required: false - type: string - - runs_on: - required: true - type: string - - python_version: - required: true - type: string - - conan_config_branch: - required: false - type: string - - conan_logging_level: - required: false - type: string - - conan_export_binaries: - required: false - type: boolean - - conan_upload_community: - required: false - default: true - type: boolean - -env: - CONAN_LOGIN_USERNAME: ${{ secrets.CONAN_USER }} - CONAN_PASSWORD: ${{ secrets.CONAN_PASS }} - CONAN_LOG_RUN_TO_OUTPUT: 1 - CONAN_LOGGING_LEVEL: ${{ inputs.conan_logging_level }} - CONAN_NON_INTERACTIVE: 1 - -jobs: - package-export: - runs-on: ${{ inputs.runs_on }} - - steps: - - name: Checkout project - uses: actions/checkout@v3 - - - name: Setup Python and pip - uses: actions/setup-python@v4 - with: - python-version: ${{ inputs.python_version }} - cache: 'pip' - cache-dependency-path: .github/workflows/requirements-conan-package.txt - - - name: Install Python requirements and Create default Conan profile - run: | - pip install -r https://raw.githubusercontent.com/Ultimaker/Cura/main/.github/workflows/requirements-conan-package.txt - conan profile new default --detect - # Note the runner requirements are always installed from the main branch in the Ultimaker/Cura repo - - - name: Cache Conan local repository packages - uses: actions/cache@v3 - with: - path: $HOME/.conan/data - key: ${{ runner.os }}-conan-export-cache - - - name: Get Conan configuration from branch - if: ${{ inputs.conan_config_branch != '' }} - run: conan config install https://github.com/Ultimaker/conan-config.git -a "-b ${{ inputs.conan_config_branch }}" - - - name: Get Conan configuration - run: | - conan config install https://github.com/Ultimaker/conan-config.git - conan config install https://github.com/Ultimaker/conan-config.git -a "-b runner/${{ runner.os }}/${{ runner.arch }}" - - - name: Add Cura private Artifactory remote - run: conan remote add cura-private-conan-dev https://cura.jfrog.io/artifactory/api/conan/cura-private-conan-dev True - - - name: Set GH service account for remote cura-conan-dev - run: conan user -p ${{ secrets.CONAN_GH_RUNNER_PASS }} -r cura-private-conan-dev "${{ secrets.CONAN_GH_RUNNER_USER }}" - - - name: Export the Package (binaries) - if: ${{ inputs.conan_export_binaries }} - run: conan create . ${{ inputs.recipe_id_full }} --build=missing --update -c tools.build:skip_test=True - - - name: Export the Package - if: ${{ !inputs.conan_export_binaries }} - run: conan export . ${{ inputs.recipe_id_full }} - - - name: Create the latest alias - if: always() - run: conan alias ${{ inputs.recipe_id_latest }} ${{ inputs.recipe_id_full }} - - - name: Upload the Package(s) - if: ${{ always() && inputs.conan_upload_community }} - run: | - conan upload ${{ inputs.recipe_id_full }} -r cura --all -c - conan upload ${{ inputs.recipe_id_latest }} -r cura -c - - - name: Upload the Package(s) to the private Artifactory - if: ${{ always() && ! inputs.conan_upload_community }} - run: | - conan upload ${{ inputs.recipe_id_full }} -r cura-private-conan-dev --all -c - conan upload ${{ inputs.recipe_id_latest }} -r cura-private-conan-dev -c diff --git a/conandata.yml b/conandata.yml index 52f15cb3f3a..347602a02e8 100644 --- a/conandata.yml +++ b/conandata.yml @@ -1,6 +1,6 @@ version: "5.7.0-alpha.0" requirements: - - "uranium/(latest)@ultimaker/cura_10831" + - "uranium/(latest)@ultimaker/cura_11137" - "curaengine/(latest)@ultimaker/cura_10831" - "cura_binary_data/(latest)@ultimaker/cura_10831" - "fdm_materials/(latest)@ultimaker/cura_10831" From 20ab319ec07c501a017b6cf6e6d73350d029f638 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 4 Dec 2023 16:31:50 +0100 Subject: [PATCH 230/765] Use default values from cura-workflows Contributes to CURA-10831 --- .github/workflows/installers.yml | 50 ++++---------------------------- 1 file changed, 6 insertions(+), 44 deletions(-) diff --git a/.github/workflows/installers.yml b/.github/workflows/installers.yml index b3ea88969c8..aa1f5a49f01 100644 --- a/.github/workflows/installers.yml +++ b/.github/workflows/installers.yml @@ -39,53 +39,15 @@ env: CONAN_ARGS: ${{ inputs.conan_args || '' }} ENTERPRISE: ${{ inputs.enterprise || false }} STAGING: ${{ inputs.staging || false }} - LATEST_RELEASE: '5.6' - LATEST_RELEASE_SCHEDULE_HOUR: 4 jobs: default_values: - runs-on: ubuntu-latest - outputs: - cura_conan_version: ${{ steps.default.outputs.cura_conan_version }} - release_tag: ${{ steps.default.outputs.release_tag }} - - steps: - - name: Output default values - id: default - shell: python - run: | - import os - import datetime - - if "${{ github.event_name }}" != "schedule": - cura_conan_version = "${{ github.event.inputs.cura_conan_version }}" - else: - now = datetime.datetime.now() - cura_conan_version = "cura/latest@ultimaker/stable" if now.hour == int(os.environ['LATEST_RELEASE_SCHEDULE_HOUR']) else "cura/latest@ultimaker/testing" - - release_tag = f"nightly-{os.environ['LATEST_RELEASE']}" if "/stable" in cura_conan_version else "nightly" - - # Set cura_conan_version environment variable - output_env = os.environ["GITHUB_OUTPUT"] - content = "" - if os.path.exists(output_env): - with open(output_env, "r") as f: - content = f.read() - with open(output_env, "w") as f: - f.write(content) - f.writelines(f"cura_conan_version={cura_conan_version}\n") - f.writelines(f"release_tag={release_tag}\n") - - summary_env = os.environ["GITHUB_STEP_SUMMARY"] - content = "" - if os.path.exists(summary_env): - with open(summary_env, "r") as f: - content = f.read() - - with open(summary_env, "w") as f: - f.write(content) - f.writelines(f"# cura_conan_version = {cura_conan_version}\n") - f.writelines(f"# release_tag = {release_tag}\n") + uses: ultimaker/cura-workflows/.github/workflows/cura-installer-default-value.yml@CURA-10831 + with: + cura_conan_version: ${{ inputs.cura_conan_version }} + latest_release: '5.6' + latest_release_schedule_hour: 4 + latest_release_tag: 'nightly' # FIXME: point to `main` once merged windows-installer: From ce0cdd0b91f8df5a28e9bdf0bebd13c8f850bdb2 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Mon, 4 Dec 2023 17:07:43 +0100 Subject: [PATCH 231/765] =?UTF-8?q?Model=20translations=20while=20changing?= =?UTF-8?q?=20build=20plates=20while=20importing=20models,=20coordinate=20?= =?UTF-8?q?translations=20shouldn=E2=80=99t=20matter=20and=20the=20object?= =?UTF-8?q?=20should=20be=20organized=20on=20the=20plate=20where=20it=20fi?= =?UTF-8?q?nds=20space.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CURA-11166 --- cura/CuraApplication.py | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index c6c44cf8f58..7e2f0fb1cad 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -179,6 +179,7 @@ def __init__(self, *args, **kwargs): self._use_single_instance = False self._single_instance = None + self._project_mode = None self._cura_formula_functions = None # type: Optional[CuraFormulaFunctions] @@ -1845,7 +1846,7 @@ def readLocalFile(self, file: QUrl, project_mode: Optional[str] = None, add_to_r Logger.log("i", "Attempting to read file %s", file.toString()) if not file.isValid(): return - + self._project_mode = project_mode scene = self.getController().getScene() for node in DepthFirstIterator(scene.getRoot()): @@ -1855,16 +1856,16 @@ def readLocalFile(self, file: QUrl, project_mode: Optional[str] = None, add_to_r is_project_file = self.checkIsValidProjectFile(file) - if project_mode is None: - project_mode = self.getPreferences().getValue("cura/choice_on_open_project") + if self._project_mode is None: + self._project_mode = self.getPreferences().getValue("cura/choice_on_open_project") - if is_project_file and project_mode == "open_as_project": + if is_project_file and self._project_mode == "open_as_project": # open as project immediately without presenting a dialog workspace_handler = self.getWorkspaceFileHandler() workspace_handler.readLocalFile(file, add_to_recent_files_hint = add_to_recent_files) return - if is_project_file and project_mode == "always_ask": + if is_project_file and self._project_mode == "always_ask": # present a dialog asking to open as project or import models self.callLater(self.openProjectFile.emit, file, add_to_recent_files) return @@ -1999,8 +2000,11 @@ def _readMeshFinished(self, job): center_y = 0 node.translate(Vector(0, center_y, 0)) - nodes_to_arrange.append(node) + # If file extention is 3mf and models are to be loaded from a cura project, + # models are to be arranged in buildplate. + elif self._project_mode == "open_as_model": + nodes_to_arrange.append(node) # This node is deep copied from some other node which already has a BuildPlateDecorator, but the deepcopy # of BuildPlateDecorator produces one that's associated with build plate -1. So, here we need to check if From 040f85c9560951f35994109d62b89c597604bc23 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 4 Dec 2023 17:36:32 +0100 Subject: [PATCH 232/765] Remove redundant export workflow Contributes to CURA-10831 --- .github/workflows/conan-recipe-export.yml | 110 ---------------------- 1 file changed, 110 deletions(-) delete mode 100644 .github/workflows/conan-recipe-export.yml diff --git a/.github/workflows/conan-recipe-export.yml b/.github/workflows/conan-recipe-export.yml deleted file mode 100644 index 69c4e4d34a4..00000000000 --- a/.github/workflows/conan-recipe-export.yml +++ /dev/null @@ -1,110 +0,0 @@ -name: Export Conan Recipe to server - -on: - workflow_call: - inputs: - recipe_id_full: - required: true - type: string - - recipe_id_latest: - required: false - type: string - - runs_on: - required: true - type: string - - python_version: - required: true - type: string - - conan_config_branch: - required: false - type: string - - conan_logging_level: - required: false - type: string - - conan_export_binaries: - required: false - type: boolean - - conan_upload_community: - required: false - default: true - type: boolean - -env: - CONAN_LOGIN_USERNAME: ${{ secrets.CONAN_USER }} - CONAN_PASSWORD: ${{ secrets.CONAN_PASS }} - CONAN_LOG_RUN_TO_OUTPUT: 1 - CONAN_LOGGING_LEVEL: ${{ inputs.conan_logging_level }} - CONAN_NON_INTERACTIVE: 1 - -jobs: - package-export: - runs-on: ${{ inputs.runs_on }} - - steps: - - name: Checkout project - uses: actions/checkout@v3 - - - name: Setup Python and pip - uses: actions/setup-python@v4 - with: - python-version: ${{ inputs.python_version }} - cache: 'pip' - cache-dependency-path: .github/workflows/requirements-conan-package.txt - - - name: Install Python requirements and Create default Conan profile - run: | - pip install -r https://raw.githubusercontent.com/Ultimaker/Cura/main/.github/workflows/requirements-conan-package.txt - conan profile new default --detect - # Note the runner requirements are always installed from the main branch in the Ultimaker/Cura repo - - - name: Cache Conan local repository packages - uses: actions/cache@v3 - with: - path: $HOME/.conan/data - key: ${{ runner.os }}-conan-export-cache - - - name: Get Conan configuration from branch - if: ${{ inputs.conan_config_branch != '' }} - run: conan config install https://github.com/Ultimaker/conan-config.git -a "-b ${{ inputs.conan_config_branch }}" - - - name: Get Conan configuration - run: | - conan config install https://github.com/Ultimaker/conan-config.git - conan config install https://github.com/Ultimaker/conan-config.git -a "-b runner/${{ runner.os }}/${{ runner.arch }}" - - - name: Add Cura private Artifactory remote - run: conan remote add cura-private-conan-dev https://cura.jfrog.io/artifactory/api/conan/cura-private-conan-dev True - - - name: Set GH service account for remote cura-conan-dev - run: conan user -p ${{ secrets.CONAN_GH_RUNNER_PASS }} -r cura-private-conan-dev "${{ secrets.CONAN_GH_RUNNER_USER }}" - - - name: Export the Package (binaries) - if: ${{ inputs.conan_export_binaries }} - run: conan create . ${{ inputs.recipe_id_full }} --build=missing --update -c tools.build:skip_test=True - - - name: Export the Package - if: ${{ !inputs.conan_export_binaries }} - run: conan export . ${{ inputs.recipe_id_full }} - - - name: Create the latest alias - if: always() - run: conan alias ${{ inputs.recipe_id_latest }} ${{ inputs.recipe_id_full }} - - - name: Upload the Package(s) - if: ${{ always() && inputs.conan_upload_community }} - run: | - conan upload ${{ inputs.recipe_id_full }} -r cura --all -c - conan upload ${{ inputs.recipe_id_latest }} -r cura -c - - - name: Upload the Package(s) to the private Artifactory - if: ${{ always() && ! inputs.conan_upload_community }} - run: | - conan upload ${{ inputs.recipe_id_full }} -r cura-private-conan-dev --all -c - conan upload ${{ inputs.recipe_id_latest }} -r cura-private-conan-dev -c From 9ad993f8ca0a67ae17f59f2d8ea33eccd4eea9c5 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 4 Dec 2023 18:06:20 +0100 Subject: [PATCH 233/765] Reinstate OS specific installer workflows For those that wants to build a OS specific installer Contributes to CURA-10831 --- .github/workflows/linux.yml | 58 +++++++++++++++++++++ .github/workflows/macos.yml | 62 +++++++++++++++++++++++ .github/workflows/requirements-runner.txt | 0 .github/workflows/windows.yml | 58 +++++++++++++++++++++ 4 files changed, 178 insertions(+) create mode 100644 .github/workflows/linux.yml create mode 100644 .github/workflows/macos.yml create mode 100644 .github/workflows/requirements-runner.txt create mode 100644 .github/workflows/windows.yml diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml new file mode 100644 index 00000000000..5e63b13c14a --- /dev/null +++ b/.github/workflows/linux.yml @@ -0,0 +1,58 @@ +name: Linux installers +run-name: ${{ inputs.cura_conan_version }} by @${{ github.actor }} + +on: + workflow_dispatch: + inputs: + cura_conan_version: + description: 'Cura Conan Version' + default: 'cura/latest@ultimaker/testing' + required: true + type: string + conan_args: + description: 'Conan args: eq.: --require-override' + default: '' + required: false + type: string + enterprise: + description: 'Build Cura as an Enterprise edition' + default: false + required: true + type: boolean + staging: + description: 'Use staging API' + default: false + required: true + type: boolean + architecture: + description: 'Architecture' + required: true + default: 'X64' + type: choice + options: + - X64 + operating_system: + description: 'OS' + required: true + default: 'ubuntu-22.04' + type: choice + options: + - ubuntu-22.04 + +env: + CONAN_ARGS: ${{ inputs.conan_args || '' }} + ENTERPRISE: ${{ inputs.enterprise || false }} + STAGING: ${{ inputs.staging || false }} + +jobs: + # FIXME: point to `main` once merged + windows-installer: + uses: ultimaker/cura-workflows/.github/workflows/cura-installer-linux.yml@CURA-10831 + with: + cura_conan_version: ${{ inputs.cura_conan_version }} + conan_args: ${{ inputs.conan_args }} + enterprise: ${{ inputs.enterprise == 'true' }} + staging: ${{ inputs.staging == 'true' }} + architecture: ${{ inputs.architecture }} + operating_system: ${{ inputs.operating_system }} + secrets: inherit \ No newline at end of file diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml new file mode 100644 index 00000000000..42b719f1cac --- /dev/null +++ b/.github/workflows/macos.yml @@ -0,0 +1,62 @@ +name: MacOS installers +run-name: ${{ inputs.cura_conan_version }} by @${{ github.actor }} + +on: + workflow_dispatch: + inputs: + cura_conan_version: + description: 'Cura Conan Version' + default: 'cura/latest@ultimaker/testing' + required: true + type: string + conan_args: + description: 'Conan args: eq.: --require-override' + default: '' + required: false + type: string + enterprise: + description: 'Build Cura as an Enterprise edition' + default: false + required: true + type: boolean + staging: + description: 'Use staging API' + default: false + required: true + type: boolean + architecture: + description: 'Architecture' + required: true + default: 'ARM64' + type: choice + options: + - X64 + - ARM64 + operating_system: + description: 'OS' + required: true + default: 'self-hosted-ARM64' + type: choice + options: + - self-hosted-X64 + - self-hosted-ARM64 + - macos-11 + - macos-12 + +env: + CONAN_ARGS: ${{ inputs.conan_args || '' }} + ENTERPRISE: ${{ inputs.enterprise || false }} + STAGING: ${{ inputs.staging || false }} + +jobs: + # FIXME: point to `main` once merged + windows-installer: + uses: ultimaker/cura-workflows/.github/workflows/cura-installer-macos.yml@CURA-10831 + with: + cura_conan_version: ${{ inputs.cura_conan_version }} + conan_args: ${{ inputs.conan_args }} + enterprise: ${{ inputs.enterprise == 'true' }} + staging: ${{ inputs.staging == 'true' }} + architecture: ${{ inputs.architecture }} + operating_system: ${{ inputs.operating_system }} + secrets: inherit \ No newline at end of file diff --git a/.github/workflows/requirements-runner.txt b/.github/workflows/requirements-runner.txt new file mode 100644 index 00000000000..e69de29bb2d diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml new file mode 100644 index 00000000000..c60aeee51e5 --- /dev/null +++ b/.github/workflows/windows.yml @@ -0,0 +1,58 @@ +name: Windows installers +run-name: ${{ inputs.cura_conan_version }} by @${{ github.actor }} + +on: + workflow_dispatch: + inputs: + cura_conan_version: + description: 'Cura Conan Version' + default: 'cura/latest@ultimaker/testing' + required: true + type: string + conan_args: + description: 'Conan args: eq.: --require-override' + default: '' + required: false + type: string + enterprise: + description: 'Build Cura as an Enterprise edition' + default: false + required: true + type: boolean + staging: + description: 'Use staging API' + default: false + required: true + type: boolean + architecture: + description: 'Architecture' + required: true + default: 'X64' + type: choice + options: + - X64 + operating_system: + description: 'OS' + required: true + default: 'windows-2022' + type: choice + options: + - windows-2022 + +env: + CONAN_ARGS: ${{ inputs.conan_args || '' }} + ENTERPRISE: ${{ inputs.enterprise || false }} + STAGING: ${{ inputs.staging || false }} + +jobs: + # FIXME: point to `main` once merged + windows-installer: + uses: ultimaker/cura-workflows/.github/workflows/cura-installer-windows.yml@CURA-10831 + with: + cura_conan_version: ${{ inputs.cura_conan_version }} + conan_args: ${{ inputs.conan_args }} + enterprise: ${{ inputs.enterprise == 'true' }} + staging: ${{ inputs.staging == 'true' }} + architecture: ${{ inputs.architecture }} + operating_system: ${{ inputs.operating_system }} + secrets: inherit \ No newline at end of file From b678951759ff3c804e5b0bbef6450d1c52574ce3 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 4 Dec 2023 18:15:50 +0100 Subject: [PATCH 234/765] Applied work-around for GH true/false instead of True/False Contributes to CURA-10831 --- conanfile.py | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/conanfile.py b/conanfile.py index de66f1d409a..92d0e326d9b 100644 --- a/conanfile.py +++ b/conanfile.py @@ -34,7 +34,7 @@ class CuraConan(ConanFile): "cloud_api_version": "ANY", "display_name": "ANY", # TODO: should this be an option?? "cura_debug_mode": [True, False], # FIXME: Use profiles - "internal": [True, False], + "internal": ["True", "False", "true", "false"], # Workaround for GH Action passing boolean as lowercase string "enable_i18n": [True, False], } default_options = { @@ -44,7 +44,7 @@ class CuraConan(ConanFile): "cloud_api_version": "1", "display_name": "UltiMaker Cura", "cura_debug_mode": False, # Not yet implemented - "internal": False, + "internal": "False", "enable_i18n": False, } @@ -84,6 +84,10 @@ def _cura_run_env(self): def _enterprise(self): return self.options.enterprise in ["True", 'true'] + @property + def _internal(self): + return self.options.enterprise in ["True", 'true'] + @property def _app_name(self): if self._enterprise: @@ -182,7 +186,7 @@ def _generate_cura_version(self, location): cura_version = Version(self.conf.get("user.cura:version", default = self.version, check_type = str)) pre_tag = f"-{cura_version.pre}" if cura_version.pre else "" build_tag = f"+{cura_version.build}" if cura_version.build else "" - internal_tag = f"+internal" if self.options.internal else "" + internal_tag = f"+internal" if self._internal else "" cura_version = f"{cura_version.major}.{cura_version.minor}.{cura_version.patch}{pre_tag}{build_tag}{internal_tag}" with open(os.path.join(location, "CuraVersion.py"), "w") as f: @@ -206,7 +210,7 @@ def _generate_pyinstaller_spec(self, location, entrypoint_location, icon_path, e pyinstaller_metadata = self.conan_data["pyinstaller"] datas = [] for data in pyinstaller_metadata["datas"].values(): - if not self.options.internal and data.get("internal", False): + if not self._internal and data.get("internal", False): continue if "package" in data: # get the paths from conan package @@ -319,10 +323,10 @@ def validate(self): def requirements(self): for req in self.conan_data["requirements"]: - if self.options.internal and "fdm_materials" in req: + if self._internal and "fdm_materials" in req: continue self.requires(req) - if self.options.internal: + if self._internal: for req in self.conan_data["requirements_internal"]: if "fdm_materials" in req: continue @@ -392,7 +396,7 @@ def generate(self): copy(self, "*", fdm_materials.resdirs[0], self.source_folder) # Copy internal resources - if self.options.internal: + if self._internal: cura_private_data = self.dependencies["cura_private_data"].cpp_info copy(self, "*", cura_private_data.resdirs[0], str(self._share_dir.joinpath("cura"))) From 3c86bf140ceba3e6830b0d483fdba5d17857e852 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Mon, 4 Dec 2023 19:47:07 +0100 Subject: [PATCH 235/765] Add support for OAuth2 client secret --- cura/OAuth2/AuthorizationHelpers.py | 2 ++ cura/OAuth2/Models.py | 1 + 2 files changed, 3 insertions(+) diff --git a/cura/OAuth2/AuthorizationHelpers.py b/cura/OAuth2/AuthorizationHelpers.py index a654ee4bdba..569ba80659b 100644 --- a/cura/OAuth2/AuthorizationHelpers.py +++ b/cura/OAuth2/AuthorizationHelpers.py @@ -40,6 +40,7 @@ def getAccessTokenUsingAuthorizationCode(self, authorization_code: str, verifica """ data = { "client_id": self._settings.CLIENT_ID if self._settings.CLIENT_ID is not None else "", + "client_secret": self._settings.CLIENT_SECRET if self._settings.CLIENT_SECRET is not None else "", "redirect_uri": self._settings.CALLBACK_URL if self._settings.CALLBACK_URL is not None else "", "grant_type": "authorization_code", "code": authorization_code, @@ -64,6 +65,7 @@ def getAccessTokenUsingRefreshToken(self, refresh_token: str, callback: Callable Logger.log("d", "Refreshing the access token for [%s]", self._settings.OAUTH_SERVER_URL) data = { "client_id": self._settings.CLIENT_ID if self._settings.CLIENT_ID is not None else "", + "client_secret": self._settings.CLIENT_SECRET if self._settings.CLIENT_SECRET is not None else "", "redirect_uri": self._settings.CALLBACK_URL if self._settings.CALLBACK_URL is not None else "", "grant_type": "refresh_token", "refresh_token": refresh_token, diff --git a/cura/OAuth2/Models.py b/cura/OAuth2/Models.py index 4c84872a09c..3427f1cc3de 100644 --- a/cura/OAuth2/Models.py +++ b/cura/OAuth2/Models.py @@ -16,6 +16,7 @@ class OAuth2Settings(BaseModel): CALLBACK_PORT = None # type: Optional[int] OAUTH_SERVER_URL = None # type: Optional[str] CLIENT_ID = None # type: Optional[str] + CLIENT_SECRET = None # type: Optional[str] CLIENT_SCOPES = None # type: Optional[str] CALLBACK_URL = None # type: Optional[str] AUTH_DATA_PREFERENCE_KEY = "" # type: str From 260a73e14ceea38f4dd15fe4741240a4e25183fd Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 4 Dec 2023 19:51:11 +0100 Subject: [PATCH 236/765] Use older name for OS specific installer workflows Contributes to CURA-10831 --- .github/workflows/linux.yml | 2 +- .github/workflows/macos.yml | 2 +- .github/workflows/windows.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 5e63b13c14a..535d0877003 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -1,4 +1,4 @@ -name: Linux installers +name: Linux Installer run-name: ${{ inputs.cura_conan_version }} by @${{ github.actor }} on: diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 42b719f1cac..02f45385e7c 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -1,4 +1,4 @@ -name: MacOS installers +name: MacOS Installer run-name: ${{ inputs.cura_conan_version }} by @${{ github.actor }} on: diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index c60aeee51e5..ef7e986ec3c 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -1,4 +1,4 @@ -name: Windows installers +name: Windows Installer run-name: ${{ inputs.cura_conan_version }} by @${{ github.actor }} on: From aac9af577bf6895665eb34dcae4e7fc5967caeff Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Mon, 4 Dec 2023 20:09:36 +0100 Subject: [PATCH 237/765] Fix AuthorizationService signals --- cura/OAuth2/AuthorizationService.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/cura/OAuth2/AuthorizationService.py b/cura/OAuth2/AuthorizationService.py index 62bf31982af..cac9c0df38c 100644 --- a/cura/OAuth2/AuthorizationService.py +++ b/cura/OAuth2/AuthorizationService.py @@ -31,15 +31,15 @@ class AuthorizationService: account information. """ - # Emit signal when authentication is completed. - onAuthStateChanged = Signal() + def __init__(self, settings: "OAuth2Settings", preferences: Optional["Preferences"] = None) -> None: + # Emit signal when authentication is completed. + self.onAuthStateChanged = Signal() - # Emit signal when authentication failed. - onAuthenticationError = Signal() + # Emit signal when authentication failed. + self.onAuthenticationError = Signal() - accessTokenChanged = Signal() + self.accessTokenChanged = Signal() - def __init__(self, settings: "OAuth2Settings", preferences: Optional["Preferences"] = None) -> None: self._settings = settings self._auth_helpers = AuthorizationHelpers(settings) self._auth_url = "{}/authorize".format(self._settings.OAUTH_SERVER_URL) From b794989468653d04c3e0e24044cb8ea61ce29dff Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Mon, 4 Dec 2023 20:58:11 +0100 Subject: [PATCH 238/765] Allow for OAuth service to stop after token has been retrieved --- cura/OAuth2/AuthorizationService.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/cura/OAuth2/AuthorizationService.py b/cura/OAuth2/AuthorizationService.py index cac9c0df38c..06478e911bd 100644 --- a/cura/OAuth2/AuthorizationService.py +++ b/cura/OAuth2/AuthorizationService.py @@ -31,7 +31,10 @@ class AuthorizationService: account information. """ - def __init__(self, settings: "OAuth2Settings", preferences: Optional["Preferences"] = None) -> None: + def __init__(self, + settings: "OAuth2Settings", + preferences: Optional["Preferences"] = None, + get_user_profile: bool = True) -> None: # Emit signal when authentication is completed. self.onAuthStateChanged = Signal() @@ -45,6 +48,7 @@ def __init__(self, settings: "OAuth2Settings", preferences: Optional["Preference self._auth_url = "{}/authorize".format(self._settings.OAUTH_SERVER_URL) self._auth_data: Optional[AuthenticationResponse] = None self._user_profile: Optional["UserProfile"] = None + self._get_user_profile: bool = get_user_profile self._preferences = preferences self._server = LocalAuthorizationServer(self._auth_helpers, self._onAuthStateChanged, daemon=True) self._currently_refreshing_token = False # Whether we are currently in the process of refreshing auth. Don't make new requests while busy. @@ -294,7 +298,8 @@ def _storeAuthData(self, auth_data: Optional[AuthenticationResponse] = None) -> self._auth_data = auth_data self._currently_refreshing_token = False if auth_data: - self.getUserProfile() + if self._get_user_profile: + self.getUserProfile() self._preferences.setValue(self._settings.AUTH_DATA_PREFERENCE_KEY, json.dumps(auth_data.dump())) else: Logger.log("d", "Clearing the user profile") From ad96082a1611bae8528ff4bceee41640d5236888 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 5 Dec 2023 05:03:59 +0100 Subject: [PATCH 239/765] Port unit-test to cura-workflows Contributes to CURA-10831 --- .github/workflows/unit-test.yml | 139 ++++---------------------------- 1 file changed, 16 insertions(+), 123 deletions(-) diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 2f8f5931997..ca585d54b6b 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -1,4 +1,3 @@ ---- name: unit-test on: @@ -9,23 +8,18 @@ on: - 'cura/**' - 'icons/**' - 'tests/**' - - 'packaging/**' - - '.github/workflows/conan-*.yml' - '.github/workflows/unit-test.yml' - - '.github/workflows/notify.yml' - - '.github/workflows/requirements-conan-package.txt' + - '.github/workflows/requirements-runner.txt' - 'requirements*.txt' - 'conanfile.py' - 'conandata.yml' - - 'GitVersion.yml' - '*.jinja' branches: - main - 'CURA-*' - - '[1-9]+.[0-9]+' - tags: - - '[0-9]+.[0-9]+.[0-9]+' - - '[0-9]+.[0-9]+-beta' + - 'PP-*' + - '[0-9]+.[0-9]+' + pull_request: paths: - 'plugins/**' @@ -33,35 +27,23 @@ on: - 'cura/**' - 'icons/**' - 'tests/**' - - 'packaging/**' - - '.github/workflows/conan-*.yml' - '.github/workflows/unit-test.yml' - - '.github/workflows/notify.yml' - - '.github/workflows/requirements-conan-package.txt' + - '.github/workflows/requirements-runner.txt' - 'requirements*.txt' - 'conanfile.py' - 'conandata.yml' - - 'GitVersion.yml' - '*.jinja' branches: - main - - '[1-9]+.[0-9]+' - tags: - - '[0-9]+.[0-9]+.[0-9]+' - - '[0-9]+.[0-9]+-beta' - -env: - CONAN_LOGIN_USERNAME_CURA: ${{ secrets.CONAN_USER }} - CONAN_PASSWORD_CURA: ${{ secrets.CONAN_PASS }} - CONAN_LOGIN_USERNAME_CURA_CE: ${{ secrets.CONAN_USER }} - CONAN_PASSWORD_CURA_CE: ${{ secrets.CONAN_PASS }} - CONAN_LOG_RUN_TO_OUTPUT: 1 - CONAN_LOGGING_LEVEL: info - CONAN_NON_INTERACTIVE: 1 + - '[0-9]+.[0-9]+' permissions: contents: read +env: + CONAN_LOGIN_USERNAME: ${{ secrets.CONAN_USER }} + CONAN_PASSWORD: ${{ secrets.CONAN_PASS }} + jobs: conan-recipe-version: uses: ultimaker/cura-workflows/.github/workflows/conan-recipe-version.yml@CURA-10831 @@ -69,98 +51,9 @@ jobs: project_name: cura testing: - runs-on: ubuntu-22.04 - needs: [ conan-recipe-version ] - - steps: - - name: Checkout - uses: actions/checkout@v3 - with: - fetch-depth: 2 - - - name: Setup Python and pip - uses: actions/setup-python@v4 - with: - python-version: '3.11.x' - architecture: 'x64' - cache: 'pip' - cache-dependency-path: .github/workflows/requirements-conan-package.txt - - - name: Install Python requirements and Create default Conan profile - run: pip install -r requirements-conan-package.txt - working-directory: .github/workflows/ - - - name: Use Conan download cache (Bash) - if: ${{ runner.os != 'Windows' }} - run: conan config set storage.download_cache="$HOME/.conan/conan_download_cache" - - - name: Cache Conan local repository packages (Bash) - uses: actions/cache@v3 - if: ${{ runner.os != 'Windows' }} - with: - path: | - $HOME/.conan/data - $HOME/.conan/conan_download_cache - key: conan-${{ runner.os }}-${{ runner.arch }}-unit-cache - - # NOTE: Due to what are probably github issues, we have to remove the cache and reconfigure before the rest. - # This is maybe because grub caches the disk it uses last time, which is recreated each time. - - name: Install Linux system requirements - if: ${{ runner.os == 'Linux' }} - run: | - sudo rm /var/cache/debconf/config.dat - sudo dpkg --configure -a - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo apt update - sudo apt upgrade - sudo apt install build-essential checkinstall libegl-dev zlib1g-dev libssl-dev ninja-build autoconf libx11-dev libx11-xcb-dev libfontenc-dev libice-dev libsm-dev libxau-dev libxaw7-dev libxcomposite-dev libxcursor-dev libxdamage-dev libxdmcp-dev libxext-dev libxfixes-dev libxi-dev libxinerama-dev libxkbfile-dev libxmu-dev libxmuu-dev libxpm-dev libxrandr-dev libxrender-dev libxres-dev libxss-dev libxt-dev libxtst-dev libxv-dev libxvmc-dev libxxf86vm-dev xtrans-dev libxcb-render0-dev libxcb-render-util0-dev libxcb-xkb-dev libxcb-icccm4-dev libxcb-image0-dev libxcb-keysyms1-dev libxcb-randr0-dev libxcb-shape0-dev libxcb-sync-dev libxcb-xfixes0-dev libxcb-xinerama0-dev xkb-data libxcb-dri3-dev uuid-dev libxcb-util-dev libxkbcommon-x11-dev pkg-config -y - - - name: Install GCC-13 - run: | - sudo apt install g++-13 gcc-13 -y - sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 13 - sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-13 13 - - - name: Get Conan configuration - run: | - conan config install https://github.com/Ultimaker/conan-config.git - conan config install https://github.com/Ultimaker/conan-config.git -a "-b runner/${{ runner.os }}/${{ runner.arch }}" - - - name: Get Conan profile - run: conan profile new default --detect --force - - - name: Install dependencies - run: conan install . ${{ needs.conan-recipe-version.outputs.recipe_id_full }} --build=missing --update -o cura:devtools=True -g VirtualPythonEnv -if venv - - - name: Upload the Dependency package(s) - run: conan upload "*" -r cura --all -c - - - name: Set Environment variables for Cura (bash) - if: ${{ runner.os != 'Windows' }} - run: | - . ./venv/bin/activate_github_actions_env.sh - - - name: Run Unit Test - id: run-test - run: | - pytest --junitxml=junit_cura.xml - working-directory: tests - - - name: Save PR metadata - if: always() - run: | - echo ${{ github.event.number }} > pr-id.txt - echo ${{ github.event.pull_request.head.repo.full_name }} > pr-head-repo.txt - echo ${{ github.event.pull_request.head.ref }} > pr-head-ref.txt - working-directory: tests - - - name: Upload Test Results - if: always() - uses: actions/upload-artifact@v3 - with: - name: test-result - path: | - tests/**/*.xml - tests/pr-id.txt - tests/pr-head-repo.txt - tests/pr-head-ref.txt + uses: ultimaker/cura-workflows/.github/workflows/unit-test.yml@CURA-10831 + with: + recipe_id_full: ${{ needs.conan-recipe-version.outputs.recipe_id_full }} + conan_extra_args: '-o cura:devtools=True -c tools.build:skip_test=False' + unit_test_cmd: 'pytest --junitxml=junit_cura.xml' + unit_test_dir: 'tests' \ No newline at end of file From a69e4f1678c8832831b4adc8fb986c7f0ccf1f1c Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 5 Dec 2023 05:05:12 +0100 Subject: [PATCH 240/765] set needs for testing job Contributes to CURA-10831 --- .github/workflows/unit-test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index ca585d54b6b..3083c8f11b4 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -52,6 +52,7 @@ jobs: testing: uses: ultimaker/cura-workflows/.github/workflows/unit-test.yml@CURA-10831 + needs: [ conan-recipe-version ] with: recipe_id_full: ${{ needs.conan-recipe-version.outputs.recipe_id_full }} conan_extra_args: '-o cura:devtools=True -c tools.build:skip_test=False' From 6140d5ad145fb29a39f1ed0f7bb3f5e6468d1256 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 5 Dec 2023 05:06:40 +0100 Subject: [PATCH 241/765] only run on main/release and PR's Contributes to CURA-10831 --- .github/workflows/unit-test.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 3083c8f11b4..d7e8543abeb 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -16,8 +16,6 @@ on: - '*.jinja' branches: - main - - 'CURA-*' - - 'PP-*' - '[0-9]+.[0-9]+' pull_request: From a2eb1dc085aa4f92e8487bc2cf9da3e2bfd0f55c Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 5 Dec 2023 05:30:57 +0100 Subject: [PATCH 242/765] Activate all activate_github_action envs Contributes to CURA-10831 --- .github/workflows/unit-test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index d7e8543abeb..484490f5edb 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -55,4 +55,5 @@ jobs: recipe_id_full: ${{ needs.conan-recipe-version.outputs.recipe_id_full }} conan_extra_args: '-o cura:devtools=True -c tools.build:skip_test=False' unit_test_cmd: 'pytest --junitxml=junit_cura.xml' - unit_test_dir: 'tests' \ No newline at end of file + unit_test_dir: 'tests' + conan_generator_dir: './venv/bin' \ No newline at end of file From 3dcf208d73f257b2875bc519ebb8d6dcdd715599 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 5 Dec 2023 05:31:51 +0100 Subject: [PATCH 243/765] Revert "only run on main/release and PR's" This reverts commit 6140d5ad145fb29a39f1ed0f7bb3f5e6468d1256. --- .github/workflows/unit-test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 484490f5edb..2312340a119 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -16,6 +16,8 @@ on: - '*.jinja' branches: - main + - 'CURA-*' + - 'PP-*' - '[0-9]+.[0-9]+' pull_request: From e688a3a9df0f5b48a1373042bcd82c502e7a8869 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 5 Dec 2023 05:51:48 +0100 Subject: [PATCH 244/765] use relative location of pytest Somehow pytest can't be found on the PATH Contributes to CURA-10831 --- .github/workflows/unit-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 2312340a119..d8716c9dacc 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -56,6 +56,6 @@ jobs: with: recipe_id_full: ${{ needs.conan-recipe-version.outputs.recipe_id_full }} conan_extra_args: '-o cura:devtools=True -c tools.build:skip_test=False' - unit_test_cmd: 'pytest --junitxml=junit_cura.xml' + unit_test_cmd: '../venv/bin/pytest --junitxml=junit_cura.xml' unit_test_dir: 'tests' conan_generator_dir: './venv/bin' \ No newline at end of file From 86493b9c4d19a157907cb4bd08c63f039c184875 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 5 Dec 2023 06:05:21 +0100 Subject: [PATCH 245/765] Use VirtualPythonEnv generator Contributes to CURA-10831 --- .github/workflows/unit-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index d8716c9dacc..714cf9d6af6 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -55,7 +55,7 @@ jobs: needs: [ conan-recipe-version ] with: recipe_id_full: ${{ needs.conan-recipe-version.outputs.recipe_id_full }} - conan_extra_args: '-o cura:devtools=True -c tools.build:skip_test=False' - unit_test_cmd: '../venv/bin/pytest --junitxml=junit_cura.xml' + conan_extra_args: '-g VirtualPythonEnv -o cura:devtools=True -c tools.build:skip_test=False' + unit_test_cmd: 'pytest --junitxml=junit_cura.xml' unit_test_dir: 'tests' conan_generator_dir: './venv/bin' \ No newline at end of file From f5354c058f90ff7079876dd2693680c727ced7c9 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 5 Dec 2023 07:08:36 +0100 Subject: [PATCH 246/765] Add FIXME reminders Contributes to CURA-10831 --- .github/workflows/unit-test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 714cf9d6af6..6369e7e3955 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -45,12 +45,14 @@ env: CONAN_PASSWORD: ${{ secrets.CONAN_PASS }} jobs: + # FIXME: Change to `main` instead of `CURA-10831` once merged conan-recipe-version: uses: ultimaker/cura-workflows/.github/workflows/conan-recipe-version.yml@CURA-10831 with: project_name: cura testing: + # FIXME: Change to `main` instead of `CURA-10831` once merged uses: ultimaker/cura-workflows/.github/workflows/unit-test.yml@CURA-10831 needs: [ conan-recipe-version ] with: From 1334b65bdfca7bb23e7c95c446f9ad3746fb0e7c Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 5 Dec 2023 07:17:21 +0100 Subject: [PATCH 247/765] Post the unit test result on PR's Contributes to CURA-10831 --- .github/workflows/unit-test-post.yml | 85 +++------------------------- 1 file changed, 8 insertions(+), 77 deletions(-) diff --git a/.github/workflows/unit-test-post.yml b/.github/workflows/unit-test-post.yml index 36c1d5acfdd..119ca30f33e 100644 --- a/.github/workflows/unit-test-post.yml +++ b/.github/workflows/unit-test-post.yml @@ -1,82 +1,13 @@ name: unit-test-post on: - workflow_run: - workflows: [ "unit-test" ] - types: [ completed ] + workflow_run: + workflows: [ "unit-test" ] + types: [ completed ] jobs: - publish-test-results: - if: ${{ github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' }} - runs-on: ubuntu-latest - - steps: - - name: Download analysis results - uses: actions/github-script@v3.1.0 - with: - script: | - let artifacts = await github.actions.listWorkflowRunArtifacts({ - owner: context.repo.owner, - repo: context.repo.repo, - run_id: ${{github.event.workflow_run.id }}, - }); - let matchArtifact = artifacts.data.artifacts.filter((artifact) => { - return artifact.name == "test-result" - })[0]; - let download = await github.actions.downloadArtifact({ - owner: context.repo.owner, - repo: context.repo.repo, - artifact_id: matchArtifact.id, - archive_format: "zip", - }); - let fs = require("fs"); - fs.writeFileSync("${{github.workspace}}/test-result.zip", Buffer.from(download.data)); - - - name: Set environment variables - run: | - mkdir pr_env - unzip test-result.zip -d pr_env - echo "pr_id=$(cat pr_env/pr-id.txt)" >> $GITHUB_ENV - echo "pr_head_repo=$(cat pr_env/pr-head-repo.txt)" >> $GITHUB_ENV - echo "pr_head_ref=$(cat pr_env/pr-head-ref.txt)" >> $GITHUB_ENV - - - uses: actions/checkout@v3 - with: - repository: ${{ env.pr_head_repo }} - ref: ${{ env.pr_head_ref }} - persist-credentials: false - - - name: Redownload analysis results - uses: actions/github-script@v3.1.0 - with: - script: | - let artifacts = await github.actions.listWorkflowRunArtifacts({ - owner: context.repo.owner, - repo: context.repo.repo, - run_id: ${{github.event.workflow_run.id }}, - }); - let matchArtifact = artifacts.data.artifacts.filter((artifact) => { - return artifact.name == "test-result" - })[0]; - let download = await github.actions.downloadArtifact({ - owner: context.repo.owner, - repo: context.repo.repo, - artifact_id: matchArtifact.id, - archive_format: "zip", - }); - let fs = require("fs"); - fs.writeFileSync("${{github.workspace}}/test-result.zip", Buffer.from(download.data)); - - - name: Extract analysis results - run: | - mkdir -p tests - unzip test-result.zip -d tests - - - name: Publish Unit Test Results - id: test-results - uses: EnricoMi/publish-unit-test-result-action@v1 - with: - files: "tests/**/*.xml" - - - name: Conclusion - run: echo "Conclusion is ${{ steps.test-results.outputs.json && fromJSON( steps.test-results.outputs.json ).conclusion }}" + publish-test-results: + uses: ultimaker/cura-workflows/.github/workflows/unit-test-post.yml@CURA-10831 + with: + event: ${{ github.event.workflow_run.event }} + conclusion: ${{ github.event.workflow_run.conclusion }} From b8d41abdeea2d69187ed85eb455f0e384a167d04 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 5 Dec 2023 07:18:57 +0100 Subject: [PATCH 248/765] Add FIXME reminder Contributes to CURA-10831 --- .github/workflows/unit-test-post.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/unit-test-post.yml b/.github/workflows/unit-test-post.yml index 119ca30f33e..b4ca2ee6996 100644 --- a/.github/workflows/unit-test-post.yml +++ b/.github/workflows/unit-test-post.yml @@ -6,6 +6,7 @@ on: types: [ completed ] jobs: + # FIXME: Use `main` instead of `CURA-10831` once merged publish-test-results: uses: ultimaker/cura-workflows/.github/workflows/unit-test-post.yml@CURA-10831 with: From 8aa6d2c5b6a2fe645a400fd495394ce475ac7d3f Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 5 Dec 2023 07:44:04 +0100 Subject: [PATCH 249/765] Update conan_data with actual version Contributes to CURA-10831 --- conanfile.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index 92d0e326d9b..f1d73352aae 100644 --- a/conanfile.py +++ b/conanfile.py @@ -4,7 +4,7 @@ from jinja2 import Template from conan import ConanFile -from conan.tools.files import copy, rmdir, save, mkdir, rm +from conan.tools.files import copy, rmdir, save, mkdir, rm, update_conandata from conan.tools.microsoft import unix_path from conan.tools.env import VirtualRunEnv, Environment, VirtualBuildEnv from conan.tools.scm import Version @@ -289,6 +289,9 @@ def _generate_pyinstaller_spec(self, location, entrypoint_location, icon_path, e short_version = f"'{cura_version.major}.{cura_version.minor}.{cura_version.patch}'", )) + def export(self): + update_conandata(self, {"version": self.version}) + def export_sources(self): copy(self, "*", os.path.join(self.recipe_folder, "plugins"), os.path.join(self.export_sources_folder, "plugins")) copy(self, "*", os.path.join(self.recipe_folder, "resources"), os.path.join(self.export_sources_folder, "resources"), excludes = "*.mo") From 704f1280043423489832e9ee5280be8ab750208b Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 5 Dec 2023 10:15:51 +0100 Subject: [PATCH 250/765] Use CURA-10831 working packages for deps Contributes to CURA-10831 --- conandata.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/conandata.yml b/conandata.yml index 52f15cb3f3a..0eec369c968 100644 --- a/conandata.yml +++ b/conandata.yml @@ -4,12 +4,12 @@ requirements: - "curaengine/(latest)@ultimaker/cura_10831" - "cura_binary_data/(latest)@ultimaker/cura_10831" - "fdm_materials/(latest)@ultimaker/cura_10831" - - "curaengine_plugin_gradual_flow/0.1.0" - - "dulcificum/latest@ultimaker/stable" + - "curaengine_plugin_gradual_flow/(latest)@ultimaker/cura_10831" + - "dulcificum/(latest)@ultimaker/cura_10831" - "pyarcus/5.3.0" - "pysavitar/5.3.0" - "pynest2d/5.3.0" - - "curaengine_grpc_definitions/0.1.0" + - "curaengine_grpc_definitions/(latest)@ultimaker/cura_10831" requirements_internal: - "fdm_materials/(latest)@internal/cura_10831" - "cura_private_data/(latest)@internal/cura_10831" From 68818a525d966e0260571e2a9cae0ae5d36d6afe Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Tue, 5 Dec 2023 13:53:30 +0100 Subject: [PATCH 251/765] Use absolute transform coordinates instead of relative CURA-11279 --- cura/Arranging/GridArrange.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/cura/Arranging/GridArrange.py b/cura/Arranging/GridArrange.py index f3c5f3a1a90..be6b36cc5ad 100644 --- a/cura/Arranging/GridArrange.py +++ b/cura/Arranging/GridArrange.py @@ -242,13 +242,9 @@ def _moveNodeOnGrid(self, node: "SceneNode", grid_x: int, grid_y: int) -> "Opera center_grid_y = coord_grid_y + (0.5 * self._grid_height) bounding_box = node.getBoundingBox() - center_node_x = (bounding_box.left + bounding_box.right) * 0.5 - center_node_y = (bounding_box.back + bounding_box.front) * 0.5 + center_node_z = bounding_box.height / 2 - delta_x = center_grid_x - center_node_x - delta_y = center_grid_y - center_node_y - - return TranslateOperation(node, Vector(delta_x, 0, delta_y)) + return TranslateOperation(node, Vector(center_grid_x, center_node_z, center_grid_y), True) def _getGridCornerPoints( self, From 9a108dc7205cda8983faafe6576c055f0b613e66 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Tue, 5 Dec 2023 14:41:15 +0100 Subject: [PATCH 252/765] Set explicit parameter name Co-authored-by: Casper Lamboo --- cura/Arranging/GridArrange.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/Arranging/GridArrange.py b/cura/Arranging/GridArrange.py index be6b36cc5ad..c30b5c897f4 100644 --- a/cura/Arranging/GridArrange.py +++ b/cura/Arranging/GridArrange.py @@ -244,7 +244,7 @@ def _moveNodeOnGrid(self, node: "SceneNode", grid_x: int, grid_y: int) -> "Opera bounding_box = node.getBoundingBox() center_node_z = bounding_box.height / 2 - return TranslateOperation(node, Vector(center_grid_x, center_node_z, center_grid_y), True) + return TranslateOperation(node, Vector(center_grid_x, center_node_z, center_grid_y), set_position = True) def _getGridCornerPoints( self, From a9c3c2b4b432d7224d97fa356e8d042f4848aeba Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Tue, 5 Dec 2023 15:25:52 +0100 Subject: [PATCH 253/765] Increased raft base layer speed from 5mm/s to 10mm/s and increased raft middle layer linewidth from 0.4 to 0.7mm to increase productivity. PP-408 --- resources/definitions/ultimaker_method_base.def.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/definitions/ultimaker_method_base.def.json b/resources/definitions/ultimaker_method_base.def.json index 6ac68ef2de1..ea00c726c24 100644 --- a/resources/definitions/ultimaker_method_base.def.json +++ b/resources/definitions/ultimaker_method_base.def.json @@ -353,11 +353,11 @@ "print_sequence": { "enabled": false }, "raft_base_line_spacing": { "value": "2*raft_base_line_width" }, "raft_base_line_width": { "value": 1.4 }, - "raft_base_speed": { "value": 5 }, + "raft_base_speed": { "value": 10 }, "raft_base_thickness": { "value": 0.8 }, "raft_interface_extruder_nr": { "value": "raft_surface_extruder_nr" }, "raft_interface_layers": { "value": 2 }, - "raft_interface_line_width": { "value": "line_width" }, + "raft_interface_line_width": { "value": 0.7 }, "raft_interface_speed": { "value": 90 }, "raft_interface_thickness": { "value": 0.3 }, "raft_margin": { "value": 3 }, From b46f6e8e09582f49216e4f0af295a413b78c9e7e Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Tue, 5 Dec 2023 18:24:44 +0100 Subject: [PATCH 254/765] Add support for CLI file opening with 'cura' and 'slicer' schemes CURA-11288 --- cura/CuraApplication.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 079a27b6cea..a71b6d9915f 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -276,6 +276,8 @@ def __init__(self, *args, **kwargs): self._conan_installs = ApplicationMetadata.CONAN_INSTALLS self._python_installs = ApplicationMetadata.PYTHON_INSTALLS + self._supported_url_schemes: List[str] = ["cura", "slicer"] + @pyqtProperty(str, constant=True) def ultimakerCloudApiRootUrl(self) -> str: return UltimakerCloudConstants.CuraCloudAPIRoot @@ -328,7 +330,11 @@ def parseCliOptions(self): assert not "This crash is triggered by the trigger_early_crash command line argument." for filename in self._cli_args.file: - self._files_to_open.append(os.path.abspath(filename)) + url = QUrl(filename) + if url.scheme() in self._supported_url_schemes: + self._open_url_queue.append(url) + else: + self._files_to_open.append(os.path.abspath(filename)) def initialize(self) -> None: self.__addExpectedResourceDirsAndSearchPaths() # Must be added before init of super @@ -1794,8 +1800,7 @@ def _openFile(self, filename): self.readLocalFile(QUrl.fromLocalFile(filename)) def _openUrl(self, url: QUrl) -> None: - supported_schemes = ["cura", "slicer"] - if url.scheme() not in supported_schemes: + if url.scheme() not in self._supported_url_schemes: # only handle cura:// and slicer:// urls schemes return From a7a4e4bd2911ae9a7a9095cb9d676b009233149a Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Wed, 6 Dec 2023 06:06:08 +0100 Subject: [PATCH 255/765] Revert "Update nsi installer" This reverts commit 4b4b8b351462f7b788816c2ddbf2d75d38ee7de6. --- packaging/NSIS/Ultimaker-Cura.nsi.jinja | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/packaging/NSIS/Ultimaker-Cura.nsi.jinja b/packaging/NSIS/Ultimaker-Cura.nsi.jinja index c562e5f6542..228dba4fe48 100644 --- a/packaging/NSIS/Ultimaker-Cura.nsi.jinja +++ b/packaging/NSIS/Ultimaker-Cura.nsi.jinja @@ -197,11 +197,13 @@ Section UrlProtocol WriteRegStr HKCR "cura" "" "URL:cura" WriteRegStr HKCR "cura" "URL Protocol" "" WriteRegStr HKCR "cura\DefaultIcon" "" "$INSTDIR\${MAIN_APP_EXE},1" - WriteRegStr HKCR "cura\shell\open\command" "" '"$INSTDIR\${MAIN_APP_EXE}"' + WriteRegStr HKCR "cura\shell" "" "open" + WriteRegStr HKCR "cura\shell\open\command" "" '"$INSTDIR\${MAIN_APP_EXE}" "%1"' WriteRegStr HKCR "slicer" "" "URL:slicer" WriteRegStr HKCR "slicer" "URL Protocol" "" WriteRegStr HKCR "slicer\DefaultIcon" "" "$INSTDIR\${MAIN_APP_EXE},1" - WriteRegStr HKCR "slicer\shell\open\command" "" '"$INSTDIR\${MAIN_APP_EXE}"' + WriteRegStr HKCR "slicer\shell" "" "open" + WriteRegStr HKCR "slicer\shell\open\command" "" '"$INSTDIR\${MAIN_APP_EXE}" "%1"' SectionEnd \ No newline at end of file From 351183f407360b89565084b0bdef72ff7e852570 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Wed, 6 Dec 2023 06:13:39 +0100 Subject: [PATCH 256/765] Temporarily pin spdlog CURA-11288 --- conanfile.py | 1 + 1 file changed, 1 insertion(+) diff --git a/conanfile.py b/conanfile.py index b58cbb4b7fe..081db4d933a 100644 --- a/conanfile.py +++ b/conanfile.py @@ -335,6 +335,7 @@ def requirements(self): self.requires("fdm_materials/(latest)@internal/testing") else: self.requires("fdm_materials/(latest)@ultimaker/testing") + self.requires("spdlog/1.12.0@_/_") def build_requirements(self): if self.options.get_safe("enable_i18n", False): From c4939701e1f3ee37314f8e71a27eb4196ab3f3e1 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Wed, 6 Dec 2023 06:37:36 +0100 Subject: [PATCH 257/765] Re-enable genrate cura version CURA-11288 --- conanfile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conanfile.py b/conanfile.py index 081db4d933a..ec5be608d66 100644 --- a/conanfile.py +++ b/conanfile.py @@ -359,7 +359,7 @@ def generate(self): vr = VirtualRunEnv(self) vr.generate() - # self._generate_cura_version(os.path.join(self.source_folder, "cura")) + self._generate_cura_version(os.path.join(self.source_folder, "cura")) if not self.in_local_cache: # Copy CuraEngine.exe to bindirs of Virtual Python Environment @@ -467,7 +467,7 @@ def deploy(self): ext = ".sh" if self.settings.os != "Windows" else ".ps1" save(self, os.path.join(self._script_dir, f"activate_github_actions_version_env{ext}"), activate_github_actions_version_env) - # self._generate_cura_version(os.path.join(self._site_packages, "cura")) + self._generate_cura_version(os.path.join(self._site_packages, "cura")) entitlements_file = "'{}'".format(Path(self.cpp_info.res_paths[2], "MacOS", "cura.entitlements")) self._generate_pyinstaller_spec(location = self._base_dir, From 153e2e7bd073f4d7e367560345993525f7a5aebc Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Wed, 6 Dec 2023 07:14:36 +0100 Subject: [PATCH 258/765] Fix warning/Boyscouting CURA-11288 --- cura/PrinterOutput/Models/MaterialOutputModel.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cura/PrinterOutput/Models/MaterialOutputModel.py b/cura/PrinterOutput/Models/MaterialOutputModel.py index 6920cead1bc..d60c34ed102 100644 --- a/cura/PrinterOutput/Models/MaterialOutputModel.py +++ b/cura/PrinterOutput/Models/MaterialOutputModel.py @@ -42,8 +42,7 @@ def getMaterialFromDefinition(guid, type, brand, name): "tpu" :{"name" :"tpu_175" ,"guid": "19baa6a9-94ff-478b-b4a1-8157b74358d2"} } - - if guid is None and brand is not "empty" and type in _MATERIAL_MAP: + if guid is None and brand != "empty" and type in _MATERIAL_MAP: name = _MATERIAL_MAP[type]["name"] guid = _MATERIAL_MAP[type]["guid"] return name, guid From d6a73a5976067078c7e7e63e2d6a12b89573d566 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Wed, 6 Dec 2023 07:57:45 +0100 Subject: [PATCH 259/765] Fix opening files on windows `_open_url_queue` is expecting a list of strings, not a `QUrl` instance CURA-11288 --- cura/CuraApplication.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index a71b6d9915f..82313eece83 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -332,7 +332,7 @@ def parseCliOptions(self): for filename in self._cli_args.file: url = QUrl(filename) if url.scheme() in self._supported_url_schemes: - self._open_url_queue.append(url) + self._open_url_queue.append(filename) else: self._files_to_open.append(os.path.abspath(filename)) From 568fc4ca766afa3ee14f1620d925b90363196b09 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Wed, 6 Dec 2023 08:49:37 +0100 Subject: [PATCH 260/765] Revert "Fix opening files on windows" This reverts commit d6a73a5976067078c7e7e63e2d6a12b89573d566. --- cura/CuraApplication.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 82313eece83..a71b6d9915f 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -332,7 +332,7 @@ def parseCliOptions(self): for filename in self._cli_args.file: url = QUrl(filename) if url.scheme() in self._supported_url_schemes: - self._open_url_queue.append(filename) + self._open_url_queue.append(url) else: self._files_to_open.append(os.path.abspath(filename)) From 0353037b31cfd715bc01193ca676f871d2373515 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Wed, 6 Dec 2023 11:36:54 +0100 Subject: [PATCH 261/765] Use `getWorldPosition` for `TranslateOperation` CURA-11279 --- cura/Arranging/GridArrange.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/cura/Arranging/GridArrange.py b/cura/Arranging/GridArrange.py index c30b5c897f4..13778e9de92 100644 --- a/cura/Arranging/GridArrange.py +++ b/cura/Arranging/GridArrange.py @@ -241,10 +241,8 @@ def _moveNodeOnGrid(self, node: "SceneNode", grid_x: int, grid_y: int) -> "Opera center_grid_x = coord_grid_x + (0.5 * self._grid_width) center_grid_y = coord_grid_y + (0.5 * self._grid_height) - bounding_box = node.getBoundingBox() - center_node_z = bounding_box.height / 2 - - return TranslateOperation(node, Vector(center_grid_x, center_node_z, center_grid_y), set_position = True) + return TranslateOperation(node, Vector(center_grid_x, node.getWorldPosition().y, center_grid_y), + set_position=True) def _getGridCornerPoints( self, From 920809f064d39f2426312428a02c7db0b3c4410d Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Wed, 6 Dec 2023 11:40:34 +0100 Subject: [PATCH 262/765] Use absolute transformation to set location for arrange Using relative positioning proved to create issues; when spamming of arrange instructions it was possible to end up in the following time line 1: arrange action a is started 2: arrange action b is started 3: arrange action a finished computation, and applies transformations on the models 4: arrange action b finishes computation and applies relative transformations on top of the previous transformations By using absolute positioning this issue is resolved CURA-11279 --- cura/Arranging/Nest2DArrange.py | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/cura/Arranging/Nest2DArrange.py b/cura/Arranging/Nest2DArrange.py index 968522d5a37..a67d04aa8cf 100644 --- a/cura/Arranging/Nest2DArrange.py +++ b/cura/Arranging/Nest2DArrange.py @@ -14,7 +14,7 @@ from UM.Math.Vector import Vector from UM.Operations.AddSceneNodeOperation import AddSceneNodeOperation from UM.Operations.GroupedOperation import GroupedOperation -from UM.Operations.RotateOperation import RotateOperation +from UM.Operations.SetTransformOperation import SetTransformOperation from UM.Operations.TranslateOperation import TranslateOperation from cura.Arranging.Arranger import Arranger @@ -140,13 +140,17 @@ def createGroupOperationForArrange(self, add_new_nodes_in_scene: bool = False) - grouped_operation.addOperation(AddSceneNodeOperation(node, scene_root)) if node_item.binId() == 0: - # We found a spot for it rotation_matrix = Matrix() rotation_matrix.setByRotationAxis(node_item.rotation(), Vector(0, -1, 0)) - grouped_operation.addOperation(RotateOperation(node, Quaternion.fromMatrix(rotation_matrix))) + + orientation = node.getWorldOrientation() * Quaternion.fromMatrix(rotation_matrix) + translation = node.getWorldPosition().preMultiply(rotation_matrix) + Vector( + node_item.translation().x() / self._factor, + 0, + node_item.translation().y() / self._factor + ) grouped_operation.addOperation( - TranslateOperation(node, Vector(node_item.translation().x() / self._factor, 0, - node_item.translation().y() / self._factor))) + SetTransformOperation(node, orientation=orientation, translation=translation)) else: # We didn't find a spot grouped_operation.addOperation( From 237d1a899baa03da667b72a7cc5be395b65e2dc5 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Wed, 6 Dec 2023 12:10:34 +0100 Subject: [PATCH 263/765] Revert "Use absolute transformation to set location for arrange" This reverts commit 920809f064d39f2426312428a02c7db0b3c4410d. --- cura/Arranging/Nest2DArrange.py | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/cura/Arranging/Nest2DArrange.py b/cura/Arranging/Nest2DArrange.py index a67d04aa8cf..968522d5a37 100644 --- a/cura/Arranging/Nest2DArrange.py +++ b/cura/Arranging/Nest2DArrange.py @@ -14,7 +14,7 @@ from UM.Math.Vector import Vector from UM.Operations.AddSceneNodeOperation import AddSceneNodeOperation from UM.Operations.GroupedOperation import GroupedOperation -from UM.Operations.SetTransformOperation import SetTransformOperation +from UM.Operations.RotateOperation import RotateOperation from UM.Operations.TranslateOperation import TranslateOperation from cura.Arranging.Arranger import Arranger @@ -140,17 +140,13 @@ def createGroupOperationForArrange(self, add_new_nodes_in_scene: bool = False) - grouped_operation.addOperation(AddSceneNodeOperation(node, scene_root)) if node_item.binId() == 0: + # We found a spot for it rotation_matrix = Matrix() rotation_matrix.setByRotationAxis(node_item.rotation(), Vector(0, -1, 0)) - - orientation = node.getWorldOrientation() * Quaternion.fromMatrix(rotation_matrix) - translation = node.getWorldPosition().preMultiply(rotation_matrix) + Vector( - node_item.translation().x() / self._factor, - 0, - node_item.translation().y() / self._factor - ) + grouped_operation.addOperation(RotateOperation(node, Quaternion.fromMatrix(rotation_matrix))) grouped_operation.addOperation( - SetTransformOperation(node, orientation=orientation, translation=translation)) + TranslateOperation(node, Vector(node_item.translation().x() / self._factor, 0, + node_item.translation().y() / self._factor))) else: # We didn't find a spot grouped_operation.addOperation( From 30e4c61620fc31703cf0b4227f419beea882db30 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Wed, 6 Dec 2023 12:39:10 +0100 Subject: [PATCH 264/765] review comments fix CURA-11166 --- cura/CuraApplication.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 7e2f0fb1cad..28dfd5e1c9d 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -179,7 +179,7 @@ def __init__(self, *args, **kwargs): self._use_single_instance = False self._single_instance = None - self._project_mode = None + self._open_project_mode: Optional[str] = None self._cura_formula_functions = None # type: Optional[CuraFormulaFunctions] @@ -1846,7 +1846,7 @@ def readLocalFile(self, file: QUrl, project_mode: Optional[str] = None, add_to_r Logger.log("i", "Attempting to read file %s", file.toString()) if not file.isValid(): return - self._project_mode = project_mode + self._open_project_mode = project_mode scene = self.getController().getScene() for node in DepthFirstIterator(scene.getRoot()): @@ -1856,16 +1856,16 @@ def readLocalFile(self, file: QUrl, project_mode: Optional[str] = None, add_to_r is_project_file = self.checkIsValidProjectFile(file) - if self._project_mode is None: - self._project_mode = self.getPreferences().getValue("cura/choice_on_open_project") + if self._open_project_mode is None: + self._open_project_mode = self.getPreferences().getValue("cura/choice_on_open_project") - if is_project_file and self._project_mode == "open_as_project": + if is_project_file and self._open_project_mode == "open_as_project": # open as project immediately without presenting a dialog workspace_handler = self.getWorkspaceFileHandler() workspace_handler.readLocalFile(file, add_to_recent_files_hint = add_to_recent_files) return - if is_project_file and self._project_mode == "always_ask": + if is_project_file and self._open_project_mode == "always_ask": # present a dialog asking to open as project or import models self.callLater(self.openProjectFile.emit, file, add_to_recent_files) return @@ -2001,9 +2001,9 @@ def _readMeshFinished(self, job): node.translate(Vector(0, center_y, 0)) nodes_to_arrange.append(node) - # If file extention is 3mf and models are to be loaded from a cura project, - # models are to be arranged in buildplate. - elif self._project_mode == "open_as_model": + # If the file is a project,and models are to be loaded from a that project, + # models inside file should be arranged in buildplate. + elif self._open_project_mode == "open_as_model": nodes_to_arrange.append(node) # This node is deep copied from some other node which already has a BuildPlateDecorator, but the deepcopy From 84d56367f4f357caec408e14e4d396d96aa13aef Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Wed, 6 Dec 2023 13:33:57 +0100 Subject: [PATCH 265/765] Also listen to the "/" appended string for url schemes Windows adds a slash for some reason CURA-11288 --- cura/CuraApplication.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index a71b6d9915f..1f60130787c 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -1805,7 +1805,7 @@ def _openUrl(self, url: QUrl) -> None: return match url.host() + url.path(): - case "open": + case "open" | "open/": query = QUrlQuery(url.query()) model_url = QUrl(query.queryItemValue("file", options=QUrl.ComponentFormattingOption.FullyDecoded)) From 7574b56ebad4371efcbeb5bd42d0bbe864e317ec Mon Sep 17 00:00:00 2001 From: Casper Lamboo Date: Thu, 7 Dec 2023 10:32:01 +0100 Subject: [PATCH 266/765] Update conanfile.py --- conanfile.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/conanfile.py b/conanfile.py index 1ee2094490e..678943759ce 100644 --- a/conanfile.py +++ b/conanfile.py @@ -326,13 +326,12 @@ def requirements(self): self.requires("curaengine_grpc_definitions/0.1.0") self.requires("zlib/1.2.13") self.requires("pyarcus/5.3.0") - self.requires("dulcificum/(latest)@ultimaker/testing") self.requires("dulcificum/(latest)@ultimaker/stable") self.requires("curaengine/(latest)@ultimaker/testing") self.requires("pysavitar/5.3.0") self.requires("pynest2d/5.3.0") self.requires("curaengine_plugin_gradual_flow/0.1.0") - self.requires("uranium/latest@ultimaker/testing") + self.requires("uranium/(latest)@ultimaker/testing") self.requires("cura_binary_data/(latest)@ultimaker/testing") self.requires("cpython/3.10.4@ultimaker/stable") self.requires("openssl/3.2.0") @@ -341,7 +340,6 @@ def requirements(self): self.requires("fdm_materials/(latest)@internal/testing") else: self.requires("fdm_materials/(latest)@ultimaker/testing") - self.requires("spdlog/1.12.0@_/_") def build_requirements(self): if self.options.get_safe("enable_i18n", False): From f94198c1080fa15023020c7164ec7a3679aa0cbd Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Thu, 7 Dec 2023 14:41:44 +0100 Subject: [PATCH 267/765] Fix behaviour of internal property The attribute 'enterprise' in conanfile.py was incorrectly named and has been renamed to 'internal'. This revision ensures that options are accessed correctly to avoid potential issues in usage. Contributes to CURA-10831 --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index f15766a57ba..8ade8e771cf 100644 --- a/conanfile.py +++ b/conanfile.py @@ -86,7 +86,7 @@ def _enterprise(self): @property def _internal(self): - return self.options.enterprise in ["True", 'true'] + return self.options.internal in ["True", 'true'] @property def _app_name(self): From 9bb065a294761831977104487ab0f1859888a101 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Fri, 8 Dec 2023 07:40:30 +0100 Subject: [PATCH 268/765] make sure fdm_materials is installed for internals Contributes to CURA-10831 --- conanfile.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/conanfile.py b/conanfile.py index 8ade8e771cf..e9d06452f30 100644 --- a/conanfile.py +++ b/conanfile.py @@ -333,8 +333,6 @@ def requirements(self): self.requires(req) if self._internal: for req in self.conan_data["requirements_internal"]: - if "fdm_materials" in req: - continue self.requires(req) self.requires("cpython/3.10.4@ultimaker/stable") self.requires("openssl/3.2.0") From e6812a31d8e7c57a52482dbb47ca8e3ff5217194 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Fri, 8 Dec 2023 07:42:06 +0100 Subject: [PATCH 269/765] No need to create a conan-package Contributes to CURA-10831 --- .github/workflows/conan-package.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/conan-package.yml b/.github/workflows/conan-package.yml index 24793fa4cc2..12567fde841 100644 --- a/.github/workflows/conan-package.yml +++ b/.github/workflows/conan-package.yml @@ -45,12 +45,3 @@ jobs: recipe_id_full: ${{ needs.conan-recipe-version.outputs.recipe_id_full }} recipe_id_latest: ${{ needs.conan-recipe-version.outputs.recipe_id_latest }} secrets: inherit - - conan-package-create-linux: - needs: [ conan-recipe-version, conan-package-export ] - - uses: ultimaker/cura-workflows/.github/workflows/conan-package-create-linux.yml@CURA-10831 - with: - recipe_id_full: ${{ needs.conan-recipe-version.outputs.recipe_id_full }} - conan_extra_args: '-c tools.build:skip_test=True -o ${{ needs.conan-recipe-version.outputs.project_name }}:enable_i18n=True' - secrets: inherit From f8239aa1fa288a6b465cbf5ae15531167ef5bbdf Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Fri, 8 Dec 2023 10:29:59 +0100 Subject: [PATCH 270/765] Add 'Enterprise' if applicable to About-dialog. done as a 15 min fix --- resources/qml/Dialogs/AboutDialog.qml | 10 ++++++++++ .../themes/cura-light/images/enterprise.png | Bin 0 -> 2492 bytes 2 files changed, 10 insertions(+) create mode 100644 resources/themes/cura-light/images/enterprise.png diff --git a/resources/qml/Dialogs/AboutDialog.qml b/resources/qml/Dialogs/AboutDialog.qml index 8ea0c018881..947b46269aa 100644 --- a/resources/qml/Dialogs/AboutDialog.qml +++ b/resources/qml/Dialogs/AboutDialog.qml @@ -45,6 +45,16 @@ UM.Dialog anchors.centerIn: parent } + Image + { + id: enterpriseLogo + visible: CuraApplication.isEnterprise + source: UM.Theme.getImage("enterprise") + fillMode: Image.PreserveAspectFit + + anchors.bottom: parent.bottom + } + UM.Label { id: version diff --git a/resources/themes/cura-light/images/enterprise.png b/resources/themes/cura-light/images/enterprise.png new file mode 100644 index 0000000000000000000000000000000000000000..6d92d80adbea617b9ac665d3b02e446fc4533f6a GIT binary patch literal 2492 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 Date: Fri, 8 Dec 2023 10:52:00 +0100 Subject: [PATCH 271/765] Fix a bug in which Cura sets fanspeed in the 0..255 range instead of the 0..1 range for Method machines. CURA-11441 --- resources/definitions/ultimaker_method_base.def.json | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/definitions/ultimaker_method_base.def.json b/resources/definitions/ultimaker_method_base.def.json index 8e9034c9547..d45f54f8b93 100644 --- a/resources/definitions/ultimaker_method_base.def.json +++ b/resources/definitions/ultimaker_method_base.def.json @@ -329,6 +329,7 @@ "machine_name": { "default_value": "UltiMaker Method" }, "machine_nozzle_cool_down_speed": { "value": 0.8 }, "machine_nozzle_heat_up_speed": { "value": 3.5 }, + "machine_scale_fan_speed_zero_to_one": { "value": true }, "machine_start_gcode": { "default_value": "" }, "material_bed_temperature": { "enabled": "machine_heated_bed" }, "material_bed_temperature_layer_0": { "enabled": "machine_heated_bed" }, From bf2c8b5a08e0fbf442edfa70ae4f11f04d3c32f2 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Fri, 8 Dec 2023 11:41:16 +0100 Subject: [PATCH 272/765] Simulation time fed to the timer controlling speed simulation time is made 10x faster than the actual time, for better visualisation CURA-7647 --- plugins/SimulationView/SimulationView.py | 10 ++++++---- .../SimulationViewMainComponent.qml | 6 +----- plugins/SimulationView/SimulationViewProxy.py | 15 +++++++++++++++ 3 files changed, 22 insertions(+), 9 deletions(-) diff --git a/plugins/SimulationView/SimulationView.py b/plugins/SimulationView/SimulationView.py index 18d1f981c7d..6874b276254 100644 --- a/plugins/SimulationView/SimulationView.py +++ b/plugins/SimulationView/SimulationView.py @@ -79,7 +79,7 @@ def __init__(self, parent = None) -> None: self.currentLayerNumChanged.connect(self._onCurrentLayerNumChanged) self._current_feedrates = {} - self._visible_lengths ={} + self._lengths_of_polyline ={} self._busy = False self._simulation_running = False @@ -403,7 +403,9 @@ def getMaxFeedrate(self) -> float: return self._max_feedrate def getSimulationTime(self) -> list: - return self._visible_lengths[self._current_layer_num] / self._current_feedrates[self._current_layer_num] + if len(self._lengths_of_polyline) > 0 and len(self._lengths_of_polyline) == len(self._current_feedrates): + return self._lengths_of_polyline[self._current_layer_num] / self._current_feedrates[self._current_layer_num] + return numpy.zeros(0) def getMinThickness(self) -> float: if abs(self._min_thickness - sys.float_info.max) < 10: # Some lenience due to floating point rounding. @@ -529,10 +531,10 @@ def calculateColorSchemeLimits(self) -> None: visible_indicies_with_extrusion = numpy.where(numpy.isin(polyline.types, visible_line_types_with_extrusion))[0] if visible_indices.size == 0: # No items to take maximum or minimum of. continue - self._visible_lengths[layer_index] = numpy.take(polyline.lineLengths, visible_indices) + self._lengths_of_polyline[layer_index] = polyline.lineLengths visible_feedrates = numpy.take(polyline.lineFeedrates, visible_indices) visible_feedrates_with_extrusion = numpy.take(polyline.lineFeedrates, visible_indicies_with_extrusion) - self._current_feedrates[layer_index] = visible_feedrates + self._current_feedrates[layer_index] = polyline.lineFeedrates visible_linewidths = numpy.take(polyline.lineWidths, visible_indices) visible_linewidths_with_extrusion = numpy.take(polyline.lineWidths, visible_indicies_with_extrusion) visible_thicknesses = numpy.take(polyline.lineThicknesses, visible_indices) diff --git a/plugins/SimulationView/SimulationViewMainComponent.qml b/plugins/SimulationView/SimulationViewMainComponent.qml index 66acff656ab..216095c15cf 100644 --- a/plugins/SimulationView/SimulationViewMainComponent.qml +++ b/plugins/SimulationView/SimulationViewMainComponent.qml @@ -136,10 +136,9 @@ Item Timer { id: simulationTimer - interval: parseFloat(UM.SimulationView.getSimulationTime[pathNumber]).toFixed(2) + interval: UM.SimulationView.simulationTime running: false repeat: true - property int pathNumber : 0 onTriggered: { var currentPath = UM.SimulationView.currentPath @@ -154,12 +153,10 @@ Item if (currentPath >= numPaths) { UM.SimulationView.setCurrentPath(0) - pathNumber =0 } else { UM.SimulationView.setCurrentPath(currentPath + 1) - pathNumber = 0 } } // If the simulation is already playing and we reach the end of a layer, then it automatically @@ -187,7 +184,6 @@ Item // The status must be set here instead of in the resumeSimulation function otherwise it won't work // correctly, because part of the logic is in this trigger function. isSimulationPlaying = true - pathNumber += 1 } } diff --git a/plugins/SimulationView/SimulationViewProxy.py b/plugins/SimulationView/SimulationViewProxy.py index 669f7fdbcc6..e80005fc365 100644 --- a/plugins/SimulationView/SimulationViewProxy.py +++ b/plugins/SimulationView/SimulationViewProxy.py @@ -2,9 +2,11 @@ # Cura is released under the terms of the LGPLv3 or higher. from typing import TYPE_CHECKING +import numpy from PyQt6.QtCore import QObject, pyqtSignal, pyqtProperty from UM.FlameProfiler import pyqtSlot from UM.Application import Application +from UM.Logger import Logger if TYPE_CHECKING: from .SimulationView import SimulationView @@ -54,6 +56,19 @@ def numPaths(self): def currentPath(self): return self._simulation_view.getCurrentPath() + @pyqtProperty(int, notify=currentPathChanged) + def simulationTime(self): + # This if is activated when there is a layer change + if numpy.all(self._simulation_view.getSimulationTime()==0) or len(self._simulation_view.getSimulationTime()) <= self._simulation_view.getCurrentPath(): + return 100 + # Extracts the currents paths simulation time (in seconds) from the dict of simulation time of the current layer. + # We multiply the time with 100 to make it to ms from s.(Should be 1000 in real time). This scaling makes the simulation time 10x faster than the real time. + simulationTimeOfpath =self._simulation_view.getSimulationTime()[0][self._simulation_view.getCurrentPath()] * 100 + # Since the timer cannot process time less than 1 ms, we put a lower limit here + if simulationTimeOfpath < 1: + return 1 + return int(simulationTimeOfpath) + @pyqtProperty(int, notify=currentPathChanged) def minimumPath(self): return self._simulation_view.getMinimumPath() From 7711c15ddedcce78e735d0a016f36e0134d3814d Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Fri, 8 Dec 2023 11:43:38 +0100 Subject: [PATCH 273/765] removed unnecessary import CURA-7647 --- plugins/SimulationView/SimulationViewProxy.py | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/SimulationView/SimulationViewProxy.py b/plugins/SimulationView/SimulationViewProxy.py index e80005fc365..8f83e9b4030 100644 --- a/plugins/SimulationView/SimulationViewProxy.py +++ b/plugins/SimulationView/SimulationViewProxy.py @@ -6,7 +6,6 @@ from PyQt6.QtCore import QObject, pyqtSignal, pyqtProperty from UM.FlameProfiler import pyqtSlot from UM.Application import Application -from UM.Logger import Logger if TYPE_CHECKING: from .SimulationView import SimulationView From f2f2f742bdfa10cd151566423cd9f405284216c1 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Fri, 8 Dec 2023 14:36:29 +0100 Subject: [PATCH 274/765] Apply suggestions from code review Co-authored-by: Casper Lamboo --- .github/workflows/conan-package.yml | 5 ++--- .github/workflows/installers.yml | 14 +++++--------- .github/workflows/linux.yml | 3 +-- .github/workflows/macos.yml | 3 +-- .github/workflows/process-pull-request.yml | 3 +-- .github/workflows/unit-test-post.yml | 3 +-- .github/workflows/unit-test.yml | 6 ++---- .github/workflows/windows.yml | 3 +-- conandata.yml | 18 +++++++++--------- 9 files changed, 23 insertions(+), 35 deletions(-) diff --git a/.github/workflows/conan-package.yml b/.github/workflows/conan-package.yml index 12567fde841..7ca2b0c4675 100644 --- a/.github/workflows/conan-package.yml +++ b/.github/workflows/conan-package.yml @@ -31,16 +31,15 @@ env: CONAN_LOGIN_USERNAME_CURA: ${{ secrets.CONAN_USER }} CONAN_PASSWORD_CURA: ${{ secrets.CONAN_PASS }} -# FIXME: point to `main` once merged jobs: conan-recipe-version: - uses: ultimaker/cura-workflows/.github/workflows/conan-recipe-version.yml@CURA-10831 + uses: ultimaker/cura-workflows/.github/workflows/conan-recipe-version.yml@main with: project_name: cura conan-package-export: needs: [ conan-recipe-version ] - uses: ultimaker/cura-workflows/.github/workflows/conan-recipe-export.yml@CURA-10831 + uses: ultimaker/cura-workflows/.github/workflows/conan-recipe-export.yml@main with: recipe_id_full: ${{ needs.conan-recipe-version.outputs.recipe_id_full }} recipe_id_latest: ${{ needs.conan-recipe-version.outputs.recipe_id_latest }} diff --git a/.github/workflows/installers.yml b/.github/workflows/installers.yml index aa1f5a49f01..6e531ba8334 100644 --- a/.github/workflows/installers.yml +++ b/.github/workflows/installers.yml @@ -42,16 +42,15 @@ env: jobs: default_values: - uses: ultimaker/cura-workflows/.github/workflows/cura-installer-default-value.yml@CURA-10831 + uses: ultimaker/cura-workflows/.github/workflows/cura-installer-default-value.yml@main with: cura_conan_version: ${{ inputs.cura_conan_version }} latest_release: '5.6' latest_release_schedule_hour: 4 latest_release_tag: 'nightly' - # FIXME: point to `main` once merged windows-installer: - uses: ultimaker/cura-workflows/.github/workflows/cura-installer-windows.yml@CURA-10831 + uses: ultimaker/cura-workflows/.github/workflows/cura-installer-windows.yml@main needs: [ default_values ] with: cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} @@ -62,9 +61,8 @@ jobs: operating_system: windows-2022 secrets: inherit - # FIXME: point to `main` once merged linux-installer: - uses: ultimaker/cura-workflows/.github/workflows/cura-installer-linux.yml@CURA-10831 + uses: ultimaker/cura-workflows/.github/workflows/cura-installer-linux.yml@main needs: [ default_values ] with: cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} @@ -75,9 +73,8 @@ jobs: operating_system: ubuntu-22.04 secrets: inherit - # FIXME: point to `main` once merged macos-installer: - uses: ultimaker/cura-workflows/.github/workflows/cura-installer-macos.yml@CURA-10831 + uses: ultimaker/cura-workflows/.github/workflows/cura-installer-macos.yml@main needs: [ default_values ] with: cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} @@ -88,9 +85,8 @@ jobs: operating_system: self-hosted-X64 secrets: inherit - # FIXME: point to `main` once merged macos-arm-installer: - uses: ultimaker/cura-workflows/.github/workflows/cura-installer-macos.yml@CURA-10831 + uses: ultimaker/cura-workflows/.github/workflows/cura-installer-macos.yml@main needs: [ default_values ] with: cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 535d0877003..2ad8f90bfe9 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -45,9 +45,8 @@ env: STAGING: ${{ inputs.staging || false }} jobs: - # FIXME: point to `main` once merged windows-installer: - uses: ultimaker/cura-workflows/.github/workflows/cura-installer-linux.yml@CURA-10831 + uses: ultimaker/cura-workflows/.github/workflows/cura-installer-linux.yml@main with: cura_conan_version: ${{ inputs.cura_conan_version }} conan_args: ${{ inputs.conan_args }} diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 02f45385e7c..d080fcc710a 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -49,9 +49,8 @@ env: STAGING: ${{ inputs.staging || false }} jobs: - # FIXME: point to `main` once merged windows-installer: - uses: ultimaker/cura-workflows/.github/workflows/cura-installer-macos.yml@CURA-10831 + uses: ultimaker/cura-workflows/.github/workflows/cura-installer-macos.yml@main with: cura_conan_version: ${{ inputs.cura_conan_version }} conan_args: ${{ inputs.conan_args }} diff --git a/.github/workflows/process-pull-request.yml b/.github/workflows/process-pull-request.yml index f34e26f13ee..45b3f8c915d 100644 --- a/.github/workflows/process-pull-request.yml +++ b/.github/workflows/process-pull-request.yml @@ -4,8 +4,7 @@ on: pull_request_target: types: [ opened, reopened, edited, review_requested, ready_for_review, assigned ] -# FIXME: Use `main` instead of `CURA-10831` once merged jobs: add_label: - uses: ultimaker/cura-workflows/.github/workflows/process-pull-request.yml@CURA-10831 + uses: ultimaker/cura-workflows/.github/workflows/process-pull-request.yml@main secrets: inherit \ No newline at end of file diff --git a/.github/workflows/unit-test-post.yml b/.github/workflows/unit-test-post.yml index b4ca2ee6996..eaf69692a7b 100644 --- a/.github/workflows/unit-test-post.yml +++ b/.github/workflows/unit-test-post.yml @@ -6,9 +6,8 @@ on: types: [ completed ] jobs: - # FIXME: Use `main` instead of `CURA-10831` once merged publish-test-results: - uses: ultimaker/cura-workflows/.github/workflows/unit-test-post.yml@CURA-10831 + uses: ultimaker/cura-workflows/.github/workflows/unit-test-post.yml@main with: event: ${{ github.event.workflow_run.event }} conclusion: ${{ github.event.workflow_run.conclusion }} diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 6369e7e3955..7c6910b39fe 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -45,15 +45,13 @@ env: CONAN_PASSWORD: ${{ secrets.CONAN_PASS }} jobs: - # FIXME: Change to `main` instead of `CURA-10831` once merged conan-recipe-version: - uses: ultimaker/cura-workflows/.github/workflows/conan-recipe-version.yml@CURA-10831 + uses: ultimaker/cura-workflows/.github/workflows/conan-recipe-version.yml@main with: project_name: cura testing: - # FIXME: Change to `main` instead of `CURA-10831` once merged - uses: ultimaker/cura-workflows/.github/workflows/unit-test.yml@CURA-10831 + uses: ultimaker/cura-workflows/.github/workflows/unit-test.yml@main needs: [ conan-recipe-version ] with: recipe_id_full: ${{ needs.conan-recipe-version.outputs.recipe_id_full }} diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index ef7e986ec3c..00079369698 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -45,9 +45,8 @@ env: STAGING: ${{ inputs.staging || false }} jobs: - # FIXME: point to `main` once merged windows-installer: - uses: ultimaker/cura-workflows/.github/workflows/cura-installer-windows.yml@CURA-10831 + uses: ultimaker/cura-workflows/.github/workflows/cura-installer-windows.yml@main with: cura_conan_version: ${{ inputs.cura_conan_version }} conan_args: ${{ inputs.conan_args }} diff --git a/conandata.yml b/conandata.yml index 0eec369c968..a28954bb3fd 100644 --- a/conandata.yml +++ b/conandata.yml @@ -1,18 +1,18 @@ version: "5.7.0-alpha.0" requirements: - - "uranium/(latest)@ultimaker/cura_10831" - - "curaengine/(latest)@ultimaker/cura_10831" - - "cura_binary_data/(latest)@ultimaker/cura_10831" - - "fdm_materials/(latest)@ultimaker/cura_10831" - - "curaengine_plugin_gradual_flow/(latest)@ultimaker/cura_10831" - - "dulcificum/(latest)@ultimaker/cura_10831" + - "uranium/(latest)@ultimaker/latest" + - "curaengine/(latest)@ultimaker/latest" + - "cura_binary_data/(latest)@ultimaker/latest" + - "fdm_materials/(latest)@ultimaker/latest" + - "curaengine_plugin_gradual_flow/(latest)@ultimaker/stable" + - "dulcificum/(latest)@ultimaker/latest" - "pyarcus/5.3.0" - "pysavitar/5.3.0" - "pynest2d/5.3.0" - - "curaengine_grpc_definitions/(latest)@ultimaker/cura_10831" + - "curaengine_grpc_definitions/(latest)@ultimaker/latest" requirements_internal: - - "fdm_materials/(latest)@internal/cura_10831" - - "cura_private_data/(latest)@internal/cura_10831" + - "fdm_materials/(latest)@internal/latest" + - "cura_private_data/(latest)@internal/latest" urls: default: cloud_api_root: "https://api.ultimaker.com" From d9b75cedef53cc581c61a78d11f862e8540ed234 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Fri, 8 Dec 2023 15:07:41 +0100 Subject: [PATCH 275/765] point to testing Contributes to CURA-10831 --- conandata.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/conandata.yml b/conandata.yml index a28954bb3fd..c4dd1ce6de4 100644 --- a/conandata.yml +++ b/conandata.yml @@ -1,18 +1,18 @@ version: "5.7.0-alpha.0" requirements: - - "uranium/(latest)@ultimaker/latest" - - "curaengine/(latest)@ultimaker/latest" - - "cura_binary_data/(latest)@ultimaker/latest" - - "fdm_materials/(latest)@ultimaker/latest" + - "uranium/(latest)@ultimaker/testing" + - "curaengine/(latest)@ultimaker/testing" + - "cura_binary_data/(latest)@ultimaker/testing" + - "fdm_materials/(latest)@ultimaker/testing" - "curaengine_plugin_gradual_flow/(latest)@ultimaker/stable" - - "dulcificum/(latest)@ultimaker/latest" + - "dulcificum/(latest)@ultimaker/testing" - "pyarcus/5.3.0" - "pysavitar/5.3.0" - "pynest2d/5.3.0" - - "curaengine_grpc_definitions/(latest)@ultimaker/latest" + - "curaengine_grpc_definitions/(latest)@ultimaker/testing" requirements_internal: - - "fdm_materials/(latest)@internal/latest" - - "cura_private_data/(latest)@internal/latest" + - "fdm_materials/(latest)@internal/testing" + - "cura_private_data/(latest)@internal/testing" urls: default: cloud_api_root: "https://api.ultimaker.com" From 16715e6a3baac8d9e214096895648c935407b262 Mon Sep 17 00:00:00 2001 From: Christopher Peredy <16451370+mastercaution@users.noreply.github.com> Date: Sat, 9 Dec 2023 16:55:36 +0100 Subject: [PATCH 276/765] EN4 update Neptune 4 (Pro) definition Update same acceleration and start G-code settings according to Elegoo Cura v4.8.0_20231208. --- .../definitions/elegoo_neptune_4.def.json | 21 ++++++++++++------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/resources/definitions/elegoo_neptune_4.def.json b/resources/definitions/elegoo_neptune_4.def.json index 21fd28f6f73..ed4856f540d 100644 --- a/resources/definitions/elegoo_neptune_4.def.json +++ b/resources/definitions/elegoo_neptune_4.def.json @@ -9,16 +9,21 @@ }, "overrides": { - "acceleration_layer_0": { "value": 3000 }, - "acceleration_print": { "value": 3000 }, - "acceleration_travel": { "value": 5000 }, + "acceleration_print": + { + "default_value": 10000, + "maximum_value_warning": "20000", + "value": 10000 + }, + "acceleration_wall": { "value": "acceleration_print/2" }, "cool_fan_full_layer": { "value": 2 }, "infill_line_width": { "value": "line_width + 0.05" }, "infill_overlap": { "value": "0 if infill_sparse_density < 40.01 and infill_pattern != 'concentric' else -5" }, + "infill_pattern": { "value": "'lines' if infill_sparse_density > 35 else 'grid'" }, "initial_layer_line_width_factor": { "value": "100.0 if resolveOrValue('adhesion_type') == 'raft' else 125 if line_width < 0.5 else 110" }, - "machine_acceleration": { "value": 3000 }, + "machine_acceleration": { "value": 5000 }, "machine_depth": { "default_value": 230 }, - "machine_end_gcode": { "default_value": "G91 ;Relative positionning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z2 ;Raise Z more\nG90 ;Absolute positionning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, + "machine_end_gcode": { "default_value": "G91 ;Relative positionning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z2 ;Raise Z more\nG90 ;Absolute positionning\nG1 X0 Y{machine_depth - 5} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_head_with_fans_polygon": { @@ -32,12 +37,12 @@ "machine_heated_bed": { "default_value": true }, "machine_height": { "default_value": 270 }, "machine_max_acceleration_e": { "value": 5000 }, - "machine_max_acceleration_x": { "value": 5000 }, - "machine_max_acceleration_y": { "value": 5000 }, + "machine_max_acceleration_x": { "value": 20000 }, + "machine_max_acceleration_y": { "value": 20000 }, "machine_name": { "default_value": "ELEGOO NEPTUNE 4" }, "machine_nozzle_cool_down_speed": { "value": 0.75 }, "machine_nozzle_heat_up_speed": { "value": 1.6 }, - "machine_start_gcode": { "default_value": "G28 ;home\nG92 E0 ;Reset Extruder\nG1 Z4.0 F3000 ;Move Z Axis up\nG92 E0 ;Reset Extruder\nG1 X1.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X1.1 Y80.0 Z0.28 F1500.0 E10 ;Draw the first line\nG1 X1.4 Y80.0 Z0.28 F5000.0 ;Move to side a little\nG1 X1.4 Y20 Z0.28 F1500.0 E20 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up" }, + "machine_start_gcode": { "default_value": ";ELEGOO NEPTUNE 4 / 4 PRO\nM220 S100 ;Set the feed speed to 100%\nM221 S100 ;Set the flow rate to 100%\nM104 S140 ;Start heating extruder\nM190 S{material_bed_temperature_layer_0} ;Wait for the bed to reach print temp\nG90\nG28 ;home\nG1 Z10 F300\nG1 X67.5 Y0 F6000\nG1 Z0 F300\nM109 S{material_print_temperature_layer_0} ;Wait for extruder to reach print temp\nG92 E0 ;Reset Extruder\nG1 X67.5 Y0 Z0.4 F300 ;Move to start position\nG1 X167.5 E30 F400 ;Draw the first line\nG1 Z0.6 F120.0 ;Move to side a little\nG1 X162.5 F3000\nG92 E0 ;Reset Extruder" }, "machine_width": { "default_value": 235 }, "retraction_amount": { "default_value": 0.5 }, "retraction_count_max": { "value": 80 }, From 94f14b53f89f1e5c61a18aa22002af22d7a773b5 Mon Sep 17 00:00:00 2001 From: Christopher Peredy <16451370+mastercaution@users.noreply.github.com> Date: Sat, 9 Dec 2023 16:58:24 +0100 Subject: [PATCH 277/765] EN4 add Neptune 4 Plus and Max variants --- .../definitions/elegoo_neptune_4max.def.json | 57 +++++++++++++++++++ .../definitions/elegoo_neptune_4plus.def.json | 57 +++++++++++++++++++ .../elegoo_neptune_4max_0.20.inst.cfg | 13 +++++ .../elegoo_neptune_4max_0.40.inst.cfg | 13 +++++ .../elegoo_neptune_4max_0.60.inst.cfg | 13 +++++ .../elegoo_neptune_4max_0.80.inst.cfg | 13 +++++ .../elegoo_neptune_4plus_0.20.inst.cfg | 13 +++++ .../elegoo_neptune_4plus_0.40.inst.cfg | 13 +++++ .../elegoo_neptune_4plus_0.60.inst.cfg | 13 +++++ .../elegoo_neptune_4plus_0.80.inst.cfg | 13 +++++ 10 files changed, 218 insertions(+) create mode 100644 resources/definitions/elegoo_neptune_4max.def.json create mode 100644 resources/definitions/elegoo_neptune_4plus.def.json create mode 100644 resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.20.inst.cfg create mode 100644 resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.40.inst.cfg create mode 100644 resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.60.inst.cfg create mode 100644 resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.80.inst.cfg create mode 100644 resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.20.inst.cfg create mode 100644 resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.40.inst.cfg create mode 100644 resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.60.inst.cfg create mode 100644 resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.80.inst.cfg diff --git a/resources/definitions/elegoo_neptune_4max.def.json b/resources/definitions/elegoo_neptune_4max.def.json new file mode 100644 index 00000000000..c2240594b03 --- /dev/null +++ b/resources/definitions/elegoo_neptune_4max.def.json @@ -0,0 +1,57 @@ +{ + "version": 2, + "name": "ELEGOO NEPTUNE 4 Max", + "inherits": "elegoo_neptune_4", + "metadata": + { + "visible": true, + "author": "mastercaution", + "quality_definition": "elegoo_neptune_4" + }, + "overrides": + { + "acceleration_print": + { + "default_value": 2500, + "maximum_value_warning": "15000", + "value": 2500 + }, + "machine_depth": { "default_value": 430 }, + "machine_height": { "default_value": 482 }, + "machine_max_acceleration_e": { "value": 5000 }, + "machine_max_acceleration_x": { "value": 15000 }, + "machine_max_acceleration_y": { "value": 15000 }, + "machine_name": { "default_value": "ELEGOO NEPTUNE 4 Max" }, + "machine_start_gcode": { "default_value": ";ELEGOO NEPTUNE 4 MAX\nM220 S100 ;Set the feed speed to 100%\nM221 S100 ;Set the flow rate to 100%\nM104 S140 ;Start heating extruder\nM190 S{material_bed_temperature_layer_0} ;Wait for the bed to reach print temp\nG90\nG28 ;home\nG1 Z10 F300\nG1 X165 Y0 F6000\nG1 Z0 F300\nM109 S{material_print_temperature_layer_0} ;Wait for extruder to reach print temp\nG92 E0 ;Reset Extruder\nG1 X165 Y0 Z0.4 F300 ;Move to start position\nG1 X265 E30 F400 ;Draw the first line\nG1 Z0.6 F120.0 ;Move to side a little\nG1 X260 F3000\nG92 E0 ;Reset Extruder" }, + "machine_width": { "default_value": 430 }, + "nozzle_disallowed_areas": + { + "default_value": [ + [ + [-165, -165], + [-165, 165], + [-161, 165], + [-161, -165] + ], + [ + [165, 165], + [165, -165], + [161, -165], + [161, 165] + ], + [ + [-165, -165], + [165, -165], + [-165, -161], + [165, -161] + ], + [ + [-165, 165], + [165, 165], + [-165, 161], + [165, 161] + ] + ] + } + } +} \ No newline at end of file diff --git a/resources/definitions/elegoo_neptune_4plus.def.json b/resources/definitions/elegoo_neptune_4plus.def.json new file mode 100644 index 00000000000..703db646348 --- /dev/null +++ b/resources/definitions/elegoo_neptune_4plus.def.json @@ -0,0 +1,57 @@ +{ + "version": 2, + "name": "ELEGOO NEPTUNE 4 Plus", + "inherits": "elegoo_neptune_4", + "metadata": + { + "visible": true, + "author": "mastercaution", + "quality_definition": "elegoo_neptune_4" + }, + "overrides": + { + "acceleration_print": + { + "default_value": 4000, + "value": 4000 + }, + "machine_acceleration": { "value": 4000 }, + "machine_depth": { "default_value": 330 }, + "machine_height": { "default_value": 387 }, + "machine_max_acceleration_e": { "value": 5000 }, + "machine_max_acceleration_x": { "value": 20000 }, + "machine_max_acceleration_y": { "value": 20000 }, + "machine_name": { "default_value": "ELEGOO NEPTUNE 4 Plus" }, + "machine_start_gcode": { "default_value": ";ELEGOO NEPTUNE 4 PLUS\nM220 S100 ;Set the feed speed to 100%\nM221 S100 ;Set the flow rate to 100%\nM104 S140 ;Start heating extruder\nM190 S{material_bed_temperature_layer_0} ;Wait for the bed to reach print temp\nG90\nG28 ;home\nG1 Z10 F300\nG1 X115 Y0 F6000\nG1 Z0 F300\nM109 S{material_print_temperature_layer_0} ;Wait for extruder to reach print temp\nG92 E0 ;Reset Extruder\nG1 X115 Y0 Z0.4 F300 ;Move to start position\nG1 X215 E30 F400 ;Draw the first line\nG1 Z0.6 F120.0 ;Move to side a little\nG1 X210 F3000\nG92 E0 ;Reset Extruder" }, + "machine_width": { "default_value": 330 }, + "nozzle_disallowed_areas": + { + "default_value": [ + [ + [-165, -165], + [-165, 165], + [-161, 165], + [-161, -165] + ], + [ + [165, 165], + [165, -165], + [161, -165], + [161, 165] + ], + [ + [-165, -165], + [165, -165], + [-165, -161], + [165, -161] + ], + [ + [-165, 165], + [165, 165], + [-165, 161], + [165, 161] + ] + ] + } + } +} \ No newline at end of file diff --git a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.20.inst.cfg new file mode 100644 index 00000000000..5dea2c50ce0 --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.20.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4max +name = 0.20mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.40.inst.cfg new file mode 100644 index 00000000000..a7d62bdcffd --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4max +name = 0.40mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.60.inst.cfg new file mode 100644 index 00000000000..018d6d4881e --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.60.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4max +name = 0.60mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.80.inst.cfg new file mode 100644 index 00000000000..fc7177d14c5 --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.80.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4max +name = 0.80mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.20.inst.cfg new file mode 100644 index 00000000000..16ac330f8ab --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.20.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4plus +name = 0.20mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.40.inst.cfg new file mode 100644 index 00000000000..2d0237ff34f --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4plus +name = 0.40mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.60.inst.cfg new file mode 100644 index 00000000000..bd960d80e16 --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.60.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4plus +name = 0.60mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.80.inst.cfg new file mode 100644 index 00000000000..32d38604985 --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.80.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4plus +name = 0.80mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + From 3da4fb2d263012612becba3b32289ef12141abb6 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 11 Dec 2023 09:13:36 +0100 Subject: [PATCH 278/765] Install pdb files Contribute to CURA-11443 --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index e9d06452f30..a3ca8f1c898 100644 --- a/conanfile.py +++ b/conanfile.py @@ -242,7 +242,7 @@ def _generate_pyinstaller_spec(self, location, entrypoint_location, icon_path, e self.output.warning(f"Source path for binary {binary['binary']} does not exist") continue - for bin in Path(src_path).glob(binary["binary"] + "*[.exe|.dll|.so|.dylib|.so.]*"): + for bin in Path(src_path).glob(binary["binary"] + "*[.exe|.dll|.so|.dylib|.so.|.pdb]*"): binaries.append((str(bin), binary["dst"])) for bin in Path(src_path).glob(binary["binary"]): binaries.append((str(bin), binary["dst"])) From ab480a29ce42d1d8481a5108f169a191b0707d52 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 11 Dec 2023 09:16:59 +0100 Subject: [PATCH 279/765] Use CuraEngine CURA-11443 Contribute to CURA-11443 --- conandata.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conandata.yml b/conandata.yml index c4dd1ce6de4..7f542add2a6 100644 --- a/conandata.yml +++ b/conandata.yml @@ -1,7 +1,7 @@ version: "5.7.0-alpha.0" requirements: - "uranium/(latest)@ultimaker/testing" - - "curaengine/(latest)@ultimaker/testing" + - "curaengine/(latest)@ultimaker/cura_11443" - "cura_binary_data/(latest)@ultimaker/testing" - "fdm_materials/(latest)@ultimaker/testing" - "curaengine_plugin_gradual_flow/(latest)@ultimaker/stable" From a19c667106fce8ab4e6f7c7f50bd16c709d2aa51 Mon Sep 17 00:00:00 2001 From: Saumya Jain <70144862+saumyaj3@users.noreply.github.com> Date: Mon, 11 Dec 2023 14:29:33 +0100 Subject: [PATCH 280/765] Update plugins/SimulationView/SimulationViewProxy.py simplified code Co-authored-by: Casper Lamboo --- plugins/SimulationView/SimulationViewProxy.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/plugins/SimulationView/SimulationViewProxy.py b/plugins/SimulationView/SimulationViewProxy.py index 8f83e9b4030..e3d5ca13a72 100644 --- a/plugins/SimulationView/SimulationViewProxy.py +++ b/plugins/SimulationView/SimulationViewProxy.py @@ -64,9 +64,7 @@ def simulationTime(self): # We multiply the time with 100 to make it to ms from s.(Should be 1000 in real time). This scaling makes the simulation time 10x faster than the real time. simulationTimeOfpath =self._simulation_view.getSimulationTime()[0][self._simulation_view.getCurrentPath()] * 100 # Since the timer cannot process time less than 1 ms, we put a lower limit here - if simulationTimeOfpath < 1: - return 1 - return int(simulationTimeOfpath) + return int(max(1, simulationTimeOfpath)) @pyqtProperty(int, notify=currentPathChanged) def minimumPath(self): From ba0fb97d6373bd51c143a4ad7169885bf354c236 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 12 Dec 2023 10:01:59 +0100 Subject: [PATCH 281/765] Include threshold settings Contributes to CURA-11391 --- resources/definitions/fdmprinter.def.json | 82 +++++++++++++++++++++++ 1 file changed, 82 insertions(+) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index b640fb5746d..85785981d6f 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -8305,6 +8305,88 @@ } } }, + "ppr": + { + "label": "Print Process Reporting", + "type": "category", + "icon": "DocumentFilled", + "description": "Reporting events that go out of set thresholds", + "enabled": false, + "children": + { + "ppr_enable": + { + "label": "Enable Print Process Reporting", + "description": "Enable print process reporting for setting threshold values for possible fault detection.", + "type": "bool", + "enabled": false, + "default_value": false, + "value": false, + "settable_per_mesh": false, + "settable_per_extruder": false + }, + "flow_warn_limit": + { + "label": "Flow Warning Detection Limit", + "description": "Limit on the flow warning for detection.", + "default_value": "15.0", + "enabled": "ppr_enable", + "unit": "%", + "type": "float", + "settable_per_extruder": true + }, + "flow_anomaly_limit": + { + "label": "Flow Anomaly Detection Limit", + "description": "Limit on flow anomaly for detection.", + "default_value": "25.0", + "enabled": "ppr_enable", + "unit": "%", + "type": "float", + "settable_per_extruder": true + }, + "print_temp_warn_limit": + { + "label": "Print temperature Warning Detection Limit", + "description": "Limit on Print temperature warning for detection.", + "unit": "\u00b0C", + "type": "float", + "default_value": "3.0", + "enabled": "ppr_enable", + "settable_per_extruder": true + }, + "print_temp_anomaly_limit": + { + "label": "Print temperature Anomaly Detection Limit", + "description": "Limit on Print Temperature anomaly for detection.", + "unit": "\u00b0C", + "type": "float", + "default_value": "7.0", + "enabled": "ppr_enable", + "settable_per_extruder": true + }, + "bv_temp_warn_limit": + { + "label": "Build Volume temperature Warning Detection Limit", + "description": "Limit on Build Volume Temperature warning for detection.", + "unit": "\u00b0C", + "type": "float", + "default_value": "7.5", + "enabled": "ppr_enable", + "settable_per_extruder": false + }, + "bv_temp_anomaly_limit": + { + "label": "Build Volume temperature Anomaly Detection Limit", + "description": "Limit on Build Volume temperature Anomaly for detection.", + "unit": "\u00b0C", + "type": "float", + "default_value": "10.0", + "enabled": "ppr_enable", + "settable_per_extruder": false + } + } + }, "command_line_settings": { "label": "Command Line Settings", From cc4627886b85f2e1ef94f3190350e812d591a303 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Tue, 12 Dec 2023 13:01:37 +0100 Subject: [PATCH 282/765] Name shortned for Cura settings CURA-11392 --- resources/definitions/fdmprinter.def.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 85785981d6f..62143cf8f8a 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -8327,7 +8327,7 @@ }, "flow_warn_limit": { - "label": "Flow Warning Detection Limit", + "label": "Flow Warning", "description": "Limit on the flow warning for detection.", "default_value": "15.0", "enabled": "ppr_enable", @@ -8337,7 +8337,7 @@ }, "flow_anomaly_limit": { - "label": "Flow Anomaly Detection Limit", + "label": "Flow Limit", "description": "Limit on flow anomaly for detection.", "default_value": "25.0", "enabled": "ppr_enable", @@ -8347,7 +8347,7 @@ }, "print_temp_warn_limit": { - "label": "Print temperature Warning Detection Limit", + "label": "Print temperature Warning", "description": "Limit on Print temperature warning for detection.", "unit": "\u00b0C", "type": "float", @@ -8357,7 +8357,7 @@ }, "print_temp_anomaly_limit": { - "label": "Print temperature Anomaly Detection Limit", + "label": "Print temperature Limit", "description": "Limit on Print Temperature anomaly for detection.", "unit": "\u00b0C", "type": "float", @@ -8367,7 +8367,7 @@ }, "bv_temp_warn_limit": { - "label": "Build Volume temperature Warning Detection Limit", + "label": "Build Volume temperature Warning", "description": "Limit on Build Volume Temperature warning for detection.", "unit": "\u00b0C", "type": "float", @@ -8377,7 +8377,7 @@ }, "bv_temp_anomaly_limit": { - "label": "Build Volume temperature Anomaly Detection Limit", + "label": "Build Volume temperature Limit", "description": "Limit on Build Volume temperature Anomaly for detection.", "unit": "\u00b0C", "type": "float", From 189a22aa4fc9a5414424760ccab87a0418cf99d7 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Tue, 12 Dec 2023 14:56:06 +0100 Subject: [PATCH 283/765] refactoring of code for easier access and avoid hanging issues CURA-7647 --- plugins/SimulationView/SimulationView.py | 13 +++++++++---- plugins/SimulationView/SimulationViewProxy.py | 7 ++----- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/plugins/SimulationView/SimulationView.py b/plugins/SimulationView/SimulationView.py index 6874b276254..186036a5811 100644 --- a/plugins/SimulationView/SimulationView.py +++ b/plugins/SimulationView/SimulationView.py @@ -402,10 +402,13 @@ def getMinFeedrate(self) -> float: def getMaxFeedrate(self) -> float: return self._max_feedrate - def getSimulationTime(self) -> list: - if len(self._lengths_of_polyline) > 0 and len(self._lengths_of_polyline) == len(self._current_feedrates): - return self._lengths_of_polyline[self._current_layer_num] / self._current_feedrates[self._current_layer_num] - return numpy.zeros(0) + def getSimulationTime(self, currentIndex) -> list: + try: + return self._lengths_of_polyline[self._current_layer_num][currentIndex] / self._current_feedrates[self._current_layer_num][currentIndex] + except: + # In case of change in layers, currentIndex comes one more than the items in the lengths_of_polyline + # We give 1 second time for layer change + return 1 def getMinThickness(self) -> float: if abs(self._min_thickness - sys.float_info.max) < 10: # Some lenience due to floating point rounding. @@ -535,6 +538,8 @@ def calculateColorSchemeLimits(self) -> None: visible_feedrates = numpy.take(polyline.lineFeedrates, visible_indices) visible_feedrates_with_extrusion = numpy.take(polyline.lineFeedrates, visible_indicies_with_extrusion) self._current_feedrates[layer_index] = polyline.lineFeedrates + # if len(polyline.lineLengths) > 0 and len(polyline.lineLengths) == len(polyline.lineFeedrates): + # self._simulation_time[layer_index] = polyline.lineLengths / polyline.lineFeedrates visible_linewidths = numpy.take(polyline.lineWidths, visible_indices) visible_linewidths_with_extrusion = numpy.take(polyline.lineWidths, visible_indicies_with_extrusion) visible_thicknesses = numpy.take(polyline.lineThicknesses, visible_indices) diff --git a/plugins/SimulationView/SimulationViewProxy.py b/plugins/SimulationView/SimulationViewProxy.py index e3d5ca13a72..61366fccbb7 100644 --- a/plugins/SimulationView/SimulationViewProxy.py +++ b/plugins/SimulationView/SimulationViewProxy.py @@ -57,12 +57,9 @@ def currentPath(self): @pyqtProperty(int, notify=currentPathChanged) def simulationTime(self): - # This if is activated when there is a layer change - if numpy.all(self._simulation_view.getSimulationTime()==0) or len(self._simulation_view.getSimulationTime()) <= self._simulation_view.getCurrentPath(): - return 100 - # Extracts the currents paths simulation time (in seconds) from the dict of simulation time of the current layer. + # Extracts the currents paths simulation time (in seconds) for the current path from the dict of simulation time of the current layer. # We multiply the time with 100 to make it to ms from s.(Should be 1000 in real time). This scaling makes the simulation time 10x faster than the real time. - simulationTimeOfpath =self._simulation_view.getSimulationTime()[0][self._simulation_view.getCurrentPath()] * 100 + simulationTimeOfpath = self._simulation_view.getSimulationTime(self._simulation_view.getCurrentPath()) * 100 # Since the timer cannot process time less than 1 ms, we put a lower limit here return int(max(1, simulationTimeOfpath)) From 3c0b9a65db5e204cecc0dcdb43d8dd59d3b1d4f0 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Tue, 12 Dec 2023 14:59:41 +0100 Subject: [PATCH 284/765] removing commented code CURA-7647 --- plugins/SimulationView/SimulationView.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugins/SimulationView/SimulationView.py b/plugins/SimulationView/SimulationView.py index 186036a5811..cbf5e571fce 100644 --- a/plugins/SimulationView/SimulationView.py +++ b/plugins/SimulationView/SimulationView.py @@ -538,8 +538,6 @@ def calculateColorSchemeLimits(self) -> None: visible_feedrates = numpy.take(polyline.lineFeedrates, visible_indices) visible_feedrates_with_extrusion = numpy.take(polyline.lineFeedrates, visible_indicies_with_extrusion) self._current_feedrates[layer_index] = polyline.lineFeedrates - # if len(polyline.lineLengths) > 0 and len(polyline.lineLengths) == len(polyline.lineFeedrates): - # self._simulation_time[layer_index] = polyline.lineLengths / polyline.lineFeedrates visible_linewidths = numpy.take(polyline.lineWidths, visible_indices) visible_linewidths_with_extrusion = numpy.take(polyline.lineWidths, visible_indicies_with_extrusion) visible_thicknesses = numpy.take(polyline.lineThicknesses, visible_indices) From a9aba2df748977554a454ce3e7d7b1667d152e8d Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Tue, 12 Dec 2023 16:06:22 +0100 Subject: [PATCH 285/765] maintenence. CURA-7647 --- plugins/SimulationView/SimulationView.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/plugins/SimulationView/SimulationView.py b/plugins/SimulationView/SimulationView.py index cbf5e571fce..a659a6de971 100644 --- a/plugins/SimulationView/SimulationView.py +++ b/plugins/SimulationView/SimulationView.py @@ -402,13 +402,14 @@ def getMinFeedrate(self) -> float: def getMaxFeedrate(self) -> float: return self._max_feedrate - def getSimulationTime(self, currentIndex) -> list: + def getSimulationTime(self, currentIndex) -> float: try: - return self._lengths_of_polyline[self._current_layer_num][currentIndex] / self._current_feedrates[self._current_layer_num][currentIndex] + return (self._lengths_of_polyline[self._current_layer_num][currentIndex] / self._current_feedrates[self._current_layer_num][currentIndex])[0] + except: # In case of change in layers, currentIndex comes one more than the items in the lengths_of_polyline # We give 1 second time for layer change - return 1 + return 1.0 def getMinThickness(self) -> float: if abs(self._min_thickness - sys.float_info.max) < 10: # Some lenience due to floating point rounding. From 84565b7daa03613087b2544b78fc944e249eae3d Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Tue, 12 Dec 2023 16:53:34 +0100 Subject: [PATCH 286/765] removal of magic number CURA-7647 --- plugins/SimulationView/SimulationViewProxy.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/plugins/SimulationView/SimulationViewProxy.py b/plugins/SimulationView/SimulationViewProxy.py index 61366fccbb7..576281874cd 100644 --- a/plugins/SimulationView/SimulationViewProxy.py +++ b/plugins/SimulationView/SimulationViewProxy.py @@ -12,6 +12,11 @@ class SimulationViewProxy(QObject): + + S_TO_MS = 1000 + SPEED_OF_SIMULATION = 10 + FACTOR = S_TO_MS/SPEED_OF_SIMULATION + def __init__(self, simulation_view: "SimulationView", parent=None) -> None: super().__init__(parent) self._simulation_view = simulation_view @@ -59,7 +64,7 @@ def currentPath(self): def simulationTime(self): # Extracts the currents paths simulation time (in seconds) for the current path from the dict of simulation time of the current layer. # We multiply the time with 100 to make it to ms from s.(Should be 1000 in real time). This scaling makes the simulation time 10x faster than the real time. - simulationTimeOfpath = self._simulation_view.getSimulationTime(self._simulation_view.getCurrentPath()) * 100 + simulationTimeOfpath = self._simulation_view.getSimulationTime(self._simulation_view.getCurrentPath()) * SimulationViewProxy.FACTOR # Since the timer cannot process time less than 1 ms, we put a lower limit here return int(max(1, simulationTimeOfpath)) From 3472ec26a10c330cd6aea040ef70e0d6db94434d Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Tue, 12 Dec 2023 17:19:28 +0100 Subject: [PATCH 287/765] Fix snapshot for makerbot CURA-11442 --- cura/Snapshot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/Snapshot.py b/cura/Snapshot.py index 40c74c96935..f94b3ff42ed 100644 --- a/cura/Snapshot.py +++ b/cura/Snapshot.py @@ -49,7 +49,7 @@ def isometricSnapshot(width: int = 300, height: int = 300, *, node: Optional[Sce """ if node is None: - root = Application.getInstance().getController().getScene().getRoot() + node = Application.getInstance().getController().getScene().getRoot() # the direction the camera is looking at to create the isometric view iso_view_dir = Vector(-1, -1, -1).normalized() From 5125c7d33a6dd1f36374d084d8100e22c9c3f99c Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Wed, 13 Dec 2023 17:00:02 +0100 Subject: [PATCH 288/765] Don't package system managed openssl This should fall back on the Conan package ssl version which is in the root of the AppDir Contributes to CURA-11080 --- packaging/AppImage-builder/AppImageBuilder.yml.jinja | 1 + 1 file changed, 1 insertion(+) diff --git a/packaging/AppImage-builder/AppImageBuilder.yml.jinja b/packaging/AppImage-builder/AppImageBuilder.yml.jinja index 446c0dacc08..9090a5f209d 100644 --- a/packaging/AppImage-builder/AppImageBuilder.yml.jinja +++ b/packaging/AppImage-builder/AppImageBuilder.yml.jinja @@ -38,6 +38,7 @@ AppDir: - usr/share/doc/*/changelog.* - usr/share/doc/*/NEWS.* - usr/share/doc/*/TODO.* + - usr/lib/x86_64-linux-gnu/libssl.so* runtime: env: APPDIR_LIBRARY_PATH: "$APPDIR:$APPDIR/runtime/compat/:$APPDIR/usr/lib/x86_64-linux-gnu:$APPDIR/lib/x86_64-linux-gnu:$APPDIR/usr/lib:$APPDIR/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders" From 8116df6c2162a1877a169d3949e15e377faac30a Mon Sep 17 00:00:00 2001 From: Dmitry Gribenchuk Date: Wed, 13 Dec 2023 20:10:28 +0200 Subject: [PATCH 289/765] cleanup unused import and fix comment space --- plugins/3MFWriter/ThreeMFWriter.py | 3 --- plugins/DigitalLibrary/__init__.py | 1 - .../DigitalLibrary/src/DigitalFactoryApiClient.py | 1 - .../src/DigitalFactoryProjectModel.py | 1 - plugins/GCodeGzWriter/__init__.py | 1 - plugins/GCodeWriter/GCodeWriter.py | 1 - plugins/Marketplace/MissingPackageList.py | 2 -- plugins/Marketplace/PackageModel.py | 2 -- .../PerObjectSettingVisibilityHandler.py | 2 +- plugins/PostProcessingPlugin/scripts/ColorMix.py | 2 +- .../scripts/DisplayFilenameAndLayerOnLCD.py | 1 - .../scripts/DisplayInfoOnLCD.py | 3 --- .../scripts/DisplayProgressOnLCD.py | 2 -- .../PostProcessingPlugin/scripts/FilamentChange.py | 2 +- .../PostProcessingPlugin/scripts/PauseAtHeight.py | 2 +- .../scripts/SearchAndReplace.py | 2 +- .../RemovableDriveOutputDevice.py | 2 +- plugins/SimulationView/SimulationViewProxy.py | 1 - plugins/SliceInfoPlugin/SliceInfo.py | 2 +- plugins/SolidView/SolidView.py | 2 -- plugins/UFPWriter/UFPWriter.py | 1 - plugins/UFPWriter/__init__.py | 4 ++-- plugins/USBPrinting/AutoDetectBaudJob.py | 3 --- plugins/USBPrinting/USBPrinterOutputDevice.py | 8 ++++---- .../VersionUpgrade21to22/MachineInstance.py | 14 +++++++------- .../VersionUpgrade21to22/Preferences.py | 6 +++--- .../VersionUpgrade/VersionUpgrade21to22/Profile.py | 4 ++-- plugins/XRayView/XRayView.py | 1 - plugins/XmlMaterialProfile/XmlMaterialProfile.py | 6 +++--- scripts/fix_translation_memory.py | 3 +-- scripts/lionbridge_import.py | 6 +++--- 31 files changed, 32 insertions(+), 59 deletions(-) diff --git a/plugins/3MFWriter/ThreeMFWriter.py b/plugins/3MFWriter/ThreeMFWriter.py index ad4b0d8dadb..0a939e5b8a1 100644 --- a/plugins/3MFWriter/ThreeMFWriter.py +++ b/plugins/3MFWriter/ThreeMFWriter.py @@ -10,11 +10,8 @@ from UM.Logger import Logger from UM.Math.Matrix import Matrix from UM.Application import Application -from UM.Message import Message -from UM.Resources import Resources from UM.Scene.SceneNode import SceneNode from UM.Settings.ContainerRegistry import ContainerRegistry -from UM.Settings.EmptyInstanceContainer import EmptyInstanceContainer from cura.CuraApplication import CuraApplication from cura.CuraPackageManager import CuraPackageManager diff --git a/plugins/DigitalLibrary/__init__.py b/plugins/DigitalLibrary/__init__.py index 968aef66eea..fc27f873c8f 100644 --- a/plugins/DigitalLibrary/__init__.py +++ b/plugins/DigitalLibrary/__init__.py @@ -1,7 +1,6 @@ # Copyright (c) 2021 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. -from UM.MimeTypeDatabase import MimeType, MimeTypeDatabase from .src import DigitalFactoryFileProvider, DigitalFactoryOutputDevicePlugin, DigitalFactoryController diff --git a/plugins/DigitalLibrary/src/DigitalFactoryApiClient.py b/plugins/DigitalLibrary/src/DigitalFactoryApiClient.py index 11689285882..c0ce594ecf4 100644 --- a/plugins/DigitalLibrary/src/DigitalFactoryApiClient.py +++ b/plugins/DigitalLibrary/src/DigitalFactoryApiClient.py @@ -3,7 +3,6 @@ import json from json import JSONDecodeError -import re from time import time from typing import List, Any, Optional, Union, Type, Tuple, Dict, cast, TypeVar, Callable diff --git a/plugins/DigitalLibrary/src/DigitalFactoryProjectModel.py b/plugins/DigitalLibrary/src/DigitalFactoryProjectModel.py index 92aa92ef4c1..bd12a4ca12a 100644 --- a/plugins/DigitalLibrary/src/DigitalFactoryProjectModel.py +++ b/plugins/DigitalLibrary/src/DigitalFactoryProjectModel.py @@ -4,7 +4,6 @@ from PyQt6.QtCore import Qt, pyqtSignal -from UM.Logger import Logger from UM.Qt.ListModel import ListModel from .DigitalFactoryProjectResponse import DigitalFactoryProjectResponse diff --git a/plugins/GCodeGzWriter/__init__.py b/plugins/GCodeGzWriter/__init__.py index 95949eee74e..1f350d686c0 100644 --- a/plugins/GCodeGzWriter/__init__.py +++ b/plugins/GCodeGzWriter/__init__.py @@ -2,7 +2,6 @@ # Cura is released under the terms of the LGPLv3 or higher. from UM.i18n import i18nCatalog -from UM.Platform import Platform from . import GCodeGzWriter diff --git a/plugins/GCodeWriter/GCodeWriter.py b/plugins/GCodeWriter/GCodeWriter.py index 667e064d900..9fa4f886141 100644 --- a/plugins/GCodeWriter/GCodeWriter.py +++ b/plugins/GCodeWriter/GCodeWriter.py @@ -11,7 +11,6 @@ from cura.Machines.ContainerTree import ContainerTree from UM.i18n import i18nCatalog -from cura.Settings.CuraStackBuilder import CuraStackBuilder catalog = i18nCatalog("cura") diff --git a/plugins/Marketplace/MissingPackageList.py b/plugins/Marketplace/MissingPackageList.py index 018e9778232..38d7718dc05 100644 --- a/plugins/Marketplace/MissingPackageList.py +++ b/plugins/Marketplace/MissingPackageList.py @@ -3,12 +3,10 @@ from typing import Optional, TYPE_CHECKING, Dict, List -from .Constants import PACKAGES_URL from .PackageModel import PackageModel from .RemotePackageList import RemotePackageList from PyQt6.QtCore import pyqtSignal, QObject, pyqtProperty, QCoreApplication -from UM.TaskManagement.HttpRequestManager import HttpRequestManager # To request the package list from the API. from UM.i18n import i18nCatalog if TYPE_CHECKING: diff --git a/plugins/Marketplace/PackageModel.py b/plugins/Marketplace/PackageModel.py index afc6e0ce73b..ddd8f9b5316 100644 --- a/plugins/Marketplace/PackageModel.py +++ b/plugins/Marketplace/PackageModel.py @@ -2,7 +2,6 @@ # Cura is released under the terms of the LGPLv3 or higher. import re -from enum import Enum from typing import Any, cast, Dict, List, Optional from PyQt6.QtCore import pyqtProperty, QObject, pyqtSignal, pyqtSlot @@ -12,7 +11,6 @@ from cura.CuraPackageManager import CuraPackageManager from cura.Settings.CuraContainerRegistry import CuraContainerRegistry # To get names of materials we're compatible with. from UM.i18n import i18nCatalog # To translate placeholder names if data is not present. -from UM.Logger import Logger from UM.PluginRegistry import PluginRegistry catalog = i18nCatalog("cura") diff --git a/plugins/PerObjectSettingsTool/PerObjectSettingVisibilityHandler.py b/plugins/PerObjectSettingsTool/PerObjectSettingVisibilityHandler.py index 15f37e499de..d6b433a0c2a 100644 --- a/plugins/PerObjectSettingsTool/PerObjectSettingVisibilityHandler.py +++ b/plugins/PerObjectSettingsTool/PerObjectSettingVisibilityHandler.py @@ -11,7 +11,7 @@ from UM.Logger import Logger import UM.Settings.Models.SettingVisibilityHandler -from cura.Settings.ExtruderManager import ExtruderManager #To get global-inherits-stack setting values from different extruders. +from cura.Settings.ExtruderManager import ExtruderManager # To get global-inherits-stack setting values from different extruders. from cura.Settings.SettingOverrideDecorator import SettingOverrideDecorator diff --git a/plugins/PostProcessingPlugin/scripts/ColorMix.py b/plugins/PostProcessingPlugin/scripts/ColorMix.py index 534c0208cf9..000661b46ba 100644 --- a/plugins/PostProcessingPlugin/scripts/ColorMix.py +++ b/plugins/PostProcessingPlugin/scripts/ColorMix.py @@ -21,7 +21,7 @@ # M163 - Set Mix Factor # M164 - Save Mix - saves to T2 as a unique mix -import re #To perform the search and replace. +import re # To perform the search and replace. from ..Script import Script class ColorMix(Script): diff --git a/plugins/PostProcessingPlugin/scripts/DisplayFilenameAndLayerOnLCD.py b/plugins/PostProcessingPlugin/scripts/DisplayFilenameAndLayerOnLCD.py index bfe04b2beae..a5edb78d358 100644 --- a/plugins/PostProcessingPlugin/scripts/DisplayFilenameAndLayerOnLCD.py +++ b/plugins/PostProcessingPlugin/scripts/DisplayFilenameAndLayerOnLCD.py @@ -6,7 +6,6 @@ # Description: This plugin is now an option in 'Display Info on LCD' from ..Script import Script -from UM.Application import Application from UM.Message import Message class DisplayFilenameAndLayerOnLCD(Script): diff --git a/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py b/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py index 784a18b2e5a..63c1c8c7886 100644 --- a/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py +++ b/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py @@ -30,9 +30,6 @@ from ..Script import Script from UM.Application import Application from UM.Qt.Duration import DurationFormat -import UM.Util -import configparser -from UM.Preferences import Preferences import time import datetime import math diff --git a/plugins/PostProcessingPlugin/scripts/DisplayProgressOnLCD.py b/plugins/PostProcessingPlugin/scripts/DisplayProgressOnLCD.py index 4d24aedac05..03cb3755145 100644 --- a/plugins/PostProcessingPlugin/scripts/DisplayProgressOnLCD.py +++ b/plugins/PostProcessingPlugin/scripts/DisplayProgressOnLCD.py @@ -7,8 +7,6 @@ from ..Script import Script -import re -import datetime from UM.Message import Message class DisplayProgressOnLCD(Script): diff --git a/plugins/PostProcessingPlugin/scripts/FilamentChange.py b/plugins/PostProcessingPlugin/scripts/FilamentChange.py index 93941c09920..6fe28ef2f25 100644 --- a/plugins/PostProcessingPlugin/scripts/FilamentChange.py +++ b/plugins/PostProcessingPlugin/scripts/FilamentChange.py @@ -7,7 +7,7 @@ from typing import List from ..Script import Script -from UM.Application import Application #To get the current printer's settings. +from UM.Application import Application # To get the current printer's settings. class FilamentChange(Script): diff --git a/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py b/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py index 3d85740bd49..f502678317a 100644 --- a/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py +++ b/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py @@ -7,7 +7,7 @@ from ..Script import Script import re -from UM.Application import Application #To get the current printer's settings. +from UM.Application import Application # To get the current printer's settings. from UM.Logger import Logger from typing import List, Tuple diff --git a/plugins/PostProcessingPlugin/scripts/SearchAndReplace.py b/plugins/PostProcessingPlugin/scripts/SearchAndReplace.py index 7a12c229ccf..dabc6b725ab 100644 --- a/plugins/PostProcessingPlugin/scripts/SearchAndReplace.py +++ b/plugins/PostProcessingPlugin/scripts/SearchAndReplace.py @@ -1,7 +1,7 @@ # Copyright (c) 2017 Ghostkeeper # The PostProcessingPlugin is released under the terms of the LGPLv3 or higher. -import re #To perform the search and replace. +import re # To perform the search and replace. from ..Script import Script diff --git a/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py b/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py index 8c0c50d0b4a..a9a0666d9cb 100644 --- a/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py +++ b/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py @@ -8,7 +8,7 @@ from UM.Logger import Logger from UM.Message import Message from UM.FileHandler.WriteFileJob import WriteFileJob -from UM.FileHandler.FileWriter import FileWriter #To check against the write modes (text vs. binary). +from UM.FileHandler.FileWriter import FileWriter # To check against the write modes (text vs. binary). from UM.Scene.Iterator.BreadthFirstIterator import BreadthFirstIterator from UM.OutputDevice.OutputDevice import OutputDevice from UM.OutputDevice import OutputDeviceError diff --git a/plugins/SimulationView/SimulationViewProxy.py b/plugins/SimulationView/SimulationViewProxy.py index 576281874cd..3bf2ed6f496 100644 --- a/plugins/SimulationView/SimulationViewProxy.py +++ b/plugins/SimulationView/SimulationViewProxy.py @@ -2,7 +2,6 @@ # Cura is released under the terms of the LGPLv3 or higher. from typing import TYPE_CHECKING -import numpy from PyQt6.QtCore import QObject, pyqtSignal, pyqtProperty from UM.FlameProfiler import pyqtSlot from UM.Application import Application diff --git a/plugins/SliceInfoPlugin/SliceInfo.py b/plugins/SliceInfoPlugin/SliceInfo.py index 7e7a132c989..be021251da4 100755 --- a/plugins/SliceInfoPlugin/SliceInfo.py +++ b/plugins/SliceInfoPlugin/SliceInfo.py @@ -5,7 +5,7 @@ import os import platform import time -from typing import cast, Optional, Set, TYPE_CHECKING +from typing import Optional, Set, TYPE_CHECKING from PyQt6.QtCore import pyqtSlot, QObject from PyQt6.QtNetwork import QNetworkRequest diff --git a/plugins/SolidView/SolidView.py b/plugins/SolidView/SolidView.py index b7aeb90da43..7f32b0df7fa 100644 --- a/plugins/SolidView/SolidView.py +++ b/plugins/SolidView/SolidView.py @@ -16,8 +16,6 @@ from UM.Logger import Logger from UM.Message import Message from UM.Math.Color import Color -from UM.PluginRegistry import PluginRegistry -from UM.Platform import Platform from UM.Event import Event from UM.View.RenderBatch import RenderBatch diff --git a/plugins/UFPWriter/UFPWriter.py b/plugins/UFPWriter/UFPWriter.py index c8064ac37f5..475e5fc01ac 100644 --- a/plugins/UFPWriter/UFPWriter.py +++ b/plugins/UFPWriter/UFPWriter.py @@ -22,7 +22,6 @@ from UM.Scene.SceneNode import SceneNode from UM.Settings.InstanceContainer import InstanceContainer from cura.CuraApplication import CuraApplication -from cura.Settings.CuraStackBuilder import CuraStackBuilder from cura.Settings.GlobalStack import GlobalStack from cura.Utils.Threading import call_on_qt_thread diff --git a/plugins/UFPWriter/__init__.py b/plugins/UFPWriter/__init__.py index ae51f78e95c..85614548568 100644 --- a/plugins/UFPWriter/__init__.py +++ b/plugins/UFPWriter/__init__.py @@ -9,8 +9,8 @@ except ImportError: Logger.log("w", "Could not import UFPWriter; libCharon may be missing") -from UM.i18n import i18nCatalog #To translate the file format description. -from UM.Mesh.MeshWriter import MeshWriter #For the binary mode flag. +from UM.i18n import i18nCatalog # To translate the file format description. +from UM.Mesh.MeshWriter import MeshWriter # For the binary mode flag. i18n_catalog = i18nCatalog("cura") diff --git a/plugins/USBPrinting/AutoDetectBaudJob.py b/plugins/USBPrinting/AutoDetectBaudJob.py index 5a8e4557202..c26e5e88247 100644 --- a/plugins/USBPrinting/AutoDetectBaudJob.py +++ b/plugins/USBPrinting/AutoDetectBaudJob.py @@ -4,9 +4,6 @@ from UM.Job import Job from UM.Logger import Logger -from .avr_isp import ispBase -from .avr_isp.stk500v2 import Stk500v2 - from time import time, sleep from serial import Serial, SerialException diff --git a/plugins/USBPrinting/USBPrinterOutputDevice.py b/plugins/USBPrinting/USBPrinterOutputDevice.py index 1155420b608..85b98e532b6 100644 --- a/plugins/USBPrinting/USBPrinterOutputDevice.py +++ b/plugins/USBPrinting/USBPrinterOutputDevice.py @@ -5,9 +5,9 @@ from UM.i18n import i18nCatalog from UM.Logger import Logger -from UM.Mesh.MeshWriter import MeshWriter #To get the g-code output. -from UM.Message import Message #Show an error when already printing. -from UM.PluginRegistry import PluginRegistry #To get the g-code output. +from UM.Mesh.MeshWriter import MeshWriter # To get the g-code output. +from UM.Message import Message # Show an error when already printing. +from UM.PluginRegistry import PluginRegistry # To get the g-code output. from UM.Qt.Duration import DurationFormat from cura.CuraApplication import CuraApplication @@ -19,7 +19,7 @@ from .AutoDetectBaudJob import AutoDetectBaudJob from .AvrFirmwareUpdater import AvrFirmwareUpdater -from io import StringIO #To write the g-code output. +from io import StringIO # To write the g-code output. from queue import Queue from serial import Serial, SerialException, SerialTimeoutException from threading import Thread, Event diff --git a/plugins/VersionUpgrade/VersionUpgrade21to22/MachineInstance.py b/plugins/VersionUpgrade/VersionUpgrade21to22/MachineInstance.py index ff5c33517d8..be6002e2694 100644 --- a/plugins/VersionUpgrade/VersionUpgrade21to22/MachineInstance.py +++ b/plugins/VersionUpgrade/VersionUpgrade21to22/MachineInstance.py @@ -1,16 +1,16 @@ # Copyright (c) 2018 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. -import configparser #To read config files. -import io #To write config files to strings as if they were files. -import os.path #To get the path to write new user profiles to. +import configparser # To read config files. +import io # To write config files to strings as if they were files. +import os.path # To get the path to write new user profiles to. from typing import Dict, List, Optional, Set, Tuple -import urllib #To serialise the user container file name properly. +import urllib # To serialise the user container file name properly. import urllib.parse -import UM.VersionUpgrade #To indicate that a file is of incorrect format. -import UM.VersionUpgradeManager #To schedule more files to be upgraded. -from UM.Resources import Resources #To get the config storage path. +import UM.VersionUpgrade # To indicate that a file is of incorrect format. +import UM.VersionUpgradeManager # To schedule more files to be upgraded. +from UM.Resources import Resources # To get the config storage path. ## Creates a new machine instance instance by parsing a serialised machine # instance in version 1 of the file format. diff --git a/plugins/VersionUpgrade/VersionUpgrade21to22/Preferences.py b/plugins/VersionUpgrade/VersionUpgrade21to22/Preferences.py index 953837b863f..906f868af94 100644 --- a/plugins/VersionUpgrade/VersionUpgrade21to22/Preferences.py +++ b/plugins/VersionUpgrade/VersionUpgrade21to22/Preferences.py @@ -1,11 +1,11 @@ # Copyright (c) 2018 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. -import configparser #To read config files. -import io #To output config files to string. +import configparser # To read config files. +import io # To output config files to string. from typing import List, Optional, Tuple -import UM.VersionUpgrade #To indicate that a file is of the wrong format. +import UM.VersionUpgrade # To indicate that a file is of the wrong format. ## Creates a new preferences instance by parsing a serialised preferences file # in version 1 of the file format. diff --git a/plugins/VersionUpgrade/VersionUpgrade21to22/Profile.py b/plugins/VersionUpgrade/VersionUpgrade21to22/Profile.py index 8419b3beeb6..7e5f330a366 100644 --- a/plugins/VersionUpgrade/VersionUpgrade21to22/Profile.py +++ b/plugins/VersionUpgrade/VersionUpgrade21to22/Profile.py @@ -1,8 +1,8 @@ # Copyright (c) 2018 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. -import configparser #To read config files. -import io #To write config files to strings as if they were files. +import configparser # To read config files. +import io # To write config files to strings as if they were files. from typing import Dict, List, Optional, Tuple import UM.VersionUpgrade diff --git a/plugins/XRayView/XRayView.py b/plugins/XRayView/XRayView.py index 5af7b176523..b27e615e56e 100644 --- a/plugins/XRayView/XRayView.py +++ b/plugins/XRayView/XRayView.py @@ -7,7 +7,6 @@ from UM.Application import Application from UM.Logger import Logger from UM.Math.Color import Color -from UM.PluginRegistry import PluginRegistry from UM.Resources import Resources from UM.Platform import Platform from UM.Event import Event diff --git a/plugins/XmlMaterialProfile/XmlMaterialProfile.py b/plugins/XmlMaterialProfile/XmlMaterialProfile.py index 490d704d19a..5d4efd7cabc 100644 --- a/plugins/XmlMaterialProfile/XmlMaterialProfile.py +++ b/plugins/XmlMaterialProfile/XmlMaterialProfile.py @@ -3,9 +3,9 @@ import copy import io -import json #To parse the product-to-id mapping file. -import os.path #To find the product-to-id mapping. -from typing import Any, Dict, List, Optional, Tuple, cast, Set, Union +import json # To parse the product-to-id mapping file. +import os.path #T o find the product-to-id mapping. +from typing import Any, Dict, List, Optional, Tuple, cast, Set import xml.etree.ElementTree as ET from UM.PluginRegistry import PluginRegistry diff --git a/scripts/fix_translation_memory.py b/scripts/fix_translation_memory.py index 610fb93ac68..979cc92eb7e 100644 --- a/scripts/fix_translation_memory.py +++ b/scripts/fix_translation_memory.py @@ -5,9 +5,8 @@ import argparse from pathlib import Path from fuzzywuzzy import fuzz -from fuzzywuzzy import process import xml.etree.ElementTree as ET -from xml.sax.saxutils import unescape, escape, quoteattr +from xml.sax.saxutils import unescape def load_existing_xmtm(path: Path) -> ET.Element: diff --git a/scripts/lionbridge_import.py b/scripts/lionbridge_import.py index 65b07183a36..c73361a9124 100644 --- a/scripts/lionbridge_import.py +++ b/scripts/lionbridge_import.py @@ -1,10 +1,10 @@ # Copyright (c) 2021 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. -import argparse #To get the source directory from command line arguments. +import argparse # To get the source directory from command line arguments. import io # To fix encoding issues in Windows -import os #To find files from the source. -import os.path #To find files from the source and the destination path. +import os # To find files from the source. +import os.path # To find files from the source and the destination path. cura_files = {"cura", "fdmprinter.def.json", "fdmextruder.def.json"} uranium_files = {"uranium"} From aff37dae3fc4057f356d6d420ecbc1337ffdee88 Mon Sep 17 00:00:00 2001 From: Dmitry Gribenchuk Date: Thu, 14 Dec 2023 11:00:06 +0200 Subject: [PATCH 290/765] fix comment space --- plugins/XmlMaterialProfile/XmlMaterialProfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/XmlMaterialProfile/XmlMaterialProfile.py b/plugins/XmlMaterialProfile/XmlMaterialProfile.py index 5d4efd7cabc..41beb884197 100644 --- a/plugins/XmlMaterialProfile/XmlMaterialProfile.py +++ b/plugins/XmlMaterialProfile/XmlMaterialProfile.py @@ -4,7 +4,7 @@ import copy import io import json # To parse the product-to-id mapping file. -import os.path #T o find the product-to-id mapping. +import os.path # To find the product-to-id mapping. from typing import Any, Dict, List, Optional, Tuple, cast, Set import xml.etree.ElementTree as ET From 1941fbe90be65ea6fab393bdfeed6a8bf30dbab8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Thu, 14 Dec 2023 12:52:26 +0100 Subject: [PATCH 291/765] Avoid "KeyError: material_name" crash in Fedora Traceback (most recent call last): File "/usr/lib/python3.11/site-packages/UM/Qt/ListModel.py", line 54, in data return self._items[index.row()][self._role_names[role].decode("utf-8")] ~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ KeyError: 'material_name' Downstream report: https://bugzilla.redhat.com/show_bug.cgi?id=2252195 Community: https://community.ultimaker.com/topic/44538-cura-53-crashs-at-startup/ For reasons unknown, this crash does not happen with the AppImage. Nevertheless, in 2baada8a70b15dd87948a25855e17d15b0ece58c material_name was added as a role, not material_label. Reaming the field in the sentinel extruder makes the crash go away. --- cura/Machines/Models/ExtrudersModel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/Machines/Models/ExtrudersModel.py b/cura/Machines/Models/ExtrudersModel.py index 2677894bff2..f31f7c87178 100644 --- a/cura/Machines/Models/ExtrudersModel.py +++ b/cura/Machines/Models/ExtrudersModel.py @@ -227,7 +227,7 @@ def __updateExtruders(self): "material_brand": "", "color_name": "", "material_type": "", - "material_label": "" + "material_name": "" } items.append(item) if self._items != items: From aebd5f32c5bb82a39d9d2f7a6ab070761e8e7e28 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Fri, 15 Dec 2023 10:08:16 +0100 Subject: [PATCH 292/765] Update Sentry to `1.39.1` Contributes to CURA-11464 --- requirements.txt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/requirements.txt b/requirements.txt index 76339c884fd..916886e3695 100644 --- a/requirements.txt +++ b/requirements.txt @@ -171,9 +171,9 @@ scipy==1.9.1 \ trimesh==3.9.36 \ --hash=sha256:f01e8edab14d1999700c980c21a1546f37417216ad915a53be649d263130181e \ --hash=sha256:8ac8bea693b3ee119f11b022fc9b9481c9f1af06cb38bc859bf5d16bbbe49b23 -sentry-sdk==0.13.5 \ - --hash=sha256:05285942901d38c7ce2498aba50d8e87b361fc603281a5902dda98f3f8c5e145 \ - --hash=sha256:c6b919623e488134a728f16326c6f0bcdab7e3f59e7f4c472a90eea4d6d8fe82 +sentry-sdk==1.39.1 \ + --hash=sha256:320a55cdf9da9097a0bead239c35b7e61f53660ef9878861824fd6d9b2eaf3b5 \ + --hash=sha256:81b5b9ffdd1a374e9eb0c053b5d2012155db9cbe76393a8585677b753bd5fdc1 mypy==0.931 \ --hash=sha256:0038b21890867793581e4cb0d810829f5fd4441aa75796b53033af3aa30430ce \ --hash=sha256:1171f2e0859cfff2d366da2c7092b06130f232c636a3f7301e3feb8b41f6377d \ @@ -209,9 +209,9 @@ idna==2.8 \ attrs==21.2.0 \ --hash=sha256:149e90d6d8ac20db7a955ad60cf0e6881a3f20d37096140088356da6c716b0b1 \ --hash=sha256:ef6aaac3ca6cd92904cdd0d83f629a15f18053ec84e6432106f7a4d04ae4f5fb -requests==2.22.0 \ - --hash=sha256:11e007a8a2aa0323f5a921e9e6a2d7e4e67d9877e85773fba9ba6419025cbeb4 \ - --hash=sha256:9cf5292fcd0f598c671cfc1e0d7d1a7f13bb8085e9a590f48c010551dc6c4b31 +requests==2.31.0 \ + --hash=sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1 \ + --hash=sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f # twisted Twisted==21.2.0 \ --hash=sha256:77544a8945cf69b98d2946689bbe0c75de7d145cdf11f391dd487eae8fc95a12 \ @@ -372,9 +372,9 @@ cffi==1.15.0 \ --hash=sha256:f6f824dc3bce0edab5f427efcfb1d63ee75b6fcb7282900ccaf925be84efb0fc \ --hash=sha256:fd8a250edc26254fe5b33be00402e6d287f562b6a5b2152dec302fa15bb3e997 \ --hash=sha256:ffaa5c925128e29efbde7301d8ecaf35c8c60ffbcd6a1ffd3a552177c8e5e796 -urllib3==1.25.9 \ - --hash=sha256:3018294ebefce6572a474f0604c2021e33b3fd8006ecd11d62107a5d2a963527 \ - --hash=sha256:88206b0eb87e6d677d424843ac5209e3fb9d0190d0ee169599165ec25e9d9115 +urllib3==2.1.0 \ + --hash=sha256:df7aa8afb0148fa78488e7899b2c59b5f4ffcfa82e6c54ccb9dd37c1d7b52d54 \ + --hash=sha256:55901e917a5896a349ff771be919f8bd99aff50b79fe58fec595eb37bbc56bb3 mypy-extensions==0.4.3 \ --hash=sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d \ --hash=sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8 From 139c46fc9dbbb19f7128783369abd0f68e0b36ef Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Fri, 15 Dec 2023 10:23:42 +0100 Subject: [PATCH 293/765] Use generic job name --- .github/workflows/linux.yml | 2 +- .github/workflows/macos.yml | 2 +- .github/workflows/windows.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 2ad8f90bfe9..f88b77a022f 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -45,7 +45,7 @@ env: STAGING: ${{ inputs.staging || false }} jobs: - windows-installer: + installer: uses: ultimaker/cura-workflows/.github/workflows/cura-installer-linux.yml@main with: cura_conan_version: ${{ inputs.cura_conan_version }} diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index d080fcc710a..e909b9f8397 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -49,7 +49,7 @@ env: STAGING: ${{ inputs.staging || false }} jobs: - windows-installer: + installer: uses: ultimaker/cura-workflows/.github/workflows/cura-installer-macos.yml@main with: cura_conan_version: ${{ inputs.cura_conan_version }} diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 00079369698..151935c3f31 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -45,7 +45,7 @@ env: STAGING: ${{ inputs.staging || false }} jobs: - windows-installer: + installer: uses: ultimaker/cura-workflows/.github/workflows/cura-installer-windows.yml@main with: cura_conan_version: ${{ inputs.cura_conan_version }} From 64cb060bd1c2ec23d498c81ea50a55957dfad3e6 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Fri, 15 Dec 2023 10:38:33 +0100 Subject: [PATCH 294/765] Revert "Update Sentry to `1.39.1`" This reverts commit aebd5f32c5bb82a39d9d2f7a6ab070761e8e7e28. --- requirements.txt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/requirements.txt b/requirements.txt index 916886e3695..76339c884fd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -171,9 +171,9 @@ scipy==1.9.1 \ trimesh==3.9.36 \ --hash=sha256:f01e8edab14d1999700c980c21a1546f37417216ad915a53be649d263130181e \ --hash=sha256:8ac8bea693b3ee119f11b022fc9b9481c9f1af06cb38bc859bf5d16bbbe49b23 -sentry-sdk==1.39.1 \ - --hash=sha256:320a55cdf9da9097a0bead239c35b7e61f53660ef9878861824fd6d9b2eaf3b5 \ - --hash=sha256:81b5b9ffdd1a374e9eb0c053b5d2012155db9cbe76393a8585677b753bd5fdc1 +sentry-sdk==0.13.5 \ + --hash=sha256:05285942901d38c7ce2498aba50d8e87b361fc603281a5902dda98f3f8c5e145 \ + --hash=sha256:c6b919623e488134a728f16326c6f0bcdab7e3f59e7f4c472a90eea4d6d8fe82 mypy==0.931 \ --hash=sha256:0038b21890867793581e4cb0d810829f5fd4441aa75796b53033af3aa30430ce \ --hash=sha256:1171f2e0859cfff2d366da2c7092b06130f232c636a3f7301e3feb8b41f6377d \ @@ -209,9 +209,9 @@ idna==2.8 \ attrs==21.2.0 \ --hash=sha256:149e90d6d8ac20db7a955ad60cf0e6881a3f20d37096140088356da6c716b0b1 \ --hash=sha256:ef6aaac3ca6cd92904cdd0d83f629a15f18053ec84e6432106f7a4d04ae4f5fb -requests==2.31.0 \ - --hash=sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1 \ - --hash=sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f +requests==2.22.0 \ + --hash=sha256:11e007a8a2aa0323f5a921e9e6a2d7e4e67d9877e85773fba9ba6419025cbeb4 \ + --hash=sha256:9cf5292fcd0f598c671cfc1e0d7d1a7f13bb8085e9a590f48c010551dc6c4b31 # twisted Twisted==21.2.0 \ --hash=sha256:77544a8945cf69b98d2946689bbe0c75de7d145cdf11f391dd487eae8fc95a12 \ @@ -372,9 +372,9 @@ cffi==1.15.0 \ --hash=sha256:f6f824dc3bce0edab5f427efcfb1d63ee75b6fcb7282900ccaf925be84efb0fc \ --hash=sha256:fd8a250edc26254fe5b33be00402e6d287f562b6a5b2152dec302fa15bb3e997 \ --hash=sha256:ffaa5c925128e29efbde7301d8ecaf35c8c60ffbcd6a1ffd3a552177c8e5e796 -urllib3==2.1.0 \ - --hash=sha256:df7aa8afb0148fa78488e7899b2c59b5f4ffcfa82e6c54ccb9dd37c1d7b52d54 \ - --hash=sha256:55901e917a5896a349ff771be919f8bd99aff50b79fe58fec595eb37bbc56bb3 +urllib3==1.25.9 \ + --hash=sha256:3018294ebefce6572a474f0604c2021e33b3fd8006ecd11d62107a5d2a963527 \ + --hash=sha256:88206b0eb87e6d677d424843ac5209e3fb9d0190d0ee169599165ec25e9d9115 mypy-extensions==0.4.3 \ --hash=sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d \ --hash=sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8 From a071795f9e5415f575cd7e8e86e3347faf8e6a1a Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 15 Dec 2023 12:43:54 +0100 Subject: [PATCH 295/765] Fix monitor page CURA-11426 --- plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py index aed38a39496..9a11bb886ca 100644 --- a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py +++ b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py @@ -331,7 +331,7 @@ def isMethod(self) -> bool: return False [printer, *_] = self._printers - return printer.pinterType in ("ultimaker_methodx", "ultimaker_methodxl") + return printer.name in ("ultimaker_methodx", "ultimaker_methodxl") @pyqtProperty(bool, notify=_cloudClusterPrintersChanged) def supportsPrintJobActions(self) -> bool: From a6218c3f5432a6d08d0ff852f67892119b317a7d Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Fri, 15 Dec 2023 18:08:46 +0100 Subject: [PATCH 296/765] Use cura sentry id and version Contribute to CURA-11482 --- conandata.yml | 2 +- plugins/CuraEngineBackend/Cura.proto | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/conandata.yml b/conandata.yml index a0a5a204ca6..dcf883c630c 100644 --- a/conandata.yml +++ b/conandata.yml @@ -1,7 +1,7 @@ version: "5.7.0-alpha.0" requirements: - "uranium/(latest)@ultimaker/testing" - - "curaengine/(latest)@ultimaker/testing" + - "curaengine/(latest)@ultimaker/cura_11482" - "cura_binary_data/(latest)@ultimaker/testing" - "fdm_materials/(latest)@ultimaker/testing" - "curaengine_plugin_gradual_flow/(latest)@ultimaker/stable" diff --git a/plugins/CuraEngineBackend/Cura.proto b/plugins/CuraEngineBackend/Cura.proto index 54c322fa0af..9593b835280 100644 --- a/plugins/CuraEngineBackend/Cura.proto +++ b/plugins/CuraEngineBackend/Cura.proto @@ -33,6 +33,8 @@ message Slice repeated Extruder extruders = 3; // The settings sent to each extruder object repeated SettingExtruder limit_to_extruder = 4; // From which stack the setting would inherit if not defined per object repeated EnginePlugin engine_plugins = 5; + string sentry_id = 6; // The anonymized Sentry user id that requested the slice + string cura_version = 7; // The version of Cura that requested the slice } message Extruder From 5744371f380e8c7baa47c2ab05bea9157c5d7e58 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Sun, 17 Dec 2023 17:44:30 +0100 Subject: [PATCH 297/765] Add anonymous user tracking to slice message User tracking has been added to the 'slice_message' method in the 'StartSliceJob.py' file. A unique, anonymous UUID is generated for each user, stripping away identifiable data with a bitmask operation. The user's Cura version is also included in the message. This facilitates more robust analysis of crash reports and user behaviors. Contributes to CURA-11482 --- plugins/CuraEngineBackend/StartSliceJob.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/plugins/CuraEngineBackend/StartSliceJob.py b/plugins/CuraEngineBackend/StartSliceJob.py index a12e9e655da..fe7137150b4 100644 --- a/plugins/CuraEngineBackend/StartSliceJob.py +++ b/plugins/CuraEngineBackend/StartSliceJob.py @@ -1,5 +1,7 @@ # Copyright (c) 2023 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. +import uuid + import os import numpy @@ -30,6 +32,7 @@ from cura.Scene.CuraSceneNode import CuraSceneNode from cura.OneAtATimeIterator import OneAtATimeIterator from cura.Settings.ExtruderManager import ExtruderManager +from cura.CuraVersion import CuraVersion NON_PRINTING_MESH_SETTINGS = ["anti_overhang_mesh", "infill_mesh", "cutting_mesh"] @@ -332,6 +335,11 @@ def run(self) -> None: self._buildGlobalSettingsMessage(stack) self._buildGlobalInheritsStackMessage(stack) + user_id = uuid.getnode() # On all of Cura's supported platforms, this returns the MAC address which is pseudonymical information (!= anonymous). + user_id %= 2 ** 16 # So to make it anonymous, apply a bitmask selecting only the last 16 bits. This prevents it from being traceable to a specific user but still gives somewhat of an idea of whether it's just the same user hitting the same crash over and over again, or if it's widespread. + self._slice_message.sentry_id = "{user_id}" + self._slice_message.cura_version = CuraVersion + # Build messages for extruder stacks for extruder_stack in global_stack.extruderList: self._buildExtruderMessage(extruder_stack) From 82a3308d26a94ed834b5247dc2bfe945f68dee06 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Mon, 18 Dec 2023 17:03:52 +0100 Subject: [PATCH 298/765] for merging to main CURA-11482 --- conandata.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conandata.yml b/conandata.yml index dcf883c630c..a0a5a204ca6 100644 --- a/conandata.yml +++ b/conandata.yml @@ -1,7 +1,7 @@ version: "5.7.0-alpha.0" requirements: - "uranium/(latest)@ultimaker/testing" - - "curaengine/(latest)@ultimaker/cura_11482" + - "curaengine/(latest)@ultimaker/testing" - "cura_binary_data/(latest)@ultimaker/testing" - "fdm_materials/(latest)@ultimaker/testing" - "curaengine_plugin_gradual_flow/(latest)@ultimaker/stable" From cfec5e0cc112181d4db4af13ed6a0f8ec3047669 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Tue, 19 Dec 2023 10:12:56 +0100 Subject: [PATCH 299/765] Proof of concept for simulation Co-authored-by: Casper Lamboo CURA-7647 --- cura/LayerPolygon.py | 6 +- plugins/SimulationView/SimulationPass.py | 32 +++-- plugins/SimulationView/SimulationView.py | 124 +++++++++++++----- .../SimulationViewMainComponent.qml | 47 +------ plugins/SimulationView/SimulationViewProxy.py | 23 +--- 5 files changed, 128 insertions(+), 104 deletions(-) diff --git a/cura/LayerPolygon.py b/cura/LayerPolygon.py index e5fd307dc97..e772a8b78ec 100644 --- a/cura/LayerPolygon.py +++ b/cura/LayerPolygon.py @@ -67,7 +67,7 @@ def __init__(self, extruder: int, line_types: numpy.ndarray, data: numpy.ndarray # Buffering the colors shouldn't be necessary as it is not # re-used and can save a lot of memory usage. self._color_map = LayerPolygon.getColorMap() - self._colors = self._color_map[self._types] # type: numpy.ndarray + self._colors: numpy.ndarray = self._color_map[self._types] # When type is used as index returns true if type == LayerPolygon.InfillType # or type == LayerPolygon.SkinType @@ -75,8 +75,8 @@ def __init__(self, extruder: int, line_types: numpy.ndarray, data: numpy.ndarray # Should be generated in better way, not hardcoded. self._is_infill_or_skin_type_map = numpy.array([0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0], dtype=bool) - self._build_cache_line_mesh_mask = None # type: Optional[numpy.ndarray] - self._build_cache_needed_points = None # type: Optional[numpy.ndarray] + self._build_cache_line_mesh_mask: Optional[numpy.ndarray] = None + self._build_cache_needed_points: Optional[numpy.ndarray] = None def buildCache(self) -> None: # For the line mesh we do not draw Infill or Jumps. Therefore those lines are filtered out. diff --git a/plugins/SimulationView/SimulationPass.py b/plugins/SimulationView/SimulationPass.py index 1294b37db4e..3294f4b1e6b 100644 --- a/plugins/SimulationView/SimulationPass.py +++ b/plugins/SimulationView/SimulationPass.py @@ -35,7 +35,7 @@ def __init__(self, width, height): self._nozzle_shader = None self._disabled_shader = None self._old_current_layer = 0 - self._old_current_path = 0 + self._old_current_path: float = 0.0 self._switching_layers = True # Tracking whether the user is moving across layers (True) or across paths (False). If false, lower layers render as shadowy. self._gl = OpenGL.getInstance().getBindingsObject() self._scene = Application.getInstance().getController().getScene() @@ -139,7 +139,7 @@ def render(self): continue # Render all layers below a certain number as line mesh instead of vertices. - if self._layer_view._current_layer_num > -1 and ((not self._layer_view._only_show_top_layers) or (not self._layer_view.getCompatibilityMode())): + if self._layer_view.getCurrentLayer() > -1 and ((not self._layer_view._only_show_top_layers) or (not self._layer_view.getCompatibilityMode())): start = 0 end = 0 element_counts = layer_data.getElementCounts() @@ -147,7 +147,7 @@ def render(self): # In the current layer, we show just the indicated paths if layer == self._layer_view._current_layer_num: # We look for the position of the head, searching the point of the current path - index = self._layer_view._current_path_num + index = int(self._layer_view.getCurrentPath()) offset = 0 for polygon in layer_data.getLayer(layer).polygons: # The size indicates all values in the two-dimension array, and the second dimension is @@ -157,23 +157,33 @@ def render(self): offset = 1 # This is to avoid the first point when there is more than one polygon, since has the same value as the last point in the previous polygon continue # The head position is calculated and translated - head_position = Vector(polygon.data[index+offset][0], polygon.data[index+offset][1], polygon.data[index+offset][2]) + node.getWorldPosition() + ratio = self._layer_view.getCurrentPath() - index + pos_a = Vector(polygon.data[index + offset][0], polygon.data[index + offset][1], + polygon.data[index + offset][2]) + if ratio > 0.0001: + pos_b = Vector(polygon.data[index + offset + 1][0], + polygon.data[index + offset + 1][1], + polygon.data[index + offset + 1][2]) + vec = pos_a * (1.0 - ratio) + pos_b * ratio + head_position = vec + node.getWorldPosition() + else: + head_position = pos_a + node.getWorldPosition() break break - if self._layer_view._minimum_layer_num > layer: + if self._layer_view.getMinimumLayer() > layer: start += element_counts[layer] end += element_counts[layer] # Calculate the range of paths in the last layer current_layer_start = end - current_layer_end = end + self._layer_view._current_path_num * 2 # Because each point is used twice + current_layer_end = end + int( self._layer_view.getCurrentPath()) * 2 # Because each point is used twice # This uses glDrawRangeElements internally to only draw a certain range of lines. # All the layers but the current selected layer are rendered first - if self._old_current_path != self._layer_view._current_path_num: + if self._old_current_path != self._layer_view.getCurrentPath(): self._current_shader = self._layer_shadow_shader self._switching_layers = False - if not self._layer_view.isSimulationRunning() and self._old_current_layer != self._layer_view._current_layer_num: + if not self._layer_view.isSimulationRunning() and self._old_current_layer != self._layer_view.getCurrentLayer(): self._current_shader = self._layer_shader self._switching_layers = True @@ -193,8 +203,8 @@ def render(self): current_layer_batch.addItem(node.getWorldTransformation(), layer_data) current_layer_batch.render(self._scene.getActiveCamera()) - self._old_current_layer = self._layer_view._current_layer_num - self._old_current_path = self._layer_view._current_path_num + self._old_current_layer = self._layer_view.getCurrentLayer() + self._old_current_path = self._layer_view.getCurrentPath() # Create a new batch that is not range-limited batch = RenderBatch(self._layer_shader, type = RenderBatch.RenderType.Solid) @@ -230,4 +240,4 @@ def _onSceneChanged(self, changed_object: SceneNode): if changed_object.callDecoration("getLayerData"): # Any layer data has changed. self._switching_layers = True self._old_current_layer = 0 - self._old_current_path = 0 + self._old_current_path = 0.0 diff --git a/plugins/SimulationView/SimulationView.py b/plugins/SimulationView/SimulationView.py index a659a6de971..64ec0dfc1b3 100644 --- a/plugins/SimulationView/SimulationView.py +++ b/plugins/SimulationView/SimulationView.py @@ -40,7 +40,7 @@ import numpy import os.path -from typing import Optional, TYPE_CHECKING, List, cast +from typing import Optional, TYPE_CHECKING, List, Tuple, cast if TYPE_CHECKING: from UM.Scene.SceneNode import SceneNode @@ -74,21 +74,20 @@ def __init__(self, parent = None) -> None: self._old_max_layers = 0 self._max_paths = 0 - self._current_path_num = 0 + self._current_path_num: float = 0.0 + self._current_time = 0.0 self._minimum_path_num = 0 self.currentLayerNumChanged.connect(self._onCurrentLayerNumChanged) - self._current_feedrates = {} - self._lengths_of_polyline ={} self._busy = False self._simulation_running = False - self._ghost_shader = None # type: Optional["ShaderProgram"] - self._layer_pass = None # type: Optional[SimulationPass] - self._composite_pass = None # type: Optional[CompositePass] - self._old_layer_bindings = None # type: Optional[List[str]] - self._simulationview_composite_shader = None # type: Optional["ShaderProgram"] - self._old_composite_shader = None # type: Optional["ShaderProgram"] + self._ghost_shader: Optional["ShaderProgram"] = None + self._layer_pass: Optional[SimulationPass] = None + self._composite_pass: Optional[CompositePass] = None + self._old_layer_bindings: Optional[List[str]] = None + self._simulationview_composite_shader: Optional["ShaderProgram"] = None + self._old_composite_shader: Optional["ShaderProgram"] = None self._max_feedrate = sys.float_info.min self._min_feedrate = sys.float_info.max @@ -99,13 +98,13 @@ def __init__(self, parent = None) -> None: self._min_flow_rate = sys.float_info.max self._max_flow_rate = sys.float_info.min - self._global_container_stack = None # type: Optional[ContainerStack] + self._global_container_stack: Optional[ContainerStack] = None self._proxy = None self._resetSettings() self._legend_items = None self._show_travel_moves = False - self._nozzle_node = None # type: Optional[NozzleNode] + self._nozzle_node: Optional[NozzleNode] = None Application.getInstance().getPreferences().addPreference("view/top_layer_count", 5) Application.getInstance().getPreferences().addPreference("view/only_show_top_layers", False) @@ -127,13 +126,12 @@ def __init__(self, parent = None) -> None: self._only_show_top_layers = bool(Application.getInstance().getPreferences().getValue("view/only_show_top_layers")) self._compatibility_mode = self._evaluateCompatibilityMode() - self._slice_first_warning_message = Message(catalog.i18nc("@info:status", - "Nothing is shown because you need to slice first."), - title = catalog.i18nc("@info:title", "No layers to show"), - option_text = catalog.i18nc("@info:option_text", - "Do not show this message again"), - option_state = False, - message_type = Message.MessageType.WARNING) + self._slice_first_warning_message = Message(catalog.i18nc("@info:status", "Nothing is shown because you need to slice first."), + title=catalog.i18nc("@info:title", "No layers to show"), + option_text=catalog.i18nc("@info:option_text", + "Do not show this message again"), + option_state=False, + message_type=Message.MessageType.WARNING) self._slice_first_warning_message.optionToggled.connect(self._onDontAskMeAgain) CuraApplication.getInstance().getPreferences().addPreference(self._no_layers_warning_preference, True) @@ -189,9 +187,82 @@ def getMinimumLayer(self) -> int: def getMaxLayers(self) -> int: return self._max_layers - def getCurrentPath(self) -> int: + def getCurrentPath(self) -> float: return self._current_path_num + def setTime(self, time: float) -> None: + self._current_time = time + + left_i = 0 + right_i = self._max_paths - 1 + + total_duration, cumulative_line_duration = self.cumulativeLineDuration() + + # make an educated guess about where to start + i = int(right_i * max(0.0, min(1.0, self._current_time / total_duration))) + + # binary search for the correct path + while left_i < right_i: + if cumulative_line_duration[i] <= self._current_time: + left_i = i + 1 + else: + right_i = i + i = int((left_i + right_i) / 2) + + left_value = cumulative_line_duration[i - 1] if i > 0 else 0.0 + right_value = cumulative_line_duration[i] + + assert (left_value <= self._current_time <= right_value) + + fractional_value = (self._current_time - left_value) / (right_value - left_value) + + self.setPath(i + fractional_value) + + def advanceTime(self, time_increase: float) -> bool: + """ + Advance the time by the given amount. + + :param time_increase: The amount of time to advance (in seconds). + :return: True if the time was advanced, False if the end of the simulation was reached. + """ + total_duration, cumulative_line_duration = self.cumulativeLineDuration() + + # time ratio + time_increase = time_increase + + if self._current_time + time_increase > total_duration: + # If we have reached the end of the simulation, go to the next layer. + if self.getCurrentLayer() == self.getMaxLayers(): + # If we are already at the last layer, go to the first layer. + self.setTime(total_duration) + return False + + # advance to the next layer, and reset the time + self.setLayer(self.getCurrentLayer() + 1) + self.setTime(0.0) + else: + self.setTime(self._current_time + time_increase) + return True + + def cumulativeLineDuration(self) -> Tuple[float, List[float]]: + # TODO: cache the total duration and cumulative line duration at each layer change event + cumulative_line_duration = [] + total_duration = 0.0 + for polyline in self.getLayerData().polygons: + for line_duration in list((polyline.lineLengths / polyline.lineFeedrates)[0]): + total_duration += line_duration + cumulative_line_duration.append(total_duration) + return total_duration, cumulative_line_duration + + def getLayerData(self) -> Optional["LayerData"]: + scene = self.getController().getScene() + for node in DepthFirstIterator(scene.getRoot()): # type: ignore + layer_data = node.callDecoration("getLayerData") + if not layer_data: + continue + return layer_data.getLayer(self.getCurrentLayer()) + return None + def getMinimumPath(self) -> int: return self._minimum_path_num @@ -279,7 +350,7 @@ def setMinimumLayer(self, value: int) -> None: self._startUpdateTopLayers() self.currentLayerNumChanged.emit() - def setPath(self, value: int) -> None: + def setPath(self, value: float) -> None: """ Set the upper end of the range of visible paths on the current layer. @@ -402,15 +473,6 @@ def getMinFeedrate(self) -> float: def getMaxFeedrate(self) -> float: return self._max_feedrate - def getSimulationTime(self, currentIndex) -> float: - try: - return (self._lengths_of_polyline[self._current_layer_num][currentIndex] / self._current_feedrates[self._current_layer_num][currentIndex])[0] - - except: - # In case of change in layers, currentIndex comes one more than the items in the lengths_of_polyline - # We give 1 second time for layer change - return 1.0 - def getMinThickness(self) -> float: if abs(self._min_thickness - sys.float_info.max) < 10: # Some lenience due to floating point rounding. return 0.0 # If it's still max-float, there are no measurements. Use 0 then. @@ -535,10 +597,8 @@ def calculateColorSchemeLimits(self) -> None: visible_indicies_with_extrusion = numpy.where(numpy.isin(polyline.types, visible_line_types_with_extrusion))[0] if visible_indices.size == 0: # No items to take maximum or minimum of. continue - self._lengths_of_polyline[layer_index] = polyline.lineLengths visible_feedrates = numpy.take(polyline.lineFeedrates, visible_indices) visible_feedrates_with_extrusion = numpy.take(polyline.lineFeedrates, visible_indicies_with_extrusion) - self._current_feedrates[layer_index] = polyline.lineFeedrates visible_linewidths = numpy.take(polyline.lineWidths, visible_indices) visible_linewidths_with_extrusion = numpy.take(polyline.lineWidths, visible_indicies_with_extrusion) visible_thicknesses = numpy.take(polyline.lineThicknesses, visible_indices) diff --git a/plugins/SimulationView/SimulationViewMainComponent.qml b/plugins/SimulationView/SimulationViewMainComponent.qml index 216095c15cf..23cbf8c6119 100644 --- a/plugins/SimulationView/SimulationViewMainComponent.qml +++ b/plugins/SimulationView/SimulationViewMainComponent.qml @@ -136,54 +136,19 @@ Item Timer { id: simulationTimer - interval: UM.SimulationView.simulationTime + interval: 1000 / 60 running: false repeat: true onTriggered: { - var currentPath = UM.SimulationView.currentPath - var numPaths = UM.SimulationView.numPaths - var currentLayer = UM.SimulationView.currentLayer - var numLayers = UM.SimulationView.numLayers - - // When the user plays the simulation, if the path slider is at the end of this layer, we start - // the simulation at the beginning of the current layer. - if (!isSimulationPlaying) - { - if (currentPath >= numPaths) - { - UM.SimulationView.setCurrentPath(0) - } - else - { - UM.SimulationView.setCurrentPath(currentPath + 1) - } - } - // If the simulation is already playing and we reach the end of a layer, then it automatically - // starts at the beginning of the next layer. - else - { - if (currentPath >= numPaths) - { - // At the end of the model, the simulation stops - if (currentLayer >= numLayers) - { - playButton.pauseSimulation() - } - else - { - UM.SimulationView.setCurrentLayer(currentLayer + 1) - UM.SimulationView.setCurrentPath(0) - } - } - else - { - UM.SimulationView.setCurrentPath(currentPath + 1) - } + // divide by 1000 to accont for ms to s conversion + const advance_time = simulationTimer.interval / 1000.0; + if (!UM.SimulationView.advanceTime(advance_time)) { + playButton.pauseSimulation(); } // The status must be set here instead of in the resumeSimulation function otherwise it won't work // correctly, because part of the logic is in this trigger function. - isSimulationPlaying = true + isSimulationPlaying = true; } } diff --git a/plugins/SimulationView/SimulationViewProxy.py b/plugins/SimulationView/SimulationViewProxy.py index 576281874cd..bf449a99d11 100644 --- a/plugins/SimulationView/SimulationViewProxy.py +++ b/plugins/SimulationView/SimulationViewProxy.py @@ -2,7 +2,6 @@ # Cura is released under the terms of the LGPLv3 or higher. from typing import TYPE_CHECKING -import numpy from PyQt6.QtCore import QObject, pyqtSignal, pyqtProperty from UM.FlameProfiler import pyqtSlot from UM.Application import Application @@ -12,11 +11,6 @@ class SimulationViewProxy(QObject): - - S_TO_MS = 1000 - SPEED_OF_SIMULATION = 10 - FACTOR = S_TO_MS/SPEED_OF_SIMULATION - def __init__(self, simulation_view: "SimulationView", parent=None) -> None: super().__init__(parent) self._simulation_view = simulation_view @@ -56,17 +50,13 @@ def minimumLayer(self): def numPaths(self): return self._simulation_view.getMaxPaths() - @pyqtProperty(int, notify=currentPathChanged) + @pyqtProperty(float, notify=currentPathChanged) def currentPath(self): return self._simulation_view.getCurrentPath() - @pyqtProperty(int, notify=currentPathChanged) - def simulationTime(self): - # Extracts the currents paths simulation time (in seconds) for the current path from the dict of simulation time of the current layer. - # We multiply the time with 100 to make it to ms from s.(Should be 1000 in real time). This scaling makes the simulation time 10x faster than the real time. - simulationTimeOfpath = self._simulation_view.getSimulationTime(self._simulation_view.getCurrentPath()) * SimulationViewProxy.FACTOR - # Since the timer cannot process time less than 1 ms, we put a lower limit here - return int(max(1, simulationTimeOfpath)) + @pyqtSlot(float, result=bool) + def advanceTime(self, duration: float) -> bool: + return self._simulation_view.advanceTime(duration) @pyqtProperty(int, notify=currentPathChanged) def minimumPath(self): @@ -92,8 +82,8 @@ def setCurrentLayer(self, layer_num): def setMinimumLayer(self, layer_num): self._simulation_view.setMinimumLayer(layer_num) - @pyqtSlot(int) - def setCurrentPath(self, path_num): + @pyqtSlot(float) + def setCurrentPath(self, path_num: float): self._simulation_view.setPath(path_num) @pyqtSlot(int) @@ -229,4 +219,3 @@ def _onActiveViewChanged(self): self._simulation_view.activityChanged.disconnect(self._onActivityChanged) self._simulation_view.globalStackChanged.disconnect(self._onGlobalStackChanged) self._simulation_view.preferencesChanged.disconnect(self._onPreferencesChanged) - From ddfd7d6a06842b2350b259ad9c22d8fd8fadcf06 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Tue, 19 Dec 2023 10:50:56 +0100 Subject: [PATCH 300/765] Use of APP_ASSOCIATE in url_scheme CURA-11288 --- packaging/NSIS/Ultimaker-Cura.nsi.jinja | 67 +++++++++++++++++++------ 1 file changed, 51 insertions(+), 16 deletions(-) diff --git a/packaging/NSIS/Ultimaker-Cura.nsi.jinja b/packaging/NSIS/Ultimaker-Cura.nsi.jinja index 228dba4fe48..3bef6988053 100644 --- a/packaging/NSIS/Ultimaker-Cura.nsi.jinja +++ b/packaging/NSIS/Ultimaker-Cura.nsi.jinja @@ -144,6 +144,49 @@ SectionEnd ###################################################################### +Section UrlProtocol + +!macro APP_ASSOCIATE extension progid description commandname command + WriteRegStr HKCR "${extension}" "" "${description}" + WriteRegStr HKCR "${extension}" "URL Protocol" "" + WriteRegStr HKCR "${extension}\DefaultIcon" "" "${commandname},1" + WriteRegStr HKCR "${extension}\shell" "" "open" + WriteRegStr HKCR "${extension}\shell\open\command" "" '"${command}" "%1"' + !insertmacro APP_ASSOCIATE_SHORTCUT "${extension}" "${progid}" "${description}" "${command}" +!macroend + +WriteRegStr HKCR "cura" "" "URL:cura" +WriteRegStr HKCR "cura" "URL Protocol" "" +WriteRegStr HKCR "cura\DefaultIcon" "" "$INSTDIR\${MAIN_APP_EXE},1" +WriteRegStr HKCR "cura\shell" "" "open" +WriteRegStr HKCR "cura\shell\open\command" "" '"$INSTDIR\${MAIN_APP_EXE}" "%1"' + +WriteRegStr HKCR "slicer" "" "URL:slicer" +WriteRegStr HKCR "slicer" "URL Protocol" "" +WriteRegStr HKCR "slicer\DefaultIcon" "" "$INSTDIR\${MAIN_APP_EXE},1" +WriteRegStr HKCR "slicer\shell" "" "open" +WriteRegStr HKCR "slicer\shell\open\command" "" '"$INSTDIR\${MAIN_APP_EXE}" "%1"' + +; Set the uninstall section flag for this section +SetSectionFlags ${SECTION_UNINSTALL} + +; Define file associations for 'cura' protocol +StrCpy $0 "cura" +StrCpy $1 "URL:cura" +StrCpy $2 "CURA Protocol" +StrCpy $3 "$INSTDIR\${MAIN_APP_EXE},1" +Call APP_ASSOCIATE + +; Define file associations for 'slicer' protocol +StrCpy $0 "slicer" +StrCpy $1 "URL:slicer" +StrCpy $2 "SLICER Protocol" +StrCpy $3 "$INSTDIR\${MAIN_APP_EXE},1" +Call APP_ASSOCIATE + +SectionEnd +###################################################################### + Section Uninstall ${INSTALL_TYPE}{% for files in mapped_out_paths.values() %}{% for file in files %} Delete "{{ file[1] }}"{% endfor %}{% endfor %}{% for rem_dir in rmdir_paths %} @@ -187,23 +230,15 @@ RmDir "$SMPROGRAMS\{{ app_name }}" !insertmacro APP_UNASSOCIATE "stl" "Cura.model" !insertmacro APP_UNASSOCIATE "3mf" "Cura.project" +; Unassociate file associations for 'cura' protocol +StrCpy $0 "cura" +Call APP_UNASSOCIATE + +; Unassociate file associations for 'slicer' protocol +StrCpy $0 "slicer" +Call APP_UNASSOCIATE + DeleteRegKey ${REG_ROOT} "${REG_APP_PATH}" DeleteRegKey ${REG_ROOT} "${UNINSTALL_PATH}" SectionEnd -###################################################################### - -Section UrlProtocol - WriteRegStr HKCR "cura" "" "URL:cura" - WriteRegStr HKCR "cura" "URL Protocol" "" - WriteRegStr HKCR "cura\DefaultIcon" "" "$INSTDIR\${MAIN_APP_EXE},1" - WriteRegStr HKCR "cura\shell" "" "open" - WriteRegStr HKCR "cura\shell\open\command" "" '"$INSTDIR\${MAIN_APP_EXE}" "%1"' - - WriteRegStr HKCR "slicer" "" "URL:slicer" - WriteRegStr HKCR "slicer" "URL Protocol" "" - WriteRegStr HKCR "slicer\DefaultIcon" "" "$INSTDIR\${MAIN_APP_EXE},1" - WriteRegStr HKCR "slicer\shell" "" "open" - WriteRegStr HKCR "slicer\shell\open\command" "" '"$INSTDIR\${MAIN_APP_EXE}" "%1"' - -SectionEnd \ No newline at end of file From 5769fcba50134c7975437452a4a17f68927a6446 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Tue, 19 Dec 2023 13:26:19 +0100 Subject: [PATCH 301/765] Deleting the register key for url scheme CURA-11288 --- packaging/NSIS/Ultimaker-Cura.nsi.jinja | 32 ++----------------------- 1 file changed, 2 insertions(+), 30 deletions(-) diff --git a/packaging/NSIS/Ultimaker-Cura.nsi.jinja b/packaging/NSIS/Ultimaker-Cura.nsi.jinja index 3bef6988053..0a2ce0f517a 100644 --- a/packaging/NSIS/Ultimaker-Cura.nsi.jinja +++ b/packaging/NSIS/Ultimaker-Cura.nsi.jinja @@ -146,15 +146,6 @@ SectionEnd Section UrlProtocol -!macro APP_ASSOCIATE extension progid description commandname command - WriteRegStr HKCR "${extension}" "" "${description}" - WriteRegStr HKCR "${extension}" "URL Protocol" "" - WriteRegStr HKCR "${extension}\DefaultIcon" "" "${commandname},1" - WriteRegStr HKCR "${extension}\shell" "" "open" - WriteRegStr HKCR "${extension}\shell\open\command" "" '"${command}" "%1"' - !insertmacro APP_ASSOCIATE_SHORTCUT "${extension}" "${progid}" "${description}" "${command}" -!macroend - WriteRegStr HKCR "cura" "" "URL:cura" WriteRegStr HKCR "cura" "URL Protocol" "" WriteRegStr HKCR "cura\DefaultIcon" "" "$INSTDIR\${MAIN_APP_EXE},1" @@ -167,23 +158,6 @@ WriteRegStr HKCR "slicer\DefaultIcon" "" "$INSTDIR\${MAIN_APP_EXE},1" WriteRegStr HKCR "slicer\shell" "" "open" WriteRegStr HKCR "slicer\shell\open\command" "" '"$INSTDIR\${MAIN_APP_EXE}" "%1"' -; Set the uninstall section flag for this section -SetSectionFlags ${SECTION_UNINSTALL} - -; Define file associations for 'cura' protocol -StrCpy $0 "cura" -StrCpy $1 "URL:cura" -StrCpy $2 "CURA Protocol" -StrCpy $3 "$INSTDIR\${MAIN_APP_EXE},1" -Call APP_ASSOCIATE - -; Define file associations for 'slicer' protocol -StrCpy $0 "slicer" -StrCpy $1 "URL:slicer" -StrCpy $2 "SLICER Protocol" -StrCpy $3 "$INSTDIR\${MAIN_APP_EXE},1" -Call APP_ASSOCIATE - SectionEnd ###################################################################### @@ -231,12 +205,10 @@ RmDir "$SMPROGRAMS\{{ app_name }}" !insertmacro APP_UNASSOCIATE "3mf" "Cura.project" ; Unassociate file associations for 'cura' protocol -StrCpy $0 "cura" -Call APP_UNASSOCIATE +DeleteRegKey HKCR "cura" ; Unassociate file associations for 'slicer' protocol -StrCpy $0 "slicer" -Call APP_UNASSOCIATE +DeleteRegKey HKCR "slicer" DeleteRegKey ${REG_ROOT} "${REG_APP_PATH}" DeleteRegKey ${REG_ROOT} "${UNINSTALL_PATH}" From 69f8227b412e2eefa8e53b4c2e28fca6f803490c Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Tue, 19 Dec 2023 14:33:21 +0100 Subject: [PATCH 302/765] Path correction for cura application for msi CURA-11288 --- packaging/msi/UltiMaker-Cura.wxs.jinja | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packaging/msi/UltiMaker-Cura.wxs.jinja b/packaging/msi/UltiMaker-Cura.wxs.jinja index 07a2c7d8c9b..e9cb01a041d 100644 --- a/packaging/msi/UltiMaker-Cura.wxs.jinja +++ b/packaging/msi/UltiMaker-Cura.wxs.jinja @@ -164,8 +164,8 @@ - - + + @@ -173,8 +173,8 @@ - - + + From cb01026aad29777fdd2aa3eb05a6fbd9fe1f43ac Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Tue, 19 Dec 2023 15:27:53 +0100 Subject: [PATCH 303/765] Path correction for cura application for msi CURA-11288 --- packaging/msi/UltiMaker-Cura.wxs.jinja | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packaging/msi/UltiMaker-Cura.wxs.jinja b/packaging/msi/UltiMaker-Cura.wxs.jinja index e9cb01a041d..c6ec5dbd636 100644 --- a/packaging/msi/UltiMaker-Cura.wxs.jinja +++ b/packaging/msi/UltiMaker-Cura.wxs.jinja @@ -164,8 +164,8 @@ - - + + @@ -173,8 +173,8 @@ - - + + From 380f0ed27032c8e4e860f343590bf7d36ea85f9b Mon Sep 17 00:00:00 2001 From: Christopher Peredy <16451370+mastercaution@users.noreply.github.com> Date: Tue, 19 Dec 2023 19:48:16 +0100 Subject: [PATCH 304/765] EN4 fix `nozzle_disallowed_areas` for N4 Max --- .../definitions/elegoo_neptune_4max.def.json | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/resources/definitions/elegoo_neptune_4max.def.json b/resources/definitions/elegoo_neptune_4max.def.json index c2240594b03..9ea53650cbf 100644 --- a/resources/definitions/elegoo_neptune_4max.def.json +++ b/resources/definitions/elegoo_neptune_4max.def.json @@ -28,28 +28,28 @@ { "default_value": [ [ - [-165, -165], - [-165, 165], - [-161, 165], - [-161, -165] + [-215, -215], + [-215, 215], + [-211, 215], + [-211, -215] ], [ - [165, 165], - [165, -165], - [161, -165], - [161, 165] + [215, 215], + [215, -215], + [211, -215], + [211, 215] ], [ - [-165, -165], - [165, -165], - [-165, -161], - [165, -161] + [-215, -215], + [215, -215], + [-215, -211], + [215, -211] ], [ - [-165, 165], - [165, 165], - [-165, 161], - [165, 161] + [-215, 215], + [215, 215], + [-215, 211], + [215, 211] ] ] } From 8e0831a1e7910a66e46c9191bb816bdcb9ee48ae Mon Sep 17 00:00:00 2001 From: Christopher Peredy <16451370+mastercaution@users.noreply.github.com> Date: Tue, 19 Dec 2023 20:06:36 +0100 Subject: [PATCH 305/765] EN4 Plus/Max fix platform mesh --- resources/definitions/elegoo_neptune_4max.def.json | 6 ++++++ resources/definitions/elegoo_neptune_4plus.def.json | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/resources/definitions/elegoo_neptune_4max.def.json b/resources/definitions/elegoo_neptune_4max.def.json index 9ea53650cbf..c2f6aa708c7 100644 --- a/resources/definitions/elegoo_neptune_4max.def.json +++ b/resources/definitions/elegoo_neptune_4max.def.json @@ -6,6 +6,12 @@ { "visible": true, "author": "mastercaution", + "platform": "elegoo_platform_max.3mf", + "platform_offset": [ + -2.1, + -0.2, + 0 + ], "quality_definition": "elegoo_neptune_4" }, "overrides": diff --git a/resources/definitions/elegoo_neptune_4plus.def.json b/resources/definitions/elegoo_neptune_4plus.def.json index 703db646348..0038e496419 100644 --- a/resources/definitions/elegoo_neptune_4plus.def.json +++ b/resources/definitions/elegoo_neptune_4plus.def.json @@ -6,6 +6,12 @@ { "visible": true, "author": "mastercaution", + "platform": "elegoo_platform_max.3mf", + "platform_offset": [ + -2.1, + -0.2, + 0 + ], "quality_definition": "elegoo_neptune_4" }, "overrides": From f663c57a927ca7a637bd382cd7b0ab9bc19c76aa Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Wed, 20 Dec 2023 08:50:37 +0100 Subject: [PATCH 306/765] Remove msi installer code Should be done for CURA-11435 CURA-11288 --- packaging/msi/UltiMaker-Cura.wxs.jinja | 36 -------------------------- 1 file changed, 36 deletions(-) diff --git a/packaging/msi/UltiMaker-Cura.wxs.jinja b/packaging/msi/UltiMaker-Cura.wxs.jinja index c6ec5dbd636..a183a97d5f2 100644 --- a/packaging/msi/UltiMaker-Cura.wxs.jinja +++ b/packaging/msi/UltiMaker-Cura.wxs.jinja @@ -33,21 +33,6 @@ />
    - - - - - {% if "Enterprise" in app_name %} @@ -159,32 +144,11 @@ - - - - - - - - - - - - - - - - - - - - - From f8f497b5781da97567077bff81bd75123b5bc3f4 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Wed, 20 Dec 2023 10:05:01 +0100 Subject: [PATCH 307/765] url registry entry for msi CURA-11435 --- packaging/msi/UltiMaker-Cura.wxs.jinja | 36 ++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/packaging/msi/UltiMaker-Cura.wxs.jinja b/packaging/msi/UltiMaker-Cura.wxs.jinja index a183a97d5f2..c6ec5dbd636 100644 --- a/packaging/msi/UltiMaker-Cura.wxs.jinja +++ b/packaging/msi/UltiMaker-Cura.wxs.jinja @@ -33,6 +33,21 @@ /> + + + + + {% if "Enterprise" in app_name %} @@ -144,11 +159,32 @@ + + + + + + + + + + + + + + + + + + + + + From 76f86081c63c48652949d11d5c6aea62c5a4fd8b Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Wed, 20 Dec 2023 10:50:57 +0100 Subject: [PATCH 308/765] fixing the register entry CURA-11435 --- packaging/msi/UltiMaker-Cura.wxs.jinja | 41 ++++++++++++++++++++------ 1 file changed, 32 insertions(+), 9 deletions(-) diff --git a/packaging/msi/UltiMaker-Cura.wxs.jinja b/packaging/msi/UltiMaker-Cura.wxs.jinja index c6ec5dbd636..3dcb9ef2ee4 100644 --- a/packaging/msi/UltiMaker-Cura.wxs.jinja +++ b/packaging/msi/UltiMaker-Cura.wxs.jinja @@ -160,24 +160,47 @@ - + + + + + + + + + + + + + + + + + + + + + 127.0.0.1 + + + + - - + + - + - - - - + + + + - From e08d183b6c424d9ecc5c5e4668e7e379edf0cabf Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Wed, 20 Dec 2023 10:56:25 +0100 Subject: [PATCH 309/765] undo commit 76f8608 CURA-11435 --- packaging/msi/UltiMaker-Cura.wxs.jinja | 37 +++++--------------------- 1 file changed, 7 insertions(+), 30 deletions(-) diff --git a/packaging/msi/UltiMaker-Cura.wxs.jinja b/packaging/msi/UltiMaker-Cura.wxs.jinja index 3dcb9ef2ee4..21f017c8139 100644 --- a/packaging/msi/UltiMaker-Cura.wxs.jinja +++ b/packaging/msi/UltiMaker-Cura.wxs.jinja @@ -160,31 +160,7 @@ - - - - - - - - - - - - - - - - - - - - - 127.0.0.1 - - - - + @@ -193,14 +169,15 @@ - + - - - - + + + + + From 41efdbabe0faf7bd70fe2d759db19be3e6033414 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Wed, 20 Dec 2023 18:16:04 +0100 Subject: [PATCH 310/765] Path change possible by user - simulation speed increased - no buffering in between layers - fps made 30 CURA-7647 --- plugins/SimulationView/SimulationView.py | 43 +++++++++++-------- .../SimulationViewMainComponent.qml | 3 +- 2 files changed, 27 insertions(+), 19 deletions(-) diff --git a/plugins/SimulationView/SimulationView.py b/plugins/SimulationView/SimulationView.py index 64ec0dfc1b3..2663993f557 100644 --- a/plugins/SimulationView/SimulationView.py +++ b/plugins/SimulationView/SimulationView.py @@ -1,6 +1,6 @@ # Copyright (c) 2021 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. - +import math import sys from PyQt6.QtCore import Qt @@ -58,6 +58,7 @@ class SimulationView(CuraView): LAYER_VIEW_TYPE_LINE_TYPE = 1 LAYER_VIEW_TYPE_FEEDRATE = 2 LAYER_VIEW_TYPE_THICKNESS = 3 + SIMULATION_FACTOR = 5 _no_layers_warning_preference = "view/no_layers_warning" @@ -97,6 +98,7 @@ def __init__(self, parent = None) -> None: self._min_line_width = sys.float_info.max self._min_flow_rate = sys.float_info.max self._max_flow_rate = sys.float_info.min + self._cumulative_line_duration ={} self._global_container_stack: Optional[ContainerStack] = None self._proxy = None @@ -196,21 +198,21 @@ def setTime(self, time: float) -> None: left_i = 0 right_i = self._max_paths - 1 - total_duration, cumulative_line_duration = self.cumulativeLineDuration() + total_duration = self.cumulativeLineDuration() # make an educated guess about where to start i = int(right_i * max(0.0, min(1.0, self._current_time / total_duration))) # binary search for the correct path while left_i < right_i: - if cumulative_line_duration[i] <= self._current_time: + if self._cumulative_line_duration[self.getCurrentLayer()][i] <= self._current_time: left_i = i + 1 else: right_i = i i = int((left_i + right_i) / 2) - left_value = cumulative_line_duration[i - 1] if i > 0 else 0.0 - right_value = cumulative_line_duration[i] + left_value = self._cumulative_line_duration[self.getCurrentLayer()][i - 1] if i > 0 else 0.0 + right_value = self._cumulative_line_duration[self.getCurrentLayer()][i] assert (left_value <= self._current_time <= right_value) @@ -225,10 +227,7 @@ def advanceTime(self, time_increase: float) -> bool: :param time_increase: The amount of time to advance (in seconds). :return: True if the time was advanced, False if the end of the simulation was reached. """ - total_duration, cumulative_line_duration = self.cumulativeLineDuration() - - # time ratio - time_increase = time_increase + total_duration = self.cumulativeLineDuration() if self._current_time + time_increase > total_duration: # If we have reached the end of the simulation, go to the next layer. @@ -244,15 +243,20 @@ def advanceTime(self, time_increase: float) -> bool: self.setTime(self._current_time + time_increase) return True - def cumulativeLineDuration(self) -> Tuple[float, List[float]]: - # TODO: cache the total duration and cumulative line duration at each layer change event - cumulative_line_duration = [] - total_duration = 0.0 - for polyline in self.getLayerData().polygons: - for line_duration in list((polyline.lineLengths / polyline.lineFeedrates)[0]): - total_duration += line_duration - cumulative_line_duration.append(total_duration) - return total_duration, cumulative_line_duration + def cumulativeLineDuration(self) -> float: + # Make sure _cumulative_line_duration is initialized properly + if self.getCurrentLayer() not in self._cumulative_line_duration: + self._cumulative_line_duration[self.getCurrentLayer()] = [] + total_duration = 0.0 + for polyline in self.getLayerData().polygons: + for line_duration in list((polyline.lineLengths / polyline.lineFeedrates)[0]): + total_duration += line_duration / SimulationView.SIMULATION_FACTOR + self._cumulative_line_duration[self.getCurrentLayer()].append(total_duration) + + # Calculate the total duration using numpy.sum + total_duration = (self._cumulative_line_duration[self.getCurrentLayer()][-1]) + + return total_duration def getLayerData(self) -> Optional["LayerData"]: scene = self.getController().getScene() @@ -360,6 +364,9 @@ def setPath(self, value: float) -> None: if self._current_path_num != value: self._current_path_num = min(max(value, 0), self._max_paths) self._minimum_path_num = min(self._minimum_path_num, self._current_path_num) + # update _current time when the path is changed by user + if self.getCurrentLayer() in self._cumulative_line_duration and self._current_path_num < self._max_paths and round(self._current_path_num)== self._current_path_num: + self._current_time = self._cumulative_line_duration[self.getCurrentLayer()][int(self._current_path_num)] self._startUpdateTopLayers() self.currentPathNumChanged.emit() diff --git a/plugins/SimulationView/SimulationViewMainComponent.qml b/plugins/SimulationView/SimulationViewMainComponent.qml index 23cbf8c6119..0432cfc08d9 100644 --- a/plugins/SimulationView/SimulationViewMainComponent.qml +++ b/plugins/SimulationView/SimulationViewMainComponent.qml @@ -127,6 +127,7 @@ Item function resumeSimulation() { UM.SimulationView.setSimulationRunning(true) + UM.SimulationView.setCurrentPath(UM.SimulationView.currentPath) simulationTimer.start() layerSlider.manuallyChanged = false pathSlider.manuallyChanged = false @@ -136,7 +137,7 @@ Item Timer { id: simulationTimer - interval: 1000 / 60 + interval: 1000 / 30 running: false repeat: true onTriggered: From e2e94b7f6b9252ad64641793ef9a4d283cff5bcb Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Thu, 21 Dec 2023 10:32:49 +0100 Subject: [PATCH 311/765] fps made 15 for lower GPU load - reinitialisation of cummulative_time for new model CURA-7647 --- plugins/SimulationView/SimulationView.py | 5 +++-- plugins/SimulationView/SimulationViewMainComponent.qml | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/plugins/SimulationView/SimulationView.py b/plugins/SimulationView/SimulationView.py index 2663993f557..bce7062a364 100644 --- a/plugins/SimulationView/SimulationView.py +++ b/plugins/SimulationView/SimulationView.py @@ -98,7 +98,7 @@ def __init__(self, parent = None) -> None: self._min_line_width = sys.float_info.max self._min_flow_rate = sys.float_info.max self._max_flow_rate = sys.float_info.min - self._cumulative_line_duration ={} + self._cumulative_line_duration = {} self._global_container_stack: Optional[ContainerStack] = None self._proxy = None @@ -253,7 +253,7 @@ def cumulativeLineDuration(self) -> float: total_duration += line_duration / SimulationView.SIMULATION_FACTOR self._cumulative_line_duration[self.getCurrentLayer()].append(total_duration) - # Calculate the total duration using numpy.sum + # total duration for a layer to simulate is the last element of the list total_duration = (self._cumulative_line_duration[self.getCurrentLayer()][-1]) return total_duration @@ -572,6 +572,7 @@ def calculateColorSchemeLimits(self) -> None: self._max_thickness = sys.float_info.min self._min_flow_rate = sys.float_info.max self._max_flow_rate = sys.float_info.min + self._cumulative_line_duration = {} # The colour scheme is only influenced by the visible lines, so filter the lines by if they should be visible. visible_line_types = [] diff --git a/plugins/SimulationView/SimulationViewMainComponent.qml b/plugins/SimulationView/SimulationViewMainComponent.qml index 0432cfc08d9..d9e7a95bc1c 100644 --- a/plugins/SimulationView/SimulationViewMainComponent.qml +++ b/plugins/SimulationView/SimulationViewMainComponent.qml @@ -137,12 +137,12 @@ Item Timer { id: simulationTimer - interval: 1000 / 30 + interval: 1000 / 15 running: false repeat: true onTriggered: { - // divide by 1000 to accont for ms to s conversion + // divide by 1000 to account for ms to s conversion const advance_time = simulationTimer.interval / 1000.0; if (!UM.SimulationView.advanceTime(advance_time)) { playButton.pauseSimulation(); From 3f8908f53a8207d2d75cab89618d22436df31ccd Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Thu, 21 Dec 2023 10:42:52 +0100 Subject: [PATCH 312/765] cleanup CURA-7647 --- plugins/SimulationView/SimulationView.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/SimulationView/SimulationView.py b/plugins/SimulationView/SimulationView.py index bce7062a364..070a5c0345d 100644 --- a/plugins/SimulationView/SimulationView.py +++ b/plugins/SimulationView/SimulationView.py @@ -1,6 +1,5 @@ # Copyright (c) 2021 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. -import math import sys from PyQt6.QtCore import Qt @@ -40,7 +39,7 @@ import numpy import os.path -from typing import Optional, TYPE_CHECKING, List, Tuple, cast +from typing import Optional, TYPE_CHECKING, List, cast if TYPE_CHECKING: from UM.Scene.SceneNode import SceneNode From 0de4f612b399cfe8b7a6c8059e9579489bcd739c Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Thu, 21 Dec 2023 14:13:16 +0100 Subject: [PATCH 313/765] fixing review comments. Cache only for the current layer CURA-7647 --- plugins/SimulationView/SimulationView.py | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/plugins/SimulationView/SimulationView.py b/plugins/SimulationView/SimulationView.py index 070a5c0345d..1043c7659ae 100644 --- a/plugins/SimulationView/SimulationView.py +++ b/plugins/SimulationView/SimulationView.py @@ -197,21 +197,22 @@ def setTime(self, time: float) -> None: left_i = 0 right_i = self._max_paths - 1 - total_duration = self.cumulativeLineDuration() + cumulative_line_duration = self.cumulativeLineDuration() + total_duration = cumulative_line_duration[-1] # make an educated guess about where to start i = int(right_i * max(0.0, min(1.0, self._current_time / total_duration))) # binary search for the correct path while left_i < right_i: - if self._cumulative_line_duration[self.getCurrentLayer()][i] <= self._current_time: + if cumulative_line_duration[i] <= self._current_time: left_i = i + 1 else: right_i = i i = int((left_i + right_i) / 2) - left_value = self._cumulative_line_duration[self.getCurrentLayer()][i - 1] if i > 0 else 0.0 - right_value = self._cumulative_line_duration[self.getCurrentLayer()][i] + left_value = cumulative_line_duration[i - 1] if i > 0 else 0.0 + right_value = cumulative_line_duration[i] assert (left_value <= self._current_time <= right_value) @@ -226,7 +227,7 @@ def advanceTime(self, time_increase: float) -> bool: :param time_increase: The amount of time to advance (in seconds). :return: True if the time was advanced, False if the end of the simulation was reached. """ - total_duration = self.cumulativeLineDuration() + total_duration = self.cumulativeLineDuration()[-1] if self._current_time + time_increase > total_duration: # If we have reached the end of the simulation, go to the next layer. @@ -242,9 +243,11 @@ def advanceTime(self, time_increase: float) -> bool: self.setTime(self._current_time + time_increase) return True - def cumulativeLineDuration(self) -> float: + def cumulativeLineDuration(self) -> list: # Make sure _cumulative_line_duration is initialized properly if self.getCurrentLayer() not in self._cumulative_line_duration: + #clear cache + self._cumulative_line_duration = {} self._cumulative_line_duration[self.getCurrentLayer()] = [] total_duration = 0.0 for polyline in self.getLayerData().polygons: @@ -252,10 +255,7 @@ def cumulativeLineDuration(self) -> float: total_duration += line_duration / SimulationView.SIMULATION_FACTOR self._cumulative_line_duration[self.getCurrentLayer()].append(total_duration) - # total duration for a layer to simulate is the last element of the list - total_duration = (self._cumulative_line_duration[self.getCurrentLayer()][-1]) - - return total_duration + return self._cumulative_line_duration[self.getCurrentLayer()] def getLayerData(self) -> Optional["LayerData"]: scene = self.getController().getScene() @@ -364,8 +364,8 @@ def setPath(self, value: float) -> None: self._current_path_num = min(max(value, 0), self._max_paths) self._minimum_path_num = min(self._minimum_path_num, self._current_path_num) # update _current time when the path is changed by user - if self.getCurrentLayer() in self._cumulative_line_duration and self._current_path_num < self._max_paths and round(self._current_path_num)== self._current_path_num: - self._current_time = self._cumulative_line_duration[self.getCurrentLayer()][int(self._current_path_num)] + if self._current_path_num < self._max_paths and round(self._current_path_num)== self._current_path_num: + self._current_time = self.cumulativeLineDuration()[int(self._current_path_num)] self._startUpdateTopLayers() self.currentPathNumChanged.emit() From 152cb27232310a35b3e71a70b438253a95c760f5 Mon Sep 17 00:00:00 2001 From: Saumya Jain <70144862+saumyaj3@users.noreply.github.com> Date: Thu, 21 Dec 2023 14:30:43 +0100 Subject: [PATCH 314/765] Update plugins/SimulationView/SimulationView.py review fix Co-authored-by: Casper Lamboo --- plugins/SimulationView/SimulationView.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/SimulationView/SimulationView.py b/plugins/SimulationView/SimulationView.py index 1043c7659ae..04fc383fbbf 100644 --- a/plugins/SimulationView/SimulationView.py +++ b/plugins/SimulationView/SimulationView.py @@ -243,7 +243,7 @@ def advanceTime(self, time_increase: float) -> bool: self.setTime(self._current_time + time_increase) return True - def cumulativeLineDuration(self) -> list: + def cumulativeLineDuration(self) -> List[float]: # Make sure _cumulative_line_duration is initialized properly if self.getCurrentLayer() not in self._cumulative_line_duration: #clear cache From 608c2344c5d8b44e318d14a1284eb6204b194154 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Thu, 21 Dec 2023 16:25:12 +0100 Subject: [PATCH 315/765] on_error takes multiple args CURA-11289 --- cura/CuraApplication.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 52f38d46855..fd4b0c858cb 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -1837,7 +1837,7 @@ def on_finish(response): self.readLocalFile(QUrl.fromLocalFile(tmp.name), add_to_recent_files=False) - def on_error(): + def on_error(*args, **kwargs): Logger.log("w", "Could not download file from {0}".format(model_url.url())) return From a309c9efdb5e3520de880fec40a89835d87f14dd Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Thu, 21 Dec 2023 17:26:11 +0100 Subject: [PATCH 316/765] Error is displayed on Cura screen CURA-11289 --- cura/CuraApplication.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index fd4b0c858cb..1ef2f63a9e6 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -1839,6 +1839,9 @@ def on_finish(response): def on_error(*args, **kwargs): Logger.log("w", "Could not download file from {0}".format(model_url.url())) + Message("Could not download file: " + str(model_url.url()), + title= "Loading Model failed", + message_type=Message.MessageType.ERROR).show() return self.getHttpRequestManager().get( From 411b40d78c39923723ad31709d04f5558c7d1728 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Fri, 22 Dec 2023 10:37:51 +0100 Subject: [PATCH 317/765] Simulation speed made 3X case where no polygon in layer is also addressed CURA-11289 --- plugins/SimulationView/SimulationView.py | 65 ++++++++++++------------ 1 file changed, 33 insertions(+), 32 deletions(-) diff --git a/plugins/SimulationView/SimulationView.py b/plugins/SimulationView/SimulationView.py index 04fc383fbbf..337879475b7 100644 --- a/plugins/SimulationView/SimulationView.py +++ b/plugins/SimulationView/SimulationView.py @@ -57,7 +57,7 @@ class SimulationView(CuraView): LAYER_VIEW_TYPE_LINE_TYPE = 1 LAYER_VIEW_TYPE_FEEDRATE = 2 LAYER_VIEW_TYPE_THICKNESS = 3 - SIMULATION_FACTOR = 5 + SIMULATION_FACTOR = 3 _no_layers_warning_preference = "view/no_layers_warning" @@ -192,33 +192,30 @@ def getCurrentPath(self) -> float: return self._current_path_num def setTime(self, time: float) -> None: - self._current_time = time - - left_i = 0 - right_i = self._max_paths - 1 - cumulative_line_duration = self.cumulativeLineDuration() - total_duration = cumulative_line_duration[-1] - - # make an educated guess about where to start - i = int(right_i * max(0.0, min(1.0, self._current_time / total_duration))) - - # binary search for the correct path - while left_i < right_i: - if cumulative_line_duration[i] <= self._current_time: - left_i = i + 1 - else: - right_i = i - i = int((left_i + right_i) / 2) - - left_value = cumulative_line_duration[i - 1] if i > 0 else 0.0 - right_value = cumulative_line_duration[i] - - assert (left_value <= self._current_time <= right_value) - - fractional_value = (self._current_time - left_value) / (right_value - left_value) - - self.setPath(i + fractional_value) + if len(cumulative_line_duration) > 0: + self._current_time = time + left_i = 0 + right_i = self._max_paths - 1 + total_duration = cumulative_line_duration[-1] + # make an educated guess about where to start + i = int(right_i * max(0.0, min(1.0, self._current_time / total_duration))) + # binary search for the correct path + while left_i < right_i: + if cumulative_line_duration[i] <= self._current_time: + left_i = i + 1 + else: + right_i = i + i = int((left_i + right_i) / 2) + + left_value = cumulative_line_duration[i - 1] if i > 0 else 0.0 + right_value = cumulative_line_duration[i] + + assert (left_value <= self._current_time <= right_value) + + fractional_value = (self._current_time - left_value) / (right_value - left_value) + + self.setPath(i + fractional_value) def advanceTime(self, time_increase: float) -> bool: """ @@ -227,7 +224,9 @@ def advanceTime(self, time_increase: float) -> bool: :param time_increase: The amount of time to advance (in seconds). :return: True if the time was advanced, False if the end of the simulation was reached. """ - total_duration = self.cumulativeLineDuration()[-1] + total_duration = 0.0 + if len(self.cumulativeLineDuration()) > 0: + total_duration = self.cumulativeLineDuration()[-1] if self._current_time + time_increase > total_duration: # If we have reached the end of the simulation, go to the next layer. @@ -250,10 +249,12 @@ def cumulativeLineDuration(self) -> List[float]: self._cumulative_line_duration = {} self._cumulative_line_duration[self.getCurrentLayer()] = [] total_duration = 0.0 - for polyline in self.getLayerData().polygons: - for line_duration in list((polyline.lineLengths / polyline.lineFeedrates)[0]): - total_duration += line_duration / SimulationView.SIMULATION_FACTOR - self._cumulative_line_duration[self.getCurrentLayer()].append(total_duration) + polylines = self.getLayerData() + if polylines is not None: + for polyline in polylines.polygons: + for line_duration in list((polyline.lineLengths / polyline.lineFeedrates)[0]): + total_duration += line_duration / SimulationView.SIMULATION_FACTOR + self._cumulative_line_duration[self.getCurrentLayer()].append(total_duration) return self._cumulative_line_duration[self.getCurrentLayer()] From 224f6132286e0e2aec6386545cfb6921f58afcab Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Fri, 22 Dec 2023 11:36:51 +0100 Subject: [PATCH 318/765] Property of machinemanager redefined CURA-11459 --- resources/qml/PrinterSelector/MachineSelector.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/qml/PrinterSelector/MachineSelector.qml b/resources/qml/PrinterSelector/MachineSelector.qml index b8b27049f6b..1bad1d70bc6 100644 --- a/resources/qml/PrinterSelector/MachineSelector.qml +++ b/resources/qml/PrinterSelector/MachineSelector.qml @@ -11,7 +11,7 @@ Cura.ExpandablePopup { id: machineSelector - property Cura.MachineManager machineManager + property var machineManager: Cura.MachineManager property bool isNetworkPrinter: machineManager.activeMachineHasNetworkConnection property bool isConnectedCloudPrinter: machineManager.activeMachineHasCloudConnection property bool isCloudRegistered: machineManager.activeMachineHasCloudRegistration @@ -107,6 +107,7 @@ Cura.ExpandablePopup { return UM.Theme.getIcon("Printer", "medium") } + else { return "" From 7fab301866b63d90ffb72603fdd3aa30a505cdec Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 22 Dec 2023 18:02:23 +0100 Subject: [PATCH 319/765] Guard against index out of bound CURA-7647 --- plugins/SimulationView/SimulationPass.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/SimulationView/SimulationPass.py b/plugins/SimulationView/SimulationPass.py index 3294f4b1e6b..e97a0cd32ce 100644 --- a/plugins/SimulationView/SimulationPass.py +++ b/plugins/SimulationView/SimulationPass.py @@ -160,14 +160,14 @@ def render(self): ratio = self._layer_view.getCurrentPath() - index pos_a = Vector(polygon.data[index + offset][0], polygon.data[index + offset][1], polygon.data[index + offset][2]) - if ratio > 0.0001: + if ratio <= 0.0001 or index + offset == len(polygon.data): + head_position = pos_a + node.getWorldPosition() + else: pos_b = Vector(polygon.data[index + offset + 1][0], polygon.data[index + offset + 1][1], polygon.data[index + offset + 1][2]) vec = pos_a * (1.0 - ratio) + pos_b * ratio head_position = vec + node.getWorldPosition() - else: - head_position = pos_a + node.getWorldPosition() break break if self._layer_view.getMinimumLayer() > layer: From 20ef47284526b155f5c47f1463479e4fe81949fc Mon Sep 17 00:00:00 2001 From: zhogov Date: Tue, 26 Dec 2023 05:19:12 -0500 Subject: [PATCH 320/765] Fix Ender 3 V3 SE start g-code 1. Replace square brackets with curly ones 2. Add bed heating command so Cura won't have to implicitly generate it itself --- resources/definitions/creality_ender3v3se.def.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/definitions/creality_ender3v3se.def.json b/resources/definitions/creality_ender3v3se.def.json index 5769e3e4936..dc3e7bb70db 100644 --- a/resources/definitions/creality_ender3v3se.def.json +++ b/resources/definitions/creality_ender3v3se.def.json @@ -45,11 +45,11 @@ "machine_max_feedrate_y": { "value": 500 }, "machine_max_feedrate_z": { "value": 30 }, "machine_name": { "default_value": "Creality Ender-3 V3 SE" }, - "machine_start_gcode": { "default_value": "M220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\n\nM420 S1; Enable mesh leveling\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nM109 S[material_print_temperature_layer_0]\nG1 X10.1 Y145.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y145.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 E-1.0000 F1800 ;Retract a bit\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 E0.0000 F1800 \n" }, + "machine_start_gcode": { "default_value": "M220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\n\nM420 S1; Use saved mesh leveling data\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nM190 S{material_bed_temperature_layer_0} ; set bed temperature and wait\nM109 S{material_print_temperature_layer_0} ; set hotend temperature and wait\nG1 X10.1 Y145.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y145.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 E-1.0000 F1800 ;Retract a bit\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 E0.0000 F1800 \n" }, "machine_width": { "default_value": 220 }, "retraction_amount": { "value": 0.8 }, "retraction_speed": { "default_value": 40 }, "speed_layer_0": { "value": 30 }, "speed_print": { "value": 180 } } -} \ No newline at end of file +} From da58c63db6716a9f20de03b86f86dcfe0f39b53e Mon Sep 17 00:00:00 2001 From: zhogov Date: Tue, 26 Dec 2023 05:26:56 -0500 Subject: [PATCH 321/765] Upper case --- resources/definitions/creality_ender3v3se.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/creality_ender3v3se.def.json b/resources/definitions/creality_ender3v3se.def.json index dc3e7bb70db..8e32a44eb90 100644 --- a/resources/definitions/creality_ender3v3se.def.json +++ b/resources/definitions/creality_ender3v3se.def.json @@ -45,7 +45,7 @@ "machine_max_feedrate_y": { "value": 500 }, "machine_max_feedrate_z": { "value": 30 }, "machine_name": { "default_value": "Creality Ender-3 V3 SE" }, - "machine_start_gcode": { "default_value": "M220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\n\nM420 S1; Use saved mesh leveling data\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nM190 S{material_bed_temperature_layer_0} ; set bed temperature and wait\nM109 S{material_print_temperature_layer_0} ; set hotend temperature and wait\nG1 X10.1 Y145.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y145.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 E-1.0000 F1800 ;Retract a bit\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 E0.0000 F1800 \n" }, + "machine_start_gcode": { "default_value": "M220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\n\nM420 S1; Use saved mesh leveling data\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nM190 S{material_bed_temperature_layer_0} ; Set bed temperature and wait\nM109 S{material_print_temperature_layer_0} ; Set hotend temperature and wait\nG1 X10.1 Y145.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y145.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 E-1.0000 F1800 ;Retract a bit\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 E0.0000 F1800 \n" }, "machine_width": { "default_value": 220 }, "retraction_amount": { "value": 0.8 }, "retraction_speed": { "default_value": 40 }, From 632c10db51908445c41a3cd12bd2532c0df0211e Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Wed, 27 Dec 2023 10:12:40 +0100 Subject: [PATCH 322/765] Guard against index for edge case CURA-7647 --- plugins/SimulationView/SimulationPass.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/SimulationView/SimulationPass.py b/plugins/SimulationView/SimulationPass.py index e97a0cd32ce..dd94d678ae7 100644 --- a/plugins/SimulationView/SimulationPass.py +++ b/plugins/SimulationView/SimulationPass.py @@ -160,7 +160,7 @@ def render(self): ratio = self._layer_view.getCurrentPath() - index pos_a = Vector(polygon.data[index + offset][0], polygon.data[index + offset][1], polygon.data[index + offset][2]) - if ratio <= 0.0001 or index + offset == len(polygon.data): + if ratio <= 0.0001 or index + offset < len(polygon.data): head_position = pos_a + node.getWorldPosition() else: pos_b = Vector(polygon.data[index + offset + 1][0], From 96aba0a8df8ad20441c0c23c5b56cf0d98398181 Mon Sep 17 00:00:00 2001 From: Christopher Peredy <16451370+mastercaution@users.noreply.github.com> Date: Thu, 28 Dec 2023 23:12:35 +0100 Subject: [PATCH 323/765] EN4 add 0.2mm engineering profile --- ...oo_n4_aa0.4_pla_0.2mm_engineering.inst.cfg | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_engineering.inst.cfg diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_engineering.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_engineering.inst.cfg new file mode 100644 index 00000000000..1e9703215da --- /dev/null +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_engineering.inst.cfg @@ -0,0 +1,25 @@ +[general] +definition = elegoo_neptune_4 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +is_experimental = True +material = generic_pla +quality_type = Elegoo_layer_020 +setting_version = 22 +type = intent +variant = 0.40mm_Elegoo_Nozzle + +[values] +speed_infill = =speed_print +speed_print = 150 +speed_topbottom = =speed_print * 2 / 3 +speed_travel = =min(speed_print * 4 / 3, 250) if speed_print <= 250 else speed_print +speed_wall = =speed_print * 2 / 3 +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + From ff65f79a728e033bd7258b57c697b867ba187c2d Mon Sep 17 00:00:00 2001 From: Christian Kunis Date: Sat, 30 Dec 2023 09:58:58 -0500 Subject: [PATCH 324/765] Fixed default gcode flavor for Voron --- resources/definitions/voron2_base.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/voron2_base.def.json b/resources/definitions/voron2_base.def.json index 1e76380b697..8fc882d59e9 100644 --- a/resources/definitions/voron2_base.def.json +++ b/resources/definitions/voron2_base.def.json @@ -55,7 +55,7 @@ "machine_endstop_positive_direction_y": { "default_value": true }, "machine_endstop_positive_direction_z": { "default_value": false }, "machine_feeder_wheel_diameter": { "default_value": 7.5 }, - "machine_gcode_flavor": { "default_value": "RepRap (RepRap)" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_head_with_fans_polygon": { "default_value": [ From b51ea6970b507344963abcfddb69bd3f33e37a83 Mon Sep 17 00:00:00 2001 From: Christian Kunis Date: Sat, 30 Dec 2023 09:59:25 -0500 Subject: [PATCH 325/765] Updated print_start gcode for Voron printers --- resources/definitions/voron2_base.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/voron2_base.def.json b/resources/definitions/voron2_base.def.json index 8fc882d59e9..a3eb099d495 100644 --- a/resources/definitions/voron2_base.def.json +++ b/resources/definitions/voron2_base.def.json @@ -76,7 +76,7 @@ "machine_max_jerk_xy": { "default_value": 20 }, "machine_max_jerk_z": { "default_value": 1 }, "machine_name": { "default_value": "VORON2" }, - "machine_start_gcode": { "default_value": "print_start" }, + "machine_start_gcode": { "default_value": "print_start EXTRUDER={material_print_temperature_layer_0} BED={material_bed_temperature_layer_0} CHAMBER={build_volume_temperature}" }, "machine_steps_per_mm_x": { "default_value": 80 }, "machine_steps_per_mm_y": { "default_value": 80 }, "machine_steps_per_mm_z": { "default_value": 400 }, From 6bb1dba3e092fa55169b7767dd05cb03787e2db8 Mon Sep 17 00:00:00 2001 From: Christian Kunis Date: Sat, 30 Dec 2023 10:10:46 -0500 Subject: [PATCH 326/765] Add metadata to Voron start gcode Adding extra metadata for Moonraker as described in the Klipper Preprocessor docs --- resources/definitions/voron2_base.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/voron2_base.def.json b/resources/definitions/voron2_base.def.json index a3eb099d495..dc6cd255bb1 100644 --- a/resources/definitions/voron2_base.def.json +++ b/resources/definitions/voron2_base.def.json @@ -76,7 +76,7 @@ "machine_max_jerk_xy": { "default_value": 20 }, "machine_max_jerk_z": { "default_value": 1 }, "machine_name": { "default_value": "VORON2" }, - "machine_start_gcode": { "default_value": "print_start EXTRUDER={material_print_temperature_layer_0} BED={material_bed_temperature_layer_0} CHAMBER={build_volume_temperature}" }, + "machine_start_gcode": { "default_value": ";Nozzle diameter = {machine_nozzle_size}\n;Filament type = {material_type}\n;Filament name = {material_name}\n;Filament weight = {filament_weight}\n; M190 S{material_bed_temperature_layer_0}\n; M109 S{material_print_temperature_layer_0}\nprint_start EXTRUDER={material_print_temperature_layer_0} BED={material_bed_temperature_layer_0} CHAMBER={build_volume_temperature}" }, "machine_steps_per_mm_x": { "default_value": 80 }, "machine_steps_per_mm_y": { "default_value": 80 }, "machine_steps_per_mm_z": { "default_value": 400 }, From 603f49122f3e581281e5f4ff2e559d9738d55bd2 Mon Sep 17 00:00:00 2001 From: DSNS <48170013+dsnsgithub@users.noreply.github.com> Date: Sat, 30 Dec 2023 21:17:01 -0800 Subject: [PATCH 327/765] Fix Ender 5 Plus ABL command --- resources/definitions/creality_ender5plus.def.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/definitions/creality_ender5plus.def.json b/resources/definitions/creality_ender5plus.def.json index b7b11343e53..24bf10cd0d3 100644 --- a/resources/definitions/creality_ender5plus.def.json +++ b/resources/definitions/creality_ender5plus.def.json @@ -23,8 +23,8 @@ }, "machine_height": { "default_value": 400 }, "machine_name": { "default_value": "Creality Ender-5 Plus" }, - "machine_start_gcode": { "default_value": "M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration\nM203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate\nM204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration\nM205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\nM420 S1 Z2 ;Enable ABL using saved Mesh and Fade Height\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n" }, + "machine_start_gcode": { "default_value": "M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration\nM203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate\nM204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration\nM205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\nG29 ;Auto bed level\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n" }, "machine_width": { "default_value": 350 }, "speed_print": { "value": 80.0 } } -} \ No newline at end of file +} From e66314b2dd35bb6f87f1f3804a38311e5fc535f4 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Tue, 2 Jan 2024 10:48:40 +0100 Subject: [PATCH 328/765] ppr setting was added when it should be excluded CURA-11480 --- resources/qml/Preferences/SettingVisibilityPage.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/qml/Preferences/SettingVisibilityPage.qml b/resources/qml/Preferences/SettingVisibilityPage.qml index 476ba999cf3..8743999fe22 100644 --- a/resources/qml/Preferences/SettingVisibilityPage.qml +++ b/resources/qml/Preferences/SettingVisibilityPage.qml @@ -123,7 +123,7 @@ UM.PreferencesPage var idx = -1; for(var i = 0; i < settingVisibilityPresetsModel.items.length; ++i) { - if(settingVisibilityPresetsModel.items[i].presetId == settingVisibilityPresetsModel.activePreset) + if(settingVisibilityPresetsModel.items[i].presetId === settingVisibilityPresetsModel.activePreset) { idx = i; break; @@ -159,7 +159,7 @@ UM.PreferencesPage id: definitionsModel containerId: Cura.MachineManager.activeMachine != null ? Cura.MachineManager.activeMachine.definition.id: "" showAll: true - exclude: ["machine_settings", "command_line_settings"] + exclude: ["machine_settings", "command_line_settings", "ppr"] showAncestors: true expanded: ["*"] visibilityHandler: UM.SettingPreferenceVisibilityHandler {} @@ -173,13 +173,13 @@ UM.PreferencesPage id: loader width: settingsListView.width - scrollBar.width - height: model.type != undefined ? UM.Theme.getSize("section").height : 0 + height: model.type !== undefined ? UM.Theme.getSize("section").height : 0 property var definition: model property var settingDefinitionsModel: definitionsModel asynchronous: true - active: model.type != undefined + active: model.type !== undefined sourceComponent: { switch (model.type) From 0bb1f0b7c3ff87edbecca432e017c6423ad03eed Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Tue, 2 Jan 2024 12:05:55 +0100 Subject: [PATCH 329/765] Case of simulation with multiple extruders CURA-7647 --- plugins/SimulationView/SimulationPass.py | 22 +++++++++++----------- plugins/SimulationView/SimulationView.py | 7 +++++-- 2 files changed, 16 insertions(+), 13 deletions(-) diff --git a/plugins/SimulationView/SimulationPass.py b/plugins/SimulationView/SimulationPass.py index dd94d678ae7..cdeb9da29ff 100644 --- a/plugins/SimulationView/SimulationPass.py +++ b/plugins/SimulationView/SimulationPass.py @@ -1,5 +1,6 @@ # Copyright (c) 2021 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. +import math from UM.Math.Color import Color from UM.Math.Vector import Vector @@ -148,24 +149,23 @@ def render(self): if layer == self._layer_view._current_layer_num: # We look for the position of the head, searching the point of the current path index = int(self._layer_view.getCurrentPath()) - offset = 0 for polygon in layer_data.getLayer(layer).polygons: # The size indicates all values in the two-dimension array, and the second dimension is # always size 3 because we have 3D points. - if index >= polygon.data.size // 3 - offset: - index -= polygon.data.size // 3 - offset - offset = 1 # This is to avoid the first point when there is more than one polygon, since has the same value as the last point in the previous polygon + if index >= polygon.data.size // 3 : + index -= polygon.data.size // 3 continue # The head position is calculated and translated - ratio = self._layer_view.getCurrentPath() - index - pos_a = Vector(polygon.data[index + offset][0], polygon.data[index + offset][1], - polygon.data[index + offset][2]) - if ratio <= 0.0001 or index + offset < len(polygon.data): + ratio = self._layer_view.getCurrentPath() - math.floor(self._layer_view.getCurrentPath()) + pos_a = Vector(polygon.data[index][0], polygon.data[index + offset][1], + polygon.data[index][2]) + if ratio <= 0.0001 or index + 1 == len(polygon.data): + # in case there multiple polygons and polygon changes, the first point has the same value as the last point in the previous polygon head_position = pos_a + node.getWorldPosition() else: - pos_b = Vector(polygon.data[index + offset + 1][0], - polygon.data[index + offset + 1][1], - polygon.data[index + offset + 1][2]) + pos_b = Vector(polygon.data[index + 1][0], + polygon.data[index + 1][1], + polygon.data[index + 1][2]) vec = pos_a * (1.0 - ratio) + pos_b * ratio head_position = vec + node.getWorldPosition() break diff --git a/plugins/SimulationView/SimulationView.py b/plugins/SimulationView/SimulationView.py index 337879475b7..92a6a9e8534 100644 --- a/plugins/SimulationView/SimulationView.py +++ b/plugins/SimulationView/SimulationView.py @@ -57,7 +57,7 @@ class SimulationView(CuraView): LAYER_VIEW_TYPE_LINE_TYPE = 1 LAYER_VIEW_TYPE_FEEDRATE = 2 LAYER_VIEW_TYPE_THICKNESS = 3 - SIMULATION_FACTOR = 3 + SIMULATION_FACTOR = 2 _no_layers_warning_preference = "view/no_layers_warning" @@ -211,7 +211,8 @@ def setTime(self, time: float) -> None: left_value = cumulative_line_duration[i - 1] if i > 0 else 0.0 right_value = cumulative_line_duration[i] - assert (left_value <= self._current_time <= right_value) + if not (left_value <= self._current_time <= right_value): + Logger.debug(f"At index {i}: left value {left_value} right value {right_value} and current time is {self._current_time}") fractional_value = (self._current_time - left_value) / (right_value - left_value) @@ -255,6 +256,8 @@ def cumulativeLineDuration(self) -> List[float]: for line_duration in list((polyline.lineLengths / polyline.lineFeedrates)[0]): total_duration += line_duration / SimulationView.SIMULATION_FACTOR self._cumulative_line_duration[self.getCurrentLayer()].append(total_duration) + # for tool change we add an extra tool path + self._cumulative_line_duration[self.getCurrentLayer()].append(total_duration) return self._cumulative_line_duration[self.getCurrentLayer()] From ee7ecc1acc76f8d5504251dba9b4627bbb3b5ca5 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Wed, 3 Jan 2024 09:16:04 +0100 Subject: [PATCH 330/765] offset removed CURA-7647 --- plugins/SimulationView/SimulationPass.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/SimulationView/SimulationPass.py b/plugins/SimulationView/SimulationPass.py index cdeb9da29ff..2099f6c21da 100644 --- a/plugins/SimulationView/SimulationPass.py +++ b/plugins/SimulationView/SimulationPass.py @@ -157,7 +157,7 @@ def render(self): continue # The head position is calculated and translated ratio = self._layer_view.getCurrentPath() - math.floor(self._layer_view.getCurrentPath()) - pos_a = Vector(polygon.data[index][0], polygon.data[index + offset][1], + pos_a = Vector(polygon.data[index][0], polygon.data[index][1], polygon.data[index][2]) if ratio <= 0.0001 or index + 1 == len(polygon.data): # in case there multiple polygons and polygon changes, the first point has the same value as the last point in the previous polygon From 2fbdb633e16857a58e883f0ecf2bfdcc308d36bb Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Wed, 3 Jan 2024 12:23:40 +0100 Subject: [PATCH 331/765] qt6.6 scroll issues CURA-11468 --- conanfile.py | 1 + cura_app.py | 1 + packaging/AppImage-builder/AppImageBuilder.yml.jinja | 1 + packaging/AppImage/AppRun | 1 + 4 files changed, 4 insertions(+) diff --git a/conanfile.py b/conanfile.py index a3ca8f1c898..5ebcf5a4c4a 100644 --- a/conanfile.py +++ b/conanfile.py @@ -71,6 +71,7 @@ def _cura_run_env(self): self._cura_env = Environment() self._cura_env.define("QML2_IMPORT_PATH", str(self._site_packages.joinpath("PyQt6", "Qt6", "qml"))) self._cura_env.define("QT_PLUGIN_PATH", str(self._site_packages.joinpath("PyQt6", "Qt6", "plugins"))) + self._cura_env.define("QT_QUICK_FLICKABLE_WHEEL_DECELERATION", "5000") if not self.in_local_cache: self._cura_env.define("CURA_DATA_ROOT", str(self._share_dir.joinpath("cura"))) diff --git a/cura_app.py b/cura_app.py index 905d8f4ee0d..17321b80427 100755 --- a/cura_app.py +++ b/cura_app.py @@ -17,6 +17,7 @@ import os if sys.platform != "linux": # Turns out the Linux build _does_ use this, but we're not making an Enterprise release for that system anyway. os.environ["QT_PLUGIN_PATH"] = "" # Security workaround: Don't need it, and introduces an attack vector, so set to nul. + os.environ["QT_QUICK_FLICKABLE_WHEEL_DECELERATION"] = "" # Security workaround: Don't need it, and introduces an attack vector, so set to nul. os.environ["QML2_IMPORT_PATH"] = "" # Security workaround: Don't need it, and introduces an attack vector, so set to nul. os.environ["QT_OPENGL_DLL"] = "" # Security workaround: Don't need it, and introduces an attack vector, so set to nul. diff --git a/packaging/AppImage-builder/AppImageBuilder.yml.jinja b/packaging/AppImage-builder/AppImageBuilder.yml.jinja index 9090a5f209d..ae6cabcaa14 100644 --- a/packaging/AppImage-builder/AppImageBuilder.yml.jinja +++ b/packaging/AppImage-builder/AppImageBuilder.yml.jinja @@ -45,6 +45,7 @@ AppDir: LD_LIBRARY_PATH: "$APPDIR:$APPDIR/runtime/compat/:$APPDIR/usr/lib/x86_64-linux-gnu:$APPDIR/lib/x86_64-linux-gnu:$APPDIR/usr/lib:$APPDIR/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders" PYTHONPATH: "$APPDIR" QT_PLUGIN_PATH: "$APPDIR/qt/plugins" + QT_QUICK_FLICKABLE_WHEEL_DECELERATION: "5000" QML2_IMPORT_PATH: "$APPDIR/qt/qml" QT_QPA_PLATFORMTHEME: xdgdesktopportal GDK_PIXBUF_MODULEDIR: $APPDIR/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders diff --git a/packaging/AppImage/AppRun b/packaging/AppImage/AppRun index 369ce54c6c2..9926df18788 100644 --- a/packaging/AppImage/AppRun +++ b/packaging/AppImage/AppRun @@ -5,6 +5,7 @@ scriptdir=$(dirname $0) export PYTHONPATH="$scriptdir/lib/python3.10" export LD_LIBRARY_PATH=$scriptdir export QT_PLUGIN_PATH="$scriptdir/qt/plugins" +export QT_QUICK_FLICKABLE_WHEEL_DECELERATION="5000" export QML2_IMPORT_PATH="$scriptdir/qt/qml" export QT_QPA_FONTDIR=/usr/share/fonts export QT_QPA_PLATFORMTHEME=xdgdesktopportal From 1e230ffef1962faeae7068caf4ad3f91f6a35b06 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Wed, 3 Jan 2024 14:19:22 +0100 Subject: [PATCH 332/765] Printer name changed to printer type printer names can be different for same type of printer. Also, printer type is coming from cloud here so the type search is changed accordingly CURA-11432 --- plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py index 9a11bb886ca..b2541f6f821 100644 --- a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py +++ b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py @@ -331,7 +331,7 @@ def isMethod(self) -> bool: return False [printer, *_] = self._printers - return printer.name in ("ultimaker_methodx", "ultimaker_methodxl") + return printer.type in ("MakerBot Method X", "MakerBot Method XL") @pyqtProperty(bool, notify=_cloudClusterPrintersChanged) def supportsPrintJobActions(self) -> bool: From df589cfe95a3da7b407ee0b4b2f268ba0544a492 Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Wed, 3 Jan 2024 15:38:53 +0100 Subject: [PATCH 333/765] Fan speeds are in 0..1 range and not in 0..255 range for the Method machines. This needs to be corrected in the switch over routine formula's. PP-417 --- resources/extruders/ultimaker_methodx_extruder_left.def.json | 4 ++-- resources/extruders/ultimaker_methodx_extruder_right.def.json | 4 ++-- resources/extruders/ultimaker_methodxl_extruder_left.def.json | 4 ++-- .../extruders/ultimaker_methodxl_extruder_right.def.json | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/resources/extruders/ultimaker_methodx_extruder_left.def.json b/resources/extruders/ultimaker_methodx_extruder_left.def.json index 97e8a1f2c39..273a2c922e0 100644 --- a/resources/extruders/ultimaker_methodx_extruder_left.def.json +++ b/resources/extruders/ultimaker_methodx_extruder_left.def.json @@ -14,8 +14,8 @@ "default_value": 0, "maximum_value": "1" }, - "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S255\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, - "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM109 S{material_final_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed*255/100}" }, + "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S1.0\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, + "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM109 S{material_initial_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed/100}" }, "machine_nozzle_offset_x": { "default_value": 0 }, "machine_nozzle_offset_y": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, diff --git a/resources/extruders/ultimaker_methodx_extruder_right.def.json b/resources/extruders/ultimaker_methodx_extruder_right.def.json index 8a4ef334045..bb8f1d89c28 100644 --- a/resources/extruders/ultimaker_methodx_extruder_right.def.json +++ b/resources/extruders/ultimaker_methodx_extruder_right.def.json @@ -14,8 +14,8 @@ "default_value": 1, "maximum_value": "1" }, - "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S255\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, - "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM109 S{material_final_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed*255/100}" }, + "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S1.0\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, + "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM109 S{material_initial_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed/100}" }, "machine_nozzle_offset_x": { "default_value": 0 }, "machine_nozzle_offset_y": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, diff --git a/resources/extruders/ultimaker_methodxl_extruder_left.def.json b/resources/extruders/ultimaker_methodxl_extruder_left.def.json index 2bedf9a62c6..ba4a3f01576 100644 --- a/resources/extruders/ultimaker_methodxl_extruder_left.def.json +++ b/resources/extruders/ultimaker_methodxl_extruder_left.def.json @@ -14,8 +14,8 @@ "default_value": 0, "maximum_value": "1" }, - "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S255\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, - "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM109 S{material_final_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed*255/100}" }, + "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S1.0\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, + "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM109 S{material_initial_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed/100}" }, "machine_nozzle_offset_x": { "default_value": 0 }, "machine_nozzle_offset_y": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, diff --git a/resources/extruders/ultimaker_methodxl_extruder_right.def.json b/resources/extruders/ultimaker_methodxl_extruder_right.def.json index 2fd5b376634..32fbf1dd086 100644 --- a/resources/extruders/ultimaker_methodxl_extruder_right.def.json +++ b/resources/extruders/ultimaker_methodxl_extruder_right.def.json @@ -14,8 +14,8 @@ "default_value": 1, "maximum_value": "1" }, - "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S255\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, - "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM109 S{material_final_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed*255/100}" }, + "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S1.0\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, + "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM109 S{material_initial_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed/100}" }, "machine_nozzle_offset_x": { "default_value": 0 }, "machine_nozzle_offset_y": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, From 44441dfe5b119e66d7e671f780f3dffe3a66f7aa Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Wed, 3 Jan 2024 15:54:24 +0100 Subject: [PATCH 334/765] Improve the time estimates for the Method machines be increasing the acceleration and reducing the jerk. For dual extrusion a rough switch over time estimate is taken into account. PP-377 --- resources/definitions/ultimaker_method_base.def.json | 6 +++--- .../extruders/ultimaker_methodx_extruder_left.def.json | 1 + .../extruders/ultimaker_methodx_extruder_right.def.json | 1 + .../extruders/ultimaker_methodxl_extruder_left.def.json | 1 + .../extruders/ultimaker_methodxl_extruder_right.def.json | 1 + 5 files changed, 7 insertions(+), 3 deletions(-) diff --git a/resources/definitions/ultimaker_method_base.def.json b/resources/definitions/ultimaker_method_base.def.json index 4f03a8dbe14..972d69e0d33 100644 --- a/resources/definitions/ultimaker_method_base.def.json +++ b/resources/definitions/ultimaker_method_base.def.json @@ -99,7 +99,7 @@ "acceleration_print": { "enabled": false, - "value": 300 + "value": 800 }, "acceleration_print_layer_0": { @@ -234,7 +234,7 @@ "jerk_print": { "enabled": false, - "value": 12.5 + "value": 6.25 }, "jerk_print_layer_0": { @@ -279,7 +279,7 @@ "jerk_travel": { "enabled": false, - "value": 12.5 + "value": "jerk_print" }, "jerk_travel_enabled": { diff --git a/resources/extruders/ultimaker_methodx_extruder_left.def.json b/resources/extruders/ultimaker_methodx_extruder_left.def.json index 97e8a1f2c39..7051f056f33 100644 --- a/resources/extruders/ultimaker_methodx_extruder_left.def.json +++ b/resources/extruders/ultimaker_methodx_extruder_left.def.json @@ -16,6 +16,7 @@ }, "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S255\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM109 S{material_final_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed*255/100}" }, + "machine_extruder_start_code_duration": { "default_value": 8 }, "machine_nozzle_offset_x": { "default_value": 0 }, "machine_nozzle_offset_y": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, diff --git a/resources/extruders/ultimaker_methodx_extruder_right.def.json b/resources/extruders/ultimaker_methodx_extruder_right.def.json index 8a4ef334045..1fea854877d 100644 --- a/resources/extruders/ultimaker_methodx_extruder_right.def.json +++ b/resources/extruders/ultimaker_methodx_extruder_right.def.json @@ -16,6 +16,7 @@ }, "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S255\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM109 S{material_final_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed*255/100}" }, + "machine_extruder_start_code_duration": { "default_value": 8 }, "machine_nozzle_offset_x": { "default_value": 0 }, "machine_nozzle_offset_y": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, diff --git a/resources/extruders/ultimaker_methodxl_extruder_left.def.json b/resources/extruders/ultimaker_methodxl_extruder_left.def.json index 2bedf9a62c6..66670fe994d 100644 --- a/resources/extruders/ultimaker_methodxl_extruder_left.def.json +++ b/resources/extruders/ultimaker_methodxl_extruder_left.def.json @@ -16,6 +16,7 @@ }, "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S255\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM109 S{material_final_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed*255/100}" }, + "machine_extruder_start_code_duration": { "default_value": 10 }, "machine_nozzle_offset_x": { "default_value": 0 }, "machine_nozzle_offset_y": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, diff --git a/resources/extruders/ultimaker_methodxl_extruder_right.def.json b/resources/extruders/ultimaker_methodxl_extruder_right.def.json index 2fd5b376634..9f483e39bc6 100644 --- a/resources/extruders/ultimaker_methodxl_extruder_right.def.json +++ b/resources/extruders/ultimaker_methodxl_extruder_right.def.json @@ -16,6 +16,7 @@ }, "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S255\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM109 S{material_final_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed*255/100}" }, + "machine_extruder_start_code_duration": { "default_value": 10 }, "machine_nozzle_offset_x": { "default_value": 0 }, "machine_nozzle_offset_y": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, From 2e197f72ee3b5abfd18941fa1969d31e5ae3dcc0 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Wed, 3 Jan 2024 17:37:54 +0100 Subject: [PATCH 335/765] Add missing `default_value` for `roofing_monotonic --- resources/definitions/fdmprinter.def.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 62143cf8f8a..2a35a5faab0 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -1478,6 +1478,7 @@ "description": "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent.", "type": "bool", "value": true, + "default_value": true, "enabled": "roofing_layer_count > 0 and top_layers > 0 and roofing_pattern != 'concentric'", "limit_to_extruder": "roofing_extruder_nr", "settable_per_mesh": true @@ -8438,4 +8439,4 @@ } } } -} \ No newline at end of file +} From 4a8e00fcc6b43f04ca87a08abe8ce2a6e7739ed8 Mon Sep 17 00:00:00 2001 From: jellespijker Date: Wed, 3 Jan 2024 16:38:51 +0000 Subject: [PATCH 336/765] Applied printer-linter format --- resources/definitions/fdmprinter.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 2a35a5faab0..7796b04751c 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -8439,4 +8439,4 @@ } } } -} +} \ No newline at end of file From 7d040a0b026c2d77ea7e9733fef334c6eccef062 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Wed, 3 Jan 2024 18:03:37 +0100 Subject: [PATCH 337/765] Fixed multiple `default_value` definitions default_value should be an actual value --- resources/definitions/fdmprinter.def.json | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 7796b04751c..cf2b7a57af2 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -4579,6 +4579,7 @@ "unit": "\u00b0C", "type": "float", "value": "material_print_temperature", + "default_value": 0, "enabled": "cool_min_layer_time > 0", "minimum_value_warning": "max(material_final_print_temperature, material_initial_print_temperature)", "maximum_value_warning": "material_print_temperature", @@ -6690,7 +6691,7 @@ "type": "float", "unit": "mm", "enabled": "resolveOrValue('prime_tower_enable') and (resolveOrValue('prime_tower_brim_enable') or resolveOrValue('adhesion_type') == 'raft')", - "default_value": "resolveOrValue('brim_width')", + "default_value": 1.2, "minimum_value": "0", "maximum_value": "min(0.5 * machine_width, 0.5 * machine_depth)", "settable_per_mesh": false, @@ -8330,7 +8331,7 @@ { "label": "Flow Warning", "description": "Limit on the flow warning for detection.", - "default_value": "15.0", + "default_value": 15.0, "enabled": "ppr_enable", "unit": "%", "type": "float", @@ -8340,7 +8341,7 @@ { "label": "Flow Limit", "description": "Limit on flow anomaly for detection.", - "default_value": "25.0", + "default_value": 25.0, "enabled": "ppr_enable", "unit": "%", "type": "float", @@ -8352,7 +8353,7 @@ "description": "Limit on Print temperature warning for detection.", "unit": "\u00b0C", "type": "float", - "default_value": "3.0", + "default_value": 3.0, "enabled": "ppr_enable", "settable_per_extruder": true }, @@ -8362,7 +8363,7 @@ "description": "Limit on Print Temperature anomaly for detection.", "unit": "\u00b0C", "type": "float", - "default_value": "7.0", + "default_value": 7.0, "enabled": "ppr_enable", "settable_per_extruder": true }, @@ -8372,7 +8373,7 @@ "description": "Limit on Build Volume Temperature warning for detection.", "unit": "\u00b0C", "type": "float", - "default_value": "7.5", + "default_value": 7.5, "enabled": "ppr_enable", "settable_per_extruder": false }, @@ -8382,7 +8383,7 @@ "description": "Limit on Build Volume temperature Anomaly for detection.", "unit": "\u00b0C", "type": "float", - "default_value": "10.0", + "default_value": 10.0, "enabled": "ppr_enable", "settable_per_extruder": false } From 2b05a370ca7afca70276b28958ac87a60f3d149a Mon Sep 17 00:00:00 2001 From: alexandr-vladimirov Date: Thu, 4 Jan 2024 06:30:23 +0300 Subject: [PATCH 338/765] Allow to set print sequence manually --- conandata.yml | 8 + cura/CuraApplication.py | 26 ++- cura/HitChecker.py | 88 ++++++++++ cura/OneAtATimeIterator.py | 115 ++++--------- cura/PrintOrderManager.py | 171 +++++++++++++++++++ cura/Scene/CuraSceneNode.py | 12 ++ cura/UI/ObjectsModel.py | 19 ++- plugins/3MFReader/ThreeMFReader.py | 3 + plugins/3MFWriter/ThreeMFWriter.py | 4 + resources/definitions/fdmprinter.def.json | 10 ++ resources/i18n/cs_CZ/cura.po | 8 + resources/i18n/cs_CZ/fdmprinter.def.json.po | 8 + resources/i18n/cura.pot | 8 + resources/i18n/de_DE/cura.po | 8 + resources/i18n/de_DE/fdmprinter.def.json.po | 8 + resources/i18n/es_ES/cura.po | 8 + resources/i18n/es_ES/fdmprinter.def.json.po | 8 + resources/i18n/fdmprinter.def.json.pot | 8 + resources/i18n/fi_FI/cura.po | 8 + resources/i18n/fi_FI/fdmprinter.def.json.po | 8 + resources/i18n/fr_FR/cura.po | 8 + resources/i18n/fr_FR/fdmprinter.def.json.po | 8 + resources/i18n/hu_HU/cura.po | 8 + resources/i18n/hu_HU/fdmprinter.def.json.po | 8 + resources/i18n/it_IT/cura.po | 8 + resources/i18n/it_IT/fdmprinter.def.json.po | 8 + resources/i18n/ja_JP/cura.po | 8 + resources/i18n/ja_JP/fdmprinter.def.json.po | 8 + resources/i18n/ko_KR/cura.po | 8 + resources/i18n/ko_KR/fdmprinter.def.json.po | 8 + resources/i18n/nl_NL/cura.po | 8 + resources/i18n/nl_NL/fdmprinter.def.json.po | 8 + resources/i18n/pl_PL/cura.po | 8 + resources/i18n/pl_PL/fdmprinter.def.json.po | 8 + resources/i18n/pt_BR/cura.po | 8 + resources/i18n/pt_BR/fdmprinter.def.json.po | 8 + resources/i18n/pt_PT/cura.po | 8 + resources/i18n/pt_PT/fdmprinter.def.json.po | 8 + resources/i18n/ru_RU/cura.po | 8 + resources/i18n/ru_RU/fdmprinter.def.json.po | 8 + resources/i18n/tr_TR/cura.po | 8 + resources/i18n/tr_TR/fdmprinter.def.json.po | 8 + resources/i18n/zh_CN/cura.po | 8 + resources/i18n/zh_CN/fdmprinter.def.json.po | 8 + resources/i18n/zh_TW/cura.po | 8 + resources/i18n/zh_TW/fdmprinter.def.json.po | 8 + resources/qml/Actions.qml | 23 +++ resources/qml/Menus/ContextMenu.qml | 13 ++ resources/qml/Menus/EditMenu.qml | 13 ++ resources/setting_visibility/advanced.cfg | 1 + resources/setting_visibility/expert.cfg | 1 + tests/TestHitChecker.py | 141 ++++++++++++++++ tests/TestPrintOrderManager.py | 175 ++++++++++++++++++++ 53 files changed, 1022 insertions(+), 89 deletions(-) create mode 100644 cura/HitChecker.py create mode 100644 cura/PrintOrderManager.py create mode 100644 tests/TestHitChecker.py create mode 100644 tests/TestPrintOrderManager.py diff --git a/conandata.yml b/conandata.yml index a0a5a204ca6..c1dad5057d1 100644 --- a/conandata.yml +++ b/conandata.yml @@ -161,6 +161,10 @@ pycharm_targets: module_name: Cura name: pytest in TestGCodeListDecorator.py script_name: tests/TestGCodeListDecorator.py + - jinja_path: .run_templates/pycharm_cura_test.run.xml.jinja + module_name: Cura + name: pytest in TestHitChecker.py + script_name: tests/TestHitChecker.py - jinja_path: .run_templates/pycharm_cura_test.run.xml.jinja module_name: Cura name: pytest in TestIntentManager.py @@ -189,6 +193,10 @@ pycharm_targets: module_name: Cura name: pytest in TestPrintInformation.py script_name: tests/TestPrintInformation.py + - jinja_path: .run_templates/pycharm_cura_test.run.xml.jinja + module_name: Cura + name: pytest in TestPrintOrderManager.py + script_name: tests/TestPrintOrderManager.py - jinja_path: .run_templates/pycharm_cura_test.run.xml.jinja module_name: Cura name: pytest in TestProfileRequirements.py diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 1ef2f63a9e6..387adda5cb0 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -125,6 +125,7 @@ from .Machines.Models.MachineListModel import MachineListModel from .Machines.Models.ActiveIntentQualitiesModel import ActiveIntentQualitiesModel from .Machines.Models.IntentSelectionModel import IntentSelectionModel +from .PrintOrderManager import PrintOrderManager from .SingleInstance import SingleInstance if TYPE_CHECKING: @@ -202,6 +203,7 @@ def __init__(self, *args, **kwargs): self._container_manager = None self._object_manager = None + self._print_order_manager = None self._extruders_model = None self._extruders_model_with_optional = None self._build_plate_model = None @@ -899,6 +901,7 @@ def run(self): # initialize info objects self._print_information = PrintInformation.PrintInformation(self) self._cura_actions = CuraActions.CuraActions(self) + self._print_order_manager = PrintOrderManager(self.getObjectsModel().getNodes) self.processEvents() # Initialize setting visibility presets model. self._setting_visibility_presets_model = SettingVisibilityPresetsModel(self.getPreferences(), parent = self) @@ -979,6 +982,7 @@ def runWithGUI(self): t.setEnabledAxis([ToolHandle.XAxis, ToolHandle.YAxis, ToolHandle.ZAxis]) Selection.selectionChanged.connect(self.onSelectionChanged) + self._print_order_manager.printOrderChanged.connect(self._onPrintOrderChanged) # Set default background color for scene self.getRenderer().setBackgroundColor(QColor(245, 245, 245)) @@ -1218,6 +1222,7 @@ def registerObjects(self, engine): self.processEvents() engine.rootContext().setContextProperty("Printer", self) engine.rootContext().setContextProperty("CuraApplication", self) + engine.rootContext().setContextProperty("PrintOrderManager", self._print_order_manager) engine.rootContext().setContextProperty("PrintInformation", self._print_information) engine.rootContext().setContextProperty("CuraActions", self._cura_actions) engine.rootContext().setContextProperty("CuraSDKVersion", ApplicationMetadata.CuraSDKVersion) @@ -1715,8 +1720,12 @@ def groupSelected(self) -> None: Selection.remove(node) Selection.add(group_node) + all_nodes = self.getObjectsModel().getNodes() + PrintOrderManager.updatePrintOrdersAfterGroupOperation(all_nodes, group_node, selected_nodes) + @pyqtSlot() def ungroupSelected(self) -> None: + all_nodes = self.getObjectsModel().getNodes() selected_objects = Selection.getAllSelectedObjects().copy() for node in selected_objects: if node.callDecoration("isGroup"): @@ -1724,21 +1733,30 @@ def ungroupSelected(self) -> None: group_parent = node.getParent() children = node.getChildren().copy() - for child in children: - # Ungroup only 1 level deep - if child.getParent() != node: - continue + # Ungroup only 1 level deep + children_to_ungroup = list(filter(lambda child: child.getParent() == node, children)) + for child in children_to_ungroup: # Set the parent of the children to the parent of the group-node op.addOperation(SetParentOperation(child, group_parent)) # Add all individual nodes to the selection Selection.add(child) + PrintOrderManager.updatePrintOrdersAfterUngroupOperation(all_nodes, node, children_to_ungroup) op.push() # Note: The group removes itself from the scene once all its children have left it, # see GroupDecorator._onChildrenChanged + def _onPrintOrderChanged(self) -> None: + # update object list + scene = self.getController().getScene() + scene.sceneChanged.emit(scene.getRoot()) + + # reset if already was sliced + Application.getInstance().getBackend().needsSlicing() + Application.getInstance().getBackend().tickle() + def _createSplashScreen(self) -> Optional[CuraSplashScreen.CuraSplashScreen]: if self._is_headless: return None diff --git a/cura/HitChecker.py b/cura/HitChecker.py new file mode 100644 index 00000000000..4b229e6b9b7 --- /dev/null +++ b/cura/HitChecker.py @@ -0,0 +1,88 @@ +from typing import List, Dict +from cura.Scene.CuraSceneNode import CuraSceneNode + + +class HitChecker: + """Checks if nodes can be printed without causing any collisions and interference""" + + def __init__(self, nodes: List[CuraSceneNode]) -> None: + self._hit_map = self._buildHitMap(nodes) + + def anyTwoNodesBlockEachOther(self, nodes: List[CuraSceneNode]) -> bool: + """Returns True if any 2 nodes block each other""" + for a in nodes: + for b in nodes: + if self._hit_map[a][b] and self._hit_map[b][a]: + return True + return False + + def canPrintBefore(self, node: CuraSceneNode, other_nodes: List[CuraSceneNode]) -> bool: + """Returns True if node doesn't block other_nodes and can be printed before them""" + no_hits = all(not self._hit_map[node][other_node] for other_node in other_nodes) + return no_hits + + def canPrintAfter(self, node: CuraSceneNode, other_nodes: List[CuraSceneNode]) -> bool: + """Returns True if node doesn't hit other nodes and can be printed after them""" + no_hits = all(not self._hit_map[other_node][node] for other_node in other_nodes) + return no_hits + + def calculateScore(self, a: CuraSceneNode, b: CuraSceneNode) -> int: + """Calculate score simply sums the number of other objects it 'blocks' + + :param a: node + :param b: node + :return: sum of the number of other objects + """ + + score_a = sum(self._hit_map[a].values()) + score_b = sum(self._hit_map[b].values()) + return score_a - score_b + + def canPrintNodesInProvidedOrder(self, ordered_nodes: List[CuraSceneNode]) -> bool: + """Returns True If nodes don't have any hits in provided order""" + for node_index, node in enumerate(ordered_nodes): + nodes_before = ordered_nodes[:node_index - 1] if node_index - 1 >= 0 else [] + nodes_after = ordered_nodes[node_index + 1:] if node_index + 1 < len(ordered_nodes) else [] + if not self.canPrintBefore(node, nodes_after) or not self.canPrintAfter(node, nodes_before): + return False + return True + + @staticmethod + def _buildHitMap(nodes: List[CuraSceneNode]) -> Dict[CuraSceneNode, CuraSceneNode]: + """Pre-computes all hits between all objects + + :nodes: nodes that need to be checked for collisions + :return: dictionary where hit_map[node1][node2] is False if there node1 can be printed before node2 + """ + hit_map = {j: {i: HitChecker._checkHit(j, i) for i in nodes} for j in nodes} + return hit_map + + @staticmethod + def _checkHit(a: CuraSceneNode, b: CuraSceneNode) -> bool: + """Checks if a can be printed before b + + :param a: node + :param b: node + :return: False if a can be printed before b + """ + + if a == b: + return False + + a_hit_hull = a.callDecoration("getConvexHullBoundary") + b_hit_hull = b.callDecoration("getConvexHullHeadFull") + overlap = a_hit_hull.intersectsPolygon(b_hit_hull) + + if overlap: + return True + + # Adhesion areas must never overlap, regardless of printing order + # This would cause over-extrusion + a_hit_hull = a.callDecoration("getAdhesionArea") + b_hit_hull = b.callDecoration("getAdhesionArea") + overlap = a_hit_hull.intersectsPolygon(b_hit_hull) + + if overlap: + return True + else: + return False diff --git a/cura/OneAtATimeIterator.py b/cura/OneAtATimeIterator.py index 8bdddba554f..f92da3ec14f 100644 --- a/cura/OneAtATimeIterator.py +++ b/cura/OneAtATimeIterator.py @@ -7,6 +7,11 @@ from UM.Scene.SceneNode import SceneNode from functools import cmp_to_key +from cura.HitChecker import HitChecker +from cura.PrintOrderManager import PrintOrderManager +from cura.Scene.CuraSceneNode import CuraSceneNode + + class OneAtATimeIterator(Iterator.Iterator): """Iterator that returns a list of nodes in the order that they need to be printed @@ -16,8 +21,6 @@ class OneAtATimeIterator(Iterator.Iterator): def __init__(self, scene_node) -> None: super().__init__(scene_node) # Call super to make multiple inheritance work. - self._hit_map = [[]] # type: List[List[bool]] # For each node, which other nodes this hits. A grid of booleans on which nodes hit which. - self._original_node_list = [] # type: List[SceneNode] # The nodes that need to be checked for collisions. def _fillStack(self) -> None: """Fills the ``_node_stack`` with a list of scene nodes that need to be printed in order. """ @@ -38,104 +41,50 @@ def _fillStack(self) -> None: self._node_stack = node_list[:] return - # Copy the list - self._original_node_list = node_list[:] - - # Initialise the hit map (pre-compute all hits between all objects) - self._hit_map = [[self._checkHit(i, j) for i in node_list] for j in node_list] + hit_checker = HitChecker(node_list) - # Check if we have to files that block each other. If this is the case, there is no solution! - for a in range(0, len(node_list)): - for b in range(0, len(node_list)): - if a != b and self._hit_map[a][b] and self._hit_map[b][a]: - return + if PrintOrderManager.isUserDefinedPrintOrderEnabled(): + self._node_stack = self._getNodesOrderedByUser(hit_checker, node_list) + else: + self._node_stack = self._getNodesOrderedAutomatically(hit_checker, node_list) + + # update print orders so that user can try to arrange the nodes automatically first + # and if result is not satisfactory he/she can switch to manual mode and change it + for index, node in enumerate(self._node_stack): + node.printOrder = index + 1 + + @staticmethod + def _getNodesOrderedByUser(hit_checker: HitChecker, node_list: List[CuraSceneNode]) -> List[CuraSceneNode]: + nodes_ordered_by_user = sorted(node_list, key=lambda n: n.printOrder) + if hit_checker.canPrintNodesInProvidedOrder(nodes_ordered_by_user): + return nodes_ordered_by_user + return [] # No solution + + @staticmethod + def _getNodesOrderedAutomatically(hit_checker: HitChecker, node_list: List[CuraSceneNode]) -> List[CuraSceneNode]: + # Check if we have two files that block each other. If this is the case, there is no solution! + if hit_checker.anyTwoNodesBlockEachOther(node_list): + return [] # No solution # Sort the original list so that items that block the most other objects are at the beginning. # This does not decrease the worst case running time, but should improve it in most cases. - sorted(node_list, key = cmp_to_key(self._calculateScore)) + sorted(node_list, key = cmp_to_key(hit_checker.calculateScore)) todo_node_list = [_ObjectOrder([], node_list)] while len(todo_node_list) > 0: current = todo_node_list.pop() for node in current.todo: # Check if the object can be placed with what we have and still allows for a solution in the future - if not self._checkHitMultiple(node, current.order) and not self._checkBlockMultiple(node, current.todo): + if hit_checker.canPrintAfter(node, current.order) and hit_checker.canPrintBefore(node, current.todo): # We found a possible result. Create new todo & order list. new_todo_list = current.todo[:] new_todo_list.remove(node) new_order = current.order[:] + [node] if len(new_todo_list) == 0: # We have no more nodes to check, so quit looking. - self._node_stack = new_order - return + return new_order # Solution found! todo_node_list.append(_ObjectOrder(new_order, new_todo_list)) - self._node_stack = [] #No result found! - - - # Check if first object can be printed before the provided list (using the hit map) - def _checkHitMultiple(self, node: SceneNode, other_nodes: List[SceneNode]) -> bool: - node_index = self._original_node_list.index(node) - for other_node in other_nodes: - other_node_index = self._original_node_list.index(other_node) - if self._hit_map[node_index][other_node_index]: - return True - return False - - def _checkBlockMultiple(self, node: SceneNode, other_nodes: List[SceneNode]) -> bool: - """Check for a node whether it hits any of the other nodes. - - :param node: The node to check whether it collides with the other nodes. - :param other_nodes: The nodes to check for collisions. - :return: returns collision between nodes - """ - - node_index = self._original_node_list.index(node) - for other_node in other_nodes: - other_node_index = self._original_node_list.index(other_node) - if self._hit_map[other_node_index][node_index] and node_index != other_node_index: - return True - return False - - def _calculateScore(self, a: SceneNode, b: SceneNode) -> int: - """Calculate score simply sums the number of other objects it 'blocks' - - :param a: node - :param b: node - :return: sum of the number of other objects - """ - - score_a = sum(self._hit_map[self._original_node_list.index(a)]) - score_b = sum(self._hit_map[self._original_node_list.index(b)]) - return score_a - score_b - - def _checkHit(self, a: SceneNode, b: SceneNode) -> bool: - """Checks if a can be printed before b - - :param a: node - :param b: node - :return: true if a can be printed before b - """ - - if a == b: - return False - - a_hit_hull = a.callDecoration("getConvexHullBoundary") - b_hit_hull = b.callDecoration("getConvexHullHeadFull") - overlap = a_hit_hull.intersectsPolygon(b_hit_hull) - - if overlap: - return True - - # Adhesion areas must never overlap, regardless of printing order - # This would cause over-extrusion - a_hit_hull = a.callDecoration("getAdhesionArea") - b_hit_hull = b.callDecoration("getAdhesionArea") - overlap = a_hit_hull.intersectsPolygon(b_hit_hull) - - if overlap: - return True - else: - return False + return [] # No result found! class _ObjectOrder: diff --git a/cura/PrintOrderManager.py b/cura/PrintOrderManager.py new file mode 100644 index 00000000000..abfa5442a20 --- /dev/null +++ b/cura/PrintOrderManager.py @@ -0,0 +1,171 @@ +from typing import List, Callable, Optional, Any + +from PyQt6.QtCore import pyqtProperty, pyqtSignal, QObject, pyqtSlot +from UM.Application import Application +from UM.Scene.Selection import Selection + +from cura.Scene.CuraSceneNode import CuraSceneNode + + +class PrintOrderManager(QObject): + """Allows to order the object list to set the print sequence manually""" + + def __init__(self, get_nodes: Callable[[], List[CuraSceneNode]]) -> None: + super().__init__() + self._get_nodes = get_nodes + self._configureEvents() + + _settingsChanged = pyqtSignal() + _uiActionsOutdated = pyqtSignal() + printOrderChanged = pyqtSignal() + + @pyqtSlot() + def swapSelectedAndPreviousNodes(self) -> None: + selected_node, previous_node, next_node = self._getSelectedAndNeighborNodes() + self._swapPrintOrders(selected_node, previous_node) + + @pyqtSlot() + def swapSelectedAndNextNodes(self) -> None: + selected_node, previous_node, next_node = self._getSelectedAndNeighborNodes() + self._swapPrintOrders(selected_node, next_node) + + @pyqtProperty(str, notify=_uiActionsOutdated) + def previousNodeName(self) -> str: + selected_node, previous_node, next_node = self._getSelectedAndNeighborNodes() + return self._getNodeName(previous_node) + + @pyqtProperty(str, notify=_uiActionsOutdated) + def nextNodeName(self) -> str: + selected_node, previous_node, next_node = self._getSelectedAndNeighborNodes() + return self._getNodeName(next_node) + + @pyqtProperty(bool, notify=_uiActionsOutdated) + def shouldEnablePrintBeforeAction(self) -> bool: + selected_node, previous_node, next_node = self._getSelectedAndNeighborNodes() + can_swap_with_previous_node = selected_node is not None and previous_node is not None + return can_swap_with_previous_node + + @pyqtProperty(bool, notify=_uiActionsOutdated) + def shouldEnablePrintAfterAction(self) -> bool: + selected_node, previous_node, next_node = self._getSelectedAndNeighborNodes() + can_swap_with_next_node = selected_node is not None and next_node is not None + return can_swap_with_next_node + + @pyqtProperty(bool, notify=_settingsChanged) + def shouldShowEditPrintOrderActions(self) -> bool: + return PrintOrderManager.isUserDefinedPrintOrderEnabled() + + @staticmethod + def isUserDefinedPrintOrderEnabled() -> bool: + stack = Application.getInstance().getGlobalContainerStack() + is_enabled = stack and \ + stack.getProperty("print_sequence", "value") == "one_at_a_time" and \ + stack.getProperty("user_defined_print_order_enabled", "value") + return is_enabled + + @staticmethod + def initializePrintOrders(nodes: List[CuraSceneNode]) -> None: + """Just created (loaded from file) nodes have print order 0. + + This method initializes print orders with max value to put nodes at the end of object list""" + max_print_order = max(map(lambda n: n.printOrder, nodes), default=0) + for node in nodes: + if node.printOrder == 0: + max_print_order += 1 + node.printOrder = max_print_order + + @staticmethod + def updatePrintOrdersAfterGroupOperation( + all_nodes: List[CuraSceneNode], + group_node: CuraSceneNode, + grouped_nodes: List[CuraSceneNode] + ) -> None: + group_node.printOrder = min(map(lambda n: n.printOrder, grouped_nodes)) + + all_nodes.append(group_node) + for node in grouped_nodes: + all_nodes.remove(node) + + # reassign print orders so there won't be gaps like 1 2 5 6 7 + sorted_nodes = sorted(all_nodes, key=lambda n: n.printOrder) + for i, node in enumerate(sorted_nodes): + node.printOrder = i + 1 + + @staticmethod + def updatePrintOrdersAfterUngroupOperation( + all_nodes: List[CuraSceneNode], + group_node: CuraSceneNode, + ungrouped_nodes: List[CuraSceneNode] + ) -> None: + all_nodes.remove(group_node) + nodes_to_update_print_order = filter(lambda n: n.printOrder > group_node.printOrder, all_nodes) + for node in nodes_to_update_print_order: + node.printOrder += len(ungrouped_nodes) - 1 + + for i, child in enumerate(ungrouped_nodes): + child.printOrder = group_node.printOrder + i + all_nodes.append(child) + + def _swapPrintOrders(self, node1: CuraSceneNode, node2: CuraSceneNode) -> None: + if node1 and node2: + node1.printOrder, node2.printOrder = node2.printOrder, node1.printOrder # swap print orders + self.printOrderChanged.emit() # update object list first + self._uiActionsOutdated.emit() # then update UI actions + + def _getSelectedAndNeighborNodes(self + ) -> (Optional[CuraSceneNode], Optional[CuraSceneNode], Optional[CuraSceneNode]): + nodes = self._get_nodes() + ordered_nodes = sorted(nodes, key=lambda n: n.printOrder) + selected_node = PrintOrderManager._getSingleSelectedNode() + if selected_node and selected_node in ordered_nodes: + selected_node_index = ordered_nodes.index(selected_node) + else: + selected_node_index = None + + if selected_node_index is not None and selected_node_index - 1 >= 0: + previous_node = ordered_nodes[selected_node_index - 1] + else: + previous_node = None + + if selected_node_index is not None and selected_node_index + 1 < len(ordered_nodes): + next_node = ordered_nodes[selected_node_index + 1] + else: + next_node = None + + return selected_node, previous_node, next_node + + @staticmethod + def _getNodeName(node: CuraSceneNode, max_length: int = 30) -> str: + node_name = node.getName() if node else "" + truncated_node_name = node_name[:max_length] + return truncated_node_name + + @staticmethod + def _getSingleSelectedNode() -> Optional[CuraSceneNode]: + if len(Selection.getAllSelectedObjects()) == 1: + selected_node = Selection.getSelectedObject(0) + return selected_node + return None + + def _configureEvents(self) -> None: + Selection.selectionChanged.connect(self._onSelectionChanged) + self._global_stack = None + Application.getInstance().globalContainerStackChanged.connect(self._onGlobalStackChanged) + self._onGlobalStackChanged() + + def _onGlobalStackChanged(self) -> None: + if self._global_stack: + self._global_stack.propertyChanged.disconnect(self._onSettingsChanged) + self._global_stack.containersChanged.disconnect(self._onSettingsChanged) + + self._global_stack = Application.getInstance().getGlobalContainerStack() + + if self._global_stack: + self._global_stack.propertyChanged.connect(self._onSettingsChanged) + self._global_stack.containersChanged.connect(self._onSettingsChanged) + + def _onSettingsChanged(self, *args: Any) -> None: + self._settingsChanged.emit() + + def _onSelectionChanged(self) -> None: + self._uiActionsOutdated.emit() diff --git a/cura/Scene/CuraSceneNode.py b/cura/Scene/CuraSceneNode.py index 5fbaded6509..9b412c7d4f6 100644 --- a/cura/Scene/CuraSceneNode.py +++ b/cura/Scene/CuraSceneNode.py @@ -25,10 +25,19 @@ def __init__(self, parent: Optional["SceneNode"] = None, visible: bool = True, n if not no_setting_override: self.addDecorator(SettingOverrideDecorator()) # Now we always have a getActiveExtruderPosition, unless explicitly disabled self._outside_buildarea = False + self._print_order = 0 def setOutsideBuildArea(self, new_value: bool) -> None: self._outside_buildarea = new_value + @property + def printOrder(self): + return self._print_order + + @printOrder.setter + def printOrder(self, new_value): + self._print_order = new_value + def isOutsideBuildArea(self) -> bool: return self._outside_buildarea or self.callDecoration("getBuildPlateNumber") < 0 @@ -157,3 +166,6 @@ def __deepcopy__(self, memo: Dict[int, object]) -> "CuraSceneNode": def transformChanged(self) -> None: self._transformChanged() + + def __repr__(self) -> str: + return "{print_order}. {name}".format(print_order = self._print_order, name = self.getName()) diff --git a/cura/UI/ObjectsModel.py b/cura/UI/ObjectsModel.py index 4f642702474..4d5a4dfc814 100644 --- a/cura/UI/ObjectsModel.py +++ b/cura/UI/ObjectsModel.py @@ -14,6 +14,9 @@ from UM.Scene.Selection import Selection from UM.i18n import i18nCatalog +from cura.PrintOrderManager import PrintOrderManager +from cura.Scene.CuraSceneNode import CuraSceneNode + catalog = i18nCatalog("cura") @@ -76,6 +79,9 @@ def setActiveBuildPlate(self, nr: int) -> None: self._build_plate_number = nr self._update() + def getNodes(self) -> List[CuraSceneNode]: + return list(map(lambda n: n["node"], self.items)) + def _updateSceneDelayed(self, source) -> None: if not isinstance(source, Camera): self._update_timer.start() @@ -175,6 +181,10 @@ def _update(self, *args) -> None: all_nodes = self._renameNodes(name_to_node_info_dict) + user_defined_print_order_enabled = PrintOrderManager.isUserDefinedPrintOrderEnabled() + if user_defined_print_order_enabled: + PrintOrderManager.initializePrintOrders(all_nodes) + for node in all_nodes: if hasattr(node, "isOutsideBuildArea"): is_outside_build_area = node.isOutsideBuildArea() # type: ignore @@ -223,8 +233,13 @@ def _update(self, *args) -> None: # for anti overhang meshes and groups the extruder nr is irrelevant extruder_number = -1 + if not user_defined_print_order_enabled: + name = node.getName() + else: + name = "{print_order}. {name}".format(print_order = node.printOrder, name = node.getName()) + nodes.append({ - "name": node.getName(), + "name": name, "selected": Selection.isSelected(node), "outside_build_area": is_outside_build_area, "buildplate_number": node_build_plate_number, @@ -234,5 +249,5 @@ def _update(self, *args) -> None: "node": node }) - nodes = sorted(nodes, key=lambda n: n["name"]) + nodes = sorted(nodes, key=lambda n: n["name"] if not user_defined_print_order_enabled else n["node"].printOrder) self.setItems(nodes) diff --git a/plugins/3MFReader/ThreeMFReader.py b/plugins/3MFReader/ThreeMFReader.py index 13a97d5a893..85bdbfa5516 100755 --- a/plugins/3MFReader/ThreeMFReader.py +++ b/plugins/3MFReader/ThreeMFReader.py @@ -177,6 +177,9 @@ def _convertSavitarNodeToUMNode(savitar_node: Savitar.SceneNode, file_name: str else: Logger.log("w", "Unable to find extruder in position %s", setting_value) continue + if key == "print_order": + um_node.printOrder = int(setting_value) + continue if key in known_setting_keys: setting_container.setProperty(key, "value", setting_value) else: diff --git a/plugins/3MFWriter/ThreeMFWriter.py b/plugins/3MFWriter/ThreeMFWriter.py index ad4b0d8dadb..5ffd99a1c4e 100644 --- a/plugins/3MFWriter/ThreeMFWriter.py +++ b/plugins/3MFWriter/ThreeMFWriter.py @@ -20,6 +20,7 @@ from cura.CuraPackageManager import CuraPackageManager from cura.Settings import CuraContainerStack from cura.Utils.Threading import call_on_qt_thread +from cura.Scene.CuraSceneNode import CuraSceneNode from cura.Snapshot import Snapshot from PyQt6.QtCore import QBuffer @@ -137,6 +138,9 @@ def _convertUMNodeToSavitarNode(um_node, transformation=Matrix()): for key in changed_setting_keys: savitar_node.setSetting("cura:" + key, str(stack.getProperty(key, "value"))) + if isinstance(um_node, CuraSceneNode): + savitar_node.setSetting("cura:print_order", str(um_node.printOrder)) + # Store the metadata. for key, value in um_node.metadata.items(): savitar_node.setSetting(key, value) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 62143cf8f8a..160c1d905da 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -7060,6 +7060,16 @@ "settable_per_extruder": false, "settable_per_meshgroup": false }, + "user_defined_print_order_enabled": + { + "label": "Set Print Sequence Manually", + "description": "Allows to order the object list to set the print sequence manually. First object from the list will be printed first.", + "type": "bool", + "default_value": false, + "settable_per_mesh": false, + "settable_per_extruder": false, + "enabled": "print_sequence == 'one_at_a_time'" + }, "infill_mesh": { "label": "Infill Mesh", diff --git a/resources/i18n/cs_CZ/cura.po b/resources/i18n/cs_CZ/cura.po index 715af3ea84d..32671394906 100644 --- a/resources/i18n/cs_CZ/cura.po +++ b/resources/i18n/cs_CZ/cura.po @@ -4946,6 +4946,14 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Rozdělit modely" +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Tisknout před" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Tisknout po" + msgctxt "@button" msgid "Uninstall" msgstr "Odinstalovat" diff --git a/resources/i18n/cs_CZ/fdmprinter.def.json.po b/resources/i18n/cs_CZ/fdmprinter.def.json.po index 7588e81c526..4b697c9cead 100644 --- a/resources/i18n/cs_CZ/fdmprinter.def.json.po +++ b/resources/i18n/cs_CZ/fdmprinter.def.json.po @@ -2583,6 +2583,14 @@ msgctxt "print_sequence label" msgid "Print Sequence" msgstr "Tisková sekvence" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Nastavit tiskovou sekvenci ručně" + +msgctxt "user_defined_print_order_enabled description" +msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +msgstr "Umožňuje řadit seznam objektů pro ruční nastavení tiskové sekvence. První objekt ze seznamu bude vytisknut jako první." + msgctxt "speed_print label" msgid "Print Speed" msgstr "Rychlost tisku" diff --git a/resources/i18n/cura.pot b/resources/i18n/cura.pot index 7d5b5f94d6c..2fabd97f7e5 100644 --- a/resources/i18n/cura.pot +++ b/resources/i18n/cura.pot @@ -4565,6 +4565,14 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "" +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "" + msgctxt "@button" msgid "Uninstall" msgstr "" diff --git a/resources/i18n/de_DE/cura.po b/resources/i18n/de_DE/cura.po index f006c75fb6b..8ca4de67b4f 100644 --- a/resources/i18n/de_DE/cura.po +++ b/resources/i18n/de_DE/cura.po @@ -4930,6 +4930,14 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Gruppierung für Modelle aufheben" +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Vor dem Drucken" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Nach dem Drucken" + msgctxt "@button" msgid "Uninstall" msgstr "Deinstallieren" diff --git a/resources/i18n/de_DE/fdmprinter.def.json.po b/resources/i18n/de_DE/fdmprinter.def.json.po index ca893ad1496..ff44a4837d1 100644 --- a/resources/i18n/de_DE/fdmprinter.def.json.po +++ b/resources/i18n/de_DE/fdmprinter.def.json.po @@ -2580,6 +2580,14 @@ msgctxt "print_sequence label" msgid "Print Sequence" msgstr "Druckreihenfolge" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Druckreihenfolge manuell einstellen" + +msgctxt "user_defined_print_order_enabled description" +msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +msgstr "Ermöglicht das Ordnen der Objektliste, um die Druckreihenfolge manuell festzulegen. Das erste Objekt aus der Liste wird zuerst gedruckt." + msgctxt "speed_print label" msgid "Print Speed" msgstr "Druckgeschwindigkeit" diff --git a/resources/i18n/es_ES/cura.po b/resources/i18n/es_ES/cura.po index 07d4ad2d79e..aa4c7274414 100644 --- a/resources/i18n/es_ES/cura.po +++ b/resources/i18n/es_ES/cura.po @@ -4931,6 +4931,14 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Desagrupar modelos" +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Imprimir antes" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Imprimir después" + msgctxt "@button" msgid "Uninstall" msgstr "Desinstalar" diff --git a/resources/i18n/es_ES/fdmprinter.def.json.po b/resources/i18n/es_ES/fdmprinter.def.json.po index 4b797652ed3..6811ca05a87 100644 --- a/resources/i18n/es_ES/fdmprinter.def.json.po +++ b/resources/i18n/es_ES/fdmprinter.def.json.po @@ -2580,6 +2580,14 @@ msgctxt "print_sequence label" msgid "Print Sequence" msgstr "Secuencia de impresión" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Establecer secuencia de impresión manualmente" + +msgctxt "user_defined_print_order_enabled description" +msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +msgstr "Permite ordenar la lista de objetos para establecer la secuencia de impresión manualmente. El primer objeto de la lista se imprimirá primero." + msgctxt "speed_print label" msgid "Print Speed" msgstr "Velocidad de impresión" diff --git a/resources/i18n/fdmprinter.def.json.pot b/resources/i18n/fdmprinter.def.json.pot index 6b61ec31732..ab5a7176430 100644 --- a/resources/i18n/fdmprinter.def.json.pot +++ b/resources/i18n/fdmprinter.def.json.pot @@ -4596,6 +4596,14 @@ msgctxt "print_sequence option one_at_a_time" msgid "One at a Time" msgstr "" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "" + +msgctxt "user_defined_print_order_enabled description" +msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +msgstr "" + msgctxt "infill_mesh label" msgid "Infill Mesh" msgstr "" diff --git a/resources/i18n/fi_FI/cura.po b/resources/i18n/fi_FI/cura.po index c3f331c1eff..55a60d50ae5 100644 --- a/resources/i18n/fi_FI/cura.po +++ b/resources/i18n/fi_FI/cura.po @@ -4899,6 +4899,14 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Poista mallien ryhmitys" +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Tulosta ennen" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Tulosta jälkeen" + msgctxt "@button" msgid "Uninstall" msgstr "" diff --git a/resources/i18n/fi_FI/fdmprinter.def.json.po b/resources/i18n/fi_FI/fdmprinter.def.json.po index 19a83d2f6aa..a1e4ab420e0 100644 --- a/resources/i18n/fi_FI/fdmprinter.def.json.po +++ b/resources/i18n/fi_FI/fdmprinter.def.json.po @@ -2578,6 +2578,14 @@ msgctxt "print_sequence label" msgid "Print Sequence" msgstr "Tulostusjärjestys" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Aseta tulostusjärjestys manuaalisesti" + +msgctxt "user_defined_print_order_enabled description" +msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +msgstr "Mahdollistaa kohteiden järjestämisen tulostusjärjestyksen manuaaliseen asettamiseen. Listan ensimmäinen kohde tulostetaan ensin." + msgctxt "speed_print label" msgid "Print Speed" msgstr "Tulostusnopeus" diff --git a/resources/i18n/fr_FR/cura.po b/resources/i18n/fr_FR/cura.po index b597b2d5408..af46346d63c 100644 --- a/resources/i18n/fr_FR/cura.po +++ b/resources/i18n/fr_FR/cura.po @@ -4928,6 +4928,14 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Dégrouper les modèles" +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Imprimer avant" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Imprimer après" + msgctxt "@button" msgid "Uninstall" msgstr "Désinstaller" diff --git a/resources/i18n/fr_FR/fdmprinter.def.json.po b/resources/i18n/fr_FR/fdmprinter.def.json.po index e4018d33e57..2376820b7ce 100644 --- a/resources/i18n/fr_FR/fdmprinter.def.json.po +++ b/resources/i18n/fr_FR/fdmprinter.def.json.po @@ -2580,6 +2580,14 @@ msgctxt "print_sequence label" msgid "Print Sequence" msgstr "Séquence d'impression" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Définir la séquence d'impression manuellement" + +msgctxt "user_defined_print_order_enabled description" +msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +msgstr "Permet de classer la liste des objets pour définir manuellement la séquence d'impression. Le premier objet de la liste sera imprimé en premier." + msgctxt "speed_print label" msgid "Print Speed" msgstr "Vitesse d’impression" diff --git a/resources/i18n/hu_HU/cura.po b/resources/i18n/hu_HU/cura.po index 9a502fbdf6a..d5f06599a12 100644 --- a/resources/i18n/hu_HU/cura.po +++ b/resources/i18n/hu_HU/cura.po @@ -4913,6 +4913,14 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Csoport bontása" +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Nyomtatás előtt" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Nyomtatás után" + msgctxt "@button" msgid "Uninstall" msgstr "" diff --git a/resources/i18n/hu_HU/fdmprinter.def.json.po b/resources/i18n/hu_HU/fdmprinter.def.json.po index 789454be374..27eabd4bbcd 100644 --- a/resources/i18n/hu_HU/fdmprinter.def.json.po +++ b/resources/i18n/hu_HU/fdmprinter.def.json.po @@ -2585,6 +2585,14 @@ msgctxt "print_sequence label" msgid "Print Sequence" msgstr "Nyomtatási sorrend" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Nyomtatási sorrend kézi beállítása" + +msgctxt "user_defined_print_order_enabled description" +msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +msgstr "Lehetővé teszi az objektumlista rendezését a nyomtatási sorrend kézi beállításához. A lista első objektuma lesz először nyomtatva." + msgctxt "speed_print label" msgid "Print Speed" msgstr "Nyomtatási sebesség" diff --git a/resources/i18n/it_IT/cura.po b/resources/i18n/it_IT/cura.po index 1a131973bf2..48918d38836 100644 --- a/resources/i18n/it_IT/cura.po +++ b/resources/i18n/it_IT/cura.po @@ -4931,6 +4931,14 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Separa modelli" +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Stampa prima" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Stampa dopo" + msgctxt "@button" msgid "Uninstall" msgstr "Disinstalla" diff --git a/resources/i18n/it_IT/fdmprinter.def.json.po b/resources/i18n/it_IT/fdmprinter.def.json.po index 4565e30aa9f..e9fc77ca3c2 100644 --- a/resources/i18n/it_IT/fdmprinter.def.json.po +++ b/resources/i18n/it_IT/fdmprinter.def.json.po @@ -2580,6 +2580,14 @@ msgctxt "print_sequence label" msgid "Print Sequence" msgstr "Sequenza di stampa" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Imposta manualmente la sequenza di stampa" + +msgctxt "user_defined_print_order_enabled description" +msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +msgstr "Consente di ordinare l'elenco degli oggetti per impostare manualmente la sequenza di stampa. Il primo oggetto dell'elenco sarà stampato per primo." + msgctxt "speed_print label" msgid "Print Speed" msgstr "Velocità di stampa" diff --git a/resources/i18n/ja_JP/cura.po b/resources/i18n/ja_JP/cura.po index 7826e4df9eb..bc2f27e825f 100644 --- a/resources/i18n/ja_JP/cura.po +++ b/resources/i18n/ja_JP/cura.po @@ -4914,6 +4914,14 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "モデルを非グループ化" +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "印刷前" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "印刷後" + msgctxt "@button" msgid "Uninstall" msgstr "アンインストール" diff --git a/resources/i18n/ja_JP/fdmprinter.def.json.po b/resources/i18n/ja_JP/fdmprinter.def.json.po index 8e473e72ae7..a4311a63bd1 100644 --- a/resources/i18n/ja_JP/fdmprinter.def.json.po +++ b/resources/i18n/ja_JP/fdmprinter.def.json.po @@ -2580,6 +2580,14 @@ msgctxt "print_sequence label" msgid "Print Sequence" msgstr "印刷頻度" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "手動で印刷順序を設定する" + +msgctxt "user_defined_print_order_enabled description" +msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +msgstr "オブジェクトリストを並べ替えて、手動で印刷順序を設定することができます。リストの最初のオブジェクトが最初に印刷されます。" + msgctxt "speed_print label" msgid "Print Speed" msgstr "印刷速度" diff --git a/resources/i18n/ko_KR/cura.po b/resources/i18n/ko_KR/cura.po index 5926b7c442f..6bfbd1bae7c 100644 --- a/resources/i18n/ko_KR/cura.po +++ b/resources/i18n/ko_KR/cura.po @@ -4917,6 +4917,14 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "모델 그룹 해제" +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "인쇄 전" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "인쇄 후" + msgctxt "@button" msgid "Uninstall" msgstr "설치 제거" diff --git a/resources/i18n/ko_KR/fdmprinter.def.json.po b/resources/i18n/ko_KR/fdmprinter.def.json.po index 7e2974dd37d..0cf075c8547 100644 --- a/resources/i18n/ko_KR/fdmprinter.def.json.po +++ b/resources/i18n/ko_KR/fdmprinter.def.json.po @@ -2580,6 +2580,14 @@ msgctxt "print_sequence label" msgid "Print Sequence" msgstr "프린팅 순서" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "수동으로 인쇄 순서 설정" + +msgctxt "user_defined_print_order_enabled description" +msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +msgstr "객체 목록을 정렬하여 수동으로 인쇄 순서를 설정할 수 있습니다. 목록의 첫 번째 객체가 먼저 인쇄됩니다." + msgctxt "speed_print label" msgid "Print Speed" msgstr "프린팅 속도" diff --git a/resources/i18n/nl_NL/cura.po b/resources/i18n/nl_NL/cura.po index f831c7989f9..43ca87b01e2 100644 --- a/resources/i18n/nl_NL/cura.po +++ b/resources/i18n/nl_NL/cura.po @@ -4925,6 +4925,14 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Groeperen van Modellen Opheffen" +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Afdrukken voor" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Afdrukken na" + msgctxt "@button" msgid "Uninstall" msgstr "De-installeren" diff --git a/resources/i18n/nl_NL/fdmprinter.def.json.po b/resources/i18n/nl_NL/fdmprinter.def.json.po index 7d6b32e0ac4..8c4ef463a88 100644 --- a/resources/i18n/nl_NL/fdmprinter.def.json.po +++ b/resources/i18n/nl_NL/fdmprinter.def.json.po @@ -2580,6 +2580,14 @@ msgctxt "print_sequence label" msgid "Print Sequence" msgstr "Printvolgorde" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Handmatig afdrukvolgorde instellen" + +msgctxt "user_defined_print_order_enabled description" +msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +msgstr "Maakt het mogelijk de objectlijst te ordenen om de afdrukvolgorde handmatig in te stellen. Het eerste object van de lijst wordt als eerste afgedrukt." + msgctxt "speed_print label" msgid "Print Speed" msgstr "Printsnelheid" diff --git a/resources/i18n/pl_PL/cura.po b/resources/i18n/pl_PL/cura.po index ed823e183c5..fe9f6061418 100644 --- a/resources/i18n/pl_PL/cura.po +++ b/resources/i18n/pl_PL/cura.po @@ -4916,6 +4916,14 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Rozgrupuj modele" +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Drukuj przed" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Drukuj po" + msgctxt "@button" msgid "Uninstall" msgstr "" diff --git a/resources/i18n/pl_PL/fdmprinter.def.json.po b/resources/i18n/pl_PL/fdmprinter.def.json.po index b772775d09d..7f093c859c2 100644 --- a/resources/i18n/pl_PL/fdmprinter.def.json.po +++ b/resources/i18n/pl_PL/fdmprinter.def.json.po @@ -2584,6 +2584,14 @@ msgctxt "print_sequence label" msgid "Print Sequence" msgstr "Sekwencja Wydruku" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Ręczne ustawienie kolejności drukowania" + +msgctxt "user_defined_print_order_enabled description" +msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +msgstr "Umożliwia ręczne ustawienie kolejności drukowania na liście obiektów. Pierwszy obiekt z listy zostanie wydrukowany jako pierwszy." + msgctxt "speed_print label" msgid "Print Speed" msgstr "Prędkość Druku" diff --git a/resources/i18n/pt_BR/cura.po b/resources/i18n/pt_BR/cura.po index 1c4590a0161..0ae0a56cfd0 100644 --- a/resources/i18n/pt_BR/cura.po +++ b/resources/i18n/pt_BR/cura.po @@ -4942,6 +4942,14 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Desagrupar Modelos" +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Imprimir antes" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Imprimir depois" + msgctxt "@button" msgid "Uninstall" msgstr "Desinstalar" diff --git a/resources/i18n/pt_BR/fdmprinter.def.json.po b/resources/i18n/pt_BR/fdmprinter.def.json.po index 651837f4589..412a020a7ed 100644 --- a/resources/i18n/pt_BR/fdmprinter.def.json.po +++ b/resources/i18n/pt_BR/fdmprinter.def.json.po @@ -2585,6 +2585,14 @@ msgctxt "print_sequence label" msgid "Print Sequence" msgstr "Sequência de Impressão" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Definir sequência de impressão manualmente" + +msgctxt "user_defined_print_order_enabled description" +msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +msgstr "Permite ordenar a lista de objetos para definir a sequência de impressão manualmente. O primeiro objeto da lista será impresso primeiro." + msgctxt "speed_print label" msgid "Print Speed" msgstr "Velocidade de Impressão" diff --git a/resources/i18n/pt_PT/cura.po b/resources/i18n/pt_PT/cura.po index 48ea1e7c2ca..d6e19b222d3 100644 --- a/resources/i18n/pt_PT/cura.po +++ b/resources/i18n/pt_PT/cura.po @@ -4932,6 +4932,14 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Desagrupar Modelos" +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Imprimir antes" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Imprimir depois" + msgctxt "@button" msgid "Uninstall" msgstr "Desinstalar" diff --git a/resources/i18n/pt_PT/fdmprinter.def.json.po b/resources/i18n/pt_PT/fdmprinter.def.json.po index dea593ffe45..36283bc9de4 100644 --- a/resources/i18n/pt_PT/fdmprinter.def.json.po +++ b/resources/i18n/pt_PT/fdmprinter.def.json.po @@ -2580,6 +2580,14 @@ msgctxt "print_sequence label" msgid "Print Sequence" msgstr "Sequência de impressão" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Definir sequência de impressão manualmente" + +msgctxt "user_defined_print_order_enabled description" +msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +msgstr "Permite ordenar a lista de objetos para definir a sequência de impressão manualmente. O primeiro objeto da lista será impresso primeiro." + msgctxt "speed_print label" msgid "Print Speed" msgstr "Velocidade de Impressão" diff --git a/resources/i18n/ru_RU/cura.po b/resources/i18n/ru_RU/cura.po index 6494d6b5d2a..2960193d7e7 100644 --- a/resources/i18n/ru_RU/cura.po +++ b/resources/i18n/ru_RU/cura.po @@ -4955,6 +4955,14 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Разгруппировать модели" +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Печатать до" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Печатать после" + msgctxt "@button" msgid "Uninstall" msgstr "Удалить" diff --git a/resources/i18n/ru_RU/fdmprinter.def.json.po b/resources/i18n/ru_RU/fdmprinter.def.json.po index 99036d48652..bba90e21eff 100644 --- a/resources/i18n/ru_RU/fdmprinter.def.json.po +++ b/resources/i18n/ru_RU/fdmprinter.def.json.po @@ -2580,6 +2580,14 @@ msgctxt "print_sequence label" msgid "Print Sequence" msgstr "Последовательная печать" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Установить последовательность печати вручную" + +msgctxt "user_defined_print_order_enabled description" +msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +msgstr "Позволяет упорядочить список объектов для ручной настройки последовательности печати. Первый объект из списка будет напечатан первым." + msgctxt "speed_print label" msgid "Print Speed" msgstr "Скорость печати" diff --git a/resources/i18n/tr_TR/cura.po b/resources/i18n/tr_TR/cura.po index d98ff91e72e..c3afd0c7c12 100644 --- a/resources/i18n/tr_TR/cura.po +++ b/resources/i18n/tr_TR/cura.po @@ -4931,6 +4931,14 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Model Grubunu Çöz" +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Önce Yazdır" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Sonra Yazdır" + msgctxt "@button" msgid "Uninstall" msgstr "Kaldır" diff --git a/resources/i18n/tr_TR/fdmprinter.def.json.po b/resources/i18n/tr_TR/fdmprinter.def.json.po index b57a0cd0bb7..0e11895512d 100644 --- a/resources/i18n/tr_TR/fdmprinter.def.json.po +++ b/resources/i18n/tr_TR/fdmprinter.def.json.po @@ -2580,6 +2580,14 @@ msgctxt "print_sequence label" msgid "Print Sequence" msgstr "Yazdırma Dizisi" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Baskı Sırasını Manuel Olarak Ayarla" + +msgctxt "user_defined_print_order_enabled description" +msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +msgstr "Nesne listesini sıralayarak baskı sırasını manuel olarak ayarlamayı sağlar. Listeden ilk nesne ilk olarak basılacak." + msgctxt "speed_print label" msgid "Print Speed" msgstr "Yazdırma Hızı" diff --git a/resources/i18n/zh_CN/cura.po b/resources/i18n/zh_CN/cura.po index 34b4f1d4dc1..cf2ed81f9bb 100644 --- a/resources/i18n/zh_CN/cura.po +++ b/resources/i18n/zh_CN/cura.po @@ -4919,6 +4919,14 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "拆分模型" +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "打印前" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "打印后" + msgctxt "@button" msgid "Uninstall" msgstr "卸载" diff --git a/resources/i18n/zh_CN/fdmprinter.def.json.po b/resources/i18n/zh_CN/fdmprinter.def.json.po index 1042199d5b5..46968320513 100644 --- a/resources/i18n/zh_CN/fdmprinter.def.json.po +++ b/resources/i18n/zh_CN/fdmprinter.def.json.po @@ -2580,6 +2580,14 @@ msgctxt "print_sequence label" msgid "Print Sequence" msgstr "打印序列" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "手动设置打印顺序" + +msgctxt "user_defined_print_order_enabled description" +msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +msgstr "允许对对象列表进行排序,以手动设置打印顺序。列表中的第一个对象将首先被打印。" + msgctxt "speed_print label" msgid "Print Speed" msgstr "打印速度" diff --git a/resources/i18n/zh_TW/cura.po b/resources/i18n/zh_TW/cura.po index a461fd1fa35..741bde1d143 100644 --- a/resources/i18n/zh_TW/cura.po +++ b/resources/i18n/zh_TW/cura.po @@ -4911,6 +4911,14 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "取消模型群組" +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "列印前" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "列印後" + msgctxt "@button" msgid "Uninstall" msgstr "" diff --git a/resources/i18n/zh_TW/fdmprinter.def.json.po b/resources/i18n/zh_TW/fdmprinter.def.json.po index c92a7f861ac..aa02299fc12 100644 --- a/resources/i18n/zh_TW/fdmprinter.def.json.po +++ b/resources/i18n/zh_TW/fdmprinter.def.json.po @@ -2585,6 +2585,14 @@ msgctxt "print_sequence label" msgid "Print Sequence" msgstr "列印順序" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "手動設置列印順序" + +msgctxt "user_defined_print_order_enabled description" +msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +msgstr "允許手動設置物件列表以設定列印順序。列表中的第一個物件將首先被列印。" + msgctxt "speed_print label" msgid "Print Speed" msgstr "列印速度" diff --git a/resources/qml/Actions.qml b/resources/qml/Actions.qml index 458d7fcaae9..4cc504166bd 100644 --- a/resources/qml/Actions.qml +++ b/resources/qml/Actions.qml @@ -35,6 +35,9 @@ Item property alias mergeObjects: mergeObjectsAction //property alias unMergeObjects: unMergeObjectsAction + property alias printObjectBeforePrevious: printObjectBeforePreviousAction + property alias printObjectAfterNext: printObjectAfterNextAction + property alias multiplyObject: multiplyObjectAction property alias selectAll: selectAllAction @@ -406,6 +409,26 @@ Item onTriggered: CuraApplication.ungroupSelected() } + Action + { + id: printObjectBeforePreviousAction + text: catalog.i18nc("@action:inmenu menubar:edit","Print Before") + " " + PrintOrderManager.previousNodeName + enabled: PrintOrderManager.shouldEnablePrintBeforeAction + icon.name: "print-before" + shortcut: "PgUp" + onTriggered: PrintOrderManager.swapSelectedAndPreviousNodes() + } + + Action + { + id: printObjectAfterNextAction + text: catalog.i18nc("@action:inmenu menubar:edit","Print After") + " " + PrintOrderManager.nextNodeName + enabled: PrintOrderManager.shouldEnablePrintAfterAction + icon.name: "print-after" + shortcut: "PgDown" + onTriggered: PrintOrderManager.swapSelectedAndNextNodes() + } + Action { id: mergeObjectsAction diff --git a/resources/qml/Menus/ContextMenu.qml b/resources/qml/Menus/ContextMenu.qml index 2de2795a747..1b32c242548 100644 --- a/resources/qml/Menus/ContextMenu.qml +++ b/resources/qml/Menus/ContextMenu.qml @@ -78,6 +78,19 @@ Cura.Menu Cura.MenuItem { action: Cura.Actions.mergeObjects } Cura.MenuItem { action: Cura.Actions.unGroupObjects } + // Edit print sequence actions + Cura.MenuSeparator { visible: PrintOrderManager.shouldShowEditPrintOrderActions } + Cura.MenuItem + { + action: Cura.Actions.printObjectBeforePrevious + visible: PrintOrderManager.shouldShowEditPrintOrderActions + } + Cura.MenuItem + { + action: Cura.Actions.printObjectAfterNext + visible: PrintOrderManager.shouldShowEditPrintOrderActions + } + Connections { target: UM.Controller diff --git a/resources/qml/Menus/EditMenu.qml b/resources/qml/Menus/EditMenu.qml index 522c6b27d12..728b3b212bf 100644 --- a/resources/qml/Menus/EditMenu.qml +++ b/resources/qml/Menus/EditMenu.qml @@ -25,4 +25,17 @@ Cura.Menu Cura.MenuItem { action: Cura.Actions.groupObjects } Cura.MenuItem { action: Cura.Actions.mergeObjects } Cura.MenuItem { action: Cura.Actions.unGroupObjects } + + // Edit print sequence actions + Cura.MenuSeparator { visible: PrintOrderManager.shouldShowEditPrintOrderActions } + Cura.MenuItem + { + action: Cura.Actions.printObjectBeforePrevious + visible: PrintOrderManager.shouldShowEditPrintOrderActions + } + Cura.MenuItem + { + action: Cura.Actions.printObjectAfterNext + visible: PrintOrderManager.shouldShowEditPrintOrderActions + } } \ No newline at end of file diff --git a/resources/setting_visibility/advanced.cfg b/resources/setting_visibility/advanced.cfg index c3451d2c981..cd501267d09 100644 --- a/resources/setting_visibility/advanced.cfg +++ b/resources/setting_visibility/advanced.cfg @@ -136,6 +136,7 @@ prime_tower_brim_enable [blackmagic] print_sequence +user_defined_print_order_enabled magic_mesh_surface_mode magic_spiralize smooth_spiralized_contours diff --git a/resources/setting_visibility/expert.cfg b/resources/setting_visibility/expert.cfg index 2f2dd7671d0..06ffead8a54 100644 --- a/resources/setting_visibility/expert.cfg +++ b/resources/setting_visibility/expert.cfg @@ -386,6 +386,7 @@ meshfix_fluid_motion_angle [blackmagic] print_sequence +user_defined_print_order_enabled infill_mesh infill_mesh_order cutting_mesh diff --git a/tests/TestHitChecker.py b/tests/TestHitChecker.py new file mode 100644 index 00000000000..59ee1d81628 --- /dev/null +++ b/tests/TestHitChecker.py @@ -0,0 +1,141 @@ +from unittest.mock import patch + +from cura.HitChecker import HitChecker +from cura.OneAtATimeIterator import OneAtATimeIterator +from cura.Scene.CuraSceneNode import CuraSceneNode + + +def test_anyTwoNodesBlockEachOther_True(): + node1 = CuraSceneNode(no_setting_override=True) + node2 = CuraSceneNode(no_setting_override=True) + # node1 and node2 block each other + hit_map = { + node1: {node1: 0, node2: 1}, + node2: {node1: 1, node2: 0} + } + + with patch.object(HitChecker, "_buildHitMap", return_value=hit_map): + hit_checker = HitChecker([node1, node2]) + assert hit_checker.anyTwoNodesBlockEachOther([node1, node2]) + assert hit_checker.anyTwoNodesBlockEachOther([node2, node1]) + + +def test_anyTwoNodesBlockEachOther_False(): + node1 = CuraSceneNode(no_setting_override=True) + node2 = CuraSceneNode(no_setting_override=True) + # node1 blocks node2, but node2 doesn't block node1 + hit_map = { + node1: {node1: 0, node2: 1}, + node2: {node1: 0, node2: 0} + } + + with patch.object(HitChecker, "_buildHitMap", return_value=hit_map): + hit_checker = HitChecker([node1, node2]) + assert not hit_checker.anyTwoNodesBlockEachOther([node1, node2]) + assert not hit_checker.anyTwoNodesBlockEachOther([node2, node1]) + + +def test_canPrintBefore(): + node1 = CuraSceneNode(no_setting_override=True) + node2 = CuraSceneNode(no_setting_override=True) + node3 = CuraSceneNode(no_setting_override=True) + # nodes can be printed only in order node1 -> node2 -> node3 + hit_map = { + node1: {node1: 0, node2: 0, node3: 0}, + node2: {node1: 1, node2: 0, node3: 0}, + node3: {node1: 1, node2: 1, node3: 0}, + } + + with patch.object(HitChecker, "_buildHitMap", return_value=hit_map): + hit_checker = HitChecker([node1, node2, node3]) + + assert hit_checker.canPrintBefore(node1, [node2]) + assert hit_checker.canPrintBefore(node1, [node3]) + assert hit_checker.canPrintBefore(node1, [node2, node3]) + assert hit_checker.canPrintBefore(node1, [node3, node2]) + + assert hit_checker.canPrintBefore(node2, [node3]) + assert not hit_checker.canPrintBefore(node2, [node1]) + assert not hit_checker.canPrintBefore(node2, [node1, node3]) + assert not hit_checker.canPrintBefore(node2, [node3, node1]) + + assert not hit_checker.canPrintBefore(node3, [node1]) + assert not hit_checker.canPrintBefore(node3, [node2]) + assert not hit_checker.canPrintBefore(node3, [node1, node2]) + assert not hit_checker.canPrintBefore(node3, [node2, node1]) + + +def test_canPrintAfter(): + node1 = CuraSceneNode(no_setting_override=True) + node2 = CuraSceneNode(no_setting_override=True) + node3 = CuraSceneNode(no_setting_override=True) + + # nodes can be printed only in order node1 -> node2 -> node3 + hit_map = { + node1: {node1: 0, node2: 0, node3: 0}, + node2: {node1: 1, node2: 0, node3: 0}, + node3: {node1: 1, node2: 1, node3: 0}, + } + + with patch.object(HitChecker, "_buildHitMap", return_value=hit_map): + hit_checker = HitChecker([node1, node2, node3]) + + assert not hit_checker.canPrintAfter(node1, [node2]) + assert not hit_checker.canPrintAfter(node1, [node3]) + assert not hit_checker.canPrintAfter(node1, [node2, node3]) + assert not hit_checker.canPrintAfter(node1, [node3, node2]) + + assert hit_checker.canPrintAfter(node2, [node1]) + assert not hit_checker.canPrintAfter(node2, [node3]) + assert not hit_checker.canPrintAfter(node2, [node1, node3]) + assert not hit_checker.canPrintAfter(node2, [node3, node1]) + + assert hit_checker.canPrintAfter(node3, [node1]) + assert hit_checker.canPrintAfter(node3, [node2]) + assert hit_checker.canPrintAfter(node3, [node1, node2]) + assert hit_checker.canPrintAfter(node3, [node2, node1]) + + +def test_calculateScore(): + node1 = CuraSceneNode(no_setting_override=True) + node2 = CuraSceneNode(no_setting_override=True) + node3 = CuraSceneNode(no_setting_override=True) + + hit_map = { + node1: {node1: 0, node2: 0, node3: 0}, # sum is 0 + node2: {node1: 1, node2: 0, node3: 0}, # sum is 1 + node3: {node1: 1, node2: 1, node3: 0}, # sum is 2 + } + + with patch.object(HitChecker, "_buildHitMap", return_value=hit_map): + hit_checker = HitChecker([node1, node2, node3]) + + # score is a diff between sums + assert hit_checker.calculateScore(node1, node2) == -1 + assert hit_checker.calculateScore(node2, node1) == 1 + assert hit_checker.calculateScore(node1, node3) == -2 + assert hit_checker.calculateScore(node3, node1) == 2 + assert hit_checker.calculateScore(node2, node3) == -1 + assert hit_checker.calculateScore(node3, node2) == 1 + + +def test_canPrintNodesInProvidedOrder(): + node1 = CuraSceneNode(no_setting_override=True) + node2 = CuraSceneNode(no_setting_override=True) + node3 = CuraSceneNode(no_setting_override=True) + + # nodes can be printed only in order node1 -> node2 -> node3 + hit_map = { + node1: {node1: 0, node2: 0, node3: 0}, # 0 + node2: {node1: 1, node2: 0, node3: 0}, # 1 + node3: {node1: 1, node2: 1, node3: 0}, # 2 + } + + with patch.object(HitChecker, "_buildHitMap", return_value=hit_map): + hit_checker = HitChecker([node1, node2, node3]) + assert hit_checker.canPrintNodesInProvidedOrder([node1, node2, node3]) + assert not hit_checker.canPrintNodesInProvidedOrder([node1, node3, node2]) + assert not hit_checker.canPrintNodesInProvidedOrder([node2, node1, node3]) + assert not hit_checker.canPrintNodesInProvidedOrder([node2, node3, node1]) + assert not hit_checker.canPrintNodesInProvidedOrder([node3, node1, node2]) + assert not hit_checker.canPrintNodesInProvidedOrder([node3, node2, node1]) \ No newline at end of file diff --git a/tests/TestPrintOrderManager.py b/tests/TestPrintOrderManager.py new file mode 100644 index 00000000000..8b2c0475b29 --- /dev/null +++ b/tests/TestPrintOrderManager.py @@ -0,0 +1,175 @@ +from unittest.mock import patch, MagicMock + +from cura.PrintOrderManager import PrintOrderManager +from cura.Scene.CuraSceneNode import CuraSceneNode + + +def test_getNodeName(): + node1 = CuraSceneNode(name="cat", no_setting_override=True) + node2 = CuraSceneNode(name="dog", no_setting_override=True) + assert PrintOrderManager._getNodeName(node1) == "cat" + assert PrintOrderManager._getNodeName(node2) == "dog" + assert PrintOrderManager._getNodeName(None) == "" + + +def test_getNodeName_truncatesLongName(): + node = CuraSceneNode(name="some_name_longer_than_30_characters", no_setting_override=True) + assert PrintOrderManager._getNodeName(node) == "some_name_longer_than_30_chara" + assert PrintOrderManager._getNodeName(node, max_length=10) == "some_name_" + + +def test_getSingleSelectedNode(): + node1 = CuraSceneNode(no_setting_override=True) + with patch("UM.Scene.Selection.Selection.getAllSelectedObjects", MagicMock(return_value=[node1])): + with patch("UM.Scene.Selection.Selection.getSelectedObject", MagicMock(return_value=node1)): + assert PrintOrderManager._getSingleSelectedNode() == node1 + + +def test_getSingleSelectedNode_returnsNoneIfNothingSelected(): + with patch("UM.Scene.Selection.Selection.getAllSelectedObjects", MagicMock(return_value=[])): + assert PrintOrderManager._getSingleSelectedNode() is None + + +def test_getSingleSelectedNode_returnsNoneIfMultipleObjectsSelected(): + node1 = CuraSceneNode(no_setting_override=True) + node2 = CuraSceneNode(no_setting_override=True) + with patch("UM.Scene.Selection.Selection.getAllSelectedObjects", MagicMock(return_value=[node1, node2])): + assert PrintOrderManager._getSingleSelectedNode() is None + + +def test_neighborNodeNamesCorrect_WhenSomeNodeSelected(): + node1 = CuraSceneNode(no_setting_override=True, name="node1") + node2 = CuraSceneNode(no_setting_override=True, name="node2") + node3 = CuraSceneNode(no_setting_override=True, name="node3") + node1.printOrder = 1 + node2.printOrder = 2 + node3.printOrder = 3 + with patch.object(PrintOrderManager, "_configureEvents", return_value=None): + with patch.object(PrintOrderManager, "_getSingleSelectedNode", return_value=node1): + print_order_manager = PrintOrderManager(get_nodes=lambda: [node1, node2, node3]) + + assert print_order_manager.previousNodeName == "" + assert print_order_manager.nextNodeName == "node2" + assert not print_order_manager.shouldEnablePrintBeforeAction + assert print_order_manager.shouldEnablePrintAfterAction + + print_order_manager.swapSelectedAndNextNodes() # swaps node1 with node2, result: [node2, node1, node3] + assert print_order_manager.previousNodeName == "node2" + assert print_order_manager.nextNodeName == "node3" + assert print_order_manager.shouldEnablePrintBeforeAction + assert print_order_manager.shouldEnablePrintAfterAction + + print_order_manager.swapSelectedAndNextNodes() # swaps node1 with node3, result: [node2, node3, node1] + assert print_order_manager.previousNodeName == "node3" + assert print_order_manager.nextNodeName == "" + assert print_order_manager.shouldEnablePrintBeforeAction + assert not print_order_manager.shouldEnablePrintAfterAction + + print_order_manager.swapSelectedAndPreviousNodes() # swaps node1 with node3, result: [node2, node1, node3] + assert print_order_manager.previousNodeName == "node2" + assert print_order_manager.nextNodeName == "node3" + assert print_order_manager.shouldEnablePrintBeforeAction + assert print_order_manager.shouldEnablePrintAfterAction + + print_order_manager.swapSelectedAndPreviousNodes() # swaps node1 with node2, result: [node1, node2, node3] + assert print_order_manager.previousNodeName == "" + assert print_order_manager.nextNodeName == "node2" + assert not print_order_manager.shouldEnablePrintBeforeAction + assert print_order_manager.shouldEnablePrintAfterAction + + +def test_neighborNodeNamesEmpty_WhenNothingSelected(): + node1 = CuraSceneNode(no_setting_override=True, name="node1") + node2 = CuraSceneNode(no_setting_override=True, name="node2") + node3 = CuraSceneNode(no_setting_override=True, name="node3") + node1.printOrder = 1 + node2.printOrder = 2 + node3.printOrder = 3 + with patch.object(PrintOrderManager, "_configureEvents", return_value=None): + with patch.object(PrintOrderManager, "_getSingleSelectedNode", return_value=None): + print_order_manager = PrintOrderManager(get_nodes=lambda: [node1, node2, node3]) + assert print_order_manager.previousNodeName == "" + assert print_order_manager.nextNodeName == "" + assert not print_order_manager.shouldEnablePrintBeforeAction + assert not print_order_manager.shouldEnablePrintAfterAction + + +def test_initializePrintOrders(): + node1 = CuraSceneNode(no_setting_override=True) + node2 = CuraSceneNode(no_setting_override=True) + + # assume print orders are 0 + assert node1.printOrder == 0 + assert node2.printOrder == 0 + + PrintOrderManager.initializePrintOrders([node1, node2]) + + # assert print orders initialized + assert node1.printOrder == 1 + assert node2.printOrder == 2 + + node3 = CuraSceneNode(no_setting_override=True) + node4 = CuraSceneNode(no_setting_override=True) + # assume print orders are 0 + assert node3.printOrder == 0 + assert node4.printOrder == 0 + + PrintOrderManager.initializePrintOrders([node2, node1, node3, node4]) + + # assert print orders not changed for node1 and node2 and initialized for node3 and node4 + assert node1.printOrder == 1 + assert node2.printOrder == 2 + assert node3.printOrder == 3 + assert node4.printOrder == 4 + + +def test_updatePrintOrdersAfterGroupOperation(): + node1 = CuraSceneNode(no_setting_override=True) + node2 = CuraSceneNode(no_setting_override=True) + node3 = CuraSceneNode(no_setting_override=True) + node4 = CuraSceneNode(no_setting_override=True) + node5 = CuraSceneNode(no_setting_override=True) + node1.printOrder = 1 + node2.printOrder = 2 + node3.printOrder = 3 + node4.printOrder = 4 + node5.printOrder = 5 + + all_nodes = [node1, node2, node3, node4, node5] + grouped_nodes = [node2, node4] + group_node = CuraSceneNode(no_setting_override=True) + + PrintOrderManager.updatePrintOrdersAfterGroupOperation(all_nodes, group_node, grouped_nodes) + + assert node1.printOrder == 1 + assert group_node.printOrder == 2 + assert node3.printOrder == 3 + assert node5.printOrder == 4 + + +def test_updatePrintOrdersAfterUngroupOperation(): + node1 = CuraSceneNode(no_setting_override=True) + node2 = CuraSceneNode(no_setting_override=True) + node3 = CuraSceneNode(no_setting_override=True) + node1.printOrder = 1 + node2.printOrder = 2 + node3.printOrder = 3 + + all_nodes = [node1, node2, node3] + node4 = CuraSceneNode(no_setting_override=True) + node5 = CuraSceneNode(no_setting_override=True) + + group_node = node2 + ungrouped_nodes = [node4, node5] + PrintOrderManager.updatePrintOrdersAfterUngroupOperation(all_nodes, group_node, ungrouped_nodes) + + assert node1.printOrder == 1 + assert node4.printOrder == 2 + assert node5.printOrder == 3 + assert node3.printOrder == 4 + + assert node1 in all_nodes + assert node2 not in all_nodes + assert node3 in all_nodes + assert node4 in all_nodes + assert node5 in all_nodes From 1747bbb0cbc28e7eef2736af9cb75a58af67a776 Mon Sep 17 00:00:00 2001 From: Saumya Jain <70144862+saumyaj3@users.noreply.github.com> Date: Thu, 4 Jan 2024 14:18:57 +0100 Subject: [PATCH 339/765] Update cura_app.py sanitization of environment variable Co-authored-by: Casper Lamboo --- cura_app.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/cura_app.py b/cura_app.py index 17321b80427..7e80bbac79d 100755 --- a/cura_app.py +++ b/cura_app.py @@ -17,7 +17,11 @@ import os if sys.platform != "linux": # Turns out the Linux build _does_ use this, but we're not making an Enterprise release for that system anyway. os.environ["QT_PLUGIN_PATH"] = "" # Security workaround: Don't need it, and introduces an attack vector, so set to nul. - os.environ["QT_QUICK_FLICKABLE_WHEEL_DECELERATION"] = "" # Security workaround: Don't need it, and introduces an attack vector, so set to nul. + try: + # try converting to integer + os.environ["QT_QUICK_FLICKABLE_WHEEL_DECELERATION"] = str(int(os.environ["QT_QUICK_FLICKABLE_WHEEL_DECELERATION"])) + except ValueError: + os.environ["QT_QUICK_FLICKABLE_WHEEL_DECELERATION"] = "5000" os.environ["QML2_IMPORT_PATH"] = "" # Security workaround: Don't need it, and introduces an attack vector, so set to nul. os.environ["QT_OPENGL_DLL"] = "" # Security workaround: Don't need it, and introduces an attack vector, so set to nul. From f6cc7993e1a1e1b79ed7c6df57295ecc75e8b54a Mon Sep 17 00:00:00 2001 From: Nikita Chernukhin Date: Sat, 23 Dec 2023 18:11:27 +0100 Subject: [PATCH 340/765] Add RatRig printers configurations Added configurations for the following RatRig printers: * RatRig V-Core 3 (200mm, 300mm, 400mm and 500mm versions) * RatRig V-Minion V-Core 3.1 modification is also supported. Bed meshes are taken from https://github.com/slic3r/slic3r-profiles with kind permission of the author @HelgeKeck --- resources/definitions/ratrig_base.def.json | 19 +++ .../definitions/ratrig_vcore3_200.def.json | 23 ++++ .../definitions/ratrig_vcore3_300.def.json | 23 ++++ .../definitions/ratrig_vcore3_400.def.json | 23 ++++ .../definitions/ratrig_vcore3_500.def.json | 23 ++++ .../definitions/ratrig_vcore3_base.def.json | 117 ++++++++++++++++ resources/definitions/ratrig_vminion.def.json | 128 ++++++++++++++++++ .../extruders/ratrig_base_extruder_0.def.json | 15 ++ resources/meshes/ratrig_vcore3_200.stl | Bin 0 -> 290784 bytes resources/meshes/ratrig_vcore3_300.stl | Bin 0 -> 250084 bytes resources/meshes/ratrig_vcore3_400.stl | Bin 0 -> 250084 bytes resources/meshes/ratrig_vcore3_500.stl | Bin 0 -> 250084 bytes resources/meshes/ratrig_vminion.stl | Bin 0 -> 45784 bytes .../ratrig_base_0.2_Nylon_super.inst.cfg | 15 ++ .../ratrig_base_0.2_Nylon_ultra.inst.cfg | 15 ++ .../ratrig_base_0.3_Nylon_adaptive.inst.cfg | 15 ++ .../nylon/ratrig_base_0.3_Nylon_low.inst.cfg | 15 ++ .../ratrig_base_0.3_Nylon_standard.inst.cfg | 15 ++ .../ratrig_base_0.3_Nylon_super.inst.cfg | 15 ++ .../ratrig_base_0.4_Nylon_adaptive.inst.cfg | 18 +++ .../nylon/ratrig_base_0.4_Nylon_low.inst.cfg | 18 +++ .../ratrig_base_0.4_Nylon_standard.inst.cfg | 18 +++ .../ratrig_base_0.4_Nylon_super.inst.cfg | 18 +++ .../ratrig_base_0.5_Nylon_adaptive.inst.cfg | 15 ++ .../nylon/ratrig_base_0.5_Nylon_low.inst.cfg | 15 ++ .../ratrig_base_0.5_Nylon_standard.inst.cfg | 15 ++ .../ratrig_base_0.5_Nylon_super.inst.cfg | 15 ++ .../ratrig_base_0.6_Nylon_standard.inst.cfg | 15 ++ .../ratrig_base_0.8_Nylon_draft.inst.cfg | 16 +++ .../ratrig_base_1.0_Nylon_draft.inst.cfg | 15 ++ .../petg/ratrig_base_0.2_PETG_super.inst.cfg | 15 ++ .../petg/ratrig_base_0.2_PETG_ultra.inst.cfg | 15 ++ .../ratrig_base_0.3_PETG_adaptive.inst.cfg | 15 ++ .../petg/ratrig_base_0.3_PETG_low.inst.cfg | 15 ++ .../ratrig_base_0.3_PETG_standard.inst.cfg | 15 ++ .../petg/ratrig_base_0.3_PETG_super.inst.cfg | 15 ++ .../ratrig_base_0.4_PETG_adaptive.inst.cfg | 18 +++ .../petg/ratrig_base_0.4_PETG_low.inst.cfg | 18 +++ .../ratrig_base_0.4_PETG_standard.inst.cfg | 18 +++ .../petg/ratrig_base_0.4_PETG_super.inst.cfg | 18 +++ .../ratrig_base_0.5_PETG_adaptive.inst.cfg | 15 ++ .../petg/ratrig_base_0.5_PETG_low.inst.cfg | 15 ++ .../ratrig_base_0.5_PETG_standard.inst.cfg | 15 ++ .../petg/ratrig_base_0.5_PETG_super.inst.cfg | 15 ++ .../ratrig_base_0.6_PETG_standard.inst.cfg | 15 ++ .../petg/ratrig_base_0.8_PETG_draft.inst.cfg | 16 +++ .../petg/ratrig_base_1.0_PETG_draft.inst.cfg | 15 ++ .../pla/ratrig_base_0.2_PLA_super.inst.cfg | 13 ++ .../pla/ratrig_base_0.2_PLA_ultra.inst.cfg | 13 ++ .../pla/ratrig_base_0.3_PLA_adaptive.inst.cfg | 13 ++ .../pla/ratrig_base_0.3_PLA_low.inst.cfg | 13 ++ .../pla/ratrig_base_0.3_PLA_standard.inst.cfg | 13 ++ .../pla/ratrig_base_0.3_PLA_super.inst.cfg | 13 ++ .../pla/ratrig_base_0.4_PLA_adaptive.inst.cfg | 13 ++ .../pla/ratrig_base_0.4_PLA_low.inst.cfg | 13 ++ .../pla/ratrig_base_0.4_PLA_standard.inst.cfg | 13 ++ .../pla/ratrig_base_0.4_PLA_super.inst.cfg | 13 ++ .../pla/ratrig_base_0.5_PLA_adaptive.inst.cfg | 13 ++ .../pla/ratrig_base_0.5_PLA_low.inst.cfg | 13 ++ .../pla/ratrig_base_0.5_PLA_standard.inst.cfg | 13 ++ .../pla/ratrig_base_0.5_PLA_super.inst.cfg | 13 ++ .../pla/ratrig_base_0.6_PLA_draft.inst.cfg | 13 ++ .../pla/ratrig_base_0.6_PLA_low.inst.cfg | 13 ++ .../pla/ratrig_base_0.6_PLA_standard.inst.cfg | 13 ++ .../pla/ratrig_base_0.8_PLA_draft.inst.cfg | 13 ++ .../pla/ratrig_base_1.0_PLA_draft.inst.cfg | 13 ++ .../ratrig_base_global_adaptive.inst.cfg | 19 +++ .../ratrig_base_global_draft.inst.cfg | 18 +++ .../ratrig_base_global_low.inst.cfg | 18 +++ .../ratrig_base_global_standard.inst.cfg | 18 +++ .../ratrig_base_global_super.inst.cfg | 18 +++ .../ratrig_base_global_ultra.inst.cfg | 18 +++ .../tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg | 13 ++ .../tpu/ratrig_base_0.3_TPU_standard.inst.cfg | 13 ++ .../tpu/ratrig_base_0.3_TPU_super.inst.cfg | 13 ++ .../tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg | 13 ++ .../tpu/ratrig_base_0.4_TPU_standard.inst.cfg | 13 ++ .../tpu/ratrig_base_0.4_TPU_super.inst.cfg | 13 ++ .../tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg | 13 ++ .../tpu/ratrig_base_0.5_TPU_standard.inst.cfg | 13 ++ .../tpu/ratrig_base_0.5_TPU_super.inst.cfg | 13 ++ .../tpu/ratrig_base_0.6_TPU_standard.inst.cfg | 13 ++ .../tpu/ratrig_base_0.8_TPU_draft.inst.cfg | 13 ++ .../tpu/ratrig_base_1.0_TPU_draft.inst.cfg | 13 ++ .../variants/ratrig/ratrig_base_0.2.inst.cfg | 12 ++ .../variants/ratrig/ratrig_base_0.3.inst.cfg | 12 ++ .../variants/ratrig/ratrig_base_0.4.inst.cfg | 12 ++ .../variants/ratrig/ratrig_base_0.6.inst.cfg | 12 ++ .../variants/ratrig/ratrig_base_0.8.inst.cfg | 12 ++ .../variants/ratrig/ratrig_base_1.0.inst.cfg | 12 ++ .../ratrig/ratrig_vcore3_200_0.2.inst.cfg | 12 ++ .../ratrig/ratrig_vcore3_200_0.3.inst.cfg | 12 ++ .../ratrig/ratrig_vcore3_200_0.4.inst.cfg | 12 ++ .../ratrig/ratrig_vcore3_200_0.6.inst.cfg | 12 ++ .../ratrig/ratrig_vcore3_200_0.8.inst.cfg | 12 ++ .../ratrig/ratrig_vcore3_200_1.0.inst.cfg | 12 ++ .../ratrig/ratrig_vcore3_300_0.2.inst.cfg | 12 ++ .../ratrig/ratrig_vcore3_300_0.3.inst.cfg | 12 ++ .../ratrig/ratrig_vcore3_300_0.4.inst.cfg | 12 ++ .../ratrig/ratrig_vcore3_300_0.6.inst.cfg | 12 ++ .../ratrig/ratrig_vcore3_300_0.8.inst.cfg | 12 ++ .../ratrig/ratrig_vcore3_300_1.0.inst.cfg | 12 ++ .../ratrig/ratrig_vcore3_400_0.2.inst.cfg | 12 ++ .../ratrig/ratrig_vcore3_400_0.3.inst.cfg | 12 ++ .../ratrig/ratrig_vcore3_400_0.4.inst.cfg | 12 ++ .../ratrig/ratrig_vcore3_400_0.6.inst.cfg | 12 ++ .../ratrig/ratrig_vcore3_400_0.8.inst.cfg | 12 ++ .../ratrig/ratrig_vcore3_400_1.0.inst.cfg | 12 ++ .../ratrig/ratrig_vcore3_500_0.2.inst.cfg | 12 ++ .../ratrig/ratrig_vcore3_500_0.3.inst.cfg | 12 ++ .../ratrig/ratrig_vcore3_500_0.4.inst.cfg | 12 ++ .../ratrig/ratrig_vcore3_500_0.6.inst.cfg | 12 ++ .../ratrig/ratrig_vcore3_500_0.8.inst.cfg | 12 ++ .../ratrig/ratrig_vcore3_500_1.0.inst.cfg | 12 ++ .../ratrig/ratrig_vminion_0.2.inst.cfg | 12 ++ .../ratrig/ratrig_vminion_0.3.inst.cfg | 12 ++ .../ratrig/ratrig_vminion_0.4.inst.cfg | 12 ++ .../ratrig/ratrig_vminion_0.6.inst.cfg | 12 ++ .../ratrig/ratrig_vminion_0.8.inst.cfg | 12 ++ .../ratrig/ratrig_vminion_1.0.inst.cfg | 12 ++ 120 files changed, 1851 insertions(+) create mode 100644 resources/definitions/ratrig_base.def.json create mode 100644 resources/definitions/ratrig_vcore3_200.def.json create mode 100644 resources/definitions/ratrig_vcore3_300.def.json create mode 100644 resources/definitions/ratrig_vcore3_400.def.json create mode 100644 resources/definitions/ratrig_vcore3_500.def.json create mode 100644 resources/definitions/ratrig_vcore3_base.def.json create mode 100644 resources/definitions/ratrig_vminion.def.json create mode 100644 resources/extruders/ratrig_base_extruder_0.def.json create mode 100644 resources/meshes/ratrig_vcore3_200.stl create mode 100644 resources/meshes/ratrig_vcore3_300.stl create mode 100644 resources/meshes/ratrig_vcore3_400.stl create mode 100644 resources/meshes/ratrig_vcore3_500.stl create mode 100644 resources/meshes/ratrig_vminion.stl create mode 100644 resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_super.inst.cfg create mode 100644 resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_ultra.inst.cfg create mode 100644 resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_adaptive.inst.cfg create mode 100644 resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_low.inst.cfg create mode 100644 resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_standard.inst.cfg create mode 100644 resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_super.inst.cfg create mode 100644 resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_adaptive.inst.cfg create mode 100644 resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_low.inst.cfg create mode 100644 resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_standard.inst.cfg create mode 100644 resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_super.inst.cfg create mode 100644 resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_adaptive.inst.cfg create mode 100644 resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_low.inst.cfg create mode 100644 resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_standard.inst.cfg create mode 100644 resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_super.inst.cfg create mode 100644 resources/quality/ratrig_base/nylon/ratrig_base_0.6_Nylon_standard.inst.cfg create mode 100644 resources/quality/ratrig_base/nylon/ratrig_base_0.8_Nylon_draft.inst.cfg create mode 100644 resources/quality/ratrig_base/nylon/ratrig_base_1.0_Nylon_draft.inst.cfg create mode 100644 resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_super.inst.cfg create mode 100644 resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_ultra.inst.cfg create mode 100644 resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_adaptive.inst.cfg create mode 100644 resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_low.inst.cfg create mode 100644 resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_standard.inst.cfg create mode 100644 resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_super.inst.cfg create mode 100644 resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_adaptive.inst.cfg create mode 100644 resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_low.inst.cfg create mode 100644 resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_standard.inst.cfg create mode 100644 resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_super.inst.cfg create mode 100644 resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_adaptive.inst.cfg create mode 100644 resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_low.inst.cfg create mode 100644 resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_standard.inst.cfg create mode 100644 resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_super.inst.cfg create mode 100644 resources/quality/ratrig_base/petg/ratrig_base_0.6_PETG_standard.inst.cfg create mode 100644 resources/quality/ratrig_base/petg/ratrig_base_0.8_PETG_draft.inst.cfg create mode 100644 resources/quality/ratrig_base/petg/ratrig_base_1.0_PETG_draft.inst.cfg create mode 100644 resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_super.inst.cfg create mode 100644 resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_ultra.inst.cfg create mode 100644 resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_adaptive.inst.cfg create mode 100644 resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_low.inst.cfg create mode 100644 resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_standard.inst.cfg create mode 100644 resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_super.inst.cfg create mode 100644 resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_adaptive.inst.cfg create mode 100644 resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_low.inst.cfg create mode 100644 resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_standard.inst.cfg create mode 100644 resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_super.inst.cfg create mode 100644 resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_adaptive.inst.cfg create mode 100644 resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_low.inst.cfg create mode 100644 resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_standard.inst.cfg create mode 100644 resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_super.inst.cfg create mode 100644 resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_draft.inst.cfg create mode 100644 resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_low.inst.cfg create mode 100644 resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_standard.inst.cfg create mode 100644 resources/quality/ratrig_base/pla/ratrig_base_0.8_PLA_draft.inst.cfg create mode 100644 resources/quality/ratrig_base/pla/ratrig_base_1.0_PLA_draft.inst.cfg create mode 100644 resources/quality/ratrig_base/ratrig_base_global_adaptive.inst.cfg create mode 100644 resources/quality/ratrig_base/ratrig_base_global_draft.inst.cfg create mode 100644 resources/quality/ratrig_base/ratrig_base_global_low.inst.cfg create mode 100644 resources/quality/ratrig_base/ratrig_base_global_standard.inst.cfg create mode 100644 resources/quality/ratrig_base/ratrig_base_global_super.inst.cfg create mode 100644 resources/quality/ratrig_base/ratrig_base_global_ultra.inst.cfg create mode 100644 resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg create mode 100644 resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_standard.inst.cfg create mode 100644 resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_super.inst.cfg create mode 100644 resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg create mode 100644 resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_standard.inst.cfg create mode 100644 resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_super.inst.cfg create mode 100644 resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg create mode 100644 resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_standard.inst.cfg create mode 100644 resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_super.inst.cfg create mode 100644 resources/quality/ratrig_base/tpu/ratrig_base_0.6_TPU_standard.inst.cfg create mode 100644 resources/quality/ratrig_base/tpu/ratrig_base_0.8_TPU_draft.inst.cfg create mode 100644 resources/quality/ratrig_base/tpu/ratrig_base_1.0_TPU_draft.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_base_0.2.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_base_0.3.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_base_0.4.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_base_0.6.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_base_0.8.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_base_1.0.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_vcore3_200_0.2.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_vcore3_200_0.3.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_vcore3_200_0.4.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_vcore3_200_0.6.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_vcore3_200_0.8.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_vcore3_200_1.0.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_vcore3_300_0.2.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_vcore3_300_0.3.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_vcore3_300_0.4.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_vcore3_300_0.6.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_vcore3_300_0.8.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_vcore3_300_1.0.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_vcore3_400_0.2.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_vcore3_400_0.3.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_vcore3_400_0.4.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_vcore3_400_0.6.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_vcore3_400_0.8.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_vcore3_400_1.0.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_vcore3_500_0.2.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_vcore3_500_0.3.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_vcore3_500_0.4.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_vcore3_500_0.6.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_vcore3_500_0.8.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_vcore3_500_1.0.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_vminion_0.2.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_vminion_0.3.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_vminion_0.4.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_vminion_0.6.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_vminion_0.8.inst.cfg create mode 100644 resources/variants/ratrig/ratrig_vminion_1.0.inst.cfg diff --git a/resources/definitions/ratrig_base.def.json b/resources/definitions/ratrig_base.def.json new file mode 100644 index 00000000000..22c01c8bc31 --- /dev/null +++ b/resources/definitions/ratrig_base.def.json @@ -0,0 +1,19 @@ +{ + "version": 2, + "name": "RatRig Printer", + "inherits": "fdmprinter", + "metadata": + { + "visible": false, + "author": "nu-hin", + "manufacturer": "RatRig", + "file_formats": "text/x-gcode", + "exclude_materials": [], + "first_start_actions": [ "MachineSettingsAction" ], + "has_materials": true, + "preferred_material": "generic_pla", + "preferred_quality_type": "standard", + "quality_definition": "ratrig_base", + "supported_actions": [ "MachineSettingsAction" ] + } +} diff --git a/resources/definitions/ratrig_vcore3_200.def.json b/resources/definitions/ratrig_vcore3_200.def.json new file mode 100644 index 00000000000..22738f6ce18 --- /dev/null +++ b/resources/definitions/ratrig_vcore3_200.def.json @@ -0,0 +1,23 @@ +{ + "version": 2, + "name": "RatRig V-Core 3 200mm", + "inherits": "ratrig_vcore3_base", + "metadata": + { + "visible": true, + "platform": "ratrig_vcore3_200.stl", + "platform_offset": [ + 0, + 5, + 0 + ], + "weight": 16 + }, + "overrides": + { + "machine_depth": { "default_value": 200 }, + "machine_height": { "default_value": 200 }, + "machine_name": { "default_value": "RatRig V-Core 3 200mm" }, + "machine_width": { "default_value": 200 } + } +} diff --git a/resources/definitions/ratrig_vcore3_300.def.json b/resources/definitions/ratrig_vcore3_300.def.json new file mode 100644 index 00000000000..b139f3b1054 --- /dev/null +++ b/resources/definitions/ratrig_vcore3_300.def.json @@ -0,0 +1,23 @@ +{ + "version": 2, + "name": "RatRig V-Core 3 300mm", + "inherits": "ratrig_vcore3_base", + "metadata": + { + "visible": true, + "platform": "ratrig_vcore3_300.stl", + "platform_offset": [ + 0, + 5, + 0 + ], + "weight": 16 + }, + "overrides": + { + "machine_depth": { "default_value": 300 }, + "machine_height": { "default_value": 300 }, + "machine_name": { "default_value": "RatRig V-Core 3 300mm" }, + "machine_width": { "default_value": 300 } + } +} diff --git a/resources/definitions/ratrig_vcore3_400.def.json b/resources/definitions/ratrig_vcore3_400.def.json new file mode 100644 index 00000000000..a61e4570bcd --- /dev/null +++ b/resources/definitions/ratrig_vcore3_400.def.json @@ -0,0 +1,23 @@ +{ + "version": 2, + "name": "RatRig V-Core 3 400mm", + "inherits": "ratrig_vcore3_base", + "metadata": + { + "visible": true, + "platform": "ratrig_vcore3_400.stl", + "platform_offset": [ + 0, + 3, + 0 + ], + "weight": 16 + }, + "overrides": + { + "machine_depth": { "default_value": 400 }, + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "RatRig V-Core 3 400mm" }, + "machine_width": { "default_value": 400 } + } +} diff --git a/resources/definitions/ratrig_vcore3_500.def.json b/resources/definitions/ratrig_vcore3_500.def.json new file mode 100644 index 00000000000..93483af33a4 --- /dev/null +++ b/resources/definitions/ratrig_vcore3_500.def.json @@ -0,0 +1,23 @@ +{ + "version": 2, + "name": "RatRig V-Core 3 500mm", + "inherits": "ratrig_vcore3_base", + "metadata": + { + "visible": true, + "platform": "ratrig_vcore3_500.stl", + "platform_offset": [ + 0, + 0, + 0 + ], + "weight": 16 + }, + "overrides": + { + "machine_depth": { "default_value": 500 }, + "machine_height": { "default_value": 500 }, + "machine_name": { "default_value": "RatRig V-Core 3 500mm" }, + "machine_width": { "default_value": 500 } + } +} diff --git a/resources/definitions/ratrig_vcore3_base.def.json b/resources/definitions/ratrig_vcore3_base.def.json new file mode 100644 index 00000000000..a736da45069 --- /dev/null +++ b/resources/definitions/ratrig_vcore3_base.def.json @@ -0,0 +1,117 @@ +{ + "version": 2, + "name": "RatRig V-Core 3", + "inherits": "ratrig_base", + "metadata": + { + "visible": false, + "has_machine_quality": true, + "has_variants": true, + "machine_extruder_trains": { "0": "ratrig_base_extruder_0" }, + "preferred_variant_name": "0.4mm Nozzle", + "variants_name": "Nozzle Size" + }, + "overrides": + { + "acceleration_enabled": { "value": true }, + "acceleration_layer_0": { "value": "acceleration_topbottom" }, + "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, + "acceleration_topbottom": { "value": "acceleration_print / 3" }, + "acceleration_travel": { "value": 3000 }, + "acceleration_travel_layer_0": { "value": "acceleration_travel / 3" }, + "adaptive_layer_height_variation": { "value": 0.04 }, + "adaptive_layer_height_variation_step": { "value": 0.04 }, + "adhesion_type": { "value": "'skirt'" }, + "brim_replaces_support": { "value": false }, + "brim_width": { "value": "3" }, + "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, + "cool_min_layer_time": { "value": 2 }, + "fill_outline_gaps": { "value": false }, + "filter_out_tiny_gaps": { "value": false }, + "gantry_height": { "value": 30 }, + "infill_before_walls": { "value": false }, + "infill_overlap": { "value": 30 }, + "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, + "infill_wipe_dist": { "value": 0 }, + "layer_height": { "default_value": 0.2 }, + "layer_height_0": { "default_value": 0.2 }, + "machine_acceleration": { "value": 3000 }, + "machine_end_gcode": { "default_value": "END_PRINT" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-40, 90], + [-40, -30], + [40, -30], + [40, 90] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_max_acceleration_e": { "value": 5000 }, + "machine_max_acceleration_x": { "value": 9000 }, + "machine_max_acceleration_y": { "value": 9000 }, + "machine_max_acceleration_z": { "value": 100 }, + "machine_max_feedrate_e": { "value": 60 }, + "machine_max_feedrate_x": { "value": 500 }, + "machine_max_feedrate_y": { "value": 500 }, + "machine_max_feedrate_z": { "value": 10 }, + "machine_max_jerk_e": { "value": 5 }, + "machine_max_jerk_xy": { "value": 5 }, + "machine_max_jerk_z": { "value": 0.4 }, + "machine_name": { "default_value": "RatRig V-Core 3" }, + "machine_shape": { "default_value": "rectangular" }, + "machine_show_variants": { "default_value": true }, + "machine_start_gcode": { "default_value": "START_PRINT EXTRUDER_TEMP={material_print_temperature_layer_0} BED_TEMP={material_bed_temperature_layer_0}" }, + "material_diameter": { "default_value": 1.75 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "meshfix_maximum_resolution": { "value": "0.25" }, + "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, + "minimum_interface_area": { "value": 10 }, + "minimum_support_area": { "value": 2 }, + "optimize_wall_printing_order": { "value": true }, + "retraction_amount": { "value": "machine_nozzle_size * 2" }, + "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" }, + "retraction_combing_max_distance": { "value": 30 }, + "retraction_count_max": { "value": 100 }, + "retraction_extrusion_window": { "value": 10 }, + "retraction_speed": { "value": 40 }, + "roofing_layer_count": { "value": 1 }, + "skin_overlap": { "value": 18 }, + "skirt_brim_minimal_length": { "default_value": 30 }, + "skirt_gap": { "value": 10 }, + "skirt_line_count": { "value": 3 }, + "speed_layer_0": { "value": "math.floor(speed_print * 3 / 10)" }, + "speed_print": { "value": 100 }, + "speed_roofing": { "value": "math.floor(speed_print * 3 / 10)" }, + "speed_support": { "value": "math.floor(speed_print * 3 / 10)" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_topbottom": { "value": "math.floor(speed_print / 2)" }, + "speed_travel": { "value": 250 }, + "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" }, + "speed_wall_x": { "value": "speed_wall" }, + "speed_z_hop": { "value": 5 }, + "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" }, + "support_brim_width": { "value": 4 }, + "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, + "support_interface_density": { "value": 33.333 }, + "support_interface_enable": { "value": true }, + "support_interface_height": { "value": "layer_height * 4" }, + "support_interface_pattern": { "value": "'grid'" }, + "support_pattern": { "value": "'zigzag'" }, + "support_use_towers": { "value": false }, + "support_xy_distance": { "value": "wall_line_width_0 * 2" }, + "support_xy_distance_overhang": { "value": "wall_line_width_0" }, + "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, + "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height * 2" }, + "top_bottom_pattern": { "value": "'lines'" }, + "top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3" }, + "travel_avoid_supports": { "value": true }, + "travel_retract_before_outer_wall": { "value": true }, + "wall_0_wipe_dist": { "value": 0 }, + "wall_thickness": { "value": "line_width * 2" }, + "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, + "z_seam_type": { "value": "'back'" } + } +} diff --git a/resources/definitions/ratrig_vminion.def.json b/resources/definitions/ratrig_vminion.def.json new file mode 100644 index 00000000000..3cfb3baad6e --- /dev/null +++ b/resources/definitions/ratrig_vminion.def.json @@ -0,0 +1,128 @@ +{ + "version": 2, + "name": "RatRig V-Minion", + "inherits": "ratrig_base", + "metadata": + { + "visible": true, + "platform": "ratrig_vminion.stl", + "has_machine_quality": true, + "has_variants": true, + "machine_extruder_trains": { "0": "ratrig_base_extruder_0" }, + "platform_offset": [ + 0, + 5, + 0 + ], + "preferred_variant_name": "0.4mm Nozzle", + "variants_name": "Nozzle Size", + "weight": 8 + }, + "overrides": + { + "acceleration_enabled": { "value": true }, + "acceleration_layer_0": { "value": "acceleration_topbottom" }, + "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, + "acceleration_topbottom": { "value": "acceleration_print / 3" }, + "acceleration_travel": { "value": 3000 }, + "acceleration_travel_layer_0": { "value": "acceleration_travel / 3" }, + "adaptive_layer_height_variation": { "value": 0.04 }, + "adaptive_layer_height_variation_step": { "value": 0.04 }, + "adhesion_type": { "value": "'skirt'" }, + "brim_replaces_support": { "value": false }, + "brim_width": { "value": "3" }, + "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, + "cool_min_layer_time": { "value": 2 }, + "fill_outline_gaps": { "value": false }, + "filter_out_tiny_gaps": { "value": false }, + "gantry_height": { "value": 30 }, + "infill_before_walls": { "value": false }, + "infill_overlap": { "value": 30 }, + "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, + "infill_wipe_dist": { "value": 0 }, + "layer_height": { "default_value": 0.2 }, + "layer_height_0": { "default_value": 0.2 }, + "machine_acceleration": { "value": 3000 }, + "machine_depth": { "default_value": 180 }, + "machine_end_gcode": { "default_value": "END_PRINT" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-40, 90], + [-40, -30], + [40, -30], + [40, 90] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 180 }, + "machine_max_acceleration_e": { "value": 5000 }, + "machine_max_acceleration_x": { "value": 9000 }, + "machine_max_acceleration_y": { "value": 9000 }, + "machine_max_acceleration_z": { "value": 100 }, + "machine_max_feedrate_e": { "value": 60 }, + "machine_max_feedrate_x": { "value": 500 }, + "machine_max_feedrate_y": { "value": 500 }, + "machine_max_feedrate_z": { "value": 10 }, + "machine_max_jerk_e": { "value": 5 }, + "machine_max_jerk_xy": { "value": 5 }, + "machine_max_jerk_z": { "value": 0.4 }, + "machine_name": { "default_value": "RatRig V-Minion" }, + "machine_shape": { "default_value": "rectangular" }, + "machine_show_variants": { "default_value": true }, + "machine_start_gcode": { "default_value": "START_PRINT EXTRUDER_TEMP={material_print_temperature_layer_0} BED_TEMP={material_bed_temperature_layer_0}" }, + "machine_width": { "default_value": 180 }, + "material_diameter": { "default_value": 1.75 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "meshfix_maximum_resolution": { "value": "0.25" }, + "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, + "minimum_interface_area": { "value": 10 }, + "minimum_support_area": { "value": 2 }, + "optimize_wall_printing_order": { "value": true }, + "retraction_amount": { "value": "machine_nozzle_size * 2" }, + "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" }, + "retraction_combing_max_distance": { "value": 30 }, + "retraction_count_max": { "value": 100 }, + "retraction_extrusion_window": { "value": 10 }, + "retraction_speed": { "value": 40 }, + "roofing_layer_count": { "value": 1 }, + "skin_overlap": { "value": 18 }, + "skirt_brim_minimal_length": { "default_value": 30 }, + "skirt_gap": { "value": 10 }, + "skirt_line_count": { "value": 3 }, + "speed_layer_0": { "value": "math.floor(speed_print * 3 / 10)" }, + "speed_print": { "value": 100 }, + "speed_roofing": { "value": "math.floor(speed_print * 3 / 10)" }, + "speed_support": { "value": "math.floor(speed_print * 3 / 10)" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_topbottom": { "value": "math.floor(speed_print / 2)" }, + "speed_travel": { "value": 250 }, + "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" }, + "speed_wall": { "value": "math.floor(speed_print / 2)" }, + "speed_wall_x": { "value": "speed_wall" }, + "speed_z_hop": { "value": 5 }, + "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" }, + "support_brim_width": { "value": 4 }, + "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, + "support_interface_density": { "value": 33.333 }, + "support_interface_enable": { "value": true }, + "support_interface_height": { "value": "layer_height * 4" }, + "support_interface_pattern": { "value": "'grid'" }, + "support_pattern": { "value": "'zigzag'" }, + "support_use_towers": { "value": false }, + "support_xy_distance": { "value": "wall_line_width_0 * 2" }, + "support_xy_distance_overhang": { "value": "wall_line_width_0" }, + "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, + "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height * 2" }, + "top_bottom_pattern": { "value": "'lines'" }, + "top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3" }, + "travel_avoid_supports": { "value": true }, + "travel_retract_before_outer_wall": { "value": true }, + "wall_0_wipe_dist": { "value": 0 }, + "wall_thickness": { "value": "line_width * 2" }, + "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, + "z_seam_type": { "value": "'back'" } + } +} diff --git a/resources/extruders/ratrig_base_extruder_0.def.json b/resources/extruders/ratrig_base_extruder_0.def.json new file mode 100644 index 00000000000..0c621c9a061 --- /dev/null +++ b/resources/extruders/ratrig_base_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "ratrig_base", + "position": "0" + }, + + "overrides": { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} diff --git a/resources/meshes/ratrig_vcore3_200.stl b/resources/meshes/ratrig_vcore3_200.stl new file mode 100644 index 0000000000000000000000000000000000000000..b44e099eb3f38dfaa1fdb42a928319b4aed7889e GIT binary patch literal 290784 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

    n01}ErvB84aDDne(RczZ${cIt(v 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 O@#}~Aoj+w|ApRfb5FPLU literal 0 HcmV?d00001 diff --git a/resources/meshes/ratrig_vcore3_300.stl b/resources/meshes/ratrig_vcore3_300.stl new file mode 100644 index 0000000000000000000000000000000000000000..454efe90123ade9d965f4b4cf597e8cbb3891e12 GIT binary patch literal 250084 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 z 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 literal 0 HcmV?d00001 diff --git a/resources/meshes/ratrig_vcore3_400.stl b/resources/meshes/ratrig_vcore3_400.stl new file mode 100644 index 0000000000000000000000000000000000000000..dd1b801714a887243aa04bd1d5bcd5a82fa35094 GIT binary patch literal 250084 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

    SjVOgc75e84hWM~o#=S}7P0xrx3le$0ahjxa z6#`Z0XQb}m35m?T;6BswuG1BNA`)F`?W2!8zYk>jqt?9FqeG@r6;+=ls?c9b(Y}j) z_|B)-O&d$wD*j#c++Isdv>YS<`S^5lBv0$r+>}%&OYtG2O7~gozbe1$>1MlWyv_$} z@o(Kkg+LYhuc^ad!%*J5?|#$wZ(|hCHWF-HlJ=60G3d9x!>Ut>XnuP9A(L~=Ud7*z zD)ihN3{SsD@@BmqgwL`uiccSj2jtV&$B{q7jis8=yCa&Ls!+`+{w-Af_Y3pq-EOx= z@)mu5ncgnGs1T^ar~~!uiwWZPX*s6Lc{dnZkofOR=XcW`(z`FOGL~X2yR119sKQ7J zb$jbkhi|scHO(^_ImT5`h0z*{{OoYxQ`~Y*TPeE@2~^>GmpUkyb(EW595Z&J-MJzu zdas{FJu>D}CsI4%9ck8geE#MRr-7! z7#L~J-(#eH(dx2$>|!=Pv?)gm60W1dw3-Vd%)_XcqQP+GKy&#e{IqdLe|LpI6~5ak zpTS`)_lPu$PRni@(c`7xCI3Z~Fw#U<@JK(t`S>T{A2(3(s-X%!Y}9SRrZ=Bh?u=+# z`vgM^5_rE+l+33Szn^?n1bIJI2vngD&|vsEuN*&U%oLut8!Br!RN?(b=W119zGS=* z2dA`F2vn(e;-F3Acw_3NH~-L9CEur4JKFo2uECw$7wLPw^8bAzNcWx}X)=_rxp0jo zjT$E~-v?Eg&qUuJrH68-ca&+kI7rDtLZZOIMC~QTQtd4L6F(ndoUh7aRt{DY{}!q+ z%ZfVVon*ZAw<|2Vsg07cg~WmyiJB{o$vIcg@d~b3o7>aKo1Jo12vlvNxT;PRJfwGA zycSxT7p!=WjV;z#Aruwlm(ep=>Mxc{og)kF@1x|ZVHR4?9dVW@@_I}E#DBLuFrM#x zi|uj=QV3LGE*{+_V{RE6*S^U-Qi7D6yZ=k*vF-d-#*;^zO}PhevY#DCDun)b|5IU3 zA>|IbTsJulInO?QAEo3DB2i^hv}GJECh8p*pSZ_~$IoA}2EP3i0#%qBN%L;XX|ajA z2+l9lPsxEq;#^3C_K5D19+s%3L(o^MF?q-O*|$^(RAJ5~`P&y&mxpq0vYjb4BwCPA zb2;b7Rg|@wK4!P7xk|Jkacx_e<-9r8(eJCE;Fj{_t|!dAwV*2YsaIRi$qOXIm*6w32tX{iFDOP=!7q zx=T{)NYCC)WbVIX8CsA)pA*%FpZ1Ur!dsrKo?==H9xqg(UtG_1t}Cana+A~g?^Jwb zs6uZ&c?ZXqmj~RvWY0@xg+LX0*vPY8y0o0r#Y=ALcvYYU35+37pNYfoL}^1SIr&wN zLZC|Z^+i_RC#uo8>h`jNL<M@ryNYHAj;z$EGX(T~wiOnQ8$>H|5i)1LlJ>V-z1U5*UvpKU{cY-u`w& z*|Y3d6aFn!p~ss#G>vuV$rl?+`+}j0za3S$wxh428g+P&HEz=H!G4866~=BU7w5wj z*70FWdF)YPB?^Elj3-bx-F{cuofgeygRaGt*aQ+7gQgzwE=}3z2X6AcT{DG16-LI% zU-Hj<!nF6?nb*iv6hw4gT<<5W~}_}NvS6lcVYlQonG z78000LDl57j56}YD^cXZSB8HJRTyuh74nN-a?hGn;l2No5?4b4J(JY6ZeoCRUvgPw zRhgv_sKO{9Wha=1$s-L5-9ub&bB7OF5dX)v7gpCBEn z2i=n~o0K>w5|{x)Pwkk2@<6*c!akvkz`unmjLK3Ex+eZ|=CDJePMK#)^c4x5wW&g( ziocw=;kH<=WeBt&f!RW|zgmjBJTd91C^xLML;_V9U8dFR$oJww*<0e$A8nOLHL5VP zin1)e&JecLwNA?zq!6f5WAx=%h*}`ys4u1!d#wnQtNMNR$!BAaxV^az~6|;Q;6arP489{M_fs@$ql$+v4>mf=8 z1QM9BM^99VODx#yrl_9WO(9T)86Gr?QWwE()V1z3brD1h5+)_1@$0;@{7UXE;nu6Z zLZAxsPG~m|pElf=I$+-Z@m|ScK^10c(oAjFkN2Yvn3sZ56#`Y5J4(@vk$riSTkpjA zl`#r|Dtup29H+ua?&*{zq8KhfdRyge#BfVXclvN)R7@?z% zawngP9mj{sGtD!MXu+r)uAHe`PuCM7o0?39xUW>!)JUi+{fc9w`P5Ds#(lYCjp%Ph zpA33c4Tj7;kvwzYFJrMGmyBpZVp+o^EtfLl2U|M)jUjJs*2w0@O609Y0#)c$H5l5K z3F7bP7h)$@-e71!0==qK`I0q)o8DQo^6hUjv><``^wjz5epkNvQYqv41ZR!}s?ZNh z-jAv+xM}VxFk%7wwWkcjUxMcfYs{#+KWh}}20T_vDm0DmFH&&Njc%{v|0j4gXj_)GBmqrZ$+`T^7Vvh90~ z-VTWZEl8|}Kd_ffgkGyR!MQi5!Y%Jf*uNoT3>>pz6Qt zlpp_S+0~z)>i^3a6jEFwfhzQ{Q4BKJmru;xXN;)nBGG~b##;=A)R~QVQs@0fC$~ll zfhxr(X9(!hh%9N=lWiWnAR6?gxy2PR`G7*CPsg<~yqX z7YngOc)!LrljVGqjfHGHED_%S2vi-SJnIj14(A`!_uD?5=p`pCF2r8b|Iva3MwBVr zFw#%jP`|!9`y3SlRT$@{9V!kCk(qUG8NK-%fyY1osWrMObcSia{?OXk3T1gbELfO=q4oc3C$H%3p2^x`p4b**NI<(h~2 z={vHOrXBuP(f)w_E+re$f&}I^kcXwmRGHZ+*=XB-2}1%^dPc!J8sAb&Pe4X7?coax zF+IxyElAiXnH)ZwhRc&Nzgr$Y|4boJrN)XJO#U*WXnD4}RxyspKoxol>AN<23|~b% zH63l!xh2lj7z@ESgTdg?egLme-rDvfmot1%ph~R_8@YQ7x4NCkF0WWCFoJ>eJkGA< zdzJotIdvCnU$B5g0#!J>8VoV)H(R)B0ZVoDSE}N1e#Ci<_E=waf))1M!Uot5RtQvK z)WKlbWS+}r&+ui3xbK6=b;@v7>~yFl zn(pCiE2&rUqZ3mkT9Ck*k5J3WH&w z_fYwk?h@y|_XJvyz}b#6Qp^)%oJ#_G>=>^QsKUsG-dlZw{P$x#^E?@+bP7QNXFgiD zx0);~d2L~-(-V|#B&fp326b;O9xlD;F3D**!iW|maOR`$b3RViU9*baydK7oKov$d zC{N#NyzJkU*6eNOGqfOq^B6@&sqbJjni<|w-$5i$rOt4halL70i zv5x}PB2TW!tCnfbM~z;`(1HYZMKBoJAFIyoo;Bj@t=2NMAfeW6&q*xE`Ae$*Y`D+9jA_CvelEuG7^qVFGkmNS#u`-Y#+Q95%+Z1b_G+MR zp>4Xe_i`|Iy!DKs1qrpL`pu`g#=N{yJlF5CLZAw(%ngQGR@+S0^9J*jzrHF2s<68Q z<(`*F6d8Rc@>L083@u1tWQ)2EE!!#<*^lL|A5T;WRAG0A|3}$*fLBqpZ-0@h2q>Zm zC|#u21W7v^S)_xYR0|*o(m|<#lub_PARtAGihw8xh=iJioQ*C>FDl)JB7&lbR7HjF zd1lU>y*Fp`fBkY9+$;C}+h=BXc4l^Fcb2Z&TBibSx4oiQ`umqyRFJ@x7wGBFwmE?V zqlW5}zdMwJ3KICXJdJoIv_ar)p%_gJ`=1+Kk==ZRY9N89+?z3_xyX;>W#6(n#S4f=l6pboy5TSV*a zFF)>DVFL+Vfr!rF!N+nwr#kWF*JE4+x^P`28q2uwP@o_k-4E;3auMjl^+2dKSkNvo z`^yOZuV3o9RtiA^*LR}l87>|R)ao0dYhRXj5$M8|Q0R^I!KVTh|7omGjeo#G1qpmI zf>yvRS;X4Zu8w}=-y$voUHD`Kz1w&8Ve7>^b@VSgoN=wHf-YRqh1RpYuP%LgF;-t0 z`(_R*xGEQ}8bjx!YP9vxv0Z}*GDzT43$(sy`8ex`ZMF4sf9`RuS%WTIn@rPY z41UN;K5FQXm6_th=;*=~cIdhAyQ)~vWz^D(-9GGENe2mBV~tA5xC4Pr)nfDlt4ip& zFLdEbLG<)zwF803K$QN*!cwj^gpk0s;^^&x@=pX-o~f<(qxnJH7rJl-JNk}$NM_;fsALQopNtBOMhautlYMx4<91UuKur|H!EBYHM*l5nNS? z)?99Uul`QgK>G;%Tan(`Ja7v zzAWe>(B-~YJ2<_GZ^?#=dY?mvD<7D1TswtI`=cv;k9}84uRh4oG3|JK+{FA}3+c69 z-|I_i)ZDdx3DUTB3XPsmsvO8!T;579)mq2-Q=G5G_p50xwdeg-ZqCNIi}a21(1-^; zdy3Dbs$Rc*mQ$Nw%KGc(4Bx#J0~I9jIZ~RNm>p$(&}w5`&71W82fV?7@o-PHhG}$? z^;+!49OKI?Iono_H+s)av6rr_ZS5UJZ^%EAY@eJ}JJ8WD-%#Mc)3fIv_p{Evofv3Q zbe9iZNGInc7zg^K+82qYH^W-?wyv}r5xBeL*FIE`xLz>9Xq{+^*!2G3mVQ=|-bVu+ zJGKZQfv$?n6O8@UQ-j2cnNL}rp1H?*Z_ip6fv$mLCm7{(6fwO}q!m**((1kPbQZ=y z*Yimejd}5D!5A0&ma`h)iLhF9&voSkT{&fvjE4Ku?24~*&cAt&-bo$W+1l{rGjXUO z@#p$PBWkURaX~u~xJ=KI<*xcE2MKiDzMW(o{7VtFCJYW7Iyb^9`Qv0C66pGTscFn^ z@3(J@^KoC&=zv}EWvkKRT|QKhXgGl0X{hB7=KQx7ALY!xHr~4QP_FD$$B4 zH)wU-lW&f+5)Q9%5$KxnSSrLgIy~L?Xw`96&p(UDVGMLtKa~nO?>=&=@8p3#*2B-_ zxblInzt*N1Hx{JXHO2XOvCB!{#p|zFO=@n8MFoiuXdM>keC*Up>$_7sS(77A=OBTu z>*f4VO5!Ir(3c15Sl7Oq<3j>nv*|0!B}%2*^+l@8M{Dc!YZWWB!G{VG!{7Ep*)8~1 zJN?4kl2)~Q#{`f-SD9kzaDBAy`Mln4?t#EBr{8xG=vv(^9j?KYm1Fgu^v*n)Xc2AboE?JrYj%l>bNA`c;* zp?v>C);^ydNYWRr-WZoMYflam=wdoyU1G58?z=EVPw1cM`())}9}?(Fy*J$`v^Bx* zD^j)UzM=Y}0!cn|*diY)NQk5G)Wl$n)era4ciukYyJuN?010&Qk#2r1AxJDa)Kd3H z7S}g@zrsbJi_hjNdwh^M_fr$SDg8d){cIe@Ko^&oj2+{GgzwAB`mUah^x+-1xblIn zGb7WC@%zWx!$i)j>@KYrf2Xrv_>BuYP(gxA{wwFl24j3b=Y+3w^;h)2Q#R%xfiAwf z^tOta`?%lt{-r^>)pxlM33MIpWg6{QjIpPSR8_2N`t-UZ^cDqZ{X|fZ;95faWlS(t zWoNF9yHRe89{K95021ipn&{2Fiikh3CTIVm*YxdY-*yq`;@ZxM@&4awfnNrX*5g}N zaHR@eT%$TUpY`Lcz|?p9>&?1<>>|*Wxg^mT|MOUTvdDRzN+$zncf6wadZcv@DoAk4 z;GB;dua&l5e5|wn%wr2&1iHBOaY{+AS0A&c^=hU+(kRu3G0|gDiqT(AL!y+Ge2dkB8p&A%QOJ zMNyxjdXlxM-p07P-Tur$1qpYL%-EZ39d5ikr_zDcs1xfFjUfk;?4`4p)q01@u_oJ3ljM+3#JNx4YtT*p!9*fH4F-b`qx#cWiNc(q!J@yAUS<5KFLK=T>S z=rubqAa{&4Htk|IDoAW8Wf~hFNev#|N$F>DHjPfU==JXyB+$h*5%+gxKCB5DIjf7L zP?^+BRJ;gz1|ME{Gp>83WF|Bu)Hb`S|6>}h9!Rx65c#n^y7AYtNQGMu}Gln{u*gU z6`yIZ6UXYsK^^ti2bZ;)zjQGh6(pKO6H#8pC|GWgzGL;5f%0SDjX?rkmtRXWme)$L z10u%f_Yc*#l=>_%a>|S>RFLR8D$V$=T1v27Egzk%*IRZbXZCAnn<0TNZmIeGNLj89 zj8E2!j{Gi%O9?7ogghU)6_fSjJ8s71B^1rBO4Q3}d?(SKD)MpgT9RI@N&#QW;u%?} zAW>vQn(^gdiNSo7IX^&8dFUHo>x9H8B+zxVQkt=I!^B`+a%KBSJ$lP}U()&Gv8W(X zqD`97?Qs>O%kgLR=p0&ir(D};B+zxESeh|>@Wf!Mn%*0wUp>=MZ?UefD+ao_^c?D|rspVmGiN}^Jb7_unU$Xq=k7~|FD#q~q4chmP!?SuP5*T-#Ajlk0r zf+ca+v>$wrzR_Rbns_lA6(q8%rWy+)RE&9lC;NWAG)}KO{M{HN&^3?NdZ~Oh!ColN zV3o)E`VOy8(C3byk%bBp>)tSpoyJmJL?MB$o7+>2_GKpoYoCp^ zzsR|SK3;z4n?MCBDVwe*L?MB$v4fJ0i`ypH+eJS1Z(JXk zo;gxaynQ?t6(sKaKG_)6U&Z+O%X_TH9_p^wE8Z~%33Sykl8rw56>;MGhSnJ>DL=Hm z&lLk*lRro@+Ppe3SV{_HL|U!8Md%v`EQmn`3IFgU|mnXbgF5J?p^!v4P%a8d<0yfxRet4{~@J>z}U<2fjQW;Udt*eP3t9 zt7G^3t+i#32Ubprv`|3;dr>s!wNbNP&Csm5lyfA|#l3!Kj4Y?`;lLjcmaz&_&QU=E z$Fk^Y!*5Om%G^`hIyW-HLInxzchQ&r+AR*0>0RA=cb%I+7mj7olYj{`121;1VJ(;# zX`zAy_PgjgYd4c$@r2-d}Zd8 zu~tydkw6!Ym(j@fy+?et=a#XC6M+g6*terqBYc`pzg9vX0$n)5Mk8LW3+b|Vu?d>kr_4}JG z2;7_%+hC{;+H3&-T>J6L5S^kJ0~a~`Kup@IaC$!S_(WQ2Zo z!^)iZskEblgz5pxbN>3e2)*ndiE(4;d?0}?9FwD2{n}0RPY-6qt)cUQ3KH0Vq`6ee zdEFtgzLk`7B+!MUc(eu`osTwD;)_$xQ9%Mn@#q=)-BtBYUoZ7NMlB91NMMgs(-NqZ z+}V4?H;Yn*1iHBNI3p}4*WB@axB8B+Dy0e)BybduzE-fhpgy$5Eng0u4^)uA9w&WY zt;7*upE+gp>A~wmjUl0nkF+xyHN5;z-+;Hu>Wk@opn?SUIB6w>V~c&0u2!cNV&rwM z_JuAS_oI~~YsUCCyi;FqOgTpd2^{yM_lk0x_#WC_RASv$crz7>Z zC{;+Hi)&P8Jh6Sb#GE9$MxrQHs33tOg>-!kn3?nHJ5BV`lqyt^z+NrYB|~EauTc3l zDOE_I3r7m+X%VVN)>HX?lv0HX5;#&wYrTBEG;oK?ZzQD(6(q19OyA(4+HC`s-!~{# zNT3Tx3h6!iHFpB^>nlg8LInvN#iMlxAHNld`=Fry9hF^FkidR0^)jgK$fXuxK9yZ0 z(1qiERN9x8wcdVYr*9~gT~v_3elWGQm#bSH_tm$S<}~p&q4R+X64;Zabq(hA-Q4ZST@f@;I?hojdeIfM(*c!aS+JH@%&b>moE% zkWkw}g7!`Si4kF?LMg4}%ho%&cfmg8ld;SC~NT_WW z;iIH!N>TYx*PZ%%{sb$W5=E$ONpQC5Kb>PJg=6qh$d_QqMex3mP}{*6@|=r&D1~FF zvx)KYCs;v3Z3hX?fcSB)4_5FTgt;;3bUj@hRJCsPaziuPP z@%R0aWKV6SX5yq<5@)L<+oyx0f0n5mhB}W~*&}`z+ifROst@78@Q9pz+`%6=fv$gxnRabI5T-;- z9Tg;27c}jUM*_hBQEmcV`irLRjD<_LfOJ%lSlrXJr&sohfdslb{ASwEg~q}$1}aFb z{K~Yiol&FboF4iyIUh)%tI})q1&rVG5De*9mavSCS(t1OtFPvx%AWP6 z)R92f#}THzwSbyYRCdk>Do7OHX4=kNs)~@8Kv$zJrrnsn)FkI7kU#~A)if(wxi%1{ zq)ffYU1|2zTQY}{lTz)piqh5MQmXxXXcjpbgD5wFuCA}9!OLz}hdyu@ZO_lxjw^e2B^LtId-I@O0 zdo$0UKfEr{iutOVZ$Qi#7lE!G73ezs3L( z86?y;yWTiE(QbM|wFXF_;zh_9pA{UaC%tr1#6UuAv#b3}iT0a&)fq$r6)!@@sIs}U z{{FGjq7R3J+Gf|K;z{;T$5btf1S(#Hj4`QDq~5o1q=uMGPd=HoN}*JlVd`V|=h?KmrvnLdMAMbJBN(&Iw;rNT_XgEvE0cHTY^= zFa{E+co8y2he_$a9aOeB1`=wUT@zAFyTR)!1`?=v5i-U{6EfoHIT;ZH3AN2GuG^cB zRxyx3#fu2V;Ae3}3?$SxyN-X53i+TIAp#XILdM9Rlpa_gJXT1kZFc#eNW=311S(#H zj4`P9$-t9^OFG9wk8qQL6A`)twT~i{{ zq25IT6)!@@sL*PhH7QNj?MSF?b`^Oc9oi2hQ1K#U3~F&KY6nG&gM`{<*S`bP-R)qA zK*fu2#o)HqL_%$=e5f{9w45A65WHWdco8zj6LhRrr>66rp^1drW)~lYXPT%U84{>? z5i-UyI_Hn|Jt<-!p|;t@XR}I{ih%?wUWANsYEx&cBwdG`4s0u?Vp#^5|~$~XoRYMWhLON_swVjzKv7a?PO+2>^7 zS2`yg0|~XwF0SpmHcAV&gGiv_MaUSzx?RLTLT$5)Ywcs*RSYCh@gii5)1xwSa)Qr` zBB8d~#jVf&msJcTQ1K!{G2((TG$hnEySNo~@B5^9@W+{<*Xb0kplB4iA@{`6p7q9LKS*~PtOr@lf06)!@@pmU)I>qHF+waqT> z^*i-05~z3)GDd+`<8;F>>UIqYwaqTRdr_@~rXhif7a?QZTG}tVWK#X;8+THyth)4l z%n1qhPaipbLw4O*Xxa;ECfHxn7fR@h2$_|ey|MaS=4~QS;cJk4#Z2(E!o61+H}g&&0$p746;0nbY?+l=aNqjq%S7OQF@;>Oa8F;xsQYT=to`?_i~gMmRFL4> zj_*Gtk=WwVtVdR^7X&Iu+)rZ;U5ih&4}Z)#zaEjE6?JGw^m&Sb1iHA^=KClam2$X_Nq#mOrU~9%o}n%NXC#1|LZ2ug}oY0yHucRv&>~L zY*(q`D~I=m#L^LdyZiSkb~BOl#42Vp?U`wzd?*54*sGyc(#E~o?Cr+i3j!4+u#ZA3 zW<9(ydsNP=F^g`?GsyK4rwWOlkNfS?bEton$>*cV;z`*x9*)Uw7(C~SKo|B=Xr1kr zFJ|-alfiPu^()6f0(%^qR{r+~qqmG2mOYyYRFHVLqIGGv6r34iuu%)J_+fF`{wYTl4tZS4HRFHW7R*L=6OR2WKfsfUr zE5C^H4Ou@EfeI4Xiqc9U zFRY2Kc>naMD@34z#P*#@cH>t}`)kn}{99vvCjE+|iv+r`6{S_6Voztjb9j*;P(cFQ zL`_?E;J3^^yI&LpDo9`pM>Vx}HuJA`SDSH3LTSwobR3U+`u^W=?V)XT)A@6f3xpH4x*4#2%x8KY| zpo>%M)Von_7G(7(@NVXHB2YnskBHM6)b6t+tJYtovi=AjE2SX8N8M?0_I8_*HK2+i z2vm^ZGwZZ!AAZ_1YqQ-mi&KRP5?p$mmUC%~E}1hfbjadkg$feb`_Qz)>j!0)`}+M% zKIcfFi?0Hw2T*)Q>&*6dpAZBpNbr^B^fF35T{yFm^{42`pn`yX@*R{GbZ|6ByR3fNua->5D3B#7WYZUS9{r?!ai zI1~ulKmX87+`IzurSDD`DXDjFo%j~n()FuWI6m%v`FH7MdtL%v<9?m2-|hhfx%tP` zQ9)wx#wGf~=YbIRyac*>JU+rVJ0%YxVwioRtsVZr8EWwc>j{ciK-b}4 z-pcjUdx|cCAsrPY9*bY%Cdkb{ZUSAU*DcJwc?DufAP<2qU!6s{e-`$tOHe`L+rm?F z6K5;pZJL+JNtSbv`|9Szcl}x(6Sd8)Wzyi>cqivbpyEZywl+wJ@m(a;HoKVKSSU}b z1c8bdA!B??a~~~(bC5`=ZFZfXxhcNad=&!;RJ;foqZrM7^rLw%J}F43ZFX%uwlcnc z1yv^^fr=L)V{D=Ek|$~Yj$6)!@@=u2~unZbEAB-A#$h7~TL|FB)fKmrvnLdG~DM>)l@LPBk` zi|hH5yHpG$Q1K!{F?f7e#6UuAv#aB&^OlnjiV-4E@gii5el(-FJ$S5;P}}T!&W_1- z&Ib~xco8xNoxy-Q=SZk+c3rQXlIxT!BvA1pWDF{amMXhQsBLyFDE>~abA2FziWebc zl%|!%js~wmB-A#$?(M!k*SXG-K*fuYF{oy+R9%9E+GbbxwFh&Z`U(kDya*YCYB)>P ziAbnzcFpShO|Db#B7uq*A!ATYZK=8)3AN3xk$0WXb=nUkQ1K#U3~Hk+Y6nG&gM`{< zSGD+Gpgl(d6)(aSL(C{5p|({%R2xiV88TIZ;QcDai;yvbIT!PTNT_Xg@ljaaUiE#D zK*fuYF@k4M#6UuAvy0E>$z7_Shy*HLgp3g^i54{FI1r-AcRJ;foBUrvmx(@k#AfdL|#kF>uPAUcxsCW@F##&gj1_`yzE^d8ZXsTi$ zfr=LqiowtOa6U97)Hb`g6?O7KF+v0?UWAPCnLphZJXRVKYMWi$8*t7C5~z3)G6tPN z?)!**AfdL|#l0G*Tp@vq7a?O%N#s79h=GLKW*7I)oa+M#RJ;foBiOSPF_2K(?BZUg zbDblBiWebcP|d)7Y7qkowaqT>Ej#rU5~z3)G6vOfd~d*YqUg7)eJPq<-0OGhT_jNP zB4iAzsrep9#6UuAvy1OuR4burNTA|H$QY}}Jlm{Zxw2XR(#T!blKocSi|K}+Mwj`D z;=Uofxa4zRR1!ayiQhgh{_ZRu>q7!vT#gm3X)ViCj9NGG0TBcDi!|2~+)tD-Hdh-K z^~zJX#poa^NO0Z7y*^2F{C8SZ_0qcpfeI2_qjDck5-qAtjM{K*MAn~_4^)sSmAx{z zKaI)lTg4;7seO~8Yxhmc;+at-(8VnS_u*uWB0nyVUcRkw)^9|hf&{l$+#{338#gne zyPU5f2vm^ZR+Rf!lGwOzUG&Y;nVFm_RFL4doqJ1?_^$rK=#Qem*v>O1s33to4ld&~ z`?I&d7(GV?i4C(ii{6rqAsPPHw2(j-_BiP4D#z}Pp1W7i`YV_!F4ep*BnJMwGIv+a zRHKL(q3>Ppy=d)+4N+I~5a_}l2Yn%L;hN~vk5?4)&Zr=P{Rd4eb$wCv*@$j}Km`fx z4Nxod^YG}W=$BK43KH11)2b?as%&fC{zY+gQ9+{Wza?|`7dMSdVz#fqrRB}eH9s%r zgpoiOw(ayKvmWWqCSE8Z=G9O^0$XaDAKX>FS+O1E1c3??*zRgt|9bC4{ay3Z&nfWgQy^ZBZZ>wF|VxrTFe!pg2dff)5R#KQ(wh?(n?%| zNT6%Nv!ml%Zuc7_MD5c$J2mUz;w@r+5D9c~YMpww@u~S)0Fpb^EZR zi?gncDV4=@!l)p@N8M>ZP6noD9qiCt%nzc11fN-_jas#(M^-ob<@rHWkl+&Pw456{ zz0$1X7p=1XCIS^Cj2!xg=dpCdM>RNo)8gAdw$0jFS3LWH1iJXTaoY1!f9%?}-q%GC zs35`DrqgG5@#nGIM!YaU5U3#G?w7oHW=rN9rSBHA$fzKJy#c39qgGAF6%b3(mnlzw zCEt}&Ys-Ys8=!(j=b3WF#SkHyO^$&Cx^UG(cdAf9VtZ1WaiEOX8=y#_3)eYx$H0{X zaizlBds7Y9`wpIRGCMjF z=$cAvm?qKN+2JJ-6(n#yQ+Es`(8cH9d1n;!feI38g)UdB2sCvh(AB|~7>fkD?%!`3_t86}^|$eSt*=CZz&#g|^nQ(2#iD|QT4PP- zV|C%pIcIJq>qY!yT?D$O(HcSn8>HHAWpIo+aYuIaIh&$iy?2arA5Is33tW9fx8t%#a<7>wj}w!ojs&`J#Z7k%T(=ZgJ>@eSR*Q-ls34Jl z4TlO6SXYMLWaY7N?c>dULp^D&wz=Q-!6$x0y`$_VQ1K#UuMgjSMM7<}i)rt-Wl`}W zWDI^wkKWJlseGt?DVkjkU-ui%+pk zHoNY+m1cOqEsKg5A!FdXuSlqEb{(CQW_Z6Xi;5Q^W6=A9x_aXf3AN3xe;!IRoVR6> zK*fuYG4S12B-A#$>di?tyx*2Z#fy+JzNM!h_628Okx<+0O3^4r=xtdfQ1K#U41D($ z3AN2GZcDu1mPN&jkTF_M%*gp5I8%*;+Gba)k5eEYNTA|H$Qbm_Pe8p{jD*@|*ROMu z;d~&0iWebcJV2wt6@qWeBB8d~)xngxY4;lQ|RNI!6K(FG9w^cVCfE+w59adLqA4s6$MaUTVwk#5An_Yj_o8WE-LvPEX;zhV(hcrMLT$5)TOa3bStL;LB4iAF_Z11X%`R?5oqQmHiWebc1bYBtW)umv z%`WZ@IOhWiRJ;fo1K)i`LT$5)do@nELIM>pLdKwysPk3DeQG4sHoLfY=3F00pyEZy z7<5I2-j+o|ZL^Dena*{N1S(#HjDhdIBB8d~#l2;xzCr>OFG9w^cVCfE+w9_Azf z+pApiop)c)m5<+^q|2FVB+$j>Skam`h-RwK2WP5rzesZ};k=ddd(~l4HCoA;YE+Qm zy32X|Tp1dbGnn#5eTyT5qq1r;RD{UYZFo!aNOTsc#X1iIYcCNDxW)ve!>Gu23- zi&N{=qE%?7y44IhQ;iA|d_&PeRTm{xMDM>Ud%;_`w!f&$_M8OX+ba~2vm?z+cH&(AxiHtEx|7OQL0!~ z`a+j7pQ!CluTUSD-cbw@rld?A6(k0XdFT@t!2nTi0$m*YPGhPaf@@&2n}1}gl!64u zQ-7CUw&x|#^~$9Ld*1I}F;GF`?}8;iaS?(QCk7MrW9q0N@x{44xfAz6sw9wy zK-b}4-pw5wJ=r4$mL)8eTy|Bx65PG`pQ)pQ1fQo-^ww{vT(RHed?0}?an$4U5De+4 z@NujEWQy1??umD=e%vvT7(XS^eyCouJ5_|a33PSZon%+(kmNz2(y&&F{pjk%|BqB5 zQMa>cmoy};^1%OhrwUzM7K&8yB2cM*JT+pwc7C8MQ4ol$OkHUiLi4nVj#iW%Jt0c zsbV#f@MDEaULvffrrel16G}m1{#k!MWfuu_y*n&Dbgjq(CI2;bRF-~|Zu^7R9q!3Z zpn}9B4JUT&;z);DwdYbQH|@IfOc;SKKC@1XbACZo(<1l!#kZX>Rp_eo@npMjiK)hWOF18r zi=rdxSHwUC2`*z!i?gY?e@m5xQQ}x3fv#6Zq}%_jnHD@&ukJh(IUuF7AW%VqOTN=a zeR6AAx>E#TqpXEs2F@<$f9WKNT7?i|91}n32qsjd<2U+hjR59(8aBfbFA1Ze@z_~ zZsF89_;0B~f?H9il+gZzKkiha3;RUM&Htxwr7W*+s9y2f=<%WLr|tTNsw)Lyihqef z1&Ngpk9QLc5alM&#j%~5LAnJbQl%6mIG*}DJH?Nw@}U%TMa9-PoSK3BPKU2H-QQgoeI`4y!+Hhpo`y7@+MG0qQQz6b(KPqDpRJ-)KNjAdvf(q zp4|CB0$trR9*lP#t56J7kZ4%AT0Tb?33NSMdw9I-42EK$f<&j4Rq{FKNT93keaqri z8521V#Xtp#@%<`?N~Iuz|Cl-w=xR3alXzEY55+(QiQZ3F%IEq(0$r!)eiN_y*CIio z7^omIctl0RMTGK!1iCsmz7p@MOF}VFLE@EtkLFYRAc3wrM{mcgHrSmHRFLS=|ItuO z9n69RbtKR=Z+d|zz1wqCkmzJQnooO<1iCo3YJZl;WHnMGc5z57Ptp5xi=cGymU;-7~FW(i1jX;VRs35_2;bG&VfD+9OUYP0^?wlPS~@7f@b&T{P(gx^Rh3(lJz^k%F0L`W3EVH2%D&&plpq~C zwBlHyf&`bh;e*mVQiTM%xV#NIUXsqAKo`dtOWy`? zopX~*2}Va3kDZz4yv_$INbs1Pld6V$=Qkbn-c9jMZzRz55{+42X+7DN70)Y8W){UW4w6@bnzIebI#|S^ly24WmFh} zuG%!d`{&wpdzBd9{pDa(B>!>@RFL4YUR5eJZCcN$rq}xT#fUHx=&D9z;Z265**}S~ z@ES(trX@$75iw9fg2$|#tM;`vb(-GZu`G;07mtfOb;)A~VwF! zqs7h5L+8vF#|l%0E*|SY+rX>#K?Mn(Lr^VhsI-f+iv+rO&LWH;RL=Y;1qqI)TGUXC zFalkC6vEnCkt$U9=&DxqzoiNZKAWz#HkdSbKG4Nw%)8}8g-g3?E%Q&6*Hac;e@vS) z-Z(kHtCxWaw}Yzpg1s8|(Zz8e9MQp6)J>p*#EA!r=eovyLdOaTbgg`GP_AnfCq!_n z)EC7E-aFBVnJfDum|AzLP(k8{rxJ~rHC{8LNTBP~iX`LFzw^x3np}2K+5T{fQG2Fz z;hyqO6%r41G>t&-JTVA0b=()avhJfb2gU(GDU$s}RQerCH4c8BPpX)pA9oBS4%JW1 zXB-Ywg)Z&^xJCy}5rSf%3uC-QE1P?tb5xM%l$vH79SUbK6axu#b$%-?pK&-;ka)1V z-W5Z33UC_ZEEoOi zB{?_Uc)g$OdE=h)PZbi+H=k;Fw`!;$@nfN>#>lo_J!Djnm^m-qm^4DQod4Ea8rh-2 zTcWK+0$nRAOff3=_uJb=pP^{9zSaNbd!ju@1&Q7*(~U({RjS@wT662PY2Snq=<4{D z-)#&%FS6hbw#R>K-ZqvX~nwX zia4F<-`ea{B{6@F1iC!$icCJbs36g3QHt?LKNZ6%?`{HJ(;i7So_oTJK&AZFL?itd zc@8kP6CrP^kjNb|(fBk)ok53jrwUy!JxlMt-cltI2~_ZIGXGR{$W9N9t7DDY`2el% zITD^14Thmqfr12I|6$L`m?Gyupo?QWW8rmL-HfO`S3W0$3K9obO)=u=IT?9xaPC0t z)>}Q~b23Pv>$9opFcu!&rq0%_0r{K^DoC_wN;waWY%ek@Z~bt%d`<=xB-(yPE4_uD zE$or@!2cx#kI20vn1|-lG7wd=7!3L-Nk&nD5pOZla ziIRK##_iB^GIaXrT<{NlO9;+69|bkrgJ)BE<-hK>771}gJm-XQU+CiedC!ue!g*5j zb-1VeQ-uWfCENsG2dW?S;j<~BUKsYf+yp8}_)k;sHTaZf{sg-CIRMu@XAm=WRQSmO zm2-@pe+(q}Nd?!@Wz6Jrj{8EFcz(k345EV19pIkaslq26IOl4_oR9kde#!y~KGOet zgdSZS!+YKUqoXS@Gu7~Z{t6W&xUcP`s^OmbTOWB>KI4T1y4=^`cdOcN`S1bx92qJ| za9>*;H%(i4YuT33!DrQwKo^&GHS3^hPth}dPY0ieLjqk`W8^u5aHq&mcB}G=cb0Af z6(sl>aaE47M>>B(UC-+68ubni|6RQWLOaxo4ra`L5_d=LO<@7x@+vBZ^=pFTu1T*efZ{`N>_=#eO;G zYFqt1jL=X)LTxL;d3WjGfzxc2cHZW+b3WAHU4+SLLnSYPIcKko!_oJ@JVor6Q>eDp z-&Krof)ymxHWHHBS!l4`>g}Q8n-5$v)OQoUS~bv6e`lxqF)dV(Q0pXzts>|m(ABr) zW5(_t>f0PD0_PqTB-F~vp%|v5+yuHB&#rDf^Qu=2RFF_>F^9)M0$rWXRx{L>^PF68 zK2SkIt==3S0||6pZ&l53eN!(O$h1&FLaoId9s>zzhKsypi7)tQ+sE)yKmuJ{LK`0Pih&9eYNhM&7)YRt zue7jlvQl2;RjU*v)JoUkF>qh#;u>RlEAiNT7@Be4Xw=!wFQ7Q0s61-vqkEvp;jZVxWQqx18LE3y*;Wx_r4c^2rA(NDLqM zcs@rL6(l-UtC`<92L*`_12yw0iKrm4vqi0Zt`Ag@n7Of*;rG01Q9&Z3Ky7zj61vV& zL4sGnb=5we1iG-l;#?hkeV~Fw?KO$+S~L^`33RPol<2OhO^KKm_piE_7+`bxQS*+x zjr}g+brGuPg#>SNk2Aa^;=a(e?O>|y-S_)O8f26*q+OSOJ@)jBq~Mt?E!7Pjuk3MsQ2;0k1i7EdYPVOaoXCKPA=IL zm06lc?krT0IF>xsPJMEc@dKTIOGsJUr349d_1&Cid$)tAAn|mmDR#!PDIPJ9Kv&mS(`?n+1y7zV^cE^e zoM=ATu03>WFvh{r^|wS_dsrM@B+%9ALc0BKziGx)7b9D{!y%Rq{rLIBs zcj;9GUbRTHe<{&+)>U&D_jQi0H_lG9omJA1z`BG-Hu)ZqQ^kMxP8BLhs1-!Q%dU%n z^@-IABH_fmg%fSH;@YajiQ>NYzaJ|kcu#8GYA4@ZcJb(fpT`ObuC>** z;?4)U>NN9*&RYHiDoFHP?$4)`Ac3wAZ}>x{(w!<)rbMQPN;vMxO`w8Akr&eQxuTFj z*S`blS*&2al79?zspreWYX(%1;CQOW(6kb7m)KmY$~@6VA%U(hsT~}9Ce{8?)YO@A zCnNr{&Ntzbhzb&X6r5VLafy8q6Gz7KoUn^P7aw(}rf%7)apdF-Q?wr#16|z0)uNf| z@SLN91fPFrB~M>Mqb)y8_)z2=33TzB>^JGD$#Wv-xfORt@Gs{B6&KOWZ#yfJev$BD zWTo+qL_Uz)jvy_Nob!gJ-be zh}ejy>6~yrP(gyPe`kf*v7eo9vO4x;7=bRXSDbZgzo<4Za?7$3oAbs%mwM(l{0yRk z1lM-X`n%2*Vp>R`i?>z(!SQpdP(gz0V<#UD<0jC>^}KVef`rL2P~rANoi&W@M97;e zB)IKTB_@9YUEC%*r5#g+3if^SPZjoxu*ZSziaS+!PtK#x>O1#%Zzu>;a;6ynR(I}5 zaH`bb-7!!>LVbTUyj&rHF7^G<5D`ihD(ah~?7}_epDHBO*F-}xf|x8(y;AW`YHRCkOJfeI2hVnKTk{g@V(KJ_hI zF1tvF?6e_!`l^f~p}uPyx;}!Kn?RTPO0A19IR+}~o3;NvRY<6B&bnfF=0klqT77fY zMTk_PqP{cx-&2Kz`hu)0Mp&xQrM@8RB1EcCQD2Sy@2NsUeL>b0BP>L_QtQAJPz=vhp-Zh#A0jwa z^lOS0_|2;}wRa?dQbVS!JKm7ZSXwOkWLTfb17_f)lMxtv)(-Q8xJM#SxW5gI466pH# zmC1(p3>FgTy0=6c%!YqKb5YNZsV~OJP(fl??t*H=iO>;122rQ6vmAL>Z)(M1J`{6}k%K-c1)rtSR%9V$qyE@;}` z&-I~##L%)S_G`bY_5<^Q3KC@!l5OuNwopL=$7DqWQ^qkZ>`n0XsM3zT4<}8kW>7sA zBtAWpWQ_U~@)3%GintzwPn-R>7)aprUhY)wX9VB&wDSWB(ti0)n4H z3~M>VQiU#l3Nfs876dBd$-`i)|KC!D1fLIA-5$)0`&gk1OOK|lrSE?(Nyrf2$W?O_ zyVfkpRoh%gsTm0VyPH78i;y*3p$C(#SqP>R)M zd`8^UpIysF1qqzx(6kSq8fRVgr~CFa-yMSlx^R|5)9$J_*vdJ5$hU8JgewNRL>)ut zM&`WJ;(pdWeSYy>*}g6Y6(n$8MAO<1Xm8c2SYH2UPthGnpzE%BDR#uqrm;)pyxp~C z*4lp>>VLg>IR+IZa3)35+C5y>8u&p+y{8$GjRd;5KIW1y^YL5yJyy@w-Sv(e*2SQL z1kSx^TCHDp2YRd>qMzMebO#dXik)TJ_x3i8Ln0rod(RFSxnuN~#$Ap<1qqz3p`!8F z*EvPfll8Y-Mr0#_F0SXfrzZ39OnOGn>%niVqvA!#lE|fyN~8E16cTEiU4PN6{;s~J zu~X!ugg+xLr%;Oi>GEsYs33teLi80rDuo|BHBPV7b9W39=yJ~$aVezIs5fpA;fjGS z^>nMudEY)KeZ_)bWk1?6tu+{^YKN}Xnn2yW}v~x>tawr0-w^Q?|*c8Nq^+(mB8(U z$95oruK9=4?B_mEF6BRE)p7RCt?d62vx0jJn+w9_!&wWN2gKANoYEetnqM#sw_Y9hraelY& z+qFZi4-Zi-3Iw`JFG;m;(TJC92ix?X?RzSBjP(Mw2B;u`_YCws$eLfr{p(M*R&|NU zMgm=;?xHa{nU9=`PsP>Tlw$2(N38+ZuR#R~yl0@cw#luWFH0v|6RA~00$ttdnWFe) zx?>S#_xakR0`u37w^DmvjzI+pyvxwE*(VMKwonUwB_$#o33REu44DtA6#{gv^Eo$B z@ghR!+zOs^7oli&ahu4`h07R~ek*Ua-QUjY^xnD{RFJ?s8BHtjRE*VqYJDr?c+nk5 zpsVS-$@Z@+{l>52SaloR(W*G8tkt;PLipyEZy7_-+!Sm%C8%t=}oA-)Z$ z)>}auzW_+zeI+8{`@|d~UEcR(- zN;>U(nsSZ`64>L^v`MQq>z~z{Uh2UJ7lAHbm(^Kq;muKp16I{CdKTpz6(o3#R<*hV z^>^o-2+XclS|3C?M+FJK9-aQ~*XWZ9X z%C(<eGvSS?8+h^C{=3Ai=9)I_JDFmGln>*3c6<=b*R<=+)9U@2R9O zm{Ufab0k#nm9KMNebXt4hZ0Zw;sT{a&QU=Ed$pQ&ib^{FUZR{Mfi7ML)VZS8Q%N5( z`mm4BIVwo-TBFW&-oAQi{lKgfzS)#>RFF_TSy{u4ppxFP?P4F-iAbP}S3^~GjHY!X z;wK^|6M+g6swXRBly1;K&)pg0!=`s{b2eQHaYiF z`JJ1GKo@?=PSeJBjnGq{D<0Q@$}TEMU_V&Xx;Ky1=k7?#xu5DQB+$jFRV|UG&01ey z|1~Nm!1Wa>NbnJHzG*SoY^cv$Upp|6&LApCV9#08#?blb(sprxuUaI~CC+SU<*#CI zSJb-|S{r!sM5H|DK?MoyIcwVUbZrzac|^p(eW8m>sIyjB>ovE1^cyI8LzZ2oAi-CG z^Id>pmx}6HfBg|yTT)&hNeiw>1op_eR#I!^Xxhu$XZX%esA2V^a)k;K*w?0&R9=Yny-B@* zyQy3ufiA8qot1PRZkQNX@$m@j4JuctAR+4D&^PsdueKtN>O(6v*czx6rNW3%PoG+Y z9Pa<9)<6+rzd;wbL{6&K{k$b7p87v+DCejkfxUB0yYWJ7U^eCaKFT=~=;HR#Il9wM zFA6N8{?B&GIVwnStL>cg1KsBa&Qkwp3gsLXBvg-FmaAJOjs%{iQo?l!66oUIhbp0( z){?G`Mnt?x1S&{ie_qq7`7~<@{m#!rpo@D^>blXihh`MACe*(kc#@7TDo9{|Uek^g zf6)3n^GKiw9bF{QCHi)unqeOu*?p%L1vb&qMFk1&i#qkywiQ*aMpKsu2Gh|+1qs!M zmq$0E0hM$+Ccyo6B+$iuYNr;hOT-l-#u0%E64-~=v`chPJE88^IfY+|$d0Q~+xY!P znz5VimvC-E&1}e2(a501BZPd9gNhd+?>~Zs9H$P>tMI-Q%`P>1?usD@RJ;foqvgKQ zR_3V%Vr&Tswau=MU)3^d_*0Fe;(qWx8rgoA#uO8FT+2oU2^`<2V|CX+>$%=1eSKT+ zjzI!lIESEVO;&fYmQE_EuYW1R6$4#r&O+v#@0)qdgpRI;iWebs{=t;`*7nvhVT7XD z^~m6w#Nb-_sMgMyLzniJQuQ9%OdTQu#5W2LRcjLv$M`nzM0Ko`yeY1+BZ zzYpBW?XS0<6yb`2E;WZFa~>RL5cxpGi;y|z`(_?fJ$I4ei}D;f*$UN}W>^z!Z) zB+!MkfSUHj?$N$I^TzA7X=ED-bg4C~LOJ)TV}*(rA#;vn;Yg@$cJZn)&ix<~sCW@F zMr#^9w}YeSNT_Xgt-n^);L-E1#L+!>w6s2qO5zp!S~e<3;3`*|_ArfE^6#0r-7!d@ z3)ifo(oW;;E6SGDOTHZ8ih(Y*0#)d$)zwvtiWebsj-%&DsBLzsHLGL{BvA1pWDGvv zYP=l@wau;*!PTr}3?xwTB4msxWON6ar)dfP(R-5WFT?0I}I z^7QT)B+!K`P|;-HN6qx&ts7ZQ2Sm7Hpi8YMCC@pI>7(LB$edq2R$9Lp9MeZaZL^E7 zM`uhQ2~@lY86#MiSbRQ^P}}U{dWD~?k@-LZ6)!@@C|qoSuke@z5d#Ue&90Fdj~OlJ zrU&PWmQjD9B=s9=AG(%}3KCqSI?pXlpt`+h;S{TFv)wUBpi9*Abe|wowcehZGj>>t zbvQA?6$4$|mT(N2^Wc0f=fgzBi;yusI=vuJnR-ll2}QH3*td@xX)mN32gOxOIS+7; z>9sxAvQa^TTT$mpr{{a03~-NWbHwf#B+$ieyLwtk)3Vb`T6?I+bc6Z~NT7>*9L~G} z)w!XW22{KVnRA}K3eI4eNT_XgaX*OH#R**>Ap#XILdFR8;l$BJLT$54^ylb0mobn) z#fy+JrhGKS+VazGF>io`+GZE_=QZsmIu~5~{2I9C>gglFJz3|C+%8=PBBvh|o9;>(MPJ8;< z#JB{y$3X&J_+4!38xnEvABk~1LXQd(s@E@LJWlsfw?2*W&B#Nb3%`r4X?KsTYgvDG z^~KXYCn`wbJ%grAIbYp+X#Zm0Wg6u~0$uneZB4sawTyLq)L~yb9bHtAz^`g++H=jz zT0i{0$2X6TE-FZH8RMs^WX@lrJ8k;a`Hmh5bm6zRHSMjs*8^Y8D5O72IY$Kvyl2p~ z>vX4mp!kD2kK!PKF8o@zrY)nfjE`w#`yI+TDoEg$yEX0VLzQp%A)hIa< zs@E@be(lqkKouHI<(%Wb(1qXk)-)P-4em|sKo{5A z&fLWLA;oj1cBQ!wI=ZMJfp-8jUa})8&ZO~Io+U#9UHG+bx|?VgqJji} z16CbFng!TY+xKHiLwznCT~v_ZHj$qllsW&BMh8pN`0E_XITGl?Z*ObbO&U4xPJ~GW zDlWox|ABK8NN^88-KF5Sw`q=r<|bljZlW0-T~v_3dj^_=qP@8g&3KDqFKm^sf4`&?-T%@v#1iJ9M*z`12;EwOObtkYiSa#JID-!sXYfbBy zUQk~<=vIJd6j4D!_4;Mb@1mK8o-`snjdG3zy6`L4nl_MTGt!BeM+7P^!gc?Fa}!9Y zdjn1h*GkUl`5vl$n$m2>hZF-9Bvh|o=HuN@Vtloz->@PNfiC>YHLY(yr;_h#nT8g( zoTwmy_YBl>W+%nXAl)6@GIB!7q@2G&IY$Cr_>F8$8+WT~VCRUsRv*eaDoEfRfTmsBw>Z$3 zdQ1;f&XGVDeo0%?nvXslm_t3L4V-iMDmN1NC2g7?ytF6q1NE4=&wvUNs@E@b9_%fN z`41$}<^Do95~v`ddi^rS3@Yi*(L9Ulk*RACU7|M_nww}z#6X&7Nu=|E3KFW&0~>3SBDbG_SbDvYTm5sI* zNDUsV=I3_@ZqPII#rDZ(=oNu3ev;?c%Cz#3I3K5a%?@CT>P!FbSpIE_9*F%@JpHMZyhP>ND#p7n zl<}=>o1_olaot7mewFLuvQ+!m@+!uwBag(bTAQr@Q23oJRFH_Alxn9{R52PHoaKAw z?=kwoYujRwKv$8w((I|XR4Lih@^fF$rGxY`&yU%G1iDT=lVZ8B! zqOb39IR+IZ_$dM|SF)5`Y~4ujw7!{sh@MGB0$u!su~XU$UhwG)XV%ttmH0CT6(rh! zoCc-+>c-BxpT;fc$K7-h=;G&c##T}#anYC0>V}mBipVFHG-c)I549Q0|={Vvs-=AH!d7 zPYmW`-_b$(^gc%d2an$nM^`CG)ch&UZeB>m2%d9migD9Lpo>e-8~s#_cq%1nG^W_6 zhb$#ZL4wc!@WB&<`FNM+QR&xu;5j#eE-sbhznKus$BW$>>%CV!VfFvILM$ps4D6L= z_uW4s7^5o92OrDmY)wykHwFoG@iQ|Yk5nkX=dsE`(6$s6wR(1t5fWDt0&mlU8a>Z|1iHB0<+3Y@ime)1_iSipHGVC^6$4$|`%u>nJ#BbB z#)>>p&$_jFo#>Y+1&IO6lI=}d>WcazyPI|K`QldVy+wE6zR*?ENVePbN(}a|cHG_H z>iGZaIuGzDsx6KW9qAwtn$iPO5<)hVY<6y75D^4aqzcjl(nRTy-UvlNkSZN4NRc7} zft|Y$DN2!!qJXG~QWOM~BJj?c*_-(sytb98v!3g_YJ-O@t_CotT z&PemFd!DK7w>77BcF8pzi+VYxMg<9sI5lk~tp$rwzV9CA`rxzBiuVCsT4lfMnf6n! z50e)t-#ie#HsY0u+p|k^Z%o7A!@jkgXzf(Ro7CmZ~datZl zN(3rM1V+e|%P?u5rQm&*NT3z(_q$3@(%Jp$lWo(?$F%EyIQ1)3kO+*Bf2Q4r3AFdT z2CdbQKr7yb_|6;3#|6qW+zEAw9n`N-LBfiV-%`ZC4Oe>kS%VSu50(EAxiR&VyY9#O zKg**1R=mg4`Bsh39ravl+gP-v{ky0jfl)0z6GvH`P|91bqqBi zP2r*ayQm<+J7}G2ej@RGU5>3Ko|;elsX;*k<6uo&ntfDXMA^H1bUlzjE8f@Z^xdKI zvCjW^-zzFe@IGW`ME&&UeLaG*ckj~mKm`emwdr?x>gl|*n0FN;fmXZ++8O7xqge3H zV%}AZ3KAGOYub~$?$u|Z74PL%vl6YmsHgu+JByo8Z$||QjGQ&CAN6#tZ;Z~fC=zJJ zd(xd*v-)lUz92F$^%3d=k_=yC1z9g>udnW%@gbEUYkv{Dx7QC~VGhRrb75BHYN#p%K zXh*T&oyEMX7!@P}BYpmjlXG$G0|~U^ar5txaeg02pn?QO=k)6x_ASt;MIWBfkOP-eR|5qz#tK|;mX z_FavB8P(~RQL7zDpcT)Rx096*ej6cMy{W1!lg;so@cY4Wn`qk&>$<-wP@`DNz z7|&~3Df-ptJneD6Ni9bLtvJGQdi!znu_@`7pHHdfs35^nlrsijAAH};n~~3IIVwnC zJg;e(*+v4bI2v^3lGVpTNqdGI(w{*Sx z(RH6nEk^|jj+~u&cW0w8*)6QSIh?LJDo9`qPft7bPn5BPE_r9XS2p`Ve5%ow-mnn4 zghpxtz16sEg0ig`{Jr|yJAS-r~zD;JJRFv4Dc9Hf2vzl_*y?aV|%9kUhJ@jLsy z$`m1iN-)Cqag|o{muOEMueOm;$8420G}S0NC&|B}M*@{#gzaNT{{d2OciHlRggR!c z)z76Gi`ymV{6ObW(`HjWne2X7^o@nLN27v7R%oh`&{1XX9;Y^!OWtfG5?fWtMgpz4 zj-QhYuYaeRZ2zc{;FhBjjIi7B%D+Wr*)CoFLnxZ99(7DHE<8@o8MKt!(U9uNoT6N~ zmb4=p6(nA2mtt(q&4rgcILnmN$B3=5)w7X6tI`LPjZ&1^4%@~)`rQA^lhi0tTzPZm z&eUy5MrFzs=UKMMH-&174yKrT@#aOov&EAQCl~$^WpS2K9hR-f_PCKitBe6j#>XX8 z)_HlxA^r4cL&Pt2`vmwvE3N{jGWYb9P_HX`p+)^E>$T2}3KH|XB^n#PQdh7=LPas~ z!b_s$g?zh^K&xHfBp97%Cg)6|_R&6>YK_FMea%I?o*dlS5t~(m`bYVAo+mB^Y7%l8wEF3ccS~R&Pf_9kbQH+v1H$kx4n< zS?!oayNV;Ja?4v)zT1fk5?u3)$Dr-w`00t_pY|{5;_JFGNTAh-b@4`idP{{(oO&Zs z%=+|KPehwiZY0o(D-}BPRmp)#;-jagd(80{-KZe3c2T@>VS_!}XV^0maI_us{&P{#r&LbIpE)o zZY0pE%`=IHlM$}Hk$we#%_Vb&)QUj`iBKca=#!ffe&KRa(WHMDIr46@8ws?kTPDd^ z>zSCd@B?ng`V&RO{&HRApRT2DRFEijG0_+`Q04j#Y`Lzxvir$OUzCbL0W42oT3DsO)JuzpE)sAOrKlOUb@5VMiw-Xg4xTdU= z-@QWl-Aw-7z{qhUfmVDkaq_#hL=*Yq{z&dT z6-H5-HYo29S$^?1X6%dmqftQuBPXhOvLRH2h0QProOFpPlgAt1#@Q=goF%fVO)#oz z6aDKbxuK@$yl=kQY-yB01qmGgnl^l8W$}zR+iX6KDo4O)q19Ku3C7R;Cgi+ZqXgyt z3tTHB9;`fNzSN(d*#`xQtB)rb<<_Z{@Uge^iJDXInO%>#1S&`jE;h+pJv9&)M!S*(@cHK&$c{k`1%B@{w;^MbD_lv@4!kjtUYu z$IxA^NVs>vk|>!!#1%lGRdy+gMaL;0ySmpkUyNuZ-~ZVqP(h;qkrd z66Kb9A25$!2$5r{tSMJMH_v=wUz9)v37p5M0%oT$S-scG<_GkxkU*=}ThonmJ?vkdH0|lX zBIWX^ttRc3kFEHfxgn#pc#c|*1X{hcBh?5wpnP1v`=uEc z86s*@%TYlB*P^sD^RrcEXkrafomw71!0NYl(NyC|RrOm@vtuutBa#}5KHs|pD)_m> zUQRI{(py~ZzWc$E4(84G8j9I}xCAOl1g?aC{N+>cx(+V!U|b-9RtIJz8-I*YKK6}_ z_rBKNCBms+p@Iaiqc!b|Ej2xZTGNin39bMFts)jA88`bYAERF0;5k?=Qmmv|6cr?J z6;5~OA)$K6vk@YN&Mp#YHKj_T(W9yIQRd(bebwYp@!EG3`+$N(r7z-*blQ(&pWWH9 zv-H284i)q7xdbXm;3{0xUO2Q*pL;z-^qdq(pq1~fNyeTe<)h)&Z}r%=rNnybSEwL? zt8l8HnCG58;M4qK2eljtwCdYwqVei|HKN`rTw44Z{hfaNj7y+`#0PIqF!VPR@oju* zadFBS{mcXUZ2}Y|)XLi)QPUq+7gKJn(x*)fB+x2j$9SU!?T53^?#_F)#q;yu)qkdz zqk;sk!ZodF)i4qE_*MNTwHyhw8r5dJ@%&Xa?}lHF6xlDV_mn#A5~v_?s^WN~>|nJ! zq1=T?u_k-9=jlf-feI41Zl}7OZKK5F=x4oOQ*TECt)31aZ>;@E-J?dBb zq68{PV0=x_e?&xxoHDh|+7(>^1X^J{uW9})r&puBID7}-rx*E3sbgMw@!f~ttzch4 zBv1)P*sD9tq#~h?*@|iB$(N+t3G!x%Ji3Q!N27uSzTbrEAs-kmi=LRPe??VKkwB|X z-BOMERPp47wbSYRYeQt0XOHN!C*E+Qf&{)1g?<^OeaNS2AM%!7uANArRWbj&QtWd@ zyL~0?`n9s0s01VIb9F5cx4gQC7*Lm%N=I9`0J_Mg<9cvx}yMo|&t^d|ze=sB0$@ zXvOPK?j?5Lr7E<7s?dr7lyyc034D8uro}$*7G<)+M4qFCb|HaQX|K>K)stfEvf6R+ z%?`r*W{CLu^&4(fkl=aVc@s@<>V>_IUevEsg(f7>O1*E!ZU)oSKK?2{QqG|i7qI{2!JIG!$K4^{vT5->J zs(8FW73Ke=D$0DWPzgrZXLlM^=I&0F3Z5hs%~ppFCK+6r`zxy*A;tIUeaj4!JBIg& zMg<9c-;Acc-S7v`bLok)(Zwarkw7bJCZY-(_V~CQcfoUge4_QOPzgrZ?Z65fNT_4B z;u+Pc$uYii9Sb)X-$*XI+luynv5NMu zXjkLCgK5`G`<>~As>_F;`^uqoYlgEUecCxE-N)m-i-$>sy^dXy3M5O7x!;>)=SgA z3{;T7_>rnc(7ud%RQ=*x+LwU@TD59I=PI`{clnxSWi8qxJeT%mpn^o(eQAbM75F0U z5vFH4b$*@`6(qRFIMpxy^l0)N?F{36OGu!VCnn8ssvG<2-7(is&o6pV%TYlBBTjlY zoT^_Op}m}iX)h-dX!XkCRKuy#yost`BG+Y`)@T6J*nlWAb}Al{fbPx;fG(YCHT2*B+zQr_;|SHd#I3}=3KAHjQuIna{Y!c_gDck~ zfmW+3jEB2H1?uUgsCvD1%|SteKS|wJG;KTe^ivO`yd$aQs34)@QoH5R)YD7SSm)|V zNT3y;5$8$od(_iQ(ewITxgHfHFsjwGZPe2{)1JHQ)N&-y%DS?-PptnzJ^d`bu^?4l zbH9QF_a61^JMFCZ-XbZ^ZvR_$n10*HW^8Y@#Eq2gV>YCK~&l_`eqn5OTdr|&!a zXCI{?fpIYP#9lG_TzdLGuYdMY1X}UT=hUZun&#a~R5fA_wHy^BtVlMu&P3B%D?K#x z$Rz5CsQib>jl!q=9`8-3*o5nTAYmQ*t@tkCe5*n?5Zm+(-L& zb-IG6Ac3(qy#b8&@6M(DyBsqhfmR$#IDOYe`*%zD9-I5<3ZjApM>uK}Pz8aw`{v)Y zf0yf1qk@ErukE>HAMI546+3G36IDo{l@+Pwj`O(VA@cLVIc8sKIVwnCbgpSbC{BDp zb4dwmITC2a@uM?e{YCqCS2uB+GpOaLAc4`jrg>@q?mOY_&Cb+vRFJ@koSw&_y|v2| z?Hbr)3ipdu83=XE>w!-7;$oc~a`DSaGV;WkU8}kkj6ns7Pp9>djqI7~&tG*bn<(9_ z?t3a0OmHKCR!yJk6&p!!ceJ0v{@X~9&plO6|7df87*vpO=j{_VrnDvgz3K z`k7`wxRF4s-p3+iUyV>cN(>z=GgqC~MOIliDo7;viH@E6it^F)rw+2Mue=z&wq*VHPsp&2x&}!7q3xX?J+f{*=4GEFalvx`ecf*Ye66;^v zC7kTwPe(7B9?GowhP!qmfmSp3za*UeZmAOc%%-J>iSO2~bEASp=)Ar9GxV-Tdp-En z;eO_iE9eb&g^KM$0OIwJUMBulFtWtvXR{hH8|d zfBLK2J5fQR>AG${C#S!Up1dDSb)A<-?{_1CR;L2~9TIw%m_s_<- zQ9+hR;|mQm7IJ1+&a6HUeDCskH*T#Pcvdr zL85_siCmJYe9UY7gXcSXgGBw4k!~c=YJQhGQoZ|7(+ZVt=Q+JDNxsy$bPOs;R2=-! zY&}i+xJ>o*_fZ99@95=jB+#mU_BxM~dwr_SV{h9>336~m=@?Xy=vL<~eP)vKahIyx zR-%2#PbDvRBY{>tgFCs`e-FQFuDd@*em&}gghKhxV=;6(ojawTkU9O!*i>`_7Fm*Uc?|mxw_Et@7k_j&*)x*-H7{ z6ANaTy+*orB7s&a*0SgJOLV;}`ro{WN-)AcyOeX4n`za;`I7o4AH}M5IMQ>b=4rw6 zuAM0&OPS>-P(cD?JE{sy#Kzy_J@o$q3AAG0DvL|CSm`}NmFVqq{Jb+NNMLM7kv^>j zC(_&H{-O0b5@_{G39l%8|vx|~R$RkJy}W1akNPkKIaD?Q_$NZ$$-BpQ@j7VBhdH=TT7X1$O{ zw4`r^3KAF%YFZImdHqZ|EPe|g5@^+_-iTNyTf3FAwYw>YHHE$vDoAwQTrSqhCmyG4 zZ5_&C&7k!MDo9}bNbgspRcaN=NWAublt2Xuj50Ot z+@=I?33rqjU4?eI!Dpcr&&N)-_UX3qp2E>CvAAlKKn002PZ#w$->T6t-4kCgN<2lo z!caj1qgt!w`ZLsWep(g@v|82cO`mgiE8Op_|4ccowlqFaK>}k`O)E{mON^%+7C$G9 z1X_J_Wx3C}=Gm03{h4xDoG(EIiQ|_J_?({D?bqY_Jj!A9pq_{d5*XEL+9t|hou_|= zXeEpUTAd$!)#r?llk|;p=$mo&92F#dTk`F8Mr|>wJiMDK4^N<;hzb%I)lyXzszkDc zo%`&M@edfy$@ zXV~z|RxekZMg<9sgEfuce40QtGjCJNkw7axBTn{XFU>rIXa-t9Ek^|j>pJD;WSUQ{ zA-pFRo6V^wqJjiQ&UPK)Iy5i-M&AkvwBr8e}lK%5v^@n@uQN%k^ZCKr6o6sdGr!hHr7$Lmfv5C1X^({;q>^{rGn8RO8SqbEP_-_BdqsGxbt)7HqNq9!Q`Pj9{9o8}EC;+*)>$;0y~A>X@yL zxYKg#Bq$$9pc0I*eKdG~wfX0p?^r&NP{(XltW|o>=$gt05~u_tY#&!g{bcrEIMDKe zggR!cSM`jX!k(1PD}u5w?%&%}dA)-@j)0Ktdg}Rrk=$9Id$WfdneS2)~bm zb>-{hV=W&@sAIMYy_=bnw{w=i9o2zAB^Y7**fTy>Zuq*cX@w>w#&*1`ykWr0|``u5w?%_77mn+M*U>%{zO6@v(>_V zSvi-NXZU>}fl4sK_CfttQg5_;Afb-g>ZNK^a@H(J_xnHsm0*PJgT|kvQDyl+LLIY} zx672AyP33WlE%NLA%RLT!uCP)h@|<%%A_Kpj@jzr;3+vAS=v63KqVNF>q96XAMMVv zb_noisbjW^`z*_F+QGA%B2WoN*gkl!Qs)W@b<9?G#%CGM^*{oZV1(_X>5z9s=4|_# zBcYDj%BY%UIQgdavhBIFwfl4sK_Q9Xe6yKweP{(YQHz~t# z=3OLE2}amH_&jmz*#{Epn63Vumu@)s4(+uZ6hy*IZ z2-^qGRq9@gggR!caqp)Z&ixz-RDuz<4<3I!s`y+Xp^n*VUuufs#3e|e5{$5Y@T{O> zA0*TSl50q)W47YE&smY`_kjc|!3f)j|ITUoKtdg}72ib{H%;;TKmwIugzdv00a!ke zP{(Y=(ZJQ($$lS5pc0I*efT38emYY_LLIXeM>Sk&DmT93*vBGJ2}b1l;24gHWRA$x zXQ^Yh;^@q2hd+k12vmX*whwAK$D(|$l95oyY{gNgb3KqiB^Y7*@JGm&4*O$85#f78QNuW^pV6m0*PJgXa;R9oPpF>X@xKYouZ#EB47HPzgrZK0cv0 zHPPp5o&r?6)<0jd!pFSM{Yy0xs60t9Z4>v7yJYXB9?y&uF3X4dT%LV+ zovC~{#PEKRa{CMIJ#BE$HJb|ldbxt}E4$G&bTQ9*)dB3^UaKAOE% zL+)}d*I&Bs3Lwym=M`Q-+JyJJ%CgFw6}r(mI)Ff{g}Wx_G})f%Kf7;DsVEPI9oBnv zh>)lt!Sf2QAZ;HwM=NQnv(Jg@Ky()Lk%{fFk;_v?t_ z8DRkgTJbEw>p`2CJ}bqXJE)pS{X8asK&zD<(sIf@HPzqpKBtD71wU&jHq2`*Q9*)d z30@D{KK9-UG2KhU#GDRI0|>M#=St0ax3%)|>Ki4@E`Kx@FU*gWs35_!1g{5e9~;`V z_qOUEDF%c$2_Vpl=a{h9l@DW?$9w#QOKhd_j>?k+uLo@({+Yq6W(JOySiyM(V-%`$ zM>9kA3+=r;GoXS5kN=;;lXL9ZCzWP~PkWUxd1gQYtuRK>w8}Iy=!HYgD>O5pg2V}$ z8OHvYlJkqzuiOtKh*1t?GM*^)de$ce#bY?4`tt?B?*+m73<-ermd^j=F zf6eF7)f+}vu^3%JB+v@u2Tkk!+1sX|d&oh$f1rW{Mg#PY+(Myd{{nU8p%pO_6(o2x zCtu3+x4e@*&Lxj?B+v?@0Zm(Dk8{c692F#ZG*`c`e6+O3x%`60ITC2a#~hc~(8EQChE6p zC{aOzb3o4BVDQv9y~bD1iN)KS1Q2M&86D>yRlC-k`kgOBMZea~0|>N={vypNyn2dZ z&n0~>uhhrauPwS9kC3P!!5JOr&RJ#sdcEhKa^mRxm;fTcDk8&(JCNnSJGTn`MsJX> zvN$#}Txy^o!5JMV0w{UvFTLidBBJW)hyVhuI6vdWB{yo^(BIqeK>z);JAgo|yMrM)fveDrAOn=Ki{v$+W6+WnM zZ5Js~L4xx$PMkRHULA2`-G}-=6qg`@R-A2dV$pBns)>g0rRYVs#sm;(^-KONBVn!D z@%t^sBtM)Os^_D)1QjGW+v3F3MV3*$n!iHyOYNHm5NP#!%Phl*+c_qo*hJ^~3Kb+c z+oIM9n#M5+#U>t}uaH2if4kVfY}tL6M=ZrA9*#>;K>~lx${pvD37i3NX24vpHH&)a zn_06cDoB{qQ;dL_TBp`qGc^)ug}GkZ<5ehBUqyF=MRYen1&MZ^G{d<^RoM8pzMt+m zVRXkq0(eR9I7d+i5@>~)TTT0* zPf;w!4#WtPecU?9-B@S&f}b86CUSCpcQ6S?Qzbr36FDBkl@kGYX)bWb8NzK2@+_f zvbc6!!Z8WQ4IDGz41iWRW7tuQB2amfaK07fON3gb@D6^J*WhE7d9kz3NTBj0!C4WT zfDDUJc^FoZP?->$@UNpd!y-^YLgi8H=MDVpD9*415NM?`A-0eDo*MGwlM#CM-B^JN z5;fXq<+M1IVO(0sZvd-yCtU8oIzr!GzEJ>yRw{R5`*>$vxEyD!*DIc?B~U>^WkPJC zVG~PUDIov--PD&YXeCfVg4ZGiif0+CKj3!M?psu*j=ilH zn%*dYKr5BkuzlPZd)wSWGf-0^P(eavDQu$D@1}Y0V@PxWfmSN7Vf)x;tT#)p3m3!b?4p8%%2L=w*{dVW#ka%7OCgN}DoCiD zgH3Ed9bp=t8e$6d5>${-84J57`qwy|%LpLQO644EAO1BC=Q0E;NT~IP?Zdyu5j2+s z5NO56&Tre0%dp0v`sGLE9Qd2?=;FWIKKxlu&SeD53`nS)gH8CeoSe%Ls34&-7Iw== z(ip6EGQylnXBP>ys!3xoa%gJKuhtk`MPqQnwGn0=8iS}Hp)wY>k8fxU9;cqN=wz(` z0g`pHEKC3NT_Ur?c*?=*$_Iz{b>v$fmSM;U=tPS>h+|nIF_y;5@@Az12&O;D#HAd zdP)Q8B}kx^$_Lmz(VtJ`=vAPCgvt%rKK%Jaj*tTgwBixPYjxX)KcC1^xIpDe!ukD! z?##*lJcC8>YMVccqi}T`IBK6H)ObdMkJaD#-k+OiuzV=*Y^9Fz+y0kOEkuHk)!%d1 zADl@Q=$(&MJ5)ZvKD#u-@%qD>;ZQ+>*9n{vw$CojqP+gFW>F;2N@WmiAD^6x&=1i} z9ZJ0f6(mX=NHZSg-f<>g8=LD4_Qz}v~K?Mo5 zZnt})e{H}yfB*um)LPy4!9AUOJkKSlAfcjj+Xv?WID5zUb0pA8tpIEv{#>6m`|v1I zV_U7&*^2+}jM`T9)_7XX2$i3-Xkm?7r65tsn`)fjkeSnX5yy$*#WMP-vrT2qZeaoy zB-Fay{#MIsPSV%kZYJBr*A5`iO0C;%qTGW8`kBg=JhS7acM$Sjpz4lD)Z}cDXR+dfP4i~5(p;qCxkI^Up(ht5<{9~68(fIzF2l_wk32Bzg~w<4L{8w-eX@mI`A^_mG(kWi~|+sE>H zHN~-_XU*>i)(RldO0B7FqEyM+V#A@8=Fz_*0tmEHYigTld#aLnv3#bvV{&W&fmWPt z8`(DZy#RI|&ZIn?Km`f4rnY_f^Kd5R;Q|P>QtN1E4Dvml#~><5s5Q0i!=H!a^?3k+ zRy?|#c-NnY^YUE{6(rO;+V%nKbBo{=FMnU814k_qs60ui=v>p5^i2?*%9qjKx|y1t zmC-e}NIrW{LDe$dVtZ(mO`EyMhgFU=ZQ-+t;AqZVnq6n-qzmt#6Gu|C4Iwc=4YYfP8qk_caN}kwn2dbJiBbFQDKuB#lVN=H#B+zPLyYjJx z{#EsTGG6N-j!p@Y+aCPX3>74@2bGK6buZaiWVIukDy3gP*iP>2IV~FrwCeWw3$b#g z^0DboSy8_6%kuuf}wC zF|yc_#xY2s6;^A~wCGhc&4Hhfk;T_Gh(QI37c(mOu4N?~8?Ec{>yg`Lo-=*qh=K)n zB7s&bFACq_t?FETa;LQ1(DqdsR-k1JDoA|g?eA-QGuilM)CV*^iu4sS`|)$~^qLO4 zQ0Z_m#dp0~iZO$}3D!l@v@$zJ%FNH#n{|Ib9fJxIqZZ8d{d-PTPs+X=Cl5Y-&Ro|o zp*bo@d~trRZ{3e6#xkqr)$b(8Ps`^qkA5&M8ws?k9ZPi@Y38%DoCyaKeVua1*L{!Y~Q#zn=T zg2ck3Gkia{Pcv3nK2B^LF6TdM>SfBD+KB{OVO=CmyM3>nY`d_M@cptj1{EZ*%8{o1 zF|&)Dy0WOa{AQLL6(p`#8SCr3Kh0lbt5m5l8ME0f<~M2F>+tf$#z1e4`05s36g_ zNCDr5fvT$f=e;w{hXuxo-zLp}lO>lI^^$ z)+UJ#QO#nIKr5_rq-ih8KX&Qol0;hV5izJBv3As4^B`4$vVDZKdF<)>C_xlSFBw3f z6;?UYwDyBG>LIR?;$Lwm1{Ea6UCR`Yx~X3+D>NIfH+yP=n31)*IVwoJxoL{1OoTl? z2B#JgdE0drZHrFNMgpzc&&d;8<|*aFwY;dPKHGZVb}}l#2)pIIYlVwOUqth-4FQCr z*$QhGXIz} z-kP(bEFVfi0_R6fOZYQP=KrpvIc`d10D)GgKgzdz@up;>$Js{ot!{0qF1H_DWFGf5 zk*FYn^E_2!-&;X`zGuJrFex&CK&wiPFZyIglD{2m*E}}c)4$@>a#WDm*U9HQl$huz zu3joGeT%P{2|q?iRFJ^C9aTv?_lE51vltV!_uSo6nzbJa`bW#Z&0 zi3$>U-=&)5rxu!vZq<_0>6#;fR{QlnzV5}8kEFV8bH~y!8A>fj1&KlL6!cZ1cZb`( zr2EzO=Iq*G(j4iMs33t6ho+B8l1c;;ffH*kidvs(_%JjqV#4>uA*Lo1X_*hxh>Wi9~H`%6+id=#^jj+6(o)qI3CN_ z!|o+Lo+={}emrA-LcIhPBycUFX%SR)XbV;Hm`K+H3A8%(>803B`PA&Qy>qD8IBvQ* zZBmp(1qobJQH71e;iBiT7;^@-90|1AwE1SNn#VM45xt9b49$s^spY63aZKK^)|__B z_l|Ul_>We3>Hj4vNZ@LcY9S4Gi9rKD^w9qY5NP!{{CaFFdY8}@t6y#SK2rSHZ;NLW z^($162)rAlRjnhARhy~jr+$S5TJc%`HY44C1xFsJA&#H@Krci63Kb;q?xShf%9j%t z4jk1}=fbbhLdHH-4TH&&3~IbVH}rX9;(v&-{q zl$c$@p4*jz1jePBHkK*^8C30!YSvhH14W<}--(=a_25gl`D<9XSW5&dNML-eX%lH4 zd79>vl}`|8#rH?&ntwKJwK;BkHSrN$b5xMPb%Lfn`0A)RiF&-c*Q(D#D~=4DzT1i- zj0@D;AGChZ^^x1)jtu8=e>n<@g`D|S@pDwRl})%fop z_?&U>SsWtYuKcAwnp%zu61dW%Iguianx_})>D1eiKr7u>Xm{sxcEm~94~j5;tn1b} z%0LAPj8W-XfUm=(zB^J6^+%Q}dPM@GOzQ3Qo~>3NSJnSq+DRY!d!gN>={;%_XVf$C zb5&H!f7i5Sl=FEhakGc>KBxpE?D27Jb-avjS({ib83}dFR%d=MxVyfYZ28u-HsAD< z8FHz&e#jLa6(j;<>Lq>OlnIG5%vVk>GLb+ljDzXD8C74EJuVfLFP`ojK%f;ywVKxM zZm9hFemPnEg}(#76~lec?pf|LzzdXYdYj8Qf1PV{}xqM2i5$x&l;B+%+a zm+)9$MRj&RGnaa{9qA{BR=lF4f&|8>nwBSNhWG~?(v`1!o;$V3L;|fawxb!YN1Q0Q-KW3%ZQlR_tuRuf?8l0BV$#V!^b(c! z1$-;C>fB^)?4<4){t>m|?8~Bqr;OPC+;$HtNCZZG?e|0qAN_l+{!K3uXoZoQrd2vz zTqL+UidFkx(2+o^uivQ{Tcc;D|6ARREFl_}YbQ2&l5|v%z(|eW6#CIgeNDarVn5AS zNT3x)YP4GUhq0*}rB`49B0PXtwH>lHv<}O`WUGUoQ0?px#)x+!Y-aBm$$p z=pm`*&R(O$`)@{>NT3x)YLr`g`Jg#GPY-dd>1P21T4CHp?-SlrMy{FnipVpzpcj3h zRbYJebi+z=b1z-QZFoPR9cZOuBKz!mY5#G3|6XKNf)V!Fy*IF%^zJKcon0iPwLV#(g7*^qq}+B`1S&{a-*%(As}V!i{GVij3KBSj+qU-qCJR(>M#WDG zB+yFDSKQkFPoRQ?)qAiV>?oPrfeI2hD+PWlB+yEY`GD)eZUibg9`Td@zYipEY--xK zTYAa+j~`nr7QBLZ7S!LHJWBEf5E?2-sAHSp2GD;gSFa^2g*mUg4fB51=6UKx9UI4u}(?4YY_4=#ohR0R;rg zZjg3HP*IRp;}(W?i|friGRDr3F*~Qa^+KW{LcKmS5$?D~?`>VG)+ z?!j9-gnNDH;q`{ktX@fDOAyzCI1+?goOu2F)*r63?d{Sy;NZKfd!|<_zuqC-YySLo zhabP?ereo$(B0JuFIlamhFhHY=;C#UFMjMV(wN!&oa&Q*oL7FiL%7$6w_Rtr!W~P^ z#^-^!BlxGTGh5>;+V_V zuzsA5Idvh%>RMVFve)^-hq*Q6vV|K+~UM48?3@eq`8ZDRU%%^FkU&~ULRe& z%5bMId?3fG67gz=@yabu-1@zhhsXW<2XeeB5wAv!S5CN>w96)5m55g(#w)itA-%GR zS0&J;#JLfBiQ zPgE3$S2f~Q#dzfwCww1N*w3OGD|O6K<&5*0h$t~;&WbbflRFQti`XK}_H1#&*NRCL zZNj~%&6ycB{q4t>J`wp$}uWGHPUI5%#;;(nE|RapIrW`%3D$6S@vwcot)hW3LAH z24RlUBh8q0TuH5Z=9z!0-QontkSlCb!-=-nSBD>6{0$NB{P{ae`yW6&5vq zdBLZex$A^`aTK^-CR^o1+v}_7M{3niu3v7aG`b)fixV7OuESo9hG=`OJ?816kH{80 z3%hUDE{gR}d`t7py;V-&Sy<2S*mKT;zJ9nDM%G66jdT8dZ6D!Y7^gAEG4^AF+YSpF zoF#5?0?z^?(l<+-a4(E(Gb__P}eKD`wlo;s5Ww&Af6;4-x2g&z;b9@KS4g2)8()K8ffV zt6*_2jhl#n`0_)|yz-uNUZtq!eJYA|wm!ByR^eVw=vo?xaE*proZ!r79PWF9p(Wv7 z?xkyKs(p)j?^VnNk z6g}~3g5XT#Kk*6n#Kd56FU~Qpm&s@Dtvc!IuaDpV^Vtc#+zXDbx7~^Vd*EpN_NVHO zhDFg}aj#o$smAXswNP|sn%N#K?xj)aA>5*o{u`~b6&1Xk(9`VE@P4?LW=s#^7R}0M zX%)PN7^C0?dWha9VuSx=pK` zV1L-kwuWX&L%0`5gQL^twjfNA*60G$tj2gQw+_#C;KDuqM zeDZGhT=yOGUffBh`nT&9#pw9oH+yQgIDy=5r=sI795s7tC)^9GmUTFtYjeAru?nry z=!R==ZT8nX$C!V0g3!|pzyIrmdujIc5N^>-3|@ao+k}H4=3EKy~}vv?Z5w0 zq!!g~aYAcTt#SI8f7|8>I>8nuFVI$}zI5&FeXJUb z6WnX@pEyfWt29;(;a*;ID2ku$JZNHxTby9)sM*$F&;8WE(*$N?@WPzNzvB!|ZQ{S% z`w}O(XW*_ZYV@2rgT=jkKUWkpPkybL?Y_HXi>MRt8&2E0&h2XU48hVS!nyrf2(F+w z5?9P}m1VuX&OW#~54wdT%D(*VR(V85Z@FqibXLR|M*21XQa7{2Eo~x12F3QCSQ74~ z_z}DmR~AN%lPgi%`pGES{ZRyC@F0?d1BC zpIx>hn=8W8v-x^)`22k8h%@nd)bwm5E*HVi&y%G~ z(W-qtG9dp-a*5Oe7zXEvvu`(Ej4}sVtWy8=_jbM`9n8Vho5$I z&~PGOFP_bxl2gM8xAYU#*a0)-klRiU8cyVEdZkavsc}6B%#=X5rJo@ErOz%q=p!<{ zcs76LO^uyFq*k>psU=QO13e$4v2r3`FP_bxl2hXj5HHr~x}~3>#%nM`&e9WfB400_ z&7XNw1JArn&)hBj1T~i6{tw?3XQC7Ndhu-jl$;t5th0Bym1etJ`Uz@aMU`nqIgzgy z&*sm(sqw_AN0-Yz64#(x`Uz_Ac_Uthb?!vIUW~ZA%JAL8vvRyD5w8N_mM)P$ahFC_ z;KvF7EL}7{yJJ5{q?qWIeuDi_&x3{&`MP-?($MGzLgN!G{RA}-uS&$L8r>+I$k)xh zlEzOlOa5?IB=nqvrJtY%;#G-w6*Qd4*UkEn#$j=`2SW2TSo(>e5m(d%k?CgD;&bO| zv`VWs5L$P^(oawW@rsdQg2*(z(&y*XxJJBU^a+Gp`U%pASB!8IM5dd#t9~F}F^UF4 zaZr}j5+|skNIgMhy2&4U9!@Bp2TMOe4dtky;Y7Y}@}M-7qXMD46fFG&HJCZiMrJGU z<3zr0^0_n+uWH1rKq$WkOFuyk?Eu1xaw1W%{2TG3u{fc#bD)dj4e(rucZ&F_ zz7y_6ZO+X2e#vjps#Wn$(K2{9!!1teG%1af@vgzuc#q`{kWRQ4q69w8SX~+?;9Y~? zZhFpO18BI#37saT!MAEYf%kE?Mn9ZzFGPtkBSq}TV|a7t?I1n@!YxjGto4ce`|$3^ z+wgwk;b@f;?u9;#8S$dVi$E-m_lll`hFhG_DOLSA3~yLG{^-2&WWM=g_i`^hi!sJg z8b{)-ms|0E)Fl{Qw>ZHw9L7!>H{i{h67Q0I2CZ_U?X@<}wMpZ(AdUxtf3QZfrAzQ6 z9#2Sr!rO+Q*mbHLq90E1I(cC}TR(2WoLU<1C;k`u(Y9oQXWZP6ci`>08e{cEXgJ|s zh!XZZhM0v*|7l+NHfXrT37*0+2h@*u;f<~R@C5mGn-lJZC}H#JSj?&CfjAR{Tb#hT zt@%{8DE5K(!FWG$%?{ySh!VCwwgYhkTK0JmZgGO=bj$(uV#kScr{|Ya*Gqx;~72nV*`xU5m;5bs2}NG?!{4O28!z(@v20;su-`_ z;snQyr~RnGx0VsFD#j}(+>5h^8K{X@CE``Zc;yx+`26vYG!U-_h*ve^l@sp8ISu_B zuLg)$HRF|AoZvi$rZf<*28dTRtM~s~`5U*wsuWH6C zC)!?XW40#^#H$&`suZu1rAx53(Zs6};#HmERU#O#k{4rT?g!%42=S_BylPuA!T6Z_ zfp}FRUe%0OPPi9ietsT^R~6z_&3NS&Cm84R^LY5cyQ}}kGoK3$C)|sJ0~#h8ydkjH9}#>y@I1U2x?%k<2h$k*XK*vuZZ3dD|j=FDn%)LND40)2J|1thYD!%Ga?U zc%pjd(g*}wk}UlMHFihOFU2~fh7C85CGH>%&D}t_rJtaN*5Cw@ z>A21@64F4t;u;JD*Ilyo6VyPwVq};gGEJ|vznaE1;uWJ$Al%YVkVd>>gqt8T9qMpR zYl{N$icvHWjDx8k{RA~IRu$sa1d-{OKl1Z93A1od5qY;1<8IV*f*P;J3^`vlODFPm zsEanUC&a57@hY^6c`44HX;%K5onHPuHGU26dvhhVA>5037f)2r9Pz3~yb2m_=_jax zcvT}_g%#yQzK;8nw3>_Jx7cMYd?XUwCnQThL5*(xiqC;@P*ohn7Jkkdb~WMmz4faJ zLUpD<_tvih;a+O3G`jUG&RMp~3GEZ5f%9OE^WcEzLBE%KX%wWtO@XMc)RthL@@d!FGV|Pbn92CRZi&q zseW|pSBY>hMQv$x>sM)XozOX28aNLQa2_mq9`t*;m$HvEy7j9xOPo+WKpNfpRU+Jr zElqQ}D7y8lWN|`u4Qb#!SmHc5;CayR>#1J_!oAp!6e}m|SIOc8^*EPfEd%xT67}|q^>)9PdvOf8*0~Cb zqFcX87AH7vT$53wTfa(#dvP8xW0}Zu{UZUUbX61 z$>Id(F=J%Z=+>_i;a;2vjQddo@v2q7N){)$9+@4YMz?;Ih_+Wag-N4Zzhai8dY6bf zOYy2zze)t7Px9i-N!mrxtzTtJCOD^ZKf3j+M7S5{K^jAxaXR&@WO0IXDnAd@+bh)D zYu4NSUhc(tkmf>Bbn92i;sobZo>$%aRU+JrElqPe#H&{QDp{OhAM*M@y}d@gy<)xH z@8w<`zqFbs>sQI*1fNA-=iT~MBx3z4(RqJ0jdjlbbfSIUW;IWcRqAKm&@vh)+w=+>_ik?-4_qtuUX{VMJX`w5O!w|pn0 zMz?;IEd2yEy7j9>sN`$bW=}MKf3j+m_K4aBJBhaCGB!Qx}y+ zw|*6~TC87964dC{uM)vo60hU>V2o_d-MYXJXGpU26V&L|uM&~zrcN!5ZvBceo$CDr zHM;eyL~w@0YkH;q)ikcV^{cpBYAV~%bAs31`c)$GePi5B+LQIGY)LI~f*RfWRU$Y; zQa|`4(-;;-w|onh7?IEbqtzRXA{fXCcUy|15Wc?~x`Uz_AXX)h^)W2SOLCwDk$?yEVLhcO}H2SO04;t;i9+^#G+4a zSO4+CsoE`0Ty^Ky$D7V1jo++wRrS;g8`m3j2=~I@uGwD}KeNVF)#pLn1;Q;(>~`L0 z{Gt73)sGXW@2ig4ZRL99i`#^I;jioLZ;}7<;`^#6L44~YQ?*;1*zvjbnE%8z|0j4q zu=9P@CeU!gz3_K_&0jL(t;yY2u5a7rzUmtoUAH*FK2S4i9KQU<_4erfi_j`3+zWrN zXn*f~KZqZ#epR&s2)8)FXTh>1&8r5##ENply)@sXu|DS2Q>$Gy zcm(}%ixZk-(zs^0a{b-u`vzxVeK_G>S~t?T80+JK7vDEH02*#_LTg1DOJUU>xZBF* zrFjj8d%2e)hBStV46g&RRgMf3gx0(?HeK_o>Q&2cTrP!H`Mumrkxv@eBEs#l;>P8& zh`nxcLa|F4pZ((g)l(neu6#dQ<%D}Ff=lB^*Y02K@|o?*&7k2HClrIFq5M%Ye>l~R%HIN5O z`<`9&8Brifbl)R|E23i99%?Jct<{ElzN4@b^&zd9dUqBM{P2grl9@*pEzusEUEB@N`k0rFt2JlGKKr3fw! z*V68mJNF6LrC-1`s>^ zDiUt#BcjHi?%kul^39tD4JXnyz0e1qyrkiTTl$EoaqYKWU%&sbM?wYCiF8dbJPV$@ zr151CXNYi19}zWnd-C}D#>+1X8cw8ZdSOoS#^4TmxJqoYj3qr1{MOynpGlSEuO!OMwp{Jr`yG7VWW zp%&`*>PH~jmPsPEcG)<(p(5-=x~7*#S{l29s4l-K5N_!sqK4+x1d(WZX~sxH^C}Q- z=_8_sW_x%hPNZvkY357A3AgkSQA4XXXgHCs>7^Ac4Mm1PxTTMX8j4pFM55`XNF)u# zt3bG=kBAzIq7y`->7|G&4JX{vM??)}gP`F=x{h8UGf2Y;Wtm{M=P0egcpZOFLUqxSQ31P1Lnj4I2=FPdr*?v?jG)c8g`53(*=y2S}Rf1U@W z@gLYNJ&n4|h8@Da@*a*F%VI}%b*zh)ZgB$hnCC%hoP%B8+p+6=&c#zL!oBidlp6P7 zXZZ|>?_&S%7ALSCc^;I;5}XGM>|VErh7<0U_tezb7W>_sQ5U@tqw5wY&S{K#kvlxD$2JSEKiH&?>)|dnxis;|4^y-BA}^2DLc1IHA}jjW5UZ zAnT$n!o3v1rLiQQ2U!qY%Q^&EMyR32;y z_riP|bL~V8@zth6y#Thu@vtdIvw<-x|{ z1Xh=wQjrI1*McJ9<0eK57IK`Y|wr2-~4$NBFrBr+O0w! ztdR#t%7alO-#6%KtfYrLSR)UPln2>!Z%H83r*IweV2wOjDGxS;d+C|$PRN5b@?fPr z$R`*qPUzW419`AU9;}oH8^XObccp``?R)$YZVx&e*rcAY^ zwk3b&k$xXfuc*nCR`F`?E5j#P zQ3ExZGS&Lr(nmxMR9MPXvveX|(+jgQd=eKmoN!AY5j9YgDXo&)+$+)a!mJFRC`Jv` zWXij8wYIVJ5m5s*nL(-{`@PaNy)ci%C!yu-t%ke3@#!AIEl%wFwk?Nye}AWiZ3TR{dg&G?PW#Sg!{r`& za}VJbC-%8$Xs&4t-E!6)d1duc9o2x_=R&p&wiom{7_;e?)S zN2A-SwpSSGPR~hbW(129nhQM|PPmumLJ#2#fj~ASY^1zr_b-{xf5-#rE!1$y>t7A&m&u$SZ4g3;h`&^+@s-ydr|wa zC-}F>?Vm-ZTby{ooy!g1`L6wXG@NiRj^Tal^Y4WHhqK)+P8@RDGQ)@WUav>P3HRa? zT<^jaI~tt3ZgJwa-!47;%q4YL^WLsD;a(@dc!lw5?_0h{!!1tivF_5tyG~iEN5cvC zy6){OjUQQV*&YqI^bkYu1FsjAPUt##eQ%Yy)<)-jgS3ApN3m{h#n0mbRE2Y z@cj+PgO!#Uw?~TW!!12TkA@Sv4qi{sY&w3)_RDoNI7{5pL-c4kq3huF<88MXKk@hq zJsNK5A$l~N&~@`C*+FWsBpjobcNRQj6GHR5DZ_&j!|Ss&qEPH1iRXt>1*t@)tW z)^NhT6qR~3+~R~{*FwKPubX%k?&V&Jl^qR>yAyCtea z?G>_JkA|{ZusETd*rVZudr`Z8pXe4Rl-qkWeD3;u)%CdO{46Tn;=~SXy#8tAmJ7#u(O0WKhbLcV22#lgT=kR{_7Wvmwl4ok<$KIRJx^0JhkjPe}zaE zC#XGodc6*j`jIS7a760sHtGSOh}`TvVnb%>t251)tDTDY$hS~oqd za>Bi|Zh8o}XceV?{2i@wg1e9Yx{q2l=KA6%?ELhY*O;Nu>Si^~-Nxbs-vLOUH1ZDV zr(I!jFTR!WFv6S)5{eOBDo@O!xz`Y=qNV7Cdk z@GY10S-Rh;O~`_l6@`d!?QXMytBB-3dLx9u4n@ zd+GW25N^@DdX`pk{5eJ(4L&jUK90=a6MdZE4B@EcagA4Dbh%>*7Wd+ewHQa($jQM<`$6sre2zVBSG{Uv$aNX8$ zixcY8vk>m3G3+7SqUZ6yXq6Ls{v8d=&cWhdnr|I~>!WQ6Bihrd&z?I~FMrPkGZ&sa z6;5|JFX>+4d?q4&3+?o5QJewdcmH|8=vol@d(LRdgid|B)9?13UvKuy8%N*RZb6H1 zFMfkd`pyx2Yu!7xt6%)-L#uD^F;%+739lL!#ng>k*1K$Sc6I277PJWW%HL(e)?W1I z4eK*cxTacbda87b6FRr69|yj2Zhi4@msG2~bwP`8ul$`X)Hvn#=hT;6{`>0MH&2yr zae^5&S0G>e2>#CzN6f7cs@jBmF;nMy;^+SPXVng~bL$;`(k9$1e;W;3^}#t;RI9DG zS^b(Lrb@Rs!Tm$7C*D5)>}u{0x2*4d_ktGTUin*fsB!$>J5|@uc~O1j&QqmZoZy}) z*AuTh@y5}A|6#{^=W`ach_+Yyb|7kOwC5V5b>Fw3K6D?x{h2LJaCesLiQE6_#+f(1 zb$-3wntUfU6YiD27l|5A-n?YyeFx63FZh?K(k)JK&zS3pC+>LC;JdqSUElFfZNj~{ zN6pp2{SH5S@cX6b)ziB#Xlb}t{(dL6YU}-G2M6!5ZarK$Rl3Cq?v`_P@aNYr89Z;B zx%JmCT+kxiD}PTFHLg4L$-#%eIj8>PE>opjoZuclR|n5NY;O6}zbvUvJY+$OaIgFg zUDViX#kI-{-g8^E;&D@@Tb$ro1l2*U!Hqt*Wx47~=U4Y#-6q^ir!Wy)ykcIt!bi@o zPWW@1aIgH`WNg*Pp5CE+-G0xl4mn_|bc+)@w@Ksvr*L*qi2>37Ghqxx_fbk@}KxkY?oo~p7G5&<bsh(-2F3 zu|)biRF+IgPj~9sy#~U))LPw1J+G|i6NE-V8r|J1#wrl*rBRoL zo?vB9aDvd<y>=if0}O_tNZq5$ib6Yp+I9dz!wKyMq;Y-RWmMc{_`TeV86vHl zqR>vJvYkxOa6-EpX=t}p*={Ki?xmfRh==2jtm2N$)!hpt&bS-y)a?2y+w}#D6WRev zLp#e6cb0xH_hQCI=9Wg!?loAP;59x`l!kW5Gu$Ejz1)l1SclTkE_`6S@J1uumwn2g zrEVT~`UCFt{a)_HF+@C(hE5X$J52n(pOZj6TSP($Gn`w3BeKIKjArv$Hh1yVrCt_hRhAiC#o^_nL^dS2*db zRo&ey_6Nb@1Y`6Fph?p~9{31%NuSftV2y(YrFm0m8>>;JRilE26U^jmCC5`HtgG9fZFT#v2S;a6aH>}Q7nbp>n}DwySfx-11H>z8T+WC z&XmR_IDdQ$wbzw#{&0&E{x*J5yb86~Z~taVwJ**%PPiAd|1+ys(l`yZ*ZWX=y#%#a zw>aVN?-#{CVzy7C_Bw^LniKBj@9*RP;)>nt9rfJ$XzX5{a4+r`K7PynYSsBTb8d** z>nm~Qbc+-1_xHD%I=lMLomCT}7*;t%t zzwy5=BHYT4?pSY)2$jzjF&&Nq}m?43@6-+@jkD?m#?^1xi)IA+oKNW7AO48!=l&*wZ2VId;KwL zeNMQSzuk!cF93G0A4cuQk}bkdEZ zi?OqG!o8TW-#t7_QS@-tUjG%fSGPE!>pE5wq%m^|GOU6W3Z+nHft5zxQmKJw|#R>o0oT5-{ zFSm)iSH|5yxR+wSG?YI|%O4Yj|HTl#rRBk3al-%dsmZk^ zbFJUYy_AEcp?qFiJ`WZr{BN`HolbGjFt9yCAl%FU<_rJF5bR67^_wMw|AT#rtGk!> zD{7VYJ_FnP1d9{?muUE0J?^gt7h`|r_i``oyQHB#+`#s5!Qw=F$H{%-xv0IKhJB*n u%e{R67^6dc4~N&`ucEO-UX1m|H?-1soyXtDze|k_-!0*fTUtb*Bk?~j?pnJ5 literal 0 HcmV?d00001 diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_super.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_super.inst.cfg new file mode 100644 index 00000000000..986c594aa87 --- /dev/null +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_super.inst.cfg @@ -0,0 +1,15 @@ +[general] +version = 4 +name = Super Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = super +material = generic_nylon +variant = 0.2mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*8 diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_ultra.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_ultra.inst.cfg new file mode 100644 index 00000000000..8e857ee97c3 --- /dev/null +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_ultra.inst.cfg @@ -0,0 +1,15 @@ +[general] +version = 4 +name = Ultra Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = ultra +material = generic_nylon +variant = 0.2mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*8 diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_adaptive.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_adaptive.inst.cfg new file mode 100644 index 00000000000..a63a0ecc024 --- /dev/null +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_adaptive.inst.cfg @@ -0,0 +1,15 @@ +[general] +version = 4 +name = Dynamic Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = adaptive +material = generic_nylon +variant = 0.3mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_low.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_low.inst.cfg new file mode 100644 index 00000000000..968ad344324 --- /dev/null +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_low.inst.cfg @@ -0,0 +1,15 @@ +[general] +version = 4 +name = Low Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = low +material = generic_nylon +variant = 0.3mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_standard.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_standard.inst.cfg new file mode 100644 index 00000000000..f139cc0aa7d --- /dev/null +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_standard.inst.cfg @@ -0,0 +1,15 @@ +[general] +version = 4 +name = Standard Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = standard +material = generic_nylon +variant = 0.3mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_super.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_super.inst.cfg new file mode 100644 index 00000000000..b09d167aa33 --- /dev/null +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_super.inst.cfg @@ -0,0 +1,15 @@ +[general] +version = 4 +name = Super Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = super +material = generic_nylon +variant = 0.3mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_adaptive.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_adaptive.inst.cfg new file mode 100644 index 00000000000..c6862185985 --- /dev/null +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Dynamic Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = adaptive +material = generic_nylon +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +cool_fan_speed = 40 +retraction_speed = 20 +retraction_amount = 1.6 +material_flow = 94.0 diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_low.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_low.inst.cfg new file mode 100644 index 00000000000..7daca8bac71 --- /dev/null +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_low.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Low Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = low +material = generic_nylon +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +cool_fan_speed = 40 +retraction_speed = 20 +retraction_amount = 1.6 +material_flow = 94.0 diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_standard.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_standard.inst.cfg new file mode 100644 index 00000000000..9f414288e98 --- /dev/null +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_standard.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Standard Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = standard +material = generic_nylon +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +cool_fan_speed = 40 +retraction_speed = 20 +retraction_amount = 1.6 +material_flow = 94.0 diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_super.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_super.inst.cfg new file mode 100644 index 00000000000..ef3b84f8100 --- /dev/null +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_super.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Super Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = super +material = generic_nylon +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +cool_fan_speed = 40 +retraction_speed = 20 +retraction_amount = 1.6 +material_flow = 94.0 diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_adaptive.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_adaptive.inst.cfg new file mode 100644 index 00000000000..e3d64001f0c --- /dev/null +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_adaptive.inst.cfg @@ -0,0 +1,15 @@ +[general] +version = 4 +name = Dynamic Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = adaptive +material = generic_nylon +variant = 0.5mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_low.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_low.inst.cfg new file mode 100644 index 00000000000..7468690a7ed --- /dev/null +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_low.inst.cfg @@ -0,0 +1,15 @@ +[general] +version = 4 +name = Low Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = low +material = generic_nylon +variant = 0.5mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_standard.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_standard.inst.cfg new file mode 100644 index 00000000000..0a7c369edd6 --- /dev/null +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_standard.inst.cfg @@ -0,0 +1,15 @@ +[general] +version = 4 +name = Standard Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = standard +material = generic_nylon +variant = 0.5mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_super.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_super.inst.cfg new file mode 100644 index 00000000000..d7cc617a740 --- /dev/null +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_super.inst.cfg @@ -0,0 +1,15 @@ +[general] +version = 4 +name = Super Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = super +material = generic_nylon +variant = 0.5mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.6_Nylon_standard.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.6_Nylon_standard.inst.cfg new file mode 100644 index 00000000000..bf34041d96d --- /dev/null +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.6_Nylon_standard.inst.cfg @@ -0,0 +1,15 @@ +[general] +version = 4 +name = Standard Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = standard +material = generic_nylon +variant = 0.6mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*3 diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.8_Nylon_draft.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.8_Nylon_draft.inst.cfg new file mode 100644 index 00000000000..92bc80ceb35 --- /dev/null +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.8_Nylon_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Draft Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = draft +material = generic_nylon +variant = 0.8mm Nozzle + +[values] +speed_layer_0 = 30 +wall_thickness = =line_width*2 +cool_fan_speed = 40 diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_1.0_Nylon_draft.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_1.0_Nylon_draft.inst.cfg new file mode 100644 index 00000000000..860980c0a1c --- /dev/null +++ b/resources/quality/ratrig_base/nylon/ratrig_base_1.0_Nylon_draft.inst.cfg @@ -0,0 +1,15 @@ +[general] +version = 4 +name = Draft Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = draft +material = generic_nylon +variant = 1.0mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*3 diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_super.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_super.inst.cfg new file mode 100644 index 00000000000..6b0d6caff2b --- /dev/null +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_super.inst.cfg @@ -0,0 +1,15 @@ +[general] +version = 4 +name = Super Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = super +material = generic_petg +variant = 0.2mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*8 diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_ultra.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_ultra.inst.cfg new file mode 100644 index 00000000000..784001a2946 --- /dev/null +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_ultra.inst.cfg @@ -0,0 +1,15 @@ +[general] +version = 4 +name = Ultra Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = ultra +material = generic_petg +variant = 0.2mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*8 diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_adaptive.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_adaptive.inst.cfg new file mode 100644 index 00000000000..40338965922 --- /dev/null +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_adaptive.inst.cfg @@ -0,0 +1,15 @@ +[general] +version = 4 +name = Dynamic Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = adaptive +material = generic_petg +variant = 0.3mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_low.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_low.inst.cfg new file mode 100644 index 00000000000..aaab545e843 --- /dev/null +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_low.inst.cfg @@ -0,0 +1,15 @@ +[general] +version = 4 +name = Low Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = low +material = generic_petg +variant = 0.3mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_standard.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_standard.inst.cfg new file mode 100644 index 00000000000..6c56665241d --- /dev/null +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_standard.inst.cfg @@ -0,0 +1,15 @@ +[general] +version = 4 +name = Standard Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = standard +material = generic_petg +variant = 0.3mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_super.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_super.inst.cfg new file mode 100644 index 00000000000..5b838bbcb79 --- /dev/null +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_super.inst.cfg @@ -0,0 +1,15 @@ +[general] +version = 4 +name = Super Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = super +material = generic_petg +variant = 0.3mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_adaptive.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_adaptive.inst.cfg new file mode 100644 index 00000000000..5e941ca0111 --- /dev/null +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Dynamic Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = adaptive +material = generic_petg +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +cool_fan_speed = 40 +retraction_speed = 20 +retraction_amount = 1.6 +material_flow = 94.0 diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_low.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_low.inst.cfg new file mode 100644 index 00000000000..4052b22d10f --- /dev/null +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_low.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Low Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = low +material = generic_petg +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +cool_fan_speed = 40 +retraction_speed = 20 +retraction_amount = 1.6 +material_flow = 94.0 diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_standard.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_standard.inst.cfg new file mode 100644 index 00000000000..eff9ddabf27 --- /dev/null +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_standard.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Standard Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = standard +material = generic_petg +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +cool_fan_speed = 40 +retraction_speed = 20 +retraction_amount = 1.6 +material_flow = 94.0 diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_super.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_super.inst.cfg new file mode 100644 index 00000000000..53cd3e70417 --- /dev/null +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_super.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Super Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = super +material = generic_petg +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +cool_fan_speed = 40 +retraction_speed = 20 +retraction_amount = 1.6 +material_flow = 94.0 diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_adaptive.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_adaptive.inst.cfg new file mode 100644 index 00000000000..58c3531f809 --- /dev/null +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_adaptive.inst.cfg @@ -0,0 +1,15 @@ +[general] +version = 4 +name = Dynamic Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = adaptive +material = generic_petg +variant = 0.5mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_low.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_low.inst.cfg new file mode 100644 index 00000000000..e2c1328fb27 --- /dev/null +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_low.inst.cfg @@ -0,0 +1,15 @@ +[general] +version = 4 +name = Low Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = low +material = generic_petg +variant = 0.5mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_standard.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_standard.inst.cfg new file mode 100644 index 00000000000..35f4a1a08f5 --- /dev/null +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_standard.inst.cfg @@ -0,0 +1,15 @@ +[general] +version = 4 +name = Standard Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = standard +material = generic_petg +variant = 0.5mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_super.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_super.inst.cfg new file mode 100644 index 00000000000..6b7995b239e --- /dev/null +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_super.inst.cfg @@ -0,0 +1,15 @@ +[general] +version = 4 +name = Super Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = super +material = generic_petg +variant = 0.5mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.6_PETG_standard.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.6_PETG_standard.inst.cfg new file mode 100644 index 00000000000..895fdcacb95 --- /dev/null +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.6_PETG_standard.inst.cfg @@ -0,0 +1,15 @@ +[general] +version = 4 +name = Standard Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = standard +material = generic_petg +variant = 0.6mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*3 diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.8_PETG_draft.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.8_PETG_draft.inst.cfg new file mode 100644 index 00000000000..a7d04cb10bb --- /dev/null +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.8_PETG_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Draft Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = draft +material = generic_petg +variant = 0.8mm Nozzle + +[values] +speed_layer_0 = 30 +wall_thickness = =line_width*2 +cool_fan_speed = 40 diff --git a/resources/quality/ratrig_base/petg/ratrig_base_1.0_PETG_draft.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_1.0_PETG_draft.inst.cfg new file mode 100644 index 00000000000..8ce4a9fef6f --- /dev/null +++ b/resources/quality/ratrig_base/petg/ratrig_base_1.0_PETG_draft.inst.cfg @@ -0,0 +1,15 @@ +[general] +version = 4 +name = Draft Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = draft +material = generic_petg +variant = 1.0mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*3 diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_super.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_super.inst.cfg new file mode 100644 index 00000000000..7b009267e31 --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_super.inst.cfg @@ -0,0 +1,13 @@ +[general] +version = 4 +name = Super Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = super +material = generic_pla +variant = 0.2mm Nozzle + +[values] diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_ultra.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_ultra.inst.cfg new file mode 100644 index 00000000000..1a401148d50 --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_ultra.inst.cfg @@ -0,0 +1,13 @@ +[general] +version = 4 +name = Ultra Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = ultra +material = generic_pla +variant = 0.2mm Nozzle + +[values] diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_adaptive.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_adaptive.inst.cfg new file mode 100644 index 00000000000..de0067706e9 --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_adaptive.inst.cfg @@ -0,0 +1,13 @@ +[general] +version = 4 +name = Dynamic Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = adaptive +material = generic_pla +variant = 0.3mm Nozzle + +[values] diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_low.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_low.inst.cfg new file mode 100644 index 00000000000..31747bda1c9 --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_low.inst.cfg @@ -0,0 +1,13 @@ +[general] +version = 4 +name = Low Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = low +material = generic_pla +variant = 0.3mm Nozzle + +[values] diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_standard.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_standard.inst.cfg new file mode 100644 index 00000000000..06000474af8 --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_standard.inst.cfg @@ -0,0 +1,13 @@ +[general] +version = 4 +name = Standard Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = standard +material = generic_pla +variant = 0.3mm Nozzle + +[values] diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_super.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_super.inst.cfg new file mode 100644 index 00000000000..24efb559803 --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_super.inst.cfg @@ -0,0 +1,13 @@ +[general] +version = 4 +name = Super Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = super +material = generic_pla +variant = 0.3mm Nozzle + +[values] diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_adaptive.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_adaptive.inst.cfg new file mode 100644 index 00000000000..de96e7d5fb0 --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_adaptive.inst.cfg @@ -0,0 +1,13 @@ +[general] +version = 4 +name = Dynamic Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = adaptive +material = generic_pla +variant = 0.4mm Nozzle + +[values] diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_low.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_low.inst.cfg new file mode 100644 index 00000000000..2e608f8d5cd --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_low.inst.cfg @@ -0,0 +1,13 @@ +[general] +version = 4 +name = Low Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = low +material = generic_pla +variant = 0.4mm Nozzle + +[values] diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_standard.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_standard.inst.cfg new file mode 100644 index 00000000000..5f18e1281bf --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_standard.inst.cfg @@ -0,0 +1,13 @@ +[general] +version = 4 +name = Standard Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = standard +material = generic_pla +variant = 0.4mm Nozzle + +[values] diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_super.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_super.inst.cfg new file mode 100644 index 00000000000..121be5d3cf5 --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_super.inst.cfg @@ -0,0 +1,13 @@ +[general] +version = 4 +name = Super Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = super +material = generic_pla +variant = 0.4mm Nozzle + +[values] diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_adaptive.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_adaptive.inst.cfg new file mode 100644 index 00000000000..07dadf89dd2 --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_adaptive.inst.cfg @@ -0,0 +1,13 @@ +[general] +version = 4 +name = Dynamic Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = adaptive +material = generic_pla +variant = 0.5mm Nozzle + +[values] diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_low.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_low.inst.cfg new file mode 100644 index 00000000000..7d92038aee1 --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_low.inst.cfg @@ -0,0 +1,13 @@ +[general] +version = 4 +name = Low Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = low +material = generic_pla +variant = 0.5mm Nozzle + +[values] diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_standard.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_standard.inst.cfg new file mode 100644 index 00000000000..ed786fb5749 --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_standard.inst.cfg @@ -0,0 +1,13 @@ +[general] +version = 4 +name = Standard Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = standard +material = generic_pla +variant = 0.5mm Nozzle + +[values] diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_super.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_super.inst.cfg new file mode 100644 index 00000000000..ec1c18b046e --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_super.inst.cfg @@ -0,0 +1,13 @@ +[general] +version = 4 +name = Super Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = super +material = generic_pla +variant = 0.5mm Nozzle + +[values] diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_draft.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_draft.inst.cfg new file mode 100644 index 00000000000..816eaa0e0bb --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_draft.inst.cfg @@ -0,0 +1,13 @@ +[general] +version = 4 +name = Draft Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = draft +material = generic_pla +variant = 0.6mm Nozzle + +[values] diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_low.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_low.inst.cfg new file mode 100644 index 00000000000..0b92dbf172f --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_low.inst.cfg @@ -0,0 +1,13 @@ +[general] +version = 4 +name = Low Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = low +material = generic_pla +variant = 0.6mm Nozzle + +[values] diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_standard.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_standard.inst.cfg new file mode 100644 index 00000000000..ddd87bec72c --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_standard.inst.cfg @@ -0,0 +1,13 @@ +[general] +version = 4 +name = Standard Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = standard +material = generic_pla +variant = 0.6mm Nozzle + +[values] diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.8_PLA_draft.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.8_PLA_draft.inst.cfg new file mode 100644 index 00000000000..e1ab1dcab7a --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.8_PLA_draft.inst.cfg @@ -0,0 +1,13 @@ +[general] +version = 4 +name = Draft Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = draft +material = generic_pla +variant = 0.8mm Nozzle + +[values] diff --git a/resources/quality/ratrig_base/pla/ratrig_base_1.0_PLA_draft.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_1.0_PLA_draft.inst.cfg new file mode 100644 index 00000000000..3dbb26c6ecb --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_1.0_PLA_draft.inst.cfg @@ -0,0 +1,13 @@ +[general] +version = 4 +name = Draft Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = draft +material = generic_pla +variant = 1.0mm Nozzle + +[values] diff --git a/resources/quality/ratrig_base/ratrig_base_global_adaptive.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_adaptive.inst.cfg new file mode 100644 index 00000000000..29786dcdbed --- /dev/null +++ b/resources/quality/ratrig_base/ratrig_base_global_adaptive.inst.cfg @@ -0,0 +1,19 @@ +[general] +version = 4 +name = Dynamic Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = adaptive +weight = -2 +global_quality = True + +[values] +layer_height = 0.16 +layer_height_0 = 0.20 +top_bottom_thickness = =layer_height_0+layer_height*4 +wall_thickness = =line_width*3 +support_interface_height = =layer_height*6 +adaptive_layer_height_enabled = true diff --git a/resources/quality/ratrig_base/ratrig_base_global_draft.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_draft.inst.cfg new file mode 100644 index 00000000000..f6fcbb83488 --- /dev/null +++ b/resources/quality/ratrig_base/ratrig_base_global_draft.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Draft Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = draft +weight = -5 +global_quality = True + +[values] +layer_height = 0.32 +layer_height_0 = 0.32 +top_bottom_thickness = =layer_height_0+layer_height*3 +wall_thickness = =line_width*2 +support_interface_height = =layer_height*4 diff --git a/resources/quality/ratrig_base/ratrig_base_global_low.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_low.inst.cfg new file mode 100644 index 00000000000..ad32dcf779f --- /dev/null +++ b/resources/quality/ratrig_base/ratrig_base_global_low.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Low Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = low +weight = -4 +global_quality = True + +[values] +layer_height = 0.28 +layer_height_0 = 0.28 +top_bottom_thickness = =layer_height_0+layer_height*3 +wall_thickness = =line_width*2 +support_interface_height = =layer_height*4 diff --git a/resources/quality/ratrig_base/ratrig_base_global_standard.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_standard.inst.cfg new file mode 100644 index 00000000000..5f31222e117 --- /dev/null +++ b/resources/quality/ratrig_base/ratrig_base_global_standard.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Standard Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = standard +weight = -3 +global_quality = True + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 +top_bottom_thickness = =layer_height_0+layer_height*3 +wall_thickness = =line_width*2 +support_interface_height = =layer_height*4 diff --git a/resources/quality/ratrig_base/ratrig_base_global_super.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_super.inst.cfg new file mode 100644 index 00000000000..3c6460675d7 --- /dev/null +++ b/resources/quality/ratrig_base/ratrig_base_global_super.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Super Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = super +weight = -1 +global_quality = True + +[values] +layer_height = 0.12 +layer_height_0 = 0.12 +top_bottom_thickness = =layer_height_0+layer_height*6 +wall_thickness = =line_width*3 +support_interface_height = =layer_height*8 diff --git a/resources/quality/ratrig_base/ratrig_base_global_ultra.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_ultra.inst.cfg new file mode 100644 index 00000000000..c1257af0940 --- /dev/null +++ b/resources/quality/ratrig_base/ratrig_base_global_ultra.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Ultra Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = ultra +weight = 0 +global_quality = True + +[values] +layer_height = 0.08 +layer_height_0 = 0.12 +top_bottom_thickness = =layer_height_0+layer_height*10 +wall_thickness = =line_width*3 +support_interface_height = =layer_height*12 diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg new file mode 100644 index 00000000000..a7feb4f3e03 --- /dev/null +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg @@ -0,0 +1,13 @@ +[general] +version = 4 +name = Dynamic Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = adaptive +material = generic_tpu +variant = 0.3mm Nozzle + +[values] diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_standard.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_standard.inst.cfg new file mode 100644 index 00000000000..de56d84ba88 --- /dev/null +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_standard.inst.cfg @@ -0,0 +1,13 @@ +[general] +version = 4 +name = Standard Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = standard +material = generic_tpu +variant = 0.3mm Nozzle + +[values] diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_super.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_super.inst.cfg new file mode 100644 index 00000000000..2b7b1e711e9 --- /dev/null +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_super.inst.cfg @@ -0,0 +1,13 @@ +[general] +version = 4 +name = Super Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = super +material = generic_tpu +variant = 0.3mm Nozzle + +[values] diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg new file mode 100644 index 00000000000..dcfc502bae7 --- /dev/null +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg @@ -0,0 +1,13 @@ +[general] +version = 4 +name = Dynamic Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = adaptive +material = generic_tpu +variant = 0.4mm Nozzle + +[values] diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_standard.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_standard.inst.cfg new file mode 100644 index 00000000000..7ff523b68e1 --- /dev/null +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_standard.inst.cfg @@ -0,0 +1,13 @@ +[general] +version = 4 +name = Standard Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = standard +material = generic_tpu +variant = 0.4mm Nozzle + +[values] diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_super.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_super.inst.cfg new file mode 100644 index 00000000000..a65ad09744f --- /dev/null +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_super.inst.cfg @@ -0,0 +1,13 @@ +[general] +version = 4 +name = Super Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = super +material = generic_tpu +variant = 0.4mm Nozzle + +[values] diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg new file mode 100644 index 00000000000..63e465243d7 --- /dev/null +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg @@ -0,0 +1,13 @@ +[general] +version = 4 +name = Dynamic Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = adaptive +material = generic_tpu +variant = 0.5mm Nozzle + +[values] diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_standard.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_standard.inst.cfg new file mode 100644 index 00000000000..f568375f4c2 --- /dev/null +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_standard.inst.cfg @@ -0,0 +1,13 @@ +[general] +version = 4 +name = Standard Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = standard +material = generic_tpu +variant = 0.5mm Nozzle + +[values] diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_super.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_super.inst.cfg new file mode 100644 index 00000000000..1265c32061b --- /dev/null +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_super.inst.cfg @@ -0,0 +1,13 @@ +[general] +version = 4 +name = Super Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = super +material = generic_tpu +variant = 0.5mm Nozzle + +[values] diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.6_TPU_standard.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.6_TPU_standard.inst.cfg new file mode 100644 index 00000000000..df3d1941778 --- /dev/null +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.6_TPU_standard.inst.cfg @@ -0,0 +1,13 @@ +[general] +version = 4 +name = Standard Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = standard +material = generic_tpu +variant = 0.6mm Nozzle + +[values] diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.8_TPU_draft.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.8_TPU_draft.inst.cfg new file mode 100644 index 00000000000..1db288b6b92 --- /dev/null +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.8_TPU_draft.inst.cfg @@ -0,0 +1,13 @@ +[general] +version = 4 +name = Draft Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = draft +material = generic_tpu +variant = 0.8mm Nozzle + +[values] diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_1.0_TPU_draft.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_1.0_TPU_draft.inst.cfg new file mode 100644 index 00000000000..3149efda364 --- /dev/null +++ b/resources/quality/ratrig_base/tpu/ratrig_base_1.0_TPU_draft.inst.cfg @@ -0,0 +1,13 @@ +[general] +version = 4 +name = Draft Quality +definition = ratrig_base + +[metadata] +setting_version = 22 +type = quality +quality_type = draft +material = generic_tpu +variant = 1.0mm Nozzle + +[values] diff --git a/resources/variants/ratrig/ratrig_base_0.2.inst.cfg b/resources/variants/ratrig/ratrig_base_0.2.inst.cfg new file mode 100644 index 00000000000..752f0fc7b34 --- /dev/null +++ b/resources/variants/ratrig/ratrig_base_0.2.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.2mm Nozzle +version = 4 +definition = ratrig_base + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.2 diff --git a/resources/variants/ratrig/ratrig_base_0.3.inst.cfg b/resources/variants/ratrig/ratrig_base_0.3.inst.cfg new file mode 100644 index 00000000000..2ad677756d5 --- /dev/null +++ b/resources/variants/ratrig/ratrig_base_0.3.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.3mm Nozzle +version = 4 +definition = ratrig_base + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.3 diff --git a/resources/variants/ratrig/ratrig_base_0.4.inst.cfg b/resources/variants/ratrig/ratrig_base_0.4.inst.cfg new file mode 100644 index 00000000000..652ae2b4c72 --- /dev/null +++ b/resources/variants/ratrig/ratrig_base_0.4.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.4mm Nozzle +version = 4 +definition = ratrig_base + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/ratrig/ratrig_base_0.6.inst.cfg b/resources/variants/ratrig/ratrig_base_0.6.inst.cfg new file mode 100644 index 00000000000..9316e0d850c --- /dev/null +++ b/resources/variants/ratrig/ratrig_base_0.6.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.6mm Nozzle +version = 4 +definition = ratrig_base + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.6 diff --git a/resources/variants/ratrig/ratrig_base_0.8.inst.cfg b/resources/variants/ratrig/ratrig_base_0.8.inst.cfg new file mode 100644 index 00000000000..ce329c7d6d0 --- /dev/null +++ b/resources/variants/ratrig/ratrig_base_0.8.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.8mm Nozzle +version = 4 +definition = ratrig_base + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.8 diff --git a/resources/variants/ratrig/ratrig_base_1.0.inst.cfg b/resources/variants/ratrig/ratrig_base_1.0.inst.cfg new file mode 100644 index 00000000000..c1b643b60ed --- /dev/null +++ b/resources/variants/ratrig/ratrig_base_1.0.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 1.0mm Nozzle +version = 4 +definition = ratrig_base + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 1.0 diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.2.inst.cfg new file mode 100644 index 00000000000..d3ae97b4d40 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.2.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.2mm Nozzle +version = 4 +definition = ratrig_vcore3_200 + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.2 diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.3.inst.cfg new file mode 100644 index 00000000000..ad5127866bd --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.3.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.3mm Nozzle +version = 4 +definition = ratrig_vcore3_200 + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.3 diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.4.inst.cfg new file mode 100644 index 00000000000..dc46c98586c --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.4.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.4mm Nozzle +version = 4 +definition = ratrig_vcore3_200 + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.6.inst.cfg new file mode 100644 index 00000000000..24bcfdf234c --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.6.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.6mm Nozzle +version = 4 +definition = ratrig_vcore3_200 + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.6 diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.8.inst.cfg new file mode 100644 index 00000000000..dc0d5b87e6b --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.8.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.8mm Nozzle +version = 4 +definition = ratrig_vcore3_200 + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.8 diff --git a/resources/variants/ratrig/ratrig_vcore3_200_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_1.0.inst.cfg new file mode 100644 index 00000000000..fa07e194ee7 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_200_1.0.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 1.0mm Nozzle +version = 4 +definition = ratrig_vcore3_200 + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 1.0 diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.2.inst.cfg new file mode 100644 index 00000000000..f7e73d584d5 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.2.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.2mm Nozzle +version = 4 +definition = ratrig_vcore3_300 + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.2 diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.3.inst.cfg new file mode 100644 index 00000000000..a3d8ccc3859 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.3.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.3mm Nozzle +version = 4 +definition = ratrig_vcore3_300 + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.3 diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.4.inst.cfg new file mode 100644 index 00000000000..aa60d459301 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.4.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.4mm Nozzle +version = 4 +definition = ratrig_vcore3_300 + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.6.inst.cfg new file mode 100644 index 00000000000..cd036160ee5 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.6.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.6mm Nozzle +version = 4 +definition = ratrig_vcore3_300 + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.6 diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.8.inst.cfg new file mode 100644 index 00000000000..a9c568738f1 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.8.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.8mm Nozzle +version = 4 +definition = ratrig_vcore3_300 + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.8 diff --git a/resources/variants/ratrig/ratrig_vcore3_300_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_1.0.inst.cfg new file mode 100644 index 00000000000..96216c66797 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_300_1.0.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 1.0mm Nozzle +version = 4 +definition = ratrig_vcore3_300 + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 1.0 diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.2.inst.cfg new file mode 100644 index 00000000000..73cf813b9e4 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.2.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.2mm Nozzle +version = 4 +definition = ratrig_vcore3_400 + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.2 diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.3.inst.cfg new file mode 100644 index 00000000000..97a30ccae3c --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.3.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.3mm Nozzle +version = 4 +definition = ratrig_vcore3_400 + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.3 diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.4.inst.cfg new file mode 100644 index 00000000000..38721094176 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.4.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.4mm Nozzle +version = 4 +definition = ratrig_vcore3_400 + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.6.inst.cfg new file mode 100644 index 00000000000..bacbc752794 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.6.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.6mm Nozzle +version = 4 +definition = ratrig_vcore3_400 + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.6 diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.8.inst.cfg new file mode 100644 index 00000000000..96e1f89d1af --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.8.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.8mm Nozzle +version = 4 +definition = ratrig_vcore3_400 + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.8 diff --git a/resources/variants/ratrig/ratrig_vcore3_400_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_1.0.inst.cfg new file mode 100644 index 00000000000..516ab972755 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_400_1.0.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 1.0mm Nozzle +version = 4 +definition = ratrig_vcore3_400 + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 1.0 diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.2.inst.cfg new file mode 100644 index 00000000000..5d8f552d62c --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.2.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.2mm Nozzle +version = 4 +definition = ratrig_vcore3_500 + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.2 diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.3.inst.cfg new file mode 100644 index 00000000000..89773c5026d --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.3.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.3mm Nozzle +version = 4 +definition = ratrig_vcore3_500 + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.3 diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.4.inst.cfg new file mode 100644 index 00000000000..4d97550b3ec --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.4.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.4mm Nozzle +version = 4 +definition = ratrig_vcore3_500 + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.6.inst.cfg new file mode 100644 index 00000000000..2092d5c76a9 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.6.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.6mm Nozzle +version = 4 +definition = ratrig_vcore3_500 + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.6 diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.8.inst.cfg new file mode 100644 index 00000000000..9810346ad64 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.8.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.8mm Nozzle +version = 4 +definition = ratrig_vcore3_500 + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.8 diff --git a/resources/variants/ratrig/ratrig_vcore3_500_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_1.0.inst.cfg new file mode 100644 index 00000000000..cc790cc53e3 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_500_1.0.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 1.0mm Nozzle +version = 4 +definition = ratrig_vcore3_500 + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 1.0 diff --git a/resources/variants/ratrig/ratrig_vminion_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.2.inst.cfg new file mode 100644 index 00000000000..0a90304e946 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vminion_0.2.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.2mm Nozzle +version = 4 +definition = ratrig_vminion + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.2 diff --git a/resources/variants/ratrig/ratrig_vminion_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.3.inst.cfg new file mode 100644 index 00000000000..36c7d9bbca4 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vminion_0.3.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.3mm Nozzle +version = 4 +definition = ratrig_vminion + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.3 diff --git a/resources/variants/ratrig/ratrig_vminion_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.4.inst.cfg new file mode 100644 index 00000000000..50bcd8f69b5 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vminion_0.4.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.4mm Nozzle +version = 4 +definition = ratrig_vminion + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/ratrig/ratrig_vminion_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.6.inst.cfg new file mode 100644 index 00000000000..c4ab87616aa --- /dev/null +++ b/resources/variants/ratrig/ratrig_vminion_0.6.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.6mm Nozzle +version = 4 +definition = ratrig_vminion + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.6 diff --git a/resources/variants/ratrig/ratrig_vminion_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.8.inst.cfg new file mode 100644 index 00000000000..8fb2a33b608 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vminion_0.8.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.8mm Nozzle +version = 4 +definition = ratrig_vminion + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.8 diff --git a/resources/variants/ratrig/ratrig_vminion_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vminion_1.0.inst.cfg new file mode 100644 index 00000000000..c946cfd5f06 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vminion_1.0.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 1.0mm Nozzle +version = 4 +definition = ratrig_vminion + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 1.0 From da4f675008a61ff1602e74ed14838cc41ad5d9b3 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Sat, 6 Jan 2024 16:39:04 +0100 Subject: [PATCH 341/765] Optimize wall printing order CURA-11507 --- resources/definitions/fdmprinter.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index cf2b7a57af2..2b37b3d7acf 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -1159,7 +1159,7 @@ "label": "Optimize Wall Printing Order", "description": "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type.", "type": "bool", - "default_value": false, + "default_value": true, "settable_per_mesh": true }, "inset_direction": From 18302d6213788ad49438876833b650ad40546895 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Sun, 7 Jan 2024 11:10:22 +0100 Subject: [PATCH 342/765] attempt to fix binary search --- plugins/SimulationView/SimulationView.py | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/plugins/SimulationView/SimulationView.py b/plugins/SimulationView/SimulationView.py index 92a6a9e8534..c070c699394 100644 --- a/plugins/SimulationView/SimulationView.py +++ b/plugins/SimulationView/SimulationView.py @@ -97,7 +97,8 @@ def __init__(self, parent = None) -> None: self._min_line_width = sys.float_info.max self._min_flow_rate = sys.float_info.max self._max_flow_rate = sys.float_info.min - self._cumulative_line_duration = {} + self._cumulative_line_duration_layer: Optional[int] = None + self._cumulative_line_duration: List[float] = [] self._global_container_stack: Optional[ContainerStack] = None self._proxy = None @@ -196,7 +197,7 @@ def setTime(self, time: float) -> None: if len(cumulative_line_duration) > 0: self._current_time = time left_i = 0 - right_i = self._max_paths - 1 + right_i = len(cumulative_line_duration) - 1 total_duration = cumulative_line_duration[-1] # make an educated guess about where to start i = int(right_i * max(0.0, min(1.0, self._current_time / total_duration))) @@ -212,7 +213,8 @@ def setTime(self, time: float) -> None: right_value = cumulative_line_duration[i] if not (left_value <= self._current_time <= right_value): - Logger.debug(f"At index {i}: left value {left_value} right value {right_value} and current time is {self._current_time}") + Logger.warn( + f"Binary search error (out of bounds): index {i}: left value {left_value} right value {right_value} and current time is {self._current_time}") fractional_value = (self._current_time - left_value) / (right_value - left_value) @@ -245,21 +247,22 @@ def advanceTime(self, time_increase: float) -> bool: def cumulativeLineDuration(self) -> List[float]: # Make sure _cumulative_line_duration is initialized properly - if self.getCurrentLayer() not in self._cumulative_line_duration: + if self.getCurrentLayer() != self._cumulative_line_duration_layer: #clear cache - self._cumulative_line_duration = {} - self._cumulative_line_duration[self.getCurrentLayer()] = [] + self._cumulative_line_duration = [] total_duration = 0.0 polylines = self.getLayerData() if polylines is not None: for polyline in polylines.polygons: for line_duration in list((polyline.lineLengths / polyline.lineFeedrates)[0]): total_duration += line_duration / SimulationView.SIMULATION_FACTOR - self._cumulative_line_duration[self.getCurrentLayer()].append(total_duration) + self._cumulative_line_duration.append(total_duration) # for tool change we add an extra tool path - self._cumulative_line_duration[self.getCurrentLayer()].append(total_duration) + self._cumulative_line_duration.append(total_duration) + # set current cached layer + self._cumulative_line_duration_layer = self.getCurrentLayer() - return self._cumulative_line_duration[self.getCurrentLayer()] + return self._cumulative_line_duration def getLayerData(self) -> Optional["LayerData"]: scene = self.getController().getScene() From 1a5370d2efd67ef7a5dc5eace7da94152f7946e9 Mon Sep 17 00:00:00 2001 From: GregValiant <64202104+GregValiant@users.noreply.github.com> Date: Sun, 7 Jan 2024 12:41:59 +0100 Subject: [PATCH 343/765] Add 'Advanced Cooling Fan Control' post-processing script. See discussions in #15853 (on github) and (internally) tracking-ticket CURA-11520 --- .../scripts/AddCoolingProfile.py | 879 ++++++++++++++++++ 1 file changed, 879 insertions(+) create mode 100644 plugins/PostProcessingPlugin/scripts/AddCoolingProfile.py diff --git a/plugins/PostProcessingPlugin/scripts/AddCoolingProfile.py b/plugins/PostProcessingPlugin/scripts/AddCoolingProfile.py new file mode 100644 index 00000000000..6f9ac2dc136 --- /dev/null +++ b/plugins/PostProcessingPlugin/scripts/AddCoolingProfile.py @@ -0,0 +1,879 @@ +# January 2023 by GregValiant (Greg Foresi). +# Functions: +# Remove all fan speed lines from the file (optional). +# Enter new M106 lines "By Layer" or "By Feature" (;TYPE:WALL-OUTER, etc.). +# A Starting layer and/or an Ending layer can be defined. +# Fan speeds are scaled PWM (0 - 255) or RepRap (0 - 1) depending on {machine_scale_fan_speed_zero_to_one}. +# A minimum fan speed of 12% is enforced. +# If multiple extruders have separate fan circuits the speeds are set at tool changes and conform to the layer or +# feature setting. There is support for up to 4 layer cooling fan circuits. +# The option for whether or not to remove the existing M106 lines is added to allow multiple instances of this post-processor to be installed without the followup instances wiping out the insertions of previous instances. 1/3 of a file can be 'By Layer' and the second third 'By Feature', and end up with 'By Layer' again. +# My design intent was to make it as full featured and "industrial strength" as I could. +# My thanks to @5axes, @fieldOfView(@AHoeben), @Ghostkeeper, and @Torgeir. +# 9/14/23 added support for One-at-a-Time and removed the kick out code +# 12/15/23 split off some functions. Revised the regex replacements. + +from ..Script import Script +from UM.Application import Application +import re + +class AddCoolingProfile(Script): + + def getSettingDataString(self): + return """{ + "name": "Advanced Cooling Fan Control", + "key": "AddCoolingProfile", + "metadata": {}, + "version": 2, + "settings": + { + "fan_layer_or_feature": + { + "label": "Cooling Control by:", + "description": "A fan percentage of ''0'' turns the fan off. Minimum Fan is 12% (when on). All layer entries are the Cura Preview number. ''By Layer'': Enter as ''Layer#/Fan%'' (foreslash is the delimiter). Your final layer speed will continue to the end of the Gcode. ''By Feature'': If you enable an 'End Layer' then the ''Final %'' is available and is the speed that will finish the file. 'By Feature' is better for large slow prints than it is for short fast prints.", + "type": "enum", + "options": { + "by_layer": "Layer Numbers", + "by_feature": "Feature Types"}, + "default_value": "by_layer" + }, + "delete_existing_m106": + { + "label": "Remove M106 lines prior to inserting new.", + "description": "If you have 2 or more instances of 'Advanced Cooling Fan Control' running (to cool a portion of a print differently), then uncheck this box or the followup instances will remove all the lines inserted by the first instance. Pay attention to the Start and Stop layers. If you want to keep the Cura inserted lines up to the point where this post-processor will start making insertions, then un-check the box.", + "type": "bool", + "enabled": true, + "value": true + }, + "feature_fan_start_layer": + { + "label": "Starting Layer", + "description": "Layer to start the insertion at. Use the Cura preview numbers. Changes will begin at the start of that layer.", + "type": "int", + "default_value": 5, + "minimum_value": 1, + "unit": "Lay# ", + "enabled": "fan_layer_or_feature == 'by_feature'" + }, + "feature_fan_end_layer": + { + "label": "Ending Layer", + "description": "Layer to complete the insertion at. Enter '-1' for the entire file or enter a layer number. Insertions will stop at the END of this layer. If you set an End Layer then you should set the Final % that will finish the file", + "type": "int", + "default_value": -1, + "minimum_value": -1, + "unit": "Lay# ", + "enabled": "fan_layer_or_feature == 'by_feature'" + }, + "layer_fan_1st": + { + "label": "Layer/Percent #1", + "description": "Enter as: 'LAYER / Percent' Ex: 57/100 with the layer first, then a '/' to delimit, and then the fan percentage.", + "type": "str", + "default_value": "5/30", + "unit": "L#/% ", + "enabled": "fan_layer_or_feature == 'by_layer'" + }, + "layer_fan_2nd": + { + "label": "Layer/Percent #2", + "description": "Enter as: 'LAYER / Percent' Ex: 57/100 with the layer first, then a '/' to delimit, and then the fan percentage.", + "type": "str", + "default_value": "", + "unit": "L#/% ", + "enabled": "fan_layer_or_feature == 'by_layer'" + }, + "layer_fan_3rd": + { + "label": "Layer/Percent #3", + "description": "Enter as: 'LAYER / Percent' Ex: 57/100 with the layer first, then a '/' to delimit, and then the fan percentage.", + "type": "str", + "default_value": "", + "unit": "L#/% ", + "enabled": "fan_layer_or_feature == 'by_layer'" + }, + "layer_fan_4th": + { + "label": "Layer/Percent #4", + "description": "Enter as: 'LAYER / Percent' Ex: 57/100 with the layer first, then a '/' to delimit, and then the fan percentage.", + "type": "str", + "default_value": "", + "unit": "L#/% ", + "enabled": "fan_layer_or_feature == 'by_layer'" + }, + "layer_fan_5th": + { + "label": "Layer/Percent #5", + "description": "Enter as: 'LAYER / Percent' Ex: 57/100 with the layer first, then a '/' to delimit, and then the fan percentage.", + "type": "str", + "default_value": "", + "unit": "L#/% ", + "enabled": "fan_layer_or_feature == 'by_layer'" + }, + "layer_fan_6th": + { + "label": "Layer/Percent #6", + "description": "Enter as: 'LAYER / Percent' Ex: 57/100 with the layer first, then a '/' to delimit, and then the fan percentage.", + "type": "str", + "default_value": "", + "unit": "L#/% ", + "enabled": "fan_layer_or_feature == 'by_layer'" + }, + "layer_fan_7th": + { + "label": "Layer/Percent #7", + "description": "Enter as: 'LAYER / Percent' Ex: 57/100 with the layer first, then a '/' to delimit, and then the fan percentage.", + "type": "str", + "default_value": "", + "unit": "L#/% ", + "enabled": "fan_layer_or_feature == 'by_layer'" + }, + "layer_fan_8th": + { + "label": "Layer/Percent #8", + "description": "Enter as: 'LAYER / Percent' Ex: 57/100 with the layer first, then a '/' to delimit, and then the fan percentage.", + "type": "str", + "default_value": "", + "unit": "L#/% ", + "enabled": "fan_layer_or_feature == 'by_layer'" + }, + "feature_fan_skirt": + { + "label": "Skirt/Brim/Ooze Shield %", + "description": "Enter the fan percentage for skirt/brim. If you are starting at a layer above 1 then this setting only affects Ooze Shields and from the Start layer up.", + "type": "int", + "default_value": 0, + "minimum_value": 0, + "maximum_value": 100, + "unit": "% ", + "enabled": "fan_layer_or_feature == 'by_feature'" + }, + "feature_fan_wall_inner": + { + "label": "Inner Walls %", + "description": "Enter the fan percentage for the Wall-Inner.", + "type": "int", + "default_value": 35, + "minimum_value": 0, + "maximum_value": 100, + "unit": "% ", + "enabled": "fan_layer_or_feature == 'by_feature'" + }, + "feature_fan_wall_outer": + { + "label": "Outer Walls %", + "description": "Enter the fan percentage for the Wall-Outer.", + "type": "int", + "default_value": 75, + "minimum_value": 0, + "maximum_value": 100, + "unit": "% ", + "enabled": "fan_layer_or_feature == 'by_feature'" + }, + "feature_fan_fill": + { + "label": "Infill %", + "description": "Enter the fan percentage for the Infill.", + "type": "int", + "default_value": 35, + "minimum_value": 0, + "maximum_value": 100, + "unit": "% ", + "enabled": "fan_layer_or_feature == 'by_feature'" + }, + "feature_fan_skin": + { + "label": "Top/Bottom (Skin) %", + "description": "Enter the fan percentage for the Skins.", + "type": "int", + "default_value": 100, + "minimum_value": 0, + "maximum_value": 100, + "unit": "% ", + "enabled": "fan_layer_or_feature == 'by_feature'" + }, + "feature_fan_support": + { + "label": "Support %", + "description": "Enter the fan percentage for the Supports.", + "type": "int", + "default_value": 35, + "minimum_value": 0, + "maximum_value": 100, + "unit": "% ", + "enabled": "fan_layer_or_feature == 'by_feature'" + }, + "feature_fan_support_interface": + { + "label": "Support Interface %", + "description": "Enter the fan percentage for the Support Interface.", + "type": "int", + "default_value": 100, + "minimum_value": 0, + "maximum_value": 100, + "unit": "% ", + "enabled": "fan_layer_or_feature == 'by_feature'" + }, + "feature_fan_prime_tower": + { + "label": "Prime Tower %", + "description": "Enter the fan percentage for the Prime Tower (whether it's used or not).", + "type": "int", + "default_value": 35, + "minimum_value": 0, + "maximum_value": 100, + "unit": "% ", + "enabled": "fan_layer_or_feature == 'by_feature'" + }, + "feature_fan_bridge": + { + "label": "Bridge %", + "description": "Enter the fan percentage for any Bridging (whether it's used on not).", + "type": "int", + "default_value": 100, + "minimum_value": 0, + "maximum_value": 100, + "unit": "% ", + "enabled": "fan_layer_or_feature == 'by_feature'" + }, + "feature_fan_combing": + { + "label": "Fan 'OFF' during Combing:", + "description": "When checked will set the fan to 0% for combing moves over 5 lines long in the gcode. When un-checked the fan speed during combing is whatever the previous speed is set to.", + "type": "bool", + "enabled": "fan_layer_or_feature == 'by_feature'", + "default_value": true + }, + "feature_fan_feature_final": + { + "label": "Final %", + "description": "If you choose an 'End Layer' then this is the fan speed that will carry through to the end of the gcode file. It will go into effect at the 'END' of your end layer.", + "type": "int", + "default_value": 35, + "minimum_value": 0, + "maximum_value": 100, + "unit": "% ", + "enabled": "(int(feature_fan_end_layer) != -1) and (fan_layer_or_feature == 'by_feature')" + }, + "fan_enable_raft": + { + "label": "Enable Raft Cooling", + "description": "Enable the fan for the raft layers. When enabled the Raft Fan Speed will continue until another Layer or Feature setting over-rides it.", + "type": "bool", + "default_value": false, + "enabled": true + }, + "fan_raft_percent": + { + "label": "Raft Fan %:", + "description": "Enter the percentage for the Raft.", + "type": "int", + "default_value": 35, + "minimum_value": 0, + "maximum_value": 100, + "unit": "% ", + "enabled": "fan_enable_raft" + } + } + }""" + + def initialize(self) -> None: + super().initialize() + scripts = Application.getInstance().getGlobalContainerStack().getMetaDataEntry("post_processing_scripts") + if scripts != None: + script_count = scripts.count("AddCoolingProfile") + if script_count > 0: + ## Set the default to "false" if there is more than one instance of this script running. + self._instance.setProperty("delete_existing_m106", "value", False) + + def execute(self, data): + #Initialize variables that are buried in if statements. + mycura = Application.getInstance().getGlobalContainerStack() + t0_fan = " P0"; t1_fan = " P0"; t2_fan = " P0"; t3_fan = " P0"; is_multi_extr_print = True + + #Get some information from Cura----------------------------------- + extruder = mycura.extruderList + + #This will be true when fan scale is 0-255pwm and false when it's RepRap 0-1 (Cura 5.x) + fan_mode = True + ##For 4.x versions that don't have the 0-1 option + try: + fan_mode = not bool(extruder[0].getProperty("machine_scale_fan_speed_zero_to_one", "value")) + except: + pass + bed_adhesion = (extruder[0].getProperty("adhesion_type", "value")) + extruder_count = mycura.getProperty("machine_extruder_count", "value") + print_sequence = str(mycura.getProperty("print_sequence", "value")) + + #Assign the fan numbers to the tools------------------------------ + if extruder_count == 1: + is_multi_fan = False + is_multi_extr_print = False + if int((extruder[0].getProperty("machine_extruder_cooling_fan_number", "value"))) > 0: + t0_fan = " P" + str((extruder[0].getProperty("machine_extruder_cooling_fan_number", "value"))) + else: + #No P parameter if there is a single fan circuit------------------ + t0_fan = "" + elif extruder_count > 1: + is_multi_fan = True + t0_fan = " P" + str((extruder[0].getProperty("machine_extruder_cooling_fan_number", "value"))) + if is_multi_fan: + if extruder_count > 1: t1_fan = " P" + str((extruder[1].getProperty("machine_extruder_cooling_fan_number", "value"))) + if extruder_count > 2: t2_fan = " P" + str((extruder[2].getProperty("machine_extruder_cooling_fan_number", "value"))) + if extruder_count > 3: t3_fan = " P" + str((extruder[3].getProperty("machine_extruder_cooling_fan_number", "value"))) + + #Initialize the fan_list with defaults---------------------------- + fan_list = ["z"] * 16 + for num in range(0,15,2): + fan_list[num + 1] = "M106 S0" + + #Assign the variable values if "By Layer"------------------------- + by_layer_or_feature = self.getSettingValueByKey("fan_layer_or_feature") + if by_layer_or_feature == "by_layer": + ## By layer doesn't do any feature search + feature_fan_combing = False + fan_list[0] = self.getSettingValueByKey("layer_fan_1st") + fan_list[2] = self.getSettingValueByKey("layer_fan_2nd") + fan_list[4] = self.getSettingValueByKey("layer_fan_3rd") + fan_list[6] = self.getSettingValueByKey("layer_fan_4th") + fan_list[8] = self.getSettingValueByKey("layer_fan_5th") + fan_list[10] = self.getSettingValueByKey("layer_fan_6th") + fan_list[12] = self.getSettingValueByKey("layer_fan_7th") + fan_list[14] = self.getSettingValueByKey("layer_fan_8th") + ## If there is no '/' delimiter then ignore the line else put the settings in a list + for num in range(0,15,2): + if "/" in fan_list[num]: + fan_list[num + 1] = self._layer_checker(fan_list[num], "p", fan_mode) + fan_list[num] = self._layer_checker(fan_list[num], "l", fan_mode) + + ## Assign the variable values if "By Feature" + elif by_layer_or_feature == "by_feature": + the_start_layer = self.getSettingValueByKey("feature_fan_start_layer") - 1 + the_end_layer = self.getSettingValueByKey("feature_fan_end_layer") + try: + if int(the_end_layer) != -1: + ## Catch a possible input error. + if the_end_layer < the_start_layer: + the_end_layer = the_start_layer + except: + the_end_layer = -1 ## If there is an input error default to the entire gcode file. + + ## Get the speed for each feature + # 0;TYPE:SKIRT, 1;TYPE:WALL-INNER, 2;TYPE:WALL-OUTER, 3;TYPE:FILL, 4;TYPE:SKIN, 5;TYPE:SUPPORT, 6;TYPE:SUPPORT-INTERFACE, 7;TYPE:PRIME-TOWER, 8;BRIDGE, 9;FEATURE_FINAL, 10;FAN_COMBING, + fan_sp_skirt = self._feature_checker(self.getSettingValueByKey("feature_fan_skirt"), fan_mode) + fan_sp_wall_inner = self._feature_checker(self.getSettingValueByKey("feature_fan_wall_inner"), fan_mode) + fan_sp_wall_outer = self._feature_checker(self.getSettingValueByKey("feature_fan_wall_outer"), fan_mode) + fan_sp_fill = self._feature_checker(self.getSettingValueByKey("feature_fan_fill"), fan_mode) + fan_sp_skin = self._feature_checker(self.getSettingValueByKey("feature_fan_skin"), fan_mode) + fan_sp_support = self._feature_checker(self.getSettingValueByKey("feature_fan_support"), fan_mode) + fan_sp_support_interface = self._feature_checker(self.getSettingValueByKey("feature_fan_support_interface"), fan_mode) + fan_sp_prime_tower = self._feature_checker(self.getSettingValueByKey("feature_fan_prime_tower"), fan_mode) + fan_sp_bridge = self._feature_checker(self.getSettingValueByKey("feature_fan_bridge"), fan_mode) + fan_sp_feature_final = self._feature_checker(self.getSettingValueByKey("feature_fan_feature_final"), fan_mode) + feature_fan_combing = self.getSettingValueByKey("feature_fan_combing") + if the_end_layer > -1 and by_layer_or_feature == "by_feature": + ## Required so the final speed input can be determined + the_end_is_enabled = True + else: + ## There is no ending layer so do the whole file + the_end_is_enabled = False + if the_end_layer == -1 or the_end_is_enabled == False: + the_end_layer = len(data) + 2 + + ## Find the Layer0Index and the RaftIndex + raft_start_index = 0 + number_of_raft_layers = 0 + layer_0_index = 0 + ## Catch the number of raft layers. + for l_num in range(1,10,1): + layer = data[l_num] + if ";LAYER:-" in layer: + number_of_raft_layers += 1 + if raft_start_index == 0: + raft_start_index = l_num + if ";LAYER:0" in layer: + layer_0_index = l_num + break + + ## Is this a single extruder print on a multi-extruder printer? - get the correct fan number for the extruder being used. + if is_multi_fan: + T0_used = False + T1_used = False + T2_used = False + T3_used = False + ## Bypass the file header and ending gcode. + for num in range(1,len(data)-1,1): + lines = data[num] + if "T0" in lines: + T0_used = True + if "T1" in lines: + T1_used = True + if "T2" in lines: + T2_used = True + if "T3" in lines: + T3_used = True + is_multi_extr_print = True if sum([T0_used, T1_used, T2_used, T3_used]) > 1 else False + + ## On a multi-extruder printer and single extruder print find out which extruder starts the file. + init_fan = t0_fan + if not is_multi_extr_print: + startup = data[1] + lines = startup.split("\n") + for line in lines: + if line == "T1": + t0_fan = t1_fan + elif line == "T2": + t0_fan = t2_fan + elif line == "T3": + t0_fan = t3_fan + elif is_multi_extr_print: + ## On a multi-extruder printer and multi extruder print find out which extruder starts the file. + startup = data[1] + lines = startup.split("\n") + for line in lines: + if line == "T0": + init_fan = t0_fan + elif line == "T1": + init_fan = t1_fan + elif line == "T2": + init_fan = t2_fan + elif line == "T3": + init_fan = t3_fan + else: + init_fan = "" + ## Assign the variable values if "Raft Enabled" + raft_enabled = self.getSettingValueByKey("fan_enable_raft") + if raft_enabled and bed_adhesion == "raft": + fan_sp_raft = self._feature_checker(self.getSettingValueByKey("fan_raft_percent"), fan_mode) + else: + fan_sp_raft = "M106 S0" + + # Start to alter the data----------------------------------------- + ## Strip the existing M106 lines from the file up to the end of the last layer. If a user wants to use more than one instance of this plugin then they won't want to erase the M106 lines that the preceding plugins inserted so 'delete_existing_m106' is an option. + delete_existing_m106 = self.getSettingValueByKey("delete_existing_m106") + if delete_existing_m106: + ## Start deleting from the beginning + start_from = int(raft_start_index) + else: + if by_layer_or_feature == "by_layer": + altered_start_layer = str(len(data)) + ## The fan list layers don't need to be in ascending order. Get the lowest. + for num in range(0,15,2): + if int(fan_list[num]) < int(altered_start_layer): + altered_start_layer = int(fan_list[num]) + elif by_layer_or_feature == "by_feature": + altered_start_layer = int(the_start_layer) - 1 + start_from = int(layer_0_index) + int(altered_start_layer) + + ## Strip the M106 and M107 lines from the file + for l_index in range(int(start_from), len(data) - 1, 1): + data[l_index] = re.sub(re.compile("M106(.*)\n"), "", data[l_index]) + data[l_index] = re.sub(re.compile("M107(.*)\n"), "", data[l_index]) + + ## Deal with a raft and with One-At-A-Time + if raft_enabled and bed_adhesion == "raft": + if print_sequence == "one_at_a_time": + for r_index in range(2,len(data)-2,1): + lines = data[r_index].split("\n") + if not raft_enabled or bed_adhesion != "raft": + if ";LAYER:0" in data[r_index] or ";LAYER:-" in data[r_index]: + lines.insert(1, "M106 S0" + str(t0_fan)) + if raft_enabled and bed_adhesion == "raft": + if ";LAYER:-" in data[r_index]: + ## Turn the raft fan on + lines.insert(1, fan_sp_raft + str(t0_fan)) + ## Shut the raft fan off + if ";LAYER:0" in data[r_index]: + lines.insert(1,"M106 S0" + str(t0_fan)) + data[r_index] = "\n".join(lines) + elif print_sequence == "all_at_once": + layer = data[raft_start_index] + lines = layer.split("\n") + if ";LAYER:-" in layer: + ## Turn the raft fan on + lines.insert(1, fan_sp_raft + str(init_fan)) + layer = "\n".join(lines) + data[raft_start_index] = layer + layer = data[layer_0_index] + lines = layer.split("\n") + ## Shut the raft fan off + lines.insert(1, "M106 S0" + str(init_fan)) + data[layer_0_index] = "\n".join(lines) + else: + for r_index in range(2,len(data)-2,1): + lines = data[r_index].split("\n") + if ";LAYER:0" in data[r_index] or ";LAYER:-" in data[r_index]: + if not "0" in fan_list: + lines.insert(1, "M106 S0" + str(t0_fan)) + data[r_index] = "\n".join(lines) + + ## Turn off all fans at the end of data[1] + temp_startup = data[1].split("\n") + temp_startup.insert(len(temp_startup)-2,"M106 S0" + str(t0_fan)) + ## If there are multiple cooling fans shut them all off + if is_multi_fan: + if extruder_count > 1 and t1_fan != t0_fan: temp_startup.insert(len(temp_startup)-2,"M106 S0" + str(t1_fan)) + if extruder_count > 2 and t2_fan != t1_fan and t2_fan != t0_fan: temp_startup.insert(len(temp_startup)-2,"M106 S0" + str(t2_fan)) + if extruder_count > 3 and t3_fan != t2_fan and t3_fan != t1_fan and t3_fan != t0_fan: temp_startup.insert(len(temp_startup)-2,"M106 S0" + str(t3_fan)) + data[1] = "\n".join(temp_startup) + + ## If 'feature_fan_combing' is True then add additional 'MESH:NONMESH' lines for travel moves over 5 lines long + ## For compatibility with 5.3.0 change any MESH:NOMESH to MESH:NONMESH. + if feature_fan_combing: + for layer_num in range(2,len(data)): + layer = data[layer_num] + data[layer_num] = re.sub(";MESH:NOMESH", ";MESH:NONMESH", layer) + data = self._add_travel_comment(data, layer_0_index) + + # Single Fan "By Layer"-------------------------------------------- + if by_layer_or_feature == "by_layer" and not is_multi_fan: + return self._single_fan_by_layer(data, layer_0_index, fan_list, t0_fan) + + # Multi-Fan "By Layer"--------------------------------------------- + if by_layer_or_feature == "by_layer" and is_multi_fan: + return self._multi_fan_by_layer(data, layer_0_index, fan_list, t0_fan, t1_fan, t2_fan, t3_fan) + + #Single Fan "By Feature"------------------------------------------ + if by_layer_or_feature == "by_feature" and (not is_multi_fan or not is_multi_extr_print): + return self._single_fan_by_feature(data, layer_0_index, the_start_layer, the_end_layer, the_end_is_enabled, fan_list, t0_fan, fan_sp_skirt, fan_sp_wall_inner, fan_sp_wall_outer, fan_sp_fill, fan_sp_skin, fan_sp_support, fan_sp_support_interface, feature_fan_combing, fan_sp_prime_tower, fan_sp_bridge, fan_sp_feature_final) + + #Multi Fan "By Feature"------------------------------------------- + if by_layer_or_feature == "by_feature" and is_multi_fan: + return self._multi_fan_by_feature(data, layer_0_index, the_start_layer, the_end_layer, the_end_is_enabled, fan_list, t0_fan, t1_fan, t2_fan, t3_fan, fan_sp_skirt, fan_sp_wall_inner, fan_sp_wall_outer, fan_sp_fill, fan_sp_skin, fan_sp_support, fan_sp_support_interface, feature_fan_combing, fan_sp_prime_tower, fan_sp_bridge, fan_sp_feature_final) + + # The Single Fan "By Layer"---------------------------------------- + def _single_fan_by_layer(self, data: str, layer_0_index: int, fan_list: str, t0_fan: str)->str: + layer_number = "0" + single_fan_layer = data + for l_index in range(layer_0_index,len(single_fan_layer)-1,1): + layer = single_fan_layer[l_index] + fan_lines = layer.split("\n") + for fan_line in fan_lines: + if ";LAYER:" in fan_line: + layer_number = int(fan_line.split(":")[1]) + ## If there is a match for the current layer number make the insertion. + try: + for num in range(0,15,2): + if int(layer_number) == int(fan_list[num]): + layer = layer.replace(fan_lines[0],fan_lines[0] + "\n" + fan_list[num + 1] + str(t0_fan)) + single_fan_layer[l_index] = layer + except: + continue + return single_fan_layer + + # Multi-Fan "By Layer"----------------------------------------- + def _multi_fan_by_layer(self, data: str, layer_0_index: int, fan_list: str, t0_fan: str, t1_fan: str, t2_fan: str, t3_fan: str)->str: + multi_fan_data = data + layer_number = "0" + current_fan_speed = "0" + prev_fan = str(t0_fan) + this_fan = str(t0_fan) + start_index = str(len(multi_fan_data)) + for num in range(0,15,2): + ## The fan_list may not be in ascending order. Get the lowest layer number + try: + if int(fan_list[num]) < int(start_index): + start_index = str(fan_list[num]) + except: + pass + ## Move the start point if delete_existing_m106 is false + start_index = int(start_index) + int(layer_0_index) + ## Track the tool number + for num in range(1,int(start_index),1): + layer = multi_fan_data[num] + lines = layer.split("\n") + for line in lines: + if line == "T0": + prev_fan = this_fan + this_fan = t0_fan + elif line == "T1": + prev_fan = this_fan + this_fan = t1_fan + elif line == "T2": + prev_fan = this_fan + this_fan = t2_fan + elif line == "T3": + prev_fan = this_fan + this_fan = t3_fan + for l_index in range(int(start_index),len(multi_fan_data)-1,1): + modified_data = "" + layer = multi_fan_data[l_index] + fan_lines = layer.split("\n") + for fan_line in fan_lines: + ## Prepare to shut down the previous fan and start the next one. + if fan_line.startswith("T"): + if fan_line == "T0": this_fan = str(t0_fan) + if fan_line == "T1": this_fan = str(t1_fan) + if fan_line == "T2": this_fan = str(t2_fan) + if fan_line == "T3": this_fan = str(t3_fan) + modified_data += "M106 S0" + prev_fan + "\n" + modified_data += fan_line + "\n" + modified_data += "M106 S" + str(current_fan_speed) + this_fan + "\n" + prev_fan = this_fan + elif ";LAYER:" in fan_line: + modified_data += fan_line + "\n" + layer_number = str(fan_line.split(":")[1]) + for num in range(0,15,2): + if layer_number == str(fan_list[num]): + modified_data += fan_list[num + 1] + this_fan + "\n" + current_fan_speed = str(fan_list[num + 1].split("S")[1]) + current_fan_speed = str(current_fan_speed.split(" ")[0]) ## Just in case + else: + modified_data += fan_line + "\n" + if modified_data.endswith("\n"): modified_data = modified_data[0:-1] + multi_fan_data[l_index] = modified_data + return multi_fan_data + + # Single fan by feature----------------------------------------------- + def _single_fan_by_feature(self, data: str, layer_0_index: int, the_start_layer: str, the_end_layer: str, the_end_is_enabled: str, fan_list: str, t0_fan: str, fan_sp_skirt: str, fan_sp_wall_inner: str, fan_sp_wall_outer: str, fan_sp_fill: str, fan_sp_skin: str, fan_sp_support: str, fan_sp_support_interface: str, feature_fan_combing: str, fan_sp_prime_tower: str, fan_sp_bridge: str, fan_sp_feature_final: str)->str: + single_fan_data = data + layer_number = "0" + index = 1 + ## Start with layer:0 + for l_index in range(layer_0_index,len(single_fan_data)-1,1): + modified_data = "" + layer = single_fan_data[l_index] + lines = layer.split("\n") + for line in lines: + if ";LAYER:" in line: + layer_number = str(line.split(":")[1]) + if int(layer_number) >= int(the_start_layer) and int(layer_number) < int(the_end_layer)-1: + if ";TYPE:SKIRT" in line: + modified_data += fan_sp_skirt + t0_fan + "\n" + elif ";TYPE:WALL-INNER" in line: + modified_data += fan_sp_wall_inner + t0_fan + "\n" + elif ";TYPE:WALL-OUTER" in line: + modified_data += fan_sp_wall_outer + t0_fan + "\n" + elif ";TYPE:FILL" in line: + modified_data += fan_sp_fill + t0_fan + "\n" + elif ";TYPE:SKIN" in line: + modified_data += fan_sp_skin + t0_fan + "\n" + elif line == ";TYPE:SUPPORT": + modified_data += fan_sp_support + t0_fan + "\n" + elif ";TYPE:SUPPORT-INTERFACE" in line: + modified_data += fan_sp_support_interface + t0_fan + "\n" + elif ";MESH:NONMESH" in line: + if feature_fan_combing == True: + modified_data += "M106 S0" + t0_fan + "\n" + elif ";TYPE:PRIME-TOWER" in line: + modified_data += fan_sp_prime_tower + t0_fan + "\n" + elif line == ";BRIDGE": + modified_data += fan_sp_bridge + t0_fan + "\n" + modified_data += line + "\n" + ## If an End Layer is defined and is less than the last layer then insert the Final Speed + if line == ";LAYER:" + str(the_end_layer) and the_end_is_enabled == True: + modified_data += fan_sp_feature_final + t0_fan + "\n" + if modified_data.endswith("\n"): modified_data = modified_data[0: - 1] + single_fan_data[l_index] = modified_data + return single_fan_data + + # Multi-fan by feature------------------------------------------------ + def _multi_fan_by_feature(self, data: str, layer_0_index: int, the_start_layer: str, the_end_layer: str, the_end_is_enabled: str, fan_list: str, t0_fan: str, t1_fan: str, t2_fan: str, t3_fan: str, fan_sp_skirt: str, fan_sp_wall_inner: str, fan_sp_wall_outer: str, fan_sp_fill: str, fan_sp_skin: str, fan_sp_support: str, fan_sp_support_interface: str, feature_fan_combing: str, fan_sp_prime_tower: str, fan_sp_bridge: str, fan_sp_feature_final: str)->str: + multi_fan_data = data + layer_number = "0" + start_index = 1 + prev_fan = t0_fan + this_fan = t0_fan + modified_data = "" + current_fan_speed = "0" + for my_index in range(1, len(multi_fan_data) - 1, 1): + layer = multi_fan_data[my_index] + if ";LAYER:" + str(the_start_layer) + "\n" in layer: + start_index = int(my_index) - 1 + break + ## Track the previous tool changes + for num in range(1,start_index,1): + layer = multi_fan_data[num] + lines = layer.split("\n") + for line in lines: + if line == "T0": + prev_fan = this_fan + this_fan = t0_fan + elif line == "T1": + prev_fan = this_fan + this_fan = t1_fan + elif line == "T2": + prev_fan = this_fan + this_fan = t2_fan + elif line == "T3": + prev_fan = this_fan + this_fan = t3_fan + ## Get the current tool. + for l_index in range(start_index,start_index + 1,1): + layer = multi_fan_data[l_index] + lines = layer.split("\n") + for line in lines: + if line.startswith("T"): + if line == "T0": this_fan = t0_fan + if line == "T1": this_fan = t1_fan + if line == "T2": this_fan = t2_fan + if line == "T3": this_fan = t3_fan + prev_fan = this_fan + + ## Start to make insertions------------------------------------- + for l_index in range(start_index+1,len(multi_fan_data)-1,1): + layer = multi_fan_data[l_index] + lines = layer.split("\n") + for line in lines: + if line.startswith("T"): + if line == "T0": this_fan = t0_fan + if line == "T1": this_fan = t1_fan + if line == "T2": this_fan = t2_fan + if line == "T3": this_fan = t3_fan + ## Turn off the prev fan + modified_data += "M106 S0" + prev_fan + "\n" + modified_data += line + "\n" + ## Turn on the current fan + modified_data += "M106 S" + str(current_fan_speed) + this_fan + "\n" + prev_fan = this_fan + if ";LAYER:" in line: + layer_number = str(line.split(":")[1]) + modified_data += line + "\n" + if int(layer_number) >= int(the_start_layer): # Problem with oneatatime < start + if ";TYPE:SKIRT" in line: + modified_data += line + "\n" + modified_data += fan_sp_skirt + this_fan + "\n" + current_fan_speed = str(fan_sp_skirt.split("S")[1]) + elif ";TYPE:WALL-INNER" in line: + modified_data += line + "\n" + modified_data += fan_sp_wall_inner + this_fan + "\n" + current_fan_speed = str(fan_sp_wall_inner.split("S")[1]) + elif ";TYPE:WALL-OUTER" in line: + modified_data += line + "\n" + modified_data += fan_sp_wall_outer + this_fan + "\n" + current_fan_speed = str(fan_sp_wall_outer.split("S")[1]) + elif ";TYPE:FILL" in line: + modified_data += line + "\n" + modified_data += fan_sp_fill + this_fan + "\n" + current_fan_speed = str(fan_sp_fill.split("S")[1]) + elif ";TYPE:SKIN" in line: + modified_data += line + "\n" + modified_data += fan_sp_skin + this_fan + "\n" + current_fan_speed = str(fan_sp_skin.split("S")[1]) + elif line == ";TYPE:SUPPORT": + modified_data += line + "\n" + modified_data += fan_sp_support + this_fan + "\n" + current_fan_speed = str(fan_sp_support.split("S")[1]) + elif ";TYPE:SUPPORT-INTERFACE" in line: + modified_data += line + "\n" + modified_data += fan_sp_support_interface + this_fan + "\n" + current_fan_speed = str(fan_sp_support_interface.split("S")[1]) + elif ";MESH:NONMESH" in line: + if feature_fan_combing == True: + modified_data += line + "\n" + modified_data += "M106 S0" + this_fan + "\n" + current_fan_speed = "0" + else: + modified_data += line + "\n" + elif ";TYPE:PRIME-TOWER" in line: + modified_data += line + "\n" + modified_data += fan_sp_prime_tower + this_fan + "\n" + current_fan_speed = str(fan_sp_prime_tower.split("S")[1]) + elif line == ";BRIDGE": + modified_data += line + "\n" + modified_data += fan_sp_bridge + this_fan + "\n" + current_fan_speed = str(fan_sp_bridge.split("S")[1]) + ## If an end layer is defined - Insert the final speed and set the other variables to Final Speed to finish the file + ## There cannot be a break here because if there are multiple fan numbers they still need to be shut off and turned on. + elif line == ";LAYER:" + str(the_end_layer): + modified_data += fan_sp_feature_final + this_fan + "\n" + fan_sp_skirt = fan_sp_feature_final + fan_sp_wall_inner = fan_sp_feature_final + fan_sp_wall_outer = fan_sp_feature_final + fan_sp_fill = fan_sp_feature_final + fan_sp_skin = fan_sp_feature_final + fan_sp_support = fan_sp_feature_final + fan_sp_support_interface = fan_sp_feature_final + fan_sp_prime_tower = fan_sp_feature_final + fan_sp_bridge = fan_sp_feature_final + else: + ## Layer and Tool get inserted into modified_data above. All other lines go into modified_data here + if not line.startswith("T") and not line.startswith(";LAYER:"): modified_data += line + "\n" + if modified_data.endswith("\n"): modified_data = modified_data[0: - 1] + multi_fan_data[l_index] = modified_data + modified_data = "" + return multi_fan_data + + #Try to catch layer input errors, set the minimum speed to 12%, and put the strings together + def _layer_checker(self, fan_string: str, ty_pe: str, fan_mode: bool) -> str: + fan_string_l = str(fan_string.split("/")[0]) + try: + if int(fan_string_l) <= 1: fan_string_l = "1" + if fan_string_l == "": fan_string_l = str(len(data)) + except ValueError: + fan_string_l = str(len(data)) + fan_string_l = str(int(fan_string_l) - 1) + fan_string_p = str(fan_string.split("/")[1]) + if fan_string_p == "": fan_string_p = "0" + try: + if int(fan_string_p) < 0: fan_string_p = "0" + if int(fan_string_p) > 100: fan_string_p = "100" + except ValueError: + fan_string_p = "0" + ## Set the minimum fan speed to 12% + if int(fan_string_p) < 12 and int(fan_string_p) != 0: + fan_string_p = "12" + fan_layer_line = str(fan_string_l) + if fan_mode: + fan_percent_line = "M106 S" + str(round(int(fan_string_p) * 2.55)) + else: + fan_percent_line = "M106 S" + str(round(int(fan_string_p) / 100, 1)) + if ty_pe == "l": + return str(fan_layer_line) + elif ty_pe == "p": + return fan_percent_line + + #Try to catch feature input errors, set the minimum speed to 12%, and put the strings together when 'By Feature' + def _feature_checker(self, fan_feat_string: int, fan_mode: bool) -> str: + if fan_feat_string < 0: fan_feat_string = 0 + ## Set the minimum fan speed to 12% + if fan_feat_string > 0 and fan_feat_string < 12: fan_feat_string = 12 + if fan_feat_string > 100: fan_feat_string = 100 + if fan_mode: + fan_sp_feat = "M106 S" + str(round(fan_feat_string * 2.55)) + else: + fan_sp_feat = "M106 S" + str(round(fan_feat_string / 100, 1)) + return fan_sp_feat + + # Add additional travel comments to turn the fan off during combing. + def _add_travel_comment(self, the_data: str, lay_0_index: str) -> str: + for lay_num in range(int(lay_0_index), len(the_data)-1,1): + layer = the_data[lay_num] + lines = layer.split("\n") + ## Copy the data to new_data and make the insertions there + new_data = lines + g0_count = 0 + g0_index = -1 + feature_type = ";TYPE:SUPPORT" + is_travel = False + for index, line in enumerate(lines): + insert_index = 0 + if ";TYPE:" in line: + feature_type = line + is_travel = False + g0_count = 0 + if ";MESH:NONMESH" in line: + is_travel = True + g0_count = 0 + if line.startswith("G0 ") and not is_travel: + g0_count += 1 + if g0_index == -1: + g0_index = lines.index(line) + elif not line.startswith("G0 ") and not is_travel: + ## Add additional 'NONMESH' lines to shut the fan off during long combing moves-------- + if g0_count > 5: + if not is_travel: + new_data.insert(g0_index + insert_index, ";MESH:NONMESH") + insert_index += 1 + ## Add the feature_type at the end of the combing move to turn the fan back on + new_data.insert(g0_index + g0_count + 1, feature_type) + insert_index += 1 + g0_count = 0 + g0_index = -1 + is_travel = False + elif g0_count <= 5: + g0_count = 0 + g0_index = -1 + is_travel = False + the_data[lay_num] = "\n".join(new_data) + return the_data \ No newline at end of file From 13deab505ea06e8a352bd93615bfabe67775b210 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Mon, 8 Jan 2024 11:32:25 +0100 Subject: [PATCH 344/765] Add/reorganize settings for raft walls CURA-11228 --- resources/definitions/fdmprinter.def.json | 59 ++++++++++++++++++----- resources/setting_visibility/expert.cfg | 1 + 2 files changed, 49 insertions(+), 11 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 2b37b3d7acf..32908b6f3e5 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6329,6 +6329,54 @@ "settable_per_extruder": true, "limit_to_extruder": "raft_base_extruder_nr" }, + "raft_wall_count": + { + "label": "Raft Wall Count", + "description": "The number of contours to print around the linear pattern of the raft.", + "type": "int", + "default_value": 1, + "minimum_value": "0", + "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "settable_per_mesh": false, + "settable_per_extruder": false, + "children": + { + "raft_surface_wall_count": + { + "label": "Raft Top Wall Count", + "description": "The number of contours to print around the linear pattern in the top layers of the raft.", + "type": "int", + "default_value": 0, + "minimum_value": "0", + "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "settable_per_mesh": false, + "settable_per_extruder": false + }, + "raft_interface_wall_count": + { + "label": "Raft Middle Wall Count", + "description": "The number of contours to print around the linear pattern in the middle layers of the raft.", + "type": "int", + "default_value": 0, + "minimum_value": "0", + "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "settable_per_mesh": false, + "settable_per_extruder": false + }, + "raft_base_wall_count": + { + "label": "Raft Base Wall Count", + "description": "The number of contours to print around the linear pattern in the base layer of the raft.", + "type": "int", + "default_value": 1, + "value": "raft_wall_count", + "minimum_value": "0", + "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "settable_per_mesh": false, + "settable_per_extruder": false + } + } + }, "raft_speed": { "label": "Raft Print Speed", @@ -8286,17 +8334,6 @@ "settable_per_mesh": false, "settable_per_extruder": false }, - "raft_base_wall_count": - { - "label": "Raft Base Wall Count", - "description": "The number of contours to print around the linear pattern in the base layer of the raft.", - "type": "int", - "default_value": 1, - "enabled": "resolveOrValue('adhesion_type') == 'raft'", - "resolve": "max(extruderValues('raft_base_wall_count'))", - "settable_per_mesh": false, - "settable_per_extruder": false - }, "group_outer_walls": { "label": "Group Outer Walls", diff --git a/resources/setting_visibility/expert.cfg b/resources/setting_visibility/expert.cfg index 2f2dd7671d0..384f8d25287 100644 --- a/resources/setting_visibility/expert.cfg +++ b/resources/setting_visibility/expert.cfg @@ -344,6 +344,7 @@ raft_interface_line_spacing raft_base_thickness raft_base_line_width raft_base_line_spacing +raft_wall_count raft_speed raft_acceleration raft_jerk From 68460c55474ac92b6c781df29db6d5567bcd3323 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 8 Jan 2024 12:47:28 +0100 Subject: [PATCH 345/765] Also run on 5.6E branch Fixes CURA-11523 --- .github/workflows/conan-package.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/conan-package.yml b/.github/workflows/conan-package.yml index 7ca2b0c4675..faa970270d3 100644 --- a/.github/workflows/conan-package.yml +++ b/.github/workflows/conan-package.yml @@ -20,12 +20,8 @@ on: - 'main' - 'CURA-*' - 'PP-*' - - '[0-9].[0-9]' - - '[0-9].[0-9][0-9]' - tags: - - '[0-9].[0-9].[0-9]*' - - '[0-9].[0-9].[0-9]' - - '[0-9].[0-9][0-9].[0-9]*' + - '[0-9].[0-9]*' + - '[0-9].[0-9][0-9]*' env: CONAN_LOGIN_USERNAME_CURA: ${{ secrets.CONAN_USER }} From 677f35b5159e53fded2d4c31b2ca58ede6b28373 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 8 Jan 2024 11:06:20 +0100 Subject: [PATCH 346/765] use `input` instead of the `github.events` Fixes CURA-11523 --- .github/workflows/installers.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/installers.yml b/.github/workflows/installers.yml index 6e531ba8334..9c51cfe820f 100644 --- a/.github/workflows/installers.yml +++ b/.github/workflows/installers.yml @@ -54,9 +54,9 @@ jobs: needs: [ default_values ] with: cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} - conan_args: ${{ github.event.inputs.conan_args }} - enterprise: ${{ github.event.inputs.enterprise == 'true' }} - staging: ${{ github.event.inputs.staging == 'true' }} + conan_args: ${{ inputs.conan_args }} + enterprise: ${{ inputs.enterprise }} + staging: ${{ inputs.staging }} architecture: X64 operating_system: windows-2022 secrets: inherit @@ -66,9 +66,9 @@ jobs: needs: [ default_values ] with: cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} - conan_args: ${{ github.event.inputs.conan_args }} - enterprise: ${{ github.event.inputs.enterprise == 'true' }} - staging: ${{ github.event.inputs.staging == 'true' }} + conan_args: ${{ inputs.conan_args }} + enterprise: ${{ inputs.enterprise }} + staging: ${{ inputs.staging }} architecture: X64 operating_system: ubuntu-22.04 secrets: inherit @@ -78,9 +78,9 @@ jobs: needs: [ default_values ] with: cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} - conan_args: ${{ github.event.inputs.conan_args }} - enterprise: ${{ github.event.inputs.enterprise == 'true' }} - staging: ${{ github.event.inputs.staging == 'true' }} + conan_args: ${{ inputs.conan_args }} + enterprise: ${{ inputs.enterprise }} + staging: ${{ inputs.staging }} architecture: X64 operating_system: self-hosted-X64 secrets: inherit @@ -90,9 +90,9 @@ jobs: needs: [ default_values ] with: cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} - conan_args: ${{ github.event.inputs.conan_args }} - enterprise: ${{ github.event.inputs.enterprise == 'true' }} - staging: ${{ github.event.inputs.staging == 'true' }} + conan_args: ${{ inputs.conan_args }} + enterprise: ${{ inputs.enterprise }} + staging: ${{ inputs.staging }} architecture: ARM64 operating_system: self-hosted-ARM64 secrets: inherit From 85a762aec38e8fc99d39addc0b58279f8e45078a Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 8 Jan 2024 11:17:16 +0100 Subject: [PATCH 347/765] sync workflow with 5.6E branch Fixes CURA-11523 --- .github/workflows/linux.yml | 11 +++-------- .github/workflows/macos.yml | 11 +++-------- .github/workflows/windows.yml | 11 +++-------- 3 files changed, 9 insertions(+), 24 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index f88b77a022f..08c59c91587 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -39,19 +39,14 @@ on: options: - ubuntu-22.04 -env: - CONAN_ARGS: ${{ inputs.conan_args || '' }} - ENTERPRISE: ${{ inputs.enterprise || false }} - STAGING: ${{ inputs.staging || false }} - jobs: - installer: + linux-installer: uses: ultimaker/cura-workflows/.github/workflows/cura-installer-linux.yml@main with: cura_conan_version: ${{ inputs.cura_conan_version }} conan_args: ${{ inputs.conan_args }} - enterprise: ${{ inputs.enterprise == 'true' }} - staging: ${{ inputs.staging == 'true' }} + enterprise: ${{ inputs.enterprise }} + staging: ${{ inputs.staging }} architecture: ${{ inputs.architecture }} operating_system: ${{ inputs.operating_system }} secrets: inherit \ No newline at end of file diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index e909b9f8397..9c940330e16 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -43,19 +43,14 @@ on: - macos-11 - macos-12 -env: - CONAN_ARGS: ${{ inputs.conan_args || '' }} - ENTERPRISE: ${{ inputs.enterprise || false }} - STAGING: ${{ inputs.staging || false }} - jobs: - installer: + macos-installer: uses: ultimaker/cura-workflows/.github/workflows/cura-installer-macos.yml@main with: cura_conan_version: ${{ inputs.cura_conan_version }} conan_args: ${{ inputs.conan_args }} - enterprise: ${{ inputs.enterprise == 'true' }} - staging: ${{ inputs.staging == 'true' }} + enterprise: ${{ inputs.enterprise }} + staging: ${{ inputs.staging }} architecture: ${{ inputs.architecture }} operating_system: ${{ inputs.operating_system }} secrets: inherit \ No newline at end of file diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 151935c3f31..22a81e9b2a4 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -39,19 +39,14 @@ on: options: - windows-2022 -env: - CONAN_ARGS: ${{ inputs.conan_args || '' }} - ENTERPRISE: ${{ inputs.enterprise || false }} - STAGING: ${{ inputs.staging || false }} - jobs: - installer: + windows-installer: uses: ultimaker/cura-workflows/.github/workflows/cura-installer-windows.yml@main with: cura_conan_version: ${{ inputs.cura_conan_version }} conan_args: ${{ inputs.conan_args }} - enterprise: ${{ inputs.enterprise == 'true' }} - staging: ${{ inputs.staging == 'true' }} + enterprise: ${{ inputs.enterprise }} + staging: ${{ inputs.staging }} architecture: ${{ inputs.architecture }} operating_system: ${{ inputs.operating_system }} secrets: inherit \ No newline at end of file From b60b07e2b26f4d676222d56d135a5dc274ffa41f Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 8 Jan 2024 13:13:53 +0100 Subject: [PATCH 348/765] build Conan packages This will compile the mo files. But be sure that `enable_i18n` option is still removed from the `package_id`. Such that the build conan package can also be used Fixes CURA-11497 --- .github/workflows/conan-package.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/conan-package.yml b/.github/workflows/conan-package.yml index faa970270d3..8faf1e27e1f 100644 --- a/.github/workflows/conan-package.yml +++ b/.github/workflows/conan-package.yml @@ -40,3 +40,11 @@ jobs: recipe_id_full: ${{ needs.conan-recipe-version.outputs.recipe_id_full }} recipe_id_latest: ${{ needs.conan-recipe-version.outputs.recipe_id_latest }} secrets: inherit + + conan-package-create: + needs: [ conan-recipe-version, conan-package-export ] + uses: ultimaker/cura-workflows/.github/workflows/conan-package-create-linux.yml@main + with: + recipe_id_full: ${{ needs.conan-recipe-version.outputs.recipe_id_full }} + conan_extra_args: "-o cura:enable_i18n=True" + secrets: inherit \ No newline at end of file From 11aa71a5dfa6e6bf321313511df61c019b80717b Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Mon, 8 Jan 2024 14:41:41 +0100 Subject: [PATCH 349/765] Singleton management in Cura -QualityManagementModel, MaterialManagementModel, SimpleModeSettingsManager, MachineActionManager and CustomQualityProfilesDropDownMenuModel *deleted* -QualityProfilesDropDownmenuModel changed to RegisterType CURA-7812 --- cura/CuraApplication.py | 22 +++++++++---------- resources/qml/Preferences/MachinesPage.qml | 4 +++- .../Custom/QualitiesWithIntentMenu.qml | 2 +- .../ProfileWarningReset.qml | 4 ++-- 4 files changed, 17 insertions(+), 15 deletions(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 1ef2f63a9e6..3243260b6e2 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -1138,6 +1138,10 @@ def getMachineActionManager(self, *args: Any) -> MachineActionManager.MachineAct return cast(MachineActionManager.MachineActionManager, self._machine_action_manager) + @pyqtSlot(result = QObject) + def getMachineActionManagerQml(self)-> MachineActionManager.MachineActionManager: + return cast(QObject, self._machine_action_manager) + @pyqtSlot(result = QObject) def getMaterialManagementModel(self) -> MaterialManagementModel: if not self._material_management_model: @@ -1150,7 +1154,8 @@ def getQualityManagementModel(self) -> QualityManagementModel: self._quality_management_model = QualityManagementModel(parent = self) return self._quality_management_model - def getSimpleModeSettingsManager(self, *args): + @pyqtSlot(result=QObject) + def getSimpleModeSettingsManager(self)-> SimpleModeSettingsManager: if self._simple_mode_settings_manager is None: self._simple_mode_settings_manager = SimpleModeSettingsManager() return self._simple_mode_settings_manager @@ -1193,12 +1198,14 @@ def getPrintInformation(self): return self._print_information - def getQualityProfilesDropDownMenuModel(self, *args, **kwargs): + pyqtSlot(result =QObject) + def getQualityProfilesDropDownMenuModel(self, *args, **kwargs)-> QualityProfilesDropDownMenuModel: if self._quality_profile_drop_down_menu_model is None: self._quality_profile_drop_down_menu_model = QualityProfilesDropDownMenuModel(self) return self._quality_profile_drop_down_menu_model - def getCustomQualityProfilesDropDownMenuModel(self, *args, **kwargs): + pyqtSlot(result=QObject) + def getCustomQualityProfilesDropDownMenuModel(self, *args, **kwargs)->CustomQualityProfilesDropDownMenuModel: if self._custom_quality_profile_drop_down_menu_model is None: self._custom_quality_profile_drop_down_menu_model = CustomQualityProfilesDropDownMenuModel(self) return self._custom_quality_profile_drop_down_menu_model @@ -1231,8 +1238,6 @@ def registerObjects(self, engine): qmlRegisterSingletonType(MachineManager, "Cura", 1, 0, self.getMachineManager, "MachineManager") qmlRegisterSingletonType(IntentManager, "Cura", 1, 6, self.getIntentManager, "IntentManager") qmlRegisterSingletonType(SettingInheritanceManager, "Cura", 1, 0, self.getSettingInheritanceManager, "SettingInheritanceManager") - qmlRegisterSingletonType(SimpleModeSettingsManager, "Cura", 1, 0, self.getSimpleModeSettingsManager, "SimpleModeSettingsManager") - qmlRegisterSingletonType(MachineActionManager.MachineActionManager, "Cura", 1, 0, self.getMachineActionManager, "MachineActionManager") self.processEvents() qmlRegisterType(NetworkingUtil, "Cura", 1, 5, "NetworkingUtil") @@ -1257,16 +1262,11 @@ def registerObjects(self, engine): qmlRegisterType(FavoriteMaterialsModel, "Cura", 1, 0, "FavoriteMaterialsModel") qmlRegisterType(GenericMaterialsModel, "Cura", 1, 0, "GenericMaterialsModel") qmlRegisterType(MaterialBrandsModel, "Cura", 1, 0, "MaterialBrandsModel") - qmlRegisterSingletonType(QualityManagementModel, "Cura", 1, 0, self.getQualityManagementModel, "QualityManagementModel") - qmlRegisterSingletonType(MaterialManagementModel, "Cura", 1, 5, self.getMaterialManagementModel, "MaterialManagementModel") self.processEvents() qmlRegisterType(DiscoveredPrintersModel, "Cura", 1, 0, "DiscoveredPrintersModel") qmlRegisterType(DiscoveredCloudPrintersModel, "Cura", 1, 7, "DiscoveredCloudPrintersModel") - qmlRegisterSingletonType(QualityProfilesDropDownMenuModel, "Cura", 1, 0, - self.getQualityProfilesDropDownMenuModel, "QualityProfilesDropDownMenuModel") - qmlRegisterSingletonType(CustomQualityProfilesDropDownMenuModel, "Cura", 1, 0, - self.getCustomQualityProfilesDropDownMenuModel, "CustomQualityProfilesDropDownMenuModel") + qmlRegisterType(QualityProfilesDropDownMenuModel, "Cura", 1, 0, "QualityProfilesDropDownMenuModel") qmlRegisterType(NozzleModel, "Cura", 1, 0, "NozzleModel") qmlRegisterType(IntentModel, "Cura", 1, 6, "IntentModel") qmlRegisterType(IntentCategoryModel, "Cura", 1, 6, "IntentCategoryModel") diff --git a/resources/qml/Preferences/MachinesPage.qml b/resources/qml/Preferences/MachinesPage.qml index fb98cb59c5f..971de03696a 100644 --- a/resources/qml/Preferences/MachinesPage.qml +++ b/resources/qml/Preferences/MachinesPage.qml @@ -12,6 +12,7 @@ import Cura 1.0 as Cura UM.ManagementPage { id: base + property var machineActionManager: CuraApplication.getMachineActionManagerQml() Item { enabled: false; UM.I18nCatalog { id: catalog; name: "cura"} } title: catalog.i18nc("@title:tab", "Printers") @@ -58,10 +59,11 @@ UM.ManagementPage anchors.fill: parent spacing: UM.Theme.getSize("default_margin").height + Repeater { id: machineActionRepeater - model: base.currentItem ? Cura.MachineActionManager.getSupportedActions(Cura.MachineManager.getDefinitionByMachineId(base.currentItem.id)) : null + model: base.currentItem ? machineActionManager.getSupportedActions(Cura.MachineManager.getDefinitionByMachineId(base.currentItem.id)) : null Item { diff --git a/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml b/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml index 646e835cb21..9facc5095ee 100644 --- a/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml +++ b/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml @@ -187,7 +187,7 @@ Popup //Add all the custom profiles. Repeater { - model: Cura.CustomQualityProfilesDropDownMenuModel + model: CuraApplication.getCustomQualityProfilesDropDownMenuModel() MenuButton { onClicked: Cura.MachineManager.setQualityChangesGroup(model.quality_changes_group) diff --git a/resources/qml/PrintSetupSelector/ProfileWarningReset.qml b/resources/qml/PrintSetupSelector/ProfileWarningReset.qml index c44fcc8cc28..bf4385446da 100644 --- a/resources/qml/PrintSetupSelector/ProfileWarningReset.qml +++ b/resources/qml/PrintSetupSelector/ProfileWarningReset.qml @@ -11,7 +11,7 @@ import "../Dialogs" Item { property bool fullWarning: true // <- Can you see the warning icon and the text, or is it just the buttons? - + property var simpleModeSettingsManager :CuraApplication.getSimpleModeSettingsManager() height: visible ? UM.Theme.getSize("action_button_icon").height : 0 width: visible ? childrenRect.width: 0 visible: Cura.MachineManager.hasUserSettings || (fullWarning && Cura.MachineManager.hasCustomQuality) @@ -96,7 +96,7 @@ Item State { name: "custom settings changed" - when: Cura.SimpleModeSettingsManager.isProfileCustomized + when: simpleModeSettingsManager.isProfileCustomized PropertyChanges { target: warning From a7137c5e634264b036ca3b38c8084423fbd8c2f1 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 8 Jan 2024 14:44:17 +0100 Subject: [PATCH 350/765] Add raft settings to make margin and remove inside corners configurable per raft-type Added teh following settings - raft_base_margin - raft_interface_margin - raft_surface_margin - raft_base_smoothing - raft_interface_smoothing - raft_surface_smoothing - raft_base_remove_inside_corners - raft_interface_remove_inside_corners - raft_surface_remove_inside_corners --- resources/definitions/fdmprinter.def.json | 129 +++++++++++++++++++++- resources/setting_visibility/expert.cfg | 9 ++ 2 files changed, 135 insertions(+), 3 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 2b37b3d7acf..b40e074f1c3 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6114,7 +6114,51 @@ "enabled": "resolveOrValue('adhesion_type') == 'raft'", "limit_to_extruder": "adhesion_extruder_nr", "settable_per_mesh": false, - "settable_per_extruder": true + "settable_per_extruder": true, + "children": { + "raft_base_margin": { + "label": "Raft Base Extra Margin", + "description": "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print.", + "unit": "mm", + "type": "float", + "value": "raft_margin", + "default_value": 15, + "minimum_value_warning": "raft_interface_line_width", + "maximum_value_warning": "20", + "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "limit_to_extruder": "adhesion_extruder_nr", + "settable_per_mesh": false, + "settable_per_extruder": true + }, + "raft_interface_margin": { + "label": "Raft Middle Extra Margin", + "description": "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print.", + "unit": "mm", + "type": "float", + "value": "raft_margin", + "default_value": 15, + "minimum_value_warning": "raft_interface_line_width", + "maximum_value_warning": "20", + "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "limit_to_extruder": "adhesion_extruder_nr", + "settable_per_mesh": false, + "settable_per_extruder": true + }, + "raft_surface_margin": { + "label": "Raft Top Extra Margin", + "description": "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print.", + "unit": "mm", + "type": "float", + "value": "raft_margin", + "default_value": 15, + "minimum_value_warning": "raft_interface_line_width", + "maximum_value_warning": "20", + "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "limit_to_extruder": "adhesion_extruder_nr", + "settable_per_mesh": false, + "settable_per_extruder": true + } + } }, "raft_smoothing": { @@ -6128,7 +6172,51 @@ "enabled": "resolveOrValue('adhesion_type') == 'raft' and not raft_remove_inside_corners", "limit_to_extruder": "adhesion_extruder_nr", "settable_per_mesh": false, - "settable_per_extruder": true + "settable_per_extruder": true, + "children": { + "raft_base_smoothing": { + "label": "Raft Base Smoothing", + "description": "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle.", + "unit": "mm", + "type": "float", + "value": "raft_smoothing", + "default_value": 5, + "minimum_value": "0", + "minimum_value_warning": "raft_interface_line_width", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and not raft_base_remove_inside_corners", + "limit_to_extruder": "adhesion_extruder_nr", + "settable_per_mesh": false, + "settable_per_extruder": true + }, + "raft_interface_smoothing": { + "label": "Raft Middle Smoothing", + "description": "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle.", + "unit": "mm", + "type": "float", + "value": "raft_smoothing", + "default_value": 5, + "minimum_value": "0", + "minimum_value_warning": "raft_interface_line_width", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and not raft_interface_remove_inside_corners", + "limit_to_extruder": "adhesion_extruder_nr", + "settable_per_mesh": false, + "settable_per_extruder": true + }, + "raft_surface_smoothing": { + "label": "Raft Top Smoothing", + "description": "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle.", + "unit": "mm", + "type": "float", + "value": "raft_smoothing", + "default_value": 5, + "minimum_value": "0", + "minimum_value_warning": "raft_interface_line_width", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and not raft_surface_remove_inside_corners", + "limit_to_extruder": "adhesion_extruder_nr", + "settable_per_mesh": false, + "settable_per_extruder": true + } + } }, "raft_airgap": { @@ -8284,7 +8372,42 @@ "resolve": "any(extruderValues('raft_remove_inside_corners'))", "enabled": "resolveOrValue('adhesion_type') == 'raft'", "settable_per_mesh": false, - "settable_per_extruder": false + "settable_per_extruder": false, + "children": { + "raft_base_remove_inside_corners": { + "label": "Remove Raft Base Inside Corners", + "description": "Remove inside corners from the raft base, causing the raft to become convex.", + "type": "bool", + "value": "raft_remove_inside_corners", + "default_value": false, + "resolve": "any(extruderValues('raft_remove_inside_corners'))", + "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "settable_per_mesh": false, + "settable_per_extruder": false + }, + "raft_interface_remove_inside_corners": { + "label": "Remove Raft Middle Inside Corners", + "description": "Remove inside corners from the raft middle part, causing the raft to become convex.", + "type": "bool", + "value": "raft_remove_inside_corners", + "default_value": false, + "resolve": "any(extruderValues('raft_remove_inside_corners'))", + "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "settable_per_mesh": false, + "settable_per_extruder": false + }, + "raft_surface_remove_inside_corners": { + "label": "Remove Raft Top Inside Corners", + "description": "Remove inside corners from the raft top part, causing the raft to become convex.", + "type": "bool", + "value": "raft_remove_inside_corners", + "default_value": false, + "resolve": "any(extruderValues('raft_remove_inside_corners'))", + "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "settable_per_mesh": false, + "settable_per_extruder": false + } + } }, "raft_base_wall_count": { diff --git a/resources/setting_visibility/expert.cfg b/resources/setting_visibility/expert.cfg index 2f2dd7671d0..ebab2357ddf 100644 --- a/resources/setting_visibility/expert.cfg +++ b/resources/setting_visibility/expert.cfg @@ -331,7 +331,13 @@ brim_line_count brim_outside_only brim_smart_ordering raft_margin +raft_base_margin +raft_interface_margin +raft_surface_margin raft_smoothing +raft_base_smoothing +raft_interface_smoothing +raft_surface_smoothing raft_airgap raft_surface_layers raft_surface_thickness @@ -467,3 +473,6 @@ small_hole_max_size small_feature_max_length small_feature_speed_factor small_feature_speed_factor_0 +raft_base_remove_inside_corners +raft_interface_remove_inside_corners +raft_surface_remove_inside_corners \ No newline at end of file From ff45f566d6ee27779fe01b3347c7239865bf1719 Mon Sep 17 00:00:00 2001 From: casperlamboo Date: Mon, 8 Jan 2024 13:46:14 +0000 Subject: [PATCH 351/765] Applied printer-linter format --- resources/definitions/fdmprinter.def.json | 36 +++++++++++++++-------- 1 file changed, 24 insertions(+), 12 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index b40e074f1c3..ff09a162283 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6115,8 +6115,10 @@ "limit_to_extruder": "adhesion_extruder_nr", "settable_per_mesh": false, "settable_per_extruder": true, - "children": { - "raft_base_margin": { + "children": + { + "raft_base_margin": + { "label": "Raft Base Extra Margin", "description": "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print.", "unit": "mm", @@ -6130,7 +6132,8 @@ "settable_per_mesh": false, "settable_per_extruder": true }, - "raft_interface_margin": { + "raft_interface_margin": + { "label": "Raft Middle Extra Margin", "description": "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print.", "unit": "mm", @@ -6144,7 +6147,8 @@ "settable_per_mesh": false, "settable_per_extruder": true }, - "raft_surface_margin": { + "raft_surface_margin": + { "label": "Raft Top Extra Margin", "description": "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print.", "unit": "mm", @@ -6173,8 +6177,10 @@ "limit_to_extruder": "adhesion_extruder_nr", "settable_per_mesh": false, "settable_per_extruder": true, - "children": { - "raft_base_smoothing": { + "children": + { + "raft_base_smoothing": + { "label": "Raft Base Smoothing", "description": "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle.", "unit": "mm", @@ -6188,7 +6194,8 @@ "settable_per_mesh": false, "settable_per_extruder": true }, - "raft_interface_smoothing": { + "raft_interface_smoothing": + { "label": "Raft Middle Smoothing", "description": "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle.", "unit": "mm", @@ -6202,7 +6209,8 @@ "settable_per_mesh": false, "settable_per_extruder": true }, - "raft_surface_smoothing": { + "raft_surface_smoothing": + { "label": "Raft Top Smoothing", "description": "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle.", "unit": "mm", @@ -8373,8 +8381,10 @@ "enabled": "resolveOrValue('adhesion_type') == 'raft'", "settable_per_mesh": false, "settable_per_extruder": false, - "children": { - "raft_base_remove_inside_corners": { + "children": + { + "raft_base_remove_inside_corners": + { "label": "Remove Raft Base Inside Corners", "description": "Remove inside corners from the raft base, causing the raft to become convex.", "type": "bool", @@ -8385,7 +8395,8 @@ "settable_per_mesh": false, "settable_per_extruder": false }, - "raft_interface_remove_inside_corners": { + "raft_interface_remove_inside_corners": + { "label": "Remove Raft Middle Inside Corners", "description": "Remove inside corners from the raft middle part, causing the raft to become convex.", "type": "bool", @@ -8396,7 +8407,8 @@ "settable_per_mesh": false, "settable_per_extruder": false }, - "raft_surface_remove_inside_corners": { + "raft_surface_remove_inside_corners": + { "label": "Remove Raft Top Inside Corners", "description": "Remove inside corners from the raft top part, causing the raft to become convex.", "type": "bool", From 35131d5d7ce03b3ec7c5af4260b2baef43183382 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 8 Jan 2024 15:54:32 +0100 Subject: [PATCH 352/765] Inherit secrets for UT Fixes CURA-11497 --- .github/workflows/unit-test-post.yml | 1 + .github/workflows/unit-test.yml | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/unit-test-post.yml b/.github/workflows/unit-test-post.yml index eaf69692a7b..a8e9f26b8b6 100644 --- a/.github/workflows/unit-test-post.yml +++ b/.github/workflows/unit-test-post.yml @@ -11,3 +11,4 @@ jobs: with: event: ${{ github.event.workflow_run.event }} conclusion: ${{ github.event.workflow_run.conclusion }} + secrets: inherit diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 7c6910b39fe..9a42f4f85db 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -58,4 +58,5 @@ jobs: conan_extra_args: '-g VirtualPythonEnv -o cura:devtools=True -c tools.build:skip_test=False' unit_test_cmd: 'pytest --junitxml=junit_cura.xml' unit_test_dir: 'tests' - conan_generator_dir: './venv/bin' \ No newline at end of file + conan_generator_dir: './venv/bin' + secrets: inherit \ No newline at end of file From 90ce6d7f765358c38308b46b4bcbcee3df01b2d6 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Mon, 8 Jan 2024 16:53:10 +0100 Subject: [PATCH 353/765] Reorganize raft settings to a user-intuitive order CURA-11228 --- resources/definitions/fdmprinter.def.json | 244 +++++++++++----------- 1 file changed, 122 insertions(+), 122 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 32908b6f3e5..a49d613ce1b 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6159,66 +6159,53 @@ "settable_per_extruder": true, "limit_to_extruder": "raft_surface_extruder_nr" }, - "raft_surface_layers": - { - "label": "Raft Top Layers", - "description": "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1.", - "type": "int", - "default_value": 2, - "minimum_value": "0", - "maximum_value_warning": "20", - "enabled": "resolveOrValue('adhesion_type') == 'raft'", - "settable_per_mesh": false, - "settable_per_extruder": true, - "limit_to_extruder": "raft_surface_extruder_nr" - }, - "raft_surface_thickness": + "raft_base_thickness": { - "label": "Raft Top Layer Thickness", - "description": "Layer thickness of the top raft layers.", + "label": "Raft Base Thickness", + "description": "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate.", "unit": "mm", "type": "float", - "default_value": 0.1, - "value": "resolveOrValue('layer_height')", + "default_value": 0.3, + "value": "resolveOrValue('layer_height_0') * 1.2", "minimum_value": "0.001", "minimum_value_warning": "0.04", - "maximum_value_warning": "0.75 * machine_nozzle_size", - "enabled": "resolveOrValue('adhesion_type') == 'raft' and raft_surface_layers > 0", + "maximum_value_warning": "0.75 * raft_base_line_width", + "enabled": "resolveOrValue('adhesion_type') == 'raft'", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "raft_surface_extruder_nr" + "limit_to_extruder": "raft_base_extruder_nr" }, - "raft_surface_line_width": + "raft_base_line_width": { - "label": "Raft Top Line Width", - "description": "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth.", + "label": "Raft Base Line Width", + "description": "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion.", "unit": "mm", "type": "float", - "default_value": 0.4, - "value": "line_width", + "default_value": 0.8, "minimum_value": "0.001", - "minimum_value_warning": "machine_nozzle_size * 0.1", - "maximum_value_warning": "machine_nozzle_size * 2", - "enabled": "resolveOrValue('adhesion_type') == 'raft' and raft_surface_layers > 0", + "value": "machine_nozzle_size * 2", + "minimum_value_warning": "machine_nozzle_size * 0.5", + "maximum_value_warning": "machine_nozzle_size * 3", + "enabled": "resolveOrValue('adhesion_type') == 'raft'", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "raft_surface_extruder_nr" + "limit_to_extruder": "raft_base_extruder_nr" }, - "raft_surface_line_spacing": + "raft_base_line_spacing": { - "label": "Raft Top Spacing", - "description": "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid.", + "label": "Raft Base Line Spacing", + "description": "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate.", "unit": "mm", "type": "float", - "default_value": 0.4, + "default_value": 1.6, + "value": "raft_base_line_width * 2", "minimum_value": "0", - "minimum_value_warning": "raft_surface_line_width", - "maximum_value_warning": "raft_surface_line_width * 3", - "enabled": "resolveOrValue('adhesion_type') == 'raft' and raft_surface_layers > 0", - "value": "raft_surface_line_width", + "minimum_value_warning": "raft_base_line_width", + "maximum_value_warning": "100", + "enabled": "resolveOrValue('adhesion_type') == 'raft'", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "raft_surface_extruder_nr" + "limit_to_extruder": "raft_base_extruder_nr" }, "raft_interface_layers": { @@ -6281,53 +6268,66 @@ "settable_per_extruder": true, "limit_to_extruder": "raft_interface_extruder_nr" }, - "raft_base_thickness": + "raft_surface_layers": { - "label": "Raft Base Thickness", - "description": "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate.", + "label": "Raft Top Layers", + "description": "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1.", + "type": "int", + "default_value": 2, + "minimum_value": "0", + "maximum_value_warning": "20", + "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "settable_per_mesh": false, + "settable_per_extruder": true, + "limit_to_extruder": "raft_surface_extruder_nr" + }, + "raft_surface_thickness": + { + "label": "Raft Top Layer Thickness", + "description": "Layer thickness of the top raft layers.", "unit": "mm", "type": "float", - "default_value": 0.3, - "value": "resolveOrValue('layer_height_0') * 1.2", + "default_value": 0.1, + "value": "resolveOrValue('layer_height')", "minimum_value": "0.001", "minimum_value_warning": "0.04", - "maximum_value_warning": "0.75 * raft_base_line_width", - "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "maximum_value_warning": "0.75 * machine_nozzle_size", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and raft_surface_layers > 0", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "raft_base_extruder_nr" + "limit_to_extruder": "raft_surface_extruder_nr" }, - "raft_base_line_width": + "raft_surface_line_width": { - "label": "Raft Base Line Width", - "description": "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion.", + "label": "Raft Top Line Width", + "description": "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth.", "unit": "mm", "type": "float", - "default_value": 0.8, + "default_value": 0.4, + "value": "line_width", "minimum_value": "0.001", - "value": "machine_nozzle_size * 2", - "minimum_value_warning": "machine_nozzle_size * 0.5", - "maximum_value_warning": "machine_nozzle_size * 3", - "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "minimum_value_warning": "machine_nozzle_size * 0.1", + "maximum_value_warning": "machine_nozzle_size * 2", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and raft_surface_layers > 0", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "raft_base_extruder_nr" + "limit_to_extruder": "raft_surface_extruder_nr" }, - "raft_base_line_spacing": + "raft_surface_line_spacing": { - "label": "Raft Base Line Spacing", - "description": "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate.", + "label": "Raft Top Spacing", + "description": "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid.", "unit": "mm", "type": "float", - "default_value": 1.6, - "value": "raft_base_line_width * 2", + "default_value": 0.4, "minimum_value": "0", - "minimum_value_warning": "raft_base_line_width", - "maximum_value_warning": "100", - "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "minimum_value_warning": "raft_surface_line_width", + "maximum_value_warning": "raft_surface_line_width * 3", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and raft_surface_layers > 0", + "value": "raft_surface_line_width", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "raft_base_extruder_nr" + "limit_to_extruder": "raft_surface_extruder_nr" }, "raft_wall_count": { @@ -6341,12 +6341,13 @@ "settable_per_extruder": false, "children": { - "raft_surface_wall_count": + "raft_base_wall_count": { - "label": "Raft Top Wall Count", - "description": "The number of contours to print around the linear pattern in the top layers of the raft.", + "label": "Raft Base Wall Count", + "description": "The number of contours to print around the linear pattern in the base layer of the raft.", "type": "int", - "default_value": 0, + "default_value": 1, + "value": "raft_wall_count", "minimum_value": "0", "enabled": "resolveOrValue('adhesion_type') == 'raft'", "settable_per_mesh": false, @@ -6363,13 +6364,12 @@ "settable_per_mesh": false, "settable_per_extruder": false }, - "raft_base_wall_count": + "raft_surface_wall_count": { - "label": "Raft Base Wall Count", - "description": "The number of contours to print around the linear pattern in the base layer of the raft.", + "label": "Raft Top Wall Count", + "description": "The number of contours to print around the linear pattern in the top layers of the raft.", "type": "int", - "default_value": 1, - "value": "raft_wall_count", + "default_value": 0, "minimum_value": "0", "enabled": "resolveOrValue('adhesion_type') == 'raft'", "settable_per_mesh": false, @@ -6394,21 +6394,21 @@ "limit_to_extruder": "adhesion_extruder_nr", "children": { - "raft_surface_speed": + "raft_base_speed": { - "label": "Raft Top Print Speed", - "description": "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines.", + "label": "Raft Base Print Speed", + "description": "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high.", "unit": "mm/s", "type": "float", - "default_value": 20, + "default_value": 15, "minimum_value": "0.1", "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)", - "maximum_value_warning": "100", - "enabled": "resolveOrValue('adhesion_type') == 'raft' and raft_surface_layers > 0", - "value": "raft_speed", + "maximum_value_warning": "200", + "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "value": "0.75 * raft_speed", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "raft_surface_extruder_nr" + "limit_to_extruder": "raft_base_extruder_nr" }, "raft_interface_speed": { @@ -6426,21 +6426,21 @@ "settable_per_extruder": true, "limit_to_extruder": "raft_interface_extruder_nr" }, - "raft_base_speed": + "raft_surface_speed": { - "label": "Raft Base Print Speed", - "description": "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high.", + "label": "Raft Top Print Speed", + "description": "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines.", "unit": "mm/s", "type": "float", - "default_value": 15, + "default_value": 20, "minimum_value": "0.1", "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)", - "maximum_value_warning": "200", - "enabled": "resolveOrValue('adhesion_type') == 'raft'", - "value": "0.75 * raft_speed", + "maximum_value_warning": "100", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and raft_surface_layers > 0", + "value": "raft_speed", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "raft_base_extruder_nr" + "limit_to_extruder": "raft_surface_extruder_nr" } } }, @@ -6460,10 +6460,10 @@ "limit_to_extruder": "adhesion_extruder_nr", "children": { - "raft_surface_acceleration": + "raft_base_acceleration": { - "label": "Raft Top Print Acceleration", - "description": "The acceleration with which the top raft layers are printed.", + "label": "Raft Base Print Acceleration", + "description": "The acceleration with which the base raft layer is printed.", "unit": "mm/s\u00b2", "type": "float", "default_value": 3000, @@ -6471,9 +6471,9 @@ "minimum_value": "0.1", "minimum_value_warning": "100", "maximum_value_warning": "10000", - "enabled": "resolveOrValue('adhesion_type') == 'raft' and resolveOrValue('acceleration_enabled') and raft_surface_layers > 0", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and resolveOrValue('acceleration_enabled')", "settable_per_mesh": false, - "limit_to_extruder": "raft_surface_extruder_nr" + "limit_to_extruder": "raft_base_extruder_nr" }, "raft_interface_acceleration": { @@ -6490,10 +6490,10 @@ "settable_per_mesh": false, "limit_to_extruder": "raft_interface_extruder_nr" }, - "raft_base_acceleration": + "raft_surface_acceleration": { - "label": "Raft Base Print Acceleration", - "description": "The acceleration with which the base raft layer is printed.", + "label": "Raft Top Print Acceleration", + "description": "The acceleration with which the top raft layers are printed.", "unit": "mm/s\u00b2", "type": "float", "default_value": 3000, @@ -6501,9 +6501,9 @@ "minimum_value": "0.1", "minimum_value_warning": "100", "maximum_value_warning": "10000", - "enabled": "resolveOrValue('adhesion_type') == 'raft' and resolveOrValue('acceleration_enabled')", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and resolveOrValue('acceleration_enabled') and raft_surface_layers > 0", "settable_per_mesh": false, - "limit_to_extruder": "raft_base_extruder_nr" + "limit_to_extruder": "raft_surface_extruder_nr" } } }, @@ -6523,20 +6523,20 @@ "limit_to_extruder": "adhesion_extruder_nr", "children": { - "raft_surface_jerk": + "raft_base_jerk": { - "label": "Raft Top Print Jerk", - "description": "The jerk with which the top raft layers are printed.", + "label": "Raft Base Print Jerk", + "description": "The jerk with which the base raft layer is printed.", "unit": "mm/s", "type": "float", "default_value": 20, "value": "raft_jerk", "minimum_value": "0", "minimum_value_warning": "5", - "maximum_value_warning": "100", - "enabled": "resolveOrValue('adhesion_type') == 'raft' and resolveOrValue('jerk_enabled') and raft_surface_layers > 0", + "maximum_value_warning": "50", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and resolveOrValue('jerk_enabled')", "settable_per_mesh": false, - "limit_to_extruder": "raft_surface_extruder_nr" + "limit_to_extruder": "raft_base_extruder_nr" }, "raft_interface_jerk": { @@ -6553,20 +6553,20 @@ "settable_per_mesh": false, "limit_to_extruder": "raft_interface_extruder_nr" }, - "raft_base_jerk": + "raft_surface_jerk": { - "label": "Raft Base Print Jerk", - "description": "The jerk with which the base raft layer is printed.", + "label": "Raft Top Print Jerk", + "description": "The jerk with which the top raft layers are printed.", "unit": "mm/s", "type": "float", "default_value": 20, "value": "raft_jerk", "minimum_value": "0", "minimum_value_warning": "5", - "maximum_value_warning": "50", - "enabled": "resolveOrValue('adhesion_type') == 'raft' and resolveOrValue('jerk_enabled')", + "maximum_value_warning": "100", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and resolveOrValue('jerk_enabled') and raft_surface_layers > 0", "settable_per_mesh": false, - "limit_to_extruder": "raft_base_extruder_nr" + "limit_to_extruder": "raft_surface_extruder_nr" } } }, @@ -6585,20 +6585,20 @@ "limit_to_extruder": "adhesion_extruder_nr", "children": { - "raft_surface_fan_speed": + "raft_base_fan_speed": { - "label": "Raft Top Fan Speed", - "description": "The fan speed for the top raft layers.", + "label": "Raft Base Fan Speed", + "description": "The fan speed for the base raft layer.", "unit": "%", "type": "float", "minimum_value": "0", "maximum_value": "100", "default_value": 0, "value": "raft_fan_speed", - "enabled": "resolveOrValue('adhesion_type') == 'raft' and raft_surface_layers > 0", + "enabled": "resolveOrValue('adhesion_type') == 'raft'", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "raft_surface_extruder_nr" + "limit_to_extruder": "raft_base_extruder_nr" }, "raft_interface_fan_speed": { @@ -6615,20 +6615,20 @@ "settable_per_extruder": true, "limit_to_extruder": "raft_interface_extruder_nr" }, - "raft_base_fan_speed": + "raft_surface_fan_speed": { - "label": "Raft Base Fan Speed", - "description": "The fan speed for the base raft layer.", + "label": "Raft Top Fan Speed", + "description": "The fan speed for the top raft layers.", "unit": "%", "type": "float", "minimum_value": "0", "maximum_value": "100", "default_value": 0, "value": "raft_fan_speed", - "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and raft_surface_layers > 0", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "raft_base_extruder_nr" + "limit_to_extruder": "raft_surface_extruder_nr" } } } From d01b5c17678a853b87f1af1eb26b13fbae1f78e6 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Mon, 8 Jan 2024 17:46:04 +0100 Subject: [PATCH 354/765] Renmoved singleton Um.Application CURA-7812 --- cura/CuraApplication.py | 2 +- resources/qml/Dialogs/AboutDialog.qml | 2 +- .../qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 3243260b6e2..20048e3d3f1 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -1266,7 +1266,7 @@ def registerObjects(self, engine): self.processEvents() qmlRegisterType(DiscoveredPrintersModel, "Cura", 1, 0, "DiscoveredPrintersModel") qmlRegisterType(DiscoveredCloudPrintersModel, "Cura", 1, 7, "DiscoveredCloudPrintersModel") - qmlRegisterType(QualityProfilesDropDownMenuModel, "Cura", 1, 0, "QualityProfilesDropDownMenuModel") + qmlRegisterType(CustomQualityProfilesDropDownMenuModel, "Cura", 1, 0, "CustomQualityProfilesDropDownMenuModel") qmlRegisterType(NozzleModel, "Cura", 1, 0, "NozzleModel") qmlRegisterType(IntentModel, "Cura", 1, 6, "IntentModel") qmlRegisterType(IntentCategoryModel, "Cura", 1, 6, "IntentCategoryModel") diff --git a/resources/qml/Dialogs/AboutDialog.qml b/resources/qml/Dialogs/AboutDialog.qml index 947b46269aa..79cad92b258 100644 --- a/resources/qml/Dialogs/AboutDialog.qml +++ b/resources/qml/Dialogs/AboutDialog.qml @@ -58,7 +58,7 @@ UM.Dialog UM.Label { id: version - text: catalog.i18nc("@label","version: %1").arg(UM.Application.version) + text: catalog.i18nc("@label","version: %1").arg(CuraApplication.applicationVersion()) font: UM.Theme.getFont("large_bold") color: UM.Theme.getColor("button_text") anchors.right : logo.right diff --git a/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml b/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml index 9facc5095ee..646e835cb21 100644 --- a/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml +++ b/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml @@ -187,7 +187,7 @@ Popup //Add all the custom profiles. Repeater { - model: CuraApplication.getCustomQualityProfilesDropDownMenuModel() + model: Cura.CustomQualityProfilesDropDownMenuModel MenuButton { onClicked: Cura.MachineManager.setQualityChangesGroup(model.quality_changes_group) From 023a8f232588ce6c5fd84adf57960caabc99a210 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 9 Jan 2024 08:32:33 +0100 Subject: [PATCH 355/765] Ensure that nightlies have default values Fixes CURA-11528 --- .github/workflows/installers.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/installers.yml b/.github/workflows/installers.yml index 9c51cfe820f..29ff24c2b59 100644 --- a/.github/workflows/installers.yml +++ b/.github/workflows/installers.yml @@ -54,9 +54,9 @@ jobs: needs: [ default_values ] with: cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} - conan_args: ${{ inputs.conan_args }} - enterprise: ${{ inputs.enterprise }} - staging: ${{ inputs.staging }} + conan_args: ${{ env.CONAN_ARGS }} + enterprise: ${{ env.ENTERPRISE }} + staging: ${{ env.STAGING }} architecture: X64 operating_system: windows-2022 secrets: inherit @@ -66,9 +66,9 @@ jobs: needs: [ default_values ] with: cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} - conan_args: ${{ inputs.conan_args }} - enterprise: ${{ inputs.enterprise }} - staging: ${{ inputs.staging }} + conan_args: ${{ env.CONAN_ARGS }} + enterprise: ${{ env.ENTERPRISE }} + staging: ${{ env.STAGING }} architecture: X64 operating_system: ubuntu-22.04 secrets: inherit @@ -78,9 +78,9 @@ jobs: needs: [ default_values ] with: cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} - conan_args: ${{ inputs.conan_args }} - enterprise: ${{ inputs.enterprise }} - staging: ${{ inputs.staging }} + conan_args: ${{ env.CONAN_ARGS }} + enterprise: ${{ env.ENTERPRISE }} + staging: ${{ env.STAGING }} architecture: X64 operating_system: self-hosted-X64 secrets: inherit @@ -90,9 +90,9 @@ jobs: needs: [ default_values ] with: cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} - conan_args: ${{ inputs.conan_args }} - enterprise: ${{ inputs.enterprise }} - staging: ${{ inputs.staging }} + conan_args: ${{ env.CONAN_ARGS }} + enterprise: ${{ env.ENTERPRISE }} + staging: ${{ env.STAGING }} architecture: ARM64 operating_system: self-hosted-ARM64 secrets: inherit From 7244ba4e24d516a97ea04f558a239ef3d747179e Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 9 Jan 2024 08:38:17 +0100 Subject: [PATCH 356/765] Revert "Ensure that nightlies have default values" This reverts commit 023a8f232588ce6c5fd84adf57960caabc99a210. --- .github/workflows/installers.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/installers.yml b/.github/workflows/installers.yml index 29ff24c2b59..9c51cfe820f 100644 --- a/.github/workflows/installers.yml +++ b/.github/workflows/installers.yml @@ -54,9 +54,9 @@ jobs: needs: [ default_values ] with: cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} - conan_args: ${{ env.CONAN_ARGS }} - enterprise: ${{ env.ENTERPRISE }} - staging: ${{ env.STAGING }} + conan_args: ${{ inputs.conan_args }} + enterprise: ${{ inputs.enterprise }} + staging: ${{ inputs.staging }} architecture: X64 operating_system: windows-2022 secrets: inherit @@ -66,9 +66,9 @@ jobs: needs: [ default_values ] with: cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} - conan_args: ${{ env.CONAN_ARGS }} - enterprise: ${{ env.ENTERPRISE }} - staging: ${{ env.STAGING }} + conan_args: ${{ inputs.conan_args }} + enterprise: ${{ inputs.enterprise }} + staging: ${{ inputs.staging }} architecture: X64 operating_system: ubuntu-22.04 secrets: inherit @@ -78,9 +78,9 @@ jobs: needs: [ default_values ] with: cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} - conan_args: ${{ env.CONAN_ARGS }} - enterprise: ${{ env.ENTERPRISE }} - staging: ${{ env.STAGING }} + conan_args: ${{ inputs.conan_args }} + enterprise: ${{ inputs.enterprise }} + staging: ${{ inputs.staging }} architecture: X64 operating_system: self-hosted-X64 secrets: inherit @@ -90,9 +90,9 @@ jobs: needs: [ default_values ] with: cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} - conan_args: ${{ env.CONAN_ARGS }} - enterprise: ${{ env.ENTERPRISE }} - staging: ${{ env.STAGING }} + conan_args: ${{ inputs.conan_args }} + enterprise: ${{ inputs.enterprise }} + staging: ${{ inputs.staging }} architecture: ARM64 operating_system: self-hosted-ARM64 secrets: inherit From 76b93c31719822916507560069e19f15fe6639ab Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 9 Jan 2024 08:40:30 +0100 Subject: [PATCH 357/765] Revert "use `input` instead of the `github.events`" This reverts commit 677f35b5159e53fded2d4c31b2ca58ede6b28373. --- .github/workflows/installers.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/installers.yml b/.github/workflows/installers.yml index 9c51cfe820f..6e531ba8334 100644 --- a/.github/workflows/installers.yml +++ b/.github/workflows/installers.yml @@ -54,9 +54,9 @@ jobs: needs: [ default_values ] with: cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} - conan_args: ${{ inputs.conan_args }} - enterprise: ${{ inputs.enterprise }} - staging: ${{ inputs.staging }} + conan_args: ${{ github.event.inputs.conan_args }} + enterprise: ${{ github.event.inputs.enterprise == 'true' }} + staging: ${{ github.event.inputs.staging == 'true' }} architecture: X64 operating_system: windows-2022 secrets: inherit @@ -66,9 +66,9 @@ jobs: needs: [ default_values ] with: cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} - conan_args: ${{ inputs.conan_args }} - enterprise: ${{ inputs.enterprise }} - staging: ${{ inputs.staging }} + conan_args: ${{ github.event.inputs.conan_args }} + enterprise: ${{ github.event.inputs.enterprise == 'true' }} + staging: ${{ github.event.inputs.staging == 'true' }} architecture: X64 operating_system: ubuntu-22.04 secrets: inherit @@ -78,9 +78,9 @@ jobs: needs: [ default_values ] with: cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} - conan_args: ${{ inputs.conan_args }} - enterprise: ${{ inputs.enterprise }} - staging: ${{ inputs.staging }} + conan_args: ${{ github.event.inputs.conan_args }} + enterprise: ${{ github.event.inputs.enterprise == 'true' }} + staging: ${{ github.event.inputs.staging == 'true' }} architecture: X64 operating_system: self-hosted-X64 secrets: inherit @@ -90,9 +90,9 @@ jobs: needs: [ default_values ] with: cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} - conan_args: ${{ inputs.conan_args }} - enterprise: ${{ inputs.enterprise }} - staging: ${{ inputs.staging }} + conan_args: ${{ github.event.inputs.conan_args }} + enterprise: ${{ github.event.inputs.enterprise == 'true' }} + staging: ${{ github.event.inputs.staging == 'true' }} architecture: ARM64 operating_system: self-hosted-ARM64 secrets: inherit From 37f350b134d69518ef6455f214f152e4e04737b6 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Tue, 9 Jan 2024 10:15:17 +0100 Subject: [PATCH 358/765] Limit settings to their correct extruders --- resources/definitions/fdmprinter.def.json | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 95588c2f240..3253e25cf32 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6128,7 +6128,7 @@ "minimum_value_warning": "raft_interface_line_width", "maximum_value_warning": "20", "enabled": "resolveOrValue('adhesion_type') == 'raft'", - "limit_to_extruder": "adhesion_extruder_nr", + "limit_to_extruder": "raft_base_extruder_nr", "settable_per_mesh": false, "settable_per_extruder": true }, @@ -6143,7 +6143,7 @@ "minimum_value_warning": "raft_interface_line_width", "maximum_value_warning": "20", "enabled": "resolveOrValue('adhesion_type') == 'raft'", - "limit_to_extruder": "adhesion_extruder_nr", + "limit_to_extruder": "raft_interface_extruder_nr", "settable_per_mesh": false, "settable_per_extruder": true }, @@ -6158,7 +6158,7 @@ "minimum_value_warning": "raft_interface_line_width", "maximum_value_warning": "20", "enabled": "resolveOrValue('adhesion_type') == 'raft'", - "limit_to_extruder": "adhesion_extruder_nr", + "limit_to_extruder": "raft_surface_extruder_nr", "settable_per_mesh": false, "settable_per_extruder": true } @@ -6190,7 +6190,7 @@ "minimum_value": "0", "minimum_value_warning": "raft_interface_line_width", "enabled": "resolveOrValue('adhesion_type') == 'raft' and not raft_base_remove_inside_corners", - "limit_to_extruder": "adhesion_extruder_nr", + "limit_to_extruder": "raft_base_extruder_nr", "settable_per_mesh": false, "settable_per_extruder": true }, @@ -6205,7 +6205,7 @@ "minimum_value": "0", "minimum_value_warning": "raft_interface_line_width", "enabled": "resolveOrValue('adhesion_type') == 'raft' and not raft_interface_remove_inside_corners", - "limit_to_extruder": "adhesion_extruder_nr", + "limit_to_extruder": "raft_interface_extruder_nr", "settable_per_mesh": false, "settable_per_extruder": true }, @@ -6220,7 +6220,7 @@ "minimum_value": "0", "minimum_value_warning": "raft_interface_line_width", "enabled": "resolveOrValue('adhesion_type') == 'raft' and not raft_surface_remove_inside_corners", - "limit_to_extruder": "adhesion_extruder_nr", + "limit_to_extruder": "raft_surface_extruder_nr", "settable_per_mesh": false, "settable_per_extruder": true } @@ -8440,6 +8440,7 @@ "default_value": false, "resolve": "any(extruderValues('raft_remove_inside_corners'))", "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "limit_to_extruder": "raft_base_extruder_nr", "settable_per_mesh": false, "settable_per_extruder": false }, @@ -8452,6 +8453,7 @@ "default_value": false, "resolve": "any(extruderValues('raft_remove_inside_corners'))", "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "limit_to_extruder": "raft_interface_extruder_nr", "settable_per_mesh": false, "settable_per_extruder": false }, @@ -8464,6 +8466,7 @@ "default_value": false, "resolve": "any(extruderValues('raft_remove_inside_corners'))", "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "limit_to_extruder": "raft_surface_extruder_nr", "settable_per_mesh": false, "settable_per_extruder": false } From af51ccf5f37c5fdaf93bf31de307c5d3678f3691 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Tue, 9 Jan 2024 10:17:10 +0100 Subject: [PATCH 359/765] Move "Remove Raft Inside Corners" outside experimental --- resources/definitions/fdmprinter.def.json | 101 ++++++++++------------ 1 file changed, 48 insertions(+), 53 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 3253e25cf32..ce165d1f3d5 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6164,6 +6164,54 @@ } } }, + "raft_remove_inside_corners": { + "label": "Remove Raft Inside Corners", + "description": "Remove inside corners from the raft, causing the raft to become convex.", + "type": "bool", + "default_value": false, + "resolve": "any(extruderValues('raft_remove_inside_corners'))", + "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "settable_per_mesh": false, + "settable_per_extruder": false, + "children": { + "raft_base_remove_inside_corners": { + "label": "Remove Raft Base Inside Corners", + "description": "Remove inside corners from the raft base, causing the raft to become convex.", + "type": "bool", + "value": "raft_remove_inside_corners", + "default_value": false, + "resolve": "any(extruderValues('raft_remove_inside_corners'))", + "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "limit_to_extruder": "raft_base_extruder_nr", + "settable_per_mesh": false, + "settable_per_extruder": false + }, + "raft_interface_remove_inside_corners": { + "label": "Remove Raft Middle Inside Corners", + "description": "Remove inside corners from the raft middle part, causing the raft to become convex.", + "type": "bool", + "value": "raft_remove_inside_corners", + "default_value": false, + "resolve": "any(extruderValues('raft_remove_inside_corners'))", + "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "limit_to_extruder": "raft_interface_extruder_nr", + "settable_per_mesh": false, + "settable_per_extruder": false + }, + "raft_surface_remove_inside_corners": { + "label": "Remove Raft Top Inside Corners", + "description": "Remove inside corners from the raft top part, causing the raft to become convex.", + "type": "bool", + "value": "raft_remove_inside_corners", + "default_value": false, + "resolve": "any(extruderValues('raft_remove_inside_corners'))", + "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "limit_to_extruder": "raft_surface_extruder_nr", + "settable_per_mesh": false, + "settable_per_extruder": false + } + } + }, "raft_smoothing": { "label": "Raft Smoothing", @@ -8419,59 +8467,6 @@ "settable_per_mesh": true, "settable_per_extruder": true }, - "raft_remove_inside_corners": - { - "label": "Remove Raft Inside Corners", - "description": "Remove inside corners from the raft, causing the raft to become convex.", - "type": "bool", - "default_value": false, - "resolve": "any(extruderValues('raft_remove_inside_corners'))", - "enabled": "resolveOrValue('adhesion_type') == 'raft'", - "settable_per_mesh": false, - "settable_per_extruder": false, - "children": - { - "raft_base_remove_inside_corners": - { - "label": "Remove Raft Base Inside Corners", - "description": "Remove inside corners from the raft base, causing the raft to become convex.", - "type": "bool", - "value": "raft_remove_inside_corners", - "default_value": false, - "resolve": "any(extruderValues('raft_remove_inside_corners'))", - "enabled": "resolveOrValue('adhesion_type') == 'raft'", - "limit_to_extruder": "raft_base_extruder_nr", - "settable_per_mesh": false, - "settable_per_extruder": false - }, - "raft_interface_remove_inside_corners": - { - "label": "Remove Raft Middle Inside Corners", - "description": "Remove inside corners from the raft middle part, causing the raft to become convex.", - "type": "bool", - "value": "raft_remove_inside_corners", - "default_value": false, - "resolve": "any(extruderValues('raft_remove_inside_corners'))", - "enabled": "resolveOrValue('adhesion_type') == 'raft'", - "limit_to_extruder": "raft_interface_extruder_nr", - "settable_per_mesh": false, - "settable_per_extruder": false - }, - "raft_surface_remove_inside_corners": - { - "label": "Remove Raft Top Inside Corners", - "description": "Remove inside corners from the raft top part, causing the raft to become convex.", - "type": "bool", - "value": "raft_remove_inside_corners", - "default_value": false, - "resolve": "any(extruderValues('raft_remove_inside_corners'))", - "enabled": "resolveOrValue('adhesion_type') == 'raft'", - "limit_to_extruder": "raft_surface_extruder_nr", - "settable_per_mesh": false, - "settable_per_extruder": false - } - } - }, "group_outer_walls": { "label": "Group Outer Walls", From 594e4a5ea67fc0266783dfe8052f2b3a8b0191cc Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Tue, 9 Jan 2024 10:18:22 +0100 Subject: [PATCH 360/765] Warn if raft extra margin exceeds raft margin of layer below --- resources/definitions/fdmprinter.def.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index ce165d1f3d5..48321bae2f5 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6126,7 +6126,7 @@ "value": "raft_margin", "default_value": 15, "minimum_value_warning": "raft_interface_line_width", - "maximum_value_warning": "20", + "maximum_value_warning": "min(raft_interface_margin, 20)", "enabled": "resolveOrValue('adhesion_type') == 'raft'", "limit_to_extruder": "raft_base_extruder_nr", "settable_per_mesh": false, @@ -6141,7 +6141,7 @@ "value": "raft_margin", "default_value": 15, "minimum_value_warning": "raft_interface_line_width", - "maximum_value_warning": "20", + "maximum_value_warning": "min(raft_surface_margin, 20)", "enabled": "resolveOrValue('adhesion_type') == 'raft'", "limit_to_extruder": "raft_interface_extruder_nr", "settable_per_mesh": false, From 4489b8db462e28777e24947fbcc09517566ecfe2 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Tue, 9 Jan 2024 10:21:55 +0100 Subject: [PATCH 361/765] Make expert more consistent Only include parent settings --- resources/setting_visibility/expert.cfg | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/resources/setting_visibility/expert.cfg b/resources/setting_visibility/expert.cfg index 7f72dfe8ab3..ab0d2aa9202 100644 --- a/resources/setting_visibility/expert.cfg +++ b/resources/setting_visibility/expert.cfg @@ -331,10 +331,8 @@ brim_line_count brim_outside_only brim_smart_ordering raft_margin -raft_base_margin -raft_interface_margin -raft_surface_margin raft_smoothing +raft_remove_inside_corners raft_base_smoothing raft_interface_smoothing raft_surface_smoothing @@ -474,6 +472,3 @@ small_hole_max_size small_feature_max_length small_feature_speed_factor small_feature_speed_factor_0 -raft_base_remove_inside_corners -raft_interface_remove_inside_corners -raft_surface_remove_inside_corners \ No newline at end of file From d9feb88b24836d4015365f953b132fbc0528216d Mon Sep 17 00:00:00 2001 From: casperlamboo Date: Tue, 9 Jan 2024 09:22:53 +0000 Subject: [PATCH 362/765] Applied printer-linter format --- resources/definitions/fdmprinter.def.json | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 48321bae2f5..af041bd803c 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6164,7 +6164,8 @@ } } }, - "raft_remove_inside_corners": { + "raft_remove_inside_corners": + { "label": "Remove Raft Inside Corners", "description": "Remove inside corners from the raft, causing the raft to become convex.", "type": "bool", @@ -6173,8 +6174,10 @@ "enabled": "resolveOrValue('adhesion_type') == 'raft'", "settable_per_mesh": false, "settable_per_extruder": false, - "children": { - "raft_base_remove_inside_corners": { + "children": + { + "raft_base_remove_inside_corners": + { "label": "Remove Raft Base Inside Corners", "description": "Remove inside corners from the raft base, causing the raft to become convex.", "type": "bool", @@ -6186,7 +6189,8 @@ "settable_per_mesh": false, "settable_per_extruder": false }, - "raft_interface_remove_inside_corners": { + "raft_interface_remove_inside_corners": + { "label": "Remove Raft Middle Inside Corners", "description": "Remove inside corners from the raft middle part, causing the raft to become convex.", "type": "bool", @@ -6198,7 +6202,8 @@ "settable_per_mesh": false, "settable_per_extruder": false }, - "raft_surface_remove_inside_corners": { + "raft_surface_remove_inside_corners": + { "label": "Remove Raft Top Inside Corners", "description": "Remove inside corners from the raft top part, causing the raft to become convex.", "type": "bool", From 676099ccf6455576cfe444e9823817c678ed29d9 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Tue, 9 Jan 2024 10:29:45 +0100 Subject: [PATCH 363/765] Removed singleton UM.OperationStack, merged with CuraActions Removed ActiveTool singleton added to controller singleton CURA-7812 --- cura/CuraActions.py | 26 ++++++++++++++++++- .../PerObjectSettingsTool/PerObjectItem.qml | 2 +- .../PerObjectSettingsPanel.qml | 22 ++++++++-------- resources/qml/Actions.qml | 8 +++--- .../Custom/CustomPrintSetup.qml | 2 +- resources/qml/Settings/SettingTextField.qml | 2 +- resources/qml/Toolbar.qml | 4 +-- 7 files changed, 45 insertions(+), 21 deletions(-) diff --git a/cura/CuraActions.py b/cura/CuraActions.py index 9a61a1c4f06..36c69618ddf 100644 --- a/cura/CuraActions.py +++ b/cura/CuraActions.py @@ -3,10 +3,11 @@ from typing import List, cast -from PyQt6.QtCore import QObject, QUrl, QMimeData +from PyQt6.QtCore import QObject, QUrl, pyqtSignal, pyqtProperty from PyQt6.QtGui import QDesktopServices from PyQt6.QtWidgets import QApplication +from UM.Application import Application from UM.Event import CallFunctionEvent from UM.FlameProfiler import pyqtSlot from UM.Math.Vector import Vector @@ -37,6 +38,10 @@ class CuraActions(QObject): def __init__(self, parent: QObject = None) -> None: super().__init__(parent) + self._operation_stack = Application.getInstance().getOperationStack() + self._operation_stack.changed.connect(self._onUndoStackChanged) + + undoStackChanged = pyqtSignal() @pyqtSlot() def openDocumentation(self) -> None: # Starting a web browser from a signal handler connected to a menu will crash on windows. @@ -45,6 +50,25 @@ def openDocumentation(self) -> None: event = CallFunctionEvent(self._openUrl, [QUrl("https://ultimaker.com/en/resources/manuals/software?utm_source=cura&utm_medium=software&utm_campaign=dropdown-documentation")], {}) cura.CuraApplication.CuraApplication.getInstance().functionEvent(event) + @pyqtProperty(bool, notify=undoStackChanged) + def canUndo(self): + return self._operation_stack.canUndo() + + @pyqtProperty(bool, notify=undoStackChanged) + def canRedo(self): + return self._operation_stack.canRedo() + + @pyqtSlot() + def undo(self): + self._operation_stack.undo() + + @pyqtSlot() + def redo(self): + self._operation_stack.redo() + + def _onUndoStackChanged(self): + self.undoStackChanged.emit() + @pyqtSlot() def openBugReportPage(self) -> None: event = CallFunctionEvent(self._openUrl, [QUrl("https://github.com/Ultimaker/Cura/issues/new/choose")], {}) diff --git a/plugins/PerObjectSettingsTool/PerObjectItem.qml b/plugins/PerObjectSettingsTool/PerObjectItem.qml index b6cf13943b5..cd406c80af7 100644 --- a/plugins/PerObjectSettingsTool/PerObjectItem.qml +++ b/plugins/PerObjectSettingsTool/PerObjectItem.qml @@ -25,7 +25,7 @@ UM.TooltipArea onClicked: { addedSettingsModel.setVisible(model.key, checked); - UM.ActiveTool.forceUpdate(); + UM.Controller.forceUpdate(); } } diff --git a/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml b/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml index 0ddedee897c..78d6643034b 100644 --- a/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml +++ b/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml @@ -23,7 +23,7 @@ Item readonly property string infillMeshType: "infill_mesh" readonly property string antiOverhangMeshType: "anti_overhang_mesh" - property var currentMeshType: UM.ActiveTool.properties.getValue("MeshType") + property var currentMeshType: UM.Controller.properties.getValue("MeshType") // Update the view every time the currentMeshType changes onCurrentMeshTypeChanged: @@ -56,7 +56,7 @@ Item function setMeshType(type) { - UM.ActiveTool.setProperty("MeshType", type) + UM.Controller.setProperty("MeshType", type) updateMeshTypeCheckedState(type) } @@ -224,7 +224,7 @@ Item visibilityHandler: Cura.PerObjectSettingVisibilityHandler { id: visibility_handler - selectedObjectId: UM.ActiveTool.properties.getValue("SelectedObjectId") + selectedObjectId: UM.Controller.properties.getValue("SelectedObjectId") } // For some reason the model object is updated after removing him from the memory and @@ -320,7 +320,7 @@ Item { id: provider - containerStackId: UM.ActiveTool.properties.getValue("ContainerID") + containerStackId: UM.Controller.properties.getValue("ContainerID") key: model.key watchedProperties: [ "value", "enabled", "validationState" ] storeIndex: 0 @@ -330,7 +330,7 @@ Item UM.SettingPropertyProvider { id: inheritStackProvider - containerStackId: UM.ActiveTool.properties.getValue("ContainerID") + containerStackId: UM.Controller.properties.getValue("ContainerID") key: model.key watchedProperties: [ "limit_to_extruder" ] } @@ -381,22 +381,22 @@ Item Connections { - target: UM.ActiveTool + target: UM.Controller function onPropertiesChanged() { - // the values cannot be bound with UM.ActiveTool.properties.getValue() calls, + // the values cannot be bound with UM.Controller.properties.getValue() calls, // so here we connect to the signal and update the those values. - if (typeof UM.ActiveTool.properties.getValue("SelectedObjectId") !== "undefined") + if (typeof UM.Controller.properties.getValue("SelectedObjectId") !== "undefined") { - const selectedObjectId = UM.ActiveTool.properties.getValue("SelectedObjectId") + const selectedObjectId = UM.Controller.properties.getValue("SelectedObjectId") if (addedSettingsModel.visibilityHandler.selectedObjectId != selectedObjectId) { addedSettingsModel.visibilityHandler.selectedObjectId = selectedObjectId } } - if (typeof UM.ActiveTool.properties.getValue("ContainerID") !== "undefined") + if (typeof UM.Controller.properties.getValue("ContainerID") !== "undefined") { - const containerId = UM.ActiveTool.properties.getValue("ContainerID") + const containerId = UM.Controller.properties.getValue("ContainerID") if (provider.containerStackId !== containerId) { provider.containerStackId = containerId diff --git a/resources/qml/Actions.qml b/resources/qml/Actions.qml index 458d7fcaae9..7eac124a8f2 100644 --- a/resources/qml/Actions.qml +++ b/resources/qml/Actions.qml @@ -120,8 +120,8 @@ Item text: catalog.i18nc("@action:inmenu menubar:edit", "&Undo") icon.name: "edit-undo" shortcut: StandardKey.Undo - onTriggered: UM.OperationStack.undo() - enabled: UM.OperationStack.canUndo + onTriggered: UM.CuraActions.undo() + enabled: UM.CuraActions.canUndo } Action @@ -130,8 +130,8 @@ Item text: catalog.i18nc("@action:inmenu menubar:edit", "&Redo") icon.name: "edit-redo" shortcut: StandardKey.Redo - onTriggered: UM.OperationStack.redo() - enabled: UM.OperationStack.canRedo + onTriggered: UM.CuraActions.redo() + enabled: UM.CuraActions.canRedo } Action diff --git a/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml b/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml index 41ab40eb311..4cc1e3034a7 100644 --- a/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml +++ b/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml @@ -160,7 +160,7 @@ Item ProfileWarningReset { id: profileWarningReset - width: childrenRect.width + width: parent.width anchors.right: parent.right anchors.verticalCenter: parent.verticalCenter fullWarning: false diff --git a/resources/qml/Settings/SettingTextField.qml b/resources/qml/Settings/SettingTextField.qml index d8e90e4951e..f49b688c182 100644 --- a/resources/qml/Settings/SettingTextField.qml +++ b/resources/qml/Settings/SettingTextField.qml @@ -223,7 +223,7 @@ SettingItem cursorShape: Qt.IBeamCursor - onPressed: { + onPressed:(mouse)=> { if (!input.activeFocus) { base.focusGainedByClick = true diff --git a/resources/qml/Toolbar.qml b/resources/qml/Toolbar.qml index fd48ef74482..1af4e958f44 100644 --- a/resources/qml/Toolbar.qml +++ b/resources/qml/Toolbar.qml @@ -203,7 +203,7 @@ Item x: UM.Theme.getSize("default_margin").width y: UM.Theme.getSize("default_margin").height - source: UM.ActiveTool.valid ? UM.ActiveTool.activeToolPanel : "" + source: UM.Controller.valid ? UM.Controller.activeToolPanel : "" enabled: UM.Controller.toolsEnabled } } @@ -222,7 +222,7 @@ Item UM.Label { id: toolHint - text: UM.ActiveTool.properties.getValue("ToolHint") != undefined ? UM.ActiveTool.properties.getValue("ToolHint") : "" + text: UM.Controller.properties.getValue("ToolHint") != undefined ? UM.ActiveTool.properties.getValue("ToolHint") : "" color: UM.Theme.getColor("tooltip_text") anchors.horizontalCenter: parent.horizontalCenter } From 0ddf92ce62ff69b8e06a6704d0bae59edd49463e Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Tue, 9 Jan 2024 10:33:02 +0100 Subject: [PATCH 364/765] fix for proper path for CuraAction undo redo CURA-7812 --- resources/qml/Actions.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/qml/Actions.qml b/resources/qml/Actions.qml index 7eac124a8f2..3717e778d3b 100644 --- a/resources/qml/Actions.qml +++ b/resources/qml/Actions.qml @@ -120,8 +120,8 @@ Item text: catalog.i18nc("@action:inmenu menubar:edit", "&Undo") icon.name: "edit-undo" shortcut: StandardKey.Undo - onTriggered: UM.CuraActions.undo() - enabled: UM.CuraActions.canUndo + onTriggered: CuraActions.undo() + enabled: CuraActions.canUndo } Action @@ -130,8 +130,8 @@ Item text: catalog.i18nc("@action:inmenu menubar:edit", "&Redo") icon.name: "edit-redo" shortcut: StandardKey.Redo - onTriggered: UM.CuraActions.redo() - enabled: UM.CuraActions.canRedo + onTriggered: CuraActions.redo() + enabled: CuraActions.canRedo } Action From 1f7b8efff0d7369ae576410d86c0c1ff15e087e6 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Tue, 9 Jan 2024 16:26:14 +0100 Subject: [PATCH 365/765] Don't make `raft_smoothing` settable per extruder CURA-11395 --- resources/definitions/fdmprinter.def.json | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index af041bd803c..0bdfa7c6022 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6196,7 +6196,6 @@ "type": "bool", "value": "raft_remove_inside_corners", "default_value": false, - "resolve": "any(extruderValues('raft_remove_inside_corners'))", "enabled": "resolveOrValue('adhesion_type') == 'raft'", "limit_to_extruder": "raft_interface_extruder_nr", "settable_per_mesh": false, @@ -6229,7 +6228,7 @@ "enabled": "resolveOrValue('adhesion_type') == 'raft' and not raft_remove_inside_corners", "limit_to_extruder": "adhesion_extruder_nr", "settable_per_mesh": false, - "settable_per_extruder": true, + "settable_per_extruder": false, "children": { "raft_base_smoothing": @@ -6245,7 +6244,7 @@ "enabled": "resolveOrValue('adhesion_type') == 'raft' and not raft_base_remove_inside_corners", "limit_to_extruder": "raft_base_extruder_nr", "settable_per_mesh": false, - "settable_per_extruder": true + "settable_per_extruder": false }, "raft_interface_smoothing": { @@ -6260,7 +6259,7 @@ "enabled": "resolveOrValue('adhesion_type') == 'raft' and not raft_interface_remove_inside_corners", "limit_to_extruder": "raft_interface_extruder_nr", "settable_per_mesh": false, - "settable_per_extruder": true + "settable_per_extruder": false }, "raft_surface_smoothing": { @@ -6275,7 +6274,7 @@ "enabled": "resolveOrValue('adhesion_type') == 'raft' and not raft_surface_remove_inside_corners", "limit_to_extruder": "raft_surface_extruder_nr", "settable_per_mesh": false, - "settable_per_extruder": true + "settable_per_extruder": false } } }, From 30b25975df64990c3ac063699f4b56587ebe7dc8 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Tue, 9 Jan 2024 16:38:57 +0100 Subject: [PATCH 366/765] Make settings not settable par extruder CURA-11395 --- resources/definitions/fdmprinter.def.json | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 0bdfa7c6022..8531fdcbe3c 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6170,7 +6170,6 @@ "description": "Remove inside corners from the raft, causing the raft to become convex.", "type": "bool", "default_value": false, - "resolve": "any(extruderValues('raft_remove_inside_corners'))", "enabled": "resolveOrValue('adhesion_type') == 'raft'", "settable_per_mesh": false, "settable_per_extruder": false, @@ -6183,9 +6182,7 @@ "type": "bool", "value": "raft_remove_inside_corners", "default_value": false, - "resolve": "any(extruderValues('raft_remove_inside_corners'))", "enabled": "resolveOrValue('adhesion_type') == 'raft'", - "limit_to_extruder": "raft_base_extruder_nr", "settable_per_mesh": false, "settable_per_extruder": false }, @@ -6197,7 +6194,6 @@ "value": "raft_remove_inside_corners", "default_value": false, "enabled": "resolveOrValue('adhesion_type') == 'raft'", - "limit_to_extruder": "raft_interface_extruder_nr", "settable_per_mesh": false, "settable_per_extruder": false }, @@ -6208,9 +6204,7 @@ "type": "bool", "value": "raft_remove_inside_corners", "default_value": false, - "resolve": "any(extruderValues('raft_remove_inside_corners'))", "enabled": "resolveOrValue('adhesion_type') == 'raft'", - "limit_to_extruder": "raft_surface_extruder_nr", "settable_per_mesh": false, "settable_per_extruder": false } @@ -6226,7 +6220,6 @@ "minimum_value": "0", "minimum_value_warning": "raft_interface_line_width", "enabled": "resolveOrValue('adhesion_type') == 'raft' and not raft_remove_inside_corners", - "limit_to_extruder": "adhesion_extruder_nr", "settable_per_mesh": false, "settable_per_extruder": false, "children": @@ -6242,7 +6235,6 @@ "minimum_value": "0", "minimum_value_warning": "raft_interface_line_width", "enabled": "resolveOrValue('adhesion_type') == 'raft' and not raft_base_remove_inside_corners", - "limit_to_extruder": "raft_base_extruder_nr", "settable_per_mesh": false, "settable_per_extruder": false }, @@ -6257,7 +6249,6 @@ "minimum_value": "0", "minimum_value_warning": "raft_interface_line_width", "enabled": "resolveOrValue('adhesion_type') == 'raft' and not raft_interface_remove_inside_corners", - "limit_to_extruder": "raft_interface_extruder_nr", "settable_per_mesh": false, "settable_per_extruder": false }, @@ -6272,7 +6263,6 @@ "minimum_value": "0", "minimum_value_warning": "raft_interface_line_width", "enabled": "resolveOrValue('adhesion_type') == 'raft' and not raft_surface_remove_inside_corners", - "limit_to_extruder": "raft_surface_extruder_nr", "settable_per_mesh": false, "settable_per_extruder": false } From 2ad2afd1f41b70acffa0674cd53afa315d05cef2 Mon Sep 17 00:00:00 2001 From: GregValiant <64202104+GregValiant@users.noreply.github.com> Date: Tue, 9 Jan 2024 19:55:03 +0100 Subject: [PATCH 367/765] Update 'Advanced Cooling Fan Control' post-processing script. See discussions in #15853 (on github) and (internally) tracking-ticket CURA-11520 --- .../scripts/AddCoolingProfile.py | 258 ++++++++---------- 1 file changed, 108 insertions(+), 150 deletions(-) diff --git a/plugins/PostProcessingPlugin/scripts/AddCoolingProfile.py b/plugins/PostProcessingPlugin/scripts/AddCoolingProfile.py index 6f9ac2dc136..44709afd24c 100644 --- a/plugins/PostProcessingPlugin/scripts/AddCoolingProfile.py +++ b/plugins/PostProcessingPlugin/scripts/AddCoolingProfile.py @@ -1,17 +1,16 @@ -# January 2023 by GregValiant (Greg Foresi). -# Functions: -# Remove all fan speed lines from the file (optional). -# Enter new M106 lines "By Layer" or "By Feature" (;TYPE:WALL-OUTER, etc.). -# A Starting layer and/or an Ending layer can be defined. -# Fan speeds are scaled PWM (0 - 255) or RepRap (0 - 1) depending on {machine_scale_fan_speed_zero_to_one}. -# A minimum fan speed of 12% is enforced. -# If multiple extruders have separate fan circuits the speeds are set at tool changes and conform to the layer or -# feature setting. There is support for up to 4 layer cooling fan circuits. -# The option for whether or not to remove the existing M106 lines is added to allow multiple instances of this post-processor to be installed without the followup instances wiping out the insertions of previous instances. 1/3 of a file can be 'By Layer' and the second third 'By Feature', and end up with 'By Layer' again. -# My design intent was to make it as full featured and "industrial strength" as I could. -# My thanks to @5axes, @fieldOfView(@AHoeben), @Ghostkeeper, and @Torgeir. -# 9/14/23 added support for One-at-a-Time and removed the kick out code -# 12/15/23 split off some functions. Revised the regex replacements. +# Designed in January 2023 by GregValiant (Greg Foresi) +## My design intent was to make this as full featured and "industrial strength" as I could. People printing exotic materials on large custom printers may want to turn the fans off for certain layers, and then back on again later in the print. This script allows that. +# Functions: +## Remove all fan speed lines from the file (optional). This should be enabled for the first instance of the script. It is disabled by default in any following instances. +## "By Layer" allows the user to adjust the fan speed up, or down, or off, within the print. "By Feature" allows different fan speeds for different features (;TYPE:WALL-OUTER, etc.). +## If 'By Feature' then a Start Layer and/or an End Layer can be defined. +## Fan speeds are scaled PWM (0 - 255) or RepRap (0.0 - 1.0) depending on {machine_scale_fan_speed_zero_to_one}. +## A minimum fan speed of 12% is enforced. It is the slowest speed that my cooling fan will turn on so that's what I used. 'M106 S14' (as Cura might insert) was pretty useless. +## If multiple extruders have separate fan circuits the speeds are set at tool changes and conform to the layer or feature setting. There is support for up to 4 layer cooling fan circuits. +## My thanks to @5axes(@CUQ), @fieldOfView(@AHoeben), @Ghostkeeper, and @Torgeir. A special thanks to @RBurema for his patience in reviewing my 'non-pythonic' script. +## 9/14/23 (Greg Foresi) Added support for One-at-a-Time print sequence. +## 12/15/23 (Greg Foresi) Split off 'Single Fan By Layer', 'Multi-fan By Layer', 'Single Fan By Feature', and 'Multi-fan By Feature' from the main 'execute' script. +## 1/5/24 (Greg Foresi) Revised the regex replacements. from ..Script import Script from UM.Application import Application @@ -40,10 +39,11 @@ def getSettingDataString(self): "delete_existing_m106": { "label": "Remove M106 lines prior to inserting new.", - "description": "If you have 2 or more instances of 'Advanced Cooling Fan Control' running (to cool a portion of a print differently), then uncheck this box or the followup instances will remove all the lines inserted by the first instance. Pay attention to the Start and Stop layers. If you want to keep the Cura inserted lines up to the point where this post-processor will start making insertions, then un-check the box.", + "description": "If you have 2 or more instances of 'Advanced Cooling Fan Control' running (to cool a portion of a print differently), then you must uncheck this box or the followup instances will remove all the lines inserted by the first instance. Pay attention to the Start and Stop layers. Regardless of this setting: The script always removes M106 lines starting with the lowest layer number (when 'By Layer') or the starting layer number (when 'By Feature'). If you want to keep the M106 lines that Cura inserted up to the point where this post-processor will start making insertions, then un-check the box.", "type": "bool", "enabled": true, - "value": true + "value": true, + "default_value": true }, "feature_fan_start_layer": { @@ -65,73 +65,73 @@ def getSettingDataString(self): "unit": "Lay# ", "enabled": "fan_layer_or_feature == 'by_feature'" }, - "layer_fan_1st": + "layer_fan_1": { "label": "Layer/Percent #1", - "description": "Enter as: 'LAYER / Percent' Ex: 57/100 with the layer first, then a '/' to delimit, and then the fan percentage.", + "description": "Enter as: 'LAYER / Percent' Ex: 55/100 with the layer first, then a '/' to delimit, and then the fan percentage. There are up to 8 changes. If you need more then add a second instance of this script and remember to turn off 'Remove M106 lines' in the second instance. The layer numbers in the second instance must start with a layer number higher than the last layer number in a previous script. You can't end the first script with a setting for layer 80 and then start the second script with a setting for layer 40 because 'Remove M106 lines' always starts with the lowest layer number when 'By Layer' is selected.", "type": "str", "default_value": "5/30", "unit": "L#/% ", "enabled": "fan_layer_or_feature == 'by_layer'" }, - "layer_fan_2nd": + "layer_fan_2": { "label": "Layer/Percent #2", - "description": "Enter as: 'LAYER / Percent' Ex: 57/100 with the layer first, then a '/' to delimit, and then the fan percentage.", + "description": "Enter as: 'LAYER / Percent' Ex: 55/100 with the layer first, then a '/' to delimit, and then the fan percentage.", "type": "str", "default_value": "", "unit": "L#/% ", "enabled": "fan_layer_or_feature == 'by_layer'" }, - "layer_fan_3rd": + "layer_fan_3": { "label": "Layer/Percent #3", - "description": "Enter as: 'LAYER / Percent' Ex: 57/100 with the layer first, then a '/' to delimit, and then the fan percentage.", + "description": "Enter as: 'LAYER / Percent' Ex: 55/100 with the layer first, then a '/' to delimit, and then the fan percentage.", "type": "str", "default_value": "", "unit": "L#/% ", "enabled": "fan_layer_or_feature == 'by_layer'" }, - "layer_fan_4th": + "layer_fan_4": { "label": "Layer/Percent #4", - "description": "Enter as: 'LAYER / Percent' Ex: 57/100 with the layer first, then a '/' to delimit, and then the fan percentage.", + "description": "Enter as: 'LAYER / Percent' Ex: 55/100 with the layer first, then a '/' to delimit, and then the fan percentage.", "type": "str", "default_value": "", "unit": "L#/% ", "enabled": "fan_layer_or_feature == 'by_layer'" }, - "layer_fan_5th": + "layer_fan_5": { "label": "Layer/Percent #5", - "description": "Enter as: 'LAYER / Percent' Ex: 57/100 with the layer first, then a '/' to delimit, and then the fan percentage.", + "description": "Enter as: 'LAYER / Percent' Ex: 55/100 with the layer first, then a '/' to delimit, and then the fan percentage.", "type": "str", "default_value": "", "unit": "L#/% ", "enabled": "fan_layer_or_feature == 'by_layer'" }, - "layer_fan_6th": + "layer_fan_6": { "label": "Layer/Percent #6", - "description": "Enter as: 'LAYER / Percent' Ex: 57/100 with the layer first, then a '/' to delimit, and then the fan percentage.", + "description": "Enter as: 'LAYER / Percent' Ex: 55/100 with the layer first, then a '/' to delimit, and then the fan percentage.", "type": "str", "default_value": "", "unit": "L#/% ", "enabled": "fan_layer_or_feature == 'by_layer'" }, - "layer_fan_7th": + "layer_fan_7": { "label": "Layer/Percent #7", - "description": "Enter as: 'LAYER / Percent' Ex: 57/100 with the layer first, then a '/' to delimit, and then the fan percentage.", + "description": "Enter as: 'LAYER / Percent' Ex: 55/100 with the layer first, then a '/' to delimit, and then the fan percentage.", "type": "str", "default_value": "", "unit": "L#/% ", "enabled": "fan_layer_or_feature == 'by_layer'" }, - "layer_fan_8th": + "layer_fan_8": { "label": "Layer/Percent #8", - "description": "Enter as: 'LAYER / Percent' Ex: 57/100 with the layer first, then a '/' to delimit, and then the fan percentage.", + "description": "Enter as: 'LAYER / Percent' Ex: 55/100 with the layer first, then a '/' to delimit, and then the fan percentage.", "type": "str", "default_value": "", "unit": "L#/% ", @@ -140,7 +140,7 @@ def getSettingDataString(self): "feature_fan_skirt": { "label": "Skirt/Brim/Ooze Shield %", - "description": "Enter the fan percentage for skirt/brim. If you are starting at a layer above 1 then this setting only affects Ooze Shields and from the Start layer up.", + "description": "Enter the fan percentage for skirt/brim. If you are starting at a layer above 1 then this setting only affects Ooze Shields and from the Start Layer up.", "type": "int", "default_value": 0, "minimum_value": 0, @@ -247,7 +247,7 @@ def getSettingDataString(self): "feature_fan_feature_final": { "label": "Final %", - "description": "If you choose an 'End Layer' then this is the fan speed that will carry through to the end of the gcode file. It will go into effect at the 'END' of your end layer.", + "description": "If you choose an 'End Layer' then this is the fan speed that will carry through to the end of the gcode file. It will go into effect at the 'END' of your End layer.", "type": "int", "default_value": 35, "minimum_value": 0, @@ -283,7 +283,7 @@ def initialize(self) -> None: if scripts != None: script_count = scripts.count("AddCoolingProfile") if script_count > 0: - ## Set the default to "false" if there is more than one instance of this script running. + ## Set 'Remove M106 lines' to "false" if there is already an instance of this script running. self._instance.setProperty("delete_existing_m106", "value", False) def execute(self, data): @@ -314,6 +314,8 @@ def execute(self, data): else: #No P parameter if there is a single fan circuit------------------ t0_fan = "" + + #Get the cooling fan numbers for each extruder if the printer has multiple extruders elif extruder_count > 1: is_multi_fan = True t0_fan = " P" + str((extruder[0].getProperty("machine_extruder_cooling_fan_number", "value"))) @@ -325,21 +327,22 @@ def execute(self, data): #Initialize the fan_list with defaults---------------------------- fan_list = ["z"] * 16 for num in range(0,15,2): + fan_list[num] = len(data) fan_list[num + 1] = "M106 S0" #Assign the variable values if "By Layer"------------------------- by_layer_or_feature = self.getSettingValueByKey("fan_layer_or_feature") if by_layer_or_feature == "by_layer": - ## By layer doesn't do any feature search + ## By layer doesn't do any feature search so there is no need to look for combing moves feature_fan_combing = False - fan_list[0] = self.getSettingValueByKey("layer_fan_1st") - fan_list[2] = self.getSettingValueByKey("layer_fan_2nd") - fan_list[4] = self.getSettingValueByKey("layer_fan_3rd") - fan_list[6] = self.getSettingValueByKey("layer_fan_4th") - fan_list[8] = self.getSettingValueByKey("layer_fan_5th") - fan_list[10] = self.getSettingValueByKey("layer_fan_6th") - fan_list[12] = self.getSettingValueByKey("layer_fan_7th") - fan_list[14] = self.getSettingValueByKey("layer_fan_8th") + fan_list[0] = self.getSettingValueByKey("layer_fan_1") + fan_list[2] = self.getSettingValueByKey("layer_fan_2") + fan_list[4] = self.getSettingValueByKey("layer_fan_3") + fan_list[6] = self.getSettingValueByKey("layer_fan_4") + fan_list[8] = self.getSettingValueByKey("layer_fan_5") + fan_list[10] = self.getSettingValueByKey("layer_fan_6") + fan_list[12] = self.getSettingValueByKey("layer_fan_7") + fan_list[14] = self.getSettingValueByKey("layer_fan_8") ## If there is no '/' delimiter then ignore the line else put the settings in a list for num in range(0,15,2): if "/" in fan_list[num]: @@ -359,17 +362,18 @@ def execute(self, data): the_end_layer = -1 ## If there is an input error default to the entire gcode file. ## Get the speed for each feature - # 0;TYPE:SKIRT, 1;TYPE:WALL-INNER, 2;TYPE:WALL-OUTER, 3;TYPE:FILL, 4;TYPE:SKIN, 5;TYPE:SUPPORT, 6;TYPE:SUPPORT-INTERFACE, 7;TYPE:PRIME-TOWER, 8;BRIDGE, 9;FEATURE_FINAL, 10;FAN_COMBING, - fan_sp_skirt = self._feature_checker(self.getSettingValueByKey("feature_fan_skirt"), fan_mode) - fan_sp_wall_inner = self._feature_checker(self.getSettingValueByKey("feature_fan_wall_inner"), fan_mode) - fan_sp_wall_outer = self._feature_checker(self.getSettingValueByKey("feature_fan_wall_outer"), fan_mode) - fan_sp_fill = self._feature_checker(self.getSettingValueByKey("feature_fan_fill"), fan_mode) - fan_sp_skin = self._feature_checker(self.getSettingValueByKey("feature_fan_skin"), fan_mode) - fan_sp_support = self._feature_checker(self.getSettingValueByKey("feature_fan_support"), fan_mode) - fan_sp_support_interface = self._feature_checker(self.getSettingValueByKey("feature_fan_support_interface"), fan_mode) - fan_sp_prime_tower = self._feature_checker(self.getSettingValueByKey("feature_fan_prime_tower"), fan_mode) - fan_sp_bridge = self._feature_checker(self.getSettingValueByKey("feature_fan_bridge"), fan_mode) - fan_sp_feature_final = self._feature_checker(self.getSettingValueByKey("feature_fan_feature_final"), fan_mode) + feature_name_list = [] + feature_speed_list = [] + feature_speed_list.append(self._feature_checker(self.getSettingValueByKey("feature_fan_skirt"), fan_mode)); feature_name_list.append(";TYPE:SKIRT") + feature_speed_list.append(self._feature_checker(self.getSettingValueByKey("feature_fan_wall_inner"), fan_mode)); feature_name_list.append(";TYPE:WALL-INNER") + feature_speed_list.append(self._feature_checker(self.getSettingValueByKey("feature_fan_wall_outer"), fan_mode)); feature_name_list.append(";TYPE:WALL-OUTER") + feature_speed_list.append(self._feature_checker(self.getSettingValueByKey("feature_fan_fill"), fan_mode)); feature_name_list.append(";TYPE:FILL") + feature_speed_list.append(self._feature_checker(self.getSettingValueByKey("feature_fan_skin"), fan_mode)); feature_name_list.append(";TYPE:SKIN") + feature_speed_list.append(self._feature_checker(self.getSettingValueByKey("feature_fan_support"), fan_mode)); feature_name_list.append(";TYPE:SUPPORT") + feature_speed_list.append(self._feature_checker(self.getSettingValueByKey("feature_fan_support_interface"), fan_mode)); feature_name_list.append(";TYPE:SUPPORT-INTERFACE") + feature_speed_list.append(self._feature_checker(self.getSettingValueByKey("feature_fan_prime_tower"), fan_mode)); feature_name_list.append(";TYPE:PRIME-TOWER") + feature_speed_list.append(self._feature_checker(self.getSettingValueByKey("feature_fan_bridge"), fan_mode)); feature_name_list.append(";BRIDGE") + feature_speed_list.append(self._feature_checker(self.getSettingValueByKey("feature_fan_feature_final"), fan_mode)); feature_name_list.append("FINAL_FAN") feature_fan_combing = self.getSettingValueByKey("feature_fan_combing") if the_end_layer > -1 and by_layer_or_feature == "by_feature": ## Required so the final speed input can be determined @@ -459,18 +463,20 @@ def execute(self, data): altered_start_layer = str(len(data)) ## The fan list layers don't need to be in ascending order. Get the lowest. for num in range(0,15,2): - if int(fan_list[num]) < int(altered_start_layer): - altered_start_layer = int(fan_list[num]) + try: + if int(fan_list[num]) < int(altered_start_layer): + altered_start_layer = int(fan_list[num]) + except: + pass elif by_layer_or_feature == "by_feature": altered_start_layer = int(the_start_layer) - 1 start_from = int(layer_0_index) + int(altered_start_layer) - ## Strip the M106 and M107 lines from the file for l_index in range(int(start_from), len(data) - 1, 1): data[l_index] = re.sub(re.compile("M106(.*)\n"), "", data[l_index]) data[l_index] = re.sub(re.compile("M107(.*)\n"), "", data[l_index]) - ## Deal with a raft and with One-At-A-Time + ## Deal with a raft and with One-At-A-Time print sequence if raft_enabled and bed_adhesion == "raft": if print_sequence == "one_at_a_time": for r_index in range(2,len(data)-2,1): @@ -482,7 +488,7 @@ def execute(self, data): if ";LAYER:-" in data[r_index]: ## Turn the raft fan on lines.insert(1, fan_sp_raft + str(t0_fan)) - ## Shut the raft fan off + ## Shut the raft fan off at layer 0 if ";LAYER:0" in data[r_index]: lines.insert(1,"M106 S0" + str(t0_fan)) data[r_index] = "\n".join(lines) @@ -507,7 +513,7 @@ def execute(self, data): lines.insert(1, "M106 S0" + str(t0_fan)) data[r_index] = "\n".join(lines) - ## Turn off all fans at the end of data[1] + ## Turn off all fans at the end of data[1]. If more than one instance of this script is running then this will result in multiple M106 lines. temp_startup = data[1].split("\n") temp_startup.insert(len(temp_startup)-2,"M106 S0" + str(t0_fan)) ## If there are multiple cooling fans shut them all off @@ -535,31 +541,28 @@ def execute(self, data): #Single Fan "By Feature"------------------------------------------ if by_layer_or_feature == "by_feature" and (not is_multi_fan or not is_multi_extr_print): - return self._single_fan_by_feature(data, layer_0_index, the_start_layer, the_end_layer, the_end_is_enabled, fan_list, t0_fan, fan_sp_skirt, fan_sp_wall_inner, fan_sp_wall_outer, fan_sp_fill, fan_sp_skin, fan_sp_support, fan_sp_support_interface, feature_fan_combing, fan_sp_prime_tower, fan_sp_bridge, fan_sp_feature_final) + return self._single_fan_by_feature(data, layer_0_index, the_start_layer, the_end_layer, the_end_is_enabled, fan_list, t0_fan, feature_speed_list, feature_name_list, feature_fan_combing) #Multi Fan "By Feature"------------------------------------------- if by_layer_or_feature == "by_feature" and is_multi_fan: - return self._multi_fan_by_feature(data, layer_0_index, the_start_layer, the_end_layer, the_end_is_enabled, fan_list, t0_fan, t1_fan, t2_fan, t3_fan, fan_sp_skirt, fan_sp_wall_inner, fan_sp_wall_outer, fan_sp_fill, fan_sp_skin, fan_sp_support, fan_sp_support_interface, feature_fan_combing, fan_sp_prime_tower, fan_sp_bridge, fan_sp_feature_final) + return self._multi_fan_by_feature(data, layer_0_index, the_start_layer, the_end_layer, the_end_is_enabled, fan_list, t0_fan, t1_fan, t2_fan, t3_fan, feature_speed_list, feature_name_list, feature_fan_combing) # The Single Fan "By Layer"---------------------------------------- def _single_fan_by_layer(self, data: str, layer_0_index: int, fan_list: str, t0_fan: str)->str: layer_number = "0" - single_fan_layer = data - for l_index in range(layer_0_index,len(single_fan_layer)-1,1): - layer = single_fan_layer[l_index] + single_fan_data = data + for l_index in range(layer_0_index,len(single_fan_data)-1,1): + layer = single_fan_data[l_index] fan_lines = layer.split("\n") for fan_line in fan_lines: if ";LAYER:" in fan_line: - layer_number = int(fan_line.split(":")[1]) - ## If there is a match for the current layer number make the insertion. - try: - for num in range(0,15,2): - if int(layer_number) == int(fan_list[num]): - layer = layer.replace(fan_lines[0],fan_lines[0] + "\n" + fan_list[num + 1] + str(t0_fan)) - single_fan_layer[l_index] = layer - except: - continue - return single_fan_layer + layer_number = str(fan_line.split(":")[1]) + ## If there is a match for the current layer number make the insertion + for num in range(0,15,2): + if layer_number == str(fan_list[num]): + layer = layer.replace(fan_lines[0],fan_lines[0] + "\n" + fan_list[num + 1] + str(t0_fan)) + single_fan_data[l_index] = layer + return single_fan_data # Multi-Fan "By Layer"----------------------------------------- def _multi_fan_by_layer(self, data: str, layer_0_index: int, fan_list: str, t0_fan: str, t1_fan: str, t2_fan: str, t3_fan: str)->str: @@ -625,7 +628,7 @@ def _multi_fan_by_layer(self, data: str, layer_0_index: int, fan_list: str, t0_f return multi_fan_data # Single fan by feature----------------------------------------------- - def _single_fan_by_feature(self, data: str, layer_0_index: int, the_start_layer: str, the_end_layer: str, the_end_is_enabled: str, fan_list: str, t0_fan: str, fan_sp_skirt: str, fan_sp_wall_inner: str, fan_sp_wall_outer: str, fan_sp_fill: str, fan_sp_skin: str, fan_sp_support: str, fan_sp_support_interface: str, feature_fan_combing: str, fan_sp_prime_tower: str, fan_sp_bridge: str, fan_sp_feature_final: str)->str: + def _single_fan_by_feature(self, data: str, layer_0_index: int, the_start_layer: str, the_end_layer: str, the_end_is_enabled: str, fan_list: str, t0_fan: str, feature_speed_list: str, feature_name_list: str, feature_fan_combing: bool)->str: single_fan_data = data layer_number = "0" index = 1 @@ -638,37 +641,26 @@ def _single_fan_by_feature(self, data: str, layer_0_index: int, the_start_layer: if ";LAYER:" in line: layer_number = str(line.split(":")[1]) if int(layer_number) >= int(the_start_layer) and int(layer_number) < int(the_end_layer)-1: - if ";TYPE:SKIRT" in line: - modified_data += fan_sp_skirt + t0_fan + "\n" - elif ";TYPE:WALL-INNER" in line: - modified_data += fan_sp_wall_inner + t0_fan + "\n" - elif ";TYPE:WALL-OUTER" in line: - modified_data += fan_sp_wall_outer + t0_fan + "\n" - elif ";TYPE:FILL" in line: - modified_data += fan_sp_fill + t0_fan + "\n" - elif ";TYPE:SKIN" in line: - modified_data += fan_sp_skin + t0_fan + "\n" - elif line == ";TYPE:SUPPORT": - modified_data += fan_sp_support + t0_fan + "\n" - elif ";TYPE:SUPPORT-INTERFACE" in line: - modified_data += fan_sp_support_interface + t0_fan + "\n" + temp = line.split(" ")[0] + try: + name_index = feature_name_list.index(temp) + except: + name_index = -1 + if name_index != -1: + modified_data += feature_speed_list[name_index] + t0_fan + "\n" elif ";MESH:NONMESH" in line: if feature_fan_combing == True: modified_data += "M106 S0" + t0_fan + "\n" - elif ";TYPE:PRIME-TOWER" in line: - modified_data += fan_sp_prime_tower + t0_fan + "\n" - elif line == ";BRIDGE": - modified_data += fan_sp_bridge + t0_fan + "\n" modified_data += line + "\n" ## If an End Layer is defined and is less than the last layer then insert the Final Speed - if line == ";LAYER:" + str(the_end_layer) and the_end_is_enabled == True: - modified_data += fan_sp_feature_final + t0_fan + "\n" + if line == ";LAYER:" + str(the_end_layer) and the_end_is_enabled == True: + modified_data += feature_speed_list[len(feature_speed_list) - 1] + t0_fan + "\n" if modified_data.endswith("\n"): modified_data = modified_data[0: - 1] single_fan_data[l_index] = modified_data return single_fan_data # Multi-fan by feature------------------------------------------------ - def _multi_fan_by_feature(self, data: str, layer_0_index: int, the_start_layer: str, the_end_layer: str, the_end_is_enabled: str, fan_list: str, t0_fan: str, t1_fan: str, t2_fan: str, t3_fan: str, fan_sp_skirt: str, fan_sp_wall_inner: str, fan_sp_wall_outer: str, fan_sp_fill: str, fan_sp_skin: str, fan_sp_support: str, fan_sp_support_interface: str, feature_fan_combing: str, fan_sp_prime_tower: str, fan_sp_bridge: str, fan_sp_feature_final: str)->str: + def _multi_fan_by_feature(self, data: str, layer_0_index: int, the_start_layer: str, the_end_layer: str, the_end_is_enabled: str, fan_list: str, t0_fan: str, t1_fan: str, t2_fan: str, t3_fan: str, feature_speed_list: str, feature_name_list: str, feature_fan_combing: bool)->str: multi_fan_data = data layer_number = "0" start_index = 1 @@ -729,35 +721,16 @@ def _multi_fan_by_feature(self, data: str, layer_0_index: int, the_start_layer: if ";LAYER:" in line: layer_number = str(line.split(":")[1]) modified_data += line + "\n" - if int(layer_number) >= int(the_start_layer): # Problem with oneatatime < start - if ";TYPE:SKIRT" in line: - modified_data += line + "\n" - modified_data += fan_sp_skirt + this_fan + "\n" - current_fan_speed = str(fan_sp_skirt.split("S")[1]) - elif ";TYPE:WALL-INNER" in line: - modified_data += line + "\n" - modified_data += fan_sp_wall_inner + this_fan + "\n" - current_fan_speed = str(fan_sp_wall_inner.split("S")[1]) - elif ";TYPE:WALL-OUTER" in line: - modified_data += line + "\n" - modified_data += fan_sp_wall_outer + this_fan + "\n" - current_fan_speed = str(fan_sp_wall_outer.split("S")[1]) - elif ";TYPE:FILL" in line: - modified_data += line + "\n" - modified_data += fan_sp_fill + this_fan + "\n" - current_fan_speed = str(fan_sp_fill.split("S")[1]) - elif ";TYPE:SKIN" in line: - modified_data += line + "\n" - modified_data += fan_sp_skin + this_fan + "\n" - current_fan_speed = str(fan_sp_skin.split("S")[1]) - elif line == ";TYPE:SUPPORT": - modified_data += line + "\n" - modified_data += fan_sp_support + this_fan + "\n" - current_fan_speed = str(fan_sp_support.split("S")[1]) - elif ";TYPE:SUPPORT-INTERFACE" in line: - modified_data += line + "\n" - modified_data += fan_sp_support_interface + this_fan + "\n" - current_fan_speed = str(fan_sp_support_interface.split("S")[1]) + if int(layer_number) >= int(the_start_layer): + temp = line.split(" ")[0] + try: + name_index = feature_name_list.index(temp) + except: + name_index = -1 + if name_index != -1: + modified_data += line + "\n" + feature_speed_list[name_index] + this_fan + "\n" + #modified_data += feature_speed_list[name_index] + this_fan + "\n" + current_fan_speed = str(feature_speed_list[name_index].split("S")[1]) elif ";MESH:NONMESH" in line: if feature_fan_combing == True: modified_data += line + "\n" @@ -765,27 +738,12 @@ def _multi_fan_by_feature(self, data: str, layer_0_index: int, the_start_layer: current_fan_speed = "0" else: modified_data += line + "\n" - elif ";TYPE:PRIME-TOWER" in line: - modified_data += line + "\n" - modified_data += fan_sp_prime_tower + this_fan + "\n" - current_fan_speed = str(fan_sp_prime_tower.split("S")[1]) - elif line == ";BRIDGE": - modified_data += line + "\n" - modified_data += fan_sp_bridge + this_fan + "\n" - current_fan_speed = str(fan_sp_bridge.split("S")[1]) ## If an end layer is defined - Insert the final speed and set the other variables to Final Speed to finish the file ## There cannot be a break here because if there are multiple fan numbers they still need to be shut off and turned on. elif line == ";LAYER:" + str(the_end_layer): - modified_data += fan_sp_feature_final + this_fan + "\n" - fan_sp_skirt = fan_sp_feature_final - fan_sp_wall_inner = fan_sp_feature_final - fan_sp_wall_outer = fan_sp_feature_final - fan_sp_fill = fan_sp_feature_final - fan_sp_skin = fan_sp_feature_final - fan_sp_support = fan_sp_feature_final - fan_sp_support_interface = fan_sp_feature_final - fan_sp_prime_tower = fan_sp_feature_final - fan_sp_bridge = fan_sp_feature_final + modified_data += feature_speed_list[len(feature_speed_list) - 1] + this_fan + "\n" + for set_speed in range(0, len(feature_speed_list) - 2): + feature_speed_list[set_speed] = feature_speed_list[len(feature_speed_list) - 1] else: ## Layer and Tool get inserted into modified_data above. All other lines go into modified_data here if not line.startswith("T") and not line.startswith(";LAYER:"): modified_data += line + "\n" @@ -836,9 +794,9 @@ def _feature_checker(self, fan_feat_string: int, fan_mode: bool) -> str: return fan_sp_feat # Add additional travel comments to turn the fan off during combing. - def _add_travel_comment(self, the_data: str, lay_0_index: str) -> str: - for lay_num in range(int(lay_0_index), len(the_data)-1,1): - layer = the_data[lay_num] + def _add_travel_comment(self, comment_data: str, lay_0_index: str) -> str: + for lay_num in range(int(lay_0_index), len(comment_data)-1,1): + layer = comment_data[lay_num] lines = layer.split("\n") ## Copy the data to new_data and make the insertions there new_data = lines @@ -875,5 +833,5 @@ def _add_travel_comment(self, the_data: str, lay_0_index: str) -> str: g0_count = 0 g0_index = -1 is_travel = False - the_data[lay_num] = "\n".join(new_data) - return the_data \ No newline at end of file + comment_data[lay_num] = "\n".join(new_data) + return comment_data \ No newline at end of file From b3825ee1c7f43a7e21784462433a921ea4a612a9 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Wed, 10 Jan 2024 05:39:59 +0100 Subject: [PATCH 368/765] actually use f string Contributes to CURA-11482 --- plugins/CuraEngineBackend/StartSliceJob.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/CuraEngineBackend/StartSliceJob.py b/plugins/CuraEngineBackend/StartSliceJob.py index fe7137150b4..935eb81afaa 100644 --- a/plugins/CuraEngineBackend/StartSliceJob.py +++ b/plugins/CuraEngineBackend/StartSliceJob.py @@ -337,7 +337,7 @@ def run(self) -> None: user_id = uuid.getnode() # On all of Cura's supported platforms, this returns the MAC address which is pseudonymical information (!= anonymous). user_id %= 2 ** 16 # So to make it anonymous, apply a bitmask selecting only the last 16 bits. This prevents it from being traceable to a specific user but still gives somewhat of an idea of whether it's just the same user hitting the same crash over and over again, or if it's widespread. - self._slice_message.sentry_id = "{user_id}" + self._slice_message.sentry_id = f"{user_id}" self._slice_message.cura_version = CuraVersion # Build messages for extruder stacks From e47698c9ec312c666a14290bdd3440e1dda76e36 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Wed, 10 Jan 2024 06:49:27 +0100 Subject: [PATCH 369/765] Use engine version from branch CURA-11482 Contributes to CURA-11482 --- conandata.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conandata.yml b/conandata.yml index a0a5a204ca6..dcf883c630c 100644 --- a/conandata.yml +++ b/conandata.yml @@ -1,7 +1,7 @@ version: "5.7.0-alpha.0" requirements: - "uranium/(latest)@ultimaker/testing" - - "curaengine/(latest)@ultimaker/testing" + - "curaengine/(latest)@ultimaker/cura_11482" - "cura_binary_data/(latest)@ultimaker/testing" - "fdm_materials/(latest)@ultimaker/testing" - "curaengine_plugin_gradual_flow/(latest)@ultimaker/stable" From c64dcb785cb2abbcee0f7ceb98d2be0ea466fef5 Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Wed, 10 Jan 2024 08:55:56 +0100 Subject: [PATCH 370/765] Remove 'support_interface_skip_height' setting. Was used for run-time efficiency, but it wasn't really ever set beyond one layer-height, which made it rather useless. frontend part of CURA-11157 -- needed version upgrader as well, since it's the first alteration --- .../VersionUpgrade56to57.py | 95 +++++++++++++++++++ .../VersionUpgrade56to57/__init__.py | 61 ++++++++++++ .../VersionUpgrade56to57/plugin.json | 8 ++ resources/definitions/ankermake_m5.def.json | 1 - resources/definitions/artillery_base.def.json | 1 - .../atmat_signal_pro_base.def.json | 1 - resources/definitions/biqu_base.def.json | 1 - resources/definitions/blocks_base.def.json | 1 - resources/definitions/fdmprinter.def.json | 14 --- .../definitions/flyingbear_base.def.json | 1 - resources/definitions/fusion3_f410.def.json | 1 - resources/definitions/kingroon_base.def.json | 1 - resources/definitions/koonovo_base.def.json | 1 - resources/definitions/koonovo_kn3.def.json | 1 - resources/definitions/koonovo_kn5.def.json | 1 - resources/definitions/longer_base.def.json | 1 - resources/definitions/mingda_base.def.json | 1 - resources/definitions/tank_m_base.def.json | 1 - resources/definitions/tronxy_x.def.json | 1 - resources/definitions/two_trees_base.def.json | 1 - resources/definitions/vivedino_base.def.json | 1 - resources/i18n/fdmprinter.def.json.pot | 8 -- .../quality/beamup_l/beamup_l_coarse.inst.cfg | 1 - .../quality/beamup_l/beamup_l_draft.inst.cfg | 1 - .../beamup_l/beamup_l_extra_fine.inst.cfg | 1 - .../quality/beamup_l/beamup_l_fine.inst.cfg | 1 - .../quality/beamup_l/beamup_l_normal.inst.cfg | 1 - .../quality/beamup_s/beamup_s_coarse.inst.cfg | 1 - .../quality/beamup_s/beamup_s_draft.inst.cfg | 1 - .../beamup_s/beamup_s_extra_fine.inst.cfg | 1 - .../quality/beamup_s/beamup_s_fine.inst.cfg | 1 - .../quality/beamup_s/beamup_s_normal.inst.cfg | 1 - .../quality/flsun_sr/flsun_sr_fine.inst.cfg | 1 - .../quality/flsun_sr/flsun_sr_normal.inst.cfg | 1 - .../flsun_v400/flsun_v400_normal.inst.cfg | 1 - .../imade3d_jellybox_coarse.inst.cfg | 1 - .../imade3d_jellybox_fine.inst.cfg | 1 - .../imade3d_jellybox_normal.inst.cfg | 1 - .../imade3d_jellybox_ultrafine.inst.cfg | 1 - .../jb2_global_coarse.inst.cfg | 1 - .../jb2_global_fine.inst.cfg | 1 - .../jb2_global_normal.inst.cfg | 1 - .../jb2_global_ultrafine.inst.cfg | 1 - resources/setting_visibility/expert.cfg | 1 - .../variants/arjun/arjun300_pva_0.2.inst.cfg | 1 - .../variants/arjun/arjun300_pva_0.3.inst.cfg | 1 - .../variants/arjun/arjun300_pva_0.4.inst.cfg | 1 - .../variants/arjun/arjun300_pva_0.5.inst.cfg | 1 - .../variants/arjun/arjun300_pva_0.6.inst.cfg | 1 - .../variants/arjun/arjun300_pva_0.8.inst.cfg | 1 - .../arjun/arjunpro300_pva_0.2.inst.cfg | 1 - .../arjun/arjunpro300_pva_0.3.inst.cfg | 1 - .../arjun/arjunpro300_pva_0.4.inst.cfg | 1 - .../arjun/arjunpro300_pva_0.5.inst.cfg | 1 - .../arjun/arjunpro300_pva_0.6.inst.cfg | 1 - .../arjun/arjunpro300_pva_0.8.inst.cfg | 1 - .../kosher/kosher220_pva_0.2.inst.cfg | 1 - .../kosher/kosher220_pva_0.3.inst.cfg | 1 - .../kosher/kosher220_pva_0.4.inst.cfg | 1 - .../kosher/kosher220_pva_0.5.inst.cfg | 1 - .../kosher/kosher220_pva_0.6.inst.cfg | 1 - .../kosher/kosher220_pva_0.8.inst.cfg | 1 - 62 files changed, 164 insertions(+), 79 deletions(-) create mode 100644 plugins/VersionUpgrade/VersionUpgrade56to57/VersionUpgrade56to57.py create mode 100644 plugins/VersionUpgrade/VersionUpgrade56to57/__init__.py create mode 100644 plugins/VersionUpgrade/VersionUpgrade56to57/plugin.json diff --git a/plugins/VersionUpgrade/VersionUpgrade56to57/VersionUpgrade56to57.py b/plugins/VersionUpgrade/VersionUpgrade56to57/VersionUpgrade56to57.py new file mode 100644 index 00000000000..8e94f7963c6 --- /dev/null +++ b/plugins/VersionUpgrade/VersionUpgrade56to57/VersionUpgrade56to57.py @@ -0,0 +1,95 @@ +# Copyright (c) 2024 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. + +import configparser +from typing import Tuple, List +import io +from UM.VersionUpgrade import VersionUpgrade + +_REMOVED_SETTINGS = { + "support_interface_skip_height", +} +_NEW_SETTING_VERSION = "23" + + +class VersionUpgrade56to57(VersionUpgrade): + def upgradePreferences(self, serialized: str, filename: str) -> Tuple[List[str], List[str]]: + """ + Upgrades preferences to remove from the visibility list the settings that were removed in this version. + It also changes the preferences to have the new version number. + + This removes any settings that were removed in the new Cura version. + :param serialized: The original contents of the preferences file. + :param filename: The file name of the preferences file. + :return: A list of new file names, and a list of the new contents for + those files. + """ + parser = configparser.ConfigParser(interpolation = None) + parser.read_string(serialized) + + # Update version number. + parser["metadata"]["setting_version"] = _NEW_SETTING_VERSION + + # Remove deleted settings from the visible settings list. + if "general" in parser and "visible_settings" in parser["general"]: + visible_settings = set(parser["general"]["visible_settings"].split(";")) + for removed in _REMOVED_SETTINGS: + if removed in visible_settings: + visible_settings.remove(removed) + + parser["general"]["visible_settings"] = ";".join(visible_settings) + + result = io.StringIO() + parser.write(result) + return [filename], [result.getvalue()] + + def upgradeInstanceContainer(self, serialized: str, filename: str) -> Tuple[List[str], List[str]]: + """ + Upgrades instance containers to remove the settings that were removed in this version. + It also changes the instance containers to have the new version number. + + This removes any settings that were removed in the new Cura version and updates settings that need to be updated + with a new value. + + :param serialized: The original contents of the instance container. + :param filename: The original file name of the instance container. + :return: A list of new file names, and a list of the new contents for + those files. + """ + parser = configparser.ConfigParser(interpolation = None, comment_prefixes = ()) + parser.read_string(serialized) + + # Update version number. + parser["metadata"]["setting_version"] = _NEW_SETTING_VERSION + + if "values" in parser: + # Remove deleted settings from the instance containers. + for removed in _REMOVED_SETTINGS: + if removed in parser["values"]: + del parser["values"][removed] + + result = io.StringIO() + parser.write(result) + return [filename], [result.getvalue()] + + def upgradeStack(self, serialized: str, filename: str) -> Tuple[List[str], List[str]]: + """ + Upgrades stacks to have the new version number. + + :param serialized: The original contents of the stack. + :param filename: The original file name of the stack. + :return: A list of new file names, and a list of the new contents for + those files. + """ + parser = configparser.ConfigParser(interpolation = None) + parser.read_string(serialized) + + # Update version number. + if "metadata" not in parser: + parser["metadata"] = {} + + parser["metadata"]["setting_version"] = _NEW_SETTING_VERSION + + result = io.StringIO() + parser.write(result) + return [filename], [result.getvalue()] diff --git a/plugins/VersionUpgrade/VersionUpgrade56to57/__init__.py b/plugins/VersionUpgrade/VersionUpgrade56to57/__init__.py new file mode 100644 index 00000000000..62e72c8da4f --- /dev/null +++ b/plugins/VersionUpgrade/VersionUpgrade56to57/__init__.py @@ -0,0 +1,61 @@ +# Copyright (c) 2024 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. + +from typing import Any, Dict, TYPE_CHECKING + +from . import VersionUpgrade56to57 + +if TYPE_CHECKING: + from UM.Application import Application + +upgrade = VersionUpgrade56to57.VersionUpgrade56to57() + + +def getMetaData() -> Dict[str, Any]: + return { + "version_upgrade": { + # From To Upgrade function + ("preferences", 7000022): ("preferences", 7000023, upgrade.upgradePreferences), + ("machine_stack", 6000022): ("machine_stack", 6000023, upgrade.upgradeStack), + ("extruder_train", 6000022): ("extruder_train", 6000023, upgrade.upgradeStack), + ("definition_changes", 4000022): ("definition_changes", 4000023, upgrade.upgradeInstanceContainer), + ("quality_changes", 4000022): ("quality_changes", 4000023, upgrade.upgradeInstanceContainer), + ("quality", 4000022): ("quality", 4000023, upgrade.upgradeInstanceContainer), + ("user", 4000022): ("user", 4000023, upgrade.upgradeInstanceContainer), + ("intent", 4000022): ("intent", 4000023, upgrade.upgradeInstanceContainer), + }, + "sources": { + "preferences": { + "get_version": upgrade.getCfgVersion, + "location": {"."} + }, + "machine_stack": { + "get_version": upgrade.getCfgVersion, + "location": {"./machine_instances"} + }, + "extruder_train": { + "get_version": upgrade.getCfgVersion, + "location": {"./extruders"} + }, + "definition_changes": { + "get_version": upgrade.getCfgVersion, + "location": {"./definition_changes"} + }, + "quality_changes": { + "get_version": upgrade.getCfgVersion, + "location": {"./quality_changes"} + }, + "quality": { + "get_version": upgrade.getCfgVersion, + "location": {"./quality"} + }, + "user": { + "get_version": upgrade.getCfgVersion, + "location": {"./user"} + } + } + } + + +def register(app: "Application") -> Dict[str, Any]: + return {"version_upgrade": upgrade} diff --git a/plugins/VersionUpgrade/VersionUpgrade56to57/plugin.json b/plugins/VersionUpgrade/VersionUpgrade56to57/plugin.json new file mode 100644 index 00000000000..1752d64aa0e --- /dev/null +++ b/plugins/VersionUpgrade/VersionUpgrade56to57/plugin.json @@ -0,0 +1,8 @@ +{ + "name": "Version Upgrade 5.6 to 5.7", + "author": "UltiMaker", + "version": "1.0.0", + "description": "Upgrades configurations from Cura 5.6 to Cura 5.7.", + "api": 8, + "i18n-catalog": "cura" +} diff --git a/resources/definitions/ankermake_m5.def.json b/resources/definitions/ankermake_m5.def.json index 0880f0b0075..4e4b3498b3c 100644 --- a/resources/definitions/ankermake_m5.def.json +++ b/resources/definitions/ankermake_m5.def.json @@ -112,7 +112,6 @@ "support_interface_density": { "value": 33.333 }, "support_interface_enable": { "value": true }, "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, "support_roof_enable": { "value": true }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, "support_xy_distance_overhang": { "value": "wall_line_width_0" }, diff --git a/resources/definitions/artillery_base.def.json b/resources/definitions/artillery_base.def.json index d9e71e4333e..38d9531f7f5 100644 --- a/resources/definitions/artillery_base.def.json +++ b/resources/definitions/artillery_base.def.json @@ -114,7 +114,6 @@ "support_interface_enable": { "value": true }, "support_interface_height": { "value": "layer_height * 4" }, "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, "support_xy_distance_overhang": { "value": "wall_line_width_0" }, "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, diff --git a/resources/definitions/atmat_signal_pro_base.def.json b/resources/definitions/atmat_signal_pro_base.def.json index f19dc8920d7..cd59e1c1691 100644 --- a/resources/definitions/atmat_signal_pro_base.def.json +++ b/resources/definitions/atmat_signal_pro_base.def.json @@ -154,7 +154,6 @@ "support_infill_rate": { "value": "20" }, "support_interface_enable": { "value": "True" }, "support_interface_height": { "value": "1" }, - "support_interface_skip_height": { "value": "layer_height" }, "support_join_distance": { "value": "1" }, "support_offset": { "value": "1.5" }, "support_pattern": { "default_value": "zigzag" }, diff --git a/resources/definitions/biqu_base.def.json b/resources/definitions/biqu_base.def.json index 78edc62b740..a42f4044a0f 100755 --- a/resources/definitions/biqu_base.def.json +++ b/resources/definitions/biqu_base.def.json @@ -108,7 +108,6 @@ "support_interface_enable": { "value": true }, "support_interface_height": { "value": "layer_height * 4" }, "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": 1 }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, diff --git a/resources/definitions/blocks_base.def.json b/resources/definitions/blocks_base.def.json index d83e6b31f6d..fde5f912da1 100644 --- a/resources/definitions/blocks_base.def.json +++ b/resources/definitions/blocks_base.def.json @@ -97,7 +97,6 @@ "support_interface_enable": { "value": true }, "support_interface_height": { "value": "layer_height * 4" }, "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, "support_pattern": { "value": "'zigzag'" }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, "support_xy_distance_overhang": { "value": "wall_line_width_0" }, diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 8531fdcbe3c..31a67d01221 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -5423,20 +5423,6 @@ } } }, - "support_interface_skip_height": - { - "label": "Support Interface Resolution", - "description": "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface.", - "unit": "mm", - "type": "float", - "default_value": 0.2, - "value": "layer_height", - "minimum_value": "0", - "maximum_value_warning": "support_interface_height", - "limit_to_extruder": "support_interface_extruder_nr", - "enabled": "support_interface_enable and (support_enable or support_meshes_present)", - "settable_per_mesh": true - }, "support_interface_density": { "label": "Support Interface Density", diff --git a/resources/definitions/flyingbear_base.def.json b/resources/definitions/flyingbear_base.def.json index 268d8a169b3..8733a85a845 100644 --- a/resources/definitions/flyingbear_base.def.json +++ b/resources/definitions/flyingbear_base.def.json @@ -92,7 +92,6 @@ "support_interface_height": { "value": "layer_height * 4" }, "support_interface_line_width": { "value": "line_width - 0.1" }, "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": 1 }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, diff --git a/resources/definitions/fusion3_f410.def.json b/resources/definitions/fusion3_f410.def.json index 6f50a15fd83..83fdb8affd6 100644 --- a/resources/definitions/fusion3_f410.def.json +++ b/resources/definitions/fusion3_f410.def.json @@ -112,7 +112,6 @@ "support_interface_density": { "value": 33.333 }, "support_interface_height": { "value": "layer_height * 4" }, "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": 0 }, "support_xy_distance": { "value": "wall_line_width_0 * 3" }, diff --git a/resources/definitions/kingroon_base.def.json b/resources/definitions/kingroon_base.def.json index 7b318018f7f..b800b81ccad 100644 --- a/resources/definitions/kingroon_base.def.json +++ b/resources/definitions/kingroon_base.def.json @@ -133,7 +133,6 @@ "support_interface_enable": { "value": true }, "support_interface_height": { "value": "layer_height * 4" }, "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": 1 }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, diff --git a/resources/definitions/koonovo_base.def.json b/resources/definitions/koonovo_base.def.json index b22a4267d10..f46c39ec1ef 100644 --- a/resources/definitions/koonovo_base.def.json +++ b/resources/definitions/koonovo_base.def.json @@ -70,7 +70,6 @@ "support_interface_enable": { "value": true }, "support_interface_height": { "value": "layer_height * 4" }, "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": 1 }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, diff --git a/resources/definitions/koonovo_kn3.def.json b/resources/definitions/koonovo_kn3.def.json index ae978b12e05..06cf226ff41 100644 --- a/resources/definitions/koonovo_kn3.def.json +++ b/resources/definitions/koonovo_kn3.def.json @@ -88,7 +88,6 @@ "support_interface_enable": { "value": true }, "support_interface_height": { "value": "layer_height * 4" }, "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": 1 }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, diff --git a/resources/definitions/koonovo_kn5.def.json b/resources/definitions/koonovo_kn5.def.json index 96ae03a6d9c..c8e444f5d4b 100644 --- a/resources/definitions/koonovo_kn5.def.json +++ b/resources/definitions/koonovo_kn5.def.json @@ -88,7 +88,6 @@ "support_interface_enable": { "value": true }, "support_interface_height": { "value": "layer_height * 4" }, "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": 1 }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, diff --git a/resources/definitions/longer_base.def.json b/resources/definitions/longer_base.def.json index fdc78b838b6..6010b7af466 100644 --- a/resources/definitions/longer_base.def.json +++ b/resources/definitions/longer_base.def.json @@ -109,7 +109,6 @@ "support_interface_enable": { "value": true }, "support_interface_height": { "value": "layer_height * 4" }, "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": 1 }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, diff --git a/resources/definitions/mingda_base.def.json b/resources/definitions/mingda_base.def.json index 23dcf21f48e..b07dbe458fe 100644 --- a/resources/definitions/mingda_base.def.json +++ b/resources/definitions/mingda_base.def.json @@ -119,7 +119,6 @@ "support_interface_enable": { "value": true }, "support_interface_height": { "value": "layer_height * 4" }, "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": 1 }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, diff --git a/resources/definitions/tank_m_base.def.json b/resources/definitions/tank_m_base.def.json index 3692793259e..dfeaa7e9d86 100644 --- a/resources/definitions/tank_m_base.def.json +++ b/resources/definitions/tank_m_base.def.json @@ -70,7 +70,6 @@ "support_interface_enable": { "value": true }, "support_interface_height": { "value": "layer_height * 4" }, "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": 1 }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, diff --git a/resources/definitions/tronxy_x.def.json b/resources/definitions/tronxy_x.def.json index 683761a81b0..233dbb1c64a 100644 --- a/resources/definitions/tronxy_x.def.json +++ b/resources/definitions/tronxy_x.def.json @@ -111,7 +111,6 @@ "support_interface_density": { "value": 33.333 }, "support_interface_height": { "value": "layer_height * 4" }, "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": "1 if (support_structure == 'tree') else 0" }, "support_xy_distance": { "value": "wall_line_width_0 * 3" }, diff --git a/resources/definitions/two_trees_base.def.json b/resources/definitions/two_trees_base.def.json index ff01e46f6fa..c83476db653 100644 --- a/resources/definitions/two_trees_base.def.json +++ b/resources/definitions/two_trees_base.def.json @@ -68,7 +68,6 @@ "support_interface_density": { "value": 33.333 }, "support_interface_height": { "value": "layer_height * 4" }, "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": "1 if (support_structure == 'tree') else 0" }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, diff --git a/resources/definitions/vivedino_base.def.json b/resources/definitions/vivedino_base.def.json index a638fc105c9..a5cf0def87a 100644 --- a/resources/definitions/vivedino_base.def.json +++ b/resources/definitions/vivedino_base.def.json @@ -99,7 +99,6 @@ "support_interface_enable": { "value": true }, "support_interface_height": { "value": "layer_height * 4" }, "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": 1 }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, diff --git a/resources/i18n/fdmprinter.def.json.pot b/resources/i18n/fdmprinter.def.json.pot index 6b61ec31732..ab635300187 100644 --- a/resources/i18n/fdmprinter.def.json.pot +++ b/resources/i18n/fdmprinter.def.json.pot @@ -3548,14 +3548,6 @@ msgctxt "support_bottom_height description" msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." msgstr "" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "" - -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "" - msgctxt "support_interface_density label" msgid "Support Interface Density" msgstr "" diff --git a/resources/quality/beamup_l/beamup_l_coarse.inst.cfg b/resources/quality/beamup_l/beamup_l_coarse.inst.cfg index e298d659f78..2fd1b8afcae 100644 --- a/resources/quality/beamup_l/beamup_l_coarse.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_coarse.inst.cfg @@ -33,7 +33,6 @@ support_infill_rate = 20 support_interface_enable = True support_interface_height = 0.60 support_interface_pattern = zigzag -support_interface_skip_height = 0.30 support_offset = 0.8 support_z_distance = 0.4 wall_thickness = 1.6 diff --git a/resources/quality/beamup_l/beamup_l_draft.inst.cfg b/resources/quality/beamup_l/beamup_l_draft.inst.cfg index 16f8536a02d..e3cf82651be 100644 --- a/resources/quality/beamup_l/beamup_l_draft.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_draft.inst.cfg @@ -33,7 +33,6 @@ support_infill_rate = 20 support_interface_enable = True support_interface_height = 0.60 support_interface_pattern = zigzag -support_interface_skip_height = 0.20 support_offset = 0.8 support_z_distance = 0.3 wall_thickness = 1.6 diff --git a/resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg b/resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg index cacf5289e7c..8b4e8eccc75 100644 --- a/resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg @@ -33,7 +33,6 @@ support_infill_rate = 20 support_interface_enable = True support_interface_height = 0.30 support_interface_pattern = zigzag -support_interface_skip_height = 0.06 support_offset = 0.8 support_z_distance = 0.12 wall_thickness = 1.6 diff --git a/resources/quality/beamup_l/beamup_l_fine.inst.cfg b/resources/quality/beamup_l/beamup_l_fine.inst.cfg index f977de059be..87ed50905c9 100644 --- a/resources/quality/beamup_l/beamup_l_fine.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_fine.inst.cfg @@ -33,7 +33,6 @@ support_infill_rate = 20 support_interface_enable = True support_interface_height = 0.30 support_interface_pattern = zigzag -support_interface_skip_height = 0.10 support_offset = 0.8 support_z_distance = 0.2 wall_thickness = 1.6 diff --git a/resources/quality/beamup_l/beamup_l_normal.inst.cfg b/resources/quality/beamup_l/beamup_l_normal.inst.cfg index cc78f011980..59ad26fc039 100644 --- a/resources/quality/beamup_l/beamup_l_normal.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_normal.inst.cfg @@ -33,7 +33,6 @@ support_infill_rate = 20 support_interface_enable = True support_interface_height = 0.45 support_interface_pattern = zigzag -support_interface_skip_height = 0.15 support_offset = 0.8 support_z_distance = 0.25 wall_thickness = 1.6 diff --git a/resources/quality/beamup_s/beamup_s_coarse.inst.cfg b/resources/quality/beamup_s/beamup_s_coarse.inst.cfg index d4d8b3551bb..673950dca82 100644 --- a/resources/quality/beamup_s/beamup_s_coarse.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_coarse.inst.cfg @@ -33,7 +33,6 @@ support_infill_rate = 20 support_interface_enable = True support_interface_height = 0.60 support_interface_pattern = zigzag -support_interface_skip_height = 0.30 support_offset = 0.8 support_z_distance = 0.2 wall_thickness = 0.8 diff --git a/resources/quality/beamup_s/beamup_s_draft.inst.cfg b/resources/quality/beamup_s/beamup_s_draft.inst.cfg index 14dc4ad964a..a307f2d8727 100644 --- a/resources/quality/beamup_s/beamup_s_draft.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_draft.inst.cfg @@ -33,7 +33,6 @@ support_infill_rate = 20 support_interface_enable = True support_interface_height = 0.40 support_interface_pattern = zigzag -support_interface_skip_height = 0.20 support_offset = 0.8 support_z_distance = 0.2 wall_thickness = 0.8 diff --git a/resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg b/resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg index fe490f5dd44..daf1c8c5e53 100644 --- a/resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg @@ -33,7 +33,6 @@ support_infill_rate = 20 support_interface_enable = True support_interface_height = 0.30 support_interface_pattern = zigzag -support_interface_skip_height = 0.06 support_offset = 0.8 support_z_distance = 0.2 wall_thickness = 0.8 diff --git a/resources/quality/beamup_s/beamup_s_fine.inst.cfg b/resources/quality/beamup_s/beamup_s_fine.inst.cfg index ea868942688..798cc6bb68b 100644 --- a/resources/quality/beamup_s/beamup_s_fine.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_fine.inst.cfg @@ -33,7 +33,6 @@ support_infill_rate = 20 support_interface_enable = True support_interface_height = 0.30 support_interface_pattern = zigzag -support_interface_skip_height = 0.10 support_offset = 0.8 support_z_distance = 0.2 wall_thickness = 0.8 diff --git a/resources/quality/beamup_s/beamup_s_normal.inst.cfg b/resources/quality/beamup_s/beamup_s_normal.inst.cfg index c034f9bfd42..cab58403303 100644 --- a/resources/quality/beamup_s/beamup_s_normal.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_normal.inst.cfg @@ -33,7 +33,6 @@ support_infill_rate = 20 support_interface_enable = True support_interface_height = 0.45 support_interface_pattern = zigzag -support_interface_skip_height = 0.15 support_offset = 0.8 support_z_distance = 0.2 wall_thickness = 0.8 diff --git a/resources/quality/flsun_sr/flsun_sr_fine.inst.cfg b/resources/quality/flsun_sr/flsun_sr_fine.inst.cfg index 7ba7f82e9a1..c54130d9538 100644 --- a/resources/quality/flsun_sr/flsun_sr_fine.inst.cfg +++ b/resources/quality/flsun_sr/flsun_sr_fine.inst.cfg @@ -65,7 +65,6 @@ support_interface_density = 60 support_interface_enable = True support_interface_height = 0.96 support_interface_pattern = grid -support_interface_skip_height = 0.12 support_roof_density = 60 support_type = everywhere support_wall_count = 1 diff --git a/resources/quality/flsun_sr/flsun_sr_normal.inst.cfg b/resources/quality/flsun_sr/flsun_sr_normal.inst.cfg index 5091ec6d97d..373e5dbf6f9 100644 --- a/resources/quality/flsun_sr/flsun_sr_normal.inst.cfg +++ b/resources/quality/flsun_sr/flsun_sr_normal.inst.cfg @@ -65,7 +65,6 @@ support_interface_density = 60 support_interface_enable = True support_interface_height = 0.6 support_interface_pattern = grid -support_interface_skip_height = 0.2 support_roof_density = 60 support_type = everywhere support_wall_count = 1 diff --git a/resources/quality/flsun_v400/flsun_v400_normal.inst.cfg b/resources/quality/flsun_v400/flsun_v400_normal.inst.cfg index 321f44a8bd9..9c990469390 100644 --- a/resources/quality/flsun_v400/flsun_v400_normal.inst.cfg +++ b/resources/quality/flsun_v400/flsun_v400_normal.inst.cfg @@ -100,7 +100,6 @@ support_interface_density = 70 support_interface_enable = True support_interface_height = 0.6 support_interface_pattern = lines -support_interface_skip_height = 0.2 support_pattern = zigzag support_roof_density = 70 support_type = everywhere diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg index 4363815718b..b84019e7916 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg @@ -65,7 +65,6 @@ support_interface_density = 70 support_interface_enable = True support_interface_height = 2 support_interface_pattern = concentric -support_interface_skip_height = 0.1 support_type = everywhere support_use_towers = False support_xy_distance = 0.8 diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg index ad1786e646c..8aa8ee6203e 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg @@ -65,7 +65,6 @@ support_interface_density = 70 support_interface_enable = True support_interface_height = 2 support_interface_pattern = concentric -support_interface_skip_height = 0.1 support_type = everywhere support_use_towers = False support_xy_distance = 0.8 diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg index 9d20162475f..5e6ed2682c6 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg @@ -65,7 +65,6 @@ support_interface_density = 70 support_interface_enable = True support_interface_height = 2 support_interface_pattern = concentric -support_interface_skip_height = 0.1 support_type = everywhere support_use_towers = False support_xy_distance = 0.8 diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg index 9cf8367db5e..db92713bd0c 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg @@ -65,7 +65,6 @@ support_interface_density = 70 support_interface_enable = True support_interface_height = 2 support_interface_pattern = concentric -support_interface_skip_height = 0.1 support_type = everywhere support_use_towers = False support_xy_distance = 0.8 diff --git a/resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg b/resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg index a445dc28bef..9fde6a87eab 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg @@ -65,7 +65,6 @@ support_interface_density = 70 support_interface_enable = True support_interface_height = 2 support_interface_pattern = concentric -support_interface_skip_height = 0.1 support_type = everywhere support_use_towers = False support_xy_distance = 0.8 diff --git a/resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg b/resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg index df0a0bf3f0f..419fa6b300d 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg @@ -65,7 +65,6 @@ support_interface_density = 70 support_interface_enable = True support_interface_height = 2 support_interface_pattern = concentric -support_interface_skip_height = 0.1 support_type = everywhere support_use_towers = False support_xy_distance = 0.8 diff --git a/resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg b/resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg index be43962f720..c352981f2da 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg @@ -65,7 +65,6 @@ support_interface_density = 70 support_interface_enable = True support_interface_height = 2 support_interface_pattern = concentric -support_interface_skip_height = 0.1 support_type = everywhere support_use_towers = False support_xy_distance = 0.8 diff --git a/resources/quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg b/resources/quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg index b3b35aca977..a1496e36cce 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg @@ -65,7 +65,6 @@ support_interface_density = 70 support_interface_enable = True support_interface_height = 2 support_interface_pattern = concentric -support_interface_skip_height = 0.1 support_type = everywhere support_use_towers = False support_xy_distance = 0.8 diff --git a/resources/setting_visibility/expert.cfg b/resources/setting_visibility/expert.cfg index ab0d2aa9202..2a71993998f 100644 --- a/resources/setting_visibility/expert.cfg +++ b/resources/setting_visibility/expert.cfg @@ -293,7 +293,6 @@ support_bottom_wall_count support_interface_height support_roof_height support_bottom_height -support_interface_skip_height support_interface_density support_roof_density support_bottom_density diff --git a/resources/variants/arjun/arjun300_pva_0.2.inst.cfg b/resources/variants/arjun/arjun300_pva_0.2.inst.cfg index 26440e54863..065fecd92b7 100644 --- a/resources/variants/arjun/arjun300_pva_0.2.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.2.inst.cfg @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles diff --git a/resources/variants/arjun/arjun300_pva_0.3.inst.cfg b/resources/variants/arjun/arjun300_pva_0.3.inst.cfg index 5edaddba927..cef64896b1d 100644 --- a/resources/variants/arjun/arjun300_pva_0.3.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.3.inst.cfg @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles diff --git a/resources/variants/arjun/arjun300_pva_0.4.inst.cfg b/resources/variants/arjun/arjun300_pva_0.4.inst.cfg index a5ca8ffb7a6..273bab3848b 100644 --- a/resources/variants/arjun/arjun300_pva_0.4.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.4.inst.cfg @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles diff --git a/resources/variants/arjun/arjun300_pva_0.5.inst.cfg b/resources/variants/arjun/arjun300_pva_0.5.inst.cfg index 2145714b0d7..4ac74b10b05 100644 --- a/resources/variants/arjun/arjun300_pva_0.5.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.5.inst.cfg @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles diff --git a/resources/variants/arjun/arjun300_pva_0.6.inst.cfg b/resources/variants/arjun/arjun300_pva_0.6.inst.cfg index 40e0c5f3ba2..9522f1a103a 100644 --- a/resources/variants/arjun/arjun300_pva_0.6.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.6.inst.cfg @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles diff --git a/resources/variants/arjun/arjun300_pva_0.8.inst.cfg b/resources/variants/arjun/arjun300_pva_0.8.inst.cfg index ee6e5557fbd..1e47424034d 100644 --- a/resources/variants/arjun/arjun300_pva_0.8.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.8.inst.cfg @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles diff --git a/resources/variants/arjun/arjunpro300_pva_0.2.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.2.inst.cfg index 60d7f77d7b1..3fc340152c1 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.2.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.2.inst.cfg @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles diff --git a/resources/variants/arjun/arjunpro300_pva_0.3.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.3.inst.cfg index f4c0c7e37ad..8ae2ffb70ae 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.3.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.3.inst.cfg @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles diff --git a/resources/variants/arjun/arjunpro300_pva_0.4.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.4.inst.cfg index 25f40aa829f..b444d14925d 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.4.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.4.inst.cfg @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles diff --git a/resources/variants/arjun/arjunpro300_pva_0.5.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.5.inst.cfg index cbb9ea3deb1..e78ca2f27aa 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.5.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.5.inst.cfg @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles diff --git a/resources/variants/arjun/arjunpro300_pva_0.6.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.6.inst.cfg index d9459b476a6..d6a3770cd90 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.6.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.6.inst.cfg @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles diff --git a/resources/variants/arjun/arjunpro300_pva_0.8.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.8.inst.cfg index cf5df5f37df..c19c8ca79ae 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.8.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.8.inst.cfg @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles diff --git a/resources/variants/kosher/kosher220_pva_0.2.inst.cfg b/resources/variants/kosher/kosher220_pva_0.2.inst.cfg index e5893c3e651..ea3b821ceac 100644 --- a/resources/variants/kosher/kosher220_pva_0.2.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.2.inst.cfg @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles diff --git a/resources/variants/kosher/kosher220_pva_0.3.inst.cfg b/resources/variants/kosher/kosher220_pva_0.3.inst.cfg index e1fbeaaf697..216388c64b0 100644 --- a/resources/variants/kosher/kosher220_pva_0.3.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.3.inst.cfg @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles diff --git a/resources/variants/kosher/kosher220_pva_0.4.inst.cfg b/resources/variants/kosher/kosher220_pva_0.4.inst.cfg index 40de6991186..024d842630d 100644 --- a/resources/variants/kosher/kosher220_pva_0.4.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.4.inst.cfg @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles diff --git a/resources/variants/kosher/kosher220_pva_0.5.inst.cfg b/resources/variants/kosher/kosher220_pva_0.5.inst.cfg index 2a4c88d0221..6197e0ab9ce 100644 --- a/resources/variants/kosher/kosher220_pva_0.5.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.5.inst.cfg @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles diff --git a/resources/variants/kosher/kosher220_pva_0.6.inst.cfg b/resources/variants/kosher/kosher220_pva_0.6.inst.cfg index a3781a00bde..211a361c2ba 100644 --- a/resources/variants/kosher/kosher220_pva_0.6.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.6.inst.cfg @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles diff --git a/resources/variants/kosher/kosher220_pva_0.8.inst.cfg b/resources/variants/kosher/kosher220_pva_0.8.inst.cfg index 4faf6729b6f..6f6a9dd6b40 100644 --- a/resources/variants/kosher/kosher220_pva_0.8.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.8.inst.cfg @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles From 16737dccf21165709bacad5c3496b9477d7f2a8d Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Wed, 10 Jan 2024 10:02:46 +0100 Subject: [PATCH 371/765] Set initial fan speed for AA0.25 ABS 0.1mm print mode to 0% to increase adhesion robustness. PP-422 --- resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg | 1 + .../quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg | 1 + resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg | 1 + .../quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg | 1 + 4 files changed, 4 insertions(+) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg index 5e0afa0015b..ec9ff192a92 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg @@ -12,6 +12,7 @@ variant = AA 0.25 weight = 0 [values] +cool_fan_speed_0 = 0 material_print_temperature = =default_material_print_temperature - 20 speed_topbottom = =math.ceil(speed_print * 30 / 55) support_bottom_distance = =support_z_distance diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg index ada1c2cefbb..40058561acf 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg @@ -12,6 +12,7 @@ variant = AA 0.25 weight = 0 [values] +cool_fan_speed_0 = 0 material_print_temperature = =default_material_print_temperature - 20 speed_topbottom = =math.ceil(speed_print * 30 / 55) support_bottom_distance = =support_z_distance diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg index 2e09727a198..d26fe0daee0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg @@ -12,6 +12,7 @@ variant = AA 0.25 weight = 0 [values] +cool_fan_speed_0 = 0 material_print_temperature = =default_material_print_temperature - 20 speed_topbottom = =math.ceil(speed_print * 30 / 55) support_bottom_distance = =support_z_distance diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg index 1b6c6806501..0dc15571d7b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg @@ -12,6 +12,7 @@ variant = AA 0.25 weight = 0 [values] +cool_fan_speed_0 = 0 material_print_temperature = =default_material_print_temperature - 20 speed_topbottom = =math.ceil(speed_print * 30 / 55) support_bottom_distance = =support_z_distance From ed47c05e4b0d91c6eca826f6f50a398a62f692d9 Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Wed, 10 Jan 2024 10:36:23 +0100 Subject: [PATCH 372/765] Fix QML warning. done as part of CURA-11396 --- resources/qml/PrinterSelector/PrintSelectorCard.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/qml/PrinterSelector/PrintSelectorCard.qml b/resources/qml/PrinterSelector/PrintSelectorCard.qml index efcbe07c875..1c3e78adbfd 100644 --- a/resources/qml/PrinterSelector/PrintSelectorCard.qml +++ b/resources/qml/PrinterSelector/PrintSelectorCard.qml @@ -79,7 +79,7 @@ Rectangle anchors.verticalCenter: extruderIcon.verticalCenter anchors.left: extruderIcon.right anchors.leftMargin: UM.Theme.getSize("default_margin").width - text: modelData.core + text: modelData ? (modelData.core ? modelData.core : "" ) : "" font: UM.Theme.getFont("default_bold") } From 34da282275073432f04ce37cda9d7fbcd3670702 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Wed, 10 Jan 2024 15:09:26 +0100 Subject: [PATCH 373/765] Uranium fixing API breaks. deprecated message shows up when user uses it. will remove them in future CURA-7812 --- resources/qml/Dialogs/AboutDialog.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/qml/Dialogs/AboutDialog.qml b/resources/qml/Dialogs/AboutDialog.qml index 79cad92b258..5c80964e382 100644 --- a/resources/qml/Dialogs/AboutDialog.qml +++ b/resources/qml/Dialogs/AboutDialog.qml @@ -58,7 +58,7 @@ UM.Dialog UM.Label { id: version - text: catalog.i18nc("@label","version: %1").arg(CuraApplication.applicationVersion()) + text: catalog.i18nc("@label","version: %1").arg(CuraApplication.version()) font: UM.Theme.getFont("large_bold") color: UM.Theme.getColor("button_text") anchors.right : logo.right From 330dfd8be0dc4ea312273df3e73654ca51618242 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Wed, 10 Jan 2024 15:13:42 +0100 Subject: [PATCH 374/765] Add retry to OAuth token refresh failure CURA-11406 --- cura/OAuth2/AuthorizationHelpers.py | 11 ++++++++--- cura/OAuth2/AuthorizationService.py | 26 +++++++++++++++++++++++--- 2 files changed, 31 insertions(+), 6 deletions(-) diff --git a/cura/OAuth2/AuthorizationHelpers.py b/cura/OAuth2/AuthorizationHelpers.py index a654ee4bdba..1bc0d545f4e 100644 --- a/cura/OAuth2/AuthorizationHelpers.py +++ b/cura/OAuth2/AuthorizationHelpers.py @@ -16,6 +16,7 @@ catalog = i18nCatalog("cura") TOKEN_TIMESTAMP_FORMAT = "%Y-%m-%d %H:%M:%S" +REQUEST_TIMEOUT = 5 # Seconds class AuthorizationHelpers: @@ -52,7 +53,8 @@ def getAccessTokenUsingAuthorizationCode(self, authorization_code: str, verifica data = urllib.parse.urlencode(data).encode("UTF-8"), headers_dict = headers, callback = lambda response: self.parseTokenResponse(response, callback), - error_callback = lambda response, _: self.parseTokenResponse(response, callback) + error_callback = lambda response, _: self.parseTokenResponse(response, callback), + timeout = REQUEST_TIMEOUT ) def getAccessTokenUsingRefreshToken(self, refresh_token: str, callback: Callable[[AuthenticationResponse], None]) -> None: @@ -75,7 +77,9 @@ def getAccessTokenUsingRefreshToken(self, refresh_token: str, callback: Callable data = urllib.parse.urlencode(data).encode("UTF-8"), headers_dict = headers, callback = lambda response: self.parseTokenResponse(response, callback), - error_callback = lambda response, _: self.parseTokenResponse(response, callback) + error_callback = lambda response, _: self.parseTokenResponse(response, callback), + urgent = True, + timeout = REQUEST_TIMEOUT ) def parseTokenResponse(self, token_response: QNetworkReply, callback: Callable[[AuthenticationResponse], None]) -> None: @@ -120,7 +124,8 @@ def checkToken(self, access_token: str, success_callback: Optional[Callable[[Use check_token_url, headers_dict = headers, callback = lambda reply: self._parseUserProfile(reply, success_callback, failed_callback), - error_callback = lambda _, _2: failed_callback() if failed_callback is not None else None + error_callback = lambda _, _2: failed_callback() if failed_callback is not None else None, + timeout = REQUEST_TIMEOUT ) def _parseUserProfile(self, reply: QNetworkReply, success_callback: Optional[Callable[[UserProfile], None]], failed_callback: Optional[Callable[[], None]] = None) -> None: diff --git a/cura/OAuth2/AuthorizationService.py b/cura/OAuth2/AuthorizationService.py index 62bf31982af..7a1bfb75f7d 100644 --- a/cura/OAuth2/AuthorizationService.py +++ b/cura/OAuth2/AuthorizationService.py @@ -6,13 +6,14 @@ from typing import Callable, Dict, Optional, TYPE_CHECKING, Union from urllib.parse import urlencode, quote_plus -from PyQt6.QtCore import QUrl +from PyQt6.QtCore import QUrl, QTimer from PyQt6.QtGui import QDesktopServices from UM.Logger import Logger from UM.Message import Message from UM.Signal import Signal from UM.i18n import i18nCatalog +from UM.TaskManagement.HttpRequestManager import HttpRequestManager # To download log-in tokens. from cura.OAuth2.AuthorizationHelpers import AuthorizationHelpers, TOKEN_TIMESTAMP_FORMAT from cura.OAuth2.LocalAuthorizationServer import LocalAuthorizationServer from cura.OAuth2.Models import AuthenticationResponse, BaseModel @@ -53,6 +54,12 @@ def __init__(self, settings: "OAuth2Settings", preferences: Optional["Preference self.onAuthStateChanged.connect(self._authChanged) + self._refresh_token_retries = 0 + self._refresh_token_retry_timer = QTimer() + self._refresh_token_retry_timer.setInterval(1000) + self._refresh_token_retry_timer.setSingleShot(True) + self._refresh_token_retry_timer.timeout.connect(self.refreshAccessToken) + def _authChanged(self, logged_in): if logged_in and self._unable_to_get_data_message is not None: self._unable_to_get_data_message.hide() @@ -163,16 +170,29 @@ def refreshAccessToken(self) -> None: return def process_auth_data(response: AuthenticationResponse) -> None: + self._currently_refreshing_token = False + if response.success: + self._refresh_token_retries = 0 self._storeAuthData(response) + HttpRequestManager.getInstance().setDelayRequests(False) self.onAuthStateChanged.emit(logged_in = True) else: - Logger.warning("Failed to get a new access token from the server.") - self.onAuthStateChanged.emit(logged_in = False) + if self._refresh_token_retries >= 15: + self._refresh_token_retries = 0 + Logger.warning("Failed to get a new access token from the server, giving up.") + HttpRequestManager.getInstance().setDelayRequests(False) + self.onAuthStateChanged.emit(logged_in = False) + else: + # Retry a bit later, network may be offline right now and will hopefully be back soon + Logger.warning("Failed to get a new access token from the server, retrying later.") + self._refresh_token_retries += 1 + self._refresh_token_retry_timer.start() if self._currently_refreshing_token: Logger.debug("Was already busy refreshing token. Do not start a new request.") return + HttpRequestManager.getInstance().setDelayRequests(True) self._currently_refreshing_token = True self._auth_helpers.getAccessTokenUsingRefreshToken(self._auth_data.refresh_token, process_auth_data) From bb0c17b2fd5c30cb912d5768c010f27309f6f83c Mon Sep 17 00:00:00 2001 From: HellAholic Date: Wed, 10 Jan 2024 15:41:20 +0100 Subject: [PATCH 375/765] Revert "qt6.6 scroll issues" --- conanfile.py | 1 - cura_app.py | 5 ----- packaging/AppImage-builder/AppImageBuilder.yml.jinja | 1 - packaging/AppImage/AppRun | 1 - 4 files changed, 8 deletions(-) diff --git a/conanfile.py b/conanfile.py index 5ebcf5a4c4a..a3ca8f1c898 100644 --- a/conanfile.py +++ b/conanfile.py @@ -71,7 +71,6 @@ def _cura_run_env(self): self._cura_env = Environment() self._cura_env.define("QML2_IMPORT_PATH", str(self._site_packages.joinpath("PyQt6", "Qt6", "qml"))) self._cura_env.define("QT_PLUGIN_PATH", str(self._site_packages.joinpath("PyQt6", "Qt6", "plugins"))) - self._cura_env.define("QT_QUICK_FLICKABLE_WHEEL_DECELERATION", "5000") if not self.in_local_cache: self._cura_env.define("CURA_DATA_ROOT", str(self._share_dir.joinpath("cura"))) diff --git a/cura_app.py b/cura_app.py index 7e80bbac79d..905d8f4ee0d 100755 --- a/cura_app.py +++ b/cura_app.py @@ -17,11 +17,6 @@ import os if sys.platform != "linux": # Turns out the Linux build _does_ use this, but we're not making an Enterprise release for that system anyway. os.environ["QT_PLUGIN_PATH"] = "" # Security workaround: Don't need it, and introduces an attack vector, so set to nul. - try: - # try converting to integer - os.environ["QT_QUICK_FLICKABLE_WHEEL_DECELERATION"] = str(int(os.environ["QT_QUICK_FLICKABLE_WHEEL_DECELERATION"])) - except ValueError: - os.environ["QT_QUICK_FLICKABLE_WHEEL_DECELERATION"] = "5000" os.environ["QML2_IMPORT_PATH"] = "" # Security workaround: Don't need it, and introduces an attack vector, so set to nul. os.environ["QT_OPENGL_DLL"] = "" # Security workaround: Don't need it, and introduces an attack vector, so set to nul. diff --git a/packaging/AppImage-builder/AppImageBuilder.yml.jinja b/packaging/AppImage-builder/AppImageBuilder.yml.jinja index ae6cabcaa14..9090a5f209d 100644 --- a/packaging/AppImage-builder/AppImageBuilder.yml.jinja +++ b/packaging/AppImage-builder/AppImageBuilder.yml.jinja @@ -45,7 +45,6 @@ AppDir: LD_LIBRARY_PATH: "$APPDIR:$APPDIR/runtime/compat/:$APPDIR/usr/lib/x86_64-linux-gnu:$APPDIR/lib/x86_64-linux-gnu:$APPDIR/usr/lib:$APPDIR/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders" PYTHONPATH: "$APPDIR" QT_PLUGIN_PATH: "$APPDIR/qt/plugins" - QT_QUICK_FLICKABLE_WHEEL_DECELERATION: "5000" QML2_IMPORT_PATH: "$APPDIR/qt/qml" QT_QPA_PLATFORMTHEME: xdgdesktopportal GDK_PIXBUF_MODULEDIR: $APPDIR/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders diff --git a/packaging/AppImage/AppRun b/packaging/AppImage/AppRun index 9926df18788..369ce54c6c2 100644 --- a/packaging/AppImage/AppRun +++ b/packaging/AppImage/AppRun @@ -5,7 +5,6 @@ scriptdir=$(dirname $0) export PYTHONPATH="$scriptdir/lib/python3.10" export LD_LIBRARY_PATH=$scriptdir export QT_PLUGIN_PATH="$scriptdir/qt/plugins" -export QT_QUICK_FLICKABLE_WHEEL_DECELERATION="5000" export QML2_IMPORT_PATH="$scriptdir/qt/qml" export QT_QPA_FONTDIR=/usr/share/fonts export QT_QPA_PLATFORMTHEME=xdgdesktopportal From 332222f9aa8e1733ad96f20bee8c1f5788ebb6e6 Mon Sep 17 00:00:00 2001 From: wawanbreton Date: Wed, 10 Jan 2024 15:31:30 +0000 Subject: [PATCH 376/765] Applied printer-linter format --- resources/definitions/fdmprinter.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 2066ca5bd93..bc25ce590c1 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6900,7 +6900,7 @@ "minimum_value": "0", "maximum_value": "min(0.5 * machine_width, 0.5 * machine_depth)", "settable_per_mesh": false, - "settable_per_extruder": false + "settable_per_extruder": false }, "prime_tower_base_height": { From 34555d4dd138f478911c75b539be9834e6b5317c Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Wed, 10 Jan 2024 17:24:10 +0100 Subject: [PATCH 377/765] Rename prime tower enabled -> mode in profiles --- resources/setting_visibility/advanced.cfg | 2 +- resources/setting_visibility/basic.cfg | 2 +- resources/setting_visibility/expert.cfg | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/resources/setting_visibility/advanced.cfg b/resources/setting_visibility/advanced.cfg index c3451d2c981..1b59302c4d8 100644 --- a/resources/setting_visibility/advanced.cfg +++ b/resources/setting_visibility/advanced.cfg @@ -127,7 +127,7 @@ brim_line_count brim_outside_only [dual] -prime_tower_enable +prime_tower_mode prime_tower_position_x prime_tower_position_y prime_tower_brim_enable diff --git a/resources/setting_visibility/basic.cfg b/resources/setting_visibility/basic.cfg index 0193eb26ba7..f5552f3cd88 100644 --- a/resources/setting_visibility/basic.cfg +++ b/resources/setting_visibility/basic.cfg @@ -53,7 +53,7 @@ adhesion_type adhesion_extruder_nr [dual] -prime_tower_enable +prime_tower_mode prime_tower_position_x prime_tower_position_y diff --git a/resources/setting_visibility/expert.cfg b/resources/setting_visibility/expert.cfg index ab0d2aa9202..5a9b9bd5851 100644 --- a/resources/setting_visibility/expert.cfg +++ b/resources/setting_visibility/expert.cfg @@ -356,7 +356,7 @@ raft_fan_speed raft_is_shrink_plate [dual] -prime_tower_enable +prime_tower_mode prime_tower_size prime_tower_min_volume prime_tower_position_x @@ -367,6 +367,7 @@ prime_tower_base_size prime_tower_base_height prime_tower_base_curve_magnitude prime_tower_raft_base_line_spacing +prime_tower_max_bridging_distance ooze_shield_enabled ooze_shield_angle ooze_shield_dist From d0560ae790ad027ee32ab4b87c456299c9642056 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Wed, 10 Jan 2024 17:54:02 +0100 Subject: [PATCH 378/765] restoring qmlregistersingletons in Cura adding wrapper for deprecation warning CURA-7812 --- cura/CuraApplication.py | 42 ++++++++++++++++--- .../Custom/QualitiesWithIntentMenu.qml | 2 +- 2 files changed, 37 insertions(+), 7 deletions(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 20048e3d3f1..67c420028ba 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -15,13 +15,13 @@ from PyQt6.QtCore import QObject, QTimer, QUrl, QUrlQuery, pyqtSignal, pyqtProperty, QEvent, pyqtEnum, QCoreApplication, \ QByteArray from PyQt6.QtGui import QColor, QIcon -from PyQt6.QtQml import qmlRegisterUncreatableType, qmlRegisterUncreatableMetaObject, qmlRegisterSingletonType, qmlRegisterType +from PyQt6.QtQml import qmlRegisterUncreatableMetaObject, qmlRegisterSingletonType, qmlRegisterType from PyQt6.QtWidgets import QMessageBox import UM.Util import cura.Settings.cura_empty_instance_containers from UM.Application import Application -from UM.Decorators import override +from UM.Decorators import override, deprecated from UM.FlameProfiler import pyqtSlot from UM.Logger import Logger from UM.Math.AxisAlignedBox import AxisAlignedBox @@ -191,7 +191,7 @@ def __init__(self, *args, **kwargs): self.empty_container = None # type: EmptyInstanceContainer self.empty_definition_changes_container = None # type: EmptyInstanceContainer self.empty_variant_container = None # type: EmptyInstanceContainer - self.empty_intent_container = None # type: EmptyInstanceContainer + self.empty_intent_container = None # type: EmptyInstanceContainer self.empty_material_container = None # type: EmptyInstanceContainer self.empty_quality_container = None # type: EmptyInstanceContainer self.empty_quality_changes_container = None # type: EmptyInstanceContainer @@ -1198,18 +1198,43 @@ def getPrintInformation(self): return self._print_information - pyqtSlot(result =QObject) + @pyqtSlot(result=QObject) def getQualityProfilesDropDownMenuModel(self, *args, **kwargs)-> QualityProfilesDropDownMenuModel: if self._quality_profile_drop_down_menu_model is None: self._quality_profile_drop_down_menu_model = QualityProfilesDropDownMenuModel(self) return self._quality_profile_drop_down_menu_model - pyqtSlot(result=QObject) + @pyqtSlot(result=QObject) def getCustomQualityProfilesDropDownMenuModel(self, *args, **kwargs)->CustomQualityProfilesDropDownMenuModel: if self._custom_quality_profile_drop_down_menu_model is None: self._custom_quality_profile_drop_down_menu_model = CustomQualityProfilesDropDownMenuModel(self) return self._custom_quality_profile_drop_down_menu_model + @deprecated("SimpleModeSettingsManager is deprecated and will be removed in major SDK release, Use getSimpleModeSettingsManager() instead", since = "5.7.0") + def getSimpleModeSettingsManagerWrapper(self, *args, **kwargs): + return self.getSimpleModeSettingsManager() + + @deprecated("MachineActionManager is deprecated and will be removed in major SDK release, Use getMachineActionManager() instead", since="5.7.0") + def getMachineActionManagerWrapper(self, *args, **kwargs): + return self.getMachineActionManager() + + @deprecated("QualityManagementModel is deprecated and will be removed in major SDK release, Use getQualityManagementModel() instead", since="5.7.0") + def getQualityManagementModelWrapper(self, *args, **kwargs): + return self.getQualityManagementModel() + + @deprecated("MaterialManagementModel is deprecated and will be removed in major SDK release, Use getMaterialManagementModel() instead", since = "5.7.0") + def getMaterialManagementModelWrapper(self, *args, **kwargs): + return self.getMaterialManagementModel() + + @deprecated("QualityProfilesDropDownMenuModel is deprecated and will be removed in major SDK release, Use getQualityProfilesDropDownMenuModel() instead", since = "5.7.0") + def getQualityProfilesDropDownMenuModelWrapper(self, *args, **kwargs): + return self.getQualityProfilesDropDownMenuModel() + + @deprecated("CustomQualityProfilesDropDownMenuModel is deprecated and will be removed in major SDK release, Use getCustomQualityProfilesDropDownMenuModel() instead", since = "5.7.0") + def getCustomQualityProfilesDropDownMenuModelWrapper(self, *args, **kwargs): + return self.getCustomQualityProfilesDropDownMenuModel() + + def getCuraAPI(self, *args, **kwargs) -> "CuraAPI": return self._cura_API @@ -1238,6 +1263,8 @@ def registerObjects(self, engine): qmlRegisterSingletonType(MachineManager, "Cura", 1, 0, self.getMachineManager, "MachineManager") qmlRegisterSingletonType(IntentManager, "Cura", 1, 6, self.getIntentManager, "IntentManager") qmlRegisterSingletonType(SettingInheritanceManager, "Cura", 1, 0, self.getSettingInheritanceManager, "SettingInheritanceManager") + qmlRegisterSingletonType(SimpleModeSettingsManager, "Cura", 1, 0, self.getSimpleModeSettingsManagerWrapper, "SimpleModeSettingsManager") + qmlRegisterSingletonType(MachineActionManager.MachineActionManager, "Cura", 1, 0, self.getMachineActionManagerWrapper, "MachineActionManager") self.processEvents() qmlRegisterType(NetworkingUtil, "Cura", 1, 5, "NetworkingUtil") @@ -1262,11 +1289,14 @@ def registerObjects(self, engine): qmlRegisterType(FavoriteMaterialsModel, "Cura", 1, 0, "FavoriteMaterialsModel") qmlRegisterType(GenericMaterialsModel, "Cura", 1, 0, "GenericMaterialsModel") qmlRegisterType(MaterialBrandsModel, "Cura", 1, 0, "MaterialBrandsModel") + qmlRegisterSingletonType(QualityManagementModel, "Cura", 1, 0, self.getQualityManagementModelWrapper,"QualityManagementModel") + qmlRegisterSingletonType(MaterialManagementModel, "Cura", 1, 5, self.getMaterialManagementModelWrapper,"MaterialManagementModel") self.processEvents() qmlRegisterType(DiscoveredPrintersModel, "Cura", 1, 0, "DiscoveredPrintersModel") qmlRegisterType(DiscoveredCloudPrintersModel, "Cura", 1, 7, "DiscoveredCloudPrintersModel") - qmlRegisterType(CustomQualityProfilesDropDownMenuModel, "Cura", 1, 0, "CustomQualityProfilesDropDownMenuModel") + qmlRegisterSingletonType(QualityProfilesDropDownMenuModel, "Cura", 1, 0, self.getQualityProfilesDropDownMenuModelWrapper, "QualityProfilesDropDownMenuModel") + qmlRegisterSingletonType(CustomQualityProfilesDropDownMenuModel, "Cura", 1, 0, self.getCustomQualityProfilesDropDownMenuModelWrapper, "CustomQualityProfilesDropDownMenuModel") qmlRegisterType(NozzleModel, "Cura", 1, 0, "NozzleModel") qmlRegisterType(IntentModel, "Cura", 1, 6, "IntentModel") qmlRegisterType(IntentCategoryModel, "Cura", 1, 6, "IntentCategoryModel") diff --git a/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml b/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml index 646e835cb21..9facc5095ee 100644 --- a/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml +++ b/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml @@ -187,7 +187,7 @@ Popup //Add all the custom profiles. Repeater { - model: Cura.CustomQualityProfilesDropDownMenuModel + model: CuraApplication.getCustomQualityProfilesDropDownMenuModel() MenuButton { onClicked: Cura.MachineManager.setQualityChangesGroup(model.quality_changes_group) From 8f29e8d77bdd141a52528932af9c1a298981990b Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Thu, 11 Jan 2024 09:00:19 +0100 Subject: [PATCH 379/765] Fix wrongful removal of i18n option This caused the option to be always be removed, while we only needed the info of the option to be removed Contributes to CURA-11497 --- conanfile.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index a3ca8f1c898..ea1ac2e1f9c 100644 --- a/conanfile.py +++ b/conanfile.py @@ -518,7 +518,8 @@ def package_id(self): del self.info.options.cloud_api_version del self.info.options.display_name del self.info.options.cura_debug_mode - self.options.rm_safe("enable_i18n") + if self.options.get_safe("enable_i18n", False): + del self.info.options.enable_i18n # TODO: Use the hash of requirements.txt and requirements-ultimaker.txt, Because changing these will actually result in a different # Cura. This is needed because the requirements.txt aren't managed by Conan and therefor not resolved in the package_id. This isn't From b7970dadee75b0c4f029f4503062624f4b873410 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Thu, 11 Jan 2024 13:03:48 +0100 Subject: [PATCH 380/765] Setting QT_QUICK_FLICKABLE_WHEEL_DECELERATION only while opening cura application CURA-11468 --- conanfile.py | 1 - cura_app.py | 9 ++++----- packaging/AppImage-builder/AppImageBuilder.yml.jinja | 1 - packaging/AppImage/AppRun | 1 - 4 files changed, 4 insertions(+), 8 deletions(-) diff --git a/conanfile.py b/conanfile.py index 5ebcf5a4c4a..a3ca8f1c898 100644 --- a/conanfile.py +++ b/conanfile.py @@ -71,7 +71,6 @@ def _cura_run_env(self): self._cura_env = Environment() self._cura_env.define("QML2_IMPORT_PATH", str(self._site_packages.joinpath("PyQt6", "Qt6", "qml"))) self._cura_env.define("QT_PLUGIN_PATH", str(self._site_packages.joinpath("PyQt6", "Qt6", "plugins"))) - self._cura_env.define("QT_QUICK_FLICKABLE_WHEEL_DECELERATION", "5000") if not self.in_local_cache: self._cura_env.define("CURA_DATA_ROOT", str(self._share_dir.joinpath("cura"))) diff --git a/cura_app.py b/cura_app.py index 7e80bbac79d..87cd1a59ed4 100755 --- a/cura_app.py +++ b/cura_app.py @@ -15,13 +15,12 @@ import argparse import faulthandler import os + +# try converting to integer +os.environ["QT_QUICK_FLICKABLE_WHEEL_DECELERATION"] = str(int(os.environ.get("QT_QUICK_FLICKABLE_WHEEL_DECELERATION", "5000"))) + if sys.platform != "linux": # Turns out the Linux build _does_ use this, but we're not making an Enterprise release for that system anyway. os.environ["QT_PLUGIN_PATH"] = "" # Security workaround: Don't need it, and introduces an attack vector, so set to nul. - try: - # try converting to integer - os.environ["QT_QUICK_FLICKABLE_WHEEL_DECELERATION"] = str(int(os.environ["QT_QUICK_FLICKABLE_WHEEL_DECELERATION"])) - except ValueError: - os.environ["QT_QUICK_FLICKABLE_WHEEL_DECELERATION"] = "5000" os.environ["QML2_IMPORT_PATH"] = "" # Security workaround: Don't need it, and introduces an attack vector, so set to nul. os.environ["QT_OPENGL_DLL"] = "" # Security workaround: Don't need it, and introduces an attack vector, so set to nul. diff --git a/packaging/AppImage-builder/AppImageBuilder.yml.jinja b/packaging/AppImage-builder/AppImageBuilder.yml.jinja index ae6cabcaa14..9090a5f209d 100644 --- a/packaging/AppImage-builder/AppImageBuilder.yml.jinja +++ b/packaging/AppImage-builder/AppImageBuilder.yml.jinja @@ -45,7 +45,6 @@ AppDir: LD_LIBRARY_PATH: "$APPDIR:$APPDIR/runtime/compat/:$APPDIR/usr/lib/x86_64-linux-gnu:$APPDIR/lib/x86_64-linux-gnu:$APPDIR/usr/lib:$APPDIR/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders" PYTHONPATH: "$APPDIR" QT_PLUGIN_PATH: "$APPDIR/qt/plugins" - QT_QUICK_FLICKABLE_WHEEL_DECELERATION: "5000" QML2_IMPORT_PATH: "$APPDIR/qt/qml" QT_QPA_PLATFORMTHEME: xdgdesktopportal GDK_PIXBUF_MODULEDIR: $APPDIR/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders diff --git a/packaging/AppImage/AppRun b/packaging/AppImage/AppRun index 9926df18788..369ce54c6c2 100644 --- a/packaging/AppImage/AppRun +++ b/packaging/AppImage/AppRun @@ -5,7 +5,6 @@ scriptdir=$(dirname $0) export PYTHONPATH="$scriptdir/lib/python3.10" export LD_LIBRARY_PATH=$scriptdir export QT_PLUGIN_PATH="$scriptdir/qt/plugins" -export QT_QUICK_FLICKABLE_WHEEL_DECELERATION="5000" export QML2_IMPORT_PATH="$scriptdir/qt/qml" export QT_QPA_FONTDIR=/usr/share/fonts export QT_QPA_PLATFORMTHEME=xdgdesktopportal From db94117cf18ec9f9ec93ceb9d92844401c52292e Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Thu, 11 Jan 2024 13:08:47 +0100 Subject: [PATCH 381/765] description changed CURA-11468 --- cura_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura_app.py b/cura_app.py index 87cd1a59ed4..bcea032789b 100755 --- a/cura_app.py +++ b/cura_app.py @@ -16,7 +16,7 @@ import faulthandler import os -# try converting to integer +# set the environment variable QT_QUICK_FLICKABLE_WHEEL_DECELERATION to 5000 as mentioned in qt6.6 update log to overcome scroll related issues os.environ["QT_QUICK_FLICKABLE_WHEEL_DECELERATION"] = str(int(os.environ.get("QT_QUICK_FLICKABLE_WHEEL_DECELERATION", "5000"))) if sys.platform != "linux": # Turns out the Linux build _does_ use this, but we're not making an Enterprise release for that system anyway. From f19e6347820b868f495d5a0a31d982ff7abb9623 Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Fri, 12 Jan 2024 09:43:46 +0100 Subject: [PATCH 382/765] Set the printing temperature (instead of initial) and do not wait for setpoint to be reached (the 5s wait after that command will be enough + Cura also directly does a M109 after the switch) PP-417 --- resources/extruders/ultimaker_methodx_extruder_left.def.json | 2 +- resources/extruders/ultimaker_methodx_extruder_right.def.json | 2 +- resources/extruders/ultimaker_methodxl_extruder_left.def.json | 2 +- resources/extruders/ultimaker_methodxl_extruder_right.def.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/extruders/ultimaker_methodx_extruder_left.def.json b/resources/extruders/ultimaker_methodx_extruder_left.def.json index 273a2c922e0..41b2322ff3b 100644 --- a/resources/extruders/ultimaker_methodx_extruder_left.def.json +++ b/resources/extruders/ultimaker_methodx_extruder_left.def.json @@ -15,7 +15,7 @@ "maximum_value": "1" }, "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S1.0\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, - "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM109 S{material_initial_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed/100}" }, + "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM104 S{material_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed/100}" }, "machine_nozzle_offset_x": { "default_value": 0 }, "machine_nozzle_offset_y": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, diff --git a/resources/extruders/ultimaker_methodx_extruder_right.def.json b/resources/extruders/ultimaker_methodx_extruder_right.def.json index bb8f1d89c28..0524d73e947 100644 --- a/resources/extruders/ultimaker_methodx_extruder_right.def.json +++ b/resources/extruders/ultimaker_methodx_extruder_right.def.json @@ -15,7 +15,7 @@ "maximum_value": "1" }, "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S1.0\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, - "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM109 S{material_initial_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed/100}" }, + "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM104 S{material_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed/100}" }, "machine_nozzle_offset_x": { "default_value": 0 }, "machine_nozzle_offset_y": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, diff --git a/resources/extruders/ultimaker_methodxl_extruder_left.def.json b/resources/extruders/ultimaker_methodxl_extruder_left.def.json index ba4a3f01576..b37cd5e446a 100644 --- a/resources/extruders/ultimaker_methodxl_extruder_left.def.json +++ b/resources/extruders/ultimaker_methodxl_extruder_left.def.json @@ -15,7 +15,7 @@ "maximum_value": "1" }, "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S1.0\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, - "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM109 S{material_initial_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed/100}" }, + "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM104 S{material_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed/100}" }, "machine_nozzle_offset_x": { "default_value": 0 }, "machine_nozzle_offset_y": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, diff --git a/resources/extruders/ultimaker_methodxl_extruder_right.def.json b/resources/extruders/ultimaker_methodxl_extruder_right.def.json index 32fbf1dd086..8a0b0e4635b 100644 --- a/resources/extruders/ultimaker_methodxl_extruder_right.def.json +++ b/resources/extruders/ultimaker_methodxl_extruder_right.def.json @@ -15,7 +15,7 @@ "maximum_value": "1" }, "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S1.0\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, - "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM109 S{material_initial_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed/100}" }, + "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM104 S{material_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed/100}" }, "machine_nozzle_offset_x": { "default_value": 0 }, "machine_nozzle_offset_y": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, From 90472bb6477fb7f1027ecdcba38a33ff1e3e55a6 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Fri, 12 Jan 2024 10:57:24 +0100 Subject: [PATCH 383/765] Use Arcus with published Sentry debug-files Contributes to CURA-11482 --- conandata.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conandata.yml b/conandata.yml index dcf883c630c..a3456c44b11 100644 --- a/conandata.yml +++ b/conandata.yml @@ -6,7 +6,7 @@ requirements: - "fdm_materials/(latest)@ultimaker/testing" - "curaengine_plugin_gradual_flow/(latest)@ultimaker/stable" - "dulcificum/latest@ultimaker/testing" - - "pyarcus/5.3.0" + - "arcus/(latest)@ultimaker/cura_11482" - "pysavitar/5.3.0" - "pynest2d/5.3.0" - "curaengine_grpc_definitions/(latest)@ultimaker/testing" From ec1c82535263761ba8c72a6cbd74a32a96ee5797 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Fri, 12 Jan 2024 11:00:18 +0100 Subject: [PATCH 384/765] Don't package pdb Contributes to CURA-11482 --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index ea1ac2e1f9c..7ce196c90da 100644 --- a/conanfile.py +++ b/conanfile.py @@ -242,7 +242,7 @@ def _generate_pyinstaller_spec(self, location, entrypoint_location, icon_path, e self.output.warning(f"Source path for binary {binary['binary']} does not exist") continue - for bin in Path(src_path).glob(binary["binary"] + "*[.exe|.dll|.so|.dylib|.so.|.pdb]*"): + for bin in Path(src_path).glob(binary["binary"] + "*[.exe|.dll|.so|.dylib|.so.]*"): binaries.append((str(bin), binary["dst"])) for bin in Path(src_path).glob(binary["binary"]): binaries.append((str(bin), binary["dst"])) From 0661fe5dcb0b6b3796fd57e04f07fab5c51cd0f7 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Fri, 12 Jan 2024 11:04:31 +0100 Subject: [PATCH 385/765] Enable Sentry for Arcus Contributes to CURA-11482 --- conanfile.py | 1 + 1 file changed, 1 insertion(+) diff --git a/conanfile.py b/conanfile.py index 7ce196c90da..9eac9218b18 100644 --- a/conanfile.py +++ b/conanfile.py @@ -320,6 +320,7 @@ def configure(self): self.options["openssl"].shared = True if self.conf.get("user.curaengine:sentry_url", "", check_type=str) != "": self.options["curaengine"].enable_sentry = True + self.options["arcus"].enable_sentry = True def validate(self): version = self.conf.get("user.cura:version", default = self.version, check_type = str) From 34e7ea81850e85f6e3f4a4a22acf016dabd2b28b Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Fri, 12 Jan 2024 14:28:01 +0100 Subject: [PATCH 386/765] Use clipper with Sentry support Contributes to CURA-11482 --- conanfile.py | 1 + 1 file changed, 1 insertion(+) diff --git a/conanfile.py b/conanfile.py index 9eac9218b18..3402e4dc54f 100644 --- a/conanfile.py +++ b/conanfile.py @@ -336,6 +336,7 @@ def requirements(self): for req in self.conan_data["requirements_internal"]: self.requires(req) self.requires("cpython/3.10.4@ultimaker/stable") + self.requires("clipper/6.4.2@ultimaker/cura_11482") # TODO: change channel to `testing` once merged self.requires("openssl/3.2.0") self.requires("boost/1.82.0") self.requires("spdlog/1.12.0") From 2bcdacef7239779db21cef3a069e174ff4a4831d Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Sat, 13 Jan 2024 11:12:46 +0100 Subject: [PATCH 387/765] Allow for opt-in of DF User name for Sentry crash reports This will help us with triage of bugs for our customers. Contributes to CURA-11482 --- .../CuraEngineBackend/CuraEngineBackend.py | 10 +++- resources/qml/Preferences/GeneralPage.qml | 47 ++++++++++++++++++- 2 files changed, 54 insertions(+), 3 deletions(-) diff --git a/plugins/CuraEngineBackend/CuraEngineBackend.py b/plugins/CuraEngineBackend/CuraEngineBackend.py index 818766d7668..f67d14aafee 100755 --- a/plugins/CuraEngineBackend/CuraEngineBackend.py +++ b/plugins/CuraEngineBackend/CuraEngineBackend.py @@ -164,6 +164,7 @@ def __init__(self) -> None: application.getPreferences().addPreference("general/auto_slice", False) application.getPreferences().addPreference("info/send_engine_crash", True) + application.getPreferences().addPreference("info/anonymous_engine_crash_report", True) self._use_timer: bool = False @@ -198,6 +199,7 @@ def __init__(self) -> None: # Ensure that the initial value for send_engine_crash is handled correctly. application.callLater(self._onPreferencesChanged, "info/send_engine_crash") + application.callLater(self._onPreferencesChanged, "info/anonymous_engine_crash_report") def startPlugins(self) -> None: """ @@ -1094,14 +1096,18 @@ def disableTimer(self) -> None: self._change_timer.timeout.disconnect(self.slice) def _onPreferencesChanged(self, preference: str) -> None: - if preference != "general/auto_slice" and preference != "info/send_engine_crash": + if preference != "general/auto_slice" and preference != "info/send_engine_crash" and preference != "info/anonymous_engine_crash_report": return if preference == "general/auto_slice": auto_slice = self.determineAutoSlicing() if auto_slice: self._change_timer.start() elif preference == "info/send_engine_crash": - os.environ["use_sentry"] = "1" if CuraApplication.getInstance().getPreferences().getValue("info/send_engine_crash") else "0" + os.environ["USE_SENTRY"] = "1" if CuraApplication.getInstance().getPreferences().getValue("info/send_engine_crash") else "0" + elif preference == "info/anonymous_engine_crash_report": + account = CuraApplication.getInstance().getCuraAPI().account + if account and account.isLoggedIn and not CuraApplication.getInstance().getPreferences().getValue("info/anonymous_engine_crash_report"): + os.environ["CURAENGINE_SENTRY_USER"] = account.userName def tickle(self) -> None: """Tickle the backend so in case of auto slicing, it starts the timer.""" diff --git a/resources/qml/Preferences/GeneralPage.qml b/resources/qml/Preferences/GeneralPage.qml index 587084444c6..708cc4a4417 100644 --- a/resources/qml/Preferences/GeneralPage.qml +++ b/resources/qml/Preferences/GeneralPage.qml @@ -124,6 +124,9 @@ UM.PreferencesPage UM.Preferences.resetPreference("info/send_engine_crash") sendEngineCrashCheckbox.checked = boolCheck(UM.Preferences.getValue("info/send_engine_crash")) + UM.Preferences.resetPreference("info/anonymous_engine_crash_report") + sendEngineCrashCheckboxAnonymous.checked = boolCheck(UM.Preferences.getValue("info/anonymous_engine_crash_report")) + UM.Preferences.resetPreference("info/automatic_update_check") checkUpdatesCheckbox.checked = boolCheck(UM.Preferences.getValue("info/automatic_update_check")) @@ -859,11 +862,12 @@ UM.PreferencesPage font: UM.Theme.getFont("medium_bold") text: catalog.i18nc("@label", "Privacy") } + UM.TooltipArea { width: childrenRect.width height: visible ? childrenRect.height : 0 - text: catalog.i18nc("@info:tooltip", "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored.") + text: catalog.i18nc("@info:tooltip", "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission.") UM.CheckBox { @@ -874,6 +878,47 @@ UM.PreferencesPage } } + ButtonGroup + { + id: curaCrashGroup + buttons: [sendEngineCrashCheckboxAnonymous, sendEngineCrashCheckboxUser] + } + + UM.TooltipArea + { + width: childrenRect.width + height: visible ? childrenRect.height : 0 + visible: Cura.API.account.isLoggedIn + text: catalog.i18nc("@info:tooltip", "Send crash reports without any personally identifiable information or models data to UltiMaker.") + anchors.left: parent.left + anchors.leftMargin: UM.Theme.getSize("default_margin").width + Cura.RadioButton + { + id: sendEngineCrashCheckboxAnonymous + text: catalog.i18nc("@option:radio", "Anonymous crash reports") + enabled: sendEngineCrashCheckbox.checked + checked: boolCheck(UM.Preferences.getValue("info/anonymous_engine_crash_report")) + onClicked: UM.Preferences.setValue("info/anonymous_engine_crash_report", true) + } + } + UM.TooltipArea + { + width: childrenRect.width + height: visible ? childrenRect.height : 0 + visible: Cura.API.account.isLoggedIn + text: catalog.i18nc("@info:tooltip", "Send crash reports with your registered UltiMaker account email adress to UltiMaker. No model data is being send.") + anchors.left: parent.left + anchors.leftMargin: UM.Theme.getSize("default_margin").width + Cura.RadioButton + { + id: sendEngineCrashCheckboxUser + text: catalog.i18nc("@option:radio", "Crash reports with email adress") + enabled: sendEngineCrashCheckbox.checked + checked: !boolCheck(UM.Preferences.getValue("info/anonymous_engine_crash_report")) && Cura.API.account.isLoggedIn + onClicked: UM.Preferences.setValue("info/anonymous_engine_crash_report", false) + } + } + UM.TooltipArea { width: childrenRect.width From a4137676af257ab391a7102f0c01c2716e439e57 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Mon, 15 Jan 2024 09:56:14 +0100 Subject: [PATCH 388/765] Settings name consistency --- resources/definitions/fdmprinter.def.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index bc25ce590c1..1f348f2828d 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6789,8 +6789,8 @@ "options": { "none": "None", - "optimized_consistent": "Bucket", - "optimized": "Sparse" + "bucket": "Bucket", + "sparse": "Sparse" }, "default_value": "none", "enabled": "extruders_enabled_count > 1", @@ -6835,7 +6835,7 @@ "default_value": 5, "minimum_value": "line_width", "maximum_value_warning": "10.0", - "enabled": "resolveOrValue('prime_tower_mode') == 'optimized' or resolveOrValue('prime_tower_mode') == 'optimized_consistent'", + "enabled": "resolveOrValue('prime_tower_mode') == 'sparse' or resolveOrValue('prime_tower_mode') == 'bucket'", "settable_per_mesh": false, "settable_per_extruder": true }, From e91322d0707a44e4687848ce793a619d272c328d Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 15 Jan 2024 08:06:16 +0100 Subject: [PATCH 389/765] ALso enable Sentry for Clipper Contributes to CURA-11482 --- conanfile.py | 1 + 1 file changed, 1 insertion(+) diff --git a/conanfile.py b/conanfile.py index 3402e4dc54f..4aa0b07bbfa 100644 --- a/conanfile.py +++ b/conanfile.py @@ -321,6 +321,7 @@ def configure(self): if self.conf.get("user.curaengine:sentry_url", "", check_type=str) != "": self.options["curaengine"].enable_sentry = True self.options["arcus"].enable_sentry = True + self.options["clipper"].enable_sentry = True def validate(self): version = self.conf.get("user.cura:version", default = self.version, check_type = str) From 773805963169eee52b6c4b0abb4d8d789a22f8ba Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 15 Jan 2024 10:44:43 +0100 Subject: [PATCH 390/765] Add optional (opt-in) project_name to Sentry Needed for automatic Issue handling in the future Contributes to CURA-11482 --- plugins/CuraEngineBackend/Cura.proto | 1 + plugins/CuraEngineBackend/StartSliceJob.py | 5 +++++ resources/qml/Preferences/GeneralPage.qml | 4 ++-- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/plugins/CuraEngineBackend/Cura.proto b/plugins/CuraEngineBackend/Cura.proto index 9593b835280..b03298f6956 100644 --- a/plugins/CuraEngineBackend/Cura.proto +++ b/plugins/CuraEngineBackend/Cura.proto @@ -35,6 +35,7 @@ message Slice repeated EnginePlugin engine_plugins = 5; string sentry_id = 6; // The anonymized Sentry user id that requested the slice string cura_version = 7; // The version of Cura that requested the slice + optional string project_name = 8; // The name of the project that requested the slice } message Extruder diff --git a/plugins/CuraEngineBackend/StartSliceJob.py b/plugins/CuraEngineBackend/StartSliceJob.py index 935eb81afaa..8826d2e1f6c 100644 --- a/plugins/CuraEngineBackend/StartSliceJob.py +++ b/plugins/CuraEngineBackend/StartSliceJob.py @@ -340,6 +340,11 @@ def run(self) -> None: self._slice_message.sentry_id = f"{user_id}" self._slice_message.cura_version = CuraVersion + # Add the project name to the message if the user allows for non-anonymous crash data collection. + account = CuraApplication.getInstance().getCuraAPI().account + if account and account.isLoggedIn and not CuraApplication.getInstance().getPreferences().getValue("info/anonymous_engine_crash_report"): + self._slice_message.project_name = CuraApplication.getInstance().getPrintInformation().baseName + # Build messages for extruder stacks for extruder_stack in global_stack.extruderList: self._buildExtruderMessage(extruder_stack) diff --git a/resources/qml/Preferences/GeneralPage.qml b/resources/qml/Preferences/GeneralPage.qml index 708cc4a4417..e540fc1b1f9 100644 --- a/resources/qml/Preferences/GeneralPage.qml +++ b/resources/qml/Preferences/GeneralPage.qml @@ -906,13 +906,13 @@ UM.PreferencesPage width: childrenRect.width height: visible ? childrenRect.height : 0 visible: Cura.API.account.isLoggedIn - text: catalog.i18nc("@info:tooltip", "Send crash reports with your registered UltiMaker account email adress to UltiMaker. No model data is being send.") + text: catalog.i18nc("@info:tooltip", "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send.") anchors.left: parent.left anchors.leftMargin: UM.Theme.getSize("default_margin").width Cura.RadioButton { id: sendEngineCrashCheckboxUser - text: catalog.i18nc("@option:radio", "Crash reports with email adress") + text: catalog.i18nc("@option:radio", "Send crash reports with UltiMaker account name") enabled: sendEngineCrashCheckbox.checked checked: !boolCheck(UM.Preferences.getValue("info/anonymous_engine_crash_report")) && Cura.API.account.isLoggedIn onClicked: UM.Preferences.setValue("info/anonymous_engine_crash_report", false) From 783f51aef2a020b7aa18a83d6a85d80909eb3767 Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Mon, 15 Jan 2024 11:48:23 +0100 Subject: [PATCH 391/765] Let the wall count of the middle and top raft interface follow the raft wall count PP-414 --- resources/definitions/ultimaker_method_base.def.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/resources/definitions/ultimaker_method_base.def.json b/resources/definitions/ultimaker_method_base.def.json index 4f03a8dbe14..16464f0e675 100644 --- a/resources/definitions/ultimaker_method_base.def.json +++ b/resources/definitions/ultimaker_method_base.def.json @@ -361,8 +361,10 @@ "raft_interface_line_width": { "value": 0.7 }, "raft_interface_speed": { "value": 90 }, "raft_interface_thickness": { "value": 0.3 }, - "raft_margin": { "value": 3 }, + "raft_interface_wall_count": { "value": "raft_wall_count" }, + "raft_margin": { "value": 1.2 }, "raft_surface_extruder_nr": { "value": "int(anyExtruderWithMaterial('material_is_support_material')) if support_enable and extruderValue(support_extruder_nr,'material_is_support_material') else raft_base_extruder_nr" }, + "raft_surface_wall_count": { "value": "raft_wall_count" }, "retraction_amount": { "value": 0.75 }, "retraction_combing": { "value": "'off'" }, "retraction_combing_max_distance": { "value": "speed_travel / 10" }, From fe440a664350441c0d3f9aa8d3a635a16667deac Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 15 Jan 2024 11:52:11 +0100 Subject: [PATCH 392/765] Allow for expressions in start/end machine/extruder code extruder_nr field CURA-11536 --- plugins/CuraEngineBackend/StartSliceJob.py | 49 ++++++++++++---------- 1 file changed, 27 insertions(+), 22 deletions(-) diff --git a/plugins/CuraEngineBackend/StartSliceJob.py b/plugins/CuraEngineBackend/StartSliceJob.py index 935eb81afaa..fda1542e0ad 100644 --- a/plugins/CuraEngineBackend/StartSliceJob.py +++ b/plugins/CuraEngineBackend/StartSliceJob.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 UltiMaker +# Copyright (c) 2024 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. import uuid @@ -63,13 +63,12 @@ class GcodeStartEndFormatter(Formatter): # will be used. Alternatively, if the expression is formatted as "{[expression], [extruder_nr]}", # then the expression will be evaluated with the extruder stack of the specified extruder_nr. - _extruder_regex = re.compile(r"^\s*(?P.*)\s*,\s*(?P\d+)\s*$") + _extruder_regex = re.compile(r"^\s*(?P.*)\s*,\s*(?P.*)\s*$") - def __init__(self, default_extruder_nr: int = -1, *, - additional_per_extruder_settings: Optional[Dict[str, Dict[str, any]]] = None) -> None: + def __init__(self, all_extruder_settings: Dict[str, Any], default_extruder_nr: int = -1) -> None: super().__init__() + self._all_extruder_settings: Dict[str, Any] = all_extruder_settings self._default_extruder_nr: int = default_extruder_nr - self._additional_per_extruder_settings: Optional[Dict[str, Dict[str, any]]] = additional_per_extruder_settings def get_field(self, field_name, args: [str], kwargs: dict) -> Tuple[str, str]: # get_field method parses all fields in the format-string and parses them individually to the get_value method. @@ -88,22 +87,31 @@ def get_value(self, expression: str, args: [str], kwargs: dict) -> str: if expression in post_slice_data_variables: return f"{{{expression}}}" - extruder_nr = self._default_extruder_nr + extruder_nr = str(self._default_extruder_nr) # The settings may specify a specific extruder to use. This is done by - # formatting the expression as "{expression}, {extruder_nr}". If the + # formatting the expression as "{expression}, {extruder_nr_expr}". If the # expression is formatted like this, we extract the extruder_nr and use # it to get the value from the correct extruder stack. match = self._extruder_regex.match(expression) if match: expression = match.group("expression") - extruder_nr = int(match.group("extruder_nr")) + extruder_nr_expr = match.group("extruder_nr_expr") - if self._additional_per_extruder_settings is not None and str( - extruder_nr) in self._additional_per_extruder_settings: - additional_variables = self._additional_per_extruder_settings[str(extruder_nr)] + if extruder_nr_expr.isdigit(): + extruder_nr = extruder_nr_expr + else: + # We get the value of the extruder_nr_expr from `_all_extruder_settings` dictionary + # rather than the global container stack. The `_all_extruder_settings["-1"]` is a + # dict-representation of the global container stack, with additional properties such + # as `initial_extruder_nr`. As users may enter such expressions we can't use the + # global container stack. + extruder_nr = self._all_extruder_settings["-1"].get(extruder_nr_expr, "-1") + + if extruder_nr in self._all_extruder_settings: + additional_variables = self._all_extruder_settings[extruder_nr] else: - additional_variables = dict() + additional_variables = self._all_extruder_settings["-1"] # Add the arguments and keyword arguments to the additional settings. These # are currently _not_ used, but they are added for consistency with the @@ -113,7 +121,7 @@ def get_value(self, expression: str, args: [str], kwargs: dict) -> str: for key, value in kwargs.items(): additional_variables[key] = value - if extruder_nr == -1: + if extruder_nr == "-1": container_stack = CuraApplication.getInstance().getGlobalContainerStack() else: container_stack = ExtruderManager.getInstance().getExtruderStack(extruder_nr) @@ -121,7 +129,6 @@ def get_value(self, expression: str, args: [str], kwargs: dict) -> str: setting_function = SettingFunction(expression) value = setting_function(container_stack, additional_variables=additional_variables) - return value @@ -131,12 +138,13 @@ class StartSliceJob(Job): def __init__(self, slice_message: Arcus.PythonMessage) -> None: super().__init__() - self._scene = CuraApplication.getInstance().getController().getScene() #type: Scene + self._scene: Scene = CuraApplication.getInstance().getController().getScene() self._slice_message: Arcus.PythonMessage = slice_message - self._is_cancelled = False #type: bool - self._build_plate_number = None #type: Optional[int] + self._is_cancelled: bool = False + self._build_plate_number: Optional[int] = None - self._all_extruders_settings = None #type: Optional[Dict[str, Any]] # cache for all setting values from all stacks (global & extruder) for the current machine + # cache for all setting values from all stacks (global & extruder) for the current machine + self._all_extruders_settings: Optional[Dict[str, Any]] = None def getSliceMessage(self) -> Arcus.PythonMessage: return self._slice_message @@ -471,10 +479,7 @@ def _expandGcodeTokens(self, value: str, default_extruder_nr: int = -1) -> str: # Get "replacement-keys" for the extruders. In the formatter the settings stack is used to get the # replacement values for the setting-keys. However, the values for `material_id`, `material_type`, # etc are not in the settings stack. - additional_per_extruder_settings = self._all_extruders_settings.copy() - additional_per_extruder_settings["default_extruder_nr"] = default_extruder_nr - fmt = GcodeStartEndFormatter(default_extruder_nr=default_extruder_nr, - additional_per_extruder_settings=additional_per_extruder_settings) + fmt = GcodeStartEndFormatter(self._all_extruders_settings, default_extruder_nr=default_extruder_nr) return str(fmt.format(value)) except: Logger.logException("w", "Unable to do token replacement on start/end g-code") From 5da4dfcb705b519ded069245fd0cf5bfbaf0f244 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 15 Jan 2024 12:03:42 +0100 Subject: [PATCH 393/765] Improve unhappy flow CURA-11536 --- plugins/CuraEngineBackend/StartSliceJob.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugins/CuraEngineBackend/StartSliceJob.py b/plugins/CuraEngineBackend/StartSliceJob.py index fda1542e0ad..04345bf7474 100644 --- a/plugins/CuraEngineBackend/StartSliceJob.py +++ b/plugins/CuraEngineBackend/StartSliceJob.py @@ -111,6 +111,7 @@ def get_value(self, expression: str, args: [str], kwargs: dict) -> str: if extruder_nr in self._all_extruder_settings: additional_variables = self._all_extruder_settings[extruder_nr] else: + Logger.warning(f"Extruder {extruder_nr} does not exist, using global settings") additional_variables = self._all_extruder_settings["-1"] # Add the arguments and keyword arguments to the additional settings. These @@ -125,6 +126,9 @@ def get_value(self, expression: str, args: [str], kwargs: dict) -> str: container_stack = CuraApplication.getInstance().getGlobalContainerStack() else: container_stack = ExtruderManager.getInstance().getExtruderStack(extruder_nr) + if not container_stack: + Logger.warning(f"Extruder {extruder_nr} does not exist, using global settings") + container_stack = CuraApplication.getInstance().getGlobalContainerStack() setting_function = SettingFunction(expression) value = setting_function(container_stack, additional_variables=additional_variables) From 68152e6f3111a17d8d5c17d4e353db01b1a8d65d Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Mon, 15 Jan 2024 12:04:55 +0100 Subject: [PATCH 394/765] Code readability CURA-11482 --- plugins/CuraEngineBackend/CuraEngineBackend.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/plugins/CuraEngineBackend/CuraEngineBackend.py b/plugins/CuraEngineBackend/CuraEngineBackend.py index f67d14aafee..a22d6b5306b 100755 --- a/plugins/CuraEngineBackend/CuraEngineBackend.py +++ b/plugins/CuraEngineBackend/CuraEngineBackend.py @@ -1105,9 +1105,10 @@ def _onPreferencesChanged(self, preference: str) -> None: elif preference == "info/send_engine_crash": os.environ["USE_SENTRY"] = "1" if CuraApplication.getInstance().getPreferences().getValue("info/send_engine_crash") else "0" elif preference == "info/anonymous_engine_crash_report": - account = CuraApplication.getInstance().getCuraAPI().account - if account and account.isLoggedIn and not CuraApplication.getInstance().getPreferences().getValue("info/anonymous_engine_crash_report"): - os.environ["CURAENGINE_SENTRY_USER"] = account.userName + if not CuraApplication.getInstance().getPreferences().getValue("info/anonymous_engine_crash_report"): + account = CuraApplication.getInstance().getCuraAPI().account + if account and account.isLoggedIn: + os.environ["CURAENGINE_SENTRY_USER"] = account.userName def tickle(self) -> None: """Tickle the backend so in case of auto slicing, it starts the timer.""" From 9d78c9ed5860de5b94f4a5c301cd9003edd86132 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 15 Jan 2024 12:39:10 +0100 Subject: [PATCH 395/765] Don't mutate/pollute `_all_extruder_settings` with additional values CURA-11536 --- plugins/CuraEngineBackend/StartSliceJob.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/CuraEngineBackend/StartSliceJob.py b/plugins/CuraEngineBackend/StartSliceJob.py index 04345bf7474..5039e9a3de0 100644 --- a/plugins/CuraEngineBackend/StartSliceJob.py +++ b/plugins/CuraEngineBackend/StartSliceJob.py @@ -109,10 +109,10 @@ def get_value(self, expression: str, args: [str], kwargs: dict) -> str: extruder_nr = self._all_extruder_settings["-1"].get(extruder_nr_expr, "-1") if extruder_nr in self._all_extruder_settings: - additional_variables = self._all_extruder_settings[extruder_nr] + additional_variables = self._all_extruder_settings[extruder_nr].copy() else: Logger.warning(f"Extruder {extruder_nr} does not exist, using global settings") - additional_variables = self._all_extruder_settings["-1"] + additional_variables = self._all_extruder_settings["-1"].copy() # Add the arguments and keyword arguments to the additional settings. These # are currently _not_ used, but they are added for consistency with the From 399a8171783b4686f5522fce18dc4035b96a9966 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 15 Jan 2024 13:37:54 +0100 Subject: [PATCH 396/765] Use `self-hosted-Windows-X64` as default Contributes to CURA-11544 --- .github/workflows/installers.yml | 2 +- .github/workflows/windows.yml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/installers.yml b/.github/workflows/installers.yml index 6e531ba8334..f1bd4b2d190 100644 --- a/.github/workflows/installers.yml +++ b/.github/workflows/installers.yml @@ -58,7 +58,7 @@ jobs: enterprise: ${{ github.event.inputs.enterprise == 'true' }} staging: ${{ github.event.inputs.staging == 'true' }} architecture: X64 - operating_system: windows-2022 + operating_system: self-hosted-Windows-X64 secrets: inherit linux-installer: diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 22a81e9b2a4..09f972bb1ac 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -34,9 +34,10 @@ on: operating_system: description: 'OS' required: true - default: 'windows-2022' + default: 'self-hosted-Windows-X64' type: choice options: + - self-hosted-Windows-X64 - windows-2022 jobs: From 557a95568c9f220ae4a23be44fd61e386698ebc7 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Mon, 15 Jan 2024 13:42:24 +0100 Subject: [PATCH 397/765] More explicit crash report configuration CURA-11482 --- resources/qml/Preferences/GeneralPage.qml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/resources/qml/Preferences/GeneralPage.qml b/resources/qml/Preferences/GeneralPage.qml index e540fc1b1f9..88719445233 100644 --- a/resources/qml/Preferences/GeneralPage.qml +++ b/resources/qml/Preferences/GeneralPage.qml @@ -872,7 +872,7 @@ UM.PreferencesPage UM.CheckBox { id: sendEngineCrashCheckbox - text: catalog.i18nc("@option:check","Send (anonymous) engine crash reports") + text: catalog.i18nc("@option:check","Send engine crash reports") checked: boolCheck(UM.Preferences.getValue("info/send_engine_crash")) onCheckedChanged: UM.Preferences.setValue("info/send_engine_crash", checked) } @@ -888,7 +888,6 @@ UM.PreferencesPage { width: childrenRect.width height: visible ? childrenRect.height : 0 - visible: Cura.API.account.isLoggedIn text: catalog.i18nc("@info:tooltip", "Send crash reports without any personally identifiable information or models data to UltiMaker.") anchors.left: parent.left anchors.leftMargin: UM.Theme.getSize("default_margin").width @@ -896,7 +895,7 @@ UM.PreferencesPage { id: sendEngineCrashCheckboxAnonymous text: catalog.i18nc("@option:radio", "Anonymous crash reports") - enabled: sendEngineCrashCheckbox.checked + enabled: sendEngineCrashCheckbox.checked && Cura.API.account.isLoggedIn checked: boolCheck(UM.Preferences.getValue("info/anonymous_engine_crash_report")) onClicked: UM.Preferences.setValue("info/anonymous_engine_crash_report", true) } @@ -905,15 +904,16 @@ UM.PreferencesPage { width: childrenRect.width height: visible ? childrenRect.height : 0 - visible: Cura.API.account.isLoggedIn - text: catalog.i18nc("@info:tooltip", "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send.") + text: Cura.API.account.isLoggedIn ? + catalog.i18nc("@info:tooltip", "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send.") : + catalog.i18nc("@info:tooltip", "Please sign in to your UltiMaker account to allow sending non-anonymous data.") anchors.left: parent.left anchors.leftMargin: UM.Theme.getSize("default_margin").width Cura.RadioButton { id: sendEngineCrashCheckboxUser - text: catalog.i18nc("@option:radio", "Send crash reports with UltiMaker account name") - enabled: sendEngineCrashCheckbox.checked + text: catalog.i18nc("@option:radio", "Include UltiMaker account name") + enabled: sendEngineCrashCheckbox.checked && Cura.API.account.isLoggedIn checked: !boolCheck(UM.Preferences.getValue("info/anonymous_engine_crash_report")) && Cura.API.account.isLoggedIn onClicked: UM.Preferences.setValue("info/anonymous_engine_crash_report", false) } From ab322ae703024026e80dd4d9857dd95705184a80 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Mon, 15 Jan 2024 15:22:25 +0100 Subject: [PATCH 398/765] Always send user name for Sentry if available CURA-11482 --- plugins/CuraEngineBackend/Cura.proto | 1 + plugins/CuraEngineBackend/CuraEngineBackend.py | 6 ------ plugins/CuraEngineBackend/StartSliceJob.py | 1 + 3 files changed, 2 insertions(+), 6 deletions(-) diff --git a/plugins/CuraEngineBackend/Cura.proto b/plugins/CuraEngineBackend/Cura.proto index b03298f6956..238829ba646 100644 --- a/plugins/CuraEngineBackend/Cura.proto +++ b/plugins/CuraEngineBackend/Cura.proto @@ -36,6 +36,7 @@ message Slice string sentry_id = 6; // The anonymized Sentry user id that requested the slice string cura_version = 7; // The version of Cura that requested the slice optional string project_name = 8; // The name of the project that requested the slice + optional string user_name = 9; // The Digital Factory account name of the user that requested the slice } message Extruder diff --git a/plugins/CuraEngineBackend/CuraEngineBackend.py b/plugins/CuraEngineBackend/CuraEngineBackend.py index a22d6b5306b..0c4003fadc4 100755 --- a/plugins/CuraEngineBackend/CuraEngineBackend.py +++ b/plugins/CuraEngineBackend/CuraEngineBackend.py @@ -199,7 +199,6 @@ def __init__(self) -> None: # Ensure that the initial value for send_engine_crash is handled correctly. application.callLater(self._onPreferencesChanged, "info/send_engine_crash") - application.callLater(self._onPreferencesChanged, "info/anonymous_engine_crash_report") def startPlugins(self) -> None: """ @@ -1104,11 +1103,6 @@ def _onPreferencesChanged(self, preference: str) -> None: self._change_timer.start() elif preference == "info/send_engine_crash": os.environ["USE_SENTRY"] = "1" if CuraApplication.getInstance().getPreferences().getValue("info/send_engine_crash") else "0" - elif preference == "info/anonymous_engine_crash_report": - if not CuraApplication.getInstance().getPreferences().getValue("info/anonymous_engine_crash_report"): - account = CuraApplication.getInstance().getCuraAPI().account - if account and account.isLoggedIn: - os.environ["CURAENGINE_SENTRY_USER"] = account.userName def tickle(self) -> None: """Tickle the backend so in case of auto slicing, it starts the timer.""" diff --git a/plugins/CuraEngineBackend/StartSliceJob.py b/plugins/CuraEngineBackend/StartSliceJob.py index 8826d2e1f6c..633352d616d 100644 --- a/plugins/CuraEngineBackend/StartSliceJob.py +++ b/plugins/CuraEngineBackend/StartSliceJob.py @@ -344,6 +344,7 @@ def run(self) -> None: account = CuraApplication.getInstance().getCuraAPI().account if account and account.isLoggedIn and not CuraApplication.getInstance().getPreferences().getValue("info/anonymous_engine_crash_report"): self._slice_message.project_name = CuraApplication.getInstance().getPrintInformation().baseName + self._slice_message.user_name = account.userName # Build messages for extruder stacks for extruder_stack in global_stack.extruderList: From c1e7bc15285ef7feb2c31bc38dc5f3b8c39471e1 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 15 Jan 2024 17:12:30 +0100 Subject: [PATCH 399/765] Use updated CPython recipe Contributes to CURA-11544 --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index ea1ac2e1f9c..f9e452cb9dc 100644 --- a/conanfile.py +++ b/conanfile.py @@ -334,7 +334,7 @@ def requirements(self): if self._internal: for req in self.conan_data["requirements_internal"]: self.requires(req) - self.requires("cpython/3.10.4@ultimaker/stable") + self.requires("cpython/3.10.4@ultimaker/cura_11544") # FIXME: once merged to main self.requires("openssl/3.2.0") self.requires("boost/1.82.0") self.requires("spdlog/1.12.0") From 1a57f121729a153902c0485d66a400298851fbeb Mon Sep 17 00:00:00 2001 From: HellAholic Date: Tue, 16 Jan 2024 10:01:26 +0100 Subject: [PATCH 400/765] change label to name to align with items in global_container_stack check --- cura/Machines/Models/ExtrudersModel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/Machines/Models/ExtrudersModel.py b/cura/Machines/Models/ExtrudersModel.py index 2677894bff2..f31f7c87178 100644 --- a/cura/Machines/Models/ExtrudersModel.py +++ b/cura/Machines/Models/ExtrudersModel.py @@ -227,7 +227,7 @@ def __updateExtruders(self): "material_brand": "", "color_name": "", "material_type": "", - "material_label": "" + "material_name": "" } items.append(item) if self._items != items: From 54df08f47fa30a4462317ca40d8328a5649491af Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Tue, 16 Jan 2024 13:14:49 +0100 Subject: [PATCH 401/765] Fix specific extruder not being used CURA-11536 --- plugins/CuraEngineBackend/StartSliceJob.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/CuraEngineBackend/StartSliceJob.py b/plugins/CuraEngineBackend/StartSliceJob.py index 5039e9a3de0..6ede9fa219c 100644 --- a/plugins/CuraEngineBackend/StartSliceJob.py +++ b/plugins/CuraEngineBackend/StartSliceJob.py @@ -106,7 +106,7 @@ def get_value(self, expression: str, args: [str], kwargs: dict) -> str: # dict-representation of the global container stack, with additional properties such # as `initial_extruder_nr`. As users may enter such expressions we can't use the # global container stack. - extruder_nr = self._all_extruder_settings["-1"].get(extruder_nr_expr, "-1") + extruder_nr = str(self._all_extruder_settings["-1"].get(extruder_nr_expr, "-1")) if extruder_nr in self._all_extruder_settings: additional_variables = self._all_extruder_settings[extruder_nr].copy() From 1514d755b0c9ccf474c374080557d81c81d3ef0d Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Wed, 17 Jan 2024 11:03:32 +0100 Subject: [PATCH 402/765] Set proper dependancies versions --- conandata.yml | 3 +-- conanfile.py | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/conandata.yml b/conandata.yml index a3456c44b11..9b0e2e337ba 100644 --- a/conandata.yml +++ b/conandata.yml @@ -1,12 +1,11 @@ version: "5.7.0-alpha.0" requirements: - "uranium/(latest)@ultimaker/testing" - - "curaengine/(latest)@ultimaker/cura_11482" + - "curaengine/(latest)@ultimaker/testing" - "cura_binary_data/(latest)@ultimaker/testing" - "fdm_materials/(latest)@ultimaker/testing" - "curaengine_plugin_gradual_flow/(latest)@ultimaker/stable" - "dulcificum/latest@ultimaker/testing" - - "arcus/(latest)@ultimaker/cura_11482" - "pysavitar/5.3.0" - "pynest2d/5.3.0" - "curaengine_grpc_definitions/(latest)@ultimaker/testing" diff --git a/conanfile.py b/conanfile.py index 4aa0b07bbfa..ca8427ad704 100644 --- a/conanfile.py +++ b/conanfile.py @@ -337,7 +337,7 @@ def requirements(self): for req in self.conan_data["requirements_internal"]: self.requires(req) self.requires("cpython/3.10.4@ultimaker/stable") - self.requires("clipper/6.4.2@ultimaker/cura_11482") # TODO: change channel to `testing` once merged + self.requires("clipper/6.4.2@ultimaker/stable") self.requires("openssl/3.2.0") self.requires("boost/1.82.0") self.requires("spdlog/1.12.0") From e6235063aa866a863f176dc8baaf6a3ea1d21169 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Wed, 17 Jan 2024 12:05:42 +0100 Subject: [PATCH 403/765] Revert "Use updated CPython recipe" This reverts commit c1e7bc15285ef7feb2c31bc38dc5f3b8c39471e1. --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index f9e452cb9dc..ea1ac2e1f9c 100644 --- a/conanfile.py +++ b/conanfile.py @@ -334,7 +334,7 @@ def requirements(self): if self._internal: for req in self.conan_data["requirements_internal"]: self.requires(req) - self.requires("cpython/3.10.4@ultimaker/cura_11544") # FIXME: once merged to main + self.requires("cpython/3.10.4@ultimaker/stable") self.requires("openssl/3.2.0") self.requires("boost/1.82.0") self.requires("spdlog/1.12.0") From 668a527d335e6ef2c1cdd895c2f7b2c7d15bd4fa Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Wed, 17 Jan 2024 13:24:34 +0100 Subject: [PATCH 404/765] Reduce initial layer speed to improve reliability for S3 and S5 machines when no glue is used. PP-421 --- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg | 2 +- 48 files changed, 48 insertions(+), 48 deletions(-) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg index cd8e392dfac..ee0525c13eb 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg @@ -52,7 +52,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg index 29f3cb056ff..57413c4b301 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg index 94535ab9c1c..0052ce90cda 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg index 4c2861436ac..8732c3ad637 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg @@ -51,7 +51,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg index 7e29e3a9d0b..e7e50350c0e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg @@ -52,7 +52,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg index 2a74986a2ad..5ecaa739dbd 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg @@ -52,7 +52,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg index 0f3fee265b2..136a3bed425 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg @@ -52,7 +52,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg index 100f2485ba5..dcbb580edb2 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg index d06fa7c63b9..fc2a185be49 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg index d0a2747ea4c..2aa24f805d7 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg @@ -52,7 +52,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 26 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg index ea4761463c3..151af3ed50e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg @@ -52,7 +52,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 26 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg index 4ba2b956e95..56c097d8902 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 26 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg index 2051530eeeb..9d7b4455d6f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg @@ -56,7 +56,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg index 897b0e86881..e2a5c54c66d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 75 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg index 12e37a25d92..26d3dc7fb8f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg index e62880cf412..b1dae1cb7a9 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg @@ -55,7 +55,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg index 0c35b29fe08..4d4ffa00591 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg @@ -54,7 +54,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 75 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg index 1c8ba2c88b5..5cc6a43e132 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg @@ -54,7 +54,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg index f51cd7df60d..59f8409483d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg @@ -56,7 +56,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg index 347f3bd0935..a4cdd898f1f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 65 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg index 6aaf0461e27..79dc105f863 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 45 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg index 4064af789fb..a76864a1a3c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg @@ -56,7 +56,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 26 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg index d509a82bb62..d3642327268 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 26 speed_prime_tower = =speed_wall_0 speed_print = 65 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg index a6ac3f3895a..02a71fa9b71 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 26 speed_prime_tower = =speed_wall_0 speed_print = 45 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg index 10854725605..9c7ceca13b1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg @@ -52,7 +52,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg index 22ef09c921e..f430e6bc16c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg index 9067d8fb33b..98ca8927b65 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg index 8a64a81ab12..201c663d5c2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg @@ -51,7 +51,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg index 70ee9b0309a..55696eccb4b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg @@ -52,7 +52,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg index 65c8343d856..fe3eeb67ad0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg @@ -52,7 +52,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg index ac6cce0b104..713f94219f3 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg @@ -52,7 +52,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg index dbea8c64363..02d22b06b8b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg index dcb2e0c5160..b0d5d41d0f6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg index 59044a7f04d..55e724da9d4 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg @@ -52,7 +52,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 26 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg index 74e6d5d972d..ee0ee279e6b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg @@ -52,7 +52,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 26 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg index a9cb1c68652..875bd5a669c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 26 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg index c6e30421301..9ba4a38c6e7 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg @@ -56,7 +56,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg index 764a0cb9ac6..4ab74980ef0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 75 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg index 1f02428548d..269d51dd4b5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg index a144394b5ad..4f56167ffde 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg @@ -55,7 +55,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg index 8af2e7c1bbd..9fdf9a665b1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg @@ -54,7 +54,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 75 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg index bd74c294e12..3368ae6e2d2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg @@ -54,7 +54,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg index 32cc67a02ba..ca93df9dc10 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg @@ -56,7 +56,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg index 79df2f65f04..4461ae07724 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 65 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg index acfbcb1f1ec..1acdad53a0c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 45 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg index 0ea97ff5317..4973ec35bbc 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg @@ -56,7 +56,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 26 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg index 0f21a875687..2bcf3fa82d4 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 26 speed_prime_tower = =speed_wall_0 speed_print = 65 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg index 70234b85248..3e4693c115f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 26 speed_prime_tower = =speed_wall_0 speed_print = 45 speed_roofing = =math.ceil(speed_wall*(45/100)) From ff478559b0f169a0606fbb2e34429dc929130dcb Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Wed, 17 Jan 2024 19:50:46 +0100 Subject: [PATCH 405/765] Change bool setting to more flexible callback function --- cura/OAuth2/AuthorizationService.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/cura/OAuth2/AuthorizationService.py b/cura/OAuth2/AuthorizationService.py index 06478e911bd..29c426e46f0 100644 --- a/cura/OAuth2/AuthorizationService.py +++ b/cura/OAuth2/AuthorizationService.py @@ -34,7 +34,7 @@ class AuthorizationService: def __init__(self, settings: "OAuth2Settings", preferences: Optional["Preferences"] = None, - get_user_profile: bool = True) -> None: + callback_auth_data_retrieved: Callable[[], None] = None) -> None: # Emit signal when authentication is completed. self.onAuthStateChanged = Signal() @@ -48,7 +48,7 @@ def __init__(self, self._auth_url = "{}/authorize".format(self._settings.OAUTH_SERVER_URL) self._auth_data: Optional[AuthenticationResponse] = None self._user_profile: Optional["UserProfile"] = None - self._get_user_profile: bool = get_user_profile + self._callback_auth_data_retrieved = self.getUserProfile if callback_auth_data_retrieved is None else callback_auth_data_retrieved self._preferences = preferences self._server = LocalAuthorizationServer(self._auth_helpers, self._onAuthStateChanged, daemon=True) self._currently_refreshing_token = False # Whether we are currently in the process of refreshing auth. Don't make new requests while busy. @@ -298,8 +298,7 @@ def _storeAuthData(self, auth_data: Optional[AuthenticationResponse] = None) -> self._auth_data = auth_data self._currently_refreshing_token = False if auth_data: - if self._get_user_profile: - self.getUserProfile() + self._callback_auth_data_retrieved() self._preferences.setValue(self._settings.AUTH_DATA_PREFERENCE_KEY, json.dumps(auth_data.dump())) else: Logger.log("d", "Clearing the user profile") From 5bcc37d7d72dfbd592f8aaf8dba8b74ec0533ed7 Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Thu, 18 Jan 2024 10:44:15 +0100 Subject: [PATCH 406/765] Revert "Change bool setting to more flexible callback function" This reverts commit ff478559b0f169a0606fbb2e34429dc929130dcb. --- cura/OAuth2/AuthorizationService.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/cura/OAuth2/AuthorizationService.py b/cura/OAuth2/AuthorizationService.py index 29c426e46f0..06478e911bd 100644 --- a/cura/OAuth2/AuthorizationService.py +++ b/cura/OAuth2/AuthorizationService.py @@ -34,7 +34,7 @@ class AuthorizationService: def __init__(self, settings: "OAuth2Settings", preferences: Optional["Preferences"] = None, - callback_auth_data_retrieved: Callable[[], None] = None) -> None: + get_user_profile: bool = True) -> None: # Emit signal when authentication is completed. self.onAuthStateChanged = Signal() @@ -48,7 +48,7 @@ def __init__(self, self._auth_url = "{}/authorize".format(self._settings.OAUTH_SERVER_URL) self._auth_data: Optional[AuthenticationResponse] = None self._user_profile: Optional["UserProfile"] = None - self._callback_auth_data_retrieved = self.getUserProfile if callback_auth_data_retrieved is None else callback_auth_data_retrieved + self._get_user_profile: bool = get_user_profile self._preferences = preferences self._server = LocalAuthorizationServer(self._auth_helpers, self._onAuthStateChanged, daemon=True) self._currently_refreshing_token = False # Whether we are currently in the process of refreshing auth. Don't make new requests while busy. @@ -298,7 +298,8 @@ def _storeAuthData(self, auth_data: Optional[AuthenticationResponse] = None) -> self._auth_data = auth_data self._currently_refreshing_token = False if auth_data: - self._callback_auth_data_retrieved() + if self._get_user_profile: + self.getUserProfile() self._preferences.setValue(self._settings.AUTH_DATA_PREFERENCE_KEY, json.dumps(auth_data.dump())) else: Logger.log("d", "Clearing the user profile") From 80d5662a78981810ad600af5c54d6994c7613a6d Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Thu, 18 Jan 2024 13:43:59 +0100 Subject: [PATCH 407/765] Regenerated from autogenerate PP-391 --- .../um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg | 12 +++- ...s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg | 6 +- .../um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg | 12 +++- ...3_aa0.4_um-petg_0.1mm_engineering.inst.cfg | 6 +- .../um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg | 12 +++- ...s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg | 6 +- .../um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg | 12 +++- ..._aa0.4_um-tough-pla_0.06mm_visual.inst.cfg | 12 +++- ....4_um-tough-pla_0.1mm_engineering.inst.cfg | 6 +- ...3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg | 12 +++- .../um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg | 12 +++- ...s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg | 6 +- .../um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg | 12 +++- ...5_aa0.4_um-petg_0.1mm_engineering.inst.cfg | 6 +- .../um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg | 12 +++- ...s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg | 6 +- .../um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg | 12 +++- ..._aa0.4_um-tough-pla_0.06mm_visual.inst.cfg | 12 +++- ....4_um-tough-pla_0.1mm_engineering.inst.cfg | 6 +- ...5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg | 12 +++- .../um_s3_aa0.25_um-abs_0.1mm.inst.cfg | 59 +++++++++++++++-- .../um_s3_aa0.25_um-petg_0.1mm.inst.cfg | 59 +++++++++++++++-- .../um_s3_aa0.25_um-pla_0.1mm.inst.cfg | 65 +++++++++++++++---- .../um_s3_aa0.4_um-abs_0.06mm.inst.cfg | 63 +++++++++++++++--- .../um_s3_aa0.4_um-abs_0.15mm.inst.cfg | 2 +- .../um_s3_aa0.4_um-abs_0.1mm.inst.cfg | 63 +++++++++++++++--- .../um_s3_aa0.4_um-abs_0.2mm.inst.cfg | 2 +- .../um_s3_aa0.4_um-abs_0.3mm.inst.cfg | 2 +- .../um_s3_aa0.4_um-petg_0.06mm.inst.cfg | 64 +++++++++++++++--- .../um_s3_aa0.4_um-petg_0.15mm.inst.cfg | 2 +- .../um_s3_aa0.4_um-petg_0.1mm.inst.cfg | 64 +++++++++++++++--- .../um_s3_aa0.4_um-petg_0.2mm.inst.cfg | 2 +- .../um_s3_aa0.4_um-petg_0.3mm.inst.cfg | 2 +- .../um_s3_aa0.4_um-pla_0.06mm.inst.cfg | 59 +++++++++++++++-- .../um_s3_aa0.4_um-pla_0.1mm.inst.cfg | 55 +++++++++++++++- .../um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg | 61 ++++++++++++++--- .../um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg | 61 ++++++++++++++--- .../um_s5_aa0.25_um-abs_0.1mm.inst.cfg | 59 +++++++++++++++-- .../um_s5_aa0.25_um-petg_0.1mm.inst.cfg | 59 +++++++++++++++-- .../um_s5_aa0.25_um-pla_0.1mm.inst.cfg | 65 +++++++++++++++---- .../um_s5_aa0.4_um-abs_0.06mm.inst.cfg | 63 +++++++++++++++--- .../um_s5_aa0.4_um-abs_0.15mm.inst.cfg | 2 +- .../um_s5_aa0.4_um-abs_0.1mm.inst.cfg | 63 +++++++++++++++--- .../um_s5_aa0.4_um-abs_0.2mm.inst.cfg | 2 +- .../um_s5_aa0.4_um-abs_0.3mm.inst.cfg | 2 +- .../um_s5_aa0.4_um-petg_0.06mm.inst.cfg | 64 +++++++++++++++--- .../um_s5_aa0.4_um-petg_0.15mm.inst.cfg | 2 +- .../um_s5_aa0.4_um-petg_0.1mm.inst.cfg | 64 +++++++++++++++--- .../um_s5_aa0.4_um-petg_0.2mm.inst.cfg | 2 +- .../um_s5_aa0.4_um-petg_0.3mm.inst.cfg | 2 +- .../um_s5_aa0.4_um-pla_0.06mm.inst.cfg | 59 +++++++++++++++-- .../um_s5_aa0.4_um-pla_0.1mm.inst.cfg | 55 +++++++++++++++- .../um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg | 61 ++++++++++++++--- .../um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg | 61 ++++++++++++++--- 54 files changed, 1352 insertions(+), 210 deletions(-) diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg index fb88768bb63..62e3254f8ba 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg @@ -12,6 +12,14 @@ type = intent variant = AA 0.4 [values] -speed_infill = 50 -top_bottom_thickness = 1.05 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +acceleration_print = 2500 +acceleration_wall_0 = 1000 +inset_direction = inside_out +jerk_wall_0 = 20 +speed_print = 50 +speed_roofing = =math.ceil(speed_wall*(35/50)) +speed_wall_0 = =math.ceil(speed_wall*(20/50)) +speed_wall_x = =math.ceil(speed_wall*(35/50)) +top_bottom_thickness = =max(1.2 , layer_height * 6) diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg index 967051c6b64..b61495c66ff 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg @@ -12,9 +12,13 @@ type = intent variant = AA 0.4 [values] +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' +infill_sparse_density = 20 jerk_print = 30 speed_infill = =speed_print -speed_print = 30 +speed_print = 35 +speed_roofing = =speed_topbottom speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg index c08c5e37c15..2b113bb10cb 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg @@ -12,6 +12,14 @@ type = intent variant = AA 0.4 [values] -speed_infill = 50 -top_bottom_thickness = 1.05 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +acceleration_print = 2500 +acceleration_wall_0 = 1000 +inset_direction = inside_out +jerk_wall_0 = 20 +speed_print = 50 +speed_roofing = =math.ceil(speed_wall*(35/50)) +speed_wall_0 = =math.ceil(speed_wall*(20/50)) +speed_wall_x = =math.ceil(speed_wall*(35/50)) +top_bottom_thickness = =max(1.2 , layer_height * 6) diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg index 9bf56f69a28..7c1de8fd56b 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg @@ -12,9 +12,13 @@ type = intent variant = AA 0.4 [values] +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' +infill_sparse_density = 20 jerk_print = 30 speed_infill = =speed_print -speed_print = 30 +speed_print = 35 +speed_roofing = =speed_topbottom speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg index 63e20e56bd8..7bde0a1a84f 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg @@ -12,6 +12,14 @@ type = intent variant = AA 0.4 [values] -speed_infill = 50 -top_bottom_thickness = 1.05 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +acceleration_print = 2500 +acceleration_wall_0 = 1000 +inset_direction = inside_out +jerk_wall_0 = 20 +speed_print = 50 +speed_roofing = =math.ceil(speed_wall*(35/50)) +speed_wall_0 = =math.ceil(speed_wall*(20/50)) +speed_wall_x = =math.ceil(speed_wall*(35/50)) +top_bottom_thickness = =max(1.2 , layer_height * 6) diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg index b65a22fbdc9..ed573773e15 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg @@ -12,9 +12,13 @@ type = intent variant = AA 0.4 [values] +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' +infill_sparse_density = 20 jerk_print = 30 speed_infill = =speed_print -speed_print = 30 +speed_print = 35 +speed_roofing = =speed_topbottom speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg index a90a1b971d5..b5e414e2a71 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg @@ -12,6 +12,14 @@ type = intent variant = AA 0.4 [values] -speed_infill = 50 -top_bottom_thickness = 1.05 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +acceleration_print = 2500 +acceleration_wall_0 = 1000 +inset_direction = inside_out +jerk_wall_0 = 20 +speed_print = 50 +speed_roofing = =math.ceil(speed_wall*(35/50)) +speed_wall_0 = =math.ceil(speed_wall*(20/50)) +speed_wall_x = =math.ceil(speed_wall*(35/50)) +top_bottom_thickness = =max(1.2 , layer_height * 6) diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg index e2997ae6962..f1a72ac90bb 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg @@ -12,6 +12,14 @@ type = intent variant = AA 0.4 [values] -speed_infill = 50 -top_bottom_thickness = 1.05 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +acceleration_print = 2500 +acceleration_wall_0 = 1000 +inset_direction = inside_out +jerk_wall_0 = 20 +speed_print = 50 +speed_roofing = =math.ceil(speed_wall*(35/50)) +speed_wall_0 = =math.ceil(speed_wall*(20/50)) +speed_wall_x = =math.ceil(speed_wall*(35/50)) +top_bottom_thickness = =max(1.2 , layer_height * 6) diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg index a57cbf0af09..61916c3da7e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg @@ -12,9 +12,13 @@ type = intent variant = AA 0.4 [values] +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' +infill_sparse_density = 20 jerk_print = 30 speed_infill = =speed_print -speed_print = 30 +speed_print = 35 +speed_roofing = =speed_topbottom speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg index 48ce65c800d..75345728fb1 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg @@ -12,6 +12,14 @@ type = intent variant = AA 0.4 [values] -speed_infill = 50 -top_bottom_thickness = 1.05 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +acceleration_print = 2500 +acceleration_wall_0 = 1000 +inset_direction = inside_out +jerk_wall_0 = 20 +speed_print = 50 +speed_roofing = =math.ceil(speed_wall*(35/50)) +speed_wall_0 = =math.ceil(speed_wall*(20/50)) +speed_wall_x = =math.ceil(speed_wall*(35/50)) +top_bottom_thickness = =max(1.2 , layer_height * 6) diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg index 3866a4593a2..7b919a96f53 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg @@ -12,6 +12,14 @@ type = intent variant = AA 0.4 [values] -speed_infill = 50 -top_bottom_thickness = 1.05 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +acceleration_print = 2500 +acceleration_wall_0 = 1000 +inset_direction = inside_out +jerk_wall_0 = 20 +speed_print = 50 +speed_roofing = =math.ceil(speed_wall*(35/50)) +speed_wall_0 = =math.ceil(speed_wall*(20/50)) +speed_wall_x = =math.ceil(speed_wall*(35/50)) +top_bottom_thickness = =max(1.2 , layer_height * 6) diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg index b5834b57572..43edfa3548d 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg @@ -12,9 +12,13 @@ type = intent variant = AA 0.4 [values] +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' +infill_sparse_density = 20 jerk_print = 30 speed_infill = =speed_print -speed_print = 30 +speed_print = 35 +speed_roofing = =speed_topbottom speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg index 63b0273ba51..62a6fb4fdff 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg @@ -12,6 +12,14 @@ type = intent variant = AA 0.4 [values] -speed_infill = 50 -top_bottom_thickness = 1.05 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +acceleration_print = 2500 +acceleration_wall_0 = 1000 +inset_direction = inside_out +jerk_wall_0 = 20 +speed_print = 50 +speed_roofing = =math.ceil(speed_wall*(35/50)) +speed_wall_0 = =math.ceil(speed_wall*(20/50)) +speed_wall_x = =math.ceil(speed_wall*(35/50)) +top_bottom_thickness = =max(1.2 , layer_height * 6) diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg index 00c264aa324..a251a24a6e7 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg @@ -12,9 +12,13 @@ type = intent variant = AA 0.4 [values] +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' +infill_sparse_density = 20 jerk_print = 30 speed_infill = =speed_print -speed_print = 30 +speed_print = 35 +speed_roofing = =speed_topbottom speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg index 0bb1797b464..464c17a4308 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg @@ -12,6 +12,14 @@ type = intent variant = AA 0.4 [values] -speed_infill = 50 -top_bottom_thickness = 1.05 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +acceleration_print = 2500 +acceleration_wall_0 = 1000 +inset_direction = inside_out +jerk_wall_0 = 20 +speed_print = 50 +speed_roofing = =math.ceil(speed_wall*(35/50)) +speed_wall_0 = =math.ceil(speed_wall*(20/50)) +speed_wall_x = =math.ceil(speed_wall*(35/50)) +top_bottom_thickness = =max(1.2 , layer_height * 6) diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg index 0ab18817e06..5f6d7ee67b1 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg @@ -12,9 +12,13 @@ type = intent variant = AA 0.4 [values] +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' +infill_sparse_density = 20 jerk_print = 30 speed_infill = =speed_print -speed_print = 30 +speed_print = 35 +speed_roofing = =speed_topbottom speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg index f6b7800386f..2dcc5e18509 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg @@ -12,6 +12,14 @@ type = intent variant = AA 0.4 [values] -speed_infill = 50 -top_bottom_thickness = 1.05 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +acceleration_print = 2500 +acceleration_wall_0 = 1000 +inset_direction = inside_out +jerk_wall_0 = 20 +speed_print = 50 +speed_roofing = =math.ceil(speed_wall*(35/50)) +speed_wall_0 = =math.ceil(speed_wall*(20/50)) +speed_wall_x = =math.ceil(speed_wall*(35/50)) +top_bottom_thickness = =max(1.2 , layer_height * 6) diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg index b4516e44ddd..c0c3ccc3836 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg @@ -12,6 +12,14 @@ type = intent variant = AA 0.4 [values] -speed_infill = 50 -top_bottom_thickness = 1.05 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +acceleration_print = 2500 +acceleration_wall_0 = 1000 +inset_direction = inside_out +jerk_wall_0 = 20 +speed_print = 50 +speed_roofing = =math.ceil(speed_wall*(35/50)) +speed_wall_0 = =math.ceil(speed_wall*(20/50)) +speed_wall_x = =math.ceil(speed_wall*(35/50)) +top_bottom_thickness = =max(1.2 , layer_height * 6) diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg index 5c78ea044d0..411d22b0abc 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg @@ -12,9 +12,13 @@ type = intent variant = AA 0.4 [values] +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' +infill_sparse_density = 20 jerk_print = 30 speed_infill = =speed_print -speed_print = 30 +speed_print = 35 +speed_roofing = =speed_topbottom speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg index 5f73432e1c7..9a3c677fe91 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg @@ -12,6 +12,14 @@ type = intent variant = AA 0.4 [values] -speed_infill = 50 -top_bottom_thickness = 1.05 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +acceleration_print = 2500 +acceleration_wall_0 = 1000 +inset_direction = inside_out +jerk_wall_0 = 20 +speed_print = 50 +speed_roofing = =math.ceil(speed_wall*(35/50)) +speed_wall_0 = =math.ceil(speed_wall*(20/50)) +speed_wall_x = =math.ceil(speed_wall*(35/50)) +top_bottom_thickness = =max(1.2 , layer_height * 6) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg index 40058561acf..24c5a1d9e64 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg @@ -12,11 +12,62 @@ variant = AA 0.25 weight = 0 [values] -cool_fan_speed_0 = 0 -material_print_temperature = =default_material_print_temperature - 20 -speed_topbottom = =math.ceil(speed_print * 30 / 55) +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 4 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.8 +optimize_wall_printing_order = False +prime_tower_enable = False +raft_airgap = 0.15 +retraction_amount = 6.5 +retraction_prime_speed = 15 +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 +top_bottom_thickness = =max(1.2 , layer_height * 6) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg index fe8efb08d86..e3965d9c5c6 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg @@ -12,12 +12,61 @@ variant = AA 0.25 weight = 0 [values] -material_print_temperature = =default_material_print_temperature - 15 -speed_infill = =math.ceil(speed_print * 40 / 55) -speed_topbottom = =math.ceil(speed_print * 30 / 55) +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 4 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.4 +machine_nozzle_heat_up_speed = 1.7 +material_extrusion_cool_down_speed = 0.7 +optimize_wall_printing_order = False +prime_tower_enable = False +retraction_amount = 8 +retraction_prime_speed = 15 +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height -top_bottom_thickness = 0.8 +support_z_distance = 0.3 +top_bottom_thickness = =max(1.2 , layer_height * 6) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg index b9ec617a19a..3343f7627ae 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg @@ -12,21 +12,62 @@ variant = AA 0.25 weight = 0 [values] -brim_width = 8 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 6 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' -machine_nozzle_cool_down_speed = 0.9 -machine_nozzle_heat_up_speed = 1.4 -material_print_temperature = =default_material_print_temperature - 10 -retraction_hop = 0.2 -speed_print = 30 -speed_wall = =math.ceil(speed_print * 25 / 30) -speed_wall_0 = =math.ceil(speed_print * 20 / 30) +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.7 +optimize_wall_printing_order = False +prime_tower_enable = False +raft_airgap = 0.25 +retraction_amount = 6.5 +retraction_prime_speed = =retraction_speed +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance support_z_distance = =math.ceil(0.3/layer_height)*layer_height -top_bottom_thickness = 0.72 -travel_avoid_distance = 0.4 -wall_0_inset = 0.015 -wall_0_wipe_dist = 0.25 +top_bottom_thickness = =max(1 , layer_height * 5) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg index 312afa0421a..de5e0faf2e1 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg @@ -12,18 +12,63 @@ variant = AA 0.4 weight = 1 [values] -machine_nozzle_cool_down_speed = 0.8 -machine_nozzle_heat_up_speed = 1.5 -material_final_print_temperature = =material_print_temperature - 20 -material_print_temperature = =default_material_print_temperature - 10 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 4 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.8 +material_max_flowrate = 20 +optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.15 -speed_infill = =math.ceil(speed_print * 40 / 50) -speed_print = 50 -speed_topbottom = =math.ceil(speed_print * 30 / 50) -speed_wall = =math.ceil(speed_print * 30 / 50) +retraction_amount = 6.5 +retraction_prime_speed = 15 +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 +top_bottom_thickness = =max(1.2 , layer_height * 6) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg index ee0525c13eb..c39c6d42c81 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg @@ -66,7 +66,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg index b53e8275a27..08bb2befdf4 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg @@ -12,18 +12,63 @@ variant = AA 0.4 weight = 0 [values] -machine_nozzle_cool_down_speed = 0.85 -machine_nozzle_heat_up_speed = 1.5 -material_final_print_temperature = =material_print_temperature - 20 -material_print_temperature = =default_material_print_temperature - 5 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 4 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.8 +material_max_flowrate = 20 +optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.15 -speed_infill = =math.ceil(speed_print * 40 / 55) -speed_print = 55 -speed_topbottom = =math.ceil(speed_print * 30 / 55) -speed_wall = =math.ceil(speed_print * 30 / 55) +retraction_amount = 6.5 +retraction_prime_speed = 15 +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 +top_bottom_thickness = =max(1.2 , layer_height * 6) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg index 57413c4b301..9d67113da0e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg @@ -67,7 +67,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg index 0052ce90cda..fc6aa8c5fa2 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg @@ -67,7 +67,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg index 1b7919bd020..7eb5de8b646 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg @@ -12,16 +12,62 @@ variant = AA 0.4 weight = 1 [values] -infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' -machine_nozzle_cool_down_speed = 0.85 -machine_nozzle_heat_up_speed = 1.5 -material_print_temperature = =default_material_print_temperature - 10 -speed_infill = =math.ceil(speed_print * 40 / 50) -speed_print = 50 -speed_topbottom = =math.ceil(speed_print * 30 / 50) -speed_wall = =math.ceil(speed_print * 30 / 50) +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 4 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.4 +machine_nozzle_heat_up_speed = 1.7 +material_extrusion_cool_down_speed = 0.7 +material_max_flowrate = 20 +optimize_wall_printing_order = False +prime_tower_enable = False +retraction_amount = 8 +retraction_prime_speed = 15 +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 +top_bottom_thickness = =max(1.2 , layer_height * 6) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg index 8732c3ad637..d4431382ddb 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg @@ -65,7 +65,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg index afa05aa2cf3..bb7de56356f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg @@ -12,16 +12,62 @@ variant = AA 0.4 weight = 0 [values] -infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' -machine_nozzle_cool_down_speed = 0.85 -machine_nozzle_heat_up_speed = 1.5 -material_print_temperature = =default_material_print_temperature - 5 -speed_infill = =math.ceil(speed_print * 45 / 55) -speed_print = 55 -speed_topbottom = =math.ceil(speed_print * 30 / 55) -speed_wall = =math.ceil(speed_print * 30 / 55) +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 4 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.4 +machine_nozzle_heat_up_speed = 1.7 +material_extrusion_cool_down_speed = 0.7 +material_max_flowrate = 20 +optimize_wall_printing_order = False +prime_tower_enable = False +retraction_amount = 8 +retraction_prime_speed = 15 +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 +top_bottom_thickness = =max(1.2 , layer_height * 6) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg index e7e50350c0e..6b333e2f138 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg @@ -66,7 +66,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg index 5ecaa739dbd..d95b6de92f4 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg @@ -66,7 +66,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg index 2939389a3ce..25887f19d77 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg @@ -12,18 +12,63 @@ variant = AA 0.4 weight = 1 [values] -machine_nozzle_cool_down_speed = 0.75 -machine_nozzle_heat_up_speed = 1.6 -material_print_temperature = =default_material_print_temperature - 5 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 6 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.7 +material_max_flowrate = 12 +optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.25 +retraction_amount = 6.5 retraction_prime_speed = =retraction_speed -speed_print = 50 -speed_topbottom = =math.ceil(speed_print * 35 / 50) -speed_wall = =math.ceil(speed_print * 35 / 50) +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance support_z_distance = =math.ceil(0.3/layer_height)*layer_height -top_bottom_thickness = 1 +top_bottom_thickness = =max(1 , layer_height * 5) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg index 2b430c1afb3..e8820673eaa 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg @@ -12,14 +12,63 @@ variant = AA 0.4 weight = 0 [values] -machine_nozzle_cool_down_speed = 0.75 -machine_nozzle_heat_up_speed = 1.6 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 6 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.7 +material_max_flowrate = 12 +optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.25 +retraction_amount = 6.5 retraction_prime_speed = =retraction_speed +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance support_z_distance = =math.ceil(0.3/layer_height)*layer_height -top_bottom_thickness = 1 +top_bottom_thickness = =max(1 , layer_height * 5) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg index c84c2fb66ec..73f25eae0f7 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg @@ -12,18 +12,63 @@ variant = AA 0.4 weight = 1 [values] -machine_nozzle_cool_down_speed = 0.75 -machine_nozzle_heat_up_speed = 1.6 -material_print_temperature = =default_material_print_temperature - 5 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 6 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.7 +material_max_flowrate = 14 +optimize_wall_printing_order = False prime_tower_enable = False +raft_airgap = 0.25 +retraction_amount = 6.5 retraction_prime_speed = =retraction_speed -speed_print = 45 -speed_topbottom = =math.ceil(speed_print * 35 / 45) -speed_wall = =math.ceil(speed_print * 40 / 45) -speed_wall_0 = =math.ceil(speed_wall * 35 / 45) +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 26 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance support_z_distance = =math.ceil(0.3/layer_height)*layer_height -top_bottom_thickness = 1.2 +top_bottom_thickness = =max(1 , layer_height * 5) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg index 47687fb5be8..e51d440c316 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg @@ -12,18 +12,63 @@ variant = AA 0.4 weight = 0 [values] -machine_nozzle_cool_down_speed = 0.75 -machine_nozzle_heat_up_speed = 1.6 -material_print_temperature = =default_material_print_temperature - 5 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 6 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.7 +material_max_flowrate = 14 +optimize_wall_printing_order = False prime_tower_enable = False +raft_airgap = 0.25 +retraction_amount = 6.5 retraction_prime_speed = =retraction_speed -speed_print = 45 -speed_topbottom = =math.ceil(speed_print * 35 / 45) -speed_wall = =math.ceil(speed_print * 40 / 45) -speed_wall_0 = =math.ceil(speed_wall * 35 / 45) +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 26 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance support_z_distance = =math.ceil(0.3/layer_height)*layer_height -top_bottom_thickness = 1.2 +top_bottom_thickness = =max(1 , layer_height * 5) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg index 0dc15571d7b..7b14730a660 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg @@ -12,11 +12,62 @@ variant = AA 0.25 weight = 0 [values] -cool_fan_speed_0 = 0 -material_print_temperature = =default_material_print_temperature - 20 -speed_topbottom = =math.ceil(speed_print * 30 / 55) +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 4 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.8 +optimize_wall_printing_order = False +prime_tower_enable = False +raft_airgap = 0.15 +retraction_amount = 6.5 +retraction_prime_speed = 15 +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 +top_bottom_thickness = =max(1.2 , layer_height * 6) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg index c5cadca4bd6..a2233703d49 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg @@ -12,12 +12,61 @@ variant = AA 0.25 weight = 0 [values] -material_print_temperature = =default_material_print_temperature - 15 -speed_infill = =math.ceil(speed_print * 40 / 55) -speed_topbottom = =math.ceil(speed_print * 30 / 55) +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 4 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.4 +machine_nozzle_heat_up_speed = 1.7 +material_extrusion_cool_down_speed = 0.7 +optimize_wall_printing_order = False +prime_tower_enable = False +retraction_amount = 8 +retraction_prime_speed = 15 +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height -top_bottom_thickness = 0.8 +support_z_distance = 0.3 +top_bottom_thickness = =max(1.2 , layer_height * 6) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg index c6d2afaf03c..789d186f77d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg @@ -12,21 +12,62 @@ variant = AA 0.25 weight = 0 [values] -brim_width = 8 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 6 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' -machine_nozzle_cool_down_speed = 0.9 -machine_nozzle_heat_up_speed = 1.4 -material_print_temperature = =default_material_print_temperature - 10 -retraction_hop = 0.2 -speed_print = 30 -speed_wall = =math.ceil(speed_print * 25 / 30) -speed_wall_0 = =math.ceil(speed_print * 20 / 30) +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.7 +optimize_wall_printing_order = False +prime_tower_enable = False +raft_airgap = 0.25 +retraction_amount = 6.5 +retraction_prime_speed = =retraction_speed +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance support_z_distance = =math.ceil(0.3/layer_height)*layer_height -top_bottom_thickness = 0.72 -travel_avoid_distance = 0.4 -wall_0_inset = 0.015 -wall_0_wipe_dist = 0.25 +top_bottom_thickness = =max(1 , layer_height * 5) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg index a69ff33f76f..c0b4799ca95 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg @@ -12,18 +12,63 @@ variant = AA 0.4 weight = 1 [values] -machine_nozzle_cool_down_speed = 0.8 -machine_nozzle_heat_up_speed = 1.5 -material_final_print_temperature = =material_print_temperature - 20 -material_print_temperature = =default_material_print_temperature - 10 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 4 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.8 +material_max_flowrate = 20 +optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.15 -speed_infill = =math.ceil(speed_print * 40 / 50) -speed_print = 50 -speed_topbottom = =math.ceil(speed_print * 30 / 50) -speed_wall = =math.ceil(speed_print * 30 / 50) +retraction_amount = 6.5 +retraction_prime_speed = 15 +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 +top_bottom_thickness = =max(1.2 , layer_height * 6) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg index 9c7ceca13b1..d430f867d85 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg @@ -66,7 +66,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg index ca659622cbb..b2c25e26c70 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg @@ -12,18 +12,63 @@ variant = AA 0.4 weight = 0 [values] -machine_nozzle_cool_down_speed = 0.85 -machine_nozzle_heat_up_speed = 1.5 -material_final_print_temperature = =material_print_temperature - 20 -material_print_temperature = =default_material_print_temperature - 5 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 4 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.8 +material_max_flowrate = 20 +optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.15 -speed_infill = =math.ceil(speed_print * 40 / 55) -speed_print = 55 -speed_topbottom = =math.ceil(speed_print * 30 / 55) -speed_wall = =math.ceil(speed_print * 30 / 55) +retraction_amount = 6.5 +retraction_prime_speed = 15 +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 +top_bottom_thickness = =max(1.2 , layer_height * 6) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg index f430e6bc16c..8a02dfe38c1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg @@ -67,7 +67,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg index 98ca8927b65..d1feed0b46f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg @@ -67,7 +67,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg index 9545d34977f..ef58c146639 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg @@ -12,16 +12,62 @@ variant = AA 0.4 weight = 1 [values] -infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' -machine_nozzle_cool_down_speed = 0.85 -machine_nozzle_heat_up_speed = 1.5 -material_print_temperature = =default_material_print_temperature - 10 -speed_infill = =math.ceil(speed_print * 40 / 50) -speed_print = 50 -speed_topbottom = =math.ceil(speed_print * 30 / 50) -speed_wall = =math.ceil(speed_print * 30 / 50) +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 4 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.4 +machine_nozzle_heat_up_speed = 1.7 +material_extrusion_cool_down_speed = 0.7 +material_max_flowrate = 20 +optimize_wall_printing_order = False +prime_tower_enable = False +retraction_amount = 8 +retraction_prime_speed = 15 +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 +top_bottom_thickness = =max(1.2 , layer_height * 6) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg index 201c663d5c2..5d14f014b94 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg @@ -65,7 +65,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg index 4a20bd76b3d..d23a7b8ceab 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg @@ -12,16 +12,62 @@ variant = AA 0.4 weight = 0 [values] -infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' -machine_nozzle_cool_down_speed = 0.85 -machine_nozzle_heat_up_speed = 1.5 -material_print_temperature = =default_material_print_temperature - 5 -speed_infill = =math.ceil(speed_print * 45 / 55) -speed_print = 55 -speed_topbottom = =math.ceil(speed_print * 30 / 55) -speed_wall = =math.ceil(speed_print * 30 / 55) +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 4 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.4 +machine_nozzle_heat_up_speed = 1.7 +material_extrusion_cool_down_speed = 0.7 +material_max_flowrate = 20 +optimize_wall_printing_order = False +prime_tower_enable = False +retraction_amount = 8 +retraction_prime_speed = 15 +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 +top_bottom_thickness = =max(1.2 , layer_height * 6) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg index 55696eccb4b..8bfe1173800 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg @@ -66,7 +66,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg index fe3eeb67ad0..83f1a658620 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg @@ -66,7 +66,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg index c2bb123d04d..a9043c7372b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg @@ -12,18 +12,63 @@ variant = AA 0.4 weight = 1 [values] -machine_nozzle_cool_down_speed = 0.75 -machine_nozzle_heat_up_speed = 1.6 -material_print_temperature = =default_material_print_temperature - 5 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 6 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.7 +material_max_flowrate = 12 +optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.25 +retraction_amount = 6.5 retraction_prime_speed = =retraction_speed -speed_print = 50 -speed_topbottom = =math.ceil(speed_print * 35 / 50) -speed_wall = =math.ceil(speed_print * 35 / 50) +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance support_z_distance = =math.ceil(0.3/layer_height)*layer_height -top_bottom_thickness = 1 +top_bottom_thickness = =max(1 , layer_height * 5) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg index 1e2820f565a..4e451d4165c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg @@ -12,14 +12,63 @@ variant = AA 0.4 weight = 0 [values] -machine_nozzle_cool_down_speed = 0.75 -machine_nozzle_heat_up_speed = 1.6 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 6 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.7 +material_max_flowrate = 12 +optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.25 +retraction_amount = 6.5 retraction_prime_speed = =retraction_speed +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance support_z_distance = =math.ceil(0.3/layer_height)*layer_height -top_bottom_thickness = 1 +top_bottom_thickness = =max(1 , layer_height * 5) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg index 595de835ba7..641c1279e40 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg @@ -12,18 +12,63 @@ variant = AA 0.4 weight = 1 [values] -machine_nozzle_cool_down_speed = 0.75 -machine_nozzle_heat_up_speed = 1.6 -material_print_temperature = =default_material_print_temperature - 5 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 6 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.7 +material_max_flowrate = 14 +optimize_wall_printing_order = False prime_tower_enable = False +raft_airgap = 0.25 +retraction_amount = 6.5 retraction_prime_speed = =retraction_speed -speed_print = 45 -speed_topbottom = =math.ceil(speed_print * 35 / 45) -speed_wall = =math.ceil(speed_print * 40 / 45) -speed_wall_0 = =math.ceil(speed_wall * 35 / 45) +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 26 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance support_z_distance = =math.ceil(0.3/layer_height)*layer_height -top_bottom_thickness = 1.2 +top_bottom_thickness = =max(1 , layer_height * 5) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg index 07c97a632f4..35e8c0903c4 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg @@ -12,18 +12,63 @@ variant = AA 0.4 weight = 0 [values] -machine_nozzle_cool_down_speed = 0.75 -machine_nozzle_heat_up_speed = 1.6 -material_print_temperature = =default_material_print_temperature - 5 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 6 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.7 +material_max_flowrate = 14 +optimize_wall_printing_order = False prime_tower_enable = False +raft_airgap = 0.25 +retraction_amount = 6.5 retraction_prime_speed = =retraction_speed -speed_print = 45 -speed_topbottom = =math.ceil(speed_print * 35 / 45) -speed_wall = =math.ceil(speed_print * 40 / 45) -speed_wall_0 = =math.ceil(speed_wall * 35 / 45) +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 26 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance support_z_distance = =math.ceil(0.3/layer_height)*layer_height -top_bottom_thickness = 1.2 +top_bottom_thickness = =max(1 , layer_height * 5) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True From 5f3e49bdbf4e54f74db0c3d780839c2b4b0b38de Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Thu, 18 Jan 2024 13:48:14 +0100 Subject: [PATCH 408/765] Restore old z support formula. PP-391 --- .../quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg | 2 +- 24 files changed, 24 insertions(+), 24 deletions(-) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg index 24c5a1d9e64..3fc09bbc497 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg @@ -64,7 +64,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = 0.3 +support_z_distance = =math.ceil(0.3/layer_height)*layer_height top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg index e3965d9c5c6..1aa26ebcfc3 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg @@ -63,7 +63,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = 0.3 +support_z_distance = =math.ceil(0.3/layer_height)*layer_height top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg index de5e0faf2e1..85dc32801e8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg @@ -65,7 +65,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = 0.3 +support_z_distance = =math.ceil(0.3/layer_height)*layer_height top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg index c39c6d42c81..ee0525c13eb 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg @@ -66,7 +66,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = 0.3 +support_z_distance = =math.ceil(0.3/layer_height)*layer_height top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg index 08bb2befdf4..ca1d9d7afc7 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg @@ -65,7 +65,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = 0.3 +support_z_distance = =math.ceil(0.3/layer_height)*layer_height top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg index 9d67113da0e..57413c4b301 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg @@ -67,7 +67,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = 0.3 +support_z_distance = =math.ceil(0.3/layer_height)*layer_height top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg index fc6aa8c5fa2..0052ce90cda 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg @@ -67,7 +67,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = 0.3 +support_z_distance = =math.ceil(0.3/layer_height)*layer_height top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg index 7eb5de8b646..0e9ceaf9e3f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg @@ -64,7 +64,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = 0.3 +support_z_distance = =math.ceil(0.3/layer_height)*layer_height top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg index d4431382ddb..8732c3ad637 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg @@ -65,7 +65,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = 0.3 +support_z_distance = =math.ceil(0.3/layer_height)*layer_height top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg index bb7de56356f..6f8db111419 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg @@ -64,7 +64,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = 0.3 +support_z_distance = =math.ceil(0.3/layer_height)*layer_height top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg index 6b333e2f138..e7e50350c0e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg @@ -66,7 +66,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = 0.3 +support_z_distance = =math.ceil(0.3/layer_height)*layer_height top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg index d95b6de92f4..5ecaa739dbd 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg @@ -66,7 +66,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = 0.3 +support_z_distance = =math.ceil(0.3/layer_height)*layer_height top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg index 7b14730a660..39ceb39dce2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg @@ -64,7 +64,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = 0.3 +support_z_distance = =math.ceil(0.3/layer_height)*layer_height top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg index a2233703d49..82e07b6fdf2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg @@ -63,7 +63,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = 0.3 +support_z_distance = =math.ceil(0.3/layer_height)*layer_height top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg index c0b4799ca95..fbe230fb2e9 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg @@ -65,7 +65,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = 0.3 +support_z_distance = =math.ceil(0.3/layer_height)*layer_height top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg index d430f867d85..9c7ceca13b1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg @@ -66,7 +66,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = 0.3 +support_z_distance = =math.ceil(0.3/layer_height)*layer_height top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg index b2c25e26c70..8ef78a6fb55 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg @@ -65,7 +65,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = 0.3 +support_z_distance = =math.ceil(0.3/layer_height)*layer_height top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg index 8a02dfe38c1..f430e6bc16c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg @@ -67,7 +67,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = 0.3 +support_z_distance = =math.ceil(0.3/layer_height)*layer_height top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg index d1feed0b46f..98ca8927b65 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg @@ -67,7 +67,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = 0.3 +support_z_distance = =math.ceil(0.3/layer_height)*layer_height top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg index ef58c146639..aea89068776 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg @@ -64,7 +64,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = 0.3 +support_z_distance = =math.ceil(0.3/layer_height)*layer_height top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg index 5d14f014b94..201c663d5c2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg @@ -65,7 +65,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = 0.3 +support_z_distance = =math.ceil(0.3/layer_height)*layer_height top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg index d23a7b8ceab..a9d239bf3a5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg @@ -64,7 +64,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = 0.3 +support_z_distance = =math.ceil(0.3/layer_height)*layer_height top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg index 8bfe1173800..55696eccb4b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg @@ -66,7 +66,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = 0.3 +support_z_distance = =math.ceil(0.3/layer_height)*layer_height top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg index 83f1a658620..fe3eeb67ad0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg @@ -66,7 +66,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = 0.3 +support_z_distance = =math.ceil(0.3/layer_height)*layer_height top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) From 6b4ec29b41535b777f9934e1ce592aea74490aca Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Thu, 18 Jan 2024 15:51:26 +0100 Subject: [PATCH 409/765] Add setting to activate monotonic raft top layer CURA-11438 --- resources/definitions/fdmprinter.def.json | 11 +++++++++++ resources/setting_visibility/expert.cfg | 1 + 2 files changed, 12 insertions(+) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 31a67d01221..be44eb7bb29 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6453,6 +6453,17 @@ "settable_per_extruder": true, "limit_to_extruder": "raft_surface_extruder_nr" }, + "raft_surface_monotonic": + { + "label": "Monotonic Raft Top Surface Order", + "description": "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface.", + "type": "bool", + "default_value": false, + "enabled": "resolveOrValue('adhesion_type') == 'raft' and raft_surface_layers > 0", + "settable_per_mesh": false, + "settable_per_extruder": true, + "limit_to_extruder": "raft_surface_extruder_nr" + }, "raft_wall_count": { "label": "Raft Wall Count", diff --git a/resources/setting_visibility/expert.cfg b/resources/setting_visibility/expert.cfg index 2a71993998f..52c08f70ba2 100644 --- a/resources/setting_visibility/expert.cfg +++ b/resources/setting_visibility/expert.cfg @@ -340,6 +340,7 @@ raft_surface_layers raft_surface_thickness raft_surface_line_width raft_surface_line_spacing +raft_surface_monotonic raft_interface_layers raft_interface_thickness raft_interface_line_width From 22b67f1c2045f0ddcb887c910df74ae6049b0ab6 Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Thu, 18 Jan 2024 15:53:11 +0100 Subject: [PATCH 410/765] Increase small skin width from 0.8mm to 4mm to prevent jerky moves in small skin areas. Increase wipe distance to 0.8mm to improve seam quality. PP-423 --- resources/definitions/ultimaker_method_base.def.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/definitions/ultimaker_method_base.def.json b/resources/definitions/ultimaker_method_base.def.json index 1ceb05a43a5..f0808c529e5 100644 --- a/resources/definitions/ultimaker_method_base.def.json +++ b/resources/definitions/ultimaker_method_base.def.json @@ -386,6 +386,7 @@ "skin_preshrink": { "value": 0 }, "skirt_brim_material_flow": { "value": "material_flow" }, "skirt_brim_minimal_length": { "value": 500 }, + "small_skin_width": { "value": 4 }, "speed_equalize_flow_width_factor": { "value": 0 }, "speed_prime_tower": { "value": "speed_topbottom" }, "speed_print": { "value": 50 }, @@ -426,7 +427,7 @@ "travel_avoid_other_parts": { "value": false }, "wall_0_inset": { "value": 0 }, "wall_0_material_flow": { "value": "material_flow" }, - "wall_0_wipe_dist": { "value": 0 }, + "wall_0_wipe_dist": { "value": 0.8 }, "wall_material_flow": { "value": "material_flow" }, "wall_x_material_flow": { "value": "material_flow" }, "xy_offset": { "value": 0 }, From b8d1c885c7b3e642e44ba47476bb4f5962111f13 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Fri, 19 Jan 2024 08:31:49 +0100 Subject: [PATCH 411/765] Remove comment Mostly to force a build from a push action --- conanfile.py | 1 - 1 file changed, 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index ca8427ad704..87e33776879 100644 --- a/conanfile.py +++ b/conanfile.py @@ -420,7 +420,6 @@ def generate(self): ) if self.options.get_safe("enable_i18n", False) and self._i18n_options["extract"]: - # Update the po and pot files vb = VirtualBuildEnv(self) vb.generate() From 4f65efeeaa7d1a2a378dd98a5b316d050a805e19 Mon Sep 17 00:00:00 2001 From: MariMakes <40423138+MariMakes@users.noreply.github.com> Date: Thu, 30 Mar 2023 13:11:06 +0200 Subject: [PATCH 412/765] Updated Theme for Distribution Theme has been updated so the build can be distributed for easy troubleshooting purposes. # Conflicts: # resources/images/cura.png # resources/themes/cura-light/images/logo.svg --- resources/images/cura.png | Bin 337002 -> 260941 bytes resources/themes/cura-dark/theme.json | 159 +++++++-- resources/themes/cura-light/images/logo.svg | 124 ++++++- resources/themes/cura-light/theme.json | 367 ++++++++++++++++---- 4 files changed, 557 insertions(+), 93 deletions(-) diff --git a/resources/images/cura.png b/resources/images/cura.png index b2f304fce3966cc5a07dd06bb1766ec6ec1938ae..3ea0fb5cfb4c631c82202d13d0b4317d07619d7c 100644 GIT binary patch literal 260941 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

    8) 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 z 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

    vzqu3$g0hg~QmlZQCO~8A_vWWqaurJL2y( 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

    0>SSPmPnuP^$YPVE!A(qQE97t{T9B+32a5Wjy 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%0A^pEG3E5I^9biyHBY2Gq%f%FIaw3*(WxrGMx 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LhMDOzF$bEh<^io??%d>w~t==9v zP@qd&o9~FkIk$yUqIQRG<057QyE~A+lQqq+GNFOpms)qeg*^RJE6e=u`{cfYnTL0Q zP~w1vIBB~1L^b~}a*(4yWyniRB;?y7IZds|Wri>FlnM^4mF>Y-t3Va<$=^D4`BCD9 zwi|`Rh-rs(vpQ!_e(kSQDbZfPZ~3=Z7cYR@M1;dmDLvaMto)uo;I0*FP;Bcz5?t!= z2K>*Uv|bfzO#~4vkxQDwz(sm-9yiian|h~Bfg27$yr1!M)A-*~+EczRq9m-P&b*ADCJB;q9`O&pnKHnCP-3*#uu~=qLvRYxn-9 z9XW8X*xzf$U$>cjG z76rwQ0>CKdXEre>>zvuk4-XXW_Cqpaepxw(n%>t6WGn&Jw(};Fh;20Ym|NH0X|lT! zZp~x)R33=l=Wj8Ql04OZL2vU#HYZhE#eSvU=GU9N`N-5q@2-R5PycTsj06Ix zJ6rxvDo+`)o9|1f`L)K*ztPU`tV0Cc`@}EsbD5>XsL(#9G+m}vq-$-I_Cepy2|05v zlEzhw?5Hs2kjo!gP}*WcL1?#LB~H)`Pn6}+UJ=%C!1m88*EUS}`o%=a!G?G?<=j@2 z6L-PoH2ynBN-q2z%`JyR>9@;^UaW_V%qv4#@9yPGO@~v`8{0Q09I;r{RAVg_AXz zuj5<9*)2C=?Zer-4q5HrA9H!%vddNr{KbSMxdq%sf zwA991ZIQ7G3lI`(dY9y&%Q~7!O#KT$8>kkkcGZtc(=`h;r>cB`w+5nDQZ1C+TGbu> z`mXWL?im&H$?+EGy+Fvd^C!~F{8^L+A6uyyYaL6n3xHw=Ipw9caEn(az?|bXL zLhu9q!J#01dvNN_A9sqLE@-ruqjl%sVDX?Ot7st3tb3VuXIuk48=CTAnaf6 zKC~=&7sve&OHp zRyjA&mcH>$$b$a0gzb|oOEsm1u;|0;SIcn{lBx^-`*-P8X!S1`tIWPZ>6B$BL4u+*qJ9D_cahXjYQYDsH5`#Y9xXJt8_GX<=z z=)fiE{GHj;@`Z;BBh`2#(0OkQ8LyE)?vZkxoi3ZAY+W={&r&dgfMoSQ~+7!){_ zyT`eq*&O*2jx0H{U*^)rIOH4G=1%xzZ7`S48ChlpN8#UtimnOU-L6bCTze-ni*lKE z4U{GKsiXUm?PPPQ{onsddd`QuLNZ~_;~uLrYlg4$v{PPC);-Wm3FwAkdJD7+u8T>Q zve(6Qg~fBy)DezKIfZ-#(7>yT!%EST-oDwfLT8#Fa~M=KN)DI{!{wFZCi~7)jDUxs zbUYJ>@`o~`-b+jDGgIkfYjt)+Fw|=1Q;6A2-`RZ(^XxPTv+LHnIIY`*&FTLI;Icyu8< z0tmtu85yRQP;CgKvR(+(On*Zp&di((p@0=!Jk6boU~^qm~)(tf0NRG17x^vvMwRzmc*Rb z2;W-h;Bj1(J0Eg%<;t*3$Nb(X(??L&1p}FTK5C(ooOUo=3<{ZVf1hw&Xuo5xeaL6q zkPKyBgde(^6bU8oQ01WAJJrU%jrW{Nyv&lW0;7*o=mwOq=rt{R6GzUY9^p|8VOCQZ zp+tlztL?YC$!BHseibRKPChj>>1x`9n!TlM<3uSAtdomkJw_v~`f{4Wfvo3lcOJu$ zM_?r1(*?mKg3rVsG=Z?Syx}YSWZ(@!3A!v<>uo-nEuntSA|hxB*fD9I7!8tPAR^fm|GDj7emP4GtHQEmVKRoNttI)P(6*Rac3pui63hN^7N!#waj+~@91 L%NsS - - - - + + + + + + + + + + + + + + + + + + diff --git a/resources/themes/cura-light/theme.json b/resources/themes/cura-light/theme.json index 8f3f9076c5c..260d0efcefa 100644 --- a/resources/themes/cura-light/theme.json +++ b/resources/themes/cura-light/theme.json @@ -197,22 +197,66 @@ "base_colors": { "background_1": [255, 255, 255, 255], - "background_2": [243, 243, 243, 255], - "background_3": [232, 240, 253, 255], - "background_4": [3, 12, 66, 255], - - "accent_1": [25, 110, 240, 255], - "accent_2": [16, 70, 156, 255], + "background_2": [ + 230, + 238, + 244, + 255 + ], + "background_3": [ + 238, + 241, + 247, + 255 + ], + "background_4": [ + 22, + 25, + 47, + 255 + ], + "accent_1": [ + 89, + 123, + 175, + 255 + ], + "accent_2": [ + 58, + 80, + 114, + 255 + ], "border_main": [212, 212, 212, 255], - "border_accent_1": [25, 110, 240, 255], - "border_accent_2": [16, 70, 156, 255], + "border_accent_1": [ + 89, + 123, + 175, + 255 + ], + "border_accent_2": [ + 58, + 80, + 114, + 255 + ], "border_field": [180, 180, 180, 255], "text_default": [0, 14, 26, 255], "text_disabled": [180, 180, 180, 255], "text_primary_button": [255, 255, 255, 255], - "text_secondary_button": [25, 110, 240, 255], - "text_link_hover": [16, 70, 156, 255], + "text_secondary_button": [ + 89, + 123, + 175, + 255 + ], + "text_link_hover": [ + 58, + 80, + 114, + 255 + ], "text_lighter": [108, 108, 108, 255], "um_green_1": [233, 245, 237, 255], @@ -233,50 +277,122 @@ "main_background": "background_1", "detail_background": "background_2", - "wide_lining": [245, 245, 245, 255], + "wide_lining": [ + 211, + 231, + 255, + 255 + ], "thick_lining": [180, 180, 180, 255], "lining": [192, 193, 194, 255], - "viewport_overlay": [246, 246, 246, 255], + "viewport_overlay": [ + 226, + 237, + 243, + 255 + ], "primary": "accent_1", - "primary_hover": [48, 182, 231, 255], + "primary_hover": [ + 103, + 156, + 176, + 255 + ], "primary_text": [255, 255, 255, 255], - "text_selection": [156, 195, 255, 127], + "text_selection": [ + 186, + 201, + 255, + 127 + ], "border": [127, 127, 127, 255], "border_field": [180, 180, 180, 255], "secondary": [240, 240, 240, 255], - - "expandable_active": [240, 240, 240, 255], + "expandable_active": [ + 224, + 232, + 242, + 255 + ], "expandable_hover": [232, 242, 252, 255], - - "icon": [8, 7, 63, 255], - - "primary_button": "accent_1", - "primary_button_hover": [16, 70, 156, 255], + "icon": [ + 24, + 24, + 46, + 255 + ], + "primary_button": [ + 89, + 175, + 123, + 255 + ], + "primary_button_hover": [ + 58, + 114, + 80, + 255 + ], "primary_button_text": [255, 255, 255, 255], "secondary_button": "background_1", "secondary_button_shadow": [216, 216, 216, 255], - "secondary_button_hover": [232, 240, 253, 255], + "secondary_button_hover": [ + 238, + 241, + 247, + 255 + ], "secondary_button_text": "accent_1", - - "main_window_header_background": [8, 7, 63, 255], + "main_window_header_background": [ + 74, + 82, + 108, + 255 + ], "main_window_header_background_gradient": [25, 23, 91, 255], - "main_window_header_button_text_active": [8, 7, 63, 255], + "main_window_header_button_text_active": [ + 24, + 24, + 46, + 255 + ], "main_window_header_button_text_inactive": [255, 255, 255, 255], "main_window_header_button_text_hovered": [255, 255, 255, 255], "main_window_header_button_background_active": [255, 255, 255, 255], "main_window_header_button_background_inactive": [255, 255, 255, 0], - "main_window_header_button_background_hovered": [117, 114, 159, 255], - - "account_widget_outline_active": [70, 66, 126, 255], + "main_window_header_button_background_hovered": [ + 129, + 127, + 145, + 255 + ], + "account_widget_outline_active": [ + 86, + 84, + 108, + 255 + ], "account_sync_state_icon": [25, 25, 25, 255], - - "machine_selector_printer_icon": [8, 7, 63, 255], - - "action_panel_secondary": "accent_1", - - "first_run_shadow": [50, 50, 50, 255], + "machine_selector_printer_icon": [ + 24, + 24, + 46, + 255 + ], + "action_panel_secondary": [ + 89, + 175, + 123, + 255 + ], + "first_run_shadow": [ + 111, + 111, + 193, + 255 + ], "toolbar_background": [255, 255, 255, 255], @@ -320,9 +436,24 @@ "action_button_shadow": [223, 223, 223, 255], "scrollbar_background": [255, 255, 255, 255], - "scrollbar_handle": [10, 8, 80, 255], - "scrollbar_handle_hover": [50, 130, 255, 255], - "scrollbar_handle_down": [50, 130, 255, 255], + "scrollbar_handle": [ + 30, + 30, + 58, + 255 + ], + "scrollbar_handle_hover": [ + 111, + 143, + 193, + 255 + ], + "scrollbar_handle_down": [ + 111, + 143, + 193, + 255 + ], "setting_category": "background_1", "setting_category_disabled": [255, 255, 255, 255], @@ -334,10 +465,20 @@ "setting_control": "background_2", "setting_control_highlight": "background_3", "setting_control_border": [199, 199, 199, 255], - "setting_control_border_highlight": [50, 130, 255, 255], + "setting_control_border_highlight": [ + 111, + 143, + 193, + 255 + ], "setting_control_text": [35, 35, 35, 255], "setting_control_button": [102, 102, 102, 255], - "setting_control_button_hover": [8, 7, 63, 255], + "setting_control_button_hover": [ + 24, + 24, + 46, + 255 + ], "setting_control_disabled": "background_2", "setting_control_disabled_text": [127, 127, 127, 255], "setting_control_disabled_border": [127, 127, 127, 255], @@ -351,12 +492,22 @@ "material_compatibility_warning": [243, 166, 59, 255], "progressbar_background": [245, 245, 245, 255], - "progressbar_control": [50, 130, 255, 255], + "progressbar_control": [ + 136, + 148, + 168, + 255 + ], "slider_groove": [223, 223, 223, 255], "slider_groove_fill": [8, 7, 63, 255], "slider_handle": [8, 7, 63, 255], - "slider_handle_active": [50, 130, 255, 255], + "slider_handle_active": [ + 111, + 143, + 193, + 255 + ], "slider_text_background": [255, 255, 255, 255], "quality_slider_unavailable": [179, 179, 179, 255], @@ -408,7 +559,12 @@ "message_close": [102, 102, 102, 255], "message_close_hover": [8, 7, 63, 255], "message_progressbar_background": [245, 245, 245, 255], - "message_progressbar_control": [50, 130, 255, 255], + "message_progressbar_control": [ + 111, + 143, + 193, + 255 + ], "message_success_icon": [255, 255, 255, 255], "message_warning_icon": [0, 0, 0, 255], "message_error_icon": [255, 255, 255, 255], @@ -417,19 +573,53 @@ "status_offline": [0, 0, 0, 255], "status_ready": [0, 205, 0, 255], - "status_busy": [50, 130, 255, 255], + "status_busy": [ + 111, + 143, + 193, + 255 + ], "status_paused": [255, 140, 0, 255], "status_stopped": [236, 82, 80, 255], "disabled_axis": [127, 127, 127, 255], - "x_axis": [218, 30, 40, 255], - "y_axis": [25, 110, 240, 255], - "z_axis": [36, 162, 73, 255], + "x_axis": [ + 162, + 86, + 90, + 255 + ], + "y_axis": [ + 89, + 123, + 175, + 255 + ], + "z_axis": [ + 74, + 124, + 89, + 255 + ], "all_axis": [255, 255, 255, 255], - - "viewport_background": [250, 250, 250, 255], - "volume_outline": [50, 130, 255, 255], - "buildplate": [244, 244, 244, 255], + "viewport_background": [ + 230, + 238, + 244, + 255 + ], + "volume_outline": [ + 111, + 143, + 193, + 255 + ], + "buildplate": [ + 230, + 238, + 255, + 255 + ], "buildplate_grid": [180, 180, 180, 255], "buildplate_grid_minor": [228, 228, 228, 255], @@ -440,24 +630,79 @@ "model_overhang": [255, 0, 0, 255], "model_unslicable": [122, 122, 122, 255], "model_unslicable_alt": [172, 172, 127, 255], - "model_selection_outline": [50, 130, 255, 255], + "model_selection_outline": [ + 111, + 143, + 193, + 255 + ], "model_non_printing": [122, 122, 122, 255], "xray": [26, 26, 62, 255], "layerview_ghost": [31, 31, 31, 95], "layerview_none": [255, 255, 255, 255], - "layerview_inset_0": [230, 0, 0, 255], - "layerview_inset_x": [0, 230, 0, 255], - "layerview_skin": [230, 230, 0, 255], - "layerview_support": [0, 230, 230, 127], - "layerview_skirt": [0, 230, 230, 255], - "layerview_infill": [230, 115, 0, 255], - "layerview_support_infill": [0, 230, 230, 127], - "layerview_move_combing": [0, 0, 255, 255], + "layerview_inset_0": [ + 161, + 69, + 69, + 255 + ], + "layerview_inset_x": [ + 69, + 161, + 69, + 255 + ], + "layerview_skin": [ + 161, + 161, + 69, + 255 + ], + "layerview_support": [ + 69, + 161, + 161, + 127 + ], + "layerview_skirt": [ + 69, + 161, + 161, + 255 + ], + "layerview_infill": [ + 161, + 115, + 69, + 255 + ], + "layerview_support_infill": [ + 69, + 161, + 161, + 127 + ], + "layerview_move_combing": [ + 69, + 69, + 161, + 255 + ], "layerview_move_retraction": [128, 127, 255, 255], - "layerview_support_interface": [63, 127, 255, 127], - "layerview_prime_tower": [0, 255, 255, 255], + "layerview_support_interface": [ + 121, + 146, + 197, + 127 + ], + "layerview_prime_tower": [ + 77, + 178, + 179, + 255 + ], "layerview_nozzle": [224, 192, 16, 64], "layerview_starts": [255, 255, 255, 255], From 6d40ec8c425b9d638398d6601682a01a3d8e7c20 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 19 Jan 2024 11:05:19 +0100 Subject: [PATCH 413/765] Pin versions for alpha release --- conandata.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conandata.yml b/conandata.yml index 9b0e2e337ba..1ef9dc27159 100644 --- a/conandata.yml +++ b/conandata.yml @@ -1,7 +1,7 @@ version: "5.7.0-alpha.0" requirements: - - "uranium/(latest)@ultimaker/testing" - - "curaengine/(latest)@ultimaker/testing" + - "uranium/5.7.0-alpha.0" + - "curaengine/5.7.0-alpha.0" - "cura_binary_data/(latest)@ultimaker/testing" - "fdm_materials/(latest)@ultimaker/testing" - "curaengine_plugin_gradual_flow/(latest)@ultimaker/stable" From 68aad33b5ddd664d364e02b2423f61a77d93afc2 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 19 Jan 2024 11:10:24 +0100 Subject: [PATCH 414/765] Bump version --- conandata.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conandata.yml b/conandata.yml index 9b0e2e337ba..29976c07641 100644 --- a/conandata.yml +++ b/conandata.yml @@ -1,4 +1,4 @@ -version: "5.7.0-alpha.0" +version: "5.7.0-alpha.1" requirements: - "uranium/(latest)@ultimaker/testing" - "curaengine/(latest)@ultimaker/testing" From 2720bf6f50f2ae3981945602c8a022ffa43c7920 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 19 Jan 2024 11:44:34 +0100 Subject: [PATCH 415/765] Add pyarcus requirement --- conandata.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/conandata.yml b/conandata.yml index 1ef9dc27159..6f34e680618 100644 --- a/conandata.yml +++ b/conandata.yml @@ -9,6 +9,7 @@ requirements: - "pysavitar/5.3.0" - "pynest2d/5.3.0" - "curaengine_grpc_definitions/(latest)@ultimaker/testing" + - "pyarcus/5.3.1" requirements_internal: - "fdm_materials/(latest)@internal/testing" - "cura_private_data/(latest)@internal/testing" From 96b2d01e34476574ef451ab63cc1c46fa23135fe Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 19 Jan 2024 11:46:48 +0100 Subject: [PATCH 416/765] Add arcus requirement --- conandata.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/conandata.yml b/conandata.yml index 6f34e680618..d58c87cca70 100644 --- a/conandata.yml +++ b/conandata.yml @@ -10,6 +10,7 @@ requirements: - "pynest2d/5.3.0" - "curaengine_grpc_definitions/(latest)@ultimaker/testing" - "pyarcus/5.3.1" + - "arcus/5.3.1" requirements_internal: - "fdm_materials/(latest)@internal/testing" - "cura_private_data/(latest)@internal/testing" From 54be46821dd27ddde593f06033ca5e1bb56f142b Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 19 Jan 2024 13:12:02 +0100 Subject: [PATCH 417/765] Fix profile dropdown CURA-11559 --- resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml | 1 - 1 file changed, 1 deletion(-) diff --git a/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml b/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml index 4cc1e3034a7..94e7a93442a 100644 --- a/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml +++ b/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml @@ -160,7 +160,6 @@ Item ProfileWarningReset { id: profileWarningReset - width: parent.width anchors.right: parent.right anchors.verticalCenter: parent.verticalCenter fullWarning: false From 7afa2fc94a2d97a9d27ddc4d5c6c3dd5958e978f Mon Sep 17 00:00:00 2001 From: Sophist <3001893+Sophist-UK@users.noreply.github.com> Date: Fri, 19 Jan 2024 13:27:30 +0000 Subject: [PATCH 418/765] Stop Esc key from exiting full screen mode --- resources/qml/Actions.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/qml/Actions.qml b/resources/qml/Actions.qml index 3717e778d3b..a788c443afd 100644 --- a/resources/qml/Actions.qml +++ b/resources/qml/Actions.qml @@ -109,7 +109,8 @@ Item Action { id: exitFullScreenAction - shortcut: StandardKey.Cancel + // Stop Esc key from exiting full screen mode + // shortcut: StandardKey.Cancel text: catalog.i18nc("@action:inmenu", "Exit Full Screen") icon.name: "view-fullscreen" } From d9a641faa3261417d645cd33f0787b187249ae2e Mon Sep 17 00:00:00 2001 From: Mariska <40423138+MariMakes@users.noreply.github.com> Date: Fri, 19 Jan 2024 15:18:20 +0100 Subject: [PATCH 419/765] Update Slicing Crash Template It now refers to the 5.7 Alpha that has Sentry to analyze slicing crashes --- .github/ISSUE_TEMPLATE/SlicingCrash.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/SlicingCrash.yaml b/.github/ISSUE_TEMPLATE/SlicingCrash.yaml index 2fe0a2f63b1..37a70354c69 100644 --- a/.github/ISSUE_TEMPLATE/SlicingCrash.yaml +++ b/.github/ISSUE_TEMPLATE/SlicingCrash.yaml @@ -5,6 +5,13 @@ body: - type: markdown attributes: value: | + ### 💥 Slicing Crash Analysis Tool 💥 + We are taking steps to analyze an increase in reported crashes more systematically. We'll need some help with that. 😇 + Before filling out the report below, we want you to try a special Cura 5.7 Alpha. + This version of Cura has an updated slicing engine that will automatically send a report to the Cura Team for analysis. + #### [You can find the downloads here](https://github.com/Ultimaker/Cura/discussions/18080) #### + If you still encounter a crash you are still welcome to report the issue so we can use your model as a test case, you can find instructions on how to do that below. + ### Project File **⚠️ Before you continue, we need your project file to troubleshoot a slicing crash.** It contains the printer and settings we need for troubleshooting. @@ -68,4 +75,3 @@ body: description: You can add the zip file and additional information that is relevant to the issue in the comments below. validations: required: true - From dc7e8998b43599208fa86c4432caef2eddd3aef0 Mon Sep 17 00:00:00 2001 From: Sophist <3001893+Sophist-UK@users.noreply.github.com> Date: Sat, 20 Jan 2024 09:53:39 +0000 Subject: [PATCH 420/765] Delete line rather than commenting --- resources/qml/Actions.qml | 2 -- 1 file changed, 2 deletions(-) diff --git a/resources/qml/Actions.qml b/resources/qml/Actions.qml index a788c443afd..1be715164c5 100644 --- a/resources/qml/Actions.qml +++ b/resources/qml/Actions.qml @@ -109,8 +109,6 @@ Item Action { id: exitFullScreenAction - // Stop Esc key from exiting full screen mode - // shortcut: StandardKey.Cancel text: catalog.i18nc("@action:inmenu", "Exit Full Screen") icon.name: "view-fullscreen" } From 86d5c945d0b2271f8c826ff9693833cfef189a39 Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Mon, 22 Jan 2024 11:42:30 +0100 Subject: [PATCH 421/765] Add cool fan speed = 0 to the initial layer of Ultimaker ABS. Fix high speed profile T-PLA (was still generic profile). Mistake in PP-391, but taken along in this PR. PP-422 --- .../um_s3_aa0.25_um-abs_0.1mm.inst.cfg | 1 + .../um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg | 64 +++++++++++++++---- .../um_s5_aa0.25_um-abs_0.1mm.inst.cfg | 1 + .../um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg | 64 +++++++++++++++---- 4 files changed, 108 insertions(+), 22 deletions(-) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg index 3fc09bbc497..8557b08b1b3 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg @@ -27,6 +27,7 @@ acceleration_wall_x = =acceleration_wall bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 +cool_fan_speed_0 = 0 cool_min_layer_time = 4 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg index 4ffc038ac52..d0d532f4108 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg @@ -12,20 +12,62 @@ variant = AA 0.25 weight = 0 [values] -brim_width = 8 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 6 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' -machine_nozzle_cool_down_speed = 0.9 -machine_nozzle_heat_up_speed = 1.4 -material_print_temperature = =default_material_print_temperature - 5 -speed_print = 30 -speed_topbottom = =math.ceil(speed_print * 20 / 30) -speed_wall = =math.ceil(speed_print * 25 / 30) -speed_wall_0 = =math.ceil(speed_print * 20 / 30) +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.7 +optimize_wall_printing_order = False +prime_tower_enable = False +raft_airgap = 0.25 +retraction_amount = 6.5 +retraction_prime_speed = =retraction_speed +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 26 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance support_z_distance = =math.ceil(0.3/layer_height)*layer_height -top_bottom_thickness = 0.72 -wall_0_inset = 0.015 -wall_0_wipe_dist = 0.25 +top_bottom_thickness = =max(1 , layer_height * 5) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg index 39ceb39dce2..d725b5aa159 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg @@ -27,6 +27,7 @@ acceleration_wall_x = =acceleration_wall bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 +cool_fan_speed_0 = 0 cool_min_layer_time = 4 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg index a28e41553f8..307869d494e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg @@ -12,20 +12,62 @@ variant = AA 0.25 weight = 0 [values] -brim_width = 8 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 6 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' -machine_nozzle_cool_down_speed = 0.9 -machine_nozzle_heat_up_speed = 1.4 -material_print_temperature = =default_material_print_temperature - 5 -speed_print = 30 -speed_topbottom = =math.ceil(speed_print * 20 / 30) -speed_wall = =math.ceil(speed_print * 25 / 30) -speed_wall_0 = =math.ceil(speed_print * 20 / 30) +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.7 +optimize_wall_printing_order = False +prime_tower_enable = False +raft_airgap = 0.25 +retraction_amount = 6.5 +retraction_prime_speed = =retraction_speed +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 26 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance support_z_distance = =math.ceil(0.3/layer_height)*layer_height -top_bottom_thickness = 0.72 -wall_0_inset = 0.015 -wall_0_wipe_dist = 0.25 +top_bottom_thickness = =max(1 , layer_height * 5) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True From 3f21bec38cac6b07ac2db17aba5bdc2f2cecbbfc Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 22 Jan 2024 13:35:58 +0100 Subject: [PATCH 422/765] pin gradual flow plugin --- conandata.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conandata.yml b/conandata.yml index 29976c07641..486a64c26e4 100644 --- a/conandata.yml +++ b/conandata.yml @@ -4,7 +4,7 @@ requirements: - "curaengine/(latest)@ultimaker/testing" - "cura_binary_data/(latest)@ultimaker/testing" - "fdm_materials/(latest)@ultimaker/testing" - - "curaengine_plugin_gradual_flow/(latest)@ultimaker/stable" + - "curaengine_plugin_gradual_flow/0.1.0-beta.2" - "dulcificum/latest@ultimaker/testing" - "pysavitar/5.3.0" - "pynest2d/5.3.0" From 09a34f5155a9f5a6e71090ba5e33df3c16232313 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 22 Jan 2024 14:21:35 +0100 Subject: [PATCH 423/765] Fixed Unnecessary default_values Contributes to CURA-11575 --- resources/definitions/elegoo_neptune_4.def.json | 1 - resources/definitions/elegoo_neptune_4max.def.json | 1 - resources/definitions/elegoo_neptune_4plus.def.json | 1 - 3 files changed, 3 deletions(-) diff --git a/resources/definitions/elegoo_neptune_4.def.json b/resources/definitions/elegoo_neptune_4.def.json index ed4856f540d..4484133bdb1 100644 --- a/resources/definitions/elegoo_neptune_4.def.json +++ b/resources/definitions/elegoo_neptune_4.def.json @@ -11,7 +11,6 @@ { "acceleration_print": { - "default_value": 10000, "maximum_value_warning": "20000", "value": 10000 }, diff --git a/resources/definitions/elegoo_neptune_4max.def.json b/resources/definitions/elegoo_neptune_4max.def.json index c2f6aa708c7..c12953959b0 100644 --- a/resources/definitions/elegoo_neptune_4max.def.json +++ b/resources/definitions/elegoo_neptune_4max.def.json @@ -18,7 +18,6 @@ { "acceleration_print": { - "default_value": 2500, "maximum_value_warning": "15000", "value": 2500 }, diff --git a/resources/definitions/elegoo_neptune_4plus.def.json b/resources/definitions/elegoo_neptune_4plus.def.json index 0038e496419..7be4d1de97a 100644 --- a/resources/definitions/elegoo_neptune_4plus.def.json +++ b/resources/definitions/elegoo_neptune_4plus.def.json @@ -18,7 +18,6 @@ { "acceleration_print": { - "default_value": 4000, "value": 4000 }, "machine_acceleration": { "value": 4000 }, From a41d8aae7f45683db2e8ac105ccfce7fa9bf32be Mon Sep 17 00:00:00 2001 From: jellespijker Date: Mon, 22 Jan 2024 13:22:32 +0000 Subject: [PATCH 424/765] Applied printer-linter format --- resources/definitions/elegoo_neptune_4plus.def.json | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/resources/definitions/elegoo_neptune_4plus.def.json b/resources/definitions/elegoo_neptune_4plus.def.json index 7be4d1de97a..c11b99956f9 100644 --- a/resources/definitions/elegoo_neptune_4plus.def.json +++ b/resources/definitions/elegoo_neptune_4plus.def.json @@ -16,10 +16,7 @@ }, "overrides": { - "acceleration_print": - { - "value": 4000 - }, + "acceleration_print": { "value": 4000 }, "machine_acceleration": { "value": 4000 }, "machine_depth": { "default_value": 330 }, "machine_height": { "default_value": 387 }, From 8af3de2178cee6dc7fb547c75d82b1c4de0bac85 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Tue, 23 Jan 2024 20:48:02 +0100 Subject: [PATCH 425/765] Fix `getInitialExtruder` code For the `skirt_brim_extruder_nr` setting it is possible for the setting to be -1; this means that we have no preference for extruder. This allowed us to implement the "multi-material brim". When we were requesting the initial extruder, and this value was set to -1 we were default to the 0-th extruder. However, this was incorrect in the situation where the first extruder is not used. Fixes #17501 --- cura/Settings/ExtruderManager.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/cura/Settings/ExtruderManager.py b/cura/Settings/ExtruderManager.py index 6a152ab51b7..3ce83d27e30 100755 --- a/cura/Settings/ExtruderManager.py +++ b/cura/Settings/ExtruderManager.py @@ -316,7 +316,13 @@ def getInitialExtruderNr(self) -> int: # Starts with the adhesion extruder. adhesion_type = global_stack.getProperty("adhesion_type", "value") if adhesion_type in {"skirt", "brim"}: - return max(0, int(global_stack.getProperty("skirt_brim_extruder_nr", "value"))) # optional skirt/brim extruder defaults to zero + skirt_brim_extruder_nr = global_stack.getProperty("skirt_brim_extruder_nr", "value") + # if the skirt_brim_extruder_nr is -1, then we use the first used extruder + if skirt_brim_extruder_nr == -1: + used_extruders = self.getUsedExtruderStacks() + return used_extruders[0].position + else: + return skirt_brim_extruder_nr if adhesion_type == "raft": return global_stack.getProperty("raft_base_extruder_nr", "value") From 6bafd13eaf8f688b9358eb7f155cdf4c673cb51e Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Wed, 24 Jan 2024 12:46:25 +0100 Subject: [PATCH 426/765] Set proper value for raft monotonic surface CURA-11438 --- resources/definitions/fdmprinter.def.json | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index be44eb7bb29..03850a7344e 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6459,6 +6459,7 @@ "description": "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface.", "type": "bool", "default_value": false, + "value": "skin_monotonic", "enabled": "resolveOrValue('adhesion_type') == 'raft' and raft_surface_layers > 0", "settable_per_mesh": false, "settable_per_extruder": true, From c9449030290073aa80409cb1e9d33f8fe3db9429 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Wed, 24 Jan 2024 12:49:17 +0100 Subject: [PATCH 427/765] Fix crash after re-slicing CURA-11438 --- plugins/SimulationView/SimulationView.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/plugins/SimulationView/SimulationView.py b/plugins/SimulationView/SimulationView.py index c070c699394..2573c84cb9e 100644 --- a/plugins/SimulationView/SimulationView.py +++ b/plugins/SimulationView/SimulationView.py @@ -372,7 +372,10 @@ def setPath(self, value: float) -> None: self._minimum_path_num = min(self._minimum_path_num, self._current_path_num) # update _current time when the path is changed by user if self._current_path_num < self._max_paths and round(self._current_path_num)== self._current_path_num: - self._current_time = self.cumulativeLineDuration()[int(self._current_path_num)] + actual_path_num = int(self._current_path_num) + cumulative_line_duration = self.cumulativeLineDuration() + if actual_path_num < len(cumulative_line_duration): + self._current_time = cumulative_line_duration[actual_path_num] self._startUpdateTopLayers() self.currentPathNumChanged.emit() From 54af5bca3c5e9b5700ce106f854f97e3ed102842 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Thu, 25 Jan 2024 13:30:56 +0100 Subject: [PATCH 428/765] Add export sub-menu CURA-11561 --- resources/qml/Menus/ExportMenu.qml | 44 ++++++++++++++++++++++++++++++ resources/qml/Menus/FileMenu.qml | 26 +++++++++--------- 2 files changed, 57 insertions(+), 13 deletions(-) create mode 100644 resources/qml/Menus/ExportMenu.qml diff --git a/resources/qml/Menus/ExportMenu.qml b/resources/qml/Menus/ExportMenu.qml new file mode 100644 index 00000000000..70560f07726 --- /dev/null +++ b/resources/qml/Menus/ExportMenu.qml @@ -0,0 +1,44 @@ +// Copyright (c) 2024 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.2 +import QtQuick.Controls 2.1 + +import UM 1.5 as UM +import Cura 1.1 as Cura + +import "../Dialogs" + +Cura.Menu +{ + id: exportMenu + property alias model: meshWriters.model + property bool selectionOnly: false + + Instantiator + { + id: meshWriters + Cura.MenuItem + { + text: model.description + onTriggered: + { + var localDeviceId = "local_file" + var file_name = PrintInformation.jobName + var args = { "filter_by_machine": false, "limit_mimetypes": model.mime_type} + if(exportMenu.selectionOnly) + { + UM.OutputDeviceManager.requestWriteSelectionToDevice(localDeviceId, file_name, args) + } + else + { + UM.OutputDeviceManager.requestWriteToDevice(localDeviceId, file_name, args) + } + } + shortcut: model.shortcut + enabled: exportMenu.shouldBeVisible + } + onObjectAdded: function(index, object) { exportMenu.insertItem(index, object)} + onObjectRemoved: function(index, object) { exportMenu.removeItem(object)} + } +} diff --git a/resources/qml/Menus/FileMenu.qml b/resources/qml/Menus/FileMenu.qml index 0884053ef31..254c0d54686 100644 --- a/resources/qml/Menus/FileMenu.qml +++ b/resources/qml/Menus/FileMenu.qml @@ -4,7 +4,7 @@ import QtQuick 2.2 import QtQuick.Controls 2.1 -import UM 1.6 as UM +import UM 1.7 as UM import Cura 1.0 as Cura Cura.Menu @@ -72,24 +72,24 @@ Cura.Menu Cura.MenuSeparator { } - Cura.MenuItem + UM.MeshWritersModel { id: meshWritersModel } + + ExportMenu { - id: saveAsMenu - text: catalog.i18nc("@title:menu menubar:file", "&Export...") - onTriggered: - { - var localDeviceId = "local_file" - UM.OutputDeviceManager.requestWriteToDevice(localDeviceId, PrintInformation.jobName, { "filter_by_machine": false, "preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml"}) - } + id: exportMenu + title: catalog.i18nc("@title:menu menubar:file", "&Export...") + model: meshWritersModel + shouldBeVisible: model.count > 0 } - Cura.MenuItem + ExportMenu { id: exportSelectionMenu - text: catalog.i18nc("@action:inmenu menubar:file", "Export Selection...") + title: catalog.i18nc("@action:inmenu menubar:file", "Export Selection...") + model: meshWritersModel + shouldBeVisible: model.count > 0 enabled: UM.Selection.hasSelection - icon.name: "document-save-as" - onTriggered: UM.OutputDeviceManager.requestWriteSelectionToDevice("local_file", PrintInformation.jobName, { "filter_by_machine": false, "preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml"}) + selectionOnly: true } Cura.MenuSeparator { } From edd5cee41a770bc844a262a3079e1f3618c0b228 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Thu, 25 Jan 2024 14:04:47 +0100 Subject: [PATCH 429/765] Fix exporting binary/ascii STL CURA-11561 --- resources/qml/Menus/ExportMenu.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/qml/Menus/ExportMenu.qml b/resources/qml/Menus/ExportMenu.qml index 70560f07726..5c08b04f0fd 100644 --- a/resources/qml/Menus/ExportMenu.qml +++ b/resources/qml/Menus/ExportMenu.qml @@ -25,7 +25,7 @@ Cura.Menu { var localDeviceId = "local_file" var file_name = PrintInformation.jobName - var args = { "filter_by_machine": false, "limit_mimetypes": model.mime_type} + var args = { "filter_by_machine": false, "limit_mimetypes": [model.mime_type], "limit_modes": [model.mode]} if(exportMenu.selectionOnly) { UM.OutputDeviceManager.requestWriteSelectionToDevice(localDeviceId, file_name, args) From 1bf789f6f495a7986182854e85d3e3810b92879f Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 26 Jan 2024 10:36:13 +0100 Subject: [PATCH 430/765] Update pyinstaller for mac --- UltiMaker-Cura.spec.jinja | 186 +------------------------------------- conandata.yml | 1 - conanfile.py | 4 +- cura/CuraApplication.py | 3 + requirements-dev.txt | 2 +- 5 files changed, 10 insertions(+), 186 deletions(-) diff --git a/UltiMaker-Cura.spec.jinja b/UltiMaker-Cura.spec.jinja index cd939cf7362..2c930e6ed6a 100644 --- a/UltiMaker-Cura.spec.jinja +++ b/UltiMaker-Cura.spec.jinja @@ -70,188 +70,7 @@ coll = COLLECT( ) {% if macos == true %} -# PyInstaller seems to copy everything in the resource folder for the MacOS, this causes issues with codesigning and notarizing -# The folder structure should adhere to the one specified in Table 2-5 -# https://developer.apple.com/library/archive/documentation/CoreFoundation/Conceptual/CFBundles/BundleTypes/BundleTypes.html#//apple_ref/doc/uid/10000123i-CH101-SW1 -# The class below is basically ducktyping the BUNDLE class of PyInstaller and using our own `assemble` method for more fine-grain and specific -# control. Some code of the method below is copied from: -# https://github.com/pyinstaller/pyinstaller/blob/22d1d2a5378228744cc95f14904dae1664df32c4/PyInstaller/building/osx.py#L115 -#----------------------------------------------------------------------------- -# Copyright (c) 2005-2022, PyInstaller Development Team. -# -# Distributed under the terms of the GNU General Public License (version 2 -# or later) with exception for distributing the bootloader. -# -# The full license is in the file COPYING.txt, distributed with this software. -# -# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception) -#----------------------------------------------------------------------------- - -import plistlib -import shutil -import PyInstaller.utils.osx as osxutils -from pathlib import Path -from PyInstaller.building.osx import BUNDLE -from PyInstaller.building.utils import (_check_path_overlap, _rmtree, add_suffix_to_extension, checkCache) -from PyInstaller.building.datastruct import logger -from PyInstaller.building.icon import normalize_icon_type - - -class UMBUNDLE(BUNDLE): - def assemble(self): - from PyInstaller.config import CONF - - if _check_path_overlap(self.name) and os.path.isdir(self.name): - _rmtree(self.name) - logger.info("Building BUNDLE %s", self.tocbasename) - - # Create a minimal Mac bundle structure. - macos_path = Path(self.name, "Contents", "MacOS") - resources_path = Path(self.name, "Contents", "Resources") - frameworks_path = Path(self.name, "Contents", "Frameworks") - os.makedirs(macos_path) - os.makedirs(resources_path) - os.makedirs(frameworks_path) - - # Makes sure the icon exists and attempts to convert to the proper format if applicable - self.icon = normalize_icon_type(self.icon, ("icns",), "icns", CONF["workpath"]) - - # Ensure icon path is absolute - self.icon = os.path.abspath(self.icon) - - # Copy icns icon to Resources directory. - shutil.copy(self.icon, os.path.join(self.name, 'Contents', 'Resources')) - - # Key/values for a minimal Info.plist file - info_plist_dict = { - "CFBundleDisplayName": self.appname, - "CFBundleName": self.appname, - - # Required by 'codesign' utility. - # The value for CFBundleIdentifier is used as the default unique name of your program for Code Signing - # purposes. It even identifies the APP for access to restricted OS X areas like Keychain. - # - # The identifier used for signing must be globally unique. The usual form for this identifier is a - # hierarchical name in reverse DNS notation, starting with the toplevel domain, followed by the company - # name, followed by the department within the company, and ending with the product name. Usually in the - # form: com.mycompany.department.appname - # CLI option --osx-bundle-identifier sets this value. - "CFBundleIdentifier": self.bundle_identifier, - "CFBundleExecutable": os.path.basename(self.exename), - "CFBundleIconFile": os.path.basename(self.icon), - "CFBundleInfoDictionaryVersion": "6.0", - "CFBundlePackageType": "APPL", - "CFBundleVersionString": self.version, - "CFBundleShortVersionString": self.version, - } - - # Set some default values. But they still can be overwritten by the user. - if self.console: - # Setting EXE console=True implies LSBackgroundOnly=True. - info_plist_dict['LSBackgroundOnly'] = True - else: - # Let's use high resolution by default. - info_plist_dict['NSHighResolutionCapable'] = True - - # Merge info_plist settings from spec file - if isinstance(self.info_plist, dict) and self.info_plist: - info_plist_dict.update(self.info_plist) - - plist_filename = os.path.join(self.name, "Contents", "Info.plist") - with open(plist_filename, "wb") as plist_fh: - plistlib.dump(info_plist_dict, plist_fh) - - links = [] - _QT_BASE_PATH = {'PySide2', 'PySide6', 'PyQt5', 'PyQt6', 'PySide6'} - for inm, fnm, typ in self.toc: - # Adjust name for extensions, if applicable - inm, fnm, typ = add_suffix_to_extension(inm, fnm, typ) - inm = Path(inm) - fnm = Path(fnm) - # Copy files from cache. This ensures that are used files with relative paths to dynamic library - # dependencies (@executable_path) - if typ in ('EXTENSION', 'BINARY') or (typ == 'DATA' and inm.suffix == '.so'): - if any(['.' in p for p in inm.parent.parts]): - inm = Path(inm.name) - fnm = Path(checkCache( - str(fnm), - strip = self.strip, - upx = self.upx, - upx_exclude = self.upx_exclude, - dist_nm = str(inm), - target_arch = self.target_arch, - codesign_identity = self.codesign_identity, - entitlements_file = self.entitlements_file, - strict_arch_validation = (typ == 'EXTENSION'), - )) - frame_dst = frameworks_path.joinpath(inm) - if not frame_dst.exists(): - if frame_dst.is_dir(): - os.makedirs(frame_dst, exist_ok = True) - else: - os.makedirs(frame_dst.parent, exist_ok = True) - shutil.copy(fnm, frame_dst, follow_symlinks = True) - macos_dst = macos_path.joinpath(inm) - if not macos_dst.exists(): - if macos_dst.is_dir(): - os.makedirs(macos_dst, exist_ok = True) - else: - os.makedirs(macos_dst.parent, exist_ok = True) - - # Create relative symlink to the framework - symlink_to = Path(*[".." for p in macos_dst.relative_to(macos_path).parts], "Frameworks").joinpath( - frame_dst.relative_to(frameworks_path)) - try: - macos_dst.symlink_to(symlink_to) - except FileExistsError: - pass - else: - if typ == 'DATA': - if any(['.' in p for p in inm.parent.parts]) or inm.suffix == '.so': - # Skip info dist egg and some not needed folders in tcl and tk, since they all contain dots in their files - logger.warning(f"Skipping DATA file {inm}") - continue - res_dst = resources_path.joinpath(inm) - if not res_dst.exists(): - if res_dst.is_dir(): - os.makedirs(res_dst, exist_ok = True) - else: - os.makedirs(res_dst.parent, exist_ok = True) - shutil.copy(fnm, res_dst, follow_symlinks = True) - macos_dst = macos_path.joinpath(inm) - if not macos_dst.exists(): - if macos_dst.is_dir(): - os.makedirs(macos_dst, exist_ok = True) - else: - os.makedirs(macos_dst.parent, exist_ok = True) - - # Create relative symlink to the resource - symlink_to = Path(*[".." for p in macos_dst.relative_to(macos_path).parts], "Resources").joinpath( - res_dst.relative_to(resources_path)) - try: - macos_dst.symlink_to(symlink_to) - except FileExistsError: - pass - else: - macos_dst = macos_path.joinpath(inm) - if not macos_dst.exists(): - if macos_dst.is_dir(): - os.makedirs(macos_dst, exist_ok = True) - else: - os.makedirs(macos_dst.parent, exist_ok = True) - shutil.copy(fnm, macos_dst, follow_symlinks = True) - - # Sign the bundle - logger.info('Signing the BUNDLE...') - try: - osxutils.sign_binary(self.name, self.codesign_identity, self.entitlements_file, deep = True) - except Exception as e: - logger.warning(f"Error while signing the bundle: {e}") - logger.warning("You will need to sign the bundle manually!") - - logger.info(f"Building BUNDLE {self.tocbasename} completed successfully.") - -app = UMBUNDLE( +app = BUNDLE( coll, name='{{ display_name }}.app', icon={{ icon }}, @@ -276,4 +95,5 @@ app = UMBUNDLE( 'CFBundleTypeName': 'Model Files', }] }, -){% endif %} +) +{% endif %} diff --git a/conandata.yml b/conandata.yml index 486a64c26e4..2485dd8bd02 100644 --- a/conandata.yml +++ b/conandata.yml @@ -118,7 +118,6 @@ pyinstaller: - "sqlite3" - "trimesh" - "win32ctypes" - - "PyQt6" - "PyQt6.QtNetwork" - "PyQt6.sip" - "stl" diff --git a/conanfile.py b/conanfile.py index 87e33776879..6f0c598b220 100644 --- a/conanfile.py +++ b/conanfile.py @@ -163,8 +163,10 @@ def _conan_installs(self): def _python_installs(self): python_installs = {} + python_executable = "python3" if self.settings.os == "Macos" else "python" + # list of python installs - python_ins_cmd = f"python -c \"import pkg_resources; print(';'.join([(s.key+','+ s.version) for s in pkg_resources.working_set]))\"" + python_ins_cmd = f"{python_executable} -c \"import pkg_resources; print(';'.join([(s.key+','+ s.version) for s in pkg_resources.working_set]))\"" from six import StringIO buffer = StringIO() self.run(python_ins_cmd, run_environment= True, env = "conanrun", output=buffer) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 67c420028ba..ddc080d7488 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -374,8 +374,10 @@ def __addExpectedResourceDirsAndSearchPaths(self): app_root = os.path.abspath(os.path.join(os.path.dirname(sys.executable))) Resources.addSecureSearchPath(os.path.join(app_root, "share", "cura", "resources")) + Resources.addSecureSearchPath(os.path.join(app_root, "Resources", "share", "cura", "resources")) Resources.addSecureSearchPath(os.path.join(self._app_install_dir, "share", "cura", "resources")) + Resources.addSecureSearchPath(os.path.join(self._app_install_dir, "Resources", "share", "cura", "resources")) if not hasattr(sys, "frozen"): cura_data_root = os.environ.get('CURA_DATA_ROOT', None) if cura_data_root: @@ -389,6 +391,7 @@ def __addExpectedResourceDirsAndSearchPaths(self): # venv site-packages Resources.addSearchPath(os.path.join(app_root, "..", "share", "cura", "resources")) + Resources.addSearchPath(os.path.join(app_root, "..", "Resources", "share", "cura", "resources")) @classmethod def _initializeSettingDefinitions(cls): diff --git a/requirements-dev.txt b/requirements-dev.txt index a1b191009a7..162b33bf158 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,5 +1,5 @@ pytest -pyinstaller==5.8.0 +pyinstaller==6.3.0 pyinstaller-hooks-contrib pyyaml sip==6.5.1 From 18fabe468be1b3b215de67fd68473e0c210d5c19 Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Fri, 26 Jan 2024 12:38:09 +0100 Subject: [PATCH 431/765] Increase part strength of high speed modes by compensating for the slip at high flow rates. PP-386 --- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg | 4 ++++ .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg | 4 ++++ .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg | 4 ++++ .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg | 4 ++++ .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg | 4 ++++ .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg | 4 ++++ .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg | 4 ++++ .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg | 4 ++++ 8 files changed, 32 insertions(+) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg index 57413c4b301..435af40ae9f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg @@ -28,6 +28,7 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +infill_material_flow = =1.05 * material_flow infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -49,6 +50,7 @@ raft_airgap = 0.15 retraction_amount = 6.5 retraction_prime_speed = 15 retraction_speed = 45 +skin_material_flow = =material_flow small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print @@ -70,6 +72,8 @@ support_top_distance = =support_z_distance support_z_distance = =math.ceil(0.3/layer_height)*layer_height top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 +wall_x_material_flow = =1.05 * wall_material_flow +wall_x_material_flow_roofing = =wall_material_flow z_seam_relative = True z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg index e7e50350c0e..29138b1fa14 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg @@ -28,6 +28,7 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +infill_material_flow = =1.1 * material_flow infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -48,6 +49,7 @@ prime_tower_enable = False retraction_amount = 8 retraction_prime_speed = 15 retraction_speed = 45 +skin_material_flow = =1.05 * material_flow small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print @@ -69,6 +71,8 @@ support_top_distance = =support_z_distance support_z_distance = =math.ceil(0.3/layer_height)*layer_height top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 +wall_x_material_flow = =1.1 * wall_material_flow +wall_x_material_flow_roofing = =wall_material_flow z_seam_relative = True z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg index dcbb580edb2..859289d4475 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg @@ -28,6 +28,7 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +infill_material_flow = =1.1 * material_flow infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -49,6 +50,7 @@ raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed retraction_speed = 45 +skin_material_flow = =1.05 * material_flow small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print @@ -70,6 +72,8 @@ support_top_distance = =support_z_distance support_z_distance = =math.ceil(0.3/layer_height)*layer_height top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 +wall_x_material_flow = =1.1 * wall_material_flow +wall_x_material_flow_roofing = =wall_material_flow z_seam_relative = True z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg index 151af3ed50e..8b6af78965e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg @@ -28,6 +28,7 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +infill_material_flow = =1.1 * material_flow infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -48,6 +49,7 @@ raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed retraction_speed = 45 +skin_material_flow = =1.05 * material_flow small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print @@ -69,6 +71,8 @@ support_top_distance = =support_z_distance support_z_distance = =math.ceil(0.3/layer_height)*layer_height top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 +wall_x_material_flow = =1.1 * wall_material_flow +wall_x_material_flow_roofing = =wall_material_flow z_seam_relative = True z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg index f430e6bc16c..c700c426748 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg @@ -28,6 +28,7 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +infill_material_flow = =1.05 * material_flow infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -49,6 +50,7 @@ raft_airgap = 0.15 retraction_amount = 6.5 retraction_prime_speed = 15 retraction_speed = 45 +skin_material_flow = =material_flow small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print @@ -70,6 +72,8 @@ support_top_distance = =support_z_distance support_z_distance = =math.ceil(0.3/layer_height)*layer_height top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 +wall_x_material_flow = =1.05 * wall_material_flow +wall_x_material_flow_roofing = =wall_material_flow z_seam_relative = True z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg index 55696eccb4b..cb3419dadc5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg @@ -28,6 +28,7 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +infill_material_flow = =1.1 * material_flow infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -48,6 +49,7 @@ prime_tower_enable = False retraction_amount = 8 retraction_prime_speed = 15 retraction_speed = 45 +skin_material_flow = =1.05 * material_flow small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print @@ -69,6 +71,8 @@ support_top_distance = =support_z_distance support_z_distance = =math.ceil(0.3/layer_height)*layer_height top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 +wall_x_material_flow = =1.1 * wall_material_flow +wall_x_material_flow_roofing = =wall_material_flow z_seam_relative = True z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg index 02d22b06b8b..ba379b1b05c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg @@ -28,6 +28,7 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +infill_material_flow = =1.1 * material_flow infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -49,6 +50,7 @@ raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed retraction_speed = 45 +skin_material_flow = =1.05 * material_flow small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print @@ -70,6 +72,8 @@ support_top_distance = =support_z_distance support_z_distance = =math.ceil(0.3/layer_height)*layer_height top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 +wall_x_material_flow = =1.1 * wall_material_flow +wall_x_material_flow_roofing = =wall_material_flow z_seam_relative = True z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg index ee0ee279e6b..6f4efb905b1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg @@ -28,6 +28,7 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +infill_material_flow = =1.1 * material_flow infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -48,6 +49,7 @@ raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed retraction_speed = 45 +skin_material_flow = =1.05 * material_flow small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print @@ -69,6 +71,8 @@ support_top_distance = =support_z_distance support_z_distance = =math.ceil(0.3/layer_height)*layer_height top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 +wall_x_material_flow = =1.1 * wall_material_flow +wall_x_material_flow_roofing = =wall_material_flow z_seam_relative = True z_seam_type = back zig_zaggify_infill = True From 20becc170057b7ee1c972a218805e00c6ff8bd78 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Fri, 26 Jan 2024 12:49:37 +0100 Subject: [PATCH 432/765] Fix Python Installs about dialog It will now use the Python Virtual env --- conanfile.py | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/conanfile.py b/conanfile.py index 87e33776879..3b48442fa0a 100644 --- a/conanfile.py +++ b/conanfile.py @@ -1,4 +1,5 @@ import os +from io import StringIO from pathlib import Path from jinja2 import Template @@ -150,6 +151,7 @@ def _pyinstaller_spec_arch(self): return "None" def _conan_installs(self): + self.output.info("Collecting conan installs") conan_installs = {} # list of conan installs @@ -161,13 +163,22 @@ def _conan_installs(self): return conan_installs def _python_installs(self): + self.output.info("Collecting python installs") python_installs = {} # list of python installs - python_ins_cmd = f"python -c \"import pkg_resources; print(';'.join([(s.key+','+ s.version) for s in pkg_resources.working_set]))\"" - from six import StringIO + run_env = VirtualRunEnv(self) + env = run_env.environment() + env.prepend_path("PYTHONPATH", str(self._site_packages.as_posix())) + venv_vars = env.vars(self, scope = "run") + + outer = '"' if self.settings.os == "Windows" else "'" + inner = "'" if self.settings.os == "Windows" else '"' buffer = StringIO() - self.run(python_ins_cmd, run_environment= True, env = "conanrun", output=buffer) + with venv_vars.apply(): + self.run(f"""python -c {outer}import pkg_resources; print({inner};{inner}.join([(s.key+{inner},{inner}+ s.version) for s in pkg_resources.working_set])){outer}""", + env = "conanrun", + output = buffer) packages = str(buffer.getvalue()).split("-----------------\n") packages = packages[1].strip('\r\n').split(";") @@ -504,10 +515,14 @@ def package_info(self): if self.in_local_cache: self.runenv_info.append_path("PYTHONPATH", os.path.join(self.package_folder, "site-packages")) + self.env_info.PYTHONPATH.append(os.path.join(self.package_folder, "site-packages")) self.runenv_info.append_path("PYTHONPATH", os.path.join(self.package_folder, "plugins")) + self.env_info.PYTHONPATH.append(os.path.join(self.package_folder, "plugins")) else: self.runenv_info.append_path("PYTHONPATH", self.source_folder) + self.env_info.PYTHONPATH.append(self.source_folder) self.runenv_info.append_path("PYTHONPATH", os.path.join(self.source_folder, "plugins")) + self.env_info.PYTHONPATH.append(os.path.join(self.source_folder, "plugins")) def package_id(self): self.info.clear() From b5b0575baf505d4902d4aa1b72c940485914419a Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 26 Jan 2024 14:01:26 +0100 Subject: [PATCH 433/765] Display (uncomplete) configuration UI to export PCB file CURA-11561 --- plugins/PCBWriter/PCBDialog.py | 37 +++++ plugins/PCBWriter/PCBDialog.qml | 148 +++++++++++++++++++ plugins/PCBWriter/PCBWriter.py | 67 +++++++++ plugins/PCBWriter/SettingExport.py | 24 +++ plugins/PCBWriter/SettingsExportGroup.py | 59 ++++++++ plugins/PCBWriter/SettingsExportModel.py | 31 ++++ plugins/PCBWriter/SettingsSelectionGroup.qml | 70 +++++++++ plugins/PCBWriter/__init__.py | 21 +++ plugins/PCBWriter/plugin.json | 8 + resources/qml/ExtruderIcon.qml | 1 + 10 files changed, 466 insertions(+) create mode 100644 plugins/PCBWriter/PCBDialog.py create mode 100644 plugins/PCBWriter/PCBDialog.qml create mode 100644 plugins/PCBWriter/PCBWriter.py create mode 100644 plugins/PCBWriter/SettingExport.py create mode 100644 plugins/PCBWriter/SettingsExportGroup.py create mode 100644 plugins/PCBWriter/SettingsExportModel.py create mode 100644 plugins/PCBWriter/SettingsSelectionGroup.qml create mode 100644 plugins/PCBWriter/__init__.py create mode 100644 plugins/PCBWriter/plugin.json diff --git a/plugins/PCBWriter/PCBDialog.py b/plugins/PCBWriter/PCBDialog.py new file mode 100644 index 00000000000..f31c87a61b9 --- /dev/null +++ b/plugins/PCBWriter/PCBDialog.py @@ -0,0 +1,37 @@ +# Copyright (c) 2024 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +from PyQt6.QtCore import pyqtSignal, QObject, pyqtProperty, QCoreApplication, QUrl +from PyQt6.QtGui import QDesktopServices +from typing import List, Optional, Dict, cast + +from cura.Machines.Models.MachineListModel import MachineListModel +from cura.Machines.Models.IntentTranslations import intent_translations +from cura.Settings.GlobalStack import GlobalStack +from UM.Application import Application +from UM.FlameProfiler import pyqtSlot +from UM.i18n import i18nCatalog +from UM.Logger import Logger +from UM.Message import Message +from UM.PluginRegistry import PluginRegistry +from UM.Settings.ContainerRegistry import ContainerRegistry + +import os +import threading +import time + +from cura.CuraApplication import CuraApplication + +i18n_catalog = i18nCatalog("cura") + + +class PCBDialog(QObject): + def __init__(self, parent = None) -> None: + super().__init__(parent) + + plugin_path = os.path.dirname(__file__) + dialog_path = os.path.join(plugin_path, 'PCBDialog.qml') + self._view = CuraApplication.getInstance().createQmlComponent(dialog_path, {"manager": self}) + + def show(self) -> None: + self._view.show() diff --git a/plugins/PCBWriter/PCBDialog.qml b/plugins/PCBWriter/PCBDialog.qml new file mode 100644 index 00000000000..1937c00828f --- /dev/null +++ b/plugins/PCBWriter/PCBDialog.qml @@ -0,0 +1,148 @@ +// Copyright (c) 2024 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.10 +import QtQuick.Controls 2.3 +import QtQuick.Layouts 1.3 +import QtQuick.Window 2.2 + +import UM 1.5 as UM +import Cura 1.1 as Cura +import PCBWriter 1.0 as PCBWriter + +UM.Dialog +{ + id: workspaceDialog + title: catalog.i18nc("@title:window", "Export pre-configured build batch") + + margin: UM.Theme.getSize("default_margin").width + minimumWidth: UM.Theme.getSize("modal_window_minimum").width + minimumHeight: UM.Theme.getSize("modal_window_minimum").height + + backgroundColor: UM.Theme.getColor("detail_background") + + headerComponent: Rectangle + { + UM.I18nCatalog { id: catalog; name: "cura" } + + height: childrenRect.height + 2 * UM.Theme.getSize("default_margin").height + color: UM.Theme.getColor("main_background") + + ColumnLayout + { + id: headerColumn + + anchors.top: parent.top + anchors.left: parent.left + anchors.right: parent.right + anchors.topMargin: UM.Theme.getSize("default_margin").height + anchors.leftMargin: UM.Theme.getSize("default_margin").width + anchors.rightMargin: anchors.leftMargin + + UM.Label + { + id: titleLabel + text: catalog.i18nc("@action:title", "Summary - Pre-configured build batch") + font: UM.Theme.getFont("large") + } + + UM.Label + { + id: descriptionLabel + text: catalog.i18nc("@action:description", "When exporting a build batch, all the models present on the build plate will be included with their current position, orientation and scale. You can also select which per-extruder or per-model settings should be included to ensure a proper printing of the batch, even on different printers.") + font: UM.Theme.getFont("default") + wrapMode: Text.Wrap + Layout.maximumWidth: headerColumn.width + } + } + } + + Rectangle + { + anchors.fill: parent + color: UM.Theme.getColor("main_background") + + PCBWriter.SettingsExportModel{ id: settingsExportModel } + + ListView + { + id: settingsExportList + anchors.fill: parent + anchors.margins: UM.Theme.getSize("default_margin").width + spacing: UM.Theme.getSize("default_margin").height + model: settingsExportModel.settingsGroups + clip: true + + ScrollBar.vertical: UM.ScrollBar { id: verticalScrollBar } + + delegate: SettingsSelectionGroup { Layout.margins: 0 } + } + + // Flickable + // { + // Column + // { + // width: parent.width - scrollbar.width - UM.Theme.getSize("default_margin").width + // height: childrenRect.height + // + // spacing: UM.Theme.getSize("default_margin").height + // leftPadding: UM.Theme.getSize("default_margin").width + // rightPadding: leftPadding + // topPadding: UM.Theme.getSize("default_margin").height + // bottomPadding: topPadding + // } + // } + } + + footerComponent: Rectangle + { + color: warning ? UM.Theme.getColor("warning") : "transparent" + anchors.bottom: parent.bottom + width: parent.width + height: childrenRect.height + (warning ? 2 * workspaceDialog.margin : workspaceDialog.margin) + + Column + { + height: childrenRect.height + spacing: workspaceDialog.margin + + anchors.leftMargin: workspaceDialog.margin + anchors.rightMargin: workspaceDialog.margin + anchors.bottomMargin: workspaceDialog.margin + anchors.topMargin: warning ? workspaceDialog.margin : 0 + + anchors.left: parent.left + anchors.right: parent.right + anchors.top: parent.top + + RowLayout + { + id: warningRow + height: childrenRect.height + visible: warning + spacing: workspaceDialog.margin + UM.ColorImage + { + width: UM.Theme.getSize("extruder_icon").width + height: UM.Theme.getSize("extruder_icon").height + source: UM.Theme.getIcon("Warning") + } + + UM.Label + { + id: warningText + text: catalog.i18nc("@label", "This project contains materials or plugins that are currently not installed in Cura.
    Install the missing packages and reopen the project.") + } + } + + Loader + { + width: parent.width + height: childrenRect.height + sourceComponent: buttonRow + } + } + } + + buttonSpacing: UM.Theme.getSize("wide_margin").width +} diff --git a/plugins/PCBWriter/PCBWriter.py b/plugins/PCBWriter/PCBWriter.py new file mode 100644 index 00000000000..6391493ae38 --- /dev/null +++ b/plugins/PCBWriter/PCBWriter.py @@ -0,0 +1,67 @@ +# Copyright (c) 2024 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. +import json +import re + +from threading import Lock + +from typing import Optional, cast, List, Dict, Pattern, Set + +from UM.Mesh.MeshWriter import MeshWriter +from UM.Math.Vector import Vector +from UM.Logger import Logger +from UM.Math.Matrix import Matrix +from UM.Application import Application +from UM.Message import Message +from UM.Resources import Resources +from UM.Scene.SceneNode import SceneNode +from UM.Settings.ContainerRegistry import ContainerRegistry +from UM.Settings.EmptyInstanceContainer import EmptyInstanceContainer +from PyQt6.QtQml import qmlRegisterType + +from cura.CuraApplication import CuraApplication +from cura.CuraPackageManager import CuraPackageManager +from cura.Settings import CuraContainerStack +from cura.Utils.Threading import call_on_qt_thread +from cura.Snapshot import Snapshot + +from PyQt6.QtCore import QBuffer + +import pySavitar as Savitar + +import numpy +import datetime + +import zipfile +import UM.Application + +from .PCBDialog import PCBDialog +from .SettingsExportModel import SettingsExportModel +from .SettingsExportGroup import SettingsExportGroup + +from UM.i18n import i18nCatalog +catalog = i18nCatalog("cura") + +class PCBWriter(MeshWriter): + def __init__(self): + super().__init__() + + qmlRegisterType(SettingsExportModel, "PCBWriter", 1, 0, "SettingsExportModel") + qmlRegisterType(SettingsExportGroup, "PCBWriter", 1, 0, "SettingsExportGroup") + #qmlRegisterUncreatableType(SettingsExportGroup.Category, "PCBWriter", 1, 0, "SettingsExportGroup.Category") + + self._config_dialog = None + self._main_thread_lock = Lock() + + def write(self, stream, nodes, mode = MeshWriter.OutputMode.BinaryMode) -> bool: + self._main_thread_lock.acquire() + # Start configuration window in main application thread + CuraApplication.getInstance().callLater(self._write, stream, nodes, mode) + self._main_thread_lock.acquire() # Block until lock has been released, meaning the config is over + + self._main_thread_lock.release() + return True + + def _write(self, stream, nodes, mode): + self._config_dialog = PCBDialog() + self._config_dialog.show() diff --git a/plugins/PCBWriter/SettingExport.py b/plugins/PCBWriter/SettingExport.py new file mode 100644 index 00000000000..901dcdc8049 --- /dev/null +++ b/plugins/PCBWriter/SettingExport.py @@ -0,0 +1,24 @@ +# Copyright (c) 2024 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +from PyQt6.QtCore import Qt, QObject, pyqtProperty +from UM.FlameProfiler import pyqtSlot +from UM.Application import Application +from UM.Qt.ListModel import ListModel +from UM.Logger import Logger + + +class SettingsExport(): + + def __init__(self): + super().__init__() + self._name = "Generate Support" + self._value = "Enabled" + + @pyqtProperty(str, constant=True) + def name(self): + return self._name + + @pyqtProperty(str, constant=True) + def value(self): + return self._value diff --git a/plugins/PCBWriter/SettingsExportGroup.py b/plugins/PCBWriter/SettingsExportGroup.py new file mode 100644 index 00000000000..355b2347f6f --- /dev/null +++ b/plugins/PCBWriter/SettingsExportGroup.py @@ -0,0 +1,59 @@ +# Copyright (c) 2024 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +from enum import IntEnum + +from PyQt6.QtCore import Qt, QObject, pyqtProperty, pyqtEnum +from UM.FlameProfiler import pyqtSlot +from UM.Application import Application +from UM.Qt.ListModel import ListModel +from UM.Logger import Logger + +from .SettingExport import SettingsExport + + +class SettingsExportGroup(QObject): + + @pyqtEnum + class Category(IntEnum): + Global = 0 + Extruder = 1 + Model = 2 + + def __init__(self, name, category, category_details = '', extruder_index = 0, extruder_color = ''): + super().__init__() + self._name = name + self._settings = [] + self._category = category + self._category_details = category_details + self._extruder_index = extruder_index + self._extruder_color = extruder_color + self._updateSettings() + + @pyqtProperty(str, constant=True) + def name(self): + return self._name + + @pyqtProperty(list, constant=True) + def settings(self): + return self._settings + + @pyqtProperty(int, constant=True) + def category(self): + return self._category + + @pyqtProperty(str, constant=True) + def category_details(self): + return self._category_details + + @pyqtProperty(int, constant=True) + def extruder_index(self): + return self._extruder_index + + @pyqtProperty(str, constant=True) + def extruder_color(self): + return self._extruder_color + + def _updateSettings(self): + self._settings.append(SettingsExport()) + self._settings.append(SettingsExport()) \ No newline at end of file diff --git a/plugins/PCBWriter/SettingsExportModel.py b/plugins/PCBWriter/SettingsExportModel.py new file mode 100644 index 00000000000..3351e22b59f --- /dev/null +++ b/plugins/PCBWriter/SettingsExportModel.py @@ -0,0 +1,31 @@ +# Copyright (c) 2024 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +from PyQt6.QtCore import QObject, Qt, pyqtProperty +from UM.FlameProfiler import pyqtSlot +from UM.Application import Application +from UM.Qt.ListModel import ListModel +from UM.Logger import Logger + +from .SettingsExportGroup import SettingsExportGroup + + +class SettingsExportModel(QObject): + + def __init__(self, parent = None): + super().__init__(parent) + self._settingsGroups = [] + self._updateSettingsExportGroups() + + @pyqtProperty(list, constant=True) + def settingsGroups(self): + return self._settingsGroups + + def _updateSettingsExportGroups(self): + self._settingsGroups.append(SettingsExportGroup("Global settings", SettingsExportGroup.Category.Global)) + self._settingsGroups.append(SettingsExportGroup("Extruder settings", SettingsExportGroup.Category.Extruder, extruder_index=1, extruder_color='#ff0000')) + self._settingsGroups.append(SettingsExportGroup("Extruder settings", SettingsExportGroup.Category.Extruder, extruder_index=8, extruder_color='#008fff')) + self._settingsGroups.append(SettingsExportGroup("Model settings", + SettingsExportGroup.Category.Model, 'hypercube.stl')) + self._settingsGroups.append(SettingsExportGroup("Model settings", + SettingsExportGroup.Category.Model, 'homer-simpson.stl')) diff --git a/plugins/PCBWriter/SettingsSelectionGroup.qml b/plugins/PCBWriter/SettingsSelectionGroup.qml new file mode 100644 index 00000000000..12829c96d48 --- /dev/null +++ b/plugins/PCBWriter/SettingsSelectionGroup.qml @@ -0,0 +1,70 @@ +// Copyright (c) 2024 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.10 +import QtQuick.Controls 2.3 +import QtQuick.Layouts 1.3 +import QtQuick.Window 2.2 + +import UM 1.5 as UM +import Cura 1.1 as Cura +import PCBWriter 1.0 as PCBWriter + +Column +{ + id: settingsGroup + + UM.I18nCatalog { id: catalog; name: "cura" } + + Row + { + id: settingsGroupTitleRow + spacing: UM.Theme.getSize("default_margin").width + + Item + { + id: icon + anchors.verticalCenter: parent.verticalCenter + height: UM.Theme.getSize("medium_button_icon").height + width: height + + UM.ColorImage + { + id: settingsMainImage + anchors.fill: parent + source: + { + switch(modelData.category) + { + case PCBWriter.SettingsExportGroup.Global: + return UM.Theme.getIcon("Sliders") + case PCBWriter.SettingsExportGroup.Model: + return UM.Theme.getIcon("View3D") + default: + return "" + } + } + + color: UM.Theme.getColor("text") + } + + Cura.ExtruderIcon + { + id: settingsExtruderIcon + anchors.fill: parent + visible: modelData.category === PCBWriter.SettingsExportGroup.Extruder + text: (modelData.extruder_index + 1).toString() + font: UM.Theme.getFont("tiny_emphasis") + materialColor: modelData.extruder_color + } + } + + UM.Label + { + id: settingsTitle + text: modelData.name + (modelData.category_details ? ' (%1)'.arg(modelData.category_details) : '') + anchors.verticalCenter: parent.verticalCenter + font: UM.Theme.getFont("default_bold") + } + } +} diff --git a/plugins/PCBWriter/__init__.py b/plugins/PCBWriter/__init__.py new file mode 100644 index 00000000000..3ec2eba95f0 --- /dev/null +++ b/plugins/PCBWriter/__init__.py @@ -0,0 +1,21 @@ +# Copyright (c) 2024 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. +import sys + +from . import PCBWriter +from UM.i18n import i18nCatalog + +i18n_catalog = i18nCatalog("cura") + +def getMetaData(): + return {"mesh_writer": { + "output": [{ + "extension": "pcb", + "description": i18n_catalog.i18nc("@item:inlistbox", "Pre-Configured Batch file"), + "mime_type": "application/vnd.um.preconfigured-batch+3mf", + "mode": PCBWriter.PCBWriter.OutputMode.BinaryMode + }] + }} + +def register(app): + return {"mesh_writer": PCBWriter.PCBWriter() } diff --git a/plugins/PCBWriter/plugin.json b/plugins/PCBWriter/plugin.json new file mode 100644 index 00000000000..6571185779f --- /dev/null +++ b/plugins/PCBWriter/plugin.json @@ -0,0 +1,8 @@ +{ + "name": "Pre-Configured Batch Writer", + "author": "Ultimaker B.V.", + "version": "1.0.0", + "description": "Provides support for writing Pre-Configured Batch files.", + "api": 8, + "i18n-catalog": "cura" +} diff --git a/resources/qml/ExtruderIcon.qml b/resources/qml/ExtruderIcon.qml index 3231d924ee0..bd15df7848a 100644 --- a/resources/qml/ExtruderIcon.qml +++ b/resources/qml/ExtruderIcon.qml @@ -15,6 +15,7 @@ Item property int iconSize: UM.Theme.getSize("extruder_icon").width property string iconVariant: "medium" property alias font: extruderNumberText.font + property alias text: extruderNumberText.text implicitWidth: iconSize implicitHeight: iconSize From 2aef33f52143f210be44f4f4a84712c68ee1d1b1 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Tue, 30 Jan 2024 14:35:55 +0100 Subject: [PATCH 434/765] Completed configuration UI to export PCB file CURA-11561 --- plugins/PCBWriter/PCBDialog.qml | 17 +----------- plugins/PCBWriter/SettingExport.py | 8 +++--- plugins/PCBWriter/SettingSelection.qml | 27 ++++++++++++++++++ plugins/PCBWriter/SettingsExportGroup.py | 9 ++---- plugins/PCBWriter/SettingsExportModel.py | 28 +++++++++++++++---- plugins/PCBWriter/SettingsSelectionGroup.qml | 29 ++++++++++++++++---- 6 files changed, 80 insertions(+), 38 deletions(-) create mode 100644 plugins/PCBWriter/SettingSelection.qml diff --git a/plugins/PCBWriter/PCBDialog.qml b/plugins/PCBWriter/PCBDialog.qml index 1937c00828f..213bed108cc 100644 --- a/plugins/PCBWriter/PCBDialog.qml +++ b/plugins/PCBWriter/PCBDialog.qml @@ -69,7 +69,7 @@ UM.Dialog id: settingsExportList anchors.fill: parent anchors.margins: UM.Theme.getSize("default_margin").width - spacing: UM.Theme.getSize("default_margin").height + spacing: UM.Theme.getSize("thick_margin").height model: settingsExportModel.settingsGroups clip: true @@ -77,21 +77,6 @@ UM.Dialog delegate: SettingsSelectionGroup { Layout.margins: 0 } } - - // Flickable - // { - // Column - // { - // width: parent.width - scrollbar.width - UM.Theme.getSize("default_margin").width - // height: childrenRect.height - // - // spacing: UM.Theme.getSize("default_margin").height - // leftPadding: UM.Theme.getSize("default_margin").width - // rightPadding: leftPadding - // topPadding: UM.Theme.getSize("default_margin").height - // bottomPadding: topPadding - // } - // } } footerComponent: Rectangle diff --git a/plugins/PCBWriter/SettingExport.py b/plugins/PCBWriter/SettingExport.py index 901dcdc8049..2c230f9ab3d 100644 --- a/plugins/PCBWriter/SettingExport.py +++ b/plugins/PCBWriter/SettingExport.py @@ -8,12 +8,12 @@ from UM.Logger import Logger -class SettingsExport(): +class SettingsExport(QObject): - def __init__(self): + def __init__(self, name, value): super().__init__() - self._name = "Generate Support" - self._value = "Enabled" + self._name = name + self._value = value @pyqtProperty(str, constant=True) def name(self): diff --git a/plugins/PCBWriter/SettingSelection.qml b/plugins/PCBWriter/SettingSelection.qml new file mode 100644 index 00000000000..9b09593a7dc --- /dev/null +++ b/plugins/PCBWriter/SettingSelection.qml @@ -0,0 +1,27 @@ +// Copyright (c) 2024 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.10 +import QtQuick.Controls 2.3 +import QtQuick.Layouts 1.3 +import QtQuick.Window 2.2 + +import UM 1.5 as UM +import Cura 1.1 as Cura + +RowLayout +{ + id: settingSelection + + UM.CheckBox + { + text: modelData.name + Layout.preferredWidth: UM.Theme.getSize("setting").width + checked: true + } + + UM.Label + { + text: modelData.value + } +} diff --git a/plugins/PCBWriter/SettingsExportGroup.py b/plugins/PCBWriter/SettingsExportGroup.py index 355b2347f6f..0a721a7fb83 100644 --- a/plugins/PCBWriter/SettingsExportGroup.py +++ b/plugins/PCBWriter/SettingsExportGroup.py @@ -20,15 +20,14 @@ class Category(IntEnum): Extruder = 1 Model = 2 - def __init__(self, name, category, category_details = '', extruder_index = 0, extruder_color = ''): + def __init__(self, name, category, settings, category_details = '', extruder_index = 0, extruder_color = ''): super().__init__() self._name = name - self._settings = [] + self._settings = settings self._category = category self._category_details = category_details self._extruder_index = extruder_index self._extruder_color = extruder_color - self._updateSettings() @pyqtProperty(str, constant=True) def name(self): @@ -53,7 +52,3 @@ def extruder_index(self): @pyqtProperty(str, constant=True) def extruder_color(self): return self._extruder_color - - def _updateSettings(self): - self._settings.append(SettingsExport()) - self._settings.append(SettingsExport()) \ No newline at end of file diff --git a/plugins/PCBWriter/SettingsExportModel.py b/plugins/PCBWriter/SettingsExportModel.py index 3351e22b59f..0f1ec5113a9 100644 --- a/plugins/PCBWriter/SettingsExportModel.py +++ b/plugins/PCBWriter/SettingsExportModel.py @@ -8,6 +8,7 @@ from UM.Logger import Logger from .SettingsExportGroup import SettingsExportGroup +from .SettingExport import SettingsExport class SettingsExportModel(QObject): @@ -22,10 +23,27 @@ def settingsGroups(self): return self._settingsGroups def _updateSettingsExportGroups(self): - self._settingsGroups.append(SettingsExportGroup("Global settings", SettingsExportGroup.Category.Global)) - self._settingsGroups.append(SettingsExportGroup("Extruder settings", SettingsExportGroup.Category.Extruder, extruder_index=1, extruder_color='#ff0000')) - self._settingsGroups.append(SettingsExportGroup("Extruder settings", SettingsExportGroup.Category.Extruder, extruder_index=8, extruder_color='#008fff')) + self._settingsGroups.append(SettingsExportGroup("Global settings", + SettingsExportGroup.Category.Global, + [SettingsExport("Generate Support", "Enabled"), + SettingsExport("Support Type", "Tree")])) + self._settingsGroups.append(SettingsExportGroup("Extruder settings", + SettingsExportGroup.Category.Extruder, + [SettingsExport("Brim Width", "0.7mm")], + extruder_index=1, + extruder_color='#ff0000')) + self._settingsGroups.append(SettingsExportGroup("Extruder settings", + SettingsExportGroup.Category.Extruder, + [], + extruder_index=8, + extruder_color='#008fff')) self._settingsGroups.append(SettingsExportGroup("Model settings", - SettingsExportGroup.Category.Model, 'hypercube.stl')) + SettingsExportGroup.Category.Model, + [SettingsExport("Brim Width", "20.0 mm"), + SettingsExport("Z Hop when retracted", "Disabled")], + 'hypercube.stl')) self._settingsGroups.append(SettingsExportGroup("Model settings", - SettingsExportGroup.Category.Model, 'homer-simpson.stl')) + SettingsExportGroup.Category.Model, + [SettingsExport("Walls Thickness", "3.0 mm"), + SettingsExport("Enable Ironing", "Enabled")], + 'homer-simpson.stl')) diff --git a/plugins/PCBWriter/SettingsSelectionGroup.qml b/plugins/PCBWriter/SettingsSelectionGroup.qml index 12829c96d48..39299ab7c32 100644 --- a/plugins/PCBWriter/SettingsSelectionGroup.qml +++ b/plugins/PCBWriter/SettingsSelectionGroup.qml @@ -10,13 +10,12 @@ import UM 1.5 as UM import Cura 1.1 as Cura import PCBWriter 1.0 as PCBWriter -Column +ColumnLayout { id: settingsGroup + spacing: UM.Theme.getSize("narrow_margin").width - UM.I18nCatalog { id: catalog; name: "cura" } - - Row + RowLayout { id: settingsGroupTitleRow spacing: UM.Theme.getSize("default_margin").width @@ -24,7 +23,6 @@ Column Item { id: icon - anchors.verticalCenter: parent.verticalCenter height: UM.Theme.getSize("medium_button_icon").height width: height @@ -63,8 +61,27 @@ Column { id: settingsTitle text: modelData.name + (modelData.category_details ? ' (%1)'.arg(modelData.category_details) : '') - anchors.verticalCenter: parent.verticalCenter font: UM.Theme.getFont("default_bold") } } + + ListView + { + id: settingsExportList + Layout.fillWidth: true + Layout.preferredHeight: contentHeight + spacing: 0 + model: modelData.settings + visible: modelData.settings.length > 0 + + delegate: SettingSelection { } + } + + UM.Label + { + UM.I18nCatalog { id: catalog; name: "cura" } + + text: catalog.i18nc("@label", "No specific value has been set") + visible: modelData.settings.length === 0 + } } From 8ad4ab90a8e90a173f6e1aa08b02d75a0b822fb2 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Wed, 31 Jan 2024 09:26:49 +0100 Subject: [PATCH 435/765] User settings are now properly proposed for export CURA-11561 --- plugins/PCBWriter/PCBDialog.py | 8 +- plugins/PCBWriter/PCBDialog.qml | 2 + plugins/PCBWriter/PCBWriter.py | 4 + plugins/PCBWriter/SettingExport.py | 6 +- plugins/PCBWriter/SettingsExportGroup.py | 8 +- plugins/PCBWriter/SettingsExportModel.py | 134 +++++++++++++++++------ 6 files changed, 115 insertions(+), 47 deletions(-) diff --git a/plugins/PCBWriter/PCBDialog.py b/plugins/PCBWriter/PCBDialog.py index f31c87a61b9..385b60272ed 100644 --- a/plugins/PCBWriter/PCBDialog.py +++ b/plugins/PCBWriter/PCBDialog.py @@ -1,7 +1,7 @@ # Copyright (c) 2024 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. -from PyQt6.QtCore import pyqtSignal, QObject, pyqtProperty, QCoreApplication, QUrl +from PyQt6.QtCore import pyqtSignal, QObject, pyqtProperty, QCoreApplication, QUrl, pyqtSlot from PyQt6.QtGui import QDesktopServices from typing import List, Optional, Dict, cast @@ -26,6 +26,8 @@ class PCBDialog(QObject): + finished = pyqtSignal() + def __init__(self, parent = None) -> None: super().__init__(parent) @@ -35,3 +37,7 @@ def __init__(self, parent = None) -> None: def show(self) -> None: self._view.show() + + @pyqtSlot() + def notifyClosed(self): + self.finished.emit() diff --git a/plugins/PCBWriter/PCBDialog.qml b/plugins/PCBWriter/PCBDialog.qml index 213bed108cc..ddf99d5e1f5 100644 --- a/plugins/PCBWriter/PCBDialog.qml +++ b/plugins/PCBWriter/PCBDialog.qml @@ -130,4 +130,6 @@ UM.Dialog } buttonSpacing: UM.Theme.getSize("wide_margin").width + + onClosing: manager.notifyClosed() } diff --git a/plugins/PCBWriter/PCBWriter.py b/plugins/PCBWriter/PCBWriter.py index 6391493ae38..26e552f583c 100644 --- a/plugins/PCBWriter/PCBWriter.py +++ b/plugins/PCBWriter/PCBWriter.py @@ -64,4 +64,8 @@ def write(self, stream, nodes, mode = MeshWriter.OutputMode.BinaryMode) -> bool: def _write(self, stream, nodes, mode): self._config_dialog = PCBDialog() + self._config_dialog.finished.connect(self._onDialogClosed) self._config_dialog.show() + + def _onDialogClosed(self): + self._main_thread_lock.release() diff --git a/plugins/PCBWriter/SettingExport.py b/plugins/PCBWriter/SettingExport.py index 2c230f9ab3d..0a761bb6b99 100644 --- a/plugins/PCBWriter/SettingExport.py +++ b/plugins/PCBWriter/SettingExport.py @@ -1,11 +1,7 @@ # Copyright (c) 2024 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. -from PyQt6.QtCore import Qt, QObject, pyqtProperty -from UM.FlameProfiler import pyqtSlot -from UM.Application import Application -from UM.Qt.ListModel import ListModel -from UM.Logger import Logger +from PyQt6.QtCore import QObject, pyqtProperty class SettingsExport(QObject): diff --git a/plugins/PCBWriter/SettingsExportGroup.py b/plugins/PCBWriter/SettingsExportGroup.py index 0a721a7fb83..2b21c42b786 100644 --- a/plugins/PCBWriter/SettingsExportGroup.py +++ b/plugins/PCBWriter/SettingsExportGroup.py @@ -3,13 +3,7 @@ from enum import IntEnum -from PyQt6.QtCore import Qt, QObject, pyqtProperty, pyqtEnum -from UM.FlameProfiler import pyqtSlot -from UM.Application import Application -from UM.Qt.ListModel import ListModel -from UM.Logger import Logger - -from .SettingExport import SettingsExport +from PyQt6.QtCore import QObject, pyqtProperty, pyqtEnum class SettingsExportGroup(QObject): diff --git a/plugins/PCBWriter/SettingsExportModel.py b/plugins/PCBWriter/SettingsExportModel.py index 0f1ec5113a9..b09717298a7 100644 --- a/plugins/PCBWriter/SettingsExportModel.py +++ b/plugins/PCBWriter/SettingsExportModel.py @@ -1,49 +1,115 @@ # Copyright (c) 2024 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. -from PyQt6.QtCore import QObject, Qt, pyqtProperty -from UM.FlameProfiler import pyqtSlot -from UM.Application import Application -from UM.Qt.ListModel import ListModel -from UM.Logger import Logger +from PyQt6.QtCore import QObject, pyqtProperty from .SettingsExportGroup import SettingsExportGroup from .SettingExport import SettingsExport +from cura.CuraApplication import CuraApplication +from UM.Settings.SettingDefinition import SettingDefinition +from cura.Settings.ExtruderManager import ExtruderManager class SettingsExportModel(QObject): + EXPORTABLE_SETTINGS = {'infill_sparse_density', + 'adhesion_type', + 'support_enable', + 'infill_pattern', + 'support_type', + 'support_structure', + 'support_angle', + 'support_infill_rate', + 'ironing_enabled', + 'fill_outline_gaps', + 'coasting_enable', + 'skin_monotonic', + 'z_seam_position', + 'infill_before_walls', + 'ironing_only_highest_layer', + 'xy_offset', + 'adaptive_layer_height_enabled', + 'brim_gap', + 'support_offset', + 'brim_outside_only', + 'magic_spiralize', + 'slicing_tolerance', + 'outer_inset_first', + 'magic_fuzzy_skin_outside_only', + 'conical_overhang_enabled', + 'min_infill_area', + 'small_hole_max_size', + 'magic_mesh_surface_mode', + 'carve_multiple_volumes', + 'meshfix_union_all_remove_holes', + 'support_tree_rest_preference', + 'small_feature_max_length', + 'draft_shield_enabled', + 'brim_smart_ordering', + 'ooze_shield_enabled', + 'bottom_skin_preshrink', + 'skin_edge_support_thickness', + 'alternate_carve_order', + 'top_skin_preshrink', + 'interlocking_enable'} + def __init__(self, parent = None): super().__init__(parent) - self._settingsGroups = [] - self._updateSettingsExportGroups() + self._settings_groups = [] + + application = CuraApplication.getInstance() + + # Display global settings + global_stack = application.getGlobalContainerStack() + self._settings_groups.append(SettingsExportGroup("Global settings", + SettingsExportGroup.Category.Global, + self._exportSettings(global_stack))) + + # Display per-extruder settings + extruders_stacks = ExtruderManager.getInstance().getUsedExtruderStacks() + for extruder_stack in extruders_stacks: + color = "" + if extruder_stack.material: + color = extruder_stack.material.getMetaDataEntry("color_code") + + self._settings_groups.append(SettingsExportGroup("Extruder settings", + SettingsExportGroup.Category.Extruder, + self._exportSettings(extruder_stack), + extruder_index=extruder_stack.position, + extruder_color=color)) + + # Display per-model settings + scene_root = application.getController().getScene().getRoot() + for scene_node in scene_root.getChildren(): + per_model_stack = scene_node.callDecoration("getStack") + if per_model_stack is not None: + self._settings_groups.append(SettingsExportGroup("Model settings", + SettingsExportGroup.Category.Model, + self._exportSettings(per_model_stack), + scene_node.getName())) @pyqtProperty(list, constant=True) def settingsGroups(self): - return self._settingsGroups - - def _updateSettingsExportGroups(self): - self._settingsGroups.append(SettingsExportGroup("Global settings", - SettingsExportGroup.Category.Global, - [SettingsExport("Generate Support", "Enabled"), - SettingsExport("Support Type", "Tree")])) - self._settingsGroups.append(SettingsExportGroup("Extruder settings", - SettingsExportGroup.Category.Extruder, - [SettingsExport("Brim Width", "0.7mm")], - extruder_index=1, - extruder_color='#ff0000')) - self._settingsGroups.append(SettingsExportGroup("Extruder settings", - SettingsExportGroup.Category.Extruder, - [], - extruder_index=8, - extruder_color='#008fff')) - self._settingsGroups.append(SettingsExportGroup("Model settings", - SettingsExportGroup.Category.Model, - [SettingsExport("Brim Width", "20.0 mm"), - SettingsExport("Z Hop when retracted", "Disabled")], - 'hypercube.stl')) - self._settingsGroups.append(SettingsExportGroup("Model settings", - SettingsExportGroup.Category.Model, - [SettingsExport("Walls Thickness", "3.0 mm"), - SettingsExport("Enable Ironing", "Enabled")], - 'homer-simpson.stl')) + return self._settings_groups + + @staticmethod + def _exportSettings(settings_stack): + user_settings_container = settings_stack.getTop() + user_keys = user_settings_container.getAllKeys() + + settings_export = [] + + for setting_to_export in user_keys.intersection(SettingsExportModel.EXPORTABLE_SETTINGS): + label = settings_stack.getProperty(setting_to_export, "label") + value = settings_stack.getProperty(setting_to_export, "value") + + setting_type = settings_stack.getProperty(setting_to_export, "type") + if setting_type is not None: + # This is not very good looking, but will do for now + value = SettingDefinition.settingValueToString(setting_type, value) + else: + value = str(value) + + settings_export.append(SettingsExport(label, value)) + + return settings_export \ No newline at end of file From 3793d4acbef4b901d7c2c7b877016b0775192b28 Mon Sep 17 00:00:00 2001 From: nallath Date: Wed, 31 Jan 2024 12:38:21 +0000 Subject: [PATCH 436/765] Applied printer-linter format --- .../flashforge_adventurer3.def.json | 28 ++++---- .../flashforge_adventurer3c.def.json | 55 +++++++++------- .../flashforge_adventurer4.def.json | 56 +++++++++------- .../flashforge_adventurer4lite.def.json | 26 ++++---- .../flashforge_adventurer_base.def.json | 66 +++++++++---------- .../flashforge_adventurer_extruder_0.def.json | 30 ++++----- ...ashforge_adventurer3_abs_0.3_fine.inst.cfg | 33 +++++----- ...shforge_adventurer3_abs_0.3_vfine.inst.cfg | 33 +++++----- ...shforge_adventurer3_abs_0.4_draft.inst.cfg | 33 +++++----- ...ashforge_adventurer3_abs_0.4_fast.inst.cfg | 33 +++++----- ...ashforge_adventurer3_abs_0.4_fine.inst.cfg | 33 +++++----- ...hforge_adventurer3_abs_0.4_normal.inst.cfg | 33 +++++----- ...shforge_adventurer3_abs_0.4_vfast.inst.cfg | 33 +++++----- ...shforge_adventurer3_abs_0.4_vfine.inst.cfg | 33 +++++----- ...shforge_adventurer3_abs_0.6_draft.inst.cfg | 33 +++++----- ...ashforge_adventurer3_abs_0.6_fast.inst.cfg | 33 +++++----- ...shforge_adventurer3_abs_0.6_vfast.inst.cfg | 33 +++++----- ...ashforge_adventurer4_abs_0.3_fine.inst.cfg | 37 ++++++----- ...shforge_adventurer4_abs_0.3_vfine.inst.cfg | 37 ++++++----- ...shforge_adventurer4_abs_0.4_draft.inst.cfg | 37 ++++++----- ...ashforge_adventurer4_abs_0.4_fast.inst.cfg | 37 ++++++----- ...ashforge_adventurer4_abs_0.4_fine.inst.cfg | 37 ++++++----- ...hforge_adventurer4_abs_0.4_normal.inst.cfg | 37 ++++++----- ...shforge_adventurer4_abs_0.4_vfast.inst.cfg | 37 ++++++----- ...shforge_adventurer4_abs_0.4_vfine.inst.cfg | 37 ++++++----- ...shforge_adventurer4_abs_0.6_draft.inst.cfg | 37 ++++++----- ...ashforge_adventurer4_abs_0.6_fast.inst.cfg | 37 ++++++----- ...shforge_adventurer4_abs_0.6_vfast.inst.cfg | 37 ++++++----- ...ashforge_adventurer4_asa_0.4_fast.inst.cfg | 37 ++++++----- ...ashforge_adventurer4_asa_0.4_fine.inst.cfg | 37 ++++++----- ...hforge_adventurer4_asa_0.4_normal.inst.cfg | 37 ++++++----- .../flashforge_adventurer3_draft.inst.cfg | 41 ++++++------ .../flashforge_adventurer3_fast.inst.cfg | 41 ++++++------ .../flashforge_adventurer3_fine.inst.cfg | 41 ++++++------ .../flashforge_adventurer3_normal.inst.cfg | 41 ++++++------ .../flashforge_adventurer3_vfast.inst.cfg | 41 ++++++------ .../flashforge_adventurer3_vfine.inst.cfg | 41 ++++++------ .../flashforge_adventurer4_draft.inst.cfg | 37 ++++++----- .../flashforge_adventurer4_fast.inst.cfg | 37 ++++++----- .../flashforge_adventurer4_fine.inst.cfg | 37 ++++++----- .../flashforge_adventurer4_normal.inst.cfg | 37 ++++++----- .../flashforge_adventurer4_vfast.inst.cfg | 37 ++++++----- .../flashforge_adventurer4_vfine.inst.cfg | 37 ++++++----- ...ashforge_adventurer3_pc_0.4_draft.inst.cfg | 33 +++++----- ...lashforge_adventurer3_pc_0.4_fast.inst.cfg | 33 +++++----- ...shforge_adventurer3_pc_0.4_normal.inst.cfg | 33 +++++----- ...ashforge_adventurer3_pc_0.4_vfast.inst.cfg | 33 +++++----- ...ashforge_adventurer3_pc_0.6_draft.inst.cfg | 33 +++++----- ...lashforge_adventurer3_pc_0.6_fast.inst.cfg | 33 +++++----- ...ashforge_adventurer3_pc_0.6_vfast.inst.cfg | 33 +++++----- ...ashforge_adventurer4_pc_0.4_draft.inst.cfg | 37 ++++++----- ...lashforge_adventurer4_pc_0.4_fast.inst.cfg | 37 ++++++----- ...shforge_adventurer4_pc_0.4_normal.inst.cfg | 37 ++++++----- ...ashforge_adventurer4_pc_0.4_vfast.inst.cfg | 37 ++++++----- ...ashforge_adventurer4_pc_0.6_draft.inst.cfg | 37 ++++++----- ...lashforge_adventurer4_pc_0.6_fast.inst.cfg | 37 ++++++----- ...ashforge_adventurer4_pc_0.6_vfast.inst.cfg | 37 ++++++----- ...shforge_adventurer3_petg_0.3_fine.inst.cfg | 33 +++++----- ...hforge_adventurer3_petg_0.3_vfine.inst.cfg | 33 +++++----- ...hforge_adventurer3_petg_0.4_draft.inst.cfg | 33 +++++----- ...shforge_adventurer3_petg_0.4_fast.inst.cfg | 33 +++++----- ...shforge_adventurer3_petg_0.4_fine.inst.cfg | 33 +++++----- ...forge_adventurer3_petg_0.4_normal.inst.cfg | 33 +++++----- ...hforge_adventurer3_petg_0.4_vfast.inst.cfg | 33 +++++----- ...hforge_adventurer3_petg_0.4_vfine.inst.cfg | 33 +++++----- ...hforge_adventurer3_petg_0.6_draft.inst.cfg | 33 +++++----- ...shforge_adventurer3_petg_0.6_fast.inst.cfg | 33 +++++----- ...hforge_adventurer3_petg_0.6_vfast.inst.cfg | 33 +++++----- ...shforge_adventurer4_petg_0.3_fine.inst.cfg | 37 ++++++----- ...hforge_adventurer4_petg_0.3_vfine.inst.cfg | 37 ++++++----- ...hforge_adventurer4_petg_0.4_draft.inst.cfg | 37 ++++++----- ...shforge_adventurer4_petg_0.4_fast.inst.cfg | 37 ++++++----- ...shforge_adventurer4_petg_0.4_fine.inst.cfg | 37 ++++++----- ...forge_adventurer4_petg_0.4_normal.inst.cfg | 37 ++++++----- ...hforge_adventurer4_petg_0.4_vfast.inst.cfg | 37 ++++++----- ...hforge_adventurer4_petg_0.4_vfine.inst.cfg | 37 ++++++----- ...hforge_adventurer4_petg_0.6_draft.inst.cfg | 37 ++++++----- ...shforge_adventurer4_petg_0.6_fast.inst.cfg | 37 ++++++----- ...hforge_adventurer4_petg_0.6_vfast.inst.cfg | 37 ++++++----- ...ashforge_adventurer3_pla_0.3_fine.inst.cfg | 33 +++++----- ...shforge_adventurer3_pla_0.3_vfine.inst.cfg | 33 +++++----- ...shforge_adventurer3_pla_0.4_draft.inst.cfg | 33 +++++----- ...ashforge_adventurer3_pla_0.4_fast.inst.cfg | 33 +++++----- ...ashforge_adventurer3_pla_0.4_fine.inst.cfg | 33 +++++----- ...hforge_adventurer3_pla_0.4_normal.inst.cfg | 33 +++++----- ...shforge_adventurer3_pla_0.4_vfast.inst.cfg | 33 +++++----- ...shforge_adventurer3_pla_0.4_vfine.inst.cfg | 33 +++++----- ...shforge_adventurer3_pla_0.6_draft.inst.cfg | 33 +++++----- ...ashforge_adventurer3_pla_0.6_fast.inst.cfg | 33 +++++----- ...shforge_adventurer3_pla_0.6_vfast.inst.cfg | 33 +++++----- ...ashforge_adventurer4_pla_0.3_fine.inst.cfg | 37 ++++++----- ...shforge_adventurer4_pla_0.3_vfine.inst.cfg | 37 ++++++----- ...shforge_adventurer4_pla_0.4_draft.inst.cfg | 37 ++++++----- ...ashforge_adventurer4_pla_0.4_fast.inst.cfg | 37 ++++++----- ...ashforge_adventurer4_pla_0.4_fine.inst.cfg | 37 ++++++----- ...hforge_adventurer4_pla_0.4_normal.inst.cfg | 37 ++++++----- ...shforge_adventurer4_pla_0.4_vfast.inst.cfg | 37 ++++++----- ...shforge_adventurer4_pla_0.4_vfine.inst.cfg | 37 ++++++----- ...shforge_adventurer4_pla_0.6_draft.inst.cfg | 37 ++++++----- ...ashforge_adventurer4_pla_0.6_fast.inst.cfg | 37 ++++++----- ...shforge_adventurer4_pla_0.6_vfast.inst.cfg | 37 ++++++----- .../flashforge_adventurer3_0.3.inst.cfg | 25 +++---- .../flashforge_adventurer3_0.4.inst.cfg | 25 +++---- .../flashforge_adventurer3_0.6.inst.cfg | 25 +++---- .../flashforge_adventurer3c_0.3.inst.cfg | 25 +++---- .../flashforge_adventurer3c_0.4.inst.cfg | 25 +++---- .../flashforge_adventurer3c_0.6.inst.cfg | 25 +++---- .../flashforge_adventurer4_0.3.inst.cfg | 25 +++---- .../flashforge_adventurer4_0.4.inst.cfg | 25 +++---- .../flashforge_adventurer4_0.6.inst.cfg | 25 +++---- .../flashforge_adventurer4lite_0.3.inst.cfg | 25 +++---- .../flashforge_adventurer4lite_0.4.inst.cfg | 25 +++---- .../flashforge_adventurer4lite_0.6.inst.cfg | 25 +++---- 113 files changed, 2032 insertions(+), 1908 deletions(-) diff --git a/resources/definitions/flashforge_adventurer3.def.json b/resources/definitions/flashforge_adventurer3.def.json index 57879584010..a05a7d5b8fb 100644 --- a/resources/definitions/flashforge_adventurer3.def.json +++ b/resources/definitions/flashforge_adventurer3.def.json @@ -1,15 +1,15 @@ -{ - "version": 2, - "name": "Adventurer 3", - "inherits": "flashforge_adventurer3c", - "metadata": - { - "author": "Jeremie-C", - "visible": true, - "supports_network_connection": true - }, - "overrides": - { - "machine_name": {"default_value": "Adventurer 3"} - } +{ + "version": 2, + "name": "Adventurer 3", + "inherits": "flashforge_adventurer3c", + "metadata": + { + "visible": true, + "author": "Jeremie-C", + "supports_network_connection": true + }, + "overrides": + { + "machine_name": { "default_value": "Adventurer 3" } + } } \ No newline at end of file diff --git a/resources/definitions/flashforge_adventurer3c.def.json b/resources/definitions/flashforge_adventurer3c.def.json index 9321c2ca400..f66e542591f 100644 --- a/resources/definitions/flashforge_adventurer3c.def.json +++ b/resources/definitions/flashforge_adventurer3c.def.json @@ -1,24 +1,33 @@ -{ - "version": 2, - "name": "Adventurer 3C", - "inherits": "flashforge_adventurer_base", - "metadata": { - "author": "Jeremie-C", - "visible": true, - "quality_definition": "flashforge_adventurer3" - }, - "overrides": - { - "default_material_bed_temperature": {"maximum_value_warning": "100"}, - "gantry_height": {"value": "150"}, - "machine_center_is_zero": {"default_value": true}, - "machine_depth": {"default_value": 150}, - "machine_end_gcode": {"default_value": ";end gcode\nM104 S0 T0\nM140 S0 T0\nG162 Z F1800\nG28 X Y\nM132 X Y A B\nM652\nG91\nM18"}, - "machine_head_with_fans_polygon": {"default_value": [[-20, 10], [-20, -10], [10, 10], [10, -10]]}, - "machine_height": {"default_value": 150}, - "machine_name": {"default_value": "Adventurer 3C"}, - "machine_start_gcode": {"default_value": ";Start Gcode\nG28\nM132 X Y Z A B\nG1 Z50.000 F420\nG161 X Y F3300\nM7 T0\nM6 T0\nM651 S255\n;End Start"}, - "machine_width": {"default_value": 150}, - "speed_print": {"maximum_value_warning": 100} - } +{ + "version": 2, + "name": "Adventurer 3C", + "inherits": "flashforge_adventurer_base", + "metadata": + { + "visible": true, + "author": "Jeremie-C", + "quality_definition": "flashforge_adventurer3" + }, + "overrides": + { + "default_material_bed_temperature": { "maximum_value_warning": "100" }, + "gantry_height": { "value": "150" }, + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 150 }, + "machine_end_gcode": { "default_value": ";end gcode\nM104 S0 T0\nM140 S0 T0\nG162 Z F1800\nG28 X Y\nM132 X Y A B\nM652\nG91\nM18" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-20, 10], + [-20, -10], + [10, 10], + [10, -10] + ] + }, + "machine_height": { "default_value": 150 }, + "machine_name": { "default_value": "Adventurer 3C" }, + "machine_start_gcode": { "default_value": ";Start Gcode\nG28\nM132 X Y Z A B\nG1 Z50.000 F420\nG161 X Y F3300\nM7 T0\nM6 T0\nM651 S255\n;End Start" }, + "machine_width": { "default_value": 150 }, + "speed_print": { "maximum_value_warning": 100 } + } } \ No newline at end of file diff --git a/resources/definitions/flashforge_adventurer4.def.json b/resources/definitions/flashforge_adventurer4.def.json index d3b29c4f4a1..2460051a9d2 100644 --- a/resources/definitions/flashforge_adventurer4.def.json +++ b/resources/definitions/flashforge_adventurer4.def.json @@ -1,25 +1,33 @@ -{ - "version": 2, - "name": "Adventurer 4", - "inherits": "flashforge_adventurer_base", - "metadata": - { - "author": "Jeremie-C", - "visible": true, - "quality_definition": "flashforge_adventurer4", - "supports_network_connection": true - }, - "overrides": - { - "default_material_bed_temperature": {"maximum_value_warning": "110"}, - "gantry_height": {"value": "250"}, - "machine_depth": {"default_value": 200}, - "machine_end_gcode": {"default_value": ";End Gcode\nM104 S0 T0\nM140 S0 T0\nG162 Z F1800\nG28 X Y\nM132 X Y A B\nM652\nG91\nM18"}, - "machine_head_with_fans_polygon": {"default_value": [[-20, 10], [-20, -10], [10, 10], [10, -10]]}, - "machine_height": {"default_value": 250}, - "machine_name": {"default_value": "Adventurer 4"}, - "machine_start_gcode": {"default_value": ";Start Gcode\nG28\nM132 X Y Z A B\nG1 Z50.000 F420\nG161 X Y F3300\nM7 T0\nM6 T0\nM651 S255\n;End Start"}, - "machine_use_extruder_offset_to_offset_coords": {"default_value": false}, - "machine_width": {"default_value": 220} - } +{ + "version": 2, + "name": "Adventurer 4", + "inherits": "flashforge_adventurer_base", + "metadata": + { + "visible": true, + "author": "Jeremie-C", + "quality_definition": "flashforge_adventurer4", + "supports_network_connection": true + }, + "overrides": + { + "default_material_bed_temperature": { "maximum_value_warning": "110" }, + "gantry_height": { "value": "250" }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": ";End Gcode\nM104 S0 T0\nM140 S0 T0\nG162 Z F1800\nG28 X Y\nM132 X Y A B\nM652\nG91\nM18" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-20, 10], + [-20, -10], + [10, 10], + [10, -10] + ] + }, + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "Adventurer 4" }, + "machine_start_gcode": { "default_value": ";Start Gcode\nG28\nM132 X Y Z A B\nG1 Z50.000 F420\nG161 X Y F3300\nM7 T0\nM6 T0\nM651 S255\n;End Start" }, + "machine_use_extruder_offset_to_offset_coords": { "default_value": false }, + "machine_width": { "default_value": 220 } + } } \ No newline at end of file diff --git a/resources/definitions/flashforge_adventurer4lite.def.json b/resources/definitions/flashforge_adventurer4lite.def.json index 05534793d81..f5b19756015 100644 --- a/resources/definitions/flashforge_adventurer4lite.def.json +++ b/resources/definitions/flashforge_adventurer4lite.def.json @@ -1,14 +1,14 @@ -{ - "version": 2, - "name": "Adventurer 4 Lite", - "inherits": "flashforge_adventurer4", - "metadata": - { - "author": "Jeremie-C", - "visible": true - }, - "overrides": - { - "machine_name": { "default_value": "Adventurer 4 Lite" } - } +{ + "version": 2, + "name": "Adventurer 4 Lite", + "inherits": "flashforge_adventurer4", + "metadata": + { + "visible": true, + "author": "Jeremie-C" + }, + "overrides": + { + "machine_name": { "default_value": "Adventurer 4 Lite" } + } } \ No newline at end of file diff --git a/resources/definitions/flashforge_adventurer_base.def.json b/resources/definitions/flashforge_adventurer_base.def.json index 7a31d6400f8..c077a4584c3 100644 --- a/resources/definitions/flashforge_adventurer_base.def.json +++ b/resources/definitions/flashforge_adventurer_base.def.json @@ -1,34 +1,34 @@ -{ - "version": 2, - "name": "Flashforge Adventurer Base", - "inherits": "fdmprinter", - "metadata": - { - "author": "Jeremie-C", - "manufacturer": "Flashforge", - "visible": false, - "file_formats": "application/gx;text/x-gcode", - "first_start_actions": ["MachineSettingsAction"], - "has_machine_quality": true, - "has_materials": true, - "has_variants": true, - "machine_extruder_trains": {"0": "flashforge_adventurer_extruder_0"}, - "preferred_material": "generic_pla", - "preferred_quality_type": "normal", - "preferred_variant_name": "0.4mm Nozzle", - "variants_name": "Nozzle Size" - }, - "overrides": - { - "adhesion_type": {"default_value": "skirt"}, - "default_material_print_temperature": {"maximum_value_warning": "265"}, - "layer_height": - { - "minimum_value_warning": "0.1", - "maximum_value_warning": "0.4" - }, - "machine_center_is_zero": {"default_value": true}, - "machine_gcode_flavor": {"default_value": "RepRap (Marlin/Sprinter)"}, - "machine_heated_bed": {"default_value": true} - } +{ + "version": 2, + "name": "Flashforge Adventurer Base", + "inherits": "fdmprinter", + "metadata": + { + "visible": false, + "author": "Jeremie-C", + "manufacturer": "Flashforge", + "file_formats": "application/gx;text/x-gcode", + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": { "0": "flashforge_adventurer_extruder_0" }, + "preferred_material": "generic_pla", + "preferred_quality_type": "normal", + "preferred_variant_name": "0.4mm Nozzle", + "variants_name": "Nozzle Size" + }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "default_material_print_temperature": { "maximum_value_warning": "265" }, + "layer_height": + { + "maximum_value_warning": "0.4", + "minimum_value_warning": "0.1" + }, + "machine_center_is_zero": { "default_value": true }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true } + } } \ No newline at end of file diff --git a/resources/extruders/flashforge_adventurer_extruder_0.def.json b/resources/extruders/flashforge_adventurer_extruder_0.def.json index d8b902a97b9..232cf3f9016 100644 --- a/resources/extruders/flashforge_adventurer_extruder_0.def.json +++ b/resources/extruders/flashforge_adventurer_extruder_0.def.json @@ -1,16 +1,16 @@ -{ - "version": 2, - "name": "Extruder", - "inherits": "fdmextruder", - "metadata": - { - "machine": "flashforge_adventurer_base", - "position": "0" - }, - "overrides": - { - "extruder_nr": { "default_value": 0 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 } - } +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "flashforge_adventurer_base", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } } \ No newline at end of file diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg index 63488b25cf3..a5a800486f3 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Fine -version = 4 - -[metadata] -material = generic_abs -quality_type = fine -setting_version = 22 -type = quality -variant = 0.3mm Nozzle -weight = 1 - -[values] -speed_print = 50 -speed_travel = 100 +[general] +definition = flashforge_adventurer3 +name = Fine +version = 4 + +[metadata] +material = generic_abs +quality_type = fine +setting_version = 22 +type = quality +variant = 0.3mm Nozzle +weight = 1 + +[values] +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg index 466e76686a1..316f5872a70 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Very Fine -version = 4 - -[metadata] -material = generic_abs -quality_type = veryfine -setting_version = 22 -type = quality -variant = 0.3mm Nozzle -weight = 2 - -[values] -speed_print = 45 -speed_travel = 100 +[general] +definition = flashforge_adventurer3 +name = Very Fine +version = 4 + +[metadata] +material = generic_abs +quality_type = veryfine +setting_version = 22 +type = quality +variant = 0.3mm Nozzle +weight = 2 + +[values] +speed_print = 45 +speed_travel = 100 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg index 678ab9d3711..b322c2784aa 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Draft -version = 4 - -[metadata] -material = generic_abs -quality_type = draft -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = -3 - -[values] -speed_print = 70 -speed_travel = 90 +[general] +definition = flashforge_adventurer3 +name = Draft +version = 4 + +[metadata] +material = generic_abs +quality_type = draft +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = -3 + +[values] +speed_print = 70 +speed_travel = 90 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg index 0b2e235d921..d329ebb4d95 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Fast -version = 4 - -[metadata] -material = generic_abs -quality_type = fast -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = -1 - -[values] -speed_print = 60 -speed_travel = 80 +[general] +definition = flashforge_adventurer3 +name = Fast +version = 4 + +[metadata] +material = generic_abs +quality_type = fast +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = -1 + +[values] +speed_print = 60 +speed_travel = 80 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg index b71dc27d96f..0aacffffcc8 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Fine -version = 4 - -[metadata] -material = generic_abs -quality_type = fine -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = 1 - -[values] -speed_print = 40 -speed_travel = 70 +[general] +definition = flashforge_adventurer3 +name = Fine +version = 4 + +[metadata] +material = generic_abs +quality_type = fine +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 1 + +[values] +speed_print = 40 +speed_travel = 70 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg index 9641fb7befd..0a62fdc6646 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Standard -version = 4 - -[metadata] -material = generic_abs -quality_type = normal -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = 0 - -[values] -speed_print = 60 -speed_travel = 80 +[general] +definition = flashforge_adventurer3 +name = Standard +version = 4 + +[metadata] +material = generic_abs +quality_type = normal +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 60 +speed_travel = 80 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg index 5c1c0138e8a..9ea811006d5 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Very Fast -version = 4 - -[metadata] -material = generic_abs -quality_type = veryfast -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = -2 - -[values] -speed_print = 60 -speed_travel = 90 +[general] +definition = flashforge_adventurer3 +name = Very Fast +version = 4 + +[metadata] +material = generic_abs +quality_type = veryfast +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = -2 + +[values] +speed_print = 60 +speed_travel = 90 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg index 465ee99c889..9d0d042d37f 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Very Fine -version = 4 - -[metadata] -material = generic_abs -quality_type = veryfine -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = 2 - -[values] -speed_print = 35 -speed_travel = 70 +[general] +definition = flashforge_adventurer3 +name = Very Fine +version = 4 + +[metadata] +material = generic_abs +quality_type = veryfine +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 2 + +[values] +speed_print = 35 +speed_travel = 70 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg index 7fae92a4878..469930cd21b 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Draft -version = 4 - -[metadata] -material = generic_abs -quality_type = draft -setting_version = 22 -type = quality -variant = 0.6mm Nozzle -weight = -3 - -[values] -speed_print = 55 -speed_travel = 100 +[general] +definition = flashforge_adventurer3 +name = Draft +version = 4 + +[metadata] +material = generic_abs +quality_type = draft +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = -3 + +[values] +speed_print = 55 +speed_travel = 100 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg index 7f99640845c..bd25742c2a2 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Fast -version = 4 - -[metadata] -material = generic_abs -quality_type = fast -setting_version = 22 -type = quality -variant = 0.6mm Nozzle -weight = -1 - -[values] -speed_print = 50 -speed_travel = 100 +[general] +definition = flashforge_adventurer3 +name = Fast +version = 4 + +[metadata] +material = generic_abs +quality_type = fast +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = -1 + +[values] +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg index c0212259a13..691770bca3d 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Very Fast -version = 4 - -[metadata] -material = generic_abs -quality_type = veryfast -setting_version = 22 -type = quality -variant = 0.6mm Nozzle -weight = -2 - -[values] -speed_print = 50 -speed_travel = 100 +[general] +definition = flashforge_adventurer3 +name = Very Fast +version = 4 + +[metadata] +material = generic_abs +quality_type = veryfast +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg index ac6dfe5a332..9ad2fc4d398 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Fine -version = 4 - -[metadata] -material = generic_abs -quality_type = fine -setting_version = 22 -type = quality -variant = 0.3mm Nozzle -weight = 1 - -[values] -speed_print = 50 -speed_travel = 100 -retraction_amount = 5 -retraction_speed = 30 +[general] +definition = flashforge_adventurer4 +name = Fine +version = 4 + +[metadata] +material = generic_abs +quality_type = fine +setting_version = 22 +type = quality +variant = 0.3mm Nozzle +weight = 1 + +[values] +retraction_amount = 5 +retraction_speed = 30 +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg index 4c4a0873d31..69c626d03f4 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Very Fine -version = 4 - -[metadata] -material = generic_abs -quality_type = veryfine -setting_version = 22 -type = quality -variant = 0.3mm Nozzle -weight = 2 - -[values] -speed_print = 45 -speed_travel = 100 -retraction_amount = 5 -retraction_speed = 30 +[general] +definition = flashforge_adventurer4 +name = Very Fine +version = 4 + +[metadata] +material = generic_abs +quality_type = veryfine +setting_version = 22 +type = quality +variant = 0.3mm Nozzle +weight = 2 + +[values] +retraction_amount = 5 +retraction_speed = 30 +speed_print = 45 +speed_travel = 100 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg index 62ad84398cc..8d7a92f553f 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Draft -version = 4 - -[metadata] -material = generic_abs -quality_type = draft -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = -3 - -[values] -speed_print = 70 -speed_travel = 90 -retraction_amount = 5 -retraction_speed = 30 +[general] +definition = flashforge_adventurer4 +name = Draft +version = 4 + +[metadata] +material = generic_abs +quality_type = draft +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = -3 + +[values] +retraction_amount = 5 +retraction_speed = 30 +speed_print = 70 +speed_travel = 90 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg index b15ad40f221..115387a8153 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Fast -version = 4 - -[metadata] -material = generic_abs -quality_type = fast -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = -1 - -[values] -speed_print = 60 -speed_travel = 80 -retraction_amount = 5 -retraction_speed = 30 +[general] +definition = flashforge_adventurer4 +name = Fast +version = 4 + +[metadata] +material = generic_abs +quality_type = fast +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = -1 + +[values] +retraction_amount = 5 +retraction_speed = 30 +speed_print = 60 +speed_travel = 80 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg index 1d325765ff3..46f3f2673b5 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer3 -name = Fine -version = 4 - -[metadata] -material = generic_abs -quality_type = fine -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = 1 - -[values] -speed_print = 40 -speed_travel = 70 -retraction_amount = 5 -retraction_speed = 30 +[general] +definition = flashforge_adventurer3 +name = Fine +version = 4 + +[metadata] +material = generic_abs +quality_type = fine +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 1 + +[values] +retraction_amount = 5 +retraction_speed = 30 +speed_print = 40 +speed_travel = 70 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg index c4e43d5eac8..c0bc64550d7 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Standard -version = 4 - -[metadata] -material = generic_abs -quality_type = normal -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = 0 - -[values] -speed_print = 60 -speed_travel = 80 -retraction_amount = 5 -retraction_speed = 30 +[general] +definition = flashforge_adventurer4 +name = Standard +version = 4 + +[metadata] +material = generic_abs +quality_type = normal +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +retraction_amount = 5 +retraction_speed = 30 +speed_print = 60 +speed_travel = 80 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg index f3f8ada9d91..14ce91d9f3c 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Very Fast -version = 4 - -[metadata] -material = generic_abs -quality_type = veryfast -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = -2 - -[values] -speed_print = 60 -speed_travel = 90 -retraction_amount = 5 -retraction_speed = 30 +[general] +definition = flashforge_adventurer4 +name = Very Fast +version = 4 + +[metadata] +material = generic_abs +quality_type = veryfast +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = -2 + +[values] +retraction_amount = 5 +retraction_speed = 30 +speed_print = 60 +speed_travel = 90 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg index 5eefe214071..cdb13c71d15 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Very Fine -version = 4 - -[metadata] -material = generic_abs -quality_type = veryfine -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = 2 - -[values] -speed_print = 35 -speed_travel = 70 -retraction_amount = 5 -retraction_speed = 30 +[general] +definition = flashforge_adventurer4 +name = Very Fine +version = 4 + +[metadata] +material = generic_abs +quality_type = veryfine +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 2 + +[values] +retraction_amount = 5 +retraction_speed = 30 +speed_print = 35 +speed_travel = 70 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg index bf7f894937f..77e222ddcdd 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Draft -version = 4 - -[metadata] -material = generic_abs -quality_type = draft -setting_version = 22 -type = quality -variant = 0.6mm Nozzle -weight = -3 - -[values] -speed_print = 55 -speed_travel = 100 -retraction_amount = 6 -retraction_speed = 30 +[general] +definition = flashforge_adventurer4 +name = Draft +version = 4 + +[metadata] +material = generic_abs +quality_type = draft +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = -3 + +[values] +retraction_amount = 6 +retraction_speed = 30 +speed_print = 55 +speed_travel = 100 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg index e97b00157b7..cb0dd441c29 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Fast -version = 4 - -[metadata] -material = generic_abs -quality_type = fast -setting_version = 22 -type = quality -variant = 0.6mm Nozzle -weight = -1 - -[values] -speed_print = 50 -speed_travel = 100 -retraction_amount = 6 -retraction_speed = 30 +[general] +definition = flashforge_adventurer4 +name = Fast +version = 4 + +[metadata] +material = generic_abs +quality_type = fast +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = -1 + +[values] +retraction_amount = 6 +retraction_speed = 30 +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg index 4ccdd810533..10055e2fa0f 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer3 -name = Very Fast -version = 4 - -[metadata] -material = generic_abs -quality_type = veryfast -setting_version = 22 -type = quality -variant = 0.6mm Nozzle -weight = -2 - -[values] -speed_print = 50 -speed_travel = 100 -retraction_amount = 6 -retraction_speed = 30 +[general] +definition = flashforge_adventurer3 +name = Very Fast +version = 4 + +[metadata] +material = generic_abs +quality_type = veryfast +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +retraction_amount = 6 +retraction_speed = 30 +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg index 5677c663f1b..b85163b595d 100644 --- a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Fast -version = 4 - -[metadata] -material = generic_asa -quality_type = fast -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = -1 - -[values] -speed_print = 45 -speed_travel = 100 -retraction_amount = 4.5 -retraction_speed = 30 +[general] +definition = flashforge_adventurer4 +name = Fast +version = 4 + +[metadata] +material = generic_asa +quality_type = fast +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = -1 + +[values] +retraction_amount = 4.5 +retraction_speed = 30 +speed_print = 45 +speed_travel = 100 + diff --git a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg index f9f6c6287d4..a584b977248 100644 --- a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Fine -version = 4 - -[metadata] -material = generic_asa -quality_type = fine -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = -1 - -[values] -speed_print = 35 -speed_travel = 100 -retraction_amount = 4.5 -retraction_speed = 30 +[general] +definition = flashforge_adventurer4 +name = Fine +version = 4 + +[metadata] +material = generic_asa +quality_type = fine +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = -1 + +[values] +retraction_amount = 4.5 +retraction_speed = 30 +speed_print = 35 +speed_travel = 100 + diff --git a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg index ba9bb86f37f..e976f9f7b44 100644 --- a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Standard -version = 4 - -[metadata] -material = generic_asa -quality_type = normal -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = 0 - -[values] -speed_print = 40 -speed_travel = 100 -retraction_amount = 4.5 -retraction_speed = 30 +[general] +definition = flashforge_adventurer4 +name = Standard +version = 4 + +[metadata] +material = generic_asa +quality_type = normal +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +retraction_amount = 4.5 +retraction_speed = 30 +speed_print = 40 +speed_travel = 100 + diff --git a/resources/quality/flashforge/flashforge_adventurer3_draft.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_draft.inst.cfg index 61123554fb0..f1dd467a2bd 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_draft.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_draft.inst.cfg @@ -1,20 +1,21 @@ -[general] -definition = flashforge_adventurer3 -name = Draft -version = 4 - -[metadata] -global_quality = True -quality_type = draft -setting_version = 22 -type = quality -weight = -3 - -[values] -layer_height = 0.4 -layer_height_0 = 0.4 -retraction_amount = 5 -retraction_speed = 25 -speed_infill = =speed_print -speed_layer_0 = 10 -speed_support = =math.ceil(speed_print * 0.6) +[general] +definition = flashforge_adventurer3 +name = Draft +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -3 + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +retraction_amount = 5 +retraction_speed = 25 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) + diff --git a/resources/quality/flashforge/flashforge_adventurer3_fast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_fast.inst.cfg index f9d1cda998d..300481cd3db 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_fast.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_fast.inst.cfg @@ -1,20 +1,21 @@ -[general] -definition = flashforge_adventurer3 -name = Fast -version = 4 - -[metadata] -global_quality = True -quality_type = fast -setting_version = 22 -type = quality -weight = -1 - -[values] -layer_height = 0.25 -layer_height_0 = 0.3 -retraction_amount = 5 -retraction_speed = 25 -speed_infill = =speed_print -speed_layer_0 = 10 -speed_support = =math.ceil(speed_print * 0.6) +[general] +definition = flashforge_adventurer3 +name = Fast +version = 4 + +[metadata] +global_quality = True +quality_type = fast +setting_version = 22 +type = quality +weight = -1 + +[values] +layer_height = 0.25 +layer_height_0 = 0.3 +retraction_amount = 5 +retraction_speed = 25 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) + diff --git a/resources/quality/flashforge/flashforge_adventurer3_fine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_fine.inst.cfg index 2d0d2d5b81d..553091b10a8 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_fine.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_fine.inst.cfg @@ -1,20 +1,21 @@ -[general] -definition = flashforge_adventurer3 -name = Fine -version = 4 - -[metadata] -global_quality = True -quality_type = fine -setting_version = 22 -type = quality -weight = 1 - -[values] -layer_height = 0.15 -layer_height_0 = 0.23 -retraction_amount = 5 -retraction_speed = 25 -speed_infill = =speed_print -speed_layer_0 = 10 -speed_support = =math.ceil(speed_print * 0.6) +[general] +definition = flashforge_adventurer3 +name = Fine +version = 4 + +[metadata] +global_quality = True +quality_type = fine +setting_version = 22 +type = quality +weight = 1 + +[values] +layer_height = 0.15 +layer_height_0 = 0.23 +retraction_amount = 5 +retraction_speed = 25 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) + diff --git a/resources/quality/flashforge/flashforge_adventurer3_normal.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_normal.inst.cfg index b70f28c86f4..438b2cc9faf 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_normal.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_normal.inst.cfg @@ -1,20 +1,21 @@ -[general] -definition = flashforge_adventurer3 -name = Standard -version = 4 - -[metadata] -global_quality = True -quality_type = normal -setting_version = 22 -type = quality -weight = 0 - -[values] -layer_height = 0.2 -layer_height_0 = 0.3 -retraction_amount = 5 -retraction_speed = 25 -speed_infill = =speed_print -speed_layer_0 = 10 -speed_support = =math.ceil(speed_print * 0.6) +[general] +definition = flashforge_adventurer3 +name = Standard +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 + +[values] +layer_height = 0.2 +layer_height_0 = 0.3 +retraction_amount = 5 +retraction_speed = 25 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) + diff --git a/resources/quality/flashforge/flashforge_adventurer3_vfast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_vfast.inst.cfg index 3f6379a6f57..fba4eb1091d 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_vfast.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_vfast.inst.cfg @@ -1,20 +1,21 @@ -[general] -definition = flashforge_adventurer3 -name = Very Fast -version = 4 - -[metadata] -global_quality = True -quality_type = veryfast -setting_version = 22 -type = quality -weight = -2 - -[values] -layer_height = 0.3 -layer_height_0 = 0.3 -retraction_amount = 5 -retraction_speed = 25 -speed_infill = =speed_print -speed_layer_0 = 10 -speed_support = =math.ceil(speed_print * 0.6) +[general] +definition = flashforge_adventurer3 +name = Very Fast +version = 4 + +[metadata] +global_quality = True +quality_type = veryfast +setting_version = 22 +type = quality +weight = -2 + +[values] +layer_height = 0.3 +layer_height_0 = 0.3 +retraction_amount = 5 +retraction_speed = 25 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) + diff --git a/resources/quality/flashforge/flashforge_adventurer3_vfine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_vfine.inst.cfg index b2015d40ea1..6ea52128bee 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_vfine.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_vfine.inst.cfg @@ -1,20 +1,21 @@ -[general] -definition = flashforge_adventurer3 -name = Very Fine -version = 4 - -[metadata] -global_quality = True -quality_type = veryfine -setting_version = 22 -type = quality -weight = 2 - -[values] -layer_height = 0.1 -layer_height_0 = 0.18 -retraction_amount = 5 -retraction_speed = 25 -speed_infill = =speed_print -speed_layer_0 = 10 -speed_support = =math.ceil(speed_print * 0.6) +[general] +definition = flashforge_adventurer3 +name = Very Fine +version = 4 + +[metadata] +global_quality = True +quality_type = veryfine +setting_version = 22 +type = quality +weight = 2 + +[values] +layer_height = 0.1 +layer_height_0 = 0.18 +retraction_amount = 5 +retraction_speed = 25 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) + diff --git a/resources/quality/flashforge/flashforge_adventurer4_draft.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_draft.inst.cfg index b2f6dc976ca..7ee52ca8a3a 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_draft.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_draft.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Draft -version = 4 - -[metadata] -global_quality = True -quality_type = draft -setting_version = 22 -type = quality -weight = -3 - -[values] -layer_height = 0.4 -layer_height_0 = 0.4 -speed_infill = =speed_print -speed_layer_0 = 10 -speed_support = =math.ceil(speed_print * 0.6) +[general] +definition = flashforge_adventurer4 +name = Draft +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -3 + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) + diff --git a/resources/quality/flashforge/flashforge_adventurer4_fast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_fast.inst.cfg index a0a38c36557..8be5e02e722 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_fast.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_fast.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Fast -version = 4 - -[metadata] -global_quality = True -quality_type = fast -setting_version = 22 -type = quality -weight = -1 - -[values] -layer_height = 0.25 -layer_height_0 = 0.3 -speed_infill = =speed_print -speed_layer_0 = 10 -speed_support = =math.ceil(speed_print * 0.6) +[general] +definition = flashforge_adventurer4 +name = Fast +version = 4 + +[metadata] +global_quality = True +quality_type = fast +setting_version = 22 +type = quality +weight = -1 + +[values] +layer_height = 0.25 +layer_height_0 = 0.3 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) + diff --git a/resources/quality/flashforge/flashforge_adventurer4_fine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_fine.inst.cfg index 8a5615287bd..272e5bc69dc 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_fine.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_fine.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Fine -version = 4 - -[metadata] -global_quality = True -quality_type = fine -setting_version = 22 -type = quality -weight = 1 - -[values] -layer_height = 0.15 -layer_height_0 = 0.23 -speed_infill = =speed_print -speed_layer_0 = 10 -speed_support = =math.ceil(speed_print * 0.6) +[general] +definition = flashforge_adventurer4 +name = Fine +version = 4 + +[metadata] +global_quality = True +quality_type = fine +setting_version = 22 +type = quality +weight = 1 + +[values] +layer_height = 0.15 +layer_height_0 = 0.23 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) + diff --git a/resources/quality/flashforge/flashforge_adventurer4_normal.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_normal.inst.cfg index 64d0df68fcd..4eb11924fe2 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_normal.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_normal.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Standard -version = 4 - -[metadata] -global_quality = True -quality_type = normal -setting_version = 22 -type = quality -weight = 0 - -[values] -layer_height = 0.2 -layer_height_0 = 0.3 -speed_infill = =speed_print -speed_layer_0 = 10 -speed_support = =math.ceil(speed_print * 0.6) +[general] +definition = flashforge_adventurer4 +name = Standard +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 + +[values] +layer_height = 0.2 +layer_height_0 = 0.3 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) + diff --git a/resources/quality/flashforge/flashforge_adventurer4_vfast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_vfast.inst.cfg index 0b78e0e23e4..a2e3718bd26 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_vfast.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_vfast.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Very Fast -version = 4 - -[metadata] -global_quality = True -quality_type = veryfast -setting_version = 22 -type = quality -weight = -2 - -[values] -layer_height = 0.3 -layer_height_0 = 0.3 -speed_infill = =speed_print -speed_layer_0 = 10 -speed_support = =math.ceil(speed_print * 0.6) +[general] +definition = flashforge_adventurer4 +name = Very Fast +version = 4 + +[metadata] +global_quality = True +quality_type = veryfast +setting_version = 22 +type = quality +weight = -2 + +[values] +layer_height = 0.3 +layer_height_0 = 0.3 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) + diff --git a/resources/quality/flashforge/flashforge_adventurer4_vfine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_vfine.inst.cfg index d3012d5975a..f7eda2f1949 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_vfine.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_vfine.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Very Fine -version = 4 - -[metadata] -global_quality = True -quality_type = veryfine -setting_version = 22 -type = quality -weight = 2 - -[values] -layer_height = 0.1 -layer_height_0 = 0.18 -speed_infill = =speed_print -speed_layer_0 = 10 -speed_support = =math.ceil(speed_print * 0.6) +[general] +definition = flashforge_adventurer4 +name = Very Fine +version = 4 + +[metadata] +global_quality = True +quality_type = veryfine +setting_version = 22 +type = quality +weight = 2 + +[values] +layer_height = 0.1 +layer_height_0 = 0.18 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) + diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg index 92467d9d577..03b8d5f74e0 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Draft -version = 4 - -[metadata] -material = generic_pc -quality_type = draft -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = -3 - -[values] -speed_print = 50 -speed_travel = 90 +[general] +definition = flashforge_adventurer3 +name = Draft +version = 4 + +[metadata] +material = generic_pc +quality_type = draft +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = -3 + +[values] +speed_print = 50 +speed_travel = 90 + diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg index 85811430f48..0c4322dfeef 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Fast -version = 4 - -[metadata] -material = generic_pc -quality_type = fast -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = -1 - -[values] -speed_print = 40 -speed_travel = 80 +[general] +definition = flashforge_adventurer3 +name = Fast +version = 4 + +[metadata] +material = generic_pc +quality_type = fast +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = -1 + +[values] +speed_print = 40 +speed_travel = 80 + diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg index 53431e511b0..1047360ee70 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Standard -version = 4 - -[metadata] -material = generic_pc -quality_type = normal -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = 0 - -[values] -speed_print = 40 -speed_travel = 80 +[general] +definition = flashforge_adventurer3 +name = Standard +version = 4 + +[metadata] +material = generic_pc +quality_type = normal +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 40 +speed_travel = 80 + diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg index 6d35450f90d..cddd593db6c 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Very Fast -version = 4 - -[metadata] -material = generic_pc -quality_type = veryfast -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = -2 - -[values] -speed_print = 50 -speed_travel = 90 +[general] +definition = flashforge_adventurer3 +name = Very Fast +version = 4 + +[metadata] +material = generic_pc +quality_type = veryfast +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = -2 + +[values] +speed_print = 50 +speed_travel = 90 + diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg index bf0c0cce2d6..1742dbd9c3e 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Draft -version = 4 - -[metadata] -material = generic_pc -quality_type = draft -setting_version = 22 -type = quality -variant = 0.6mm Nozzle -weight = -3 - -[values] -speed_print = 60 -speed_travel = 100 +[general] +definition = flashforge_adventurer3 +name = Draft +version = 4 + +[metadata] +material = generic_pc +quality_type = draft +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = -3 + +[values] +speed_print = 60 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg index c7599784fab..7e67c9f1782 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Fast -version = 4 - -[metadata] -material = generic_pc -quality_type = fast -setting_version = 22 -type = quality -variant = 0.6mm Nozzle -weight = -2 - -[values] -speed_print = 50 -speed_travel = 100 +[general] +definition = flashforge_adventurer3 +name = Fast +version = 4 + +[metadata] +material = generic_pc +quality_type = fast +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg index 7efde414c29..c3aecf6625c 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Very Fast -version = 4 - -[metadata] -material = generic_pc -quality_type = veryfast -setting_version = 22 -type = quality -variant = 0.6mm Nozzle -weight = -2 - -[values] -speed_print = 50 -speed_travel = 100 +[general] +definition = flashforge_adventurer3 +name = Very Fast +version = 4 + +[metadata] +material = generic_pc +quality_type = veryfast +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg index a593db1ef29..c60aab13839 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Draft -version = 4 - -[metadata] -material = generic_pc -quality_type = draft -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = -3 - -[values] -speed_print = 50 -speed_travel = 90 -retraction_amount = 6 -retraction_speed = 30 +[general] +definition = flashforge_adventurer4 +name = Draft +version = 4 + +[metadata] +material = generic_pc +quality_type = draft +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = -3 + +[values] +retraction_amount = 6 +retraction_speed = 30 +speed_print = 50 +speed_travel = 90 + diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg index 7d7e9377262..4a532fe98b5 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Fast -version = 4 - -[metadata] -material = generic_pc -quality_type = fast -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = -1 - -[values] -speed_print = 40 -speed_travel = 80 -retraction_amount = 6 -retraction_speed = 30 +[general] +definition = flashforge_adventurer4 +name = Fast +version = 4 + +[metadata] +material = generic_pc +quality_type = fast +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = -1 + +[values] +retraction_amount = 6 +retraction_speed = 30 +speed_print = 40 +speed_travel = 80 + diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg index 0806db424ed..b44810bae86 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Standard -version = 4 - -[metadata] -material = generic_pc -quality_type = normal -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = 0 - -[values] -speed_print = 40 -speed_travel = 80 -retraction_amount = 6 -retraction_speed = 30 +[general] +definition = flashforge_adventurer4 +name = Standard +version = 4 + +[metadata] +material = generic_pc +quality_type = normal +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +retraction_amount = 6 +retraction_speed = 30 +speed_print = 40 +speed_travel = 80 + diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg index 3556c8bf062..042d3035224 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Very Fast -version = 4 - -[metadata] -material = generic_pc -quality_type = veryfast -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = -2 - -[values] -speed_print = 50 -speed_travel = 90 -retraction_amount = 6 -retraction_speed = 30 +[general] +definition = flashforge_adventurer4 +name = Very Fast +version = 4 + +[metadata] +material = generic_pc +quality_type = veryfast +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = -2 + +[values] +retraction_amount = 6 +retraction_speed = 30 +speed_print = 50 +speed_travel = 90 + diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg index 4cd2861cbe9..cb40e63d8cb 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Draft -version = 4 - -[metadata] -material = generic_pc -quality_type = draft -setting_version = 22 -type = quality -variant = 0.6mm Nozzle -weight = -3 - -[values] -speed_print = 60 -speed_travel = 100 -retraction_amount = 6 -retraction_speed = 30 +[general] +definition = flashforge_adventurer4 +name = Draft +version = 4 + +[metadata] +material = generic_pc +quality_type = draft +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = -3 + +[values] +retraction_amount = 6 +retraction_speed = 30 +speed_print = 60 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg index 14e162a1fc4..e66be5bc7ee 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Fast -version = 4 - -[metadata] -material = generic_pc -quality_type = fast -setting_version = 22 -type = quality -variant = 0.6mm Nozzle -weight = -2 - -[values] -speed_print = 50 -speed_travel = 100 -retraction_amount = 6 -retraction_speed = 30 +[general] +definition = flashforge_adventurer4 +name = Fast +version = 4 + +[metadata] +material = generic_pc +quality_type = fast +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +retraction_amount = 6 +retraction_speed = 30 +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg index f5a918d859f..2d2d8bdbdc9 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Very Fast -version = 4 - -[metadata] -material = generic_pc -quality_type = veryfast -setting_version = 22 -type = quality -variant = 0.6mm Nozzle -weight = -2 - -[values] -speed_print = 50 -speed_travel = 100 -retraction_amount = 6 -retraction_speed = 30 +[general] +definition = flashforge_adventurer4 +name = Very Fast +version = 4 + +[metadata] +material = generic_pc +quality_type = veryfast +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +retraction_amount = 6 +retraction_speed = 30 +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg index e640d316fe7..3405adaae5d 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Fine -version = 4 - -[metadata] -material = generic_petg -quality_type = fine -setting_version = 22 -type = quality -variant = 0.3mm Nozzle -weight = 1 - -[values] -speed_print = 50 -speed_travel = 80 +[general] +definition = flashforge_adventurer3 +name = Fine +version = 4 + +[metadata] +material = generic_petg +quality_type = fine +setting_version = 22 +type = quality +variant = 0.3mm Nozzle +weight = 1 + +[values] +speed_print = 50 +speed_travel = 80 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg index 7ef3d79fe8a..20e2ba9ce5d 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Very Fine -version = 4 - -[metadata] -material = generic_petg -quality_type = veryfine -setting_version = 22 -type = quality -variant = 0.3mm Nozzle -weight = 2 - -[values] -speed_print = 50 -speed_travel = 80 +[general] +definition = flashforge_adventurer3 +name = Very Fine +version = 4 + +[metadata] +material = generic_petg +quality_type = veryfine +setting_version = 22 +type = quality +variant = 0.3mm Nozzle +weight = 2 + +[values] +speed_print = 50 +speed_travel = 80 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg index c51711ca2df..45aebad2451 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Draft -version = 4 - -[metadata] -material = generic_petg -quality_type = draft -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = -3 - -[values] -speed_print = 65 -speed_travel = 100 +[general] +definition = flashforge_adventurer3 +name = Draft +version = 4 + +[metadata] +material = generic_petg +quality_type = draft +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = -3 + +[values] +speed_print = 65 +speed_travel = 100 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg index abc16dfcb70..85ef922ea79 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Fast -version = 4 - -[metadata] -material = generic_petg -quality_type = fast -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = -1 - -[values] -speed_print = 55 -speed_travel = 85 +[general] +definition = flashforge_adventurer3 +name = Fast +version = 4 + +[metadata] +material = generic_petg +quality_type = fast +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = -1 + +[values] +speed_print = 55 +speed_travel = 85 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg index 6c39de897c6..ec8d0e4d046 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Fine -version = 4 - -[metadata] -material = generic_petg -quality_type = fine -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = 1 - -[values] -speed_print = 40 -speed_travel = 80 +[general] +definition = flashforge_adventurer3 +name = Fine +version = 4 + +[metadata] +material = generic_petg +quality_type = fine +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 1 + +[values] +speed_print = 40 +speed_travel = 80 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg index be51926c7a5..074d4864ce5 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Standard -version = 4 - -[metadata] -material = generic_petg -quality_type = normal -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = 0 - -[values] -speed_print = 50 -speed_travel = 80 +[general] +definition = flashforge_adventurer3 +name = Standard +version = 4 + +[metadata] +material = generic_petg +quality_type = normal +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 50 +speed_travel = 80 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg index 1d8286d2047..66d21845629 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Very Fast -version = 4 - -[metadata] -material = generic_petg -quality_type = veryfast -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = -2 - -[values] -speed_print = 60 -speed_travel = 90 +[general] +definition = flashforge_adventurer3 +name = Very Fast +version = 4 + +[metadata] +material = generic_petg +quality_type = veryfast +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = -2 + +[values] +speed_print = 60 +speed_travel = 90 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg index d06baed13c8..4f7d0da1c2d 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Very Fine -version = 4 - -[metadata] -material = generic_petg -quality_type = veryfine -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = 2 - -[values] -speed_print = 40 -speed_travel = 80 +[general] +definition = flashforge_adventurer3 +name = Very Fine +version = 4 + +[metadata] +material = generic_petg +quality_type = veryfine +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 2 + +[values] +speed_print = 40 +speed_travel = 80 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg index 2f54c96ea41..2f486d4d5d8 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Draft -version = 4 - -[metadata] -material = generic_petg -quality_type = draft -setting_version = 22 -type = quality -variant = 0.6mm Nozzle -weight = -3 - -[values] -speed_print = 65 -speed_travel = 100 +[general] +definition = flashforge_adventurer3 +name = Draft +version = 4 + +[metadata] +material = generic_petg +quality_type = draft +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = -3 + +[values] +speed_print = 65 +speed_travel = 100 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg index aa55c43ad73..9ac73720499 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Fast -version = 4 - -[metadata] -material = generic_petg -quality_type = fast -setting_version = 22 -type = quality -variant = 0.6mm Nozzle -weight = -1 - -[values] -speed_print = 50 -speed_travel = 100 +[general] +definition = flashforge_adventurer3 +name = Fast +version = 4 + +[metadata] +material = generic_petg +quality_type = fast +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = -1 + +[values] +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg index cb226be3c45..744527c1397 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Very Fast -version = 4 - -[metadata] -material = generic_petg -quality_type = veryfast -setting_version = 22 -type = quality -variant = 0.6mm Nozzle -weight = -2 - -[values] -speed_print = 50 -speed_travel = 100 +[general] +definition = flashforge_adventurer3 +name = Very Fast +version = 4 + +[metadata] +material = generic_petg +quality_type = veryfast +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg index a17c8d9648d..aeb666c82dd 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Fine -version = 4 - -[metadata] -material = generic_petg -quality_type = fine -setting_version = 22 -type = quality -variant = 0.3mm Nozzle -weight = 1 - -[values] -speed_print = 50 -speed_travel = 80 -retraction_amount = 5 -retraction_speed = 25 +[general] +definition = flashforge_adventurer4 +name = Fine +version = 4 + +[metadata] +material = generic_petg +quality_type = fine +setting_version = 22 +type = quality +variant = 0.3mm Nozzle +weight = 1 + +[values] +retraction_amount = 5 +retraction_speed = 25 +speed_print = 50 +speed_travel = 80 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg index 5091364e724..cb0b7fba373 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Very Fine -version = 4 - -[metadata] -material = generic_petg -quality_type = veryfine -setting_version = 22 -type = quality -variant = 0.3mm Nozzle -weight = 2 - -[values] -speed_print = 50 -speed_travel = 80 -retraction_amount = 5 -retraction_speed = 25 +[general] +definition = flashforge_adventurer4 +name = Very Fine +version = 4 + +[metadata] +material = generic_petg +quality_type = veryfine +setting_version = 22 +type = quality +variant = 0.3mm Nozzle +weight = 2 + +[values] +retraction_amount = 5 +retraction_speed = 25 +speed_print = 50 +speed_travel = 80 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg index 3a144895591..ec087730523 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Draft -version = 4 - -[metadata] -material = generic_petg -quality_type = draft -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = -3 - -[values] -speed_print = 65 -speed_travel = 100 -retraction_amount = 5 -retraction_speed = 25 +[general] +definition = flashforge_adventurer4 +name = Draft +version = 4 + +[metadata] +material = generic_petg +quality_type = draft +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = -3 + +[values] +retraction_amount = 5 +retraction_speed = 25 +speed_print = 65 +speed_travel = 100 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg index b573bf5ea6f..84be0afa3b2 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Fast -version = 4 - -[metadata] -material = generic_petg -quality_type = fast -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = -1 - -[values] -speed_print = 55 -speed_travel = 85 -retraction_amount = 5 -retraction_speed = 25 +[general] +definition = flashforge_adventurer4 +name = Fast +version = 4 + +[metadata] +material = generic_petg +quality_type = fast +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = -1 + +[values] +retraction_amount = 5 +retraction_speed = 25 +speed_print = 55 +speed_travel = 85 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg index e00ff6968ae..75bde3cd439 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Fine -version = 4 - -[metadata] -material = generic_petg -quality_type = fine -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = 1 - -[values] -speed_print = 40 -speed_travel = 80 -retraction_amount = 5 -retraction_speed = 25 +[general] +definition = flashforge_adventurer4 +name = Fine +version = 4 + +[metadata] +material = generic_petg +quality_type = fine +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 1 + +[values] +retraction_amount = 5 +retraction_speed = 25 +speed_print = 40 +speed_travel = 80 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg index 56df96187f0..5f37b1e8122 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Standard -version = 4 - -[metadata] -material = generic_petg -quality_type = normal -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = 0 - -[values] -speed_print = 50 -speed_travel = 80 -retraction_amount = 5 -retraction_speed = 25 +[general] +definition = flashforge_adventurer4 +name = Standard +version = 4 + +[metadata] +material = generic_petg +quality_type = normal +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +retraction_amount = 5 +retraction_speed = 25 +speed_print = 50 +speed_travel = 80 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg index 7001124129f..844195d2df2 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Very Fast -version = 4 - -[metadata] -material = generic_petg -quality_type = veryfast -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = -2 - -[values] -speed_print = 60 -speed_travel = 90 -retraction_amount = 5 -retraction_speed = 25 +[general] +definition = flashforge_adventurer4 +name = Very Fast +version = 4 + +[metadata] +material = generic_petg +quality_type = veryfast +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = -2 + +[values] +retraction_amount = 5 +retraction_speed = 25 +speed_print = 60 +speed_travel = 90 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg index a6249569343..2eb93f1216c 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Very Fine -version = 4 - -[metadata] -material = generic_petg -quality_type = veryfine -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = 2 - -[values] -speed_print = 40 -speed_travel = 80 -retraction_amount = 5 -retraction_speed = 25 +[general] +definition = flashforge_adventurer4 +name = Very Fine +version = 4 + +[metadata] +material = generic_petg +quality_type = veryfine +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 2 + +[values] +retraction_amount = 5 +retraction_speed = 25 +speed_print = 40 +speed_travel = 80 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg index 5976fdf2258..ff190b0e238 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Draft -version = 4 - -[metadata] -material = generic_petg -quality_type = draft -setting_version = 22 -type = quality -variant = 0.6mm Nozzle -weight = -3 - -[values] -speed_print = 65 -speed_travel = 100 -retraction_amount = 5 -retraction_speed = 20 +[general] +definition = flashforge_adventurer4 +name = Draft +version = 4 + +[metadata] +material = generic_petg +quality_type = draft +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = -3 + +[values] +retraction_amount = 5 +retraction_speed = 20 +speed_print = 65 +speed_travel = 100 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg index 39d500ea83d..91d617d2347 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Fast -version = 4 - -[metadata] -material = generic_petg -quality_type = fast -setting_version = 22 -type = quality -variant = 0.6mm Nozzle -weight = -1 - -[values] -speed_print = 50 -speed_travel = 100 -retraction_amount = 5 -retraction_speed = 20 +[general] +definition = flashforge_adventurer4 +name = Fast +version = 4 + +[metadata] +material = generic_petg +quality_type = fast +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = -1 + +[values] +retraction_amount = 5 +retraction_speed = 20 +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg index 0d7f397d7e5..22647877b82 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Very Fast -version = 4 - -[metadata] -material = generic_petg -quality_type = veryfast -setting_version = 22 -type = quality -variant = 0.6mm Nozzle -weight = -2 - -[values] -speed_print = 50 -speed_travel = 100 -retraction_amount = 5 -retraction_speed = 20 +[general] +definition = flashforge_adventurer4 +name = Very Fast +version = 4 + +[metadata] +material = generic_petg +quality_type = veryfast +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +retraction_amount = 5 +retraction_speed = 20 +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg index ee221f58146..6dbc8c55dbc 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Fine -version = 4 - -[metadata] -material = generic_pla -quality_type = fine -setting_version = 22 -type = quality -variant = 0.3mm Nozzle -weight = 1 - -[values] -speed_print = 50 -speed_travel = 100 +[general] +definition = flashforge_adventurer3 +name = Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = fine +setting_version = 22 +type = quality +variant = 0.3mm Nozzle +weight = 1 + +[values] +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg index 10861d3ac89..690c3e6b84b 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Very Fine -version = 4 - -[metadata] -material = generic_pla -quality_type = veryfine -setting_version = 22 -type = quality -variant = 0.3mm Nozzle -weight = 2 - -[values] -speed_print = 45 -speed_travel = 100 +[general] +definition = flashforge_adventurer3 +name = Very Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = veryfine +setting_version = 22 +type = quality +variant = 0.3mm Nozzle +weight = 2 + +[values] +speed_print = 45 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg index b31667ce5f1..6a4342197ea 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Draft -version = 4 - -[metadata] -material = generic_pla -quality_type = draft -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = -3 - -[values] -speed_print = 75 -speed_travel = 100 +[general] +definition = flashforge_adventurer3 +name = Draft +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = -3 + +[values] +speed_print = 75 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg index 1517fb90868..180e648dfd1 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Fast -version = 4 - -[metadata] -material = generic_pla -quality_type = fast -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = -1 - -[values] -speed_print = 65 -speed_travel = 100 +[general] +definition = flashforge_adventurer3 +name = Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = fast +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = -1 + +[values] +speed_print = 65 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg index b92f15246c9..7e6dee0b1ea 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Fine -version = 4 - -[metadata] -material = generic_pla -quality_type = fine -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = 1 - -[values] -speed_print = 50 -speed_travel = 80 +[general] +definition = flashforge_adventurer3 +name = Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = fine +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 1 + +[values] +speed_print = 50 +speed_travel = 80 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg index cb7476638bb..06e24e078da 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Standard -version = 4 - -[metadata] -material = generic_pla -quality_type = normal -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = 0 - -[values] -speed_print = 60 -speed_travel = 80 +[general] +definition = flashforge_adventurer3 +name = Standard +version = 4 + +[metadata] +material = generic_pla +quality_type = normal +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 60 +speed_travel = 80 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg index 970670b2113..d82fb0cdadd 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Very Fast -version = 4 - -[metadata] -material = generic_pla -quality_type = veryfast -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = -2 - -[values] -speed_print = 70 -speed_travel = 100 +[general] +definition = flashforge_adventurer3 +name = Very Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = veryfast +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = -2 + +[values] +speed_print = 70 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg index a38658883b3..dfd442d63cb 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Very Fine -version = 4 - -[metadata] -material = generic_pla -quality_type = veryfine -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = 2 - -[values] -speed_print = 40 -speed_travel = 70 +[general] +definition = flashforge_adventurer3 +name = Very Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = veryfine +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 2 + +[values] +speed_print = 40 +speed_travel = 70 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg index 620302a4814..45084440554 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Draft -version = 4 - -[metadata] -material = generic_pla -quality_type = draft -setting_version = 22 -type = quality -variant = 0.6mm Nozzle -weight = -2 - -[values] -speed_print = 60 -speed_travel = 100 +[general] +definition = flashforge_adventurer3 +name = Draft +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +speed_print = 60 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg index e2f91de8124..782b74a7dc5 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Fast -version = 4 - -[metadata] -material = generic_pla -quality_type = fast -setting_version = 22 -type = quality -variant = 0.6mm Nozzle -weight = -1 - -[values] -speed_print = 50 -speed_travel = 100 +[general] +definition = flashforge_adventurer3 +name = Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = fast +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = -1 + +[values] +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg index b9f6ae4e88f..22b74b6a252 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg @@ -1,16 +1,17 @@ -[general] -definition = flashforge_adventurer3 -name = Very Fast -version = 4 - -[metadata] -material = generic_pla -quality_type = veryfast -setting_version = 22 -type = quality -variant = 0.6mm Nozzle -weight = -2 - -[values] -speed_print = 55 -speed_travel = 100 +[general] +definition = flashforge_adventurer3 +name = Very Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = veryfast +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +speed_print = 55 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg index 3ef15e17363..747f8a0076a 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Fine -version = 4 - -[metadata] -material = generic_pla -quality_type = fine -setting_version = 22 -type = quality -variant = 0.3mm Nozzle -weight = 1 - -[values] -speed_print = 50 -speed_travel = 100 -retraction_amount = 5 -retraction_speed = 30 +[general] +definition = flashforge_adventurer4 +name = Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = fine +setting_version = 22 +type = quality +variant = 0.3mm Nozzle +weight = 1 + +[values] +retraction_amount = 5 +retraction_speed = 30 +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg index cdd22c946f4..e7a6ef72cd4 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Very Fine -version = 4 - -[metadata] -material = generic_pla -quality_type = veryfine -setting_version = 22 -type = quality -variant = 0.3mm Nozzle -weight = 2 - -[values] -speed_print = 45 -speed_travel = 100 -retraction_amount = 5 -retraction_speed = 30 +[general] +definition = flashforge_adventurer4 +name = Very Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = veryfine +setting_version = 22 +type = quality +variant = 0.3mm Nozzle +weight = 2 + +[values] +retraction_amount = 5 +retraction_speed = 30 +speed_print = 45 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg index 993064a6dfe..18bd03e2fa4 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Draft -version = 4 - -[metadata] -material = generic_pla -quality_type = draft -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = -2 - -[values] -speed_print = 65 -speed_travel = 100 -retraction_amount = 5.5 -retraction_speed = 25 +[general] +definition = flashforge_adventurer4 +name = Draft +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = -2 + +[values] +retraction_amount = 5.5 +retraction_speed = 25 +speed_print = 65 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg index 2d4aff0fe66..a40571318da 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Fine -version = 4 - -[metadata] -material = generic_pla -quality_type = fine -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = -1 - -[values] -speed_print = 55 -speed_travel = 100 -retraction_amount = 5.5 -retraction_speed = 25 +[general] +definition = flashforge_adventurer4 +name = Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = fine +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = -1 + +[values] +retraction_amount = 5.5 +retraction_speed = 25 +speed_print = 55 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg index 37e0731f504..b81f729ed71 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Fine -version = 4 - -[metadata] -material = generic_pla -quality_type = fine -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = 1 - -[values] -speed_print = 45 -speed_travel = 90 -retraction_amount = 5.5 -retraction_speed = 25 +[general] +definition = flashforge_adventurer4 +name = Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = fine +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 1 + +[values] +retraction_amount = 5.5 +retraction_speed = 25 +speed_print = 45 +speed_travel = 90 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg index 8e2fe1b043e..6e3486a0318 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Standard -version = 4 - -[metadata] -material = generic_pla -quality_type = normal -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = 0 - -[values] -speed_print = 50 -speed_travel = 100 -retraction_amount = 5.5 -retraction_speed = 25 +[general] +definition = flashforge_adventurer4 +name = Standard +version = 4 + +[metadata] +material = generic_pla +quality_type = normal +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +retraction_amount = 5.5 +retraction_speed = 25 +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg index dc887117c00..7635f689449 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Very Fast -version = 4 - -[metadata] -material = generic_pla -quality_type = veryfast -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = -2 - -[values] -speed_print = 60 -speed_travel = 100 -retraction_amount = 5.5 -retraction_speed = 25 +[general] +definition = flashforge_adventurer4 +name = Very Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = veryfast +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = -2 + +[values] +retraction_amount = 5.5 +retraction_speed = 25 +speed_print = 60 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg index cdd5aae558e..718dd4d4c74 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Very Fine -version = 4 - -[metadata] -material = generic_pla -quality_type = veryfine -setting_version = 22 -type = quality -variant = 0.4mm Nozzle -weight = 2 - -[values] -speed_print = 40 -speed_travel = 80 -retraction_amount = 5.5 -retraction_speed = 25 +[general] +definition = flashforge_adventurer4 +name = Very Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = veryfine +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 2 + +[values] +retraction_amount = 5.5 +retraction_speed = 25 +speed_print = 40 +speed_travel = 80 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg index ac4966df734..50e52230453 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Draft -version = 4 - -[metadata] -material = generic_pla -quality_type = draft -setting_version = 22 -type = quality -variant = 0.6mm Nozzle -weight = -2 - -[values] -speed_print = 65 -speed_travel = 100 -retraction_amount = 6 -retraction_speed = 30 +[general] +definition = flashforge_adventurer4 +name = Draft +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +retraction_amount = 6 +retraction_speed = 30 +speed_print = 65 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg index 77538fb95e9..f81ed661553 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Fast -version = 4 - -[metadata] -material = generic_pla -quality_type = fast -setting_version = 22 -type = quality -variant = 0.6mm Nozzle -weight = -1 - -[values] -speed_print = 60 -speed_travel = 100 -retraction_amount = 6 -retraction_speed = 30 +[general] +definition = flashforge_adventurer4 +name = Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = fast +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = -1 + +[values] +retraction_amount = 6 +retraction_speed = 30 +speed_print = 60 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg index 923d526e69b..aa065e31f0f 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg @@ -1,18 +1,19 @@ -[general] -definition = flashforge_adventurer4 -name = Very Fast -version = 4 - -[metadata] -material = generic_pla -quality_type = veryfast -setting_version = 22 -type = quality -variant = 0.6mm Nozzle -weight = -2 - -[values] -speed_print = 60 -speed_travel = 100 -retraction_amount = 6 -retraction_speed = 30 +[general] +definition = flashforge_adventurer4 +name = Very Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = veryfast +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +retraction_amount = 6 +retraction_speed = 30 +speed_print = 60 +speed_travel = 100 + diff --git a/resources/variants/flashforge/flashforge_adventurer3_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3_0.3.inst.cfg index 9233d066d25..fdaea7e9f06 100644 --- a/resources/variants/flashforge/flashforge_adventurer3_0.3.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3_0.3.inst.cfg @@ -1,12 +1,13 @@ -[general] -definition = flashforge_adventurer3 -name = 0.3mm Nozzle -version = 4 - -[metadata] -hardware_type = nozzle -setting_version = 22 -type = variant - -[values] -machine_nozzle_size = 0.3 +[general] +definition = flashforge_adventurer3 +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/flashforge/flashforge_adventurer3_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3_0.4.inst.cfg index 9217a0a5187..5a7a2520ada 100644 --- a/resources/variants/flashforge/flashforge_adventurer3_0.4.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3_0.4.inst.cfg @@ -1,12 +1,13 @@ -[general] -definition = flashforge_adventurer3 -name = 0.4mm Nozzle -version = 4 - -[metadata] -hardware_type = nozzle -setting_version = 22 -type = variant - -[values] -machine_nozzle_size = 0.4 +[general] +definition = flashforge_adventurer3 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/flashforge/flashforge_adventurer3_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3_0.6.inst.cfg index 5e712bb0f51..bee4393cc95 100644 --- a/resources/variants/flashforge/flashforge_adventurer3_0.6.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3_0.6.inst.cfg @@ -1,12 +1,13 @@ -[general] -definition = flashforge_adventurer3 -name = 0.6mm Nozzle -version = 4 - -[metadata] -hardware_type = nozzle -setting_version = 22 -type = variant - -[values] -machine_nozzle_size = 0.6 +[general] +definition = flashforge_adventurer3 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg index c7162ed63bf..404c0efb06f 100644 --- a/resources/variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg @@ -1,12 +1,13 @@ -[general] -definition = flashforge_adventurer3c -name = 0.3mm Nozzle -version = 4 - -[metadata] -hardware_type = nozzle -setting_version = 22 -type = variant - -[values] -machine_nozzle_size = 0.3 +[general] +definition = flashforge_adventurer3c +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg index 75b8cf227d3..20cb91c62ed 100644 --- a/resources/variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg @@ -1,12 +1,13 @@ -[general] -definition = flashforge_adventurer3c -name = 0.4mm Nozzle -version = 4 - -[metadata] -hardware_type = nozzle -setting_version = 22 -type = variant - -[values] -machine_nozzle_size = 0.4 +[general] +definition = flashforge_adventurer3c +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg index 07898deed71..531763721a1 100644 --- a/resources/variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg @@ -1,12 +1,13 @@ -[general] -definition = flashforge_adventurer3c -name = 0.6mm Nozzle -version = 4 - -[metadata] -hardware_type = nozzle -setting_version = 22 -type = variant - -[values] -machine_nozzle_size = 0.6 +[general] +definition = flashforge_adventurer3c +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/flashforge/flashforge_adventurer4_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4_0.3.inst.cfg index 36902259f16..661de9a8020 100644 --- a/resources/variants/flashforge/flashforge_adventurer4_0.3.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4_0.3.inst.cfg @@ -1,12 +1,13 @@ -[general] -definition = flashforge_adventurer4 -name = 0.3mm Nozzle -version = 4 - -[metadata] -hardware_type = nozzle -setting_version = 22 -type = variant - -[values] -machine_nozzle_size = 0.3 +[general] +definition = flashforge_adventurer4 +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/flashforge/flashforge_adventurer4_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4_0.4.inst.cfg index 8433cc42d83..7944ab4d6ae 100644 --- a/resources/variants/flashforge/flashforge_adventurer4_0.4.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4_0.4.inst.cfg @@ -1,12 +1,13 @@ -[general] -definition = flashforge_adventurer4 -name = 0.4mm Nozzle -version = 4 - -[metadata] -hardware_type = nozzle -setting_version = 22 -type = variant - -[values] -machine_nozzle_size = 0.4 +[general] +definition = flashforge_adventurer4 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/flashforge/flashforge_adventurer4_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4_0.6.inst.cfg index 39604fef550..2e0bb4d36a6 100644 --- a/resources/variants/flashforge/flashforge_adventurer4_0.6.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4_0.6.inst.cfg @@ -1,12 +1,13 @@ -[general] -definition = flashforge_adventurer4 -name = 0.6mm Nozzle -version = 4 - -[metadata] -hardware_type = nozzle -setting_version = 22 -type = variant - -[values] -machine_nozzle_size = 0.6 +[general] +definition = flashforge_adventurer4 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg index 8c1a1d6e2f6..25f6eba9bf7 100644 --- a/resources/variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg @@ -1,12 +1,13 @@ -[general] -definition = flashforge_adventurer4lite -name = 0.3mm Nozzle -version = 4 - -[metadata] -hardware_type = nozzle -setting_version = 22 -type = variant - -[values] -machine_nozzle_size = 0.3 +[general] +definition = flashforge_adventurer4lite +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg index 16d88764855..c073e058315 100644 --- a/resources/variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg @@ -1,12 +1,13 @@ -[general] -definition = flashforge_adventurer4lite -name = 0.4mm Nozzle -version = 4 - -[metadata] -hardware_type = nozzle -setting_version = 22 -type = variant - -[values] -machine_nozzle_size = 0.4 +[general] +definition = flashforge_adventurer4lite +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg index b9832c7d84d..5801637f402 100644 --- a/resources/variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg @@ -1,12 +1,13 @@ -[general] -definition = flashforge_adventurer4lite -name = 0.6mm Nozzle -version = 4 - -[metadata] -hardware_type = nozzle -setting_version = 22 -type = variant - -[values] -machine_nozzle_size = 0.6 +[general] +definition = flashforge_adventurer4lite +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + From d490effcbd2062424a485198c38e0a90a22963b9 Mon Sep 17 00:00:00 2001 From: nallath Date: Wed, 31 Jan 2024 12:46:58 +0000 Subject: [PATCH 437/765] Applied printer-linter format --- resources/definitions/ratrig_base.def.json | 2 +- resources/definitions/ratrig_vcore3_200.def.json | 2 +- resources/definitions/ratrig_vcore3_300.def.json | 2 +- resources/definitions/ratrig_vcore3_400.def.json | 2 +- resources/definitions/ratrig_vcore3_500.def.json | 2 +- resources/definitions/ratrig_vcore3_base.def.json | 2 +- resources/definitions/ratrig_vminion.def.json | 2 +- .../extruders/ratrig_base_extruder_0.def.json | 9 +++++---- .../nylon/ratrig_base_0.2_Nylon_super.inst.cfg | 9 +++++---- .../nylon/ratrig_base_0.2_Nylon_ultra.inst.cfg | 9 +++++---- .../nylon/ratrig_base_0.3_Nylon_adaptive.inst.cfg | 9 +++++---- .../nylon/ratrig_base_0.3_Nylon_low.inst.cfg | 9 +++++---- .../nylon/ratrig_base_0.3_Nylon_standard.inst.cfg | 9 +++++---- .../nylon/ratrig_base_0.3_Nylon_super.inst.cfg | 9 +++++---- .../nylon/ratrig_base_0.4_Nylon_adaptive.inst.cfg | 15 ++++++++------- .../nylon/ratrig_base_0.4_Nylon_low.inst.cfg | 15 ++++++++------- .../nylon/ratrig_base_0.4_Nylon_standard.inst.cfg | 15 ++++++++------- .../nylon/ratrig_base_0.4_Nylon_super.inst.cfg | 15 ++++++++------- .../nylon/ratrig_base_0.5_Nylon_adaptive.inst.cfg | 9 +++++---- .../nylon/ratrig_base_0.5_Nylon_low.inst.cfg | 9 +++++---- .../nylon/ratrig_base_0.5_Nylon_standard.inst.cfg | 9 +++++---- .../nylon/ratrig_base_0.5_Nylon_super.inst.cfg | 9 +++++---- .../nylon/ratrig_base_0.6_Nylon_standard.inst.cfg | 9 +++++---- .../nylon/ratrig_base_0.8_Nylon_draft.inst.cfg | 11 ++++++----- .../nylon/ratrig_base_1.0_Nylon_draft.inst.cfg | 9 +++++---- .../petg/ratrig_base_0.2_PETG_super.inst.cfg | 9 +++++---- .../petg/ratrig_base_0.2_PETG_ultra.inst.cfg | 9 +++++---- .../petg/ratrig_base_0.3_PETG_adaptive.inst.cfg | 9 +++++---- .../petg/ratrig_base_0.3_PETG_low.inst.cfg | 9 +++++---- .../petg/ratrig_base_0.3_PETG_standard.inst.cfg | 9 +++++---- .../petg/ratrig_base_0.3_PETG_super.inst.cfg | 9 +++++---- .../petg/ratrig_base_0.4_PETG_adaptive.inst.cfg | 15 ++++++++------- .../petg/ratrig_base_0.4_PETG_low.inst.cfg | 15 ++++++++------- .../petg/ratrig_base_0.4_PETG_standard.inst.cfg | 15 ++++++++------- .../petg/ratrig_base_0.4_PETG_super.inst.cfg | 15 ++++++++------- .../petg/ratrig_base_0.5_PETG_adaptive.inst.cfg | 9 +++++---- .../petg/ratrig_base_0.5_PETG_low.inst.cfg | 9 +++++---- .../petg/ratrig_base_0.5_PETG_standard.inst.cfg | 9 +++++---- .../petg/ratrig_base_0.5_PETG_super.inst.cfg | 9 +++++---- .../petg/ratrig_base_0.6_PETG_standard.inst.cfg | 9 +++++---- .../petg/ratrig_base_0.8_PETG_draft.inst.cfg | 11 ++++++----- .../petg/ratrig_base_1.0_PETG_draft.inst.cfg | 9 +++++---- .../pla/ratrig_base_0.2_PLA_super.inst.cfg | 9 +++++---- .../pla/ratrig_base_0.2_PLA_ultra.inst.cfg | 9 +++++---- .../pla/ratrig_base_0.3_PLA_adaptive.inst.cfg | 9 +++++---- .../pla/ratrig_base_0.3_PLA_low.inst.cfg | 9 +++++---- .../pla/ratrig_base_0.3_PLA_standard.inst.cfg | 9 +++++---- .../pla/ratrig_base_0.3_PLA_super.inst.cfg | 9 +++++---- .../pla/ratrig_base_0.4_PLA_adaptive.inst.cfg | 9 +++++---- .../pla/ratrig_base_0.4_PLA_low.inst.cfg | 9 +++++---- .../pla/ratrig_base_0.4_PLA_standard.inst.cfg | 9 +++++---- .../pla/ratrig_base_0.4_PLA_super.inst.cfg | 9 +++++---- .../pla/ratrig_base_0.5_PLA_adaptive.inst.cfg | 9 +++++---- .../pla/ratrig_base_0.5_PLA_low.inst.cfg | 9 +++++---- .../pla/ratrig_base_0.5_PLA_standard.inst.cfg | 9 +++++---- .../pla/ratrig_base_0.5_PLA_super.inst.cfg | 9 +++++---- .../pla/ratrig_base_0.6_PLA_draft.inst.cfg | 9 +++++---- .../pla/ratrig_base_0.6_PLA_low.inst.cfg | 9 +++++---- .../pla/ratrig_base_0.6_PLA_standard.inst.cfg | 9 +++++---- .../pla/ratrig_base_0.8_PLA_draft.inst.cfg | 9 +++++---- .../pla/ratrig_base_1.0_PLA_draft.inst.cfg | 9 +++++---- .../ratrig_base_global_adaptive.inst.cfg | 13 +++++++------ .../ratrig_base/ratrig_base_global_draft.inst.cfg | 11 ++++++----- .../ratrig_base/ratrig_base_global_low.inst.cfg | 11 ++++++----- .../ratrig_base_global_standard.inst.cfg | 11 ++++++----- .../ratrig_base/ratrig_base_global_super.inst.cfg | 11 ++++++----- .../ratrig_base/ratrig_base_global_ultra.inst.cfg | 11 ++++++----- .../tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg | 9 +++++---- .../tpu/ratrig_base_0.3_TPU_standard.inst.cfg | 9 +++++---- .../tpu/ratrig_base_0.3_TPU_super.inst.cfg | 9 +++++---- .../tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg | 9 +++++---- .../tpu/ratrig_base_0.4_TPU_standard.inst.cfg | 9 +++++---- .../tpu/ratrig_base_0.4_TPU_super.inst.cfg | 9 +++++---- .../tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg | 9 +++++---- .../tpu/ratrig_base_0.5_TPU_standard.inst.cfg | 9 +++++---- .../tpu/ratrig_base_0.5_TPU_super.inst.cfg | 9 +++++---- .../tpu/ratrig_base_0.6_TPU_standard.inst.cfg | 9 +++++---- .../tpu/ratrig_base_0.8_TPU_draft.inst.cfg | 9 +++++---- .../tpu/ratrig_base_1.0_TPU_draft.inst.cfg | 9 +++++---- .../variants/ratrig/ratrig_base_0.2.inst.cfg | 5 +++-- .../variants/ratrig/ratrig_base_0.3.inst.cfg | 5 +++-- .../variants/ratrig/ratrig_base_0.4.inst.cfg | 5 +++-- .../variants/ratrig/ratrig_base_0.6.inst.cfg | 5 +++-- .../variants/ratrig/ratrig_base_0.8.inst.cfg | 5 +++-- .../variants/ratrig/ratrig_base_1.0.inst.cfg | 5 +++-- .../ratrig/ratrig_vcore3_200_0.2.inst.cfg | 5 +++-- .../ratrig/ratrig_vcore3_200_0.3.inst.cfg | 5 +++-- .../ratrig/ratrig_vcore3_200_0.4.inst.cfg | 5 +++-- .../ratrig/ratrig_vcore3_200_0.6.inst.cfg | 5 +++-- .../ratrig/ratrig_vcore3_200_0.8.inst.cfg | 5 +++-- .../ratrig/ratrig_vcore3_200_1.0.inst.cfg | 5 +++-- .../ratrig/ratrig_vcore3_300_0.2.inst.cfg | 5 +++-- .../ratrig/ratrig_vcore3_300_0.3.inst.cfg | 5 +++-- .../ratrig/ratrig_vcore3_300_0.4.inst.cfg | 5 +++-- .../ratrig/ratrig_vcore3_300_0.6.inst.cfg | 5 +++-- .../ratrig/ratrig_vcore3_300_0.8.inst.cfg | 5 +++-- .../ratrig/ratrig_vcore3_300_1.0.inst.cfg | 5 +++-- .../ratrig/ratrig_vcore3_400_0.2.inst.cfg | 5 +++-- .../ratrig/ratrig_vcore3_400_0.3.inst.cfg | 5 +++-- .../ratrig/ratrig_vcore3_400_0.4.inst.cfg | 5 +++-- .../ratrig/ratrig_vcore3_400_0.6.inst.cfg | 5 +++-- .../ratrig/ratrig_vcore3_400_0.8.inst.cfg | 5 +++-- .../ratrig/ratrig_vcore3_400_1.0.inst.cfg | 5 +++-- .../ratrig/ratrig_vcore3_500_0.2.inst.cfg | 5 +++-- .../ratrig/ratrig_vcore3_500_0.3.inst.cfg | 5 +++-- .../ratrig/ratrig_vcore3_500_0.4.inst.cfg | 5 +++-- .../ratrig/ratrig_vcore3_500_0.6.inst.cfg | 5 +++-- .../ratrig/ratrig_vcore3_500_0.8.inst.cfg | 5 +++-- .../ratrig/ratrig_vcore3_500_1.0.inst.cfg | 5 +++-- .../variants/ratrig/ratrig_vminion_0.2.inst.cfg | 5 +++-- .../variants/ratrig/ratrig_vminion_0.3.inst.cfg | 5 +++-- .../variants/ratrig/ratrig_vminion_0.4.inst.cfg | 5 +++-- .../variants/ratrig/ratrig_vminion_0.6.inst.cfg | 5 +++-- .../variants/ratrig/ratrig_vminion_0.8.inst.cfg | 5 +++-- .../variants/ratrig/ratrig_vminion_1.0.inst.cfg | 5 +++-- 115 files changed, 508 insertions(+), 400 deletions(-) diff --git a/resources/definitions/ratrig_base.def.json b/resources/definitions/ratrig_base.def.json index 22c01c8bc31..ab8f4dccf4f 100644 --- a/resources/definitions/ratrig_base.def.json +++ b/resources/definitions/ratrig_base.def.json @@ -16,4 +16,4 @@ "quality_definition": "ratrig_base", "supported_actions": [ "MachineSettingsAction" ] } -} +} \ No newline at end of file diff --git a/resources/definitions/ratrig_vcore3_200.def.json b/resources/definitions/ratrig_vcore3_200.def.json index 22738f6ce18..d16f15b476f 100644 --- a/resources/definitions/ratrig_vcore3_200.def.json +++ b/resources/definitions/ratrig_vcore3_200.def.json @@ -20,4 +20,4 @@ "machine_name": { "default_value": "RatRig V-Core 3 200mm" }, "machine_width": { "default_value": 200 } } -} +} \ No newline at end of file diff --git a/resources/definitions/ratrig_vcore3_300.def.json b/resources/definitions/ratrig_vcore3_300.def.json index b139f3b1054..c96860e90bd 100644 --- a/resources/definitions/ratrig_vcore3_300.def.json +++ b/resources/definitions/ratrig_vcore3_300.def.json @@ -20,4 +20,4 @@ "machine_name": { "default_value": "RatRig V-Core 3 300mm" }, "machine_width": { "default_value": 300 } } -} +} \ No newline at end of file diff --git a/resources/definitions/ratrig_vcore3_400.def.json b/resources/definitions/ratrig_vcore3_400.def.json index a61e4570bcd..fcd51686e8e 100644 --- a/resources/definitions/ratrig_vcore3_400.def.json +++ b/resources/definitions/ratrig_vcore3_400.def.json @@ -20,4 +20,4 @@ "machine_name": { "default_value": "RatRig V-Core 3 400mm" }, "machine_width": { "default_value": 400 } } -} +} \ No newline at end of file diff --git a/resources/definitions/ratrig_vcore3_500.def.json b/resources/definitions/ratrig_vcore3_500.def.json index 93483af33a4..97798bc4cea 100644 --- a/resources/definitions/ratrig_vcore3_500.def.json +++ b/resources/definitions/ratrig_vcore3_500.def.json @@ -20,4 +20,4 @@ "machine_name": { "default_value": "RatRig V-Core 3 500mm" }, "machine_width": { "default_value": 500 } } -} +} \ No newline at end of file diff --git a/resources/definitions/ratrig_vcore3_base.def.json b/resources/definitions/ratrig_vcore3_base.def.json index a736da45069..f52f6b9b1ae 100644 --- a/resources/definitions/ratrig_vcore3_base.def.json +++ b/resources/definitions/ratrig_vcore3_base.def.json @@ -114,4 +114,4 @@ "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, "z_seam_type": { "value": "'back'" } } -} +} \ No newline at end of file diff --git a/resources/definitions/ratrig_vminion.def.json b/resources/definitions/ratrig_vminion.def.json index 3cfb3baad6e..8c20c3c49fc 100644 --- a/resources/definitions/ratrig_vminion.def.json +++ b/resources/definitions/ratrig_vminion.def.json @@ -125,4 +125,4 @@ "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, "z_seam_type": { "value": "'back'" } } -} +} \ No newline at end of file diff --git a/resources/extruders/ratrig_base_extruder_0.def.json b/resources/extruders/ratrig_base_extruder_0.def.json index 0c621c9a061..e5afcbdb545 100644 --- a/resources/extruders/ratrig_base_extruder_0.def.json +++ b/resources/extruders/ratrig_base_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "ratrig_base", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_super.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_super.inst.cfg index 986c594aa87..adfe0e26a5e 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_super.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_super.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Super Quality definition = ratrig_base +name = Super Quality +version = 4 [metadata] +material = generic_nylon +quality_type = super setting_version = 22 type = quality -quality_type = super -material = generic_nylon variant = 0.2mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*8 + diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_ultra.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_ultra.inst.cfg index 8e857ee97c3..d0ed1bfc296 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_ultra.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_ultra.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Ultra Quality definition = ratrig_base +name = Ultra Quality +version = 4 [metadata] +material = generic_nylon +quality_type = ultra setting_version = 22 type = quality -quality_type = ultra -material = generic_nylon variant = 0.2mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*8 + diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_adaptive.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_adaptive.inst.cfg index a63a0ecc024..98bf867ce54 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_adaptive.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Dynamic Quality definition = ratrig_base +name = Dynamic Quality +version = 4 [metadata] +material = generic_nylon +quality_type = adaptive setting_version = 22 type = quality -quality_type = adaptive -material = generic_nylon variant = 0.3mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_low.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_low.inst.cfg index 968ad344324..8af36722699 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_low.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_low.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Low Quality definition = ratrig_base +name = Low Quality +version = 4 [metadata] +material = generic_nylon +quality_type = low setting_version = 22 type = quality -quality_type = low -material = generic_nylon variant = 0.3mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_standard.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_standard.inst.cfg index f139cc0aa7d..5c70c697a6b 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_standard.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_standard.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = ratrig_base +name = Standard Quality +version = 4 [metadata] +material = generic_nylon +quality_type = standard setting_version = 22 type = quality -quality_type = standard -material = generic_nylon variant = 0.3mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_super.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_super.inst.cfg index b09d167aa33..af8ea00735d 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_super.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_super.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Super Quality definition = ratrig_base +name = Super Quality +version = 4 [metadata] +material = generic_nylon +quality_type = super setting_version = 22 type = quality -quality_type = super -material = generic_nylon variant = 0.3mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_adaptive.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_adaptive.inst.cfg index c6862185985..3b4589bd782 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_adaptive.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Dynamic Quality definition = ratrig_base +name = Dynamic Quality +version = 4 [metadata] +material = generic_nylon +quality_type = adaptive setting_version = 22 type = quality -quality_type = adaptive -material = generic_nylon variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 cool_fan_speed = 40 -retraction_speed = 20 -retraction_amount = 1.6 material_flow = 94.0 +retraction_amount = 1.6 +retraction_speed = 20 +wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_low.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_low.inst.cfg index 7daca8bac71..addc6f2c1c7 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_low.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_low.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Low Quality definition = ratrig_base +name = Low Quality +version = 4 [metadata] +material = generic_nylon +quality_type = low setting_version = 22 type = quality -quality_type = low -material = generic_nylon variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 cool_fan_speed = 40 -retraction_speed = 20 -retraction_amount = 1.6 material_flow = 94.0 +retraction_amount = 1.6 +retraction_speed = 20 +wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_standard.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_standard.inst.cfg index 9f414288e98..e74e3c9015b 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_standard.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_standard.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Standard Quality definition = ratrig_base +name = Standard Quality +version = 4 [metadata] +material = generic_nylon +quality_type = standard setting_version = 22 type = quality -quality_type = standard -material = generic_nylon variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 cool_fan_speed = 40 -retraction_speed = 20 -retraction_amount = 1.6 material_flow = 94.0 +retraction_amount = 1.6 +retraction_speed = 20 +wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_super.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_super.inst.cfg index ef3b84f8100..957d89d2bf9 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_super.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_super.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Super Quality definition = ratrig_base +name = Super Quality +version = 4 [metadata] +material = generic_nylon +quality_type = super setting_version = 22 type = quality -quality_type = super -material = generic_nylon variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 cool_fan_speed = 40 -retraction_speed = 20 -retraction_amount = 1.6 material_flow = 94.0 +retraction_amount = 1.6 +retraction_speed = 20 +wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_adaptive.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_adaptive.inst.cfg index e3d64001f0c..46766b94c21 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_adaptive.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Dynamic Quality definition = ratrig_base +name = Dynamic Quality +version = 4 [metadata] +material = generic_nylon +quality_type = adaptive setting_version = 22 type = quality -quality_type = adaptive -material = generic_nylon variant = 0.5mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_low.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_low.inst.cfg index 7468690a7ed..22e93d8876f 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_low.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_low.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Low Quality definition = ratrig_base +name = Low Quality +version = 4 [metadata] +material = generic_nylon +quality_type = low setting_version = 22 type = quality -quality_type = low -material = generic_nylon variant = 0.5mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_standard.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_standard.inst.cfg index 0a7c369edd6..0d9b6ae5c13 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_standard.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_standard.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = ratrig_base +name = Standard Quality +version = 4 [metadata] +material = generic_nylon +quality_type = standard setting_version = 22 type = quality -quality_type = standard -material = generic_nylon variant = 0.5mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_super.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_super.inst.cfg index d7cc617a740..372d066d4c5 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_super.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_super.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Super Quality definition = ratrig_base +name = Super Quality +version = 4 [metadata] +material = generic_nylon +quality_type = super setting_version = 22 type = quality -quality_type = super -material = generic_nylon variant = 0.5mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.6_Nylon_standard.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.6_Nylon_standard.inst.cfg index bf34041d96d..a57d8e22ca0 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.6_Nylon_standard.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.6_Nylon_standard.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = ratrig_base +name = Standard Quality +version = 4 [metadata] +material = generic_nylon +quality_type = standard setting_version = 22 type = quality -quality_type = standard -material = generic_nylon variant = 0.6mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*3 + diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.8_Nylon_draft.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.8_Nylon_draft.inst.cfg index 92bc80ceb35..1fc2e48eed3 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.8_Nylon_draft.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.8_Nylon_draft.inst.cfg @@ -1,16 +1,17 @@ [general] -version = 4 -name = Draft Quality definition = ratrig_base +name = Draft Quality +version = 4 [metadata] +material = generic_nylon +quality_type = draft setting_version = 22 type = quality -quality_type = draft -material = generic_nylon variant = 0.8mm Nozzle [values] +cool_fan_speed = 40 speed_layer_0 = 30 wall_thickness = =line_width*2 -cool_fan_speed = 40 + diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_1.0_Nylon_draft.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_1.0_Nylon_draft.inst.cfg index 860980c0a1c..bcc88a598c6 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_1.0_Nylon_draft.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_1.0_Nylon_draft.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Draft Quality definition = ratrig_base +name = Draft Quality +version = 4 [metadata] +material = generic_nylon +quality_type = draft setting_version = 22 type = quality -quality_type = draft -material = generic_nylon variant = 1.0mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*3 + diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_super.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_super.inst.cfg index 6b0d6caff2b..24419b53025 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_super.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_super.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Super Quality definition = ratrig_base +name = Super Quality +version = 4 [metadata] +material = generic_petg +quality_type = super setting_version = 22 type = quality -quality_type = super -material = generic_petg variant = 0.2mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*8 + diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_ultra.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_ultra.inst.cfg index 784001a2946..a55a6ad76aa 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_ultra.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Ultra Quality definition = ratrig_base +name = Ultra Quality +version = 4 [metadata] +material = generic_petg +quality_type = ultra setting_version = 22 type = quality -quality_type = ultra -material = generic_petg variant = 0.2mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*8 + diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_adaptive.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_adaptive.inst.cfg index 40338965922..890652591b2 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_adaptive.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Dynamic Quality definition = ratrig_base +name = Dynamic Quality +version = 4 [metadata] +material = generic_petg +quality_type = adaptive setting_version = 22 type = quality -quality_type = adaptive -material = generic_petg variant = 0.3mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_low.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_low.inst.cfg index aaab545e843..aa3787c2788 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_low.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_low.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Low Quality definition = ratrig_base +name = Low Quality +version = 4 [metadata] +material = generic_petg +quality_type = low setting_version = 22 type = quality -quality_type = low -material = generic_petg variant = 0.3mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_standard.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_standard.inst.cfg index 6c56665241d..a2afefe69ca 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_standard.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_standard.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = ratrig_base +name = Standard Quality +version = 4 [metadata] +material = generic_petg +quality_type = standard setting_version = 22 type = quality -quality_type = standard -material = generic_petg variant = 0.3mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_super.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_super.inst.cfg index 5b838bbcb79..a90915b50cf 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_super.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_super.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Super Quality definition = ratrig_base +name = Super Quality +version = 4 [metadata] +material = generic_petg +quality_type = super setting_version = 22 type = quality -quality_type = super -material = generic_petg variant = 0.3mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_adaptive.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_adaptive.inst.cfg index 5e941ca0111..765547d6927 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_adaptive.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Dynamic Quality definition = ratrig_base +name = Dynamic Quality +version = 4 [metadata] +material = generic_petg +quality_type = adaptive setting_version = 22 type = quality -quality_type = adaptive -material = generic_petg variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 cool_fan_speed = 40 -retraction_speed = 20 -retraction_amount = 1.6 material_flow = 94.0 +retraction_amount = 1.6 +retraction_speed = 20 +wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_low.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_low.inst.cfg index 4052b22d10f..d5afe469945 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_low.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_low.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Low Quality definition = ratrig_base +name = Low Quality +version = 4 [metadata] +material = generic_petg +quality_type = low setting_version = 22 type = quality -quality_type = low -material = generic_petg variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 cool_fan_speed = 40 -retraction_speed = 20 -retraction_amount = 1.6 material_flow = 94.0 +retraction_amount = 1.6 +retraction_speed = 20 +wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_standard.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_standard.inst.cfg index eff9ddabf27..ea0ff5ab6bc 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_standard.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_standard.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Standard Quality definition = ratrig_base +name = Standard Quality +version = 4 [metadata] +material = generic_petg +quality_type = standard setting_version = 22 type = quality -quality_type = standard -material = generic_petg variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 cool_fan_speed = 40 -retraction_speed = 20 -retraction_amount = 1.6 material_flow = 94.0 +retraction_amount = 1.6 +retraction_speed = 20 +wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_super.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_super.inst.cfg index 53cd3e70417..49245f85b23 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_super.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_super.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Super Quality definition = ratrig_base +name = Super Quality +version = 4 [metadata] +material = generic_petg +quality_type = super setting_version = 22 type = quality -quality_type = super -material = generic_petg variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 cool_fan_speed = 40 -retraction_speed = 20 -retraction_amount = 1.6 material_flow = 94.0 +retraction_amount = 1.6 +retraction_speed = 20 +wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_adaptive.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_adaptive.inst.cfg index 58c3531f809..7147deb58fc 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_adaptive.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Dynamic Quality definition = ratrig_base +name = Dynamic Quality +version = 4 [metadata] +material = generic_petg +quality_type = adaptive setting_version = 22 type = quality -quality_type = adaptive -material = generic_petg variant = 0.5mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_low.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_low.inst.cfg index e2c1328fb27..e930a9415e9 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_low.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_low.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Low Quality definition = ratrig_base +name = Low Quality +version = 4 [metadata] +material = generic_petg +quality_type = low setting_version = 22 type = quality -quality_type = low -material = generic_petg variant = 0.5mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_standard.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_standard.inst.cfg index 35f4a1a08f5..92611f4b717 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_standard.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_standard.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = ratrig_base +name = Standard Quality +version = 4 [metadata] +material = generic_petg +quality_type = standard setting_version = 22 type = quality -quality_type = standard -material = generic_petg variant = 0.5mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_super.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_super.inst.cfg index 6b7995b239e..d147d877280 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_super.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_super.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Super Quality definition = ratrig_base +name = Super Quality +version = 4 [metadata] +material = generic_petg +quality_type = super setting_version = 22 type = quality -quality_type = super -material = generic_petg variant = 0.5mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.6_PETG_standard.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.6_PETG_standard.inst.cfg index 895fdcacb95..80dcecfe210 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.6_PETG_standard.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.6_PETG_standard.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = ratrig_base +name = Standard Quality +version = 4 [metadata] +material = generic_petg +quality_type = standard setting_version = 22 type = quality -quality_type = standard -material = generic_petg variant = 0.6mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*3 + diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.8_PETG_draft.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.8_PETG_draft.inst.cfg index a7d04cb10bb..4d6a9a56719 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.8_PETG_draft.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.8_PETG_draft.inst.cfg @@ -1,16 +1,17 @@ [general] -version = 4 -name = Draft Quality definition = ratrig_base +name = Draft Quality +version = 4 [metadata] +material = generic_petg +quality_type = draft setting_version = 22 type = quality -quality_type = draft -material = generic_petg variant = 0.8mm Nozzle [values] +cool_fan_speed = 40 speed_layer_0 = 30 wall_thickness = =line_width*2 -cool_fan_speed = 40 + diff --git a/resources/quality/ratrig_base/petg/ratrig_base_1.0_PETG_draft.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_1.0_PETG_draft.inst.cfg index 8ce4a9fef6f..bce8d9ccbae 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_1.0_PETG_draft.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_1.0_PETG_draft.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Draft Quality definition = ratrig_base +name = Draft Quality +version = 4 [metadata] +material = generic_petg +quality_type = draft setting_version = 22 type = quality -quality_type = draft -material = generic_petg variant = 1.0mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*3 + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_super.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_super.inst.cfg index 7b009267e31..ff81d0d74e0 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_super.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_super.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = ratrig_base +name = Super Quality +version = 4 [metadata] +material = generic_pla +quality_type = super setting_version = 22 type = quality -quality_type = super -material = generic_pla variant = 0.2mm Nozzle [values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_ultra.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_ultra.inst.cfg index 1a401148d50..10465057cf0 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_ultra.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Ultra Quality definition = ratrig_base +name = Ultra Quality +version = 4 [metadata] +material = generic_pla +quality_type = ultra setting_version = 22 type = quality -quality_type = ultra -material = generic_pla variant = 0.2mm Nozzle [values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_adaptive.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_adaptive.inst.cfg index de0067706e9..58b51ebf4a5 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_adaptive.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = ratrig_base +name = Dynamic Quality +version = 4 [metadata] +material = generic_pla +quality_type = adaptive setting_version = 22 type = quality -quality_type = adaptive -material = generic_pla variant = 0.3mm Nozzle [values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_low.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_low.inst.cfg index 31747bda1c9..3622a5927be 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_low.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_low.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Low Quality definition = ratrig_base +name = Low Quality +version = 4 [metadata] +material = generic_pla +quality_type = low setting_version = 22 type = quality -quality_type = low -material = generic_pla variant = 0.3mm Nozzle [values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_standard.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_standard.inst.cfg index 06000474af8..39c3d776746 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_standard.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_standard.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = ratrig_base +name = Standard Quality +version = 4 [metadata] +material = generic_pla +quality_type = standard setting_version = 22 type = quality -quality_type = standard -material = generic_pla variant = 0.3mm Nozzle [values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_super.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_super.inst.cfg index 24efb559803..5a6b3bd348a 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_super.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_super.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = ratrig_base +name = Super Quality +version = 4 [metadata] +material = generic_pla +quality_type = super setting_version = 22 type = quality -quality_type = super -material = generic_pla variant = 0.3mm Nozzle [values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_adaptive.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_adaptive.inst.cfg index de96e7d5fb0..4ca7bf94d40 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_adaptive.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = ratrig_base +name = Dynamic Quality +version = 4 [metadata] +material = generic_pla +quality_type = adaptive setting_version = 22 type = quality -quality_type = adaptive -material = generic_pla variant = 0.4mm Nozzle [values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_low.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_low.inst.cfg index 2e608f8d5cd..0c29c77bde9 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_low.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_low.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Low Quality definition = ratrig_base +name = Low Quality +version = 4 [metadata] +material = generic_pla +quality_type = low setting_version = 22 type = quality -quality_type = low -material = generic_pla variant = 0.4mm Nozzle [values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_standard.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_standard.inst.cfg index 5f18e1281bf..3211f4be860 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_standard.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_standard.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = ratrig_base +name = Standard Quality +version = 4 [metadata] +material = generic_pla +quality_type = standard setting_version = 22 type = quality -quality_type = standard -material = generic_pla variant = 0.4mm Nozzle [values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_super.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_super.inst.cfg index 121be5d3cf5..da6ea197b2d 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_super.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_super.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = ratrig_base +name = Super Quality +version = 4 [metadata] +material = generic_pla +quality_type = super setting_version = 22 type = quality -quality_type = super -material = generic_pla variant = 0.4mm Nozzle [values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_adaptive.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_adaptive.inst.cfg index 07dadf89dd2..f9d0649016c 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_adaptive.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = ratrig_base +name = Dynamic Quality +version = 4 [metadata] +material = generic_pla +quality_type = adaptive setting_version = 22 type = quality -quality_type = adaptive -material = generic_pla variant = 0.5mm Nozzle [values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_low.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_low.inst.cfg index 7d92038aee1..8f55fe30a4a 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_low.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_low.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Low Quality definition = ratrig_base +name = Low Quality +version = 4 [metadata] +material = generic_pla +quality_type = low setting_version = 22 type = quality -quality_type = low -material = generic_pla variant = 0.5mm Nozzle [values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_standard.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_standard.inst.cfg index ed786fb5749..f6c42831e39 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_standard.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_standard.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = ratrig_base +name = Standard Quality +version = 4 [metadata] +material = generic_pla +quality_type = standard setting_version = 22 type = quality -quality_type = standard -material = generic_pla variant = 0.5mm Nozzle [values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_super.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_super.inst.cfg index ec1c18b046e..67637bcfeaf 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_super.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_super.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = ratrig_base +name = Super Quality +version = 4 [metadata] +material = generic_pla +quality_type = super setting_version = 22 type = quality -quality_type = super -material = generic_pla variant = 0.5mm Nozzle [values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_draft.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_draft.inst.cfg index 816eaa0e0bb..bbafe934fed 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_draft.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_draft.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Draft Quality definition = ratrig_base +name = Draft Quality +version = 4 [metadata] +material = generic_pla +quality_type = draft setting_version = 22 type = quality -quality_type = draft -material = generic_pla variant = 0.6mm Nozzle [values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_low.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_low.inst.cfg index 0b92dbf172f..115341b00db 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_low.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_low.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Low Quality definition = ratrig_base +name = Low Quality +version = 4 [metadata] +material = generic_pla +quality_type = low setting_version = 22 type = quality -quality_type = low -material = generic_pla variant = 0.6mm Nozzle [values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_standard.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_standard.inst.cfg index ddd87bec72c..f365b98c5a8 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_standard.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_standard.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = ratrig_base +name = Standard Quality +version = 4 [metadata] +material = generic_pla +quality_type = standard setting_version = 22 type = quality -quality_type = standard -material = generic_pla variant = 0.6mm Nozzle [values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.8_PLA_draft.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.8_PLA_draft.inst.cfg index e1ab1dcab7a..eba25456a90 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.8_PLA_draft.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.8_PLA_draft.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Draft Quality definition = ratrig_base +name = Draft Quality +version = 4 [metadata] +material = generic_pla +quality_type = draft setting_version = 22 type = quality -quality_type = draft -material = generic_pla variant = 0.8mm Nozzle [values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_1.0_PLA_draft.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_1.0_PLA_draft.inst.cfg index 3dbb26c6ecb..ffe30e68ecd 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_1.0_PLA_draft.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_1.0_PLA_draft.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Draft Quality definition = ratrig_base +name = Draft Quality +version = 4 [metadata] +material = generic_pla +quality_type = draft setting_version = 22 type = quality -quality_type = draft -material = generic_pla variant = 1.0mm Nozzle [values] + diff --git a/resources/quality/ratrig_base/ratrig_base_global_adaptive.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_adaptive.inst.cfg index 29786dcdbed..7dc5adffbc5 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_adaptive.inst.cfg @@ -1,19 +1,20 @@ [general] -version = 4 -name = Dynamic Quality definition = ratrig_base +name = Dynamic Quality +version = 4 [metadata] +global_quality = True +quality_type = adaptive setting_version = 22 type = quality -quality_type = adaptive weight = -2 -global_quality = True [values] +adaptive_layer_height_enabled = true layer_height = 0.16 layer_height_0 = 0.20 +support_interface_height = =layer_height*6 top_bottom_thickness = =layer_height_0+layer_height*4 wall_thickness = =line_width*3 -support_interface_height = =layer_height*6 -adaptive_layer_height_enabled = true + diff --git a/resources/quality/ratrig_base/ratrig_base_global_draft.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_draft.inst.cfg index f6fcbb83488..6300ade8f6f 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_draft.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_draft.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Draft Quality definition = ratrig_base +name = Draft Quality +version = 4 [metadata] +global_quality = True +quality_type = draft setting_version = 22 type = quality -quality_type = draft weight = -5 -global_quality = True [values] layer_height = 0.32 layer_height_0 = 0.32 +support_interface_height = =layer_height*4 top_bottom_thickness = =layer_height_0+layer_height*3 wall_thickness = =line_width*2 -support_interface_height = =layer_height*4 + diff --git a/resources/quality/ratrig_base/ratrig_base_global_low.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_low.inst.cfg index ad32dcf779f..5cd4519ac2e 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_low.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_low.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Low Quality definition = ratrig_base +name = Low Quality +version = 4 [metadata] +global_quality = True +quality_type = low setting_version = 22 type = quality -quality_type = low weight = -4 -global_quality = True [values] layer_height = 0.28 layer_height_0 = 0.28 +support_interface_height = =layer_height*4 top_bottom_thickness = =layer_height_0+layer_height*3 wall_thickness = =line_width*2 -support_interface_height = =layer_height*4 + diff --git a/resources/quality/ratrig_base/ratrig_base_global_standard.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_standard.inst.cfg index 5f31222e117..d1bbff61ed2 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_standard.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_standard.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Standard Quality definition = ratrig_base +name = Standard Quality +version = 4 [metadata] +global_quality = True +quality_type = standard setting_version = 22 type = quality -quality_type = standard weight = -3 -global_quality = True [values] layer_height = 0.2 layer_height_0 = 0.2 +support_interface_height = =layer_height*4 top_bottom_thickness = =layer_height_0+layer_height*3 wall_thickness = =line_width*2 -support_interface_height = =layer_height*4 + diff --git a/resources/quality/ratrig_base/ratrig_base_global_super.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_super.inst.cfg index 3c6460675d7..e73f314a270 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_super.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_super.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Super Quality definition = ratrig_base +name = Super Quality +version = 4 [metadata] +global_quality = True +quality_type = super setting_version = 22 type = quality -quality_type = super weight = -1 -global_quality = True [values] layer_height = 0.12 layer_height_0 = 0.12 +support_interface_height = =layer_height*8 top_bottom_thickness = =layer_height_0+layer_height*6 wall_thickness = =line_width*3 -support_interface_height = =layer_height*8 + diff --git a/resources/quality/ratrig_base/ratrig_base_global_ultra.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_ultra.inst.cfg index c1257af0940..3864f618585 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_ultra.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_ultra.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Ultra Quality definition = ratrig_base +name = Ultra Quality +version = 4 [metadata] +global_quality = True +quality_type = ultra setting_version = 22 type = quality -quality_type = ultra weight = 0 -global_quality = True [values] layer_height = 0.08 layer_height_0 = 0.12 +support_interface_height = =layer_height*12 top_bottom_thickness = =layer_height_0+layer_height*10 wall_thickness = =line_width*3 -support_interface_height = =layer_height*12 + diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg index a7feb4f3e03..6425ec76666 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = ratrig_base +name = Dynamic Quality +version = 4 [metadata] +material = generic_tpu +quality_type = adaptive setting_version = 22 type = quality -quality_type = adaptive -material = generic_tpu variant = 0.3mm Nozzle [values] + diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_standard.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_standard.inst.cfg index de56d84ba88..8f7b5f7cfa0 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_standard.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_standard.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = ratrig_base +name = Standard Quality +version = 4 [metadata] +material = generic_tpu +quality_type = standard setting_version = 22 type = quality -quality_type = standard -material = generic_tpu variant = 0.3mm Nozzle [values] + diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_super.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_super.inst.cfg index 2b7b1e711e9..4b92df6df69 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_super.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_super.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = ratrig_base +name = Super Quality +version = 4 [metadata] +material = generic_tpu +quality_type = super setting_version = 22 type = quality -quality_type = super -material = generic_tpu variant = 0.3mm Nozzle [values] + diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg index dcfc502bae7..d89b488ce68 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = ratrig_base +name = Dynamic Quality +version = 4 [metadata] +material = generic_tpu +quality_type = adaptive setting_version = 22 type = quality -quality_type = adaptive -material = generic_tpu variant = 0.4mm Nozzle [values] + diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_standard.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_standard.inst.cfg index 7ff523b68e1..caa88e072a3 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_standard.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_standard.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = ratrig_base +name = Standard Quality +version = 4 [metadata] +material = generic_tpu +quality_type = standard setting_version = 22 type = quality -quality_type = standard -material = generic_tpu variant = 0.4mm Nozzle [values] + diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_super.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_super.inst.cfg index a65ad09744f..c37bd5df995 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_super.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_super.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = ratrig_base +name = Super Quality +version = 4 [metadata] +material = generic_tpu +quality_type = super setting_version = 22 type = quality -quality_type = super -material = generic_tpu variant = 0.4mm Nozzle [values] + diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg index 63e465243d7..4622803d56c 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = ratrig_base +name = Dynamic Quality +version = 4 [metadata] +material = generic_tpu +quality_type = adaptive setting_version = 22 type = quality -quality_type = adaptive -material = generic_tpu variant = 0.5mm Nozzle [values] + diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_standard.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_standard.inst.cfg index f568375f4c2..11b90f79a19 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_standard.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_standard.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = ratrig_base +name = Standard Quality +version = 4 [metadata] +material = generic_tpu +quality_type = standard setting_version = 22 type = quality -quality_type = standard -material = generic_tpu variant = 0.5mm Nozzle [values] + diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_super.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_super.inst.cfg index 1265c32061b..d3762fd8395 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_super.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_super.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = ratrig_base +name = Super Quality +version = 4 [metadata] +material = generic_tpu +quality_type = super setting_version = 22 type = quality -quality_type = super -material = generic_tpu variant = 0.5mm Nozzle [values] + diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.6_TPU_standard.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.6_TPU_standard.inst.cfg index df3d1941778..11a0e7cd4ec 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.6_TPU_standard.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.6_TPU_standard.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = ratrig_base +name = Standard Quality +version = 4 [metadata] +material = generic_tpu +quality_type = standard setting_version = 22 type = quality -quality_type = standard -material = generic_tpu variant = 0.6mm Nozzle [values] + diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.8_TPU_draft.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.8_TPU_draft.inst.cfg index 1db288b6b92..fb82909a5df 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.8_TPU_draft.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.8_TPU_draft.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Draft Quality definition = ratrig_base +name = Draft Quality +version = 4 [metadata] +material = generic_tpu +quality_type = draft setting_version = 22 type = quality -quality_type = draft -material = generic_tpu variant = 0.8mm Nozzle [values] + diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_1.0_TPU_draft.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_1.0_TPU_draft.inst.cfg index 3149efda364..013dbfdcbc7 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_1.0_TPU_draft.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_1.0_TPU_draft.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Draft Quality definition = ratrig_base +name = Draft Quality +version = 4 [metadata] +material = generic_tpu +quality_type = draft setting_version = 22 type = quality -quality_type = draft -material = generic_tpu variant = 1.0mm Nozzle [values] + diff --git a/resources/variants/ratrig/ratrig_base_0.2.inst.cfg b/resources/variants/ratrig/ratrig_base_0.2.inst.cfg index 752f0fc7b34..bb337f309ad 100644 --- a/resources/variants/ratrig/ratrig_base_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_base name = 0.2mm Nozzle version = 4 -definition = ratrig_base [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/ratrig/ratrig_base_0.3.inst.cfg b/resources/variants/ratrig/ratrig_base_0.3.inst.cfg index 2ad677756d5..ba4d9f74b9b 100644 --- a/resources/variants/ratrig/ratrig_base_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_base name = 0.3mm Nozzle version = 4 -definition = ratrig_base [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/ratrig/ratrig_base_0.4.inst.cfg b/resources/variants/ratrig/ratrig_base_0.4.inst.cfg index 652ae2b4c72..e7849987084 100644 --- a/resources/variants/ratrig/ratrig_base_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_base name = 0.4mm Nozzle version = 4 -definition = ratrig_base [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/ratrig/ratrig_base_0.6.inst.cfg b/resources/variants/ratrig/ratrig_base_0.6.inst.cfg index 9316e0d850c..da6595ad28a 100644 --- a/resources/variants/ratrig/ratrig_base_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_base name = 0.6mm Nozzle version = 4 -definition = ratrig_base [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/ratrig/ratrig_base_0.8.inst.cfg b/resources/variants/ratrig/ratrig_base_0.8.inst.cfg index ce329c7d6d0..d710879bd0e 100644 --- a/resources/variants/ratrig/ratrig_base_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_base name = 0.8mm Nozzle version = 4 -definition = ratrig_base [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/ratrig/ratrig_base_1.0.inst.cfg b/resources/variants/ratrig/ratrig_base_1.0.inst.cfg index c1b643b60ed..3a8241c15a4 100644 --- a/resources/variants/ratrig/ratrig_base_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_base name = 1.0mm Nozzle version = 4 -definition = ratrig_base [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.2.inst.cfg index d3ae97b4d40..495d2ba3a3d 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_vcore3_200 name = 0.2mm Nozzle version = 4 -definition = ratrig_vcore3_200 [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.3.inst.cfg index ad5127866bd..890d7bf30f9 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_vcore3_200 name = 0.3mm Nozzle version = 4 -definition = ratrig_vcore3_200 [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.4.inst.cfg index dc46c98586c..e640ef7adff 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_vcore3_200 name = 0.4mm Nozzle version = 4 -definition = ratrig_vcore3_200 [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.6.inst.cfg index 24bcfdf234c..b25e6ee64a5 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_vcore3_200 name = 0.6mm Nozzle version = 4 -definition = ratrig_vcore3_200 [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.8.inst.cfg index dc0d5b87e6b..9462fa77481 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_vcore3_200 name = 0.8mm Nozzle version = 4 -definition = ratrig_vcore3_200 [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/ratrig/ratrig_vcore3_200_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_1.0.inst.cfg index fa07e194ee7..f817ee13a87 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_vcore3_200 name = 1.0mm Nozzle version = 4 -definition = ratrig_vcore3_200 [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.2.inst.cfg index f7e73d584d5..a39e02aab2a 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_vcore3_300 name = 0.2mm Nozzle version = 4 -definition = ratrig_vcore3_300 [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.3.inst.cfg index a3d8ccc3859..a49459aac39 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_vcore3_300 name = 0.3mm Nozzle version = 4 -definition = ratrig_vcore3_300 [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.4.inst.cfg index aa60d459301..e0bf634a2c3 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_vcore3_300 name = 0.4mm Nozzle version = 4 -definition = ratrig_vcore3_300 [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.6.inst.cfg index cd036160ee5..c2026ce463f 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_vcore3_300 name = 0.6mm Nozzle version = 4 -definition = ratrig_vcore3_300 [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.8.inst.cfg index a9c568738f1..99d6d7e38b4 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_vcore3_300 name = 0.8mm Nozzle version = 4 -definition = ratrig_vcore3_300 [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/ratrig/ratrig_vcore3_300_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_1.0.inst.cfg index 96216c66797..7ad21e8c092 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_vcore3_300 name = 1.0mm Nozzle version = 4 -definition = ratrig_vcore3_300 [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.2.inst.cfg index 73cf813b9e4..bd02a121255 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_vcore3_400 name = 0.2mm Nozzle version = 4 -definition = ratrig_vcore3_400 [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.3.inst.cfg index 97a30ccae3c..85a585d692b 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_vcore3_400 name = 0.3mm Nozzle version = 4 -definition = ratrig_vcore3_400 [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.4.inst.cfg index 38721094176..0bcee4f0115 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_vcore3_400 name = 0.4mm Nozzle version = 4 -definition = ratrig_vcore3_400 [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.6.inst.cfg index bacbc752794..0b7ea7fc2e0 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_vcore3_400 name = 0.6mm Nozzle version = 4 -definition = ratrig_vcore3_400 [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.8.inst.cfg index 96e1f89d1af..e5baf012f09 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_vcore3_400 name = 0.8mm Nozzle version = 4 -definition = ratrig_vcore3_400 [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/ratrig/ratrig_vcore3_400_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_1.0.inst.cfg index 516ab972755..4b13608cf1e 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_vcore3_400 name = 1.0mm Nozzle version = 4 -definition = ratrig_vcore3_400 [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.2.inst.cfg index 5d8f552d62c..3866031f655 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_vcore3_500 name = 0.2mm Nozzle version = 4 -definition = ratrig_vcore3_500 [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.3.inst.cfg index 89773c5026d..c3dcc2fa25d 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_vcore3_500 name = 0.3mm Nozzle version = 4 -definition = ratrig_vcore3_500 [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.4.inst.cfg index 4d97550b3ec..8c1911df415 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_vcore3_500 name = 0.4mm Nozzle version = 4 -definition = ratrig_vcore3_500 [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.6.inst.cfg index 2092d5c76a9..fa9170ee161 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_vcore3_500 name = 0.6mm Nozzle version = 4 -definition = ratrig_vcore3_500 [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.8.inst.cfg index 9810346ad64..ee71589ca25 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_vcore3_500 name = 0.8mm Nozzle version = 4 -definition = ratrig_vcore3_500 [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/ratrig/ratrig_vcore3_500_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_1.0.inst.cfg index cc790cc53e3..6e91017f1e3 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_vcore3_500 name = 1.0mm Nozzle version = 4 -definition = ratrig_vcore3_500 [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/ratrig/ratrig_vminion_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.2.inst.cfg index 0a90304e946..0f9433e1b2d 100644 --- a/resources/variants/ratrig/ratrig_vminion_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_vminion name = 0.2mm Nozzle version = 4 -definition = ratrig_vminion [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/ratrig/ratrig_vminion_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.3.inst.cfg index 36c7d9bbca4..0faf86e4d0f 100644 --- a/resources/variants/ratrig/ratrig_vminion_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_vminion name = 0.3mm Nozzle version = 4 -definition = ratrig_vminion [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/ratrig/ratrig_vminion_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.4.inst.cfg index 50bcd8f69b5..0d126748d18 100644 --- a/resources/variants/ratrig/ratrig_vminion_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_vminion name = 0.4mm Nozzle version = 4 -definition = ratrig_vminion [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/ratrig/ratrig_vminion_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.6.inst.cfg index c4ab87616aa..189218b1515 100644 --- a/resources/variants/ratrig/ratrig_vminion_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_vminion name = 0.6mm Nozzle version = 4 -definition = ratrig_vminion [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/ratrig/ratrig_vminion_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.8.inst.cfg index 8fb2a33b608..e8a6437abdd 100644 --- a/resources/variants/ratrig/ratrig_vminion_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_vminion name = 0.8mm Nozzle version = 4 -definition = ratrig_vminion [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/ratrig/ratrig_vminion_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vminion_1.0.inst.cfg index c946cfd5f06..9a552948533 100644 --- a/resources/variants/ratrig/ratrig_vminion_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = ratrig_vminion name = 1.0mm Nozzle version = 4 -definition = ratrig_vminion [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_size = 1.0 + From fcf1e63160007a894b8dddf8cf0a32438f95b6cb Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Thu, 1 Feb 2024 09:29:47 +0100 Subject: [PATCH 438/765] It is now possible to generate the PCB file CURA-11561 --- plugins/PCBWriter/PCBDialog.py | 51 ++- plugins/PCBWriter/PCBDialog.qml | 64 +--- plugins/PCBWriter/PCBWriter.py | 443 +++++++++++++++++++++-- plugins/PCBWriter/SettingExport.py | 19 +- plugins/PCBWriter/SettingSelection.qml | 3 +- plugins/PCBWriter/SettingsExportGroup.py | 3 +- plugins/PCBWriter/SettingsExportModel.py | 29 +- plugins/PCBWriter/__init__.py | 12 +- 8 files changed, 511 insertions(+), 113 deletions(-) diff --git a/plugins/PCBWriter/PCBDialog.py b/plugins/PCBWriter/PCBDialog.py index 385b60272ed..089fa259ac6 100644 --- a/plugins/PCBWriter/PCBDialog.py +++ b/plugins/PCBWriter/PCBDialog.py @@ -1,43 +1,56 @@ # Copyright (c) 2024 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. -from PyQt6.QtCore import pyqtSignal, QObject, pyqtProperty, QCoreApplication, QUrl, pyqtSlot -from PyQt6.QtGui import QDesktopServices -from typing import List, Optional, Dict, cast - -from cura.Machines.Models.MachineListModel import MachineListModel -from cura.Machines.Models.IntentTranslations import intent_translations -from cura.Settings.GlobalStack import GlobalStack -from UM.Application import Application +import os + +from PyQt6.QtCore import pyqtSignal, QObject from UM.FlameProfiler import pyqtSlot from UM.i18n import i18nCatalog -from UM.Logger import Logger -from UM.Message import Message -from UM.PluginRegistry import PluginRegistry -from UM.Settings.ContainerRegistry import ContainerRegistry - -import os -import threading -import time from cura.CuraApplication import CuraApplication +from .SettingsExportModel import SettingsExportModel + i18n_catalog = i18nCatalog("cura") class PCBDialog(QObject): - finished = pyqtSignal() + finished = pyqtSignal(bool) def __init__(self, parent = None) -> None: super().__init__(parent) plugin_path = os.path.dirname(__file__) dialog_path = os.path.join(plugin_path, 'PCBDialog.qml') - self._view = CuraApplication.getInstance().createQmlComponent(dialog_path, {"manager": self}) + self._model = SettingsExportModel() + self._view = CuraApplication.getInstance().createQmlComponent(dialog_path, + {"manager": self, + "settingsExportModel": self._model}) + self._view.accepted.connect(self._onAccepted) + self._view.rejected.connect(self._onRejected) + self._finished = False + self._accepted = False def show(self) -> None: self._view.show() + def getModel(self) -> SettingsExportModel: + return self._model + @pyqtSlot() def notifyClosed(self): - self.finished.emit() + self._onFinished() + + @pyqtSlot() + def _onAccepted(self): + self._accepted = True + self._onFinished() + + @pyqtSlot() + def _onRejected(self): + self._onFinished() + + def _onFinished(self): + if not self._finished: # Make sure we don't send the finished signal twice, whatever happens + self._finished = True + self.finished.emit(self._accepted) diff --git a/plugins/PCBWriter/PCBDialog.qml b/plugins/PCBWriter/PCBDialog.qml index ddf99d5e1f5..8264e3ee96e 100644 --- a/plugins/PCBWriter/PCBDialog.qml +++ b/plugins/PCBWriter/PCBDialog.qml @@ -12,7 +12,7 @@ import PCBWriter 1.0 as PCBWriter UM.Dialog { - id: workspaceDialog + id: exportDialog title: catalog.i18nc("@title:window", "Export pre-configured build batch") margin: UM.Theme.getSize("default_margin").width @@ -23,8 +23,6 @@ UM.Dialog headerComponent: Rectangle { - UM.I18nCatalog { id: catalog; name: "cura" } - height: childrenRect.height + 2 * UM.Theme.getSize("default_margin").height color: UM.Theme.getColor("main_background") @@ -62,7 +60,7 @@ UM.Dialog anchors.fill: parent color: UM.Theme.getColor("main_background") - PCBWriter.SettingsExportModel{ id: settingsExportModel } + UM.I18nCatalog { id: catalog; name: "cura" } ListView { @@ -79,55 +77,19 @@ UM.Dialog } } - footerComponent: Rectangle - { - color: warning ? UM.Theme.getColor("warning") : "transparent" - anchors.bottom: parent.bottom - width: parent.width - height: childrenRect.height + (warning ? 2 * workspaceDialog.margin : workspaceDialog.margin) - - Column + rightButtons: + [ + Cura.TertiaryButton { - height: childrenRect.height - spacing: workspaceDialog.margin - - anchors.leftMargin: workspaceDialog.margin - anchors.rightMargin: workspaceDialog.margin - anchors.bottomMargin: workspaceDialog.margin - anchors.topMargin: warning ? workspaceDialog.margin : 0 - - anchors.left: parent.left - anchors.right: parent.right - anchors.top: parent.top - - RowLayout - { - id: warningRow - height: childrenRect.height - visible: warning - spacing: workspaceDialog.margin - UM.ColorImage - { - width: UM.Theme.getSize("extruder_icon").width - height: UM.Theme.getSize("extruder_icon").height - source: UM.Theme.getIcon("Warning") - } - - UM.Label - { - id: warningText - text: catalog.i18nc("@label", "This project contains materials or plugins that are currently not installed in Cura.
    Install the missing packages and reopen the project.") - } - } - - Loader - { - width: parent.width - height: childrenRect.height - sourceComponent: buttonRow - } + text: catalog.i18nc("@action:button", "Cancel") + onClicked: reject() + }, + Cura.PrimaryButton + { + text: catalog.i18nc("@action:button", "Save project") + onClicked: accept() } - } + ] buttonSpacing: UM.Theme.getSize("wide_margin").width diff --git a/plugins/PCBWriter/PCBWriter.py b/plugins/PCBWriter/PCBWriter.py index 26e552f583c..794eac9d4a4 100644 --- a/plugins/PCBWriter/PCBWriter.py +++ b/plugins/PCBWriter/PCBWriter.py @@ -1,71 +1,460 @@ # Copyright (c) 2024 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. import json +import zipfile +import datetime +import numpy import re - +from dataclasses import asdict +from typing import Optional, cast, List, Dict, Pattern, Set, Union, Mapping, Any from threading import Lock +from io import StringIO # For converting g-code to bytes. -from typing import Optional, cast, List, Dict, Pattern, Set +import pySavitar as Savitar + +from PyQt6.QtCore import QBuffer from UM.Mesh.MeshWriter import MeshWriter -from UM.Math.Vector import Vector from UM.Logger import Logger -from UM.Math.Matrix import Matrix -from UM.Application import Application -from UM.Message import Message -from UM.Resources import Resources from UM.Scene.SceneNode import SceneNode +from UM.Scene.Iterator.DepthFirstIterator import DepthFirstIterator +from UM.i18n import i18nCatalog +from UM.Settings.InstanceContainer import InstanceContainer +from UM.Settings.SettingFunction import SettingFunction from UM.Settings.ContainerRegistry import ContainerRegistry -from UM.Settings.EmptyInstanceContainer import EmptyInstanceContainer -from PyQt6.QtQml import qmlRegisterType +from UM.Math.Matrix import Matrix +from UM.Math.Vector import Vector from cura.CuraApplication import CuraApplication from cura.CuraPackageManager import CuraPackageManager from cura.Settings import CuraContainerStack +from cura.Settings.GlobalStack import GlobalStack from cura.Utils.Threading import call_on_qt_thread from cura.Snapshot import Snapshot -from PyQt6.QtCore import QBuffer - -import pySavitar as Savitar - -import numpy -import datetime - -import zipfile -import UM.Application - from .PCBDialog import PCBDialog from .SettingsExportModel import SettingsExportModel from .SettingsExportGroup import SettingsExportGroup -from UM.i18n import i18nCatalog +MYPY = False +try: + if not MYPY: + import xml.etree.cElementTree as ET +except ImportError: + Logger.log("w", "Unable to load cElementTree, switching to slower version") + import xml.etree.ElementTree as ET + catalog = i18nCatalog("cura") +THUMBNAIL_PATH = "Metadata/thumbnail.png" +MODEL_PATH = "3D/3dmodel.model" +PACKAGE_METADATA_PATH = "Cura/packages.json" +USER_SETTINGS_PATH = "Cura/user-settings.json" + class PCBWriter(MeshWriter): def __init__(self): super().__init__() - - qmlRegisterType(SettingsExportModel, "PCBWriter", 1, 0, "SettingsExportModel") - qmlRegisterType(SettingsExportGroup, "PCBWriter", 1, 0, "SettingsExportGroup") - #qmlRegisterUncreatableType(SettingsExportGroup.Category, "PCBWriter", 1, 0, "SettingsExportGroup.Category") + self._namespaces = { + "3mf": "http://schemas.microsoft.com/3dmanufacturing/core/2015/02", + "content-types": "http://schemas.openxmlformats.org/package/2006/content-types", + "relationships": "http://schemas.openxmlformats.org/package/2006/relationships", + "cura": "http://software.ultimaker.com/xml/cura/3mf/2015/10" + } self._config_dialog = None self._main_thread_lock = Lock() + self._success = False + self._export_model = None def write(self, stream, nodes, mode = MeshWriter.OutputMode.BinaryMode) -> bool: + self._success = False + self._export_model = None + self._main_thread_lock.acquire() # Start configuration window in main application thread CuraApplication.getInstance().callLater(self._write, stream, nodes, mode) self._main_thread_lock.acquire() # Block until lock has been released, meaning the config is over self._main_thread_lock.release() - return True + + if self._export_model is not None: + archive = zipfile.ZipFile(stream, "w", compression=zipfile.ZIP_DEFLATED) + try: + model_file = zipfile.ZipInfo(MODEL_PATH) + # Because zipfile is stupid and ignores archive-level compression settings when writing with ZipInfo. + model_file.compress_type = zipfile.ZIP_DEFLATED + + # Create content types file + content_types_file = zipfile.ZipInfo("[Content_Types].xml") + content_types_file.compress_type = zipfile.ZIP_DEFLATED + content_types = ET.Element("Types", xmlns=self._namespaces["content-types"]) + rels_type = ET.SubElement(content_types, "Default", Extension="rels", + ContentType="application/vnd.openxmlformats-package.relationships+xml") + model_type = ET.SubElement(content_types, "Default", Extension="model", + ContentType="application/vnd.ms-package.3dmanufacturing-3dmodel+xml") + + # Create _rels/.rels file + relations_file = zipfile.ZipInfo("_rels/.rels") + relations_file.compress_type = zipfile.ZIP_DEFLATED + relations_element = ET.Element("Relationships", xmlns=self._namespaces["relationships"]) + model_relation_element = ET.SubElement(relations_element, "Relationship", Target="/" + MODEL_PATH, + Id="rel0", + Type="http://schemas.microsoft.com/3dmanufacturing/2013/01/3dmodel") + + # Attempt to add a thumbnail + snapshot = self._createSnapshot() + if snapshot: + thumbnail_buffer = QBuffer() + thumbnail_buffer.open(QBuffer.OpenModeFlag.ReadWrite) + snapshot.save(thumbnail_buffer, "PNG") + + thumbnail_file = zipfile.ZipInfo(THUMBNAIL_PATH) + # Don't try to compress snapshot file, because the PNG is pretty much as compact as it will get + archive.writestr(thumbnail_file, thumbnail_buffer.data()) + + # Add PNG to content types file + thumbnail_type = ET.SubElement(content_types, "Default", Extension="png", ContentType="image/png") + # Add thumbnail relation to _rels/.rels file + thumbnail_relation_element = ET.SubElement(relations_element, "Relationship", + Target="/" + THUMBNAIL_PATH, Id="rel1", + Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/thumbnail") + + # Write material metadata + packages_metadata = self._getMaterialPackageMetadata() + self._getPluginPackageMetadata() + self._storeMetadataJson({"packages": packages_metadata}, archive, PACKAGE_METADATA_PATH) + + # Write user settings data + user_settings_data = self._getUserSettings(self._export_model) + self._storeMetadataJson(user_settings_data, archive, USER_SETTINGS_PATH) + + savitar_scene = Savitar.Scene() + + scene_metadata = CuraApplication.getInstance().getController().getScene().getMetaData() + + for key, value in scene_metadata.items(): + savitar_scene.setMetaDataEntry(key, value) + + current_time_string = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S") + if "Application" not in scene_metadata: + # This might sound a bit strange, but this field should store the original application that created + # the 3mf. So if it was already set, leave it to whatever it was. + savitar_scene.setMetaDataEntry("Application", + CuraApplication.getInstance().getApplicationDisplayName()) + if "CreationDate" not in scene_metadata: + savitar_scene.setMetaDataEntry("CreationDate", current_time_string) + + savitar_scene.setMetaDataEntry("ModificationDate", current_time_string) + + transformation_matrix = Matrix() + transformation_matrix._data[1, 1] = 0 + transformation_matrix._data[1, 2] = -1 + transformation_matrix._data[2, 1] = 1 + transformation_matrix._data[2, 2] = 0 + + global_container_stack = CuraApplication.getInstance().getGlobalContainerStack() + # Second step: 3MF defines the left corner of the machine as center, whereas cura uses the center of the + # build volume. + if global_container_stack: + translation_vector = Vector(x=global_container_stack.getProperty("machine_width", "value") / 2, + y=global_container_stack.getProperty("machine_depth", "value") / 2, + z=0) + translation_matrix = Matrix() + translation_matrix.setByTranslation(translation_vector) + transformation_matrix.preMultiply(translation_matrix) + + root_node = CuraApplication.getInstance().getController().getScene().getRoot() + exported_model_settings = PCBWriter._extractModelExportedSettings(self._export_model) + for node in nodes: + if node == root_node: + for root_child in node.getChildren(): + savitar_node = PCBWriter._convertUMNodeToSavitarNode(root_child, + transformation_matrix, + exported_model_settings) + if savitar_node: + savitar_scene.addSceneNode(savitar_node) + else: + savitar_node = self._convertUMNodeToSavitarNode(node, + transformation_matrix, + exported_model_settings) + if savitar_node: + savitar_scene.addSceneNode(savitar_node) + + parser = Savitar.ThreeMFParser() + scene_string = parser.sceneToString(savitar_scene) + + archive.writestr(model_file, scene_string) + archive.writestr(content_types_file, + b' \n' + ET.tostring(content_types)) + archive.writestr(relations_file, + b' \n' + ET.tostring(relations_element)) + except Exception as error: + Logger.logException("e", "Error writing zip file") + self.setInformation(str(error)) + return False + finally: + archive.close() + + return True + else: + return False def _write(self, stream, nodes, mode): self._config_dialog = PCBDialog() - self._config_dialog.finished.connect(self._onDialogClosed) + self._config_dialog.finished.connect(self._onDialogFinished) self._config_dialog.show() - def _onDialogClosed(self): + def _onDialogFinished(self, accepted: bool): + if accepted: + self._export_model = self._config_dialog.getModel() + self._main_thread_lock.release() + + @staticmethod + def _extractModelExportedSettings(model: SettingsExportModel) -> Mapping[str, Set[str]]: + extra_settings = {} + + for group in model.settingsGroups: + if group.category == SettingsExportGroup.Category.Model: + exported_model_settings = set() + + for exported_setting in group.settings: + if exported_setting.selected: + exported_model_settings.add(exported_setting.id) + + extra_settings[group.category_details] = exported_model_settings + + return extra_settings + + @staticmethod + def _convertUMNodeToSavitarNode(um_node, + transformation: Matrix = Matrix(), + exported_settings: Mapping[str, Set[str]] = None): + """Convenience function that converts an Uranium SceneNode object to a SavitarSceneNode + + :returns: Uranium Scene node. + """ + if not isinstance(um_node, SceneNode): + return None + + active_build_plate_nr = CuraApplication.getInstance().getMultiBuildPlateModel().activeBuildPlate + if um_node.callDecoration("getBuildPlateNumber") != active_build_plate_nr: + return + + savitar_node = Savitar.SceneNode() + savitar_node.setName(um_node.getName()) + + node_matrix = Matrix() + mesh_data = um_node.getMeshData() + # compensate for original center position, if object(s) is/are not around its zero position + if mesh_data is not None: + extents = mesh_data.getExtents() + if extents is not None: + # We use a different coordinate space while writing, so flip Z and Y + center_vector = Vector(extents.center.x, extents.center.z, extents.center.y) + node_matrix.setByTranslation(center_vector) + node_matrix.multiply(um_node.getLocalTransformation()) + + matrix_string = PCBWriter._convertMatrixToString(node_matrix.preMultiply(transformation)) + + savitar_node.setTransformation(matrix_string) + if mesh_data is not None: + savitar_node.getMeshData().setVerticesFromBytes(mesh_data.getVerticesAsByteArray()) + indices_array = mesh_data.getIndicesAsByteArray() + if indices_array is not None: + savitar_node.getMeshData().setFacesFromBytes(indices_array) + else: + savitar_node.getMeshData().setFacesFromBytes( + numpy.arange(mesh_data.getVertices().size / 3, dtype=numpy.int32).tostring()) + + # Handle per object settings (if any) + stack = um_node.callDecoration("getStack") + if stack is not None: + if um_node.getName() in exported_settings: + model_exported_settings = exported_settings[um_node.getName()] + + # Get values for all exported settings & save them. + for key in model_exported_settings: + savitar_node.setSetting("cura:" + key, str(stack.getProperty(key, "value"))) + + # Store the metadata. + for key, value in um_node.metadata.items(): + savitar_node.setSetting(key, value) + + for child_node in um_node.getChildren(): + # only save the nodes on the active build plate + if child_node.callDecoration("getBuildPlateNumber") != active_build_plate_nr: + continue + savitar_child_node = PCBWriter._convertUMNodeToSavitarNode(child_node, + exported_settings = exported_settings) + if savitar_child_node is not None: + savitar_node.addChild(savitar_child_node) + + return savitar_node + + @call_on_qt_thread # must be called from the main thread because of OpenGL + def _createSnapshot(self): + Logger.log("d", "Creating thumbnail image...") + if not CuraApplication.getInstance().isVisible: + Logger.log("w", "Can't create snapshot when renderer not initialized.") + return None + try: + snapshot = Snapshot.snapshot(width=300, height=300) + except: + Logger.logException("w", "Failed to create snapshot image") + return None + + return snapshot + + @staticmethod + def _storeMetadataJson(metadata: Union[Dict[str, List[Dict[str, str]]], Dict[str, Dict[str, Any]]], + archive: zipfile.ZipFile, path + : str) -> None: + """Stores metadata inside archive path as json file""" + metadata_file = zipfile.ZipInfo(path) + # We have to set the compress type of each file as well (it doesn't keep the type of the entire archive) + metadata_file.compress_type = zipfile.ZIP_DEFLATED + archive.writestr(metadata_file, + json.dumps(metadata, separators=(", ", ": "), indent=4, skipkeys=True, ensure_ascii=False)) + + @staticmethod + def _getUserSettings(model: SettingsExportModel) -> Dict[str, Dict[str, Any]]: + user_settings = {} + + for group in model.settingsGroups: + category = '' + if group.category == SettingsExportGroup.Category.Global: + category = 'global' + elif group.category == SettingsExportGroup.Category.Extruder: + category = f"extruder_{group.extruder_index}" + + if len(category) > 0: + settings_values = {} + stack = group.stack + + for setting in group.settings: + if setting.selected: + settings_values[setting.id] = stack.getProperty(setting.id, "value") + + user_settings[category] = settings_values + + return user_settings + + @staticmethod + def _getPluginPackageMetadata() -> List[Dict[str, str]]: + """Get metadata for all backend plugins that are used in the project. + + :return: List of material metadata dictionaries. + """ + + backend_plugin_enum_value_regex = re.compile( + r"PLUGIN::(?P\w+)@(?P\d+.\d+.\d+)::(?P\w+)") + # This regex parses enum values to find if they contain custom + # backend engine values. These custom enum values are in the format + # PLUGIN::@:: + # where + # - plugin_id is the id of the plugin + # - version is in the semver format + # - value is the value of the enum + + plugin_ids = set() + + def addPluginIdsInStack(stack: CuraContainerStack) -> None: + for key in stack.getAllKeys(): + value = str(stack.getProperty(key, "value")) + for plugin_id, _version, _value in backend_plugin_enum_value_regex.findall(value): + plugin_ids.add(plugin_id) + + # Go through all stacks and find all the plugin id contained in the project + global_stack = CuraApplication.getInstance().getMachineManager().activeMachine + addPluginIdsInStack(global_stack) + + for container in global_stack.getContainers(): + addPluginIdsInStack(container) + + for extruder_stack in global_stack.extruderList: + addPluginIdsInStack(extruder_stack) + + for container in extruder_stack.getContainers(): + addPluginIdsInStack(container) + + metadata = {} + + package_manager = cast(CuraPackageManager, CuraApplication.getInstance().getPackageManager()) + for plugin_id in plugin_ids: + package_data = package_manager.getInstalledPackageInfo(plugin_id) + + metadata[plugin_id] = { + "id": plugin_id, + "display_name": package_data.get("display_name") if package_data.get("display_name") else "", + "package_version": package_data.get("package_version") if package_data.get("package_version") else "", + "sdk_version_semver": package_data.get("sdk_version_semver") if package_data.get( + "sdk_version_semver") else "", + "type": "plugin", + } + + # Storing in a dict and fetching values to avoid duplicates + return list(metadata.values()) + + @staticmethod + def _getMaterialPackageMetadata() -> List[Dict[str, str]]: + """Get metadata for installed materials in active extruder stack, this does not include bundled materials. + + :return: List of material metadata dictionaries. + """ + metadata = {} + + package_manager = cast(CuraPackageManager, CuraApplication.getInstance().getPackageManager()) + + for extruder in CuraApplication.getInstance().getExtruderManager().getActiveExtruderStacks(): + if not extruder.isEnabled: + # Don't export materials not in use + continue + + if isinstance(extruder.material, type(ContainerRegistry.getInstance().getEmptyInstanceContainer())): + # This is an empty material container, no material to export + continue + + if package_manager.isMaterialBundled(extruder.material.getFileName(), + extruder.material.getMetaDataEntry("GUID")): + # Don't export bundled materials + continue + + package_id = package_manager.getMaterialFilePackageId(extruder.material.getFileName(), + extruder.material.getMetaDataEntry("GUID")) + package_data = package_manager.getInstalledPackageInfo(package_id) + + # We failed to find the package for this material + if not package_data: + Logger.info(f"Could not find package for material in extruder {extruder.id}, skipping.") + continue + + material_metadata = { + "id": package_id, + "display_name": package_data.get("display_name") if package_data.get("display_name") else "", + "package_version": package_data.get("package_version") if package_data.get("package_version") else "", + "sdk_version_semver": package_data.get("sdk_version_semver") if package_data.get( + "sdk_version_semver") else "", + "type": "material", + } + + metadata[package_id] = material_metadata + + # Storing in a dict and fetching values to avoid duplicates + return list(metadata.values()) + + @staticmethod + def _convertMatrixToString(matrix): + result = "" + result += str(matrix._data[0, 0]) + " " + result += str(matrix._data[1, 0]) + " " + result += str(matrix._data[2, 0]) + " " + result += str(matrix._data[0, 1]) + " " + result += str(matrix._data[1, 1]) + " " + result += str(matrix._data[2, 1]) + " " + result += str(matrix._data[0, 2]) + " " + result += str(matrix._data[1, 2]) + " " + result += str(matrix._data[2, 2]) + " " + result += str(matrix._data[0, 3]) + " " + result += str(matrix._data[1, 3]) + " " + result += str(matrix._data[2, 3]) + return result \ No newline at end of file diff --git a/plugins/PCBWriter/SettingExport.py b/plugins/PCBWriter/SettingExport.py index 0a761bb6b99..73dd8188977 100644 --- a/plugins/PCBWriter/SettingExport.py +++ b/plugins/PCBWriter/SettingExport.py @@ -1,15 +1,17 @@ # Copyright (c) 2024 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. -from PyQt6.QtCore import QObject, pyqtProperty +from PyQt6.QtCore import QObject, pyqtProperty, pyqtSignal -class SettingsExport(QObject): +class SettingExport(QObject): - def __init__(self, name, value): + def __init__(self, id, name, value): super().__init__() + self.id = id self._name = name self._value = value + self._selected = True @pyqtProperty(str, constant=True) def name(self): @@ -18,3 +20,14 @@ def name(self): @pyqtProperty(str, constant=True) def value(self): return self._value + + selectedChanged = pyqtSignal(bool) + + def setSelected(self, selected): + if selected != self._selected: + self._selected = selected + self.selectedChanged.emit(self._selected) + + @pyqtProperty(bool, fset = setSelected, notify = selectedChanged) + def selected(self): + return self._selected diff --git a/plugins/PCBWriter/SettingSelection.qml b/plugins/PCBWriter/SettingSelection.qml index 9b09593a7dc..6439542f3f6 100644 --- a/plugins/PCBWriter/SettingSelection.qml +++ b/plugins/PCBWriter/SettingSelection.qml @@ -17,7 +17,8 @@ RowLayout { text: modelData.name Layout.preferredWidth: UM.Theme.getSize("setting").width - checked: true + checked: modelData.selected + onClicked: modelData.selected = checked } UM.Label diff --git a/plugins/PCBWriter/SettingsExportGroup.py b/plugins/PCBWriter/SettingsExportGroup.py index 2b21c42b786..cc3fc7b4f54 100644 --- a/plugins/PCBWriter/SettingsExportGroup.py +++ b/plugins/PCBWriter/SettingsExportGroup.py @@ -14,8 +14,9 @@ class Category(IntEnum): Extruder = 1 Model = 2 - def __init__(self, name, category, settings, category_details = '', extruder_index = 0, extruder_color = ''): + def __init__(self, stack, name, category, settings, category_details = '', extruder_index = 0, extruder_color = ''): super().__init__() + self.stack = stack self._name = name self._settings = settings self._category = category diff --git a/plugins/PCBWriter/SettingsExportModel.py b/plugins/PCBWriter/SettingsExportModel.py index b09717298a7..992adeb0896 100644 --- a/plugins/PCBWriter/SettingsExportModel.py +++ b/plugins/PCBWriter/SettingsExportModel.py @@ -1,13 +1,21 @@ # Copyright (c) 2024 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. +from dataclasses import asdict +from typing import Optional, cast, List, Dict, Pattern, Set + from PyQt6.QtCore import QObject, pyqtProperty -from .SettingsExportGroup import SettingsExportGroup -from .SettingExport import SettingsExport -from cura.CuraApplication import CuraApplication from UM.Settings.SettingDefinition import SettingDefinition +from UM.Settings.InstanceContainer import InstanceContainer +from UM.Settings.SettingFunction import SettingFunction + +from cura.CuraApplication import CuraApplication from cura.Settings.ExtruderManager import ExtruderManager +from cura.Settings.GlobalStack import GlobalStack + +from .SettingsExportGroup import SettingsExportGroup +from .SettingExport import SettingExport class SettingsExportModel(QObject): @@ -61,7 +69,8 @@ def __init__(self, parent = None): # Display global settings global_stack = application.getGlobalContainerStack() - self._settings_groups.append(SettingsExportGroup("Global settings", + self._settings_groups.append(SettingsExportGroup(global_stack, + "Global settings", SettingsExportGroup.Category.Global, self._exportSettings(global_stack))) @@ -72,7 +81,8 @@ def __init__(self, parent = None): if extruder_stack.material: color = extruder_stack.material.getMetaDataEntry("color_code") - self._settings_groups.append(SettingsExportGroup("Extruder settings", + self._settings_groups.append(SettingsExportGroup(extruder_stack, + "Extruder settings", SettingsExportGroup.Category.Extruder, self._exportSettings(extruder_stack), extruder_index=extruder_stack.position, @@ -83,13 +93,14 @@ def __init__(self, parent = None): for scene_node in scene_root.getChildren(): per_model_stack = scene_node.callDecoration("getStack") if per_model_stack is not None: - self._settings_groups.append(SettingsExportGroup("Model settings", + self._settings_groups.append(SettingsExportGroup(per_model_stack, + "Model settings", SettingsExportGroup.Category.Model, self._exportSettings(per_model_stack), scene_node.getName())) @pyqtProperty(list, constant=True) - def settingsGroups(self): + def settingsGroups(self) -> List[SettingsExportGroup]: return self._settings_groups @staticmethod @@ -110,6 +121,6 @@ def _exportSettings(settings_stack): else: value = str(value) - settings_export.append(SettingsExport(label, value)) + settings_export.append(SettingExport(setting_to_export, label, value)) - return settings_export \ No newline at end of file + return settings_export diff --git a/plugins/PCBWriter/__init__.py b/plugins/PCBWriter/__init__.py index 3ec2eba95f0..da4205a7d76 100644 --- a/plugins/PCBWriter/__init__.py +++ b/plugins/PCBWriter/__init__.py @@ -2,9 +2,14 @@ # Cura is released under the terms of the LGPLv3 or higher. import sys -from . import PCBWriter +from PyQt6.QtQml import qmlRegisterType + from UM.i18n import i18nCatalog +from . import PCBWriter +from .SettingsExportModel import SettingsExportModel +from .SettingsExportGroup import SettingsExportGroup + i18n_catalog = i18nCatalog("cura") def getMetaData(): @@ -12,10 +17,13 @@ def getMetaData(): "output": [{ "extension": "pcb", "description": i18n_catalog.i18nc("@item:inlistbox", "Pre-Configured Batch file"), - "mime_type": "application/vnd.um.preconfigured-batch+3mf", + "mime_type": "application/x-pcb", "mode": PCBWriter.PCBWriter.OutputMode.BinaryMode }] }} def register(app): + qmlRegisterType(SettingsExportModel, "PCBWriter", 1, 0, "SettingsExportModel") + qmlRegisterType(SettingsExportGroup, "PCBWriter", 1, 0, "SettingsExportGroup") + return {"mesh_writer": PCBWriter.PCBWriter() } From 38b67f8015e508c162c65ba35e25cdbe760d51cb Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Thu, 1 Feb 2024 10:34:19 +0100 Subject: [PATCH 439/765] Now displaying a help icon and value units CURA-11561 --- plugins/3MFReader/WorkspaceSection.qml | 31 ++++-------------------- plugins/PCBWriter/SettingExport.py | 9 +++++-- plugins/PCBWriter/SettingSelection.qml | 12 ++++++++- plugins/PCBWriter/SettingsExportModel.py | 10 +++++--- 4 files changed, 30 insertions(+), 32 deletions(-) diff --git a/plugins/3MFReader/WorkspaceSection.qml b/plugins/3MFReader/WorkspaceSection.qml index 0c94ab5d6a6..63b5e89b41e 100644 --- a/plugins/3MFReader/WorkspaceSection.qml +++ b/plugins/3MFReader/WorkspaceSection.qml @@ -5,7 +5,7 @@ import QtQuick 2.10 import QtQuick.Controls 2.3 -import UM 1.5 as UM +import UM 1.8 as UM Item @@ -80,34 +80,13 @@ Item sourceComponent: combobox } - MouseArea + UM.HelpIcon { - id: helpIconMouseArea anchors.right: parent.right anchors.verticalCenter: comboboxLabel.verticalCenter - width: childrenRect.width - height: childrenRect.height - hoverEnabled: true - - UM.ColorImage - { - width: UM.Theme.getSize("section_icon").width - height: width - - visible: comboboxTooltipText != "" - source: UM.Theme.getIcon("Help") - color: UM.Theme.getColor("text") - - UM.ToolTip - { - text: comboboxTooltipText - visible: helpIconMouseArea.containsMouse - targetPoint: Qt.point(parent.x + Math.round(parent.width / 2), parent.y) - x: 0 - y: parent.y + parent.height + UM.Theme.getSize("default_margin").height - width: UM.Theme.getSize("tooltip").width - } - } + + text: comboboxTooltipText + visible: comboboxTooltipText != "" } } diff --git a/plugins/PCBWriter/SettingExport.py b/plugins/PCBWriter/SettingExport.py index 73dd8188977..6702aa1f683 100644 --- a/plugins/PCBWriter/SettingExport.py +++ b/plugins/PCBWriter/SettingExport.py @@ -6,12 +6,13 @@ class SettingExport(QObject): - def __init__(self, id, name, value): + def __init__(self, id, name, value, selectable): super().__init__() self.id = id self._name = name self._value = value - self._selected = True + self._selected = selectable + self._selectable = selectable @pyqtProperty(str, constant=True) def name(self): @@ -31,3 +32,7 @@ def setSelected(self, selected): @pyqtProperty(bool, fset = setSelected, notify = selectedChanged) def selected(self): return self._selected + + @pyqtProperty(bool, constant=True) + def selectable(self): + return self._selectable diff --git a/plugins/PCBWriter/SettingSelection.qml b/plugins/PCBWriter/SettingSelection.qml index 6439542f3f6..636b67fb376 100644 --- a/plugins/PCBWriter/SettingSelection.qml +++ b/plugins/PCBWriter/SettingSelection.qml @@ -6,7 +6,7 @@ import QtQuick.Controls 2.3 import QtQuick.Layouts 1.3 import QtQuick.Window 2.2 -import UM 1.5 as UM +import UM 1.8 as UM import Cura 1.1 as Cura RowLayout @@ -19,10 +19,20 @@ RowLayout Layout.preferredWidth: UM.Theme.getSize("setting").width checked: modelData.selected onClicked: modelData.selected = checked + enabled: modelData.selectable } UM.Label { text: modelData.value } + + UM.HelpIcon + { + UM.I18nCatalog { id: catalog; name: "cura" } + + text: catalog.i18nc("@tooltip", + "This setting can't be exported because it depends too much on the used printer capacities") + visible: !modelData.selectable + } } diff --git a/plugins/PCBWriter/SettingsExportModel.py b/plugins/PCBWriter/SettingsExportModel.py index 992adeb0896..a4acaf02f70 100644 --- a/plugins/PCBWriter/SettingsExportModel.py +++ b/plugins/PCBWriter/SettingsExportModel.py @@ -110,17 +110,21 @@ def _exportSettings(settings_stack): settings_export = [] - for setting_to_export in user_keys.intersection(SettingsExportModel.EXPORTABLE_SETTINGS): + for setting_to_export in user_keys: label = settings_stack.getProperty(setting_to_export, "label") value = settings_stack.getProperty(setting_to_export, "value") + unit = settings_stack.getProperty(setting_to_export, "unit") setting_type = settings_stack.getProperty(setting_to_export, "type") if setting_type is not None: # This is not very good looking, but will do for now - value = SettingDefinition.settingValueToString(setting_type, value) + value = SettingDefinition.settingValueToString(setting_type, value) + " " + unit else: value = str(value) - settings_export.append(SettingExport(setting_to_export, label, value)) + settings_export.append(SettingExport(setting_to_export, + label, + value, + setting_to_export in SettingsExportModel.EXPORTABLE_SETTINGS)) return settings_export From 3fc859c76bb17e7792692fb75c16dba0d288a548 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Thu, 1 Feb 2024 11:34:19 +0100 Subject: [PATCH 440/765] crash while opening printer setting It happened because of creating MachineActionManager as a singleton. Code is refractored to make it work. CURA-11558 --- cura/CuraApplication.py | 17 ++++++++--------- resources/qml/Preferences/MachinesPage.qml | 4 ++-- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 67c420028ba..08fec4479e4 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -104,7 +104,8 @@ from cura.Settings.SidebarCustomMenuItemsModel import SidebarCustomMenuItemsModel from cura.Settings.SimpleModeSettingsManager import SimpleModeSettingsManager from cura.TaskManagement.OnExitCallbackManager import OnExitCallbackManager -from cura.UI import CuraSplashScreen, MachineActionManager, PrintInformation +from cura.UI import CuraSplashScreen, PrintInformation +from cura.UI.MachineActionManager import MachineActionManager from cura.UI.AddPrinterPagesModel import AddPrinterPagesModel from cura.UI.MachineSettingsManager import MachineSettingsManager from cura.UI.ObjectsModel import ObjectsModel @@ -186,7 +187,7 @@ def __init__(self, *args, **kwargs): self._cura_formula_functions = None # type: Optional[CuraFormulaFunctions] - self._machine_action_manager = None # type: Optional[MachineActionManager.MachineActionManager] + self._machine_action_manager = None # type: Optional[MachineActionManager] self.empty_container = None # type: EmptyInstanceContainer self.empty_definition_changes_container = None # type: EmptyInstanceContainer @@ -352,7 +353,7 @@ def initialize(self) -> None: self.__addAllEmptyContainers() self.__setLatestResouceVersionsForVersionUpgrade() - self._machine_action_manager = MachineActionManager.MachineActionManager(self) + self._machine_action_manager = MachineActionManager(self) self._machine_action_manager.initialize() def __sendCommandToSingleInstance(self): @@ -1129,18 +1130,16 @@ def getSettingInheritanceManager(self, *args) -> SettingInheritanceManager: self._setting_inheritance_manager = SettingInheritanceManager.createSettingInheritanceManager() return self._setting_inheritance_manager - def getMachineActionManager(self, *args: Any) -> MachineActionManager.MachineActionManager: + @pyqtSlot(result = QObject) + def getMachineActionManager(self, *args: Any) -> MachineActionManager: """Get the machine action manager We ignore any *args given to this, as we also register the machine manager as qml singleton. It wants to give this function an engine and script engine, but we don't care about that. """ - return cast(MachineActionManager.MachineActionManager, self._machine_action_manager) + return self._machine_action_manager - @pyqtSlot(result = QObject) - def getMachineActionManagerQml(self)-> MachineActionManager.MachineActionManager: - return cast(QObject, self._machine_action_manager) @pyqtSlot(result = QObject) def getMaterialManagementModel(self) -> MaterialManagementModel: @@ -1264,7 +1263,7 @@ def registerObjects(self, engine): qmlRegisterSingletonType(IntentManager, "Cura", 1, 6, self.getIntentManager, "IntentManager") qmlRegisterSingletonType(SettingInheritanceManager, "Cura", 1, 0, self.getSettingInheritanceManager, "SettingInheritanceManager") qmlRegisterSingletonType(SimpleModeSettingsManager, "Cura", 1, 0, self.getSimpleModeSettingsManagerWrapper, "SimpleModeSettingsManager") - qmlRegisterSingletonType(MachineActionManager.MachineActionManager, "Cura", 1, 0, self.getMachineActionManagerWrapper, "MachineActionManager") + qmlRegisterSingletonType(MachineActionManager, "Cura", 1, 0, self.getMachineActionManagerWrapper, "MachineActionManager") self.processEvents() qmlRegisterType(NetworkingUtil, "Cura", 1, 5, "NetworkingUtil") diff --git a/resources/qml/Preferences/MachinesPage.qml b/resources/qml/Preferences/MachinesPage.qml index 971de03696a..845c6cf492c 100644 --- a/resources/qml/Preferences/MachinesPage.qml +++ b/resources/qml/Preferences/MachinesPage.qml @@ -12,7 +12,7 @@ import Cura 1.0 as Cura UM.ManagementPage { id: base - property var machineActionManager: CuraApplication.getMachineActionManagerQml() + property var machineActionManager: CuraApplication.getMachineActionManager() Item { enabled: false; UM.I18nCatalog { id: catalog; name: "cura"} } title: catalog.i18nc("@title:tab", "Printers") @@ -63,7 +63,7 @@ UM.ManagementPage Repeater { id: machineActionRepeater - model: base.currentItem ? machineActionManager.getSupportedActions(Cura.MachineManager.getDefinitionByMachineId(base.currentItem.id)) : null + model: base.currentItem.id ? machineActionManager.getSupportedActions(Cura.MachineManager.getDefinitionByMachineId(base.currentItem.id)) : null Item { From b931029f1c6c165bf841e512281d3c770df40c55 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 2 Feb 2024 10:03:48 +0100 Subject: [PATCH 441/765] Now using ThreeMFWriter to save PCB files CURA-11561 --- plugins/{PCBWriter => 3MFWriter}/PCBDialog.py | 0 .../{PCBWriter => 3MFWriter}/PCBDialog.qml | 1 - .../{PCBWriter => 3MFWriter}/SettingExport.py | 0 .../SettingSelection.qml | 2 +- .../SettingsExportGroup.py | 0 .../SettingsExportModel.py | 0 .../SettingsSelectionGroup.qml | 8 +- plugins/3MFWriter/ThreeMFWorkspaceWriter.py | 128 ++++- plugins/3MFWriter/ThreeMFWriter.py | 59 ++- plugins/3MFWriter/__init__.py | 45 +- plugins/PCBWriter/PCBWriter.py | 460 ------------------ plugins/PCBWriter/__init__.py | 29 -- plugins/PCBWriter/plugin.json | 8 - resources/qml/Menus/FileMenu.qml | 12 + 14 files changed, 207 insertions(+), 545 deletions(-) rename plugins/{PCBWriter => 3MFWriter}/PCBDialog.py (100%) rename plugins/{PCBWriter => 3MFWriter}/PCBDialog.qml (98%) rename plugins/{PCBWriter => 3MFWriter}/SettingExport.py (100%) rename plugins/{PCBWriter => 3MFWriter}/SettingSelection.qml (93%) rename plugins/{PCBWriter => 3MFWriter}/SettingsExportGroup.py (100%) rename plugins/{PCBWriter => 3MFWriter}/SettingsExportModel.py (100%) rename plugins/{PCBWriter => 3MFWriter}/SettingsSelectionGroup.qml (88%) delete mode 100644 plugins/PCBWriter/PCBWriter.py delete mode 100644 plugins/PCBWriter/__init__.py delete mode 100644 plugins/PCBWriter/plugin.json diff --git a/plugins/PCBWriter/PCBDialog.py b/plugins/3MFWriter/PCBDialog.py similarity index 100% rename from plugins/PCBWriter/PCBDialog.py rename to plugins/3MFWriter/PCBDialog.py diff --git a/plugins/PCBWriter/PCBDialog.qml b/plugins/3MFWriter/PCBDialog.qml similarity index 98% rename from plugins/PCBWriter/PCBDialog.qml rename to plugins/3MFWriter/PCBDialog.qml index 8264e3ee96e..b65520961b8 100644 --- a/plugins/PCBWriter/PCBDialog.qml +++ b/plugins/3MFWriter/PCBDialog.qml @@ -8,7 +8,6 @@ import QtQuick.Window 2.2 import UM 1.5 as UM import Cura 1.1 as Cura -import PCBWriter 1.0 as PCBWriter UM.Dialog { diff --git a/plugins/PCBWriter/SettingExport.py b/plugins/3MFWriter/SettingExport.py similarity index 100% rename from plugins/PCBWriter/SettingExport.py rename to plugins/3MFWriter/SettingExport.py diff --git a/plugins/PCBWriter/SettingSelection.qml b/plugins/3MFWriter/SettingSelection.qml similarity index 93% rename from plugins/PCBWriter/SettingSelection.qml rename to plugins/3MFWriter/SettingSelection.qml index 636b67fb376..478c2d393c5 100644 --- a/plugins/PCBWriter/SettingSelection.qml +++ b/plugins/3MFWriter/SettingSelection.qml @@ -32,7 +32,7 @@ RowLayout UM.I18nCatalog { id: catalog; name: "cura" } text: catalog.i18nc("@tooltip", - "This setting can't be exported because it depends too much on the used printer capacities") + "This setting can't be exported because it depends on the used printer capacities") visible: !modelData.selectable } } diff --git a/plugins/PCBWriter/SettingsExportGroup.py b/plugins/3MFWriter/SettingsExportGroup.py similarity index 100% rename from plugins/PCBWriter/SettingsExportGroup.py rename to plugins/3MFWriter/SettingsExportGroup.py diff --git a/plugins/PCBWriter/SettingsExportModel.py b/plugins/3MFWriter/SettingsExportModel.py similarity index 100% rename from plugins/PCBWriter/SettingsExportModel.py rename to plugins/3MFWriter/SettingsExportModel.py diff --git a/plugins/PCBWriter/SettingsSelectionGroup.qml b/plugins/3MFWriter/SettingsSelectionGroup.qml similarity index 88% rename from plugins/PCBWriter/SettingsSelectionGroup.qml rename to plugins/3MFWriter/SettingsSelectionGroup.qml index 39299ab7c32..e77ba692bcb 100644 --- a/plugins/PCBWriter/SettingsSelectionGroup.qml +++ b/plugins/3MFWriter/SettingsSelectionGroup.qml @@ -8,7 +8,7 @@ import QtQuick.Window 2.2 import UM 1.5 as UM import Cura 1.1 as Cura -import PCBWriter 1.0 as PCBWriter +import ThreeMFWriter 1.0 as ThreeMFWriter ColumnLayout { @@ -34,9 +34,9 @@ ColumnLayout { switch(modelData.category) { - case PCBWriter.SettingsExportGroup.Global: + case ThreeMFWriter.SettingsExportGroup.Global: return UM.Theme.getIcon("Sliders") - case PCBWriter.SettingsExportGroup.Model: + case ThreeMFWriter.SettingsExportGroup.Model: return UM.Theme.getIcon("View3D") default: return "" @@ -50,7 +50,7 @@ ColumnLayout { id: settingsExtruderIcon anchors.fill: parent - visible: modelData.category === PCBWriter.SettingsExportGroup.Extruder + visible: modelData.category === ThreeMFWriter.SettingsExportGroup.Extruder text: (modelData.extruder_index + 1).toString() font: UM.Theme.getFont("tiny_emphasis") materialColor: modelData.extruder_color diff --git a/plugins/3MFWriter/ThreeMFWorkspaceWriter.py b/plugins/3MFWriter/ThreeMFWorkspaceWriter.py index e89af5c70aa..9715e9ac984 100644 --- a/plugins/3MFWriter/ThreeMFWorkspaceWriter.py +++ b/plugins/3MFWriter/ThreeMFWorkspaceWriter.py @@ -3,7 +3,9 @@ import configparser from io import StringIO +from threading import Lock import zipfile +from typing import Dict, Any from UM.Application import Application from UM.Logger import Logger @@ -13,15 +15,50 @@ from UM.i18n import i18nCatalog catalog = i18nCatalog("cura") -from cura.Utils.Threading import call_on_qt_thread +from .PCBDialog import PCBDialog +from .ThreeMFWriter import ThreeMFWriter +from .SettingsExportModel import SettingsExportModel +from .SettingsExportGroup import SettingsExportGroup + +USER_SETTINGS_PATH = "Cura/user-settings.json" class ThreeMFWorkspaceWriter(WorkspaceWriter): def __init__(self): super().__init__() + self._main_thread_lock = Lock() + self._success = False + self._export_model = None + self._stream = None + self._nodes = None + self._mode = None + self._config_dialog = None - @call_on_qt_thread - def write(self, stream, nodes, mode=WorkspaceWriter.OutputMode.BinaryMode): + def _preWrite(self): + is_pcb = False + if hasattr(self._stream, 'name'): + # This only works with local file, but we don't want remote PCB files yet + is_pcb = self._stream.name.endswith('.pcb') + + if is_pcb: + self._config_dialog = PCBDialog() + self._config_dialog.finished.connect(self._onPCBConfigFinished) + self._config_dialog.show() + else: + self._doWrite() + + def _onPCBConfigFinished(self, accepted: bool): + if accepted: + self._export_model = self._config_dialog.getModel() + self._doWrite() + else: + self._main_thread_lock.release() + + def _doWrite(self): + self._write() + self._main_thread_lock.release() + + def _write(self): application = Application.getInstance() machine_manager = application.getMachineManager() @@ -30,24 +67,24 @@ def write(self, stream, nodes, mode=WorkspaceWriter.OutputMode.BinaryMode): if not mesh_writer: # We need to have the 3mf mesh writer, otherwise we can't save the entire workspace self.setInformation(catalog.i18nc("@error:zip", "3MF Writer plug-in is corrupt.")) Logger.error("3MF Writer class is unavailable. Can't write workspace.") - return False + return global_stack = machine_manager.activeMachine if global_stack is None: - self.setInformation(catalog.i18nc("@error", "There is no workspace yet to write. Please add a printer first.")) + self.setInformation( + catalog.i18nc("@error", "There is no workspace yet to write. Please add a printer first.")) Logger.error("Tried to write a 3MF workspace before there was a global stack.") - return False + return # Indicate that the 3mf mesh writer should not close the archive just yet (we still need to add stuff to it). mesh_writer.setStoreArchive(True) - if not mesh_writer.write(stream, nodes, mode): + if not mesh_writer.write(self._stream, self._nodes, self._mode, self._export_model): self.setInformation(mesh_writer.getInformation()) - return False + return archive = mesh_writer.getArchive() if archive is None: # This happens if there was no mesh data to write. - archive = zipfile.ZipFile(stream, "w", compression = zipfile.ZIP_DEFLATED) - + archive = zipfile.ZipFile(self._stream, "w", compression=zipfile.ZIP_DEFLATED) try: # Add global container stack data to the archive. @@ -62,15 +99,21 @@ def write(self, stream, nodes, mode=WorkspaceWriter.OutputMode.BinaryMode): self._writeContainerToArchive(extruder_stack, archive) for container in extruder_stack.getContainers(): self._writeContainerToArchive(container, archive) + + # Write user settings data + if self._export_model is not None: + user_settings_data = self._getUserSettings(self._export_model) + ThreeMFWriter._storeMetadataJson(user_settings_data, archive, USER_SETTINGS_PATH) except PermissionError: self.setInformation(catalog.i18nc("@error:zip", "No permission to write the workspace here.")) Logger.error("No permission to write workspace to this stream.") - return False + return # Write preferences to archive - original_preferences = Application.getInstance().getPreferences() #Copy only the preferences that we use to the workspace. + original_preferences = Application.getInstance().getPreferences() # Copy only the preferences that we use to the workspace. temp_preferences = Preferences() - for preference in {"general/visible_settings", "cura/active_mode", "cura/categories_expanded", "metadata/setting_version"}: + for preference in {"general/visible_settings", "cura/active_mode", "cura/categories_expanded", + "metadata/setting_version"}: temp_preferences.addPreference(preference, None) temp_preferences.setValue(preference, original_preferences.getValue(preference)) preferences_string = StringIO() @@ -81,7 +124,7 @@ def write(self, stream, nodes, mode=WorkspaceWriter.OutputMode.BinaryMode): # Save Cura version version_file = zipfile.ZipInfo("Cura/version.ini") - version_config_parser = configparser.ConfigParser(interpolation = None) + version_config_parser = configparser.ConfigParser(interpolation=None) version_config_parser.add_section("versions") version_config_parser.set("versions", "cura_version", application.getVersion()) version_config_parser.set("versions", "build_type", application.getBuildType()) @@ -98,13 +141,37 @@ def write(self, stream, nodes, mode=WorkspaceWriter.OutputMode.BinaryMode): except PermissionError: self.setInformation(catalog.i18nc("@error:zip", "No permission to write the workspace here.")) Logger.error("No permission to write workspace to this stream.") - return False + return except EnvironmentError as e: self.setInformation(catalog.i18nc("@error:zip", str(e))) - Logger.error("EnvironmentError when writing workspace to this stream: {err}".format(err = str(e))) - return False + Logger.error("EnvironmentError when writing workspace to this stream: {err}".format(err=str(e))) + return mesh_writer.setStoreArchive(False) - return True + + self._success = True + + def write(self, stream, nodes, mode=WorkspaceWriter.OutputMode.BinaryMode): + self._success = False + self._export_model = None + self._stream = stream + self._nodes = nodes + self._mode = mode + self._config_dialog = None + + self._main_thread_lock.acquire() + # Export is done in main thread because it may require a few asynchronous configuration steps + Application.getInstance().callLater(self._preWrite) + self._main_thread_lock.acquire() # Block until lock has been released, meaning the config+write is over + + self._main_thread_lock.release() + + self._export_model = None + self._stream = None + self._nodes = None + self._mode = None + self._config_dialog = None + + return self._success @staticmethod def _writePluginMetadataToArchive(archive: zipfile.ZipFile) -> None: @@ -165,4 +232,27 @@ def _writeContainerToArchive(container, archive): archive.writestr(file_in_archive, serialized_data) except (FileNotFoundError, EnvironmentError): Logger.error("File became inaccessible while writing to it: {archive_filename}".format(archive_filename = archive.fp.name)) - return \ No newline at end of file + return + + @staticmethod + def _getUserSettings(model: SettingsExportModel) -> Dict[str, Dict[str, Any]]: + user_settings = {} + + for group in model.settingsGroups: + category = '' + if group.category == SettingsExportGroup.Category.Global: + category = 'global' + elif group.category == SettingsExportGroup.Category.Extruder: + category = f"extruder_{group.extruder_index}" + + if len(category) > 0: + settings_values = {} + stack = group.stack + + for setting in group.settings: + if setting.selected: + settings_values[setting.id] = stack.getProperty(setting.id, "value") + + user_settings[category] = settings_values + + return user_settings \ No newline at end of file diff --git a/plugins/3MFWriter/ThreeMFWriter.py b/plugins/3MFWriter/ThreeMFWriter.py index ad4b0d8dadb..8924ac0a61d 100644 --- a/plugins/3MFWriter/ThreeMFWriter.py +++ b/plugins/3MFWriter/ThreeMFWriter.py @@ -40,6 +40,9 @@ import zipfile import UM.Application +from .SettingsExportModel import SettingsExportModel +from .SettingsExportGroup import SettingsExportGroup + from UM.i18n import i18nCatalog catalog = i18nCatalog("cura") @@ -87,7 +90,9 @@ def setStoreArchive(self, store_archive): self._store_archive = store_archive @staticmethod - def _convertUMNodeToSavitarNode(um_node, transformation=Matrix()): + def _convertUMNodeToSavitarNode(um_node, + transformation = Matrix(), + exported_settings: Optional[Dict[str, Set[str]]] = None): """Convenience function that converts an Uranium SceneNode object to a SavitarSceneNode :returns: Uranium Scene node. @@ -129,13 +134,22 @@ def _convertUMNodeToSavitarNode(um_node, transformation=Matrix()): if stack is not None: changed_setting_keys = stack.getTop().getAllKeys() - # Ensure that we save the extruder used for this object in a multi-extrusion setup - if stack.getProperty("machine_extruder_count", "value") > 1: - changed_setting_keys.add("extruder_nr") + if exported_settings is None: + # Ensure that we save the extruder used for this object in a multi-extrusion setup + if stack.getProperty("machine_extruder_count", "value") > 1: + changed_setting_keys.add("extruder_nr") + + # Get values for all changed settings & save them. + for key in changed_setting_keys: + savitar_node.setSetting("cura:" + key, str(stack.getProperty(key, "value"))) + else: + # We want to export only the specified settings + if um_node.getName() in exported_settings: + model_exported_settings = exported_settings[um_node.getName()] - # Get values for all changed settings & save them. - for key in changed_setting_keys: - savitar_node.setSetting("cura:" + key, str(stack.getProperty(key, "value"))) + # Get values for all exported settings & save them. + for key in model_exported_settings: + savitar_node.setSetting("cura:" + key, str(stack.getProperty(key, "value"))) # Store the metadata. for key, value in um_node.metadata.items(): @@ -145,7 +159,8 @@ def _convertUMNodeToSavitarNode(um_node, transformation=Matrix()): # only save the nodes on the active build plate if child_node.callDecoration("getBuildPlateNumber") != active_build_plate_nr: continue - savitar_child_node = ThreeMFWriter._convertUMNodeToSavitarNode(child_node) + savitar_child_node = ThreeMFWriter._convertUMNodeToSavitarNode(child_node, + exported_settings = exported_settings) if savitar_child_node is not None: savitar_node.addChild(savitar_child_node) @@ -154,7 +169,7 @@ def _convertUMNodeToSavitarNode(um_node, transformation=Matrix()): def getArchive(self): return self._archive - def write(self, stream, nodes, mode = MeshWriter.OutputMode.BinaryMode) -> bool: + def write(self, stream, nodes, mode = MeshWriter.OutputMode.BinaryMode, export_settings_model = None) -> bool: self._archive = None # Reset archive archive = zipfile.ZipFile(stream, "w", compression = zipfile.ZIP_DEFLATED) try: @@ -232,14 +247,19 @@ def write(self, stream, nodes, mode = MeshWriter.OutputMode.BinaryMode) -> bool: transformation_matrix.preMultiply(translation_matrix) root_node = UM.Application.Application.getInstance().getController().getScene().getRoot() + exported_model_settings = ThreeMFWriter._extractModelExportedSettings(export_settings_model) for node in nodes: if node == root_node: for root_child in node.getChildren(): - savitar_node = ThreeMFWriter._convertUMNodeToSavitarNode(root_child, transformation_matrix) + savitar_node = ThreeMFWriter._convertUMNodeToSavitarNode(root_child, + transformation_matrix, + exported_model_settings) if savitar_node: savitar_scene.addSceneNode(savitar_node) else: - savitar_node = self._convertUMNodeToSavitarNode(node, transformation_matrix) + savitar_node = self._convertUMNodeToSavitarNode(node, + transformation_matrix, + exported_model_settings) if savitar_node: savitar_scene.addSceneNode(savitar_node) @@ -395,3 +415,20 @@ def sceneNodesToString(scene_nodes: [SceneNode]) -> str: parser = Savitar.ThreeMFParser() scene_string = parser.sceneToString(savitar_scene) return scene_string + + @staticmethod + def _extractModelExportedSettings(model: Optional[SettingsExportModel]) -> Dict[str, Set[str]]: + extra_settings = {} + + if model is not None: + for group in model.settingsGroups: + if group.category == SettingsExportGroup.Category.Model: + exported_model_settings = set() + + for exported_setting in group.settings: + if exported_setting.selected: + exported_model_settings.add(exported_setting.id) + + extra_settings[group.category_details] = exported_model_settings + + return extra_settings diff --git a/plugins/3MFWriter/__init__.py b/plugins/3MFWriter/__init__.py index eb8a596afe5..e0d4037603b 100644 --- a/plugins/3MFWriter/__init__.py +++ b/plugins/3MFWriter/__init__.py @@ -2,9 +2,12 @@ # Uranium is released under the terms of the LGPLv3 or higher. import sys +from PyQt6.QtQml import qmlRegisterType + from UM.Logger import Logger try: from . import ThreeMFWriter + from .SettingsExportGroup import SettingsExportGroup threemf_writer_was_imported = True except ImportError: Logger.log("w", "Could not import ThreeMFWriter; libSavitar may be missing") @@ -23,20 +26,36 @@ def getMetaData(): if threemf_writer_was_imported: metaData["mesh_writer"] = { - "output": [{ - "extension": "3mf", - "description": i18n_catalog.i18nc("@item:inlistbox", "3MF file"), - "mime_type": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", - "mode": ThreeMFWriter.ThreeMFWriter.OutputMode.BinaryMode - }] + "output": [ + { + "extension": "3mf", + "description": i18n_catalog.i18nc("@item:inlistbox", "3MF file"), + "mime_type": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", + "mode": ThreeMFWriter.ThreeMFWriter.OutputMode.BinaryMode + }, + { + "extension": "pcb", + "description": i18n_catalog.i18nc("@item:inlistbox", "PCB file"), + "mime_type": "application/x-pcb", + "mode": ThreeMFWriter.ThreeMFWriter.OutputMode.BinaryMode + } + ] } metaData["workspace_writer"] = { - "output": [{ - "extension": workspace_extension, - "description": i18n_catalog.i18nc("@item:inlistbox", "Cura Project 3MF file"), - "mime_type": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", - "mode": ThreeMFWorkspaceWriter.ThreeMFWorkspaceWriter.OutputMode.BinaryMode - }] + "output": [ + { + "extension": workspace_extension, + "description": i18n_catalog.i18nc("@item:inlistbox", "Cura Project 3MF file"), + "mime_type": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", + "mode": ThreeMFWorkspaceWriter.ThreeMFWorkspaceWriter.OutputMode.BinaryMode + }, + { + "extension": "pcb", + "description": i18n_catalog.i18nc("@item:inlistbox", "Pre-Configured Batch file"), + "mime_type": "application/x-pcb", + "mode": ThreeMFWorkspaceWriter.ThreeMFWorkspaceWriter.OutputMode.BinaryMode + } + ] } return metaData @@ -44,6 +63,8 @@ def getMetaData(): def register(app): if "3MFWriter.ThreeMFWriter" in sys.modules: + qmlRegisterType(SettingsExportGroup, "ThreeMFWriter", 1, 0, "SettingsExportGroup") + return {"mesh_writer": ThreeMFWriter.ThreeMFWriter(), "workspace_writer": ThreeMFWorkspaceWriter.ThreeMFWorkspaceWriter()} else: diff --git a/plugins/PCBWriter/PCBWriter.py b/plugins/PCBWriter/PCBWriter.py deleted file mode 100644 index 794eac9d4a4..00000000000 --- a/plugins/PCBWriter/PCBWriter.py +++ /dev/null @@ -1,460 +0,0 @@ -# Copyright (c) 2024 Ultimaker B.V. -# Cura is released under the terms of the LGPLv3 or higher. -import json -import zipfile -import datetime -import numpy -import re -from dataclasses import asdict -from typing import Optional, cast, List, Dict, Pattern, Set, Union, Mapping, Any -from threading import Lock -from io import StringIO # For converting g-code to bytes. - -import pySavitar as Savitar - -from PyQt6.QtCore import QBuffer - -from UM.Mesh.MeshWriter import MeshWriter -from UM.Logger import Logger -from UM.Scene.SceneNode import SceneNode -from UM.Scene.Iterator.DepthFirstIterator import DepthFirstIterator -from UM.i18n import i18nCatalog -from UM.Settings.InstanceContainer import InstanceContainer -from UM.Settings.SettingFunction import SettingFunction -from UM.Settings.ContainerRegistry import ContainerRegistry -from UM.Math.Matrix import Matrix -from UM.Math.Vector import Vector - -from cura.CuraApplication import CuraApplication -from cura.CuraPackageManager import CuraPackageManager -from cura.Settings import CuraContainerStack -from cura.Settings.GlobalStack import GlobalStack -from cura.Utils.Threading import call_on_qt_thread -from cura.Snapshot import Snapshot - -from .PCBDialog import PCBDialog -from .SettingsExportModel import SettingsExportModel -from .SettingsExportGroup import SettingsExportGroup - -MYPY = False -try: - if not MYPY: - import xml.etree.cElementTree as ET -except ImportError: - Logger.log("w", "Unable to load cElementTree, switching to slower version") - import xml.etree.ElementTree as ET - -catalog = i18nCatalog("cura") - -THUMBNAIL_PATH = "Metadata/thumbnail.png" -MODEL_PATH = "3D/3dmodel.model" -PACKAGE_METADATA_PATH = "Cura/packages.json" -USER_SETTINGS_PATH = "Cura/user-settings.json" - -class PCBWriter(MeshWriter): - def __init__(self): - super().__init__() - self._namespaces = { - "3mf": "http://schemas.microsoft.com/3dmanufacturing/core/2015/02", - "content-types": "http://schemas.openxmlformats.org/package/2006/content-types", - "relationships": "http://schemas.openxmlformats.org/package/2006/relationships", - "cura": "http://software.ultimaker.com/xml/cura/3mf/2015/10" - } - - self._config_dialog = None - self._main_thread_lock = Lock() - self._success = False - self._export_model = None - - def write(self, stream, nodes, mode = MeshWriter.OutputMode.BinaryMode) -> bool: - self._success = False - self._export_model = None - - self._main_thread_lock.acquire() - # Start configuration window in main application thread - CuraApplication.getInstance().callLater(self._write, stream, nodes, mode) - self._main_thread_lock.acquire() # Block until lock has been released, meaning the config is over - - self._main_thread_lock.release() - - if self._export_model is not None: - archive = zipfile.ZipFile(stream, "w", compression=zipfile.ZIP_DEFLATED) - try: - model_file = zipfile.ZipInfo(MODEL_PATH) - # Because zipfile is stupid and ignores archive-level compression settings when writing with ZipInfo. - model_file.compress_type = zipfile.ZIP_DEFLATED - - # Create content types file - content_types_file = zipfile.ZipInfo("[Content_Types].xml") - content_types_file.compress_type = zipfile.ZIP_DEFLATED - content_types = ET.Element("Types", xmlns=self._namespaces["content-types"]) - rels_type = ET.SubElement(content_types, "Default", Extension="rels", - ContentType="application/vnd.openxmlformats-package.relationships+xml") - model_type = ET.SubElement(content_types, "Default", Extension="model", - ContentType="application/vnd.ms-package.3dmanufacturing-3dmodel+xml") - - # Create _rels/.rels file - relations_file = zipfile.ZipInfo("_rels/.rels") - relations_file.compress_type = zipfile.ZIP_DEFLATED - relations_element = ET.Element("Relationships", xmlns=self._namespaces["relationships"]) - model_relation_element = ET.SubElement(relations_element, "Relationship", Target="/" + MODEL_PATH, - Id="rel0", - Type="http://schemas.microsoft.com/3dmanufacturing/2013/01/3dmodel") - - # Attempt to add a thumbnail - snapshot = self._createSnapshot() - if snapshot: - thumbnail_buffer = QBuffer() - thumbnail_buffer.open(QBuffer.OpenModeFlag.ReadWrite) - snapshot.save(thumbnail_buffer, "PNG") - - thumbnail_file = zipfile.ZipInfo(THUMBNAIL_PATH) - # Don't try to compress snapshot file, because the PNG is pretty much as compact as it will get - archive.writestr(thumbnail_file, thumbnail_buffer.data()) - - # Add PNG to content types file - thumbnail_type = ET.SubElement(content_types, "Default", Extension="png", ContentType="image/png") - # Add thumbnail relation to _rels/.rels file - thumbnail_relation_element = ET.SubElement(relations_element, "Relationship", - Target="/" + THUMBNAIL_PATH, Id="rel1", - Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/thumbnail") - - # Write material metadata - packages_metadata = self._getMaterialPackageMetadata() + self._getPluginPackageMetadata() - self._storeMetadataJson({"packages": packages_metadata}, archive, PACKAGE_METADATA_PATH) - - # Write user settings data - user_settings_data = self._getUserSettings(self._export_model) - self._storeMetadataJson(user_settings_data, archive, USER_SETTINGS_PATH) - - savitar_scene = Savitar.Scene() - - scene_metadata = CuraApplication.getInstance().getController().getScene().getMetaData() - - for key, value in scene_metadata.items(): - savitar_scene.setMetaDataEntry(key, value) - - current_time_string = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S") - if "Application" not in scene_metadata: - # This might sound a bit strange, but this field should store the original application that created - # the 3mf. So if it was already set, leave it to whatever it was. - savitar_scene.setMetaDataEntry("Application", - CuraApplication.getInstance().getApplicationDisplayName()) - if "CreationDate" not in scene_metadata: - savitar_scene.setMetaDataEntry("CreationDate", current_time_string) - - savitar_scene.setMetaDataEntry("ModificationDate", current_time_string) - - transformation_matrix = Matrix() - transformation_matrix._data[1, 1] = 0 - transformation_matrix._data[1, 2] = -1 - transformation_matrix._data[2, 1] = 1 - transformation_matrix._data[2, 2] = 0 - - global_container_stack = CuraApplication.getInstance().getGlobalContainerStack() - # Second step: 3MF defines the left corner of the machine as center, whereas cura uses the center of the - # build volume. - if global_container_stack: - translation_vector = Vector(x=global_container_stack.getProperty("machine_width", "value") / 2, - y=global_container_stack.getProperty("machine_depth", "value") / 2, - z=0) - translation_matrix = Matrix() - translation_matrix.setByTranslation(translation_vector) - transformation_matrix.preMultiply(translation_matrix) - - root_node = CuraApplication.getInstance().getController().getScene().getRoot() - exported_model_settings = PCBWriter._extractModelExportedSettings(self._export_model) - for node in nodes: - if node == root_node: - for root_child in node.getChildren(): - savitar_node = PCBWriter._convertUMNodeToSavitarNode(root_child, - transformation_matrix, - exported_model_settings) - if savitar_node: - savitar_scene.addSceneNode(savitar_node) - else: - savitar_node = self._convertUMNodeToSavitarNode(node, - transformation_matrix, - exported_model_settings) - if savitar_node: - savitar_scene.addSceneNode(savitar_node) - - parser = Savitar.ThreeMFParser() - scene_string = parser.sceneToString(savitar_scene) - - archive.writestr(model_file, scene_string) - archive.writestr(content_types_file, - b' \n' + ET.tostring(content_types)) - archive.writestr(relations_file, - b' \n' + ET.tostring(relations_element)) - except Exception as error: - Logger.logException("e", "Error writing zip file") - self.setInformation(str(error)) - return False - finally: - archive.close() - - return True - else: - return False - - def _write(self, stream, nodes, mode): - self._config_dialog = PCBDialog() - self._config_dialog.finished.connect(self._onDialogFinished) - self._config_dialog.show() - - def _onDialogFinished(self, accepted: bool): - if accepted: - self._export_model = self._config_dialog.getModel() - - self._main_thread_lock.release() - - @staticmethod - def _extractModelExportedSettings(model: SettingsExportModel) -> Mapping[str, Set[str]]: - extra_settings = {} - - for group in model.settingsGroups: - if group.category == SettingsExportGroup.Category.Model: - exported_model_settings = set() - - for exported_setting in group.settings: - if exported_setting.selected: - exported_model_settings.add(exported_setting.id) - - extra_settings[group.category_details] = exported_model_settings - - return extra_settings - - @staticmethod - def _convertUMNodeToSavitarNode(um_node, - transformation: Matrix = Matrix(), - exported_settings: Mapping[str, Set[str]] = None): - """Convenience function that converts an Uranium SceneNode object to a SavitarSceneNode - - :returns: Uranium Scene node. - """ - if not isinstance(um_node, SceneNode): - return None - - active_build_plate_nr = CuraApplication.getInstance().getMultiBuildPlateModel().activeBuildPlate - if um_node.callDecoration("getBuildPlateNumber") != active_build_plate_nr: - return - - savitar_node = Savitar.SceneNode() - savitar_node.setName(um_node.getName()) - - node_matrix = Matrix() - mesh_data = um_node.getMeshData() - # compensate for original center position, if object(s) is/are not around its zero position - if mesh_data is not None: - extents = mesh_data.getExtents() - if extents is not None: - # We use a different coordinate space while writing, so flip Z and Y - center_vector = Vector(extents.center.x, extents.center.z, extents.center.y) - node_matrix.setByTranslation(center_vector) - node_matrix.multiply(um_node.getLocalTransformation()) - - matrix_string = PCBWriter._convertMatrixToString(node_matrix.preMultiply(transformation)) - - savitar_node.setTransformation(matrix_string) - if mesh_data is not None: - savitar_node.getMeshData().setVerticesFromBytes(mesh_data.getVerticesAsByteArray()) - indices_array = mesh_data.getIndicesAsByteArray() - if indices_array is not None: - savitar_node.getMeshData().setFacesFromBytes(indices_array) - else: - savitar_node.getMeshData().setFacesFromBytes( - numpy.arange(mesh_data.getVertices().size / 3, dtype=numpy.int32).tostring()) - - # Handle per object settings (if any) - stack = um_node.callDecoration("getStack") - if stack is not None: - if um_node.getName() in exported_settings: - model_exported_settings = exported_settings[um_node.getName()] - - # Get values for all exported settings & save them. - for key in model_exported_settings: - savitar_node.setSetting("cura:" + key, str(stack.getProperty(key, "value"))) - - # Store the metadata. - for key, value in um_node.metadata.items(): - savitar_node.setSetting(key, value) - - for child_node in um_node.getChildren(): - # only save the nodes on the active build plate - if child_node.callDecoration("getBuildPlateNumber") != active_build_plate_nr: - continue - savitar_child_node = PCBWriter._convertUMNodeToSavitarNode(child_node, - exported_settings = exported_settings) - if savitar_child_node is not None: - savitar_node.addChild(savitar_child_node) - - return savitar_node - - @call_on_qt_thread # must be called from the main thread because of OpenGL - def _createSnapshot(self): - Logger.log("d", "Creating thumbnail image...") - if not CuraApplication.getInstance().isVisible: - Logger.log("w", "Can't create snapshot when renderer not initialized.") - return None - try: - snapshot = Snapshot.snapshot(width=300, height=300) - except: - Logger.logException("w", "Failed to create snapshot image") - return None - - return snapshot - - @staticmethod - def _storeMetadataJson(metadata: Union[Dict[str, List[Dict[str, str]]], Dict[str, Dict[str, Any]]], - archive: zipfile.ZipFile, path - : str) -> None: - """Stores metadata inside archive path as json file""" - metadata_file = zipfile.ZipInfo(path) - # We have to set the compress type of each file as well (it doesn't keep the type of the entire archive) - metadata_file.compress_type = zipfile.ZIP_DEFLATED - archive.writestr(metadata_file, - json.dumps(metadata, separators=(", ", ": "), indent=4, skipkeys=True, ensure_ascii=False)) - - @staticmethod - def _getUserSettings(model: SettingsExportModel) -> Dict[str, Dict[str, Any]]: - user_settings = {} - - for group in model.settingsGroups: - category = '' - if group.category == SettingsExportGroup.Category.Global: - category = 'global' - elif group.category == SettingsExportGroup.Category.Extruder: - category = f"extruder_{group.extruder_index}" - - if len(category) > 0: - settings_values = {} - stack = group.stack - - for setting in group.settings: - if setting.selected: - settings_values[setting.id] = stack.getProperty(setting.id, "value") - - user_settings[category] = settings_values - - return user_settings - - @staticmethod - def _getPluginPackageMetadata() -> List[Dict[str, str]]: - """Get metadata for all backend plugins that are used in the project. - - :return: List of material metadata dictionaries. - """ - - backend_plugin_enum_value_regex = re.compile( - r"PLUGIN::(?P\w+)@(?P\d+.\d+.\d+)::(?P\w+)") - # This regex parses enum values to find if they contain custom - # backend engine values. These custom enum values are in the format - # PLUGIN::@:: - # where - # - plugin_id is the id of the plugin - # - version is in the semver format - # - value is the value of the enum - - plugin_ids = set() - - def addPluginIdsInStack(stack: CuraContainerStack) -> None: - for key in stack.getAllKeys(): - value = str(stack.getProperty(key, "value")) - for plugin_id, _version, _value in backend_plugin_enum_value_regex.findall(value): - plugin_ids.add(plugin_id) - - # Go through all stacks and find all the plugin id contained in the project - global_stack = CuraApplication.getInstance().getMachineManager().activeMachine - addPluginIdsInStack(global_stack) - - for container in global_stack.getContainers(): - addPluginIdsInStack(container) - - for extruder_stack in global_stack.extruderList: - addPluginIdsInStack(extruder_stack) - - for container in extruder_stack.getContainers(): - addPluginIdsInStack(container) - - metadata = {} - - package_manager = cast(CuraPackageManager, CuraApplication.getInstance().getPackageManager()) - for plugin_id in plugin_ids: - package_data = package_manager.getInstalledPackageInfo(plugin_id) - - metadata[plugin_id] = { - "id": plugin_id, - "display_name": package_data.get("display_name") if package_data.get("display_name") else "", - "package_version": package_data.get("package_version") if package_data.get("package_version") else "", - "sdk_version_semver": package_data.get("sdk_version_semver") if package_data.get( - "sdk_version_semver") else "", - "type": "plugin", - } - - # Storing in a dict and fetching values to avoid duplicates - return list(metadata.values()) - - @staticmethod - def _getMaterialPackageMetadata() -> List[Dict[str, str]]: - """Get metadata for installed materials in active extruder stack, this does not include bundled materials. - - :return: List of material metadata dictionaries. - """ - metadata = {} - - package_manager = cast(CuraPackageManager, CuraApplication.getInstance().getPackageManager()) - - for extruder in CuraApplication.getInstance().getExtruderManager().getActiveExtruderStacks(): - if not extruder.isEnabled: - # Don't export materials not in use - continue - - if isinstance(extruder.material, type(ContainerRegistry.getInstance().getEmptyInstanceContainer())): - # This is an empty material container, no material to export - continue - - if package_manager.isMaterialBundled(extruder.material.getFileName(), - extruder.material.getMetaDataEntry("GUID")): - # Don't export bundled materials - continue - - package_id = package_manager.getMaterialFilePackageId(extruder.material.getFileName(), - extruder.material.getMetaDataEntry("GUID")) - package_data = package_manager.getInstalledPackageInfo(package_id) - - # We failed to find the package for this material - if not package_data: - Logger.info(f"Could not find package for material in extruder {extruder.id}, skipping.") - continue - - material_metadata = { - "id": package_id, - "display_name": package_data.get("display_name") if package_data.get("display_name") else "", - "package_version": package_data.get("package_version") if package_data.get("package_version") else "", - "sdk_version_semver": package_data.get("sdk_version_semver") if package_data.get( - "sdk_version_semver") else "", - "type": "material", - } - - metadata[package_id] = material_metadata - - # Storing in a dict and fetching values to avoid duplicates - return list(metadata.values()) - - @staticmethod - def _convertMatrixToString(matrix): - result = "" - result += str(matrix._data[0, 0]) + " " - result += str(matrix._data[1, 0]) + " " - result += str(matrix._data[2, 0]) + " " - result += str(matrix._data[0, 1]) + " " - result += str(matrix._data[1, 1]) + " " - result += str(matrix._data[2, 1]) + " " - result += str(matrix._data[0, 2]) + " " - result += str(matrix._data[1, 2]) + " " - result += str(matrix._data[2, 2]) + " " - result += str(matrix._data[0, 3]) + " " - result += str(matrix._data[1, 3]) + " " - result += str(matrix._data[2, 3]) - return result \ No newline at end of file diff --git a/plugins/PCBWriter/__init__.py b/plugins/PCBWriter/__init__.py deleted file mode 100644 index da4205a7d76..00000000000 --- a/plugins/PCBWriter/__init__.py +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright (c) 2024 Ultimaker B.V. -# Cura is released under the terms of the LGPLv3 or higher. -import sys - -from PyQt6.QtQml import qmlRegisterType - -from UM.i18n import i18nCatalog - -from . import PCBWriter -from .SettingsExportModel import SettingsExportModel -from .SettingsExportGroup import SettingsExportGroup - -i18n_catalog = i18nCatalog("cura") - -def getMetaData(): - return {"mesh_writer": { - "output": [{ - "extension": "pcb", - "description": i18n_catalog.i18nc("@item:inlistbox", "Pre-Configured Batch file"), - "mime_type": "application/x-pcb", - "mode": PCBWriter.PCBWriter.OutputMode.BinaryMode - }] - }} - -def register(app): - qmlRegisterType(SettingsExportModel, "PCBWriter", 1, 0, "SettingsExportModel") - qmlRegisterType(SettingsExportGroup, "PCBWriter", 1, 0, "SettingsExportGroup") - - return {"mesh_writer": PCBWriter.PCBWriter() } diff --git a/plugins/PCBWriter/plugin.json b/plugins/PCBWriter/plugin.json deleted file mode 100644 index 6571185779f..00000000000 --- a/plugins/PCBWriter/plugin.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "name": "Pre-Configured Batch Writer", - "author": "Ultimaker B.V.", - "version": "1.0.0", - "description": "Provides support for writing Pre-Configured Batch files.", - "api": 8, - "i18n-catalog": "cura" -} diff --git a/resources/qml/Menus/FileMenu.qml b/resources/qml/Menus/FileMenu.qml index 254c0d54686..850c0d7e737 100644 --- a/resources/qml/Menus/FileMenu.qml +++ b/resources/qml/Menus/FileMenu.qml @@ -70,6 +70,18 @@ Cura.Menu enabled: UM.WorkspaceFileHandler.enabled } + Cura.MenuItem + { + id: savePCBMenu + text: catalog.i18nc("@title:menu menubar:file", "&Save PCB Project...") + enabled: UM.WorkspaceFileHandler.enabled + onTriggered: + { + var args = { "filter_by_machine": false, "file_type": "workspace", "preferred_mimetypes": "application/x-pcb" }; + UM.OutputDeviceManager.requestWriteToDevice("local_file", PrintInformation.jobName, args) + } + } + Cura.MenuSeparator { } UM.MeshWritersModel { id: meshWritersModel } From c6e56202954ef1b7752306a9aac41805920b2428 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 2 Feb 2024 10:07:11 +0100 Subject: [PATCH 442/765] Revert "Add export sub-menu" This reverts commit 54af5bca3c5e9b5700ce106f854f97e3ed102842. --- resources/qml/Menus/ExportMenu.qml | 44 ------------------------------ resources/qml/Menus/FileMenu.qml | 26 +++++++++--------- 2 files changed, 13 insertions(+), 57 deletions(-) delete mode 100644 resources/qml/Menus/ExportMenu.qml diff --git a/resources/qml/Menus/ExportMenu.qml b/resources/qml/Menus/ExportMenu.qml deleted file mode 100644 index 5c08b04f0fd..00000000000 --- a/resources/qml/Menus/ExportMenu.qml +++ /dev/null @@ -1,44 +0,0 @@ -// Copyright (c) 2024 Ultimaker B.V. -// Cura is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.2 -import QtQuick.Controls 2.1 - -import UM 1.5 as UM -import Cura 1.1 as Cura - -import "../Dialogs" - -Cura.Menu -{ - id: exportMenu - property alias model: meshWriters.model - property bool selectionOnly: false - - Instantiator - { - id: meshWriters - Cura.MenuItem - { - text: model.description - onTriggered: - { - var localDeviceId = "local_file" - var file_name = PrintInformation.jobName - var args = { "filter_by_machine": false, "limit_mimetypes": [model.mime_type], "limit_modes": [model.mode]} - if(exportMenu.selectionOnly) - { - UM.OutputDeviceManager.requestWriteSelectionToDevice(localDeviceId, file_name, args) - } - else - { - UM.OutputDeviceManager.requestWriteToDevice(localDeviceId, file_name, args) - } - } - shortcut: model.shortcut - enabled: exportMenu.shouldBeVisible - } - onObjectAdded: function(index, object) { exportMenu.insertItem(index, object)} - onObjectRemoved: function(index, object) { exportMenu.removeItem(object)} - } -} diff --git a/resources/qml/Menus/FileMenu.qml b/resources/qml/Menus/FileMenu.qml index 850c0d7e737..36a2820087e 100644 --- a/resources/qml/Menus/FileMenu.qml +++ b/resources/qml/Menus/FileMenu.qml @@ -4,7 +4,7 @@ import QtQuick 2.2 import QtQuick.Controls 2.1 -import UM 1.7 as UM +import UM 1.6 as UM import Cura 1.0 as Cura Cura.Menu @@ -84,24 +84,24 @@ Cura.Menu Cura.MenuSeparator { } - UM.MeshWritersModel { id: meshWritersModel } - - ExportMenu + Cura.MenuItem { - id: exportMenu - title: catalog.i18nc("@title:menu menubar:file", "&Export...") - model: meshWritersModel - shouldBeVisible: model.count > 0 + id: saveAsMenu + text: catalog.i18nc("@title:menu menubar:file", "&Export...") + onTriggered: + { + var localDeviceId = "local_file" + UM.OutputDeviceManager.requestWriteToDevice(localDeviceId, PrintInformation.jobName, { "filter_by_machine": false, "preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml"}) + } } - ExportMenu + Cura.MenuItem { id: exportSelectionMenu - title: catalog.i18nc("@action:inmenu menubar:file", "Export Selection...") - model: meshWritersModel - shouldBeVisible: model.count > 0 + text: catalog.i18nc("@action:inmenu menubar:file", "Export Selection...") enabled: UM.Selection.hasSelection - selectionOnly: true + icon.name: "document-save-as" + onTriggered: UM.OutputDeviceManager.requestWriteSelectionToDevice("local_file", PrintInformation.jobName, { "filter_by_machine": false, "preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml"}) } Cura.MenuSeparator { } From 733ef4d3d827e11bdcaefe484f17e066f1b0ce89 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 2 Feb 2024 12:17:34 +0100 Subject: [PATCH 443/765] UI now displays an option to select the same profile CURA-11561 --- plugins/3MFReader/ThreeMFReader.py | 9 ++++++- plugins/3MFReader/ThreeMFWorkspaceReader.py | 10 +++++--- plugins/3MFReader/WorkspaceDialog.py | 26 +++++++++++++++++++++ plugins/3MFReader/WorkspaceDialog.qml | 9 +++++++ plugins/3MFReader/__init__.py | 8 +++++++ plugins/3MFReader/plugin.json | 2 +- plugins/3MFWriter/plugin.json | 2 +- resources/qml/Menus/FileMenu.qml | 5 +++- 8 files changed, 64 insertions(+), 7 deletions(-) diff --git a/plugins/3MFReader/ThreeMFReader.py b/plugins/3MFReader/ThreeMFReader.py index 13a97d5a893..9f4a4b197b6 100755 --- a/plugins/3MFReader/ThreeMFReader.py +++ b/plugins/3MFReader/ThreeMFReader.py @@ -46,8 +46,15 @@ def __init__(self) -> None: suffixes=["3mf"] ) ) + MimeTypeDatabase.addMimeType( + MimeType( + name="application/x-pcb", + comment="PCB", + suffixes=["pcb"] + ) + ) - self._supported_extensions = [".3mf"] + self._supported_extensions = [".3mf", ".pcb"] self._root = None self._base_name = "" self._unit = None diff --git a/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py index b97cb34b015..76cd1f386bf 100755 --- a/plugins/3MFReader/ThreeMFWorkspaceReader.py +++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py @@ -112,7 +112,7 @@ class ThreeMFWorkspaceReader(WorkspaceReader): def __init__(self) -> None: super().__init__() - self._supported_extensions = [".3mf"] + self._supported_extensions = [".3mf", ".pcb"] self._dialog = WorkspaceDialog() self._3mf_mesh_reader = None self._container_registry = ContainerRegistry.getInstance() @@ -228,11 +228,14 @@ def preRead(self, file_name, show_dialog=True, *args, **kwargs): self._resolve_strategies = {k: None for k in resolve_strategy_keys} containers_found_dict = {k: False for k in resolve_strategy_keys} + # Check whether the file is a PCB + is_pcb = file_name.endswith('.pcb') + # # Read definition containers # machine_definition_id = None - updatable_machines = [] + updatable_machines = None if is_pcb else [] machine_definition_container_count = 0 extruder_definition_container_count = 0 definition_container_files = [name for name in cura_file_names if name.endswith(self._definition_container_suffix)] @@ -250,7 +253,7 @@ def preRead(self, file_name, show_dialog=True, *args, **kwargs): if definition_container_type == "machine": machine_definition_id = container_id machine_definition_containers = self._container_registry.findDefinitionContainers(id = machine_definition_id) - if machine_definition_containers: + if machine_definition_containers and updatable_machines is not None: updatable_machines = [machine for machine in self._container_registry.findContainerStacks(type = "machine") if machine.definition == machine_definition_containers[0]] machine_type = definition_container["name"] variant_type_name = definition_container.get("variants_name", variant_type_name) @@ -617,6 +620,7 @@ def preRead(self, file_name, show_dialog=True, *args, **kwargs): self._dialog.setVariantType(variant_type_name) self._dialog.setHasObjectsOnPlate(Application.getInstance().platformActivity) self._dialog.setMissingPackagesMetadata(missing_package_metadata) + self._dialog.setHasVisibleSelectSameProfileChanged(is_pcb) self._dialog.show() # Choosing the initially selected printer in MachineSelector diff --git a/plugins/3MFReader/WorkspaceDialog.py b/plugins/3MFReader/WorkspaceDialog.py index 0203fc92b5a..c5b624d35d5 100644 --- a/plugins/3MFReader/WorkspaceDialog.py +++ b/plugins/3MFReader/WorkspaceDialog.py @@ -71,6 +71,8 @@ def __init__(self, parent = None) -> None: self._install_missing_package_dialog: Optional[QObject] = None self._is_abstract_machine = False self._is_networked_machine = False + self._is_compatible_machine = False + self._has_visible_select_same_profile = False machineConflictChanged = pyqtSignal() qualityChangesConflictChanged = pyqtSignal() @@ -94,6 +96,8 @@ def __init__(self, parent = None) -> None: extrudersChanged = pyqtSignal() isPrinterGroupChanged = pyqtSignal() missingPackagesChanged = pyqtSignal() + isCompatibleMachineChanged = pyqtSignal() + hasVisibleSelectSameProfileChanged = pyqtSignal() @pyqtProperty(bool, notify = isPrinterGroupChanged) def isPrinterGroup(self) -> bool: @@ -291,8 +295,30 @@ def getMachineToOverride(self) -> str: @pyqtSlot(str) def setMachineToOverride(self, machine_name: str) -> None: + registry = ContainerRegistry.getInstance() + containers_expected = registry.findDefinitionContainers(name = self._machine_type) + containers_selected = registry.findContainerStacks(id = machine_name) + if len(containers_expected) == 1 and len(containers_selected) == 1: + new_compatible_machine = (containers_expected[0] == containers_selected[0].definition) + if new_compatible_machine != self._is_compatible_machine: + self._is_compatible_machine = new_compatible_machine + self.isCompatibleMachineChanged.emit() + self._override_machine = machine_name + @pyqtProperty(bool, notify = isCompatibleMachineChanged) + def isCompatibleMachine(self) -> bool: + return self._is_compatible_machine + + def setHasVisibleSelectSameProfileChanged(self, has_visible_select_same_profile): + if has_visible_select_same_profile != self._has_visible_select_same_profile: + self._has_visible_select_same_profile = has_visible_select_same_profile + self.hasVisibleSelectSameProfileChanged.emit() + + @pyqtProperty(bool, notify = hasVisibleSelectSameProfileChanged) + def hasVisibleSelectSameProfile(self): + return self._has_visible_select_same_profile + @pyqtSlot() def closeBackend(self) -> None: """Close the backend: otherwise one could end up with "Slicing...""" diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index d5f9b1817d1..45fe7b69893 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -186,6 +186,15 @@ UM.Dialog rightLabelText: catalog.i18ncp("@action:label", "%1, %2 override", "%1, %2 overrides", manager.numSettingsOverridenByQualityChanges).arg(manager.qualityType).arg(manager.numSettingsOverridenByQualityChanges) visible: manager.numSettingsOverridenByQualityChanges != 0 } + + UM.CheckBox + { + text: catalog.i18nc("@action:checkbox", "Select the same profile") + enabled: manager.isCompatibleMachine + onEnabledChanged: checked = enabled + tooltip: enabled ? "" : catalog.i18nc("@tooltip", "You can use the same profile only if you have the same printer as the project was published with") + visible: manager.hasVisibleSelectSameProfile + } } comboboxVisible: manager.qualityChangesConflict diff --git a/plugins/3MFReader/__init__.py b/plugins/3MFReader/__init__.py index 5e2b68fce09..a07420d2c64 100644 --- a/plugins/3MFReader/__init__.py +++ b/plugins/3MFReader/__init__.py @@ -25,12 +25,20 @@ def getMetaData() -> Dict: { "extension": "3mf", "description": catalog.i18nc("@item:inlistbox", "3MF File") + }, + { + "extension": "pcb", + "description": catalog.i18nc("@item:inlistbox", "PCB File") } ] metaData["workspace_reader"] = [ { "extension": workspace_extension, "description": catalog.i18nc("@item:inlistbox", "3MF File") + }, + { + "extension": "pcb", + "description": catalog.i18nc("@item:inlistbox", "PCB File") } ] diff --git a/plugins/3MFReader/plugin.json b/plugins/3MFReader/plugin.json index bf0bc053648..1611c956d39 100644 --- a/plugins/3MFReader/plugin.json +++ b/plugins/3MFReader/plugin.json @@ -2,7 +2,7 @@ "name": "3MF Reader", "author": "Ultimaker B.V.", "version": "1.0.1", - "description": "Provides support for reading 3MF files.", + "description": "Provides support for reading 3MF and PCB files.", "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/3MFWriter/plugin.json b/plugins/3MFWriter/plugin.json index b59d4ef8e1e..be6d50267c8 100644 --- a/plugins/3MFWriter/plugin.json +++ b/plugins/3MFWriter/plugin.json @@ -2,7 +2,7 @@ "name": "3MF Writer", "author": "Ultimaker B.V.", "version": "1.0.1", - "description": "Provides support for writing 3MF files.", + "description": "Provides support for writing 3MF and PCB files.", "api": 8, "i18n-catalog": "cura" } diff --git a/resources/qml/Menus/FileMenu.qml b/resources/qml/Menus/FileMenu.qml index 36a2820087e..a6fb339fafa 100644 --- a/resources/qml/Menus/FileMenu.qml +++ b/resources/qml/Menus/FileMenu.qml @@ -77,7 +77,10 @@ Cura.Menu enabled: UM.WorkspaceFileHandler.enabled onTriggered: { - var args = { "filter_by_machine": false, "file_type": "workspace", "preferred_mimetypes": "application/x-pcb" }; + var args = { "filter_by_machine": false, + "file_type": "workspace", + "preferred_mimetypes": "application/x-pcb", + "limit_mimetypes": "application/x-pcb"}; UM.OutputDeviceManager.requestWriteToDevice("local_file", PrintInformation.jobName, args) } } From ab0a52063d0d0f327b7b7c4ccbc28d35dd61feb1 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 2 Feb 2024 16:05:36 +0100 Subject: [PATCH 444/765] Now loading user settings CURA-11561 --- plugins/3MFReader/ThreeMFWorkspaceReader.py | 220 +++++++++++++------- plugins/3MFReader/WorkspaceDialog.py | 29 ++- plugins/3MFReader/WorkspaceDialog.qml | 15 +- plugins/3MFWriter/SettingsExportModel.py | 2 +- 4 files changed, 177 insertions(+), 89 deletions(-) diff --git a/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py index 76cd1f386bf..3398b2e7d5c 100755 --- a/plugins/3MFReader/ThreeMFWorkspaceReader.py +++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py @@ -5,6 +5,7 @@ import zipfile import os import json +import re from typing import cast, Dict, List, Optional, Tuple, Any, Set import xml.etree.ElementTree as ET @@ -141,10 +142,13 @@ def __init__(self) -> None: self._old_new_materials: Dict[str, str] = {} self._machine_info = None + self._load_profile = False + def _clearState(self): self._id_mapping = {} self._old_new_materials = {} self._machine_info = None + self._load_profile = False def getNewId(self, old_id: str): """Get a unique name based on the old_id. This is different from directly calling the registry in that it caches results. @@ -228,7 +232,7 @@ def preRead(self, file_name, show_dialog=True, *args, **kwargs): self._resolve_strategies = {k: None for k in resolve_strategy_keys} containers_found_dict = {k: False for k in resolve_strategy_keys} - # Check whether the file is a PCB + # Check whether the file is a PCB, which changes some import options is_pcb = file_name.endswith('.pcb') # @@ -621,6 +625,7 @@ def preRead(self, file_name, show_dialog=True, *args, **kwargs): self._dialog.setHasObjectsOnPlate(Application.getInstance().platformActivity) self._dialog.setMissingPackagesMetadata(missing_package_metadata) self._dialog.setHasVisibleSelectSameProfileChanged(is_pcb) + self._dialog.setAllowCreatemachine(not is_pcb) self._dialog.show() # Choosing the initially selected printer in MachineSelector @@ -652,6 +657,8 @@ def preRead(self, file_name, show_dialog=True, *args, **kwargs): self._dialog.setIsNetworkedMachine(is_networked_machine) self._dialog.setIsAbstractMachine(is_abstract_machine) self._dialog.setMachineName(machine_name) + self._dialog.updateCompatibleMachine() + self._dialog.setSelectSameProfileChecked(self._dialog.isCompatibleMachine) # Block until the dialog is closed. self._dialog.waitForClose() @@ -659,6 +666,8 @@ def preRead(self, file_name, show_dialog=True, *args, **kwargs): if self._dialog.getResult() == {}: return WorkspaceReader.PreReadResult.cancelled + self._load_profile = not is_pcb or self._dialog.selectSameProfileChecked + self._resolve_strategies = self._dialog.getResult() # # There can be 3 resolve strategies coming from the dialog: @@ -694,16 +703,16 @@ def read(self, file_name): except EnvironmentError as e: message = Message(i18n_catalog.i18nc("@info:error Don't translate the XML tags or !", "Project file {0} is suddenly inaccessible: {1}.", file_name, str(e)), - title = i18n_catalog.i18nc("@info:title", "Can't Open Project File"), - message_type = Message.MessageType.ERROR) + title = i18n_catalog.i18nc("@info:title", "Can't Open Project File"), + message_type = Message.MessageType.ERROR) message.show() self.setWorkspaceName("") return [], {} except zipfile.BadZipFile as e: message = Message(i18n_catalog.i18nc("@info:error Don't translate the XML tags or !", "Project file {0} is corrupt: {1}.", file_name, str(e)), - title = i18n_catalog.i18nc("@info:title", "Can't Open Project File"), - message_type = Message.MessageType.ERROR) + title = i18n_catalog.i18nc("@info:title", "Can't Open Project File"), + message_type = Message.MessageType.ERROR) message.show() self.setWorkspaceName("") return [], {} @@ -765,9 +774,9 @@ def read(self, file_name): # Find the machine which will be overridden global_stacks = self._container_registry.findContainerStacks(id = self._dialog.getMachineToOverride(), type = "machine") if not global_stacks: - message = Message(i18n_catalog.i18nc("@info:error Don't translate the XML tag !", + message = Message(i18n_catalog.i18nc("@info:error Don't translate the XML tag !", "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura.", file_name), - message_type = Message.MessageType.ERROR) + message_type = Message.MessageType.ERROR) message.show() self.setWorkspaceName("") return [], {} @@ -781,84 +790,107 @@ def read(self, file_name): for stack in extruder_stacks: stack.setNextStack(global_stack, connect_signals = False) - Logger.log("d", "Workspace loading is checking definitions...") - # Get all the definition files & check if they exist. If not, add them. - definition_container_files = [name for name in cura_file_names if name.endswith(self._definition_container_suffix)] - for definition_container_file in definition_container_files: - container_id = self._stripFileToId(definition_container_file) - - definitions = self._container_registry.findDefinitionContainersMetadata(id = container_id) - if not definitions: - definition_container = DefinitionContainer(container_id) - try: - definition_container.deserialize(archive.open(definition_container_file).read().decode("utf-8"), - file_name = definition_container_file) - except ContainerFormatError: - # We cannot just skip the definition file because everything else later will just break if the - # machine definition cannot be found. - Logger.logException("e", "Failed to deserialize definition file %s in project file %s", - definition_container_file, file_name) - definition_container = self._container_registry.findDefinitionContainers(id = "fdmprinter")[0] #Fall back to defaults. - self._container_registry.addContainer(definition_container) - Job.yieldThread() - QCoreApplication.processEvents() # Ensure that the GUI does not freeze. - - Logger.log("d", "Workspace loading is checking materials...") - # Get all the material files and check if they exist. If not, add them. - xml_material_profile = self._getXmlProfileClass() - if self._material_container_suffix is None: - self._material_container_suffix = ContainerRegistry.getMimeTypeForContainer(xml_material_profile).suffixes[0] - if xml_material_profile: - material_container_files = [name for name in cura_file_names if name.endswith(self._material_container_suffix)] - for material_container_file in material_container_files: - to_deserialize_material = False - container_id = self._stripFileToId(material_container_file) - need_new_name = False - materials = self._container_registry.findInstanceContainers(id = container_id) + user_settings = {} - if not materials: - # No material found, deserialize this material later and add it - to_deserialize_material = True - else: - material_container = materials[0] - old_material_root_id = material_container.getMetaDataEntry("base_file") - if old_material_root_id is not None and not self._container_registry.isReadOnly(old_material_root_id): # Only create new materials if they are not read only. - to_deserialize_material = True + if self._load_profile: + Logger.log("d", "Workspace loading is checking definitions...") + # Get all the definition files & check if they exist. If not, add them. + definition_container_files = [name for name in cura_file_names if name.endswith(self._definition_container_suffix)] + for definition_container_file in definition_container_files: + container_id = self._stripFileToId(definition_container_file) - if self._resolve_strategies["material"] == "override": - # Remove the old materials and then deserialize the one from the project - root_material_id = material_container.getMetaDataEntry("base_file") - application.getContainerRegistry().removeContainer(root_material_id) - elif self._resolve_strategies["material"] == "new": - # Note that we *must* deserialize it with a new ID, as multiple containers will be - # auto created & added. - container_id = self.getNewId(container_id) - self._old_new_materials[old_material_root_id] = container_id - need_new_name = True - - if to_deserialize_material: - material_container = xml_material_profile(container_id) + definitions = self._container_registry.findDefinitionContainersMetadata(id = container_id) + if not definitions: + definition_container = DefinitionContainer(container_id) try: - material_container.deserialize(archive.open(material_container_file).read().decode("utf-8"), - file_name = container_id + "." + self._material_container_suffix) + definition_container.deserialize(archive.open(definition_container_file).read().decode("utf-8"), + file_name = definition_container_file) except ContainerFormatError: - Logger.logException("e", "Failed to deserialize material file %s in project file %s", - material_container_file, file_name) - continue - if need_new_name: - new_name = ContainerRegistry.getInstance().uniqueName(material_container.getName()) - material_container.setName(new_name) - material_container.setDirty(True) - self._container_registry.addContainer(material_container) + # We cannot just skip the definition file because everything else later will just break if the + # machine definition cannot be found. + Logger.logException("e", "Failed to deserialize definition file %s in project file %s", + definition_container_file, file_name) + definition_container = self._container_registry.findDefinitionContainers(id = "fdmprinter")[0] #Fall back to defaults. + self._container_registry.addContainer(definition_container) Job.yieldThread() QCoreApplication.processEvents() # Ensure that the GUI does not freeze. + Logger.log("d", "Workspace loading is checking materials...") + # Get all the material files and check if they exist. If not, add them. + xml_material_profile = self._getXmlProfileClass() + if self._material_container_suffix is None: + self._material_container_suffix = ContainerRegistry.getMimeTypeForContainer(xml_material_profile).suffixes[0] + if xml_material_profile: + material_container_files = [name for name in cura_file_names if name.endswith(self._material_container_suffix)] + for material_container_file in material_container_files: + to_deserialize_material = False + container_id = self._stripFileToId(material_container_file) + need_new_name = False + materials = self._container_registry.findInstanceContainers(id = container_id) + + if not materials: + # No material found, deserialize this material later and add it + to_deserialize_material = True + else: + material_container = materials[0] + old_material_root_id = material_container.getMetaDataEntry("base_file") + if old_material_root_id is not None and not self._container_registry.isReadOnly(old_material_root_id): # Only create new materials if they are not read only. + to_deserialize_material = True + + if self._resolve_strategies["material"] == "override": + # Remove the old materials and then deserialize the one from the project + root_material_id = material_container.getMetaDataEntry("base_file") + application.getContainerRegistry().removeContainer(root_material_id) + elif self._resolve_strategies["material"] == "new": + # Note that we *must* deserialize it with a new ID, as multiple containers will be + # auto created & added. + container_id = self.getNewId(container_id) + self._old_new_materials[old_material_root_id] = container_id + need_new_name = True + + if to_deserialize_material: + material_container = xml_material_profile(container_id) + try: + material_container.deserialize(archive.open(material_container_file).read().decode("utf-8"), + file_name = container_id + "." + self._material_container_suffix) + except ContainerFormatError: + Logger.logException("e", "Failed to deserialize material file %s in project file %s", + material_container_file, file_name) + continue + if need_new_name: + new_name = ContainerRegistry.getInstance().uniqueName(material_container.getName()) + material_container.setName(new_name) + material_container.setDirty(True) + self._container_registry.addContainer(material_container) + Job.yieldThread() + QCoreApplication.processEvents() # Ensure that the GUI does not freeze. + else: + Logger.log("d", "Workspace loading user settings...") + try: + user_settings = json.loads(archive.open("Cura/user-settings.json").read().decode("utf-8")) + except KeyError as e: + # If there is no user settings file, it's not a PCB, so notify user of failure. + Logger.log("w", "File %s is not a valid PCB.", file_name) + message = Message( + i18n_catalog.i18nc("@info:error Don't translate the XML tags or !", + "Project file {0} is corrupt: {1}.", + file_name, str(e)), + title=i18n_catalog.i18nc("@info:title", "Can't Open Project File"), + message_type=Message.MessageType.ERROR) + message.show() + self.setWorkspaceName("") + return [], {} + + if global_stack: - # Handle quality changes if any - self._processQualityChanges(global_stack) + if self._load_profile: + # Handle quality changes if any + self._processQualityChanges(global_stack) - # Prepare the machine - self._applyChangesToMachine(global_stack, extruder_stack_dict) + # Prepare the machine + self._applyChangesToMachine(global_stack, extruder_stack_dict) + else: + self._applyUserSettings(global_stack, extruder_stack_dict, user_settings) Logger.log("d", "Workspace loading is notifying rest of the code of changes...") # Actually change the active machine. @@ -1181,21 +1213,47 @@ def _applyMaterials(self, global_stack, extruder_stack_dict): material_node = machine_node.variants[extruder_stack.variant.getName()].materials[root_material_id] extruder_stack.material = material_node.container - def _applyChangesToMachine(self, global_stack, extruder_stack_dict): - # Clear all first + def _clearMachineSettings(self, global_stack, extruder_stack_dict): self._clearStack(global_stack) for extruder_stack in extruder_stack_dict.values(): self._clearStack(extruder_stack) + self._quality_changes_to_apply = None + self._quality_type_to_apply = None + self._intent_category_to_apply = None + self._user_settings_to_apply = None + + def _applyUserSettings(self, global_stack, extruder_stack_dict, user_settings): + # Clear all first + self._clearMachineSettings(global_stack, extruder_stack_dict) + + for stack_name, settings in user_settings.items(): + if stack_name == 'global': + ThreeMFWorkspaceReader._applyUserSettingsOnStack(global_stack, settings) + else: + extruder_match = re.fullmatch('extruder_([0-9]+)', stack_name) + if extruder_match is not None: + extruder_nr = extruder_match.group(1) + if extruder_nr in extruder_stack_dict: + ThreeMFWorkspaceReader._applyUserSettingsOnStack(extruder_stack_dict[extruder_nr], settings) + + @staticmethod + def _applyUserSettingsOnStack(stack, user_settings): + user_settings_container = stack.userChanges + + for setting_to_import, setting_value in user_settings.items(): + user_settings_container.setProperty(setting_to_import, 'value', setting_value) + + def _applyChangesToMachine(self, global_stack, extruder_stack_dict): + # Clear all first + self._clearMachineSettings(global_stack, extruder_stack_dict) + self._applyDefinitionChanges(global_stack, extruder_stack_dict) self._applyUserChanges(global_stack, extruder_stack_dict) self._applyVariants(global_stack, extruder_stack_dict) self._applyMaterials(global_stack, extruder_stack_dict) # prepare the quality to select - self._quality_changes_to_apply = None - self._quality_type_to_apply = None - self._intent_category_to_apply = None if self._machine_info.quality_changes_info is not None: self._quality_changes_to_apply = self._machine_info.quality_changes_info.name else: diff --git a/plugins/3MFReader/WorkspaceDialog.py b/plugins/3MFReader/WorkspaceDialog.py index c5b624d35d5..c0006e21a85 100644 --- a/plugins/3MFReader/WorkspaceDialog.py +++ b/plugins/3MFReader/WorkspaceDialog.py @@ -73,6 +73,8 @@ def __init__(self, parent = None) -> None: self._is_networked_machine = False self._is_compatible_machine = False self._has_visible_select_same_profile = False + self._select_same_profile_checked = True + self._allow_create_machine = True machineConflictChanged = pyqtSignal() qualityChangesConflictChanged = pyqtSignal() @@ -98,6 +100,7 @@ def __init__(self, parent = None) -> None: missingPackagesChanged = pyqtSignal() isCompatibleMachineChanged = pyqtSignal() hasVisibleSelectSameProfileChanged = pyqtSignal() + selectSameProfileCheckedChanged = pyqtSignal() @pyqtProperty(bool, notify = isPrinterGroupChanged) def isPrinterGroup(self) -> bool: @@ -295,17 +298,19 @@ def getMachineToOverride(self) -> str: @pyqtSlot(str) def setMachineToOverride(self, machine_name: str) -> None: + self._override_machine = machine_name + self.updateCompatibleMachine() + + def updateCompatibleMachine(self): registry = ContainerRegistry.getInstance() - containers_expected = registry.findDefinitionContainers(name = self._machine_type) - containers_selected = registry.findContainerStacks(id = machine_name) + containers_expected = registry.findDefinitionContainers(name=self._machine_type) + containers_selected = registry.findContainerStacks(id=self._override_machine) if len(containers_expected) == 1 and len(containers_selected) == 1: new_compatible_machine = (containers_expected[0] == containers_selected[0].definition) if new_compatible_machine != self._is_compatible_machine: self._is_compatible_machine = new_compatible_machine self.isCompatibleMachineChanged.emit() - self._override_machine = machine_name - @pyqtProperty(bool, notify = isCompatibleMachineChanged) def isCompatibleMachine(self) -> bool: return self._is_compatible_machine @@ -319,6 +324,22 @@ def setHasVisibleSelectSameProfileChanged(self, has_visible_select_same_profile) def hasVisibleSelectSameProfile(self): return self._has_visible_select_same_profile + def setSelectSameProfileChecked(self, select_same_profile_checked): + if select_same_profile_checked != self._select_same_profile_checked: + self._select_same_profile_checked = select_same_profile_checked + self.selectSameProfileCheckedChanged.emit() + + @pyqtProperty(bool, notify = selectSameProfileCheckedChanged, fset = setSelectSameProfileChecked) + def selectSameProfileChecked(self): + return self._select_same_profile_checked + + def setAllowCreatemachine(self, allow_create_machine): + self._allow_create_machine = allow_create_machine + + @pyqtProperty(bool, constant = True) + def allowCreateMachine(self): + return self._allow_create_machine + @pyqtSlot() def closeBackend(self) -> None: """Close the backend: otherwise one could end up with "Slicing...""" diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index 45fe7b69893..c7074ce2200 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -120,13 +120,17 @@ UM.Dialog minDropDownWidth: machineSelector.width - buttons: [ + Component + { + id: componentNewPrinter + Cura.SecondaryButton { id: createNewPrinter text: catalog.i18nc("@button", "Create new") fixedWidthMode: true width: parent.width - leftPadding * 1.5 + visible: manager.allowCreateMachine onClicked: { toggleContent() @@ -136,7 +140,9 @@ UM.Dialog manager.setIsNetworkedMachine(false) } } - ] + } + + buttons: manager.allowCreateMachine ? [componentNewPrinter.createObject()] : [] onSelectPrinter: function(machine) { @@ -191,9 +197,12 @@ UM.Dialog { text: catalog.i18nc("@action:checkbox", "Select the same profile") enabled: manager.isCompatibleMachine - onEnabledChanged: checked = enabled + onEnabledChanged: manager.selectSameProfileChecked = enabled tooltip: enabled ? "" : catalog.i18nc("@tooltip", "You can use the same profile only if you have the same printer as the project was published with") visible: manager.hasVisibleSelectSameProfile + + checked: manager.selectSameProfileChecked + onCheckedChanged: manager.selectSameProfileChecked = checked } } diff --git a/plugins/3MFWriter/SettingsExportModel.py b/plugins/3MFWriter/SettingsExportModel.py index a4acaf02f70..0c342780678 100644 --- a/plugins/3MFWriter/SettingsExportModel.py +++ b/plugins/3MFWriter/SettingsExportModel.py @@ -105,7 +105,7 @@ def settingsGroups(self) -> List[SettingsExportGroup]: @staticmethod def _exportSettings(settings_stack): - user_settings_container = settings_stack.getTop() + user_settings_container = settings_stack.userChanges user_keys = user_settings_container.getAllKeys() settings_export = [] From 2d79479a26d25d81ff523e34c346004f969fb12a Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 2 Feb 2024 16:17:27 +0100 Subject: [PATCH 445/765] Avoid displaying the discard changed dialog CURA-11561 --- plugins/3MFReader/ThreeMFWorkspaceReader.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py index 3398b2e7d5c..57bf4be5bbe 100755 --- a/plugins/3MFReader/ThreeMFWorkspaceReader.py +++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py @@ -890,7 +890,8 @@ def read(self, file_name): # Prepare the machine self._applyChangesToMachine(global_stack, extruder_stack_dict) else: - self._applyUserSettings(global_stack, extruder_stack_dict, user_settings) + # Just clear the settings now, so that we can change the active machine without conflicts + self._clearMachineSettings(global_stack, extruder_stack_dict) Logger.log("d", "Workspace loading is notifying rest of the code of changes...") # Actually change the active machine. @@ -902,6 +903,10 @@ def read(self, file_name): # To solve this, we schedule _updateActiveMachine() for later so it will have the latest data. self._updateActiveMachine(global_stack) + if not self._load_profile: + # Now we have switched, apply the user settings + self._applyUserSettings(global_stack, extruder_stack_dict, user_settings) + # Load all the nodes / mesh data of the workspace nodes = self._3mf_mesh_reader.read(file_name) if nodes is None: @@ -1224,9 +1229,6 @@ def _clearMachineSettings(self, global_stack, extruder_stack_dict): self._user_settings_to_apply = None def _applyUserSettings(self, global_stack, extruder_stack_dict, user_settings): - # Clear all first - self._clearMachineSettings(global_stack, extruder_stack_dict) - for stack_name, settings in user_settings.items(): if stack_name == 'global': ThreeMFWorkspaceReader._applyUserSettingsOnStack(global_stack, settings) From 8a0914c981ad6d3df1a8bcd963b75521f1bcede9 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 2 Feb 2024 16:38:02 +0100 Subject: [PATCH 446/765] Adding more paths MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🥲 CURA-11483 --- cura/CuraApplication.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index ddc080d7488..827f0d85983 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -373,11 +373,16 @@ def __addExpectedResourceDirsAndSearchPaths(self): Resources.addExpectedDirNameInData(dir_name) app_root = os.path.abspath(os.path.join(os.path.dirname(sys.executable))) + Resources.addSecureSearchPath(os.path.join(app_root, "share", "cura", "resources")) Resources.addSecureSearchPath(os.path.join(app_root, "Resources", "share", "cura", "resources")) + Resources.addSecureSearchPath(os.path.join(app_root, "..", "Resources", "share", "cura", "resources")) Resources.addSecureSearchPath(os.path.join(self._app_install_dir, "share", "cura", "resources")) Resources.addSecureSearchPath(os.path.join(self._app_install_dir, "Resources", "share", "cura", "resources")) + Resources.addSecureSearchPath( + os.path.join(self._app_install_dir, "..", "Resources", "share", "cura", "resources")) + if not hasattr(sys, "frozen"): cura_data_root = os.environ.get('CURA_DATA_ROOT', None) if cura_data_root: From 29fcbf7f7453a0db2c589d6e7d092a758c256b87 Mon Sep 17 00:00:00 2001 From: GregValiant <64202104+GregValiant@users.noreply.github.com> Date: Sun, 4 Feb 2024 08:57:08 -0500 Subject: [PATCH 447/765] Update LimitXYAccelJerk.py --- .../scripts/LimitXYAccelJerk.py | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/plugins/PostProcessingPlugin/scripts/LimitXYAccelJerk.py b/plugins/PostProcessingPlugin/scripts/LimitXYAccelJerk.py index 17d17c9e242..9dac57e2188 100644 --- a/plugins/PostProcessingPlugin/scripts/LimitXYAccelJerk.py +++ b/plugins/PostProcessingPlugin/scripts/LimitXYAccelJerk.py @@ -9,6 +9,7 @@ # When setting an accel limit on multi-extruder printers ALL extruders are effected. # This post does not distinguish between Print Accel and Travel Accel. The limit is the limit for all regardless. Example: Skin Accel = 1000 and Outer Wall accel = 500. If the limit is set to 300 then both Skin and Outer Wall will be Accel = 300. # 9/15/2023 added support for RepRap M566 command for Jerk in mm/min +# 2/4/2024 Added a block so the script doesn't run unless Accel Control is enabled in Cura. This should keep users from increasing the Accel Limits. from ..Script import Script from cura.CuraApplication import CuraApplication @@ -45,6 +46,10 @@ def initialize(self) -> None: # Warn the user if the printer is multi-extruder------------------ if ext_count > 1: Message(text = " 'Limit the X-Y Accel/Jerk': The post processor treats all extruders the same. If you have multiple extruders they will all be subject to the same Accel and Jerk limits imposed. If you have different Travel and Print Accel they will also be subject to the same limits. If that is not acceptable then you should not use this Post Processor.").show() + + # Warn the user if Accel Control is not enabled in Cura. This keeps the script from being able to increase the Accel limits----------- + if not bool(extruder[0].getProperty("acceleration_enabled", "value")): + Message(title = "[Limit the X-Y Accel/Jerk]", text = "You must have 'Enable Acceleration Control' checked in Cura or the script will exit.").show() def getSettingDataString(self): return """{ @@ -169,6 +174,13 @@ def execute(self, data): extruder = mycura.extruderList machine_name = str(mycura.getProperty("machine_name", "value")) print_sequence = str(mycura.getProperty("print_sequence", "value")) + acceleration_enabled = bool(extruder[0].getProperty("acceleration_enabled", "value")) + + # Exit if acceleration control is not enabled---------------- + if not acceleration_enabled: + Message(title = "[Limit the X-Y Accel/Jerk]", text = "DID NOT RUN. You must have 'Enable Acceleration Control' checked in Cura.").show() + data[0] += "; [LimitXYAccelJerk] DID NOT RUN because 'Enable Acceleration Control' is not checked in Cura.\n" + return data # Exit if 'one_at_a_time' is enabled------------------------- if print_sequence == "one_at_a_time": @@ -183,12 +195,8 @@ def execute(self, data): return data type_of_change = str(self.getSettingValueByKey("type_of_change")) - accel_print_enabled = bool(extruder[0].getProperty("acceleration_enabled", "value")) - accel_travel_enabled = bool(extruder[0].getProperty("acceleration_travel_enabled", "value")) accel_print = extruder[0].getProperty("acceleration_print", "value") accel_travel = extruder[0].getProperty("acceleration_travel", "value") - jerk_print_enabled = str(extruder[0].getProperty("jerk_enabled", "value")) - jerk_travel_enabled = str(extruder[0].getProperty("jerk_travel_enabled", "value")) jerk_print_old = extruder[0].getProperty("jerk_print", "value") jerk_travel_old = extruder[0].getProperty("jerk_travel", "value") if int(accel_print) >= int(accel_travel): From c29eb49113a18fa1eb29cdcb56f2d173b2d0d327 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Sun, 4 Feb 2024 22:44:21 +0100 Subject: [PATCH 448/765] Add more `paths` --- plugins/CuraEngineBackend/CuraEngineBackend.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/CuraEngineBackend/CuraEngineBackend.py b/plugins/CuraEngineBackend/CuraEngineBackend.py index 0c4003fadc4..66949eeaf53 100755 --- a/plugins/CuraEngineBackend/CuraEngineBackend.py +++ b/plugins/CuraEngineBackend/CuraEngineBackend.py @@ -76,6 +76,7 @@ def __init__(self) -> None: self._default_engine_location = executable_name search_path = [ + os.path.abspath(os.path.join(os.path.dirname(sys.executable), "..", "Resources")), os.path.abspath(os.path.dirname(sys.executable)), os.path.abspath(os.path.join(os.path.dirname(sys.executable), "bin")), os.path.abspath(os.path.join(os.path.dirname(sys.executable), "..")), From fc081b20e30bc4e978a5103a8a6c6a77e4cf6aed Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Sun, 4 Feb 2024 22:48:55 +0100 Subject: [PATCH 449/765] Remove unused variable --- conanfile.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/conanfile.py b/conanfile.py index 18fe3395282..3b48442fa0a 100644 --- a/conanfile.py +++ b/conanfile.py @@ -166,8 +166,6 @@ def _python_installs(self): self.output.info("Collecting python installs") python_installs = {} - python_executable = "python3" if self.settings.os == "Macos" else "python" - # list of python installs run_env = VirtualRunEnv(self) env = run_env.environment() From 7d9a699eb145ee68ada6b793da7584241c564a65 Mon Sep 17 00:00:00 2001 From: Saumya Jain <70144862+saumyaj3@users.noreply.github.com> Date: Mon, 5 Feb 2024 09:07:22 +0100 Subject: [PATCH 450/765] Update cura/CuraApplication.py using modern typing Co-authored-by: Casper Lamboo --- cura/CuraApplication.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 08fec4479e4..508c36bf7c6 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -187,7 +187,7 @@ def __init__(self, *args, **kwargs): self._cura_formula_functions = None # type: Optional[CuraFormulaFunctions] - self._machine_action_manager = None # type: Optional[MachineActionManager] + self._machine_action_manager: Optional[MachineActionManager] = None self.empty_container = None # type: EmptyInstanceContainer self.empty_definition_changes_container = None # type: EmptyInstanceContainer From 9d6f80fb86a0d1585bf6d6e86e2053c2a65c4a6b Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 5 Feb 2024 09:27:01 +0100 Subject: [PATCH 451/765] Also make app bundle for linux/windows --- UltiMaker-Cura.spec.jinja | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/UltiMaker-Cura.spec.jinja b/UltiMaker-Cura.spec.jinja index 2c930e6ed6a..795de414245 100644 --- a/UltiMaker-Cura.spec.jinja +++ b/UltiMaker-Cura.spec.jinja @@ -69,9 +69,9 @@ coll = COLLECT( name=r'{{ name }}' ) -{% if macos == true %} app = BUNDLE( coll, + {% if macos == true %} name='{{ display_name }}.app', icon={{ icon }}, bundle_identifier={{ osx_bundle_identifier }} + "_" + '{{ display_name }}'.replace(" ", "_") + "_" {{ short_version }}, @@ -90,10 +90,10 @@ app = BUNDLE( 'CFBundleURLSchemes': ['cura', 'slicer'], }], 'CFBundleDocumentTypes': [{ - 'CFBundleTypeRole': 'Viewer', - 'CFBundleTypeExtensions': ['*'], - 'CFBundleTypeName': 'Model Files', - }] - }, + 'CFBundleTypeRole': 'Viewer', + 'CFBundleTypeExtensions': ['*'], + 'CFBundleTypeName': 'Model Files', + }] + }, + {% endif %} ) -{% endif %} From ebea2b46db71f472a7f8080de17ae8c27eb43c87 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 5 Feb 2024 10:46:34 +0100 Subject: [PATCH 452/765] Only bundle for mac CURA-11483 --- UltiMaker-Cura.spec.jinja | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UltiMaker-Cura.spec.jinja b/UltiMaker-Cura.spec.jinja index 795de414245..ec9820fd577 100644 --- a/UltiMaker-Cura.spec.jinja +++ b/UltiMaker-Cura.spec.jinja @@ -69,9 +69,9 @@ coll = COLLECT( name=r'{{ name }}' ) +{% if macos == true %} app = BUNDLE( coll, - {% if macos == true %} name='{{ display_name }}.app', icon={{ icon }}, bundle_identifier={{ osx_bundle_identifier }} + "_" + '{{ display_name }}'.replace(" ", "_") + "_" {{ short_version }}, @@ -95,5 +95,5 @@ app = BUNDLE( 'CFBundleTypeName': 'Model Files', }] }, - {% endif %} ) +{% endif %} From 54d6315f28f1ff0240aea1b9e63cf6f115542838 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 5 Feb 2024 10:58:19 +0100 Subject: [PATCH 453/765] Fix broken windows/linux builds Due to some breaking changes in pyinstaller upgrade, add option to use old packaging https://github.com/pyinstaller/pyinstaller/pull/7713 CURA-11483 --- UltiMaker-Cura.spec.jinja | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/UltiMaker-Cura.spec.jinja b/UltiMaker-Cura.spec.jinja index ec9820fd577..99bfa80078c 100644 --- a/UltiMaker-Cura.spec.jinja +++ b/UltiMaker-Cura.spec.jinja @@ -55,7 +55,8 @@ exe = EXE( target_arch={{ target_arch }}, codesign_identity=os.getenv('CODESIGN_IDENTITY', None), entitlements_file={{ entitlements_file }}, - icon={{ icon }} + icon={{ icon }}, + contents_directory='.' ) coll = COLLECT( From 965f9e5a1cfc1dcab15d1e1ad2fe0b38017ed7d4 Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Mon, 5 Feb 2024 11:15:34 +0100 Subject: [PATCH 454/765] Increased maximum warning value for the small skin width from 3 line widths to 10 line widths. PP-424 --- resources/definitions/fdmprinter.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 03850a7344e..36590649d08 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -1668,7 +1668,7 @@ "value": "skin_line_width * 2", "default_value": 1, "minimum_value": "0", - "maximum_value_warning": "skin_line_width * 3", + "maximum_value_warning": "skin_line_width * 10", "type": "float", "enabled": "(top_layers > 0 or bottom_layers > 0) and top_bottom_pattern != 'concentric'", "limit_to_extruder": "top_bottom_extruder_nr", From 0f6f18e7ddb2db7f9b9851938467070ce5c9ae6b Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 5 Feb 2024 11:30:15 +0100 Subject: [PATCH 455/765] Clean up some paths CURA-11483 --- cura/CuraApplication.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 827f0d85983..241113ece79 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -374,14 +374,15 @@ def __addExpectedResourceDirsAndSearchPaths(self): app_root = os.path.abspath(os.path.join(os.path.dirname(sys.executable))) - Resources.addSecureSearchPath(os.path.join(app_root, "share", "cura", "resources")) - Resources.addSecureSearchPath(os.path.join(app_root, "Resources", "share", "cura", "resources")) - Resources.addSecureSearchPath(os.path.join(app_root, "..", "Resources", "share", "cura", "resources")) - - Resources.addSecureSearchPath(os.path.join(self._app_install_dir, "share", "cura", "resources")) - Resources.addSecureSearchPath(os.path.join(self._app_install_dir, "Resources", "share", "cura", "resources")) - Resources.addSecureSearchPath( - os.path.join(self._app_install_dir, "..", "Resources", "share", "cura", "resources")) + if platform.system() == "Darwin": + Resources.addSecureSearchPath(os.path.join(app_root, "Resources", "share", "cura", "resources")) + Resources.addSecureSearchPath(os.path.join(app_root, "..", "Resources", "share", "cura", "resources")) + Resources.addSecureSearchPath( + os.path.join(self._app_install_dir, "..", "Resources", "share", "cura", "resources")) + else: + Resources.addSecureSearchPath(os.path.join(app_root, "share", "cura", "resources")) + Resources.addSecureSearchPath(os.path.join(self._app_install_dir, "share", "cura", "resources")) + Resources.addSecureSearchPath(os.path.join(app_root, "Resources", "share", "cura", "resources")) if not hasattr(sys, "frozen"): cura_data_root = os.environ.get('CURA_DATA_ROOT', None) @@ -396,7 +397,6 @@ def __addExpectedResourceDirsAndSearchPaths(self): # venv site-packages Resources.addSearchPath(os.path.join(app_root, "..", "share", "cura", "resources")) - Resources.addSearchPath(os.path.join(app_root, "..", "Resources", "share", "cura", "resources")) @classmethod def _initializeSettingDefinitions(cls): From 03abc91bda185549642666f50f833dd14f95df0d Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Mon, 5 Feb 2024 11:35:44 +0100 Subject: [PATCH 456/765] Improved self support z distance settings for Ultimaker PLA, T-PLA, PETG and ABS PP-424 --- .../quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg | 3 +-- .../quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg | 1 + .../quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg | 3 +-- .../quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg | 1 + 50 files changed, 50 insertions(+), 50 deletions(-) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg index 8557b08b1b3..24c5a1d9e64 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg @@ -27,7 +27,6 @@ acceleration_wall_x = =acceleration_wall bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 -cool_fan_speed_0 = 0 cool_min_layer_time = 4 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 @@ -65,7 +64,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg index 1aa26ebcfc3..e3965d9c5c6 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg @@ -63,7 +63,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg index 3343f7627ae..9589f2f915a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg @@ -64,7 +64,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg index d0d532f4108..b8aec4972ff 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg @@ -64,7 +64,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg index 85dc32801e8..de5e0faf2e1 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg @@ -65,7 +65,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg index ee0525c13eb..c39c6d42c81 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg @@ -66,7 +66,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg index ca1d9d7afc7..08bb2befdf4 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg @@ -65,7 +65,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg index 57413c4b301..9d67113da0e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg @@ -67,7 +67,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg index 0052ce90cda..cc0da1a2531 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg @@ -67,7 +67,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.4 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg index 0e9ceaf9e3f..7eb5de8b646 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg @@ -64,7 +64,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg index 8732c3ad637..d4431382ddb 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg @@ -65,7 +65,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg index 6f8db111419..bb7de56356f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg @@ -64,7 +64,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg index e7e50350c0e..6b333e2f138 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg @@ -66,7 +66,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg index 5ecaa739dbd..854b868259c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg @@ -66,7 +66,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.4 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg index 25887f19d77..9678ba95235 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg @@ -65,7 +65,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg index 136a3bed425..c53596bc9f0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg @@ -66,7 +66,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg index e8820673eaa..58a8a1ebb09 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg @@ -65,7 +65,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg index dcbb580edb2..c3139970db2 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg @@ -67,7 +67,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg index fc2a185be49..6f450463b9a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg @@ -67,7 +67,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg index 73f25eae0f7..e193aa51c33 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg @@ -65,7 +65,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg index 2aa24f805d7..622f2030e46 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg @@ -66,7 +66,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.35 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg index e51d440c316..09f02aa3751 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg @@ -65,7 +65,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg index 151af3ed50e..91b522349df 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg @@ -66,7 +66,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.35 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg index 56c097d8902..2fd9e5ef2c5 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg @@ -67,7 +67,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.4 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg index a76864a1a3c..2310f2503f1 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg @@ -69,6 +69,7 @@ speed_wall_x_roofing = =speed_roofing support_angle = 70 support_interface_enable = False support_structure = tree +support_z_distance = 0.35 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg index d725b5aa159..7b14730a660 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg @@ -27,7 +27,6 @@ acceleration_wall_x = =acceleration_wall bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 -cool_fan_speed_0 = 0 cool_min_layer_time = 4 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 @@ -65,7 +64,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg index 82e07b6fdf2..a2233703d49 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg @@ -63,7 +63,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg index 789d186f77d..44f6670085e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg @@ -64,7 +64,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg index 307869d494e..997f823e51a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg @@ -64,7 +64,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg index fbe230fb2e9..c0b4799ca95 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg @@ -65,7 +65,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg index 9c7ceca13b1..d430f867d85 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg @@ -66,7 +66,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg index 8ef78a6fb55..b2c25e26c70 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg @@ -65,7 +65,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg index f430e6bc16c..8a02dfe38c1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg @@ -67,7 +67,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg index 98ca8927b65..9a100248130 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg @@ -67,7 +67,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.4 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg index aea89068776..ef58c146639 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg @@ -64,7 +64,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg index 201c663d5c2..5d14f014b94 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg @@ -65,7 +65,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg index a9d239bf3a5..d23a7b8ceab 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg @@ -64,7 +64,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg index 55696eccb4b..8bfe1173800 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg @@ -66,7 +66,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg index fe3eeb67ad0..ab66eed0ab2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg @@ -66,7 +66,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.4 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg index a9043c7372b..2b192e8c1c9 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg @@ -65,7 +65,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg index 713f94219f3..11301a29907 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg @@ -66,7 +66,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg index 4e451d4165c..1d07e0f63c8 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg @@ -65,7 +65,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg index 02d22b06b8b..990271dd9e8 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg @@ -67,7 +67,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg index b0d5d41d0f6..a01b433eb2b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg @@ -67,7 +67,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg index 641c1279e40..f368ac13d87 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg @@ -65,7 +65,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg index 55e724da9d4..b699ebc9f33 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg @@ -66,7 +66,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.35 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg index 35e8c0903c4..d0ee391c657 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg @@ -65,7 +65,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg index ee0ee279e6b..d9bbd7cc00b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg @@ -66,7 +66,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.35 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg index 875bd5a669c..fc8507c42b2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg @@ -67,7 +67,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.4 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg index 4973ec35bbc..b3711c1cbd6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg @@ -69,6 +69,7 @@ speed_wall_x_roofing = =speed_roofing support_angle = 70 support_interface_enable = False support_structure = tree +support_z_distance = 0.35 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 z_seam_relative = True From 9afe5b46dbaf94d5214df9e8f285dcb39b0f3eb6 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Mon, 5 Feb 2024 12:39:56 +0100 Subject: [PATCH 457/765] We now display the global and extruder settings in the dialog CURA-11561 --- plugins/3MFReader/ThreeMFWorkspaceReader.py | 54 +++++++++++++-------- plugins/3MFReader/WorkspaceDialog.py | 7 +++ plugins/3MFReader/WorkspaceDialog.qml | 45 ++++++++++++++--- plugins/3MFReader/WorkspaceRow.qml | 20 ++++++-- 4 files changed, 96 insertions(+), 30 deletions(-) diff --git a/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py index 57bf4be5bbe..caf411bc676 100755 --- a/plugins/3MFReader/ThreeMFWorkspaceReader.py +++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py @@ -143,12 +143,14 @@ def __init__(self) -> None: self._machine_info = None self._load_profile = False + self._user_settings: Dict[str, Dict[str, Any]] = {} def _clearState(self): self._id_mapping = {} self._old_new_materials = {} self._machine_info = None self._load_profile = False + self._user_settings = {} def getNewId(self, old_id: str): """Get a unique name based on the old_id. This is different from directly calling the registry in that it caches results. @@ -604,6 +606,36 @@ def preRead(self, file_name, show_dialog=True, *args, **kwargs): package_metadata = self._parse_packages_metadata(archive) missing_package_metadata = self._filter_missing_package_metadata(package_metadata) + # Load the user specifically exported settings + self._dialog.exportedSettingModel.clear() + if is_pcb: + try: + self._user_settings = json.loads(archive.open("Cura/user-settings.json").read().decode("utf-8")) + any_extruder_stack = ExtruderManager.getInstance().getExtruderStack(0) + + for stack_name, settings in self._user_settings.items(): + if stack_name == 'global': + self._dialog.exportedSettingModel.addSettingsFromStack(global_stack, i18n_catalog.i18nc("@label", "Global"), settings) + else: + extruder_match = re.fullmatch('extruder_([0-9]+)', stack_name) + if extruder_match is not None: + extruder_nr = int(extruder_match.group(1)) + self._dialog.exportedSettingModel.addSettingsFromStack(any_extruder_stack, + i18n_catalog.i18nc("@label", + "Extruder {0}", extruder_nr + 1), + settings) + except KeyError as e: + # If there is no user settings file, it's not a PCB, so notify user of failure. + Logger.log("w", "File %s is not a valid PCB.", file_name) + message = Message( + i18n_catalog.i18nc("@info:error Don't translate the XML tags or !", + "Project file {0} is corrupt: {1}.", + file_name, str(e)), + title=i18n_catalog.i18nc("@info:title", "Can't Open Project File"), + message_type=Message.MessageType.ERROR) + message.show() + return WorkspaceReader.PreReadResult.failed + # Show the dialog, informing the user what is about to happen. self._dialog.setMachineConflict(machine_conflict) self._dialog.setIsPrinterGroup(is_printer_group) @@ -628,6 +660,7 @@ def preRead(self, file_name, show_dialog=True, *args, **kwargs): self._dialog.setAllowCreatemachine(not is_pcb) self._dialog.show() + # Choosing the initially selected printer in MachineSelector is_networked_machine = False is_abstract_machine = False @@ -790,8 +823,6 @@ def read(self, file_name): for stack in extruder_stacks: stack.setNextStack(global_stack, connect_signals = False) - user_settings = {} - if self._load_profile: Logger.log("d", "Workspace loading is checking definitions...") # Get all the definition files & check if they exist. If not, add them. @@ -864,23 +895,6 @@ def read(self, file_name): self._container_registry.addContainer(material_container) Job.yieldThread() QCoreApplication.processEvents() # Ensure that the GUI does not freeze. - else: - Logger.log("d", "Workspace loading user settings...") - try: - user_settings = json.loads(archive.open("Cura/user-settings.json").read().decode("utf-8")) - except KeyError as e: - # If there is no user settings file, it's not a PCB, so notify user of failure. - Logger.log("w", "File %s is not a valid PCB.", file_name) - message = Message( - i18n_catalog.i18nc("@info:error Don't translate the XML tags or !", - "Project file {0} is corrupt: {1}.", - file_name, str(e)), - title=i18n_catalog.i18nc("@info:title", "Can't Open Project File"), - message_type=Message.MessageType.ERROR) - message.show() - self.setWorkspaceName("") - return [], {} - if global_stack: if self._load_profile: @@ -905,7 +919,7 @@ def read(self, file_name): if not self._load_profile: # Now we have switched, apply the user settings - self._applyUserSettings(global_stack, extruder_stack_dict, user_settings) + self._applyUserSettings(global_stack, extruder_stack_dict, self._user_settings) # Load all the nodes / mesh data of the workspace nodes = self._3mf_mesh_reader.read(file_name) diff --git a/plugins/3MFReader/WorkspaceDialog.py b/plugins/3MFReader/WorkspaceDialog.py index c0006e21a85..1fafcf59f5b 100644 --- a/plugins/3MFReader/WorkspaceDialog.py +++ b/plugins/3MFReader/WorkspaceDialog.py @@ -22,6 +22,8 @@ from cura.CuraApplication import CuraApplication +from .SpecificSettingsModel import SpecificSettingsModel + i18n_catalog = i18nCatalog("cura") @@ -75,6 +77,7 @@ def __init__(self, parent = None) -> None: self._has_visible_select_same_profile = False self._select_same_profile_checked = True self._allow_create_machine = True + self._exported_settings_model = SpecificSettingsModel() machineConflictChanged = pyqtSignal() qualityChangesConflictChanged = pyqtSignal() @@ -340,6 +343,10 @@ def setAllowCreatemachine(self, allow_create_machine): def allowCreateMachine(self): return self._allow_create_machine + @pyqtProperty(QObject, constant = True) + def exportedSettingModel(self): + return self._exported_settings_model + @pyqtSlot() def closeBackend(self) -> None: """Close the backend: otherwise one could end up with "Slicing...""" diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index c7074ce2200..b6a9d597515 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -1,12 +1,12 @@ // Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. -import QtQuick 2.10 +import QtQuick 2.14 import QtQuick.Controls 2.3 import QtQuick.Layouts 1.3 import QtQuick.Window 2.2 -import UM 1.5 as UM +import UM 1.6 as UM import Cura 1.1 as Cura UM.Dialog @@ -171,35 +171,68 @@ UM.Dialog { leftLabelText: catalog.i18nc("@action:label", "Name") rightLabelText: manager.qualityName + visible: manager.isCompatibleMachine } WorkspaceRow { leftLabelText: catalog.i18nc("@action:label", "Intent") rightLabelText: manager.intentName + visible: manager.isCompatibleMachine } WorkspaceRow { leftLabelText: catalog.i18nc("@action:label", "Not in profile") rightLabelText: catalog.i18ncp("@action:label", "%1 override", "%1 overrides", manager.numUserSettings).arg(manager.numUserSettings) - visible: manager.numUserSettings != 0 + visible: manager.numUserSettings != 0 && manager.selectSameProfileChecked && manager.isCompatibleMachine } WorkspaceRow { leftLabelText: catalog.i18nc("@action:label", "Derivative from") rightLabelText: catalog.i18ncp("@action:label", "%1, %2 override", "%1, %2 overrides", manager.numSettingsOverridenByQualityChanges).arg(manager.qualityType).arg(manager.numSettingsOverridenByQualityChanges) - visible: manager.numSettingsOverridenByQualityChanges != 0 + visible: manager.numSettingsOverridenByQualityChanges != 0 && manager.selectSameProfileChecked && manager.isCompatibleMachine + } + + WorkspaceRow + { + leftLabelText: catalog.i18nc("@action:label", "Specific settings") + rightLabelText: catalog.i18ncp("@action:label", "%1 override", "%1 overrides", manager.exportedSettingModel.rowCount()).arg(manager.exportedSettingModel.rowCount()) + buttonText: tableViewSpecificSettings.shouldBeVisible ? catalog.i18nc("@action:button", "Hide settings") : catalog.i18nc("@action:button", "Show settings") + visible: !manager.selectSameProfileChecked || !manager.isCompatibleMachine + onButtonClicked: tableViewSpecificSettings.shouldBeVisible = !tableViewSpecificSettings.shouldBeVisible + } + + Cura.TableView + { + id: tableViewSpecificSettings + width: parent.width - parent.leftPadding - UM.Theme.getSize("default_margin").width + height: UM.Theme.getSize("card").height + visible: shouldBeVisible && (!manager.selectSameProfileChecked || !manager.isCompatibleMachine) + property bool shouldBeVisible: false + + columnHeaders: + [ + catalog.i18nc("@title:column", "Applies on"), + catalog.i18nc("@title:column", "Setting"), + catalog.i18nc("@title:column", "Value") + ] + + model: UM.TableModel + { + id: tableModel + headers: ["category", "label", "value"] + rows: manager.exportedSettingModel.items + } } UM.CheckBox { text: catalog.i18nc("@action:checkbox", "Select the same profile") - enabled: manager.isCompatibleMachine onEnabledChanged: manager.selectSameProfileChecked = enabled tooltip: enabled ? "" : catalog.i18nc("@tooltip", "You can use the same profile only if you have the same printer as the project was published with") - visible: manager.hasVisibleSelectSameProfile + visible: manager.hasVisibleSelectSameProfile && manager.isCompatibleMachine checked: manager.selectSameProfileChecked onCheckedChanged: manager.selectSameProfileChecked = checked diff --git a/plugins/3MFReader/WorkspaceRow.qml b/plugins/3MFReader/WorkspaceRow.qml index 8d9f1f25b39..855b8c18b0b 100644 --- a/plugins/3MFReader/WorkspaceRow.qml +++ b/plugins/3MFReader/WorkspaceRow.qml @@ -9,26 +9,38 @@ import QtQuick.Window 2.2 import UM 1.5 as UM import Cura 1.1 as Cura -Row +RowLayout { + id: root + property alias leftLabelText: leftLabel.text property alias rightLabelText: rightLabel.text + property alias buttonText: button.text + signal buttonClicked width: parent.width - height: visible ? childrenRect.height : 0 UM.Label { id: leftLabel text: catalog.i18nc("@action:label", "Type") - width: Math.round(parent.width / 4) + Layout.preferredWidth: Math.round(parent.width / 4) wrapMode: Text.WordWrap } + UM.Label { id: rightLabel text: manager.machineType - width: Math.round(parent.width / 3) wrapMode: Text.WordWrap } + + Cura.TertiaryButton + { + id: button + visible: !text.isEmpty + Layout.maximumHeight: leftLabel.implicitHeight + Layout.fillWidth: true + onClicked: root.buttonClicked() + } } \ No newline at end of file From 2ae990833486e035c8291732e211b32d2ff55799 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Mon, 5 Feb 2024 12:58:02 +0100 Subject: [PATCH 458/765] Fix crash CURA-11561 --- plugins/3MFReader/ThreeMFWorkspaceReader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py index caf411bc676..c28880211da 100755 --- a/plugins/3MFReader/ThreeMFWorkspaceReader.py +++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py @@ -699,7 +699,7 @@ def preRead(self, file_name, show_dialog=True, *args, **kwargs): if self._dialog.getResult() == {}: return WorkspaceReader.PreReadResult.cancelled - self._load_profile = not is_pcb or self._dialog.selectSameProfileChecked + self._load_profile = not is_pcb or (self._dialog.selectSameProfileChecked and self._dialog.isCompatibleMachine) self._resolve_strategies = self._dialog.getResult() # From bf3f4061df832376ad30e424ad751d972d41964d Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Mon, 5 Feb 2024 13:12:14 +0100 Subject: [PATCH 459/765] Fix ratrig definitions --- resources/definitions/ratrig_base.def.json | 1 + resources/definitions/ratrig_vcore3_base.def.json | 1 - resources/definitions/ratrig_vminion.def.json | 1 - 3 files changed, 1 insertion(+), 2 deletions(-) diff --git a/resources/definitions/ratrig_base.def.json b/resources/definitions/ratrig_base.def.json index 22c01c8bc31..ebbef821ce0 100644 --- a/resources/definitions/ratrig_base.def.json +++ b/resources/definitions/ratrig_base.def.json @@ -9,6 +9,7 @@ "manufacturer": "RatRig", "file_formats": "text/x-gcode", "exclude_materials": [], + "machine_extruder_trains": { "0": "ratrig_base_extruder_0" }, "first_start_actions": [ "MachineSettingsAction" ], "has_materials": true, "preferred_material": "generic_pla", diff --git a/resources/definitions/ratrig_vcore3_base.def.json b/resources/definitions/ratrig_vcore3_base.def.json index a736da45069..7788bf36f81 100644 --- a/resources/definitions/ratrig_vcore3_base.def.json +++ b/resources/definitions/ratrig_vcore3_base.def.json @@ -27,7 +27,6 @@ "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, "cool_min_layer_time": { "value": 2 }, "fill_outline_gaps": { "value": false }, - "filter_out_tiny_gaps": { "value": false }, "gantry_height": { "value": 30 }, "infill_before_walls": { "value": false }, "infill_overlap": { "value": 30 }, diff --git a/resources/definitions/ratrig_vminion.def.json b/resources/definitions/ratrig_vminion.def.json index 3cfb3baad6e..425e1e6a157 100644 --- a/resources/definitions/ratrig_vminion.def.json +++ b/resources/definitions/ratrig_vminion.def.json @@ -34,7 +34,6 @@ "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, "cool_min_layer_time": { "value": 2 }, "fill_outline_gaps": { "value": false }, - "filter_out_tiny_gaps": { "value": false }, "gantry_height": { "value": 30 }, "infill_before_walls": { "value": false }, "infill_overlap": { "value": 30 }, From d67f0696cd0cd1759e65dda99ed9439b67562542 Mon Sep 17 00:00:00 2001 From: nallath Date: Mon, 5 Feb 2024 12:14:00 +0000 Subject: [PATCH 460/765] Applied printer-linter format --- resources/definitions/ratrig_base.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/ratrig_base.def.json b/resources/definitions/ratrig_base.def.json index ac952969c48..69ab0f139d4 100644 --- a/resources/definitions/ratrig_base.def.json +++ b/resources/definitions/ratrig_base.def.json @@ -9,9 +9,9 @@ "manufacturer": "RatRig", "file_formats": "text/x-gcode", "exclude_materials": [], - "machine_extruder_trains": { "0": "ratrig_base_extruder_0" }, "first_start_actions": [ "MachineSettingsAction" ], "has_materials": true, + "machine_extruder_trains": { "0": "ratrig_base_extruder_0" }, "preferred_material": "generic_pla", "preferred_quality_type": "standard", "quality_definition": "ratrig_base", From 21517c502589000777d42e0b1c3dcd487e9260bc Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Mon, 5 Feb 2024 13:22:26 +0100 Subject: [PATCH 461/765] Adding openURL in singleinstance --- cura/SingleInstance.py | 6 +++++- packaging/NSIS/Ultimaker-Cura.nsi.jinja | 2 +- packaging/msi/UltiMaker-Cura.wxs.jinja | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/cura/SingleInstance.py b/cura/SingleInstance.py index 61ab1204fe1..2c3e816767a 100644 --- a/cura/SingleInstance.py +++ b/cura/SingleInstance.py @@ -92,7 +92,11 @@ def __readCommands(self, connection: QLocalSocket) -> None: # Command: Load a model or project file elif command == "open": - self._application.callLater(lambda f = payload["filePath"]: self._application._openFile(f)) + if payload["filePath"].file(): + self._application.callLater(lambda f = payload["filePath"]: self._application._openFile(f)) + if payload["filePath"].url(): + self._application.callLater(lambda f= payload["filepath"]: self._application._openUrl(f)) + # Command: Activate the window and bring it to the top. elif command == "focus": diff --git a/packaging/NSIS/Ultimaker-Cura.nsi.jinja b/packaging/NSIS/Ultimaker-Cura.nsi.jinja index 0a2ce0f517a..2106c473120 100644 --- a/packaging/NSIS/Ultimaker-Cura.nsi.jinja +++ b/packaging/NSIS/Ultimaker-Cura.nsi.jinja @@ -156,7 +156,7 @@ WriteRegStr HKCR "slicer" "" "URL:slicer" WriteRegStr HKCR "slicer" "URL Protocol" "" WriteRegStr HKCR "slicer\DefaultIcon" "" "$INSTDIR\${MAIN_APP_EXE},1" WriteRegStr HKCR "slicer\shell" "" "open" -WriteRegStr HKCR "slicer\shell\open\command" "" '"$INSTDIR\${MAIN_APP_EXE}" "%1"' +WriteRegStr HKCR "slicer\shell\open\command" "" '"$INSTDIR\${MAIN_APP_EXE}" --single-instance "%1"' SectionEnd ###################################################################### diff --git a/packaging/msi/UltiMaker-Cura.wxs.jinja b/packaging/msi/UltiMaker-Cura.wxs.jinja index 21f017c8139..13c5d2842e7 100644 --- a/packaging/msi/UltiMaker-Cura.wxs.jinja +++ b/packaging/msi/UltiMaker-Cura.wxs.jinja @@ -165,7 +165,7 @@ - + From 63c1eb8990ff3b86337fddb0331bc8ca24ea1092 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Mon, 5 Feb 2024 14:15:43 +0100 Subject: [PATCH 462/765] Rename to Universal Cura Project CURA-11561 --- plugins/3MFReader/ThreeMFReader.py | 8 ++++---- plugins/3MFReader/ThreeMFWorkspaceReader.py | 20 +++++++++---------- plugins/3MFReader/__init__.py | 8 ++++---- plugins/3MFReader/plugin.json | 2 +- plugins/3MFWriter/ThreeMFWorkspaceWriter.py | 16 +++++++-------- .../3MFWriter/{PCBDialog.py => UCPDialog.py} | 4 ++-- .../{PCBDialog.qml => UCPDialog.qml} | 6 +++--- plugins/3MFWriter/__init__.py | 12 +++++------ plugins/3MFWriter/plugin.json | 2 +- resources/qml/Menus/FileMenu.qml | 8 ++++---- 10 files changed, 43 insertions(+), 43 deletions(-) rename plugins/3MFWriter/{PCBDialog.py => UCPDialog.py} (94%) rename plugins/3MFWriter/{PCBDialog.qml => UCPDialog.qml} (86%) diff --git a/plugins/3MFReader/ThreeMFReader.py b/plugins/3MFReader/ThreeMFReader.py index 9f4a4b197b6..13d069f5a77 100755 --- a/plugins/3MFReader/ThreeMFReader.py +++ b/plugins/3MFReader/ThreeMFReader.py @@ -48,13 +48,13 @@ def __init__(self) -> None: ) MimeTypeDatabase.addMimeType( MimeType( - name="application/x-pcb", - comment="PCB", - suffixes=["pcb"] + name="application/x-ucp", + comment="UCP", + suffixes=["ucp"] ) ) - self._supported_extensions = [".3mf", ".pcb"] + self._supported_extensions = [".3mf", ".ucp"] self._root = None self._base_name = "" self._unit = None diff --git a/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py index c28880211da..e3056065a82 100755 --- a/plugins/3MFReader/ThreeMFWorkspaceReader.py +++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py @@ -113,7 +113,7 @@ class ThreeMFWorkspaceReader(WorkspaceReader): def __init__(self) -> None: super().__init__() - self._supported_extensions = [".3mf", ".pcb"] + self._supported_extensions = [".3mf", ".ucp"] self._dialog = WorkspaceDialog() self._3mf_mesh_reader = None self._container_registry = ContainerRegistry.getInstance() @@ -234,14 +234,14 @@ def preRead(self, file_name, show_dialog=True, *args, **kwargs): self._resolve_strategies = {k: None for k in resolve_strategy_keys} containers_found_dict = {k: False for k in resolve_strategy_keys} - # Check whether the file is a PCB, which changes some import options - is_pcb = file_name.endswith('.pcb') + # Check whether the file is a UCP, which changes some import options + is_ucp = file_name.endswith('.ucp') # # Read definition containers # machine_definition_id = None - updatable_machines = None if is_pcb else [] + updatable_machines = None if is_ucp else [] machine_definition_container_count = 0 extruder_definition_container_count = 0 definition_container_files = [name for name in cura_file_names if name.endswith(self._definition_container_suffix)] @@ -608,7 +608,7 @@ def preRead(self, file_name, show_dialog=True, *args, **kwargs): # Load the user specifically exported settings self._dialog.exportedSettingModel.clear() - if is_pcb: + if is_ucp: try: self._user_settings = json.loads(archive.open("Cura/user-settings.json").read().decode("utf-8")) any_extruder_stack = ExtruderManager.getInstance().getExtruderStack(0) @@ -625,8 +625,8 @@ def preRead(self, file_name, show_dialog=True, *args, **kwargs): "Extruder {0}", extruder_nr + 1), settings) except KeyError as e: - # If there is no user settings file, it's not a PCB, so notify user of failure. - Logger.log("w", "File %s is not a valid PCB.", file_name) + # If there is no user settings file, it's not a UCP, so notify user of failure. + Logger.log("w", "File %s is not a valid UCP.", file_name) message = Message( i18n_catalog.i18nc("@info:error Don't translate the XML tags or !", "Project file {0} is corrupt: {1}.", @@ -656,8 +656,8 @@ def preRead(self, file_name, show_dialog=True, *args, **kwargs): self._dialog.setVariantType(variant_type_name) self._dialog.setHasObjectsOnPlate(Application.getInstance().platformActivity) self._dialog.setMissingPackagesMetadata(missing_package_metadata) - self._dialog.setHasVisibleSelectSameProfileChanged(is_pcb) - self._dialog.setAllowCreatemachine(not is_pcb) + self._dialog.setHasVisibleSelectSameProfileChanged(is_ucp) + self._dialog.setAllowCreatemachine(not is_ucp) self._dialog.show() @@ -699,7 +699,7 @@ def preRead(self, file_name, show_dialog=True, *args, **kwargs): if self._dialog.getResult() == {}: return WorkspaceReader.PreReadResult.cancelled - self._load_profile = not is_pcb or (self._dialog.selectSameProfileChecked and self._dialog.isCompatibleMachine) + self._load_profile = not is_ucp or (self._dialog.selectSameProfileChecked and self._dialog.isCompatibleMachine) self._resolve_strategies = self._dialog.getResult() # diff --git a/plugins/3MFReader/__init__.py b/plugins/3MFReader/__init__.py index a07420d2c64..101337f05f6 100644 --- a/plugins/3MFReader/__init__.py +++ b/plugins/3MFReader/__init__.py @@ -27,8 +27,8 @@ def getMetaData() -> Dict: "description": catalog.i18nc("@item:inlistbox", "3MF File") }, { - "extension": "pcb", - "description": catalog.i18nc("@item:inlistbox", "PCB File") + "extension": "ucp", + "description": catalog.i18nc("@item:inlistbox", "UCP File") } ] metaData["workspace_reader"] = [ @@ -37,8 +37,8 @@ def getMetaData() -> Dict: "description": catalog.i18nc("@item:inlistbox", "3MF File") }, { - "extension": "pcb", - "description": catalog.i18nc("@item:inlistbox", "PCB File") + "extension": "ucp", + "description": catalog.i18nc("@item:inlistbox", "UCP File") } ] diff --git a/plugins/3MFReader/plugin.json b/plugins/3MFReader/plugin.json index 1611c956d39..010adbb5013 100644 --- a/plugins/3MFReader/plugin.json +++ b/plugins/3MFReader/plugin.json @@ -2,7 +2,7 @@ "name": "3MF Reader", "author": "Ultimaker B.V.", "version": "1.0.1", - "description": "Provides support for reading 3MF and PCB files.", + "description": "Provides support for reading 3MF and UCP files.", "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/3MFWriter/ThreeMFWorkspaceWriter.py b/plugins/3MFWriter/ThreeMFWorkspaceWriter.py index 9715e9ac984..7cdf8847095 100644 --- a/plugins/3MFWriter/ThreeMFWorkspaceWriter.py +++ b/plugins/3MFWriter/ThreeMFWorkspaceWriter.py @@ -15,7 +15,7 @@ from UM.i18n import i18nCatalog catalog = i18nCatalog("cura") -from .PCBDialog import PCBDialog +from .UCPDialog import UCPDialog from .ThreeMFWriter import ThreeMFWriter from .SettingsExportModel import SettingsExportModel from .SettingsExportGroup import SettingsExportGroup @@ -35,19 +35,19 @@ def __init__(self): self._config_dialog = None def _preWrite(self): - is_pcb = False + is_ucp = False if hasattr(self._stream, 'name'): - # This only works with local file, but we don't want remote PCB files yet - is_pcb = self._stream.name.endswith('.pcb') + # This only works with local file, but we don't want remote UCP files yet + is_ucp = self._stream.name.endswith('.ucp') - if is_pcb: - self._config_dialog = PCBDialog() - self._config_dialog.finished.connect(self._onPCBConfigFinished) + if is_ucp: + self._config_dialog = UCPDialog() + self._config_dialog.finished.connect(self._onUCPConfigFinished) self._config_dialog.show() else: self._doWrite() - def _onPCBConfigFinished(self, accepted: bool): + def _onUCPConfigFinished(self, accepted: bool): if accepted: self._export_model = self._config_dialog.getModel() self._doWrite() diff --git a/plugins/3MFWriter/PCBDialog.py b/plugins/3MFWriter/UCPDialog.py similarity index 94% rename from plugins/3MFWriter/PCBDialog.py rename to plugins/3MFWriter/UCPDialog.py index 089fa259ac6..fb214aded07 100644 --- a/plugins/3MFWriter/PCBDialog.py +++ b/plugins/3MFWriter/UCPDialog.py @@ -14,14 +14,14 @@ i18n_catalog = i18nCatalog("cura") -class PCBDialog(QObject): +class UCPDialog(QObject): finished = pyqtSignal(bool) def __init__(self, parent = None) -> None: super().__init__(parent) plugin_path = os.path.dirname(__file__) - dialog_path = os.path.join(plugin_path, 'PCBDialog.qml') + dialog_path = os.path.join(plugin_path, 'UCPDialog.qml') self._model = SettingsExportModel() self._view = CuraApplication.getInstance().createQmlComponent(dialog_path, {"manager": self, diff --git a/plugins/3MFWriter/PCBDialog.qml b/plugins/3MFWriter/UCPDialog.qml similarity index 86% rename from plugins/3MFWriter/PCBDialog.qml rename to plugins/3MFWriter/UCPDialog.qml index b65520961b8..88552cc2926 100644 --- a/plugins/3MFWriter/PCBDialog.qml +++ b/plugins/3MFWriter/UCPDialog.qml @@ -12,7 +12,7 @@ import Cura 1.1 as Cura UM.Dialog { id: exportDialog - title: catalog.i18nc("@title:window", "Export pre-configured build batch") + title: catalog.i18nc("@title:window", "Export Universal Cura Project") margin: UM.Theme.getSize("default_margin").width minimumWidth: UM.Theme.getSize("modal_window_minimum").width @@ -39,14 +39,14 @@ UM.Dialog UM.Label { id: titleLabel - text: catalog.i18nc("@action:title", "Summary - Pre-configured build batch") + text: catalog.i18nc("@action:title", "Summary - Universal Cura Project") font: UM.Theme.getFont("large") } UM.Label { id: descriptionLabel - text: catalog.i18nc("@action:description", "When exporting a build batch, all the models present on the build plate will be included with their current position, orientation and scale. You can also select which per-extruder or per-model settings should be included to ensure a proper printing of the batch, even on different printers.") + text: catalog.i18nc("@action:description", "When exporting a Universal Cura Project, all the models present on the build plate will be included with their current position, orientation and scale. You can also select which per-extruder or per-model settings should be included to ensure a proper printing of the batch, even on different printers.") font: UM.Theme.getFont("default") wrapMode: Text.Wrap Layout.maximumWidth: headerColumn.width diff --git a/plugins/3MFWriter/__init__.py b/plugins/3MFWriter/__init__.py index e0d4037603b..40fd42b1996 100644 --- a/plugins/3MFWriter/__init__.py +++ b/plugins/3MFWriter/__init__.py @@ -34,9 +34,9 @@ def getMetaData(): "mode": ThreeMFWriter.ThreeMFWriter.OutputMode.BinaryMode }, { - "extension": "pcb", - "description": i18n_catalog.i18nc("@item:inlistbox", "PCB file"), - "mime_type": "application/x-pcb", + "extension": "ucp", + "description": i18n_catalog.i18nc("@item:inlistbox", "Universal Cura Project"), + "mime_type": "application/x-ucp", "mode": ThreeMFWriter.ThreeMFWriter.OutputMode.BinaryMode } ] @@ -50,9 +50,9 @@ def getMetaData(): "mode": ThreeMFWorkspaceWriter.ThreeMFWorkspaceWriter.OutputMode.BinaryMode }, { - "extension": "pcb", - "description": i18n_catalog.i18nc("@item:inlistbox", "Pre-Configured Batch file"), - "mime_type": "application/x-pcb", + "extension": "ucp", + "description": i18n_catalog.i18nc("@item:inlistbox", "Universal Cura Project"), + "mime_type": "application/x-ucp", "mode": ThreeMFWorkspaceWriter.ThreeMFWorkspaceWriter.OutputMode.BinaryMode } ] diff --git a/plugins/3MFWriter/plugin.json b/plugins/3MFWriter/plugin.json index be6d50267c8..254384dc25a 100644 --- a/plugins/3MFWriter/plugin.json +++ b/plugins/3MFWriter/plugin.json @@ -2,7 +2,7 @@ "name": "3MF Writer", "author": "Ultimaker B.V.", "version": "1.0.1", - "description": "Provides support for writing 3MF and PCB files.", + "description": "Provides support for writing 3MF and UCP files.", "api": 8, "i18n-catalog": "cura" } diff --git a/resources/qml/Menus/FileMenu.qml b/resources/qml/Menus/FileMenu.qml index a6fb339fafa..4f7734cb117 100644 --- a/resources/qml/Menus/FileMenu.qml +++ b/resources/qml/Menus/FileMenu.qml @@ -72,15 +72,15 @@ Cura.Menu Cura.MenuItem { - id: savePCBMenu - text: catalog.i18nc("@title:menu menubar:file", "&Save PCB Project...") + id: saveUCPMenu + text: catalog.i18nc("@title:menu menubar:file", "&Save Universal Cura Project...") enabled: UM.WorkspaceFileHandler.enabled onTriggered: { var args = { "filter_by_machine": false, "file_type": "workspace", - "preferred_mimetypes": "application/x-pcb", - "limit_mimetypes": "application/x-pcb"}; + "preferred_mimetypes": "application/x-ucp", + "limit_mimetypes": "application/x-ucp"}; UM.OutputDeviceManager.requestWriteToDevice("local_file", PrintInformation.jobName, args) } } From e554eb264e4e3f44752addcd9079c0257fdb24c3 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Mon, 5 Feb 2024 15:44:46 +0100 Subject: [PATCH 463/765] adding logging for debugging CURA-11596 --- cura/SingleInstance.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cura/SingleInstance.py b/cura/SingleInstance.py index 2c3e816767a..ef04ef5ddc7 100644 --- a/cura/SingleInstance.py +++ b/cura/SingleInstance.py @@ -52,6 +52,7 @@ def startClient(self) -> bool: single_instance_socket.write(bytes(json.dumps(payload) + "\n", encoding = "ascii")) for filename in self._files_to_open: + Logger.log("i",f"Filename isxxx {os.path(filename)}") payload = {"command": "open", "filePath": os.path.abspath(filename)} single_instance_socket.write(bytes(json.dumps(payload) + "\n", encoding = "ascii")) @@ -73,14 +74,18 @@ def startServer(self) -> None: def _onClientConnected(self) -> None: Logger.log("i", "New connection received on our single-instance server") connection = None #type: Optional[QLocalSocket] + Logger.log("i","getting connection") if self._single_instance_server: connection = self._single_instance_server.nextPendingConnection() + Logger.log("i", f"here: {connection}") if connection is not None: + Logger.log("i","here2") connection.readyRead.connect(lambda c = connection: self.__readCommands(c)) def __readCommands(self, connection: QLocalSocket) -> None: line = connection.readLine() + Logger.log("i", f"line read is {line}") while len(line) != 0: # There is also a .canReadLine() try: payload = json.loads(str(line, encoding = "ascii").strip()) From a5d6ae1c97290a24a6598b0c1d9432028f0b61ee Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Tue, 6 Feb 2024 10:55:33 +0100 Subject: [PATCH 464/765] Bug fix: Do not sett the z distance for the AA0.8 cores of T-PLA. PP-424 --- resources/definitions/fdmprinter.def.json | 12 ------------ .../um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg | 1 - .../um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg | 1 - 3 files changed, 14 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 03850a7344e..31a67d01221 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6453,18 +6453,6 @@ "settable_per_extruder": true, "limit_to_extruder": "raft_surface_extruder_nr" }, - "raft_surface_monotonic": - { - "label": "Monotonic Raft Top Surface Order", - "description": "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface.", - "type": "bool", - "default_value": false, - "value": "skin_monotonic", - "enabled": "resolveOrValue('adhesion_type') == 'raft' and raft_surface_layers > 0", - "settable_per_mesh": false, - "settable_per_extruder": true, - "limit_to_extruder": "raft_surface_extruder_nr" - }, "raft_wall_count": { "label": "Raft Wall Count", diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg index 2310f2503f1..a76864a1a3c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg @@ -69,7 +69,6 @@ speed_wall_x_roofing = =speed_roofing support_angle = 70 support_interface_enable = False support_structure = tree -support_z_distance = 0.35 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg index b3711c1cbd6..4973ec35bbc 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg @@ -69,7 +69,6 @@ speed_wall_x_roofing = =speed_roofing support_angle = 70 support_interface_enable = False support_structure = tree -support_z_distance = 0.35 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 z_seam_relative = True From 4bb5eed97e13f3f178d32f9112a79959d6ef9e25 Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Tue, 6 Feb 2024 10:57:25 +0100 Subject: [PATCH 465/765] Bug fix: Do not sett the z distance for the AA0.8 cores of T-PLA. PP-424 --- .../quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg | 1 - .../quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg | 1 - 2 files changed, 2 deletions(-) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg index 2310f2503f1..a76864a1a3c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg @@ -69,7 +69,6 @@ speed_wall_x_roofing = =speed_roofing support_angle = 70 support_interface_enable = False support_structure = tree -support_z_distance = 0.35 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg index b3711c1cbd6..4973ec35bbc 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg @@ -69,7 +69,6 @@ speed_wall_x_roofing = =speed_roofing support_angle = 70 support_interface_enable = False support_structure = tree -support_z_distance = 0.35 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 z_seam_relative = True From 87cd7a47f5380c7292c4a79eabec6a1a348da6aa Mon Sep 17 00:00:00 2001 From: Frederic Meeuwissen <13856291+Frederic98@users.noreply.github.com> Date: Tue, 6 Feb 2024 11:05:11 +0100 Subject: [PATCH 466/765] Revert "Merge remote-tracking branch 'origin/PP-424-Improve-self-support' into PP-424-Improve-self-support" This reverts commit 0e18407286f9ec1e83548a2bf11386f6667f20fd, reversing changes made to 4bb5eed97e13f3f178d32f9112a79959d6ef9e25. --- resources/definitions/fdmprinter.def.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 31a67d01221..03850a7344e 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6453,6 +6453,18 @@ "settable_per_extruder": true, "limit_to_extruder": "raft_surface_extruder_nr" }, + "raft_surface_monotonic": + { + "label": "Monotonic Raft Top Surface Order", + "description": "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface.", + "type": "bool", + "default_value": false, + "value": "skin_monotonic", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and raft_surface_layers > 0", + "settable_per_mesh": false, + "settable_per_extruder": true, + "limit_to_extruder": "raft_surface_extruder_nr" + }, "raft_wall_count": { "label": "Raft Wall Count", From 9c57627a8828d45b2336396b29a572eebc9d5a44 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Tue, 6 Feb 2024 12:17:38 +0100 Subject: [PATCH 467/765] Adding command for opening url CURA-11596 --- cura/SingleInstance.py | 3 --- packaging/msi/UltiMaker-Cura.wxs.jinja | 2 ++ 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/cura/SingleInstance.py b/cura/SingleInstance.py index ef04ef5ddc7..fb85e258dbf 100644 --- a/cura/SingleInstance.py +++ b/cura/SingleInstance.py @@ -74,13 +74,10 @@ def startServer(self) -> None: def _onClientConnected(self) -> None: Logger.log("i", "New connection received on our single-instance server") connection = None #type: Optional[QLocalSocket] - Logger.log("i","getting connection") if self._single_instance_server: connection = self._single_instance_server.nextPendingConnection() - Logger.log("i", f"here: {connection}") if connection is not None: - Logger.log("i","here2") connection.readyRead.connect(lambda c = connection: self.__readCommands(c)) def __readCommands(self, connection: QLocalSocket) -> None: diff --git a/packaging/msi/UltiMaker-Cura.wxs.jinja b/packaging/msi/UltiMaker-Cura.wxs.jinja index 13c5d2842e7..1f22dcc8bc9 100644 --- a/packaging/msi/UltiMaker-Cura.wxs.jinja +++ b/packaging/msi/UltiMaker-Cura.wxs.jinja @@ -166,6 +166,8 @@ + + From d8cc99bf0deb951d32059e47b7690a0c76babfcb Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Tue, 6 Feb 2024 13:00:31 +0100 Subject: [PATCH 468/765] Remove duplicate paths CURA-11483 --- cura/CuraApplication.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 241113ece79..0cc3d20d58e 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -376,13 +376,11 @@ def __addExpectedResourceDirsAndSearchPaths(self): if platform.system() == "Darwin": Resources.addSecureSearchPath(os.path.join(app_root, "Resources", "share", "cura", "resources")) - Resources.addSecureSearchPath(os.path.join(app_root, "..", "Resources", "share", "cura", "resources")) Resources.addSecureSearchPath( - os.path.join(self._app_install_dir, "..", "Resources", "share", "cura", "resources")) + os.path.join(self._app_install_dir, "Resources", "share", "cura", "resources")) else: Resources.addSecureSearchPath(os.path.join(app_root, "share", "cura", "resources")) Resources.addSecureSearchPath(os.path.join(self._app_install_dir, "share", "cura", "resources")) - Resources.addSecureSearchPath(os.path.join(app_root, "Resources", "share", "cura", "resources")) if not hasattr(sys, "frozen"): cura_data_root = os.environ.get('CURA_DATA_ROOT', None) From 31f3d6161d764e66c469f9c1d3d6de5cff1c8b76 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Tue, 6 Feb 2024 13:19:42 +0100 Subject: [PATCH 469/765] Add missing file CURA-11561 --- plugins/3MFReader/SpecificSettingsModel.py | 38 ++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 plugins/3MFReader/SpecificSettingsModel.py diff --git a/plugins/3MFReader/SpecificSettingsModel.py b/plugins/3MFReader/SpecificSettingsModel.py new file mode 100644 index 00000000000..fd5719d6b36 --- /dev/null +++ b/plugins/3MFReader/SpecificSettingsModel.py @@ -0,0 +1,38 @@ +# Copyright (c) 2024 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +from PyQt6.QtCore import Qt + +from UM.Settings.SettingDefinition import SettingDefinition +from UM.Qt.ListModel import ListModel + + +class SpecificSettingsModel(ListModel): + CategoryRole = Qt.ItemDataRole.UserRole + 1 + LabelRole = Qt.ItemDataRole.UserRole + 2 + ValueRole = Qt.ItemDataRole.UserRole + 3 + + def __init__(self, parent = None): + super().__init__(parent = parent) + self.addRoleName(self.CategoryRole, "category") + self.addRoleName(self.LabelRole, "label") + self.addRoleName(self.ValueRole, "value") + + self._i18n_catalog = None + + def addSettingsFromStack(self, stack, category, settings): + for setting, value in settings.items(): + unit = stack.getProperty(setting, "unit") + + setting_type = stack.getProperty(setting, "type") + if setting_type is not None: + # This is not very good looking, but will do for now + value = SettingDefinition.settingValueToString(setting_type, value) + " " + unit + else: + value = str(value) + + self.appendItem({ + "category": category, + "label": stack.getProperty(setting, "label"), + "value": value + }) From 8073bc0e50473ada7828d707674c9d3822f59b70 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Tue, 6 Feb 2024 16:04:08 +0100 Subject: [PATCH 470/765] adding this preference in mac-os doesn't work. It always opens it up in singlenstance CURA-11596 --- resources/qml/Preferences/GeneralPage.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/qml/Preferences/GeneralPage.qml b/resources/qml/Preferences/GeneralPage.qml index 88719445233..0a430eda5da 100644 --- a/resources/qml/Preferences/GeneralPage.qml +++ b/resources/qml/Preferences/GeneralPage.qml @@ -627,6 +627,7 @@ UM.PreferencesPage UM.TooltipArea { width: childrenRect.width + visible: Qt.platform.os !== "osx" height: childrenRect.height text: catalog.i18nc("@info:tooltip","Should opening files from the desktop or external applications open in the same instance of Cura?") From eff45842038373ab436ca67e9fc2173458a09eb5 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Tue, 6 Feb 2024 16:05:34 +0100 Subject: [PATCH 471/765] adding files in single instance in case of url CURA-11596 --- cura/CuraApplication.py | 2 +- cura/SingleInstance.py | 33 ++++++++++++++----------- packaging/NSIS/Ultimaker-Cura.nsi.jinja | 2 +- packaging/msi/UltiMaker-Cura.wxs.jinja | 4 +-- 4 files changed, 21 insertions(+), 20 deletions(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 67c420028ba..bae609c07bc 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -356,7 +356,7 @@ def initialize(self) -> None: self._machine_action_manager.initialize() def __sendCommandToSingleInstance(self): - self._single_instance = SingleInstance(self, self._files_to_open) + self._single_instance = SingleInstance(self, self._files_to_open, self._open_url_queue) # If we use single instance, try to connect to the single instance server, send commands, and then exit. # If we cannot find an existing single instance server, this is the only instance, so just keep going. diff --git a/cura/SingleInstance.py b/cura/SingleInstance.py index fb85e258dbf..02fa6622aa7 100644 --- a/cura/SingleInstance.py +++ b/cura/SingleInstance.py @@ -7,14 +7,15 @@ from PyQt6.QtNetwork import QLocalServer, QLocalSocket -from UM.Qt.QtApplication import QtApplication #For typing. +from UM.Qt.QtApplication import QtApplication # For typing. from UM.Logger import Logger class SingleInstance: - def __init__(self, application: QtApplication, files_to_open: Optional[List[str]]) -> None: + def __init__(self, application: QtApplication, files_to_open: Optional[List[str]], url_to_open: Optional[List[str]]) -> None: self._application = application self._files_to_open = files_to_open + self._url_to_open = url_to_open self._single_instance_server = None @@ -33,7 +34,7 @@ def startClient(self) -> bool: return False # We only send the files that need to be opened. - if not self._files_to_open: + if not self._files_to_open or not self._url_to_open: Logger.log("i", "No file need to be opened, do nothing.") return True @@ -46,18 +47,21 @@ def startClient(self) -> bool: if self._application.getPreferences().getValue("cura/single_instance_clear_before_load"): payload = {"command": "clear-all"} - single_instance_socket.write(bytes(json.dumps(payload) + "\n", encoding = "ascii")) + single_instance_socket.write(bytes(json.dumps(payload) + "\n", encoding="ascii")) payload = {"command": "focus"} - single_instance_socket.write(bytes(json.dumps(payload) + "\n", encoding = "ascii")) + single_instance_socket.write(bytes(json.dumps(payload) + "\n", encoding="ascii")) for filename in self._files_to_open: - Logger.log("i",f"Filename isxxx {os.path(filename)}") payload = {"command": "open", "filePath": os.path.abspath(filename)} - single_instance_socket.write(bytes(json.dumps(payload) + "\n", encoding = "ascii")) + single_instance_socket.write(bytes(json.dumps(payload) + "\n", encoding="ascii")) + + for filename in self._url_to_open: + payload = {"command": "open", "urlPath": os.path.abspath(filename)} + single_instance_socket.write(bytes(json.dumps(payload) + "\n", encoding="ascii")) payload = {"command": "close-connection"} - single_instance_socket.write(bytes(json.dumps(payload) + "\n", encoding = "ascii")) + single_instance_socket.write(bytes(json.dumps(payload) + "\n", encoding="ascii")) single_instance_socket.flush() single_instance_socket.waitForDisconnected() @@ -73,7 +77,7 @@ def startServer(self) -> None: def _onClientConnected(self) -> None: Logger.log("i", "New connection received on our single-instance server") - connection = None #type: Optional[QLocalSocket] + connection = None # type: Optional[QLocalSocket] if self._single_instance_server: connection = self._single_instance_server.nextPendingConnection() @@ -82,10 +86,9 @@ def _onClientConnected(self) -> None: def __readCommands(self, connection: QLocalSocket) -> None: line = connection.readLine() - Logger.log("i", f"line read is {line}") - while len(line) != 0: # There is also a .canReadLine() + while len(line) != 0: # There is also a .canReadLine() try: - payload = json.loads(str(line, encoding = "ascii").strip()) + payload = json.loads(str(line, encoding="ascii").strip()) command = payload["command"] # Command: Remove all models from the build plate. @@ -96,8 +99,8 @@ def __readCommands(self, connection: QLocalSocket) -> None: elif command == "open": if payload["filePath"].file(): self._application.callLater(lambda f = payload["filePath"]: self._application._openFile(f)) - if payload["filePath"].url(): - self._application.callLater(lambda f= payload["filepath"]: self._application._openUrl(f)) + if payload["urlPath"].url(): + self._application.callLater(lambda f = payload["urlPath"]: self._application._openUrl(f)) # Command: Activate the window and bring it to the top. @@ -106,7 +109,7 @@ def __readCommands(self, connection: QLocalSocket) -> None: # 'alert' or flashing the icon in the taskbar is the best thing we do now. main_window = self._application.getMainWindow() if main_window is not None: - self._application.callLater(lambda: main_window.alert(0)) # type: ignore # I don't know why MyPy complains here + self._application.callLater(lambda: main_window.alert(0)) # type: ignore # I don't know why MyPy complains here # Command: Close the socket connection. We're done. elif command == "close-connection": diff --git a/packaging/NSIS/Ultimaker-Cura.nsi.jinja b/packaging/NSIS/Ultimaker-Cura.nsi.jinja index 2106c473120..0a2ce0f517a 100644 --- a/packaging/NSIS/Ultimaker-Cura.nsi.jinja +++ b/packaging/NSIS/Ultimaker-Cura.nsi.jinja @@ -156,7 +156,7 @@ WriteRegStr HKCR "slicer" "" "URL:slicer" WriteRegStr HKCR "slicer" "URL Protocol" "" WriteRegStr HKCR "slicer\DefaultIcon" "" "$INSTDIR\${MAIN_APP_EXE},1" WriteRegStr HKCR "slicer\shell" "" "open" -WriteRegStr HKCR "slicer\shell\open\command" "" '"$INSTDIR\${MAIN_APP_EXE}" --single-instance "%1"' +WriteRegStr HKCR "slicer\shell\open\command" "" '"$INSTDIR\${MAIN_APP_EXE}" "%1"' SectionEnd ###################################################################### diff --git a/packaging/msi/UltiMaker-Cura.wxs.jinja b/packaging/msi/UltiMaker-Cura.wxs.jinja index 1f22dcc8bc9..21f017c8139 100644 --- a/packaging/msi/UltiMaker-Cura.wxs.jinja +++ b/packaging/msi/UltiMaker-Cura.wxs.jinja @@ -165,9 +165,7 @@ - - - + From 664fa4f48d215d9cf52e5f2437bd0ac21a1f9ba5 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Tue, 6 Feb 2024 16:19:01 +0100 Subject: [PATCH 472/765] assigning different command for opening url CURA-11596 --- cura/SingleInstance.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/cura/SingleInstance.py b/cura/SingleInstance.py index 02fa6622aa7..3357d22d303 100644 --- a/cura/SingleInstance.py +++ b/cura/SingleInstance.py @@ -56,8 +56,8 @@ def startClient(self) -> bool: payload = {"command": "open", "filePath": os.path.abspath(filename)} single_instance_socket.write(bytes(json.dumps(payload) + "\n", encoding="ascii")) - for filename in self._url_to_open: - payload = {"command": "open", "urlPath": os.path.abspath(filename)} + for url in self._url_to_open: + payload = {"command": "open-url", "urlPath": url} single_instance_socket.write(bytes(json.dumps(payload) + "\n", encoding="ascii")) payload = {"command": "close-connection"} @@ -88,7 +88,7 @@ def __readCommands(self, connection: QLocalSocket) -> None: line = connection.readLine() while len(line) != 0: # There is also a .canReadLine() try: - payload = json.loads(str(line, encoding="ascii").strip()) + payload = json.loads(str(line, encoding = "ascii").strip()) command = payload["command"] # Command: Remove all models from the build plate. @@ -97,10 +97,11 @@ def __readCommands(self, connection: QLocalSocket) -> None: # Command: Load a model or project file elif command == "open": - if payload["filePath"].file(): - self._application.callLater(lambda f = payload["filePath"]: self._application._openFile(f)) - if payload["urlPath"].url(): - self._application.callLater(lambda f = payload["urlPath"]: self._application._openUrl(f)) + self._application.callLater(lambda f = payload["filePath"]: self._application._openFile(f)) + + #command: Load a url link in Cura + elif command == "open-url": + self._application.callLater(lambda f = payload["urlPath"]: self._application._openUrl(f)) # Command: Activate the window and bring it to the top. From 627bef2eabfd3b3d1560e0df34929d0a46e1c566 Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Tue, 6 Feb 2024 19:34:12 +0100 Subject: [PATCH 473/765] Enable monotonic raft surface for all Ultimaker machines. Disable skin_monotonic for Method XL machines (speed increase), roofing_monotonic is still enable to create a good top surface. PP-430 --- resources/definitions/ultimaker.def.json | 1 + resources/definitions/ultimaker_method_base.def.json | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/ultimaker.def.json b/resources/definitions/ultimaker.def.json index 1669dd5e000..97eaf278e84 100644 --- a/resources/definitions/ultimaker.def.json +++ b/resources/definitions/ultimaker.def.json @@ -96,6 +96,7 @@ "raft_interface_thickness": { "value": "(raft_base_thickness + raft_surface_thickness) / 2" }, "raft_speed": { "value": 15 }, "raft_surface_fan_speed": { "value": "cool_fan_speed_min" }, + "raft_surface_monotonic": { "value": true }, "raft_surface_speed": { "value": "speed_topbottom" }, "relative_extrusion": { diff --git a/resources/definitions/ultimaker_method_base.def.json b/resources/definitions/ultimaker_method_base.def.json index f0808c529e5..19fe80b2e21 100644 --- a/resources/definitions/ultimaker_method_base.def.json +++ b/resources/definitions/ultimaker_method_base.def.json @@ -380,7 +380,6 @@ "roofing_material_flow": { "value": "material_flow" }, "roofing_monotonic": { "value": true }, "skin_material_flow": { "value": "0.95*material_flow" }, - "skin_monotonic": { "value": true }, "skin_outline_count": { "value": 0 }, "skin_overlap": { "value": 0 }, "skin_preshrink": { "value": 0 }, From 671698d1a3efe77043501b462507d8f8a2ed7429 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Wed, 7 Feb 2024 08:49:05 +0100 Subject: [PATCH 474/765] Restore useless import version bump CURA-11561 --- plugins/3MFReader/WorkspaceDialog.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index b6a9d597515..8d06b32e141 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -1,7 +1,7 @@ // Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. -import QtQuick 2.14 +import QtQuick 2.10 import QtQuick.Controls 2.3 import QtQuick.Layouts 1.3 import QtQuick.Window 2.2 From bb28a7c5063666b138be862acd607e0fa47a8d42 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Wed, 7 Feb 2024 11:00:54 +0100 Subject: [PATCH 475/765] fixing the if condition CURA-11596 --- cura/SingleInstance.py | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/cura/SingleInstance.py b/cura/SingleInstance.py index 3357d22d303..c4590fc2756 100644 --- a/cura/SingleInstance.py +++ b/cura/SingleInstance.py @@ -5,6 +5,7 @@ import os from typing import List, Optional +from PyQt6.QtCore import QUrl from PyQt6.QtNetwork import QLocalServer, QLocalSocket from UM.Qt.QtApplication import QtApplication # For typing. @@ -34,7 +35,7 @@ def startClient(self) -> bool: return False # We only send the files that need to be opened. - if not self._files_to_open or not self._url_to_open: + if not self._files_to_open and not self._url_to_open: Logger.log("i", "No file need to be opened, do nothing.") return True @@ -47,17 +48,17 @@ def startClient(self) -> bool: if self._application.getPreferences().getValue("cura/single_instance_clear_before_load"): payload = {"command": "clear-all"} - single_instance_socket.write(bytes(json.dumps(payload) + "\n", encoding="ascii")) + single_instance_socket.write(bytes(json.dumps(payload) + "\n", encoding = "ascii")) payload = {"command": "focus"} - single_instance_socket.write(bytes(json.dumps(payload) + "\n", encoding="ascii")) + single_instance_socket.write(bytes(json.dumps(payload) + "\n", encoding = "ascii")) for filename in self._files_to_open: payload = {"command": "open", "filePath": os.path.abspath(filename)} - single_instance_socket.write(bytes(json.dumps(payload) + "\n", encoding="ascii")) + single_instance_socket.write(bytes(json.dumps(payload) + "\n", encoding = "ascii")) for url in self._url_to_open: - payload = {"command": "open-url", "urlPath": url} + payload = {"command": "open-url", "urlPath": url.toString()} single_instance_socket.write(bytes(json.dumps(payload) + "\n", encoding="ascii")) payload = {"command": "close-connection"} @@ -82,10 +83,12 @@ def _onClientConnected(self) -> None: connection = self._single_instance_server.nextPendingConnection() if connection is not None: + x = self.__readCommands(connection) connection.readyRead.connect(lambda c = connection: self.__readCommands(c)) def __readCommands(self, connection: QLocalSocket) -> None: line = connection.readLine() + print(f"line is {line}") while len(line) != 0: # There is also a .canReadLine() try: payload = json.loads(str(line, encoding = "ascii").strip()) @@ -101,7 +104,8 @@ def __readCommands(self, connection: QLocalSocket) -> None: #command: Load a url link in Cura elif command == "open-url": - self._application.callLater(lambda f = payload["urlPath"]: self._application._openUrl(f)) + url = QUrl(payload["urlPath"]) + self._application.callLater(lambda f = url: self._application._openUrl(f)) # Command: Activate the window and bring it to the top. From 206b53072465273db18be15ca398ae116157dbb1 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Wed, 7 Feb 2024 11:05:48 +0100 Subject: [PATCH 476/765] Removing debug statement CURA-11596 --- cura/SingleInstance.py | 1 - 1 file changed, 1 deletion(-) diff --git a/cura/SingleInstance.py b/cura/SingleInstance.py index c4590fc2756..c0810442014 100644 --- a/cura/SingleInstance.py +++ b/cura/SingleInstance.py @@ -88,7 +88,6 @@ def _onClientConnected(self) -> None: def __readCommands(self, connection: QLocalSocket) -> None: line = connection.readLine() - print(f"line is {line}") while len(line) != 0: # There is also a .canReadLine() try: payload = json.loads(str(line, encoding = "ascii").strip()) From 313a7f7068ef494e4e1b6f4fd84669434340302a Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Wed, 7 Feb 2024 12:16:01 +0100 Subject: [PATCH 477/765] remove debug statement CURA-11596 --- cura/SingleInstance.py | 1 - 1 file changed, 1 deletion(-) diff --git a/cura/SingleInstance.py b/cura/SingleInstance.py index c0810442014..8c4018a4f7b 100644 --- a/cura/SingleInstance.py +++ b/cura/SingleInstance.py @@ -83,7 +83,6 @@ def _onClientConnected(self) -> None: connection = self._single_instance_server.nextPendingConnection() if connection is not None: - x = self.__readCommands(connection) connection.readyRead.connect(lambda c = connection: self.__readCommands(c)) def __readCommands(self, connection: QLocalSocket) -> None: From d2e8999e453eacc6bfcc633592c2249d1d730b2a Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Wed, 7 Feb 2024 15:20:52 +0100 Subject: [PATCH 478/765] creating pyqtslot for desired functionality CURA-11596 --- cura/CuraApplication.py | 4 ++++ resources/qml/Preferences/MachinesPage.qml | 3 +-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index edf4353ae83..f8b3894ed9f 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -1101,6 +1101,10 @@ def getObjectsModel(self, *args): self._object_manager = ObjectsModel(self) return self._object_manager + @pyqtSlot(str, result = "QVariantList") + def getSupportedActionMachineList(self, definition_id: str) -> List["MachineAction"]: + return self._machine_action_manager.getSupportedActions(self._machine_manager.getDefinitionByMachineId(definition_id)) + @pyqtSlot(result = QObject) def getExtrudersModel(self, *args) -> "ExtrudersModel": if self._extruders_model is None: diff --git a/resources/qml/Preferences/MachinesPage.qml b/resources/qml/Preferences/MachinesPage.qml index 845c6cf492c..1e287e74a07 100644 --- a/resources/qml/Preferences/MachinesPage.qml +++ b/resources/qml/Preferences/MachinesPage.qml @@ -12,7 +12,6 @@ import Cura 1.0 as Cura UM.ManagementPage { id: base - property var machineActionManager: CuraApplication.getMachineActionManager() Item { enabled: false; UM.I18nCatalog { id: catalog; name: "cura"} } title: catalog.i18nc("@title:tab", "Printers") @@ -63,7 +62,7 @@ UM.ManagementPage Repeater { id: machineActionRepeater - model: base.currentItem.id ? machineActionManager.getSupportedActions(Cura.MachineManager.getDefinitionByMachineId(base.currentItem.id)) : null + model: base.currentItem ? CuraApplication.getSupportedActionMachineList(base.currentItem.id) : null Item { From cf1a7889c237a25e92f6307572e750d4dc3ae822 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Wed, 7 Feb 2024 17:01:56 +0100 Subject: [PATCH 479/765] mimicing behavior as files to open CURA-11596 --- cura/CuraApplication.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 8a87ba448cb..51ceecd7dd6 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -180,6 +180,7 @@ def __init__(self, *args, **kwargs): # Variables set from CLI self._files_to_open = [] + self._urls_to_open = [] self._use_single_instance = False self._single_instance = None @@ -334,7 +335,7 @@ def parseCliOptions(self): for filename in self._cli_args.file: url = QUrl(filename) if url.scheme() in self._supported_url_schemes: - self._open_url_queue.append(url) + self._urls_to_open.append(url) else: self._files_to_open.append(os.path.abspath(filename)) @@ -357,7 +358,7 @@ def initialize(self) -> None: self._machine_action_manager.initialize() def __sendCommandToSingleInstance(self): - self._single_instance = SingleInstance(self, self._files_to_open, self._open_url_queue) + self._single_instance = SingleInstance(self, self._files_to_open, self._urls_to_open) # If we use single instance, try to connect to the single instance server, send commands, and then exit. # If we cannot find an existing single instance server, this is the only instance, so just keep going. @@ -963,6 +964,8 @@ def _onPostStart(self): self.callLater(self._openFile, file_name) for file_name in self._open_file_queue: # Open all the files that were queued up while plug-ins were loading. self.callLater(self._openFile, file_name) + for url in self._urls_to_open: + self.callLater(self._openUrl, url) for url in self._open_url_queue: self.callLater(self._openUrl, url) From 495be39d1f7b4c62419edd5742a497f123c2f741 Mon Sep 17 00:00:00 2001 From: Saumya Jain <70144862+saumyaj3@users.noreply.github.com> Date: Thu, 8 Feb 2024 10:51:49 +0100 Subject: [PATCH 480/765] Update cura/SingleInstance.py Co-authored-by: Casper Lamboo --- cura/SingleInstance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/SingleInstance.py b/cura/SingleInstance.py index 8c4018a4f7b..0448ddc6478 100644 --- a/cura/SingleInstance.py +++ b/cura/SingleInstance.py @@ -103,7 +103,7 @@ def __readCommands(self, connection: QLocalSocket) -> None: #command: Load a url link in Cura elif command == "open-url": url = QUrl(payload["urlPath"]) - self._application.callLater(lambda f = url: self._application._openUrl(f)) + self._application.callLater(lambda: self._application._openUrl(url)) # Command: Activate the window and bring it to the top. From a251a5d2ca1cdba0a1d8971968b49f5076720c95 Mon Sep 17 00:00:00 2001 From: Saumya Jain <70144862+saumyaj3@users.noreply.github.com> Date: Thu, 8 Feb 2024 10:51:56 +0100 Subject: [PATCH 481/765] Update resources/qml/Preferences/GeneralPage.qml Co-authored-by: Casper Lamboo --- resources/qml/Preferences/GeneralPage.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/qml/Preferences/GeneralPage.qml b/resources/qml/Preferences/GeneralPage.qml index 0a430eda5da..c313ffbd948 100644 --- a/resources/qml/Preferences/GeneralPage.qml +++ b/resources/qml/Preferences/GeneralPage.qml @@ -627,6 +627,7 @@ UM.PreferencesPage UM.TooltipArea { width: childrenRect.width + // Mac only allows applications to run as a single instance, so providing the option for this os doesn't make much sense visible: Qt.platform.os !== "osx" height: childrenRect.height text: catalog.i18nc("@info:tooltip","Should opening files from the desktop or external applications open in the same instance of Cura?") From 2d82bb94abc92d5ff2e4e0a60e307d44d5cbd8b2 Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Thu, 8 Feb 2024 16:20:02 +0100 Subject: [PATCH 482/765] Set retraction_min_travel to 5mm for all S-line and Method machines. This improves the infill pattern wall overlaps (for TPU top surfaces and raft base layers) and reduces the amount of retracts in tree supports islands. It also cleans up the settings. PP-389 --- resources/definitions/ultimaker.def.json | 1 + resources/definitions/ultimaker3.def.json | 1 - resources/definitions/ultimaker_method_base.def.json | 1 - resources/definitions/ultimaker_s3.def.json | 1 - resources/definitions/ultimaker_s5.def.json | 1 - resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg | 1 - resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg | 1 - resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg | 1 - resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg | 1 - resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg | 1 - resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg | 1 - resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg | 1 - resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg | 1 - resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg | 1 - resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg | 1 - resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg | 1 - resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg | 1 - resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg | 1 - resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg | 1 - resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg | 1 - resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg | 1 - resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg | 1 - resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg | 1 - resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg | 1 - resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg | 1 - resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg | 1 - resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg | 1 - resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg | 1 - resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg | 1 - resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg | 1 - resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg | 1 - resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg | 1 - resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg | 1 - resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg | 1 - resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg | 1 - resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg | 1 - resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg | 1 - resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg | 1 - resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg | 1 - resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg | 1 - resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg | 1 - resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg | 1 - resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg | 1 - resources/variants/ultimaker_s3_aa0.25.inst.cfg | 1 - resources/variants/ultimaker_s3_aa0.8.inst.cfg | 1 - resources/variants/ultimaker_s3_aa04.inst.cfg | 1 - resources/variants/ultimaker_s3_bb0.8.inst.cfg | 1 - resources/variants/ultimaker_s3_bb04.inst.cfg | 1 - resources/variants/ultimaker_s3_cc04.inst.cfg | 1 - resources/variants/ultimaker_s3_cc06.inst.cfg | 1 - resources/variants/ultimaker_s5_aa0.25.inst.cfg | 1 - resources/variants/ultimaker_s5_aa0.8.inst.cfg | 1 - resources/variants/ultimaker_s5_aa04.inst.cfg | 1 - resources/variants/ultimaker_s5_bb0.8.inst.cfg | 1 - resources/variants/ultimaker_s5_bb04.inst.cfg | 1 - resources/variants/ultimaker_s5_cc04.inst.cfg | 1 - resources/variants/ultimaker_s5_cc06.inst.cfg | 1 - resources/variants/ultimaker_s7_aa0.25.inst.cfg | 1 - resources/variants/ultimaker_s7_aa0.8.inst.cfg | 1 - resources/variants/ultimaker_s7_aa04.inst.cfg | 1 - resources/variants/ultimaker_s7_bb0.8.inst.cfg | 1 - resources/variants/ultimaker_s7_bb04.inst.cfg | 1 - resources/variants/ultimaker_s7_cc04.inst.cfg | 1 - resources/variants/ultimaker_s7_cc06.inst.cfg | 1 - 64 files changed, 1 insertion(+), 63 deletions(-) diff --git a/resources/definitions/ultimaker.def.json b/resources/definitions/ultimaker.def.json index 1669dd5e000..dae64cea6bc 100644 --- a/resources/definitions/ultimaker.def.json +++ b/resources/definitions/ultimaker.def.json @@ -106,6 +106,7 @@ "retraction_combing_max_distance": { "value": 15 }, "retraction_count_max": { "value": 25 }, "retraction_extrusion_window": { "value": 1 }, + "retraction_min_travel": { "value": 5 }, "roofing_layer_count": { "value": "1" }, "roofing_material_flow": { "value": "material_flow" }, "skin_angles": { "value": "[] if infill_pattern not in ['cross', 'cross_3d'] else [20, 110]" }, diff --git a/resources/definitions/ultimaker3.def.json b/resources/definitions/ultimaker3.def.json index 19df92c08d7..17a4b6045e1 100644 --- a/resources/definitions/ultimaker3.def.json +++ b/resources/definitions/ultimaker3.def.json @@ -156,7 +156,6 @@ "retraction_hop": { "value": "2" }, "retraction_hop_enabled": { "value": "extruders_enabled_count > 1" }, "retraction_hop_only_when_collides": { "value": "True" }, - "retraction_min_travel": { "value": "5" }, "retraction_prime_speed": { "value": "15" }, "skin_overlap": { "value": "10" }, "speed_prime_tower": { "value": "speed_topbottom" }, diff --git a/resources/definitions/ultimaker_method_base.def.json b/resources/definitions/ultimaker_method_base.def.json index f0808c529e5..6e40f0bbf1b 100644 --- a/resources/definitions/ultimaker_method_base.def.json +++ b/resources/definitions/ultimaker_method_base.def.json @@ -373,7 +373,6 @@ "retraction_hop": { "value": 0.4 }, "retraction_hop_enabled": { "value": true }, "retraction_hop_only_when_collides": { "value": false }, - "retraction_min_travel": { "value": "line_width * 4" }, "retraction_prime_speed": { "value": "retraction_speed" }, "retraction_speed": { "value": 5 }, "roofing_layer_count": { "value": 2 }, diff --git a/resources/definitions/ultimaker_s3.def.json b/resources/definitions/ultimaker_s3.def.json index add1782368e..483825df5a3 100644 --- a/resources/definitions/ultimaker_s3.def.json +++ b/resources/definitions/ultimaker_s3.def.json @@ -108,7 +108,6 @@ "retraction_hop": { "value": "2" }, "retraction_hop_enabled": { "value": "extruders_enabled_count > 1" }, "retraction_hop_only_when_collides": { "value": "True" }, - "retraction_min_travel": { "value": "5" }, "retraction_prime_speed": { "value": "15" }, "retraction_speed": { "value": "45" }, "speed_prime_tower": { "value": "speed_topbottom" }, diff --git a/resources/definitions/ultimaker_s5.def.json b/resources/definitions/ultimaker_s5.def.json index ec82e6b630b..cd48c4fd38c 100644 --- a/resources/definitions/ultimaker_s5.def.json +++ b/resources/definitions/ultimaker_s5.def.json @@ -110,7 +110,6 @@ "retraction_hop": { "value": "2" }, "retraction_hop_enabled": { "value": "extruders_enabled_count > 1" }, "retraction_hop_only_when_collides": { "value": "True" }, - "retraction_min_travel": { "value": "5" }, "retraction_prime_speed": { "value": "15" }, "retraction_speed": { "value": "45" }, "speed_prime_tower": { "value": "speed_topbottom" }, diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg index c6d99b63b59..e0d3aa4d50f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg @@ -17,7 +17,6 @@ machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 20 ooze_shield_angle = 40 raft_airgap = 0.4 -retraction_min_travel = 5 speed_print = 70 speed_topbottom = =math.ceil(speed_print * 30 / 70) speed_wall = =math.ceil(speed_print * 30 / 70) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg index ec864943979..369cbcd5630 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg @@ -25,7 +25,6 @@ prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg index 77082932a57..6485844da80 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg @@ -28,7 +28,6 @@ retraction_count_max = 15 retraction_extra_prime_amount = 0.2 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 retraction_prime_speed = 15 speed_print = 25 speed_wall = =math.ceil(speed_print * 25 / 25) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg index f46f816cfbc..c9eebee8a0c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg @@ -26,7 +26,6 @@ prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg index 2c234493733..bcd04f4b24c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg @@ -25,7 +25,6 @@ prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg index e0899c8dc2b..278e502231a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg @@ -26,7 +26,6 @@ prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg index 329bd095d58..1baf43933c0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg @@ -25,7 +25,6 @@ prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg index eee8fc31b60..3b106196f27 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg @@ -28,7 +28,6 @@ retraction_count_max = 15 retraction_extra_prime_amount = 0.8 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) speed_wall = =math.ceil(speed_print * 25 / 25) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg index fa878257185..455338a9016 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg @@ -29,7 +29,6 @@ retraction_count_max = 15 retraction_extra_prime_amount = 0.8 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) speed_wall = =math.ceil(speed_print * 25 / 25) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg index 6c90ec685f7..b1f5e1f19a9 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg @@ -29,7 +29,6 @@ retraction_count_max = 15 retraction_extra_prime_amount = 0.8 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) speed_wall = =math.ceil(speed_print * 25 / 25) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg index 15018203e9f..601886a065d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg @@ -28,7 +28,6 @@ prime_tower_wipe_enabled = True retraction_count_max = 15 retraction_extra_prime_amount = 0.8 retraction_hop_only_when_collides = True -retraction_min_travel = =line_width * 2 skin_line_width = =round(line_width / 0.8, 2) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 0.8) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg index 1b9912c1d62..bb303eeb339 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg @@ -29,7 +29,6 @@ prime_tower_wipe_enabled = True retraction_count_max = 15 retraction_extra_prime_amount = 0.8 retraction_hop_only_when_collides = True -retraction_min_travel = =line_width * 2 skin_line_width = =round(line_width / 0.8, 2) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 0.8) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg index 971cee7b3a7..85c37d439dc 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg @@ -28,7 +28,6 @@ prime_tower_wipe_enabled = True retraction_count_max = 15 retraction_extra_prime_amount = 0.8 retraction_hop_only_when_collides = True -retraction_min_travel = =line_width * 2 skin_line_width = =round(line_width / 0.8, 2) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 0.8) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg index 163f32a36da..7619fcf43da 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg @@ -24,7 +24,6 @@ prime_tower_min_volume = 10 retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 -retraction_min_travel = 1.5 retraction_prime_speed = 15 speed_wall_x = =math.ceil(speed_wall * 30 / 30) switch_extruder_prime_speed = 15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg index 3f75c3366e8..b157ed198c6 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg @@ -24,7 +24,6 @@ prime_tower_min_volume = 15 retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 -retraction_min_travel = 1.5 retraction_prime_speed = 15 speed_wall_x = =math.ceil(speed_wall * 30 / 30) switch_extruder_prime_speed = 15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg index b2c5dab3c45..550a26c7f86 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg @@ -24,7 +24,6 @@ prime_tower_min_volume = 20 retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 -retraction_min_travel = 1.5 retraction_prime_speed = 15 speed_infill = =math.ceil(speed_wall * 30 / 30) speed_wall_x = =math.ceil(speed_wall * 30 / 30) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg index 75949f45aa3..5d6ce58f7c9 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg @@ -27,7 +27,6 @@ retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 retraction_hop_only_when_collides = False -retraction_min_travel = =line_width * 2 retraction_prime_speed = 15 speed_print = 30 speed_topbottom = =math.ceil(speed_print * 25 / 30) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg index 034bda5d09e..1b69ada75dc 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg @@ -28,7 +28,6 @@ retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 retraction_hop_only_when_collides = False -retraction_min_travel = =line_width * 2 retraction_prime_speed = 15 speed_print = 30 speed_topbottom = =math.ceil(speed_print * 23 / 30) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg index e7189d54674..d678d7e178e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg @@ -27,7 +27,6 @@ retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 retraction_hop_only_when_collides = False -retraction_min_travel = =line_width * 2 retraction_prime_speed = 15 speed_infill = =speed_print speed_print = 30 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg index 38267fcf24a..ea86a9a9a6e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg @@ -17,7 +17,6 @@ machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 20 ooze_shield_angle = 40 raft_airgap = 0.4 -retraction_min_travel = 5 speed_print = 70 speed_topbottom = =math.ceil(speed_print * 30 / 70) speed_wall = =math.ceil(speed_print * 30 / 70) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg index 57791421620..eef6e66a5e6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg @@ -25,7 +25,6 @@ prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg index 64b1be79aa9..56689c4bfa8 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg @@ -28,7 +28,6 @@ retraction_count_max = 15 retraction_extra_prime_amount = 0.2 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 retraction_prime_speed = 15 speed_print = 25 speed_wall = =math.ceil(speed_print * 25 / 25) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg index 0b471a8c75b..c58107dcf9e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg @@ -26,7 +26,6 @@ prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg index 6c9710e4362..b210b894e55 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg @@ -25,7 +25,6 @@ prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg index 945b77e6996..aa17d35a978 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg @@ -26,7 +26,6 @@ prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg index b523e3c6466..616443b1292 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg @@ -25,7 +25,6 @@ prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg index 85e892628d5..8eb0d257d6f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg @@ -28,7 +28,6 @@ retraction_count_max = 15 retraction_extra_prime_amount = 0.8 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) speed_wall = =math.ceil(speed_print * 25 / 25) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg index 531f946ba81..bd4dd317bb6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg @@ -29,7 +29,6 @@ retraction_count_max = 15 retraction_extra_prime_amount = 0.8 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) speed_wall = =math.ceil(speed_print * 25 / 25) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg index a7f63a76b12..1e5ea9efb62 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg @@ -29,7 +29,6 @@ retraction_count_max = 15 retraction_extra_prime_amount = 0.8 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) speed_wall = =math.ceil(speed_print * 25 / 25) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg index 0b69ae0c439..db01865cf87 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg @@ -28,7 +28,6 @@ prime_tower_wipe_enabled = True retraction_count_max = 15 retraction_extra_prime_amount = 0.8 retraction_hop_only_when_collides = True -retraction_min_travel = =line_width * 2 skin_line_width = =round(line_width / 0.8, 2) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 0.8) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg index 29aa42a4369..27a8bb863bd 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg @@ -29,7 +29,6 @@ prime_tower_wipe_enabled = True retraction_count_max = 15 retraction_extra_prime_amount = 0.8 retraction_hop_only_when_collides = True -retraction_min_travel = =line_width * 2 skin_line_width = =round(line_width / 0.8, 2) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 0.8) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg index 48e6ffb81be..cf3069ee0f0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg @@ -28,7 +28,6 @@ prime_tower_wipe_enabled = True retraction_count_max = 15 retraction_extra_prime_amount = 0.8 retraction_hop_only_when_collides = True -retraction_min_travel = =line_width * 2 skin_line_width = =round(line_width / 0.8, 2) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 0.8) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg index 149104700e3..c338c4b7ff5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg @@ -24,7 +24,6 @@ prime_tower_min_volume = 10 retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 -retraction_min_travel = 1.5 retraction_prime_speed = 15 speed_wall_x = =math.ceil(speed_wall * 30 / 30) switch_extruder_prime_speed = 15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg index 670ec78d512..62d9eb235d7 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg @@ -24,7 +24,6 @@ prime_tower_min_volume = 15 retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 -retraction_min_travel = 1.5 retraction_prime_speed = 15 speed_wall_x = =math.ceil(speed_wall * 30 / 30) switch_extruder_prime_speed = 15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg index c9b5c26d64b..b2792b6feef 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg @@ -24,7 +24,6 @@ prime_tower_min_volume = 20 retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 -retraction_min_travel = 1.5 retraction_prime_speed = 15 speed_infill = =math.ceil(speed_wall * 30 / 30) speed_wall_x = =math.ceil(speed_wall * 30 / 30) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg index 43436cd4c73..2491d0ed881 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg @@ -27,7 +27,6 @@ retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 retraction_hop_only_when_collides = False -retraction_min_travel = =line_width * 2 retraction_prime_speed = 15 speed_print = 30 speed_topbottom = =math.ceil(speed_print * 25 / 30) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg index 58b524dd2a1..e975175ce09 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg @@ -28,7 +28,6 @@ retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 retraction_hop_only_when_collides = False -retraction_min_travel = =line_width * 2 retraction_prime_speed = 15 speed_print = 30 speed_topbottom = =math.ceil(speed_print * 23 / 30) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg index d17ec5486a2..5334fac1f01 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg @@ -27,7 +27,6 @@ retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 retraction_hop_only_when_collides = False -retraction_min_travel = =line_width * 2 speed_infill = =speed_print speed_print = 30 speed_topbottom = =math.ceil(speed_print * 20 / 30) diff --git a/resources/variants/ultimaker_s3_aa0.25.inst.cfg b/resources/variants/ultimaker_s3_aa0.25.inst.cfg index 1f3baa432fa..97b303035c2 100644 --- a/resources/variants/ultimaker_s3_aa0.25.inst.cfg +++ b/resources/variants/ultimaker_s3_aa0.25.inst.cfg @@ -16,7 +16,6 @@ machine_nozzle_heat_up_speed = 1.5 machine_nozzle_id = AA 0.25 machine_nozzle_size = 0.25 machine_nozzle_tip_outer_diameter = 0.65 -retraction_min_travel = 0.7 retraction_prime_speed = =retraction_speed speed_print = 55 speed_topbottom = 20 diff --git a/resources/variants/ultimaker_s3_aa0.8.inst.cfg b/resources/variants/ultimaker_s3_aa0.8.inst.cfg index c30365897b4..e7d3487503e 100644 --- a/resources/variants/ultimaker_s3_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s3_aa0.8.inst.cfg @@ -29,7 +29,6 @@ raft_surface_layers = 1 retraction_amount = 6.5 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = =line_width * 2 retraction_speed = 25 speed_print = 35 speed_topbottom = =math.ceil(speed_print * 25 / 35) diff --git a/resources/variants/ultimaker_s3_aa04.inst.cfg b/resources/variants/ultimaker_s3_aa04.inst.cfg index b3f76758f4b..76992b58052 100644 --- a/resources/variants/ultimaker_s3_aa04.inst.cfg +++ b/resources/variants/ultimaker_s3_aa04.inst.cfg @@ -14,7 +14,6 @@ machine_nozzle_cool_down_speed = 0.9 machine_nozzle_id = AA 0.4 machine_nozzle_tip_outer_diameter = 1.0 retraction_amount = 6.5 -retraction_min_travel = =line_width * 2 speed_print = 70 speed_topbottom = =math.ceil(speed_print * 30 / 70) speed_wall = =math.ceil(speed_print * 30 / 70) diff --git a/resources/variants/ultimaker_s3_bb0.8.inst.cfg b/resources/variants/ultimaker_s3_bb0.8.inst.cfg index 34e1b6d3083..d0f78ac3bd1 100644 --- a/resources/variants/ultimaker_s3_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s3_bb0.8.inst.cfg @@ -30,7 +30,6 @@ prime_tower_wipe_enabled = True raft_surface_layers = 1 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = =line_width * 3 speed_prime_tower = =math.ceil(speed_print * 7 / 35) speed_print = 35 speed_support = =math.ceil(speed_print * 25 / 35) diff --git a/resources/variants/ultimaker_s3_bb04.inst.cfg b/resources/variants/ultimaker_s3_bb04.inst.cfg index e50241aa3ab..4e232cbb5e1 100644 --- a/resources/variants/ultimaker_s3_bb04.inst.cfg +++ b/resources/variants/ultimaker_s3_bb04.inst.cfg @@ -16,7 +16,6 @@ acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) machine_nozzle_heat_up_speed = 1.5 machine_nozzle_id = BB 0.4 machine_nozzle_tip_outer_diameter = 1.0 -retraction_min_travel = =3 * line_width speed_prime_tower = =math.ceil(speed_print * 10 / 35) speed_support = =math.ceil(speed_print * 25 / 35) speed_support_interface = =math.ceil(speed_support * 20 / 25) diff --git a/resources/variants/ultimaker_s3_cc04.inst.cfg b/resources/variants/ultimaker_s3_cc04.inst.cfg index 19192bfba69..38f04547aa7 100644 --- a/resources/variants/ultimaker_s3_cc04.inst.cfg +++ b/resources/variants/ultimaker_s3_cc04.inst.cfg @@ -13,7 +13,6 @@ brim_width = 7 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_id = CC 0.4 machine_nozzle_size = 0.4 -retraction_min_travel = =line_width * 2 retraction_prime_speed = =retraction_speed speed_infill = =speed_print speed_print = 45 diff --git a/resources/variants/ultimaker_s3_cc06.inst.cfg b/resources/variants/ultimaker_s3_cc06.inst.cfg index 925a9f68d60..e42817e8f8b 100644 --- a/resources/variants/ultimaker_s3_cc06.inst.cfg +++ b/resources/variants/ultimaker_s3_cc06.inst.cfg @@ -13,7 +13,6 @@ brim_width = 7 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_id = CC 0.6 machine_nozzle_size = 0.6 -retraction_min_travel = =line_width * 2 retraction_prime_speed = =retraction_speed speed_infill = =speed_print speed_print = 45 diff --git a/resources/variants/ultimaker_s5_aa0.25.inst.cfg b/resources/variants/ultimaker_s5_aa0.25.inst.cfg index 519b21c9206..08ed6132f59 100644 --- a/resources/variants/ultimaker_s5_aa0.25.inst.cfg +++ b/resources/variants/ultimaker_s5_aa0.25.inst.cfg @@ -16,7 +16,6 @@ machine_nozzle_heat_up_speed = 1.5 machine_nozzle_id = AA 0.25 machine_nozzle_size = 0.25 machine_nozzle_tip_outer_diameter = 0.65 -retraction_min_travel = 0.7 retraction_prime_speed = =retraction_speed speed_print = 55 speed_topbottom = 20 diff --git a/resources/variants/ultimaker_s5_aa0.8.inst.cfg b/resources/variants/ultimaker_s5_aa0.8.inst.cfg index b482c418f06..04a3a97d115 100644 --- a/resources/variants/ultimaker_s5_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s5_aa0.8.inst.cfg @@ -29,7 +29,6 @@ raft_surface_layers = 1 retraction_amount = 6.5 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = =line_width * 2 retraction_speed = 25 speed_print = 35 speed_topbottom = =math.ceil(speed_print * 25 / 35) diff --git a/resources/variants/ultimaker_s5_aa04.inst.cfg b/resources/variants/ultimaker_s5_aa04.inst.cfg index 09f528162d4..fd4f1ff7789 100644 --- a/resources/variants/ultimaker_s5_aa04.inst.cfg +++ b/resources/variants/ultimaker_s5_aa04.inst.cfg @@ -14,7 +14,6 @@ machine_nozzle_cool_down_speed = 0.9 machine_nozzle_id = AA 0.4 machine_nozzle_tip_outer_diameter = 1.0 retraction_amount = 6.5 -retraction_min_travel = =line_width * 2 speed_print = 70 speed_topbottom = =math.ceil(speed_print * 30 / 70) speed_wall = =math.ceil(speed_print * 30 / 70) diff --git a/resources/variants/ultimaker_s5_bb0.8.inst.cfg b/resources/variants/ultimaker_s5_bb0.8.inst.cfg index 660a6b10f48..07b556d2068 100644 --- a/resources/variants/ultimaker_s5_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s5_bb0.8.inst.cfg @@ -30,7 +30,6 @@ prime_tower_wipe_enabled = True raft_surface_layers = 1 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = =line_width * 3 speed_prime_tower = =math.ceil(speed_print * 7 / 35) speed_print = 35 speed_support = =math.ceil(speed_print * 25 / 35) diff --git a/resources/variants/ultimaker_s5_bb04.inst.cfg b/resources/variants/ultimaker_s5_bb04.inst.cfg index 2058185bb84..7959fc75c2a 100644 --- a/resources/variants/ultimaker_s5_bb04.inst.cfg +++ b/resources/variants/ultimaker_s5_bb04.inst.cfg @@ -16,7 +16,6 @@ acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) machine_nozzle_heat_up_speed = 1.5 machine_nozzle_id = BB 0.4 machine_nozzle_tip_outer_diameter = 1.0 -retraction_min_travel = =3 * line_width speed_prime_tower = =math.ceil(speed_print * 10 / 35) speed_support = =math.ceil(speed_print * 25 / 35) speed_support_interface = =math.ceil(speed_support * 20 / 25) diff --git a/resources/variants/ultimaker_s5_cc04.inst.cfg b/resources/variants/ultimaker_s5_cc04.inst.cfg index ef64dc0ae47..5510d0126fc 100644 --- a/resources/variants/ultimaker_s5_cc04.inst.cfg +++ b/resources/variants/ultimaker_s5_cc04.inst.cfg @@ -13,7 +13,6 @@ brim_width = 7 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_id = CC 0.4 machine_nozzle_size = 0.4 -retraction_min_travel = =line_width * 2 retraction_prime_speed = =retraction_speed speed_infill = =speed_print speed_print = 45 diff --git a/resources/variants/ultimaker_s5_cc06.inst.cfg b/resources/variants/ultimaker_s5_cc06.inst.cfg index ba33bab17bd..a49c790e4f1 100644 --- a/resources/variants/ultimaker_s5_cc06.inst.cfg +++ b/resources/variants/ultimaker_s5_cc06.inst.cfg @@ -13,7 +13,6 @@ brim_width = 7 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_id = CC 0.6 machine_nozzle_size = 0.6 -retraction_min_travel = =line_width * 2 retraction_prime_speed = =retraction_speed speed_infill = =speed_print speed_print = 45 diff --git a/resources/variants/ultimaker_s7_aa0.25.inst.cfg b/resources/variants/ultimaker_s7_aa0.25.inst.cfg index 1495af6c480..fc1bdcfef2a 100644 --- a/resources/variants/ultimaker_s7_aa0.25.inst.cfg +++ b/resources/variants/ultimaker_s7_aa0.25.inst.cfg @@ -16,7 +16,6 @@ machine_nozzle_heat_up_speed = 1.5 machine_nozzle_id = AA 0.25 machine_nozzle_size = 0.25 machine_nozzle_tip_outer_diameter = 0.65 -retraction_min_travel = 0.7 retraction_prime_speed = =retraction_speed speed_print = 55 speed_topbottom = 20 diff --git a/resources/variants/ultimaker_s7_aa0.8.inst.cfg b/resources/variants/ultimaker_s7_aa0.8.inst.cfg index a5b6a665165..b3253f7d258 100644 --- a/resources/variants/ultimaker_s7_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s7_aa0.8.inst.cfg @@ -29,7 +29,6 @@ raft_surface_layers = 1 retraction_amount = 6.5 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = =line_width * 2 retraction_speed = 25 speed_print = 35 speed_topbottom = =math.ceil(speed_print * 25 / 35) diff --git a/resources/variants/ultimaker_s7_aa04.inst.cfg b/resources/variants/ultimaker_s7_aa04.inst.cfg index a9079c975ec..6aee6597e00 100644 --- a/resources/variants/ultimaker_s7_aa04.inst.cfg +++ b/resources/variants/ultimaker_s7_aa04.inst.cfg @@ -14,7 +14,6 @@ machine_nozzle_cool_down_speed = 0.9 machine_nozzle_id = AA 0.4 machine_nozzle_tip_outer_diameter = 1.0 retraction_amount = 6.5 -retraction_min_travel = =line_width * 2 speed_print = 70 speed_topbottom = =math.ceil(speed_print * 30 / 70) speed_wall = =math.ceil(speed_print * 30 / 70) diff --git a/resources/variants/ultimaker_s7_bb0.8.inst.cfg b/resources/variants/ultimaker_s7_bb0.8.inst.cfg index 6823fe18a4e..010d5c7cf11 100644 --- a/resources/variants/ultimaker_s7_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s7_bb0.8.inst.cfg @@ -31,7 +31,6 @@ raft_surface_layers = 1 retraction_amount = 4.5 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = =line_width * 3 speed_prime_tower = =math.ceil(speed_print * 7 / 35) speed_print = 35 speed_support = =math.ceil(speed_print * 25 / 35) diff --git a/resources/variants/ultimaker_s7_bb04.inst.cfg b/resources/variants/ultimaker_s7_bb04.inst.cfg index bead299de34..1ec0dfab981 100644 --- a/resources/variants/ultimaker_s7_bb04.inst.cfg +++ b/resources/variants/ultimaker_s7_bb04.inst.cfg @@ -17,7 +17,6 @@ machine_nozzle_heat_up_speed = 1.5 machine_nozzle_id = BB 0.4 machine_nozzle_tip_outer_diameter = 1.0 retraction_amount = 4.5 -retraction_min_travel = =3 * line_width speed_prime_tower = =math.ceil(speed_print * 10 / 35) speed_support = =math.ceil(speed_print * 25 / 35) speed_support_interface = =math.ceil(speed_support * 20 / 25) diff --git a/resources/variants/ultimaker_s7_cc04.inst.cfg b/resources/variants/ultimaker_s7_cc04.inst.cfg index d46d3873301..6949c5be74d 100644 --- a/resources/variants/ultimaker_s7_cc04.inst.cfg +++ b/resources/variants/ultimaker_s7_cc04.inst.cfg @@ -13,7 +13,6 @@ brim_width = 7 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_id = CC 0.4 machine_nozzle_size = 0.4 -retraction_min_travel = =line_width * 2 retraction_prime_speed = =retraction_speed speed_infill = =speed_print speed_print = 45 diff --git a/resources/variants/ultimaker_s7_cc06.inst.cfg b/resources/variants/ultimaker_s7_cc06.inst.cfg index d0c0d3670fa..576701fc2b8 100644 --- a/resources/variants/ultimaker_s7_cc06.inst.cfg +++ b/resources/variants/ultimaker_s7_cc06.inst.cfg @@ -13,7 +13,6 @@ brim_width = 7 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_id = CC 0.6 machine_nozzle_size = 0.6 -retraction_min_travel = =line_width * 2 retraction_prime_speed = =retraction_speed speed_infill = =speed_print speed_print = 45 From 578057f16a3985df356532d87f1dd9a1b3b1b269 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 8 Feb 2024 16:35:28 +0100 Subject: [PATCH 483/765] add file association for mac --- UltiMaker-Cura.spec.jinja | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UltiMaker-Cura.spec.jinja b/UltiMaker-Cura.spec.jinja index 99bfa80078c..2dce96282e6 100644 --- a/UltiMaker-Cura.spec.jinja +++ b/UltiMaker-Cura.spec.jinja @@ -92,7 +92,7 @@ app = BUNDLE( }], 'CFBundleDocumentTypes': [{ 'CFBundleTypeRole': 'Viewer', - 'CFBundleTypeExtensions': ['*'], + 'CFBundleTypeExtensions': ['stl', 'obj', '3mf', 'gcode', 'ufp'], 'CFBundleTypeName': 'Model Files', }] }, From 93cb35859959394ac67a2fd52c2c04825c8e5c8b Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 9 Feb 2024 07:43:48 +0100 Subject: [PATCH 484/765] Add FIXMEs where big changes are required CURA-11561 --- plugins/3MFReader/ThreeMFWorkspaceReader.py | 1 + plugins/3MFWriter/ThreeMFWorkspaceWriter.py | 2 ++ 2 files changed, 3 insertions(+) diff --git a/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py index e3056065a82..92a62ddca25 100755 --- a/plugins/3MFReader/ThreeMFWorkspaceReader.py +++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py @@ -235,6 +235,7 @@ def preRead(self, file_name, show_dialog=True, *args, **kwargs): containers_found_dict = {k: False for k in resolve_strategy_keys} # Check whether the file is a UCP, which changes some import options + #FIXME Instead of this, we should just check for the presence of the user-settings file, whatever the extension is_ucp = file_name.endswith('.ucp') # diff --git a/plugins/3MFWriter/ThreeMFWorkspaceWriter.py b/plugins/3MFWriter/ThreeMFWorkspaceWriter.py index 7cdf8847095..d0a843af69d 100644 --- a/plugins/3MFWriter/ThreeMFWorkspaceWriter.py +++ b/plugins/3MFWriter/ThreeMFWorkspaceWriter.py @@ -34,6 +34,7 @@ def __init__(self): self._mode = None self._config_dialog = None + #FIXME We should have proper preWrite/write methods like the readers have a preRead/read, and have them called by the global process def _preWrite(self): is_ucp = False if hasattr(self._stream, 'name'): @@ -150,6 +151,7 @@ def _write(self): self._success = True + #FIXME We should somehow give the information of the file type so that we know what to write, like the mode but for other files types (give mimetype ?) def write(self, stream, nodes, mode=WorkspaceWriter.OutputMode.BinaryMode): self._success = False self._export_model = None From e8bdca3dd95a9ba3b1efacc224732b73e5d2d0e4 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Fri, 9 Feb 2024 10:32:39 +0100 Subject: [PATCH 485/765] introducing drop to buildplate per model CURA-10542 --- cura/PlatformPhysics.py | 15 ++++-- resources/qml/Preferences/GeneralPage.qml | 66 +++++++++++++++++++++++ resources/qml/Toolbar.qml | 2 +- 3 files changed, 79 insertions(+), 4 deletions(-) diff --git a/cura/PlatformPhysics.py b/cura/PlatformPhysics.py index 1ef39de80d6..98e9e823c66 100755 --- a/cura/PlatformPhysics.py +++ b/cura/PlatformPhysics.py @@ -38,7 +38,7 @@ def __init__(self, controller, volume): self._minimum_gap = 2 # It is a minimum distance (in mm) between two models, applicable for small models Application.getInstance().getPreferences().addPreference("physics/automatic_push_free", False) - Application.getInstance().getPreferences().addPreference("physics/automatic_drop_down", True) + Application.getInstance().getPreferences().addPreference("physics/automatic_drop_down_per_model", "never") def _onSceneChanged(self, source): if not source.callDecoration("isSliceable"): @@ -71,6 +71,15 @@ def _onChangeTimerFinished(self): # We try to shuffle all the nodes to prevent "locked" situations, where iteration B inverts iteration A. # By shuffling the order of the nodes, this might happen a few times, but at some point it will resolve. random.shuffle(nodes) + default_value = False + if app_automatic_drop_down == "always": + default_value = True + if app_automatic_drop_down == "never": + default_value = False + if app_automatic_drop_down == "always_ask": + # ask_during_loading_model + pass + for node in nodes: if node is root or not isinstance(node, SceneNode) or node.getBoundingBox() is None: continue @@ -80,10 +89,10 @@ def _onChangeTimerFinished(self): # Move it downwards if bottom is above platform move_vector = Vector() - if node.getSetting(SceneNodeSettings.AutoDropDown, app_automatic_drop_down) and not (node.getParent() and node.getParent().callDecoration("isGroup") or node.getParent() != root) and node.isEnabled(): #If an object is grouped, don't move it down + + if node.getSetting(SceneNodeSettings.AutoDropDown, default_value) and not (node.getParent() and node.getParent().callDecoration("isGroup") or node.getParent() != root) and node.isEnabled(): #If an object is grouped, don't move it down z_offset = node.callDecoration("getZOffset") if node.getDecorator(ZOffsetDecorator.ZOffsetDecorator) else 0 move_vector = move_vector.set(y = -bbox.bottom + z_offset) - # If there is no convex hull for the node, start calculating it and continue. if not node.getDecorator(ConvexHullDecorator) and not node.callDecoration("isNonPrintingMesh") and node.callDecoration("getLayerData") is None: node.addDecorator(ConvexHullDecorator()) diff --git a/resources/qml/Preferences/GeneralPage.qml b/resources/qml/Preferences/GeneralPage.qml index c313ffbd948..963f95da4b0 100644 --- a/resources/qml/Preferences/GeneralPage.qml +++ b/resources/qml/Preferences/GeneralPage.qml @@ -63,6 +63,18 @@ UM.PreferencesPage } } + function setDefaultDropDown(code) + { + for (var i = 0; i < choiceOnDropDown.model.count; ++i) + { + if (choiceOnDropDown.model.get(i).code == code) + { + choiceOnDropDown.currentIndex = i + break; + } + } + } + function reset() { UM.Preferences.resetPreference("general/language") @@ -513,6 +525,60 @@ UM.PreferencesPage } } + UM.TooltipArea + { + width: childrenRect.width + height: childrenRect.height + text: catalog.i18nc("@info:tooltip", "This setting will set a default (or not) for the Per Model Drop to buildplate feature (Either Always, Never, decide every time") + + Column + { + spacing: UM.Theme.getSize("narrow_margin").height + + UM.Label + { + text: catalog.i18nc("@window:text", " Default per model setting for drop to build plate when importing a model: ") + } + + Cura.ComboBox + { + id: choiceOnDropDown + width: UM.Theme.getSize("combobox").width + height: UM.Theme.getSize("combobox").height + + model: ListModel + { + id: dropDownOptions + + Component.onCompleted: + { + append({ text: catalog.i18nc("@option:openProject", "Always"), code: "always" }) + append({ text: catalog.i18nc("@option:openProject", "Never"), code: "never" }) + append({ text: catalog.i18nc("@option:openProject", "Always ask me this"), code: "always_ask" }) + } + } + textRole: "text" + + currentIndex: + { + var index = 0; + var currentChoice = UM.Preferences.getValue("physics/automatic_drop_down_per_model"); + for (var i = 0; i < model.count; ++i) + { + if (model.get(i).code == currentChoice) + { + index = i; + break; + } + } + return index; + } + + onActivated: UM.Preferences.setValue("physics/automatic_drop_down_per_model", model.get(index).code) + } + } + } + UM.TooltipArea { diff --git a/resources/qml/Toolbar.qml b/resources/qml/Toolbar.qml index 1af4e958f44..81f6c5d6822 100644 --- a/resources/qml/Toolbar.qml +++ b/resources/qml/Toolbar.qml @@ -222,7 +222,7 @@ Item UM.Label { id: toolHint - text: UM.Controller.properties.getValue("ToolHint") != undefined ? UM.ActiveTool.properties.getValue("ToolHint") : "" + text: UM.Controller.properties.getValue("ToolHint") != undefined ? UM.Controller.properties.getValue("ToolHint") : "" color: UM.Theme.getColor("tooltip_text") anchors.horizontalCenter: parent.horizontalCenter } From a7292c7baf49539737136bdf6bc89b4617167c5c Mon Sep 17 00:00:00 2001 From: Saumya Jain <70144862+saumyaj3@users.noreply.github.com> Date: Fri, 9 Feb 2024 11:20:04 +0100 Subject: [PATCH 486/765] Update OneAtATimeIterator.py saving node_list after sorting --- cura/OneAtATimeIterator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/OneAtATimeIterator.py b/cura/OneAtATimeIterator.py index f92da3ec14f..1017cfc79e9 100644 --- a/cura/OneAtATimeIterator.py +++ b/cura/OneAtATimeIterator.py @@ -68,7 +68,7 @@ def _getNodesOrderedAutomatically(hit_checker: HitChecker, node_list: List[CuraS # Sort the original list so that items that block the most other objects are at the beginning. # This does not decrease the worst case running time, but should improve it in most cases. - sorted(node_list, key = cmp_to_key(hit_checker.calculateScore)) + node_list = sorted(node_list, key = cmp_to_key(hit_checker.calculateScore)) todo_node_list = [_ObjectOrder([], node_list)] while len(todo_node_list) > 0: From 345ddc40bb3dd32c2a88990e99073702c4e4e721 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 9 Feb 2024 11:54:49 +0100 Subject: [PATCH 487/765] Fix file opening failure CURA-11561 --- plugins/3MFReader/ThreeMFWorkspaceReader.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py index 92a62ddca25..d96de5b324d 100755 --- a/plugins/3MFReader/ThreeMFWorkspaceReader.py +++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py @@ -613,10 +613,11 @@ def preRead(self, file_name, show_dialog=True, *args, **kwargs): try: self._user_settings = json.loads(archive.open("Cura/user-settings.json").read().decode("utf-8")) any_extruder_stack = ExtruderManager.getInstance().getExtruderStack(0) + actual_global_stack = CuraApplication.getInstance().getGlobalContainerStack() for stack_name, settings in self._user_settings.items(): if stack_name == 'global': - self._dialog.exportedSettingModel.addSettingsFromStack(global_stack, i18n_catalog.i18nc("@label", "Global"), settings) + self._dialog.exportedSettingModel.addSettingsFromStack(actual_global_stack, i18n_catalog.i18nc("@label", "Global"), settings) else: extruder_match = re.fullmatch('extruder_([0-9]+)', stack_name) if extruder_match is not None: From 91a84674f022b0baf0b1915fadef1d171c9cbddd Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Fri, 9 Feb 2024 15:11:56 +0100 Subject: [PATCH 488/765] Adding the preference drop to buildplate while opening Cura project CURA-10542 --- cura/PlatformPhysics.py | 14 +---- plugins/3MFReader/WorkspaceDialog.qml | 14 +++++ resources/qml/Preferences/GeneralPage.qml | 67 ----------------------- 3 files changed, 16 insertions(+), 79 deletions(-) diff --git a/cura/PlatformPhysics.py b/cura/PlatformPhysics.py index 98e9e823c66..7add1e24e7a 100755 --- a/cura/PlatformPhysics.py +++ b/cura/PlatformPhysics.py @@ -38,7 +38,7 @@ def __init__(self, controller, volume): self._minimum_gap = 2 # It is a minimum distance (in mm) between two models, applicable for small models Application.getInstance().getPreferences().addPreference("physics/automatic_push_free", False) - Application.getInstance().getPreferences().addPreference("physics/automatic_drop_down_per_model", "never") + Application.getInstance().getPreferences().addPreference("physics/automatic_drop_down", False) def _onSceneChanged(self, source): if not source.callDecoration("isSliceable"): @@ -71,14 +71,6 @@ def _onChangeTimerFinished(self): # We try to shuffle all the nodes to prevent "locked" situations, where iteration B inverts iteration A. # By shuffling the order of the nodes, this might happen a few times, but at some point it will resolve. random.shuffle(nodes) - default_value = False - if app_automatic_drop_down == "always": - default_value = True - if app_automatic_drop_down == "never": - default_value = False - if app_automatic_drop_down == "always_ask": - # ask_during_loading_model - pass for node in nodes: if node is root or not isinstance(node, SceneNode) or node.getBoundingBox() is None: @@ -88,9 +80,7 @@ def _onChangeTimerFinished(self): # Move it downwards if bottom is above platform move_vector = Vector() - - - if node.getSetting(SceneNodeSettings.AutoDropDown, default_value) and not (node.getParent() and node.getParent().callDecoration("isGroup") or node.getParent() != root) and node.isEnabled(): #If an object is grouped, don't move it down + if node.getSetting(SceneNodeSettings.AutoDropDown, app_automatic_drop_down) and not (node.getParent() and node.getParent().callDecoration("isGroup") or node.getParent() != root) and node.isEnabled(): #If an object is grouped, don't move it down z_offset = node.callDecoration("getZOffset") if node.getDecorator(ZOffsetDecorator.ZOffsetDecorator) else 0 move_vector = move_vector.set(y = -bbox.bottom + z_offset) # If there is no convex hull for the node, start calculating it and continue. diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index d5f9b1817d1..874ca0aab8e 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -299,6 +299,20 @@ UM.Dialog } } } + Row + { + id: dropToBuildPlate + width: parent.width + height: childrenRect.height + spacing: UM.Theme.getSize("default_margin").width + UM.CheckBox + { + id: rememberChoiceCheckBox + text: catalog.i18nc("@text:window", "Drop models to buildplate") + checked: UM.Preferences.getValue("physics/automatic_drop_down") == True + onCheckedChanged: UM.Preferences.setValue("physics/automatic_drop_down", checked) + } + } Row { diff --git a/resources/qml/Preferences/GeneralPage.qml b/resources/qml/Preferences/GeneralPage.qml index 963f95da4b0..af637439318 100644 --- a/resources/qml/Preferences/GeneralPage.qml +++ b/resources/qml/Preferences/GeneralPage.qml @@ -63,18 +63,6 @@ UM.PreferencesPage } } - function setDefaultDropDown(code) - { - for (var i = 0; i < choiceOnDropDown.model.count; ++i) - { - if (choiceOnDropDown.model.get(i).code == code) - { - choiceOnDropDown.currentIndex = i - break; - } - } - } - function reset() { UM.Preferences.resetPreference("general/language") @@ -525,61 +513,6 @@ UM.PreferencesPage } } - UM.TooltipArea - { - width: childrenRect.width - height: childrenRect.height - text: catalog.i18nc("@info:tooltip", "This setting will set a default (or not) for the Per Model Drop to buildplate feature (Either Always, Never, decide every time") - - Column - { - spacing: UM.Theme.getSize("narrow_margin").height - - UM.Label - { - text: catalog.i18nc("@window:text", " Default per model setting for drop to build plate when importing a model: ") - } - - Cura.ComboBox - { - id: choiceOnDropDown - width: UM.Theme.getSize("combobox").width - height: UM.Theme.getSize("combobox").height - - model: ListModel - { - id: dropDownOptions - - Component.onCompleted: - { - append({ text: catalog.i18nc("@option:openProject", "Always"), code: "always" }) - append({ text: catalog.i18nc("@option:openProject", "Never"), code: "never" }) - append({ text: catalog.i18nc("@option:openProject", "Always ask me this"), code: "always_ask" }) - } - } - textRole: "text" - - currentIndex: - { - var index = 0; - var currentChoice = UM.Preferences.getValue("physics/automatic_drop_down_per_model"); - for (var i = 0; i < model.count; ++i) - { - if (model.get(i).code == currentChoice) - { - index = i; - break; - } - } - return index; - } - - onActivated: UM.Preferences.setValue("physics/automatic_drop_down_per_model", model.get(index).code) - } - } - } - - UM.TooltipArea { width: childrenRect.width; From aa2abfbd2e1a86a5e10f6a3e3c56e0092d8cb589 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Fri, 9 Feb 2024 15:15:44 +0100 Subject: [PATCH 489/765] removing id of checkbox CURA-10542 --- cura/PlatformPhysics.py | 2 ++ plugins/3MFReader/WorkspaceDialog.qml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/cura/PlatformPhysics.py b/cura/PlatformPhysics.py index 7add1e24e7a..d204bee185c 100755 --- a/cura/PlatformPhysics.py +++ b/cura/PlatformPhysics.py @@ -80,9 +80,11 @@ def _onChangeTimerFinished(self): # Move it downwards if bottom is above platform move_vector = Vector() + if node.getSetting(SceneNodeSettings.AutoDropDown, app_automatic_drop_down) and not (node.getParent() and node.getParent().callDecoration("isGroup") or node.getParent() != root) and node.isEnabled(): #If an object is grouped, don't move it down z_offset = node.callDecoration("getZOffset") if node.getDecorator(ZOffsetDecorator.ZOffsetDecorator) else 0 move_vector = move_vector.set(y = -bbox.bottom + z_offset) + # If there is no convex hull for the node, start calculating it and continue. if not node.getDecorator(ConvexHullDecorator) and not node.callDecoration("isNonPrintingMesh") and node.callDecoration("getLayerData") is None: node.addDecorator(ConvexHullDecorator()) diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index 874ca0aab8e..8b4b2341d9a 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -299,6 +299,7 @@ UM.Dialog } } } + Row { id: dropToBuildPlate @@ -307,7 +308,6 @@ UM.Dialog spacing: UM.Theme.getSize("default_margin").width UM.CheckBox { - id: rememberChoiceCheckBox text: catalog.i18nc("@text:window", "Drop models to buildplate") checked: UM.Preferences.getValue("physics/automatic_drop_down") == True onCheckedChanged: UM.Preferences.setValue("physics/automatic_drop_down", checked) From 860dbaa4fe450c06c4990182d0ea2e4ddfa0c59f Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Tue, 13 Feb 2024 11:32:58 +0100 Subject: [PATCH 490/765] Added experimental print profiles for the Method X and XL: ASA, Nylon12-CF and SR-30 support material. PP-393 --- .../definitions/ultimaker_methodx.def.json | 1 - ...methodx_1c_um-asa-175_0.2mm_solid.inst.cfg | 18 +++++++ ..._1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg | 18 +++++++ ...ethodx_1xa_um-asa-175_0.2mm_solid.inst.cfg | 18 +++++++ ...thodx_2xa_um-sr30-175_0.2mm_solid.inst.cfg | 17 ++++++ ...thodx_labs_um-asa-175_0.2mm_solid.inst.cfg | 18 +++++++ ...abs_um-nylon12-cf-175_0.2mm_solid.inst.cfg | 18 +++++++ ...ethodxl_1c_um-asa-175_0.2mm_solid.inst.cfg | 18 +++++++ ..._1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg | 18 +++++++ ...thodxl_1xa_um-asa-175_0.2mm_solid.inst.cfg | 18 +++++++ ...hodxl_2xa_um-sr30-175_0.2mm_solid.inst.cfg | 17 ++++++ ...hodxl_labs_um-asa-175_0.2mm_solid.inst.cfg | 18 +++++++ ...abs_um-nylon12-cf-175_0.2mm_solid.inst.cfg | 18 +++++++ .../um_methodx_1c_um-asa-175_0.2mm.inst.cfg | 50 +++++++++++++++++ ...ethodx_1c_um-nylon12-cf-175_0.2mm.inst.cfg | 53 +++++++++++++++++++ .../um_methodx_1xa_um-asa-175_0.2mm.inst.cfg | 50 +++++++++++++++++ .../um_methodx_2xa_um-sr30-175_0.2mm.inst.cfg | 41 ++++++++++++++ .../um_methodx_labs_um-asa-175_0.2mm.inst.cfg | 50 +++++++++++++++++ ...hodx_labs_um-nylon12-cf-175_0.2mm.inst.cfg | 53 +++++++++++++++++++ .../um_methodxl_1c_um-absr-175_0.2mm.inst.cfg | 2 - .../um_methodxl_1c_um-asa-175_0.2mm.inst.cfg | 51 ++++++++++++++++++ ...thodxl_1c_um-nylon12-cf-175_0.2mm.inst.cfg | 53 +++++++++++++++++++ ...um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg | 2 - .../um_methodxl_1xa_um-asa-175_0.2mm.inst.cfg | 51 ++++++++++++++++++ ...um_methodxl_2xa_um-sr30-175_0.2mm.inst.cfg | 41 ++++++++++++++ ...m_methodxl_labs_um-absr-175_0.2mm.inst.cfg | 2 - ...um_methodxl_labs_um-asa-175_0.2mm.inst.cfg | 51 ++++++++++++++++++ ...odxl_labs_um-nylon12-cf-175_0.2mm.inst.cfg | 53 +++++++++++++++++++ .../um_s3_aa0.25_um-abs_0.1mm.inst.cfg | 1 + .../um_s5_aa0.25_um-abs_0.1mm.inst.cfg | 1 + 30 files changed, 813 insertions(+), 7 deletions(-) create mode 100644 resources/intent/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm_solid.inst.cfg create mode 100644 resources/intent/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg create mode 100644 resources/intent/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm_solid.inst.cfg create mode 100644 resources/intent/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm_solid.inst.cfg create mode 100644 resources/intent/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm_solid.inst.cfg create mode 100644 resources/intent/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg create mode 100644 resources/intent/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm_solid.inst.cfg create mode 100644 resources/intent/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg create mode 100644 resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm_solid.inst.cfg create mode 100644 resources/intent/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm_solid.inst.cfg create mode 100644 resources/intent/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm_solid.inst.cfg create mode 100644 resources/intent/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg create mode 100644 resources/quality/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm.inst.cfg create mode 100644 resources/quality/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm.inst.cfg create mode 100644 resources/quality/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm.inst.cfg create mode 100644 resources/quality/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm.inst.cfg create mode 100644 resources/quality/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm.inst.cfg create mode 100644 resources/quality/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm.inst.cfg create mode 100644 resources/quality/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm.inst.cfg create mode 100644 resources/quality/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm.inst.cfg create mode 100644 resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm.inst.cfg create mode 100644 resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm.inst.cfg create mode 100644 resources/quality/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm.inst.cfg create mode 100644 resources/quality/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm.inst.cfg diff --git a/resources/definitions/ultimaker_methodx.def.json b/resources/definitions/ultimaker_methodx.def.json index a6708a04216..9828ba96f2b 100644 --- a/resources/definitions/ultimaker_methodx.def.json +++ b/resources/definitions/ultimaker_methodx.def.json @@ -35,7 +35,6 @@ "generic_nylon_175", "generic_hips_175", "generic_pc_175", - "ultimaker_sr30_175", "generic_tpu_175", "goofoo_", "ideagen3D_", diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm_solid.inst.cfg new file mode 100644 index 00000000000..23c8807afd0 --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm_solid.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_methodx +name = Solid +version = 4 + +[metadata] +intent_category = solid +is_experimental = True +material = ultimaker_asa_175 +quality_type = draft +setting_version = 22 +type = intent +variant = 1C + +[values] +infill_pattern = lines +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg new file mode 100644 index 00000000000..cdff2f30cea --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_methodx +name = Solid +version = 4 + +[metadata] +intent_category = solid +is_experimental = True +material = ultimaker_nylon12-cf_175 +quality_type = draft +setting_version = 22 +type = intent +variant = 1C + +[values] +infill_pattern = lines +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm_solid.inst.cfg new file mode 100644 index 00000000000..3a781b61aa0 --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm_solid.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_methodx +name = Solid +version = 4 + +[metadata] +intent_category = solid +is_experimental = True +material = ultimaker_asa_175 +quality_type = draft +setting_version = 22 +type = intent +variant = 1XA + +[values] +infill_pattern = lines +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm_solid.inst.cfg new file mode 100644 index 00000000000..a833556bd8b --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm_solid.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = ultimaker_methodx +name = Solid +version = 4 + +[metadata] +intent_category = solid +is_experimental = True +material = ultimaker_sr30_175 +quality_type = draft +setting_version = 22 +type = intent +variant = 2XA + +[values] +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm_solid.inst.cfg new file mode 100644 index 00000000000..87823a01a6b --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm_solid.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_methodx +name = Solid +version = 4 + +[metadata] +intent_category = solid +is_experimental = True +material = ultimaker_asa_175 +quality_type = draft +setting_version = 22 +type = intent +variant = LABS + +[values] +infill_pattern = lines +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg new file mode 100644 index 00000000000..bb769198883 --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_methodx +name = Solid +version = 4 + +[metadata] +intent_category = solid +is_experimental = True +material = ultimaker_nylon12-cf_175 +quality_type = draft +setting_version = 22 +type = intent +variant = LABS + +[values] +infill_pattern = lines +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm_solid.inst.cfg new file mode 100644 index 00000000000..12bc3f27080 --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm_solid.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_methodxl +name = Solid +version = 4 + +[metadata] +intent_category = solid +is_experimental = True +material = ultimaker_asa_175 +quality_type = draft +setting_version = 22 +type = intent +variant = 1C + +[values] +infill_pattern = lines +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg new file mode 100644 index 00000000000..55336726361 --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_methodxl +name = Solid +version = 4 + +[metadata] +intent_category = solid +is_experimental = True +material = ultimaker_nylon12-cf_175 +quality_type = draft +setting_version = 22 +type = intent +variant = 1C + +[values] +infill_pattern = lines +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm_solid.inst.cfg new file mode 100644 index 00000000000..82aa8e9bad7 --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm_solid.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_methodxl +name = Solid +version = 4 + +[metadata] +intent_category = solid +is_experimental = True +material = ultimaker_asa_175 +quality_type = draft +setting_version = 22 +type = intent +variant = 1XA + +[values] +infill_pattern = lines +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm_solid.inst.cfg new file mode 100644 index 00000000000..01a55c85a42 --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm_solid.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = ultimaker_methodxl +name = Solid +version = 4 + +[metadata] +intent_category = solid +is_experimental = True +material = ultimaker_sr30_175 +quality_type = draft +setting_version = 22 +type = intent +variant = 2XA + +[values] +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm_solid.inst.cfg new file mode 100644 index 00000000000..ae7100bc86b --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm_solid.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_methodxl +name = Solid +version = 4 + +[metadata] +intent_category = solid +is_experimental = True +material = ultimaker_asa_175 +quality_type = draft +setting_version = 22 +type = intent +variant = LABS + +[values] +infill_pattern = lines +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg new file mode 100644 index 00000000000..af43c95cd2d --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_methodxl +name = Solid +version = 4 + +[metadata] +intent_category = solid +is_experimental = True +material = ultimaker_nylon12-cf_175 +quality_type = draft +setting_version = 22 +type = intent +variant = LABS + +[values] +infill_pattern = lines +infill_sparse_density = 100 + diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm.inst.cfg new file mode 100644 index 00000000000..f0e0a4fdedd --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm.inst.cfg @@ -0,0 +1,50 @@ +[general] +definition = ultimaker_methodx +name = Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = ultimaker_asa_175 +quality_type = draft +setting_version = 22 +type = quality +variant = 1C +weight = -2 + +[values] +cool_fan_enabled = False +material_print_temperature_layer_0 = =default_material_print_temperature+5 +raft_airgap = 0.3 +raft_base_speed = 10 +retract_at_layer_change = True +retraction_amount = 0.5 +retraction_min_travel = 3.2 +roofing_material_flow = 98.0 +small_skin_width = 3.6 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 250.0 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm.inst.cfg new file mode 100644 index 00000000000..32d64ed5b19 --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm.inst.cfg @@ -0,0 +1,53 @@ +[general] +definition = ultimaker_methodx +name = Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = ultimaker_nylon12-cf_175 +quality_type = draft +setting_version = 22 +type = quality +variant = 1C +weight = -2 + +[values] +cool_fan_enabled = False +material_final_print_temperature = =default_material_print_temperature-5 +material_initial_print_temperature = =default_material_print_temperature-5 +raft_airgap = 0.3 +raft_base_line_spacing = 3 +raft_base_line_width = 1.2 +raft_base_speed = 10 +retract_at_layer_change = True +retraction_amount = 0.5 +retraction_min_travel = 3.2 +roofing_material_flow = 100 +small_skin_width = 3.6 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 250.0 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm.inst.cfg new file mode 100644 index 00000000000..e032e3a3b80 --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm.inst.cfg @@ -0,0 +1,50 @@ +[general] +definition = ultimaker_methodx +name = Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = ultimaker_asa_175 +quality_type = draft +setting_version = 22 +type = quality +variant = 1XA +weight = -2 + +[values] +cool_fan_enabled = False +material_print_temperature_layer_0 = =default_material_print_temperature+5 +raft_airgap = 0.3 +raft_base_speed = 10 +retract_at_layer_change = True +retraction_amount = 0.5 +retraction_min_travel = 3.2 +roofing_material_flow = 98.0 +small_skin_width = 3.6 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 250.0 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm.inst.cfg new file mode 100644 index 00000000000..5ebc2b4560b --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm.inst.cfg @@ -0,0 +1,41 @@ +[general] +definition = ultimaker_methodx +name = Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = ultimaker_sr30_175 +quality_type = draft +setting_version = 22 +type = quality +variant = 2XA +weight = -2 + +[values] +brim_replaces_support = False +cool_fan_enabled = False +cool_min_temperature = =material_print_temperature +raft_airgap = 0.0 +raft_interface_line_width = 0.7 +raft_interface_speed = 70 +raft_surface_speed = 90 +retract_at_layer_change = True +retraction_amount = 0.5 +speed_prime_tower = 25.0 +speed_print = 50 +speed_roofing = 50 +speed_support = 50 +speed_support_bottom = 30 +speed_support_interface = 80 +speed_topbottom = 50 +speed_wall_0 = 50 +speed_wall_x = 50 +support_bottom_wall_count = 5 +support_fan_enable = False +support_infill_sparse_thickness = =min(layer_height * 2, machine_nozzle_size * 3 / 4) if layer_height <= 0.15 / 0.4 * machine_nozzle_size else layer_height +support_interface_enable = True +support_wall_count = 1 +support_xy_distance = 0.2 +support_z_distance = 0 + diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm.inst.cfg new file mode 100644 index 00000000000..3c9f4500fc1 --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm.inst.cfg @@ -0,0 +1,50 @@ +[general] +definition = ultimaker_methodx +name = Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = ultimaker_asa_175 +quality_type = draft +setting_version = 22 +type = quality +variant = LABS +weight = -2 + +[values] +cool_fan_enabled = False +material_print_temperature_layer_0 = =default_material_print_temperature+5 +raft_airgap = 0.3 +raft_base_speed = 10 +retract_at_layer_change = True +retraction_amount = 0.5 +retraction_min_travel = 3.2 +roofing_material_flow = 98.0 +small_skin_width = 3.6 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 250.0 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm.inst.cfg new file mode 100644 index 00000000000..7bb14d9107d --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm.inst.cfg @@ -0,0 +1,53 @@ +[general] +definition = ultimaker_methodx +name = Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = ultimaker_nylon12-cf_175 +quality_type = draft +setting_version = 22 +type = quality +variant = LABS +weight = -2 + +[values] +cool_fan_enabled = False +material_final_print_temperature = =default_material_print_temperature-5 +material_initial_print_temperature = =default_material_print_temperature-5 +raft_airgap = 0.3 +raft_base_line_spacing = 3 +raft_base_line_width = 1.2 +raft_base_speed = 10 +retract_at_layer_change = True +retraction_amount = 0.5 +retraction_min_travel = 3.2 +roofing_material_flow = 100 +small_skin_width = 3.6 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 250.0 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm.inst.cfg index 7b5daf0d201..2688d88ad3e 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm.inst.cfg @@ -12,9 +12,7 @@ variant = 1C weight = -2 [values] -build_volume_temperature = 85 cool_fan_enabled = False -default_material_bed_temperature = 95 raft_airgap = 0.3 speed_prime_tower = 30.0 speed_print = 120.0 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm.inst.cfg new file mode 100644 index 00000000000..5aaee1f2c6b --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm.inst.cfg @@ -0,0 +1,51 @@ +[general] +definition = ultimaker_methodxl +name = Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = ultimaker_asa_175 +quality_type = draft +setting_version = 22 +type = quality +variant = 1C +weight = -2 + +[values] +cool_fan_enabled = False +material_print_temperature_layer_0 = =default_material_print_temperature+5 +raft_airgap = 0.3 +raft_base_speed = 10 +retract_at_layer_change = True +retraction_amount = 0.5 +retraction_min_travel = 3.2 +roofing_material_flow = 98.0 +small_skin_width = 3.6 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 500 +speed_travel_layer_0 = 250 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm.inst.cfg new file mode 100644 index 00000000000..575189deae6 --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm.inst.cfg @@ -0,0 +1,53 @@ +[general] +definition = ultimaker_methodxl +name = Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = ultimaker_nylon12-cf_175 +quality_type = draft +setting_version = 22 +type = quality +variant = 1C +weight = -2 + +[values] +cool_fan_enabled = False +material_final_print_temperature = =default_material_print_temperature-5 +material_initial_print_temperature = =default_material_print_temperature-5 +raft_airgap = 0.3 +raft_base_line_spacing = 3 +raft_base_line_width = 1.2 +raft_base_speed = 10 +retract_at_layer_change = True +retraction_amount = 0.5 +retraction_min_travel = 3.2 +roofing_material_flow = 100 +small_skin_width = 3.6 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 250.0 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg index 7445bd2d42c..fd224e87984 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg @@ -12,9 +12,7 @@ variant = 1XA weight = -2 [values] -build_volume_temperature = 85 cool_fan_enabled = False -default_material_bed_temperature = 95 raft_airgap = 0.3 speed_prime_tower = 30.0 speed_print = 120.0 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm.inst.cfg new file mode 100644 index 00000000000..504ab8c10b7 --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm.inst.cfg @@ -0,0 +1,51 @@ +[general] +definition = ultimaker_methodxl +name = Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = ultimaker_asa_175 +quality_type = draft +setting_version = 22 +type = quality +variant = 1XA +weight = -2 + +[values] +cool_fan_enabled = False +material_print_temperature_layer_0 = =default_material_print_temperature+5 +raft_airgap = 0.3 +raft_base_speed = 10 +retract_at_layer_change = True +retraction_amount = 0.5 +retraction_min_travel = 3.2 +roofing_material_flow = 98.0 +small_skin_width = 3.6 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 500 +speed_travel_layer_0 = 250 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm.inst.cfg new file mode 100644 index 00000000000..ebc6ecfe982 --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm.inst.cfg @@ -0,0 +1,41 @@ +[general] +definition = ultimaker_methodxl +name = Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = ultimaker_sr30_175 +quality_type = draft +setting_version = 22 +type = quality +variant = 2XA +weight = -2 + +[values] +brim_replaces_support = False +cool_fan_enabled = False +cool_min_temperature = =material_print_temperature +raft_airgap = 0.0 +raft_interface_line_width = 0.7 +raft_interface_speed = 70 +raft_surface_speed = 90 +retract_at_layer_change = True +retraction_amount = 0.5 +speed_prime_tower = 25.0 +speed_print = 50 +speed_roofing = 50 +speed_support = 50 +speed_support_bottom = 30 +speed_support_interface = 80 +speed_topbottom = 50 +speed_wall_0 = 50 +speed_wall_x = 50 +support_bottom_wall_count = 5 +support_fan_enable = False +support_infill_sparse_thickness = =min(layer_height * 2, machine_nozzle_size * 3 / 4) if layer_height <= 0.15 / 0.4 * machine_nozzle_size else layer_height +support_interface_enable = True +support_wall_count = 1 +support_xy_distance = 0.2 +support_z_distance = 0 + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm.inst.cfg index 2114be0ff48..4af8230b24a 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm.inst.cfg @@ -12,9 +12,7 @@ variant = LABS weight = -2 [values] -build_volume_temperature = 85 cool_fan_enabled = False -default_material_bed_temperature = 95 raft_airgap = 0.3 speed_prime_tower = 30.0 speed_print = 120.0 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm.inst.cfg new file mode 100644 index 00000000000..14c15fd3c5e --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm.inst.cfg @@ -0,0 +1,51 @@ +[general] +definition = ultimaker_methodxl +name = Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = ultimaker_asa_175 +quality_type = draft +setting_version = 22 +type = quality +variant = LABS +weight = -2 + +[values] +cool_fan_enabled = False +material_print_temperature_layer_0 = =default_material_print_temperature+5 +raft_airgap = 0.3 +raft_base_speed = 10 +retract_at_layer_change = True +retraction_amount = 0.5 +retraction_min_travel = 3.2 +roofing_material_flow = 98.0 +small_skin_width = 3.6 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 500 +speed_travel_layer_0 = 250 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm.inst.cfg new file mode 100644 index 00000000000..110fa5e4b5c --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm.inst.cfg @@ -0,0 +1,53 @@ +[general] +definition = ultimaker_methodxl +name = Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = ultimaker_nylon12-cf_175 +quality_type = draft +setting_version = 22 +type = quality +variant = LABS +weight = -2 + +[values] +cool_fan_enabled = False +material_final_print_temperature = =default_material_print_temperature-5 +material_initial_print_temperature = =default_material_print_temperature-5 +raft_airgap = 0.3 +raft_base_line_spacing = 3 +raft_base_line_width = 1.2 +raft_base_speed = 10 +retract_at_layer_change = True +retraction_amount = 0.5 +retraction_min_travel = 3.2 +roofing_material_flow = 100 +small_skin_width = 3.6 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 250.0 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg index 24c5a1d9e64..f989bcc3f64 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg @@ -27,6 +27,7 @@ acceleration_wall_x = =acceleration_wall bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 +cool_fan_speed_0 = 0 cool_min_layer_time = 4 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg index 7b14730a660..29057ff13b9 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg @@ -27,6 +27,7 @@ acceleration_wall_x = =acceleration_wall bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 +cool_fan_speed_0 = 0 cool_min_layer_time = 4 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 From 7a72708217c79275cb97d9ed468976d82e6e77e9 Mon Sep 17 00:00:00 2001 From: HellAholic Date: Tue, 13 Feb 2024 16:04:20 +0100 Subject: [PATCH 491/765] Fix random crash on windows OS on boot up --- cura/PrintOrderManager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/PrintOrderManager.py b/cura/PrintOrderManager.py index abfa5442a20..80fc1e99dc5 100644 --- a/cura/PrintOrderManager.py +++ b/cura/PrintOrderManager.py @@ -61,7 +61,7 @@ def isUserDefinedPrintOrderEnabled() -> bool: is_enabled = stack and \ stack.getProperty("print_sequence", "value") == "one_at_a_time" and \ stack.getProperty("user_defined_print_order_enabled", "value") - return is_enabled + return bool(is_enabled) @staticmethod def initializePrintOrders(nodes: List[CuraSceneNode]) -> None: From 32d9e6b45c56f65beea413248849b8599e62c30a Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Wed, 14 Feb 2024 12:59:41 +0100 Subject: [PATCH 492/765] preference does not change after user changes drop to buildplate for a model CURA-10542 --- cura/PlatformPhysics.py | 12 +++++++++++- plugins/3MFReader/WorkspaceDialog.qml | 10 ++++++++-- 2 files changed, 19 insertions(+), 3 deletions(-) diff --git a/cura/PlatformPhysics.py b/cura/PlatformPhysics.py index d204bee185c..b7fe5496019 100755 --- a/cura/PlatformPhysics.py +++ b/cura/PlatformPhysics.py @@ -39,6 +39,7 @@ def __init__(self, controller, volume): Application.getInstance().getPreferences().addPreference("physics/automatic_push_free", False) Application.getInstance().getPreferences().addPreference("physics/automatic_drop_down", False) + Application.getInstance().getPreferences().addPreference("physics/per_model_drop", False) def _onSceneChanged(self, source): if not source.callDecoration("isSliceable"): @@ -54,6 +55,9 @@ def _onChangeTimerFinished(self): app_preferences = app_instance.getPreferences() app_automatic_drop_down = app_preferences.getValue("physics/automatic_drop_down") app_automatic_push_free = app_preferences.getValue("physics/automatic_push_free") + # silent preference setting to mimic preference automatic_drop_down only different when user changes it explicitely while opening model + app_per_model_drop = app_preferences.getValue("physics/per_model_drop") + root = self._controller.getScene().getRoot() build_volume = app_instance.getBuildVolume() @@ -81,7 +85,11 @@ def _onChangeTimerFinished(self): # Move it downwards if bottom is above platform move_vector = Vector() - if node.getSetting(SceneNodeSettings.AutoDropDown, app_automatic_drop_down) and not (node.getParent() and node.getParent().callDecoration("isGroup") or node.getParent() != root) and node.isEnabled(): #If an object is grouped, don't move it down + # if per model drop is different then app_automatic_drop + # in case of 3mf loading when user changes this setting for that model + if (app_per_model_drop != app_automatic_drop_down): + node.setSetting(SceneNodeSettings.AutoDropDown, app_per_model_drop) + if node.getSetting(SceneNodeSettings.AutoDropDown, app_per_model_drop) and not (node.getParent() and node.getParent().callDecoration("isGroup") or node.getParent() != root) and node.isEnabled(): #If an object is grouped, don't move it down z_offset = node.callDecoration("getZOffset") if node.getDecorator(ZOffsetDecorator.ZOffsetDecorator) else 0 move_vector = move_vector.set(y = -bbox.bottom + z_offset) @@ -169,6 +177,8 @@ def _onChangeTimerFinished(self): op = PlatformPhysicsOperation.PlatformPhysicsOperation(node, move_vector) op.push() + # setting this silent preference same as app_automatic_drop_down + app_preferences.setValue("physics/per_model_drop", app_automatic_drop_down) # After moving, we have to evaluate the boundary checks for nodes build_volume.updateNodeBoundaryCheck() diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index 8b4b2341d9a..eefa0f713a6 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -308,9 +308,14 @@ UM.Dialog spacing: UM.Theme.getSize("default_margin").width UM.CheckBox { + id: checkDropModels text: catalog.i18nc("@text:window", "Drop models to buildplate") - checked: UM.Preferences.getValue("physics/automatic_drop_down") == True - onCheckedChanged: UM.Preferences.setValue("physics/automatic_drop_down", checked) + checked: UM.Preferences.getValue("physics/automatic_drop_down") + onCheckedChanged: UM.Preferences.setValue("physics/per_model_drop", checked) + } + function reloadValue() + { + checkDropModels.checked = UM.Preferences.getValue("physics/automatic_drop_down") } } @@ -436,6 +441,7 @@ UM.Dialog materialSection.reloadValues() profileSection.reloadValues() printerSection.reloadValues() + dropToBuildPlate.reloadValue() } } } From 844f9b3ae81faf76387d6b757d475af4a9058b9a Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Wed, 14 Feb 2024 14:44:54 +0100 Subject: [PATCH 493/765] Changed max. value warning level z support distance to prevent warnings for AA0.25 nozzle using default profiles. PP-424 --- resources/definitions/fdmprinter.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 20a8a698a2c..2f63bf57988 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -5135,7 +5135,7 @@ "unit": "mm", "type": "float", "minimum_value": "0", - "maximum_value_warning": "machine_nozzle_size", + "maximum_value_warning": "5*layer_height", "default_value": 0.1, "limit_to_extruder": "support_interface_extruder_nr if support_interface_enable else support_infill_extruder_nr", "enabled": "support_enable or support_meshes_present", From 831af362cb9acb61192f76421c33f884c88b2f2b Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Wed, 14 Feb 2024 15:46:40 +0100 Subject: [PATCH 494/765] Constantify magic values. part of CURA-11406 --- cura/OAuth2/AuthorizationService.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/cura/OAuth2/AuthorizationService.py b/cura/OAuth2/AuthorizationService.py index 1832ff37c23..4e8d28173a3 100644 --- a/cura/OAuth2/AuthorizationService.py +++ b/cura/OAuth2/AuthorizationService.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021 Ultimaker B.V. +# Copyright (c) 2024 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. import json @@ -26,6 +26,8 @@ MYCLOUD_LOGOFF_URL = "https://account.ultimaker.com/logoff?utm_source=cura&utm_medium=software&utm_campaign=change-account-before-adding-printers" +REFRESH_TOKEN_MAX_RETRIES = 15 +REFRESH_TOKEN_RETRY_INTERVAL = 1000 class AuthorizationService: """The authorization service is responsible for handling the login flow, storing user credentials and providing @@ -60,7 +62,7 @@ def __init__(self, self._refresh_token_retries = 0 self._refresh_token_retry_timer = QTimer() - self._refresh_token_retry_timer.setInterval(1000) + self._refresh_token_retry_timer.setInterval(REFRESH_TOKEN_RETRY_INTERVAL) self._refresh_token_retry_timer.setSingleShot(True) self._refresh_token_retry_timer.timeout.connect(self.refreshAccessToken) @@ -182,7 +184,7 @@ def process_auth_data(response: AuthenticationResponse) -> None: HttpRequestManager.getInstance().setDelayRequests(False) self.onAuthStateChanged.emit(logged_in = True) else: - if self._refresh_token_retries >= 15: + if self._refresh_token_retries >= REFRESH_TOKEN_MAX_RETRIES: self._refresh_token_retries = 0 Logger.warning("Failed to get a new access token from the server, giving up.") HttpRequestManager.getInstance().setDelayRequests(False) From 6d5e5ae718748e89575d6714c0b6dbfe35ace7f4 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Wed, 14 Feb 2024 17:15:27 +0100 Subject: [PATCH 495/765] setting up printorder in case nodes came from copy paste or multiply CURA-10542 --- cura/PrintOrderManager.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cura/PrintOrderManager.py b/cura/PrintOrderManager.py index 80fc1e99dc5..59bbe684f46 100644 --- a/cura/PrintOrderManager.py +++ b/cura/PrintOrderManager.py @@ -116,6 +116,9 @@ def _getSelectedAndNeighborNodes(self ) -> (Optional[CuraSceneNode], Optional[CuraSceneNode], Optional[CuraSceneNode]): nodes = self._get_nodes() ordered_nodes = sorted(nodes, key=lambda n: n.printOrder) + for i, node in enumerate(ordered_nodes, 1): + node.printOrder = i + selected_node = PrintOrderManager._getSingleSelectedNode() if selected_node and selected_node in ordered_nodes: selected_node_index = ordered_nodes.index(selected_node) From f54d6099cd97c995b3a01beb177969a4a9a2a244 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Thu, 15 Feb 2024 11:23:34 +0100 Subject: [PATCH 496/765] removed the preference made it a member of class platformphysics CURA-10542 --- cura/CuraApplication.py | 4 ++++ cura/PlatformPhysics.py | 24 ++++++++++++----------- plugins/3MFReader/WorkspaceDialog.py | 5 +++++ plugins/3MFReader/WorkspaceDialog.qml | 2 +- resources/qml/Preferences/GeneralPage.qml | 6 +++++- 5 files changed, 28 insertions(+), 13 deletions(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 76e3e4b4007..153788b8675 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -1082,6 +1082,10 @@ def getMachineSettingsManager(self, *args) -> "MachineSettingsManager": def getTextManager(self, *args) -> "TextManager": return self._text_manager + @pyqtSlot(bool) + def getLocalDropToBuildplate(self, drop_to_build_plate: bool) ->None: + return self._physics.setAppPerModelDropDown(drop_to_build_plate) + def getCuraFormulaFunctions(self, *args) -> "CuraFormulaFunctions": if self._cura_formula_functions is None: self._cura_formula_functions = CuraFormulaFunctions(self) diff --git a/cura/PlatformPhysics.py b/cura/PlatformPhysics.py index b7fe5496019..6a26190a569 100755 --- a/cura/PlatformPhysics.py +++ b/cura/PlatformPhysics.py @@ -39,7 +39,13 @@ def __init__(self, controller, volume): Application.getInstance().getPreferences().addPreference("physics/automatic_push_free", False) Application.getInstance().getPreferences().addPreference("physics/automatic_drop_down", False) - Application.getInstance().getPreferences().addPreference("physics/per_model_drop", False) + self._app_per_model_drop = Application.getInstance().getPreferences().getValue("physics/automatic_drop_down") + + def getAppPerModelDropDown(self): + return self._app_per_model_drop + + def setAppPerModelDropDown(self, drop_to_buildplate): + self._app_per_model_drop = drop_to_buildplate def _onSceneChanged(self, source): if not source.callDecoration("isSliceable"): @@ -55,9 +61,6 @@ def _onChangeTimerFinished(self): app_preferences = app_instance.getPreferences() app_automatic_drop_down = app_preferences.getValue("physics/automatic_drop_down") app_automatic_push_free = app_preferences.getValue("physics/automatic_push_free") - # silent preference setting to mimic preference automatic_drop_down only different when user changes it explicitely while opening model - app_per_model_drop = app_preferences.getValue("physics/per_model_drop") - root = self._controller.getScene().getRoot() build_volume = app_instance.getBuildVolume() @@ -85,11 +88,10 @@ def _onChangeTimerFinished(self): # Move it downwards if bottom is above platform move_vector = Vector() - # if per model drop is different then app_automatic_drop - # in case of 3mf loading when user changes this setting for that model - if (app_per_model_drop != app_automatic_drop_down): - node.setSetting(SceneNodeSettings.AutoDropDown, app_per_model_drop) - if node.getSetting(SceneNodeSettings.AutoDropDown, app_per_model_drop) and not (node.getParent() and node.getParent().callDecoration("isGroup") or node.getParent() != root) and node.isEnabled(): #If an object is grouped, don't move it down + # if per model drop is different then app_automatic_drop, in case of 3mf loading when user changes this setting for that model + if (self._app_per_model_drop != app_automatic_drop_down): + node.setSetting(SceneNodeSettings.AutoDropDown, self._app_per_model_drop) + if node.getSetting(SceneNodeSettings.AutoDropDown, self._app_per_model_drop) and not (node.getParent() and node.getParent().callDecoration("isGroup") or node.getParent() != root) and node.isEnabled(): #If an object is grouped, don't move it down z_offset = node.callDecoration("getZOffset") if node.getDecorator(ZOffsetDecorator.ZOffsetDecorator) else 0 move_vector = move_vector.set(y = -bbox.bottom + z_offset) @@ -177,8 +179,8 @@ def _onChangeTimerFinished(self): op = PlatformPhysicsOperation.PlatformPhysicsOperation(node, move_vector) op.push() - # setting this silent preference same as app_automatic_drop_down - app_preferences.setValue("physics/per_model_drop", app_automatic_drop_down) + # setting this drop to model same as app_automatic_drop_down + self._app_per_model_drop = app_automatic_drop_down # After moving, we have to evaluate the boundary checks for nodes build_volume.updateNodeBoundaryCheck() diff --git a/plugins/3MFReader/WorkspaceDialog.py b/plugins/3MFReader/WorkspaceDialog.py index 0203fc92b5a..5b8ddeb2f90 100644 --- a/plugins/3MFReader/WorkspaceDialog.py +++ b/plugins/3MFReader/WorkspaceDialog.py @@ -299,6 +299,11 @@ def closeBackend(self) -> None: Application.getInstance().getBackend().close() + @pyqtSlot(bool) + def setDropToBuildPlateForModel(self, drop_to_buildplate: bool) -> None: + CuraApplication.getInstance().getLocalDropToBuildplate(drop_to_buildplate) + + def setMaterialConflict(self, material_conflict: bool) -> None: if self._has_material_conflict != material_conflict: self._has_material_conflict = material_conflict diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index eefa0f713a6..cb1664a2c0c 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -311,7 +311,7 @@ UM.Dialog id: checkDropModels text: catalog.i18nc("@text:window", "Drop models to buildplate") checked: UM.Preferences.getValue("physics/automatic_drop_down") - onCheckedChanged: UM.Preferences.setValue("physics/per_model_drop", checked) + onCheckedChanged: manager.setDropToBuildPlateForModel(checked) } function reloadValue() { diff --git a/resources/qml/Preferences/GeneralPage.qml b/resources/qml/Preferences/GeneralPage.qml index af637439318..0fbc319fb95 100644 --- a/resources/qml/Preferences/GeneralPage.qml +++ b/resources/qml/Preferences/GeneralPage.qml @@ -509,7 +509,11 @@ UM.PreferencesPage id: dropDownCheckbox text: catalog.i18nc("@option:check", "Automatically drop models to the build plate") checked: boolCheck(UM.Preferences.getValue("physics/automatic_drop_down")) - onCheckedChanged: UM.Preferences.setValue("physics/automatic_drop_down", checked) + onCheckedChanged: + { + UM.Preferences.setValue("physics/automatic_drop_down", checked) + CuraApplication.getLocalDropToBuildplate(checked) + } } } From d68a454fa9170eea4659f4dee2fc84fc71d15d3d Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Thu, 15 Feb 2024 11:35:09 +0100 Subject: [PATCH 497/765] function name change to getWorkplaceDropToBuildplate CURA-10542 --- cura/CuraApplication.py | 2 +- plugins/3MFReader/WorkspaceDialog.py | 2 +- resources/qml/Preferences/GeneralPage.qml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 153788b8675..20e54fa57cc 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -1083,7 +1083,7 @@ def getTextManager(self, *args) -> "TextManager": return self._text_manager @pyqtSlot(bool) - def getLocalDropToBuildplate(self, drop_to_build_plate: bool) ->None: + def getWorkplaceDropToBuildplate(self, drop_to_build_plate: bool) ->None: return self._physics.setAppPerModelDropDown(drop_to_build_plate) def getCuraFormulaFunctions(self, *args) -> "CuraFormulaFunctions": diff --git a/plugins/3MFReader/WorkspaceDialog.py b/plugins/3MFReader/WorkspaceDialog.py index 5b8ddeb2f90..02e71f2185a 100644 --- a/plugins/3MFReader/WorkspaceDialog.py +++ b/plugins/3MFReader/WorkspaceDialog.py @@ -301,7 +301,7 @@ def closeBackend(self) -> None: @pyqtSlot(bool) def setDropToBuildPlateForModel(self, drop_to_buildplate: bool) -> None: - CuraApplication.getInstance().getLocalDropToBuildplate(drop_to_buildplate) + CuraApplication.getInstance().getWorkplaceDropToBuildplate(drop_to_buildplate) def setMaterialConflict(self, material_conflict: bool) -> None: diff --git a/resources/qml/Preferences/GeneralPage.qml b/resources/qml/Preferences/GeneralPage.qml index 0fbc319fb95..69607a3f6b6 100644 --- a/resources/qml/Preferences/GeneralPage.qml +++ b/resources/qml/Preferences/GeneralPage.qml @@ -512,7 +512,7 @@ UM.PreferencesPage onCheckedChanged: { UM.Preferences.setValue("physics/automatic_drop_down", checked) - CuraApplication.getLocalDropToBuildplate(checked) + CuraApplication.getWorkplaceDropToBuildplate(checked) } } } From 831c72dbe5d64b468eb2089ecdd3cce24a584f59 Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Thu, 15 Feb 2024 15:03:13 +0100 Subject: [PATCH 498/765] Fix unit-tests. related to internal ticket CURA-11406 --- tests/TestOAuth2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestOAuth2.py b/tests/TestOAuth2.py index 09fa555af43..82d138a71ec 100644 --- a/tests/TestOAuth2.py +++ b/tests/TestOAuth2.py @@ -97,7 +97,7 @@ def test__parseJWTNoRefreshToken(): mock_reply = Mock() # The user profile that the service should respond with. mock_reply.error = Mock(return_value = QNetworkReply.NetworkError.NoError) http_mock = Mock() - http_mock.get = lambda url, headers_dict, callback, error_callback: callback(mock_reply) + http_mock.get = lambda url, headers_dict, callback, error_callback, timeout: callback(mock_reply) http_mock.readJSON = Mock(return_value = {"data": {"user_id": "id_ego_or_superego", "username": "Ghostkeeper"}}) with patch("UM.TaskManagement.HttpRequestManager.HttpRequestManager.getInstance", MagicMock(return_value = http_mock)): From 58f8eae80cd84cf0112a4d851a842f3ff36cc430 Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Thu, 15 Feb 2024 15:45:49 +0100 Subject: [PATCH 499/765] Fix more unit-tests. related to internal ticket CURA-11406 --- tests/TestOAuth2.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/TestOAuth2.py b/tests/TestOAuth2.py index 82d138a71ec..c7985e39f3d 100644 --- a/tests/TestOAuth2.py +++ b/tests/TestOAuth2.py @@ -119,8 +119,8 @@ def test__parseJWTFailOnRefresh(): mock_reply = Mock() # The response that the request should give, containing an error about it failing to authenticate. mock_reply.error = Mock(return_value = QNetworkReply.NetworkError.AuthenticationRequiredError) # The reply is 403: Authentication required, meaning the server responded with a "Can't do that, Dave". http_mock = Mock() - http_mock.get = lambda url, headers_dict, callback, error_callback: callback(mock_reply) - http_mock.post = lambda url, data, headers_dict, callback, error_callback: callback(mock_reply) + http_mock.get = lambda url, headers_dict, callback, error_callback, timeout: callback(mock_reply) + http_mock.post = lambda url, data, headers_dict, callback, error_callback, timeout: callback(mock_reply) with patch("UM.TaskManagement.HttpRequestManager.HttpRequestManager.readJSON", Mock(return_value = {"error_description": "Mock a failed request!"})): with patch("UM.TaskManagement.HttpRequestManager.HttpRequestManager.getInstance", MagicMock(return_value = http_mock)): @@ -142,7 +142,7 @@ def test__parseJWTSucceedOnRefresh(): mock_reply_failure = Mock() mock_reply_failure.error = Mock(return_value = QNetworkReply.NetworkError.AuthenticationRequiredError) http_mock = Mock() - def mock_get(url, headers_dict, callback, error_callback): + def mock_get(url, headers_dict, callback, error_callback, timeout): if(headers_dict == {"Authorization": "Bearer beep"}): callback(mock_reply_success) else: @@ -181,8 +181,8 @@ def mock_refresh(self, refresh_token, callback): # Refreshing gives a valid tok mock_reply = Mock() # The response that the request should give, containing an error about it failing to authenticate. mock_reply.error = Mock(return_value = QNetworkReply.NetworkError.AuthenticationRequiredError) # The reply is 403: Authentication required, meaning the server responded with a "Can't do that, Dave". http_mock = Mock() - http_mock.get = lambda url, headers_dict, callback, error_callback: callback(mock_reply) - http_mock.post = lambda url, data, headers_dict, callback, error_callback: callback(mock_reply) + http_mock.get = lambda url, headers_dict, callback, error_callback, timeout: callback(mock_reply) + http_mock.post = lambda url, data, headers_dict, callback, error_callback, timeout: callback(mock_reply) with patch("UM.TaskManagement.HttpRequestManager.HttpRequestManager.readJSON", Mock(return_value = {"error_description": "Mock a failed request!"})): with patch("UM.TaskManagement.HttpRequestManager.HttpRequestManager.getInstance", MagicMock(return_value = http_mock)): @@ -263,7 +263,7 @@ def test_loginAndLogout() -> None: mock_reply = Mock() # The user profile that the service should respond with. mock_reply.error = Mock(return_value = QNetworkReply.NetworkError.NoError) http_mock = Mock() - http_mock.get = lambda url, headers_dict, callback, error_callback: callback(mock_reply) + http_mock.get = lambda url, headers_dict, callback, error_callback, timeout: callback(mock_reply) http_mock.readJSON = Mock(return_value = {"data": {"user_id": "di_resu", "username": "Emanresu"}}) # Let the service think there was a successful response From 77823a9c122331e24496c75be34c6365b2bf37b0 Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Thu, 15 Feb 2024 16:01:32 +0100 Subject: [PATCH 500/765] Fix more unit-tests II. related to internal ticket CURA-11406 --- tests/TestOAuth2.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/TestOAuth2.py b/tests/TestOAuth2.py index c7985e39f3d..41edaebbf72 100644 --- a/tests/TestOAuth2.py +++ b/tests/TestOAuth2.py @@ -120,7 +120,7 @@ def test__parseJWTFailOnRefresh(): mock_reply.error = Mock(return_value = QNetworkReply.NetworkError.AuthenticationRequiredError) # The reply is 403: Authentication required, meaning the server responded with a "Can't do that, Dave". http_mock = Mock() http_mock.get = lambda url, headers_dict, callback, error_callback, timeout: callback(mock_reply) - http_mock.post = lambda url, data, headers_dict, callback, error_callback, timeout: callback(mock_reply) + http_mock.post = lambda url, data, headers_dict, callback, error_callback, urgent, timeout: callback(mock_reply) with patch("UM.TaskManagement.HttpRequestManager.HttpRequestManager.readJSON", Mock(return_value = {"error_description": "Mock a failed request!"})): with patch("UM.TaskManagement.HttpRequestManager.HttpRequestManager.getInstance", MagicMock(return_value = http_mock)): @@ -182,7 +182,7 @@ def mock_refresh(self, refresh_token, callback): # Refreshing gives a valid tok mock_reply.error = Mock(return_value = QNetworkReply.NetworkError.AuthenticationRequiredError) # The reply is 403: Authentication required, meaning the server responded with a "Can't do that, Dave". http_mock = Mock() http_mock.get = lambda url, headers_dict, callback, error_callback, timeout: callback(mock_reply) - http_mock.post = lambda url, data, headers_dict, callback, error_callback, timeout: callback(mock_reply) + http_mock.post = lambda url, data, headers_dict, callback, error_callback, urgent, timeout: callback(mock_reply) with patch("UM.TaskManagement.HttpRequestManager.HttpRequestManager.readJSON", Mock(return_value = {"error_description": "Mock a failed request!"})): with patch("UM.TaskManagement.HttpRequestManager.HttpRequestManager.getInstance", MagicMock(return_value = http_mock)): From 335a54c6d1c432e64784f95c69e77125bd0d57f1 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 9 Feb 2024 11:27:54 +0100 Subject: [PATCH 501/765] Enable prime tower mode according to materials types --- .../XmlMaterialProfile/XmlMaterialProfile.py | 9 ++++--- resources/definitions/fdmprinter.def.json | 26 +++++++++++++++---- 2 files changed, 27 insertions(+), 8 deletions(-) diff --git a/plugins/XmlMaterialProfile/XmlMaterialProfile.py b/plugins/XmlMaterialProfile/XmlMaterialProfile.py index 490d704d19a..0eede82d2ff 100644 --- a/plugins/XmlMaterialProfile/XmlMaterialProfile.py +++ b/plugins/XmlMaterialProfile/XmlMaterialProfile.py @@ -579,8 +579,9 @@ def deserialize(self, serialized, file_name = None): meta_data[tag_name] = entry.text - if tag_name in self.__material_metadata_setting_map: - common_setting_values[self.__material_metadata_setting_map[tag_name]] = entry.text + for tag_name, value in meta_data.items(): + if tag_name in self.__material_metadata_setting_map: + common_setting_values[self.__material_metadata_setting_map[tag_name]] = value if "description" not in meta_data: meta_data["description"] = "" @@ -1222,7 +1223,9 @@ def __str__(self): "diameter": "material_diameter" } __material_metadata_setting_map = { - "GUID": "material_guid" + "GUID": "material_guid", + "material": "material_type", + "brand": "material_brand", } # Map of recognised namespaces with a proper prefix. diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index a66c623826a..b821f3d6c60 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -76,6 +76,22 @@ "type": "str", "enabled": false }, + "material_type": + { + "label": "Material Type", + "description": "The type of material used.", + "default_value": "", + "type": "str", + "enabled": false + }, + "material_brand": + { + "label": "Material Brand", + "description": "The brand of material used.", + "default_value": "", + "type": "str", + "enabled": false + }, "material_diameter": { "label": "Diameter", @@ -6769,14 +6785,14 @@ "prime_tower_mode": { "label": "Prime Tower", - "description": "Print a tower next to the model, which serves to prime the material after each nozzle switch.

    ", + "description": "Print a tower next to the model, which serves to prime the material after each nozzle switch.
    • None: do not generate a prime tower
    • Normal: generate a bucket in which secondary materials are primed
    • Interleaved: generate a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other.
    ", "type": "enum", - "value": "'optimized' if all(material_type == extruderValues('material_type')[0] for material_type in extruderValues('material_type')) else 'optimized_consistent'", + "value": "'none' if (extruders_enabled_count < 2) else ('interleaved' if (all(material_type_var == extruderValues('material_type')[0] for material_type_var in extruderValues('material_type')) and all(material_brand_var == extruderValues('material_brand')[0] for material_brand_var in extruderValues('material_brand'))) else 'normal')", "options": { "none": "None", - "bucket": "Bucket", - "sparse": "Sparse" + "normal": "Normal", + "interleaved": "Interleaved" }, "default_value": "none", "enabled": "extruders_enabled_count > 1", @@ -6821,7 +6837,7 @@ "default_value": 5, "minimum_value": "line_width", "maximum_value_warning": "10.0", - "enabled": "resolveOrValue('prime_tower_mode') == 'sparse' or resolveOrValue('prime_tower_mode') == 'bucket'", + "enabled": "resolveOrValue('prime_tower_mode') != 'none'", "settable_per_mesh": false, "settable_per_extruder": true }, From 5a291f9ba9e83c85d1bdfe1c0e907e0df8154f6f Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 16 Feb 2024 09:04:48 +0100 Subject: [PATCH 502/765] Change prime_tower_enable to prime_tower_mode in all defs/profiles --- plugins/LegacyProfileReader/DictionaryOfDoom.json | 2 +- resources/definitions/atmat_signal_pro_base.def.json | 2 +- resources/definitions/deltacomb_dc20flux.def.json | 2 +- resources/definitions/deltacomb_dc21flux.def.json | 2 +- resources/definitions/deltacomb_dc30flux.def.json | 2 +- resources/definitions/dxu_dual.def.json | 2 +- resources/definitions/elegoo_neptune_2D.def.json | 2 +- resources/definitions/leapfrog_bolt_pro.def.json | 2 +- resources/definitions/lotmaxx_sc60.def.json | 2 +- resources/definitions/strateo3d_IDEX420.def.json | 2 +- resources/definitions/ultimaker3.def.json | 2 +- resources/definitions/ultimaker_method_base.def.json | 2 +- resources/definitions/ultimaker_s3.def.json | 2 +- resources/definitions/ultimaker_s5.def.json | 2 +- .../Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg | 2 +- .../pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg | 2 +- .../pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg | 2 +- .../quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg | 2 +- .../quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg | 2 +- .../gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg | 2 +- resources/quality/nps/nps_ABS_B.inst.cfg | 2 +- resources/quality/nps/nps_ABS_C.inst.cfg | 2 +- resources/quality/nps/nps_PC_A.inst.cfg | 2 +- resources/quality/nps/nps_PC_B.inst.cfg | 2 +- resources/quality/nps/nps_PC_C.inst.cfg | 2 +- resources/quality/nps/nps_PETG_A.inst.cfg | 2 +- resources/quality/nps/nps_PETG_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg | 2 +- .../strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg | 2 +- .../strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg | 2 +- .../strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg | 2 +- .../strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg | 2 +- .../strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg | 2 +- .../strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg | 2 +- .../strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg | 2 +- .../tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg | 2 +- .../tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg | 2 +- .../tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg | 2 +- .../tizyx_evy_dual_global_Normal_Quality.inst.cfg | 2 +- .../tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg | 2 +- .../ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg | 2 +- resources/variants/liquid/liquid_vo08.inst.cfg | 2 +- resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg | 2 +- resources/variants/strateo3d/strateo3d_standard_04.inst.cfg | 2 +- resources/variants/strateo3d/strateo3d_standard_06.inst.cfg | 2 +- resources/variants/strateo3d/strateo3d_standard_08.inst.cfg | 2 +- resources/variants/strateo3d/strateo3d_standard_10.inst.cfg | 2 +- resources/variants/strateo3d/strateo3d_standard_12.inst.cfg | 2 +- resources/variants/ultimaker3_aa0.8.inst.cfg | 2 +- resources/variants/ultimaker3_bb0.8.inst.cfg | 2 +- resources/variants/ultimaker3_extended_aa0.8.inst.cfg | 2 +- resources/variants/ultimaker3_extended_bb0.8.inst.cfg | 2 +- resources/variants/ultimaker_s3_aa0.8.inst.cfg | 2 +- resources/variants/ultimaker_s3_bb0.8.inst.cfg | 2 +- resources/variants/ultimaker_s5_aa0.8.inst.cfg | 2 +- resources/variants/ultimaker_s5_bb0.8.inst.cfg | 2 +- resources/variants/ultimaker_s7_aa0.8.inst.cfg | 2 +- resources/variants/ultimaker_s7_bb0.8.inst.cfg | 2 +- 628 files changed, 628 insertions(+), 628 deletions(-) diff --git a/plugins/LegacyProfileReader/DictionaryOfDoom.json b/plugins/LegacyProfileReader/DictionaryOfDoom.json index f65cc271d1f..90e973b7798 100644 --- a/plugins/LegacyProfileReader/DictionaryOfDoom.json +++ b/plugins/LegacyProfileReader/DictionaryOfDoom.json @@ -68,7 +68,7 @@ "meshfix_keep_open_polygons": "fix_horrible_use_open_bits", "magic_mesh_surface_mode": "\"surface\" if simple_mode else \"normal\"", "magic_spiralize": "spiralize", - "prime_tower_enable": "wipe_tower", + "prime_tower_mode": "\"normal\" if wipe_tower else \"none\"", "prime_tower_size": "math.sqrt(float(wipe_tower_volume) / float(layer_height))", "ooze_shield_enabled": "ooze_shield", "skin_overlap": "fill_overlap" diff --git a/resources/definitions/atmat_signal_pro_base.def.json b/resources/definitions/atmat_signal_pro_base.def.json index cd59e1c1691..83af53fb3c8 100644 --- a/resources/definitions/atmat_signal_pro_base.def.json +++ b/resources/definitions/atmat_signal_pro_base.def.json @@ -110,7 +110,7 @@ "min_infill_area": { "value": "5.0" }, "minimum_polygon_circumference": { "value": "0.2" }, "optimize_wall_printing_order": { "value": "True" }, - "prime_tower_enable": { "value": "True" }, + "prime_tower_mode": { "value": "normal" }, "retraction_amount": { "value": "1" }, "retraction_combing": { "value": "'noskin'" }, "retraction_combing_max_distance": { "value": "10" }, diff --git a/resources/definitions/deltacomb_dc20flux.def.json b/resources/definitions/deltacomb_dc20flux.def.json index f81909dae55..cc4a38c4d53 100644 --- a/resources/definitions/deltacomb_dc20flux.def.json +++ b/resources/definitions/deltacomb_dc20flux.def.json @@ -31,7 +31,7 @@ "material_final_print_temperature": { "value": "material_print_temperature" }, "material_initial_print_temperature": { "value": "material_print_temperature" }, "material_standby_temperature": { "value": "material_print_temperature" }, - "prime_tower_enable": { "value": true }, + "prime_tower_mode": { "value": "normal" }, "prime_tower_min_volume": { "value": "50" }, "switch_extruder_retraction_amount": { "value": "0" } } diff --git a/resources/definitions/deltacomb_dc21flux.def.json b/resources/definitions/deltacomb_dc21flux.def.json index dbcdf3ad37d..dd710af627d 100644 --- a/resources/definitions/deltacomb_dc21flux.def.json +++ b/resources/definitions/deltacomb_dc21flux.def.json @@ -31,7 +31,7 @@ "material_final_print_temperature": { "value": "material_print_temperature" }, "material_initial_print_temperature": { "value": "material_print_temperature" }, "material_standby_temperature": { "value": "material_print_temperature" }, - "prime_tower_enable": { "value": true }, + "prime_tower_mode": { "value": "normal" }, "prime_tower_min_volume": { "value": "50" }, "switch_extruder_retraction_amount": { "value": "0" } } diff --git a/resources/definitions/deltacomb_dc30flux.def.json b/resources/definitions/deltacomb_dc30flux.def.json index 4a42ae4d63f..789af29650f 100644 --- a/resources/definitions/deltacomb_dc30flux.def.json +++ b/resources/definitions/deltacomb_dc30flux.def.json @@ -31,7 +31,7 @@ "material_final_print_temperature": { "value": "material_print_temperature" }, "material_initial_print_temperature": { "value": "material_print_temperature" }, "material_standby_temperature": { "value": "material_print_temperature" }, - "prime_tower_enable": { "value": "1" }, + "prime_tower_mode": { "value": "normal" }, "prime_tower_min_volume": { "value": "50" }, "switch_extruder_retraction_amount": { "value": "0" } } diff --git a/resources/definitions/dxu_dual.def.json b/resources/definitions/dxu_dual.def.json index 6d30af005fc..8fb2092b65e 100644 --- a/resources/definitions/dxu_dual.def.json +++ b/resources/definitions/dxu_dual.def.json @@ -6,6 +6,6 @@ { "machine_end_gcode": { "value": "\"\" if machine_gcode_flavor == \"UltiGCode\" else \"G90 ;absolute positioning\\nM104 S0 T0 ;extruder heater off\\nM104 S0 T1\\nM140 S0 ;turn off bed\\nT0 ; move to the first head\\nM107 ;fan off\"" }, "machine_start_gcode": { "value": "\"\" if machine_gcode_flavor == \"UltiGCode\" else \";material_bed_temperature={material_bed_temperature} material_print_temperature={material_print_temperature} material_print_temperature_layer_0={material_print_temperature_layer_0}\\nM190 S{material_bed_temperature_layer_0}\\nM104 T0 S{material_standby_temperature, 0}\\nM104 T0 S{material_print_temperature_layer_0, 0}\\nG21 ;metric values\\nG90 ;absolute positioning\\nM82 ;set extruder to absolute mode\\nM107 ;start with the fan off\\nM200 D0 T0 ;reset filament diameter\\nM200 D0 T1\\nG28 ;home all\\nT1 ; move to the nozzle 2\\nG0 Z20 F2400 ;move the platform to 30mm\\nM109 T1 S{material_print_temperature_layer_0, 1}\\nG0 X210 Y20 F7200\\nG92 E0\\nG92 E-7.0 ;prime distance\\nG1 E0 F45 ;purge nozzle\\nG1 E-6.5 F1500 ; retract\\nT0 ; move to the nozzle 1\\nM104 T1 S{material_standby_temperature, 1}\\nG0 Z20 F2400\\nM109 T0 S{material_print_temperature_layer_0, 0}\\nG0 X210 Y20 F7200\\nG92 E0\\nG92 E-7.0\\nG1 E0 F45 ;purge nozzle\\nG1 E-6.5 F1500\\nM104 T0 S{material_standby_temperature, 0}\\nT{initial_extruder_nr} ;switch to the first nozzle used for print\\nM109 T{initial_extruder_nr} S{material_print_temperature_layer_0, initial_extruder_nr}\\nM400 ;finish all moves\\nG1 E0 F1500\\nG92 E0\\n;end of startup sequence\\n\"" }, - "prime_tower_enable": { "default_value": true } + "prime_tower_mode": { "default_value": "normal" } } } \ No newline at end of file diff --git a/resources/definitions/elegoo_neptune_2D.def.json b/resources/definitions/elegoo_neptune_2D.def.json index c9aa5a01843..e564acc036d 100644 --- a/resources/definitions/elegoo_neptune_2D.def.json +++ b/resources/definitions/elegoo_neptune_2D.def.json @@ -55,7 +55,7 @@ "settable_per_extruder": false }, "prime_blob_enable": { "default_value": false }, - "prime_tower_enable": { "default_value": true }, + "prime_tower_mode": { "default_value": "normal" }, "prime_tower_min_volume": { "default_value": 90 }, "prime_tower_size": { "default_value": 30 }, "raft_airgap": { "default_value": 0.25 }, diff --git a/resources/definitions/leapfrog_bolt_pro.def.json b/resources/definitions/leapfrog_bolt_pro.def.json index e4a13217e5f..449967072f5 100644 --- a/resources/definitions/leapfrog_bolt_pro.def.json +++ b/resources/definitions/leapfrog_bolt_pro.def.json @@ -80,7 +80,7 @@ "material_final_print_temperature": { "value": "default_material_print_temperature" }, "material_initial_print_temperature": { "value": "default_material_print_temperature" }, "material_standby_temperature": { "enabled": false }, - "prime_tower_enable": { "resolve": "extruders_enabled_count > 1" }, + "prime_tower_mode": { "resolve": "'normal' if extruders_enabled_count > 1 else 'none'" }, "retraction_amount": { "default_value": 2 }, "retraction_combing": { "value": "'all'" }, "skirt_line_count": { "default_value": 3 }, diff --git a/resources/definitions/lotmaxx_sc60.def.json b/resources/definitions/lotmaxx_sc60.def.json index f4ce358be1e..697dd911b61 100644 --- a/resources/definitions/lotmaxx_sc60.def.json +++ b/resources/definitions/lotmaxx_sc60.def.json @@ -44,7 +44,7 @@ "machine_width": { "default_value": 235 }, "meshfix_maximum_resolution": { "value": 0.25 }, "optimize_wall_printing_order": { "value": true }, - "prime_tower_enable": { "value": true }, + "prime_tower_mode": { "value": "normal" }, "prime_tower_min_volume": { "value": 30 }, "retract_at_layer_change": { "value": false }, "retraction_amount": { "value": 4.5 }, diff --git a/resources/definitions/strateo3d_IDEX420.def.json b/resources/definitions/strateo3d_IDEX420.def.json index d4236c126ed..66ecb9999cd 100644 --- a/resources/definitions/strateo3d_IDEX420.def.json +++ b/resources/definitions/strateo3d_IDEX420.def.json @@ -112,7 +112,7 @@ "machine_use_extruder_offset_to_offset_coords": { "default_value": false }, "machine_width": { "default_value": 420 }, "material_diameter": { "default_value": 1.75 }, - "prime_tower_enable": { "default_value": true }, + "prime_tower_mode": { "default_value": "normal" }, "prime_tower_min_volume": { "default_value": 35.6 }, "raft_acceleration": { "value": "machine_acceleration" }, "raft_base_acceleration": { "value": "machine_acceleration" }, diff --git a/resources/definitions/ultimaker3.def.json b/resources/definitions/ultimaker3.def.json index 19df92c08d7..0404e98b1df 100644 --- a/resources/definitions/ultimaker3.def.json +++ b/resources/definitions/ultimaker3.def.json @@ -149,7 +149,7 @@ "enabled": true, "value": "resolveOrValue('print_sequence') != 'one_at_a_time'" }, - "prime_tower_enable": { "default_value": true }, + "prime_tower_mode": { "default_value": "normal" }, "prime_tower_position_x": { "value": "185" }, "prime_tower_wipe_enabled": { "default_value": false }, "retraction_amount": { "value": "6.5" }, diff --git a/resources/definitions/ultimaker_method_base.def.json b/resources/definitions/ultimaker_method_base.def.json index 1ceb05a43a5..89aaa1b1702 100644 --- a/resources/definitions/ultimaker_method_base.def.json +++ b/resources/definitions/ultimaker_method_base.def.json @@ -346,7 +346,7 @@ "prime_tower_base_curve_magnitude": { "value": 2 }, "prime_tower_base_height": { "value": 6 }, "prime_tower_base_size": { "value": 10 }, - "prime_tower_enable": { "value": false }, + "prime_tower_mode": { "value": "none" }, "prime_tower_flow": { "value": "material_flow" }, "prime_tower_line_width": { "value": 1 }, "prime_tower_raft_base_line_spacing": { "value": "raft_base_line_width" }, diff --git a/resources/definitions/ultimaker_s3.def.json b/resources/definitions/ultimaker_s3.def.json index add1782368e..d893c16f4ec 100644 --- a/resources/definitions/ultimaker_s3.def.json +++ b/resources/definitions/ultimaker_s3.def.json @@ -103,7 +103,7 @@ "default_value": false, "enabled": true }, - "prime_tower_enable": { "value": "True" }, + "prime_tower_mode": { "value": "normal" }, "retraction_amount": { "value": "6.5" }, "retraction_hop": { "value": "2" }, "retraction_hop_enabled": { "value": "extruders_enabled_count > 1" }, diff --git a/resources/definitions/ultimaker_s5.def.json b/resources/definitions/ultimaker_s5.def.json index ec82e6b630b..b9eba0952bf 100644 --- a/resources/definitions/ultimaker_s5.def.json +++ b/resources/definitions/ultimaker_s5.def.json @@ -104,7 +104,7 @@ "default_value": false, "enabled": true }, - "prime_tower_enable": { "value": "True" }, + "prime_tower_mode": { "value": "normal" }, "retraction_amount": { "value": "6.5" }, "retraction_combing": { "value": "'no_outer_surfaces'" }, "retraction_hop": { "value": "2" }, diff --git a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg index f4da80ded99..bab34c73b6b 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg @@ -38,7 +38,7 @@ line_width = 0.4 min_infill_area = 0 optimize_wall_printing_order = True prime_tower_brim_enable = True -prime_tower_enable = True +prime_tower_mode = normal prime_tower_min_volume = 6 prime_tower_size = 20 prime_tower_wipe_enabled = True diff --git a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg index a052562cd34..e0ef960b324 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg @@ -38,7 +38,7 @@ line_width = 0.4 min_infill_area = 0 optimize_wall_printing_order = True prime_tower_brim_enable = True -prime_tower_enable = True +prime_tower_mode = normal prime_tower_min_volume = 6 prime_tower_size = 20 prime_tower_wipe_enabled = True diff --git a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg index 145cd34ead9..55c26edccbe 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg @@ -36,7 +36,7 @@ line_width = 0.4 min_infill_area = 0 optimize_wall_printing_order = True prime_tower_brim_enable = True -prime_tower_enable = True +prime_tower_mode = normal prime_tower_min_volume = 6 prime_tower_size = 20 prime_tower_wipe_enabled = True diff --git a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg index e6e2cb78a00..b5fa497a335 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg @@ -36,7 +36,7 @@ line_width = 0.4 min_infill_area = 0 optimize_wall_printing_order = True prime_tower_brim_enable = True -prime_tower_enable = True +prime_tower_mode = normal prime_tower_min_volume = 6 prime_tower_size = 20 prime_tower_wipe_enabled = True diff --git a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg index 56587fe8838..1bf050b6f20 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg @@ -35,7 +35,7 @@ line_width = 0.4 min_infill_area = 0 optimize_wall_printing_order = True prime_tower_brim_enable = True -prime_tower_enable = True +prime_tower_mode = normal prime_tower_min_volume = 6 prime_tower_size = 20 prime_tower_wipe_enabled = True diff --git a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg index 10353f61103..7cde446656a 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg @@ -35,7 +35,7 @@ line_width = 0.4 min_infill_area = 0 optimize_wall_printing_order = True prime_tower_brim_enable = True -prime_tower_enable = True +prime_tower_mode = normal prime_tower_min_volume = 6 prime_tower_size = 20 prime_tower_wipe_enabled = True diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg index 33b5c2c1110..2e0d11b6eb4 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg @@ -13,7 +13,7 @@ variant = DBE 0.40mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_enable = False +prime_tower_mode = none support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg index 5be0dc95270..fc487f97e44 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg @@ -13,7 +13,7 @@ variant = DBE 0.40mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_enable = False +prime_tower_mode = none support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg index 76aa867f8fa..3eef71ef41e 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg @@ -13,7 +13,7 @@ variant = DBE 0.40mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_enable = False +prime_tower_mode = none support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg index 20bb125cd9d..35534c090ec 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg @@ -13,7 +13,7 @@ variant = DBE 0.40mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_enable = False +prime_tower_mode = none support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg index cc0224cf23f..d61061ff55d 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg @@ -13,7 +13,7 @@ variant = DBE 0.40mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_enable = False +prime_tower_mode = none support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg index ec2ebdc647f..df09da8d684 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg @@ -13,7 +13,7 @@ variant = DBE 0.60mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_enable = False +prime_tower_mode = none support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg index 136ec93d164..be381678562 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg @@ -13,7 +13,7 @@ variant = DBE 0.60mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_enable = False +prime_tower_mode = none support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg index 3a0a94782cb..24299680ad2 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg @@ -13,7 +13,7 @@ variant = DBE 0.60mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_enable = False +prime_tower_mode = none support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg index 719a4bdcbd0..2c89d60680b 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg @@ -13,7 +13,7 @@ variant = DBE 0.60mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_enable = False +prime_tower_mode = none support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg index 4486a1d3bc3..c3cbb96ae73 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg @@ -13,7 +13,7 @@ variant = FBE 0.40mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_enable = False +prime_tower_mode = none support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg index b938502e857..5e062678c30 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg @@ -13,7 +13,7 @@ variant = FBE 0.40mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_enable = False +prime_tower_mode = none support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg index 3b88ca6b671..b9651ddf53e 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg @@ -13,7 +13,7 @@ variant = FBE 0.40mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_enable = False +prime_tower_mode = none support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg index 41347177703..3e366410377 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg @@ -13,7 +13,7 @@ variant = FBE 0.40mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_enable = False +prime_tower_mode = none support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg index e267e7c6eb1..bdb9ca3ce51 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg @@ -13,7 +13,7 @@ variant = FBE 0.40mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_enable = False +prime_tower_mode = none support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg index 35e2e07b41d..741e6c613a9 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg @@ -13,7 +13,7 @@ variant = FBE 0.60mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_enable = False +prime_tower_mode = none support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg index dd944cbfd1c..c8421e34a56 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg @@ -13,7 +13,7 @@ variant = FBE 0.60mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_enable = False +prime_tower_mode = none support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg index 8aa462e206f..39bafd45c64 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg @@ -13,7 +13,7 @@ variant = FBE 0.60mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_enable = False +prime_tower_mode = none support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg index 0691a01debd..c73c5baecda 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg @@ -13,7 +13,7 @@ variant = FBE 0.60mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_enable = False +prime_tower_mode = none support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg index a4d0582c3a1..b9f63dff355 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg @@ -13,7 +13,7 @@ variant = V-DBE 0.80mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_enable = False +prime_tower_mode = none support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg index 831e17c018e..86e03b328c4 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg @@ -13,7 +13,7 @@ variant = V-DBE 0.80mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_enable = False +prime_tower_mode = none support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg index d9a57d60123..b51b54cb62c 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg @@ -13,7 +13,7 @@ variant = V-DBE 0.80mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_enable = False +prime_tower_mode = none support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg index 8408fbc0148..82ad7d5d49e 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg @@ -13,7 +13,7 @@ variant = V-DBE 0.80mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_enable = False +prime_tower_mode = none support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg index 18c813a79a2..dcc7dfcd484 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg @@ -13,7 +13,7 @@ variant = V-FBE 0.80mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_enable = False +prime_tower_mode = none support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg index 660c536a5e2..d0fb6ec6e25 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg @@ -13,7 +13,7 @@ variant = V-FBE 0.60mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_enable = False +prime_tower_mode = none support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg index 5dbea58c49f..1817111e2a2 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg @@ -13,7 +13,7 @@ variant = V-FBE 0.80mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_enable = False +prime_tower_mode = none support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg index 9bfd649e99e..8ba8f905d6e 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg @@ -13,7 +13,7 @@ variant = V-FBE 0.80mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_enable = False +prime_tower_mode = none support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg index d5a2f73729c..82cfb879dda 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg @@ -13,7 +13,7 @@ variant = 0.40mm_Elegoo_Nozzle [values] machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 retraction_prime_speed = =retraction_speed skin_overlap = 10 diff --git a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg index e86f4546649..3b8cc5bb5f5 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg @@ -13,7 +13,7 @@ variant = 0.40mm_Elegoo_Nozzle [values] machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 retraction_prime_speed = =retraction_speed speed_print = 70 diff --git a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg index db7e5a43c7f..23e6730f11a 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg @@ -17,7 +17,7 @@ infill_sparse_density = 15 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 retraction_prime_speed = =retraction_speed skin_overlap = 20 diff --git a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg index d84cc9e6563..f3059304488 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg @@ -20,7 +20,7 @@ infill_sparse_density = 15 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 retraction_prime_speed = =retraction_speed skin_overlap = 20 diff --git a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg index b6c63fad0fd..cfc8fb9b321 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg @@ -15,7 +15,7 @@ gradual_infill_step_height = =3 * layer_height machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = True +prime_tower_mode = normal speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg index 1e3eec080a6..52ebc5566bf 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg @@ -15,7 +15,7 @@ gradual_infill_step_height = =3 * layer_height machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 15 -prime_tower_enable = True +prime_tower_mode = normal speed_infill = =math.ceil(speed_print * 35 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg index 09bc57ffea1..683bfe317a6 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg @@ -15,7 +15,7 @@ gradual_infill_step_height = =3 * layer_height machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 15 -prime_tower_enable = True +prime_tower_mode = normal speed_infill = =math.ceil(speed_print * 35 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg index 66eb9f49c08..40cc88859ad 100644 --- a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg @@ -11,7 +11,7 @@ type = quality variant = 0.40mm_Elegoo_Nozzle [values] -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 skin_overlap = 10 speed_topbottom = =math.ceil(speed_print * 35 / 70) diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg index 209ce52fa2b..6043a569d0b 100644 --- a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg @@ -11,7 +11,7 @@ type = quality variant = 0.40mm_Elegoo_Nozzle [values] -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 speed_topbottom = =math.ceil(speed_print * 35 / 70) speed_wall = =math.ceil(speed_print * 45 / 70) diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg index 9805a1ae5a8..30760115559 100644 --- a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg @@ -12,7 +12,7 @@ variant = 0.40mm_Elegoo_Nozzle [values] infill_sparse_density = 15 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 skin_overlap = 20 top_bottom_thickness = 0.8 diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg index cb6ca323e69..562b84bf027 100644 --- a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg @@ -14,7 +14,7 @@ variant = 0.40mm_Elegoo_Nozzle infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 15 material_print_temperature = =default_material_print_temperature + 5 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 skin_overlap = 20 top_bottom_thickness = 0.9 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg index d9f0a0aaeaf..7178468de7f 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg @@ -30,7 +30,7 @@ material_standby_temperature = =material_print_temperature - 10 ooze_shield_angle = 20 ooze_shield_dist = 4 ooze_shield_enabled = True -prime_tower_enable = False +prime_tower_mode = none retraction_amount = 0.75 retraction_combing = off retraction_speed = 70 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg index 620622e555f..cb966418ece 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg @@ -30,7 +30,7 @@ material_standby_temperature = =material_print_temperature - 10 ooze_shield_angle = 20 ooze_shield_dist = 4 ooze_shield_enabled = True -prime_tower_enable = False +prime_tower_mode = none retraction_amount = 0.75 retraction_combing = off retraction_speed = 70 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg index 05eeb68305a..23733ea85e8 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg @@ -30,7 +30,7 @@ material_standby_temperature = =material_print_temperature - 10 ooze_shield_angle = 20 ooze_shield_dist = 4 ooze_shield_enabled = True -prime_tower_enable = False +prime_tower_mode = none retraction_amount = 0.75 retraction_combing = off retraction_speed = 70 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg index b63ef09a6b6..01577a46d0c 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg @@ -29,7 +29,7 @@ material_standby_temperature = =material_print_temperature - 10 ooze_shield_angle = 20 ooze_shield_dist = 4 ooze_shield_enabled = True -prime_tower_enable = False +prime_tower_mode = none retraction_amount = 0.75 retraction_combing = off retraction_speed = 70 diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg index 038affd56f4..dc279c62321 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg @@ -18,7 +18,7 @@ machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 20 material_initial_print_temperature = =material_print_temperature - 15 material_print_temperature = =default_material_print_temperature + 20 -prime_tower_enable = False +prime_tower_mode = none skin_overlap = 20 speed_infill = =math.ceil(speed_print * 50 / 60) speed_layer_0 = =math.ceil(speed_print * 20 / 60) diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg index 5091d36813c..d5684e3ccb3 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg @@ -19,7 +19,7 @@ machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 20 material_initial_print_temperature = =material_print_temperature - 15 material_print_temperature = =default_material_print_temperature + 15 -prime_tower_enable = False +prime_tower_mode = none speed_infill = =math.ceil(speed_print * 45 / 60) speed_layer_0 = =math.ceil(speed_print * 20 / 60) speed_print = 60 diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg index 0420284fa85..bd43496eb47 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg @@ -19,7 +19,7 @@ machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 20 material_initial_print_temperature = =material_print_temperature - 15 material_print_temperature = =default_material_print_temperature + 5 -prime_tower_enable = False +prime_tower_mode = none speed_infill = =math.ceil(speed_print * 40 / 50) speed_layer_0 = =math.ceil(speed_print * 20 / 50) speed_print = 50 diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg index 927bdbe7b9e..420b8a9d9cd 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg @@ -18,7 +18,7 @@ machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 20 material_initial_print_temperature = =material_print_temperature - 15 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = False +prime_tower_mode = none speed_infill = =math.ceil(speed_print * 40 / 55) speed_layer_0 = =math.ceil(speed_print * 20 / 55) speed_print = 55 diff --git a/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg index 02d1292c171..ec682feabdb 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg @@ -36,7 +36,7 @@ material_print_temperature = =default_material_print_temperature + 10 material_standby_temperature = 100 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_wipe_enabled = True raft_airgap = 0.25 raft_interface_thickness = =max(layer_height * 1.5, 0.225) diff --git a/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg index b1c540d01ed..591e6e2964b 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg @@ -35,7 +35,7 @@ material_print_temperature = =default_material_print_temperature + 10 material_standby_temperature = 100 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_wipe_enabled = True raft_airgap = 0.25 raft_interface_thickness = =max(layer_height * 1.5, 0.225) diff --git a/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg index 6aac1f4972e..604e491db3b 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg @@ -36,7 +36,7 @@ material_print_temperature = =default_material_print_temperature - 10 material_standby_temperature = 100 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_wipe_enabled = True raft_airgap = 0.25 raft_interface_thickness = =max(layer_height * 1.5, 0.225) diff --git a/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg index e831dfb2540..e610dcf4959 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg @@ -34,7 +34,7 @@ material_initial_print_temperature = =material_print_temperature - 5 material_standby_temperature = 100 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_wipe_enabled = True raft_airgap = 0.25 raft_interface_thickness = =max(layer_height * 1.5, 0.225) diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg index 6e0ac107189..37d77be67c3 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg @@ -24,7 +24,7 @@ machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 material_standby_temperature = 100 -prime_tower_enable = False +prime_tower_mode = none skin_overlap = 20 speed_layer_0 = =math.ceil(speed_print * 20 / 70) speed_print = 70 diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg index 5e84c3e1a12..f27381d0e38 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg @@ -20,7 +20,7 @@ layer_height_0 = 0.2 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_standby_temperature = 100 -prime_tower_enable = False +prime_tower_mode = none speed_layer_0 = =math.ceil(speed_print * 20 / 60) speed_print = 60 speed_topbottom = =math.ceil(speed_print * 35 / 60) diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg index 8974dcbb034..1c49689b2ad 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg @@ -22,7 +22,7 @@ machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 5 material_standby_temperature = 100 -prime_tower_enable = False +prime_tower_mode = none skin_overlap = 10 speed_layer_0 = =math.ceil(speed_print * 20 / 50) speed_print = 50 diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg index cbada0be182..82b3f109f40 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg @@ -21,7 +21,7 @@ layer_height_0 = 0.2 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_standby_temperature = 100 -prime_tower_enable = False +prime_tower_mode = none skin_overlap = 10 speed_layer_0 = =math.ceil(speed_print * 20 / 70) top_bottom_thickness = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg index 70817b06e31..e6e18da492c 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg @@ -24,7 +24,7 @@ machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 material_standby_temperature = 100 -prime_tower_enable = False +prime_tower_mode = none skin_overlap = 20 speed_layer_0 = =math.ceil(speed_print * 20 / 70) speed_print = 70 diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg index b6991202b2b..50b8662604d 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg @@ -20,7 +20,7 @@ layer_height_0 = 0.2 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_standby_temperature = 100 -prime_tower_enable = False +prime_tower_mode = none speed_layer_0 = =math.ceil(speed_print * 20 / 60) speed_print = 60 speed_topbottom = =math.ceil(speed_print * 35 / 60) diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg index 930f5cf3fd0..baf7af3fdc3 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg @@ -22,7 +22,7 @@ machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 5 material_standby_temperature = 100 -prime_tower_enable = False +prime_tower_mode = none skin_overlap = 10 speed_layer_0 = =math.ceil(speed_print * 20 / 50) speed_print = 50 diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg index 6595446feef..bf5fb6b1c9d 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg @@ -21,7 +21,7 @@ layer_height_0 = 0.2 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_standby_temperature = 100 -prime_tower_enable = False +prime_tower_mode = none skin_overlap = 10 speed_layer_0 = =math.ceil(speed_print * 20 / 70) top_bottom_thickness = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg index 1904758532a..86216145d9b 100644 --- a/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg @@ -36,7 +36,7 @@ material_print_temperature = =default_material_print_temperature - 5 material_print_temperature_layer_0 = =material_print_temperature + 5 material_standby_temperature = 100 multiple_mesh_overlap = 0 -prime_tower_enable = False +prime_tower_mode = none prime_tower_size = 16 prime_tower_wipe_enabled = True retraction_count_max = 12 diff --git a/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg index 2a0a5729ece..7d4abe2d3f6 100644 --- a/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg @@ -36,7 +36,7 @@ material_print_temperature = =default_material_print_temperature - 13 material_print_temperature_layer_0 = =material_print_temperature + 3 material_standby_temperature = 100 multiple_mesh_overlap = 0 -prime_tower_enable = False +prime_tower_mode = none prime_tower_size = 16 prime_tower_wipe_enabled = True retraction_count_max = 12 diff --git a/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg index 304c4f17f0b..3aace2ea38d 100644 --- a/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg @@ -36,7 +36,7 @@ material_print_temperature = =default_material_print_temperature - 15 material_print_temperature_layer_0 = =material_print_temperature + 3 material_standby_temperature = 100 multiple_mesh_overlap = 0 -prime_tower_enable = False +prime_tower_mode = none prime_tower_size = 16 prime_tower_wipe_enabled = True retraction_count_max = 12 diff --git a/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg index bc712bf9997..04b769ec818 100644 --- a/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg @@ -26,7 +26,7 @@ material_final_print_temperature = =max(-273.15, material_print_temperature - 15 material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 10 material_standby_temperature = 100 -prime_tower_enable = True +prime_tower_mode = normal retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg index c51c068ae2d..5f7216e9b8c 100644 --- a/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg @@ -26,7 +26,7 @@ material_final_print_temperature = =max(-273.15, material_print_temperature - 15 material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 10 material_standby_temperature = 100 -prime_tower_enable = True +prime_tower_mode = normal retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg index 3b6749dfb9b..0f4b43d1adc 100644 --- a/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg @@ -26,7 +26,7 @@ material_final_print_temperature = =max(-273.15, material_print_temperature - 15 material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 10 material_standby_temperature = 100 -prime_tower_enable = True +prime_tower_mode = normal retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg index 45418e5994c..bf262d9b0d0 100644 --- a/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg @@ -26,7 +26,7 @@ material_final_print_temperature = =max(-273.15, material_print_temperature - 15 material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 10 material_standby_temperature = 100 -prime_tower_enable = True +prime_tower_mode = normal retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg index 90424ee65e8..6f15ddf6869 100644 --- a/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg @@ -17,7 +17,7 @@ jerk_travel = 20 line_width = =machine_nozzle_size * 0.875 material_print_temperature = =default_material_print_temperature + 15 material_standby_temperature = 100 -prime_tower_enable = True +prime_tower_mode = normal retraction_combing_max_distance = 50 speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) diff --git a/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg index 7857ed00e75..e56ee10a987 100644 --- a/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg @@ -17,7 +17,7 @@ jerk_travel = 20 line_width = =machine_nozzle_size * 0.875 material_print_temperature = =default_material_print_temperature + 20 material_standby_temperature = 100 -prime_tower_enable = True +prime_tower_mode = normal retraction_combing_max_distance = 50 speed_print = 45 speed_topbottom = =math.ceil(speed_print * 30 / 45) diff --git a/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg index 4194c6f3b7b..c8c93a744fb 100644 --- a/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg @@ -17,7 +17,7 @@ jerk_travel = 20 line_width = =machine_nozzle_size * 0.875 material_print_temperature = =default_material_print_temperature + 17 material_standby_temperature = 100 -prime_tower_enable = True +prime_tower_mode = normal retraction_combing_max_distance = 50 speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) diff --git a/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg index 87dd8765880..70db87df100 100644 --- a/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg @@ -21,7 +21,7 @@ machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_standby_temperature = 100 ooze_shield_angle = 40 -prime_tower_enable = True +prime_tower_mode = normal raft_acceleration = =acceleration_layer_0 raft_airgap = =round(layer_height_0 * 0.85, 2) raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) diff --git a/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg index 891a20540dc..a134533c462 100644 --- a/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg @@ -21,7 +21,7 @@ machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_standby_temperature = 100 ooze_shield_angle = 40 -prime_tower_enable = True +prime_tower_mode = normal raft_acceleration = =acceleration_layer_0 raft_airgap = =round(layer_height_0 * 0.85, 2) raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) diff --git a/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg index e0090947603..d8c5450478e 100644 --- a/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg @@ -21,7 +21,7 @@ machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_standby_temperature = 100 ooze_shield_angle = 40 -prime_tower_enable = True +prime_tower_mode = normal raft_acceleration = =acceleration_layer_0 raft_airgap = =round(layer_height_0 * 0.85, 2) raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) diff --git a/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg index 947c042b8c2..f941d5a55d7 100644 --- a/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg @@ -25,7 +25,7 @@ machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = True +prime_tower_mode = normal retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg index 08cb14cb267..d96bf8d17e8 100644 --- a/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg @@ -25,7 +25,7 @@ machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 15 -prime_tower_enable = True +prime_tower_mode = normal raft_margin = 10 retract_at_layer_change = False speed_print = 45 diff --git a/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg index 187ed1f2123..53142e5348b 100644 --- a/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg @@ -25,7 +25,7 @@ machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = True +prime_tower_mode = normal retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg index 10b6e8185a5..5a4cb62ee2b 100644 --- a/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg @@ -25,7 +25,7 @@ machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = True +prime_tower_mode = normal retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg index ed0fc7fd8a5..4168b05c611 100644 --- a/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg @@ -25,7 +25,7 @@ machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 15 -prime_tower_enable = True +prime_tower_mode = normal raft_margin = 10 retract_at_layer_change = False speed_print = 45 diff --git a/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg index 9def9ecb974..af930c749ad 100644 --- a/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg @@ -25,7 +25,7 @@ machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = True +prime_tower_mode = normal retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg index 4c3f60a2401..d30007f18d5 100644 --- a/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg @@ -26,7 +26,7 @@ material_print_temperature = =default_material_print_temperature - 2 material_print_temperature_layer_0 = =default_material_print_temperature + 2 material_standby_temperature = 100 multiple_mesh_overlap = 0.2 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_flow = 100 prime_tower_min_volume = 10 retract_at_layer_change = False diff --git a/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg index 1b7c05ac3c3..a0a1f806ab4 100644 --- a/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg @@ -26,7 +26,7 @@ material_print_temperature = =default_material_print_temperature + 2 material_print_temperature_layer_0 = =default_material_print_temperature + 2 material_standby_temperature = 100 multiple_mesh_overlap = 0.2 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_flow = 100 prime_tower_min_volume = 20 retract_at_layer_change = False diff --git a/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg index 7cbb60c3aac..cdadd228bed 100644 --- a/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg @@ -25,7 +25,7 @@ material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 2 material_standby_temperature = 100 multiple_mesh_overlap = 0.2 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_flow = 100 prime_tower_min_volume = 15 retract_at_layer_change = False diff --git a/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg index 4994e3f9f45..31baf4022c9 100644 --- a/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg @@ -30,7 +30,7 @@ material_print_temperature = =default_material_print_temperature - 2 material_print_temperature_layer_0 = =material_print_temperature + 19 material_standby_temperature = 100 multiple_mesh_overlap = 0.2 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_flow = 100 retract_at_layer_change = False retraction_count_max = 12 diff --git a/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg index fd15d041b82..408ad54518a 100644 --- a/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg @@ -31,7 +31,7 @@ material_print_temperature = =default_material_print_temperature + 2 material_print_temperature_layer_0 = =material_print_temperature + 15 material_standby_temperature = 100 multiple_mesh_overlap = 0.2 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_flow = 100 retract_at_layer_change = False retraction_count_max = 12 diff --git a/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg index 5c88fb165f8..9fd95f5c32c 100644 --- a/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg @@ -30,7 +30,7 @@ material_initial_print_temperature = =material_print_temperature material_print_temperature_layer_0 = =material_print_temperature + 17 material_standby_temperature = 100 multiple_mesh_overlap = 0.2 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_flow = 100 retract_at_layer_change = False retraction_count_max = 12 diff --git a/resources/quality/nps/nps_ABS_B.inst.cfg b/resources/quality/nps/nps_ABS_B.inst.cfg index 3f700405bdb..520bda4b056 100644 --- a/resources/quality/nps/nps_ABS_B.inst.cfg +++ b/resources/quality/nps/nps_ABS_B.inst.cfg @@ -22,7 +22,7 @@ material_bed_temperature = 100 material_flow = 96 material_print_temperature = =default_material_print_temperature + 13 material_print_temperature_layer_0 = =243 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/nps/nps_ABS_C.inst.cfg b/resources/quality/nps/nps_ABS_C.inst.cfg index 6138e4004c0..1131f61d36f 100644 --- a/resources/quality/nps/nps_ABS_C.inst.cfg +++ b/resources/quality/nps/nps_ABS_C.inst.cfg @@ -22,7 +22,7 @@ material_bed_temperature = 100 material_flow = 91 material_print_temperature = =default_material_print_temperature + 15 material_print_temperature_layer_0 = =245 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/nps/nps_PC_A.inst.cfg b/resources/quality/nps/nps_PC_A.inst.cfg index 8665f8ceaee..90cc71d9516 100644 --- a/resources/quality/nps/nps_PC_A.inst.cfg +++ b/resources/quality/nps/nps_PC_A.inst.cfg @@ -32,7 +32,7 @@ material_bed_temperature = 110 material_flow = 100 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =280 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/nps/nps_PC_B.inst.cfg b/resources/quality/nps/nps_PC_B.inst.cfg index 9ccb5cea534..3761d802d76 100644 --- a/resources/quality/nps/nps_PC_B.inst.cfg +++ b/resources/quality/nps/nps_PC_B.inst.cfg @@ -32,7 +32,7 @@ material_bed_temperature = 110 material_flow = 88 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = 275 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/nps/nps_PC_C.inst.cfg b/resources/quality/nps/nps_PC_C.inst.cfg index 30267d42375..85752e78c21 100644 --- a/resources/quality/nps/nps_PC_C.inst.cfg +++ b/resources/quality/nps/nps_PC_C.inst.cfg @@ -32,7 +32,7 @@ material_bed_temperature = 110 material_flow = 88 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = 275 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/nps/nps_PETG_A.inst.cfg b/resources/quality/nps/nps_PETG_A.inst.cfg index 3cae430f1cc..0985dd1b3ad 100644 --- a/resources/quality/nps/nps_PETG_A.inst.cfg +++ b/resources/quality/nps/nps_PETG_A.inst.cfg @@ -22,7 +22,7 @@ material_bed_temperature = 80 material_flow = 98 material_print_temperature = =default_material_print_temperature + 20 material_print_temperature_layer_0 = =230 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/nps/nps_PETG_B.inst.cfg b/resources/quality/nps/nps_PETG_B.inst.cfg index 5860f654146..e3a5f165ada 100644 --- a/resources/quality/nps/nps_PETG_B.inst.cfg +++ b/resources/quality/nps/nps_PETG_B.inst.cfg @@ -22,7 +22,7 @@ material_bed_temperature = 80 material_flow = 95 material_print_temperature = =default_material_print_temperature + 20 material_print_temperature_layer_0 = =230 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg index 39ba32a332a..0569a356f35 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 100 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg index dd0d167e6bc..e906508f7f5 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 96 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg index f894a7dc139..a883aba2ec4 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 91 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg index 7642489c2a9..dc595e8c5df 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 100 material_print_temperature = =default_material_print_temperature + 1 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg index bf5c18405bc..a84b12135fc 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 96 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature + 1 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg index 6756384e4af..ef6358a6a00 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 91 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature +3 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg index 978484d8130..7a0cd7ee8d5 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 98 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg index bcec4fe68f4..4fa5d070aa6 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 95 material_print_temperature = =default_material_print_temperature + 2 material_print_temperature_layer_0 = =default_material_print_temperature + 0 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg index 85f79ebe7a0..7944c44371e 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 93 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg index 9b29e496242..fb2ee81c9f2 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 100 material_print_temperature = =default_material_print_temperature + 1 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg index 07a46f0d05b..4e63f1513d1 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 96 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg index 60410d8d346..5e158007ab2 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 91 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 7 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg index 93046306306..f73adbfa513 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg index d39d91c91ae..da2aa052377 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg index e716824cf03..e636a5ebee1 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg index bd964bed2a5..a997ac74dd9 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg index cd27f777376..7055e3daddf 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 97 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg index 78191af7be7..6c66ffd76cb 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 97 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg index f37a3b4d6d0..f451618a284 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg @@ -34,7 +34,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 88 material_print_temperature = 260 material_print_temperature_layer_0 = 265 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg index 75fed99b1ec..5866dad50bb 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg @@ -34,7 +34,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 88 material_print_temperature = 270 material_print_temperature_layer_0 = 275 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg index 51911c3811d..502dd8be072 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg @@ -34,7 +34,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 88 material_print_temperature = 270 material_print_temperature_layer_0 = 275 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg index e4596d9def1..52792281055 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg @@ -33,7 +33,7 @@ material_flow = 105 material_flow_layer_0 = 120 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 15 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg index d0faf6eb66e..92c62d2b439 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 98 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg index 3a64a522543..92811521ac4 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 95 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg index debf74ed0d7..234d33c2eb1 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 91 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature +5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg index 990d5cf645e..76ea2997baa 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 98 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg index 82f26cd66d7..fc3d8e47ec7 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 95 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg index a91b035e38e..f4bfb4c6986 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 91 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg index c7194e18d24..82715060a6b 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg @@ -29,7 +29,7 @@ material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 10 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_amount = 2 retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg index 078e213a262..ca19b0ee14d 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg @@ -29,7 +29,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_amount = 2 retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg index bfb4c46c461..f61b83ab7b8 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg @@ -29,7 +29,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_amount = 2 retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg index 8dd1c17ea69..85097b45067 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.38 material_flow = 107 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature - 3 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.2 retraction_hop_only_when_collides = False retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg index cca98aa5997..967f7c21a5a 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.38 material_flow = 103 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.2 retraction_hop_only_when_collides = False retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg index 5a343d68931..91106506291 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.38 material_flow = 101 material_print_temperature = =default_material_print_temperature + 7 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.2 retraction_hop_only_when_collides = False retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg index e6be8813412..de6356694f1 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 100 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg index c4342c149a1..ec119cba9ff 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 96 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg index e3581e08230..0b4df9f3a3a 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 91 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg index 4c451894bdf..ad5d8c85869 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 100 material_print_temperature = =default_material_print_temperature + 1 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg index 65c2c9e81f2..e0600e72d81 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 96 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature + 1 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg index 2f5cf9cfa3f..5827b15cf96 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 91 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature +3 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg index 36d6697edbe..3ee7204b929 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 98 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg index e92561350a1..4834ca9eefb 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 95 material_print_temperature = =default_material_print_temperature + 2 material_print_temperature_layer_0 = =default_material_print_temperature + 0 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg index e61775fde0b..4850f68dc0b 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 93 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg index 020b95dad20..ec7cbcc0fd2 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 100 material_print_temperature = =default_material_print_temperature + 1 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg index 6688d82ec8c..6f086f06056 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 96 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg index 2c8d6a82d3a..ff5016d5431 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 91 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 7 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg index fe012ff8735..e3249312699 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg index c0adce0f844..5aea3605f59 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 97 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg index 5b58c2f37bc..24a1faed482 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 97 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg index f986831fd5f..d73b6ac7969 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg index 5d360b244b1..14d3867950d 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg index 3875e668f41..26e6ebc4df4 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg index d4d0e1c17e9..54954ff5678 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg index f2bb237ea22..057fb1b8cc6 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 97 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg index f6780fbded2..63f71cff826 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 97 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg index 6e726932a6f..afef00df11b 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg index 7ef50ff5b13..7b81803b0ce 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg index 4d4af1e0f7f..c0ac99423da 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg index 0d88c99c856..bd0f177b1b7 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg index de476e6e46b..586d49b7db8 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg index 3fe7ff347cc..16c8c5e6aa9 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg index 9dd3039b65e..71a70f0849a 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg @@ -34,7 +34,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 88 material_print_temperature = 260 material_print_temperature_layer_0 = 265 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg index 346f33bafb5..ad26bba4cbd 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg @@ -34,7 +34,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 88 material_print_temperature = 270 material_print_temperature_layer_0 = 275 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg index 8571e8c4b02..e4da72d39a7 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg @@ -34,7 +34,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 88 material_print_temperature = 270 material_print_temperature_layer_0 = 275 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg index 4231e1b3a14..b7bebe13b75 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 98 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg index c141a0ab079..f3bc48c8c99 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 95 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg index 9cd4262c552..70c2d3044c8 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 91 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature +5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg index 6f49ec9e3bf..d52ceb51ea6 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 98 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg index 415379417c3..6124b1dfed9 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 95 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg index c4ce86563fa..b4a8bc21f43 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 91 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg index dc4505591f1..a764026ca71 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg @@ -29,7 +29,7 @@ material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 10 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_amount = 2 retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg index 224fa18cd6a..11b9d689c86 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg @@ -29,7 +29,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_amount = 2 retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg index 44737981b04..7521ef5d628 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg @@ -29,7 +29,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_amount = 2 retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg index 8bf71b5cf5f..6de69d4eba0 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg index 3102afdc2c9..e2b282ab2a6 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 97 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg index ad6e3615825..60d02fac6db 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 97 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg index b7445aee864..4969aad456c 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg index cc849df9bac..7bf8dc30d42 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 97 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg index 10cbd3a4cf2..27cef2d7c97 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 97 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg index 055bbb76239..24e3a1f2384 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.38 material_flow = 107 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature - 3 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.2 retraction_hop_only_when_collides = False retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg index 028586beb47..4211634c6d3 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.38 material_flow = 103 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.2 retraction_hop_only_when_collides = False retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg index 8bc0b97bc58..bd2c12c3f13 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.38 material_flow = 101 material_print_temperature = =default_material_print_temperature + 7 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.2 retraction_hop_only_when_collides = False retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg index ec355cec15a..589f27a2213 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 100 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg index 3ab4df020ca..bca586491d4 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 98 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg index 455cb44a7b1..2e90b6fd6f5 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 96 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg index 3475c621c3b..e2f63845eed 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 100 material_print_temperature = =default_material_print_temperature + 1 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg index d7d937fdefd..bc9df5fa147 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 98 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature + 1 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg index e83067bdc8a..7216eb093c8 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 96 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg index 188cddf0d6d..a90e755a491 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 95 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg index 6127c2ec434..1d54fd6b3cc 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 93 material_print_temperature = =default_material_print_temperature + 2 material_print_temperature_layer_0 = =default_material_print_temperature + 0 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg index ca38be0476c..90d3d005070 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 91 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg index caa9003cb3d..ca2b4a9c9e3 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 101 material_print_temperature = =default_material_print_temperature + 1 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.2 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg index a10cbdac7d1..b297719ba13 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 99 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.2 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg index 85fe174e950..34882ab1af7 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 97 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 7 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.2 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg index 9b48be1b8b3..07969b958a9 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 95 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg index 0440a0a34a7..ecd3384a5b8 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 95 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg index 7f124ae4ece..a4a87bc3f3e 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 95 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg index f662c410485..c0f93168dac 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_amount = 3 retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg index dae0dda0981..4116205747f 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_amount = 3 retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg index 1079c746ecc..df1fb6e2e75 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_amount = 3 retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg index 04991249e9f..aa5bfa30f22 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 95 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg index 685778f3f14..887a35f80e9 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 95 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg index ab5eca1d474..a9a4bcb18f9 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 95 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg index a5a2addbc6e..d73114c313b 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 93 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg index 6ecc9a32650..e3f0657f1f4 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg index 9e060959ddc..542f9405b11 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg index 322d30a975e..43ff676c46d 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg index 5ae6c32cb89..2cca8a5c45f 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg index 3fbe1f63708..951e26d8413 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg index 46aacdf22ca..f408c5a293e 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg index 6997dae536c..8b72022a0d4 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg @@ -33,7 +33,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 87 material_print_temperature = 270 material_print_temperature_layer_0 = 275 -prime_tower_enable = True +prime_tower_mode = normal retraction_amount = 2 retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg index 70bb7206af0..2540f2bea92 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg @@ -33,7 +33,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 87 material_print_temperature = 270 material_print_temperature_layer_0 = 275 -prime_tower_enable = True +prime_tower_mode = normal retraction_amount = 2 retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg index eb89937deda..c6bd8cc70e0 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg @@ -33,7 +33,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 87 material_print_temperature = 270 material_print_temperature_layer_0 = 275 -prime_tower_enable = True +prime_tower_mode = normal retraction_amount = 2 retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg index 4bc567a2d91..02b8e45e226 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 93 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg index f08c2e68b74..26e2eb50290 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 92 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg index 4a9a1472b8e..f97462d99c7 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 91 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature +5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg index 41edbc8e328..540e14ba238 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 93 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg index 10356ad3448..af851371a19 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 92 material_print_temperature = =default_material_print_temperature + 8 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg index 9f04791ac2a..e2470b9ecf5 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 91 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg index 56e09ac385a..21c4f9eccc9 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg @@ -29,7 +29,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg index 6c8a5462aa6..b210d0fd308 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg @@ -29,7 +29,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg index be4a045e0d8..6b6a5923cef 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg @@ -29,7 +29,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg index 6b107e9c9bd..f677ac9e32c 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 95 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg index ca169572b9b..9ed4c381c9a 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 95 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg index 7e7a3ed9d11..3f928f436dd 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 95 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg index a08e251fe01..d8e702dc7a6 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 95 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg index 2bcf4d4b1d3..53516d4617f 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 95 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg index 1352a75a8ab..e7298a71d3b 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 95 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg index ad699959aac..cd9de526ec3 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.55 material_flow = 105 material_print_temperature = =default_material_print_temperature + 2 material_print_temperature_layer_0 = =default_material_print_temperature - 2 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.2 retraction_hop_only_when_collides = False retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg index 6fdabc1a83e..4de06235da3 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.55 material_flow = 103 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.2 retraction_hop_only_when_collides = False retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg index 1954931cc71..431623b7c67 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.55 material_flow = 101 material_print_temperature = =default_material_print_temperature + 7 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.2 retraction_hop_only_when_collides = False retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg index 913af1994be..e0c29062d7e 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 97 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature + 1 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg index 573834fc791..9230df64e3c 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 96 material_print_temperature = =default_material_print_temperature + 7 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg index 3d5d1781ae4..7117a889ed9 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 95 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg index 4910a692729..97d2209bdaf 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 97 material_print_temperature = =default_material_print_temperature + 2 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg index 28d395019a5..111504ad7b7 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 96 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 2 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg index b91ceb1f851..d5322c039a3 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 95 material_print_temperature = =default_material_print_temperature + 7 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg index 4a32ddceaf2..74d0fa38693 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 97 material_print_temperature = =default_material_print_temperature + 1 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg index e45a8970f76..80dfbe8dbc1 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 96 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg index c0a9632b95b..26decee7ba2 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 95 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 7 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg index bce7e2891fd..850458ed36f 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg index 0a053f123ea..06f9ed6686d 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg index 4f167ecacc9..36398c0cfcb 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg index 8efea7e2640..8dd9bc10fb4 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop = 2 retraction_hop_enabled = True diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg index d2f6973da76..fb149908d18 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop = 2 retraction_hop_enabled = True diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg index 57e9fc27a4d..47d9a50940a 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop = 2 retraction_hop_enabled = True diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg index 2ef4a5b4794..e57fefc2b90 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg index a7549a851cd..0cbddce4c91 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 97 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg index 322f31e9863..965c08e8f9b 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 97 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg index 6f3fa578bff..4062997ba0d 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg index ee3166e7da1..e6acfe27b88 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg index 05eabcc6a32..602837f410b 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg index d10b2df53be..d5bb0ac8ba3 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg index 181d89f9579..022a6f36bf9 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg index 38bd72884bf..35421e68d61 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg index d8b2e660fc8..65217b7ff9e 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg @@ -35,7 +35,7 @@ material_print_temperature = 280 material_print_temperature_layer_0 = 285 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_min_travel = =2*line_width retraction_speed = 35 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg index c39338eeca8..118acb433f2 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg @@ -35,7 +35,7 @@ material_print_temperature = 280 material_print_temperature_layer_0 = 285 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_min_travel = =2*line_width retraction_speed = 35 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg index f88eff16151..c8102ecdf90 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg @@ -35,7 +35,7 @@ material_print_temperature = 280 material_print_temperature_layer_0 = 285 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_min_travel = =2*line_width retraction_speed = 35 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg index 59a6db473db..df178b18072 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.4 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg index 9a94498b121..95973a44288 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 95 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.4 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg index 2611e1deba9..32073574ead 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 93 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature +5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.4 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg index 35644e47a87..4b306434b94 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 99 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg index a820dd84676..99a245dfb49 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 98 material_print_temperature = =default_material_print_temperature + 7 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg index a4f135a4fae..d7ecb957489 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 97 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg index ee58caf9e6d..9a973d225d8 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg @@ -27,7 +27,7 @@ material_flow = 93 material_initial_print_temperature = =default_material_print_temperature material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg index 6399e7fd1fb..6ff6a8dd0e8 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg @@ -29,7 +29,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg index e034d49e6e9..5f19e2ab771 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg @@ -29,7 +29,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg index 632c45a51ff..5ea81eab765 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg index e882d420151..cc5ecebffe7 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg index 7b52c7bb2d8..d133a60b415 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg index a0fcdc4a520..1e243bbea46 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg index 496e5fe2159..54889f9923b 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg index 9c676c934bc..8f484b06169 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg index 0b4c3c02811..f328b886459 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.7 material_flow = 105 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = False retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg index ffbb925a229..9d11111b78d 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.7 material_flow = 103 material_print_temperature = =default_material_print_temperature + 6 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = False retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg index 60af5617e3b..ed25c0fb46c 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.7 material_flow = 101 material_print_temperature = =default_material_print_temperature + 9 material_print_temperature_layer_0 = =default_material_print_temperature +5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = False retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg index 71581b46adc..0b70ff0384d 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.7 material_flow = 100 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = False retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg index bcbb45062ad..f519ec66d5e 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.7 material_flow = 100 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = False retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg index 827ae4a7ba7..83c109070a6 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.7 material_flow = 100 material_print_temperature = =default_material_print_temperature + 7 material_print_temperature_layer_0 = =default_material_print_temperature +3 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = False retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg index 29f88f6e15d..09ffbaed981 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 97 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg index 316e5d4447b..ff50fd3debf 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 97 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg index 44203ad144b..fbbc7a01875 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 97 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature +5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg index e322951476c..95a6d4e7328 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 100 material_print_temperature = =default_material_print_temperature + 1 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.4 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg index b4ee9ea9852..2c0caa6a069 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 100 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.4 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg index 708896fdb76..c896adef1bf 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 100 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 7 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.4 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg index 63ca3d88ff4..0dcc4405d74 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg index 62ed1914db1..73dce76c2ee 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg index ac9ec6324e8..36902a619f1 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg index b225d8a9112..b0bc012110d 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg index 6e859c8dd04..baf42116458 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 97 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg index 6b8ebd9d203..754d20c802e 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 97 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg index f168d4cf46c..717aed8e494 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg index 652876d6b23..d41dea9d7bd 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg index 482b99c2f60..b708481aeb3 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg index 551e79a8e48..5e604e6f659 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg index 57097361478..31f7a30f3fb 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg index 38f3b2b2efe..f35389424ce 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg index 54a6d54cc03..902e42aef11 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 95 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg index abdd37d98da..f1fc4dd8775 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 95 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg index 50f3b04e16f..03c73269f8c 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 95 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg index 35e9d199577..ddf8abc4c15 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 100 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg index 6e59384a4d6..77eb559e6e3 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 100 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg index 9df5f69d750..5053e91cbbf 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 100 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature +5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg index 45b5a9e4153..0e658a7bd26 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg index 70ec1234ff3..f30a55729cd 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg index 63275020274..eca2362651c 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg index d7056a3f110..ec460ac49e4 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg index a5ec67621f1..1e85473f67a 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg index 4ddc98ddd2f..9650dac1c02 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg index 1b3a77ab8b0..38cf5927f05 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.9 material_flow = 107 material_print_temperature = =default_material_print_temperature + 2 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = False retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg index be45c084a56..60baaa10389 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.9 material_flow = 107 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = False retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg index c02401c4d5f..385d21e44db 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.9 material_flow = 107 material_print_temperature = =default_material_print_temperature + 8 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = False retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg index ba91c749d5d..ef7573779dc 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 103 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg index b1d4c72a345..86e4022a272 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 102 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg index 4fac7e687d8..aa2af46845e 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 101 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature +5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg index 91b4699598a..915523eadf2 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 100 material_print_temperature = =default_material_print_temperature + 1 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg index 8d84bc4fd5d..d258496552b 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 100 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg index eafe3eef80e..93420a5103b 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 100 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 7 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg index 3286e7fb083..41764726df3 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 100 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg index bb164bcd99e..2e4bb516b00 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 100 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg index 82ad174a959..700c0102c22 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 100 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg index f33abf1ec39..941f0a6c814 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 103 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg index 2edb0e32f89..4cd7728a694 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 102 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg index 30d7139eb91..01b584afcda 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 101 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg index 1bf36453d18..a4c6fd4046f 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg index f413dd3e17b..376c9b1d511 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg index 9b228f7b05d..5e27fec1509 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg index 68c8604a95a..5ca32bd6554 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg index 66fc7c2f92e..bdebb9a0acc 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg index aceba867c23..01c65f45865 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg index a34c3a4d45e..9a8aaeb18ef 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 100 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg index bd41a808d04..ba4d2b22ec0 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 100 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg index 6036150353b..2b1b5fb2f92 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 95 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg index c150380c74b..6e05ba15a68 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 107 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg index 74ce8559d2a..56765cb1567 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 105 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg index f59b68f675a..36d6248682f 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 103 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg index 689c1fe0764..d88ff841d05 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 100 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg index 514cdcbfde2..9bb1258fc80 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 100 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg index 123dc9a953d..7a662ec6d17 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 100 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg index 9c3f620a2d1..767b72a5666 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 100 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg index 0b841dfb095..da088dc345a 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 100 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg index adfe8161258..1ae6c25ebb7 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 100 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg index 4b6108e51d2..a9eb8331c83 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.1 material_flow = 111 material_print_temperature = =default_material_print_temperature + 2 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = False retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg index 99af35534f2..03cb1459449 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.1 material_flow = 111 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = False retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg index 21043cae581..ac77c87265e 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.1 material_flow = 111 material_print_temperature = =default_material_print_temperature + 8 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_enable = True +prime_tower_mode = normal retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = False retraction_min_travel = =2*line_width diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg index ac5f3e5bee7..a033f60186f 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg @@ -22,7 +22,7 @@ material_final_print_temperature = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_print_temperature = =default_material_print_temperature optimize_wall_printing_order = True -prime_tower_enable = True +prime_tower_mode = normal prime_tower_flow = 110 prime_tower_size = 35 retraction_min_travel = 2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg index eca85becc64..a8da0b4092a 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg @@ -19,7 +19,7 @@ material_final_print_temperature = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_print_temperature = =default_material_print_temperature optimize_wall_printing_order = True -prime_tower_enable = True +prime_tower_mode = normal prime_tower_flow = 110 prime_tower_size = 35 retraction_hop_enabled = False diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg index 8071d7193e5..d807f97293f 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg @@ -30,7 +30,7 @@ material_flow_layer_0 = 93 material_initial_print_temperature = =material_print_temperature material_print_temperature = =default_material_print_temperature optimize_wall_printing_order = True -prime_tower_enable = True +prime_tower_mode = normal prime_tower_flow = 110 prime_tower_size = 35 retraction_amount = 5 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg index 8354fba5e09..51329150b74 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg @@ -30,7 +30,7 @@ material_flow_layer_0 = 93 material_initial_print_temperature = =material_print_temperature material_print_temperature = =default_material_print_temperature optimize_wall_printing_order = True -prime_tower_enable = True +prime_tower_mode = normal prime_tower_flow = 110 prime_tower_size = 35 retraction_amount = 5 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg index 074632abda3..f201d4c6323 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg @@ -19,7 +19,7 @@ material_final_print_temperature = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_print_temperature = =default_material_print_temperature optimize_wall_printing_order = True -prime_tower_enable = True +prime_tower_mode = normal prime_tower_flow = 110 prime_tower_size = 35 retraction_hop_enabled = False diff --git a/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg index eeb924906f6..632a1fb46da 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg @@ -21,7 +21,7 @@ machine_min_cool_heat_time_window = 15 material_print_temperature = =default_material_print_temperature - 10 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 diff --git a/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg index a64c8298a2d..0667ef961d2 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg @@ -21,7 +21,7 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 2 multiple_mesh_overlap = 0 -prime_tower_enable = False +prime_tower_mode = none prime_tower_size = 16 prime_tower_wipe_enabled = True retraction_count_max = 15 diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg index 16be0db845c..d93ba61d9da 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg @@ -15,7 +15,7 @@ weight = -2 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_enable = False +prime_tower_mode = none skin_overlap = 20 speed_print = 60 speed_topbottom = =math.ceil(speed_print * 35 / 60) diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg index 916b283c9ce..b92a826f5ae 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg @@ -15,7 +15,7 @@ weight = -1 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 10 -prime_tower_enable = False +prime_tower_mode = none speed_print = 60 speed_topbottom = =math.ceil(speed_print * 30 / 60) speed_wall = =math.ceil(speed_print * 40 / 60) diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg index 5dcbe80bbbb..2fe35f1a2eb 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg @@ -15,7 +15,7 @@ weight = 1 machine_nozzle_cool_down_speed = 0.8 machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 20 -prime_tower_enable = False +prime_tower_mode = none speed_print = 50 speed_topbottom = =math.ceil(speed_print * 30 / 50) speed_wall = =math.ceil(speed_print * 30 / 50) diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg index 1420880995f..fcecc2701b5 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg @@ -15,7 +15,7 @@ weight = 0 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 15 -prime_tower_enable = False +prime_tower_mode = none speed_print = 55 speed_topbottom = =math.ceil(speed_print * 30 / 55) speed_wall = =math.ceil(speed_print * 30 / 55) diff --git a/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg index e0dd43cc28a..cf417a84b69 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg @@ -16,7 +16,7 @@ brim_replaces_support = False machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 -prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 +prime_tower_mode = ='normal' if (min(extruderValues('material_surface_energy')) < 100) else 'none' skin_overlap = 20 speed_topbottom = =math.ceil(speed_print * 35 / 70) speed_wall = =math.ceil(speed_print * 50 / 70) diff --git a/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg index 16ece7c2dda..363a43975ee 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg @@ -15,7 +15,7 @@ weight = -1 brim_replaces_support = False machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 +prime_tower_mode = ='normal' if (min(extruderValues('material_surface_energy')) < 100) else 'none' speed_print = 80 speed_topbottom = =math.ceil(speed_print * 30 / 80) speed_wall = =math.ceil(speed_print * 40 / 80) diff --git a/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg index ca7fd8cbf35..92dae4a19f5 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg @@ -15,7 +15,7 @@ weight = 0 brim_replaces_support = False machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 +prime_tower_mode = ='normal' if (min(extruderValues('material_surface_energy')) < 100) else 'none' skin_overlap = 10 support_angle = 45 support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg index 5de59e58c99..2540a78b21b 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg @@ -18,7 +18,7 @@ infill_wipe_dist = 0 layer_height = 0.2 machine_min_cool_heat_time_window = 15 multiple_mesh_overlap = 0 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_wipe_enabled = True retraction_hop = 0.2 retraction_hop_enabled = False diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg index b2020831d77..37e8df992dc 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg @@ -18,7 +18,7 @@ infill_wipe_dist = 0 layer_height = 0.15 machine_min_cool_heat_time_window = 15 multiple_mesh_overlap = 0 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_wipe_enabled = True retraction_hop = 0.2 retraction_hop_enabled = False diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg index 4be3a9c13aa..5ba84b05642 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg @@ -21,7 +21,7 @@ machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 8 multiple_mesh_overlap = 0 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_wipe_enabled = True retraction_hop = 0.2 retraction_hop_enabled = False diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg index 2e24f485d0a..0fb115b5484 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg @@ -20,7 +20,7 @@ machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 5 multiple_mesh_overlap = 0 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_wipe_enabled = True retraction_hop = 0.2 retraction_hop_enabled = False diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg index 28e8ccbf75a..d0d447acdf5 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg @@ -24,7 +24,7 @@ machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg index 5113277ab2c..e55a49babab 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg @@ -23,7 +23,7 @@ machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg index 636ce41e716..ee55427cf73 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg @@ -25,7 +25,7 @@ machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 20 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg index a7c533bfea7..15410514cd9 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg @@ -23,7 +23,7 @@ machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 10 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg index 1d44e48193d..a79b715ee08 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg @@ -15,7 +15,7 @@ weight = -2 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 -prime_tower_enable = False +prime_tower_mode = none skin_overlap = 20 speed_topbottom = =math.ceil(speed_print * 40 / 70) speed_wall = =math.ceil(speed_print * 55 / 70) diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg index 6b99ed5a70e..a838352f48a 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg @@ -14,7 +14,7 @@ weight = -1 [values] machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_enable = False +prime_tower_mode = none speed_print = 80 speed_topbottom = =math.ceil(speed_print * 30 / 80) speed_wall = =math.ceil(speed_print * 40 / 80) diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg index 97be45babc7..e5a10d92227 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg @@ -15,7 +15,7 @@ weight = 1 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_enable = False +prime_tower_mode = none skin_overlap = 10 speed_print = 60 speed_topbottom = =math.ceil(speed_print * 30 / 60) diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg index f305caa82d7..486b74c1b20 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg @@ -14,7 +14,7 @@ weight = 0 [values] machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_enable = False +prime_tower_mode = none skin_overlap = 10 top_bottom_thickness = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg index c82043d3afc..4293ca81f10 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg @@ -24,7 +24,7 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature + 8 multiple_mesh_overlap = 0 -prime_tower_enable = False +prime_tower_mode = none prime_tower_size = 16 prime_tower_wipe_enabled = True retraction_amount = 6.5 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg index 74a628f7cb9..1b396f5417e 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg @@ -23,7 +23,7 @@ machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 multiple_mesh_overlap = 0 -prime_tower_enable = False +prime_tower_mode = none prime_tower_size = 16 prime_tower_wipe_enabled = True retraction_count_max = 15 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg index fa9b4c54ea4..6c4ee71b828 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg @@ -23,7 +23,7 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 2 multiple_mesh_overlap = 0 -prime_tower_enable = False +prime_tower_mode = none prime_tower_size = 16 prime_tower_wipe_enabled = True retraction_count_max = 15 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg index cffd1e60758..d8fca155d38 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg @@ -14,7 +14,7 @@ weight = -2 [values] machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_enable = False +prime_tower_mode = none skin_overlap = 20 speed_print = 50 speed_roofing = =math.ceil(speed_wall * 20 / 24) diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg index 94fe824f5e2..5ea9fe93369 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg @@ -14,7 +14,7 @@ weight = -1 [values] machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_enable = False +prime_tower_mode = none speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg index 05a68966469..4e03569ca67 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg @@ -15,7 +15,7 @@ weight = 0 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_enable = False +prime_tower_mode = none skin_overlap = 10 speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg index dcca81f3ef2..0443afa3f61 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg @@ -17,7 +17,7 @@ brim_width = 14 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 20 -prime_tower_enable = True +prime_tower_mode = normal retraction_hop = 0.1 retraction_hop_enabled = False skin_overlap = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg index 585ae8eefe2..ccae2cc5d87 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg @@ -18,7 +18,7 @@ layer_height = 0.4 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 15 -prime_tower_enable = True +prime_tower_mode = normal retraction_hop = 0.1 retraction_hop_enabled = False skin_overlap = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg index 2280a837aed..9596b00d339 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg @@ -18,7 +18,7 @@ layer_height = 0.3 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 17 -prime_tower_enable = True +prime_tower_mode = normal retraction_hop = 0.1 retraction_hop_enabled = False skin_overlap = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg index b1f867807bd..4a7e29ec36a 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg @@ -14,7 +14,7 @@ weight = -2 [values] brim_width = 15 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = True +prime_tower_mode = normal speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg index a75ae74ada6..5c5b7329900 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg @@ -15,7 +15,7 @@ weight = -4 brim_width = 15 layer_height = 0.4 material_print_temperature = =default_material_print_temperature + 15 -prime_tower_enable = True +prime_tower_mode = normal speed_infill = =math.ceil(speed_print * 33 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 30 / 45) diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg index c1544a00e22..9a48e11a7b5 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg @@ -15,7 +15,7 @@ weight = -3 brim_width = 15 layer_height = 0.3 material_print_temperature = =default_material_print_temperature + 12 -prime_tower_enable = True +prime_tower_mode = normal speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) diff --git a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg index a0fc0365660..747730c0a73 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg @@ -17,7 +17,7 @@ machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 5 ooze_shield_angle = 40 -prime_tower_enable = True +prime_tower_mode = normal raft_airgap = 0.45 support_angle = 70 switch_extruder_prime_speed = 30 diff --git a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg index 547ab013fb7..40f0779369b 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg @@ -18,7 +18,7 @@ machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 5 ooze_shield_angle = 40 -prime_tower_enable = True +prime_tower_mode = normal raft_airgap = 0.45 support_angle = 70 switch_extruder_prime_speed = 30 diff --git a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg index b17789ad0f8..03116ec10dd 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg @@ -18,7 +18,7 @@ machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 5 ooze_shield_angle = 40 -prime_tower_enable = True +prime_tower_mode = normal raft_airgap = 0.45 support_angle = 70 switch_extruder_prime_speed = 30 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg index 3eafff9a071..aab2e25ac23 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg @@ -14,7 +14,7 @@ weight = -2 [values] brim_width = 7 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_enable = True +prime_tower_mode = normal retraction_combing = all speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) diff --git a/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg index fe36a86948d..45ec96e0898 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg @@ -15,7 +15,7 @@ weight = -4 brim_width = 7 layer_height = 0.4 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_enable = True +prime_tower_mode = normal retraction_combing = all speed_infill = =math.ceil(speed_print * 33 / 45) speed_print = 45 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg index 2bba762e2df..ee92c6add79 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg @@ -15,7 +15,7 @@ weight = -3 brim_width = 7 layer_height = 0.3 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_enable = True +prime_tower_mode = normal retraction_combing = all speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) diff --git a/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg index 57a830402a6..84a9b9a5fba 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg @@ -17,7 +17,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = True +prime_tower_mode = normal speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg index 40f710327f1..ae59471ff3d 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg @@ -18,7 +18,7 @@ layer_height = 0.4 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 15 -prime_tower_enable = True +prime_tower_mode = normal speed_infill = =math.ceil(speed_print * 35 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg index 702c64bb78a..2a4c093dca1 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg @@ -18,7 +18,7 @@ layer_height = 0.3 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = True +prime_tower_mode = normal speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg index 145389fbe4e..144a47769b2 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg @@ -16,7 +16,7 @@ brim_width = 25 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' material_print_temperature = =default_material_print_temperature + 11 multiple_mesh_overlap = 0.2 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_flow = 100 prime_tower_min_volume = 10 retraction_count_max = 15 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg index 68d54bd406b..cedba132ebe 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg @@ -16,7 +16,7 @@ brim_width = 25 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' material_print_temperature = =default_material_print_temperature + 15 multiple_mesh_overlap = 0.2 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_flow = 100 prime_tower_min_volume = 20 retraction_count_max = 15 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg index 2aa79cad795..32f623e4324 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg @@ -17,7 +17,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' layer_height = 0.3 material_print_temperature = =default_material_print_temperature + 13 multiple_mesh_overlap = 0.2 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_flow = 100 prime_tower_min_volume = 15 retraction_count_max = 15 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg index a9b7a929180..5e0816ef9aa 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg @@ -17,7 +17,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = False +prime_tower_mode = none speed_print = 45 support_angle = 70 top_bottom_thickness = =layer_height * 6 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg index 16e17c500ef..36e25d258a3 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg @@ -17,7 +17,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 15 -prime_tower_enable = False +prime_tower_mode = none speed_infill = =math.ceil(speed_print * 30 / 30) speed_print = 30 speed_topbottom = =math.ceil(speed_print * 20 / 30) diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg index 96dec4f1c5c..ffbc413b6ea 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg @@ -17,7 +17,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 15 -prime_tower_enable = False +prime_tower_mode = none speed_infill = =math.ceil(speed_print * 30 / 35) speed_topbottom = =math.ceil(speed_print * 20 / 35) speed_wall = =math.ceil(speed_print * 25/ 35) diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg index 859eb3b33a0..63dd03590c3 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg @@ -23,7 +23,7 @@ material_flow = 105 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 4 multiple_mesh_overlap = 0.2 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_flow = 100 retraction_count_max = 15 retraction_extra_prime_amount = 0.5 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg index 61ace7da80b..a81683200f3 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg @@ -23,7 +23,7 @@ material_final_print_temperature = =material_print_temperature - 10 material_flow = 105 material_initial_print_temperature = =material_print_temperature - 10 multiple_mesh_overlap = 0.2 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_flow = 100 retraction_count_max = 15 retraction_extra_prime_amount = 0.5 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg index e45b8f2d1d5..cb0e4358d6a 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg @@ -24,7 +24,7 @@ material_flow = 105 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 2 multiple_mesh_overlap = 0.2 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_flow = 100 retraction_count_max = 15 retraction_extra_prime_amount = 0.5 diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg index eab1a39931e..64ad8ff7f3b 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg @@ -15,7 +15,7 @@ weight = -2 brim_replaces_support = False cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) material_print_temperature = =default_material_print_temperature + 5 -prime_tower_enable = False +prime_tower_mode = none retraction_count_max = 5 skin_overlap = 20 skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width)) diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg index ad1e26c7dae..2cdc81a5d94 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg @@ -14,7 +14,7 @@ weight = -1 [values] brim_replaces_support = False cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -prime_tower_enable = False +prime_tower_mode = none retraction_count_max = 5 skin_overlap = 15 skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width)) diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg index e5ae49b17dd..fa2b7026a16 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg @@ -15,7 +15,7 @@ weight = 1 brim_replaces_support = False cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) material_print_temperature = =default_material_print_temperature - 5 -prime_tower_enable = False +prime_tower_mode = none retraction_count_max = 5 skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width)) support_infill_sparse_thickness = =3*layer_height diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg index 38334b43587..d16740c8efd 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg @@ -15,7 +15,7 @@ weight = 0 brim_replaces_support = False cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) material_print_temperature = =default_material_print_temperature - 5 -prime_tower_enable = False +prime_tower_mode = none retraction_count_max = 5 skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width)) support_infill_sparse_thickness = =2*layer_height diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg index ec864943979..644f302cdeb 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg @@ -20,7 +20,7 @@ machine_min_cool_heat_time_window = 15 material_print_temperature = =default_material_print_temperature - 10 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg index 77082932a57..3fb19b43a29 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg @@ -21,7 +21,7 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 2 multiple_mesh_overlap = 0 -prime_tower_enable = False +prime_tower_mode = none prime_tower_size = 16 prime_tower_wipe_enabled = True retraction_count_max = 15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg index 6877d9b6a22..ad257249040 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg @@ -16,7 +16,7 @@ machine_nozzle_cool_down_speed = 0.8 machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 20 material_print_temperature = =default_material_print_temperature - 10 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.15 speed_infill = =math.ceil(speed_print * 40 / 50) speed_print = 50 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg index de1905e4101..c0890c9740c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg @@ -15,7 +15,7 @@ weight = -1 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 20 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.15 speed_infill = =math.ceil(speed_print * 45 / 60) speed_print = 60 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg index ae5c9bcbc11..fbe263ab43e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg @@ -16,7 +16,7 @@ machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 20 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.15 speed_infill = =math.ceil(speed_print * 40 / 55) speed_print = 55 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg index 701a2db84d3..059d39f6c18 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg @@ -16,7 +16,7 @@ machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 20 material_print_temperature = =default_material_print_temperature + 5 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.15 speed_infill = =math.ceil(speed_print * 50 / 60) speed_print = 60 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg index 684336d1eb4..cb741764d6a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg @@ -16,7 +16,7 @@ weight = -3 machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 20 material_print_temperature = =default_material_print_temperature + 7 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.15 support_bottom_distance = =support_z_distance support_interface_enable = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg index a7a17e5f693..3af6b9a69d2 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg @@ -15,7 +15,7 @@ weight = -1 brim_replaces_support = False machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 +prime_tower_mode = ='normal' if (min(extruderValues('material_surface_energy')) < 100) else 'none' speed_print = 80 speed_topbottom = =math.ceil(speed_print * 30 / 80) speed_wall = =math.ceil(speed_print * 40 / 80) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg index a3b8129ed70..1526b46ba52 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg @@ -15,7 +15,7 @@ weight = 0 brim_replaces_support = False machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 +prime_tower_mode = ='normal' if (min(extruderValues('material_surface_energy')) < 100) else 'none' support_angle = 45 support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height support_infill_sparse_thickness = =2 * layer_height diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg index 5c051039d0b..999e2ce9c95 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg @@ -16,7 +16,7 @@ brim_replaces_support = False machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 -prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 +prime_tower_mode = ='normal' if (min(extruderValues('material_surface_energy')) < 100) else 'none' speed_topbottom = =math.ceil(speed_print * 35 / 70) speed_wall = =math.ceil(speed_print * 50 / 70) speed_wall_0 = =math.ceil(speed_wall * 35 / 50) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg index 61073067fc8..42b98f5be7b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg @@ -17,7 +17,7 @@ brim_replaces_support = False machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 -prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 +prime_tower_mode = ='normal' if (min(extruderValues('material_surface_energy')) < 100) else 'none' speed_topbottom = =math.ceil(speed_print * 35 / 70) speed_wall = =math.ceil(speed_print * 50 / 70) speed_wall_0 = =math.ceil(speed_wall * 35 / 50) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg index 880461bccf2..864421ed78b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg @@ -18,7 +18,7 @@ machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 8 multiple_mesh_overlap = 0 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_wipe_enabled = True retraction_hop = 0.2 retraction_hop_enabled = False diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg index 5dd5e61f828..2591f15abb0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg @@ -15,7 +15,7 @@ weight = -1 infill_wipe_dist = 0 machine_min_cool_heat_time_window = 15 multiple_mesh_overlap = 0 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_wipe_enabled = True retraction_hop = 0.2 retraction_hop_enabled = False diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg index 7617b35b3b0..ab0354f9ea7 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg @@ -18,7 +18,7 @@ machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 5 multiple_mesh_overlap = 0 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_wipe_enabled = True retraction_hop = 0.2 retraction_hop_enabled = False diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg index 7ed1fcd2980..7ac2d069982 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg @@ -15,7 +15,7 @@ weight = -2 infill_wipe_dist = 0 machine_min_cool_heat_time_window = 15 multiple_mesh_overlap = 0 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_wipe_enabled = True retraction_hop = 0.2 retraction_hop_enabled = False diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg index f46f816cfbc..1366b0700bd 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg @@ -21,7 +21,7 @@ machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 20 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg index 2c234493733..3dd4cc8cd83 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg @@ -20,7 +20,7 @@ machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg index e0899c8dc2b..074a3b66ddf 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg @@ -21,7 +21,7 @@ machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 10 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg index 329bd095d58..cc9c42e5729 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg @@ -20,7 +20,7 @@ machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg index 4b8f9f433b0..d313f08887a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg @@ -15,7 +15,7 @@ weight = 1 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 retraction_prime_speed = =retraction_speed speed_print = 50 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg index 5581284de49..73105ed5121 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg @@ -14,7 +14,7 @@ weight = -1 [values] machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 retraction_prime_speed = =retraction_speed speed_print = 70 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg index 30af138465b..b6eac28eb9d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg @@ -14,7 +14,7 @@ weight = 0 [values] machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 retraction_prime_speed = =retraction_speed support_bottom_distance = =support_z_distance diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg index e5dc960d98c..7ee4df3cacd 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg @@ -18,7 +18,7 @@ infill_sparse_density = 15 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 retraction_prime_speed = =retraction_speed speed_topbottom = =math.ceil(speed_print * 40 / 70) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg index 719adc820b4..80a564e05a0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg @@ -22,7 +22,7 @@ infill_sparse_density = 15 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 retraction_prime_speed = =retraction_speed speed_print = 50 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg index eee8fc31b60..f1c188d7d93 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg @@ -21,7 +21,7 @@ machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 multiple_mesh_overlap = 0 -prime_tower_enable = False +prime_tower_mode = none prime_tower_size = 16 prime_tower_wipe_enabled = True retraction_count_max = 15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg index fa878257185..93ce7ac9b19 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg @@ -22,7 +22,7 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 2 multiple_mesh_overlap = 0 -prime_tower_enable = False +prime_tower_mode = none prime_tower_size = 16 prime_tower_wipe_enabled = True retraction_count_max = 15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg index 6c90ec685f7..84dcf31f04b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg @@ -22,7 +22,7 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature + 8 multiple_mesh_overlap = 0 -prime_tower_enable = False +prime_tower_mode = none prime_tower_size = 16 prime_tower_wipe_enabled = True retraction_count_max = 15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg index b5253cb0779..26cce4fcade 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg @@ -15,7 +15,7 @@ weight = 1 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_enable = False +prime_tower_mode = none retraction_prime_speed = =retraction_speed speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg index 69cf85f3497..86d98cfd6c7 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg @@ -14,7 +14,7 @@ weight = -1 [values] machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_enable = False +prime_tower_mode = none retraction_prime_speed = =retraction_speed speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg index 397992c551e..2715630b07e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg @@ -15,7 +15,7 @@ weight = 0 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_enable = False +prime_tower_mode = none retraction_prime_speed = =retraction_speed speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg index 773da6d3acf..8446a7957f9 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg @@ -14,7 +14,7 @@ weight = -2 [values] machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_enable = False +prime_tower_mode = none retraction_prime_speed = =retraction_speed speed_print = 50 speed_roofing = =math.ceil(speed_wall * 20 / 24) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg index 10e43b5699c..8e4d4596afc 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg @@ -22,7 +22,7 @@ infill_sparse_density = 15 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 retraction_prime_speed = =retraction_speed speed_print = 50 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg index 312afa0421a..4f8a58c9748 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg @@ -16,7 +16,7 @@ machine_nozzle_cool_down_speed = 0.8 machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 20 material_print_temperature = =default_material_print_temperature - 10 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.15 speed_infill = =math.ceil(speed_print * 40 / 50) speed_print = 50 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg index ee0525c13eb..f854ea88150 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg @@ -43,7 +43,7 @@ material_extrusion_cool_down_speed = 0.8 material_max_flowrate = 20 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.15 retraction_amount = 6.5 retraction_prime_speed = 15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg index b53e8275a27..d854b78f657 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg @@ -16,7 +16,7 @@ machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 20 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.15 speed_infill = =math.ceil(speed_print * 40 / 55) speed_print = 55 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg index 57413c4b301..9ac0fa149f8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg @@ -44,7 +44,7 @@ material_max_flowrate = 20 material_print_temperature = =default_material_print_temperature + 5 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.15 retraction_amount = 6.5 retraction_prime_speed = 15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg index 0052ce90cda..2d2c5a2b58d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg @@ -44,7 +44,7 @@ material_max_flowrate = 20 material_print_temperature = =default_material_print_temperature + 7 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.15 retraction_amount = 6.5 retraction_prime_speed = 15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg index 8732c3ad637..efec8a9215d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg @@ -43,7 +43,7 @@ material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 20 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_enable = False +prime_tower_mode = none retraction_amount = 8 retraction_prime_speed = 15 retraction_speed = 45 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg index e7e50350c0e..4de8ea6aa46 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg @@ -44,7 +44,7 @@ material_max_flowrate = 20 material_print_temperature = =default_material_print_temperature + 5 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_enable = False +prime_tower_mode = none retraction_amount = 8 retraction_prime_speed = 15 retraction_speed = 45 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg index 5ecaa739dbd..da3e1d0469f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg @@ -44,7 +44,7 @@ material_max_flowrate = 20 material_print_temperature = =default_material_print_temperature + 5 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_enable = False +prime_tower_mode = none retraction_amount = 8 retraction_prime_speed = 15 retraction_speed = 45 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg index 2939389a3ce..ddc0bd768a2 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg @@ -15,7 +15,7 @@ weight = 1 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 retraction_prime_speed = =retraction_speed speed_print = 50 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg index 136a3bed425..cd4fc7c1768 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg @@ -43,7 +43,7 @@ material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 12 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg index 2b430c1afb3..d5a719e0236 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg @@ -14,7 +14,7 @@ weight = 0 [values] machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 retraction_prime_speed = =retraction_speed support_bottom_distance = =support_z_distance diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg index dcbb580edb2..71f1169b402 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg @@ -44,7 +44,7 @@ material_max_flowrate = 12 material_print_temperature = =default_material_print_temperature + 5 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg index fc2a185be49..d7abde7dffb 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg @@ -44,7 +44,7 @@ material_max_flowrate = 12 material_print_temperature = =default_material_print_temperature + 10 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg index c84c2fb66ec..0fd04cc7acf 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg @@ -15,7 +15,7 @@ weight = 1 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_enable = False +prime_tower_mode = none retraction_prime_speed = =retraction_speed speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg index 2aa24f805d7..8ec8119ef6a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg @@ -43,7 +43,7 @@ material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 14 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg index 47687fb5be8..22e6f06262e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg @@ -15,7 +15,7 @@ weight = 0 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_enable = False +prime_tower_mode = none retraction_prime_speed = =retraction_speed speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg index 151af3ed50e..090d3a4839f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg @@ -43,7 +43,7 @@ material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 14 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg index 56c097d8902..18434874c12 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg @@ -44,7 +44,7 @@ material_max_flowrate = 14 material_print_temperature = =default_material_print_temperature + 5 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg index c2d04c9bade..ff96a0df68a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg @@ -17,7 +17,7 @@ brim_width = 14 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 20 -prime_tower_enable = True +prime_tower_mode = normal retraction_hop = 0.1 retraction_hop_enabled = False speed_print = 50 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg index caf16e5f940..a3d9b394b9b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg @@ -17,7 +17,7 @@ brim_width = 14 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 17 -prime_tower_enable = True +prime_tower_mode = normal retraction_hop = 0.1 retraction_hop_enabled = False speed_print = 50 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg index 1cd46fab48d..dc46682c392 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg @@ -17,7 +17,7 @@ brim_width = 14 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 15 -prime_tower_enable = True +prime_tower_mode = normal retraction_hop = 0.1 retraction_hop_enabled = False speed_infill = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg index f9ee324f336..f2ea43800e4 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg @@ -14,7 +14,7 @@ weight = -2 [values] brim_width = 15 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = True +prime_tower_mode = normal speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg index f883fe19987..58193faaaf2 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg @@ -14,7 +14,7 @@ weight = -3 [values] brim_width = 15 material_print_temperature = =default_material_print_temperature + 12 -prime_tower_enable = True +prime_tower_mode = normal speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg index a5c059c5e6f..7e58326c02d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg @@ -14,7 +14,7 @@ weight = -4 [values] brim_width = 15 material_print_temperature = =default_material_print_temperature + 15 -prime_tower_enable = True +prime_tower_mode = normal speed_infill = =math.ceil(speed_print * 33 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 30 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg index e7d656dcc4f..5b33c9854fe 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg @@ -17,7 +17,7 @@ machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 5 ooze_shield_angle = 40 -prime_tower_enable = True +prime_tower_mode = normal raft_airgap = 0.45 support_angle = 70 switch_extruder_prime_speed = 30 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg index 08c1f4933b9..6ac1edf4e92 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg @@ -17,7 +17,7 @@ machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 5 ooze_shield_angle = 40 -prime_tower_enable = True +prime_tower_mode = normal raft_airgap = 0.45 support_angle = 70 switch_extruder_prime_speed = 30 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg index c4d2894885d..536a00cc009 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg @@ -17,7 +17,7 @@ machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 5 ooze_shield_angle = 40 -prime_tower_enable = True +prime_tower_mode = normal raft_airgap = 0.45 support_angle = 70 switch_extruder_prime_speed = 30 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg index d901c6c0dd7..539a8c5a7ce 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg @@ -15,7 +15,7 @@ weight = -2 brim_width = 7 cool_fan_speed = 20 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_enable = True +prime_tower_mode = normal speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg index 02798823463..bf923543102 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg @@ -15,7 +15,7 @@ weight = -3 brim_width = 7 cool_fan_speed = 20 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_enable = True +prime_tower_mode = normal speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg index 373d6a0b789..138369ef63c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg @@ -15,7 +15,7 @@ weight = -4 brim_width = 7 cool_fan_speed = 20 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_enable = True +prime_tower_mode = normal speed_infill = =math.ceil(speed_print * 33 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 30 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg index 1feae070fcb..a3935c55f7e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg @@ -16,7 +16,7 @@ gradual_infill_step_height = =3 * layer_height machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = True +prime_tower_mode = normal speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg index f93f0848db1..9f7162abe09 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg @@ -16,7 +16,7 @@ gradual_infill_step_height = =3 * layer_height machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = True +prime_tower_mode = normal speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg index 67f9cdfcf02..997095fcbf8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg @@ -16,7 +16,7 @@ gradual_infill_step_height = =3 * layer_height machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 15 -prime_tower_enable = True +prime_tower_mode = normal speed_infill = =math.ceil(speed_print * 35 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg index 163f32a36da..1c681aaeb2a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg @@ -18,7 +18,7 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature + 11 multiple_mesh_overlap = 0.2 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_flow = 100 prime_tower_min_volume = 10 retraction_count_max = 15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg index 3f75c3366e8..e054336e240 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg @@ -18,7 +18,7 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature + 13 multiple_mesh_overlap = 0.2 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_flow = 100 prime_tower_min_volume = 15 retraction_count_max = 15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg index b2c5dab3c45..3afea841d36 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg @@ -18,7 +18,7 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature + 15 multiple_mesh_overlap = 0.2 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_flow = 100 prime_tower_min_volume = 20 retraction_count_max = 15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg index 1f706632ce9..a59a80d04a3 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg @@ -17,7 +17,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = False +prime_tower_mode = none speed_print = 45 speed_topbottom = =round(speed_print * 35 / 45) speed_wall = =round(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg index b1437e9160e..c8407226819 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg @@ -17,7 +17,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 15 -prime_tower_enable = False +prime_tower_mode = none speed_infill = =math.ceil(speed_print * 30 / 35) speed_print = 35 speed_topbottom = =math.ceil(speed_print * 20 / 35) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg index 7c3c4ff6e91..18655899918 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg @@ -17,7 +17,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 15 -prime_tower_enable = False +prime_tower_mode = none speed_infill = =math.ceil(speed_print * 30 / 30) speed_print = 30 speed_topbottom = =math.ceil(speed_print * 20 / 30) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg index 75949f45aa3..709e7985021 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg @@ -21,7 +21,7 @@ material_flow = 105 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 4 multiple_mesh_overlap = 0.2 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_flow = 100 retraction_count_max = 15 retraction_extra_prime_amount = 0.5 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg index 034bda5d09e..12aac8dcd52 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg @@ -22,7 +22,7 @@ material_flow = 105 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 2 multiple_mesh_overlap = 0.2 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_flow = 100 retraction_count_max = 15 retraction_extra_prime_amount = 0.5 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg index e7189d54674..8958aa30c07 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg @@ -21,7 +21,7 @@ material_final_print_temperature = =material_print_temperature - 10 material_flow = 105 material_initial_print_temperature = =material_print_temperature - 10 multiple_mesh_overlap = 0.2 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_flow = 100 retraction_count_max = 15 retraction_extra_prime_amount = 0.5 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg index 9d7b4455d6f..79f23f9c2c8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg @@ -47,7 +47,7 @@ material_max_flowrate = 22 material_print_temperature = =default_material_print_temperature + 5 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_enable = True +prime_tower_mode = normal raft_airgap = 0.15 retraction_amount = 4 retraction_prime_speed = 15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg index e2a5c54c66d..a187dc31798 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg @@ -44,7 +44,7 @@ material_flow = 93 material_max_flowrate = 22 material_print_temperature = =default_material_print_temperature + 7 optimize_wall_printing_order = False -prime_tower_enable = True +prime_tower_mode = normal raft_airgap = 0.15 retraction_amount = 4 retraction_prime_speed = 15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg index 26d3dc7fb8f..cc2c57bcff5 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg @@ -44,7 +44,7 @@ material_flow = 93 material_max_flowrate = 22 material_print_temperature = =default_material_print_temperature + 10 optimize_wall_printing_order = False -prime_tower_enable = True +prime_tower_mode = normal raft_airgap = 0.15 retraction_amount = 4 retraction_prime_speed = 15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg index b1dae1cb7a9..9649f71775e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg @@ -47,7 +47,7 @@ material_max_flowrate = 23 material_print_temperature = =default_material_print_temperature - 5 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_enable = True +prime_tower_mode = normal retraction_amount = 3.5 retraction_prime_speed = 15 retraction_speed = 45 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg index 4d4ffa00591..a0d9dbdee79 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg @@ -46,7 +46,7 @@ material_flow = 93 material_max_flowrate = 23 material_print_temperature = =default_material_print_temperature - 5 optimize_wall_printing_order = False -prime_tower_enable = True +prime_tower_mode = normal retraction_amount = 3.5 retraction_prime_speed = 15 retraction_speed = 45 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg index 5cc6a43e132..840008f60d5 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg @@ -46,7 +46,7 @@ material_flow = 93 material_max_flowrate = 23 material_print_temperature = =default_material_print_temperature - 5 optimize_wall_printing_order = False -prime_tower_enable = True +prime_tower_mode = normal retraction_amount = 3.5 retraction_prime_speed = 15 retraction_speed = 45 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg index 59f8409483d..c0719e38b3b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg @@ -47,7 +47,7 @@ material_max_flowrate = 15 material_print_temperature = =default_material_print_temperature + 10 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_enable = True +prime_tower_mode = normal raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg index a4cdd898f1f..8f045a1238d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg @@ -44,7 +44,7 @@ material_flow = 93 material_max_flowrate = 15 material_print_temperature = =default_material_print_temperature + 10 optimize_wall_printing_order = False -prime_tower_enable = True +prime_tower_mode = normal raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg index 79dc105f863..b1e8b913fdd 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg @@ -44,7 +44,7 @@ material_flow = 93 material_max_flowrate = 15 material_print_temperature = =default_material_print_temperature + 15 optimize_wall_printing_order = False -prime_tower_enable = True +prime_tower_mode = normal raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg index a76864a1a3c..176cfb2cb2a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg @@ -47,7 +47,7 @@ material_max_flowrate = 17 material_print_temperature = =default_material_print_temperature + 10 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_enable = True +prime_tower_mode = normal raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg index d3642327268..404435e21b4 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg @@ -44,7 +44,7 @@ material_flow = 93 material_max_flowrate = 17 material_print_temperature = =default_material_print_temperature + 15 optimize_wall_printing_order = False -prime_tower_enable = True +prime_tower_mode = normal raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg index 02a71fa9b71..76724ad9581 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg @@ -44,7 +44,7 @@ material_flow = 93 material_max_flowrate = 17 material_print_temperature = =default_material_print_temperature + 15 optimize_wall_printing_order = False -prime_tower_enable = True +prime_tower_mode = normal raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg index 12b815d5ab9..b69ddd1011c 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg @@ -15,7 +15,7 @@ weight = 1 brim_replaces_support = False cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) material_print_temperature = =default_material_print_temperature - 5 -prime_tower_enable = False +prime_tower_mode = none retraction_count_max = 5 skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_infill_sparse_thickness = =3 * layer_height diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg index 5390b3ecb7f..67a101d2bc4 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg @@ -14,7 +14,7 @@ weight = -1 [values] brim_replaces_support = False cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -prime_tower_enable = False +prime_tower_mode = none retraction_count_max = 5 skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_infill_sparse_thickness = =2 * layer_height diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg index b15b5958a77..66c0486b0f8 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg @@ -15,7 +15,7 @@ weight = 0 brim_replaces_support = False cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) material_print_temperature = =default_material_print_temperature - 5 -prime_tower_enable = False +prime_tower_mode = none retraction_count_max = 5 skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_infill_sparse_thickness = =2 * layer_height diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg index e273e85eb50..6e36d9578fc 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg @@ -15,7 +15,7 @@ weight = -2 brim_replaces_support = False cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) material_print_temperature = =default_material_print_temperature + 5 -prime_tower_enable = False +prime_tower_mode = none retraction_count_max = 5 skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_interface_enable = True diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg index ea2902cd6c8..9b81b09599d 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg @@ -18,7 +18,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = True +prime_tower_mode = normal speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg index bbbad9be1fe..e596c6fcd08 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg @@ -18,7 +18,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = True +prime_tower_mode = normal speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg index 300e2ebaedb..5c9671c99e0 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg @@ -18,7 +18,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = True +prime_tower_mode = normal speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg index 84040ede4ea..872368142ca 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg @@ -18,7 +18,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = True +prime_tower_mode = normal speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg index 402ae15ebae..2b76474e5fc 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg @@ -18,7 +18,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = True +prime_tower_mode = normal speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg index 0c9154a2334..dc841082982 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg @@ -18,7 +18,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = True +prime_tower_mode = normal speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg index e7b72d6cd09..3706d834246 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg @@ -18,7 +18,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = True +prime_tower_mode = normal speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg index 38c857de5e9..6e03ebd7e56 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg @@ -18,7 +18,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = True +prime_tower_mode = normal speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg index 57791421620..dd81027cfbf 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg @@ -20,7 +20,7 @@ machine_min_cool_heat_time_window = 15 material_print_temperature = =default_material_print_temperature - 10 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg index 64b1be79aa9..82df5e1ad83 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg @@ -21,7 +21,7 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 2 multiple_mesh_overlap = 0 -prime_tower_enable = False +prime_tower_mode = none prime_tower_size = 16 prime_tower_wipe_enabled = True retraction_count_max = 15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg index 573b758705b..f96f28e71f5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg @@ -16,7 +16,7 @@ machine_nozzle_cool_down_speed = 0.8 machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 20 material_print_temperature = =default_material_print_temperature - 10 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.15 speed_infill = =math.ceil(speed_print * 40 / 50) speed_print = 50 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg index 926ef499223..9cc0a12b5a0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg @@ -15,7 +15,7 @@ weight = -1 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 20 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.15 speed_infill = =math.ceil(speed_print * 45 / 60) speed_print = 60 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg index 598e83d9222..651c780d321 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg @@ -16,7 +16,7 @@ machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 20 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.15 speed_infill = =math.ceil(speed_print * 40 / 55) speed_print = 55 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg index 5f5e9e2fd3c..28bd4cddfff 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg @@ -16,7 +16,7 @@ machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 20 material_print_temperature = =default_material_print_temperature + 5 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.15 speed_infill = =math.ceil(speed_print * 50 / 60) speed_print = 60 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg index 8656a280676..49e70ecb1c8 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg @@ -16,7 +16,7 @@ weight = -3 machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 20 material_print_temperature = =default_material_print_temperature + 7 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.15 support_bottom_distance = =support_z_distance support_interface_enable = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg index a4381e0e3b7..b2dd10f321b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg @@ -15,7 +15,7 @@ weight = -1 brim_replaces_support = False machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 +prime_tower_mode = ='normal' if (min(extruderValues('material_surface_energy')) < 100) else 'none' speed_print = 80 speed_topbottom = =math.ceil(speed_print * 30 / 80) speed_wall = =math.ceil(speed_print * 40 / 80) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg index 5f4c480fa4b..ba704aa34b9 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg @@ -15,7 +15,7 @@ weight = 0 brim_replaces_support = False machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 +prime_tower_mode = ='normal' if (min(extruderValues('material_surface_energy')) < 100) else 'none' support_angle = 45 support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height support_infill_sparse_thickness = =2 * layer_height diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg index 9e3c0153b17..ccccb2d3e83 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg @@ -16,7 +16,7 @@ brim_replaces_support = False machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 -prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 +prime_tower_mode = ='normal' if (min(extruderValues('material_surface_energy')) < 100) else 'none' speed_topbottom = =math.ceil(speed_print * 35 / 70) speed_wall = =math.ceil(speed_print * 50 / 70) speed_wall_0 = =math.ceil(speed_wall * 35 / 50) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg index bd4e13ebaf6..cc6e8f94535 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg @@ -17,7 +17,7 @@ brim_replaces_support = False machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 -prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 +prime_tower_mode = ='normal' if (min(extruderValues('material_surface_energy')) < 100) else 'none' speed_topbottom = =math.ceil(speed_print * 35 / 70) speed_wall = =math.ceil(speed_print * 50 / 70) speed_wall_0 = =math.ceil(speed_wall * 35 / 50) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg index a77d1b42335..0b11bc463b6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg @@ -18,7 +18,7 @@ machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 8 multiple_mesh_overlap = 0 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_wipe_enabled = True retraction_hop = 0.2 retraction_hop_enabled = False diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg index 805fb08ead6..476cdad5ce2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg @@ -15,7 +15,7 @@ weight = -1 infill_wipe_dist = 0 machine_min_cool_heat_time_window = 15 multiple_mesh_overlap = 0 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_wipe_enabled = True retraction_hop = 0.2 retraction_hop_enabled = False diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg index 77f775d6723..6a18d6a8590 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg @@ -18,7 +18,7 @@ machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 5 multiple_mesh_overlap = 0 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_wipe_enabled = True retraction_hop = 0.2 retraction_hop_enabled = False diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg index 877c48c42d9..dcd01b10841 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg @@ -15,7 +15,7 @@ weight = -2 infill_wipe_dist = 0 machine_min_cool_heat_time_window = 15 multiple_mesh_overlap = 0 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_wipe_enabled = True retraction_hop = 0.2 retraction_hop_enabled = False diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg index 0b471a8c75b..a28ac8382ea 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg @@ -21,7 +21,7 @@ machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 20 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg index 6c9710e4362..1ed3ad4ab3c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg @@ -20,7 +20,7 @@ machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg index 945b77e6996..bfc007fd858 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg @@ -21,7 +21,7 @@ machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 10 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg index b523e3c6466..b8ad1d3747d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg @@ -20,7 +20,7 @@ machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg index f34549bc781..e724f809d58 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg @@ -15,7 +15,7 @@ weight = 1 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 retraction_prime_speed = =retraction_speed speed_print = 50 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg index 4a9e914b99d..2cce79480c1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg @@ -14,7 +14,7 @@ weight = -1 [values] machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 retraction_prime_speed = =retraction_speed speed_print = 70 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg index dc73f13bb55..5a730aba3a8 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg @@ -14,7 +14,7 @@ weight = 0 [values] machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 retraction_prime_speed = =retraction_speed support_bottom_distance = =support_z_distance diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg index ead512bb507..a1bde9d68db 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg @@ -18,7 +18,7 @@ infill_sparse_density = 15 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 retraction_prime_speed = =retraction_speed speed_topbottom = =math.ceil(speed_print * 40 / 70) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg index c6641e7a08e..e0070ff73ba 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg @@ -22,7 +22,7 @@ infill_sparse_density = 15 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 retraction_prime_speed = =retraction_speed speed_print = 50 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg index 85e892628d5..a3929187385 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg @@ -21,7 +21,7 @@ machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 multiple_mesh_overlap = 0 -prime_tower_enable = False +prime_tower_mode = none prime_tower_size = 16 prime_tower_wipe_enabled = True retraction_count_max = 15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg index 531f946ba81..8e59e505fdc 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg @@ -22,7 +22,7 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 2 multiple_mesh_overlap = 0 -prime_tower_enable = False +prime_tower_mode = none prime_tower_size = 16 prime_tower_wipe_enabled = True retraction_count_max = 15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg index a7f63a76b12..263cee30dd0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg @@ -22,7 +22,7 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature + 8 multiple_mesh_overlap = 0 -prime_tower_enable = False +prime_tower_mode = none prime_tower_size = 16 prime_tower_wipe_enabled = True retraction_count_max = 15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg index cf7a8335b86..2bf08e3489b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg @@ -15,7 +15,7 @@ weight = 1 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_enable = False +prime_tower_mode = none retraction_prime_speed = =retraction_speed speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg index a7dcb611285..3b44a9eb373 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg @@ -14,7 +14,7 @@ weight = -1 [values] machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_enable = False +prime_tower_mode = none retraction_prime_speed = =retraction_speed speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg index f053b33478d..3167f395637 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg @@ -15,7 +15,7 @@ weight = 0 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_enable = False +prime_tower_mode = none retraction_prime_speed = =retraction_speed speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg index 4e98b6005ae..238468f784c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg @@ -14,7 +14,7 @@ weight = -2 [values] machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_enable = False +prime_tower_mode = none retraction_prime_speed = =retraction_speed speed_print = 50 speed_roofing = =math.ceil(speed_wall * 20 / 24) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg index 5c6ed285489..208277dc9b7 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg @@ -22,7 +22,7 @@ infill_sparse_density = 15 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 retraction_prime_speed = =retraction_speed speed_print = 50 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg index a69ff33f76f..3f8300e24be 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg @@ -16,7 +16,7 @@ machine_nozzle_cool_down_speed = 0.8 machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 20 material_print_temperature = =default_material_print_temperature - 10 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.15 speed_infill = =math.ceil(speed_print * 40 / 50) speed_print = 50 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg index 9c7ceca13b1..cf2437cc2ae 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg @@ -43,7 +43,7 @@ material_extrusion_cool_down_speed = 0.8 material_max_flowrate = 20 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.15 retraction_amount = 6.5 retraction_prime_speed = 15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg index ca659622cbb..a0c9d24dab4 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg @@ -16,7 +16,7 @@ machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 20 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.15 speed_infill = =math.ceil(speed_print * 40 / 55) speed_print = 55 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg index f430e6bc16c..7ae2965c0f8 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg @@ -44,7 +44,7 @@ material_max_flowrate = 20 material_print_temperature = =default_material_print_temperature + 5 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.15 retraction_amount = 6.5 retraction_prime_speed = 15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg index 98ca8927b65..769405708db 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg @@ -44,7 +44,7 @@ material_max_flowrate = 20 material_print_temperature = =default_material_print_temperature + 7 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.15 retraction_amount = 6.5 retraction_prime_speed = 15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg index 201c663d5c2..5eb8c228c62 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg @@ -43,7 +43,7 @@ material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 20 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_enable = False +prime_tower_mode = none retraction_amount = 8 retraction_prime_speed = 15 retraction_speed = 45 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg index 55696eccb4b..125ceab2d70 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg @@ -44,7 +44,7 @@ material_max_flowrate = 20 material_print_temperature = =default_material_print_temperature + 5 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_enable = False +prime_tower_mode = none retraction_amount = 8 retraction_prime_speed = 15 retraction_speed = 45 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg index fe3eeb67ad0..dda28b98dd6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg @@ -44,7 +44,7 @@ material_max_flowrate = 20 material_print_temperature = =default_material_print_temperature + 5 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_enable = False +prime_tower_mode = none retraction_amount = 8 retraction_prime_speed = 15 retraction_speed = 45 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg index c2bb123d04d..fc03e3f464d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg @@ -15,7 +15,7 @@ weight = 1 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 retraction_prime_speed = =retraction_speed speed_print = 50 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg index 713f94219f3..8e77d8d49f5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg @@ -43,7 +43,7 @@ material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 12 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg index 1e2820f565a..1459cec327a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg @@ -14,7 +14,7 @@ weight = 0 [values] machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 retraction_prime_speed = =retraction_speed support_bottom_distance = =support_z_distance diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg index 02d22b06b8b..d2a1d5a176a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg @@ -44,7 +44,7 @@ material_max_flowrate = 12 material_print_temperature = =default_material_print_temperature + 5 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg index b0d5d41d0f6..7cffc4b1047 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg @@ -44,7 +44,7 @@ material_max_flowrate = 12 material_print_temperature = =default_material_print_temperature + 10 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg index 595de835ba7..e4ab6230a74 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg @@ -15,7 +15,7 @@ weight = 1 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_enable = False +prime_tower_mode = none retraction_prime_speed = =retraction_speed speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg index 55e724da9d4..f4f251df8cc 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg @@ -43,7 +43,7 @@ material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 14 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg index 07c97a632f4..902e921ce37 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg @@ -15,7 +15,7 @@ weight = 0 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_enable = False +prime_tower_mode = none retraction_prime_speed = =retraction_speed speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg index ee0ee279e6b..cc3bdb2234d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg @@ -43,7 +43,7 @@ material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 14 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg index 875bd5a669c..9e10ff65b0a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg @@ -44,7 +44,7 @@ material_max_flowrate = 14 material_print_temperature = =default_material_print_temperature + 5 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_enable = False +prime_tower_mode = none raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg index 0dd369e4dd3..a7877d90e1e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg @@ -17,7 +17,7 @@ brim_width = 14 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 20 -prime_tower_enable = True +prime_tower_mode = normal retraction_hop = 0.1 retraction_hop_enabled = False speed_print = 50 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg index e6ce183f4a6..2b5b521f025 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg @@ -17,7 +17,7 @@ brim_width = 14 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 17 -prime_tower_enable = True +prime_tower_mode = normal retraction_hop = 0.1 retraction_hop_enabled = False speed_print = 50 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg index 0c3abc6e3fc..ff9a049f7e8 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg @@ -17,7 +17,7 @@ brim_width = 14 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 15 -prime_tower_enable = True +prime_tower_mode = normal retraction_hop = 0.1 retraction_hop_enabled = False speed_infill = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg index eb6e07e0806..a3340f81a85 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg @@ -14,7 +14,7 @@ weight = -2 [values] brim_width = 15 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = True +prime_tower_mode = normal speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg index e7958d98416..7c80d16f247 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg @@ -14,7 +14,7 @@ weight = -3 [values] brim_width = 15 material_print_temperature = =default_material_print_temperature + 12 -prime_tower_enable = True +prime_tower_mode = normal speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg index 0683b2959bd..18ec3e9dbe0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg @@ -14,7 +14,7 @@ weight = -4 [values] brim_width = 15 material_print_temperature = =default_material_print_temperature + 15 -prime_tower_enable = True +prime_tower_mode = normal speed_infill = =math.ceil(speed_print * 33 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 30 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg index 5a774e07508..798db0dfc8f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg @@ -17,7 +17,7 @@ machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 5 ooze_shield_angle = 40 -prime_tower_enable = True +prime_tower_mode = normal raft_airgap = 0.45 support_angle = 70 switch_extruder_prime_speed = 30 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg index bed4ac46d7f..86d6130a706 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg @@ -17,7 +17,7 @@ machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 5 ooze_shield_angle = 40 -prime_tower_enable = True +prime_tower_mode = normal raft_airgap = 0.45 support_angle = 70 switch_extruder_prime_speed = 30 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg index a0d58757da8..2d9c3ebabe3 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg @@ -17,7 +17,7 @@ machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 5 ooze_shield_angle = 40 -prime_tower_enable = True +prime_tower_mode = normal raft_airgap = 0.45 support_angle = 70 switch_extruder_prime_speed = 30 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg index 6208ad9bec5..7f51af7154c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg @@ -15,7 +15,7 @@ weight = -2 brim_width = 7 cool_fan_speed = 20 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_enable = True +prime_tower_mode = normal speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg index 98b0d3f5f8c..81d08397f37 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg @@ -15,7 +15,7 @@ weight = -3 brim_width = 7 cool_fan_speed = 20 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_enable = True +prime_tower_mode = normal speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg index 156113b809c..689455183f4 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg @@ -15,7 +15,7 @@ weight = -4 brim_width = 7 cool_fan_speed = 20 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_enable = True +prime_tower_mode = normal speed_infill = =math.ceil(speed_print * 33 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 30 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg index 10bf06fbb5c..d00e5235ba9 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg @@ -16,7 +16,7 @@ gradual_infill_step_height = =3 * layer_height machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = True +prime_tower_mode = normal speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg index 1a63005ced6..a22439011e6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg @@ -16,7 +16,7 @@ gradual_infill_step_height = =3 * layer_height machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = True +prime_tower_mode = normal speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg index 5e22cee246e..7a97620cb4b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg @@ -16,7 +16,7 @@ gradual_infill_step_height = =3 * layer_height machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 15 -prime_tower_enable = True +prime_tower_mode = normal speed_infill = =math.ceil(speed_print * 35 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg index 149104700e3..addcc8e504a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg @@ -18,7 +18,7 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature + 11 multiple_mesh_overlap = 0.2 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_flow = 100 prime_tower_min_volume = 10 retraction_count_max = 15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg index 670ec78d512..dde38061cad 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg @@ -18,7 +18,7 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature + 13 multiple_mesh_overlap = 0.2 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_flow = 100 prime_tower_min_volume = 15 retraction_count_max = 15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg index c9b5c26d64b..bab23c5ee14 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg @@ -18,7 +18,7 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature + 15 multiple_mesh_overlap = 0.2 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_flow = 100 prime_tower_min_volume = 20 retraction_count_max = 15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg index 26c20268eac..1c5161a635b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg @@ -17,7 +17,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = False +prime_tower_mode = none speed_print = 45 speed_topbottom = =round(speed_print * 35 / 45) speed_wall = =round(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg index cc28dc51505..0a4c4ad2c7c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg @@ -17,7 +17,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 15 -prime_tower_enable = False +prime_tower_mode = none speed_infill = =math.ceil(speed_print * 30 / 35) speed_print = 35 speed_topbottom = =math.ceil(speed_print * 20 / 35) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg index eb338d1e1db..2fc8aaf7462 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg @@ -17,7 +17,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 15 -prime_tower_enable = False +prime_tower_mode = none speed_infill = =math.ceil(speed_print * 30 / 30) speed_print = 30 speed_topbottom = =math.ceil(speed_print * 20 / 30) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg index 43436cd4c73..132a0e07606 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg @@ -21,7 +21,7 @@ material_flow = 105 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 4 multiple_mesh_overlap = 0.2 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_flow = 100 retraction_count_max = 15 retraction_extra_prime_amount = 0.5 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg index 58b524dd2a1..c0b54402f2b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg @@ -22,7 +22,7 @@ material_flow = 105 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 2 multiple_mesh_overlap = 0.2 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_flow = 100 retraction_count_max = 15 retraction_extra_prime_amount = 0.5 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg index d17ec5486a2..076f3df4376 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg @@ -21,7 +21,7 @@ material_final_print_temperature = =material_print_temperature - 10 material_flow = 105 material_initial_print_temperature = =material_print_temperature - 10 multiple_mesh_overlap = 0.2 -prime_tower_enable = True +prime_tower_mode = normal prime_tower_flow = 100 retraction_count_max = 15 retraction_extra_prime_amount = 0.5 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg index 9ba4a38c6e7..e308015dd81 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg @@ -47,7 +47,7 @@ material_max_flowrate = 22 material_print_temperature = =default_material_print_temperature + 5 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_enable = True +prime_tower_mode = normal raft_airgap = 0.15 retraction_amount = 4 retraction_prime_speed = 15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg index 4ab74980ef0..3d7cabe23d1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg @@ -44,7 +44,7 @@ material_flow = 93 material_max_flowrate = 22 material_print_temperature = =default_material_print_temperature + 7 optimize_wall_printing_order = False -prime_tower_enable = True +prime_tower_mode = normal raft_airgap = 0.15 retraction_amount = 4 retraction_prime_speed = 15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg index 269d51dd4b5..f7ab03fac0a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg @@ -44,7 +44,7 @@ material_flow = 93 material_max_flowrate = 22 material_print_temperature = =default_material_print_temperature + 10 optimize_wall_printing_order = False -prime_tower_enable = True +prime_tower_mode = normal raft_airgap = 0.15 retraction_amount = 4 retraction_prime_speed = 15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg index 4f56167ffde..692f4f8aa77 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg @@ -47,7 +47,7 @@ material_max_flowrate = 23 material_print_temperature = =default_material_print_temperature - 5 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_enable = True +prime_tower_mode = normal retraction_amount = 3.5 retraction_prime_speed = 15 retraction_speed = 45 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg index 9fdf9a665b1..93e4e071f5d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg @@ -46,7 +46,7 @@ material_flow = 93 material_max_flowrate = 23 material_print_temperature = =default_material_print_temperature - 5 optimize_wall_printing_order = False -prime_tower_enable = True +prime_tower_mode = normal retraction_amount = 3.5 retraction_prime_speed = 15 retraction_speed = 45 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg index 3368ae6e2d2..592c835689b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg @@ -46,7 +46,7 @@ material_flow = 93 material_max_flowrate = 23 material_print_temperature = =default_material_print_temperature - 5 optimize_wall_printing_order = False -prime_tower_enable = True +prime_tower_mode = normal retraction_amount = 3.5 retraction_prime_speed = 15 retraction_speed = 45 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg index ca93df9dc10..fd0b6da1304 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg @@ -47,7 +47,7 @@ material_max_flowrate = 15 material_print_temperature = =default_material_print_temperature + 10 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_enable = True +prime_tower_mode = normal raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg index 4461ae07724..a6b7ac04396 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg @@ -44,7 +44,7 @@ material_flow = 93 material_max_flowrate = 15 material_print_temperature = =default_material_print_temperature + 10 optimize_wall_printing_order = False -prime_tower_enable = True +prime_tower_mode = normal raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg index 1acdad53a0c..c873edfacb1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg @@ -44,7 +44,7 @@ material_flow = 93 material_max_flowrate = 15 material_print_temperature = =default_material_print_temperature + 15 optimize_wall_printing_order = False -prime_tower_enable = True +prime_tower_mode = normal raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg index 4973ec35bbc..413903a8e88 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg @@ -47,7 +47,7 @@ material_max_flowrate = 17 material_print_temperature = =default_material_print_temperature + 10 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_enable = True +prime_tower_mode = normal raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg index 2bcf3fa82d4..f0c51693895 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg @@ -44,7 +44,7 @@ material_flow = 93 material_max_flowrate = 17 material_print_temperature = =default_material_print_temperature + 15 optimize_wall_printing_order = False -prime_tower_enable = True +prime_tower_mode = normal raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg index 3e4693c115f..cb12b8740cd 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg @@ -44,7 +44,7 @@ material_flow = 93 material_max_flowrate = 17 material_print_temperature = =default_material_print_temperature + 15 optimize_wall_printing_order = False -prime_tower_enable = True +prime_tower_mode = normal raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg index 2bc28f4c1a0..022e91ed9f0 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg @@ -15,7 +15,7 @@ weight = 1 brim_replaces_support = False cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) material_print_temperature = =default_material_print_temperature - 5 -prime_tower_enable = False +prime_tower_mode = none retraction_count_max = 5 skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_infill_sparse_thickness = =3 * layer_height diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg index f5b8c352984..40cf72eff4a 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg @@ -14,7 +14,7 @@ weight = -1 [values] brim_replaces_support = False cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -prime_tower_enable = False +prime_tower_mode = none retraction_count_max = 5 skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_infill_sparse_thickness = =2 * layer_height diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg index 6457f97c9c9..8b5a3e9f678 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg @@ -15,7 +15,7 @@ weight = 0 brim_replaces_support = False cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) material_print_temperature = =default_material_print_temperature - 5 -prime_tower_enable = False +prime_tower_mode = none retraction_count_max = 5 skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_infill_sparse_thickness = =2 * layer_height diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg index eef90f5f17c..1ff95a0e3b7 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg @@ -15,7 +15,7 @@ weight = -2 brim_replaces_support = False cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) material_print_temperature = =default_material_print_temperature + 5 -prime_tower_enable = False +prime_tower_mode = none retraction_count_max = 5 skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_interface_enable = True diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg index e1862ce3c41..58796a07a47 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg @@ -16,7 +16,7 @@ weight = -3 brim_replaces_support = False cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) material_print_temperature = =default_material_print_temperature - 5 -prime_tower_enable = False +prime_tower_mode = none retraction_count_max = 5 skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_infill_sparse_thickness = 0.3 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg index 8b807c1eb5f..b7d9b2a05f0 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg @@ -18,7 +18,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = True +prime_tower_mode = normal speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg index ebc58413e2a..e3e8d486b08 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg @@ -18,7 +18,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = True +prime_tower_mode = normal speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg index 1204be4c15e..f01921353b9 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg @@ -18,7 +18,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = True +prime_tower_mode = normal speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg index 6a7d52af4b3..0a1cc1204da 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg @@ -18,7 +18,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = True +prime_tower_mode = normal speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg index 40d414cbcb6..4437f2c5315 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg @@ -18,7 +18,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = True +prime_tower_mode = normal speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg index 6144a2c3f03..3796177bc5f 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg @@ -18,7 +18,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = True +prime_tower_mode = normal speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg index 5bf5d910e81..1ec49116767 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg @@ -18,7 +18,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = True +prime_tower_mode = normal speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg index 21407b6e66a..36b56b65130 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg @@ -18,7 +18,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_enable = True +prime_tower_mode = normal speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/variants/liquid/liquid_vo08.inst.cfg b/resources/variants/liquid/liquid_vo08.inst.cfg index 58cbea1b9db..a69a0f806e9 100644 --- a/resources/variants/liquid/liquid_vo08.inst.cfg +++ b/resources/variants/liquid/liquid_vo08.inst.cfg @@ -37,7 +37,7 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 5 material_standby_temperature = 100 multiple_mesh_overlap = 0 -prime_tower_enable = False +prime_tower_mode = none prime_tower_wipe_enabled = True retract_at_layer_change = =not magic_spiralize retraction_amount = 3 diff --git a/resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg b/resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg index 4bf51a967ad..b66b984346e 100644 --- a/resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg @@ -14,7 +14,7 @@ layer_height_0 = 0.3 machine_nozzle_id = HT0.4 machine_nozzle_size = 0.4 machine_nozzle_tip_outer_diameter = 1.0 -prime_tower_enable = True +prime_tower_mode = normal retract_at_layer_change = False support_angle = 45 support_use_towers = True diff --git a/resources/variants/strateo3d/strateo3d_standard_04.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_04.inst.cfg index 3d705453d87..968c7c72626 100644 --- a/resources/variants/strateo3d/strateo3d_standard_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_04.inst.cfg @@ -14,7 +14,7 @@ layer_height_0 = 0.3 machine_nozzle_id = Standard 0.4 machine_nozzle_size = 0.4 machine_nozzle_tip_outer_diameter = 1.0 -prime_tower_enable = True +prime_tower_mode = normal retract_at_layer_change = False support_angle = 60 support_use_towers = True diff --git a/resources/variants/strateo3d/strateo3d_standard_06.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_06.inst.cfg index 3443f64531e..9b6d921d704 100644 --- a/resources/variants/strateo3d/strateo3d_standard_06.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_06.inst.cfg @@ -14,7 +14,7 @@ layer_height_0 = 0.4 machine_nozzle_id = Standard 0.6 machine_nozzle_size = 0.6 machine_nozzle_tip_outer_diameter = 1.5 -prime_tower_enable = True +prime_tower_mode = normal retract_at_layer_change = False support_angle = 55 support_use_towers = True diff --git a/resources/variants/strateo3d/strateo3d_standard_08.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_08.inst.cfg index f436ce1fe74..11ff582ef16 100644 --- a/resources/variants/strateo3d/strateo3d_standard_08.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_08.inst.cfg @@ -14,7 +14,7 @@ layer_height_0 = 0.5 machine_nozzle_id = Standard 0.8 machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 2.0 -prime_tower_enable = True +prime_tower_mode = normal retract_at_layer_change = True support_angle = 50 support_use_towers = True diff --git a/resources/variants/strateo3d/strateo3d_standard_10.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_10.inst.cfg index b957d58d9fe..c9d50d91c38 100644 --- a/resources/variants/strateo3d/strateo3d_standard_10.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_10.inst.cfg @@ -14,7 +14,7 @@ layer_height_0 = 0.6 machine_nozzle_id = Standard 1.0 Experimental machine_nozzle_size = 1.0 machine_nozzle_tip_outer_diameter = 2.5 -prime_tower_enable = True +prime_tower_mode = normal retract_at_layer_change = True support_angle = 50 support_use_towers = True diff --git a/resources/variants/strateo3d/strateo3d_standard_12.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_12.inst.cfg index 3a35f9c4a20..f1f03bfcb4d 100644 --- a/resources/variants/strateo3d/strateo3d_standard_12.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_12.inst.cfg @@ -14,7 +14,7 @@ layer_height_0 = 0.7 machine_nozzle_id = Standard 1.2 Experimental machine_nozzle_size = 1.2 machine_nozzle_tip_outer_diameter = 3.0 -prime_tower_enable = True +prime_tower_mode = normal retract_at_layer_change = True support_angle = 50 support_use_towers = True diff --git a/resources/variants/ultimaker3_aa0.8.inst.cfg b/resources/variants/ultimaker3_aa0.8.inst.cfg index 4190aab0cd1..baf5f4043a6 100644 --- a/resources/variants/ultimaker3_aa0.8.inst.cfg +++ b/resources/variants/ultimaker3_aa0.8.inst.cfg @@ -23,7 +23,7 @@ machine_nozzle_id = AA 0.8 machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 2.0 multiple_mesh_overlap = 0 -prime_tower_enable = False +prime_tower_mode = none prime_tower_wipe_enabled = True raft_surface_layers = 1 retraction_amount = 6.5 diff --git a/resources/variants/ultimaker3_bb0.8.inst.cfg b/resources/variants/ultimaker3_bb0.8.inst.cfg index 62227f50f65..5250dff5e92 100644 --- a/resources/variants/ultimaker3_bb0.8.inst.cfg +++ b/resources/variants/ultimaker3_bb0.8.inst.cfg @@ -26,7 +26,7 @@ machine_nozzle_id = BB 0.8 machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 2.0 multiple_mesh_overlap = 0 -prime_tower_enable = False +prime_tower_mode = none prime_tower_wipe_enabled = True raft_surface_layers = 1 retraction_hop = 2 diff --git a/resources/variants/ultimaker3_extended_aa0.8.inst.cfg b/resources/variants/ultimaker3_extended_aa0.8.inst.cfg index 941634e3a61..109cd55a9da 100644 --- a/resources/variants/ultimaker3_extended_aa0.8.inst.cfg +++ b/resources/variants/ultimaker3_extended_aa0.8.inst.cfg @@ -23,7 +23,7 @@ machine_nozzle_id = AA 0.8 machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 2.0 multiple_mesh_overlap = 0 -prime_tower_enable = False +prime_tower_mode = none prime_tower_wipe_enabled = True raft_surface_layers = 1 retraction_amount = 6.5 diff --git a/resources/variants/ultimaker3_extended_bb0.8.inst.cfg b/resources/variants/ultimaker3_extended_bb0.8.inst.cfg index 2a88f165e61..c40c69ff621 100644 --- a/resources/variants/ultimaker3_extended_bb0.8.inst.cfg +++ b/resources/variants/ultimaker3_extended_bb0.8.inst.cfg @@ -26,7 +26,7 @@ machine_nozzle_id = BB 0.8 machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 2.0 multiple_mesh_overlap = 0 -prime_tower_enable = False +prime_tower_mode = none prime_tower_wipe_enabled = True raft_surface_layers = 1 retraction_hop = 2 diff --git a/resources/variants/ultimaker_s3_aa0.8.inst.cfg b/resources/variants/ultimaker_s3_aa0.8.inst.cfg index c30365897b4..e8ac3c5714d 100644 --- a/resources/variants/ultimaker_s3_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s3_aa0.8.inst.cfg @@ -23,7 +23,7 @@ machine_nozzle_id = AA 0.8 machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 2.0 multiple_mesh_overlap = 0 -prime_tower_enable = False +prime_tower_mode = none prime_tower_wipe_enabled = True raft_surface_layers = 1 retraction_amount = 6.5 diff --git a/resources/variants/ultimaker_s3_bb0.8.inst.cfg b/resources/variants/ultimaker_s3_bb0.8.inst.cfg index 34e1b6d3083..ef97986a941 100644 --- a/resources/variants/ultimaker_s3_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s3_bb0.8.inst.cfg @@ -25,7 +25,7 @@ machine_nozzle_id = BB 0.8 machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 2.0 multiple_mesh_overlap = 0 -prime_tower_enable = False +prime_tower_mode = none prime_tower_wipe_enabled = True raft_surface_layers = 1 retraction_hop = 2 diff --git a/resources/variants/ultimaker_s5_aa0.8.inst.cfg b/resources/variants/ultimaker_s5_aa0.8.inst.cfg index b482c418f06..522723db861 100644 --- a/resources/variants/ultimaker_s5_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s5_aa0.8.inst.cfg @@ -23,7 +23,7 @@ machine_nozzle_id = AA 0.8 machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 2.0 multiple_mesh_overlap = 0 -prime_tower_enable = False +prime_tower_mode = none prime_tower_wipe_enabled = True raft_surface_layers = 1 retraction_amount = 6.5 diff --git a/resources/variants/ultimaker_s5_bb0.8.inst.cfg b/resources/variants/ultimaker_s5_bb0.8.inst.cfg index 660a6b10f48..3cdaa70171f 100644 --- a/resources/variants/ultimaker_s5_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s5_bb0.8.inst.cfg @@ -25,7 +25,7 @@ machine_nozzle_id = BB 0.8 machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 2.0 multiple_mesh_overlap = 0 -prime_tower_enable = False +prime_tower_mode = none prime_tower_wipe_enabled = True raft_surface_layers = 1 retraction_hop = 2 diff --git a/resources/variants/ultimaker_s7_aa0.8.inst.cfg b/resources/variants/ultimaker_s7_aa0.8.inst.cfg index a5b6a665165..ca6079aeb9e 100644 --- a/resources/variants/ultimaker_s7_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s7_aa0.8.inst.cfg @@ -23,7 +23,7 @@ machine_nozzle_id = AA 0.8 machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 2.0 multiple_mesh_overlap = 0 -prime_tower_enable = False +prime_tower_mode = none prime_tower_wipe_enabled = True raft_surface_layers = 1 retraction_amount = 6.5 diff --git a/resources/variants/ultimaker_s7_bb0.8.inst.cfg b/resources/variants/ultimaker_s7_bb0.8.inst.cfg index 6823fe18a4e..06eb01ee0ff 100644 --- a/resources/variants/ultimaker_s7_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s7_bb0.8.inst.cfg @@ -25,7 +25,7 @@ machine_nozzle_id = BB 0.8 machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 2.0 multiple_mesh_overlap = 0 -prime_tower_enable = False +prime_tower_mode = none prime_tower_wipe_enabled = True raft_surface_layers = 1 retraction_amount = 4.5 From 6c8ee8d98ac82d5e5b0f822f7756e226466a5065 Mon Sep 17 00:00:00 2001 From: wawanbreton Date: Fri, 16 Feb 2024 08:05:52 +0000 Subject: [PATCH 503/765] Applied printer-linter format --- resources/definitions/deltacomb_dc20flux.def.json | 2 +- resources/definitions/deltacomb_dc21flux.def.json | 2 +- resources/definitions/deltacomb_dc30flux.def.json | 2 +- resources/definitions/elegoo_neptune_2D.def.json | 2 +- resources/definitions/lotmaxx_sc60.def.json | 2 +- resources/definitions/strateo3d_IDEX420.def.json | 2 +- resources/definitions/ultimaker_method_base.def.json | 2 +- .../Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg | 2 +- .../tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg | 2 +- .../tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg | 2 +- .../tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg | 2 +- .../tizyx_evy_dual_global_Normal_Quality.inst.cfg | 2 +- .../tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg | 2 +- 42 files changed, 42 insertions(+), 42 deletions(-) diff --git a/resources/definitions/deltacomb_dc20flux.def.json b/resources/definitions/deltacomb_dc20flux.def.json index cc4a38c4d53..50f69636bd0 100644 --- a/resources/definitions/deltacomb_dc20flux.def.json +++ b/resources/definitions/deltacomb_dc20flux.def.json @@ -31,8 +31,8 @@ "material_final_print_temperature": { "value": "material_print_temperature" }, "material_initial_print_temperature": { "value": "material_print_temperature" }, "material_standby_temperature": { "value": "material_print_temperature" }, - "prime_tower_mode": { "value": "normal" }, "prime_tower_min_volume": { "value": "50" }, + "prime_tower_mode": { "value": "normal" }, "switch_extruder_retraction_amount": { "value": "0" } } } \ No newline at end of file diff --git a/resources/definitions/deltacomb_dc21flux.def.json b/resources/definitions/deltacomb_dc21flux.def.json index dd710af627d..e09fbeca636 100644 --- a/resources/definitions/deltacomb_dc21flux.def.json +++ b/resources/definitions/deltacomb_dc21flux.def.json @@ -31,8 +31,8 @@ "material_final_print_temperature": { "value": "material_print_temperature" }, "material_initial_print_temperature": { "value": "material_print_temperature" }, "material_standby_temperature": { "value": "material_print_temperature" }, - "prime_tower_mode": { "value": "normal" }, "prime_tower_min_volume": { "value": "50" }, + "prime_tower_mode": { "value": "normal" }, "switch_extruder_retraction_amount": { "value": "0" } } } \ No newline at end of file diff --git a/resources/definitions/deltacomb_dc30flux.def.json b/resources/definitions/deltacomb_dc30flux.def.json index 789af29650f..f59bf53a9af 100644 --- a/resources/definitions/deltacomb_dc30flux.def.json +++ b/resources/definitions/deltacomb_dc30flux.def.json @@ -31,8 +31,8 @@ "material_final_print_temperature": { "value": "material_print_temperature" }, "material_initial_print_temperature": { "value": "material_print_temperature" }, "material_standby_temperature": { "value": "material_print_temperature" }, - "prime_tower_mode": { "value": "normal" }, "prime_tower_min_volume": { "value": "50" }, + "prime_tower_mode": { "value": "normal" }, "switch_extruder_retraction_amount": { "value": "0" } } } \ No newline at end of file diff --git a/resources/definitions/elegoo_neptune_2D.def.json b/resources/definitions/elegoo_neptune_2D.def.json index e564acc036d..2d5ef0024ee 100644 --- a/resources/definitions/elegoo_neptune_2D.def.json +++ b/resources/definitions/elegoo_neptune_2D.def.json @@ -55,8 +55,8 @@ "settable_per_extruder": false }, "prime_blob_enable": { "default_value": false }, - "prime_tower_mode": { "default_value": "normal" }, "prime_tower_min_volume": { "default_value": 90 }, + "prime_tower_mode": { "default_value": "normal" }, "prime_tower_size": { "default_value": 30 }, "raft_airgap": { "default_value": 0.25 }, "raft_margin": { "default_value": 5 }, diff --git a/resources/definitions/lotmaxx_sc60.def.json b/resources/definitions/lotmaxx_sc60.def.json index 697dd911b61..89eeac9b755 100644 --- a/resources/definitions/lotmaxx_sc60.def.json +++ b/resources/definitions/lotmaxx_sc60.def.json @@ -44,8 +44,8 @@ "machine_width": { "default_value": 235 }, "meshfix_maximum_resolution": { "value": 0.25 }, "optimize_wall_printing_order": { "value": true }, - "prime_tower_mode": { "value": "normal" }, "prime_tower_min_volume": { "value": 30 }, + "prime_tower_mode": { "value": "normal" }, "retract_at_layer_change": { "value": false }, "retraction_amount": { "value": 4.5 }, "roofing_layer_count": { "value": 1 }, diff --git a/resources/definitions/strateo3d_IDEX420.def.json b/resources/definitions/strateo3d_IDEX420.def.json index 66ecb9999cd..785301c51ec 100644 --- a/resources/definitions/strateo3d_IDEX420.def.json +++ b/resources/definitions/strateo3d_IDEX420.def.json @@ -112,8 +112,8 @@ "machine_use_extruder_offset_to_offset_coords": { "default_value": false }, "machine_width": { "default_value": 420 }, "material_diameter": { "default_value": 1.75 }, - "prime_tower_mode": { "default_value": "normal" }, "prime_tower_min_volume": { "default_value": 35.6 }, + "prime_tower_mode": { "default_value": "normal" }, "raft_acceleration": { "value": "machine_acceleration" }, "raft_base_acceleration": { "value": "machine_acceleration" }, "raft_interface_acceleration": { "value": "machine_acceleration" }, diff --git a/resources/definitions/ultimaker_method_base.def.json b/resources/definitions/ultimaker_method_base.def.json index 89aaa1b1702..911de6d1b1a 100644 --- a/resources/definitions/ultimaker_method_base.def.json +++ b/resources/definitions/ultimaker_method_base.def.json @@ -346,9 +346,9 @@ "prime_tower_base_curve_magnitude": { "value": 2 }, "prime_tower_base_height": { "value": 6 }, "prime_tower_base_size": { "value": 10 }, - "prime_tower_mode": { "value": "none" }, "prime_tower_flow": { "value": "material_flow" }, "prime_tower_line_width": { "value": 1 }, + "prime_tower_mode": { "value": "none" }, "prime_tower_raft_base_line_spacing": { "value": "raft_base_line_width" }, "prime_tower_wipe_enabled": { "value": true }, "print_sequence": { "enabled": false }, diff --git a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg index bab34c73b6b..54807c88b37 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg @@ -38,8 +38,8 @@ line_width = 0.4 min_infill_area = 0 optimize_wall_printing_order = True prime_tower_brim_enable = True -prime_tower_mode = normal prime_tower_min_volume = 6 +prime_tower_mode = normal prime_tower_size = 20 prime_tower_wipe_enabled = True retract_at_layer_change = False diff --git a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg index e0ef960b324..312313c9c51 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg @@ -38,8 +38,8 @@ line_width = 0.4 min_infill_area = 0 optimize_wall_printing_order = True prime_tower_brim_enable = True -prime_tower_mode = normal prime_tower_min_volume = 6 +prime_tower_mode = normal prime_tower_size = 20 prime_tower_wipe_enabled = True retract_at_layer_change = False diff --git a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg index 55c26edccbe..485e82345a8 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg @@ -36,8 +36,8 @@ line_width = 0.4 min_infill_area = 0 optimize_wall_printing_order = True prime_tower_brim_enable = True -prime_tower_mode = normal prime_tower_min_volume = 6 +prime_tower_mode = normal prime_tower_size = 20 prime_tower_wipe_enabled = True retract_at_layer_change = False diff --git a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg index b5fa497a335..7fb90fd0938 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg @@ -36,8 +36,8 @@ line_width = 0.4 min_infill_area = 0 optimize_wall_printing_order = True prime_tower_brim_enable = True -prime_tower_mode = normal prime_tower_min_volume = 6 +prime_tower_mode = normal prime_tower_size = 20 prime_tower_wipe_enabled = True retract_at_layer_change = False diff --git a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg index 1bf050b6f20..ce3fe8c60b6 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg @@ -35,8 +35,8 @@ line_width = 0.4 min_infill_area = 0 optimize_wall_printing_order = True prime_tower_brim_enable = True -prime_tower_mode = normal prime_tower_min_volume = 6 +prime_tower_mode = normal prime_tower_size = 20 prime_tower_wipe_enabled = True retract_at_layer_change = False diff --git a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg index 7cde446656a..a95c6ce5d35 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg @@ -35,8 +35,8 @@ line_width = 0.4 min_infill_area = 0 optimize_wall_printing_order = True prime_tower_brim_enable = True -prime_tower_mode = normal prime_tower_min_volume = 6 +prime_tower_mode = normal prime_tower_size = 20 prime_tower_wipe_enabled = True retract_at_layer_change = False diff --git a/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg index d30007f18d5..dab7612a6c4 100644 --- a/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg @@ -26,9 +26,9 @@ material_print_temperature = =default_material_print_temperature - 2 material_print_temperature_layer_0 = =default_material_print_temperature + 2 material_standby_temperature = 100 multiple_mesh_overlap = 0.2 -prime_tower_mode = normal prime_tower_flow = 100 prime_tower_min_volume = 10 +prime_tower_mode = normal retract_at_layer_change = False retraction_count_max = 12 retraction_extra_prime_amount = 0.5 diff --git a/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg index a0a1f806ab4..7ec446e803e 100644 --- a/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg @@ -26,9 +26,9 @@ material_print_temperature = =default_material_print_temperature + 2 material_print_temperature_layer_0 = =default_material_print_temperature + 2 material_standby_temperature = 100 multiple_mesh_overlap = 0.2 -prime_tower_mode = normal prime_tower_flow = 100 prime_tower_min_volume = 20 +prime_tower_mode = normal retract_at_layer_change = False retraction_count_max = 12 retraction_extra_prime_amount = 0.5 diff --git a/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg index cdadd228bed..9913ea37791 100644 --- a/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg @@ -25,9 +25,9 @@ material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 2 material_standby_temperature = 100 multiple_mesh_overlap = 0.2 -prime_tower_mode = normal prime_tower_flow = 100 prime_tower_min_volume = 15 +prime_tower_mode = normal retract_at_layer_change = False retraction_count_max = 12 retraction_extra_prime_amount = 0.5 diff --git a/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg index 31baf4022c9..54d9c23b989 100644 --- a/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg @@ -30,8 +30,8 @@ material_print_temperature = =default_material_print_temperature - 2 material_print_temperature_layer_0 = =material_print_temperature + 19 material_standby_temperature = 100 multiple_mesh_overlap = 0.2 -prime_tower_mode = normal prime_tower_flow = 100 +prime_tower_mode = normal retract_at_layer_change = False retraction_count_max = 12 retraction_extra_prime_amount = 0.5 diff --git a/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg index 408ad54518a..289e9d48b7f 100644 --- a/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg @@ -31,8 +31,8 @@ material_print_temperature = =default_material_print_temperature + 2 material_print_temperature_layer_0 = =material_print_temperature + 15 material_standby_temperature = 100 multiple_mesh_overlap = 0.2 -prime_tower_mode = normal prime_tower_flow = 100 +prime_tower_mode = normal retract_at_layer_change = False retraction_count_max = 12 retraction_extra_prime_amount = 0.5 diff --git a/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg index 9fd95f5c32c..c8cad9bb3fa 100644 --- a/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg @@ -30,8 +30,8 @@ material_initial_print_temperature = =material_print_temperature material_print_temperature_layer_0 = =material_print_temperature + 17 material_standby_temperature = 100 multiple_mesh_overlap = 0.2 -prime_tower_mode = normal prime_tower_flow = 100 +prime_tower_mode = normal retract_at_layer_change = False retraction_count_max = 12 retraction_extra_prime_amount = 0.5 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg index a033f60186f..538bcfedb96 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg @@ -22,8 +22,8 @@ material_final_print_temperature = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_print_temperature = =default_material_print_temperature optimize_wall_printing_order = True -prime_tower_mode = normal prime_tower_flow = 110 +prime_tower_mode = normal prime_tower_size = 35 retraction_min_travel = 2 skirt_gap = 2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg index a8da0b4092a..86c4cd18941 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg @@ -19,8 +19,8 @@ material_final_print_temperature = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_print_temperature = =default_material_print_temperature optimize_wall_printing_order = True -prime_tower_mode = normal prime_tower_flow = 110 +prime_tower_mode = normal prime_tower_size = 35 retraction_hop_enabled = False support_enable = True diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg index d807f97293f..83ec5746630 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg @@ -30,8 +30,8 @@ material_flow_layer_0 = 93 material_initial_print_temperature = =material_print_temperature material_print_temperature = =default_material_print_temperature optimize_wall_printing_order = True -prime_tower_mode = normal prime_tower_flow = 110 +prime_tower_mode = normal prime_tower_size = 35 retraction_amount = 5 retraction_hop_enabled = False diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg index 51329150b74..2269a480a5d 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg @@ -30,8 +30,8 @@ material_flow_layer_0 = 93 material_initial_print_temperature = =material_print_temperature material_print_temperature = =default_material_print_temperature optimize_wall_printing_order = True -prime_tower_mode = normal prime_tower_flow = 110 +prime_tower_mode = normal prime_tower_size = 35 retraction_amount = 5 retraction_hop_enabled = False diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg index f201d4c6323..4fed1695685 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg @@ -19,8 +19,8 @@ material_final_print_temperature = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_print_temperature = =default_material_print_temperature optimize_wall_printing_order = True -prime_tower_mode = normal prime_tower_flow = 110 +prime_tower_mode = normal prime_tower_size = 35 retraction_hop_enabled = False support_enable = True diff --git a/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg index 144a47769b2..c9e31486c0a 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg @@ -16,9 +16,9 @@ brim_width = 25 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' material_print_temperature = =default_material_print_temperature + 11 multiple_mesh_overlap = 0.2 -prime_tower_mode = normal prime_tower_flow = 100 prime_tower_min_volume = 10 +prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg index cedba132ebe..e821581360c 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg @@ -16,9 +16,9 @@ brim_width = 25 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' material_print_temperature = =default_material_print_temperature + 15 multiple_mesh_overlap = 0.2 -prime_tower_mode = normal prime_tower_flow = 100 prime_tower_min_volume = 20 +prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg index 32f623e4324..a5817651d80 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg @@ -17,9 +17,9 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' layer_height = 0.3 material_print_temperature = =default_material_print_temperature + 13 multiple_mesh_overlap = 0.2 -prime_tower_mode = normal prime_tower_flow = 100 prime_tower_min_volume = 15 +prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg index 63dd03590c3..d8f7812d75e 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg @@ -23,8 +23,8 @@ material_flow = 105 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 4 multiple_mesh_overlap = 0.2 -prime_tower_mode = normal prime_tower_flow = 100 +prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg index a81683200f3..a689035132d 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg @@ -23,8 +23,8 @@ material_final_print_temperature = =material_print_temperature - 10 material_flow = 105 material_initial_print_temperature = =material_print_temperature - 10 multiple_mesh_overlap = 0.2 -prime_tower_mode = normal prime_tower_flow = 100 +prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg index cb0e4358d6a..f4b61cac5d5 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg @@ -24,8 +24,8 @@ material_flow = 105 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 2 multiple_mesh_overlap = 0.2 -prime_tower_mode = normal prime_tower_flow = 100 +prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg index 1c681aaeb2a..61ce2bd96cd 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg @@ -18,9 +18,9 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature + 11 multiple_mesh_overlap = 0.2 -prime_tower_mode = normal prime_tower_flow = 100 prime_tower_min_volume = 10 +prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg index e054336e240..6b91c97bda6 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg @@ -18,9 +18,9 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature + 13 multiple_mesh_overlap = 0.2 -prime_tower_mode = normal prime_tower_flow = 100 prime_tower_min_volume = 15 +prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg index 3afea841d36..abbfb2ce029 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg @@ -18,9 +18,9 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature + 15 multiple_mesh_overlap = 0.2 -prime_tower_mode = normal prime_tower_flow = 100 prime_tower_min_volume = 20 +prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg index 709e7985021..96b82799f0a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg @@ -21,8 +21,8 @@ material_flow = 105 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 4 multiple_mesh_overlap = 0.2 -prime_tower_mode = normal prime_tower_flow = 100 +prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg index 12aac8dcd52..d53c79de87b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg @@ -22,8 +22,8 @@ material_flow = 105 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 2 multiple_mesh_overlap = 0.2 -prime_tower_mode = normal prime_tower_flow = 100 +prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg index 8958aa30c07..f9c4e17e916 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg @@ -21,8 +21,8 @@ material_final_print_temperature = =material_print_temperature - 10 material_flow = 105 material_initial_print_temperature = =material_print_temperature - 10 multiple_mesh_overlap = 0.2 -prime_tower_mode = normal prime_tower_flow = 100 +prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg index addcc8e504a..1c7b79f8e00 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg @@ -18,9 +18,9 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature + 11 multiple_mesh_overlap = 0.2 -prime_tower_mode = normal prime_tower_flow = 100 prime_tower_min_volume = 10 +prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg index dde38061cad..67e35f3ecac 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg @@ -18,9 +18,9 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature + 13 multiple_mesh_overlap = 0.2 -prime_tower_mode = normal prime_tower_flow = 100 prime_tower_min_volume = 15 +prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg index bab23c5ee14..53b87863031 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg @@ -18,9 +18,9 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature + 15 multiple_mesh_overlap = 0.2 -prime_tower_mode = normal prime_tower_flow = 100 prime_tower_min_volume = 20 +prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg index 132a0e07606..9451394fb31 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg @@ -21,8 +21,8 @@ material_flow = 105 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 4 multiple_mesh_overlap = 0.2 -prime_tower_mode = normal prime_tower_flow = 100 +prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg index c0b54402f2b..4b498104e06 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg @@ -22,8 +22,8 @@ material_flow = 105 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 2 multiple_mesh_overlap = 0.2 -prime_tower_mode = normal prime_tower_flow = 100 +prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg index 076f3df4376..48977f6a86c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg @@ -21,8 +21,8 @@ material_final_print_temperature = =material_print_temperature - 10 material_flow = 105 material_initial_print_temperature = =material_print_temperature - 10 multiple_mesh_overlap = 0.2 -prime_tower_mode = normal prime_tower_flow = 100 +prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 From b641741e49a72dc39110dc8cf4dacf6b315fe62f Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Fri, 16 Feb 2024 14:11:07 +0100 Subject: [PATCH 504/765] Added preference to show UFP saving dialog Changes saving to .ucp to .3mf --- cura/CuraApplication.py | 2 ++ plugins/3MFReader/ThreeMFReader.py | 4 ++-- plugins/3MFReader/ThreeMFWorkspaceReader.py | 4 ++-- plugins/3MFReader/plugin.json | 2 +- plugins/3MFWriter/ThreeMFWorkspaceWriter.py | 2 +- plugins/3MFWriter/UCPDialog.qml | 25 ++++++++++++++++++++- plugins/3MFWriter/__init__.py | 4 ++-- resources/qml/Preferences/GeneralPage.qml | 14 ++++++++++++ 8 files changed, 48 insertions(+), 9 deletions(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 20e54fa57cc..7b588c836a2 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -601,7 +601,9 @@ def startSplashWindowPhase(self) -> None: preferences.addPreference("mesh/scale_to_fit", False) preferences.addPreference("mesh/scale_tiny_meshes", True) preferences.addPreference("cura/dialog_on_project_save", True) + preferences.addPreference("cura/dialog_on_ucp_project_save", True) preferences.addPreference("cura/asked_dialog_on_project_save", False) + preferences.addPreference("cura/asked_dialog_on_ucp_project_save", False) preferences.addPreference("cura/choice_on_profile_override", "always_ask") preferences.addPreference("cura/choice_on_open_project", "always_ask") preferences.addPreference("cura/use_multi_build_plate", False) diff --git a/plugins/3MFReader/ThreeMFReader.py b/plugins/3MFReader/ThreeMFReader.py index a715d990ebe..c7a15e043ef 100755 --- a/plugins/3MFReader/ThreeMFReader.py +++ b/plugins/3MFReader/ThreeMFReader.py @@ -50,11 +50,11 @@ def __init__(self) -> None: MimeType( name="application/x-ucp", comment="UCP", - suffixes=["ucp"] + suffixes=["3mf"] ) ) - self._supported_extensions = [".3mf", ".ucp"] + self._supported_extensions = [".3mf"] self._root = None self._base_name = "" self._unit = None diff --git a/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py index d96de5b324d..c9692599e55 100755 --- a/plugins/3MFReader/ThreeMFWorkspaceReader.py +++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py @@ -113,7 +113,7 @@ class ThreeMFWorkspaceReader(WorkspaceReader): def __init__(self) -> None: super().__init__() - self._supported_extensions = [".3mf", ".ucp"] + self._supported_extensions = [".3mf"] self._dialog = WorkspaceDialog() self._3mf_mesh_reader = None self._container_registry = ContainerRegistry.getInstance() @@ -236,7 +236,7 @@ def preRead(self, file_name, show_dialog=True, *args, **kwargs): # Check whether the file is a UCP, which changes some import options #FIXME Instead of this, we should just check for the presence of the user-settings file, whatever the extension - is_ucp = file_name.endswith('.ucp') + is_ucp = file_name.endswith('.3mf') # # Read definition containers diff --git a/plugins/3MFReader/plugin.json b/plugins/3MFReader/plugin.json index 010adbb5013..bf0bc053648 100644 --- a/plugins/3MFReader/plugin.json +++ b/plugins/3MFReader/plugin.json @@ -2,7 +2,7 @@ "name": "3MF Reader", "author": "Ultimaker B.V.", "version": "1.0.1", - "description": "Provides support for reading 3MF and UCP files.", + "description": "Provides support for reading 3MF files.", "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/3MFWriter/ThreeMFWorkspaceWriter.py b/plugins/3MFWriter/ThreeMFWorkspaceWriter.py index d0a843af69d..c67da245693 100644 --- a/plugins/3MFWriter/ThreeMFWorkspaceWriter.py +++ b/plugins/3MFWriter/ThreeMFWorkspaceWriter.py @@ -39,7 +39,7 @@ def _preWrite(self): is_ucp = False if hasattr(self._stream, 'name'): # This only works with local file, but we don't want remote UCP files yet - is_ucp = self._stream.name.endswith('.ucp') + is_ucp = self._stream.name.endswith('.3mf') if is_ucp: self._config_dialog = UCPDialog() diff --git a/plugins/3MFWriter/UCPDialog.qml b/plugins/3MFWriter/UCPDialog.qml index 88552cc2926..7eaf57c96b0 100644 --- a/plugins/3MFWriter/UCPDialog.qml +++ b/plugins/3MFWriter/UCPDialog.qml @@ -19,6 +19,21 @@ UM.Dialog minimumHeight: UM.Theme.getSize("modal_window_minimum").height backgroundColor: UM.Theme.getColor("detail_background") + property bool dontShowAgain: true + + function storeDontShowAgain() + { + UM.Preferences.setValue("cura/dialog_on_ucp_project_save", !dontShowAgainCheckbox.checked) + UM.Preferences.setValue("asked_dialog_on_ucp_project_save", true) + } + + onVisibleChanged: + { + if(visible && UM.Preferences.getValue("cura/asked_dialog_on_ucp_project_save")) + { + dontShowAgain = !UM.Preferences.getValue("cura/dialog_on_ucp_project_save") + } + } headerComponent: Rectangle { @@ -75,7 +90,15 @@ UM.Dialog delegate: SettingsSelectionGroup { Layout.margins: 0 } } } - + leftButtons: + [ + UM.CheckBox + { + id: dontShowAgainCheckbox + text: catalog.i18nc("@action:label", "Don't show project summary on save again") + checked: dontShowAgain + } + ] rightButtons: [ Cura.TertiaryButton diff --git a/plugins/3MFWriter/__init__.py b/plugins/3MFWriter/__init__.py index 40fd42b1996..1cecf4c3f81 100644 --- a/plugins/3MFWriter/__init__.py +++ b/plugins/3MFWriter/__init__.py @@ -34,7 +34,7 @@ def getMetaData(): "mode": ThreeMFWriter.ThreeMFWriter.OutputMode.BinaryMode }, { - "extension": "ucp", + "extension": "3mf", "description": i18n_catalog.i18nc("@item:inlistbox", "Universal Cura Project"), "mime_type": "application/x-ucp", "mode": ThreeMFWriter.ThreeMFWriter.OutputMode.BinaryMode @@ -50,7 +50,7 @@ def getMetaData(): "mode": ThreeMFWorkspaceWriter.ThreeMFWorkspaceWriter.OutputMode.BinaryMode }, { - "extension": "ucp", + "extension": "3mf", "description": i18n_catalog.i18nc("@item:inlistbox", "Universal Cura Project"), "mime_type": "application/x-ucp", "mode": ThreeMFWorkspaceWriter.ThreeMFWorkspaceWriter.OutputMode.BinaryMode diff --git a/resources/qml/Preferences/GeneralPage.qml b/resources/qml/Preferences/GeneralPage.qml index 69607a3f6b6..0ca905cf85c 100644 --- a/resources/qml/Preferences/GeneralPage.qml +++ b/resources/qml/Preferences/GeneralPage.qml @@ -735,6 +735,20 @@ UM.PreferencesPage } } + UM.TooltipArea + { + width: childrenRect.width + height: childrenRect.height + text: catalog.i18nc("@info:tooltip", "Should a summary be shown when saving a UCP project file?") + + UM.CheckBox + { + text: catalog.i18nc("@option:check", "Show summary dialog when saving a UCP project") + checked: boolCheck(UM.Preferences.getValue("cura/dialog_on_ucp_project_save")) + onCheckedChanged: UM.Preferences.setValue("cura/dialog_on_ucp_project_save", checked) + } + } + UM.TooltipArea { width: childrenRect.width From bb8dd309879b52f9040b0630619e56cf642e1623 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Sat, 17 Feb 2024 12:05:03 +0100 Subject: [PATCH 505/765] Don't run Sentry for UT --- .github/workflows/unit-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 9a42f4f85db..2f9e9a08e7d 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -55,7 +55,7 @@ jobs: needs: [ conan-recipe-version ] with: recipe_id_full: ${{ needs.conan-recipe-version.outputs.recipe_id_full }} - conan_extra_args: '-g VirtualPythonEnv -o cura:devtools=True -c tools.build:skip_test=False' + conan_extra_args: '-g VirtualPythonEnv -o cura:devtools=True -c tools.build:skip_test=False -o *:enable_sentry=False' unit_test_cmd: 'pytest --junitxml=junit_cura.xml' unit_test_dir: 'tests' conan_generator_dir: './venv/bin' From 9b7bdfc9dd9110f9a79378134d334060e05f37fc Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Sat, 17 Feb 2024 12:10:32 +0100 Subject: [PATCH 506/765] Don't run Sentry for UT --- .github/workflows/unit-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 2f9e9a08e7d..56d7a7a071c 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -55,7 +55,7 @@ jobs: needs: [ conan-recipe-version ] with: recipe_id_full: ${{ needs.conan-recipe-version.outputs.recipe_id_full }} - conan_extra_args: '-g VirtualPythonEnv -o cura:devtools=True -c tools.build:skip_test=False -o *:enable_sentry=False' + conan_extra_args: '-g VirtualPythonEnv -o cura:devtools=True -c tools.build:skip_test=False -o clipper:enable_sentry=False -o curaengine:enable_sentry=False -o arcus:enable_sentry=False' unit_test_cmd: 'pytest --junitxml=junit_cura.xml' unit_test_dir: 'tests' conan_generator_dir: './venv/bin' From 08c24b05ecb081d2d7d4a21728c949fedbcd9d88 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Sat, 17 Feb 2024 12:55:10 +0100 Subject: [PATCH 507/765] Write out options --- .github/workflows/unit-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 56d7a7a071c..21655408897 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -55,7 +55,7 @@ jobs: needs: [ conan-recipe-version ] with: recipe_id_full: ${{ needs.conan-recipe-version.outputs.recipe_id_full }} - conan_extra_args: '-g VirtualPythonEnv -o cura:devtools=True -c tools.build:skip_test=False -o clipper:enable_sentry=False -o curaengine:enable_sentry=False -o arcus:enable_sentry=False' + conan_extra_args: '-g VirtualPythonEnv -o cura:devtools=True -c tools.build:skip_test=False --options "*:enable_sentry=False"' unit_test_cmd: 'pytest --junitxml=junit_cura.xml' unit_test_dir: 'tests' conan_generator_dir: './venv/bin' From 87d6c4092f3807721677c697a399be3e1f3b14d0 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Sat, 17 Feb 2024 13:48:51 +0100 Subject: [PATCH 508/765] Remove redundant default_mode `prime_tower` --- resources/definitions/dxu_dual.def.json | 1 - resources/definitions/elegoo_neptune_2D.def.json | 1 - resources/definitions/strateo3d_IDEX420.def.json | 1 - resources/definitions/ultimaker3.def.json | 1 - 4 files changed, 4 deletions(-) diff --git a/resources/definitions/dxu_dual.def.json b/resources/definitions/dxu_dual.def.json index 8fb2092b65e..ba37882d407 100644 --- a/resources/definitions/dxu_dual.def.json +++ b/resources/definitions/dxu_dual.def.json @@ -6,6 +6,5 @@ { "machine_end_gcode": { "value": "\"\" if machine_gcode_flavor == \"UltiGCode\" else \"G90 ;absolute positioning\\nM104 S0 T0 ;extruder heater off\\nM104 S0 T1\\nM140 S0 ;turn off bed\\nT0 ; move to the first head\\nM107 ;fan off\"" }, "machine_start_gcode": { "value": "\"\" if machine_gcode_flavor == \"UltiGCode\" else \";material_bed_temperature={material_bed_temperature} material_print_temperature={material_print_temperature} material_print_temperature_layer_0={material_print_temperature_layer_0}\\nM190 S{material_bed_temperature_layer_0}\\nM104 T0 S{material_standby_temperature, 0}\\nM104 T0 S{material_print_temperature_layer_0, 0}\\nG21 ;metric values\\nG90 ;absolute positioning\\nM82 ;set extruder to absolute mode\\nM107 ;start with the fan off\\nM200 D0 T0 ;reset filament diameter\\nM200 D0 T1\\nG28 ;home all\\nT1 ; move to the nozzle 2\\nG0 Z20 F2400 ;move the platform to 30mm\\nM109 T1 S{material_print_temperature_layer_0, 1}\\nG0 X210 Y20 F7200\\nG92 E0\\nG92 E-7.0 ;prime distance\\nG1 E0 F45 ;purge nozzle\\nG1 E-6.5 F1500 ; retract\\nT0 ; move to the nozzle 1\\nM104 T1 S{material_standby_temperature, 1}\\nG0 Z20 F2400\\nM109 T0 S{material_print_temperature_layer_0, 0}\\nG0 X210 Y20 F7200\\nG92 E0\\nG92 E-7.0\\nG1 E0 F45 ;purge nozzle\\nG1 E-6.5 F1500\\nM104 T0 S{material_standby_temperature, 0}\\nT{initial_extruder_nr} ;switch to the first nozzle used for print\\nM109 T{initial_extruder_nr} S{material_print_temperature_layer_0, initial_extruder_nr}\\nM400 ;finish all moves\\nG1 E0 F1500\\nG92 E0\\n;end of startup sequence\\n\"" }, - "prime_tower_mode": { "default_value": "normal" } } } \ No newline at end of file diff --git a/resources/definitions/elegoo_neptune_2D.def.json b/resources/definitions/elegoo_neptune_2D.def.json index 2d5ef0024ee..dbdf066b21d 100644 --- a/resources/definitions/elegoo_neptune_2D.def.json +++ b/resources/definitions/elegoo_neptune_2D.def.json @@ -56,7 +56,6 @@ }, "prime_blob_enable": { "default_value": false }, "prime_tower_min_volume": { "default_value": 90 }, - "prime_tower_mode": { "default_value": "normal" }, "prime_tower_size": { "default_value": 30 }, "raft_airgap": { "default_value": 0.25 }, "raft_margin": { "default_value": 5 }, diff --git a/resources/definitions/strateo3d_IDEX420.def.json b/resources/definitions/strateo3d_IDEX420.def.json index 785301c51ec..47a3af714be 100644 --- a/resources/definitions/strateo3d_IDEX420.def.json +++ b/resources/definitions/strateo3d_IDEX420.def.json @@ -113,7 +113,6 @@ "machine_width": { "default_value": 420 }, "material_diameter": { "default_value": 1.75 }, "prime_tower_min_volume": { "default_value": 35.6 }, - "prime_tower_mode": { "default_value": "normal" }, "raft_acceleration": { "value": "machine_acceleration" }, "raft_base_acceleration": { "value": "machine_acceleration" }, "raft_interface_acceleration": { "value": "machine_acceleration" }, diff --git a/resources/definitions/ultimaker3.def.json b/resources/definitions/ultimaker3.def.json index 9e4c9310c86..43f718e2dba 100644 --- a/resources/definitions/ultimaker3.def.json +++ b/resources/definitions/ultimaker3.def.json @@ -149,7 +149,6 @@ "enabled": true, "value": "resolveOrValue('print_sequence') != 'one_at_a_time'" }, - "prime_tower_mode": { "default_value": "normal" }, "prime_tower_position_x": { "value": "185" }, "prime_tower_wipe_enabled": { "default_value": false }, "retraction_amount": { "value": "6.5" }, From 546d82a9327e5c8b2b3d358c33667c7f3d089f6f Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Sat, 17 Feb 2024 14:53:35 +0100 Subject: [PATCH 509/765] fix trailing comma --- resources/definitions/dxu_dual.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/dxu_dual.def.json b/resources/definitions/dxu_dual.def.json index ba37882d407..b81d148f80f 100644 --- a/resources/definitions/dxu_dual.def.json +++ b/resources/definitions/dxu_dual.def.json @@ -5,6 +5,6 @@ "overrides": { "machine_end_gcode": { "value": "\"\" if machine_gcode_flavor == \"UltiGCode\" else \"G90 ;absolute positioning\\nM104 S0 T0 ;extruder heater off\\nM104 S0 T1\\nM140 S0 ;turn off bed\\nT0 ; move to the first head\\nM107 ;fan off\"" }, - "machine_start_gcode": { "value": "\"\" if machine_gcode_flavor == \"UltiGCode\" else \";material_bed_temperature={material_bed_temperature} material_print_temperature={material_print_temperature} material_print_temperature_layer_0={material_print_temperature_layer_0}\\nM190 S{material_bed_temperature_layer_0}\\nM104 T0 S{material_standby_temperature, 0}\\nM104 T0 S{material_print_temperature_layer_0, 0}\\nG21 ;metric values\\nG90 ;absolute positioning\\nM82 ;set extruder to absolute mode\\nM107 ;start with the fan off\\nM200 D0 T0 ;reset filament diameter\\nM200 D0 T1\\nG28 ;home all\\nT1 ; move to the nozzle 2\\nG0 Z20 F2400 ;move the platform to 30mm\\nM109 T1 S{material_print_temperature_layer_0, 1}\\nG0 X210 Y20 F7200\\nG92 E0\\nG92 E-7.0 ;prime distance\\nG1 E0 F45 ;purge nozzle\\nG1 E-6.5 F1500 ; retract\\nT0 ; move to the nozzle 1\\nM104 T1 S{material_standby_temperature, 1}\\nG0 Z20 F2400\\nM109 T0 S{material_print_temperature_layer_0, 0}\\nG0 X210 Y20 F7200\\nG92 E0\\nG92 E-7.0\\nG1 E0 F45 ;purge nozzle\\nG1 E-6.5 F1500\\nM104 T0 S{material_standby_temperature, 0}\\nT{initial_extruder_nr} ;switch to the first nozzle used for print\\nM109 T{initial_extruder_nr} S{material_print_temperature_layer_0, initial_extruder_nr}\\nM400 ;finish all moves\\nG1 E0 F1500\\nG92 E0\\n;end of startup sequence\\n\"" }, + "machine_start_gcode": { "value": "\"\" if machine_gcode_flavor == \"UltiGCode\" else \";material_bed_temperature={material_bed_temperature} material_print_temperature={material_print_temperature} material_print_temperature_layer_0={material_print_temperature_layer_0}\\nM190 S{material_bed_temperature_layer_0}\\nM104 T0 S{material_standby_temperature, 0}\\nM104 T0 S{material_print_temperature_layer_0, 0}\\nG21 ;metric values\\nG90 ;absolute positioning\\nM82 ;set extruder to absolute mode\\nM107 ;start with the fan off\\nM200 D0 T0 ;reset filament diameter\\nM200 D0 T1\\nG28 ;home all\\nT1 ; move to the nozzle 2\\nG0 Z20 F2400 ;move the platform to 30mm\\nM109 T1 S{material_print_temperature_layer_0, 1}\\nG0 X210 Y20 F7200\\nG92 E0\\nG92 E-7.0 ;prime distance\\nG1 E0 F45 ;purge nozzle\\nG1 E-6.5 F1500 ; retract\\nT0 ; move to the nozzle 1\\nM104 T1 S{material_standby_temperature, 1}\\nG0 Z20 F2400\\nM109 T0 S{material_print_temperature_layer_0, 0}\\nG0 X210 Y20 F7200\\nG92 E0\\nG92 E-7.0\\nG1 E0 F45 ;purge nozzle\\nG1 E-6.5 F1500\\nM104 T0 S{material_standby_temperature, 0}\\nT{initial_extruder_nr} ;switch to the first nozzle used for print\\nM109 T{initial_extruder_nr} S{material_print_temperature_layer_0, initial_extruder_nr}\\nM400 ;finish all moves\\nG1 E0 F1500\\nG92 E0\\n;end of startup sequence\\n\"" } } } \ No newline at end of file From ca94e0e3559248f8e03b270d59efee93165b1403 Mon Sep 17 00:00:00 2001 From: HellAholic Date: Mon, 19 Feb 2024 11:38:30 +0100 Subject: [PATCH 510/765] restore extruder definition --- resources/extruders/geeetech_A20_1.def.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 resources/extruders/geeetech_A20_1.def.json diff --git a/resources/extruders/geeetech_A20_1.def.json b/resources/extruders/geeetech_A20_1.def.json new file mode 100644 index 00000000000..0eba9c3ea92 --- /dev/null +++ b/resources/extruders/geeetech_A20_1.def.json @@ -0,0 +1,16 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "geeetech_A20", + "position": "0" + }, + + "overrides": { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + + } +} From d458437d5010f9f0785c5e9fa070d9d5f765730b Mon Sep 17 00:00:00 2001 From: Jacob Pedersen Date: Mon, 19 Feb 2024 11:16:01 +0100 Subject: [PATCH 511/765] Add definition and variants for creality ender3 v2 neo --- .../definitions/creality_ender3v2neo.def.json | 34 +++++++++++++++++++ .../creality_ender3v2neo_0.2.inst.cfg | 13 +++++++ .../creality_ender3v2neo_0.3.inst.cfg | 12 +++++++ .../creality_ender3v2neo_0.4.inst.cfg | 12 +++++++ .../creality_ender3v2neo_0.5.inst.cfg | 13 +++++++ .../creality_ender3v2neo_0.6.inst.cfg | 12 +++++++ .../creality_ender3v2neo_0.8.inst.cfg | 12 +++++++ .../creality_ender3v2neo_1.0.inst.cfg | 12 +++++++ 8 files changed, 120 insertions(+) create mode 100644 resources/definitions/creality_ender3v2neo.def.json create mode 100644 resources/variants/creality/creality_ender3v2neo_0.2.inst.cfg create mode 100644 resources/variants/creality/creality_ender3v2neo_0.3.inst.cfg create mode 100644 resources/variants/creality/creality_ender3v2neo_0.4.inst.cfg create mode 100644 resources/variants/creality/creality_ender3v2neo_0.5.inst.cfg create mode 100644 resources/variants/creality/creality_ender3v2neo_0.6.inst.cfg create mode 100644 resources/variants/creality/creality_ender3v2neo_0.8.inst.cfg create mode 100644 resources/variants/creality/creality_ender3v2neo_1.0.inst.cfg diff --git a/resources/definitions/creality_ender3v2neo.def.json b/resources/definitions/creality_ender3v2neo.def.json new file mode 100644 index 00000000000..05998865e29 --- /dev/null +++ b/resources/definitions/creality_ender3v2neo.def.json @@ -0,0 +1,34 @@ +{ + "name": "Creality Ender-3 v2 Neo", + "version": 2, + "inherits": "creality_base", + "metadata": { + "quality_definition": "creality_base", + "visible": true, + "platform": "creality_ender3.3mf" + }, + "overrides": { + "machine_name": { "default_value": "Creality Ender-3 v2 Neo" }, + "machine_width": { "default_value": 230 }, + "machine_depth": { "default_value": 230 }, + "machine_height": { "default_value": 250 }, + "machine_head_polygon": { "default_value": [ + [-1, 1], + [-1, -1], + [1, -1], + [1, 1] + ] + }, + "machine_head_with_fans_polygon": { "default_value": [ + [-26, 34], + [-26, -32], + [32, -32], + [32, 34] + ] + }, + "machine_start_gcode": { "default_value": "G92 E0 ;Reset Extruder\nG28 ;Home\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up" }, + "retraction_amount": { "value": 4}, + "retraction_speed": { "value": 25}, + "gantry_height": { "value": 25 } + } +} diff --git a/resources/variants/creality/creality_ender3v2neo_0.2.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.2.inst.cfg new file mode 100644 index 00000000000..0dda448befc --- /dev/null +++ b/resources/variants/creality/creality_ender3v2neo_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_ender3v2neo +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + + +[values] +machine_nozzle_size = 0.2 diff --git a/resources/variants/creality/creality_ender3v2neo_0.3.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.3.inst.cfg new file mode 100644 index 00000000000..fcb0dac3f3c --- /dev/null +++ b/resources/variants/creality/creality_ender3v2neo_0.3.inst.cfg @@ -0,0 +1,12 @@ +[general] +definition = creality_ender3v2neo +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 diff --git a/resources/variants/creality/creality_ender3v2neo_0.4.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.4.inst.cfg new file mode 100644 index 00000000000..aeeba41ff67 --- /dev/null +++ b/resources/variants/creality/creality_ender3v2neo_0.4.inst.cfg @@ -0,0 +1,12 @@ +[general] +definition = creality_ender3v2neo +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/creality/creality_ender3v2neo_0.5.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.5.inst.cfg new file mode 100644 index 00000000000..810acc8e74b --- /dev/null +++ b/resources/variants/creality/creality_ender3v2neo_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_ender3v2neo +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + + +[values] +machine_nozzle_size = 0.5 diff --git a/resources/variants/creality/creality_ender3v2neo_0.6.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.6.inst.cfg new file mode 100644 index 00000000000..ad49249db38 --- /dev/null +++ b/resources/variants/creality/creality_ender3v2neo_0.6.inst.cfg @@ -0,0 +1,12 @@ +[general] +definition = creality_ender3v2neo +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 diff --git a/resources/variants/creality/creality_ender3v2neo_0.8.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.8.inst.cfg new file mode 100644 index 00000000000..bfb1bdf0fb6 --- /dev/null +++ b/resources/variants/creality/creality_ender3v2neo_0.8.inst.cfg @@ -0,0 +1,12 @@ +[general] +definition = creality_ender3v2neo +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 diff --git a/resources/variants/creality/creality_ender3v2neo_1.0.inst.cfg b/resources/variants/creality/creality_ender3v2neo_1.0.inst.cfg new file mode 100644 index 00000000000..eeb644d0f5f --- /dev/null +++ b/resources/variants/creality/creality_ender3v2neo_1.0.inst.cfg @@ -0,0 +1,12 @@ +[general] +definition = creality_ender3v2neo +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 From e8e0bd97820ac4189c5fe287e27bb676d7943d41 Mon Sep 17 00:00:00 2001 From: HellAholic Date: Mon, 19 Feb 2024 10:39:20 +0000 Subject: [PATCH 512/765] Applied printer-linter format --- resources/extruders/geeetech_A20_1.def.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/resources/extruders/geeetech_A20_1.def.json b/resources/extruders/geeetech_A20_1.def.json index 0eba9c3ea92..96e94fe2f6a 100644 --- a/resources/extruders/geeetech_A20_1.def.json +++ b/resources/extruders/geeetech_A20_1.def.json @@ -2,15 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "geeetech_A20", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 1.75 } - } -} +} \ No newline at end of file From a4ec177cd34ab3f6d4def25e86d4757138e1452f Mon Sep 17 00:00:00 2001 From: Mariska <40423138+MariMakes@users.noreply.github.com> Date: Mon, 19 Feb 2024 13:08:27 +0100 Subject: [PATCH 513/765] Remove the link to the nightly build The nightly was broken so the download links were removed, this is to remove them from the slicing crash form. --- .github/ISSUE_TEMPLATE/SlicingCrash.yaml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/SlicingCrash.yaml b/.github/ISSUE_TEMPLATE/SlicingCrash.yaml index 37a70354c69..899bfef9270 100644 --- a/.github/ISSUE_TEMPLATE/SlicingCrash.yaml +++ b/.github/ISSUE_TEMPLATE/SlicingCrash.yaml @@ -4,14 +4,7 @@ labels: ["Type: Bug", "Status: Triage", "Slicing Error :collision:"] body: - type: markdown attributes: - value: | - ### 💥 Slicing Crash Analysis Tool 💥 - We are taking steps to analyze an increase in reported crashes more systematically. We'll need some help with that. 😇 - Before filling out the report below, we want you to try a special Cura 5.7 Alpha. - This version of Cura has an updated slicing engine that will automatically send a report to the Cura Team for analysis. - #### [You can find the downloads here](https://github.com/Ultimaker/Cura/discussions/18080) #### - If you still encounter a crash you are still welcome to report the issue so we can use your model as a test case, you can find instructions on how to do that below. - + value: | ### Project File **⚠️ Before you continue, we need your project file to troubleshoot a slicing crash.** It contains the printer and settings we need for troubleshooting. From 8109230e99a6df9eea537807a56aa52c215d4784 Mon Sep 17 00:00:00 2001 From: Mariska <40423138+MariMakes@users.noreply.github.com> Date: Tue, 20 Feb 2024 10:43:59 +0100 Subject: [PATCH 514/765] Update Slicing Crash Template with 5.7 alpha It now refers to the 5.7 Alpha that has Sentry to analyze slicing crashes --- .github/ISSUE_TEMPLATE/SlicingCrash.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/SlicingCrash.yaml b/.github/ISSUE_TEMPLATE/SlicingCrash.yaml index 899bfef9270..f4e082e00aa 100644 --- a/.github/ISSUE_TEMPLATE/SlicingCrash.yaml +++ b/.github/ISSUE_TEMPLATE/SlicingCrash.yaml @@ -5,6 +5,13 @@ body: - type: markdown attributes: value: | + ### 💥 Slicing Crash Analysis Tool 💥 + We are taking steps to analyze an increase in reported crashes more systematically. We'll need some help with that. 😇 + Before filling out the report below, we want you to try a special Cura 5.7 Alpha. + This version of Cura has an updated slicing engine that will automatically send a report to the Cura Team for analysis. + #### [You can find the downloads here](https://github.com/Ultimaker/Cura/discussions/18080) #### + If you still encounter a crash you are still welcome to report the issue so we can use your model as a test case, you can find instructions on how to do that below. + ### Project File **⚠️ Before you continue, we need your project file to troubleshoot a slicing crash.** It contains the printer and settings we need for troubleshooting. From ec871782c77b73ca53c30daa0fd6174311bc4cc4 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Tue, 20 Feb 2024 10:47:27 +0100 Subject: [PATCH 515/765] PAP adding save dialog before filesave window CURA-11403 --- cura/CuraApplication.py | 10 +++++ plugins/3MFReader/ThreeMFWorkspaceReader.py | 4 +- plugins/3MFReader/__init__.py | 8 ---- plugins/3MFWriter/ThreeMFWorkspaceWriter.py | 47 ++++++--------------- plugins/3MFWriter/ThreeMFWriter.py | 8 +++- plugins/3MFWriter/UCPDialog.py | 12 ++++++ resources/qml/Menus/FileMenu.qml | 8 +--- 7 files changed, 47 insertions(+), 50 deletions(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 7b588c836a2..1af8380fd64 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -1143,6 +1143,16 @@ def getBuildPlateModel(self, *args) -> BuildPlateModel: self._build_plate_model = BuildPlateModel(self) return self._build_plate_model + @pyqtSlot() + def exportUcp(self): + writer = self.getMeshFileHandler().getWriter("3MFWriter") + + if writer is None: + Logger.warning("3mf writer is not enabled") + return + + writer.exportUcp() + def getCuraSceneController(self, *args) -> CuraSceneController: if self._cura_scene_controller is None: self._cura_scene_controller = CuraSceneController.createCuraSceneController() diff --git a/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py index c9692599e55..04885a961bf 100755 --- a/plugins/3MFReader/ThreeMFWorkspaceReader.py +++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py @@ -236,8 +236,8 @@ def preRead(self, file_name, show_dialog=True, *args, **kwargs): # Check whether the file is a UCP, which changes some import options #FIXME Instead of this, we should just check for the presence of the user-settings file, whatever the extension - is_ucp = file_name.endswith('.3mf') - + if file_name.endswith('.3mf'): + is_ucp = True # # Read definition containers # diff --git a/plugins/3MFReader/__init__.py b/plugins/3MFReader/__init__.py index 101337f05f6..5e2b68fce09 100644 --- a/plugins/3MFReader/__init__.py +++ b/plugins/3MFReader/__init__.py @@ -25,20 +25,12 @@ def getMetaData() -> Dict: { "extension": "3mf", "description": catalog.i18nc("@item:inlistbox", "3MF File") - }, - { - "extension": "ucp", - "description": catalog.i18nc("@item:inlistbox", "UCP File") } ] metaData["workspace_reader"] = [ { "extension": workspace_extension, "description": catalog.i18nc("@item:inlistbox", "3MF File") - }, - { - "extension": "ucp", - "description": catalog.i18nc("@item:inlistbox", "UCP File") } ] diff --git a/plugins/3MFWriter/ThreeMFWorkspaceWriter.py b/plugins/3MFWriter/ThreeMFWorkspaceWriter.py index c67da245693..745627ed93b 100644 --- a/plugins/3MFWriter/ThreeMFWorkspaceWriter.py +++ b/plugins/3MFWriter/ThreeMFWorkspaceWriter.py @@ -15,7 +15,6 @@ from UM.i18n import i18nCatalog catalog = i18nCatalog("cura") -from .UCPDialog import UCPDialog from .ThreeMFWriter import ThreeMFWriter from .SettingsExportModel import SettingsExportModel from .SettingsExportGroup import SettingsExportGroup @@ -32,32 +31,12 @@ def __init__(self): self._stream = None self._nodes = None self._mode = None - self._config_dialog = None + self._is_ucp = False + - #FIXME We should have proper preWrite/write methods like the readers have a preRead/read, and have them called by the global process - def _preWrite(self): - is_ucp = False - if hasattr(self._stream, 'name'): - # This only works with local file, but we don't want remote UCP files yet - is_ucp = self._stream.name.endswith('.3mf') - - if is_ucp: - self._config_dialog = UCPDialog() - self._config_dialog.finished.connect(self._onUCPConfigFinished) - self._config_dialog.show() - else: - self._doWrite() - - def _onUCPConfigFinished(self, accepted: bool): - if accepted: - self._export_model = self._config_dialog.getModel() - self._doWrite() - else: - self._main_thread_lock.release() - - def _doWrite(self): - self._write() - self._main_thread_lock.release() + def setExportModel(self, model): + if self._export_model != model: + self._export_model = model def _write(self): application = Application.getInstance() @@ -153,19 +132,21 @@ def _write(self): #FIXME We should somehow give the information of the file type so that we know what to write, like the mode but for other files types (give mimetype ?) def write(self, stream, nodes, mode=WorkspaceWriter.OutputMode.BinaryMode): + print("Application.getInstance().getPreferences().getValue(\"local_file/last_used_type\")", Application.getInstance().getPreferences().getValue("local_file/last_used_type")) + self._success = False self._export_model = None self._stream = stream self._nodes = nodes self._mode = mode self._config_dialog = None - - self._main_thread_lock.acquire() - # Export is done in main thread because it may require a few asynchronous configuration steps - Application.getInstance().callLater(self._preWrite) - self._main_thread_lock.acquire() # Block until lock has been released, meaning the config+write is over - - self._main_thread_lock.release() + # + # self._main_thread_lock.acquire() + # # Export is done in main thread because it may require a few asynchronous configuration steps + Application.getInstance().callLater(self._write()) + # self._main_thread_lock.acquire() # Block until lock has been released, meaning the config+write is over + # + # self._main_thread_lock.release() self._export_model = None self._stream = None diff --git a/plugins/3MFWriter/ThreeMFWriter.py b/plugins/3MFWriter/ThreeMFWriter.py index 2caa71353cd..e60aae8dd9d 100644 --- a/plugins/3MFWriter/ThreeMFWriter.py +++ b/plugins/3MFWriter/ThreeMFWriter.py @@ -23,7 +23,7 @@ from PyQt6.QtCore import QBuffer import pySavitar as Savitar - +from .UCPDialog import UCPDialog import numpy import datetime @@ -61,6 +61,7 @@ def __init__(self): self._unit_matrix_string = ThreeMFWriter._convertMatrixToString(Matrix()) self._archive: Optional[zipfile.ZipFile] = None self._store_archive = False + self._is_ucp = False @staticmethod def _convertMatrixToString(matrix): @@ -433,3 +434,8 @@ def _extractModelExportedSettings(model: Optional[SettingsExportModel]) -> Dict[ extra_settings[group.category_details] = exported_model_settings return extra_settings + + def exportUcp(self): + self._is_ucp = True + self._config_dialog = UCPDialog() + self._config_dialog.show() diff --git a/plugins/3MFWriter/UCPDialog.py b/plugins/3MFWriter/UCPDialog.py index fb214aded07..ecffb643387 100644 --- a/plugins/3MFWriter/UCPDialog.py +++ b/plugins/3MFWriter/UCPDialog.py @@ -4,6 +4,8 @@ import os from PyQt6.QtCore import pyqtSignal, QObject + +import UM from UM.FlameProfiler import pyqtSlot from UM.i18n import i18nCatalog @@ -44,6 +46,16 @@ def notifyClosed(self): @pyqtSlot() def _onAccepted(self): self._accepted = True + mesh_writer = CuraApplication.getInstance().getMeshFileHandler().getWriter("3MFWriter") + mesh_writer.custom_data = "My custom data" + + device = CuraApplication.getInstance().getOutputDeviceManager().getOutputDevice("local_file") + file_handler = UM.Qt.QtApplication.QtApplication.getInstance().getWorkspaceFileHandler() + nodes = [CuraApplication.getInstance().getController().getScene().getRoot()] + device.requestWrite(nodes, "test.3mf", ["application/x-ucp"], file_handler, + preferred_mimetype_list="application/x-ucp") + #TODO: update _export_model in threeMFWorkspacewriter and set is_ucp is true + # = self._config_dialog.getModel() self._onFinished() @pyqtSlot() diff --git a/resources/qml/Menus/FileMenu.qml b/resources/qml/Menus/FileMenu.qml index 4f7734cb117..bc0d1e6aef3 100644 --- a/resources/qml/Menus/FileMenu.qml +++ b/resources/qml/Menus/FileMenu.qml @@ -74,14 +74,10 @@ Cura.Menu { id: saveUCPMenu text: catalog.i18nc("@title:menu menubar:file", "&Save Universal Cura Project...") - enabled: UM.WorkspaceFileHandler.enabled + enabled: UM.WorkspaceFileHandler.enabled && CuraApplication.getPackageManager().allEnabledPackages.includes("3MFWriter") onTriggered: { - var args = { "filter_by_machine": false, - "file_type": "workspace", - "preferred_mimetypes": "application/x-ucp", - "limit_mimetypes": "application/x-ucp"}; - UM.OutputDeviceManager.requestWriteToDevice("local_file", PrintInformation.jobName, args) + CuraApplication.exportUcp() } } From efd6284f6e591564f1bc2a5e0e0cc5457730d51f Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Tue, 20 Feb 2024 13:47:51 +0100 Subject: [PATCH 516/765] Make ucp model available in workspace writer CURA-11403 --- plugins/3MFWriter/ThreeMFWorkspaceWriter.py | 6 ++-- plugins/3MFWriter/UCPDialog.py | 35 +++++++++++++++------ 2 files changed, 28 insertions(+), 13 deletions(-) diff --git a/plugins/3MFWriter/ThreeMFWorkspaceWriter.py b/plugins/3MFWriter/ThreeMFWorkspaceWriter.py index 745627ed93b..16b05b30ec1 100644 --- a/plugins/3MFWriter/ThreeMFWorkspaceWriter.py +++ b/plugins/3MFWriter/ThreeMFWorkspaceWriter.py @@ -27,7 +27,7 @@ def __init__(self): super().__init__() self._main_thread_lock = Lock() self._success = False - self._export_model = None + self._ucp_model = None self._stream = None self._nodes = None self._mode = None @@ -35,8 +35,8 @@ def __init__(self): def setExportModel(self, model): - if self._export_model != model: - self._export_model = model + if self._ucp_model != model: + self._ucp_model = model def _write(self): application = Application.getInstance() diff --git a/plugins/3MFWriter/UCPDialog.py b/plugins/3MFWriter/UCPDialog.py index ecffb643387..1100ddc7a9e 100644 --- a/plugins/3MFWriter/UCPDialog.py +++ b/plugins/3MFWriter/UCPDialog.py @@ -7,6 +7,7 @@ import UM from UM.FlameProfiler import pyqtSlot +from UM.Workspace.WorkspaceWriter import WorkspaceWriter from UM.i18n import i18nCatalog from cura.CuraApplication import CuraApplication @@ -45,24 +46,38 @@ def notifyClosed(self): @pyqtSlot() def _onAccepted(self): - self._accepted = True - mesh_writer = CuraApplication.getInstance().getMeshFileHandler().getWriter("3MFWriter") - mesh_writer.custom_data = "My custom data" + application = CuraApplication.getInstance() + workspace_handler = application.getInstance().getWorkspaceFileHandler() + + # Set the model to the workspace writer + mesh_writer = workspace_handler.getWriter("3MFWriter") + mesh_writer.setExportModel(self._model) + + # Open file dialog and write the file + device = application.getOutputDeviceManager().getOutputDevice("local_file") + nodes = [application.getController().getScene().getRoot()] - device = CuraApplication.getInstance().getOutputDeviceManager().getOutputDevice("local_file") - file_handler = UM.Qt.QtApplication.QtApplication.getInstance().getWorkspaceFileHandler() - nodes = [CuraApplication.getInstance().getController().getScene().getRoot()] - device.requestWrite(nodes, "test.3mf", ["application/x-ucp"], file_handler, + device.writeError.connect(self._onRejected) + device.writeSuccess.connect(self._onSuccess) + device.writeFinished.connect(self._onFinished) + + device.requestWrite(nodes, application.getPrintInformation().jobName, ["application/x-ucp"], workspace_handler, preferred_mimetype_list="application/x-ucp") - #TODO: update _export_model in threeMFWorkspacewriter and set is_ucp is true - # = self._config_dialog.getModel() - self._onFinished() @pyqtSlot() def _onRejected(self): self._onFinished() + def _onSuccess(self): + self._accepted = True + self._onFinished() + def _onFinished(self): if not self._finished: # Make sure we don't send the finished signal twice, whatever happens self._finished = True + + # Reset the model to the workspace writer + mesh_writer = CuraApplication.getInstance().getInstance().getWorkspaceFileHandler().getWriter("3MFWriter") + mesh_writer.setExportModel(None) + self.finished.emit(self._accepted) From bd52c91c94fbe58056be8f7923912d76b6ba7690 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Tue, 20 Feb 2024 14:41:48 +0100 Subject: [PATCH 517/765] adding lambda for number of args CURA-11403 --- plugins/3MFWriter/UCPDialog.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/3MFWriter/UCPDialog.py b/plugins/3MFWriter/UCPDialog.py index 1100ddc7a9e..1ac435c8094 100644 --- a/plugins/3MFWriter/UCPDialog.py +++ b/plugins/3MFWriter/UCPDialog.py @@ -57,9 +57,9 @@ def _onAccepted(self): device = application.getOutputDeviceManager().getOutputDevice("local_file") nodes = [application.getController().getScene().getRoot()] - device.writeError.connect(self._onRejected) - device.writeSuccess.connect(self._onSuccess) - device.writeFinished.connect(self._onFinished) + device.writeError.connect(lambda: self._onRejected()) + device.writeSuccess.connect(lambda: self._onSuccess()) + device.writeFinished.connect(lambda: self._onFinished()) device.requestWrite(nodes, application.getPrintInformation().jobName, ["application/x-ucp"], workspace_handler, preferred_mimetype_list="application/x-ucp") From f61991e261d963b1d688c3d9c908e165c0136ec7 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Tue, 20 Feb 2024 15:04:44 +0100 Subject: [PATCH 518/765] Untangle write function CURA-11403 --- plugins/3MFWriter/ThreeMFWorkspaceWriter.py | 50 +++++---------------- 1 file changed, 10 insertions(+), 40 deletions(-) diff --git a/plugins/3MFWriter/ThreeMFWorkspaceWriter.py b/plugins/3MFWriter/ThreeMFWorkspaceWriter.py index 16b05b30ec1..8e20bdb4113 100644 --- a/plugins/3MFWriter/ThreeMFWorkspaceWriter.py +++ b/plugins/3MFWriter/ThreeMFWorkspaceWriter.py @@ -26,11 +26,7 @@ class ThreeMFWorkspaceWriter(WorkspaceWriter): def __init__(self): super().__init__() self._main_thread_lock = Lock() - self._success = False self._ucp_model = None - self._stream = None - self._nodes = None - self._mode = None self._is_ucp = False @@ -38,7 +34,7 @@ def setExportModel(self, model): if self._ucp_model != model: self._ucp_model = model - def _write(self): + def write(self, stream, nodes, mode=WorkspaceWriter.OutputMode.BinaryMode): application = Application.getInstance() machine_manager = application.getMachineManager() @@ -47,24 +43,24 @@ def _write(self): if not mesh_writer: # We need to have the 3mf mesh writer, otherwise we can't save the entire workspace self.setInformation(catalog.i18nc("@error:zip", "3MF Writer plug-in is corrupt.")) Logger.error("3MF Writer class is unavailable. Can't write workspace.") - return + return False global_stack = machine_manager.activeMachine if global_stack is None: self.setInformation( catalog.i18nc("@error", "There is no workspace yet to write. Please add a printer first.")) Logger.error("Tried to write a 3MF workspace before there was a global stack.") - return + return False # Indicate that the 3mf mesh writer should not close the archive just yet (we still need to add stuff to it). mesh_writer.setStoreArchive(True) - if not mesh_writer.write(self._stream, self._nodes, self._mode, self._export_model): + if not mesh_writer.write(stream, nodes, mode, self._ucp_model): self.setInformation(mesh_writer.getInformation()) - return + return False archive = mesh_writer.getArchive() if archive is None: # This happens if there was no mesh data to write. - archive = zipfile.ZipFile(self._stream, "w", compression=zipfile.ZIP_DEFLATED) + archive = zipfile.ZipFile(stream, "w", compression=zipfile.ZIP_DEFLATED) try: # Add global container stack data to the archive. @@ -81,13 +77,13 @@ def _write(self): self._writeContainerToArchive(container, archive) # Write user settings data - if self._export_model is not None: - user_settings_data = self._getUserSettings(self._export_model) + if self._ucp_model is not None: + user_settings_data = self._getUserSettings(self._ucp_model) ThreeMFWriter._storeMetadataJson(user_settings_data, archive, USER_SETTINGS_PATH) except PermissionError: self.setInformation(catalog.i18nc("@error:zip", "No permission to write the workspace here.")) Logger.error("No permission to write workspace to this stream.") - return + return False # Write preferences to archive original_preferences = Application.getInstance().getPreferences() # Copy only the preferences that we use to the workspace. @@ -128,33 +124,7 @@ def _write(self): return mesh_writer.setStoreArchive(False) - self._success = True - - #FIXME We should somehow give the information of the file type so that we know what to write, like the mode but for other files types (give mimetype ?) - def write(self, stream, nodes, mode=WorkspaceWriter.OutputMode.BinaryMode): - print("Application.getInstance().getPreferences().getValue(\"local_file/last_used_type\")", Application.getInstance().getPreferences().getValue("local_file/last_used_type")) - - self._success = False - self._export_model = None - self._stream = stream - self._nodes = nodes - self._mode = mode - self._config_dialog = None - # - # self._main_thread_lock.acquire() - # # Export is done in main thread because it may require a few asynchronous configuration steps - Application.getInstance().callLater(self._write()) - # self._main_thread_lock.acquire() # Block until lock has been released, meaning the config+write is over - # - # self._main_thread_lock.release() - - self._export_model = None - self._stream = None - self._nodes = None - self._mode = None - self._config_dialog = None - - return self._success + return True @staticmethod def _writePluginMetadataToArchive(archive: zipfile.ZipFile) -> None: From a463e5178838cfd92855c33334f4a80244bc5e70 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Tue, 20 Feb 2024 15:07:34 +0100 Subject: [PATCH 519/765] Remove unneeded thread lock CURA-11403 --- plugins/3MFWriter/ThreeMFWorkspaceWriter.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugins/3MFWriter/ThreeMFWorkspaceWriter.py b/plugins/3MFWriter/ThreeMFWorkspaceWriter.py index 8e20bdb4113..ddff454516e 100644 --- a/plugins/3MFWriter/ThreeMFWorkspaceWriter.py +++ b/plugins/3MFWriter/ThreeMFWorkspaceWriter.py @@ -25,11 +25,9 @@ class ThreeMFWorkspaceWriter(WorkspaceWriter): def __init__(self): super().__init__() - self._main_thread_lock = Lock() self._ucp_model = None self._is_ucp = False - def setExportModel(self, model): if self._ucp_model != model: self._ucp_model = model From e0754092437f0ed78c86633cbeeeac630db48ac0 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Tue, 20 Feb 2024 15:07:48 +0100 Subject: [PATCH 520/765] Return `False` in case of exception CURA-11403 --- plugins/3MFWriter/ThreeMFWorkspaceWriter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/3MFWriter/ThreeMFWorkspaceWriter.py b/plugins/3MFWriter/ThreeMFWorkspaceWriter.py index ddff454516e..eb0ecf5ed50 100644 --- a/plugins/3MFWriter/ThreeMFWorkspaceWriter.py +++ b/plugins/3MFWriter/ThreeMFWorkspaceWriter.py @@ -115,11 +115,11 @@ def write(self, stream, nodes, mode=WorkspaceWriter.OutputMode.BinaryMode): except PermissionError: self.setInformation(catalog.i18nc("@error:zip", "No permission to write the workspace here.")) Logger.error("No permission to write workspace to this stream.") - return + return False except EnvironmentError as e: self.setInformation(catalog.i18nc("@error:zip", str(e))) Logger.error("EnvironmentError when writing workspace to this stream: {err}".format(err=str(e))) - return + return False mesh_writer.setStoreArchive(False) return True From 6bbdd543426b9a80c14dc2d6cb67b7fed9a8b594 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Tue, 20 Feb 2024 16:17:39 +0100 Subject: [PATCH 521/765] Remove unused `_is_ucp` CURA-11403 --- plugins/3MFWriter/ThreeMFWorkspaceWriter.py | 7 ++++--- plugins/3MFWriter/ThreeMFWriter.py | 2 -- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/plugins/3MFWriter/ThreeMFWorkspaceWriter.py b/plugins/3MFWriter/ThreeMFWorkspaceWriter.py index eb0ecf5ed50..cff938788b1 100644 --- a/plugins/3MFWriter/ThreeMFWorkspaceWriter.py +++ b/plugins/3MFWriter/ThreeMFWorkspaceWriter.py @@ -1,6 +1,8 @@ # Copyright (c) 2020 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. +from typing import Optional + import configparser from io import StringIO from threading import Lock @@ -25,10 +27,9 @@ class ThreeMFWorkspaceWriter(WorkspaceWriter): def __init__(self): super().__init__() - self._ucp_model = None - self._is_ucp = False + self._ucp_model: Optional[SettingsExportModel] = None - def setExportModel(self, model): + def setExportModel(self, model: SettingsExportModel) -> None: if self._ucp_model != model: self._ucp_model = model diff --git a/plugins/3MFWriter/ThreeMFWriter.py b/plugins/3MFWriter/ThreeMFWriter.py index e60aae8dd9d..6e3dc868901 100644 --- a/plugins/3MFWriter/ThreeMFWriter.py +++ b/plugins/3MFWriter/ThreeMFWriter.py @@ -61,7 +61,6 @@ def __init__(self): self._unit_matrix_string = ThreeMFWriter._convertMatrixToString(Matrix()) self._archive: Optional[zipfile.ZipFile] = None self._store_archive = False - self._is_ucp = False @staticmethod def _convertMatrixToString(matrix): @@ -436,6 +435,5 @@ def _extractModelExportedSettings(model: Optional[SettingsExportModel]) -> Dict[ return extra_settings def exportUcp(self): - self._is_ucp = True self._config_dialog = UCPDialog() self._config_dialog.show() From 11a4588546c05209e407c89a684bc118ed015a59 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Tue, 20 Feb 2024 16:27:47 +0100 Subject: [PATCH 522/765] Properly handle exceptions CURA-11403 --- plugins/3MFWriter/UCPDialog.py | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/plugins/3MFWriter/UCPDialog.py b/plugins/3MFWriter/UCPDialog.py index 1ac435c8094..355c70602c6 100644 --- a/plugins/3MFWriter/UCPDialog.py +++ b/plugins/3MFWriter/UCPDialog.py @@ -7,8 +7,11 @@ import UM from UM.FlameProfiler import pyqtSlot +from UM.OutputDevice import OutputDeviceError from UM.Workspace.WorkspaceWriter import WorkspaceWriter from UM.i18n import i18nCatalog +from UM.Logger import Logger +from UM.Message import Message from cura.CuraApplication import CuraApplication @@ -61,8 +64,22 @@ def _onAccepted(self): device.writeSuccess.connect(lambda: self._onSuccess()) device.writeFinished.connect(lambda: self._onFinished()) - device.requestWrite(nodes, application.getPrintInformation().jobName, ["application/x-ucp"], workspace_handler, + file_name = application.getPrintInformation().jobName + + try: + device.requestWrite(nodes, file_name, ["application/x-ucp"], workspace_handler, preferred_mimetype_list="application/x-ucp") + except OutputDeviceError.UserCanceledError: + self._onRejected() + except Exception as e: + message = Message( + i18n_catalog.i18nc("@info:error", "Unable to write to file: {0}", file_name), + title=i18n_catalog.i18nc("@info:title", "Error"), + message_type=Message.MessageType.ERROR + ) + message.show() + Logger.logException("e", "Unable to write to file %s: %s", file_name, e) + self._onRejected() @pyqtSlot() def _onRejected(self): From bc41b8f801e7f905b6d480674ea55c1639297d01 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Tue, 20 Feb 2024 16:48:38 +0100 Subject: [PATCH 523/765] Use string for prime tower enum value --- resources/definitions/atmat_signal_pro_base.def.json | 4 +++- resources/definitions/deltacomb_dc20flux.def.json | 4 +++- resources/definitions/deltacomb_dc21flux.def.json | 4 +++- resources/definitions/deltacomb_dc30flux.def.json | 4 +++- resources/definitions/lotmaxx_sc60.def.json | 4 +++- resources/definitions/ultimaker_s3.def.json | 4 +++- resources/definitions/ultimaker_s5.def.json | 4 +++- 7 files changed, 21 insertions(+), 7 deletions(-) diff --git a/resources/definitions/atmat_signal_pro_base.def.json b/resources/definitions/atmat_signal_pro_base.def.json index 83af53fb3c8..f6cf00b6441 100644 --- a/resources/definitions/atmat_signal_pro_base.def.json +++ b/resources/definitions/atmat_signal_pro_base.def.json @@ -110,7 +110,9 @@ "min_infill_area": { "value": "5.0" }, "minimum_polygon_circumference": { "value": "0.2" }, "optimize_wall_printing_order": { "value": "True" }, - "prime_tower_mode": { "value": "normal" }, + "prime_tower_mode": { + "value": "'normal'" + }, "retraction_amount": { "value": "1" }, "retraction_combing": { "value": "'noskin'" }, "retraction_combing_max_distance": { "value": "10" }, diff --git a/resources/definitions/deltacomb_dc20flux.def.json b/resources/definitions/deltacomb_dc20flux.def.json index 50f69636bd0..fd67f9da723 100644 --- a/resources/definitions/deltacomb_dc20flux.def.json +++ b/resources/definitions/deltacomb_dc20flux.def.json @@ -32,7 +32,9 @@ "material_initial_print_temperature": { "value": "material_print_temperature" }, "material_standby_temperature": { "value": "material_print_temperature" }, "prime_tower_min_volume": { "value": "50" }, - "prime_tower_mode": { "value": "normal" }, + "prime_tower_mode": { + "value": "'normal'" + }, "switch_extruder_retraction_amount": { "value": "0" } } } \ No newline at end of file diff --git a/resources/definitions/deltacomb_dc21flux.def.json b/resources/definitions/deltacomb_dc21flux.def.json index e09fbeca636..c218f085b93 100644 --- a/resources/definitions/deltacomb_dc21flux.def.json +++ b/resources/definitions/deltacomb_dc21flux.def.json @@ -32,7 +32,9 @@ "material_initial_print_temperature": { "value": "material_print_temperature" }, "material_standby_temperature": { "value": "material_print_temperature" }, "prime_tower_min_volume": { "value": "50" }, - "prime_tower_mode": { "value": "normal" }, + "prime_tower_mode": { + "value": "'normal'" + }, "switch_extruder_retraction_amount": { "value": "0" } } } \ No newline at end of file diff --git a/resources/definitions/deltacomb_dc30flux.def.json b/resources/definitions/deltacomb_dc30flux.def.json index f59bf53a9af..b877e4979d2 100644 --- a/resources/definitions/deltacomb_dc30flux.def.json +++ b/resources/definitions/deltacomb_dc30flux.def.json @@ -32,7 +32,9 @@ "material_initial_print_temperature": { "value": "material_print_temperature" }, "material_standby_temperature": { "value": "material_print_temperature" }, "prime_tower_min_volume": { "value": "50" }, - "prime_tower_mode": { "value": "normal" }, + "prime_tower_mode": { + "value": "'normal'" + }, "switch_extruder_retraction_amount": { "value": "0" } } } \ No newline at end of file diff --git a/resources/definitions/lotmaxx_sc60.def.json b/resources/definitions/lotmaxx_sc60.def.json index 89eeac9b755..39513ebc3be 100644 --- a/resources/definitions/lotmaxx_sc60.def.json +++ b/resources/definitions/lotmaxx_sc60.def.json @@ -45,7 +45,9 @@ "meshfix_maximum_resolution": { "value": 0.25 }, "optimize_wall_printing_order": { "value": true }, "prime_tower_min_volume": { "value": 30 }, - "prime_tower_mode": { "value": "normal" }, + "prime_tower_mode": { + "value": "'normal'" + }, "retract_at_layer_change": { "value": false }, "retraction_amount": { "value": 4.5 }, "roofing_layer_count": { "value": 1 }, diff --git a/resources/definitions/ultimaker_s3.def.json b/resources/definitions/ultimaker_s3.def.json index 47a81035c99..7a0ab6f42ff 100644 --- a/resources/definitions/ultimaker_s3.def.json +++ b/resources/definitions/ultimaker_s3.def.json @@ -103,7 +103,9 @@ "default_value": false, "enabled": true }, - "prime_tower_mode": { "value": "normal" }, + "prime_tower_mode": { + "value": "'normal'" + }, "retraction_amount": { "value": "6.5" }, "retraction_hop": { "value": "2" }, "retraction_hop_enabled": { "value": "extruders_enabled_count > 1" }, diff --git a/resources/definitions/ultimaker_s5.def.json b/resources/definitions/ultimaker_s5.def.json index 30ad07dd2c5..346693bf53a 100644 --- a/resources/definitions/ultimaker_s5.def.json +++ b/resources/definitions/ultimaker_s5.def.json @@ -104,7 +104,9 @@ "default_value": false, "enabled": true }, - "prime_tower_mode": { "value": "normal" }, + "prime_tower_mode": { + "value": "'normal'" + }, "retraction_amount": { "value": "6.5" }, "retraction_combing": { "value": "'no_outer_surfaces'" }, "retraction_hop": { "value": "2" }, From 8fcdd09b7bbe7ac5557b4d1b1bb59645036e2c91 Mon Sep 17 00:00:00 2001 From: casperlamboo Date: Tue, 20 Feb 2024 15:49:37 +0000 Subject: [PATCH 524/765] Applied printer-linter format --- resources/definitions/atmat_signal_pro_base.def.json | 4 +--- resources/definitions/deltacomb_dc20flux.def.json | 4 +--- resources/definitions/deltacomb_dc21flux.def.json | 4 +--- resources/definitions/deltacomb_dc30flux.def.json | 4 +--- resources/definitions/lotmaxx_sc60.def.json | 4 +--- resources/definitions/ultimaker_s3.def.json | 4 +--- resources/definitions/ultimaker_s5.def.json | 4 +--- 7 files changed, 7 insertions(+), 21 deletions(-) diff --git a/resources/definitions/atmat_signal_pro_base.def.json b/resources/definitions/atmat_signal_pro_base.def.json index f6cf00b6441..0b8761a62c1 100644 --- a/resources/definitions/atmat_signal_pro_base.def.json +++ b/resources/definitions/atmat_signal_pro_base.def.json @@ -110,9 +110,7 @@ "min_infill_area": { "value": "5.0" }, "minimum_polygon_circumference": { "value": "0.2" }, "optimize_wall_printing_order": { "value": "True" }, - "prime_tower_mode": { - "value": "'normal'" - }, + "prime_tower_mode": { "value": "'normal'" }, "retraction_amount": { "value": "1" }, "retraction_combing": { "value": "'noskin'" }, "retraction_combing_max_distance": { "value": "10" }, diff --git a/resources/definitions/deltacomb_dc20flux.def.json b/resources/definitions/deltacomb_dc20flux.def.json index fd67f9da723..f76ba3e4cd0 100644 --- a/resources/definitions/deltacomb_dc20flux.def.json +++ b/resources/definitions/deltacomb_dc20flux.def.json @@ -32,9 +32,7 @@ "material_initial_print_temperature": { "value": "material_print_temperature" }, "material_standby_temperature": { "value": "material_print_temperature" }, "prime_tower_min_volume": { "value": "50" }, - "prime_tower_mode": { - "value": "'normal'" - }, + "prime_tower_mode": { "value": "'normal'" }, "switch_extruder_retraction_amount": { "value": "0" } } } \ No newline at end of file diff --git a/resources/definitions/deltacomb_dc21flux.def.json b/resources/definitions/deltacomb_dc21flux.def.json index c218f085b93..3c2080a87bf 100644 --- a/resources/definitions/deltacomb_dc21flux.def.json +++ b/resources/definitions/deltacomb_dc21flux.def.json @@ -32,9 +32,7 @@ "material_initial_print_temperature": { "value": "material_print_temperature" }, "material_standby_temperature": { "value": "material_print_temperature" }, "prime_tower_min_volume": { "value": "50" }, - "prime_tower_mode": { - "value": "'normal'" - }, + "prime_tower_mode": { "value": "'normal'" }, "switch_extruder_retraction_amount": { "value": "0" } } } \ No newline at end of file diff --git a/resources/definitions/deltacomb_dc30flux.def.json b/resources/definitions/deltacomb_dc30flux.def.json index b877e4979d2..69249e42fd9 100644 --- a/resources/definitions/deltacomb_dc30flux.def.json +++ b/resources/definitions/deltacomb_dc30flux.def.json @@ -32,9 +32,7 @@ "material_initial_print_temperature": { "value": "material_print_temperature" }, "material_standby_temperature": { "value": "material_print_temperature" }, "prime_tower_min_volume": { "value": "50" }, - "prime_tower_mode": { - "value": "'normal'" - }, + "prime_tower_mode": { "value": "'normal'" }, "switch_extruder_retraction_amount": { "value": "0" } } } \ No newline at end of file diff --git a/resources/definitions/lotmaxx_sc60.def.json b/resources/definitions/lotmaxx_sc60.def.json index 39513ebc3be..64220c372e8 100644 --- a/resources/definitions/lotmaxx_sc60.def.json +++ b/resources/definitions/lotmaxx_sc60.def.json @@ -45,9 +45,7 @@ "meshfix_maximum_resolution": { "value": 0.25 }, "optimize_wall_printing_order": { "value": true }, "prime_tower_min_volume": { "value": 30 }, - "prime_tower_mode": { - "value": "'normal'" - }, + "prime_tower_mode": { "value": "'normal'" }, "retract_at_layer_change": { "value": false }, "retraction_amount": { "value": 4.5 }, "roofing_layer_count": { "value": 1 }, diff --git a/resources/definitions/ultimaker_s3.def.json b/resources/definitions/ultimaker_s3.def.json index 7a0ab6f42ff..ca40788581d 100644 --- a/resources/definitions/ultimaker_s3.def.json +++ b/resources/definitions/ultimaker_s3.def.json @@ -103,9 +103,7 @@ "default_value": false, "enabled": true }, - "prime_tower_mode": { - "value": "'normal'" - }, + "prime_tower_mode": { "value": "'normal'" }, "retraction_amount": { "value": "6.5" }, "retraction_hop": { "value": "2" }, "retraction_hop_enabled": { "value": "extruders_enabled_count > 1" }, diff --git a/resources/definitions/ultimaker_s5.def.json b/resources/definitions/ultimaker_s5.def.json index 346693bf53a..73854f28905 100644 --- a/resources/definitions/ultimaker_s5.def.json +++ b/resources/definitions/ultimaker_s5.def.json @@ -104,9 +104,7 @@ "default_value": false, "enabled": true }, - "prime_tower_mode": { - "value": "'normal'" - }, + "prime_tower_mode": { "value": "'normal'" }, "retraction_amount": { "value": "6.5" }, "retraction_combing": { "value": "'no_outer_surfaces'" }, "retraction_hop": { "value": "2" }, From ce3baa15e2b196fdaeb223a434c6fa6fc395d8cb Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Tue, 20 Feb 2024 16:56:05 +0100 Subject: [PATCH 525/765] file name is coming from CuraApplication Instance CURA-11403 --- plugins/3MFWriter/UCPDialog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/3MFWriter/UCPDialog.py b/plugins/3MFWriter/UCPDialog.py index 355c70602c6..20b3a379095 100644 --- a/plugins/3MFWriter/UCPDialog.py +++ b/plugins/3MFWriter/UCPDialog.py @@ -64,7 +64,7 @@ def _onAccepted(self): device.writeSuccess.connect(lambda: self._onSuccess()) device.writeFinished.connect(lambda: self._onFinished()) - file_name = application.getPrintInformation().jobName + file_name = CuraApplication.getInstance().getPrintInformation().jobName try: device.requestWrite(nodes, file_name, ["application/x-ucp"], workspace_handler, From d2566d72ff3d4db3270246c9a2c04c6dd383ce73 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Tue, 20 Feb 2024 16:56:34 +0100 Subject: [PATCH 526/765] for preference to open dialo while saving ucp CURA-11403 --- plugins/3MFWriter/UCPDialog.qml | 12 +++++++++--- resources/qml/Dialogs/WorkspaceSummaryDialog.qml | 2 +- resources/qml/Menus/FileMenu.qml | 13 ++++++++++++- 3 files changed, 22 insertions(+), 5 deletions(-) diff --git a/plugins/3MFWriter/UCPDialog.qml b/plugins/3MFWriter/UCPDialog.qml index 7eaf57c96b0..3a0e6bf8423 100644 --- a/plugins/3MFWriter/UCPDialog.qml +++ b/plugins/3MFWriter/UCPDialog.qml @@ -19,12 +19,12 @@ UM.Dialog minimumHeight: UM.Theme.getSize("modal_window_minimum").height backgroundColor: UM.Theme.getColor("detail_background") - property bool dontShowAgain: true + property bool dontShowAgain: false function storeDontShowAgain() { UM.Preferences.setValue("cura/dialog_on_ucp_project_save", !dontShowAgainCheckbox.checked) - UM.Preferences.setValue("asked_dialog_on_ucp_project_save", true) + UM.Preferences.setValue("cura/asked_dialog_on_ucp_project_save", false) } onVisibleChanged: @@ -115,5 +115,11 @@ UM.Dialog buttonSpacing: UM.Theme.getSize("wide_margin").width - onClosing: manager.notifyClosed() + onClosing: + { + storeDontShowAgain() + manager.notifyClosed() + } + onRejected: storeDontShowAgain() + onAccepted: storeDontShowAgain() } diff --git a/resources/qml/Dialogs/WorkspaceSummaryDialog.qml b/resources/qml/Dialogs/WorkspaceSummaryDialog.qml index a1749598078..1eca2f395c8 100644 --- a/resources/qml/Dialogs/WorkspaceSummaryDialog.qml +++ b/resources/qml/Dialogs/WorkspaceSummaryDialog.qml @@ -25,7 +25,7 @@ UM.Dialog function storeDontShowAgain() { UM.Preferences.setValue("cura/dialog_on_project_save", !dontShowAgainCheckbox.checked) - UM.Preferences.setValue("asked_dialog_on_project_save", true) + UM.Preferences.setValue("cura/asked_dialog_on_project_save", true) } onClosing: storeDontShowAgain() diff --git a/resources/qml/Menus/FileMenu.qml b/resources/qml/Menus/FileMenu.qml index bc0d1e6aef3..3f8c0daac09 100644 --- a/resources/qml/Menus/FileMenu.qml +++ b/resources/qml/Menus/FileMenu.qml @@ -77,7 +77,18 @@ Cura.Menu enabled: UM.WorkspaceFileHandler.enabled && CuraApplication.getPackageManager().allEnabledPackages.includes("3MFWriter") onTriggered: { - CuraApplication.exportUcp() + if(UM.Preferences.getValue("cura/dialog_on_ucp_project_save")) + { + CuraApplication.exportUcp() + } + else + { + var args = { "filter_by_machine": false, + "file_type": "workspace", + "preferred_mimetypes": "application/x-ucp", + "limit_mimetypes": ["application/x-ucp"]}; + UM.OutputDeviceManager.requestWriteToDevice("local_file", PrintInformation.jobName, args) + } } } From 942589d3a21ee7677ef9062b26ea9500bf73a798 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Tue, 20 Feb 2024 17:05:23 +0100 Subject: [PATCH 527/765] filename is basename without the printer info CURA-11403 --- plugins/3MFWriter/UCPDialog.py | 2 +- resources/qml/Menus/FileMenu.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/3MFWriter/UCPDialog.py b/plugins/3MFWriter/UCPDialog.py index 20b3a379095..8e62666818d 100644 --- a/plugins/3MFWriter/UCPDialog.py +++ b/plugins/3MFWriter/UCPDialog.py @@ -64,7 +64,7 @@ def _onAccepted(self): device.writeSuccess.connect(lambda: self._onSuccess()) device.writeFinished.connect(lambda: self._onFinished()) - file_name = CuraApplication.getInstance().getPrintInformation().jobName + file_name = CuraApplication.getInstance().getPrintInformation().baseName try: device.requestWrite(nodes, file_name, ["application/x-ucp"], workspace_handler, diff --git a/resources/qml/Menus/FileMenu.qml b/resources/qml/Menus/FileMenu.qml index 3f8c0daac09..7af21182cde 100644 --- a/resources/qml/Menus/FileMenu.qml +++ b/resources/qml/Menus/FileMenu.qml @@ -87,7 +87,7 @@ Cura.Menu "file_type": "workspace", "preferred_mimetypes": "application/x-ucp", "limit_mimetypes": ["application/x-ucp"]}; - UM.OutputDeviceManager.requestWriteToDevice("local_file", PrintInformation.jobName, args) + UM.OutputDeviceManager.requestWriteToDevice("local_file", PrintInformation.baseName, args) } } } From f6c9936d1e4575749f1dcaa5913587baf37fe0d0 Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Tue, 20 Feb 2024 19:49:49 +0100 Subject: [PATCH 528/765] Remove SR-30 from exclude list PP-393 --- resources/definitions/ultimaker_method_base.def.json | 1 - 1 file changed, 1 deletion(-) diff --git a/resources/definitions/ultimaker_method_base.def.json b/resources/definitions/ultimaker_method_base.def.json index 6e40f0bbf1b..983af7ea27e 100644 --- a/resources/definitions/ultimaker_method_base.def.json +++ b/resources/definitions/ultimaker_method_base.def.json @@ -28,7 +28,6 @@ "generic_hips_175", "generic_pc_175", "ultimaker_rapidrinse_175", - "ultimaker_sr30_175", "generic_tpu_175", "goofoo_", "ideagen3D_", From 59a23231ccb518b0c12aed273a27e9871d0548ef Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Tue, 20 Feb 2024 20:13:27 +0100 Subject: [PATCH 529/765] Include prime tower mode PP-393 --- resources/definitions/fdmprinter.def.json | 77 ++++++++++++++++------- 1 file changed, 56 insertions(+), 21 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 20a8a698a2c..1d453456a8e 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -76,6 +76,22 @@ "type": "str", "enabled": false }, + "material_type": + { + "label": "Material Type", + "description": "The type of material used.", + "default_value": "", + "type": "str", + "enabled": false + }, + "material_brand": + { + "label": "Material Brand", + "description": "The brand of material used.", + "default_value": "", + "type": "str", + "enabled": false + }, "material_diameter": { "label": "Diameter", @@ -963,7 +979,7 @@ "description": "Width of a single prime tower line.", "type": "float", "unit": "mm", - "enabled": "resolveOrValue('prime_tower_enable')", + "enabled": "resolveOrValue('prime_tower_mode') != 'none'", "default_value": 0.4, "value": "line_width", "minimum_value": "0.001", @@ -3347,7 +3363,7 @@ "description": "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal.", "type": "float", "unit": "mm/s", - "enabled": "resolveOrValue('prime_tower_enable')", + "enabled": "resolveOrValue('prime_tower_mode') != 'none'", "default_value": 60, "value": "speed_print", "minimum_value": "0.1", @@ -3725,7 +3741,7 @@ "maximum_value_warning": "10000", "default_value": 3000, "value": "acceleration_print", - "enabled": "resolveOrValue('prime_tower_enable') and resolveOrValue('acceleration_enabled')", + "enabled": "resolveOrValue('prime_tower_mode') != 'none' and resolveOrValue('acceleration_enabled')", "settable_per_mesh": false } } @@ -4044,7 +4060,7 @@ "maximum_value_warning": "50", "default_value": 20, "value": "jerk_print", - "enabled": "resolveOrValue('prime_tower_enable') and resolveOrValue('jerk_enabled')", + "enabled": "resolveOrValue('prime_tower_mode') != 'none' and resolveOrValue('jerk_enabled')", "settable_per_mesh": false } } @@ -5135,7 +5151,7 @@ "unit": "mm", "type": "float", "minimum_value": "0", - "maximum_value_warning": "machine_nozzle_size", + "maximum_value_warning": "5*layer_height", "default_value": 0.1, "limit_to_extruder": "support_interface_extruder_nr if support_interface_enable else support_infill_extruder_nr", "enabled": "support_enable or support_meshes_present", @@ -6778,14 +6794,20 @@ "description": "Settings used for printing with multiple extruders.", "children": { - "prime_tower_enable": + "prime_tower_mode": { - "label": "Enable Prime Tower", - "description": "Print a tower next to the print which serves to prime the material after each nozzle switch.", - "type": "bool", + "label": "Prime Tower", + "description": "Print a tower next to the model, which serves to prime the material after each nozzle switch.
    • None: do not generate a prime tower
    • Normal: generate a bucket in which secondary materials are primed
    • Interleaved: generate a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other.
    ", + "type": "enum", + "value": "'none' if (extruders_enabled_count < 2) else ('interleaved' if (all(material_type_var == extruderValues('material_type')[0] for material_type_var in extruderValues('material_type')) and all(material_brand_var == extruderValues('material_brand')[0] for material_brand_var in extruderValues('material_brand'))) else 'normal')", + "options": + { + "none": "None", + "normal": "Normal", + "interleaved": "Interleaved" + }, + "default_value": "none", "enabled": "extruders_enabled_count > 1", - "default_value": false, - "resolve": "(extruders_enabled_count > 1) and any(extruderValues('prime_tower_enable'))", "settable_per_mesh": false, "settable_per_extruder": false }, @@ -6795,7 +6817,7 @@ "description": "The width of the prime tower.", "type": "float", "unit": "mm", - "enabled": "resolveOrValue('prime_tower_enable')", + "enabled": "resolveOrValue('prime_tower_mode') != 'none'", "default_value": 20, "resolve": "max(extruderValues('prime_tower_size'))", "minimum_value": "0", @@ -6814,7 +6836,20 @@ "default_value": 6, "minimum_value": "0", "maximum_value_warning": "(resolveOrValue('prime_tower_size') * 0.5) ** 2 * 3.14159 * resolveOrValue('layer_height') - sum(extruderValues('prime_tower_min_volume')) + prime_tower_min_volume", - "enabled": "resolveOrValue('prime_tower_enable')", + "enabled": "resolveOrValue('prime_tower_mode') != 'none'", + "settable_per_mesh": false, + "settable_per_extruder": true + }, + "prime_tower_max_bridging_distance": + { + "label": "Prime Tower Maximum Bridging Distance", + "description": "The maximum length of the branches which may be printed over the air.", + "unit": "mm", + "type": "float", + "default_value": 5, + "minimum_value": "line_width", + "maximum_value_warning": "10.0", + "enabled": "resolveOrValue('prime_tower_mode') != 'none'", "settable_per_mesh": false, "settable_per_extruder": true }, @@ -6824,7 +6859,7 @@ "description": "The x coordinate of the position of the prime tower.", "type": "float", "unit": "mm", - "enabled": "resolveOrValue('prime_tower_enable')", + "enabled": "resolveOrValue('prime_tower_mode') != 'none'", "default_value": 200, "value": "(resolveOrValue('machine_width') / 2 + resolveOrValue('prime_tower_size') / 2) if resolveOrValue('machine_shape') == 'elliptic' else (resolveOrValue('machine_width') - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('machine_nozzle_offset_x')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_x'))), 1)) - (resolveOrValue('machine_width') / 2 if resolveOrValue('machine_center_is_zero') else 0)", "maximum_value": "(machine_width / 2 if machine_center_is_zero else machine_width) - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0)", @@ -6838,7 +6873,7 @@ "description": "The y coordinate of the position of the prime tower.", "type": "float", "unit": "mm", - "enabled": "resolveOrValue('prime_tower_enable')", + "enabled": "resolveOrValue('prime_tower_mode') != 'none'", "default_value": 200, "value": "machine_depth - prime_tower_size - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('machine_nozzle_offset_y')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (resolveOrValue('machine_depth') / 2 if resolveOrValue('machine_center_is_zero') else 0)", "maximum_value": "(machine_depth / 2 - resolveOrValue('prime_tower_size') if machine_center_is_zero else machine_depth - resolveOrValue('prime_tower_size')) - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0)", @@ -6851,7 +6886,7 @@ "label": "Wipe Inactive Nozzle on Prime Tower", "description": "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower.", "type": "bool", - "enabled": "resolveOrValue('prime_tower_enable')", + "enabled": "resolveOrValue('prime_tower_mode') != 'none'", "default_value": true, "settable_per_mesh": false, "settable_per_extruder": true @@ -6862,7 +6897,7 @@ "label": "Prime Tower Base", "description": "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height.", "type": "bool", - "enabled": "resolveOrValue('prime_tower_enable') and resolveOrValue('adhesion_type') != 'raft'", + "enabled": "resolveOrValue('prime_tower_mode') != 'none' and resolveOrValue('adhesion_type') != 'raft'", "default_value": false, "settable_per_mesh": false, "settable_per_extruder": false @@ -6874,7 +6909,7 @@ "description": "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area.", "type": "float", "unit": "mm", - "enabled": "resolveOrValue('prime_tower_enable') and (resolveOrValue('prime_tower_brim_enable') or resolveOrValue('adhesion_type') == 'raft')", + "enabled": "resolveOrValue('prime_tower_mode') != 'none' and (resolveOrValue('prime_tower_brim_enable') or resolveOrValue('adhesion_type') == 'raft')", "default_value": 1.2, "minimum_value": "0", "maximum_value": "min(0.5 * machine_width, 0.5 * machine_depth)", @@ -6888,7 +6923,7 @@ "description": "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base.", "type": "float", "unit": "mm", - "enabled": "resolveOrValue('prime_tower_enable') and (resolveOrValue('prime_tower_brim_enable') or resolveOrValue('adhesion_type') == 'raft')", + "enabled": "resolveOrValue('prime_tower_mode') != 'none' and (resolveOrValue('prime_tower_brim_enable') or resolveOrValue('adhesion_type') == 'raft')", "default_value": 0, "minimum_value": "0", "maximum_value": "machine_height", @@ -6900,7 +6935,7 @@ "label": "Prime Tower Base Slope", "description": "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker.", "type": "float", - "enabled": "resolveOrValue('prime_tower_enable') and (resolveOrValue('prime_tower_brim_enable') or resolveOrValue('adhesion_type') == 'raft')", + "enabled": "resolveOrValue('prime_tower_mode') != 'none' and (resolveOrValue('prime_tower_brim_enable') or resolveOrValue('adhesion_type') == 'raft')", "default_value": 4, "minimum_value": "0", "maximum_value": "10", @@ -6918,7 +6953,7 @@ "minimum_value": "0", "minimum_value_warning": "raft_base_line_width", "maximum_value_warning": "100", - "enabled": "resolveOrValue('prime_tower_enable') and resolveOrValue('adhesion_type') == 'raft'", + "enabled": "resolveOrValue('prime_tower_mode') != 'none' and resolveOrValue('adhesion_type') == 'raft'", "settable_per_mesh": false, "settable_per_extruder": true, "limit_to_extruder": "raft_base_extruder_nr" From 08b70252a4ad3fb8af11d9d70d037fc2a990b5a2 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Wed, 21 Feb 2024 11:23:05 +0100 Subject: [PATCH 530/765] Remove duplicated mime type CURA-11403 --- plugins/3MFReader/ThreeMFReader.py | 9 +------- plugins/3MFWriter/UCPDialog.py | 35 ++++++++++++++++++++---------- plugins/3MFWriter/__init__.py | 12 ---------- 3 files changed, 25 insertions(+), 31 deletions(-) diff --git a/plugins/3MFReader/ThreeMFReader.py b/plugins/3MFReader/ThreeMFReader.py index c7a15e043ef..ac942821360 100755 --- a/plugins/3MFReader/ThreeMFReader.py +++ b/plugins/3MFReader/ThreeMFReader.py @@ -41,18 +41,11 @@ def __init__(self) -> None: MimeTypeDatabase.addMimeType( MimeType( - name = "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", + name="application/vnd.ms-package.3dmanufacturing-3dmodel+xml", comment="3MF", suffixes=["3mf"] ) ) - MimeTypeDatabase.addMimeType( - MimeType( - name="application/x-ucp", - comment="UCP", - suffixes=["3mf"] - ) - ) self._supported_extensions = [".3mf"] self._root = None diff --git a/plugins/3MFWriter/UCPDialog.py b/plugins/3MFWriter/UCPDialog.py index 8e62666818d..b2ad5834ebe 100644 --- a/plugins/3MFWriter/UCPDialog.py +++ b/plugins/3MFWriter/UCPDialog.py @@ -29,15 +29,21 @@ def __init__(self, parent = None) -> None: plugin_path = os.path.dirname(__file__) dialog_path = os.path.join(plugin_path, 'UCPDialog.qml') self._model = SettingsExportModel() - self._view = CuraApplication.getInstance().createQmlComponent(dialog_path, - {"manager": self, - "settingsExportModel": self._model}) + self._view = CuraApplication.getInstance().createQmlComponent( + dialog_path, + { + "manager": self, + "settingsExportModel": self._model + } + ) self._view.accepted.connect(self._onAccepted) self._view.rejected.connect(self._onRejected) self._finished = False self._accepted = False def show(self) -> None: + self._finished = False + self._accepted = False self._view.show() def getModel(self) -> SettingsExportModel: @@ -67,8 +73,13 @@ def _onAccepted(self): file_name = CuraApplication.getInstance().getPrintInformation().baseName try: - device.requestWrite(nodes, file_name, ["application/x-ucp"], workspace_handler, - preferred_mimetype_list="application/x-ucp") + device.requestWrite( + nodes, + file_name, + ["application/vnd.ms-package.3dmanufacturing-3dmodel+xml"], + workspace_handler, + preferred_mimetype_list="application/vnd.ms-package.3dmanufacturing-3dmodel+xml" + ) except OutputDeviceError.UserCanceledError: self._onRejected() except Exception as e: @@ -90,11 +101,13 @@ def _onSuccess(self): self._onFinished() def _onFinished(self): - if not self._finished: # Make sure we don't send the finished signal twice, whatever happens - self._finished = True + # Make sure we don't send the finished signal twice, whatever happens + if self._finished: + return + self._finished = True - # Reset the model to the workspace writer - mesh_writer = CuraApplication.getInstance().getInstance().getWorkspaceFileHandler().getWriter("3MFWriter") - mesh_writer.setExportModel(None) + # Reset the model to the workspace writer + mesh_writer = CuraApplication.getInstance().getInstance().getWorkspaceFileHandler().getWriter("3MFWriter") + mesh_writer.setExportModel(None) - self.finished.emit(self._accepted) + self.finished.emit(self._accepted) diff --git a/plugins/3MFWriter/__init__.py b/plugins/3MFWriter/__init__.py index 1cecf4c3f81..0b2976c3860 100644 --- a/plugins/3MFWriter/__init__.py +++ b/plugins/3MFWriter/__init__.py @@ -32,12 +32,6 @@ def getMetaData(): "description": i18n_catalog.i18nc("@item:inlistbox", "3MF file"), "mime_type": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", "mode": ThreeMFWriter.ThreeMFWriter.OutputMode.BinaryMode - }, - { - "extension": "3mf", - "description": i18n_catalog.i18nc("@item:inlistbox", "Universal Cura Project"), - "mime_type": "application/x-ucp", - "mode": ThreeMFWriter.ThreeMFWriter.OutputMode.BinaryMode } ] } @@ -48,12 +42,6 @@ def getMetaData(): "description": i18n_catalog.i18nc("@item:inlistbox", "Cura Project 3MF file"), "mime_type": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", "mode": ThreeMFWorkspaceWriter.ThreeMFWorkspaceWriter.OutputMode.BinaryMode - }, - { - "extension": "3mf", - "description": i18n_catalog.i18nc("@item:inlistbox", "Universal Cura Project"), - "mime_type": "application/x-ucp", - "mode": ThreeMFWorkspaceWriter.ThreeMFWorkspaceWriter.OutputMode.BinaryMode } ] } From 62aff0be12396b934c0ca74b6f712d814c90cac4 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Wed, 21 Feb 2024 11:40:51 +0100 Subject: [PATCH 531/765] Determine `ucp` based on included file CURA-11403 --- plugins/3MFReader/ThreeMFWorkspaceReader.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py index 04885a961bf..25e2afa8bd2 100755 --- a/plugins/3MFReader/ThreeMFWorkspaceReader.py +++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py @@ -58,6 +58,7 @@ "is_abstract_machine" } +USER_SETTINGS_PATH = "Cura/user-settings.json" class ContainerInfo: def __init__(self, file_name: Optional[str], serialized: Optional[str], parser: Optional[ConfigParser]) -> None: @@ -235,9 +236,8 @@ def preRead(self, file_name, show_dialog=True, *args, **kwargs): containers_found_dict = {k: False for k in resolve_strategy_keys} # Check whether the file is a UCP, which changes some import options - #FIXME Instead of this, we should just check for the presence of the user-settings file, whatever the extension - if file_name.endswith('.3mf'): - is_ucp = True + is_ucp = USER_SETTINGS_PATH in cura_file_names + # # Read definition containers # From 909a4156f3ccc64b86a3b0c4864b8c20fd5105e8 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Wed, 21 Feb 2024 15:13:27 +0100 Subject: [PATCH 532/765] Updating _ucp_model to None everytime a write is done CURA-11403 --- plugins/3MFWriter/ThreeMFWorkspaceWriter.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/plugins/3MFWriter/ThreeMFWorkspaceWriter.py b/plugins/3MFWriter/ThreeMFWorkspaceWriter.py index cff938788b1..2536f5dacbb 100644 --- a/plugins/3MFWriter/ThreeMFWorkspaceWriter.py +++ b/plugins/3MFWriter/ThreeMFWorkspaceWriter.py @@ -33,7 +33,7 @@ def setExportModel(self, model: SettingsExportModel) -> None: if self._ucp_model != model: self._ucp_model = model - def write(self, stream, nodes, mode=WorkspaceWriter.OutputMode.BinaryMode): + def _write(self, stream, nodes, mode=WorkspaceWriter.OutputMode.BinaryMode): application = Application.getInstance() machine_manager = application.getMachineManager() @@ -125,6 +125,11 @@ def write(self, stream, nodes, mode=WorkspaceWriter.OutputMode.BinaryMode): return True + def write(self, stream, nodes, mode=WorkspaceWriter.OutputMode.BinaryMode): + success = self._write(stream, nodes, mode=WorkspaceWriter.OutputMode.BinaryMode) + self._ucp_model = None + return success + @staticmethod def _writePluginMetadataToArchive(archive: zipfile.ZipFile) -> None: file_name_template = "%s/plugin_metadata.json" From 2681932fec55545c4ae4c9b07d52bf30568b29a6 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Wed, 21 Feb 2024 15:20:38 +0100 Subject: [PATCH 533/765] Adding cura share icon to thumbnail CURA-11624 --- plugins/3MFWriter/ThreeMFWriter.py | 24 +++++++++++++++++++++++- resources/images/cura-share.png | Bin 0 -> 8108 bytes 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 resources/images/cura-share.png diff --git a/plugins/3MFWriter/ThreeMFWriter.py b/plugins/3MFWriter/ThreeMFWriter.py index 6e3dc868901..9e519e255d7 100644 --- a/plugins/3MFWriter/ThreeMFWriter.py +++ b/plugins/3MFWriter/ThreeMFWriter.py @@ -10,6 +10,7 @@ from UM.Logger import Logger from UM.Math.Matrix import Matrix from UM.Application import Application +from UM.Resources import Resources from UM.Scene.SceneNode import SceneNode from UM.Settings.ContainerRegistry import ContainerRegistry @@ -20,7 +21,8 @@ from cura.Scene.CuraSceneNode import CuraSceneNode from cura.Snapshot import Snapshot -from PyQt6.QtCore import QBuffer +from PyQt6.QtCore import Qt, QBuffer +from PyQt6.QtGui import QImage, QPainter import pySavitar as Savitar from .UCPDialog import UCPDialog @@ -170,6 +172,24 @@ def _convertUMNodeToSavitarNode(um_node, def getArchive(self): return self._archive + def _addShareLogoToThumbnail(self, primary_image): + # Load the icon png image + icon_image = QImage(Resources.getPath(Resources.Images, "cura-share.png")) + + # Resize icon_image to be 1/3 of primary_image size + new_width = int(primary_image.width() / 4) + new_height = int(primary_image.height() / 4) + icon_image = icon_image.scaled(new_width, new_height, Qt.AspectRatioMode.KeepAspectRatio) + # Create a QPainter to draw on the image + painter = QPainter(primary_image) + + # Draw the icon in the top-left corner (adjust coordinates as needed) + icon_position = (10, 10) + painter.drawImage(icon_position[0], icon_position[1], icon_image) + + painter.end() + primary_image.save("test.png", "PNG") + def write(self, stream, nodes, mode = MeshWriter.OutputMode.BinaryMode, export_settings_model = None) -> bool: self._archive = None # Reset archive archive = zipfile.ZipFile(stream, "w", compression = zipfile.ZIP_DEFLATED) @@ -194,6 +214,8 @@ def write(self, stream, nodes, mode = MeshWriter.OutputMode.BinaryMode, export_s # Attempt to add a thumbnail snapshot = self._createSnapshot() if snapshot: + if export_settings_model != None: + self._addShareLogoToThumbnail(snapshot) thumbnail_buffer = QBuffer() thumbnail_buffer.open(QBuffer.OpenModeFlag.ReadWrite) snapshot.save(thumbnail_buffer, "PNG") diff --git a/resources/images/cura-share.png b/resources/images/cura-share.png new file mode 100644 index 0000000000000000000000000000000000000000..60de85194c7a9c71f93ddd90f2f885d18d49c11e GIT binary patch literal 8108 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 qWvu{Yyxl$m0<@dkS8ngj zyn*4U>}7f6Rh?B~oyO#B6<9q-FJ8w-+9~ zyT7o>?r_K@aqval5TmSsN>qjF%K3Q-qx60#U&H4lyw0!7?%hyZn1Q0eU`ffOWTnm8 z4x0`cg~~?V6@@t% zDoo+UP4cMXy6osUw{cCrzaU+qfvH3Y0050qKV?JQF*iM;D}_E=FdVh3ELtch3W7({ z15WCNq@oEYp(#Y}w9R@yS5N7m6-cE3O8bqn4=v}Y7$uE$@@sOBt0^5IV;V>{!woK7 zb;iJO)B;GXMn{&6npBgYDMi!DbUNI`&loj}9iY&gP1cj4pk5Sni`NwHk1f}=*pH~z zFi~A`6p(XM3+%A#x-$xfZ)rXr;>gW{m6wvvZlL>aL!S44hOk}jWi;ULT+JI8j*5Vs zrJ-qF!EiJWm5cvxY2LwbbQX}=(HQ~5(OE!7r!xkIqyGgV=nSNJP7uHV0000 Date: Wed, 21 Feb 2024 15:22:20 +0100 Subject: [PATCH 534/765] Removing debug statement CURA-11624 --- plugins/3MFWriter/ThreeMFWriter.py | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/3MFWriter/ThreeMFWriter.py b/plugins/3MFWriter/ThreeMFWriter.py index 9e519e255d7..ce9ea33fbdb 100644 --- a/plugins/3MFWriter/ThreeMFWriter.py +++ b/plugins/3MFWriter/ThreeMFWriter.py @@ -188,7 +188,6 @@ def _addShareLogoToThumbnail(self, primary_image): painter.drawImage(icon_position[0], icon_position[1], icon_image) painter.end() - primary_image.save("test.png", "PNG") def write(self, stream, nodes, mode = MeshWriter.OutputMode.BinaryMode, export_settings_model = None) -> bool: self._archive = None # Reset archive From 5f884c737b4d331627ee53b074419263b5a848e1 Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Wed, 21 Feb 2024 16:39:50 +0100 Subject: [PATCH 535/765] Fix build, prevent protobuf version mismatch. --- conanfile.py | 1 + 1 file changed, 1 insertion(+) diff --git a/conanfile.py b/conanfile.py index 3b48442fa0a..ca6b4eabd0f 100644 --- a/conanfile.py +++ b/conanfile.py @@ -350,6 +350,7 @@ def requirements(self): self.requires("cpython/3.10.4@ultimaker/stable") self.requires("clipper/6.4.2@ultimaker/stable") self.requires("openssl/3.2.0") + self.requires("protobuf/3.21.12") self.requires("boost/1.82.0") self.requires("spdlog/1.12.0") self.requires("fmt/10.1.1") From 5f7a1c7b7bdcc8307b4969d1fc0d4d8c24782073 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Wed, 21 Feb 2024 16:50:46 +0100 Subject: [PATCH 536/765] Use correct mime-type CURA-11403m --- resources/qml/Menus/FileMenu.qml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/resources/qml/Menus/FileMenu.qml b/resources/qml/Menus/FileMenu.qml index 7af21182cde..76d4997c3c0 100644 --- a/resources/qml/Menus/FileMenu.qml +++ b/resources/qml/Menus/FileMenu.qml @@ -77,16 +77,18 @@ Cura.Menu enabled: UM.WorkspaceFileHandler.enabled && CuraApplication.getPackageManager().allEnabledPackages.includes("3MFWriter") onTriggered: { - if(UM.Preferences.getValue("cura/dialog_on_ucp_project_save")) + if (UM.Preferences.getValue("cura/dialog_on_ucp_project_save")) { CuraApplication.exportUcp() } else { - var args = { "filter_by_machine": false, - "file_type": "workspace", - "preferred_mimetypes": "application/x-ucp", - "limit_mimetypes": ["application/x-ucp"]}; + const args = { + "filter_by_machine": false, + "file_type": "workspace", + "preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", + "limit_mimetypes": ["application/vnd.ms-package.3dmanufacturing-3dmodel+xml"], + }; UM.OutputDeviceManager.requestWriteToDevice("local_file", PrintInformation.baseName, args) } } From 53b3eadb3c3ea71cd73c89a2f0ce15e2684a1439 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Wed, 21 Feb 2024 18:20:19 +0100 Subject: [PATCH 537/765] Adding printOrder to pasted elements CURA-11617 CURA-11624 --- cura/CuraActions.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cura/CuraActions.py b/cura/CuraActions.py index 36c69618ddf..e33ce8123df 100644 --- a/cura/CuraActions.py +++ b/cura/CuraActions.py @@ -273,7 +273,11 @@ def paste(self) -> None: # deselect currently selected nodes, and select the new nodes for node in Selection.getAllSelectedObjects(): Selection.remove(node) + + numberOfFixedNodes = len(fixed_nodes) for node in nodes: + numberOfFixedNodes += 1 + node.printOrder = numberOfFixedNodes Selection.add(node) def _openUrl(self, url: QUrl) -> None: From 3c305bb289658dab6a7c7121313c17ec6b6cd48c Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Wed, 21 Feb 2024 19:30:36 +0100 Subject: [PATCH 538/765] Fix `dialog_on_ucp_project_save` preference CURA-11403 --- plugins/3MFWriter/ThreeMFWriter.py | 41 ++++++++++++++++++++++++++++-- plugins/3MFWriter/UCPDialog.py | 7 ++--- resources/qml/Menus/FileMenu.qml | 41 ++++++++++++++---------------- 3 files changed, 62 insertions(+), 27 deletions(-) diff --git a/plugins/3MFWriter/ThreeMFWriter.py b/plugins/3MFWriter/ThreeMFWriter.py index ce9ea33fbdb..34ab4b5f58c 100644 --- a/plugins/3MFWriter/ThreeMFWriter.py +++ b/plugins/3MFWriter/ThreeMFWriter.py @@ -10,6 +10,8 @@ from UM.Logger import Logger from UM.Math.Matrix import Matrix from UM.Application import Application +from UM.OutputDevice import OutputDeviceError +from UM.Message import Message from UM.Resources import Resources from UM.Scene.SceneNode import SceneNode from UM.Settings.ContainerRegistry import ContainerRegistry @@ -456,5 +458,40 @@ def _extractModelExportedSettings(model: Optional[SettingsExportModel]) -> Dict[ return extra_settings def exportUcp(self): - self._config_dialog = UCPDialog() - self._config_dialog.show() + preferences = CuraApplication.getInstance().getPreferences() + if preferences.getValue("cura/dialog_on_ucp_project_save"): + self._config_dialog = UCPDialog() + self._config_dialog.show() + else: + application = CuraApplication.getInstance() + workspace_handler = application.getInstance().getWorkspaceFileHandler() + + # Set the model to the workspace writer + mesh_writer = workspace_handler.getWriter("3MFWriter") + mesh_writer.setExportModel(SettingsExportModel()) + + # Open file dialog and write the file + device = application.getOutputDeviceManager().getOutputDevice("local_file") + nodes = [application.getController().getScene().getRoot()] + + file_name = CuraApplication.getInstance().getPrintInformation().baseName + + try: + device.requestWrite( + nodes, + file_name, + ["application/vnd.ms-package.3dmanufacturing-3dmodel+xml"], + workspace_handler, + preferred_mimetype_list="application/vnd.ms-package.3dmanufacturing-3dmodel+xml" + ) + except OutputDeviceError.UserCanceledError: + self._onRejected() + except Exception as e: + message = Message( + catalog.i18nc("@info:error", "Unable to write to file: {0}", file_name), + title=catalog.i18nc("@info:title", "Error"), + message_type=Message.MessageType.ERROR + ) + message.show() + Logger.logException("e", "Unable to write to file %s: %s", file_name, e) + self._onRejected() diff --git a/plugins/3MFWriter/UCPDialog.py b/plugins/3MFWriter/UCPDialog.py index b2ad5834ebe..bedfb4d0da8 100644 --- a/plugins/3MFWriter/UCPDialog.py +++ b/plugins/3MFWriter/UCPDialog.py @@ -53,8 +53,7 @@ def getModel(self) -> SettingsExportModel: def notifyClosed(self): self._onFinished() - @pyqtSlot() - def _onAccepted(self): + def save3mf(self): application = CuraApplication.getInstance() workspace_handler = application.getInstance().getWorkspaceFileHandler() @@ -92,7 +91,9 @@ def _onAccepted(self): Logger.logException("e", "Unable to write to file %s: %s", file_name, e) self._onRejected() - @pyqtSlot() + def _onAccepted(self): + self.save3mf() + def _onRejected(self): self._onFinished() diff --git a/resources/qml/Menus/FileMenu.qml b/resources/qml/Menus/FileMenu.qml index 76d4997c3c0..4ca09cc9f18 100644 --- a/resources/qml/Menus/FileMenu.qml +++ b/resources/qml/Menus/FileMenu.qml @@ -47,14 +47,18 @@ Cura.Menu enabled: UM.WorkspaceFileHandler.enabled && saveProjectMenu.model.count == 1 onTriggered: { - var args = { "filter_by_machine": false, "file_type": "workspace", "preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml" }; - if(UM.Preferences.getValue("cura/dialog_on_project_save")) + if (UM.Preferences.getValue("cura/dialog_on_project_save")) { saveWorkspaceDialog.args = args saveWorkspaceDialog.open() } else { + const args = { + "filter_by_machine": false, + "file_type": "workspace", + "preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", + }; UM.OutputDeviceManager.requestWriteToDevice("local_file", PrintInformation.jobName, args) } } @@ -75,23 +79,7 @@ Cura.Menu id: saveUCPMenu text: catalog.i18nc("@title:menu menubar:file", "&Save Universal Cura Project...") enabled: UM.WorkspaceFileHandler.enabled && CuraApplication.getPackageManager().allEnabledPackages.includes("3MFWriter") - onTriggered: - { - if (UM.Preferences.getValue("cura/dialog_on_ucp_project_save")) - { - CuraApplication.exportUcp() - } - else - { - const args = { - "filter_by_machine": false, - "file_type": "workspace", - "preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", - "limit_mimetypes": ["application/vnd.ms-package.3dmanufacturing-3dmodel+xml"], - }; - UM.OutputDeviceManager.requestWriteToDevice("local_file", PrintInformation.baseName, args) - } - } + onTriggered: CuraApplication.exportUcp() } Cura.MenuSeparator { } @@ -102,8 +90,11 @@ Cura.Menu text: catalog.i18nc("@title:menu menubar:file", "&Export...") onTriggered: { - var localDeviceId = "local_file" - UM.OutputDeviceManager.requestWriteToDevice(localDeviceId, PrintInformation.jobName, { "filter_by_machine": false, "preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml"}) + const args = { + "filter_by_machine": false, + "preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", + }; + UM.OutputDeviceManager.requestWriteToDevice("local_file", PrintInformation.jobName, args); } } @@ -113,7 +104,13 @@ Cura.Menu text: catalog.i18nc("@action:inmenu menubar:file", "Export Selection...") enabled: UM.Selection.hasSelection icon.name: "document-save-as" - onTriggered: UM.OutputDeviceManager.requestWriteSelectionToDevice("local_file", PrintInformation.jobName, { "filter_by_machine": false, "preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml"}) + onTriggered: { + const args = { + "filter_by_machine": false, + "preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", + }; + UM.OutputDeviceManager.requestWriteSelectionToDevice("local_file", PrintInformation.jobName, args); + } } Cura.MenuSeparator { } From e99d5eb906c508b6cbfb4bf066c1843ffd0395a1 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Thu, 22 Feb 2024 09:59:31 +0100 Subject: [PATCH 539/765] fixing comment CURA-11617 CURA-11624 --- plugins/3MFWriter/ThreeMFWriter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/3MFWriter/ThreeMFWriter.py b/plugins/3MFWriter/ThreeMFWriter.py index 34ab4b5f58c..6fda1742f8e 100644 --- a/plugins/3MFWriter/ThreeMFWriter.py +++ b/plugins/3MFWriter/ThreeMFWriter.py @@ -178,7 +178,7 @@ def _addShareLogoToThumbnail(self, primary_image): # Load the icon png image icon_image = QImage(Resources.getPath(Resources.Images, "cura-share.png")) - # Resize icon_image to be 1/3 of primary_image size + # Resize icon_image to be 1/4 of primary_image size new_width = int(primary_image.width() / 4) new_height = int(primary_image.height() / 4) icon_image = icon_image.scaled(new_width, new_height, Qt.AspectRatioMode.KeepAspectRatio) From b99762776ee6ce3fe0e8bba8724eba9ca68ec4c7 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 22 Feb 2024 10:47:04 +0100 Subject: [PATCH 540/765] Revert "Enable prime tower mode according to materials types" This reverts commit 335a54c6d1c432e64784f95c69e77125bd0d57f1. --- .../XmlMaterialProfile/XmlMaterialProfile.py | 9 +++---- resources/definitions/fdmprinter.def.json | 26 ++++--------------- 2 files changed, 8 insertions(+), 27 deletions(-) diff --git a/plugins/XmlMaterialProfile/XmlMaterialProfile.py b/plugins/XmlMaterialProfile/XmlMaterialProfile.py index 98c0f95e10c..41beb884197 100644 --- a/plugins/XmlMaterialProfile/XmlMaterialProfile.py +++ b/plugins/XmlMaterialProfile/XmlMaterialProfile.py @@ -579,9 +579,8 @@ def deserialize(self, serialized, file_name = None): meta_data[tag_name] = entry.text - for tag_name, value in meta_data.items(): - if tag_name in self.__material_metadata_setting_map: - common_setting_values[self.__material_metadata_setting_map[tag_name]] = value + if tag_name in self.__material_metadata_setting_map: + common_setting_values[self.__material_metadata_setting_map[tag_name]] = entry.text if "description" not in meta_data: meta_data["description"] = "" @@ -1223,9 +1222,7 @@ def __str__(self): "diameter": "material_diameter" } __material_metadata_setting_map = { - "GUID": "material_guid", - "material": "material_type", - "brand": "material_brand", + "GUID": "material_guid" } # Map of recognised namespaces with a proper prefix. diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 1d453456a8e..b5324029932 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -76,22 +76,6 @@ "type": "str", "enabled": false }, - "material_type": - { - "label": "Material Type", - "description": "The type of material used.", - "default_value": "", - "type": "str", - "enabled": false - }, - "material_brand": - { - "label": "Material Brand", - "description": "The brand of material used.", - "default_value": "", - "type": "str", - "enabled": false - }, "material_diameter": { "label": "Diameter", @@ -6797,14 +6781,14 @@ "prime_tower_mode": { "label": "Prime Tower", - "description": "Print a tower next to the model, which serves to prime the material after each nozzle switch.

    • None: do not generate a prime tower
    • Normal: generate a bucket in which secondary materials are primed
    • Interleaved: generate a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other.
    ", + "description": "Print a tower next to the model, which serves to prime the material after each nozzle switch.
    • None: do not generate a prime tower
    • Bucket: generate a bucket in which secondary materials are primed
    • Sparse: generate a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other.
    ", "type": "enum", - "value": "'none' if (extruders_enabled_count < 2) else ('interleaved' if (all(material_type_var == extruderValues('material_type')[0] for material_type_var in extruderValues('material_type')) and all(material_brand_var == extruderValues('material_brand')[0] for material_brand_var in extruderValues('material_brand'))) else 'normal')", + "value": "'optimized' if all(material_type == extruderValues('material_type')[0] for material_type in extruderValues('material_type')) else 'optimized_consistent'", "options": { "none": "None", - "normal": "Normal", - "interleaved": "Interleaved" + "bucket": "Bucket", + "sparse": "Sparse" }, "default_value": "none", "enabled": "extruders_enabled_count > 1", @@ -6849,7 +6833,7 @@ "default_value": 5, "minimum_value": "line_width", "maximum_value_warning": "10.0", - "enabled": "resolveOrValue('prime_tower_mode') != 'none'", + "enabled": "resolveOrValue('prime_tower_mode') == 'sparse' or resolveOrValue('prime_tower_mode') == 'bucket'", "settable_per_mesh": false, "settable_per_extruder": true }, From 60c3f6f2cbf4751960726eacfbc0d766ed4f16c7 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 22 Feb 2024 11:00:56 +0100 Subject: [PATCH 541/765] Restore prime tower options --- resources/definitions/fdmprinter.def.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index b5324029932..a176fe10043 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6781,14 +6781,14 @@ "prime_tower_mode": { "label": "Prime Tower", - "description": "Print a tower next to the model, which serves to prime the material after each nozzle switch.
    • None: do not generate a prime tower
    • Bucket: generate a bucket in which secondary materials are primed
    • Sparse: generate a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other.
    ", + "description": "Print a tower next to the model, which serves to prime the material after each nozzle switch.
    • None: do not generate a prime tower
    • Normal: generate a bucket in which secondary materials are primed
    • Interleaved: generate a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other.
    ", "type": "enum", - "value": "'optimized' if all(material_type == extruderValues('material_type')[0] for material_type in extruderValues('material_type')) else 'optimized_consistent'", + "value": "'none' if (extruders_enabled_count < 2) else 'normal'", "options": { "none": "None", - "bucket": "Bucket", - "sparse": "Sparse" + "normal": "Normal", + "interleaved": "Interleaved" }, "default_value": "none", "enabled": "extruders_enabled_count > 1", From d009839f9e96f697ead3cb76678c3d8ad7379a3a Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 22 Feb 2024 12:50:50 +0100 Subject: [PATCH 542/765] Revert "Restore prime tower options" This reverts commit 60c3f6f2cbf4751960726eacfbc0d766ed4f16c7. --- resources/definitions/fdmprinter.def.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index a176fe10043..b5324029932 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6781,14 +6781,14 @@ "prime_tower_mode": { "label": "Prime Tower", - "description": "Print a tower next to the model, which serves to prime the material after each nozzle switch.
    • None: do not generate a prime tower
    • Normal: generate a bucket in which secondary materials are primed
    • Interleaved: generate a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other.
    ", + "description": "Print a tower next to the model, which serves to prime the material after each nozzle switch.
    • None: do not generate a prime tower
    • Bucket: generate a bucket in which secondary materials are primed
    • Sparse: generate a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other.
    ", "type": "enum", - "value": "'none' if (extruders_enabled_count < 2) else 'normal'", + "value": "'optimized' if all(material_type == extruderValues('material_type')[0] for material_type in extruderValues('material_type')) else 'optimized_consistent'", "options": { "none": "None", - "normal": "Normal", - "interleaved": "Interleaved" + "bucket": "Bucket", + "sparse": "Sparse" }, "default_value": "none", "enabled": "extruders_enabled_count > 1", From c8f9f179d9809641ee48a36d5cd4b26bd006f84d Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 22 Feb 2024 12:50:53 +0100 Subject: [PATCH 543/765] Revert "Revert "Enable prime tower mode according to materials types"" This reverts commit b99762776ee6ce3fe0e8bba8724eba9ca68ec4c7. --- .../XmlMaterialProfile/XmlMaterialProfile.py | 9 ++++--- resources/definitions/fdmprinter.def.json | 26 +++++++++++++++---- 2 files changed, 27 insertions(+), 8 deletions(-) diff --git a/plugins/XmlMaterialProfile/XmlMaterialProfile.py b/plugins/XmlMaterialProfile/XmlMaterialProfile.py index 41beb884197..98c0f95e10c 100644 --- a/plugins/XmlMaterialProfile/XmlMaterialProfile.py +++ b/plugins/XmlMaterialProfile/XmlMaterialProfile.py @@ -579,8 +579,9 @@ def deserialize(self, serialized, file_name = None): meta_data[tag_name] = entry.text - if tag_name in self.__material_metadata_setting_map: - common_setting_values[self.__material_metadata_setting_map[tag_name]] = entry.text + for tag_name, value in meta_data.items(): + if tag_name in self.__material_metadata_setting_map: + common_setting_values[self.__material_metadata_setting_map[tag_name]] = value if "description" not in meta_data: meta_data["description"] = "" @@ -1222,7 +1223,9 @@ def __str__(self): "diameter": "material_diameter" } __material_metadata_setting_map = { - "GUID": "material_guid" + "GUID": "material_guid", + "material": "material_type", + "brand": "material_brand", } # Map of recognised namespaces with a proper prefix. diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index b5324029932..1d453456a8e 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -76,6 +76,22 @@ "type": "str", "enabled": false }, + "material_type": + { + "label": "Material Type", + "description": "The type of material used.", + "default_value": "", + "type": "str", + "enabled": false + }, + "material_brand": + { + "label": "Material Brand", + "description": "The brand of material used.", + "default_value": "", + "type": "str", + "enabled": false + }, "material_diameter": { "label": "Diameter", @@ -6781,14 +6797,14 @@ "prime_tower_mode": { "label": "Prime Tower", - "description": "Print a tower next to the model, which serves to prime the material after each nozzle switch.
    • None: do not generate a prime tower
    • Bucket: generate a bucket in which secondary materials are primed
    • Sparse: generate a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other.
    ", + "description": "Print a tower next to the model, which serves to prime the material after each nozzle switch.
    • None: do not generate a prime tower
    • Normal: generate a bucket in which secondary materials are primed
    • Interleaved: generate a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other.
    ", "type": "enum", - "value": "'optimized' if all(material_type == extruderValues('material_type')[0] for material_type in extruderValues('material_type')) else 'optimized_consistent'", + "value": "'none' if (extruders_enabled_count < 2) else ('interleaved' if (all(material_type_var == extruderValues('material_type')[0] for material_type_var in extruderValues('material_type')) and all(material_brand_var == extruderValues('material_brand')[0] for material_brand_var in extruderValues('material_brand'))) else 'normal')", "options": { "none": "None", - "bucket": "Bucket", - "sparse": "Sparse" + "normal": "Normal", + "interleaved": "Interleaved" }, "default_value": "none", "enabled": "extruders_enabled_count > 1", @@ -6833,7 +6849,7 @@ "default_value": 5, "minimum_value": "line_width", "maximum_value_warning": "10.0", - "enabled": "resolveOrValue('prime_tower_mode') == 'sparse' or resolveOrValue('prime_tower_mode') == 'bucket'", + "enabled": "resolveOrValue('prime_tower_mode') != 'none'", "settable_per_mesh": false, "settable_per_extruder": true }, From 501b15753d1ef931fea1e79183844ccd6d326598 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 22 Feb 2024 16:20:39 +0100 Subject: [PATCH 544/765] Revert "Change prime_tower_enable to prime_tower_mode in all defs/profiles" This reverts commit 5a291f9ba9e83c85d1bdfe1c0e907e0df8154f6f. --- plugins/LegacyProfileReader/DictionaryOfDoom.json | 2 +- resources/definitions/atmat_signal_pro_base.def.json | 2 +- resources/definitions/deltacomb_dc20flux.def.json | 2 +- resources/definitions/deltacomb_dc21flux.def.json | 2 +- resources/definitions/deltacomb_dc30flux.def.json | 2 +- resources/definitions/dxu_dual.def.json | 3 ++- resources/definitions/elegoo_neptune_2D.def.json | 1 + resources/definitions/leapfrog_bolt_pro.def.json | 2 +- resources/definitions/lotmaxx_sc60.def.json | 2 +- resources/definitions/strateo3d_IDEX420.def.json | 1 + resources/definitions/ultimaker3.def.json | 1 + resources/definitions/ultimaker_method_base.def.json | 2 +- resources/definitions/ultimaker_s3.def.json | 2 +- resources/definitions/ultimaker_s5.def.json | 2 +- .../Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg | 2 +- ...Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg | 2 +- .../pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg | 2 +- .../pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg | 2 +- .../quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg | 2 +- .../quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg | 2 +- .../gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg | 2 +- .../liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg | 2 +- resources/quality/nps/nps_ABS_B.inst.cfg | 2 +- resources/quality/nps/nps_ABS_C.inst.cfg | 2 +- resources/quality/nps/nps_PC_A.inst.cfg | 2 +- resources/quality/nps/nps_PC_B.inst.cfg | 2 +- resources/quality/nps/nps_PC_C.inst.cfg | 2 +- resources/quality/nps/nps_PETG_A.inst.cfg | 2 +- resources/quality/nps/nps_PETG_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg | 2 +- .../strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg | 2 +- .../strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg | 2 +- .../strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg | 2 +- .../strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg | 2 +- .../strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg | 2 +- .../strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg | 2 +- .../strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg | 2 +- .../strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg | 2 +- .../strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg | 2 +- .../strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg | 2 +- .../strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg | 2 +- .../strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg | 2 +- .../strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg | 2 +- .../strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg | 2 +- .../strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg | 2 +- .../strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg | 2 +- .../strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg | 2 +- .../strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg | 2 +- .../strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg | 2 +- .../strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg | 2 +- .../strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg | 2 +- .../strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg | 2 +- .../strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg | 2 +- .../strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg | 2 +- .../strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg | 2 +- .../tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg | 2 +- .../tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg | 2 +- .../tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg | 2 +- .../tizyx_evy_dual_global_Normal_Quality.inst.cfg | 2 +- .../tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg | 2 +- .../ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg | 2 +- .../ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg | 2 +- .../ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg | 2 +- .../ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg | 2 +- .../ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg | 2 +- resources/variants/liquid/liquid_vo08.inst.cfg | 2 +- resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg | 2 +- resources/variants/strateo3d/strateo3d_standard_04.inst.cfg | 2 +- resources/variants/strateo3d/strateo3d_standard_06.inst.cfg | 2 +- resources/variants/strateo3d/strateo3d_standard_08.inst.cfg | 2 +- resources/variants/strateo3d/strateo3d_standard_10.inst.cfg | 2 +- resources/variants/strateo3d/strateo3d_standard_12.inst.cfg | 2 +- resources/variants/ultimaker3_aa0.8.inst.cfg | 2 +- resources/variants/ultimaker3_bb0.8.inst.cfg | 2 +- resources/variants/ultimaker3_extended_aa0.8.inst.cfg | 2 +- resources/variants/ultimaker3_extended_bb0.8.inst.cfg | 2 +- resources/variants/ultimaker_s3_aa0.8.inst.cfg | 2 +- resources/variants/ultimaker_s3_bb0.8.inst.cfg | 2 +- resources/variants/ultimaker_s5_aa0.8.inst.cfg | 2 +- resources/variants/ultimaker_s5_bb0.8.inst.cfg | 2 +- resources/variants/ultimaker_s7_aa0.8.inst.cfg | 2 +- resources/variants/ultimaker_s7_bb0.8.inst.cfg | 2 +- 627 files changed, 628 insertions(+), 624 deletions(-) diff --git a/plugins/LegacyProfileReader/DictionaryOfDoom.json b/plugins/LegacyProfileReader/DictionaryOfDoom.json index 90e973b7798..f65cc271d1f 100644 --- a/plugins/LegacyProfileReader/DictionaryOfDoom.json +++ b/plugins/LegacyProfileReader/DictionaryOfDoom.json @@ -68,7 +68,7 @@ "meshfix_keep_open_polygons": "fix_horrible_use_open_bits", "magic_mesh_surface_mode": "\"surface\" if simple_mode else \"normal\"", "magic_spiralize": "spiralize", - "prime_tower_mode": "\"normal\" if wipe_tower else \"none\"", + "prime_tower_enable": "wipe_tower", "prime_tower_size": "math.sqrt(float(wipe_tower_volume) / float(layer_height))", "ooze_shield_enabled": "ooze_shield", "skin_overlap": "fill_overlap" diff --git a/resources/definitions/atmat_signal_pro_base.def.json b/resources/definitions/atmat_signal_pro_base.def.json index 0b8761a62c1..cd59e1c1691 100644 --- a/resources/definitions/atmat_signal_pro_base.def.json +++ b/resources/definitions/atmat_signal_pro_base.def.json @@ -110,7 +110,7 @@ "min_infill_area": { "value": "5.0" }, "minimum_polygon_circumference": { "value": "0.2" }, "optimize_wall_printing_order": { "value": "True" }, - "prime_tower_mode": { "value": "'normal'" }, + "prime_tower_enable": { "value": "True" }, "retraction_amount": { "value": "1" }, "retraction_combing": { "value": "'noskin'" }, "retraction_combing_max_distance": { "value": "10" }, diff --git a/resources/definitions/deltacomb_dc20flux.def.json b/resources/definitions/deltacomb_dc20flux.def.json index f76ba3e4cd0..f81909dae55 100644 --- a/resources/definitions/deltacomb_dc20flux.def.json +++ b/resources/definitions/deltacomb_dc20flux.def.json @@ -31,8 +31,8 @@ "material_final_print_temperature": { "value": "material_print_temperature" }, "material_initial_print_temperature": { "value": "material_print_temperature" }, "material_standby_temperature": { "value": "material_print_temperature" }, + "prime_tower_enable": { "value": true }, "prime_tower_min_volume": { "value": "50" }, - "prime_tower_mode": { "value": "'normal'" }, "switch_extruder_retraction_amount": { "value": "0" } } } \ No newline at end of file diff --git a/resources/definitions/deltacomb_dc21flux.def.json b/resources/definitions/deltacomb_dc21flux.def.json index 3c2080a87bf..dbcdf3ad37d 100644 --- a/resources/definitions/deltacomb_dc21flux.def.json +++ b/resources/definitions/deltacomb_dc21flux.def.json @@ -31,8 +31,8 @@ "material_final_print_temperature": { "value": "material_print_temperature" }, "material_initial_print_temperature": { "value": "material_print_temperature" }, "material_standby_temperature": { "value": "material_print_temperature" }, + "prime_tower_enable": { "value": true }, "prime_tower_min_volume": { "value": "50" }, - "prime_tower_mode": { "value": "'normal'" }, "switch_extruder_retraction_amount": { "value": "0" } } } \ No newline at end of file diff --git a/resources/definitions/deltacomb_dc30flux.def.json b/resources/definitions/deltacomb_dc30flux.def.json index 69249e42fd9..7ba4f4252d9 100644 --- a/resources/definitions/deltacomb_dc30flux.def.json +++ b/resources/definitions/deltacomb_dc30flux.def.json @@ -31,8 +31,8 @@ "material_final_print_temperature": { "value": "material_print_temperature" }, "material_initial_print_temperature": { "value": "material_print_temperature" }, "material_standby_temperature": { "value": "material_print_temperature" }, + "prime_tower_enable": { "value": "True" }, "prime_tower_min_volume": { "value": "50" }, - "prime_tower_mode": { "value": "'normal'" }, "switch_extruder_retraction_amount": { "value": "0" } } } \ No newline at end of file diff --git a/resources/definitions/dxu_dual.def.json b/resources/definitions/dxu_dual.def.json index b81d148f80f..6d30af005fc 100644 --- a/resources/definitions/dxu_dual.def.json +++ b/resources/definitions/dxu_dual.def.json @@ -5,6 +5,7 @@ "overrides": { "machine_end_gcode": { "value": "\"\" if machine_gcode_flavor == \"UltiGCode\" else \"G90 ;absolute positioning\\nM104 S0 T0 ;extruder heater off\\nM104 S0 T1\\nM140 S0 ;turn off bed\\nT0 ; move to the first head\\nM107 ;fan off\"" }, - "machine_start_gcode": { "value": "\"\" if machine_gcode_flavor == \"UltiGCode\" else \";material_bed_temperature={material_bed_temperature} material_print_temperature={material_print_temperature} material_print_temperature_layer_0={material_print_temperature_layer_0}\\nM190 S{material_bed_temperature_layer_0}\\nM104 T0 S{material_standby_temperature, 0}\\nM104 T0 S{material_print_temperature_layer_0, 0}\\nG21 ;metric values\\nG90 ;absolute positioning\\nM82 ;set extruder to absolute mode\\nM107 ;start with the fan off\\nM200 D0 T0 ;reset filament diameter\\nM200 D0 T1\\nG28 ;home all\\nT1 ; move to the nozzle 2\\nG0 Z20 F2400 ;move the platform to 30mm\\nM109 T1 S{material_print_temperature_layer_0, 1}\\nG0 X210 Y20 F7200\\nG92 E0\\nG92 E-7.0 ;prime distance\\nG1 E0 F45 ;purge nozzle\\nG1 E-6.5 F1500 ; retract\\nT0 ; move to the nozzle 1\\nM104 T1 S{material_standby_temperature, 1}\\nG0 Z20 F2400\\nM109 T0 S{material_print_temperature_layer_0, 0}\\nG0 X210 Y20 F7200\\nG92 E0\\nG92 E-7.0\\nG1 E0 F45 ;purge nozzle\\nG1 E-6.5 F1500\\nM104 T0 S{material_standby_temperature, 0}\\nT{initial_extruder_nr} ;switch to the first nozzle used for print\\nM109 T{initial_extruder_nr} S{material_print_temperature_layer_0, initial_extruder_nr}\\nM400 ;finish all moves\\nG1 E0 F1500\\nG92 E0\\n;end of startup sequence\\n\"" } + "machine_start_gcode": { "value": "\"\" if machine_gcode_flavor == \"UltiGCode\" else \";material_bed_temperature={material_bed_temperature} material_print_temperature={material_print_temperature} material_print_temperature_layer_0={material_print_temperature_layer_0}\\nM190 S{material_bed_temperature_layer_0}\\nM104 T0 S{material_standby_temperature, 0}\\nM104 T0 S{material_print_temperature_layer_0, 0}\\nG21 ;metric values\\nG90 ;absolute positioning\\nM82 ;set extruder to absolute mode\\nM107 ;start with the fan off\\nM200 D0 T0 ;reset filament diameter\\nM200 D0 T1\\nG28 ;home all\\nT1 ; move to the nozzle 2\\nG0 Z20 F2400 ;move the platform to 30mm\\nM109 T1 S{material_print_temperature_layer_0, 1}\\nG0 X210 Y20 F7200\\nG92 E0\\nG92 E-7.0 ;prime distance\\nG1 E0 F45 ;purge nozzle\\nG1 E-6.5 F1500 ; retract\\nT0 ; move to the nozzle 1\\nM104 T1 S{material_standby_temperature, 1}\\nG0 Z20 F2400\\nM109 T0 S{material_print_temperature_layer_0, 0}\\nG0 X210 Y20 F7200\\nG92 E0\\nG92 E-7.0\\nG1 E0 F45 ;purge nozzle\\nG1 E-6.5 F1500\\nM104 T0 S{material_standby_temperature, 0}\\nT{initial_extruder_nr} ;switch to the first nozzle used for print\\nM109 T{initial_extruder_nr} S{material_print_temperature_layer_0, initial_extruder_nr}\\nM400 ;finish all moves\\nG1 E0 F1500\\nG92 E0\\n;end of startup sequence\\n\"" }, + "prime_tower_enable": { "default_value": true } } } \ No newline at end of file diff --git a/resources/definitions/elegoo_neptune_2D.def.json b/resources/definitions/elegoo_neptune_2D.def.json index dbdf066b21d..c9aa5a01843 100644 --- a/resources/definitions/elegoo_neptune_2D.def.json +++ b/resources/definitions/elegoo_neptune_2D.def.json @@ -55,6 +55,7 @@ "settable_per_extruder": false }, "prime_blob_enable": { "default_value": false }, + "prime_tower_enable": { "default_value": true }, "prime_tower_min_volume": { "default_value": 90 }, "prime_tower_size": { "default_value": 30 }, "raft_airgap": { "default_value": 0.25 }, diff --git a/resources/definitions/leapfrog_bolt_pro.def.json b/resources/definitions/leapfrog_bolt_pro.def.json index 449967072f5..e4a13217e5f 100644 --- a/resources/definitions/leapfrog_bolt_pro.def.json +++ b/resources/definitions/leapfrog_bolt_pro.def.json @@ -80,7 +80,7 @@ "material_final_print_temperature": { "value": "default_material_print_temperature" }, "material_initial_print_temperature": { "value": "default_material_print_temperature" }, "material_standby_temperature": { "enabled": false }, - "prime_tower_mode": { "resolve": "'normal' if extruders_enabled_count > 1 else 'none'" }, + "prime_tower_enable": { "resolve": "extruders_enabled_count > 1" }, "retraction_amount": { "default_value": 2 }, "retraction_combing": { "value": "'all'" }, "skirt_line_count": { "default_value": 3 }, diff --git a/resources/definitions/lotmaxx_sc60.def.json b/resources/definitions/lotmaxx_sc60.def.json index 64220c372e8..f4ce358be1e 100644 --- a/resources/definitions/lotmaxx_sc60.def.json +++ b/resources/definitions/lotmaxx_sc60.def.json @@ -44,8 +44,8 @@ "machine_width": { "default_value": 235 }, "meshfix_maximum_resolution": { "value": 0.25 }, "optimize_wall_printing_order": { "value": true }, + "prime_tower_enable": { "value": true }, "prime_tower_min_volume": { "value": 30 }, - "prime_tower_mode": { "value": "'normal'" }, "retract_at_layer_change": { "value": false }, "retraction_amount": { "value": 4.5 }, "roofing_layer_count": { "value": 1 }, diff --git a/resources/definitions/strateo3d_IDEX420.def.json b/resources/definitions/strateo3d_IDEX420.def.json index 47a3af714be..d4236c126ed 100644 --- a/resources/definitions/strateo3d_IDEX420.def.json +++ b/resources/definitions/strateo3d_IDEX420.def.json @@ -112,6 +112,7 @@ "machine_use_extruder_offset_to_offset_coords": { "default_value": false }, "machine_width": { "default_value": 420 }, "material_diameter": { "default_value": 1.75 }, + "prime_tower_enable": { "default_value": true }, "prime_tower_min_volume": { "default_value": 35.6 }, "raft_acceleration": { "value": "machine_acceleration" }, "raft_base_acceleration": { "value": "machine_acceleration" }, diff --git a/resources/definitions/ultimaker3.def.json b/resources/definitions/ultimaker3.def.json index 43f718e2dba..17a4b6045e1 100644 --- a/resources/definitions/ultimaker3.def.json +++ b/resources/definitions/ultimaker3.def.json @@ -149,6 +149,7 @@ "enabled": true, "value": "resolveOrValue('print_sequence') != 'one_at_a_time'" }, + "prime_tower_enable": { "default_value": true }, "prime_tower_position_x": { "value": "185" }, "prime_tower_wipe_enabled": { "default_value": false }, "retraction_amount": { "value": "6.5" }, diff --git a/resources/definitions/ultimaker_method_base.def.json b/resources/definitions/ultimaker_method_base.def.json index 2c417913d5c..983af7ea27e 100644 --- a/resources/definitions/ultimaker_method_base.def.json +++ b/resources/definitions/ultimaker_method_base.def.json @@ -345,9 +345,9 @@ "prime_tower_base_curve_magnitude": { "value": 2 }, "prime_tower_base_height": { "value": 6 }, "prime_tower_base_size": { "value": 10 }, + "prime_tower_enable": { "value": false }, "prime_tower_flow": { "value": "material_flow" }, "prime_tower_line_width": { "value": 1 }, - "prime_tower_mode": { "value": "none" }, "prime_tower_raft_base_line_spacing": { "value": "raft_base_line_width" }, "prime_tower_wipe_enabled": { "value": true }, "print_sequence": { "enabled": false }, diff --git a/resources/definitions/ultimaker_s3.def.json b/resources/definitions/ultimaker_s3.def.json index ca40788581d..483825df5a3 100644 --- a/resources/definitions/ultimaker_s3.def.json +++ b/resources/definitions/ultimaker_s3.def.json @@ -103,7 +103,7 @@ "default_value": false, "enabled": true }, - "prime_tower_mode": { "value": "'normal'" }, + "prime_tower_enable": { "value": "True" }, "retraction_amount": { "value": "6.5" }, "retraction_hop": { "value": "2" }, "retraction_hop_enabled": { "value": "extruders_enabled_count > 1" }, diff --git a/resources/definitions/ultimaker_s5.def.json b/resources/definitions/ultimaker_s5.def.json index 73854f28905..cd48c4fd38c 100644 --- a/resources/definitions/ultimaker_s5.def.json +++ b/resources/definitions/ultimaker_s5.def.json @@ -104,7 +104,7 @@ "default_value": false, "enabled": true }, - "prime_tower_mode": { "value": "'normal'" }, + "prime_tower_enable": { "value": "True" }, "retraction_amount": { "value": "6.5" }, "retraction_combing": { "value": "'no_outer_surfaces'" }, "retraction_hop": { "value": "2" }, diff --git a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg index 54807c88b37..f4da80ded99 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg @@ -38,8 +38,8 @@ line_width = 0.4 min_infill_area = 0 optimize_wall_printing_order = True prime_tower_brim_enable = True +prime_tower_enable = True prime_tower_min_volume = 6 -prime_tower_mode = normal prime_tower_size = 20 prime_tower_wipe_enabled = True retract_at_layer_change = False diff --git a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg index 312313c9c51..a052562cd34 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg @@ -38,8 +38,8 @@ line_width = 0.4 min_infill_area = 0 optimize_wall_printing_order = True prime_tower_brim_enable = True +prime_tower_enable = True prime_tower_min_volume = 6 -prime_tower_mode = normal prime_tower_size = 20 prime_tower_wipe_enabled = True retract_at_layer_change = False diff --git a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg index 485e82345a8..145cd34ead9 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg @@ -36,8 +36,8 @@ line_width = 0.4 min_infill_area = 0 optimize_wall_printing_order = True prime_tower_brim_enable = True +prime_tower_enable = True prime_tower_min_volume = 6 -prime_tower_mode = normal prime_tower_size = 20 prime_tower_wipe_enabled = True retract_at_layer_change = False diff --git a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg index 7fb90fd0938..e6e2cb78a00 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg @@ -36,8 +36,8 @@ line_width = 0.4 min_infill_area = 0 optimize_wall_printing_order = True prime_tower_brim_enable = True +prime_tower_enable = True prime_tower_min_volume = 6 -prime_tower_mode = normal prime_tower_size = 20 prime_tower_wipe_enabled = True retract_at_layer_change = False diff --git a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg index ce3fe8c60b6..56587fe8838 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg @@ -35,8 +35,8 @@ line_width = 0.4 min_infill_area = 0 optimize_wall_printing_order = True prime_tower_brim_enable = True +prime_tower_enable = True prime_tower_min_volume = 6 -prime_tower_mode = normal prime_tower_size = 20 prime_tower_wipe_enabled = True retract_at_layer_change = False diff --git a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg index a95c6ce5d35..10353f61103 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg @@ -35,8 +35,8 @@ line_width = 0.4 min_infill_area = 0 optimize_wall_printing_order = True prime_tower_brim_enable = True +prime_tower_enable = True prime_tower_min_volume = 6 -prime_tower_mode = normal prime_tower_size = 20 prime_tower_wipe_enabled = True retract_at_layer_change = False diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg index 2e0d11b6eb4..33b5c2c1110 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg @@ -13,7 +13,7 @@ variant = DBE 0.40mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_mode = none +prime_tower_enable = False support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg index fc487f97e44..5be0dc95270 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg @@ -13,7 +13,7 @@ variant = DBE 0.40mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_mode = none +prime_tower_enable = False support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg index 3eef71ef41e..76aa867f8fa 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg @@ -13,7 +13,7 @@ variant = DBE 0.40mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_mode = none +prime_tower_enable = False support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg index 35534c090ec..20bb125cd9d 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg @@ -13,7 +13,7 @@ variant = DBE 0.40mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_mode = none +prime_tower_enable = False support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg index d61061ff55d..cc0224cf23f 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg @@ -13,7 +13,7 @@ variant = DBE 0.40mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_mode = none +prime_tower_enable = False support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg index df09da8d684..ec2ebdc647f 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg @@ -13,7 +13,7 @@ variant = DBE 0.60mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_mode = none +prime_tower_enable = False support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg index be381678562..136ec93d164 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg @@ -13,7 +13,7 @@ variant = DBE 0.60mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_mode = none +prime_tower_enable = False support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg index 24299680ad2..3a0a94782cb 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg @@ -13,7 +13,7 @@ variant = DBE 0.60mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_mode = none +prime_tower_enable = False support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg index 2c89d60680b..719a4bdcbd0 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg @@ -13,7 +13,7 @@ variant = DBE 0.60mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_mode = none +prime_tower_enable = False support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg index c3cbb96ae73..4486a1d3bc3 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg @@ -13,7 +13,7 @@ variant = FBE 0.40mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_mode = none +prime_tower_enable = False support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg index 5e062678c30..b938502e857 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg @@ -13,7 +13,7 @@ variant = FBE 0.40mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_mode = none +prime_tower_enable = False support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg index b9651ddf53e..3b88ca6b671 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg @@ -13,7 +13,7 @@ variant = FBE 0.40mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_mode = none +prime_tower_enable = False support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg index 3e366410377..41347177703 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg @@ -13,7 +13,7 @@ variant = FBE 0.40mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_mode = none +prime_tower_enable = False support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg index bdb9ca3ce51..e267e7c6eb1 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg @@ -13,7 +13,7 @@ variant = FBE 0.40mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_mode = none +prime_tower_enable = False support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg index 741e6c613a9..35e2e07b41d 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg @@ -13,7 +13,7 @@ variant = FBE 0.60mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_mode = none +prime_tower_enable = False support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg index c8421e34a56..dd944cbfd1c 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg @@ -13,7 +13,7 @@ variant = FBE 0.60mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_mode = none +prime_tower_enable = False support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg index 39bafd45c64..8aa462e206f 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg @@ -13,7 +13,7 @@ variant = FBE 0.60mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_mode = none +prime_tower_enable = False support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg index c73c5baecda..0691a01debd 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg @@ -13,7 +13,7 @@ variant = FBE 0.60mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_mode = none +prime_tower_enable = False support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg index b9f63dff355..a4d0582c3a1 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg @@ -13,7 +13,7 @@ variant = V-DBE 0.80mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_mode = none +prime_tower_enable = False support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg index 86e03b328c4..831e17c018e 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg @@ -13,7 +13,7 @@ variant = V-DBE 0.80mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_mode = none +prime_tower_enable = False support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg index b51b54cb62c..d9a57d60123 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg @@ -13,7 +13,7 @@ variant = V-DBE 0.80mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_mode = none +prime_tower_enable = False support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg index 82ad7d5d49e..8408fbc0148 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg @@ -13,7 +13,7 @@ variant = V-DBE 0.80mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_mode = none +prime_tower_enable = False support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg index dcc7dfcd484..18c813a79a2 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg @@ -13,7 +13,7 @@ variant = V-FBE 0.80mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_mode = none +prime_tower_enable = False support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg index d0fb6ec6e25..660c536a5e2 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg @@ -13,7 +13,7 @@ variant = V-FBE 0.60mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_mode = none +prime_tower_enable = False support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg index 1817111e2a2..5dbea58c49f 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg @@ -13,7 +13,7 @@ variant = V-FBE 0.80mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_mode = none +prime_tower_enable = False support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg index 8ba8f905d6e..9bfd649e99e 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg @@ -13,7 +13,7 @@ variant = V-FBE 0.80mm [values] brim_replaces_support = False material_standby_temperature = 100 -prime_tower_mode = none +prime_tower_enable = False support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 diff --git a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg index 82cfb879dda..d5a2f73729c 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg @@ -13,7 +13,7 @@ variant = 0.40mm_Elegoo_Nozzle [values] machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 retraction_prime_speed = =retraction_speed skin_overlap = 10 diff --git a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg index 3b8cc5bb5f5..e86f4546649 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg @@ -13,7 +13,7 @@ variant = 0.40mm_Elegoo_Nozzle [values] machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 retraction_prime_speed = =retraction_speed speed_print = 70 diff --git a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg index 23e6730f11a..db7e5a43c7f 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg @@ -17,7 +17,7 @@ infill_sparse_density = 15 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 retraction_prime_speed = =retraction_speed skin_overlap = 20 diff --git a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg index f3059304488..d84cc9e6563 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg @@ -20,7 +20,7 @@ infill_sparse_density = 15 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 retraction_prime_speed = =retraction_speed skin_overlap = 20 diff --git a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg index cfc8fb9b321..b6c63fad0fd 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg @@ -15,7 +15,7 @@ gradual_infill_step_height = =3 * layer_height machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = normal +prime_tower_enable = True speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg index 52ebc5566bf..1e3eec080a6 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg @@ -15,7 +15,7 @@ gradual_infill_step_height = =3 * layer_height machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 15 -prime_tower_mode = normal +prime_tower_enable = True speed_infill = =math.ceil(speed_print * 35 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg index 683bfe317a6..09bc57ffea1 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg @@ -15,7 +15,7 @@ gradual_infill_step_height = =3 * layer_height machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 15 -prime_tower_mode = normal +prime_tower_enable = True speed_infill = =math.ceil(speed_print * 35 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg index 40cc88859ad..66eb9f49c08 100644 --- a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg @@ -11,7 +11,7 @@ type = quality variant = 0.40mm_Elegoo_Nozzle [values] -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 skin_overlap = 10 speed_topbottom = =math.ceil(speed_print * 35 / 70) diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg index 6043a569d0b..209ce52fa2b 100644 --- a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg @@ -11,7 +11,7 @@ type = quality variant = 0.40mm_Elegoo_Nozzle [values] -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 speed_topbottom = =math.ceil(speed_print * 35 / 70) speed_wall = =math.ceil(speed_print * 45 / 70) diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg index 30760115559..9805a1ae5a8 100644 --- a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg @@ -12,7 +12,7 @@ variant = 0.40mm_Elegoo_Nozzle [values] infill_sparse_density = 15 -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 skin_overlap = 20 top_bottom_thickness = 0.8 diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg index 562b84bf027..cb6ca323e69 100644 --- a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg @@ -14,7 +14,7 @@ variant = 0.40mm_Elegoo_Nozzle infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 15 material_print_temperature = =default_material_print_temperature + 5 -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 skin_overlap = 20 top_bottom_thickness = 0.9 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg index 7178468de7f..d9f0a0aaeaf 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg @@ -30,7 +30,7 @@ material_standby_temperature = =material_print_temperature - 10 ooze_shield_angle = 20 ooze_shield_dist = 4 ooze_shield_enabled = True -prime_tower_mode = none +prime_tower_enable = False retraction_amount = 0.75 retraction_combing = off retraction_speed = 70 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg index cb966418ece..620622e555f 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg @@ -30,7 +30,7 @@ material_standby_temperature = =material_print_temperature - 10 ooze_shield_angle = 20 ooze_shield_dist = 4 ooze_shield_enabled = True -prime_tower_mode = none +prime_tower_enable = False retraction_amount = 0.75 retraction_combing = off retraction_speed = 70 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg index 23733ea85e8..05eeb68305a 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg @@ -30,7 +30,7 @@ material_standby_temperature = =material_print_temperature - 10 ooze_shield_angle = 20 ooze_shield_dist = 4 ooze_shield_enabled = True -prime_tower_mode = none +prime_tower_enable = False retraction_amount = 0.75 retraction_combing = off retraction_speed = 70 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg index 01577a46d0c..b63ef09a6b6 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg @@ -29,7 +29,7 @@ material_standby_temperature = =material_print_temperature - 10 ooze_shield_angle = 20 ooze_shield_dist = 4 ooze_shield_enabled = True -prime_tower_mode = none +prime_tower_enable = False retraction_amount = 0.75 retraction_combing = off retraction_speed = 70 diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg index dc279c62321..038affd56f4 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg @@ -18,7 +18,7 @@ machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 20 material_initial_print_temperature = =material_print_temperature - 15 material_print_temperature = =default_material_print_temperature + 20 -prime_tower_mode = none +prime_tower_enable = False skin_overlap = 20 speed_infill = =math.ceil(speed_print * 50 / 60) speed_layer_0 = =math.ceil(speed_print * 20 / 60) diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg index d5684e3ccb3..5091d36813c 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg @@ -19,7 +19,7 @@ machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 20 material_initial_print_temperature = =material_print_temperature - 15 material_print_temperature = =default_material_print_temperature + 15 -prime_tower_mode = none +prime_tower_enable = False speed_infill = =math.ceil(speed_print * 45 / 60) speed_layer_0 = =math.ceil(speed_print * 20 / 60) speed_print = 60 diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg index bd43496eb47..0420284fa85 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg @@ -19,7 +19,7 @@ machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 20 material_initial_print_temperature = =material_print_temperature - 15 material_print_temperature = =default_material_print_temperature + 5 -prime_tower_mode = none +prime_tower_enable = False speed_infill = =math.ceil(speed_print * 40 / 50) speed_layer_0 = =math.ceil(speed_print * 20 / 50) speed_print = 50 diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg index 420b8a9d9cd..927bdbe7b9e 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg @@ -18,7 +18,7 @@ machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 20 material_initial_print_temperature = =material_print_temperature - 15 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = none +prime_tower_enable = False speed_infill = =math.ceil(speed_print * 40 / 55) speed_layer_0 = =math.ceil(speed_print * 20 / 55) speed_print = 55 diff --git a/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg index ec682feabdb..02d1292c171 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg @@ -36,7 +36,7 @@ material_print_temperature = =default_material_print_temperature + 10 material_standby_temperature = 100 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_mode = normal +prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 raft_interface_thickness = =max(layer_height * 1.5, 0.225) diff --git a/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg index 591e6e2964b..b1c540d01ed 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg @@ -35,7 +35,7 @@ material_print_temperature = =default_material_print_temperature + 10 material_standby_temperature = 100 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_mode = normal +prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 raft_interface_thickness = =max(layer_height * 1.5, 0.225) diff --git a/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg index 604e491db3b..6aac1f4972e 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg @@ -36,7 +36,7 @@ material_print_temperature = =default_material_print_temperature - 10 material_standby_temperature = 100 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_mode = normal +prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 raft_interface_thickness = =max(layer_height * 1.5, 0.225) diff --git a/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg index e610dcf4959..e831dfb2540 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg @@ -34,7 +34,7 @@ material_initial_print_temperature = =material_print_temperature - 5 material_standby_temperature = 100 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_mode = normal +prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 raft_interface_thickness = =max(layer_height * 1.5, 0.225) diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg index 37d77be67c3..6e0ac107189 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg @@ -24,7 +24,7 @@ machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 material_standby_temperature = 100 -prime_tower_mode = none +prime_tower_enable = False skin_overlap = 20 speed_layer_0 = =math.ceil(speed_print * 20 / 70) speed_print = 70 diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg index f27381d0e38..5e84c3e1a12 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg @@ -20,7 +20,7 @@ layer_height_0 = 0.2 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_standby_temperature = 100 -prime_tower_mode = none +prime_tower_enable = False speed_layer_0 = =math.ceil(speed_print * 20 / 60) speed_print = 60 speed_topbottom = =math.ceil(speed_print * 35 / 60) diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg index 1c49689b2ad..8974dcbb034 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg @@ -22,7 +22,7 @@ machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 5 material_standby_temperature = 100 -prime_tower_mode = none +prime_tower_enable = False skin_overlap = 10 speed_layer_0 = =math.ceil(speed_print * 20 / 50) speed_print = 50 diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg index 82b3f109f40..cbada0be182 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg @@ -21,7 +21,7 @@ layer_height_0 = 0.2 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_standby_temperature = 100 -prime_tower_mode = none +prime_tower_enable = False skin_overlap = 10 speed_layer_0 = =math.ceil(speed_print * 20 / 70) top_bottom_thickness = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg index e6e18da492c..70817b06e31 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg @@ -24,7 +24,7 @@ machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 material_standby_temperature = 100 -prime_tower_mode = none +prime_tower_enable = False skin_overlap = 20 speed_layer_0 = =math.ceil(speed_print * 20 / 70) speed_print = 70 diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg index 50b8662604d..b6991202b2b 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg @@ -20,7 +20,7 @@ layer_height_0 = 0.2 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_standby_temperature = 100 -prime_tower_mode = none +prime_tower_enable = False speed_layer_0 = =math.ceil(speed_print * 20 / 60) speed_print = 60 speed_topbottom = =math.ceil(speed_print * 35 / 60) diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg index baf7af3fdc3..930f5cf3fd0 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg @@ -22,7 +22,7 @@ machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 5 material_standby_temperature = 100 -prime_tower_mode = none +prime_tower_enable = False skin_overlap = 10 speed_layer_0 = =math.ceil(speed_print * 20 / 50) speed_print = 50 diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg index bf5fb6b1c9d..6595446feef 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg @@ -21,7 +21,7 @@ layer_height_0 = 0.2 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_standby_temperature = 100 -prime_tower_mode = none +prime_tower_enable = False skin_overlap = 10 speed_layer_0 = =math.ceil(speed_print * 20 / 70) top_bottom_thickness = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg index 86216145d9b..1904758532a 100644 --- a/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg @@ -36,7 +36,7 @@ material_print_temperature = =default_material_print_temperature - 5 material_print_temperature_layer_0 = =material_print_temperature + 5 material_standby_temperature = 100 multiple_mesh_overlap = 0 -prime_tower_mode = none +prime_tower_enable = False prime_tower_size = 16 prime_tower_wipe_enabled = True retraction_count_max = 12 diff --git a/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg index 7d4abe2d3f6..2a0a5729ece 100644 --- a/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg @@ -36,7 +36,7 @@ material_print_temperature = =default_material_print_temperature - 13 material_print_temperature_layer_0 = =material_print_temperature + 3 material_standby_temperature = 100 multiple_mesh_overlap = 0 -prime_tower_mode = none +prime_tower_enable = False prime_tower_size = 16 prime_tower_wipe_enabled = True retraction_count_max = 12 diff --git a/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg index 3aace2ea38d..304c4f17f0b 100644 --- a/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg @@ -36,7 +36,7 @@ material_print_temperature = =default_material_print_temperature - 15 material_print_temperature_layer_0 = =material_print_temperature + 3 material_standby_temperature = 100 multiple_mesh_overlap = 0 -prime_tower_mode = none +prime_tower_enable = False prime_tower_size = 16 prime_tower_wipe_enabled = True retraction_count_max = 12 diff --git a/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg index 04b769ec818..bc712bf9997 100644 --- a/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg @@ -26,7 +26,7 @@ material_final_print_temperature = =max(-273.15, material_print_temperature - 15 material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 10 material_standby_temperature = 100 -prime_tower_mode = normal +prime_tower_enable = True retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg index 5f7216e9b8c..c51c068ae2d 100644 --- a/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg @@ -26,7 +26,7 @@ material_final_print_temperature = =max(-273.15, material_print_temperature - 15 material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 10 material_standby_temperature = 100 -prime_tower_mode = normal +prime_tower_enable = True retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg index 0f4b43d1adc..3b6749dfb9b 100644 --- a/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg @@ -26,7 +26,7 @@ material_final_print_temperature = =max(-273.15, material_print_temperature - 15 material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 10 material_standby_temperature = 100 -prime_tower_mode = normal +prime_tower_enable = True retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg index bf262d9b0d0..45418e5994c 100644 --- a/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg @@ -26,7 +26,7 @@ material_final_print_temperature = =max(-273.15, material_print_temperature - 15 material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 10 material_standby_temperature = 100 -prime_tower_mode = normal +prime_tower_enable = True retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg index 6f15ddf6869..90424ee65e8 100644 --- a/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg @@ -17,7 +17,7 @@ jerk_travel = 20 line_width = =machine_nozzle_size * 0.875 material_print_temperature = =default_material_print_temperature + 15 material_standby_temperature = 100 -prime_tower_mode = normal +prime_tower_enable = True retraction_combing_max_distance = 50 speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) diff --git a/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg index e56ee10a987..7857ed00e75 100644 --- a/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg @@ -17,7 +17,7 @@ jerk_travel = 20 line_width = =machine_nozzle_size * 0.875 material_print_temperature = =default_material_print_temperature + 20 material_standby_temperature = 100 -prime_tower_mode = normal +prime_tower_enable = True retraction_combing_max_distance = 50 speed_print = 45 speed_topbottom = =math.ceil(speed_print * 30 / 45) diff --git a/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg index c8c93a744fb..4194c6f3b7b 100644 --- a/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg @@ -17,7 +17,7 @@ jerk_travel = 20 line_width = =machine_nozzle_size * 0.875 material_print_temperature = =default_material_print_temperature + 17 material_standby_temperature = 100 -prime_tower_mode = normal +prime_tower_enable = True retraction_combing_max_distance = 50 speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) diff --git a/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg index 70db87df100..87dd8765880 100644 --- a/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg @@ -21,7 +21,7 @@ machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_standby_temperature = 100 ooze_shield_angle = 40 -prime_tower_mode = normal +prime_tower_enable = True raft_acceleration = =acceleration_layer_0 raft_airgap = =round(layer_height_0 * 0.85, 2) raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) diff --git a/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg index a134533c462..891a20540dc 100644 --- a/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg @@ -21,7 +21,7 @@ machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_standby_temperature = 100 ooze_shield_angle = 40 -prime_tower_mode = normal +prime_tower_enable = True raft_acceleration = =acceleration_layer_0 raft_airgap = =round(layer_height_0 * 0.85, 2) raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) diff --git a/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg index d8c5450478e..e0090947603 100644 --- a/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg @@ -21,7 +21,7 @@ machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_standby_temperature = 100 ooze_shield_angle = 40 -prime_tower_mode = normal +prime_tower_enable = True raft_acceleration = =acceleration_layer_0 raft_airgap = =round(layer_height_0 * 0.85, 2) raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) diff --git a/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg index f941d5a55d7..947c042b8c2 100644 --- a/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg @@ -25,7 +25,7 @@ machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = normal +prime_tower_enable = True retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg index d96bf8d17e8..08cb14cb267 100644 --- a/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg @@ -25,7 +25,7 @@ machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 15 -prime_tower_mode = normal +prime_tower_enable = True raft_margin = 10 retract_at_layer_change = False speed_print = 45 diff --git a/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg index 53142e5348b..187ed1f2123 100644 --- a/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg @@ -25,7 +25,7 @@ machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = normal +prime_tower_enable = True retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg index 5a4cb62ee2b..10b6e8185a5 100644 --- a/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg @@ -25,7 +25,7 @@ machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = normal +prime_tower_enable = True retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg index 4168b05c611..ed0fc7fd8a5 100644 --- a/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg @@ -25,7 +25,7 @@ machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 15 -prime_tower_mode = normal +prime_tower_enable = True raft_margin = 10 retract_at_layer_change = False speed_print = 45 diff --git a/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg index af930c749ad..9def9ecb974 100644 --- a/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg @@ -25,7 +25,7 @@ machine_nozzle_heat_up_speed = 1.6 material_final_print_temperature = =max(-273.15, material_print_temperature - 15) material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = normal +prime_tower_enable = True retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg index dab7612a6c4..4c3f60a2401 100644 --- a/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg @@ -26,9 +26,9 @@ material_print_temperature = =default_material_print_temperature - 2 material_print_temperature_layer_0 = =default_material_print_temperature + 2 material_standby_temperature = 100 multiple_mesh_overlap = 0.2 +prime_tower_enable = True prime_tower_flow = 100 prime_tower_min_volume = 10 -prime_tower_mode = normal retract_at_layer_change = False retraction_count_max = 12 retraction_extra_prime_amount = 0.5 diff --git a/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg index 7ec446e803e..1b7c05ac3c3 100644 --- a/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg @@ -26,9 +26,9 @@ material_print_temperature = =default_material_print_temperature + 2 material_print_temperature_layer_0 = =default_material_print_temperature + 2 material_standby_temperature = 100 multiple_mesh_overlap = 0.2 +prime_tower_enable = True prime_tower_flow = 100 prime_tower_min_volume = 20 -prime_tower_mode = normal retract_at_layer_change = False retraction_count_max = 12 retraction_extra_prime_amount = 0.5 diff --git a/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg index 9913ea37791..7cbb60c3aac 100644 --- a/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg @@ -25,9 +25,9 @@ material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 2 material_standby_temperature = 100 multiple_mesh_overlap = 0.2 +prime_tower_enable = True prime_tower_flow = 100 prime_tower_min_volume = 15 -prime_tower_mode = normal retract_at_layer_change = False retraction_count_max = 12 retraction_extra_prime_amount = 0.5 diff --git a/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg index 54d9c23b989..4994e3f9f45 100644 --- a/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg @@ -30,8 +30,8 @@ material_print_temperature = =default_material_print_temperature - 2 material_print_temperature_layer_0 = =material_print_temperature + 19 material_standby_temperature = 100 multiple_mesh_overlap = 0.2 +prime_tower_enable = True prime_tower_flow = 100 -prime_tower_mode = normal retract_at_layer_change = False retraction_count_max = 12 retraction_extra_prime_amount = 0.5 diff --git a/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg index 289e9d48b7f..fd15d041b82 100644 --- a/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg @@ -31,8 +31,8 @@ material_print_temperature = =default_material_print_temperature + 2 material_print_temperature_layer_0 = =material_print_temperature + 15 material_standby_temperature = 100 multiple_mesh_overlap = 0.2 +prime_tower_enable = True prime_tower_flow = 100 -prime_tower_mode = normal retract_at_layer_change = False retraction_count_max = 12 retraction_extra_prime_amount = 0.5 diff --git a/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg index c8cad9bb3fa..5c88fb165f8 100644 --- a/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg @@ -30,8 +30,8 @@ material_initial_print_temperature = =material_print_temperature material_print_temperature_layer_0 = =material_print_temperature + 17 material_standby_temperature = 100 multiple_mesh_overlap = 0.2 +prime_tower_enable = True prime_tower_flow = 100 -prime_tower_mode = normal retract_at_layer_change = False retraction_count_max = 12 retraction_extra_prime_amount = 0.5 diff --git a/resources/quality/nps/nps_ABS_B.inst.cfg b/resources/quality/nps/nps_ABS_B.inst.cfg index 520bda4b056..3f700405bdb 100644 --- a/resources/quality/nps/nps_ABS_B.inst.cfg +++ b/resources/quality/nps/nps_ABS_B.inst.cfg @@ -22,7 +22,7 @@ material_bed_temperature = 100 material_flow = 96 material_print_temperature = =default_material_print_temperature + 13 material_print_temperature_layer_0 = =243 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/nps/nps_ABS_C.inst.cfg b/resources/quality/nps/nps_ABS_C.inst.cfg index 1131f61d36f..6138e4004c0 100644 --- a/resources/quality/nps/nps_ABS_C.inst.cfg +++ b/resources/quality/nps/nps_ABS_C.inst.cfg @@ -22,7 +22,7 @@ material_bed_temperature = 100 material_flow = 91 material_print_temperature = =default_material_print_temperature + 15 material_print_temperature_layer_0 = =245 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/nps/nps_PC_A.inst.cfg b/resources/quality/nps/nps_PC_A.inst.cfg index 90cc71d9516..8665f8ceaee 100644 --- a/resources/quality/nps/nps_PC_A.inst.cfg +++ b/resources/quality/nps/nps_PC_A.inst.cfg @@ -32,7 +32,7 @@ material_bed_temperature = 110 material_flow = 100 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =280 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/nps/nps_PC_B.inst.cfg b/resources/quality/nps/nps_PC_B.inst.cfg index 3761d802d76..9ccb5cea534 100644 --- a/resources/quality/nps/nps_PC_B.inst.cfg +++ b/resources/quality/nps/nps_PC_B.inst.cfg @@ -32,7 +32,7 @@ material_bed_temperature = 110 material_flow = 88 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = 275 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/nps/nps_PC_C.inst.cfg b/resources/quality/nps/nps_PC_C.inst.cfg index 85752e78c21..30267d42375 100644 --- a/resources/quality/nps/nps_PC_C.inst.cfg +++ b/resources/quality/nps/nps_PC_C.inst.cfg @@ -32,7 +32,7 @@ material_bed_temperature = 110 material_flow = 88 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = 275 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/nps/nps_PETG_A.inst.cfg b/resources/quality/nps/nps_PETG_A.inst.cfg index 0985dd1b3ad..3cae430f1cc 100644 --- a/resources/quality/nps/nps_PETG_A.inst.cfg +++ b/resources/quality/nps/nps_PETG_A.inst.cfg @@ -22,7 +22,7 @@ material_bed_temperature = 80 material_flow = 98 material_print_temperature = =default_material_print_temperature + 20 material_print_temperature_layer_0 = =230 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/nps/nps_PETG_B.inst.cfg b/resources/quality/nps/nps_PETG_B.inst.cfg index e3a5f165ada..5860f654146 100644 --- a/resources/quality/nps/nps_PETG_B.inst.cfg +++ b/resources/quality/nps/nps_PETG_B.inst.cfg @@ -22,7 +22,7 @@ material_bed_temperature = 80 material_flow = 95 material_print_temperature = =default_material_print_temperature + 20 material_print_temperature_layer_0 = =230 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg index 0569a356f35..39ba32a332a 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 100 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg index e906508f7f5..dd0d167e6bc 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 96 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg index a883aba2ec4..f894a7dc139 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 91 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg index dc595e8c5df..7642489c2a9 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 100 material_print_temperature = =default_material_print_temperature + 1 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg index a84b12135fc..bf5c18405bc 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 96 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature + 1 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg index ef6358a6a00..6756384e4af 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 91 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature +3 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg index 7a0cd7ee8d5..978484d8130 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 98 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg index 4fa5d070aa6..bcec4fe68f4 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 95 material_print_temperature = =default_material_print_temperature + 2 material_print_temperature_layer_0 = =default_material_print_temperature + 0 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg index 7944c44371e..85f79ebe7a0 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 93 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg index fb2ee81c9f2..9b29e496242 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 100 material_print_temperature = =default_material_print_temperature + 1 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg index 4e63f1513d1..07a46f0d05b 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 96 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg index 5e158007ab2..60410d8d346 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 91 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 7 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg index f73adbfa513..93046306306 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg index da2aa052377..d39d91c91ae 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg index e636a5ebee1..e716824cf03 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg index a997ac74dd9..bd964bed2a5 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg index 7055e3daddf..cd27f777376 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 97 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg index 6c66ffd76cb..78191af7be7 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 97 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg index f451618a284..f37a3b4d6d0 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg @@ -34,7 +34,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 88 material_print_temperature = 260 material_print_temperature_layer_0 = 265 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg index 5866dad50bb..75fed99b1ec 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg @@ -34,7 +34,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 88 material_print_temperature = 270 material_print_temperature_layer_0 = 275 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg index 502dd8be072..51911c3811d 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg @@ -34,7 +34,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 88 material_print_temperature = 270 material_print_temperature_layer_0 = 275 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg index 52792281055..e4596d9def1 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg @@ -33,7 +33,7 @@ material_flow = 105 material_flow_layer_0 = 120 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 15 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg index 92c62d2b439..d0faf6eb66e 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 98 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg index 92811521ac4..3a64a522543 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 95 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg index 234d33c2eb1..debf74ed0d7 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 91 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature +5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg index 76ea2997baa..990d5cf645e 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 98 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg index fc3d8e47ec7..82f26cd66d7 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 95 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg index f4bfb4c6986..a91b035e38e 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 91 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg index 82715060a6b..c7194e18d24 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg @@ -29,7 +29,7 @@ material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 10 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_amount = 2 retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg index ca19b0ee14d..078e213a262 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg @@ -29,7 +29,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_amount = 2 retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg index f61b83ab7b8..bfb4c46c461 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg @@ -29,7 +29,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_amount = 2 retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg index 85097b45067..8dd1c17ea69 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.38 material_flow = 107 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature - 3 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.2 retraction_hop_only_when_collides = False retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg index 967f7c21a5a..cca98aa5997 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.38 material_flow = 103 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.2 retraction_hop_only_when_collides = False retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg index 91106506291..5a343d68931 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.38 material_flow = 101 material_print_temperature = =default_material_print_temperature + 7 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.2 retraction_hop_only_when_collides = False retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg index de6356694f1..e6be8813412 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 100 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg index ec119cba9ff..c4342c149a1 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 96 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg index 0b4df9f3a3a..e3581e08230 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 91 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg index ad5d8c85869..4c451894bdf 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 100 material_print_temperature = =default_material_print_temperature + 1 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg index e0600e72d81..65c2c9e81f2 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 96 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature + 1 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg index 5827b15cf96..2f5cf9cfa3f 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 91 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature +3 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg index 3ee7204b929..36d6697edbe 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 98 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg index 4834ca9eefb..e92561350a1 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 95 material_print_temperature = =default_material_print_temperature + 2 material_print_temperature_layer_0 = =default_material_print_temperature + 0 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg index 4850f68dc0b..e61775fde0b 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 93 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg index ec7cbcc0fd2..020b95dad20 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 100 material_print_temperature = =default_material_print_temperature + 1 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg index 6f086f06056..6688d82ec8c 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 96 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg index ff5016d5431..2c8d6a82d3a 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 91 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 7 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg index e3249312699..fe012ff8735 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg index 5aea3605f59..c0adce0f844 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 97 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg index 24a1faed482..5b58c2f37bc 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 97 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg index d73b6ac7969..f986831fd5f 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg index 14d3867950d..5d360b244b1 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg index 26e6ebc4df4..3875e668f41 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg index 54954ff5678..d4d0e1c17e9 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg index 057fb1b8cc6..f2bb237ea22 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 97 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg index 63f71cff826..f6780fbded2 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 97 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg index afef00df11b..6e726932a6f 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg index 7b81803b0ce..7ef50ff5b13 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg index c0ac99423da..4d4af1e0f7f 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg index bd0f177b1b7..0d88c99c856 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg index 586d49b7db8..de476e6e46b 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg index 16c8c5e6aa9..3fe7ff347cc 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg index 71a70f0849a..9dd3039b65e 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg @@ -34,7 +34,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 88 material_print_temperature = 260 material_print_temperature_layer_0 = 265 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg index ad26bba4cbd..346f33bafb5 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg @@ -34,7 +34,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 88 material_print_temperature = 270 material_print_temperature_layer_0 = 275 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg index e4da72d39a7..8571e8c4b02 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg @@ -34,7 +34,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 88 material_print_temperature = 270 material_print_temperature_layer_0 = 275 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg index b7bebe13b75..4231e1b3a14 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 98 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg index f3bc48c8c99..c141a0ab079 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 95 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg index 70c2d3044c8..9cd4262c552 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 91 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature +5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg index d52ceb51ea6..6f49ec9e3bf 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 98 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg index 6124b1dfed9..415379417c3 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 95 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg index b4a8bc21f43..c4ce86563fa 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 91 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg index a764026ca71..dc4505591f1 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg @@ -29,7 +29,7 @@ material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 10 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_amount = 2 retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg index 11b9d689c86..224fa18cd6a 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg @@ -29,7 +29,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_amount = 2 retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg index 7521ef5d628..44737981b04 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg @@ -29,7 +29,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_amount = 2 retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg index 6de69d4eba0..8bf71b5cf5f 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg index e2b282ab2a6..3102afdc2c9 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 97 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg index 60d02fac6db..ad6e3615825 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 97 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg index 4969aad456c..b7445aee864 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg index 7bf8dc30d42..cc849df9bac 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 97 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg index 27cef2d7c97..10cbd3a4cf2 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_flow = 97 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg index 24e3a1f2384..055bbb76239 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.38 material_flow = 107 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature - 3 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.2 retraction_hop_only_when_collides = False retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg index 4211634c6d3..028586beb47 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.38 material_flow = 103 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.2 retraction_hop_only_when_collides = False retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg index bd2c12c3f13..8bc0b97bc58 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.38 material_flow = 101 material_print_temperature = =default_material_print_temperature + 7 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.2 retraction_hop_only_when_collides = False retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg index 589f27a2213..ec355cec15a 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 100 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg index bca586491d4..3ab4df020ca 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 98 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg index 2e90b6fd6f5..455cb44a7b1 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 96 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg index e2f63845eed..3475c621c3b 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 100 material_print_temperature = =default_material_print_temperature + 1 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg index bc9df5fa147..d7d937fdefd 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 98 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature + 1 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg index 7216eb093c8..e83067bdc8a 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 96 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg index a90e755a491..188cddf0d6d 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 95 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg index 1d54fd6b3cc..6127c2ec434 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 93 material_print_temperature = =default_material_print_temperature + 2 material_print_temperature_layer_0 = =default_material_print_temperature + 0 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg index 90d3d005070..ca38be0476c 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 91 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg index ca2b4a9c9e3..caa9003cb3d 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 101 material_print_temperature = =default_material_print_temperature + 1 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.2 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg index b297719ba13..a10cbdac7d1 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 99 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.2 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg index 34882ab1af7..85fe174e950 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 97 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 7 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.2 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg index 07969b958a9..9b48be1b8b3 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 95 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg index ecd3384a5b8..0440a0a34a7 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 95 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg index a4a87bc3f3e..7f124ae4ece 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 95 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg index c0f93168dac..f662c410485 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_amount = 3 retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg index 4116205747f..dae0dda0981 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_amount = 3 retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg index df1fb6e2e75..1079c746ecc 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_amount = 3 retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg index aa5bfa30f22..04991249e9f 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 95 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg index 887a35f80e9..685778f3f14 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 95 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg index a9a4bcb18f9..ab5eca1d474 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 95 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg index d73114c313b..a5a2addbc6e 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 93 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg index e3f0657f1f4..6ecc9a32650 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg index 542f9405b11..9e060959ddc 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg index 43ff676c46d..322d30a975e 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg index 2cca8a5c45f..5ae6c32cb89 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg index 951e26d8413..3fbe1f63708 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg index f408c5a293e..46aacdf22ca 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg index 8b72022a0d4..6997dae536c 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg @@ -33,7 +33,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 87 material_print_temperature = 270 material_print_temperature_layer_0 = 275 -prime_tower_mode = normal +prime_tower_enable = True retraction_amount = 2 retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg index 2540f2bea92..70bb7206af0 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg @@ -33,7 +33,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 87 material_print_temperature = 270 material_print_temperature_layer_0 = 275 -prime_tower_mode = normal +prime_tower_enable = True retraction_amount = 2 retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg index c6bd8cc70e0..eb89937deda 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg @@ -33,7 +33,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 87 material_print_temperature = 270 material_print_temperature_layer_0 = 275 -prime_tower_mode = normal +prime_tower_enable = True retraction_amount = 2 retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg index 02b8e45e226..4bc567a2d91 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 93 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg index 26e2eb50290..f08c2e68b74 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 92 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg index f97462d99c7..4a9a1472b8e 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 91 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature +5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg index 540e14ba238..41edbc8e328 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 93 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg index af851371a19..10356ad3448 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 92 material_print_temperature = =default_material_print_temperature + 8 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg index e2470b9ecf5..9f04791ac2a 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 91 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg index 21c4f9eccc9..56e09ac385a 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg @@ -29,7 +29,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg index b210d0fd308..6c8a5462aa6 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg @@ -29,7 +29,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg index 6b6a5923cef..be4a045e0d8 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg @@ -29,7 +29,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg index f677ac9e32c..6b107e9c9bd 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 95 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg index 9ed4c381c9a..ca169572b9b 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 95 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg index 3f928f436dd..7e7a3ed9d11 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 95 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg index d8e702dc7a6..a08e251fe01 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 95 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg index 53516d4617f..2bcf4d4b1d3 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 95 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg index e7298a71d3b..1352a75a8ab 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 95 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg index cd9de526ec3..ad699959aac 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.55 material_flow = 105 material_print_temperature = =default_material_print_temperature + 2 material_print_temperature_layer_0 = =default_material_print_temperature - 2 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.2 retraction_hop_only_when_collides = False retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg index 4de06235da3..6fdabc1a83e 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.55 material_flow = 103 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.2 retraction_hop_only_when_collides = False retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg index 431623b7c67..1954931cc71 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.55 material_flow = 101 material_print_temperature = =default_material_print_temperature + 7 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.2 retraction_hop_only_when_collides = False retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg index e0c29062d7e..913af1994be 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 97 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature + 1 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg index 9230df64e3c..573834fc791 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 96 material_print_temperature = =default_material_print_temperature + 7 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg index 7117a889ed9..3d5d1781ae4 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 95 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg index 97d2209bdaf..4910a692729 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 97 material_print_temperature = =default_material_print_temperature + 2 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg index 111504ad7b7..28d395019a5 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 96 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 2 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg index d5322c039a3..b91ceb1f851 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 95 material_print_temperature = =default_material_print_temperature + 7 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg index 74d0fa38693..4a32ddceaf2 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 97 material_print_temperature = =default_material_print_temperature + 1 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg index 80dfbe8dbc1..e45a8970f76 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 96 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg index 26decee7ba2..c0a9632b95b 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 95 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 7 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg index 850458ed36f..bce7e2891fd 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg index 06f9ed6686d..0a053f123ea 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg index 36398c0cfcb..4f167ecacc9 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg index 8dd9bc10fb4..8efea7e2640 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop = 2 retraction_hop_enabled = True diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg index fb149908d18..d2f6973da76 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop = 2 retraction_hop_enabled = True diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg index 47d9a50940a..57e9fc27a4d 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop = 2 retraction_hop_enabled = True diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg index e57fefc2b90..2ef4a5b4794 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg index 0cbddce4c91..a7549a851cd 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 97 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg index 965c08e8f9b..322f31e9863 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 97 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg index 4062997ba0d..6f3fa578bff 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg index e6acfe27b88..ee3166e7da1 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg index 602837f410b..05eabcc6a32 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg index d5bb0ac8ba3..d10b2df53be 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg index 022a6f36bf9..181d89f9579 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg index 35421e68d61..38bd72884bf 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg index 65217b7ff9e..d8b2e660fc8 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg @@ -35,7 +35,7 @@ material_print_temperature = 280 material_print_temperature_layer_0 = 285 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_min_travel = =2*line_width retraction_speed = 35 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg index 118acb433f2..c39338eeca8 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg @@ -35,7 +35,7 @@ material_print_temperature = 280 material_print_temperature_layer_0 = 285 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_min_travel = =2*line_width retraction_speed = 35 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg index c8102ecdf90..f88eff16151 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg @@ -35,7 +35,7 @@ material_print_temperature = 280 material_print_temperature_layer_0 = 285 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_min_travel = =2*line_width retraction_speed = 35 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg index df178b18072..59a6db473db 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.4 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg index 95973a44288..9a94498b121 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 95 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.4 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg index 32073574ead..2611e1deba9 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 93 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature +5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.4 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg index 4b306434b94..35644e47a87 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 99 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg index 99a245dfb49..a820dd84676 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 98 material_print_temperature = =default_material_print_temperature + 7 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg index d7ecb957489..a4f135a4fae 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 97 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg index 9a973d225d8..ee58caf9e6d 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg @@ -27,7 +27,7 @@ material_flow = 93 material_initial_print_temperature = =default_material_print_temperature material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg index 6ff6a8dd0e8..6399e7fd1fb 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg @@ -29,7 +29,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg index 5f19e2ab771..e034d49e6e9 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg @@ -29,7 +29,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg index 5ea81eab765..632c45a51ff 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg index cc5ecebffe7..e882d420151 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg index d133a60b415..7b52c7bb2d8 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg index 1e243bbea46..a0fcdc4a520 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg index 54889f9923b..496e5fe2159 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg index 8f484b06169..9c676c934bc 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg index f328b886459..0b4c3c02811 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.7 material_flow = 105 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = False retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg index 9d11111b78d..ffbb925a229 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.7 material_flow = 103 material_print_temperature = =default_material_print_temperature + 6 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = False retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg index ed25c0fb46c..60af5617e3b 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.7 material_flow = 101 material_print_temperature = =default_material_print_temperature + 9 material_print_temperature_layer_0 = =default_material_print_temperature +5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = False retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg index 0b70ff0384d..71581b46adc 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.7 material_flow = 100 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = False retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg index f519ec66d5e..bcbb45062ad 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.7 material_flow = 100 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = False retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg index 83c109070a6..827ae4a7ba7 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.7 material_flow = 100 material_print_temperature = =default_material_print_temperature + 7 material_print_temperature_layer_0 = =default_material_print_temperature +3 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = False retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg index 09ffbaed981..29f88f6e15d 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 97 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg index ff50fd3debf..316e5d4447b 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 97 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg index fbbc7a01875..44203ad144b 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 97 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature +5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg index 95a6d4e7328..e322951476c 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 100 material_print_temperature = =default_material_print_temperature + 1 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.4 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg index 2c0caa6a069..b4ee9ea9852 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 100 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.4 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg index c896adef1bf..708896fdb76 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 100 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 7 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.4 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg index 0dcc4405d74..63ca3d88ff4 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg index 73dce76c2ee..62ed1914db1 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg index 36902a619f1..ac9ec6324e8 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg index b0bc012110d..b225d8a9112 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg index baf42116458..6e859c8dd04 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 97 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg index 754d20c802e..6b8ebd9d203 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 97 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg index 717aed8e494..f168d4cf46c 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg index d41dea9d7bd..652876d6b23 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg index b708481aeb3..482b99c2f60 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg index 5e604e6f659..551e79a8e48 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg index 31f7a30f3fb..57097361478 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg index f35389424ce..38f3b2b2efe 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg index 902e42aef11..54a6d54cc03 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 95 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg index f1fc4dd8775..abdd37d98da 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 95 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg index 03c73269f8c..50f3b04e16f 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 95 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg index ddf8abc4c15..35e9d199577 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 100 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg index 77eb559e6e3..6e59384a4d6 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 100 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg index 5053e91cbbf..9df5f69d750 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 100 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature +5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg index 0e658a7bd26..45b5a9e4153 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg index f30a55729cd..70ec1234ff3 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg index eca2362651c..63275020274 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg index ec460ac49e4..d7056a3f110 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg index 1e85473f67a..a5ec67621f1 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg index 9650dac1c02..4ddc98ddd2f 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.0 material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg index 38cf5927f05..1b3a77ab8b0 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.9 material_flow = 107 material_print_temperature = =default_material_print_temperature + 2 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = False retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg index 60baaa10389..be45c084a56 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.9 material_flow = 107 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = False retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg index 385d21e44db..c02401c4d5f 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*0.9 material_flow = 107 material_print_temperature = =default_material_print_temperature + 8 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = False retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg index ef7573779dc..ba91c749d5d 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 103 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg index 86e4022a272..b1d4c72a345 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 102 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg index aa2af46845e..4fac7e687d8 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 101 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature +5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg index 915523eadf2..91b4699598a 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 100 material_print_temperature = =default_material_print_temperature + 1 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg index d258496552b..8d84bc4fd5d 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 100 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg index 93420a5103b..eafe3eef80e 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 100 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 7 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg index 41764726df3..3286e7fb083 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 100 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg index 2e4bb516b00..bb164bcd99e 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 100 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg index 700c0102c22..82ad174a959 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 100 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg index 941f0a6c814..f33abf1ec39 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 103 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg index 4cd7728a694..2edb0e32f89 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 102 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg index 01b584afcda..30d7139eb91 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 101 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg index a4c6fd4046f..1bf36453d18 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg index 376c9b1d511..f413dd3e17b 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg index 5e27fec1509..9b228f7b05d 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg index 5ca32bd6554..68c8604a95a 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg index bdebb9a0acc..66fc7c2f92e 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg index 01c65f45865..aceba867c23 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg @@ -37,7 +37,7 @@ material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 5 meshfix_maximum_deviation = 0.04 meshfix_maximum_resolution = 0.5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.1 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg index 9a8aaeb18ef..a34c3a4d45e 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 100 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg index ba4d2b22ec0..bd41a808d04 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 100 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg index 2b1b5fb2f92..6036150353b 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 95 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg index 6e05ba15a68..c150380c74b 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 107 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg index 56765cb1567..74ce8559d2a 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 105 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg index 36d6248682f..f59b68f675a 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 103 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg index d88ff841d05..689c1fe0764 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 100 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg index 9bb1258fc80..514cdcbfde2 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 100 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg index 7a662ec6d17..123dc9a953d 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 100 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg index 767b72a5666..9c3f620a2d1 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 100 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg index da088dc345a..0b841dfb095 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 100 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg index 1ae6c25ebb7..adfe8161258 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.2 material_flow = 100 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = True retraction_min_travel = =3*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg index a9eb8331c83..4b6108e51d2 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.1 material_flow = 111 material_print_temperature = =default_material_print_temperature + 2 material_print_temperature_layer_0 = =default_material_print_temperature -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = False retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg index 03cb1459449..99af35534f2 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.1 material_flow = 111 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = False retraction_min_travel = =2*line_width diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg index ac77c87265e..21043cae581 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg @@ -24,7 +24,7 @@ line_width = =machine_nozzle_size/machine_nozzle_size*1.1 material_flow = 111 material_print_temperature = =default_material_print_temperature + 8 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_mode = normal +prime_tower_enable = True retraction_extra_prime_amount = 0.3 retraction_hop_only_when_collides = False retraction_min_travel = =2*line_width diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg index 538bcfedb96..ac5f3e5bee7 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg @@ -22,8 +22,8 @@ material_final_print_temperature = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_print_temperature = =default_material_print_temperature optimize_wall_printing_order = True +prime_tower_enable = True prime_tower_flow = 110 -prime_tower_mode = normal prime_tower_size = 35 retraction_min_travel = 2 skirt_gap = 2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg index 86c4cd18941..eca85becc64 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg @@ -19,8 +19,8 @@ material_final_print_temperature = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_print_temperature = =default_material_print_temperature optimize_wall_printing_order = True +prime_tower_enable = True prime_tower_flow = 110 -prime_tower_mode = normal prime_tower_size = 35 retraction_hop_enabled = False support_enable = True diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg index 83ec5746630..8071d7193e5 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg @@ -30,8 +30,8 @@ material_flow_layer_0 = 93 material_initial_print_temperature = =material_print_temperature material_print_temperature = =default_material_print_temperature optimize_wall_printing_order = True +prime_tower_enable = True prime_tower_flow = 110 -prime_tower_mode = normal prime_tower_size = 35 retraction_amount = 5 retraction_hop_enabled = False diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg index 2269a480a5d..8354fba5e09 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg @@ -30,8 +30,8 @@ material_flow_layer_0 = 93 material_initial_print_temperature = =material_print_temperature material_print_temperature = =default_material_print_temperature optimize_wall_printing_order = True +prime_tower_enable = True prime_tower_flow = 110 -prime_tower_mode = normal prime_tower_size = 35 retraction_amount = 5 retraction_hop_enabled = False diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg index 4fed1695685..074632abda3 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg @@ -19,8 +19,8 @@ material_final_print_temperature = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_print_temperature = =default_material_print_temperature optimize_wall_printing_order = True +prime_tower_enable = True prime_tower_flow = 110 -prime_tower_mode = normal prime_tower_size = 35 retraction_hop_enabled = False support_enable = True diff --git a/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg index 632a1fb46da..eeb924906f6 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg @@ -21,7 +21,7 @@ machine_min_cool_heat_time_window = 15 material_print_temperature = =default_material_print_temperature - 10 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_mode = normal +prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 diff --git a/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg index 0667ef961d2..a64c8298a2d 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg @@ -21,7 +21,7 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 2 multiple_mesh_overlap = 0 -prime_tower_mode = none +prime_tower_enable = False prime_tower_size = 16 prime_tower_wipe_enabled = True retraction_count_max = 15 diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg index d93ba61d9da..16be0db845c 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg @@ -15,7 +15,7 @@ weight = -2 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_mode = none +prime_tower_enable = False skin_overlap = 20 speed_print = 60 speed_topbottom = =math.ceil(speed_print * 35 / 60) diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg index b92a826f5ae..916b283c9ce 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg @@ -15,7 +15,7 @@ weight = -1 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 10 -prime_tower_mode = none +prime_tower_enable = False speed_print = 60 speed_topbottom = =math.ceil(speed_print * 30 / 60) speed_wall = =math.ceil(speed_print * 40 / 60) diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg index 2fe35f1a2eb..5dcbe80bbbb 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg @@ -15,7 +15,7 @@ weight = 1 machine_nozzle_cool_down_speed = 0.8 machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 20 -prime_tower_mode = none +prime_tower_enable = False speed_print = 50 speed_topbottom = =math.ceil(speed_print * 30 / 50) speed_wall = =math.ceil(speed_print * 30 / 50) diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg index fcecc2701b5..1420880995f 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg @@ -15,7 +15,7 @@ weight = 0 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 15 -prime_tower_mode = none +prime_tower_enable = False speed_print = 55 speed_topbottom = =math.ceil(speed_print * 30 / 55) speed_wall = =math.ceil(speed_print * 30 / 55) diff --git a/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg index cf417a84b69..e0dd43cc28a 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg @@ -16,7 +16,7 @@ brim_replaces_support = False machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 -prime_tower_mode = ='normal' if (min(extruderValues('material_surface_energy')) < 100) else 'none' +prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 skin_overlap = 20 speed_topbottom = =math.ceil(speed_print * 35 / 70) speed_wall = =math.ceil(speed_print * 50 / 70) diff --git a/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg index 363a43975ee..16ece7c2dda 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg @@ -15,7 +15,7 @@ weight = -1 brim_replaces_support = False machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_mode = ='normal' if (min(extruderValues('material_surface_energy')) < 100) else 'none' +prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 speed_print = 80 speed_topbottom = =math.ceil(speed_print * 30 / 80) speed_wall = =math.ceil(speed_print * 40 / 80) diff --git a/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg index 92dae4a19f5..ca7fd8cbf35 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg @@ -15,7 +15,7 @@ weight = 0 brim_replaces_support = False machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_mode = ='normal' if (min(extruderValues('material_surface_energy')) < 100) else 'none' +prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 skin_overlap = 10 support_angle = 45 support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg index 2540a78b21b..5de59e58c99 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg @@ -18,7 +18,7 @@ infill_wipe_dist = 0 layer_height = 0.2 machine_min_cool_heat_time_window = 15 multiple_mesh_overlap = 0 -prime_tower_mode = normal +prime_tower_enable = True prime_tower_wipe_enabled = True retraction_hop = 0.2 retraction_hop_enabled = False diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg index 37e8df992dc..b2020831d77 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg @@ -18,7 +18,7 @@ infill_wipe_dist = 0 layer_height = 0.15 machine_min_cool_heat_time_window = 15 multiple_mesh_overlap = 0 -prime_tower_mode = normal +prime_tower_enable = True prime_tower_wipe_enabled = True retraction_hop = 0.2 retraction_hop_enabled = False diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg index 5ba84b05642..4be3a9c13aa 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg @@ -21,7 +21,7 @@ machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 8 multiple_mesh_overlap = 0 -prime_tower_mode = normal +prime_tower_enable = True prime_tower_wipe_enabled = True retraction_hop = 0.2 retraction_hop_enabled = False diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg index 0fb115b5484..2e24f485d0a 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg @@ -20,7 +20,7 @@ machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 5 multiple_mesh_overlap = 0 -prime_tower_mode = normal +prime_tower_enable = True prime_tower_wipe_enabled = True retraction_hop = 0.2 retraction_hop_enabled = False diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg index d0d447acdf5..28e8ccbf75a 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg @@ -24,7 +24,7 @@ machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_mode = normal +prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg index e55a49babab..5113277ab2c 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg @@ -23,7 +23,7 @@ machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_mode = normal +prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg index ee55427cf73..636ce41e716 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg @@ -25,7 +25,7 @@ machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 20 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_mode = normal +prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg index 15410514cd9..a7c533bfea7 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg @@ -23,7 +23,7 @@ machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 10 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_mode = normal +prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg index a79b715ee08..1d44e48193d 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg @@ -15,7 +15,7 @@ weight = -2 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 -prime_tower_mode = none +prime_tower_enable = False skin_overlap = 20 speed_topbottom = =math.ceil(speed_print * 40 / 70) speed_wall = =math.ceil(speed_print * 55 / 70) diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg index a838352f48a..6b99ed5a70e 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg @@ -14,7 +14,7 @@ weight = -1 [values] machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_mode = none +prime_tower_enable = False speed_print = 80 speed_topbottom = =math.ceil(speed_print * 30 / 80) speed_wall = =math.ceil(speed_print * 40 / 80) diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg index e5a10d92227..97be45babc7 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg @@ -15,7 +15,7 @@ weight = 1 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_mode = none +prime_tower_enable = False skin_overlap = 10 speed_print = 60 speed_topbottom = =math.ceil(speed_print * 30 / 60) diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg index 486b74c1b20..f305caa82d7 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg @@ -14,7 +14,7 @@ weight = 0 [values] machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_mode = none +prime_tower_enable = False skin_overlap = 10 top_bottom_thickness = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg index 4293ca81f10..c82043d3afc 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg @@ -24,7 +24,7 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature + 8 multiple_mesh_overlap = 0 -prime_tower_mode = none +prime_tower_enable = False prime_tower_size = 16 prime_tower_wipe_enabled = True retraction_amount = 6.5 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg index 1b396f5417e..74a628f7cb9 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg @@ -23,7 +23,7 @@ machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 multiple_mesh_overlap = 0 -prime_tower_mode = none +prime_tower_enable = False prime_tower_size = 16 prime_tower_wipe_enabled = True retraction_count_max = 15 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg index 6c4ee71b828..fa9b4c54ea4 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg @@ -23,7 +23,7 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 2 multiple_mesh_overlap = 0 -prime_tower_mode = none +prime_tower_enable = False prime_tower_size = 16 prime_tower_wipe_enabled = True retraction_count_max = 15 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg index d8fca155d38..cffd1e60758 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg @@ -14,7 +14,7 @@ weight = -2 [values] machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_mode = none +prime_tower_enable = False skin_overlap = 20 speed_print = 50 speed_roofing = =math.ceil(speed_wall * 20 / 24) diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg index 5ea9fe93369..94fe824f5e2 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg @@ -14,7 +14,7 @@ weight = -1 [values] machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_mode = none +prime_tower_enable = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg index 4e03569ca67..05a68966469 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg @@ -15,7 +15,7 @@ weight = 0 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_mode = none +prime_tower_enable = False skin_overlap = 10 speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg index 0443afa3f61..dcca81f3ef2 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg @@ -17,7 +17,7 @@ brim_width = 14 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 20 -prime_tower_mode = normal +prime_tower_enable = True retraction_hop = 0.1 retraction_hop_enabled = False skin_overlap = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg index ccae2cc5d87..585ae8eefe2 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg @@ -18,7 +18,7 @@ layer_height = 0.4 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 15 -prime_tower_mode = normal +prime_tower_enable = True retraction_hop = 0.1 retraction_hop_enabled = False skin_overlap = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg index 9596b00d339..2280a837aed 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg @@ -18,7 +18,7 @@ layer_height = 0.3 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 17 -prime_tower_mode = normal +prime_tower_enable = True retraction_hop = 0.1 retraction_hop_enabled = False skin_overlap = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg index 4a7e29ec36a..b1f867807bd 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg @@ -14,7 +14,7 @@ weight = -2 [values] brim_width = 15 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = normal +prime_tower_enable = True speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg index 5c5b7329900..a75ae74ada6 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg @@ -15,7 +15,7 @@ weight = -4 brim_width = 15 layer_height = 0.4 material_print_temperature = =default_material_print_temperature + 15 -prime_tower_mode = normal +prime_tower_enable = True speed_infill = =math.ceil(speed_print * 33 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 30 / 45) diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg index 9a48e11a7b5..c1544a00e22 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg @@ -15,7 +15,7 @@ weight = -3 brim_width = 15 layer_height = 0.3 material_print_temperature = =default_material_print_temperature + 12 -prime_tower_mode = normal +prime_tower_enable = True speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) diff --git a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg index 747730c0a73..a0fc0365660 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg @@ -17,7 +17,7 @@ machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 5 ooze_shield_angle = 40 -prime_tower_mode = normal +prime_tower_enable = True raft_airgap = 0.45 support_angle = 70 switch_extruder_prime_speed = 30 diff --git a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg index 40f0779369b..547ab013fb7 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg @@ -18,7 +18,7 @@ machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 5 ooze_shield_angle = 40 -prime_tower_mode = normal +prime_tower_enable = True raft_airgap = 0.45 support_angle = 70 switch_extruder_prime_speed = 30 diff --git a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg index 03116ec10dd..b17789ad0f8 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg @@ -18,7 +18,7 @@ machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 5 ooze_shield_angle = 40 -prime_tower_mode = normal +prime_tower_enable = True raft_airgap = 0.45 support_angle = 70 switch_extruder_prime_speed = 30 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg index aab2e25ac23..3eafff9a071 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg @@ -14,7 +14,7 @@ weight = -2 [values] brim_width = 7 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_mode = normal +prime_tower_enable = True retraction_combing = all speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) diff --git a/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg index 45ec96e0898..fe36a86948d 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg @@ -15,7 +15,7 @@ weight = -4 brim_width = 7 layer_height = 0.4 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_mode = normal +prime_tower_enable = True retraction_combing = all speed_infill = =math.ceil(speed_print * 33 / 45) speed_print = 45 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg index ee92c6add79..2bba762e2df 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg @@ -15,7 +15,7 @@ weight = -3 brim_width = 7 layer_height = 0.3 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_mode = normal +prime_tower_enable = True retraction_combing = all speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) diff --git a/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg index 84a9b9a5fba..57a830402a6 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg @@ -17,7 +17,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = normal +prime_tower_enable = True speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg index ae59471ff3d..40f710327f1 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg @@ -18,7 +18,7 @@ layer_height = 0.4 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 15 -prime_tower_mode = normal +prime_tower_enable = True speed_infill = =math.ceil(speed_print * 35 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg index 2a4c093dca1..702c64bb78a 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg @@ -18,7 +18,7 @@ layer_height = 0.3 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = normal +prime_tower_enable = True speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg index c9e31486c0a..145389fbe4e 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg @@ -16,9 +16,9 @@ brim_width = 25 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' material_print_temperature = =default_material_print_temperature + 11 multiple_mesh_overlap = 0.2 +prime_tower_enable = True prime_tower_flow = 100 prime_tower_min_volume = 10 -prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg index e821581360c..68d54bd406b 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg @@ -16,9 +16,9 @@ brim_width = 25 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' material_print_temperature = =default_material_print_temperature + 15 multiple_mesh_overlap = 0.2 +prime_tower_enable = True prime_tower_flow = 100 prime_tower_min_volume = 20 -prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg index a5817651d80..2aa79cad795 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg @@ -17,9 +17,9 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' layer_height = 0.3 material_print_temperature = =default_material_print_temperature + 13 multiple_mesh_overlap = 0.2 +prime_tower_enable = True prime_tower_flow = 100 prime_tower_min_volume = 15 -prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg index 5e0816ef9aa..a9b7a929180 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg @@ -17,7 +17,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = none +prime_tower_enable = False speed_print = 45 support_angle = 70 top_bottom_thickness = =layer_height * 6 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg index 36e25d258a3..16e17c500ef 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg @@ -17,7 +17,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 15 -prime_tower_mode = none +prime_tower_enable = False speed_infill = =math.ceil(speed_print * 30 / 30) speed_print = 30 speed_topbottom = =math.ceil(speed_print * 20 / 30) diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg index ffbc413b6ea..96dec4f1c5c 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg @@ -17,7 +17,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 15 -prime_tower_mode = none +prime_tower_enable = False speed_infill = =math.ceil(speed_print * 30 / 35) speed_topbottom = =math.ceil(speed_print * 20 / 35) speed_wall = =math.ceil(speed_print * 25/ 35) diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg index d8f7812d75e..859eb3b33a0 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg @@ -23,8 +23,8 @@ material_flow = 105 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 4 multiple_mesh_overlap = 0.2 +prime_tower_enable = True prime_tower_flow = 100 -prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg index a689035132d..61ace7da80b 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg @@ -23,8 +23,8 @@ material_final_print_temperature = =material_print_temperature - 10 material_flow = 105 material_initial_print_temperature = =material_print_temperature - 10 multiple_mesh_overlap = 0.2 +prime_tower_enable = True prime_tower_flow = 100 -prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg index f4b61cac5d5..e45b8f2d1d5 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg @@ -24,8 +24,8 @@ material_flow = 105 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 2 multiple_mesh_overlap = 0.2 +prime_tower_enable = True prime_tower_flow = 100 -prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg index 64ad8ff7f3b..eab1a39931e 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg @@ -15,7 +15,7 @@ weight = -2 brim_replaces_support = False cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) material_print_temperature = =default_material_print_temperature + 5 -prime_tower_mode = none +prime_tower_enable = False retraction_count_max = 5 skin_overlap = 20 skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width)) diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg index 2cdc81a5d94..ad1e26c7dae 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg @@ -14,7 +14,7 @@ weight = -1 [values] brim_replaces_support = False cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -prime_tower_mode = none +prime_tower_enable = False retraction_count_max = 5 skin_overlap = 15 skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width)) diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg index fa2b7026a16..e5ae49b17dd 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg @@ -15,7 +15,7 @@ weight = 1 brim_replaces_support = False cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) material_print_temperature = =default_material_print_temperature - 5 -prime_tower_mode = none +prime_tower_enable = False retraction_count_max = 5 skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width)) support_infill_sparse_thickness = =3*layer_height diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg index d16740c8efd..38334b43587 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg @@ -15,7 +15,7 @@ weight = 0 brim_replaces_support = False cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) material_print_temperature = =default_material_print_temperature - 5 -prime_tower_mode = none +prime_tower_enable = False retraction_count_max = 5 skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width)) support_infill_sparse_thickness = =2*layer_height diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg index acad5a484b3..369cbcd5630 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg @@ -20,7 +20,7 @@ machine_min_cool_heat_time_window = 15 material_print_temperature = =default_material_print_temperature - 10 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_mode = normal +prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg index 262e4f4b549..6485844da80 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg @@ -21,7 +21,7 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 2 multiple_mesh_overlap = 0 -prime_tower_mode = none +prime_tower_enable = False prime_tower_size = 16 prime_tower_wipe_enabled = True retraction_count_max = 15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg index ad257249040..6877d9b6a22 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg @@ -16,7 +16,7 @@ machine_nozzle_cool_down_speed = 0.8 machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 20 material_print_temperature = =default_material_print_temperature - 10 -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.15 speed_infill = =math.ceil(speed_print * 40 / 50) speed_print = 50 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg index c0890c9740c..de1905e4101 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg @@ -15,7 +15,7 @@ weight = -1 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 20 -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.15 speed_infill = =math.ceil(speed_print * 45 / 60) speed_print = 60 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg index fbe263ab43e..ae5c9bcbc11 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg @@ -16,7 +16,7 @@ machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 20 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.15 speed_infill = =math.ceil(speed_print * 40 / 55) speed_print = 55 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg index 059d39f6c18..701a2db84d3 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg @@ -16,7 +16,7 @@ machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 20 material_print_temperature = =default_material_print_temperature + 5 -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.15 speed_infill = =math.ceil(speed_print * 50 / 60) speed_print = 60 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg index cb741764d6a..684336d1eb4 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg @@ -16,7 +16,7 @@ weight = -3 machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 20 material_print_temperature = =default_material_print_temperature + 7 -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.15 support_bottom_distance = =support_z_distance support_interface_enable = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg index 3af6b9a69d2..a7a17e5f693 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg @@ -15,7 +15,7 @@ weight = -1 brim_replaces_support = False machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_mode = ='normal' if (min(extruderValues('material_surface_energy')) < 100) else 'none' +prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 speed_print = 80 speed_topbottom = =math.ceil(speed_print * 30 / 80) speed_wall = =math.ceil(speed_print * 40 / 80) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg index 1526b46ba52..a3b8129ed70 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg @@ -15,7 +15,7 @@ weight = 0 brim_replaces_support = False machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_mode = ='normal' if (min(extruderValues('material_surface_energy')) < 100) else 'none' +prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 support_angle = 45 support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height support_infill_sparse_thickness = =2 * layer_height diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg index 999e2ce9c95..5c051039d0b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg @@ -16,7 +16,7 @@ brim_replaces_support = False machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 -prime_tower_mode = ='normal' if (min(extruderValues('material_surface_energy')) < 100) else 'none' +prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 speed_topbottom = =math.ceil(speed_print * 35 / 70) speed_wall = =math.ceil(speed_print * 50 / 70) speed_wall_0 = =math.ceil(speed_wall * 35 / 50) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg index 42b98f5be7b..61073067fc8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg @@ -17,7 +17,7 @@ brim_replaces_support = False machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 -prime_tower_mode = ='normal' if (min(extruderValues('material_surface_energy')) < 100) else 'none' +prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 speed_topbottom = =math.ceil(speed_print * 35 / 70) speed_wall = =math.ceil(speed_print * 50 / 70) speed_wall_0 = =math.ceil(speed_wall * 35 / 50) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg index 864421ed78b..880461bccf2 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg @@ -18,7 +18,7 @@ machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 8 multiple_mesh_overlap = 0 -prime_tower_mode = normal +prime_tower_enable = True prime_tower_wipe_enabled = True retraction_hop = 0.2 retraction_hop_enabled = False diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg index 2591f15abb0..5dd5e61f828 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg @@ -15,7 +15,7 @@ weight = -1 infill_wipe_dist = 0 machine_min_cool_heat_time_window = 15 multiple_mesh_overlap = 0 -prime_tower_mode = normal +prime_tower_enable = True prime_tower_wipe_enabled = True retraction_hop = 0.2 retraction_hop_enabled = False diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg index ab0354f9ea7..7617b35b3b0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg @@ -18,7 +18,7 @@ machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 5 multiple_mesh_overlap = 0 -prime_tower_mode = normal +prime_tower_enable = True prime_tower_wipe_enabled = True retraction_hop = 0.2 retraction_hop_enabled = False diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg index 7ac2d069982..7ed1fcd2980 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg @@ -15,7 +15,7 @@ weight = -2 infill_wipe_dist = 0 machine_min_cool_heat_time_window = 15 multiple_mesh_overlap = 0 -prime_tower_mode = normal +prime_tower_enable = True prime_tower_wipe_enabled = True retraction_hop = 0.2 retraction_hop_enabled = False diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg index 9968edc74c7..c9eebee8a0c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg @@ -21,7 +21,7 @@ machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 20 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_mode = normal +prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg index 0138115976a..bcd04f4b24c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg @@ -20,7 +20,7 @@ machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_mode = normal +prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg index f2a006ce6ca..278e502231a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg @@ -21,7 +21,7 @@ machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 10 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_mode = normal +prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg index 0e72f56e021..1baf43933c0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg @@ -20,7 +20,7 @@ machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_mode = normal +prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg index d313f08887a..4b8f9f433b0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg @@ -15,7 +15,7 @@ weight = 1 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 retraction_prime_speed = =retraction_speed speed_print = 50 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg index 73105ed5121..5581284de49 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg @@ -14,7 +14,7 @@ weight = -1 [values] machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 retraction_prime_speed = =retraction_speed speed_print = 70 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg index b6eac28eb9d..30af138465b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg @@ -14,7 +14,7 @@ weight = 0 [values] machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 retraction_prime_speed = =retraction_speed support_bottom_distance = =support_z_distance diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg index 7ee4df3cacd..e5dc960d98c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg @@ -18,7 +18,7 @@ infill_sparse_density = 15 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 retraction_prime_speed = =retraction_speed speed_topbottom = =math.ceil(speed_print * 40 / 70) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg index 80a564e05a0..719adc820b4 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg @@ -22,7 +22,7 @@ infill_sparse_density = 15 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 retraction_prime_speed = =retraction_speed speed_print = 50 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg index 775e8420dff..3b106196f27 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg @@ -21,7 +21,7 @@ machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 multiple_mesh_overlap = 0 -prime_tower_mode = none +prime_tower_enable = False prime_tower_size = 16 prime_tower_wipe_enabled = True retraction_count_max = 15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg index f8448e868b9..455338a9016 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg @@ -22,7 +22,7 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 2 multiple_mesh_overlap = 0 -prime_tower_mode = none +prime_tower_enable = False prime_tower_size = 16 prime_tower_wipe_enabled = True retraction_count_max = 15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg index e561a640757..b1f5e1f19a9 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg @@ -22,7 +22,7 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature + 8 multiple_mesh_overlap = 0 -prime_tower_mode = none +prime_tower_enable = False prime_tower_size = 16 prime_tower_wipe_enabled = True retraction_count_max = 15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg index 26cce4fcade..b5253cb0779 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg @@ -15,7 +15,7 @@ weight = 1 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_mode = none +prime_tower_enable = False retraction_prime_speed = =retraction_speed speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg index 86d98cfd6c7..69cf85f3497 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg @@ -14,7 +14,7 @@ weight = -1 [values] machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_mode = none +prime_tower_enable = False retraction_prime_speed = =retraction_speed speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg index 2715630b07e..397992c551e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg @@ -15,7 +15,7 @@ weight = 0 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_mode = none +prime_tower_enable = False retraction_prime_speed = =retraction_speed speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg index 8446a7957f9..773da6d3acf 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg @@ -14,7 +14,7 @@ weight = -2 [values] machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_mode = none +prime_tower_enable = False retraction_prime_speed = =retraction_speed speed_print = 50 speed_roofing = =math.ceil(speed_wall * 20 / 24) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg index 8e4d4596afc..10e43b5699c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg @@ -22,7 +22,7 @@ infill_sparse_density = 15 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 retraction_prime_speed = =retraction_speed speed_print = 50 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg index 95f9c846090..de5e0faf2e1 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg @@ -42,7 +42,7 @@ machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.8 material_max_flowrate = 20 optimize_wall_printing_order = False -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.15 retraction_amount = 6.5 retraction_prime_speed = 15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg index 447b6dfee5b..c39c6d42c81 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg @@ -43,7 +43,7 @@ material_extrusion_cool_down_speed = 0.8 material_max_flowrate = 20 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.15 retraction_amount = 6.5 retraction_prime_speed = 15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg index 49a6120c8f9..08bb2befdf4 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg @@ -42,7 +42,7 @@ machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.8 material_max_flowrate = 20 optimize_wall_printing_order = False -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.15 retraction_amount = 6.5 retraction_prime_speed = 15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg index 2f595d38d09..89b8386d2f9 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg @@ -45,7 +45,7 @@ material_max_flowrate = 20 material_print_temperature = =default_material_print_temperature + 5 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.15 retraction_amount = 6.5 retraction_prime_speed = 15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg index 5aa2ff791b4..cc0da1a2531 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg @@ -44,7 +44,7 @@ material_max_flowrate = 20 material_print_temperature = =default_material_print_temperature + 7 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.15 retraction_amount = 6.5 retraction_prime_speed = 15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg index 170e2199be2..d4431382ddb 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg @@ -43,7 +43,7 @@ material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 20 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_mode = none +prime_tower_enable = False retraction_amount = 8 retraction_prime_speed = 15 retraction_speed = 45 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg index aae7ff42a23..c304f13e349 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg @@ -45,7 +45,7 @@ material_max_flowrate = 20 material_print_temperature = =default_material_print_temperature + 5 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_mode = none +prime_tower_enable = False retraction_amount = 8 retraction_prime_speed = 15 retraction_speed = 45 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg index 96c3513a976..854b868259c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg @@ -44,7 +44,7 @@ material_max_flowrate = 20 material_print_temperature = =default_material_print_temperature + 5 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_mode = none +prime_tower_enable = False retraction_amount = 8 retraction_prime_speed = 15 retraction_speed = 45 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg index 3a87267e373..9678ba95235 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg @@ -42,7 +42,7 @@ machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 12 optimize_wall_printing_order = False -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg index 17dd1613464..c53596bc9f0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg @@ -43,7 +43,7 @@ material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 12 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg index 70b9a95dd4b..58a8a1ebb09 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg @@ -42,7 +42,7 @@ machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 12 optimize_wall_printing_order = False -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg index 564b251c4b6..2870c09199b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg @@ -45,7 +45,7 @@ material_max_flowrate = 12 material_print_temperature = =default_material_print_temperature + 5 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg index 5d27f8e05e6..6f450463b9a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg @@ -44,7 +44,7 @@ material_max_flowrate = 12 material_print_temperature = =default_material_print_temperature + 10 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg index b1ac45f1b05..e193aa51c33 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg @@ -42,7 +42,7 @@ machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 14 optimize_wall_printing_order = False -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg index 6201f53938e..622f2030e46 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg @@ -43,7 +43,7 @@ material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 14 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg index 4c9e939ccc7..09f02aa3751 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg @@ -42,7 +42,7 @@ machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 14 optimize_wall_printing_order = False -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg index dc07130b6c2..3b82ebfac7b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg @@ -44,7 +44,7 @@ material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 14 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg index cbaf3cd89a2..2fd9e5ef2c5 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg @@ -44,7 +44,7 @@ material_max_flowrate = 14 material_print_temperature = =default_material_print_temperature + 5 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg index ff96a0df68a..c2d04c9bade 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg @@ -17,7 +17,7 @@ brim_width = 14 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 20 -prime_tower_mode = normal +prime_tower_enable = True retraction_hop = 0.1 retraction_hop_enabled = False speed_print = 50 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg index a3d9b394b9b..caf16e5f940 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg @@ -17,7 +17,7 @@ brim_width = 14 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 17 -prime_tower_mode = normal +prime_tower_enable = True retraction_hop = 0.1 retraction_hop_enabled = False speed_print = 50 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg index dc46682c392..1cd46fab48d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg @@ -17,7 +17,7 @@ brim_width = 14 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 15 -prime_tower_mode = normal +prime_tower_enable = True retraction_hop = 0.1 retraction_hop_enabled = False speed_infill = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg index f2ea43800e4..f9ee324f336 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg @@ -14,7 +14,7 @@ weight = -2 [values] brim_width = 15 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = normal +prime_tower_enable = True speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg index 58193faaaf2..f883fe19987 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg @@ -14,7 +14,7 @@ weight = -3 [values] brim_width = 15 material_print_temperature = =default_material_print_temperature + 12 -prime_tower_mode = normal +prime_tower_enable = True speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg index 7e58326c02d..a5c059c5e6f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg @@ -14,7 +14,7 @@ weight = -4 [values] brim_width = 15 material_print_temperature = =default_material_print_temperature + 15 -prime_tower_mode = normal +prime_tower_enable = True speed_infill = =math.ceil(speed_print * 33 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 30 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg index 5b33c9854fe..e7d656dcc4f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg @@ -17,7 +17,7 @@ machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 5 ooze_shield_angle = 40 -prime_tower_mode = normal +prime_tower_enable = True raft_airgap = 0.45 support_angle = 70 switch_extruder_prime_speed = 30 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg index 6ac1edf4e92..08c1f4933b9 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg @@ -17,7 +17,7 @@ machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 5 ooze_shield_angle = 40 -prime_tower_mode = normal +prime_tower_enable = True raft_airgap = 0.45 support_angle = 70 switch_extruder_prime_speed = 30 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg index 536a00cc009..c4d2894885d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg @@ -17,7 +17,7 @@ machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 5 ooze_shield_angle = 40 -prime_tower_mode = normal +prime_tower_enable = True raft_airgap = 0.45 support_angle = 70 switch_extruder_prime_speed = 30 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg index 539a8c5a7ce..d901c6c0dd7 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg @@ -15,7 +15,7 @@ weight = -2 brim_width = 7 cool_fan_speed = 20 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_mode = normal +prime_tower_enable = True speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg index bf923543102..02798823463 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg @@ -15,7 +15,7 @@ weight = -3 brim_width = 7 cool_fan_speed = 20 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_mode = normal +prime_tower_enable = True speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg index 138369ef63c..373d6a0b789 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg @@ -15,7 +15,7 @@ weight = -4 brim_width = 7 cool_fan_speed = 20 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_mode = normal +prime_tower_enable = True speed_infill = =math.ceil(speed_print * 33 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 30 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg index a3935c55f7e..1feae070fcb 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg @@ -16,7 +16,7 @@ gradual_infill_step_height = =3 * layer_height machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = normal +prime_tower_enable = True speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg index 9f7162abe09..f93f0848db1 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg @@ -16,7 +16,7 @@ gradual_infill_step_height = =3 * layer_height machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = normal +prime_tower_enable = True speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg index 997095fcbf8..67f9cdfcf02 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg @@ -16,7 +16,7 @@ gradual_infill_step_height = =3 * layer_height machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 15 -prime_tower_mode = normal +prime_tower_enable = True speed_infill = =math.ceil(speed_print * 35 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg index 2ec19359cf5..7619fcf43da 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg @@ -18,9 +18,9 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature + 11 multiple_mesh_overlap = 0.2 +prime_tower_enable = True prime_tower_flow = 100 prime_tower_min_volume = 10 -prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg index 6726d34585e..b157ed198c6 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg @@ -18,9 +18,9 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature + 13 multiple_mesh_overlap = 0.2 +prime_tower_enable = True prime_tower_flow = 100 prime_tower_min_volume = 15 -prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg index 0bf76412b20..550a26c7f86 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg @@ -18,9 +18,9 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature + 15 multiple_mesh_overlap = 0.2 +prime_tower_enable = True prime_tower_flow = 100 prime_tower_min_volume = 20 -prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg index a59a80d04a3..1f706632ce9 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg @@ -17,7 +17,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = none +prime_tower_enable = False speed_print = 45 speed_topbottom = =round(speed_print * 35 / 45) speed_wall = =round(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg index c8407226819..b1437e9160e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg @@ -17,7 +17,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 15 -prime_tower_mode = none +prime_tower_enable = False speed_infill = =math.ceil(speed_print * 30 / 35) speed_print = 35 speed_topbottom = =math.ceil(speed_print * 20 / 35) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg index 18655899918..7c3c4ff6e91 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg @@ -17,7 +17,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 15 -prime_tower_mode = none +prime_tower_enable = False speed_infill = =math.ceil(speed_print * 30 / 30) speed_print = 30 speed_topbottom = =math.ceil(speed_print * 20 / 30) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg index 437fc03997b..5d6ce58f7c9 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg @@ -21,8 +21,8 @@ material_flow = 105 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 4 multiple_mesh_overlap = 0.2 +prime_tower_enable = True prime_tower_flow = 100 -prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg index 05401c0d34d..1b69ada75dc 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg @@ -22,8 +22,8 @@ material_flow = 105 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 2 multiple_mesh_overlap = 0.2 +prime_tower_enable = True prime_tower_flow = 100 -prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg index a77cde65e6b..d678d7e178e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg @@ -21,8 +21,8 @@ material_final_print_temperature = =material_print_temperature - 10 material_flow = 105 material_initial_print_temperature = =material_print_temperature - 10 multiple_mesh_overlap = 0.2 +prime_tower_enable = True prime_tower_flow = 100 -prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg index 79f23f9c2c8..9d7b4455d6f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg @@ -47,7 +47,7 @@ material_max_flowrate = 22 material_print_temperature = =default_material_print_temperature + 5 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_mode = normal +prime_tower_enable = True raft_airgap = 0.15 retraction_amount = 4 retraction_prime_speed = 15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg index a187dc31798..e2a5c54c66d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg @@ -44,7 +44,7 @@ material_flow = 93 material_max_flowrate = 22 material_print_temperature = =default_material_print_temperature + 7 optimize_wall_printing_order = False -prime_tower_mode = normal +prime_tower_enable = True raft_airgap = 0.15 retraction_amount = 4 retraction_prime_speed = 15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg index cc2c57bcff5..26d3dc7fb8f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg @@ -44,7 +44,7 @@ material_flow = 93 material_max_flowrate = 22 material_print_temperature = =default_material_print_temperature + 10 optimize_wall_printing_order = False -prime_tower_mode = normal +prime_tower_enable = True raft_airgap = 0.15 retraction_amount = 4 retraction_prime_speed = 15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg index 9649f71775e..b1dae1cb7a9 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg @@ -47,7 +47,7 @@ material_max_flowrate = 23 material_print_temperature = =default_material_print_temperature - 5 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_mode = normal +prime_tower_enable = True retraction_amount = 3.5 retraction_prime_speed = 15 retraction_speed = 45 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg index a0d9dbdee79..4d4ffa00591 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg @@ -46,7 +46,7 @@ material_flow = 93 material_max_flowrate = 23 material_print_temperature = =default_material_print_temperature - 5 optimize_wall_printing_order = False -prime_tower_mode = normal +prime_tower_enable = True retraction_amount = 3.5 retraction_prime_speed = 15 retraction_speed = 45 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg index 840008f60d5..5cc6a43e132 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg @@ -46,7 +46,7 @@ material_flow = 93 material_max_flowrate = 23 material_print_temperature = =default_material_print_temperature - 5 optimize_wall_printing_order = False -prime_tower_mode = normal +prime_tower_enable = True retraction_amount = 3.5 retraction_prime_speed = 15 retraction_speed = 45 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg index c0719e38b3b..59f8409483d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg @@ -47,7 +47,7 @@ material_max_flowrate = 15 material_print_temperature = =default_material_print_temperature + 10 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_mode = normal +prime_tower_enable = True raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg index 8f045a1238d..a4cdd898f1f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg @@ -44,7 +44,7 @@ material_flow = 93 material_max_flowrate = 15 material_print_temperature = =default_material_print_temperature + 10 optimize_wall_printing_order = False -prime_tower_mode = normal +prime_tower_enable = True raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg index b1e8b913fdd..79dc105f863 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg @@ -44,7 +44,7 @@ material_flow = 93 material_max_flowrate = 15 material_print_temperature = =default_material_print_temperature + 15 optimize_wall_printing_order = False -prime_tower_mode = normal +prime_tower_enable = True raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg index 176cfb2cb2a..a76864a1a3c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg @@ -47,7 +47,7 @@ material_max_flowrate = 17 material_print_temperature = =default_material_print_temperature + 10 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_mode = normal +prime_tower_enable = True raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg index 404435e21b4..d3642327268 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg @@ -44,7 +44,7 @@ material_flow = 93 material_max_flowrate = 17 material_print_temperature = =default_material_print_temperature + 15 optimize_wall_printing_order = False -prime_tower_mode = normal +prime_tower_enable = True raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg index 76724ad9581..02a71fa9b71 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg @@ -44,7 +44,7 @@ material_flow = 93 material_max_flowrate = 17 material_print_temperature = =default_material_print_temperature + 15 optimize_wall_printing_order = False -prime_tower_mode = normal +prime_tower_enable = True raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg index b69ddd1011c..12b815d5ab9 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg @@ -15,7 +15,7 @@ weight = 1 brim_replaces_support = False cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) material_print_temperature = =default_material_print_temperature - 5 -prime_tower_mode = none +prime_tower_enable = False retraction_count_max = 5 skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_infill_sparse_thickness = =3 * layer_height diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg index 67a101d2bc4..5390b3ecb7f 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg @@ -14,7 +14,7 @@ weight = -1 [values] brim_replaces_support = False cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -prime_tower_mode = none +prime_tower_enable = False retraction_count_max = 5 skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_infill_sparse_thickness = =2 * layer_height diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg index 66c0486b0f8..b15b5958a77 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg @@ -15,7 +15,7 @@ weight = 0 brim_replaces_support = False cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) material_print_temperature = =default_material_print_temperature - 5 -prime_tower_mode = none +prime_tower_enable = False retraction_count_max = 5 skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_infill_sparse_thickness = =2 * layer_height diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg index 6e36d9578fc..e273e85eb50 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg @@ -15,7 +15,7 @@ weight = -2 brim_replaces_support = False cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) material_print_temperature = =default_material_print_temperature + 5 -prime_tower_mode = none +prime_tower_enable = False retraction_count_max = 5 skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_interface_enable = True diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg index 9b81b09599d..ea2902cd6c8 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg @@ -18,7 +18,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = normal +prime_tower_enable = True speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg index e596c6fcd08..bbbad9be1fe 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg @@ -18,7 +18,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = normal +prime_tower_enable = True speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg index 5c9671c99e0..300e2ebaedb 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg @@ -18,7 +18,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = normal +prime_tower_enable = True speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg index 872368142ca..84040ede4ea 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg @@ -18,7 +18,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = normal +prime_tower_enable = True speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg index 2b76474e5fc..402ae15ebae 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg @@ -18,7 +18,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = normal +prime_tower_enable = True speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg index dc841082982..0c9154a2334 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg @@ -18,7 +18,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = normal +prime_tower_enable = True speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg index 3706d834246..e7b72d6cd09 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg @@ -18,7 +18,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = normal +prime_tower_enable = True speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg index 6e03ebd7e56..38c857de5e9 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg @@ -18,7 +18,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = normal +prime_tower_enable = True speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg index dc6dc3906d4..eef6e66a5e6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg @@ -20,7 +20,7 @@ machine_min_cool_heat_time_window = 15 material_print_temperature = =default_material_print_temperature - 10 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_mode = normal +prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg index 69a5af3102a..56689c4bfa8 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg @@ -21,7 +21,7 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 2 multiple_mesh_overlap = 0 -prime_tower_mode = none +prime_tower_enable = False prime_tower_size = 16 prime_tower_wipe_enabled = True retraction_count_max = 15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg index f96f28e71f5..573b758705b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg @@ -16,7 +16,7 @@ machine_nozzle_cool_down_speed = 0.8 machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 20 material_print_temperature = =default_material_print_temperature - 10 -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.15 speed_infill = =math.ceil(speed_print * 40 / 50) speed_print = 50 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg index 9cc0a12b5a0..926ef499223 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg @@ -15,7 +15,7 @@ weight = -1 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 20 -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.15 speed_infill = =math.ceil(speed_print * 45 / 60) speed_print = 60 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg index 651c780d321..598e83d9222 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg @@ -16,7 +16,7 @@ machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 20 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.15 speed_infill = =math.ceil(speed_print * 40 / 55) speed_print = 55 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg index 28bd4cddfff..5f5e9e2fd3c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg @@ -16,7 +16,7 @@ machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 20 material_print_temperature = =default_material_print_temperature + 5 -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.15 speed_infill = =math.ceil(speed_print * 50 / 60) speed_print = 60 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg index 49e70ecb1c8..8656a280676 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg @@ -16,7 +16,7 @@ weight = -3 machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 20 material_print_temperature = =default_material_print_temperature + 7 -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.15 support_bottom_distance = =support_z_distance support_interface_enable = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg index b2dd10f321b..a4381e0e3b7 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg @@ -15,7 +15,7 @@ weight = -1 brim_replaces_support = False machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_mode = ='normal' if (min(extruderValues('material_surface_energy')) < 100) else 'none' +prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 speed_print = 80 speed_topbottom = =math.ceil(speed_print * 30 / 80) speed_wall = =math.ceil(speed_print * 40 / 80) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg index ba704aa34b9..5f4c480fa4b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg @@ -15,7 +15,7 @@ weight = 0 brim_replaces_support = False machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_mode = ='normal' if (min(extruderValues('material_surface_energy')) < 100) else 'none' +prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 support_angle = 45 support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height support_infill_sparse_thickness = =2 * layer_height diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg index ccccb2d3e83..9e3c0153b17 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg @@ -16,7 +16,7 @@ brim_replaces_support = False machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 -prime_tower_mode = ='normal' if (min(extruderValues('material_surface_energy')) < 100) else 'none' +prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 speed_topbottom = =math.ceil(speed_print * 35 / 70) speed_wall = =math.ceil(speed_print * 50 / 70) speed_wall_0 = =math.ceil(speed_wall * 35 / 50) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg index cc6e8f94535..bd4e13ebaf6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg @@ -17,7 +17,7 @@ brim_replaces_support = False machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 -prime_tower_mode = ='normal' if (min(extruderValues('material_surface_energy')) < 100) else 'none' +prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 speed_topbottom = =math.ceil(speed_print * 35 / 70) speed_wall = =math.ceil(speed_print * 50 / 70) speed_wall_0 = =math.ceil(speed_wall * 35 / 50) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg index 0b11bc463b6..a77d1b42335 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg @@ -18,7 +18,7 @@ machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 8 multiple_mesh_overlap = 0 -prime_tower_mode = normal +prime_tower_enable = True prime_tower_wipe_enabled = True retraction_hop = 0.2 retraction_hop_enabled = False diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg index 476cdad5ce2..805fb08ead6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg @@ -15,7 +15,7 @@ weight = -1 infill_wipe_dist = 0 machine_min_cool_heat_time_window = 15 multiple_mesh_overlap = 0 -prime_tower_mode = normal +prime_tower_enable = True prime_tower_wipe_enabled = True retraction_hop = 0.2 retraction_hop_enabled = False diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg index 6a18d6a8590..77f775d6723 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg @@ -18,7 +18,7 @@ machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 5 multiple_mesh_overlap = 0 -prime_tower_mode = normal +prime_tower_enable = True prime_tower_wipe_enabled = True retraction_hop = 0.2 retraction_hop_enabled = False diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg index dcd01b10841..877c48c42d9 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg @@ -15,7 +15,7 @@ weight = -2 infill_wipe_dist = 0 machine_min_cool_heat_time_window = 15 multiple_mesh_overlap = 0 -prime_tower_mode = normal +prime_tower_enable = True prime_tower_wipe_enabled = True retraction_hop = 0.2 retraction_hop_enabled = False diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg index c2d943bb775..c58107dcf9e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg @@ -21,7 +21,7 @@ machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 20 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_mode = normal +prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg index 30b18965281..b210b894e55 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg @@ -20,7 +20,7 @@ machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_mode = normal +prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg index aa58bd07b30..aa17d35a978 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg @@ -21,7 +21,7 @@ machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 10 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_mode = normal +prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg index e74d6a6532c..616443b1292 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg @@ -20,7 +20,7 @@ machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_tower_mode = normal +prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg index e724f809d58..f34549bc781 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg @@ -15,7 +15,7 @@ weight = 1 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 retraction_prime_speed = =retraction_speed speed_print = 50 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg index 2cce79480c1..4a9e914b99d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg @@ -14,7 +14,7 @@ weight = -1 [values] machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 retraction_prime_speed = =retraction_speed speed_print = 70 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg index 5a730aba3a8..dc73f13bb55 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg @@ -14,7 +14,7 @@ weight = 0 [values] machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 retraction_prime_speed = =retraction_speed support_bottom_distance = =support_z_distance diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg index a1bde9d68db..ead512bb507 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg @@ -18,7 +18,7 @@ infill_sparse_density = 15 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 retraction_prime_speed = =retraction_speed speed_topbottom = =math.ceil(speed_print * 40 / 70) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg index e0070ff73ba..c6641e7a08e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg @@ -22,7 +22,7 @@ infill_sparse_density = 15 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 retraction_prime_speed = =retraction_speed speed_print = 50 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg index 0f06f432d45..8eb0d257d6f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg @@ -21,7 +21,7 @@ machine_nozzle_heat_up_speed = 1.5 material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 multiple_mesh_overlap = 0 -prime_tower_mode = none +prime_tower_enable = False prime_tower_size = 16 prime_tower_wipe_enabled = True retraction_count_max = 15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg index 68aeea4c251..bd4dd317bb6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg @@ -22,7 +22,7 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 2 multiple_mesh_overlap = 0 -prime_tower_mode = none +prime_tower_enable = False prime_tower_size = 16 prime_tower_wipe_enabled = True retraction_count_max = 15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg index 2f7a70bfa07..1e5ea9efb62 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg @@ -22,7 +22,7 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature + 8 multiple_mesh_overlap = 0 -prime_tower_mode = none +prime_tower_enable = False prime_tower_size = 16 prime_tower_wipe_enabled = True retraction_count_max = 15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg index 2bf08e3489b..cf7a8335b86 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg @@ -15,7 +15,7 @@ weight = 1 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_mode = none +prime_tower_enable = False retraction_prime_speed = =retraction_speed speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg index 3b44a9eb373..a7dcb611285 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg @@ -14,7 +14,7 @@ weight = -1 [values] machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_mode = none +prime_tower_enable = False retraction_prime_speed = =retraction_speed speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg index 3167f395637..f053b33478d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg @@ -15,7 +15,7 @@ weight = 0 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_mode = none +prime_tower_enable = False retraction_prime_speed = =retraction_speed speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg index 238468f784c..4e98b6005ae 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg @@ -14,7 +14,7 @@ weight = -2 [values] machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -prime_tower_mode = none +prime_tower_enable = False retraction_prime_speed = =retraction_speed speed_print = 50 speed_roofing = =math.ceil(speed_wall * 20 / 24) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg index 208277dc9b7..5c6ed285489 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg @@ -22,7 +22,7 @@ infill_sparse_density = 15 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 retraction_prime_speed = =retraction_speed speed_print = 50 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg index e7d58a1001a..c0b4799ca95 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg @@ -42,7 +42,7 @@ machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.8 material_max_flowrate = 20 optimize_wall_printing_order = False -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.15 retraction_amount = 6.5 retraction_prime_speed = 15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg index 20e10b3e78d..d430f867d85 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg @@ -43,7 +43,7 @@ material_extrusion_cool_down_speed = 0.8 material_max_flowrate = 20 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.15 retraction_amount = 6.5 retraction_prime_speed = 15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg index fe37499b763..b2c25e26c70 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg @@ -42,7 +42,7 @@ machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.8 material_max_flowrate = 20 optimize_wall_printing_order = False -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.15 retraction_amount = 6.5 retraction_prime_speed = 15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg index 5f85f0b6d1f..15b87d8229c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg @@ -45,7 +45,7 @@ material_max_flowrate = 20 material_print_temperature = =default_material_print_temperature + 5 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.15 retraction_amount = 6.5 retraction_prime_speed = 15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg index 7d9bd13d077..9a100248130 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg @@ -44,7 +44,7 @@ material_max_flowrate = 20 material_print_temperature = =default_material_print_temperature + 7 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.15 retraction_amount = 6.5 retraction_prime_speed = 15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg index 4673f7dddcf..5d14f014b94 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg @@ -43,7 +43,7 @@ material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 20 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_mode = none +prime_tower_enable = False retraction_amount = 8 retraction_prime_speed = 15 retraction_speed = 45 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg index 7ffa9aa60ab..4e1b0f535f5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg @@ -45,7 +45,7 @@ material_max_flowrate = 20 material_print_temperature = =default_material_print_temperature + 5 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_mode = none +prime_tower_enable = False retraction_amount = 8 retraction_prime_speed = 15 retraction_speed = 45 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg index 5cf1740ad17..ab66eed0ab2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg @@ -44,7 +44,7 @@ material_max_flowrate = 20 material_print_temperature = =default_material_print_temperature + 5 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_mode = none +prime_tower_enable = False retraction_amount = 8 retraction_prime_speed = 15 retraction_speed = 45 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg index cc05029e749..2b192e8c1c9 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg @@ -42,7 +42,7 @@ machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 12 optimize_wall_printing_order = False -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg index a7bebed4727..11301a29907 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg @@ -43,7 +43,7 @@ material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 12 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg index 4ca8ccaa86f..28cf131812b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg @@ -45,7 +45,7 @@ material_max_flowrate = 12 material_print_temperature = =default_material_print_temperature + 5 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg index c1ea2d98dda..a01b433eb2b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg @@ -44,7 +44,7 @@ material_max_flowrate = 12 material_print_temperature = =default_material_print_temperature + 10 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg index 597bf3b3026..f368ac13d87 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg @@ -42,7 +42,7 @@ machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 14 optimize_wall_printing_order = False -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg index 81f4e207be8..b699ebc9f33 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg @@ -43,7 +43,7 @@ material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 14 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg index a38a73679d3..d0ee391c657 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg @@ -42,7 +42,7 @@ machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 14 optimize_wall_printing_order = False -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg index f045d5425d0..9869a18bb34 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg @@ -44,7 +44,7 @@ material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 14 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg index 79e81610472..fc8507c42b2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg @@ -44,7 +44,7 @@ material_max_flowrate = 14 material_print_temperature = =default_material_print_temperature + 5 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_mode = none +prime_tower_enable = False raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg index a7877d90e1e..0dd369e4dd3 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg @@ -17,7 +17,7 @@ brim_width = 14 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 20 -prime_tower_mode = normal +prime_tower_enable = True retraction_hop = 0.1 retraction_hop_enabled = False speed_print = 50 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg index 2b5b521f025..e6ce183f4a6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg @@ -17,7 +17,7 @@ brim_width = 14 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 17 -prime_tower_mode = normal +prime_tower_enable = True retraction_hop = 0.1 retraction_hop_enabled = False speed_print = 50 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg index ff9a049f7e8..0c3abc6e3fc 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg @@ -17,7 +17,7 @@ brim_width = 14 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 15 -prime_tower_mode = normal +prime_tower_enable = True retraction_hop = 0.1 retraction_hop_enabled = False speed_infill = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg index a3340f81a85..eb6e07e0806 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg @@ -14,7 +14,7 @@ weight = -2 [values] brim_width = 15 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = normal +prime_tower_enable = True speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg index 7c80d16f247..e7958d98416 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg @@ -14,7 +14,7 @@ weight = -3 [values] brim_width = 15 material_print_temperature = =default_material_print_temperature + 12 -prime_tower_mode = normal +prime_tower_enable = True speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg index 18ec3e9dbe0..0683b2959bd 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg @@ -14,7 +14,7 @@ weight = -4 [values] brim_width = 15 material_print_temperature = =default_material_print_temperature + 15 -prime_tower_mode = normal +prime_tower_enable = True speed_infill = =math.ceil(speed_print * 33 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 30 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg index 798db0dfc8f..5a774e07508 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg @@ -17,7 +17,7 @@ machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 5 ooze_shield_angle = 40 -prime_tower_mode = normal +prime_tower_enable = True raft_airgap = 0.45 support_angle = 70 switch_extruder_prime_speed = 30 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg index 86d6130a706..bed4ac46d7f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg @@ -17,7 +17,7 @@ machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 5 ooze_shield_angle = 40 -prime_tower_mode = normal +prime_tower_enable = True raft_airgap = 0.45 support_angle = 70 switch_extruder_prime_speed = 30 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg index 2d9c3ebabe3..a0d58757da8 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg @@ -17,7 +17,7 @@ machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 5 ooze_shield_angle = 40 -prime_tower_mode = normal +prime_tower_enable = True raft_airgap = 0.45 support_angle = 70 switch_extruder_prime_speed = 30 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg index 7f51af7154c..6208ad9bec5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg @@ -15,7 +15,7 @@ weight = -2 brim_width = 7 cool_fan_speed = 20 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_mode = normal +prime_tower_enable = True speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg index 81d08397f37..98b0d3f5f8c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg @@ -15,7 +15,7 @@ weight = -3 brim_width = 7 cool_fan_speed = 20 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_mode = normal +prime_tower_enable = True speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg index 689455183f4..156113b809c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg @@ -15,7 +15,7 @@ weight = -4 brim_width = 7 cool_fan_speed = 20 material_print_temperature = =default_material_print_temperature - 5 -prime_tower_mode = normal +prime_tower_enable = True speed_infill = =math.ceil(speed_print * 33 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 30 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg index d00e5235ba9..10bf06fbb5c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg @@ -16,7 +16,7 @@ gradual_infill_step_height = =3 * layer_height machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = normal +prime_tower_enable = True speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg index a22439011e6..1a63005ced6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg @@ -16,7 +16,7 @@ gradual_infill_step_height = =3 * layer_height machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = normal +prime_tower_enable = True speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg index 7a97620cb4b..5e22cee246e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg @@ -16,7 +16,7 @@ gradual_infill_step_height = =3 * layer_height machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 15 -prime_tower_mode = normal +prime_tower_enable = True speed_infill = =math.ceil(speed_print * 35 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg index 355e3afa786..c338c4b7ff5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg @@ -18,9 +18,9 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature + 11 multiple_mesh_overlap = 0.2 +prime_tower_enable = True prime_tower_flow = 100 prime_tower_min_volume = 10 -prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg index e89b5d717b8..62d9eb235d7 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg @@ -18,9 +18,9 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature + 13 multiple_mesh_overlap = 0.2 +prime_tower_enable = True prime_tower_flow = 100 prime_tower_min_volume = 15 -prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg index 542ba0bb5b6..b2792b6feef 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg @@ -18,9 +18,9 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature + 15 multiple_mesh_overlap = 0.2 +prime_tower_enable = True prime_tower_flow = 100 prime_tower_min_volume = 20 -prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg index 1c5161a635b..26c20268eac 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg @@ -17,7 +17,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = none +prime_tower_enable = False speed_print = 45 speed_topbottom = =round(speed_print * 35 / 45) speed_wall = =round(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg index 0a4c4ad2c7c..cc28dc51505 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg @@ -17,7 +17,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 15 -prime_tower_mode = none +prime_tower_enable = False speed_infill = =math.ceil(speed_print * 30 / 35) speed_print = 35 speed_topbottom = =math.ceil(speed_print * 20 / 35) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg index 2fc8aaf7462..eb338d1e1db 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg @@ -17,7 +17,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 15 -prime_tower_mode = none +prime_tower_enable = False speed_infill = =math.ceil(speed_print * 30 / 30) speed_print = 30 speed_topbottom = =math.ceil(speed_print * 20 / 30) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg index 3deb8f57a09..2491d0ed881 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg @@ -21,8 +21,8 @@ material_flow = 105 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 4 multiple_mesh_overlap = 0.2 +prime_tower_enable = True prime_tower_flow = 100 -prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg index fd30dfc228e..e975175ce09 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg @@ -22,8 +22,8 @@ material_flow = 105 material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 2 multiple_mesh_overlap = 0.2 +prime_tower_enable = True prime_tower_flow = 100 -prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg index 2f21317657e..5334fac1f01 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg @@ -21,8 +21,8 @@ material_final_print_temperature = =material_print_temperature - 10 material_flow = 105 material_initial_print_temperature = =material_print_temperature - 10 multiple_mesh_overlap = 0.2 +prime_tower_enable = True prime_tower_flow = 100 -prime_tower_mode = normal retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg index e308015dd81..9ba4a38c6e7 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg @@ -47,7 +47,7 @@ material_max_flowrate = 22 material_print_temperature = =default_material_print_temperature + 5 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_mode = normal +prime_tower_enable = True raft_airgap = 0.15 retraction_amount = 4 retraction_prime_speed = 15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg index 3d7cabe23d1..4ab74980ef0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg @@ -44,7 +44,7 @@ material_flow = 93 material_max_flowrate = 22 material_print_temperature = =default_material_print_temperature + 7 optimize_wall_printing_order = False -prime_tower_mode = normal +prime_tower_enable = True raft_airgap = 0.15 retraction_amount = 4 retraction_prime_speed = 15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg index f7ab03fac0a..269d51dd4b5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg @@ -44,7 +44,7 @@ material_flow = 93 material_max_flowrate = 22 material_print_temperature = =default_material_print_temperature + 10 optimize_wall_printing_order = False -prime_tower_mode = normal +prime_tower_enable = True raft_airgap = 0.15 retraction_amount = 4 retraction_prime_speed = 15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg index 692f4f8aa77..4f56167ffde 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg @@ -47,7 +47,7 @@ material_max_flowrate = 23 material_print_temperature = =default_material_print_temperature - 5 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_mode = normal +prime_tower_enable = True retraction_amount = 3.5 retraction_prime_speed = 15 retraction_speed = 45 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg index 93e4e071f5d..9fdf9a665b1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg @@ -46,7 +46,7 @@ material_flow = 93 material_max_flowrate = 23 material_print_temperature = =default_material_print_temperature - 5 optimize_wall_printing_order = False -prime_tower_mode = normal +prime_tower_enable = True retraction_amount = 3.5 retraction_prime_speed = 15 retraction_speed = 45 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg index 592c835689b..3368ae6e2d2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg @@ -46,7 +46,7 @@ material_flow = 93 material_max_flowrate = 23 material_print_temperature = =default_material_print_temperature - 5 optimize_wall_printing_order = False -prime_tower_mode = normal +prime_tower_enable = True retraction_amount = 3.5 retraction_prime_speed = 15 retraction_speed = 45 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg index fd0b6da1304..ca93df9dc10 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg @@ -47,7 +47,7 @@ material_max_flowrate = 15 material_print_temperature = =default_material_print_temperature + 10 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_mode = normal +prime_tower_enable = True raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg index a6b7ac04396..4461ae07724 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg @@ -44,7 +44,7 @@ material_flow = 93 material_max_flowrate = 15 material_print_temperature = =default_material_print_temperature + 10 optimize_wall_printing_order = False -prime_tower_mode = normal +prime_tower_enable = True raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg index c873edfacb1..1acdad53a0c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg @@ -44,7 +44,7 @@ material_flow = 93 material_max_flowrate = 15 material_print_temperature = =default_material_print_temperature + 15 optimize_wall_printing_order = False -prime_tower_mode = normal +prime_tower_enable = True raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg index 413903a8e88..4973ec35bbc 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg @@ -47,7 +47,7 @@ material_max_flowrate = 17 material_print_temperature = =default_material_print_temperature + 10 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False -prime_tower_mode = normal +prime_tower_enable = True raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg index f0c51693895..2bcf3fa82d4 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg @@ -44,7 +44,7 @@ material_flow = 93 material_max_flowrate = 17 material_print_temperature = =default_material_print_temperature + 15 optimize_wall_printing_order = False -prime_tower_mode = normal +prime_tower_enable = True raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg index cb12b8740cd..3e4693c115f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg @@ -44,7 +44,7 @@ material_flow = 93 material_max_flowrate = 17 material_print_temperature = =default_material_print_temperature + 15 optimize_wall_printing_order = False -prime_tower_mode = normal +prime_tower_enable = True raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg index 022e91ed9f0..2bc28f4c1a0 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg @@ -15,7 +15,7 @@ weight = 1 brim_replaces_support = False cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) material_print_temperature = =default_material_print_temperature - 5 -prime_tower_mode = none +prime_tower_enable = False retraction_count_max = 5 skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_infill_sparse_thickness = =3 * layer_height diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg index 40cf72eff4a..f5b8c352984 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg @@ -14,7 +14,7 @@ weight = -1 [values] brim_replaces_support = False cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -prime_tower_mode = none +prime_tower_enable = False retraction_count_max = 5 skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_infill_sparse_thickness = =2 * layer_height diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg index 8b5a3e9f678..6457f97c9c9 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg @@ -15,7 +15,7 @@ weight = 0 brim_replaces_support = False cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) material_print_temperature = =default_material_print_temperature - 5 -prime_tower_mode = none +prime_tower_enable = False retraction_count_max = 5 skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_infill_sparse_thickness = =2 * layer_height diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg index 1ff95a0e3b7..eef90f5f17c 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg @@ -15,7 +15,7 @@ weight = -2 brim_replaces_support = False cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) material_print_temperature = =default_material_print_temperature + 5 -prime_tower_mode = none +prime_tower_enable = False retraction_count_max = 5 skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_interface_enable = True diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg index 58796a07a47..e1862ce3c41 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg @@ -16,7 +16,7 @@ weight = -3 brim_replaces_support = False cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) material_print_temperature = =default_material_print_temperature - 5 -prime_tower_mode = none +prime_tower_enable = False retraction_count_max = 5 skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_infill_sparse_thickness = 0.3 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg index b7d9b2a05f0..8b807c1eb5f 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg @@ -18,7 +18,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = normal +prime_tower_enable = True speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg index e3e8d486b08..ebc58413e2a 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg @@ -18,7 +18,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = normal +prime_tower_enable = True speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg index f01921353b9..1204be4c15e 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg @@ -18,7 +18,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = normal +prime_tower_enable = True speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg index 0a1cc1204da..6a7d52af4b3 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg @@ -18,7 +18,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = normal +prime_tower_enable = True speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg index 4437f2c5315..40d414cbcb6 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg @@ -18,7 +18,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = normal +prime_tower_enable = True speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg index 3796177bc5f..6144a2c3f03 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg @@ -18,7 +18,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = normal +prime_tower_enable = True speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg index 1ec49116767..5bf5d910e81 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg @@ -18,7 +18,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = normal +prime_tower_enable = True speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg index 36b56b65130..21407b6e66a 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg @@ -18,7 +18,7 @@ infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 10 -prime_tower_mode = normal +prime_tower_enable = True speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/variants/liquid/liquid_vo08.inst.cfg b/resources/variants/liquid/liquid_vo08.inst.cfg index a69a0f806e9..58cbea1b9db 100644 --- a/resources/variants/liquid/liquid_vo08.inst.cfg +++ b/resources/variants/liquid/liquid_vo08.inst.cfg @@ -37,7 +37,7 @@ material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 5 material_standby_temperature = 100 multiple_mesh_overlap = 0 -prime_tower_mode = none +prime_tower_enable = False prime_tower_wipe_enabled = True retract_at_layer_change = =not magic_spiralize retraction_amount = 3 diff --git a/resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg b/resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg index b66b984346e..4bf51a967ad 100644 --- a/resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg @@ -14,7 +14,7 @@ layer_height_0 = 0.3 machine_nozzle_id = HT0.4 machine_nozzle_size = 0.4 machine_nozzle_tip_outer_diameter = 1.0 -prime_tower_mode = normal +prime_tower_enable = True retract_at_layer_change = False support_angle = 45 support_use_towers = True diff --git a/resources/variants/strateo3d/strateo3d_standard_04.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_04.inst.cfg index 968c7c72626..3d705453d87 100644 --- a/resources/variants/strateo3d/strateo3d_standard_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_04.inst.cfg @@ -14,7 +14,7 @@ layer_height_0 = 0.3 machine_nozzle_id = Standard 0.4 machine_nozzle_size = 0.4 machine_nozzle_tip_outer_diameter = 1.0 -prime_tower_mode = normal +prime_tower_enable = True retract_at_layer_change = False support_angle = 60 support_use_towers = True diff --git a/resources/variants/strateo3d/strateo3d_standard_06.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_06.inst.cfg index 9b6d921d704..3443f64531e 100644 --- a/resources/variants/strateo3d/strateo3d_standard_06.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_06.inst.cfg @@ -14,7 +14,7 @@ layer_height_0 = 0.4 machine_nozzle_id = Standard 0.6 machine_nozzle_size = 0.6 machine_nozzle_tip_outer_diameter = 1.5 -prime_tower_mode = normal +prime_tower_enable = True retract_at_layer_change = False support_angle = 55 support_use_towers = True diff --git a/resources/variants/strateo3d/strateo3d_standard_08.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_08.inst.cfg index 11ff582ef16..f436ce1fe74 100644 --- a/resources/variants/strateo3d/strateo3d_standard_08.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_08.inst.cfg @@ -14,7 +14,7 @@ layer_height_0 = 0.5 machine_nozzle_id = Standard 0.8 machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 2.0 -prime_tower_mode = normal +prime_tower_enable = True retract_at_layer_change = True support_angle = 50 support_use_towers = True diff --git a/resources/variants/strateo3d/strateo3d_standard_10.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_10.inst.cfg index c9d50d91c38..b957d58d9fe 100644 --- a/resources/variants/strateo3d/strateo3d_standard_10.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_10.inst.cfg @@ -14,7 +14,7 @@ layer_height_0 = 0.6 machine_nozzle_id = Standard 1.0 Experimental machine_nozzle_size = 1.0 machine_nozzle_tip_outer_diameter = 2.5 -prime_tower_mode = normal +prime_tower_enable = True retract_at_layer_change = True support_angle = 50 support_use_towers = True diff --git a/resources/variants/strateo3d/strateo3d_standard_12.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_12.inst.cfg index f1f03bfcb4d..3a35f9c4a20 100644 --- a/resources/variants/strateo3d/strateo3d_standard_12.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_12.inst.cfg @@ -14,7 +14,7 @@ layer_height_0 = 0.7 machine_nozzle_id = Standard 1.2 Experimental machine_nozzle_size = 1.2 machine_nozzle_tip_outer_diameter = 3.0 -prime_tower_mode = normal +prime_tower_enable = True retract_at_layer_change = True support_angle = 50 support_use_towers = True diff --git a/resources/variants/ultimaker3_aa0.8.inst.cfg b/resources/variants/ultimaker3_aa0.8.inst.cfg index baf5f4043a6..4190aab0cd1 100644 --- a/resources/variants/ultimaker3_aa0.8.inst.cfg +++ b/resources/variants/ultimaker3_aa0.8.inst.cfg @@ -23,7 +23,7 @@ machine_nozzle_id = AA 0.8 machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 2.0 multiple_mesh_overlap = 0 -prime_tower_mode = none +prime_tower_enable = False prime_tower_wipe_enabled = True raft_surface_layers = 1 retraction_amount = 6.5 diff --git a/resources/variants/ultimaker3_bb0.8.inst.cfg b/resources/variants/ultimaker3_bb0.8.inst.cfg index 5250dff5e92..62227f50f65 100644 --- a/resources/variants/ultimaker3_bb0.8.inst.cfg +++ b/resources/variants/ultimaker3_bb0.8.inst.cfg @@ -26,7 +26,7 @@ machine_nozzle_id = BB 0.8 machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 2.0 multiple_mesh_overlap = 0 -prime_tower_mode = none +prime_tower_enable = False prime_tower_wipe_enabled = True raft_surface_layers = 1 retraction_hop = 2 diff --git a/resources/variants/ultimaker3_extended_aa0.8.inst.cfg b/resources/variants/ultimaker3_extended_aa0.8.inst.cfg index 109cd55a9da..941634e3a61 100644 --- a/resources/variants/ultimaker3_extended_aa0.8.inst.cfg +++ b/resources/variants/ultimaker3_extended_aa0.8.inst.cfg @@ -23,7 +23,7 @@ machine_nozzle_id = AA 0.8 machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 2.0 multiple_mesh_overlap = 0 -prime_tower_mode = none +prime_tower_enable = False prime_tower_wipe_enabled = True raft_surface_layers = 1 retraction_amount = 6.5 diff --git a/resources/variants/ultimaker3_extended_bb0.8.inst.cfg b/resources/variants/ultimaker3_extended_bb0.8.inst.cfg index c40c69ff621..2a88f165e61 100644 --- a/resources/variants/ultimaker3_extended_bb0.8.inst.cfg +++ b/resources/variants/ultimaker3_extended_bb0.8.inst.cfg @@ -26,7 +26,7 @@ machine_nozzle_id = BB 0.8 machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 2.0 multiple_mesh_overlap = 0 -prime_tower_mode = none +prime_tower_enable = False prime_tower_wipe_enabled = True raft_surface_layers = 1 retraction_hop = 2 diff --git a/resources/variants/ultimaker_s3_aa0.8.inst.cfg b/resources/variants/ultimaker_s3_aa0.8.inst.cfg index 5385e5e540e..e7d3487503e 100644 --- a/resources/variants/ultimaker_s3_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s3_aa0.8.inst.cfg @@ -23,7 +23,7 @@ machine_nozzle_id = AA 0.8 machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 2.0 multiple_mesh_overlap = 0 -prime_tower_mode = none +prime_tower_enable = False prime_tower_wipe_enabled = True raft_surface_layers = 1 retraction_amount = 6.5 diff --git a/resources/variants/ultimaker_s3_bb0.8.inst.cfg b/resources/variants/ultimaker_s3_bb0.8.inst.cfg index 56b1ea9af79..d0f78ac3bd1 100644 --- a/resources/variants/ultimaker_s3_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s3_bb0.8.inst.cfg @@ -25,7 +25,7 @@ machine_nozzle_id = BB 0.8 machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 2.0 multiple_mesh_overlap = 0 -prime_tower_mode = none +prime_tower_enable = False prime_tower_wipe_enabled = True raft_surface_layers = 1 retraction_hop = 2 diff --git a/resources/variants/ultimaker_s5_aa0.8.inst.cfg b/resources/variants/ultimaker_s5_aa0.8.inst.cfg index 4bb5eda5dba..04a3a97d115 100644 --- a/resources/variants/ultimaker_s5_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s5_aa0.8.inst.cfg @@ -23,7 +23,7 @@ machine_nozzle_id = AA 0.8 machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 2.0 multiple_mesh_overlap = 0 -prime_tower_mode = none +prime_tower_enable = False prime_tower_wipe_enabled = True raft_surface_layers = 1 retraction_amount = 6.5 diff --git a/resources/variants/ultimaker_s5_bb0.8.inst.cfg b/resources/variants/ultimaker_s5_bb0.8.inst.cfg index b833c4bcf3a..07b556d2068 100644 --- a/resources/variants/ultimaker_s5_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s5_bb0.8.inst.cfg @@ -25,7 +25,7 @@ machine_nozzle_id = BB 0.8 machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 2.0 multiple_mesh_overlap = 0 -prime_tower_mode = none +prime_tower_enable = False prime_tower_wipe_enabled = True raft_surface_layers = 1 retraction_hop = 2 diff --git a/resources/variants/ultimaker_s7_aa0.8.inst.cfg b/resources/variants/ultimaker_s7_aa0.8.inst.cfg index 1feea8c676b..b3253f7d258 100644 --- a/resources/variants/ultimaker_s7_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s7_aa0.8.inst.cfg @@ -23,7 +23,7 @@ machine_nozzle_id = AA 0.8 machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 2.0 multiple_mesh_overlap = 0 -prime_tower_mode = none +prime_tower_enable = False prime_tower_wipe_enabled = True raft_surface_layers = 1 retraction_amount = 6.5 diff --git a/resources/variants/ultimaker_s7_bb0.8.inst.cfg b/resources/variants/ultimaker_s7_bb0.8.inst.cfg index 17a99710028..010d5c7cf11 100644 --- a/resources/variants/ultimaker_s7_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s7_bb0.8.inst.cfg @@ -25,7 +25,7 @@ machine_nozzle_id = BB 0.8 machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 2.0 multiple_mesh_overlap = 0 -prime_tower_mode = none +prime_tower_enable = False prime_tower_wipe_enabled = True raft_surface_layers = 1 retraction_amount = 4.5 From bb439e586775089a500de32956ee9d56a2069d1e Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 22 Feb 2024 16:21:32 +0100 Subject: [PATCH 545/765] Introduce `primetower_enable` setting CURA-11645 --- resources/definitions/fdmprinter.def.json | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 1d453456a8e..9dbd7b19a0b 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6794,20 +6794,29 @@ "description": "Settings used for printing with multiple extruders.", "children": { + "prime_tower_enable": { + "label": "Enable Prime Tower", + "description": "Print a tower next to the print which serves to prime the material after each nozzle switch.", + "type": "bool", + "enabled": "extruders_enabled_count > 1", + "default_value": false, + "resolve": "(extruders_enabled_count > 1) and any(extruderValues('prime_tower_enable'))", + "settable_per_mesh": false, + "settable_per_extruder": false + }, "prime_tower_mode": { "label": "Prime Tower", - "description": "Print a tower next to the model, which serves to prime the material after each nozzle switch.
    • None: do not generate a prime tower
    • Normal: generate a bucket in which secondary materials are primed
    • Interleaved: generate a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other.
    ", + "description": "Print a tower next to the model, which serves to prime the material after each nozzle switch.
    • Normal: generate a bucket in which secondary materials are primed
    • Interleaved: generate a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other.
    ", "type": "enum", - "value": "'none' if (extruders_enabled_count < 2) else ('interleaved' if (all(material_type_var == extruderValues('material_type')[0] for material_type_var in extruderValues('material_type')) and all(material_brand_var == extruderValues('material_brand')[0] for material_brand_var in extruderValues('material_brand'))) else 'normal')", + "value": "'interleaved' if (all(material_type_var == extruderValues('material_type')[0] for material_type_var in extruderValues('material_type')) and all(material_brand_var == extruderValues('material_brand')[0] for material_brand_var in extruderValues('material_brand'))) else 'normal'", "options": { - "none": "None", "normal": "Normal", "interleaved": "Interleaved" }, - "default_value": "none", - "enabled": "extruders_enabled_count > 1", + "default_value": "normal", + "enabled": "prime_tower_enabled", "settable_per_mesh": false, "settable_per_extruder": false }, From 0a09cee0c6bda29c15b76e3074b8b043c2c4ad94 Mon Sep 17 00:00:00 2001 From: casperlamboo Date: Thu, 22 Feb 2024 15:22:31 +0000 Subject: [PATCH 546/765] Applied printer-linter format --- resources/definitions/fdmprinter.def.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 9dbd7b19a0b..a22a06c19fb 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6794,7 +6794,8 @@ "description": "Settings used for printing with multiple extruders.", "children": { - "prime_tower_enable": { + "prime_tower_enable": + { "label": "Enable Prime Tower", "description": "Print a tower next to the print which serves to prime the material after each nozzle switch.", "type": "bool", From d4ba499d68fca86b6ccf2e3f9beb8b0824e59207 Mon Sep 17 00:00:00 2001 From: Casper Lamboo Date: Thu, 22 Feb 2024 17:13:01 +0100 Subject: [PATCH 547/765] Update resources/definitions/fdmprinter.def.json --- resources/definitions/fdmprinter.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index a22a06c19fb..8b5a1e5e928 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6817,7 +6817,7 @@ "interleaved": "Interleaved" }, "default_value": "normal", - "enabled": "prime_tower_enabled", + "enabled": "prime_tower_enable", "settable_per_mesh": false, "settable_per_extruder": false }, From 0b222d9be229374fb2a33827f4542b8a43f81e81 Mon Sep 17 00:00:00 2001 From: sheep007 <42427653+zanghao912@users.noreply.github.com> Date: Fri, 23 Feb 2024 10:34:10 +0800 Subject: [PATCH 548/765] Update creality_ender3v3se.def.json --- resources/definitions/creality_ender3v3se.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/creality_ender3v3se.def.json b/resources/definitions/creality_ender3v3se.def.json index 5769e3e4936..12b863b506d 100644 --- a/resources/definitions/creality_ender3v3se.def.json +++ b/resources/definitions/creality_ender3v3se.def.json @@ -45,7 +45,7 @@ "machine_max_feedrate_y": { "value": 500 }, "machine_max_feedrate_z": { "value": 30 }, "machine_name": { "default_value": "Creality Ender-3 V3 SE" }, - "machine_start_gcode": { "default_value": "M220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\n\nM420 S1; Enable mesh leveling\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nM109 S[material_print_temperature_layer_0]\nG1 X10.1 Y145.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y145.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 E-1.0000 F1800 ;Retract a bit\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 E0.0000 F1800 \n" }, + "machine_start_gcode": { "default_value": "M220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\n\nM420 S1; Enable mesh leveling\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nM109 S{material_print_temperature_layer_0}\nG1 X10.1 Y145.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y145.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 E-1.0000 F1800 ;Retract a bit\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 E0.0000 F1800 \n" }, "machine_width": { "default_value": 220 }, "retraction_amount": { "value": 0.8 }, "retraction_speed": { "default_value": 40 }, From 68d1fb4c6fca8dedb5e7ab57de2f7a4e0d8cae4d Mon Sep 17 00:00:00 2001 From: sheep007 <42427653+zanghao912@users.noreply.github.com> Date: Fri, 23 Feb 2024 15:42:58 +0800 Subject: [PATCH 549/765] fix Anycubic Kobra Go & Kobra 2 start Gcode BUG --- resources/definitions/anycubic_kobra2.def.json | 2 +- resources/definitions/anycubic_kobra_go.def.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/definitions/anycubic_kobra2.def.json b/resources/definitions/anycubic_kobra2.def.json index aea6b4d344d..965504338be 100644 --- a/resources/definitions/anycubic_kobra2.def.json +++ b/resources/definitions/anycubic_kobra2.def.json @@ -42,7 +42,7 @@ "machine_max_jerk_xy": { "value": 10 }, "machine_max_jerk_z": { "value": 2 }, "machine_name": { "default_value": "Anycubic Kobra 2" }, - "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ; use absolute coordinates\nM82 ; use absolute distances for extrusion\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 ; home all axes\nM300 S1318 P266\nG1 Z5 F5000 ; lift nozzle\nG1 X5 Y0 F3000\nG1 Z0.3 ; set nozzle height\nG92 E0\nG1 X50 Y0 E20 F500 ; Extrude 20mm of filament in a 5cm line \nG92 E0 ; zero the extruded length again \nG1 E-4.5 F4800 ; Retract a little \nG92 E0\nG1 X120 F4000 ; Quickly wipe away from the filament line\nM117 ; Printing\u2026\nG5" }, + "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ; use absolute coordinates\nM82 ; use absolute distances for extrusion\nM104 S{material_print_temperature_layer_0} ; set extruder temp\nM140 S{material_bed_temperature_layer_0} ; set bed temp\nM190 S{material_bed_temperature_layer_0} ; wait for bed temp\nM109 S{material_print_temperature_layer_0} ; wait for extruder temp\nG28 ; home all axes\nM300 S1318 P266\nG1 Z5 F5000 ; lift nozzle\nG1 X5 Y0 F3000\nG1 Z0.3 ; set nozzle height\nG92 E0\nG1 X50 Y0 E20 F500 ; Extrude 20mm of filament in a 5cm line \nG92 E0 ; zero the extruded length again \nG1 E-4.5 F4800 ; Retract a little \nG92 E0\nG1 X120 F4000 ; Quickly wipe away from the filament line\nM117 ; Printing\u2026\nG5" }, "machine_width": { "default_value": 220 }, "material_bed_temperature": { "maximum_value_warning": 110 }, "material_bed_temperature_layer_0": { "maximum_value_warning": 110 }, diff --git a/resources/definitions/anycubic_kobra_go.def.json b/resources/definitions/anycubic_kobra_go.def.json index 8c546bdbb79..686734d9623 100644 --- a/resources/definitions/anycubic_kobra_go.def.json +++ b/resources/definitions/anycubic_kobra_go.def.json @@ -23,7 +23,7 @@ "machine_heated_bed": { "default_value": true }, "machine_height": { "default_value": 250 }, "machine_name": { "default_value": "Anycubic Kobra Go" }, - "machine_start_gcode": { "default_value": "M140 S[first_layer_bed_temperature]; Heat bed\nM104 S[first_layer_temperature\n ]; Heat extruder\nG21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nG28 ; Home all axes\nG92 E0 ; Reset Extruder\nM420 S1 ; Enable Bed Levelling Mesh\nM190 S[first_layer_bed_temperature\n ]; Wait for bed to get up to temperature\nM109 S[first_layer_temperature\n ]; Wait for extruder to get up to temperature\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X2 Y20 Z0.3 F5000.0 ; Move to start position\nG1 X2 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X2.4 Y200.0 Z0.3 F5000.0 ; Move to side a little\nG1 X2.4 Y20 Z0.3 F1500.0 E30 ; Draw the second line\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 F2400 E-1\nG1 X5 Y20 Z0.3 F5000.0 ; Move over to prevent blob squish" }, + "machine_start_gcode": { "default_value": "M140 S{material_bed_temperature_layer_0}; Heat bed\nM104 S{material_print_temperature_layer_0}; Heat extruder\nG21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nG28 ; Home all axes\nG92 E0 ; Reset Extruder\nM420 S1 ; Enable Bed Levelling Mesh\nM190 S{material_bed_temperature_layer_0}; Wait for bed to get up to temperature\nM109 S{material_print_temperature_layer_0}; Wait for extruder to get up to temperature\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X2 Y20 Z0.3 F5000.0 ; Move to start position\nG1 X2 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X2.4 Y200.0 Z0.3 F5000.0 ; Move to side a little\nG1 X2.4 Y20 Z0.3 F1500.0 E30 ; Draw the second line\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 F2400 E-1\nG1 X5 Y20 Z0.3 F5000.0 ; Move over to prevent blob squish" }, "machine_width": { "default_value": 222 } } } \ No newline at end of file From d2ae315522d9c1a0b26e5ac814b862d7e1bc2692 Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Fri, 23 Feb 2024 09:02:26 +0100 Subject: [PATCH 550/765] Update resources/definitions/ultimaker_method_base.def.json Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- resources/definitions/ultimaker_method_base.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/ultimaker_method_base.def.json b/resources/definitions/ultimaker_method_base.def.json index 19fe80b2e21..ed7b6597e5a 100644 --- a/resources/definitions/ultimaker_method_base.def.json +++ b/resources/definitions/ultimaker_method_base.def.json @@ -377,7 +377,7 @@ "retraction_prime_speed": { "value": "retraction_speed" }, "retraction_speed": { "value": 5 }, "roofing_layer_count": { "value": 2 }, - "roofing_material_flow": { "value": "material_flow" }, + "roofing_monotonic": { "value": true }, "skin_material_flow": { "value": "0.95*material_flow" }, "skin_outline_count": { "value": 0 }, From 21032311028a3e97ec175060bb2ca6bd5dca6859 Mon Sep 17 00:00:00 2001 From: pkuiper-ultimaker Date: Fri, 23 Feb 2024 08:03:17 +0000 Subject: [PATCH 551/765] Applied printer-linter format --- resources/definitions/ultimaker_method_base.def.json | 1 - 1 file changed, 1 deletion(-) diff --git a/resources/definitions/ultimaker_method_base.def.json b/resources/definitions/ultimaker_method_base.def.json index ed7b6597e5a..07a5a3d2539 100644 --- a/resources/definitions/ultimaker_method_base.def.json +++ b/resources/definitions/ultimaker_method_base.def.json @@ -377,7 +377,6 @@ "retraction_prime_speed": { "value": "retraction_speed" }, "retraction_speed": { "value": 5 }, "roofing_layer_count": { "value": 2 }, - "roofing_monotonic": { "value": true }, "skin_material_flow": { "value": "0.95*material_flow" }, "skin_outline_count": { "value": 0 }, From de91761b8af6b1b350a36c09ec40133229a74652 Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Fri, 23 Feb 2024 09:24:05 +0100 Subject: [PATCH 552/765] Update ultimaker.def.json --- resources/definitions/ultimaker.def.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/resources/definitions/ultimaker.def.json b/resources/definitions/ultimaker.def.json index 97eaf278e84..b8d6d333758 100644 --- a/resources/definitions/ultimaker.def.json +++ b/resources/definitions/ultimaker.def.json @@ -101,7 +101,6 @@ "relative_extrusion": { "enabled": false, - "value": false }, "retraction_combing": { "value": "'no_outer_surfaces'" }, "retraction_combing_max_distance": { "value": 15 }, @@ -140,4 +139,4 @@ "z_seam_corner": { "value": "'z_seam_corner_none'" }, "zig_zaggify_support": { "value": true } } -} \ No newline at end of file +} From 1b12617e01ff558ebc18bd2634b18020186c08bb Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Fri, 23 Feb 2024 09:27:31 +0100 Subject: [PATCH 553/765] Update ultimaker.def.json --- resources/definitions/ultimaker.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/ultimaker.def.json b/resources/definitions/ultimaker.def.json index b8d6d333758..7686bd1301b 100644 --- a/resources/definitions/ultimaker.def.json +++ b/resources/definitions/ultimaker.def.json @@ -100,7 +100,7 @@ "raft_surface_speed": { "value": "speed_topbottom" }, "relative_extrusion": { - "enabled": false, + "enabled": false }, "retraction_combing": { "value": "'no_outer_surfaces'" }, "retraction_combing_max_distance": { "value": 15 }, From 3eee666d6ad35eb357efc3df46f48e2446effc97 Mon Sep 17 00:00:00 2001 From: pkuiper-ultimaker Date: Fri, 23 Feb 2024 08:28:25 +0000 Subject: [PATCH 554/765] Applied printer-linter format --- resources/definitions/ultimaker.def.json | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/resources/definitions/ultimaker.def.json b/resources/definitions/ultimaker.def.json index 7686bd1301b..f62e98f30f6 100644 --- a/resources/definitions/ultimaker.def.json +++ b/resources/definitions/ultimaker.def.json @@ -98,10 +98,7 @@ "raft_surface_fan_speed": { "value": "cool_fan_speed_min" }, "raft_surface_monotonic": { "value": true }, "raft_surface_speed": { "value": "speed_topbottom" }, - "relative_extrusion": - { - "enabled": false - }, + "relative_extrusion": { "enabled": false }, "retraction_combing": { "value": "'no_outer_surfaces'" }, "retraction_combing_max_distance": { "value": 15 }, "retraction_count_max": { "value": 25 }, @@ -139,4 +136,4 @@ "z_seam_corner": { "value": "'z_seam_corner_none'" }, "zig_zaggify_support": { "value": true } } -} +} \ No newline at end of file From cd9ce966af097a755b2f82714d5214978fae64b9 Mon Sep 17 00:00:00 2001 From: Nikita Chernukhin Date: Fri, 2 Feb 2024 20:46:14 +0100 Subject: [PATCH 555/765] Fix bed mesh offsets for Ratrig V-Core3 200mm and V-Minion --- resources/definitions/ratrig_vcore3_200.def.json | 2 +- resources/definitions/ratrig_vminion.def.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/definitions/ratrig_vcore3_200.def.json b/resources/definitions/ratrig_vcore3_200.def.json index d16f15b476f..143063b95fb 100644 --- a/resources/definitions/ratrig_vcore3_200.def.json +++ b/resources/definitions/ratrig_vcore3_200.def.json @@ -8,7 +8,7 @@ "platform": "ratrig_vcore3_200.stl", "platform_offset": [ 0, - 5, + 0, 0 ], "weight": 16 diff --git a/resources/definitions/ratrig_vminion.def.json b/resources/definitions/ratrig_vminion.def.json index bdc8d0d8a18..daf0d4f302f 100644 --- a/resources/definitions/ratrig_vminion.def.json +++ b/resources/definitions/ratrig_vminion.def.json @@ -11,7 +11,7 @@ "machine_extruder_trains": { "0": "ratrig_base_extruder_0" }, "platform_offset": [ 0, - 5, + 0, 0 ], "preferred_variant_name": "0.4mm Nozzle", From ec138516eb1f46d9bb1d7aaa01394d55542c67ba Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 26 Feb 2024 06:53:23 +0100 Subject: [PATCH 556/765] override Protobuf requirement deps Fix versions conflict --- conanfile.py | 1 + 1 file changed, 1 insertion(+) diff --git a/conanfile.py b/conanfile.py index ca6b4eabd0f..2b45c288e9f 100644 --- a/conanfile.py +++ b/conanfile.py @@ -355,6 +355,7 @@ def requirements(self): self.requires("spdlog/1.12.0") self.requires("fmt/10.1.1") self.requires("zlib/1.2.13") + self.requires("protobuf/3.21.12") def build_requirements(self): if self.options.get_safe("enable_i18n", False): From fca8d2a75185e19938b4029bc3f70146ae0fcc5e Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 26 Feb 2024 06:54:20 +0100 Subject: [PATCH 557/765] Revert "override Protobuf requirement deps" This reverts commit ec138516eb1f46d9bb1d7aaa01394d55542c67ba. --- conanfile.py | 1 - 1 file changed, 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index 2b45c288e9f..ca6b4eabd0f 100644 --- a/conanfile.py +++ b/conanfile.py @@ -355,7 +355,6 @@ def requirements(self): self.requires("spdlog/1.12.0") self.requires("fmt/10.1.1") self.requires("zlib/1.2.13") - self.requires("protobuf/3.21.12") def build_requirements(self): if self.options.get_safe("enable_i18n", False): From d5e8a0acb9d740296e5ee04f91b1b084afac58db Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Mon, 26 Feb 2024 11:12:31 +0100 Subject: [PATCH 558/765] Fix prime tower shadow visible when disabled CURA-11645 --- cura/BuildVolume.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/BuildVolume.py b/cura/BuildVolume.py index 56abfc0fa15..0f906332eb1 100755 --- a/cura/BuildVolume.py +++ b/cura/BuildVolume.py @@ -880,7 +880,7 @@ def _computeDisallowedAreasPrinted(self, used_extruders): result[extruder.getId()] = [] # Currently, the only normally printed object is the prime tower. - if self._global_container_stack.getProperty("prime_tower_mode", "value") != 'none': + if self._global_container_stack.getProperty("prime_tower_enable", "value"): prime_tower_size = self._global_container_stack.getProperty("prime_tower_size", "value") machine_width = self._global_container_stack.getProperty("machine_width", "value") machine_depth = self._global_container_stack.getProperty("machine_depth", "value") From fb33dfe665778dbcf36480dd1f8f8041c42aea46 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Mon, 26 Feb 2024 11:15:34 +0100 Subject: [PATCH 559/765] Register notification on prime tower enable CURA-11645 --- cura/BuildVolume.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/BuildVolume.py b/cura/BuildVolume.py index 0f906332eb1..742d1872cb5 100755 --- a/cura/BuildVolume.py +++ b/cura/BuildVolume.py @@ -1208,7 +1208,7 @@ def _clamp(self, value, min_value, max_value): _raft_settings = ["adhesion_type", "raft_base_thickness", "raft_interface_layers", "raft_interface_thickness", "raft_surface_layers", "raft_surface_thickness", "raft_airgap", "layer_0_z_overlap"] _extra_z_settings = ["retraction_hop_enabled", "retraction_hop"] _prime_settings = ["extruder_prime_pos_x", "extruder_prime_pos_y", "prime_blob_enable"] - _tower_settings = ["prime_tower_mode", "prime_tower_size", "prime_tower_position_x", "prime_tower_position_y", "prime_tower_brim_enable", "prime_tower_base_size", "prime_tower_base_height"] + _tower_settings = ["prime_tower_enable", "prime_tower_size", "prime_tower_position_x", "prime_tower_position_y", "prime_tower_brim_enable", "prime_tower_base_size", "prime_tower_base_height"] _ooze_shield_settings = ["ooze_shield_enabled", "ooze_shield_dist"] _distance_settings = ["infill_wipe_dist", "travel_avoid_distance", "support_offset", "support_enable", "travel_avoid_other_parts", "travel_avoid_supports", "wall_line_count", "wall_line_width_0", "wall_line_width_x"] _extruder_settings = ["support_enable", "support_bottom_enable", "support_roof_enable", "support_infill_extruder_nr", "support_extruder_nr_layer_0", "support_bottom_extruder_nr", "support_roof_extruder_nr", "brim_line_count", "skirt_brim_extruder_nr", "raft_base_extruder_nr", "raft_interface_extruder_nr", "raft_surface_extruder_nr", "adhesion_type"] #Settings that can affect which extruders are used. From af494883ccd8f20ce16efee27ca04dd5737f6bf8 Mon Sep 17 00:00:00 2001 From: Casper Lamboo Date: Mon, 26 Feb 2024 12:28:19 +0100 Subject: [PATCH 560/765] Update resources/definitions/fdmprinter.def.json Co-authored-by: Erwan MATHIEU --- resources/definitions/fdmprinter.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 8b5a1e5e928..4fac6e1d6e9 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6808,7 +6808,7 @@ "prime_tower_mode": { "label": "Prime Tower", - "description": "Print a tower next to the model, which serves to prime the material after each nozzle switch.
    • Normal: generate a bucket in which secondary materials are primed
    • Interleaved: generate a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other.
    ", + "description": "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other.
    ", "type": "enum", "value": "'interleaved' if (all(material_type_var == extruderValues('material_type')[0] for material_type_var in extruderValues('material_type')) and all(material_brand_var == extruderValues('material_brand')[0] for material_brand_var in extruderValues('material_brand'))) else 'normal'", "options": From 55e5cd8982e266a8b28b062fb113e150aaef815d Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Mon, 26 Feb 2024 14:58:53 +0100 Subject: [PATCH 561/765] adding dropto buildplate drop per model in 3mf CURA-10542 --- cura/PlatformPhysics.py | 19 ++++++++++++------- cura/Scene/CuraSceneNode.py | 6 ++++++ plugins/3MFReader/ThreeMFReader.py | 4 ++++ plugins/3MFReader/WorkspaceDialog.qml | 1 + plugins/3MFWriter/ThreeMFWriter.py | 1 + 5 files changed, 24 insertions(+), 7 deletions(-) diff --git a/cura/PlatformPhysics.py b/cura/PlatformPhysics.py index 6a26190a569..306f6a837a1 100755 --- a/cura/PlatformPhysics.py +++ b/cura/PlatformPhysics.py @@ -39,7 +39,7 @@ def __init__(self, controller, volume): Application.getInstance().getPreferences().addPreference("physics/automatic_push_free", False) Application.getInstance().getPreferences().addPreference("physics/automatic_drop_down", False) - self._app_per_model_drop = Application.getInstance().getPreferences().getValue("physics/automatic_drop_down") + self._app_per_model_drop = None def getAppPerModelDropDown(self): return self._app_per_model_drop @@ -78,6 +78,14 @@ def _onChangeTimerFinished(self): # We try to shuffle all the nodes to prevent "locked" situations, where iteration B inverts iteration A. # By shuffling the order of the nodes, this might happen a few times, but at some point it will resolve. random.shuffle(nodes) + drop_down = False + # drop down in case nodes are asked to drop down from the user from workspaceDialog while opening 3mf + if self._app_per_model_drop and (self._app_per_model_drop != app_automatic_drop_down): + drop_down = True + # drop down in case the user has selected automated drop down preference for 3mf opening + if self._app_per_model_drop and app_automatic_drop_down: + drop_down= True + for node in nodes: if node is root or not isinstance(node, SceneNode) or node.getBoundingBox() is None: @@ -88,12 +96,9 @@ def _onChangeTimerFinished(self): # Move it downwards if bottom is above platform move_vector = Vector() - # if per model drop is different then app_automatic_drop, in case of 3mf loading when user changes this setting for that model - if (self._app_per_model_drop != app_automatic_drop_down): - node.setSetting(SceneNodeSettings.AutoDropDown, self._app_per_model_drop) - if node.getSetting(SceneNodeSettings.AutoDropDown, self._app_per_model_drop) and not (node.getParent() and node.getParent().callDecoration("isGroup") or node.getParent() != root) and node.isEnabled(): #If an object is grouped, don't move it down + if (node.getSetting(SceneNodeSettings.AutoDropDown, app_automatic_drop_down) or drop_down) and not (node.getParent() and node.getParent().callDecoration("isGroup") or node.getParent() != root) and node.isEnabled(): z_offset = node.callDecoration("getZOffset") if node.getDecorator(ZOffsetDecorator.ZOffsetDecorator) else 0 - move_vector = move_vector.set(y = -bbox.bottom + z_offset) + move_vector = move_vector.set(y=-bbox.bottom + z_offset) # If there is no convex hull for the node, start calculating it and continue. if not node.getDecorator(ConvexHullDecorator) and not node.callDecoration("isNonPrintingMesh") and node.callDecoration("getLayerData") is None: @@ -180,7 +185,7 @@ def _onChangeTimerFinished(self): op.push() # setting this drop to model same as app_automatic_drop_down - self._app_per_model_drop = app_automatic_drop_down + self._app_per_model_drop = None # After moving, we have to evaluate the boundary checks for nodes build_volume.updateNodeBoundaryCheck() diff --git a/cura/Scene/CuraSceneNode.py b/cura/Scene/CuraSceneNode.py index 9b412c7d4f6..5a47fa0f0b5 100644 --- a/cura/Scene/CuraSceneNode.py +++ b/cura/Scene/CuraSceneNode.py @@ -11,6 +11,7 @@ from UM.Scene.SceneNodeDecorator import SceneNodeDecorator # To cast the deepcopy of every decorator back to SceneNodeDecorator. import cura.CuraApplication # To get the build plate. +from UM.Scene.SceneNodeSettings import SceneNodeSettings from cura.Settings.ExtruderStack import ExtruderStack # For typing. from cura.Settings.SettingOverrideDecorator import SettingOverrideDecorator # For per-object settings. @@ -26,6 +27,7 @@ def __init__(self, parent: Optional["SceneNode"] = None, visible: bool = True, n self.addDecorator(SettingOverrideDecorator()) # Now we always have a getActiveExtruderPosition, unless explicitly disabled self._outside_buildarea = False self._print_order = 0 + self._drop_down = Application.getInstance().getPreferences().getValue("physics/automatic_drop_down") def setOutsideBuildArea(self, new_value: bool) -> None: self._outside_buildarea = new_value @@ -41,6 +43,10 @@ def printOrder(self, new_value): def isOutsideBuildArea(self) -> bool: return self._outside_buildarea or self.callDecoration("getBuildPlateNumber") < 0 + @property + def isDropDownEnabled(self) ->bool: + return self.getSetting(SceneNodeSettings.AutoDropDown, self._drop_down) + def isVisible(self) -> bool: return super().isVisible() and self.callDecoration("getBuildPlateNumber") == cura.CuraApplication.CuraApplication.getInstance().getMultiBuildPlateModel().activeBuildPlate diff --git a/plugins/3MFReader/ThreeMFReader.py b/plugins/3MFReader/ThreeMFReader.py index ac942821360..99852d84ce9 100755 --- a/plugins/3MFReader/ThreeMFReader.py +++ b/plugins/3MFReader/ThreeMFReader.py @@ -16,6 +16,7 @@ from UM.MimeTypeDatabase import MimeTypeDatabase, MimeType from UM.Scene.GroupDecorator import GroupDecorator from UM.Scene.SceneNode import SceneNode # For typing. +from UM.Scene.SceneNodeSettings import SceneNodeSettings from cura.CuraApplication import CuraApplication from cura.Machines.ContainerTree import ContainerTree from cura.Scene.BuildPlateDecorator import BuildPlateDecorator @@ -180,6 +181,9 @@ def _convertSavitarNodeToUMNode(savitar_node: Savitar.SceneNode, file_name: str if key == "print_order": um_node.printOrder = int(setting_value) continue + if key =="drop_to_buildplate": + um_node.setSetting(SceneNodeSettings.AutoDropDown, eval(setting_value)) + continue if key in known_setting_keys: setting_container.setProperty(key, "value", setting_value) else: diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index 334317e0dce..0cef71fd42d 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -366,6 +366,7 @@ UM.Dialog } function reloadValue() { + manager.manager.setDropToBuildPlateForModel(checkDropModels.checked) checkDropModels.checked = UM.Preferences.getValue("physics/automatic_drop_down") } } diff --git a/plugins/3MFWriter/ThreeMFWriter.py b/plugins/3MFWriter/ThreeMFWriter.py index 6fda1742f8e..c3215056437 100644 --- a/plugins/3MFWriter/ThreeMFWriter.py +++ b/plugins/3MFWriter/ThreeMFWriter.py @@ -155,6 +155,7 @@ def _convertUMNodeToSavitarNode(um_node, if isinstance(um_node, CuraSceneNode): savitar_node.setSetting("cura:print_order", str(um_node.printOrder)) + savitar_node.setSetting("cura:drop_to_buildplate", str(um_node.isDropDownEnabled)) # Store the metadata. for key, value in um_node.metadata.items(): From fb233d8b16460e3d5b38167a45d834e005dc0920 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Mon, 26 Feb 2024 14:59:48 +0100 Subject: [PATCH 562/765] preference setting of "drop+to_buildplate" preseve from previous versions CURA-10542 --- cura/PlatformPhysics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/PlatformPhysics.py b/cura/PlatformPhysics.py index 306f6a837a1..74fe05927d0 100755 --- a/cura/PlatformPhysics.py +++ b/cura/PlatformPhysics.py @@ -38,7 +38,7 @@ def __init__(self, controller, volume): self._minimum_gap = 2 # It is a minimum distance (in mm) between two models, applicable for small models Application.getInstance().getPreferences().addPreference("physics/automatic_push_free", False) - Application.getInstance().getPreferences().addPreference("physics/automatic_drop_down", False) + Application.getInstance().getPreferences().addPreference("physics/automatic_drop_down", True) self._app_per_model_drop = None def getAppPerModelDropDown(self): From 0d40d2b07f09d41255e75699682d350248214f00 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 26 Feb 2024 15:37:54 +0100 Subject: [PATCH 563/765] Fix crash when saving ucp project CURA-11403 --- plugins/3MFWriter/SettingsExportModel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/3MFWriter/SettingsExportModel.py b/plugins/3MFWriter/SettingsExportModel.py index 0c342780678..3b034236c81 100644 --- a/plugins/3MFWriter/SettingsExportModel.py +++ b/plugins/3MFWriter/SettingsExportModel.py @@ -118,7 +118,7 @@ def _exportSettings(settings_stack): setting_type = settings_stack.getProperty(setting_to_export, "type") if setting_type is not None: # This is not very good looking, but will do for now - value = SettingDefinition.settingValueToString(setting_type, value) + " " + unit + value = f"{str(SettingDefinition.settingValueToString(setting_type, value))} {unit}" else: value = str(value) From b5b9dd0e572378e8b6376994cd60e3a8ee5e6089 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Mon, 26 Feb 2024 15:51:36 +0100 Subject: [PATCH 564/765] fixing unit-test CURA-10542 --- cura/Scene/CuraSceneNode.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cura/Scene/CuraSceneNode.py b/cura/Scene/CuraSceneNode.py index 5a47fa0f0b5..65b7c1e5937 100644 --- a/cura/Scene/CuraSceneNode.py +++ b/cura/Scene/CuraSceneNode.py @@ -27,7 +27,6 @@ def __init__(self, parent: Optional["SceneNode"] = None, visible: bool = True, n self.addDecorator(SettingOverrideDecorator()) # Now we always have a getActiveExtruderPosition, unless explicitly disabled self._outside_buildarea = False self._print_order = 0 - self._drop_down = Application.getInstance().getPreferences().getValue("physics/automatic_drop_down") def setOutsideBuildArea(self, new_value: bool) -> None: self._outside_buildarea = new_value @@ -45,7 +44,7 @@ def isOutsideBuildArea(self) -> bool: @property def isDropDownEnabled(self) ->bool: - return self.getSetting(SceneNodeSettings.AutoDropDown, self._drop_down) + return self.getSetting(SceneNodeSettings.AutoDropDown, Application.getInstance().getPreferences().getValue("physics/automatic_drop_down")) def isVisible(self) -> bool: return super().isVisible() and self.callDecoration("getBuildPlateNumber") == cura.CuraApplication.CuraApplication.getInstance().getMultiBuildPlateModel().activeBuildPlate From 6cd8196a9660a8d73d66c454398f0b6d8ec6f464 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 26 Feb 2024 15:53:15 +0100 Subject: [PATCH 565/765] Fix crash when saving ucp project CURA-11403 --- resources/qml/Menus/FileMenu.qml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/resources/qml/Menus/FileMenu.qml b/resources/qml/Menus/FileMenu.qml index 4ca09cc9f18..67edcc5962c 100644 --- a/resources/qml/Menus/FileMenu.qml +++ b/resources/qml/Menus/FileMenu.qml @@ -47,6 +47,11 @@ Cura.Menu enabled: UM.WorkspaceFileHandler.enabled && saveProjectMenu.model.count == 1 onTriggered: { + const args = { + "filter_by_machine": false, + "file_type": "workspace", + "preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", + }; if (UM.Preferences.getValue("cura/dialog_on_project_save")) { saveWorkspaceDialog.args = args @@ -54,11 +59,6 @@ Cura.Menu } else { - const args = { - "filter_by_machine": false, - "file_type": "workspace", - "preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", - }; UM.OutputDeviceManager.requestWriteToDevice("local_file", PrintInformation.jobName, args) } } From 2bdc70c76b0e6238155636528087b50296102bba Mon Sep 17 00:00:00 2001 From: HellAholic Date: Mon, 26 Feb 2024 19:06:35 +0000 Subject: [PATCH 566/765] Applied printer-linter format --- resources/definitions/creality_ender3v3se.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/creality_ender3v3se.def.json b/resources/definitions/creality_ender3v3se.def.json index 8e32a44eb90..86d68181663 100644 --- a/resources/definitions/creality_ender3v3se.def.json +++ b/resources/definitions/creality_ender3v3se.def.json @@ -52,4 +52,4 @@ "speed_layer_0": { "value": 30 }, "speed_print": { "value": 180 } } -} +} \ No newline at end of file From 853bd4cf929eb47f0a470e062b9079deae413b1a Mon Sep 17 00:00:00 2001 From: sheep007 <42427653+zanghao912@users.noreply.github.com> Date: Tue, 27 Feb 2024 10:48:29 +0800 Subject: [PATCH 567/765] Update creality_ender3v3se.def.json --- resources/definitions/creality_ender3v3se.def.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/definitions/creality_ender3v3se.def.json b/resources/definitions/creality_ender3v3se.def.json index 12b863b506d..8e32a44eb90 100644 --- a/resources/definitions/creality_ender3v3se.def.json +++ b/resources/definitions/creality_ender3v3se.def.json @@ -45,11 +45,11 @@ "machine_max_feedrate_y": { "value": 500 }, "machine_max_feedrate_z": { "value": 30 }, "machine_name": { "default_value": "Creality Ender-3 V3 SE" }, - "machine_start_gcode": { "default_value": "M220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\n\nM420 S1; Enable mesh leveling\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nM109 S{material_print_temperature_layer_0}\nG1 X10.1 Y145.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y145.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 E-1.0000 F1800 ;Retract a bit\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 E0.0000 F1800 \n" }, + "machine_start_gcode": { "default_value": "M220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\n\nM420 S1; Use saved mesh leveling data\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nM190 S{material_bed_temperature_layer_0} ; Set bed temperature and wait\nM109 S{material_print_temperature_layer_0} ; Set hotend temperature and wait\nG1 X10.1 Y145.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y145.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 E-1.0000 F1800 ;Retract a bit\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 E0.0000 F1800 \n" }, "machine_width": { "default_value": 220 }, "retraction_amount": { "value": 0.8 }, "retraction_speed": { "default_value": 40 }, "speed_layer_0": { "value": 30 }, "speed_print": { "value": 180 } } -} \ No newline at end of file +} From 59d6593c176a8fcc252eb45b2eb82e4ed3e11dc0 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Tue, 27 Feb 2024 09:57:39 +0100 Subject: [PATCH 568/765] fixing reloadvalue manager CURA-10542 --- plugins/3MFReader/WorkspaceDialog.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index 0cef71fd42d..dbd6356e942 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -366,7 +366,7 @@ UM.Dialog } function reloadValue() { - manager.manager.setDropToBuildPlateForModel(checkDropModels.checked) + manager.setDropToBuildPlateForModel(checkDropModels.checked) checkDropModels.checked = UM.Preferences.getValue("physics/automatic_drop_down") } } From caf710ff606a0fcfb1c27e6986fb0a64251d8adf Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Tue, 27 Feb 2024 12:46:58 +0100 Subject: [PATCH 569/765] Change some left over prime tower mode -> enable CURA-11645 --- plugins/SliceInfoPlugin/SliceInfo.py | 1 + resources/definitions/fdmprinter.def.json | 30 +++++++++++------------ resources/setting_visibility/advanced.cfg | 1 + resources/setting_visibility/basic.cfg | 2 +- resources/setting_visibility/expert.cfg | 1 + 5 files changed, 19 insertions(+), 16 deletions(-) diff --git a/plugins/SliceInfoPlugin/SliceInfo.py b/plugins/SliceInfoPlugin/SliceInfo.py index f61f5cf2952..411146d0653 100755 --- a/plugins/SliceInfoPlugin/SliceInfo.py +++ b/plugins/SliceInfoPlugin/SliceInfo.py @@ -263,6 +263,7 @@ def _onWriteStarted(self, output_device): print_settings["retraction_enable"] = global_stack.getProperty("retraction_enable", "value") # Prime tower settings + print_settings["prime_tower_enable"] = global_stack.getProperty("prime_tower_enable", "value") print_settings["prime_tower_mode"] = global_stack.getProperty("prime_tower_mode", "value") # Infill settings diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 4fac6e1d6e9..92856e9613b 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -979,7 +979,7 @@ "description": "Width of a single prime tower line.", "type": "float", "unit": "mm", - "enabled": "resolveOrValue('prime_tower_mode') != 'none'", + "enabled": "'prime_tower_enable'", "default_value": 0.4, "value": "line_width", "minimum_value": "0.001", @@ -3363,7 +3363,7 @@ "description": "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal.", "type": "float", "unit": "mm/s", - "enabled": "resolveOrValue('prime_tower_mode') != 'none'", + "enabled": "'prime_tower_enable'", "default_value": 60, "value": "speed_print", "minimum_value": "0.1", @@ -3741,7 +3741,7 @@ "maximum_value_warning": "10000", "default_value": 3000, "value": "acceleration_print", - "enabled": "resolveOrValue('prime_tower_mode') != 'none' and resolveOrValue('acceleration_enabled')", + "enabled": "'prime_tower_enable' and resolveOrValue('acceleration_enabled')", "settable_per_mesh": false } } @@ -4060,7 +4060,7 @@ "maximum_value_warning": "50", "default_value": 20, "value": "jerk_print", - "enabled": "resolveOrValue('prime_tower_mode') != 'none' and resolveOrValue('jerk_enabled')", + "enabled": "'prime_tower_enable' and resolveOrValue('jerk_enabled')", "settable_per_mesh": false } } @@ -6827,7 +6827,7 @@ "description": "The width of the prime tower.", "type": "float", "unit": "mm", - "enabled": "resolveOrValue('prime_tower_mode') != 'none'", + "enabled": "'prime_tower_enable'", "default_value": 20, "resolve": "max(extruderValues('prime_tower_size'))", "minimum_value": "0", @@ -6846,7 +6846,7 @@ "default_value": 6, "minimum_value": "0", "maximum_value_warning": "(resolveOrValue('prime_tower_size') * 0.5) ** 2 * 3.14159 * resolveOrValue('layer_height') - sum(extruderValues('prime_tower_min_volume')) + prime_tower_min_volume", - "enabled": "resolveOrValue('prime_tower_mode') != 'none'", + "enabled": "'prime_tower_enable'", "settable_per_mesh": false, "settable_per_extruder": true }, @@ -6859,7 +6859,7 @@ "default_value": 5, "minimum_value": "line_width", "maximum_value_warning": "10.0", - "enabled": "resolveOrValue('prime_tower_mode') != 'none'", + "enabled": "'prime_tower_enable'", "settable_per_mesh": false, "settable_per_extruder": true }, @@ -6869,7 +6869,7 @@ "description": "The x coordinate of the position of the prime tower.", "type": "float", "unit": "mm", - "enabled": "resolveOrValue('prime_tower_mode') != 'none'", + "enabled": "'prime_tower_enable'", "default_value": 200, "value": "(resolveOrValue('machine_width') / 2 + resolveOrValue('prime_tower_size') / 2) if resolveOrValue('machine_shape') == 'elliptic' else (resolveOrValue('machine_width') - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('machine_nozzle_offset_x')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_x'))), 1)) - (resolveOrValue('machine_width') / 2 if resolveOrValue('machine_center_is_zero') else 0)", "maximum_value": "(machine_width / 2 if machine_center_is_zero else machine_width) - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0)", @@ -6883,7 +6883,7 @@ "description": "The y coordinate of the position of the prime tower.", "type": "float", "unit": "mm", - "enabled": "resolveOrValue('prime_tower_mode') != 'none'", + "enabled": "'prime_tower_enable'", "default_value": 200, "value": "machine_depth - prime_tower_size - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('machine_nozzle_offset_y')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (resolveOrValue('machine_depth') / 2 if resolveOrValue('machine_center_is_zero') else 0)", "maximum_value": "(machine_depth / 2 - resolveOrValue('prime_tower_size') if machine_center_is_zero else machine_depth - resolveOrValue('prime_tower_size')) - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0)", @@ -6896,7 +6896,7 @@ "label": "Wipe Inactive Nozzle on Prime Tower", "description": "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower.", "type": "bool", - "enabled": "resolveOrValue('prime_tower_mode') != 'none'", + "enabled": "'prime_tower_enable'", "default_value": true, "settable_per_mesh": false, "settable_per_extruder": true @@ -6907,7 +6907,7 @@ "label": "Prime Tower Base", "description": "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height.", "type": "bool", - "enabled": "resolveOrValue('prime_tower_mode') != 'none' and resolveOrValue('adhesion_type') != 'raft'", + "enabled": "'prime_tower_enable' and resolveOrValue('adhesion_type') != 'raft'", "default_value": false, "settable_per_mesh": false, "settable_per_extruder": false @@ -6919,7 +6919,7 @@ "description": "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area.", "type": "float", "unit": "mm", - "enabled": "resolveOrValue('prime_tower_mode') != 'none' and (resolveOrValue('prime_tower_brim_enable') or resolveOrValue('adhesion_type') == 'raft')", + "enabled": "'prime_tower_enable' and (resolveOrValue('prime_tower_brim_enable') or resolveOrValue('adhesion_type') == 'raft')", "default_value": 1.2, "minimum_value": "0", "maximum_value": "min(0.5 * machine_width, 0.5 * machine_depth)", @@ -6933,7 +6933,7 @@ "description": "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base.", "type": "float", "unit": "mm", - "enabled": "resolveOrValue('prime_tower_mode') != 'none' and (resolveOrValue('prime_tower_brim_enable') or resolveOrValue('adhesion_type') == 'raft')", + "enabled": "'prime_tower_enable' and (resolveOrValue('prime_tower_brim_enable') or resolveOrValue('adhesion_type') == 'raft')", "default_value": 0, "minimum_value": "0", "maximum_value": "machine_height", @@ -6945,7 +6945,7 @@ "label": "Prime Tower Base Slope", "description": "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker.", "type": "float", - "enabled": "resolveOrValue('prime_tower_mode') != 'none' and (resolveOrValue('prime_tower_brim_enable') or resolveOrValue('adhesion_type') == 'raft')", + "enabled": "'prime_tower_enable' and (resolveOrValue('prime_tower_brim_enable') or resolveOrValue('adhesion_type') == 'raft')", "default_value": 4, "minimum_value": "0", "maximum_value": "10", @@ -6963,7 +6963,7 @@ "minimum_value": "0", "minimum_value_warning": "raft_base_line_width", "maximum_value_warning": "100", - "enabled": "resolveOrValue('prime_tower_mode') != 'none' and resolveOrValue('adhesion_type') == 'raft'", + "enabled": "'prime_tower_enable' and resolveOrValue('adhesion_type') == 'raft'", "settable_per_mesh": false, "settable_per_extruder": true, "limit_to_extruder": "raft_base_extruder_nr" diff --git a/resources/setting_visibility/advanced.cfg b/resources/setting_visibility/advanced.cfg index 57698bf252c..55a36075be6 100644 --- a/resources/setting_visibility/advanced.cfg +++ b/resources/setting_visibility/advanced.cfg @@ -127,6 +127,7 @@ brim_line_count brim_outside_only [dual] +prime_tower_enable prime_tower_mode prime_tower_position_x prime_tower_position_y diff --git a/resources/setting_visibility/basic.cfg b/resources/setting_visibility/basic.cfg index f5552f3cd88..0193eb26ba7 100644 --- a/resources/setting_visibility/basic.cfg +++ b/resources/setting_visibility/basic.cfg @@ -53,7 +53,7 @@ adhesion_type adhesion_extruder_nr [dual] -prime_tower_mode +prime_tower_enable prime_tower_position_x prime_tower_position_y diff --git a/resources/setting_visibility/expert.cfg b/resources/setting_visibility/expert.cfg index 0a07fff4492..130b2580a4e 100644 --- a/resources/setting_visibility/expert.cfg +++ b/resources/setting_visibility/expert.cfg @@ -356,6 +356,7 @@ raft_fan_speed raft_is_shrink_plate [dual] +prime_tower_enable prime_tower_mode prime_tower_size prime_tower_min_volume From 85a82ea986c91ab4b88551dc2d15a497ffb6122d Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Tue, 27 Feb 2024 12:57:38 +0100 Subject: [PATCH 570/765] Fix prime_tower_enable setting use CURA-11645 --- resources/definitions/fdmprinter.def.json | 30 +++++++++++------------ 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 92856e9613b..2cea608c338 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -979,7 +979,7 @@ "description": "Width of a single prime tower line.", "type": "float", "unit": "mm", - "enabled": "'prime_tower_enable'", + "enabled": "prime_tower_enable", "default_value": 0.4, "value": "line_width", "minimum_value": "0.001", @@ -3363,7 +3363,7 @@ "description": "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal.", "type": "float", "unit": "mm/s", - "enabled": "'prime_tower_enable'", + "enabled": "prime_tower_enable", "default_value": 60, "value": "speed_print", "minimum_value": "0.1", @@ -3741,7 +3741,7 @@ "maximum_value_warning": "10000", "default_value": 3000, "value": "acceleration_print", - "enabled": "'prime_tower_enable' and resolveOrValue('acceleration_enabled')", + "enabled": "prime_tower_enable and resolveOrValue('acceleration_enabled')", "settable_per_mesh": false } } @@ -4060,7 +4060,7 @@ "maximum_value_warning": "50", "default_value": 20, "value": "jerk_print", - "enabled": "'prime_tower_enable' and resolveOrValue('jerk_enabled')", + "enabled": "prime_tower_enable and resolveOrValue('jerk_enabled')", "settable_per_mesh": false } } @@ -6827,7 +6827,7 @@ "description": "The width of the prime tower.", "type": "float", "unit": "mm", - "enabled": "'prime_tower_enable'", + "enabled": "prime_tower_enable", "default_value": 20, "resolve": "max(extruderValues('prime_tower_size'))", "minimum_value": "0", @@ -6846,7 +6846,7 @@ "default_value": 6, "minimum_value": "0", "maximum_value_warning": "(resolveOrValue('prime_tower_size') * 0.5) ** 2 * 3.14159 * resolveOrValue('layer_height') - sum(extruderValues('prime_tower_min_volume')) + prime_tower_min_volume", - "enabled": "'prime_tower_enable'", + "enabled": "prime_tower_enable", "settable_per_mesh": false, "settable_per_extruder": true }, @@ -6859,7 +6859,7 @@ "default_value": 5, "minimum_value": "line_width", "maximum_value_warning": "10.0", - "enabled": "'prime_tower_enable'", + "enabled": "prime_tower_enable", "settable_per_mesh": false, "settable_per_extruder": true }, @@ -6869,7 +6869,7 @@ "description": "The x coordinate of the position of the prime tower.", "type": "float", "unit": "mm", - "enabled": "'prime_tower_enable'", + "enabled": "prime_tower_enable", "default_value": 200, "value": "(resolveOrValue('machine_width') / 2 + resolveOrValue('prime_tower_size') / 2) if resolveOrValue('machine_shape') == 'elliptic' else (resolveOrValue('machine_width') - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('machine_nozzle_offset_x')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_x'))), 1)) - (resolveOrValue('machine_width') / 2 if resolveOrValue('machine_center_is_zero') else 0)", "maximum_value": "(machine_width / 2 if machine_center_is_zero else machine_width) - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0)", @@ -6883,7 +6883,7 @@ "description": "The y coordinate of the position of the prime tower.", "type": "float", "unit": "mm", - "enabled": "'prime_tower_enable'", + "enabled": "prime_tower_enable", "default_value": 200, "value": "machine_depth - prime_tower_size - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('machine_nozzle_offset_y')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (resolveOrValue('machine_depth') / 2 if resolveOrValue('machine_center_is_zero') else 0)", "maximum_value": "(machine_depth / 2 - resolveOrValue('prime_tower_size') if machine_center_is_zero else machine_depth - resolveOrValue('prime_tower_size')) - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0)", @@ -6896,7 +6896,7 @@ "label": "Wipe Inactive Nozzle on Prime Tower", "description": "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower.", "type": "bool", - "enabled": "'prime_tower_enable'", + "enabled": "prime_tower_enable", "default_value": true, "settable_per_mesh": false, "settable_per_extruder": true @@ -6907,7 +6907,7 @@ "label": "Prime Tower Base", "description": "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height.", "type": "bool", - "enabled": "'prime_tower_enable' and resolveOrValue('adhesion_type') != 'raft'", + "enabled": "prime_tower_enable and resolveOrValue('adhesion_type') != 'raft'", "default_value": false, "settable_per_mesh": false, "settable_per_extruder": false @@ -6919,7 +6919,7 @@ "description": "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area.", "type": "float", "unit": "mm", - "enabled": "'prime_tower_enable' and (resolveOrValue('prime_tower_brim_enable') or resolveOrValue('adhesion_type') == 'raft')", + "enabled": "prime_tower_enable and (resolveOrValue('prime_tower_brim_enable') or resolveOrValue('adhesion_type') == 'raft')", "default_value": 1.2, "minimum_value": "0", "maximum_value": "min(0.5 * machine_width, 0.5 * machine_depth)", @@ -6933,7 +6933,7 @@ "description": "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base.", "type": "float", "unit": "mm", - "enabled": "'prime_tower_enable' and (resolveOrValue('prime_tower_brim_enable') or resolveOrValue('adhesion_type') == 'raft')", + "enabled": "prime_tower_enable and (resolveOrValue('prime_tower_brim_enable') or resolveOrValue('adhesion_type') == 'raft')", "default_value": 0, "minimum_value": "0", "maximum_value": "machine_height", @@ -6945,7 +6945,7 @@ "label": "Prime Tower Base Slope", "description": "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker.", "type": "float", - "enabled": "'prime_tower_enable' and (resolveOrValue('prime_tower_brim_enable') or resolveOrValue('adhesion_type') == 'raft')", + "enabled": "prime_tower_enable and (resolveOrValue('prime_tower_brim_enable') or resolveOrValue('adhesion_type') == 'raft')", "default_value": 4, "minimum_value": "0", "maximum_value": "10", @@ -6963,7 +6963,7 @@ "minimum_value": "0", "minimum_value_warning": "raft_base_line_width", "maximum_value_warning": "100", - "enabled": "'prime_tower_enable' and resolveOrValue('adhesion_type') == 'raft'", + "enabled": "prime_tower_enable and resolveOrValue('adhesion_type') == 'raft'", "settable_per_mesh": false, "settable_per_extruder": true, "limit_to_extruder": "raft_base_extruder_nr" From 98becc9f25c901565eef3250c108caa0152cf29c Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Tue, 27 Feb 2024 13:02:46 +0100 Subject: [PATCH 571/765] Minor prime tower setting wording CURA-11645 --- resources/definitions/fdmprinter.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 2cea608c338..1db28b289cc 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6807,7 +6807,7 @@ }, "prime_tower_mode": { - "label": "Prime Tower", + "label": "Prime Tower Type", "description": "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other.
    ", "type": "enum", "value": "'interleaved' if (all(material_type_var == extruderValues('material_type')[0] for material_type_var in extruderValues('material_type')) and all(material_brand_var == extruderValues('material_brand')[0] for material_brand_var in extruderValues('material_brand'))) else 'normal'", From 426d5a4eb628f8fd173778b2fb46ca4e22041cd0 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Tue, 27 Feb 2024 13:40:14 +0100 Subject: [PATCH 572/765] Replace setting brim_outside_only by brim_location CURA-9838 --- resources/definitions/fdmprinter.def.json | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 1d453456a8e..c6fb8fbb0e6 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6069,12 +6069,18 @@ "settable_per_mesh": false, "settable_per_extruder": true }, - "brim_outside_only": + "brim_location": { - "label": "Brim Only on Outside", - "description": "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much.", - "type": "bool", - "default_value": true, + "label": "Brim Location", + "description": "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion.", + "type": "enum", + "options": + { + "outside": "Outside Only", + "inside": "Inside Only", + "everywhere": "Everywhere" + }, + "default_value": "outside", "enabled": "resolveOrValue('adhesion_type') == 'brim'", "limit_to_extruder": "skirt_brim_extruder_nr", "settable_per_mesh": false, From 1338a562efca7169a3dc38c5aec76180dbe3aa7a Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Tue, 27 Feb 2024 13:45:10 +0100 Subject: [PATCH 573/765] added drop models to buildplate as a right click option Also shortcut: ctrl+B CURA-10542 --- cura/CuraApplication.py | 6 +++--- cura/PlatformPhysics.py | 16 ++++------------ plugins/3MFReader/WorkspaceDialog.py | 5 ----- plugins/3MFReader/WorkspaceDialog.qml | 21 --------------------- resources/qml/Actions.qml | 10 +++++++++- resources/qml/Menus/ContextMenu.qml | 1 + resources/qml/Menus/EditMenu.qml | 1 + resources/qml/Preferences/GeneralPage.qml | 1 - 8 files changed, 18 insertions(+), 43 deletions(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 6132d8ab36b..680baefdb3b 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -1085,9 +1085,9 @@ def getMachineSettingsManager(self, *args) -> "MachineSettingsManager": def getTextManager(self, *args) -> "TextManager": return self._text_manager - @pyqtSlot(bool) - def getWorkplaceDropToBuildplate(self, drop_to_build_plate: bool) ->None: - return self._physics.setAppPerModelDropDown(drop_to_build_plate) + @pyqtSlot() + def setWorkplaceDropToBuildplate(self): + return self._physics.setAppPerModelDropDown() def getCuraFormulaFunctions(self, *args) -> "CuraFormulaFunctions": if self._cura_formula_functions is None: diff --git a/cura/PlatformPhysics.py b/cura/PlatformPhysics.py index 74fe05927d0..1f86258b42e 100755 --- a/cura/PlatformPhysics.py +++ b/cura/PlatformPhysics.py @@ -41,11 +41,9 @@ def __init__(self, controller, volume): Application.getInstance().getPreferences().addPreference("physics/automatic_drop_down", True) self._app_per_model_drop = None - def getAppPerModelDropDown(self): - return self._app_per_model_drop - - def setAppPerModelDropDown(self, drop_to_buildplate): - self._app_per_model_drop = drop_to_buildplate + def setAppPerModelDropDown(self): + self._app_per_model_drop = True + self._onChangeTimerFinished() def _onSceneChanged(self, source): if not source.callDecoration("isSliceable"): @@ -79,13 +77,7 @@ def _onChangeTimerFinished(self): # By shuffling the order of the nodes, this might happen a few times, but at some point it will resolve. random.shuffle(nodes) drop_down = False - # drop down in case nodes are asked to drop down from the user from workspaceDialog while opening 3mf - if self._app_per_model_drop and (self._app_per_model_drop != app_automatic_drop_down): - drop_down = True - # drop down in case the user has selected automated drop down preference for 3mf opening - if self._app_per_model_drop and app_automatic_drop_down: - drop_down= True - + if self._app_per_model_drop == True: drop_down = True for node in nodes: if node is root or not isinstance(node, SceneNode) or node.getBoundingBox() is None: diff --git a/plugins/3MFReader/WorkspaceDialog.py b/plugins/3MFReader/WorkspaceDialog.py index c0ea9509152..1fafcf59f5b 100644 --- a/plugins/3MFReader/WorkspaceDialog.py +++ b/plugins/3MFReader/WorkspaceDialog.py @@ -353,11 +353,6 @@ def closeBackend(self) -> None: Application.getInstance().getBackend().close() - @pyqtSlot(bool) - def setDropToBuildPlateForModel(self, drop_to_buildplate: bool) -> None: - CuraApplication.getInstance().getWorkplaceDropToBuildplate(drop_to_buildplate) - - def setMaterialConflict(self, material_conflict: bool) -> None: if self._has_material_conflict != material_conflict: self._has_material_conflict = material_conflict diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index dbd6356e942..8d06b32e141 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -351,26 +351,6 @@ UM.Dialog } } - Row - { - id: dropToBuildPlate - width: parent.width - height: childrenRect.height - spacing: UM.Theme.getSize("default_margin").width - UM.CheckBox - { - id: checkDropModels - text: catalog.i18nc("@text:window", "Drop models to buildplate") - checked: UM.Preferences.getValue("physics/automatic_drop_down") - onCheckedChanged: manager.setDropToBuildPlateForModel(checked) - } - function reloadValue() - { - manager.setDropToBuildPlateForModel(checkDropModels.checked) - checkDropModels.checked = UM.Preferences.getValue("physics/automatic_drop_down") - } - } - Row { id: clearBuildPlateWarning @@ -493,7 +473,6 @@ UM.Dialog materialSection.reloadValues() profileSection.reloadValues() printerSection.reloadValues() - dropToBuildPlate.reloadValue() } } } diff --git a/resources/qml/Actions.qml b/resources/qml/Actions.qml index 8fe4a118474..7acf39ecb28 100644 --- a/resources/qml/Actions.qml +++ b/resources/qml/Actions.qml @@ -39,7 +39,7 @@ Item property alias printObjectAfterNext: printObjectAfterNextAction property alias multiplyObject: multiplyObjectAction - + property alias dropAll: dropAllAction property alias selectAll: selectAllAction property alias deleteAll: deleteAllAction property alias reloadAll: reloadAllAction @@ -490,6 +490,14 @@ Item shortcut: "Shift+Ctrl+R" } + Action + { + id: dropAllAction + text: catalog.i18nc("@action:inmenu menubar:edit","Drop All Models to buildplate") + shortcut: "Ctrl+B" + onTriggered: CuraApplication.setWorkplaceDropToBuildplate() + } + Action { id: resetAllTranslationAction diff --git a/resources/qml/Menus/ContextMenu.qml b/resources/qml/Menus/ContextMenu.qml index 1b32c242548..1ab0a1332ed 100644 --- a/resources/qml/Menus/ContextMenu.qml +++ b/resources/qml/Menus/ContextMenu.qml @@ -71,6 +71,7 @@ Cura.Menu Cura.MenuItem { action: Cura.Actions.reloadAll } Cura.MenuItem { action: Cura.Actions.resetAllTranslation } Cura.MenuItem { action: Cura.Actions.resetAll } + Cura.MenuItem { action: Cura.Actions.dropAll } // Group actions Cura.MenuSeparator {} diff --git a/resources/qml/Menus/EditMenu.qml b/resources/qml/Menus/EditMenu.qml index 728b3b212bf..fdab70360ea 100644 --- a/resources/qml/Menus/EditMenu.qml +++ b/resources/qml/Menus/EditMenu.qml @@ -21,6 +21,7 @@ Cura.Menu Cura.MenuItem { action: Cura.Actions.deleteAll } Cura.MenuItem { action: Cura.Actions.resetAllTranslation } Cura.MenuItem { action: Cura.Actions.resetAll } + Cura.MenuItem { action: Cura.Actions.dropAll } Cura.MenuSeparator { } Cura.MenuItem { action: Cura.Actions.groupObjects } Cura.MenuItem { action: Cura.Actions.mergeObjects } diff --git a/resources/qml/Preferences/GeneralPage.qml b/resources/qml/Preferences/GeneralPage.qml index d87ecac0b3f..0f50f169efa 100644 --- a/resources/qml/Preferences/GeneralPage.qml +++ b/resources/qml/Preferences/GeneralPage.qml @@ -513,7 +513,6 @@ UM.PreferencesPage onCheckedChanged: { UM.Preferences.setValue("physics/automatic_drop_down", checked) - CuraApplication.getWorkplaceDropToBuildplate(checked) } } } From 586590605774c8bca7a08a71f62571e8fac80332 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Tue, 27 Feb 2024 13:52:59 +0100 Subject: [PATCH 574/765] function Name change CURA-10542 --- cura/CuraApplication.py | 2 +- cura/PlatformPhysics.py | 13 +++++-------- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 680baefdb3b..c32017371f3 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -1087,7 +1087,7 @@ def getTextManager(self, *args) -> "TextManager": @pyqtSlot() def setWorkplaceDropToBuildplate(self): - return self._physics.setAppPerModelDropDown() + return self._physics.setAppAllModelDropDown() def getCuraFormulaFunctions(self, *args) -> "CuraFormulaFunctions": if self._cura_formula_functions is None: diff --git a/cura/PlatformPhysics.py b/cura/PlatformPhysics.py index 1f86258b42e..c61f78d86e1 100755 --- a/cura/PlatformPhysics.py +++ b/cura/PlatformPhysics.py @@ -39,10 +39,10 @@ def __init__(self, controller, volume): Application.getInstance().getPreferences().addPreference("physics/automatic_push_free", False) Application.getInstance().getPreferences().addPreference("physics/automatic_drop_down", True) - self._app_per_model_drop = None + self._app_all_model_drop = False - def setAppPerModelDropDown(self): - self._app_per_model_drop = True + def setAppAllModelDropDown(self): + self._app_all_model_drop = True self._onChangeTimerFinished() def _onSceneChanged(self, source): @@ -76,9 +76,6 @@ def _onChangeTimerFinished(self): # We try to shuffle all the nodes to prevent "locked" situations, where iteration B inverts iteration A. # By shuffling the order of the nodes, this might happen a few times, but at some point it will resolve. random.shuffle(nodes) - drop_down = False - if self._app_per_model_drop == True: drop_down = True - for node in nodes: if node is root or not isinstance(node, SceneNode) or node.getBoundingBox() is None: continue @@ -88,7 +85,7 @@ def _onChangeTimerFinished(self): # Move it downwards if bottom is above platform move_vector = Vector() - if (node.getSetting(SceneNodeSettings.AutoDropDown, app_automatic_drop_down) or drop_down) and not (node.getParent() and node.getParent().callDecoration("isGroup") or node.getParent() != root) and node.isEnabled(): + if (node.getSetting(SceneNodeSettings.AutoDropDown, app_automatic_drop_down) or self._app_all_model_drop) and not (node.getParent() and node.getParent().callDecoration("isGroup") or node.getParent() != root) and node.isEnabled(): z_offset = node.callDecoration("getZOffset") if node.getDecorator(ZOffsetDecorator.ZOffsetDecorator) else 0 move_vector = move_vector.set(y=-bbox.bottom + z_offset) @@ -177,7 +174,7 @@ def _onChangeTimerFinished(self): op.push() # setting this drop to model same as app_automatic_drop_down - self._app_per_model_drop = None + self._app_all_model_drop = False # After moving, we have to evaluate the boundary checks for nodes build_volume.updateNodeBoundaryCheck() From 002af4eb81e07be1b44620700e7e343e4d191369 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Tue, 27 Feb 2024 16:48:44 +0100 Subject: [PATCH 575/765] saving extruder settings on model exported_model_settings were supposed to be None instead of {} for 3mf saving CURA-10542 --- plugins/3MFWriter/ThreeMFWriter.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/3MFWriter/ThreeMFWriter.py b/plugins/3MFWriter/ThreeMFWriter.py index c3215056437..f1f0e087411 100644 --- a/plugins/3MFWriter/ThreeMFWriter.py +++ b/plugins/3MFWriter/ThreeMFWriter.py @@ -272,7 +272,8 @@ def write(self, stream, nodes, mode = MeshWriter.OutputMode.BinaryMode, export_s transformation_matrix.preMultiply(translation_matrix) root_node = UM.Application.Application.getInstance().getController().getScene().getRoot() - exported_model_settings = ThreeMFWriter._extractModelExportedSettings(export_settings_model) + exported_model_settings = ThreeMFWriter._extractModelExportedSettings(export_settings_model) if export_settings_model != None else None + for node in nodes: if node == root_node: for root_child in node.getChildren(): From 72448eec5bb6a8b0905d053c96fdd8b1110e7e99 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Wed, 28 Feb 2024 10:22:35 +0100 Subject: [PATCH 576/765] commit to create package CURA-10542 --- plugins/3MFWriter/ThreeMFWriter.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/3MFWriter/ThreeMFWriter.py b/plugins/3MFWriter/ThreeMFWriter.py index f1f0e087411..8759cd3cace 100644 --- a/plugins/3MFWriter/ThreeMFWriter.py +++ b/plugins/3MFWriter/ThreeMFWriter.py @@ -295,10 +295,12 @@ def write(self, stream, nodes, mode = MeshWriter.OutputMode.BinaryMode, export_s archive.writestr(model_file, scene_string) archive.writestr(content_types_file, b' \n' + ET.tostring(content_types)) archive.writestr(relations_file, b' \n' + ET.tostring(relations_element)) + except Exception as error: Logger.logException("e", "Error writing zip file") self.setInformation(str(error)) return False + finally: if not self._store_archive: archive.close() From bf73623711ab4200f5b6228be36f7a7cdfee7a63 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Wed, 28 Feb 2024 10:38:28 +0100 Subject: [PATCH 577/765] commit to create package CURA-11403 --- plugins/3MFWriter/ThreeMFWriter.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugins/3MFWriter/ThreeMFWriter.py b/plugins/3MFWriter/ThreeMFWriter.py index 8759cd3cace..f1f0e087411 100644 --- a/plugins/3MFWriter/ThreeMFWriter.py +++ b/plugins/3MFWriter/ThreeMFWriter.py @@ -295,12 +295,10 @@ def write(self, stream, nodes, mode = MeshWriter.OutputMode.BinaryMode, export_s archive.writestr(model_file, scene_string) archive.writestr(content_types_file, b' \n' + ET.tostring(content_types)) archive.writestr(relations_file, b' \n' + ET.tostring(relations_element)) - except Exception as error: Logger.logException("e", "Error writing zip file") self.setInformation(str(error)) return False - finally: if not self._store_archive: archive.close() From 8d2e72a10928426b8e8b903011714fb6e25bf5d1 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Wed, 28 Feb 2024 14:31:51 +0100 Subject: [PATCH 578/765] adding logo for cura project CURA-11403 --- plugins/3MFWriter/ThreeMFWriter.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/plugins/3MFWriter/ThreeMFWriter.py b/plugins/3MFWriter/ThreeMFWriter.py index f1f0e087411..5583059a2f2 100644 --- a/plugins/3MFWriter/ThreeMFWriter.py +++ b/plugins/3MFWriter/ThreeMFWriter.py @@ -175,9 +175,9 @@ def _convertUMNodeToSavitarNode(um_node, def getArchive(self): return self._archive - def _addShareLogoToThumbnail(self, primary_image): + def _addLogoToThumbnail(self, primary_image, logo_name): # Load the icon png image - icon_image = QImage(Resources.getPath(Resources.Images, "cura-share.png")) + icon_image = QImage(Resources.getPath(Resources.Images, logo_name)) # Resize icon_image to be 1/4 of primary_image size new_width = int(primary_image.width() / 4) @@ -217,7 +217,9 @@ def write(self, stream, nodes, mode = MeshWriter.OutputMode.BinaryMode, export_s snapshot = self._createSnapshot() if snapshot: if export_settings_model != None: - self._addShareLogoToThumbnail(snapshot) + self._addLogoToThumbnail(snapshot, "cura-share.png") + elif export_settings_model == None and self._store_archive: + self._addLogoToThumbnail(snapshot, "cura-icon.png") thumbnail_buffer = QBuffer() thumbnail_buffer.open(QBuffer.OpenModeFlag.ReadWrite) snapshot.save(thumbnail_buffer, "PNG") From 57c57edb7d4f0e5a8d85c9a194f838e41a243299 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Thu, 29 Feb 2024 11:21:16 +0100 Subject: [PATCH 579/765] Change brim margin setting desc because its use has been extended CURA-9838 --- resources/definitions/fdmprinter.def.json | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index c6fb8fbb0e6..580a624224a 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6088,13 +6088,14 @@ }, "brim_inside_margin": { - "label": "Brim Inside Avoid Margin", - "description": "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes.", + "label": "Brim Avoid Margin", + "description": "When growing the brim around a surface, it may touch an other surface where brim is not expected. This removes all brim within this distance from clean surfaces.", "unit": "mm", "type": "float", - "default_value": 2.5, + "value": "line_width * 4", + "default_value": "1.6", "minimum_value": "0", - "enabled": "resolveOrValue('adhesion_type') == 'brim' and any(extruderValues('brim_outside_only'))", + "enabled": "resolveOrValue('adhesion_type') == 'brim'", "limit_to_extruder": "skirt_brim_extruder_nr", "settable_per_mesh": false, "settable_per_extruder": true From d7dbd13034e8e934ae15e103b15e0c3f000539e9 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Thu, 29 Feb 2024 12:00:28 +0100 Subject: [PATCH 580/765] Finalized changing brim_outside_only to briml_location CURA-9838 --- plugins/3MFWriter/SettingsExportModel.py | 2 +- resources/definitions/erzay3d.def.json | 2 +- resources/definitions/inat_base.def.json | 2 +- .../Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg | 2 +- resources/setting_visibility/advanced.cfg | 2 +- resources/setting_visibility/expert.cfg | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/plugins/3MFWriter/SettingsExportModel.py b/plugins/3MFWriter/SettingsExportModel.py index 3b034236c81..9769302f4ff 100644 --- a/plugins/3MFWriter/SettingsExportModel.py +++ b/plugins/3MFWriter/SettingsExportModel.py @@ -39,7 +39,7 @@ class SettingsExportModel(QObject): 'adaptive_layer_height_enabled', 'brim_gap', 'support_offset', - 'brim_outside_only', + 'brim_location', 'magic_spiralize', 'slicing_tolerance', 'outer_inset_first', diff --git a/resources/definitions/erzay3d.def.json b/resources/definitions/erzay3d.def.json index 28884a894ad..5baadf32e46 100644 --- a/resources/definitions/erzay3d.def.json +++ b/resources/definitions/erzay3d.def.json @@ -14,7 +14,7 @@ { "acceleration_print": { "default_value": 1000 }, "adhesion_type": { "default_value": "skirt" }, - "brim_outside_only": { "default_value": false }, + "brim_location": { "default_value": "everywhere" }, "default_material_print_temperature": { "default_value": 220 }, "infill_sparse_density": { "default_value": 20 }, "ironing_flow": { "default_value": 7.0 }, diff --git a/resources/definitions/inat_base.def.json b/resources/definitions/inat_base.def.json index 554b188b823..1d95bbbde44 100644 --- a/resources/definitions/inat_base.def.json +++ b/resources/definitions/inat_base.def.json @@ -113,7 +113,7 @@ "minimum_value_warning": "100" }, "adhesion_type": { "value": "'skirt'" }, - "brim_outside_only": { "value": false }, + "brim_location": { "value": "everywhere" }, "cool_fan_speed_min": { "value": "0.5*cool_fan_speed" }, "cool_min_layer_time_fan_speed_max": { "value": 10 }, "default_material_bed_temperature": { "maximum_value": "150" }, diff --git a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg index f4da80ded99..59fec06a3ef 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg @@ -14,7 +14,7 @@ weight = 0 [values] adhesion_type = brim brim_line_count = 14 -brim_outside_only = True +brim_location = outside brim_width = 8 connect_infill_polygons = True cool_fan_enabled = True diff --git a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg index a052562cd34..549c24a6c6b 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg @@ -14,7 +14,7 @@ weight = 0 [values] adhesion_type = brim brim_line_count = 14 -brim_outside_only = True +brim_location = outside brim_width = 8 connect_infill_polygons = True cool_fan_enabled = True diff --git a/resources/setting_visibility/advanced.cfg b/resources/setting_visibility/advanced.cfg index 55a36075be6..652f33b4a43 100644 --- a/resources/setting_visibility/advanced.cfg +++ b/resources/setting_visibility/advanced.cfg @@ -124,7 +124,7 @@ adhesion_extruder_nr skirt_line_count brim_width brim_line_count -brim_outside_only +brim_location [dual] prime_tower_enable diff --git a/resources/setting_visibility/expert.cfg b/resources/setting_visibility/expert.cfg index 130b2580a4e..ce5b78c76c1 100644 --- a/resources/setting_visibility/expert.cfg +++ b/resources/setting_visibility/expert.cfg @@ -327,7 +327,7 @@ skirt_brim_minimal_length brim_width brim_gap brim_line_count -brim_outside_only +brim_location brim_smart_ordering raft_margin raft_smoothing From f3c49e494ebb74163c4a2c502d1b981bdcc5d6e3 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Thu, 29 Feb 2024 15:45:13 +0100 Subject: [PATCH 581/765] adding option of opening model as UCP or normal project file CURA-11403 --- cura/CuraActions.py | 10 +- cura/CuraApplication.py | 12 ++ plugins/3MFReader/ThreeMFWorkspaceReader.py | 16 ++- plugins/3MFWriter/ThreeMFWriter.py | 17 ++- resources/qml/Cura.qml | 63 ++++++++--- .../AskOpenAsProjectOrUcpOrImportModel.qml | 104 ++++++++++++++++++ 6 files changed, 187 insertions(+), 35 deletions(-) create mode 100644 resources/qml/Dialogs/AskOpenAsProjectOrUcpOrImportModel.qml diff --git a/cura/CuraActions.py b/cura/CuraActions.py index e33ce8123df..9612e473b81 100644 --- a/cura/CuraActions.py +++ b/cura/CuraActions.py @@ -1,6 +1,6 @@ # Copyright (c) 2023 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. - +import zipfile from typing import List, cast from PyQt6.QtCore import QObject, QUrl, pyqtSignal, pyqtProperty @@ -33,6 +33,7 @@ from UM.Logger import Logger from UM.Scene.SceneNode import SceneNode +USER_SETTINGS_PATH = "Cura/user-settings.json" class CuraActions(QObject): def __init__(self, parent: QObject = None) -> None: @@ -195,6 +196,13 @@ def setExtruderForSelection(self, extruder_id: str) -> None: operation.addOperation(SetObjectExtruderOperation(node, extruder_id)) operation.push() + @pyqtSlot(str, result = bool) + def isProjectUcp(self, file_url) -> bool: + file_name = QUrl(file_url).toLocalFile() + archive = zipfile.ZipFile(file_name, "r") + cura_file_names = [name for name in archive.namelist() if name.startswith("Cura/")] + return USER_SETTINGS_PATH in cura_file_names + @pyqtSlot(int) def setBuildPlateForSelection(self, build_plate_nr: int) -> None: Logger.log("d", "Setting build plate number... %d" % build_plate_nr) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index c32017371f3..00e6304c0a3 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -1979,6 +1979,18 @@ def log(self, msg): openProjectFile = pyqtSignal(QUrl, bool, arguments = ["project_file", "add_to_recent_files"]) # Emitted when a project file is about to open. + @pyqtSlot(QUrl, bool) + def readLocalUcpFile(self, file: QUrl, add_to_recent_files: bool = True): + + file_name = QUrl(file).toLocalFile() + workspace_reader = self.getWorkspaceFileHandler() + if workspace_reader is None: + Logger.log("w", "Workspace reader not found") + return + + workspace_reader.getReaderForFile(file_name).setOpenAsUcp(True) + workspace_reader.readLocalFile(file, add_to_recent_files) + @pyqtSlot(QUrl, str, bool) @pyqtSlot(QUrl, str) @pyqtSlot(QUrl) diff --git a/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py index 25e2afa8bd2..0e527590f5b 100755 --- a/plugins/3MFReader/ThreeMFWorkspaceReader.py +++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py @@ -117,6 +117,7 @@ def __init__(self) -> None: self._supported_extensions = [".3mf"] self._dialog = WorkspaceDialog() self._3mf_mesh_reader = None + self._is_ucp = False self._container_registry = ContainerRegistry.getInstance() # suffixes registered with the MimeTypes don't start with a dot '.' @@ -153,6 +154,9 @@ def _clearState(self): self._load_profile = False self._user_settings = {} + def setOpenAsUcp(self, openAsUcp: bool): + self._is_ucp = openAsUcp + def getNewId(self, old_id: str): """Get a unique name based on the old_id. This is different from directly calling the registry in that it caches results. @@ -242,7 +246,7 @@ def preRead(self, file_name, show_dialog=True, *args, **kwargs): # Read definition containers # machine_definition_id = None - updatable_machines = None if is_ucp else [] + updatable_machines = None if self._is_ucp else [] machine_definition_container_count = 0 extruder_definition_container_count = 0 definition_container_files = [name for name in cura_file_names if name.endswith(self._definition_container_suffix)] @@ -609,7 +613,7 @@ def preRead(self, file_name, show_dialog=True, *args, **kwargs): # Load the user specifically exported settings self._dialog.exportedSettingModel.clear() - if is_ucp: + if self._is_ucp: try: self._user_settings = json.loads(archive.open("Cura/user-settings.json").read().decode("utf-8")) any_extruder_stack = ExtruderManager.getInstance().getExtruderStack(0) @@ -658,8 +662,8 @@ def preRead(self, file_name, show_dialog=True, *args, **kwargs): self._dialog.setVariantType(variant_type_name) self._dialog.setHasObjectsOnPlate(Application.getInstance().platformActivity) self._dialog.setMissingPackagesMetadata(missing_package_metadata) - self._dialog.setHasVisibleSelectSameProfileChanged(is_ucp) - self._dialog.setAllowCreatemachine(not is_ucp) + self._dialog.setHasVisibleSelectSameProfileChanged(self._is_ucp) + self._dialog.setAllowCreatemachine(not self._is_ucp) self._dialog.show() @@ -701,7 +705,7 @@ def preRead(self, file_name, show_dialog=True, *args, **kwargs): if self._dialog.getResult() == {}: return WorkspaceReader.PreReadResult.cancelled - self._load_profile = not is_ucp or (self._dialog.selectSameProfileChecked and self._dialog.isCompatibleMachine) + self._load_profile = not self._is_ucp self._resolve_strategies = self._dialog.getResult() # @@ -717,7 +721,7 @@ def preRead(self, file_name, show_dialog=True, *args, **kwargs): if key not in containers_found_dict or strategy is not None: continue self._resolve_strategies[key] = "override" if containers_found_dict[key] else "new" - + self._is_ucp = False return WorkspaceReader.PreReadResult.accepted @call_on_qt_thread diff --git a/plugins/3MFWriter/ThreeMFWriter.py b/plugins/3MFWriter/ThreeMFWriter.py index 5583059a2f2..3389941ed82 100644 --- a/plugins/3MFWriter/ThreeMFWriter.py +++ b/plugins/3MFWriter/ThreeMFWriter.py @@ -135,16 +135,13 @@ def _convertUMNodeToSavitarNode(um_node, stack = um_node.callDecoration("getStack") if stack is not None: changed_setting_keys = stack.getTop().getAllKeys() - - if exported_settings is None: - # Ensure that we save the extruder used for this object in a multi-extrusion setup - if stack.getProperty("machine_extruder_count", "value") > 1: - changed_setting_keys.add("extruder_nr") - - # Get values for all changed settings & save them. - for key in changed_setting_keys: - savitar_node.setSetting("cura:" + key, str(stack.getProperty(key, "value"))) - else: + # Ensure that we save the extruder used for this object in a multi-extrusion setup + if stack.getProperty("machine_extruder_count", "value") > 1: + changed_setting_keys.add("extruder_nr") + # Get values for all changed settings & save them. + for key in changed_setting_keys: + savitar_node.setSetting("cura:" + key, str(stack.getProperty(key, "value"))) + if exported_settings is not None: # We want to export only the specified settings if um_node.getName() in exported_settings: model_exported_settings = exported_settings[um_node.getName()] diff --git a/resources/qml/Cura.qml b/resources/qml/Cura.qml index 49833639463..b01cd192c37 100644 --- a/resources/qml/Cura.qml +++ b/resources/qml/Cura.qml @@ -701,24 +701,34 @@ UM.MainWindow if (hasProjectFile) { - var projectFile = projectFileUrlList[0]; - - // check preference - var choice = UM.Preferences.getValue("cura/choice_on_open_project"); - if (choice == "open_as_project") - { - openFilesIncludingProjectsDialog.loadProjectFile(projectFile); - } - else if (choice == "open_as_model") + var projectFile = projectFileUrlList[0] + var is_ucp = CuraActions.isProjectUcp(projectFile); + print("this file is ucp", is_ucp); + if (is_ucp) { - openFilesIncludingProjectsDialog.loadModelFiles([projectFile].slice()); + askOpenAsProjectOrUcpOrImportModelsDialog.fileUrl = projectFile; + askOpenAsProjectOrUcpOrImportModelsDialog.addToRecent = true; + askOpenAsProjectOrUcpOrImportModelsDialog.show(); } - else // always ask + else { - // ask whether to open as project or as models - askOpenAsProjectOrModelsDialog.fileUrl = projectFile; - askOpenAsProjectOrModelsDialog.addToRecent = true; - askOpenAsProjectOrModelsDialog.show(); + // check preference + var choice = UM.Preferences.getValue("cura/choice_on_open_project"); + if (choice == "open_as_project") + { + openFilesIncludingProjectsDialog.loadProjectFile(projectFile); + } + else if (choice == "open_as_model") + { + openFilesIncludingProjectsDialog.loadModelFiles([projectFile].slice()); + } + else // always ask + { + // ask whether to open as project or as models + askOpenAsProjectOrModelsDialog.fileUrl = projectFile; + askOpenAsProjectOrModelsDialog.addToRecent = true; + askOpenAsProjectOrModelsDialog.show(); + } } } else @@ -769,14 +779,31 @@ UM.MainWindow id: askOpenAsProjectOrModelsDialog } + AskOpenAsProjectOrUcpOrImportModel + { + id: askOpenAsProjectOrUcpOrImportModelsDialog + } + Connections { target: CuraApplication function onOpenProjectFile(project_file, add_to_recent_files) { - askOpenAsProjectOrModelsDialog.fileUrl = project_file; - askOpenAsProjectOrModelsDialog.addToRecent = add_to_recent_files; - askOpenAsProjectOrModelsDialog.show(); + var is_ucp = CuraActions.isProjectUcp(project_file); + print("this file is ucp", is_ucp); + if (is_ucp) + { + + askOpenAsProjectOrUcpOrImportModelsDialog.fileUrl = project_file; + askOpenAsProjectOrUcpOrImportModelsDialog.addToRecent = add_to_recent_files; + askOpenAsProjectOrUcpOrImportModelsDialog.show(); + } + else + { + askOpenAsProjectOrModelsDialog.fileUrl = project_file; + askOpenAsProjectOrModelsDialog.addToRecent = add_to_recent_files; + askOpenAsProjectOrModelsDialog.show(); + } } } diff --git a/resources/qml/Dialogs/AskOpenAsProjectOrUcpOrImportModel.qml b/resources/qml/Dialogs/AskOpenAsProjectOrUcpOrImportModel.qml new file mode 100644 index 00000000000..9791a3e4513 --- /dev/null +++ b/resources/qml/Dialogs/AskOpenAsProjectOrUcpOrImportModel.qml @@ -0,0 +1,104 @@ +// Copyright (c) 2022 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.2 +import QtQuick.Controls 2.1 +import QtQuick.Layouts 1.1 + +import UM 1.5 as UM +import Cura 1.0 as Cura + + +UM.Dialog +{ + // This dialog asks the user whether he/she wants to open a project file as a project or import models. + id: base + + title: catalog.i18nc("@title:window", "Open Universal Cura Project (UCP) file") + width: UM.Theme.getSize("small_popup_dialog").width + height: UM.Theme.getSize("small_popup_dialog").height + backgroundColor: UM.Theme.getColor("main_background") + + maximumHeight: height + maximumWidth: width + minimumHeight: maximumHeight + minimumWidth: maximumWidth + + modality: Qt.WindowModal + + property var fileUrl + property var addToRecent: true //Whether to add this file to the recent files list after reading it. + + // load the entire project + function loadProjectFile() { + + UM.WorkspaceFileHandler.readLocalFile(base.fileUrl, base.addToRecent); + + base.hide() + } + + // load the project file as separated models + function loadModelFiles() { + CuraApplication.readLocalFile(base.fileUrl, "open_as_model", base.addToRecent) + + base.hide() + } + + // load the project file as Universal cura project + function loadUcpFiles() { + CuraApplication.readLocalUcpFile(base.fileUrl, base.addToRecent) + + base.hide() + } + + // override UM.Dialog accept + function accept () { + + // when hitting 'enter', we always open as project unless open_as_model was explicitly stored as preference + if (openAsPreference == "open_as_model") { + loadModelFiles() + } else if (openAsPreference == "open_as_ucp"){ + loadUcpFiles() + }else { + loadProjectFile() + } + } + + Column + { + anchors.fill: parent + spacing: UM.Theme.getSize("default_margin").height + + UM.Label + { + id: questionText + width: parent.width + text: catalog.i18nc("@text:window", "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?") + wrapMode: Text.WordWrap + } + } + + onAccepted: loadProjectFile() + onRejected: loadModelFiles() + + buttonSpacing: UM.Theme.getSize("thin_margin").width + + rightButtons: + [ + Cura.SecondaryButton + { + text: catalog.i18nc("@action:button", "Open as project") + onClicked: loadProjectFile() + }, + Cura.PrimaryButton + { + text: catalog.i18nc("@action:button", "Open as UCP") + onClicked: loadUcpFiles() + }, + Cura.SecondaryButton + { + text: catalog.i18nc("@action:button", "Import models") + onClicked: loadModelFiles() + } + ] +} From f678ff2de25a207dcdeda084e89ce413fb0869fd Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Thu, 29 Feb 2024 18:51:48 +0100 Subject: [PATCH 582/765] icon additon in open SVG CURA-11403 --- plugins/3MFWriter/SettingSelection.qml | 2 +- plugins/3MFWriter/ThreeMFWriter.py | 17 +++++---- resources/qml/Cura.qml | 2 - .../AskOpenAsProjectOrUcpOrImportModel.qml | 19 ++-------- .../icons/default/CuraShareIcon.svg | 37 +++++++++++++++++++ 5 files changed, 51 insertions(+), 26 deletions(-) create mode 100644 resources/themes/cura-light/icons/default/CuraShareIcon.svg diff --git a/plugins/3MFWriter/SettingSelection.qml b/plugins/3MFWriter/SettingSelection.qml index 478c2d393c5..a50c02f11cb 100644 --- a/plugins/3MFWriter/SettingSelection.qml +++ b/plugins/3MFWriter/SettingSelection.qml @@ -19,7 +19,7 @@ RowLayout Layout.preferredWidth: UM.Theme.getSize("setting").width checked: modelData.selected onClicked: modelData.selected = checked - enabled: modelData.selectable + } UM.Label diff --git a/plugins/3MFWriter/ThreeMFWriter.py b/plugins/3MFWriter/ThreeMFWriter.py index 3389941ed82..5583059a2f2 100644 --- a/plugins/3MFWriter/ThreeMFWriter.py +++ b/plugins/3MFWriter/ThreeMFWriter.py @@ -135,13 +135,16 @@ def _convertUMNodeToSavitarNode(um_node, stack = um_node.callDecoration("getStack") if stack is not None: changed_setting_keys = stack.getTop().getAllKeys() - # Ensure that we save the extruder used for this object in a multi-extrusion setup - if stack.getProperty("machine_extruder_count", "value") > 1: - changed_setting_keys.add("extruder_nr") - # Get values for all changed settings & save them. - for key in changed_setting_keys: - savitar_node.setSetting("cura:" + key, str(stack.getProperty(key, "value"))) - if exported_settings is not None: + + if exported_settings is None: + # Ensure that we save the extruder used for this object in a multi-extrusion setup + if stack.getProperty("machine_extruder_count", "value") > 1: + changed_setting_keys.add("extruder_nr") + + # Get values for all changed settings & save them. + for key in changed_setting_keys: + savitar_node.setSetting("cura:" + key, str(stack.getProperty(key, "value"))) + else: # We want to export only the specified settings if um_node.getName() in exported_settings: model_exported_settings = exported_settings[um_node.getName()] diff --git a/resources/qml/Cura.qml b/resources/qml/Cura.qml index b01cd192c37..a07bb598d8f 100644 --- a/resources/qml/Cura.qml +++ b/resources/qml/Cura.qml @@ -703,7 +703,6 @@ UM.MainWindow { var projectFile = projectFileUrlList[0] var is_ucp = CuraActions.isProjectUcp(projectFile); - print("this file is ucp", is_ucp); if (is_ucp) { askOpenAsProjectOrUcpOrImportModelsDialog.fileUrl = projectFile; @@ -790,7 +789,6 @@ UM.MainWindow function onOpenProjectFile(project_file, add_to_recent_files) { var is_ucp = CuraActions.isProjectUcp(project_file); - print("this file is ucp", is_ucp); if (is_ucp) { diff --git a/resources/qml/Dialogs/AskOpenAsProjectOrUcpOrImportModel.qml b/resources/qml/Dialogs/AskOpenAsProjectOrUcpOrImportModel.qml index 9791a3e4513..a68c48b4a62 100644 --- a/resources/qml/Dialogs/AskOpenAsProjectOrUcpOrImportModel.qml +++ b/resources/qml/Dialogs/AskOpenAsProjectOrUcpOrImportModel.qml @@ -29,13 +29,6 @@ UM.Dialog property var fileUrl property var addToRecent: true //Whether to add this file to the recent files list after reading it. - // load the entire project - function loadProjectFile() { - - UM.WorkspaceFileHandler.readLocalFile(base.fileUrl, base.addToRecent); - - base.hide() - } // load the project file as separated models function loadModelFiles() { @@ -57,10 +50,8 @@ UM.Dialog // when hitting 'enter', we always open as project unless open_as_model was explicitly stored as preference if (openAsPreference == "open_as_model") { loadModelFiles() - } else if (openAsPreference == "open_as_ucp"){ + } else{ loadUcpFiles() - }else { - loadProjectFile() } } @@ -78,21 +69,17 @@ UM.Dialog } } - onAccepted: loadProjectFile() + onAccepted: loadUcpFile() onRejected: loadModelFiles() buttonSpacing: UM.Theme.getSize("thin_margin").width rightButtons: [ - Cura.SecondaryButton - { - text: catalog.i18nc("@action:button", "Open as project") - onClicked: loadProjectFile() - }, Cura.PrimaryButton { text: catalog.i18nc("@action:button", "Open as UCP") + iconSource: UM.Theme.getIcon("CuraShareIcon") onClicked: loadUcpFiles() }, Cura.SecondaryButton diff --git a/resources/themes/cura-light/icons/default/CuraShareIcon.svg b/resources/themes/cura-light/icons/default/CuraShareIcon.svg new file mode 100644 index 00000000000..fb9a6b922cc --- /dev/null +++ b/resources/themes/cura-light/icons/default/CuraShareIcon.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From b342574c1991552b545b9c63a98bd902b94957df Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 1 Mar 2024 09:17:37 +0100 Subject: [PATCH 583/765] Change slicing crash error message CURA-11445 --- plugins/CuraEngineBackend/CuraEngineBackend.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/plugins/CuraEngineBackend/CuraEngineBackend.py b/plugins/CuraEngineBackend/CuraEngineBackend.py index 66949eeaf53..c73dee2fb08 100755 --- a/plugins/CuraEngineBackend/CuraEngineBackend.py +++ b/plugins/CuraEngineBackend/CuraEngineBackend.py @@ -181,7 +181,10 @@ def __init__(self) -> None: application.getPreferences().preferenceChanged.connect(self._onPreferencesChanged) self._slicing_error_message = Message( - text = catalog.i18nc("@message", "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker."), + text = catalog.i18nc("@message", "Oops! We encountered an unexpected error during your slicing process. " + "Rest assured, we've automatically received the crash logs for analysis, " + "if you have not disabled data sharing in your preferences. To assist us " + "further, consider sharing your project details on our issue tracker."), title = catalog.i18nc("@message:title", "Slicing failed"), message_type = Message.MessageType.ERROR ) From 709e362ffad376888ad4174f950ac7b8f902289c Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Fri, 1 Mar 2024 09:46:29 +0100 Subject: [PATCH 584/765] Cleanup and extention of exclude lists. Protection of PEI flex plate against high probe and first layer temperature. Relates to PP-441 --- resources/definitions/ultimaker.def.json | 4 +- resources/definitions/ultimaker2.def.json | 29 +++++++------- .../definitions/ultimaker2_plus.def.json | 39 ++++--------------- .../ultimaker2_plus_connect.def.json | 18 ++++----- resources/definitions/ultimaker3.def.json | 6 +-- .../definitions/ultimaker_original.def.json | 39 ++++--------------- .../ultimaker_original_dual.def.json | 39 ++++--------------- resources/definitions/ultimaker_s3.def.json | 4 +- resources/definitions/ultimaker_s5.def.json | 4 ++ resources/definitions/ultimaker_s7.def.json | 4 +- 10 files changed, 59 insertions(+), 127 deletions(-) diff --git a/resources/definitions/ultimaker.def.json b/resources/definitions/ultimaker.def.json index 9f99b878be3..ef7fc7b1cb1 100644 --- a/resources/definitions/ultimaker.def.json +++ b/resources/definitions/ultimaker.def.json @@ -8,8 +8,8 @@ "author": "Ultimaker", "manufacturer": "Ultimaker B.V.", "exclude_materials": [ - "generic_hips", - "structur3d_dap100silicone" + "structur3d_*", + "generic_hips" ] }, "overrides": diff --git a/resources/definitions/ultimaker2.def.json b/resources/definitions/ultimaker2.def.json index def26c9b6f1..0609cfabf95 100644 --- a/resources/definitions/ultimaker2.def.json +++ b/resources/definitions/ultimaker2.def.json @@ -10,23 +10,20 @@ "file_formats": "text/x-gcode", "platform": "ultimaker2_platform.obj", "exclude_materials": [ + "structur3d_*", "generic_hips", - "generic_petg", - "structur3d_dap100silicone", - "ultimaker_petg_red", - "ultimaker_petg_blue", - "ultimaker_petg_grey", - "ultimaker_petg_black", - "ultimaker_petg_green", - "ultimaker_petg_white", - "ultimaker_petg_orange", - "ultimaker_petg_silver", - "ultimaker_petg_yellow", - "ultimaker_petg_transparent", - "ultimaker_petg_red_translucent", - "ultimaker_petg_blue_translucent", - "ultimaker_petg_green_translucent", - "ultimaker_petg_yellow_fluorescent" + "generic_cffcpe", + "generic_cffpa", + "generic_gffcpe", + "generic_gffpa", + "generic_pekk", + "generic_pva", + "generic_tough_pla", + "ultimaker_bam", + "ultimaker_pva", + "ultimaker_tough_pla_*", + "ultimaker_petg_*", + "ultimaker_petcf_*" ], "firmware_file": "MarlinUltimaker2.hex", "has_machine_quality": true, diff --git a/resources/definitions/ultimaker2_plus.def.json b/resources/definitions/ultimaker2_plus.def.json index 1b3ddcc953e..61dd8cae45a 100644 --- a/resources/definitions/ultimaker2_plus.def.json +++ b/resources/definitions/ultimaker2_plus.def.json @@ -9,43 +9,20 @@ "file_formats": "text/x-gcode", "platform": "ultimaker2_platform.obj", "exclude_materials": [ + "structur3d_*", "generic_hips", - "generic_petg", - "generic_bam", - "ultimaker_bam", - "generic_pva", - "ultimaker_pva", - "generic_tough_pla", - "ultimaker_tough_pla_black", - "ultimaker_tough_pla_green", - "ultimaker_tough_pla_red", - "ultimaker_tough_pla_white", - "ultimaker_tough_pla_blue", - "ultimaker_tough_pla_gray", - "ultimaker_tough_pla_yellow", "generic_cffcpe", "generic_cffpa", "generic_gffcpe", "generic_gffpa", "generic_petcf", - "structur3d_dap100silicone", - "ultimaker_petg_red", - "ultimaker_petg_blue", - "ultimaker_petg_grey", - "ultimaker_petg_black", - "ultimaker_petg_green", - "ultimaker_petg_white", - "ultimaker_petg_orange", - "ultimaker_petg_silver", - "ultimaker_petg_yellow", - "ultimaker_petg_transparent", - "ultimaker_petg_red_translucent", - "ultimaker_petg_blue_translucent", - "ultimaker_petg_green_translucent", - "ultimaker_petg_yellow_fluorescent", - "ultimaker_petcf_black", - "ultimaker_petcf_blue", - "ultimaker_petcf_gray" + "generic_pva", + "generic_tough_pla", + "ultimaker_bam", + "ultimaker_pva", + "ultimaker_tough_pla_*", + "ultimaker_petg_*", + "ultimaker_petcf_*" ], "firmware_file": "MarlinUltimaker2plus.hex", "first_start_actions": [], diff --git a/resources/definitions/ultimaker2_plus_connect.def.json b/resources/definitions/ultimaker2_plus_connect.def.json index 20e914284fc..b434b86a325 100644 --- a/resources/definitions/ultimaker2_plus_connect.def.json +++ b/resources/definitions/ultimaker2_plus_connect.def.json @@ -9,20 +9,20 @@ "file_formats": "application/x-ufp;text/x-gcode", "platform": "ultimaker2_plus_connect_platform.obj", "exclude_materials": [ + "structur3d_*", "generic_hips", - "generic_bam", - "ultimaker_bam", - "generic_pva", - "ultimaker_pva", - "ultimaker_petcf_black", - "ultimaker_petcf_blue", - "ultimaker_petcf_gray", - "generic_petcf", "generic_cffcpe", "generic_cffpa", "generic_gffcpe", "generic_gffpa", - "structur3d_dap100silicone" + "generic_petcf", + "generic_pva", + "generic_tough_pla", + "ultimaker_bam", + "ultimaker_pva", + "ultimaker_tough_pla_*", + "ultimaker_petg_*", + "ultimaker_petcf_*" ], "first_start_actions": [], "has_machine_materials": true, diff --git a/resources/definitions/ultimaker3.def.json b/resources/definitions/ultimaker3.def.json index 17a4b6045e1..f5f1b386c0f 100644 --- a/resources/definitions/ultimaker3.def.json +++ b/resources/definitions/ultimaker3.def.json @@ -13,16 +13,14 @@ 9066 ], "exclude_materials": [ + "structur3d_*", "generic_hips", "generic_cffcpe", "generic_cffpa", "generic_gffcpe", "generic_gffpa", "generic_petcf", - "ultimaker_petcf_black", - "ultimaker_petcf_blue", - "ultimaker_petcf_gray", - "structur3d_dap100silicone" + "ultimaker_petcf_*" ], "firmware_update_info": { diff --git a/resources/definitions/ultimaker_original.def.json b/resources/definitions/ultimaker_original.def.json index 00f46159717..4729df90b37 100644 --- a/resources/definitions/ultimaker_original.def.json +++ b/resources/definitions/ultimaker_original.def.json @@ -10,43 +10,20 @@ "file_formats": "text/x-gcode", "platform": "ultimaker_platform.3mf", "exclude_materials": [ + "structur3d_*", "generic_hips", - "generic_petg", - "generic_bam", - "ultimaker_bam", - "generic_pva", - "ultimaker_pva", - "generic_tough_pla", - "ultimaker_tough_pla_black", - "ultimaker_tough_pla_green", - "ultimaker_tough_pla_red", - "ultimaker_tough_pla_white", - "ultimaker_tough_pla_blue", - "ultimaker_tough_pla_gray", - "ultimaker_tough_pla_yellow", "generic_cffcpe", "generic_cffpa", "generic_gffcpe", "generic_gffpa", "generic_petcf", - "structur3d_dap100silicone", - "ultimaker_petg_blue", - "ultimaker_petg_grey", - "ultimaker_petg_black", - "ultimaker_petg_green", - "ultimaker_petg_white", - "ultimaker_petg_orange", - "ultimaker_petg_silver", - "ultimaker_petg_yellow", - "ultimaker_petg_transparent", - "ultimaker_petg_red_translucent", - "ultimaker_petg_blue_translucent", - "ultimaker_petg_green_translucent", - "ultimaker_petg_yellow_fluorescent", - "ultimaker_petg_red", - "ultimaker_petcf_black", - "ultimaker_petcf_blue", - "ultimaker_petcf_gray" + "generic_pva", + "generic_tough_pla", + "ultimaker_bam", + "ultimaker_pva", + "ultimaker_tough_pla_*", + "ultimaker_petg_*", + "ultimaker_petcf_*" ], "firmware_file": "MarlinUltimaker-{baudrate}.hex", "firmware_hbk_file": "MarlinUltimaker-HBK-{baudrate}.hex", diff --git a/resources/definitions/ultimaker_original_dual.def.json b/resources/definitions/ultimaker_original_dual.def.json index a4cd6bfdf04..ce7baee8cc7 100644 --- a/resources/definitions/ultimaker_original_dual.def.json +++ b/resources/definitions/ultimaker_original_dual.def.json @@ -10,43 +10,20 @@ "file_formats": "text/x-gcode", "platform": "ultimaker_platform.3mf", "exclude_materials": [ + "structur3d_*", "generic_hips", - "generic_petg", - "generic_bam", - "ultimaker_bam", - "generic_pva", - "ultimaker_pva", - "generic_tough_pla", - "ultimaker_tough_pla_black", - "ultimaker_tough_pla_green", - "ultimaker_tough_pla_red", - "ultimaker_tough_pla_white", - "ultimaker_tough_pla_blue", - "ultimaker_tough_pla_gray", - "ultimaker_tough_pla_yellow", "generic_cffcpe", "generic_cffpa", "generic_gffcpe", "generic_gffpa", "generic_petcf", - "structur3d_dap100silicone", - "ultimaker_petg_blue", - "ultimaker_petg_grey", - "ultimaker_petg_black", - "ultimaker_petg_green", - "ultimaker_petg_white", - "ultimaker_petg_orange", - "ultimaker_petg_silver", - "ultimaker_petg_yellow", - "ultimaker_petg_transparent", - "ultimaker_petg_red_translucent", - "ultimaker_petg_blue_translucent", - "ultimaker_petg_green_translucent", - "ultimaker_petg_yellow_fluorescent", - "ultimaker_petg_red", - "ultimaker_petcf_black", - "ultimaker_petcf_blue", - "ultimaker_petcf_gray" + "generic_pva", + "generic_tough_pla", + "ultimaker_bam", + "ultimaker_pva", + "ultimaker_tough_pla_*", + "ultimaker_petg_*", + "ultimaker_petcf_*" ], "firmware_file": "MarlinUltimaker-{baudrate}-dual.hex", "firmware_hbk_file": "MarlinUltimaker-HBK-{baudrate}-dual.hex", diff --git a/resources/definitions/ultimaker_s3.def.json b/resources/definitions/ultimaker_s3.def.json index 483825df5a3..28b5f77a507 100644 --- a/resources/definitions/ultimaker_s3.def.json +++ b/resources/definitions/ultimaker_s3.def.json @@ -15,8 +15,8 @@ 213484 ], "exclude_materials": [ - "generic_hips", - "structur3d_dap100silicone" + "structur3d_*", + "generic_hips" ], "firmware_update_info": { diff --git a/resources/definitions/ultimaker_s5.def.json b/resources/definitions/ultimaker_s5.def.json index cd48c4fd38c..2a466491575 100644 --- a/resources/definitions/ultimaker_s5.def.json +++ b/resources/definitions/ultimaker_s5.def.json @@ -15,6 +15,10 @@ 214476, 214477 ], + "exclude_materials": [ + "structur3d_*", + "generic_hips" + ], "firmware_update_info": { "check_urls": [ "https://software.ultimaker.com/releases/firmware/9051/stable/um-update.swu.version" ], diff --git a/resources/definitions/ultimaker_s7.def.json b/resources/definitions/ultimaker_s7.def.json index f7b45aa0e74..bb3f5a938db 100644 --- a/resources/definitions/ultimaker_s7.def.json +++ b/resources/definitions/ultimaker_s7.def.json @@ -44,6 +44,8 @@ }, "overrides": { - "machine_name": { "default_value": "Ultimaker S7" } + "default_material_print_temperature": { "maximum_value_warning": "320" }, + "machine_name": { "default_value": "Ultimaker S7" }, + "material_print_temperature_layer_0": { "maximum_value_warning": "320" } } } \ No newline at end of file From f51d97494a48c47e1c03e3bb25d8c0069f69f6df Mon Sep 17 00:00:00 2001 From: saumyaj3 Date: Fri, 1 Mar 2024 09:33:17 +0000 Subject: [PATCH 585/765] Applied printer-linter format --- resources/definitions/creality_ender5plus.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/creality_ender5plus.def.json b/resources/definitions/creality_ender5plus.def.json index 24bf10cd0d3..5ad71ee2df2 100644 --- a/resources/definitions/creality_ender5plus.def.json +++ b/resources/definitions/creality_ender5plus.def.json @@ -27,4 +27,4 @@ "machine_width": { "default_value": 350 }, "speed_print": { "value": 80.0 } } -} +} \ No newline at end of file From af3308406091c27e92c929403273759856406043 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 1 Mar 2024 10:37:39 +0100 Subject: [PATCH 586/765] Fix prime tower positioning on elliptic build plates --- resources/definitions/fdmprinter.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 1db28b289cc..2abdf0df017 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6871,7 +6871,7 @@ "unit": "mm", "enabled": "prime_tower_enable", "default_value": 200, - "value": "(resolveOrValue('machine_width') / 2 + resolveOrValue('prime_tower_size') / 2) if resolveOrValue('machine_shape') == 'elliptic' else (resolveOrValue('machine_width') - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('machine_nozzle_offset_x')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_x'))), 1)) - (resolveOrValue('machine_width') / 2 if resolveOrValue('machine_center_is_zero') else 0)", + "value": "((resolveOrValue('machine_width') / 2 + resolveOrValue('prime_tower_size') / 2) if resolveOrValue('machine_shape') == 'elliptic' else (resolveOrValue('machine_width') - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('machine_nozzle_offset_x')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_x'))), 1))) - (resolveOrValue('machine_width') / 2 if resolveOrValue('machine_center_is_zero') else 0)", "maximum_value": "(machine_width / 2 if machine_center_is_zero else machine_width) - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0)", "minimum_value": "resolveOrValue('prime_tower_size') + (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - (machine_width / 2 if machine_center_is_zero else 0)", "settable_per_mesh": false, From ea42e52b8f645fac3e02f300f4d6e4b15c2983c1 Mon Sep 17 00:00:00 2001 From: saumyaj3 Date: Fri, 1 Mar 2024 09:52:07 +0000 Subject: [PATCH 587/765] Applied printer-linter format --- resources/definitions/creality_ender3v3se.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/creality_ender3v3se.def.json b/resources/definitions/creality_ender3v3se.def.json index 8e32a44eb90..86d68181663 100644 --- a/resources/definitions/creality_ender3v3se.def.json +++ b/resources/definitions/creality_ender3v3se.def.json @@ -52,4 +52,4 @@ "speed_layer_0": { "value": 30 }, "speed_print": { "value": 180 } } -} +} \ No newline at end of file From 9efef84e5c88323bc70aa1b1e6a813664d2133c0 Mon Sep 17 00:00:00 2001 From: saumyaj3 Date: Fri, 1 Mar 2024 10:18:21 +0000 Subject: [PATCH 588/765] Applied printer-linter format --- .../definitions/creality_ender3v2neo.def.json | 36 +++++++++++-------- .../creality_ender3v2neo_0.2.inst.cfg | 2 +- .../creality_ender3v2neo_0.3.inst.cfg | 1 + .../creality_ender3v2neo_0.4.inst.cfg | 1 + .../creality_ender3v2neo_0.5.inst.cfg | 2 +- .../creality_ender3v2neo_0.6.inst.cfg | 1 + .../creality_ender3v2neo_0.8.inst.cfg | 1 + .../creality_ender3v2neo_1.0.inst.cfg | 1 + 8 files changed, 28 insertions(+), 17 deletions(-) diff --git a/resources/definitions/creality_ender3v2neo.def.json b/resources/definitions/creality_ender3v2neo.def.json index 05998865e29..f3f1eede9dc 100644 --- a/resources/definitions/creality_ender3v2neo.def.json +++ b/resources/definitions/creality_ender3v2neo.def.json @@ -1,34 +1,40 @@ { - "name": "Creality Ender-3 v2 Neo", "version": 2, + "name": "Creality Ender-3 v2 Neo", "inherits": "creality_base", - "metadata": { - "quality_definition": "creality_base", + "metadata": + { "visible": true, - "platform": "creality_ender3.3mf" + "platform": "creality_ender3.3mf", + "quality_definition": "creality_base" }, - "overrides": { - "machine_name": { "default_value": "Creality Ender-3 v2 Neo" }, - "machine_width": { "default_value": 230 }, + "overrides": + { + "gantry_height": { "value": 25 }, "machine_depth": { "default_value": 230 }, - "machine_height": { "default_value": 250 }, - "machine_head_polygon": { "default_value": [ + "machine_head_polygon": + { + "default_value": [ [-1, 1], [-1, -1], [1, -1], [1, 1] ] }, - "machine_head_with_fans_polygon": { "default_value": [ + "machine_head_with_fans_polygon": + { + "default_value": [ [-26, 34], [-26, -32], [32, -32], [32, 34] ] }, - "machine_start_gcode": { "default_value": "G92 E0 ;Reset Extruder\nG28 ;Home\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up" }, - "retraction_amount": { "value": 4}, - "retraction_speed": { "value": 25}, - "gantry_height": { "value": 25 } + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "Creality Ender-3 v2 Neo" }, + "machine_start_gcode": { "default_value": "G92 E0 ;Reset Extruder\nG28 ;Home\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up" }, + "machine_width": { "default_value": 230 }, + "retraction_amount": { "value": 4 }, + "retraction_speed": { "value": 25 } } -} +} \ No newline at end of file diff --git a/resources/variants/creality/creality_ender3v2neo_0.2.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.2.inst.cfg index 0dda448befc..bed0bbe51f6 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.2.inst.cfg @@ -8,6 +8,6 @@ hardware_type = nozzle setting_version = 22 type = variant - [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/creality/creality_ender3v2neo_0.3.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.3.inst.cfg index fcb0dac3f3c..fba4336839c 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.3.inst.cfg @@ -10,3 +10,4 @@ type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/creality/creality_ender3v2neo_0.4.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.4.inst.cfg index aeeba41ff67..80a2f5cb712 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.4.inst.cfg @@ -10,3 +10,4 @@ type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/creality/creality_ender3v2neo_0.5.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.5.inst.cfg index 810acc8e74b..d6071382f82 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.5.inst.cfg @@ -8,6 +8,6 @@ hardware_type = nozzle setting_version = 22 type = variant - [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/creality/creality_ender3v2neo_0.6.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.6.inst.cfg index ad49249db38..4abca4f34e1 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.6.inst.cfg @@ -10,3 +10,4 @@ type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/creality/creality_ender3v2neo_0.8.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.8.inst.cfg index bfb1bdf0fb6..d5ef899ed67 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.8.inst.cfg @@ -10,3 +10,4 @@ type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/creality/creality_ender3v2neo_1.0.inst.cfg b/resources/variants/creality/creality_ender3v2neo_1.0.inst.cfg index eeb644d0f5f..8dee589cd10 100644 --- a/resources/variants/creality/creality_ender3v2neo_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_1.0.inst.cfg @@ -10,3 +10,4 @@ type = variant [values] machine_nozzle_size = 1.0 + From 3934e6c6e2d4c74b20edc526d9156bc36cef8500 Mon Sep 17 00:00:00 2001 From: 0r31 Date: Fri, 1 Mar 2024 11:38:10 +0100 Subject: [PATCH 589/765] Remove prime tower position and let Cura calculating the right one --- resources/definitions/dagoma_sigma_pro_dual.def.json | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/resources/definitions/dagoma_sigma_pro_dual.def.json b/resources/definitions/dagoma_sigma_pro_dual.def.json index 2fbf85580dd..ac27e93500e 100644 --- a/resources/definitions/dagoma_sigma_pro_dual.def.json +++ b/resources/definitions/dagoma_sigma_pro_dual.def.json @@ -31,8 +31,6 @@ "machine_depth": { "default_value": 200 }, "machine_height": { "default_value": 501 }, "machine_start_gcode": { "default_value": ";Start Gcode for {machine_name}\n;Author: Dagoma\n;Sliced: {date} {time}\n;Estimated print time: {print_time}\n;Print speed: {speed_print}mm/s\n;Layer height: {layer_height}mm\n;Wall thickness: {wall_thickness}mm\n;Infill density: {infill_sparse_density}%\n;Infill pattern: {infill_pattern}\n;Support: {support_enable}\n;Print temperature: {material_print_temperature}°C\n;Flow: {material_flow}%\n;Retraction amount: {retraction_amount}mm\n;Retraction speed: {retraction_retract_speed}mm/s\nG90 ;absolute positioning\nM190 S{material_bed_temperature_layer_0};\nM109 S140;\nG1 F200 E-1.0\nM106 S255 ;Activating layers fans\nG28 ;Homing\nG29 ;Calibration\nM107 ;Off Ventilateur\nM109 S{material_print_temperature_layer_0} ;Temperature for the first layer only\nG92 E0 ;Zero the extruded length again\nG1 X0 Y-105 Z1 F3000\nG1 F{speed_travel}\nM117 Printing...\n" }, - "machine_end_gcode": { "default_value": ";End Gcode for {machine_name}\n;Author: Dagoma\nM104 S0\nM107 ;stop fan\nM140 S0 ;heated bed heater off (if you have it)\nG92 E0\nG1 E-55 F4600\nG27\nG90 ; Absolute positioning\nT0" }, - "prime_tower_position_x": { "value": 17.5 }, - "prime_tower_position_y": { "value": 60 } + "machine_end_gcode": { "default_value": ";End Gcode for {machine_name}\n;Author: Dagoma\nM104 S0\nM107 ;stop fan\nM140 S0 ;heated bed heater off (if you have it)\nG92 E0\nG1 E-55 F4600\nG27\nG90 ; Absolute positioning\nT0" } } } From 9633a8e9d431ea421d01e08cf948cbacb535a52f Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Fri, 1 Mar 2024 11:53:05 +0100 Subject: [PATCH 590/765] adding warning to settings not in whitelist CURA-11403 --- plugins/3MFWriter/SettingSelection.qml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/plugins/3MFWriter/SettingSelection.qml b/plugins/3MFWriter/SettingSelection.qml index a50c02f11cb..d33f2ef8f03 100644 --- a/plugins/3MFWriter/SettingSelection.qml +++ b/plugins/3MFWriter/SettingSelection.qml @@ -19,7 +19,7 @@ RowLayout Layout.preferredWidth: UM.Theme.getSize("setting").width checked: modelData.selected onClicked: modelData.selected = checked - + tooltip: modelData.selectable ? "" :catalog.i18nc("@tooltip", "This setting may not perform well while exporting in UCP. Users are asked to add it at their own risk") } UM.Label @@ -30,9 +30,10 @@ RowLayout UM.HelpIcon { UM.I18nCatalog { id: catalog; name: "cura" } - text: catalog.i18nc("@tooltip", - "This setting can't be exported because it depends on the used printer capacities") + "This setting may not perform well while exporting in UCP, Users are asked to add it at their own risk") visible: !modelData.selectable } + + } From db88a48982383c88007d3491940b21a3eece9a6a Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Fri, 1 Mar 2024 13:02:18 +0100 Subject: [PATCH 591/765] modifier meshes supported in case of per model setting CURA-11403 --- plugins/3MFWriter/SettingsExportModel.py | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/plugins/3MFWriter/SettingsExportModel.py b/plugins/3MFWriter/SettingsExportModel.py index 3b034236c81..62c445f34ea 100644 --- a/plugins/3MFWriter/SettingsExportModel.py +++ b/plugins/3MFWriter/SettingsExportModel.py @@ -59,7 +59,17 @@ class SettingsExportModel(QObject): 'skin_edge_support_thickness', 'alternate_carve_order', 'top_skin_preshrink', - 'interlocking_enable'} + 'interlocking_enable', + 'infill_mesh', + 'cutting_mesh'} + + PER_MODEL_EXPORTABLE_SETTINGS_KEYS = { 'top_bottom_thickness', + 'top_thickness', + 'bottom_thickness', + 'top_layers', + 'bottom_layers', + 'wall_thickness', + 'wall_line_count'} def __init__(self, parent = None): super().__init__(parent) @@ -107,15 +117,20 @@ def settingsGroups(self) -> List[SettingsExportGroup]: def _exportSettings(settings_stack): user_settings_container = settings_stack.userChanges user_keys = user_settings_container.getAllKeys() - + exportable_settings = SettingsExportModel.EXPORTABLE_SETTINGS settings_export = [] + # in case of modify mesh settings we add spme extra settings to the exportable settings + if 'infill_mesh' in user_keys: + exportable_settings = exportable_settings.union(SettingsExportModel.PER_MODEL_EXPORTABLE_SETTINGS_KEYS) for setting_to_export in user_keys: label = settings_stack.getProperty(setting_to_export, "label") value = settings_stack.getProperty(setting_to_export, "value") unit = settings_stack.getProperty(setting_to_export, "unit") setting_type = settings_stack.getProperty(setting_to_export, "type") + + is_exportable = True if setting_to_export in exportable_settings else False if setting_type is not None: # This is not very good looking, but will do for now value = f"{str(SettingDefinition.settingValueToString(setting_type, value))} {unit}" @@ -125,6 +140,6 @@ def _exportSettings(settings_stack): settings_export.append(SettingExport(setting_to_export, label, value, - setting_to_export in SettingsExportModel.EXPORTABLE_SETTINGS)) + is_exportable)) return settings_export From a2dcce9d5084129badadfe860d14d34e3eec1823 Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Fri, 1 Mar 2024 14:46:13 +0100 Subject: [PATCH 592/765] Cleanup exclude lists. Relates to PP-441 --- resources/definitions/ultimaker2.def.json | 18 ++++++++++++------ resources/definitions/ultimaker2_plus.def.json | 16 +++++++++++----- .../ultimaker2_plus_connect.def.json | 15 +++++++-------- resources/definitions/ultimaker3.def.json | 6 ++++-- .../definitions/ultimaker_original.def.json | 15 ++++++++++----- .../ultimaker_original_dual.def.json | 15 ++++++++++----- resources/definitions/ultimaker_s3.def.json | 5 +++-- resources/definitions/ultimaker_s5.def.json | 5 +++-- 8 files changed, 60 insertions(+), 35 deletions(-) diff --git a/resources/definitions/ultimaker2.def.json b/resources/definitions/ultimaker2.def.json index 0609cfabf95..2dd168fd096 100644 --- a/resources/definitions/ultimaker2.def.json +++ b/resources/definitions/ultimaker2.def.json @@ -10,20 +10,26 @@ "file_formats": "text/x-gcode", "platform": "ultimaker2_platform.obj", "exclude_materials": [ - "structur3d_*", - "generic_hips", + "generic_bam", "generic_cffcpe", "generic_cffpa", + "generic_flexible", "generic_gffcpe", "generic_gffpa", - "generic_pekk", + "generic_hips", + "generic_petcf", + "generic_petg", "generic_pva", "generic_tough_pla", + "structur3d_*", "ultimaker_bam", - "ultimaker_pva", - "ultimaker_tough_pla_*", + "ultimaker_petcf", + "ultimaker_petcf_*", + "ultimaker_petg", "ultimaker_petg_*", - "ultimaker_petcf_*" + "ultimaker_pva", + "ultimaker_tough_pla", + "ultimaker_tough_pla_*" ], "firmware_file": "MarlinUltimaker2.hex", "has_machine_quality": true, diff --git a/resources/definitions/ultimaker2_plus.def.json b/resources/definitions/ultimaker2_plus.def.json index 61dd8cae45a..6ddd4029279 100644 --- a/resources/definitions/ultimaker2_plus.def.json +++ b/resources/definitions/ultimaker2_plus.def.json @@ -9,20 +9,26 @@ "file_formats": "text/x-gcode", "platform": "ultimaker2_platform.obj", "exclude_materials": [ - "structur3d_*", - "generic_hips", + "generic_bam", "generic_cffcpe", "generic_cffpa", + "generic_flexible", "generic_gffcpe", "generic_gffpa", + "generic_hips", "generic_petcf", + "generic_petg", "generic_pva", "generic_tough_pla", + "structur3d_*", "ultimaker_bam", - "ultimaker_pva", - "ultimaker_tough_pla_*", + "ultimaker_petcf", + "ultimaker_petcf_*", + "ultimaker_petg", "ultimaker_petg_*", - "ultimaker_petcf_*" + "ultimaker_pva", + "ultimaker_tough_pla", + "ultimaker_tough_pla_*" ], "firmware_file": "MarlinUltimaker2plus.hex", "first_start_actions": [], diff --git a/resources/definitions/ultimaker2_plus_connect.def.json b/resources/definitions/ultimaker2_plus_connect.def.json index b434b86a325..564fee957b4 100644 --- a/resources/definitions/ultimaker2_plus_connect.def.json +++ b/resources/definitions/ultimaker2_plus_connect.def.json @@ -9,20 +9,19 @@ "file_formats": "application/x-ufp;text/x-gcode", "platform": "ultimaker2_plus_connect_platform.obj", "exclude_materials": [ - "structur3d_*", - "generic_hips", + "generic_bam", "generic_cffcpe", "generic_cffpa", + "generic_flexible", "generic_gffcpe", "generic_gffpa", - "generic_petcf", + "generic_hips", "generic_pva", - "generic_tough_pla", + "structur3d_*", "ultimaker_bam", - "ultimaker_pva", - "ultimaker_tough_pla_*", - "ultimaker_petg_*", - "ultimaker_petcf_*" + "ultimaker_petcf", + "ultimaker_petcf_*", + "ultimaker_pva" ], "first_start_actions": [], "has_machine_materials": true, diff --git a/resources/definitions/ultimaker3.def.json b/resources/definitions/ultimaker3.def.json index f5f1b386c0f..7eba795a454 100644 --- a/resources/definitions/ultimaker3.def.json +++ b/resources/definitions/ultimaker3.def.json @@ -13,13 +13,15 @@ 9066 ], "exclude_materials": [ - "structur3d_*", - "generic_hips", "generic_cffcpe", "generic_cffpa", + "generic_flexible", "generic_gffcpe", "generic_gffpa", + "generic_hips", "generic_petcf", + "structur3d_*", + "ultimaker_petcf", "ultimaker_petcf_*" ], "firmware_update_info": diff --git a/resources/definitions/ultimaker_original.def.json b/resources/definitions/ultimaker_original.def.json index 4729df90b37..684c30691fc 100644 --- a/resources/definitions/ultimaker_original.def.json +++ b/resources/definitions/ultimaker_original.def.json @@ -10,20 +10,25 @@ "file_formats": "text/x-gcode", "platform": "ultimaker_platform.3mf", "exclude_materials": [ - "structur3d_*", - "generic_hips", "generic_cffcpe", "generic_cffpa", + "generic_flexible", "generic_gffcpe", "generic_gffpa", + "generic_hips", "generic_petcf", + "generic_petg", "generic_pva", "generic_tough_pla", + "structur3d_*", "ultimaker_bam", - "ultimaker_pva", - "ultimaker_tough_pla_*", + "ultimaker_petcf", + "ultimaker_petcf_*", + "ultimaker_petg", "ultimaker_petg_*", - "ultimaker_petcf_*" + "ultimaker_pva", + "ultimaker_tough_pla", + "ultimaker_tough_pla_*" ], "firmware_file": "MarlinUltimaker-{baudrate}.hex", "firmware_hbk_file": "MarlinUltimaker-HBK-{baudrate}.hex", diff --git a/resources/definitions/ultimaker_original_dual.def.json b/resources/definitions/ultimaker_original_dual.def.json index ce7baee8cc7..777e1f4c2b8 100644 --- a/resources/definitions/ultimaker_original_dual.def.json +++ b/resources/definitions/ultimaker_original_dual.def.json @@ -10,20 +10,25 @@ "file_formats": "text/x-gcode", "platform": "ultimaker_platform.3mf", "exclude_materials": [ - "structur3d_*", - "generic_hips", "generic_cffcpe", "generic_cffpa", + "generic_flexible", "generic_gffcpe", "generic_gffpa", + "generic_hips", "generic_petcf", + "generic_petg", "generic_pva", "generic_tough_pla", + "structur3d_*", "ultimaker_bam", - "ultimaker_pva", - "ultimaker_tough_pla_*", + "ultimaker_petcf", + "ultimaker_petcf_*", + "ultimaker_petg", "ultimaker_petg_*", - "ultimaker_petcf_*" + "ultimaker_pva", + "ultimaker_tough_pla", + "ultimaker_tough_pla_*" ], "firmware_file": "MarlinUltimaker-{baudrate}-dual.hex", "firmware_hbk_file": "MarlinUltimaker-HBK-{baudrate}-dual.hex", diff --git a/resources/definitions/ultimaker_s3.def.json b/resources/definitions/ultimaker_s3.def.json index 28b5f77a507..a9f0bae2592 100644 --- a/resources/definitions/ultimaker_s3.def.json +++ b/resources/definitions/ultimaker_s3.def.json @@ -15,8 +15,9 @@ 213484 ], "exclude_materials": [ - "structur3d_*", - "generic_hips" + "generic_hips", + "generic_flexible", + "structur3d_*" ], "firmware_update_info": { diff --git a/resources/definitions/ultimaker_s5.def.json b/resources/definitions/ultimaker_s5.def.json index 2a466491575..2732c598936 100644 --- a/resources/definitions/ultimaker_s5.def.json +++ b/resources/definitions/ultimaker_s5.def.json @@ -16,8 +16,9 @@ 214477 ], "exclude_materials": [ - "structur3d_*", - "generic_hips" + "generic_hips", + "generic_flexible", + "structur3d_*" ], "firmware_update_info": { From f67d2ed5febdbc3812ab7c2f70a0fb9b3dfedd88 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Fri, 1 Mar 2024 15:25:24 +0100 Subject: [PATCH 593/765] Remove setting visibility for Ucp show settings expanded by default CURA-11403 --- plugins/3MFReader/ThreeMFWorkspaceReader.py | 8 ++++++-- plugins/3MFReader/WorkspaceDialog.py | 18 +++++++++--------- plugins/3MFReader/WorkspaceDialog.qml | 13 +++++++------ 3 files changed, 22 insertions(+), 17 deletions(-) diff --git a/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py index 0e527590f5b..6cbf054e4b4 100755 --- a/plugins/3MFReader/ThreeMFWorkspaceReader.py +++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py @@ -212,6 +212,11 @@ def _determineGlobalAndExtruderStackFiles(self, project_file_name: str, file_lis return global_stack_file_list[0], extruder_stack_file_list def preRead(self, file_name, show_dialog=True, *args, **kwargs): + result = self._preRead(file_name, show_dialog) + self._is_ucp = False + return result + + def _preRead(self, file_name, show_dialog=True): """Read some info so we can make decisions :param file_name: @@ -662,8 +667,8 @@ def preRead(self, file_name, show_dialog=True, *args, **kwargs): self._dialog.setVariantType(variant_type_name) self._dialog.setHasObjectsOnPlate(Application.getInstance().platformActivity) self._dialog.setMissingPackagesMetadata(missing_package_metadata) - self._dialog.setHasVisibleSelectSameProfileChanged(self._is_ucp) self._dialog.setAllowCreatemachine(not self._is_ucp) + self._dialog.setIsUcp(self._is_ucp) self._dialog.show() @@ -721,7 +726,6 @@ def preRead(self, file_name, show_dialog=True, *args, **kwargs): if key not in containers_found_dict or strategy is not None: continue self._resolve_strategies[key] = "override" if containers_found_dict[key] else "new" - self._is_ucp = False return WorkspaceReader.PreReadResult.accepted @call_on_qt_thread diff --git a/plugins/3MFReader/WorkspaceDialog.py b/plugins/3MFReader/WorkspaceDialog.py index 1fafcf59f5b..0f7095ce0aa 100644 --- a/plugins/3MFReader/WorkspaceDialog.py +++ b/plugins/3MFReader/WorkspaceDialog.py @@ -74,10 +74,10 @@ def __init__(self, parent = None) -> None: self._is_abstract_machine = False self._is_networked_machine = False self._is_compatible_machine = False - self._has_visible_select_same_profile = False self._select_same_profile_checked = True self._allow_create_machine = True self._exported_settings_model = SpecificSettingsModel() + self._is_ucp = False machineConflictChanged = pyqtSignal() qualityChangesConflictChanged = pyqtSignal() @@ -102,7 +102,7 @@ def __init__(self, parent = None) -> None: isPrinterGroupChanged = pyqtSignal() missingPackagesChanged = pyqtSignal() isCompatibleMachineChanged = pyqtSignal() - hasVisibleSelectSameProfileChanged = pyqtSignal() + isUcpChanged = pyqtSignal() selectSameProfileCheckedChanged = pyqtSignal() @pyqtProperty(bool, notify = isPrinterGroupChanged) @@ -318,14 +318,14 @@ def updateCompatibleMachine(self): def isCompatibleMachine(self) -> bool: return self._is_compatible_machine - def setHasVisibleSelectSameProfileChanged(self, has_visible_select_same_profile): - if has_visible_select_same_profile != self._has_visible_select_same_profile: - self._has_visible_select_same_profile = has_visible_select_same_profile - self.hasVisibleSelectSameProfileChanged.emit() + def setIsUcp(self, isUcp: bool) -> None: + if isUcp != self._is_ucp: + self._is_ucp = isUcp + self.isUcpChanged.emit() - @pyqtProperty(bool, notify = hasVisibleSelectSameProfileChanged) - def hasVisibleSelectSameProfile(self): - return self._has_visible_select_same_profile + @pyqtProperty(bool, notify=isUcpChanged) + def isUcp(self): + return self._is_ucp def setSelectSameProfileChecked(self, select_same_profile_checked): if select_same_profile_checked != self._select_same_profile_checked: diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index 8d06b32e141..5212c799dff 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -185,14 +185,14 @@ UM.Dialog { leftLabelText: catalog.i18nc("@action:label", "Not in profile") rightLabelText: catalog.i18ncp("@action:label", "%1 override", "%1 overrides", manager.numUserSettings).arg(manager.numUserSettings) - visible: manager.numUserSettings != 0 && manager.selectSameProfileChecked && manager.isCompatibleMachine + visible: manager.numUserSettings != 0 && manager.isCompatibleMachine } WorkspaceRow { leftLabelText: catalog.i18nc("@action:label", "Derivative from") rightLabelText: catalog.i18ncp("@action:label", "%1, %2 override", "%1, %2 overrides", manager.numSettingsOverridenByQualityChanges).arg(manager.qualityType).arg(manager.numSettingsOverridenByQualityChanges) - visible: manager.numSettingsOverridenByQualityChanges != 0 && manager.selectSameProfileChecked && manager.isCompatibleMachine + visible: manager.numSettingsOverridenByQualityChanges != 0 && manager.isCompatibleMachine } WorkspaceRow @@ -200,7 +200,7 @@ UM.Dialog leftLabelText: catalog.i18nc("@action:label", "Specific settings") rightLabelText: catalog.i18ncp("@action:label", "%1 override", "%1 overrides", manager.exportedSettingModel.rowCount()).arg(manager.exportedSettingModel.rowCount()) buttonText: tableViewSpecificSettings.shouldBeVisible ? catalog.i18nc("@action:button", "Hide settings") : catalog.i18nc("@action:button", "Show settings") - visible: !manager.selectSameProfileChecked || !manager.isCompatibleMachine + visible: manager.isUcp onButtonClicked: tableViewSpecificSettings.shouldBeVisible = !tableViewSpecificSettings.shouldBeVisible } @@ -209,8 +209,8 @@ UM.Dialog id: tableViewSpecificSettings width: parent.width - parent.leftPadding - UM.Theme.getSize("default_margin").width height: UM.Theme.getSize("card").height - visible: shouldBeVisible && (!manager.selectSameProfileChecked || !manager.isCompatibleMachine) - property bool shouldBeVisible: false + visible: shouldBeVisible && manager.isUcp + property bool shouldBeVisible: true columnHeaders: [ @@ -232,7 +232,7 @@ UM.Dialog text: catalog.i18nc("@action:checkbox", "Select the same profile") onEnabledChanged: manager.selectSameProfileChecked = enabled tooltip: enabled ? "" : catalog.i18nc("@tooltip", "You can use the same profile only if you have the same printer as the project was published with") - visible: manager.hasVisibleSelectSameProfile && manager.isCompatibleMachine + visible: manager.isUcp checked: manager.selectSameProfileChecked onCheckedChanged: manager.selectSameProfileChecked = checked @@ -330,6 +330,7 @@ UM.Dialog id: visibilitySection title: catalog.i18nc("@action:label", "Setting visibility") iconSource: UM.Theme.getIcon("Eye") + visible : !manager.isUcp content: Column { spacing: UM.Theme.getSize("default_margin").height From 87e119789c8b964f0a6a359e9214b068fe7e2877 Mon Sep 17 00:00:00 2001 From: wawanbreton Date: Fri, 1 Mar 2024 14:31:28 +0000 Subject: [PATCH 594/765] Applied printer-linter format --- .../definitions/dagoma_sigma_pro.def.json | 18 +++++++-------- .../dagoma_sigma_pro_dual.def.json | 23 ++++++++++--------- ...goma_sigma_pro_dual_extruder_left.def.json | 8 +++---- ...oma_sigma_pro_dual_extruder_right.def.json | 8 +++---- .../dagoma_sigma_pro_extruder.def.json | 8 +++---- ...goma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg | 3 ++- ...goma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg | 1 + ...goma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg | 1 + ...goma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg | 1 + ...goma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg | 1 + ...goma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg | 1 + ...sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg | 1 + ...sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg | 1 + ...sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg | 1 + ...sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg | 1 + ...sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg | 1 + ...sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg | 1 + ...sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg | 1 + ...sigma_pro_dual_steel_0.4_pla_h0.2.inst.cfg | 1 + ...sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg | 1 + ...sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg | 1 + ...sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg | 1 + ...sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg | 1 + ...goma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg | 1 + ...goma_sigma_pro_steel_0.4_pla_h0.2.inst.cfg | 1 + ...goma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg | 1 + ...goma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg | 1 + ...goma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg | 1 + ...goma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg | 1 + .../dagoma_sigma_pro_brass_0.8.inst.cfg | 1 + .../dagoma_sigma_pro_dual_brass_0.8.inst.cfg | 1 + .../dagoma_sigma_pro_dual_steel_0.8.inst.cfg | 1 + .../dagoma_sigma_pro_steel_0.8.inst.cfg | 1 + 33 files changed, 62 insertions(+), 33 deletions(-) diff --git a/resources/definitions/dagoma_sigma_pro.def.json b/resources/definitions/dagoma_sigma_pro.def.json index ef0f6ac1d63..8bbac5a4837 100644 --- a/resources/definitions/dagoma_sigma_pro.def.json +++ b/resources/definitions/dagoma_sigma_pro.def.json @@ -9,24 +9,24 @@ "manufacturer": "Dagoma", "file_formats": "text/x-gcode", "platform": "dagoma_sigma_pro.obj", - "platform_texture": "dagoma_sigma_pro.png", "first_start_actions": [ "MachineSettingsAction" ], "has_machine_quality": true, "has_variants": true, - "variants_name": "Nozzle", "machine_extruder_trains": { "0": "dagoma_sigma_pro_extruder" }, + "platform_texture": "dagoma_sigma_pro.png", "preferred_quality_type": "h0.2", "preferred_variant_name": "Brass 0.4mm", - "quality_definition": "dagoma_sigma_pro" + "quality_definition": "dagoma_sigma_pro", + "variants_name": "Nozzle" }, "overrides": { - "machine_heated_bed": { "default_value": true }, - "machine_name": { "default_value": "Dagoma Sigma Pro 500Z" }, - "machine_width": { "default_value": 200 }, "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": ";End Gcode for {machine_name}\n;Author: Dagoma\nM104 S0\nM107 ;stop fan\nM140 S0 ;heated bed heater off (if you have it)\nG92 E0\nG1 E-55 F4600\nG27\nG90 ; Absolute positioning\nT0" }, + "machine_heated_bed": { "default_value": true }, "machine_height": { "default_value": 501 }, - "machine_start_gcode": { "default_value": ";Start Gcode for {machine_name}\n;Author: Dagoma\n;Sliced: {date} {time}\n;Estimated print time: {print_time}\n;Print speed: {speed_print}mm/s\n;Layer height: {layer_height}mm\n;Wall thickness: {wall_thickness}mm\n;Infill density: {infill_sparse_density}%\n;Infill pattern: {infill_pattern}\n;Support: {support_enable}\n;Print temperature: {material_print_temperature}°C\n;Flow: {material_flow}%\n;Retraction amount: {retraction_amount}mm\n;Retraction speed: {retraction_retract_speed}mm/s\nG90 ;absolute positioning\nM190 S{material_bed_temperature_layer_0};\nM109 S140;\nG1 F200 E-1.0\nM106 S255 ;Activating layers fans\nG28 ;Homing\nG29 ;Calibration\nM107 ;Off Ventilateur\nM109 S{material_print_temperature_layer_0} ;Temperature for the first layer only\nG92 E0 ;Zero the extruded length again\nG1 X0 Y-105 Z1 F3000\nG1 F{speed_travel}\nM117 Printing...\n" }, - "machine_end_gcode": { "default_value": ";End Gcode for {machine_name}\n;Author: Dagoma\nM104 S0\nM107 ;stop fan\nM140 S0 ;heated bed heater off (if you have it)\nG92 E0\nG1 E-55 F4600\nG27\nG90 ; Absolute positioning\nT0" } + "machine_name": { "default_value": "Dagoma Sigma Pro 500Z" }, + "machine_start_gcode": { "default_value": ";Start Gcode for {machine_name}\n;Author: Dagoma\n;Sliced: {date} {time}\n;Estimated print time: {print_time}\n;Print speed: {speed_print}mm/s\n;Layer height: {layer_height}mm\n;Wall thickness: {wall_thickness}mm\n;Infill density: {infill_sparse_density}%\n;Infill pattern: {infill_pattern}\n;Support: {support_enable}\n;Print temperature: {material_print_temperature}\u00b0C\n;Flow: {material_flow}%\n;Retraction amount: {retraction_amount}mm\n;Retraction speed: {retraction_retract_speed}mm/s\nG90 ;absolute positioning\nM190 S{material_bed_temperature_layer_0};\nM109 S140;\nG1 F200 E-1.0\nM106 S255 ;Activating layers fans\nG28 ;Homing\nG29 ;Calibration\nM107 ;Off Ventilateur\nM109 S{material_print_temperature_layer_0} ;Temperature for the first layer only\nG92 E0 ;Zero the extruded length again\nG1 X0 Y-105 Z1 F3000\nG1 F{speed_travel}\nM117 Printing...\n" }, + "machine_width": { "default_value": 200 } } -} +} \ No newline at end of file diff --git a/resources/definitions/dagoma_sigma_pro_dual.def.json b/resources/definitions/dagoma_sigma_pro_dual.def.json index ac27e93500e..eb11b37603b 100644 --- a/resources/definitions/dagoma_sigma_pro_dual.def.json +++ b/resources/definitions/dagoma_sigma_pro_dual.def.json @@ -9,28 +9,29 @@ "manufacturer": "Dagoma", "file_formats": "text/x-gcode", "platform": "dagoma_sigma_pro.obj", - "platform_texture": "dagoma_sigma_pro.png", "first_start_actions": [ "MachineSettingsAction" ], "has_machine_quality": true, "has_variants": true, - "variants_name": "Nozzle", - "machine_extruder_trains": { + "machine_extruder_trains": + { "0": "dagoma_sigma_pro_dual_extruder_right", "1": "dagoma_sigma_pro_dual_extruder_left" }, + "platform_texture": "dagoma_sigma_pro.png", "preferred_quality_type": "h0.2", "preferred_variant_name": "Brass 0.4mm", - "quality_definition": "dagoma_sigma_pro_dual" + "quality_definition": "dagoma_sigma_pro_dual", + "variants_name": "Nozzle" }, "overrides": { - "machine_heated_bed": { "default_value": true }, - "machine_extruder_count": { "default_value": 2 }, - "machine_name": { "default_value": "Dagoma Sigma Pro 500Z Dual" }, - "machine_width": { "default_value": 200 }, "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": ";End Gcode for {machine_name}\n;Author: Dagoma\nM104 S0\nM107 ;stop fan\nM140 S0 ;heated bed heater off (if you have it)\nG92 E0\nG1 E-55 F4600\nG27\nG90 ; Absolute positioning\nT0" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_heated_bed": { "default_value": true }, "machine_height": { "default_value": 501 }, - "machine_start_gcode": { "default_value": ";Start Gcode for {machine_name}\n;Author: Dagoma\n;Sliced: {date} {time}\n;Estimated print time: {print_time}\n;Print speed: {speed_print}mm/s\n;Layer height: {layer_height}mm\n;Wall thickness: {wall_thickness}mm\n;Infill density: {infill_sparse_density}%\n;Infill pattern: {infill_pattern}\n;Support: {support_enable}\n;Print temperature: {material_print_temperature}°C\n;Flow: {material_flow}%\n;Retraction amount: {retraction_amount}mm\n;Retraction speed: {retraction_retract_speed}mm/s\nG90 ;absolute positioning\nM190 S{material_bed_temperature_layer_0};\nM109 S140;\nG1 F200 E-1.0\nM106 S255 ;Activating layers fans\nG28 ;Homing\nG29 ;Calibration\nM107 ;Off Ventilateur\nM109 S{material_print_temperature_layer_0} ;Temperature for the first layer only\nG92 E0 ;Zero the extruded length again\nG1 X0 Y-105 Z1 F3000\nG1 F{speed_travel}\nM117 Printing...\n" }, - "machine_end_gcode": { "default_value": ";End Gcode for {machine_name}\n;Author: Dagoma\nM104 S0\nM107 ;stop fan\nM140 S0 ;heated bed heater off (if you have it)\nG92 E0\nG1 E-55 F4600\nG27\nG90 ; Absolute positioning\nT0" } + "machine_name": { "default_value": "Dagoma Sigma Pro 500Z Dual" }, + "machine_start_gcode": { "default_value": ";Start Gcode for {machine_name}\n;Author: Dagoma\n;Sliced: {date} {time}\n;Estimated print time: {print_time}\n;Print speed: {speed_print}mm/s\n;Layer height: {layer_height}mm\n;Wall thickness: {wall_thickness}mm\n;Infill density: {infill_sparse_density}%\n;Infill pattern: {infill_pattern}\n;Support: {support_enable}\n;Print temperature: {material_print_temperature}\u00b0C\n;Flow: {material_flow}%\n;Retraction amount: {retraction_amount}mm\n;Retraction speed: {retraction_retract_speed}mm/s\nG90 ;absolute positioning\nM190 S{material_bed_temperature_layer_0};\nM109 S140;\nG1 F200 E-1.0\nM106 S255 ;Activating layers fans\nG28 ;Homing\nG29 ;Calibration\nM107 ;Off Ventilateur\nM109 S{material_print_temperature_layer_0} ;Temperature for the first layer only\nG92 E0 ;Zero the extruded length again\nG1 X0 Y-105 Z1 F3000\nG1 F{speed_travel}\nM117 Printing...\n" }, + "machine_width": { "default_value": 200 } } -} +} \ No newline at end of file diff --git a/resources/extruders/dagoma_sigma_pro_dual_extruder_left.def.json b/resources/extruders/dagoma_sigma_pro_dual_extruder_left.def.json index 067ab56b0ae..ac00cd1485a 100644 --- a/resources/extruders/dagoma_sigma_pro_dual_extruder_left.def.json +++ b/resources/extruders/dagoma_sigma_pro_dual_extruder_left.def.json @@ -10,9 +10,9 @@ "overrides": { "extruder_nr": { "default_value": 1 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, + "machine_extruder_end_code": { "default_value": ";END T1\nG92 E0\nM83\nG1 E-55 F4700\nM82\nG92 E0\n" }, "machine_extruder_start_code": { "default_value": ";START T1\n;No temperature change\nG1 X0 Y77.5 F8000\nG92 E0\nM83\nG1 E50 F1200\nM82\nG92 E0\n" }, - "machine_extruder_end_code": { "default_value": ";END T1\nG92 E0\nM83\nG1 E-55 F4700\nM82\nG92 E0\n" } + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/dagoma_sigma_pro_dual_extruder_right.def.json b/resources/extruders/dagoma_sigma_pro_dual_extruder_right.def.json index c94792aedfa..9959d5108c8 100644 --- a/resources/extruders/dagoma_sigma_pro_dual_extruder_right.def.json +++ b/resources/extruders/dagoma_sigma_pro_dual_extruder_right.def.json @@ -10,9 +10,9 @@ "overrides": { "extruder_nr": { "default_value": 0 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, + "machine_extruder_end_code": { "default_value": ";END T0\nG92 E0\nM83\nG1 E-55 F4700\nM82\nG92 E0\n" }, "machine_extruder_start_code": { "default_value": ";START T0\n;No temperature change\nG1 X0 Y77.5 F8000\nG92 E0\nM83\nG1 E50 F1200\nM82\nG92 E0\n" }, - "machine_extruder_end_code": { "default_value": ";END T0\nG92 E0\nM83\nG1 E-55 F4700\nM82\nG92 E0\n" } + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/dagoma_sigma_pro_extruder.def.json b/resources/extruders/dagoma_sigma_pro_extruder.def.json index 82253a0b0aa..55337bd4a07 100644 --- a/resources/extruders/dagoma_sigma_pro_extruder.def.json +++ b/resources/extruders/dagoma_sigma_pro_extruder.def.json @@ -10,9 +10,9 @@ "overrides": { "extruder_nr": { "default_value": 0 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, + "machine_extruder_end_code": { "default_value": ";END T0\nG92 E0\nM83\nG1 E-55 F4700\nM82\nG92 E0\n" }, "machine_extruder_start_code": { "default_value": ";START T0\n;No temperature change\nG1 X0 Y77.5 F8000\nG92 E0\nM83\nG1 E50 F1200\nM82\nG92 E0\n" }, - "machine_extruder_end_code": { "default_value": ";END T0\nG92 E0\nM83\nG1 E-55 F4700\nM82\nG92 E0\n" } + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg index e8173416c91..9f24b9ff18f 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg @@ -55,9 +55,9 @@ speed_wall_0 = 25 speed_wall_x = 35.0 speed_z_hop = 120 support_enable = False +support_structure = tree support_tree_angle = 55 support_tree_top_rate = =30 if support_roof_enable else 10 -support_structure = tree switch_extruder_extra_prime_amount = 0 switch_extruder_prime_speed = 20 switch_extruder_retraction_amount = 80 @@ -71,3 +71,4 @@ wall_0_material_flow_layer_0 = 85 wall_thickness = 0.8 wall_transition_length = 0.4 wall_x_material_flow_layer_0 = 90 + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg index b9fef0b7d32..8792a7527a8 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg @@ -71,3 +71,4 @@ wall_0_material_flow_layer_0 = 85 wall_thickness = 1.2 wall_transition_length = 0.4 wall_x_material_flow_layer_0 = 90 + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg index 7b4eb8d5a1c..c38b789f6b7 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg @@ -12,3 +12,4 @@ variant = Brass 0.4mm weight = 1 [values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg index 0a75550fae7..035ab244cca 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg @@ -12,3 +12,4 @@ variant = Brass 0.8mm weight = 1 [values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg index 6abc8f22f03..193c64708bd 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg @@ -12,3 +12,4 @@ variant = Brass 0.8mm weight = 1 [values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg index e178cf7c3b3..e961f9c59eb 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg @@ -12,3 +12,4 @@ variant = Brass 0.8mm weight = 1 [values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg index d6d21f9a8df..eb38d71eec2 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg @@ -72,3 +72,4 @@ wall_0_material_flow_layer_0 = 85 wall_thickness = 1.2 wall_transition_length = 0.4 wall_x_material_flow_layer_0 = 90 + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg index 400aa3e751f..33a8956b39a 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg @@ -72,3 +72,4 @@ wall_0_material_flow_layer_0 = 85 wall_thickness = 1.2 wall_transition_length = 0.4 wall_x_material_flow_layer_0 = 90 + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg index 13205d114a4..540dc947b2b 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg @@ -12,3 +12,4 @@ variant = Brass 0.4mm weight = 1 [values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg index 36d96fb985b..bd6d2b41769 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg @@ -12,3 +12,4 @@ variant = Brass 0.8mm weight = 1 [values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg index 42e2b6218d6..2da4d4af4ff 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg @@ -12,3 +12,4 @@ variant = Brass 0.8mm weight = 1 [values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg index f3c7b09f5c6..82ae79a60d5 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg @@ -12,3 +12,4 @@ variant = Brass 0.8mm weight = 1 [values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg index 2026c66f31e..26368409b28 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg @@ -12,3 +12,4 @@ variant = Steel 0.4mm weight = 1 [values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.2.inst.cfg index c41f773d731..9d860526ac9 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.2.inst.cfg @@ -12,3 +12,4 @@ variant = Steel 0.4mm weight = 1 [values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg index 40188c628f0..e9cbd8f8c0a 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg @@ -12,3 +12,4 @@ variant = Steel 0.4mm weight = 1 [values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg index ce1eb96fb01..f0d1931321b 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg @@ -12,3 +12,4 @@ variant = Steel 0.8mm weight = 1 [values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg index f9b9dd7bd30..d7430e59530 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg @@ -12,3 +12,4 @@ variant = Steel 0.8mm weight = 1 [values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg index cd487c1b3f6..a431051e77b 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg @@ -12,3 +12,4 @@ variant = Steel 0.8mm weight = 1 [values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg index a681f06ca01..d7009cd72f0 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg @@ -12,3 +12,4 @@ variant = Steel 0.4mm weight = 1 [values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.2.inst.cfg index 86228f152cb..bc1c894bccf 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.2.inst.cfg @@ -12,3 +12,4 @@ variant = Steel 0.4mm weight = 1 [values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg index 16a4921dfde..380e162e1c4 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg @@ -12,3 +12,4 @@ variant = Steel 0.4mm weight = 1 [values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg index 7438eb7e0eb..3baede10207 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg @@ -12,3 +12,4 @@ variant = Steel 0.8mm weight = 1 [values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg index b8fbabeec4e..df97ec19f57 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg @@ -12,3 +12,4 @@ variant = Steel 0.8mm weight = 1 [values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg index ebf6084c4a1..64237734781 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg @@ -12,3 +12,4 @@ variant = Steel 0.8mm weight = 1 [values] + diff --git a/resources/variants/dagoma/dagoma_sigma_pro_brass_0.8.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_brass_0.8.inst.cfg index 52503fee05d..bc9a8e9ea52 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_brass_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_brass_0.8.inst.cfg @@ -11,3 +11,4 @@ type = variant [values] machine_nozzle_id = Brass 0.8mm machine_nozzle_size = 0.8 + diff --git a/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.8.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.8.inst.cfg index 446775de727..96f9d485dc5 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.8.inst.cfg @@ -11,3 +11,4 @@ type = variant [values] machine_nozzle_id = Brass 0.8mm machine_nozzle_size = 0.8 + diff --git a/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.8.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.8.inst.cfg index 7f0ddad8934..b2dd1421d77 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.8.inst.cfg @@ -11,3 +11,4 @@ type = variant [values] machine_nozzle_id = Steel 0.8mm machine_nozzle_size = 0.8 + diff --git a/resources/variants/dagoma/dagoma_sigma_pro_steel_0.8.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_steel_0.8.inst.cfg index 4a9a47b7909..d36c2e344d3 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_steel_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_steel_0.8.inst.cfg @@ -11,3 +11,4 @@ type = variant [values] machine_nozzle_id = Steel 0.8mm machine_nozzle_size = 0.8 + From b1b966065161d509508a3cdd0e162330f5413041 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Fri, 1 Mar 2024 15:43:37 +0100 Subject: [PATCH 595/765] removing select same profile checkbox CURA-11403 --- plugins/3MFReader/SpecificSettingsModel.py | 2 +- plugins/3MFReader/ThreeMFWorkspaceReader.py | 1 - plugins/3MFReader/WorkspaceDialog.py | 11 ----------- plugins/3MFReader/WorkspaceDialog.qml | 11 ----------- 4 files changed, 1 insertion(+), 24 deletions(-) diff --git a/plugins/3MFReader/SpecificSettingsModel.py b/plugins/3MFReader/SpecificSettingsModel.py index fd5719d6b36..d541e50b7f7 100644 --- a/plugins/3MFReader/SpecificSettingsModel.py +++ b/plugins/3MFReader/SpecificSettingsModel.py @@ -27,7 +27,7 @@ def addSettingsFromStack(self, stack, category, settings): setting_type = stack.getProperty(setting, "type") if setting_type is not None: # This is not very good looking, but will do for now - value = SettingDefinition.settingValueToString(setting_type, value) + " " + unit + value = str(SettingDefinition.settingValueToString(setting_type, value)) + " " + str(unit) else: value = str(value) diff --git a/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py index 6cbf054e4b4..108ba3f09b1 100755 --- a/plugins/3MFReader/ThreeMFWorkspaceReader.py +++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py @@ -702,7 +702,6 @@ def _preRead(self, file_name, show_dialog=True): self._dialog.setIsAbstractMachine(is_abstract_machine) self._dialog.setMachineName(machine_name) self._dialog.updateCompatibleMachine() - self._dialog.setSelectSameProfileChecked(self._dialog.isCompatibleMachine) # Block until the dialog is closed. self._dialog.waitForClose() diff --git a/plugins/3MFReader/WorkspaceDialog.py b/plugins/3MFReader/WorkspaceDialog.py index 0f7095ce0aa..13e26509711 100644 --- a/plugins/3MFReader/WorkspaceDialog.py +++ b/plugins/3MFReader/WorkspaceDialog.py @@ -74,7 +74,6 @@ def __init__(self, parent = None) -> None: self._is_abstract_machine = False self._is_networked_machine = False self._is_compatible_machine = False - self._select_same_profile_checked = True self._allow_create_machine = True self._exported_settings_model = SpecificSettingsModel() self._is_ucp = False @@ -103,7 +102,6 @@ def __init__(self, parent = None) -> None: missingPackagesChanged = pyqtSignal() isCompatibleMachineChanged = pyqtSignal() isUcpChanged = pyqtSignal() - selectSameProfileCheckedChanged = pyqtSignal() @pyqtProperty(bool, notify = isPrinterGroupChanged) def isPrinterGroup(self) -> bool: @@ -327,15 +325,6 @@ def setIsUcp(self, isUcp: bool) -> None: def isUcp(self): return self._is_ucp - def setSelectSameProfileChecked(self, select_same_profile_checked): - if select_same_profile_checked != self._select_same_profile_checked: - self._select_same_profile_checked = select_same_profile_checked - self.selectSameProfileCheckedChanged.emit() - - @pyqtProperty(bool, notify = selectSameProfileCheckedChanged, fset = setSelectSameProfileChecked) - def selectSameProfileChecked(self): - return self._select_same_profile_checked - def setAllowCreatemachine(self, allow_create_machine): self._allow_create_machine = allow_create_machine diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index 5212c799dff..90b15378c56 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -226,17 +226,6 @@ UM.Dialog rows: manager.exportedSettingModel.items } } - - UM.CheckBox - { - text: catalog.i18nc("@action:checkbox", "Select the same profile") - onEnabledChanged: manager.selectSameProfileChecked = enabled - tooltip: enabled ? "" : catalog.i18nc("@tooltip", "You can use the same profile only if you have the same printer as the project was published with") - visible: manager.isUcp - - checked: manager.selectSameProfileChecked - onCheckedChanged: manager.selectSameProfileChecked = checked - } } comboboxVisible: manager.qualityChangesConflict From 72f65406270ba80b89d7f4b3928f282f2046a793 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Fri, 1 Mar 2024 17:18:15 +0100 Subject: [PATCH 596/765] material and profile as suggested CURA-11403 --- plugins/3MFReader/WorkspaceDialog.qml | 28 ++++++++++++++++++++------- 1 file changed, 21 insertions(+), 7 deletions(-) diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index 90b15378c56..58d2cfaa498 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -12,7 +12,7 @@ import Cura 1.1 as Cura UM.Dialog { id: workspaceDialog - title: catalog.i18nc("@title:window", "Open Project") + title: manager.isUcp? catalog.i18nc("@title:window", "Open Universal Cura Project (UCP)"): catalog.i18nc("@title:window", "Open Project") margin: UM.Theme.getSize("default_margin").width minimumWidth: UM.Theme.getSize("modal_window_minimum").width @@ -28,7 +28,7 @@ UM.Dialog UM.Label { id: titleLabel - text: catalog.i18nc("@action:title", "Summary - Cura Project") + text: manager.isUcp? catalog.i18nc("@action:title", "Summary - Open Universal Cura Project (UCP)"): catalog.i18nc("@action:title", "Summary - Cura Project") font: UM.Theme.getFont("large") anchors.top: parent.top anchors.left: parent.left @@ -159,7 +159,7 @@ UM.Dialog WorkspaceSection { id: profileSection - title: catalog.i18nc("@action:label", "Profile settings") + title: manager.isUcp? catalog.i18nc("@action:label", "Suggested Profile settings"):catalog.i18nc("@action:label", "Profile settings") iconSource: UM.Theme.getIcon("Sliders") content: Column { @@ -194,13 +194,26 @@ UM.Dialog rightLabelText: catalog.i18ncp("@action:label", "%1, %2 override", "%1, %2 overrides", manager.numSettingsOverridenByQualityChanges).arg(manager.qualityType).arg(manager.numSettingsOverridenByQualityChanges) visible: manager.numSettingsOverridenByQualityChanges != 0 && manager.isCompatibleMachine } + } + } + WorkspaceSection + { + id: ucpProfileSection + visible: manager.isUcp + title: catalog.i18nc("@action:label", "Settings Loaded from UCP file") + iconSource: UM.Theme.getIcon("Settings") + + content: Column + { + id: ucpProfileSettingsValuesTable + spacing: UM.Theme.getSize("default_margin").height + leftPadding: UM.Theme.getSize("medium_button_icon").width + UM.Theme.getSize("default_margin").width WorkspaceRow { - leftLabelText: catalog.i18nc("@action:label", "Specific settings") + leftLabelText: catalog.i18nc("@action:label", "Settings Loaded from UCP file") rightLabelText: catalog.i18ncp("@action:label", "%1 override", "%1 overrides", manager.exportedSettingModel.rowCount()).arg(manager.exportedSettingModel.rowCount()) buttonText: tableViewSpecificSettings.shouldBeVisible ? catalog.i18nc("@action:button", "Hide settings") : catalog.i18nc("@action:button", "Show settings") - visible: manager.isUcp onButtonClicked: tableViewSpecificSettings.shouldBeVisible = !tableViewSpecificSettings.shouldBeVisible } @@ -263,7 +276,7 @@ UM.Dialog WorkspaceSection { id: materialSection - title: catalog.i18nc("@action:label", "Material settings") + title: manager.isUcp? catalog.i18nc("@action:label", "Suggested Material settings"): catalog.i18nc("@action:label", "Material settings") iconSource: UM.Theme.getIcon("Spool") content: Column { @@ -457,12 +470,13 @@ UM.Dialog { if (visible) { - // Force relead the comboboxes + // Force reload the comboboxes // Since this dialog is only created once the first time you open it, these comboxes need to be reloaded // each time it is shown after the first time so that the indexes will update correctly. materialSection.reloadValues() profileSection.reloadValues() printerSection.reloadValues() + ucpProfileSection.reloadValues() } } } From f19320cad872fca8a901b955b285cdf3bceef609 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Mon, 4 Mar 2024 11:58:21 +0100 Subject: [PATCH 597/765] update the setting table while loading ucp the seond time CURA-11403 --- plugins/3MFReader/SpecificSettingsModel.py | 8 ++++++++ plugins/3MFReader/WorkspaceDialog.py | 2 +- plugins/3MFReader/WorkspaceDialog.qml | 8 +++++++- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/plugins/3MFReader/SpecificSettingsModel.py b/plugins/3MFReader/SpecificSettingsModel.py index d541e50b7f7..1a4e02b1b25 100644 --- a/plugins/3MFReader/SpecificSettingsModel.py +++ b/plugins/3MFReader/SpecificSettingsModel.py @@ -3,6 +3,7 @@ from PyQt6.QtCore import Qt +from UM.Logger import Logger from UM.Settings.SettingDefinition import SettingDefinition from UM.Qt.ListModel import ListModel @@ -19,6 +20,8 @@ def __init__(self, parent = None): self.addRoleName(self.ValueRole, "value") self._i18n_catalog = None + self._update() + def addSettingsFromStack(self, stack, category, settings): for setting, value in settings.items(): @@ -36,3 +39,8 @@ def addSettingsFromStack(self, stack, category, settings): "label": stack.getProperty(setting, "label"), "value": value }) + + def _update(self): + Logger.log("d", "Updating {model_class_name}.".format(model_class_name = self.__class__.__name__)) + self.setItems([]) + return diff --git a/plugins/3MFReader/WorkspaceDialog.py b/plugins/3MFReader/WorkspaceDialog.py index 13e26509711..6a6642331b4 100644 --- a/plugins/3MFReader/WorkspaceDialog.py +++ b/plugins/3MFReader/WorkspaceDialog.py @@ -332,7 +332,7 @@ def setAllowCreatemachine(self, allow_create_machine): def allowCreateMachine(self): return self._allow_create_machine - @pyqtProperty(QObject, constant = True) + @pyqtProperty(QObject) def exportedSettingModel(self): return self._exported_settings_model diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index 58d2cfaa498..700f15ab5b2 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -216,7 +216,6 @@ UM.Dialog buttonText: tableViewSpecificSettings.shouldBeVisible ? catalog.i18nc("@action:button", "Hide settings") : catalog.i18nc("@action:button", "Show settings") onButtonClicked: tableViewSpecificSettings.shouldBeVisible = !tableViewSpecificSettings.shouldBeVisible } - Cura.TableView { id: tableViewSpecificSettings @@ -239,6 +238,13 @@ UM.Dialog rows: manager.exportedSettingModel.items } } + + property var modelRows: manager.exportedSettingModel.items + onModelRowsChanged: + { + tableModel.clear() + tableModel.rows = modelRows + } } comboboxVisible: manager.qualityChangesConflict From c879809836cb6085915f80fe8c42ebd14e515ef5 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Mon, 4 Mar 2024 16:47:09 +0100 Subject: [PATCH 598/765] selected printer is active printer in UCP CURA-11403 --- cura/Machines/Models/MachineListModel.py | 7 +++++- plugins/3MFReader/ThreeMFWorkspaceReader.py | 28 +++++++++------------ plugins/3MFReader/WorkspaceDialog.py | 26 ++++++++++++++++++- plugins/3MFReader/WorkspaceDialog.qml | 2 +- 4 files changed, 44 insertions(+), 19 deletions(-) diff --git a/cura/Machines/Models/MachineListModel.py b/cura/Machines/Models/MachineListModel.py index 69a3c53d03f..de789286870 100644 --- a/cura/Machines/Models/MachineListModel.py +++ b/cura/Machines/Models/MachineListModel.py @@ -5,7 +5,7 @@ # online cloud connected printers are represented within this ListModel. Additional information such as the number of # connected printers for each printer type is gathered. -from typing import Optional, List, cast +from typing import Optional, List, cast, Dict, Any from PyQt6.QtCore import Qt, QTimer, QObject, pyqtSlot, pyqtProperty, pyqtSignal @@ -159,3 +159,8 @@ def addItem(self, container_stack: ContainerStack, is_online: bool, machine_coun "machineCount": machine_count, "catergory": "connected" if is_online else "other", }) + + def getItems(self) -> Dict[str, Any]: + if self.count > 0: + return self.items + return {} \ No newline at end of file diff --git a/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py index 108ba3f09b1..dd011c43f65 100755 --- a/plugins/3MFReader/ThreeMFWorkspaceReader.py +++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py @@ -144,14 +144,12 @@ def __init__(self) -> None: self._old_new_materials: Dict[str, str] = {} self._machine_info = None - self._load_profile = False self._user_settings: Dict[str, Dict[str, Any]] = {} def _clearState(self): self._id_mapping = {} self._old_new_materials = {} self._machine_info = None - self._load_profile = False self._user_settings = {} def setOpenAsUcp(self, openAsUcp: bool): @@ -212,11 +210,6 @@ def _determineGlobalAndExtruderStackFiles(self, project_file_name: str, file_lis return global_stack_file_list[0], extruder_stack_file_list def preRead(self, file_name, show_dialog=True, *args, **kwargs): - result = self._preRead(file_name, show_dialog) - self._is_ucp = False - return result - - def _preRead(self, file_name, show_dialog=True): """Read some info so we can make decisions :param file_name: @@ -618,11 +611,13 @@ def _preRead(self, file_name, show_dialog=True): # Load the user specifically exported settings self._dialog.exportedSettingModel.clear() + self._dialog.setCurrentMachineName("") if self._is_ucp: try: self._user_settings = json.loads(archive.open("Cura/user-settings.json").read().decode("utf-8")) any_extruder_stack = ExtruderManager.getInstance().getExtruderStack(0) actual_global_stack = CuraApplication.getInstance().getGlobalContainerStack() + self._dialog.setCurrentMachineName(actual_global_stack.id) for stack_name, settings in self._user_settings.items(): if stack_name == 'global': @@ -675,7 +670,7 @@ def _preRead(self, file_name, show_dialog=True): # Choosing the initially selected printer in MachineSelector is_networked_machine = False is_abstract_machine = False - if global_stack and isinstance(global_stack, GlobalStack): + if global_stack and isinstance(global_stack, GlobalStack) and not self._is_ucp: # The machine included in the project file exists locally already, no need to change selected printers. is_networked_machine = global_stack.hasNetworkedConnection() is_abstract_machine = parseBool(existing_global_stack.getMetaDataEntry("is_abstract_machine", False)) @@ -684,7 +679,7 @@ def _preRead(self, file_name, show_dialog=True): elif self._dialog.updatableMachinesModel.count > 0: # The machine included in the project file does not exist. There is another machine of the same type. # This will always default to an abstract machine first. - machine = self._dialog.updatableMachinesModel.getItem(0) + machine = self._dialog.updatableMachinesModel.getItem(self._dialog.currentMachinePositionIndex) machine_name = machine["name"] is_networked_machine = machine["isNetworked"] is_abstract_machine = machine["isAbstractMachine"] @@ -709,8 +704,6 @@ def _preRead(self, file_name, show_dialog=True): if self._dialog.getResult() == {}: return WorkspaceReader.PreReadResult.cancelled - self._load_profile = not self._is_ucp - self._resolve_strategies = self._dialog.getResult() # # There can be 3 resolve strategies coming from the dialog: @@ -832,7 +825,7 @@ def read(self, file_name): for stack in extruder_stacks: stack.setNextStack(global_stack, connect_signals = False) - if self._load_profile: + if not self._is_ucp: Logger.log("d", "Workspace loading is checking definitions...") # Get all the definition files & check if they exist. If not, add them. definition_container_files = [name for name in cura_file_names if name.endswith(self._definition_container_suffix)] @@ -906,7 +899,7 @@ def read(self, file_name): QCoreApplication.processEvents() # Ensure that the GUI does not freeze. if global_stack: - if self._load_profile: + if not self._is_ucp: # Handle quality changes if any self._processQualityChanges(global_stack) @@ -914,7 +907,8 @@ def read(self, file_name): self._applyChangesToMachine(global_stack, extruder_stack_dict) else: # Just clear the settings now, so that we can change the active machine without conflicts - self._clearMachineSettings(global_stack, extruder_stack_dict) + self._clearMachineSettings(global_stack, {}) + Logger.log("d", "Workspace loading is notifying rest of the code of changes...") # Actually change the active machine. @@ -924,9 +918,10 @@ def read(self, file_name): # function is running on the main thread (Qt thread), although those "changed" signals have been emitted, but # they won't take effect until this function is done. # To solve this, we schedule _updateActiveMachine() for later so it will have the latest data. + self._updateActiveMachine(global_stack) - if not self._load_profile: + if self._is_ucp: # Now we have switched, apply the user settings self._applyUserSettings(global_stack, extruder_stack_dict, self._user_settings) @@ -938,6 +933,7 @@ def read(self, file_name): base_file_name = os.path.basename(file_name) self.setWorkspaceName(base_file_name) + self._is_ucp = False return nodes, self._loadMetadata(file_name) @staticmethod @@ -1320,7 +1316,7 @@ def _updateActiveMachine(self, global_stack): if key not in global_stack.getMetaData() and key not in _ignored_machine_network_metadata: global_stack.setMetaDataEntry(key, value) - if self._quality_changes_to_apply: + if self._quality_changes_to_apply !=None: quality_changes_group_list = container_tree.getCurrentQualityChangesGroups() quality_changes_group = next((qcg for qcg in quality_changes_group_list if qcg.name == self._quality_changes_to_apply), None) if not quality_changes_group: diff --git a/plugins/3MFReader/WorkspaceDialog.py b/plugins/3MFReader/WorkspaceDialog.py index 6a6642331b4..fdb63c6a116 100644 --- a/plugins/3MFReader/WorkspaceDialog.py +++ b/plugins/3MFReader/WorkspaceDialog.py @@ -63,6 +63,7 @@ def __init__(self, parent = None) -> None: self._machine_name = "" self._machine_type = "" self._variant_type = "" + self._current_machine_name = "" self._material_labels = [] self._extruders = [] self._objects_on_plate = False @@ -76,6 +77,7 @@ def __init__(self, parent = None) -> None: self._is_compatible_machine = False self._allow_create_machine = True self._exported_settings_model = SpecificSettingsModel() + self._current_machine_pos_index = 0 self._is_ucp = False machineConflictChanged = pyqtSignal() @@ -174,11 +176,33 @@ def setMachineName(self, machine_name: str) -> None: self._machine_name = machine_name self.machineNameChanged.emit() + def setCurrentMachineName(self, machine: str) -> None: + self._current_machine_name = machine + + @pyqtProperty(str, notify = machineNameChanged) + def currentMachineName(self) -> str: + return self._current_machine_name + + @staticmethod + def getIndexOfCurrentMachine(list_of_dicts, key, value): + for i, d in enumerate(list_of_dicts): + if d.get(key) == value: # found the dictionary + return i; + return 0 + + @pyqtProperty(int, notify = machineNameChanged) + def currentMachinePositionIndex(self): + return self._current_machine_pos_index + @pyqtProperty(QObject, notify = updatableMachinesChanged) def updatableMachinesModel(self) -> MachineListModel: + if self._current_machine_name != "": + self._current_machine_pos_index = self.getIndexOfCurrentMachine(self._updatable_machines_model.getItems(), "id", self._current_machine_name) + else: + self._current_machine_pos_index = 0 return cast(MachineListModel, self._updatable_machines_model) - def setUpdatableMachines(self, updatable_machines: List[GlobalStack]) -> None: + def setUpdatableMachines(self, updatable_machines: List[GlobalStack], current_machine=None) -> None: self._updatable_machines_model.set_machines_filter(updatable_machines) self.updatableMachinesChanged.emit() diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index 700f15ab5b2..5f13af933c3 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -96,7 +96,7 @@ UM.Dialog WorkspaceRow { leftLabelText: catalog.i18nc("@action:label", manager.isPrinterGroup ? "Printer Group" : "Printer Name") - rightLabelText: manager.machineName == catalog.i18nc("@button", "Create new") ? "" : manager.machineName + rightLabelText: manager.isUcp? manager.machineType: manager.machineName == catalog.i18nc("@button", "Create new") ? "" : manager.machineName } } From 68669794de6e22824348c3797dfb9bd259d35374 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Mon, 4 Mar 2024 18:03:11 +0100 Subject: [PATCH 599/765] selected printer is active printer also in case it is a cloud printer CURA-11403 --- cura/Machines/Models/MachineListModel.py | 4 ++-- plugins/3MFReader/WorkspaceDialog.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cura/Machines/Models/MachineListModel.py b/cura/Machines/Models/MachineListModel.py index de789286870..cac52a0e655 100644 --- a/cura/Machines/Models/MachineListModel.py +++ b/cura/Machines/Models/MachineListModel.py @@ -30,10 +30,10 @@ class MachineListModel(ListModel): ComponentTypeRole = Qt.ItemDataRole.UserRole + 8 IsNetworkedMachineRole = Qt.ItemDataRole.UserRole + 9 - def __init__(self, parent: Optional[QObject] = None, machines_filter: List[GlobalStack] = None, listenToChanges: bool = True) -> None: + def __init__(self, parent: Optional[QObject] = None, machines_filter: List[GlobalStack] = None, listenToChanges: bool = True, showCloudPrinters: bool = False) -> None: super().__init__(parent) - self._show_cloud_printers = False + self._show_cloud_printers = showCloudPrinters self._machines_filter = machines_filter self._catalog = i18nCatalog("cura") diff --git a/plugins/3MFReader/WorkspaceDialog.py b/plugins/3MFReader/WorkspaceDialog.py index fdb63c6a116..c04062f686c 100644 --- a/plugins/3MFReader/WorkspaceDialog.py +++ b/plugins/3MFReader/WorkspaceDialog.py @@ -68,7 +68,7 @@ def __init__(self, parent = None) -> None: self._extruders = [] self._objects_on_plate = False self._is_printer_group = False - self._updatable_machines_model = MachineListModel(self, listenToChanges=False) + self._updatable_machines_model = MachineListModel(self, listenToChanges = False, showCloudPrinters = True) self._missing_package_metadata: List[Dict[str, str]] = [] self._plugin_registry: PluginRegistry = CuraApplication.getInstance().getPluginRegistry() self._install_missing_package_dialog: Optional[QObject] = None @@ -202,7 +202,7 @@ def updatableMachinesModel(self) -> MachineListModel: self._current_machine_pos_index = 0 return cast(MachineListModel, self._updatable_machines_model) - def setUpdatableMachines(self, updatable_machines: List[GlobalStack], current_machine=None) -> None: + def setUpdatableMachines(self, updatable_machines: List[GlobalStack]) -> None: self._updatable_machines_model.set_machines_filter(updatable_machines) self.updatableMachinesChanged.emit() From 85a7586b769163578d793f8325747ada4e390fe4 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Tue, 5 Mar 2024 11:39:12 +0100 Subject: [PATCH 600/765] Fix for test cases --- resources/definitions/creality_ender3v2neo.def.json | 9 --------- 1 file changed, 9 deletions(-) diff --git a/resources/definitions/creality_ender3v2neo.def.json b/resources/definitions/creality_ender3v2neo.def.json index f3f1eede9dc..b5cc2ed52a6 100644 --- a/resources/definitions/creality_ender3v2neo.def.json +++ b/resources/definitions/creality_ender3v2neo.def.json @@ -12,15 +12,6 @@ { "gantry_height": { "value": 25 }, "machine_depth": { "default_value": 230 }, - "machine_head_polygon": - { - "default_value": [ - [-1, 1], - [-1, -1], - [1, -1], - [1, 1] - ] - }, "machine_head_with_fans_polygon": { "default_value": [ From 3e23ce1c3725750b14bf343919d87774fe3e2b51 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Tue, 5 Mar 2024 14:08:39 +0100 Subject: [PATCH 601/765] code review fixed for PAP CURA-11403 --- cura/CuraApplication.py | 2 +- plugins/3MFReader/SpecificSettingsModel.py | 2 +- plugins/3MFReader/WorkspaceDialog.py | 8 ++++---- plugins/3MFWriter/SettingSelection.qml | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 00e6304c0a3..0879f88841d 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -1985,7 +1985,7 @@ def readLocalUcpFile(self, file: QUrl, add_to_recent_files: bool = True): file_name = QUrl(file).toLocalFile() workspace_reader = self.getWorkspaceFileHandler() if workspace_reader is None: - Logger.log("w", "Workspace reader not found") + Logger.warning(f"Workspace reader not found, cannot read file {file_name}.") return workspace_reader.getReaderForFile(file_name).setOpenAsUcp(True) diff --git a/plugins/3MFReader/SpecificSettingsModel.py b/plugins/3MFReader/SpecificSettingsModel.py index 1a4e02b1b25..ac8e7af3ef0 100644 --- a/plugins/3MFReader/SpecificSettingsModel.py +++ b/plugins/3MFReader/SpecificSettingsModel.py @@ -41,6 +41,6 @@ def addSettingsFromStack(self, stack, category, settings): }) def _update(self): - Logger.log("d", "Updating {model_class_name}.".format(model_class_name = self.__class__.__name__)) + Logger.debug(f"Updating {self.__class__.__name__}") self.setItems([]) return diff --git a/plugins/3MFReader/WorkspaceDialog.py b/plugins/3MFReader/WorkspaceDialog.py index c04062f686c..4b9f1eaa6f9 100644 --- a/plugins/3MFReader/WorkspaceDialog.py +++ b/plugins/3MFReader/WorkspaceDialog.py @@ -184,11 +184,11 @@ def currentMachineName(self) -> str: return self._current_machine_name @staticmethod - def getIndexOfCurrentMachine(list_of_dicts, key, value): + def getIndexOfCurrentMachine(list_of_dicts, key, value, defaultIndex): for i, d in enumerate(list_of_dicts): if d.get(key) == value: # found the dictionary - return i; - return 0 + return i + return defaultIndex @pyqtProperty(int, notify = machineNameChanged) def currentMachinePositionIndex(self): @@ -197,7 +197,7 @@ def currentMachinePositionIndex(self): @pyqtProperty(QObject, notify = updatableMachinesChanged) def updatableMachinesModel(self) -> MachineListModel: if self._current_machine_name != "": - self._current_machine_pos_index = self.getIndexOfCurrentMachine(self._updatable_machines_model.getItems(), "id", self._current_machine_name) + self._current_machine_pos_index = self.getIndexOfCurrentMachine(self._updatable_machines_model.getItems(), "id", self._current_machine_name, defaultIndex = 0) else: self._current_machine_pos_index = 0 return cast(MachineListModel, self._updatable_machines_model) diff --git a/plugins/3MFWriter/SettingSelection.qml b/plugins/3MFWriter/SettingSelection.qml index d33f2ef8f03..794a5aacf6c 100644 --- a/plugins/3MFWriter/SettingSelection.qml +++ b/plugins/3MFWriter/SettingSelection.qml @@ -19,7 +19,7 @@ RowLayout Layout.preferredWidth: UM.Theme.getSize("setting").width checked: modelData.selected onClicked: modelData.selected = checked - tooltip: modelData.selectable ? "" :catalog.i18nc("@tooltip", "This setting may not perform well while exporting in UCP. Users are asked to add it at their own risk") + tooltip: modelData.selectable ? "" :catalog.i18nc("@tooltip", "This setting may not perform well while exporting to UCP. Users are asked to add it at their own risk.") } UM.Label @@ -31,7 +31,7 @@ RowLayout { UM.I18nCatalog { id: catalog; name: "cura" } text: catalog.i18nc("@tooltip", - "This setting may not perform well while exporting in UCP, Users are asked to add it at their own risk") + "This setting may not perform well while exporting to UCP, Users are asked to add it at their own risk.") visible: !modelData.selectable } From 0e70b8044655cad72b0f20e138744b31e8a5b134 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Tue, 5 Mar 2024 14:56:09 +0100 Subject: [PATCH 602/765] removal of preference to not open the save dialog for ucp again CURA-11403 --- cura/CuraApplication.py | 2 -- plugins/3MFWriter/ThreeMFWriter.py | 39 ++--------------------- plugins/3MFWriter/UCPDialog.qml | 28 +--------------- resources/qml/Preferences/GeneralPage.qml | 14 -------- 4 files changed, 3 insertions(+), 80 deletions(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 0879f88841d..39446d0f961 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -601,9 +601,7 @@ def startSplashWindowPhase(self) -> None: preferences.addPreference("mesh/scale_to_fit", False) preferences.addPreference("mesh/scale_tiny_meshes", True) preferences.addPreference("cura/dialog_on_project_save", True) - preferences.addPreference("cura/dialog_on_ucp_project_save", True) preferences.addPreference("cura/asked_dialog_on_project_save", False) - preferences.addPreference("cura/asked_dialog_on_ucp_project_save", False) preferences.addPreference("cura/choice_on_profile_override", "always_ask") preferences.addPreference("cura/choice_on_open_project", "always_ask") preferences.addPreference("cura/use_multi_build_plate", False) diff --git a/plugins/3MFWriter/ThreeMFWriter.py b/plugins/3MFWriter/ThreeMFWriter.py index 5583059a2f2..1c14c37cfde 100644 --- a/plugins/3MFWriter/ThreeMFWriter.py +++ b/plugins/3MFWriter/ThreeMFWriter.py @@ -462,40 +462,5 @@ def _extractModelExportedSettings(model: Optional[SettingsExportModel]) -> Dict[ return extra_settings def exportUcp(self): - preferences = CuraApplication.getInstance().getPreferences() - if preferences.getValue("cura/dialog_on_ucp_project_save"): - self._config_dialog = UCPDialog() - self._config_dialog.show() - else: - application = CuraApplication.getInstance() - workspace_handler = application.getInstance().getWorkspaceFileHandler() - - # Set the model to the workspace writer - mesh_writer = workspace_handler.getWriter("3MFWriter") - mesh_writer.setExportModel(SettingsExportModel()) - - # Open file dialog and write the file - device = application.getOutputDeviceManager().getOutputDevice("local_file") - nodes = [application.getController().getScene().getRoot()] - - file_name = CuraApplication.getInstance().getPrintInformation().baseName - - try: - device.requestWrite( - nodes, - file_name, - ["application/vnd.ms-package.3dmanufacturing-3dmodel+xml"], - workspace_handler, - preferred_mimetype_list="application/vnd.ms-package.3dmanufacturing-3dmodel+xml" - ) - except OutputDeviceError.UserCanceledError: - self._onRejected() - except Exception as e: - message = Message( - catalog.i18nc("@info:error", "Unable to write to file: {0}", file_name), - title=catalog.i18nc("@info:title", "Error"), - message_type=Message.MessageType.ERROR - ) - message.show() - Logger.logException("e", "Unable to write to file %s: %s", file_name, e) - self._onRejected() + self._config_dialog = UCPDialog() + self._config_dialog.show() diff --git a/plugins/3MFWriter/UCPDialog.qml b/plugins/3MFWriter/UCPDialog.qml index 3a0e6bf8423..5d094f9187d 100644 --- a/plugins/3MFWriter/UCPDialog.qml +++ b/plugins/3MFWriter/UCPDialog.qml @@ -19,21 +19,6 @@ UM.Dialog minimumHeight: UM.Theme.getSize("modal_window_minimum").height backgroundColor: UM.Theme.getColor("detail_background") - property bool dontShowAgain: false - - function storeDontShowAgain() - { - UM.Preferences.setValue("cura/dialog_on_ucp_project_save", !dontShowAgainCheckbox.checked) - UM.Preferences.setValue("cura/asked_dialog_on_ucp_project_save", false) - } - - onVisibleChanged: - { - if(visible && UM.Preferences.getValue("cura/asked_dialog_on_ucp_project_save")) - { - dontShowAgain = !UM.Preferences.getValue("cura/dialog_on_ucp_project_save") - } - } headerComponent: Rectangle { @@ -90,15 +75,7 @@ UM.Dialog delegate: SettingsSelectionGroup { Layout.margins: 0 } } } - leftButtons: - [ - UM.CheckBox - { - id: dontShowAgainCheckbox - text: catalog.i18nc("@action:label", "Don't show project summary on save again") - checked: dontShowAgain - } - ] + rightButtons: [ Cura.TertiaryButton @@ -117,9 +94,6 @@ UM.Dialog onClosing: { - storeDontShowAgain() manager.notifyClosed() } - onRejected: storeDontShowAgain() - onAccepted: storeDontShowAgain() } diff --git a/resources/qml/Preferences/GeneralPage.qml b/resources/qml/Preferences/GeneralPage.qml index 0f50f169efa..b753d0e48ac 100644 --- a/resources/qml/Preferences/GeneralPage.qml +++ b/resources/qml/Preferences/GeneralPage.qml @@ -784,20 +784,6 @@ UM.PreferencesPage } } - UM.TooltipArea - { - width: childrenRect.width - height: childrenRect.height - text: catalog.i18nc("@info:tooltip", "Should a summary be shown when saving a UCP project file?") - - UM.CheckBox - { - text: catalog.i18nc("@option:check", "Show summary dialog when saving a UCP project") - checked: boolCheck(UM.Preferences.getValue("cura/dialog_on_ucp_project_save")) - onCheckedChanged: UM.Preferences.setValue("cura/dialog_on_ucp_project_save", checked) - } - } - UM.TooltipArea { width: childrenRect.width From b119a010ca7ecfec0add86cc8e47c33049053a81 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Tue, 5 Mar 2024 16:34:41 +0100 Subject: [PATCH 603/765] Moved calculating UCP only to Preread and getting value here CURA-11403 --- cura/CuraActions.py | 10 ---------- cura/CuraApplication.py | 6 ++++++ resources/qml/Cura.qml | 4 ++-- 3 files changed, 8 insertions(+), 12 deletions(-) diff --git a/cura/CuraActions.py b/cura/CuraActions.py index 9612e473b81..835c46bba81 100644 --- a/cura/CuraActions.py +++ b/cura/CuraActions.py @@ -1,6 +1,5 @@ # Copyright (c) 2023 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. -import zipfile from typing import List, cast from PyQt6.QtCore import QObject, QUrl, pyqtSignal, pyqtProperty @@ -33,8 +32,6 @@ from UM.Logger import Logger from UM.Scene.SceneNode import SceneNode -USER_SETTINGS_PATH = "Cura/user-settings.json" - class CuraActions(QObject): def __init__(self, parent: QObject = None) -> None: super().__init__(parent) @@ -196,13 +193,6 @@ def setExtruderForSelection(self, extruder_id: str) -> None: operation.addOperation(SetObjectExtruderOperation(node, extruder_id)) operation.push() - @pyqtSlot(str, result = bool) - def isProjectUcp(self, file_url) -> bool: - file_name = QUrl(file_url).toLocalFile() - archive = zipfile.ZipFile(file_name, "r") - cura_file_names = [name for name in archive.namelist() if name.startswith("Cura/")] - return USER_SETTINGS_PATH in cura_file_names - @pyqtSlot(int) def setBuildPlateForSelection(self, build_plate_nr: int) -> None: Logger.log("d", "Setting build plate number... %d" % build_plate_nr) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 39446d0f961..5de74e4714c 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -2194,6 +2194,12 @@ def _readMeshFinished(self, job): def addNonSliceableExtension(self, extension): self._non_sliceable_extensions.append(extension) + @pyqtSlot(str, result = bool) + def isProjectUcp(self, file_url) -> bool: + file_path = QUrl(file_url).toLocalFile() + workspace_reader = self.getWorkspaceFileHandler().getReaderForFile(file_path) + return workspace_reader.getIsProjectUcp() + @pyqtSlot(str, result=bool) def checkIsValidProjectFile(self, file_url): """Checks if the given file URL is a valid project file. """ diff --git a/resources/qml/Cura.qml b/resources/qml/Cura.qml index a07bb598d8f..776417e15d7 100644 --- a/resources/qml/Cura.qml +++ b/resources/qml/Cura.qml @@ -702,7 +702,7 @@ UM.MainWindow if (hasProjectFile) { var projectFile = projectFileUrlList[0] - var is_ucp = CuraActions.isProjectUcp(projectFile); + var is_ucp = CuraApplication.isProjectUcp(projectFile); if (is_ucp) { askOpenAsProjectOrUcpOrImportModelsDialog.fileUrl = projectFile; @@ -788,7 +788,7 @@ UM.MainWindow target: CuraApplication function onOpenProjectFile(project_file, add_to_recent_files) { - var is_ucp = CuraActions.isProjectUcp(project_file); + var is_ucp = CuraApplication.isProjectUcp(project_file); if (is_ucp) { From 8ef7b65710ee990ebf74116736ee1c1f3a27e21b Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Tue, 5 Mar 2024 16:37:17 +0100 Subject: [PATCH 604/765] removing update existing/ create new in case of UCP also, making sure post processing scripts are not loaded. CURA-11403 --- plugins/3MFReader/ThreeMFWorkspaceReader.py | 78 ++++++++++++--------- plugins/3MFReader/WorkspaceDialog.qml | 4 +- plugins/3MFReader/WorkspaceSection.qml | 3 +- 3 files changed, 48 insertions(+), 37 deletions(-) diff --git a/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py index dd011c43f65..75b04db9e33 100755 --- a/plugins/3MFReader/ThreeMFWorkspaceReader.py +++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py @@ -117,7 +117,7 @@ def __init__(self) -> None: self._supported_extensions = [".3mf"] self._dialog = WorkspaceDialog() self._3mf_mesh_reader = None - self._is_ucp = False + self._is_ucp = None self._container_registry = ContainerRegistry.getInstance() # suffixes registered with the MimeTypes don't start with a dot '.' @@ -208,6 +208,15 @@ def _determineGlobalAndExtruderStackFiles(self, project_file_name: str, file_lis raise FileNotFoundError("No global stack file found!") return global_stack_file_list[0], extruder_stack_file_list + def _isProjectUcp(self, file_name) -> bool: + if self._is_ucp == None: + archive = zipfile.ZipFile(file_name, "r") + cura_file_names = [name for name in archive.namelist() if name.startswith("Cura/")] + self._is_ucp =True if USER_SETTINGS_PATH in cura_file_names else False + + def getIsProjectUcp(self) -> bool: + return self._is_ucp + def preRead(self, file_name, show_dialog=True, *args, **kwargs): """Read some info so we can make decisions @@ -217,7 +226,7 @@ def preRead(self, file_name, show_dialog=True, *args, **kwargs): we don't want to show a dialog. """ self._clearState() - + self._isProjectUcp(file_name) self._3mf_mesh_reader = Application.getInstance().getMeshFileHandler().getReaderForFile(file_name) if self._3mf_mesh_reader and self._3mf_mesh_reader.preRead(file_name) == WorkspaceReader.PreReadResult.accepted: pass @@ -933,7 +942,7 @@ def read(self, file_name): base_file_name = os.path.basename(file_name) self.setWorkspaceName(base_file_name) - self._is_ucp = False + self._is_ucp = None return nodes, self._loadMetadata(file_name) @staticmethod @@ -1312,39 +1321,40 @@ def _updateActiveMachine(self, global_stack): machine_manager.setActiveMachine(global_stack.getId()) # Set metadata fields that are missing from the global stack - for key, value in self._machine_info.metadata_dict.items(): - if key not in global_stack.getMetaData() and key not in _ignored_machine_network_metadata: - global_stack.setMetaDataEntry(key, value) - - if self._quality_changes_to_apply !=None: - quality_changes_group_list = container_tree.getCurrentQualityChangesGroups() - quality_changes_group = next((qcg for qcg in quality_changes_group_list if qcg.name == self._quality_changes_to_apply), None) - if not quality_changes_group: - Logger.log("e", "Could not find quality_changes [%s]", self._quality_changes_to_apply) - return - machine_manager.setQualityChangesGroup(quality_changes_group, no_dialog = True) - else: - self._quality_type_to_apply = self._quality_type_to_apply.lower() if self._quality_type_to_apply else None - quality_group_dict = container_tree.getCurrentQualityGroups() - if self._quality_type_to_apply in quality_group_dict: - quality_group = quality_group_dict[self._quality_type_to_apply] + if not self._is_ucp: + for key, value in self._machine_info.metadata_dict.items(): + if key not in global_stack.getMetaData() and key not in _ignored_machine_network_metadata: + global_stack.setMetaDataEntry(key, value) + + if self._quality_changes_to_apply !=None: + quality_changes_group_list = container_tree.getCurrentQualityChangesGroups() + quality_changes_group = next((qcg for qcg in quality_changes_group_list if qcg.name == self._quality_changes_to_apply), None) + if not quality_changes_group: + Logger.log("e", "Could not find quality_changes [%s]", self._quality_changes_to_apply) + return + machine_manager.setQualityChangesGroup(quality_changes_group, no_dialog = True) else: - Logger.log("i", "Could not find quality type [%s], switch to default", self._quality_type_to_apply) - preferred_quality_type = global_stack.getMetaDataEntry("preferred_quality_type") - quality_group = quality_group_dict.get(preferred_quality_type) - if quality_group is None: - Logger.log("e", "Could not get preferred quality type [%s]", preferred_quality_type) - - if quality_group is not None: - machine_manager.setQualityGroup(quality_group, no_dialog = True) - - # Also apply intent if available - available_intent_category_list = IntentManager.getInstance().currentAvailableIntentCategories() - if self._intent_category_to_apply is not None and self._intent_category_to_apply in available_intent_category_list: - machine_manager.setIntentByCategory(self._intent_category_to_apply) + self._quality_type_to_apply = self._quality_type_to_apply.lower() if self._quality_type_to_apply else None + quality_group_dict = container_tree.getCurrentQualityGroups() + if self._quality_type_to_apply in quality_group_dict: + quality_group = quality_group_dict[self._quality_type_to_apply] else: - # if no intent is provided, reset to the default (balanced) intent - machine_manager.resetIntents() + Logger.log("i", "Could not find quality type [%s], switch to default", self._quality_type_to_apply) + preferred_quality_type = global_stack.getMetaDataEntry("preferred_quality_type") + quality_group = quality_group_dict.get(preferred_quality_type) + if quality_group is None: + Logger.log("e", "Could not get preferred quality type [%s]", preferred_quality_type) + + if quality_group is not None: + machine_manager.setQualityGroup(quality_group, no_dialog = True) + + # Also apply intent if available + available_intent_category_list = IntentManager.getInstance().currentAvailableIntentCategories() + if self._intent_category_to_apply is not None and self._intent_category_to_apply in available_intent_category_list: + machine_manager.setIntentByCategory(self._intent_category_to_apply) + else: + # if no intent is provided, reset to the default (balanced) intent + machine_manager.resetIntents() # Notify everything/one that is to notify about changes. global_stack.containersChanged.emit(global_stack.getTop()) diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index 5f13af933c3..c8d53a1154e 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -253,7 +253,7 @@ UM.Dialog id: qualityChangesResolveComboBox model: resolveStrategiesModel textRole: "label" - visible: manager.qualityChangesConflict + visible: manager.qualityChangesConflict && !manager.isUcp contentLeftPadding: UM.Theme.getSize("default_margin").width + UM.Theme.getSize("narrow_margin").width textFont: UM.Theme.getFont("medium") @@ -307,7 +307,7 @@ UM.Dialog id: materialResolveComboBox model: resolveStrategiesModel textRole: "label" - visible: manager.materialConflict + visible: manager.materialConflict && !manager.isUcp contentLeftPadding: UM.Theme.getSize("default_margin").width + UM.Theme.getSize("narrow_margin").width textFont: UM.Theme.getFont("medium") diff --git a/plugins/3MFReader/WorkspaceSection.qml b/plugins/3MFReader/WorkspaceSection.qml index 63b5e89b41e..7c8b01be7aa 100644 --- a/plugins/3MFReader/WorkspaceSection.qml +++ b/plugins/3MFReader/WorkspaceSection.qml @@ -84,7 +84,8 @@ Item { anchors.right: parent.right anchors.verticalCenter: comboboxLabel.verticalCenter - + color: UM.Theme.getColor("small_button_text") + icon: UM.Theme.getIcon("Information") text: comboboxTooltipText visible: comboboxTooltipText != "" } From a63cf954d420aaaed618a35bfc7863206282d3d6 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Wed, 6 Mar 2024 10:28:09 +0100 Subject: [PATCH 605/765] =?UTF-8?q?modify-settings-for-overlap=E2=80=99,?= =?UTF-8?q?=20'support-blocker'=20and=20'support-mesh'=20saved=20as=20thei?= =?UTF-8?q?r=20respective=20types=20along=20with=20their=20settings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CURA-11403 --- plugins/3MFWriter/SettingsExportModel.py | 27 ++++++++---------------- 1 file changed, 9 insertions(+), 18 deletions(-) diff --git a/plugins/3MFWriter/SettingsExportModel.py b/plugins/3MFWriter/SettingsExportModel.py index 62c445f34ea..401bf21e906 100644 --- a/plugins/3MFWriter/SettingsExportModel.py +++ b/plugins/3MFWriter/SettingsExportModel.py @@ -59,17 +59,12 @@ class SettingsExportModel(QObject): 'skin_edge_support_thickness', 'alternate_carve_order', 'top_skin_preshrink', - 'interlocking_enable', - 'infill_mesh', - 'cutting_mesh'} - - PER_MODEL_EXPORTABLE_SETTINGS_KEYS = { 'top_bottom_thickness', - 'top_thickness', - 'bottom_thickness', - 'top_layers', - 'bottom_layers', - 'wall_thickness', - 'wall_line_count'} + 'interlocking_enable'} + + PER_MODEL_EXPORTABLE_SETTINGS_KEYS = {"anti_overhang_mesh", + "infill_mesh", + "cutting_mesh", + "support_mesh"} def __init__(self, parent = None): super().__init__(parent) @@ -119,20 +114,16 @@ def _exportSettings(settings_stack): user_keys = user_settings_container.getAllKeys() exportable_settings = SettingsExportModel.EXPORTABLE_SETTINGS settings_export = [] + # Check whether any of the user keys exist in PER_MODEL_EXPORTABLE_SETTINGS_KEYS + is_exportable = any(key in SettingsExportModel.PER_MODEL_EXPORTABLE_SETTINGS_KEYS for key in user_keys) - # in case of modify mesh settings we add spme extra settings to the exportable settings - if 'infill_mesh' in user_keys: - exportable_settings = exportable_settings.union(SettingsExportModel.PER_MODEL_EXPORTABLE_SETTINGS_KEYS) for setting_to_export in user_keys: label = settings_stack.getProperty(setting_to_export, "label") value = settings_stack.getProperty(setting_to_export, "value") unit = settings_stack.getProperty(setting_to_export, "unit") setting_type = settings_stack.getProperty(setting_to_export, "type") - - is_exportable = True if setting_to_export in exportable_settings else False if setting_type is not None: - # This is not very good looking, but will do for now value = f"{str(SettingDefinition.settingValueToString(setting_type, value))} {unit}" else: value = str(value) @@ -140,6 +131,6 @@ def _exportSettings(settings_stack): settings_export.append(SettingExport(setting_to_export, label, value, - is_exportable)) + is_exportable or setting_to_export in exportable_settings)) return settings_export From 831a1d4876fc5d12c786c2b93a0ebe9c2fbf3728 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Wed, 6 Mar 2024 12:32:05 +0100 Subject: [PATCH 606/765] Reset openAsUcp at the start of preread CURA-11403 --- cura/CuraApplication.py | 3 ++- plugins/3MFReader/ThreeMFWorkspaceReader.py | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 5de74e4714c..86bb53126c7 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -1986,7 +1986,6 @@ def readLocalUcpFile(self, file: QUrl, add_to_recent_files: bool = True): Logger.warning(f"Workspace reader not found, cannot read file {file_name}.") return - workspace_reader.getReaderForFile(file_name).setOpenAsUcp(True) workspace_reader.readLocalFile(file, add_to_recent_files) @pyqtSlot(QUrl, str, bool) @@ -2209,6 +2208,8 @@ def checkIsValidProjectFile(self, file_url): if workspace_reader is None: return False # non-project files won't get a reader try: + if workspace_reader.getPluginId() == "3MFReader": + workspace_reader.clearOpenAsUcp() result = workspace_reader.preRead(file_path, show_dialog=False) return result == WorkspaceReader.PreReadResult.accepted except: diff --git a/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py index 75b04db9e33..e6992611c13 100755 --- a/plugins/3MFReader/ThreeMFWorkspaceReader.py +++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py @@ -152,8 +152,8 @@ def _clearState(self): self._machine_info = None self._user_settings = {} - def setOpenAsUcp(self, openAsUcp: bool): - self._is_ucp = openAsUcp + def clearOpenAsUcp(self): + self._is_ucp = None def getNewId(self, old_id: str): """Get a unique name based on the old_id. This is different from directly calling the registry in that it caches results. @@ -208,6 +208,7 @@ def _determineGlobalAndExtruderStackFiles(self, project_file_name: str, file_lis raise FileNotFoundError("No global stack file found!") return global_stack_file_list[0], extruder_stack_file_list + def _isProjectUcp(self, file_name) -> bool: if self._is_ucp == None: archive = zipfile.ZipFile(file_name, "r") From dbf722e034bf1d14b05a39d30ef9d450e80ec34a Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Wed, 6 Mar 2024 13:38:33 +0100 Subject: [PATCH 607/765] added settings for modifier meshes and grouped meshed CURA-11403 --- plugins/3MFWriter/SettingsExportModel.py | 55 ++++++++++++------------ 1 file changed, 27 insertions(+), 28 deletions(-) diff --git a/plugins/3MFWriter/SettingsExportModel.py b/plugins/3MFWriter/SettingsExportModel.py index 401bf21e906..99ffad4bac0 100644 --- a/plugins/3MFWriter/SettingsExportModel.py +++ b/plugins/3MFWriter/SettingsExportModel.py @@ -66,43 +66,42 @@ class SettingsExportModel(QObject): "cutting_mesh", "support_mesh"} - def __init__(self, parent = None): + def __init__(self, parent=None): super().__init__(parent) self._settings_groups = [] application = CuraApplication.getInstance() - # Display global settings + self._appendGlobalSettings(application) + self._appendExtruderSettings(application) + self._appendModelSettings(application) + + def _appendGlobalSettings(self, application): global_stack = application.getGlobalContainerStack() - self._settings_groups.append(SettingsExportGroup(global_stack, - "Global settings", - SettingsExportGroup.Category.Global, - self._exportSettings(global_stack))) + self._settings_groups.append(SettingsExportGroup( + global_stack, "Global settings", SettingsExportGroup.Category.Global, self._exportSettings(global_stack))) - # Display per-extruder settings + def _appendExtruderSettings(self, application): extruders_stacks = ExtruderManager.getInstance().getUsedExtruderStacks() for extruder_stack in extruders_stacks: - color = "" - if extruder_stack.material: - color = extruder_stack.material.getMetaDataEntry("color_code") - - self._settings_groups.append(SettingsExportGroup(extruder_stack, - "Extruder settings", - SettingsExportGroup.Category.Extruder, - self._exportSettings(extruder_stack), - extruder_index=extruder_stack.position, - extruder_color=color)) - - # Display per-model settings - scene_root = application.getController().getScene().getRoot() - for scene_node in scene_root.getChildren(): - per_model_stack = scene_node.callDecoration("getStack") - if per_model_stack is not None: - self._settings_groups.append(SettingsExportGroup(per_model_stack, - "Model settings", - SettingsExportGroup.Category.Model, - self._exportSettings(per_model_stack), - scene_node.getName())) + color = extruder_stack.material.getMetaDataEntry("color_code") if extruder_stack.material else "" + self._settings_groups.append(SettingsExportGroup( + extruder_stack, "Extruder settings", SettingsExportGroup.Category.Extruder, + self._exportSettings(extruder_stack), extruder_index=extruder_stack.position, extruder_color=color)) + + def _appendModelSettings(self, application): + scene = application.getController().getScene() + for scene_node in scene.getRoot().getChildren(): + self._appendNodeSettings(scene_node, "Model settings", SettingsExportGroup.Category.Model) + + def _appendNodeSettings(self, node, title_prefix, category): + stack = node.callDecoration("getStack") + if stack: + self._settings_groups.append(SettingsExportGroup( + stack, f"{title_prefix}", category, self._exportSettings(stack), node.getName())) + for child in node.getChildren(): + self._appendNodeSettings(child, f"Children of {node.getName()}", SettingsExportGroup.Category.Model) + @pyqtProperty(list, constant=True) def settingsGroups(self) -> List[SettingsExportGroup]: From cd8c5029d2b23de79d6cdaa2b4928020aa4947bb Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Wed, 6 Mar 2024 16:00:38 +0100 Subject: [PATCH 608/765] Remove useless code The resolve properties on the QML objects cause a crash in PyQt. They are not the actual cause, because this should work anyway. But for now, they are however completely useless because the material bed temperature setting can't have a resolve function, so we can remove them anyway. CURA-11657 --- resources/qml/PrintMonitor.qml | 2 -- resources/qml/PrinterOutput/ExtruderBox.qml | 2 -- resources/qml/PrinterOutput/HeatedBedBox.qml | 12 +----------- 3 files changed, 1 insertion(+), 15 deletions(-) diff --git a/resources/qml/PrintMonitor.qml b/resources/qml/PrintMonitor.qml index adb004298dc..027586c3813 100644 --- a/resources/qml/PrintMonitor.qml +++ b/resources/qml/PrintMonitor.qml @@ -132,8 +132,6 @@ ScrollView key: "material_bed_temperature" watchedProperties: ["value", "minimum_value", "maximum_value", "resolve"] storeIndex: 0 - - property var resolve: Cura.MachineManager.activeStack != Cura.MachineManager.activeMachine ? properties.resolve : "None" } UM.SettingPropertyProvider diff --git a/resources/qml/PrinterOutput/ExtruderBox.qml b/resources/qml/PrinterOutput/ExtruderBox.qml index e567d5d4cbe..46deec29efd 100644 --- a/resources/qml/PrinterOutput/ExtruderBox.qml +++ b/resources/qml/PrinterOutput/ExtruderBox.qml @@ -25,8 +25,6 @@ Item key: "material_print_temperature" watchedProperties: ["value", "minimum_value", "maximum_value", "resolve"] storeIndex: 0 - - property var resolve: Cura.MachineManager.activeStack != Cura.MachineManager.activeMachine ? properties.resolve : "None" } Rectangle diff --git a/resources/qml/PrinterOutput/HeatedBedBox.qml b/resources/qml/PrinterOutput/HeatedBedBox.qml index 172606c56d3..53230725671 100644 --- a/resources/qml/PrinterOutput/HeatedBedBox.qml +++ b/resources/qml/PrinterOutput/HeatedBedBox.qml @@ -199,17 +199,7 @@ Item { return ""; } - if ((bedTemperature.resolve != "None" && bedTemperature.resolve) && (bedTemperature.stackLevels[0] != 0) && (bedTemperature.stackLevels[0] != 1)) - { - // We have a resolve function. Indicates that the setting is not settable per extruder and that - // we have to choose between the resolved value (default) and the global value - // (if user has explicitly set this). - return bedTemperature.resolve; - } - else - { - return bedTemperature.properties.value; - } + return bedTemperature.properties.value; } } } From af989356a5127a18d68035d1e96ac1288296a369 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Thu, 7 Mar 2024 10:40:59 +0100 Subject: [PATCH 609/765] Use proper gradual flow plugin version --- conandata.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conandata.yml b/conandata.yml index 51a44c152dd..fdfc2dec116 100644 --- a/conandata.yml +++ b/conandata.yml @@ -4,7 +4,7 @@ requirements: - "curaengine/(latest)@ultimaker/testing" - "cura_binary_data/(latest)@ultimaker/testing" - "fdm_materials/(latest)@ultimaker/testing" - - "curaengine_plugin_gradual_flow/0.1.0-beta.2" + - "curaengine_plugin_gradual_flow/0.1.0-beta.3" - "dulcificum/latest@ultimaker/testing" - "pysavitar/5.3.0" - "pynest2d/5.3.0" From 66aeb3b46524f889aa283c14eac08c3758e1ea2f Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Thu, 7 Mar 2024 11:48:09 +0100 Subject: [PATCH 610/765] Apply suggested description simplification CURA-9838 Co-authored-by: Casper Lamboo --- resources/definitions/fdmprinter.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 142d4317e1c..784b2235002 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6089,7 +6089,7 @@ "brim_inside_margin": { "label": "Brim Avoid Margin", - "description": "When growing the brim around a surface, it may touch an other surface where brim is not expected. This removes all brim within this distance from clean surfaces.", + "description": "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces.", "unit": "mm", "type": "float", "value": "line_width * 4", From 8e61996ced4fcaa8d44017bcc410b540780b48e4 Mon Sep 17 00:00:00 2001 From: Casper Lamboo Date: Thu, 7 Mar 2024 16:07:15 +0100 Subject: [PATCH 611/765] Remove wildcards from definition files --- resources/definitions/ultimaker.def.json | 2 +- resources/definitions/ultimaker2.def.json | 7 ++----- resources/definitions/ultimaker2_plus.def.json | 5 +---- resources/definitions/ultimaker2_plus_connect.def.json | 3 +-- resources/definitions/ultimaker3.def.json | 5 ++--- resources/definitions/ultimaker_original.def.json | 7 ++----- resources/definitions/ultimaker_original_dual.def.json | 7 ++----- resources/definitions/ultimaker_s3.def.json | 2 +- resources/definitions/ultimaker_s5.def.json | 2 +- 9 files changed, 13 insertions(+), 27 deletions(-) diff --git a/resources/definitions/ultimaker.def.json b/resources/definitions/ultimaker.def.json index ef7fc7b1cb1..3821fdefd6c 100644 --- a/resources/definitions/ultimaker.def.json +++ b/resources/definitions/ultimaker.def.json @@ -8,7 +8,7 @@ "author": "Ultimaker", "manufacturer": "Ultimaker B.V.", "exclude_materials": [ - "structur3d_*", + "structur3d_", "generic_hips" ] }, diff --git a/resources/definitions/ultimaker2.def.json b/resources/definitions/ultimaker2.def.json index 2dd168fd096..8c0e066cd18 100644 --- a/resources/definitions/ultimaker2.def.json +++ b/resources/definitions/ultimaker2.def.json @@ -21,15 +21,12 @@ "generic_petg", "generic_pva", "generic_tough_pla", - "structur3d_*", + "structur3d_", "ultimaker_bam", "ultimaker_petcf", - "ultimaker_petcf_*", "ultimaker_petg", - "ultimaker_petg_*", "ultimaker_pva", - "ultimaker_tough_pla", - "ultimaker_tough_pla_*" + "ultimaker_tough_pla" ], "firmware_file": "MarlinUltimaker2.hex", "has_machine_quality": true, diff --git a/resources/definitions/ultimaker2_plus.def.json b/resources/definitions/ultimaker2_plus.def.json index 6ddd4029279..3a97c385200 100644 --- a/resources/definitions/ultimaker2_plus.def.json +++ b/resources/definitions/ultimaker2_plus.def.json @@ -20,15 +20,12 @@ "generic_petg", "generic_pva", "generic_tough_pla", - "structur3d_*", + "structur3d_", "ultimaker_bam", "ultimaker_petcf", - "ultimaker_petcf_*", "ultimaker_petg", - "ultimaker_petg_*", "ultimaker_pva", "ultimaker_tough_pla", - "ultimaker_tough_pla_*" ], "firmware_file": "MarlinUltimaker2plus.hex", "first_start_actions": [], diff --git a/resources/definitions/ultimaker2_plus_connect.def.json b/resources/definitions/ultimaker2_plus_connect.def.json index 564fee957b4..90e7d6f7945 100644 --- a/resources/definitions/ultimaker2_plus_connect.def.json +++ b/resources/definitions/ultimaker2_plus_connect.def.json @@ -17,10 +17,9 @@ "generic_gffpa", "generic_hips", "generic_pva", - "structur3d_*", + "structur3d_", "ultimaker_bam", "ultimaker_petcf", - "ultimaker_petcf_*", "ultimaker_pva" ], "first_start_actions": [], diff --git a/resources/definitions/ultimaker3.def.json b/resources/definitions/ultimaker3.def.json index 7eba795a454..173fbdb5247 100644 --- a/resources/definitions/ultimaker3.def.json +++ b/resources/definitions/ultimaker3.def.json @@ -20,9 +20,8 @@ "generic_gffpa", "generic_hips", "generic_petcf", - "structur3d_*", - "ultimaker_petcf", - "ultimaker_petcf_*" + "structur3d_", + "ultimaker_petcf" ], "firmware_update_info": { diff --git a/resources/definitions/ultimaker_original.def.json b/resources/definitions/ultimaker_original.def.json index 684c30691fc..6848cb3c86a 100644 --- a/resources/definitions/ultimaker_original.def.json +++ b/resources/definitions/ultimaker_original.def.json @@ -20,15 +20,12 @@ "generic_petg", "generic_pva", "generic_tough_pla", - "structur3d_*", + "structur3d_", "ultimaker_bam", "ultimaker_petcf", - "ultimaker_petcf_*", "ultimaker_petg", - "ultimaker_petg_*", "ultimaker_pva", - "ultimaker_tough_pla", - "ultimaker_tough_pla_*" + "ultimaker_tough_pla" ], "firmware_file": "MarlinUltimaker-{baudrate}.hex", "firmware_hbk_file": "MarlinUltimaker-HBK-{baudrate}.hex", diff --git a/resources/definitions/ultimaker_original_dual.def.json b/resources/definitions/ultimaker_original_dual.def.json index 777e1f4c2b8..65fca17df72 100644 --- a/resources/definitions/ultimaker_original_dual.def.json +++ b/resources/definitions/ultimaker_original_dual.def.json @@ -20,15 +20,12 @@ "generic_petg", "generic_pva", "generic_tough_pla", - "structur3d_*", + "structur3d_", "ultimaker_bam", "ultimaker_petcf", - "ultimaker_petcf_*", "ultimaker_petg", - "ultimaker_petg_*", "ultimaker_pva", - "ultimaker_tough_pla", - "ultimaker_tough_pla_*" + "ultimaker_tough_pla" ], "firmware_file": "MarlinUltimaker-{baudrate}-dual.hex", "firmware_hbk_file": "MarlinUltimaker-HBK-{baudrate}-dual.hex", diff --git a/resources/definitions/ultimaker_s3.def.json b/resources/definitions/ultimaker_s3.def.json index a9f0bae2592..3750b835532 100644 --- a/resources/definitions/ultimaker_s3.def.json +++ b/resources/definitions/ultimaker_s3.def.json @@ -17,7 +17,7 @@ "exclude_materials": [ "generic_hips", "generic_flexible", - "structur3d_*" + "structur3d_" ], "firmware_update_info": { diff --git a/resources/definitions/ultimaker_s5.def.json b/resources/definitions/ultimaker_s5.def.json index 2732c598936..eb3984510ec 100644 --- a/resources/definitions/ultimaker_s5.def.json +++ b/resources/definitions/ultimaker_s5.def.json @@ -18,7 +18,7 @@ "exclude_materials": [ "generic_hips", "generic_flexible", - "structur3d_*" + "structur3d_" ], "firmware_update_info": { From e905ac9d331f0e39a14ca79fadbaed46137d16d3 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Thu, 7 Mar 2024 16:13:19 +0100 Subject: [PATCH 612/765] adding a lock for the create snapshot CURA-11650 --- plugins/3MFWriter/ThreeMFWriter.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugins/3MFWriter/ThreeMFWriter.py b/plugins/3MFWriter/ThreeMFWriter.py index 1c14c37cfde..bf6378c4c4b 100644 --- a/plugins/3MFWriter/ThreeMFWriter.py +++ b/plugins/3MFWriter/ThreeMFWriter.py @@ -2,6 +2,7 @@ # Cura is released under the terms of the LGPLv3 or higher. import json import re +import threading from typing import Optional, cast, List, Dict, Pattern, Set @@ -65,6 +66,7 @@ def __init__(self): self._unit_matrix_string = ThreeMFWriter._convertMatrixToString(Matrix()) self._archive: Optional[zipfile.ZipFile] = None self._store_archive = False + self._lock = threading.Lock() @staticmethod def _convertMatrixToString(matrix): @@ -423,6 +425,7 @@ def _getMaterialPackageMetadata() -> List[Dict[str, str]]: @call_on_qt_thread # must be called from the main thread because of OpenGL def _createSnapshot(self): Logger.log("d", "Creating thumbnail image...") + self._lock.aquire() if not CuraApplication.getInstance().isVisible: Logger.log("w", "Can't create snapshot when renderer not initialized.") return None @@ -431,6 +434,7 @@ def _createSnapshot(self): except: Logger.logException("w", "Failed to create snapshot image") return None + finally: self._lock.release() return snapshot From 2c033b7adc0cd581fd467c1143d3830961f33c41 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 7 Mar 2024 16:15:35 +0100 Subject: [PATCH 613/765] Remove incorrect space --- resources/definitions/ultimaker2_plus.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/ultimaker2_plus.def.json b/resources/definitions/ultimaker2_plus.def.json index 3a97c385200..b5ad30bb8d6 100644 --- a/resources/definitions/ultimaker2_plus.def.json +++ b/resources/definitions/ultimaker2_plus.def.json @@ -25,7 +25,7 @@ "ultimaker_petcf", "ultimaker_petg", "ultimaker_pva", - "ultimaker_tough_pla", + "ultimaker_tough_pla" ], "firmware_file": "MarlinUltimaker2plus.hex", "first_start_actions": [], From dc031c46748ebecae471e09e99c24a1f8b238e1e Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Thu, 7 Mar 2024 16:35:19 +0100 Subject: [PATCH 614/765] spelling of acquire CURA-11650 --- plugins/3MFWriter/ThreeMFWriter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/3MFWriter/ThreeMFWriter.py b/plugins/3MFWriter/ThreeMFWriter.py index bf6378c4c4b..d33f0e374a8 100644 --- a/plugins/3MFWriter/ThreeMFWriter.py +++ b/plugins/3MFWriter/ThreeMFWriter.py @@ -425,7 +425,7 @@ def _getMaterialPackageMetadata() -> List[Dict[str, str]]: @call_on_qt_thread # must be called from the main thread because of OpenGL def _createSnapshot(self): Logger.log("d", "Creating thumbnail image...") - self._lock.aquire() + self._lock.acquire() if not CuraApplication.getInstance().isVisible: Logger.log("w", "Can't create snapshot when renderer not initialized.") return None From fa2257aaa35e9bdf7f6b1c2da6f01b5cf2489098 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Thu, 7 Mar 2024 16:48:47 +0100 Subject: [PATCH 615/765] Add fallback for uuid retrieval from DF CURA-11655 --- .../Http/CloudClusterWithConfigResponse.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterWithConfigResponse.py b/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterWithConfigResponse.py index eb6389910c5..4ea73d0ccbd 100644 --- a/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterWithConfigResponse.py +++ b/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterWithConfigResponse.py @@ -2,6 +2,8 @@ # Cura is released under the terms of the LGPLv3 or higher. from typing import Optional, List +import uuid + from .CloudClusterResponse import CloudClusterResponse from .ClusterPrinterStatus import ClusterPrinterStatus @@ -11,4 +13,20 @@ class CloudClusterWithConfigResponse(CloudClusterResponse): def __init__(self, **kwargs) -> None: self.configuration = self.parseModel(ClusterPrinterStatus, kwargs.get("host_printer")) + + # Some printers will return a null UUID in the host_printer.uuid field. For those we can fall back using + # the host_guid field of the cluster data + valid_uuid = False + try: + parsed_uuid = uuid.UUID(self.configuration.uuid) + valid_uuid = parsed_uuid.int != 0 + except: + pass + + if not valid_uuid: + try: + self.configuration.uuid = kwargs.get("host_guid") + except: + pass + super().__init__(**kwargs) From 47a3d4ddbd660d4eca7bd854490a5c4d6a060bcf Mon Sep 17 00:00:00 2001 From: Frederic Meeuwissen <13856291+Frederic98@users.noreply.github.com> Date: Thu, 7 Mar 2024 17:27:07 +0100 Subject: [PATCH 616/765] Improve top layer quality of TPU Recommited from Paul's changes to resolve conflicts --- .../quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg | 7 ++++++- .../quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg | 7 ++++++- .../quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg | 7 ++++++- .../quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg | 7 ++++++- .../quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg | 7 ++++++- .../quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg | 7 ++++++- .../quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg | 7 ++++++- .../quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg | 7 ++++++- .../quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg | 7 ++++++- .../quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg | 7 ++++++- .../quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg | 7 ++++++- .../quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg | 7 ++++++- 12 files changed, 72 insertions(+), 12 deletions(-) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg index 601886a065d..008a119dd22 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg @@ -12,6 +12,11 @@ variant = AA 0.4 weight = -1 [values] +bridge_skin_material_flow = 200 +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = =bridge_skin_material_flow +bridge_wall_speed = 10 brim_width = 8.75 gradual_infill_step_height = =5 * layer_height infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' @@ -41,7 +46,7 @@ support_z_distance = =math.ceil(0.3/layer_height)*layer_height switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 -top_bottom_thickness = 0.7 +top_bottom_thickness = =layer_height * 6 travel_avoid_distance = 1.5 wall_0_inset = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg index bb303eeb339..2b585a73ba8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg @@ -12,6 +12,11 @@ variant = AA 0.4 weight = 0 [values] +bridge_skin_material_flow = 200 +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = =bridge_skin_material_flow +bridge_wall_speed = 10 brim_width = 8.75 gradual_infill_step_height = =5 * layer_height infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' @@ -42,7 +47,7 @@ support_z_distance = =math.ceil(0.3/layer_height)*layer_height switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 -top_bottom_thickness = 0.7 +top_bottom_thickness = =layer_height * 6 travel_avoid_distance = 1.5 wall_0_inset = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg index 85c37d439dc..1932cf72138 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg @@ -12,6 +12,11 @@ variant = AA 0.4 weight = -2 [values] +bridge_skin_material_flow = 200 +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = =bridge_skin_material_flow +bridge_wall_speed = 10 brim_width = 8.75 gradual_infill_step_height = =5 * layer_height infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' @@ -41,7 +46,7 @@ support_z_distance = =math.ceil(0.3/layer_height)*layer_height switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 -top_bottom_thickness = 0.7 +top_bottom_thickness = =layer_height * 6 travel_avoid_distance = 1.5 wall_0_inset = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg index 5d6ce58f7c9..c2e0ba68afd 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg @@ -12,6 +12,11 @@ variant = AA 0.8 weight = -2 [values] +bridge_skin_material_flow = 200 +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = =bridge_skin_material_flow +bridge_wall_speed = 10 brim_width = 8.75 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' machine_nozzle_cool_down_speed = 0.5 @@ -36,7 +41,7 @@ support_angle = 50 switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 -top_bottom_thickness = 1.2 +top_bottom_thickness = =layer_height * 6 top_skin_expand_distance = =line_width * 2 travel_avoid_distance = 1.5 wall_0_wipe_dist = =line_width * 2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg index 1b69ada75dc..156d645694a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg @@ -12,6 +12,11 @@ variant = AA 0.8 weight = -3 [values] +bridge_skin_material_flow = 200 +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = =bridge_skin_material_flow +bridge_wall_speed = 10 brim_width = 8.75 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 15 @@ -37,7 +42,7 @@ support_angle = 50 switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 -top_bottom_thickness = 1.2 +top_bottom_thickness = =layer_height * 6 top_skin_expand_distance = =line_width * 2 travel_avoid_distance = 1.5 wall_0_wipe_dist = =line_width * 2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg index d678d7e178e..0f1e8357b3e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg @@ -12,6 +12,11 @@ variant = AA 0.8 weight = -4 [values] +bridge_skin_material_flow = 200 +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = =bridge_skin_material_flow +bridge_wall_speed = 10 brim_width = 8.75 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 15 @@ -37,7 +42,7 @@ support_angle = 50 switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 -top_bottom_thickness = 1.2 +top_bottom_thickness = =layer_height * 6 top_skin_expand_distance = =line_width * 2 travel_avoid_distance = 1.5 wall_0_wipe_dist = =line_width * 2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg index db01865cf87..d718e44a027 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg @@ -12,6 +12,11 @@ variant = AA 0.4 weight = -1 [values] +bridge_skin_material_flow = 200 +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = =bridge_skin_material_flow +bridge_wall_speed = 10 brim_width = 8.75 gradual_infill_step_height = =5 * layer_height infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' @@ -41,7 +46,7 @@ support_z_distance = =math.ceil(0.3/layer_height)*layer_height switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 -top_bottom_thickness = 0.7 +top_bottom_thickness = =layer_height * 6 travel_avoid_distance = 1.5 wall_0_inset = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg index 27a8bb863bd..55a724e2600 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg @@ -12,6 +12,11 @@ variant = AA 0.4 weight = 0 [values] +bridge_skin_material_flow = 200 +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = =bridge_skin_material_flow +bridge_wall_speed = 10 brim_width = 8.75 gradual_infill_step_height = =5 * layer_height infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' @@ -42,7 +47,7 @@ support_z_distance = =math.ceil(0.3/layer_height)*layer_height switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 -top_bottom_thickness = 0.7 +top_bottom_thickness = =layer_height * 6 travel_avoid_distance = 1.5 wall_0_inset = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg index cf3069ee0f0..591e8e91bd2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg @@ -12,6 +12,11 @@ variant = AA 0.4 weight = -2 [values] +bridge_skin_material_flow = 200 +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = =bridge_skin_material_flow +bridge_wall_speed = 10 brim_width = 8.75 gradual_infill_step_height = =5 * layer_height infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' @@ -41,7 +46,7 @@ support_z_distance = =math.ceil(0.3/layer_height)*layer_height switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 -top_bottom_thickness = 0.7 +top_bottom_thickness = =layer_height * 6 travel_avoid_distance = 1.5 wall_0_inset = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg index 2491d0ed881..941bfb3736d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg @@ -12,6 +12,11 @@ variant = AA 0.8 weight = -2 [values] +bridge_skin_material_flow = 200 +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = =bridge_skin_material_flow +bridge_wall_speed = 10 brim_width = 8.75 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' machine_nozzle_cool_down_speed = 0.5 @@ -36,7 +41,7 @@ support_angle = 50 switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 -top_bottom_thickness = 1.2 +top_bottom_thickness = =layer_height * 6 top_skin_expand_distance = =line_width * 2 travel_avoid_distance = 1.5 wall_0_wipe_dist = =line_width * 2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg index e975175ce09..11db9e5a622 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg @@ -12,6 +12,11 @@ variant = AA 0.8 weight = -3 [values] +bridge_skin_material_flow = 200 +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = =bridge_skin_material_flow +bridge_wall_speed = 10 brim_width = 8.75 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 15 @@ -37,7 +42,7 @@ support_angle = 50 switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 -top_bottom_thickness = 1.2 +top_bottom_thickness = =layer_height * 6 top_skin_expand_distance = =line_width * 2 travel_avoid_distance = 1.5 wall_0_wipe_dist = =line_width * 2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg index 5334fac1f01..ac2049daae0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg @@ -12,6 +12,11 @@ variant = AA 0.8 weight = -4 [values] +bridge_skin_material_flow = 200 +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = =bridge_skin_material_flow +bridge_wall_speed = 10 brim_width = 8.75 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 15 @@ -36,7 +41,7 @@ support_angle = 50 switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 -top_bottom_thickness = 1.2 +top_bottom_thickness = =layer_height * 6 top_skin_expand_distance = =line_width * 2 travel_avoid_distance = 1.5 wall_0_wipe_dist = =line_width * 2 From 077ac06e841b0cdeb6af6d48bf4b60e78f2c4381 Mon Sep 17 00:00:00 2001 From: HellAholic Date: Fri, 8 Mar 2024 10:44:31 +0100 Subject: [PATCH 617/765] Added the generic_petcf Generic petcf was dropped during clean up. After confirmation with Frederic added it back to the exclude list --- resources/definitions/ultimaker2_plus_connect.def.json | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/definitions/ultimaker2_plus_connect.def.json b/resources/definitions/ultimaker2_plus_connect.def.json index 90e7d6f7945..8aae2d4c195 100644 --- a/resources/definitions/ultimaker2_plus_connect.def.json +++ b/resources/definitions/ultimaker2_plus_connect.def.json @@ -16,6 +16,7 @@ "generic_gffcpe", "generic_gffpa", "generic_hips", + "generic_petcf", "generic_pva", "structur3d_", "ultimaker_bam", From 174368d1eb8d9de808e2da2e2513746ecf65e94b Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Fri, 8 Mar 2024 12:08:32 +0100 Subject: [PATCH 618/765] description of UCP CURA-11705 --- plugins/3MFWriter/UCPDialog.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/3MFWriter/UCPDialog.qml b/plugins/3MFWriter/UCPDialog.qml index 5d094f9187d..267306f5e2c 100644 --- a/plugins/3MFWriter/UCPDialog.qml +++ b/plugins/3MFWriter/UCPDialog.qml @@ -46,7 +46,7 @@ UM.Dialog UM.Label { id: descriptionLabel - text: catalog.i18nc("@action:description", "When exporting a Universal Cura Project, all the models present on the build plate will be included with their current position, orientation and scale. You can also select which per-extruder or per-model settings should be included to ensure a proper printing of the batch, even on different printers.") + text: catalog.i18nc("@action:description", "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing.") font: UM.Theme.getFont("default") wrapMode: Text.Wrap Layout.maximumWidth: headerColumn.width From ebe5da7f0e5aac892e811a53595f99c47f0bdcd3 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Fri, 8 Mar 2024 13:43:43 +0100 Subject: [PATCH 619/765] added creating snapshot if not created till 10 attempts refractored the snapshot.py CURA-11650 --- cura/Snapshot.py | 66 +++++++++++++++++++++++++++++++++--------------- 1 file changed, 45 insertions(+), 21 deletions(-) diff --git a/cura/Snapshot.py b/cura/Snapshot.py index f94b3ff42ed..77cb9ea29c7 100644 --- a/cura/Snapshot.py +++ b/cura/Snapshot.py @@ -21,23 +21,31 @@ from UM.Qt.QtRenderer import QtRenderer class Snapshot: + + DEFAULT_WIDTH_HEIGHT = 300 + MAX_RENDER_DISTANCE = 10000 + BOUND_BOX_FACTOR = 1.75 + CAMERA_FOVY = 30 + ATTEMPTS_FOR_SNAPSHOT = 10 + @staticmethod - def getImageBoundaries(image: QImage): - # Look at the resulting image to get a good crop. - # Get the pixels as byte array + def getNonZeroPixels(image: QImage): pixel_array = image.bits().asarray(image.sizeInBytes()) width, height = image.width(), image.height() - # Convert to numpy array, assume it's 32 bit (it should always be) pixels = numpy.frombuffer(pixel_array, dtype=numpy.uint8).reshape([height, width, 4]) # Find indices of non zero pixels - nonzero_pixels = numpy.nonzero(pixels) + return numpy.nonzero(pixels) + + @staticmethod + def getImageBoundaries(image: QImage): + nonzero_pixels = Snapshot.getNonZeroPixels(image) min_y, min_x, min_a_ = numpy.amin(nonzero_pixels, axis=1) # type: ignore max_y, max_x, max_a_ = numpy.amax(nonzero_pixels, axis=1) # type: ignore return min_x, max_x, min_y, max_y @staticmethod - def isometricSnapshot(width: int = 300, height: int = 300, *, node: Optional[SceneNode] = None) -> Optional[QImage]: + def isometricSnapshot(width: int = DEFAULT_WIDTH_HEIGHT, height: int = DEFAULT_WIDTH_HEIGHT, *, node: Optional[SceneNode] = None) -> Optional[QImage]: """ Create an isometric snapshot of the scene. @@ -112,22 +120,25 @@ def isometricSnapshot(width: int = 300, height: int = 300, *, node: Optional[Sce return render_pass.getOutput() + @staticmethod + def isNodeRenderable(node): + return not getattr(node, "_outside_buildarea", False) and node.callDecoration( + "isSliceable") and node.getMeshData() and node.isVisible() and not node.callDecoration( + "isNonThumbnailVisibleMesh") + @staticmethod def nodeBounds(root_node: SceneNode) -> Optional[AxisAlignedBox]: axis_aligned_box = None for node in DepthFirstIterator(root_node): - if not getattr(node, "_outside_buildarea", False): - if node.callDecoration( - "isSliceable") and node.getMeshData() and node.isVisible() and not node.callDecoration( - "isNonThumbnailVisibleMesh"): - if axis_aligned_box is None: - axis_aligned_box = node.getBoundingBox() - else: - axis_aligned_box = axis_aligned_box + node.getBoundingBox() + if Snapshot.isNodeRenderable(node): + if axis_aligned_box is None: + axis_aligned_box = node.getBoundingBox() + else: + axis_aligned_box = axis_aligned_box + node.getBoundingBox() return axis_aligned_box @staticmethod - def snapshot(width = 300, height = 300): + def snapshot(width = DEFAULT_WIDTH_HEIGHT, height = DEFAULT_WIDTH_HEIGHT, number_of_attempts = ATTEMPTS_FOR_SNAPSHOT): """Return a QImage of the scene Uses PreviewPass that leaves out some elements Aspect ratio assumes a square @@ -163,13 +174,13 @@ def snapshot(width = 300, height = 300): looking_from_offset = Vector(-1, 1, 2) if size > 0: # determine the watch distance depending on the size - looking_from_offset = looking_from_offset * size * 1.75 + looking_from_offset = looking_from_offset * size * Snapshot.BOUND_BOX_FACTOR camera.setPosition(look_at + looking_from_offset) camera.lookAt(look_at) satisfied = False size = None - fovy = 30 + fovy = Snapshot.CAMERA_FOVY while not satisfied: if size is not None: @@ -182,11 +193,19 @@ def snapshot(width = 300, height = 300): preview_pass.setCamera(camera) preview_pass.render() pixel_output = preview_pass.getOutput() - try: - min_x, max_x, min_y, max_y = Snapshot.getImageBoundaries(pixel_output) - except (ValueError, AttributeError): - Logger.logException("w", "Failed to crop the snapshot!") + if Snapshot._prereadSnapshot(pixel_output): + try: + min_x, max_x, min_y, max_y = Snapshot.getImageBoundaries(pixel_output) + except (ValueError, AttributeError) as e: + Logger.logException("w", f"Failed to crop the snapshot! {e}") + return None + elif number_of_attempts == 0: + Logger.warning( f"Failed to crop the snapshot even after 10 attempts!") return None + else: + number_of_attempts = number_of_attempts - 1 + Logger.info("Trying to get the snapshot again.") + return Snapshot.snapshot(width, height, number_of_attempts) size = max((max_x - min_x) / render_width, (max_y - min_y) / render_height) if size > 0.5 or satisfied: @@ -211,3 +230,8 @@ def snapshot(width = 300, height = 300): transformMode = QtCore.Qt.TransformationMode.SmoothTransformation) return scaled_image + + @staticmethod + def _prereadSnapshot(snap = QImage): + nonzero_pixels = Snapshot.getNonZeroPixels(snap) + return all(len(nonzero_pixels[i]) != 0 for i in range(3)) \ No newline at end of file From 9e17a55c17358d2d79f4b476433b5baac6770a53 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Fri, 8 Mar 2024 14:39:12 +0100 Subject: [PATCH 620/765] Dtring finishing for Prime tower type and print sequence CURA-11705 --- resources/definitions/fdmprinter.def.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 2abdf0df017..c780279ab7b 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6808,7 +6808,7 @@ "prime_tower_mode": { "label": "Prime Tower Type", - "description": "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other.
    ", + "description": "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    ", "type": "enum", "value": "'interleaved' if (all(material_type_var == extruderValues('material_type')[0] for material_type_var in extruderValues('material_type')) and all(material_brand_var == extruderValues('material_brand')[0] for material_brand_var in extruderValues('material_brand'))) else 'normal'", "options": @@ -7294,7 +7294,7 @@ "user_defined_print_order_enabled": { "label": "Set Print Sequence Manually", - "description": "Allows to order the object list to set the print sequence manually. First object from the list will be printed first.", + "description": "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first.", "type": "bool", "default_value": false, "settable_per_mesh": false, @@ -7956,7 +7956,7 @@ "type": "float", "enabled": "adaptive_layer_height_enabled", "default_value": 0.01, - "unit": "mm", + "unitp": "mm", "settable_per_mesh": false, "minimum_value": "0.001", "settable_per_extruder": false, From 143dd20392019d32429f75db7cdd5efb42d45707 Mon Sep 17 00:00:00 2001 From: Saumya Jain <70144862+saumyaj3@users.noreply.github.com> Date: Fri, 8 Mar 2024 14:41:17 +0100 Subject: [PATCH 621/765] Update fdmprinter.def.json --- resources/definitions/fdmprinter.def.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index c780279ab7b..4e6a178f3f6 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -7956,7 +7956,7 @@ "type": "float", "enabled": "adaptive_layer_height_enabled", "default_value": 0.01, - "unitp": "mm", + "unit": "mm", "settable_per_mesh": false, "minimum_value": "0.001", "settable_per_extruder": false, @@ -8657,4 +8657,4 @@ } } } -} \ No newline at end of file +} From 4d77972600a8efcd4efd377cbec46e75b4a8f0a1 Mon Sep 17 00:00:00 2001 From: saumyaj3 Date: Fri, 8 Mar 2024 13:42:10 +0000 Subject: [PATCH 622/765] Applied printer-linter format --- resources/definitions/fdmprinter.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 4e6a178f3f6..2e10fb2c761 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -8657,4 +8657,4 @@ } } } -} +} \ No newline at end of file From 1f611994028067ae7f0b0e5d2d70faf1404f0317 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 8 Mar 2024 15:34:48 +0100 Subject: [PATCH 623/765] Pin package and requirements versions --- conandata.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/conandata.yml b/conandata.yml index fdfc2dec116..574a4fdc2ff 100644 --- a/conandata.yml +++ b/conandata.yml @@ -1,17 +1,17 @@ -version: "5.7.0-alpha.1" +version: "5.7.0-beta.1" requirements: - - "uranium/(latest)@ultimaker/testing" - - "curaengine/(latest)@ultimaker/testing" - - "cura_binary_data/(latest)@ultimaker/testing" - - "fdm_materials/(latest)@ultimaker/testing" - - "curaengine_plugin_gradual_flow/0.1.0-beta.3" - - "dulcificum/latest@ultimaker/testing" - - "pysavitar/5.3.0" - - "pynest2d/5.3.0" - - "curaengine_grpc_definitions/(latest)@ultimaker/testing" + - "uranium/5.7.0-beta.1" + - "curaengine/5.7.0-beta.1" + - "cura_binary_data/5.7.0-beta.1" + - "fdm_materials/5.7.0-beta.1" + - "curaengine_plugin_gradual_flow/0.1.0" + - "dulcificum/0.2.0" + - "pysavitar/5.4.0" + - "pynest2d/5.4.0" + - "curaengine_grpc_definitions/0.2.0" requirements_internal: - - "fdm_materials/(latest)@internal/testing" - - "cura_private_data/(latest)@internal/testing" + - "fdm_materials/5.7.0-beta.1" + - "cura_private_data/5.7.0-beta.1" urls: default: cloud_api_root: "https://api.ultimaker.com" From 7b45fd936802c248caa994d5b003f92657859ce3 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 8 Mar 2024 15:39:41 +0100 Subject: [PATCH 624/765] Pin pysavitar and pynest2d to the stable versions --- conandata.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conandata.yml b/conandata.yml index 574a4fdc2ff..bff4f1117d9 100644 --- a/conandata.yml +++ b/conandata.yml @@ -6,8 +6,8 @@ requirements: - "fdm_materials/5.7.0-beta.1" - "curaengine_plugin_gradual_flow/0.1.0" - "dulcificum/0.2.0" - - "pysavitar/5.4.0" - - "pynest2d/5.4.0" + - "pysavitar/5.3.0" + - "pynest2d/5.3.0" - "curaengine_grpc_definitions/0.2.0" requirements_internal: - "fdm_materials/5.7.0-beta.1" From 6e6ca515cdf5ed0eb87ad67aa5260e72042e2d15 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 8 Mar 2024 16:07:41 +0100 Subject: [PATCH 625/765] Add missing nylon material to material map CURA-11709 --- cura/PrinterOutput/Models/MaterialOutputModel.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cura/PrinterOutput/Models/MaterialOutputModel.py b/cura/PrinterOutput/Models/MaterialOutputModel.py index dedcc2136ba..173fecc2e61 100644 --- a/cura/PrinterOutput/Models/MaterialOutputModel.py +++ b/cura/PrinterOutput/Models/MaterialOutputModel.py @@ -28,6 +28,7 @@ def getMaterialFromDefinition(guid, type, brand, name): "abs-wss1" :{"name" :"absr_175" ,"guid": "88c8919c-6a09-471a-b7b6-e801263d862d"}, "asa" :{"name" :"asa_175" ,"guid": "416eead4-0d8e-4f0b-8bfc-a91a519befa5"}, "nylon-cf" :{"name" :"cffpa_175" ,"guid": "85bbae0e-938d-46fb-989f-c9b3689dc4f0"}, + "nylon12-cf": {"name": "nylon12-cf", "guid": "3c6f2877-71cc-4760-84e6-4b89ab243e3b"}, "nylon" :{"name" :"nylon_175" ,"guid": "283d439a-3490-4481-920c-c51d8cdecf9c"}, "pc" :{"name" :"pc_175" ,"guid": "62414577-94d1-490d-b1e4-7ef3ec40db02"}, "petg" :{"name" :"petg_175" ,"guid": "69386c85-5b6c-421a-bec5-aeb1fb33f060"}, From f5d1256125e00000e8d3bdbd578b4efb47e9df51 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 8 Mar 2024 16:20:27 +0100 Subject: [PATCH 626/765] Use latest packages versions --- conandata.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/conandata.yml b/conandata.yml index bff4f1117d9..34ab7223542 100644 --- a/conandata.yml +++ b/conandata.yml @@ -1,17 +1,17 @@ version: "5.7.0-beta.1" requirements: - - "uranium/5.7.0-beta.1" - - "curaengine/5.7.0-beta.1" - - "cura_binary_data/5.7.0-beta.1" - - "fdm_materials/5.7.0-beta.1" - - "curaengine_plugin_gradual_flow/0.1.0" - - "dulcificum/0.2.0" + - "uranium/(latest)@ultimaker/stable" + - "curaengine/(latest)@ultimaker/stable" + - "cura_binary_data/(latest)@ultimaker/stable" + - "fdm_materials/(latest)@ultimaker/stable" + - "curaengine_plugin_gradual_flow/0.1.0-beta.3@ultimaker/stable" + - "dulcificum/latest@ultimaker/stable" - "pysavitar/5.3.0" - "pynest2d/5.3.0" - - "curaengine_grpc_definitions/0.2.0" + - "curaengine_grpc_definitions/(latest)@ultimaker/stable" requirements_internal: - - "fdm_materials/5.7.0-beta.1" - - "cura_private_data/5.7.0-beta.1" + - "fdm_materials/(latest)@internal/stable" + - "cura_private_data/(latest)@internal/stable" urls: default: cloud_api_root: "https://api.ultimaker.com" From 28997b0b14f9a0cab368e7b2dbec985d6e70161d Mon Sep 17 00:00:00 2001 From: Saumya Jain <70144862+saumyaj3@users.noreply.github.com> Date: Fri, 8 Mar 2024 16:38:57 +0100 Subject: [PATCH 627/765] Update cura/Snapshot.py Co-authored-by: Casper Lamboo --- cura/Snapshot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/Snapshot.py b/cura/Snapshot.py index 77cb9ea29c7..920caa5501f 100644 --- a/cura/Snapshot.py +++ b/cura/Snapshot.py @@ -200,7 +200,7 @@ def snapshot(width = DEFAULT_WIDTH_HEIGHT, height = DEFAULT_WIDTH_HEIGHT, number Logger.logException("w", f"Failed to crop the snapshot! {e}") return None elif number_of_attempts == 0: - Logger.warning( f"Failed to crop the snapshot even after 10 attempts!") + Logger.warning( f"Failed to crop the snapshot even after {Snapshot.ATTEMPTS_FOR_SNAPSHOT} attempts!") return None else: number_of_attempts = number_of_attempts - 1 From c4881641c3c50add2bfe0b991bc264c82168fb25 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Fri, 8 Mar 2024 16:44:03 +0100 Subject: [PATCH 628/765] review comments fixing CURA-11650 --- cura/Snapshot.py | 26 +++++++++----------------- 1 file changed, 9 insertions(+), 17 deletions(-) diff --git a/cura/Snapshot.py b/cura/Snapshot.py index 920caa5501f..9b91cdef1cd 100644 --- a/cura/Snapshot.py +++ b/cura/Snapshot.py @@ -193,19 +193,16 @@ def snapshot(width = DEFAULT_WIDTH_HEIGHT, height = DEFAULT_WIDTH_HEIGHT, number preview_pass.setCamera(camera) preview_pass.render() pixel_output = preview_pass.getOutput() - if Snapshot._prereadSnapshot(pixel_output): - try: - min_x, max_x, min_y, max_y = Snapshot.getImageBoundaries(pixel_output) - except (ValueError, AttributeError) as e: - Logger.logException("w", f"Failed to crop the snapshot! {e}") + try: + min_x, max_x, min_y, max_y = Snapshot.getImageBoundaries(pixel_output) + except (ValueError, AttributeError) as e: + if number_of_attempts == 0: + Logger.warning( f"Failed to crop the snapshot even after {Snapshot.ATTEMPTS_FOR_SNAPSHOT} attempts!") return None - elif number_of_attempts == 0: - Logger.warning( f"Failed to crop the snapshot even after {Snapshot.ATTEMPTS_FOR_SNAPSHOT} attempts!") - return None - else: - number_of_attempts = number_of_attempts - 1 - Logger.info("Trying to get the snapshot again.") - return Snapshot.snapshot(width, height, number_of_attempts) + else: + number_of_attempts = number_of_attempts - 1 + Logger.info("Trying to get the snapshot again.") + return Snapshot.snapshot(width, height, number_of_attempts) size = max((max_x - min_x) / render_width, (max_y - min_y) / render_height) if size > 0.5 or satisfied: @@ -230,8 +227,3 @@ def snapshot(width = DEFAULT_WIDTH_HEIGHT, height = DEFAULT_WIDTH_HEIGHT, number transformMode = QtCore.Qt.TransformationMode.SmoothTransformation) return scaled_image - - @staticmethod - def _prereadSnapshot(snap = QImage): - nonzero_pixels = Snapshot.getNonZeroPixels(snap) - return all(len(nonzero_pixels[i]) != 0 for i in range(3)) \ No newline at end of file From 64bb69c48f46f8ebefa5e7d640b60bf2cd964f70 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Fri, 8 Mar 2024 16:46:58 +0100 Subject: [PATCH 629/765] removing magic number Adding max render distance CURA-11650 --- cura/Snapshot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cura/Snapshot.py b/cura/Snapshot.py index 9b91cdef1cd..65a51539cc2 100644 --- a/cura/Snapshot.py +++ b/cura/Snapshot.py @@ -100,8 +100,8 @@ def isometricSnapshot(width: int = DEFAULT_WIDTH_HEIGHT, height: int = DEFAULT_W camera_width / 2, -camera_height / 2, camera_height / 2, - -10000, - 10000 + -Snapshot.MAX_RENDER_DISTANCE, + Snapshot.MAX_RENDER_DISTANCE ) camera.setPerspective(False) camera.setProjectionMatrix(ortho_matrix) From 3fee8ba85199ddc7cc575dcf2b3d297492ee29ff Mon Sep 17 00:00:00 2001 From: Casper Lamboo Date: Fri, 8 Mar 2024 16:59:04 +0100 Subject: [PATCH 630/765] Update cura/PrinterOutput/Models/MaterialOutputModel.py --- cura/PrinterOutput/Models/MaterialOutputModel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/PrinterOutput/Models/MaterialOutputModel.py b/cura/PrinterOutput/Models/MaterialOutputModel.py index 173fecc2e61..cb5da7f8be9 100644 --- a/cura/PrinterOutput/Models/MaterialOutputModel.py +++ b/cura/PrinterOutput/Models/MaterialOutputModel.py @@ -28,7 +28,7 @@ def getMaterialFromDefinition(guid, type, brand, name): "abs-wss1" :{"name" :"absr_175" ,"guid": "88c8919c-6a09-471a-b7b6-e801263d862d"}, "asa" :{"name" :"asa_175" ,"guid": "416eead4-0d8e-4f0b-8bfc-a91a519befa5"}, "nylon-cf" :{"name" :"cffpa_175" ,"guid": "85bbae0e-938d-46fb-989f-c9b3689dc4f0"}, - "nylon12-cf": {"name": "nylon12-cf", "guid": "3c6f2877-71cc-4760-84e6-4b89ab243e3b"}, + "nylon12-cf": {"name": "nylon12-cf_175", "guid": "3c6f2877-71cc-4760-84e6-4b89ab243e3b"}, "nylon" :{"name" :"nylon_175" ,"guid": "283d439a-3490-4481-920c-c51d8cdecf9c"}, "pc" :{"name" :"pc_175" ,"guid": "62414577-94d1-490d-b1e4-7ef3ec40db02"}, "petg" :{"name" :"petg_175" ,"guid": "69386c85-5b6c-421a-bec5-aeb1fb33f060"}, From f4d8d643e0b495f3ad036a40e8adf02692f9bb4d Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Mon, 11 Mar 2024 08:18:07 +0100 Subject: [PATCH 631/765] Set correct beta version number --- conandata.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conandata.yml b/conandata.yml index 34ab7223542..fe08426fe50 100644 --- a/conandata.yml +++ b/conandata.yml @@ -1,4 +1,4 @@ -version: "5.7.0-beta.1" +version: "5.7.0-beta.0" requirements: - "uranium/(latest)@ultimaker/stable" - "curaengine/(latest)@ultimaker/stable" From 0520452f46c7dfe6b533a236e7547e760b7df118 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Mon, 11 Mar 2024 08:33:51 +0100 Subject: [PATCH 632/765] Use stable channel only for packages with release branch --- conandata.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/conandata.yml b/conandata.yml index fe08426fe50..23b4e6f813b 100644 --- a/conandata.yml +++ b/conandata.yml @@ -4,14 +4,14 @@ requirements: - "curaengine/(latest)@ultimaker/stable" - "cura_binary_data/(latest)@ultimaker/stable" - "fdm_materials/(latest)@ultimaker/stable" - - "curaengine_plugin_gradual_flow/0.1.0-beta.3@ultimaker/stable" - - "dulcificum/latest@ultimaker/stable" + - "curaengine_plugin_gradual_flow/0.1.0-beta.3" + - "dulcificum/latest@ultimaker/testing" - "pysavitar/5.3.0" - "pynest2d/5.3.0" - - "curaengine_grpc_definitions/(latest)@ultimaker/stable" + - "curaengine_grpc_definitions/(latest)@ultimaker/testing" requirements_internal: - - "fdm_materials/(latest)@internal/stable" - - "cura_private_data/(latest)@internal/stable" + - "fdm_materials/(latest)@internal/testing" + - "cura_private_data/(latest)@internal/testing" urls: default: cloud_api_root: "https://api.ultimaker.com" From 3bfce9f003d092342a33a4ab6bb2040d1797e022 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Mon, 11 Mar 2024 08:39:57 +0100 Subject: [PATCH 633/765] Pin grpc_definitions version --- conandata.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conandata.yml b/conandata.yml index 23b4e6f813b..0d0452ebbe5 100644 --- a/conandata.yml +++ b/conandata.yml @@ -8,7 +8,7 @@ requirements: - "dulcificum/latest@ultimaker/testing" - "pysavitar/5.3.0" - "pynest2d/5.3.0" - - "curaengine_grpc_definitions/(latest)@ultimaker/testing" + - "curaengine_grpc_definitions/0.2.0" requirements_internal: - "fdm_materials/(latest)@internal/testing" - "cura_private_data/(latest)@internal/testing" From 9eace13dc92ccae2b6d4bc98d153d858def9d598 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Mon, 11 Mar 2024 09:04:39 +0100 Subject: [PATCH 634/765] Update version to 5.8 alpha --- conandata.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conandata.yml b/conandata.yml index fdfc2dec116..24f9abf294b 100644 --- a/conandata.yml +++ b/conandata.yml @@ -1,4 +1,4 @@ -version: "5.7.0-alpha.1" +version: "5.8.0-alpha.0" requirements: - "uranium/(latest)@ultimaker/testing" - "curaengine/(latest)@ultimaker/testing" From ee23e2cf675cbfb2ebe27fd98bee562b0cebd7ed Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 11 Mar 2024 11:01:53 +0100 Subject: [PATCH 635/765] Add native CAD plugin to Enterprise edition The native CAD plugin has been added to the requirements and reference copy operations in the Conan data file and Conan file script. Now the native CAD plugin will only be included if the enterprise build flag is set. This ensures that unnecessary dependencies are not brought into non-enterprise builds. --- conandata.yml | 9 +++++++++ conanfile.py | 10 ++++++++++ 2 files changed, 19 insertions(+) diff --git a/conandata.yml b/conandata.yml index 0d0452ebbe5..86e56e22c29 100644 --- a/conandata.yml +++ b/conandata.yml @@ -9,6 +9,7 @@ requirements: - "pysavitar/5.3.0" - "pynest2d/5.3.0" - "curaengine_grpc_definitions/0.2.0" + - "native_cad_plugin/2.0.0" requirements_internal: - "fdm_materials/(latest)@internal/testing" - "cura_private_data/(latest)@internal/testing" @@ -41,6 +42,14 @@ pyinstaller: package: "curaengine_plugin_gradual_flow" src: "res/bundled_packages" dst: "share/cura/resources/bundled_packages" + native_cad_plugin: + package: "native_cad_plugin" + src: "res/plugins/NativeCADplugin" + dst: "share/cura/plugins/NativeCADplugin" + native_cad_plugin_bundled: + package: "native_cad_plugin" + src: "res/bundled_packages" + dst: "share/cura/resources/bundled_packages" cura_resources: package: "cura" src: "resources" diff --git a/conanfile.py b/conanfile.py index ca6b4eabd0f..2eebeee991b 100644 --- a/conanfile.py +++ b/conanfile.py @@ -231,6 +231,8 @@ def _generate_pyinstaller_spec(self, location, entrypoint_location, icon_path, e else: src_path = os.path.join(self.source_folder, data["src"]) else: + if data["package"] not in self.deps_cpp_info.deps: + continue src_path = os.path.join(self.deps_cpp_info[data["package"]].rootpath, data["src"]) elif "root" in data: # get the paths relative from the install folder src_path = os.path.join(self.install_folder, data["root"], data["src"]) @@ -343,6 +345,8 @@ def requirements(self): for req in self.conan_data["requirements"]: if self._internal and "fdm_materials" in req: continue + if not self._enterprise and "native_cad_plugin" in req: + continue self.requires(req) if self._internal: for req in self.conan_data["requirements_internal"]: @@ -393,6 +397,12 @@ def generate(self): copy(self, "*", curaengine_plugin_gradual_flow.bindirs[0], self.source_folder, keep_path = False) copy(self, "bundled_*.json", curaengine_plugin_gradual_flow.resdirs[1], str(self.source_path.joinpath("resources", "bundled_packages")), keep_path = False) + if self._enterprise: + rmdir(self, str(self.source_path.joinpath("plugins", "NativeCADplugin"))) + curaengine_plugin_gradual_flow = self.dependencies["native_cad_plugin"].cpp_info + copy(self, "*", curaengine_plugin_gradual_flow.resdirs[0], str(self.source_path.joinpath("plugins", "NativeCADplugin")), keep_path = True) + copy(self, "bundled_*.json", curaengine_plugin_gradual_flow.resdirs[1], str(self.source_path.joinpath("resources", "bundled_packages")), keep_path = False) + # Copy resources of cura_binary_data cura_binary_data = self.dependencies["cura_binary_data"].cpp_info copy(self, "*", cura_binary_data.resdirs[0], str(self._share_dir.joinpath("cura")), keep_path = True) From 0da0c720dd6489339dd1f08357f455cff34805bc Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Mon, 11 Mar 2024 11:04:51 +0100 Subject: [PATCH 636/765] Changed names of materials as per materials list Removed materials with GUID not found CURA-11710 --- .../Models/MaterialOutputModel.py | 36 +++++++++---------- 1 file changed, 17 insertions(+), 19 deletions(-) diff --git a/cura/PrinterOutput/Models/MaterialOutputModel.py b/cura/PrinterOutput/Models/MaterialOutputModel.py index cb5da7f8be9..91210a6a0ae 100644 --- a/cura/PrinterOutput/Models/MaterialOutputModel.py +++ b/cura/PrinterOutput/Models/MaterialOutputModel.py @@ -10,8 +10,8 @@ class MaterialOutputModel(QObject): def __init__(self, guid: Optional[str], type: str, color: str, brand: str, name: str, parent = None) -> None: super().__init__(parent) - name, guid = MaterialOutputModel.getMaterialFromDefinition(guid,type, brand, name) - self._guid =guid + name, guid = MaterialOutputModel.getMaterialFromDefinition(guid, type, brand, name) + self._guid = guid self._type = type self._color = color self._brand = brand @@ -24,23 +24,21 @@ def guid(self) -> str: @staticmethod def getMaterialFromDefinition(guid, type, brand, name): - _MATERIAL_MAP = { "abs" :{"name" :"abs_175" ,"guid": "2780b345-577b-4a24-a2c5-12e6aad3e690"}, - "abs-wss1" :{"name" :"absr_175" ,"guid": "88c8919c-6a09-471a-b7b6-e801263d862d"}, - "asa" :{"name" :"asa_175" ,"guid": "416eead4-0d8e-4f0b-8bfc-a91a519befa5"}, - "nylon-cf" :{"name" :"cffpa_175" ,"guid": "85bbae0e-938d-46fb-989f-c9b3689dc4f0"}, - "nylon12-cf": {"name": "nylon12-cf_175", "guid": "3c6f2877-71cc-4760-84e6-4b89ab243e3b"}, - "nylon" :{"name" :"nylon_175" ,"guid": "283d439a-3490-4481-920c-c51d8cdecf9c"}, - "pc" :{"name" :"pc_175" ,"guid": "62414577-94d1-490d-b1e4-7ef3ec40db02"}, - "petg" :{"name" :"petg_175" ,"guid": "69386c85-5b6c-421a-bec5-aeb1fb33f060"}, - "pla" :{"name" :"pla_175" ,"guid": "0ff92885-617b-4144-a03c-9989872454bc"}, - "pva" :{"name" :"pva_175" ,"guid": "a4255da2-cb2a-4042-be49-4a83957a2f9a"}, - "wss1" :{"name" :"rapidrinse_175","guid": "a140ef8f-4f26-4e73-abe0-cfc29d6d1024"}, - "sr30" :{"name" :"sr30_175" ,"guid": "77873465-83a9-4283-bc44-4e542b8eb3eb"}, - "im-pla" :{"name" :"tough_pla_175" ,"guid": "96fca5d9-0371-4516-9e96-8e8182677f3c"}, - "bvoh" :{"name" :"bvoh_175" ,"guid": "923e604c-8432-4b09-96aa-9bbbd42207f4"}, - "cpe" :{"name" :"cpe_175" ,"guid": "da1872c1-b991-4795-80ad-bdac0f131726"}, - "hips" :{"name" :"hips_175" ,"guid": "a468d86a-220c-47eb-99a5-bbb47e514eb0"}, - "tpu" :{"name" :"tpu_175" ,"guid": "19baa6a9-94ff-478b-b4a1-8157b74358d2"} + _MATERIAL_MAP = { "abs" :{"name" :"ABS" ,"guid": "2780b345-577b-4a24-a2c5-12e6aad3e690"}, + "abs-wss1" :{"name" :"ABS-R" ,"guid": "88c8919c-6a09-471a-b7b6-e801263d862d"}, + "asa" :{"name" :"ASA" ,"guid": "416eead4-0d8e-4f0b-8bfc-a91a519befa5"}, + "nylon12-cf":{"name": "Nylon 12 CF" ,"guid": "3c6f2877-71cc-4760-84e6-4b89ab243e3b"}, + "nylon" :{"name" :"Nylon" ,"guid": "283d439a-3490-4481-920c-c51d8cdecf9c"}, + "pc" :{"name" :"PC" ,"guid": "62414577-94d1-490d-b1e4-7ef3ec40db02"}, + "petg" :{"name" :"PETG" ,"guid": "69386c85-5b6c-421a-bec5-aeb1fb33f060"}, + "pla" :{"name" :"PLA" ,"guid": "0ff92885-617b-4144-a03c-9989872454bc"}, + "pva" :{"name" :"PVA" ,"guid": "a4255da2-cb2a-4042-be49-4a83957a2f9a"}, + "wss1" :{"name" :"RapidRinse" ,"guid": "a140ef8f-4f26-4e73-abe0-cfc29d6d1024"}, + "sr30" :{"name" :"SR-30" ,"guid": "77873465-83a9-4283-bc44-4e542b8eb3eb"}, + "bvoh" :{"name" :"BVOH" ,"guid": "923e604c-8432-4b09-96aa-9bbbd42207f4"}, + "cpe" :{"name" :"CPE" ,"guid": "da1872c1-b991-4795-80ad-bdac0f131726"}, + "hips" :{"name" :"HIPS" ,"guid": "a468d86a-220c-47eb-99a5-bbb47e514eb0"}, + "tpu" :{"name" :"TPU 95A" ,"guid": "19baa6a9-94ff-478b-b4a1-8157b74358d2"} } From 9865bdac70c8f6f00d60a71fbc85b5edaa87553f Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Mon, 11 Mar 2024 11:55:18 +0100 Subject: [PATCH 637/765] Don't translate Cura name --- resources/qml/Preferences/GeneralPage.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/qml/Preferences/GeneralPage.qml b/resources/qml/Preferences/GeneralPage.qml index b753d0e48ac..4cc87e9644f 100644 --- a/resources/qml/Preferences/GeneralPage.qml +++ b/resources/qml/Preferences/GeneralPage.qml @@ -632,7 +632,7 @@ UM.PreferencesPage id: navigationStylesList Component.onCompleted: { - append({ text: catalog.i18n("Cura"), code: "cura" }) + append({ text: "Cura", code: "cura" }) append({ text: catalog.i18n("FreeCAD trackpad"), code: "freecad_trackpad" }) } } From ff4652e16a7d24d2e8b097cf155adf591ee549f6 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Mon, 11 Mar 2024 12:49:11 +0100 Subject: [PATCH 638/765] Add comments not to translate "Universal Cura Project" --- plugins/3MFReader/WorkspaceDialog.qml | 4 ++-- plugins/3MFWriter/SettingSelection.qml | 6 +++--- plugins/3MFWriter/UCPDialog.qml | 6 +++--- .../qml/Dialogs/AskOpenAsProjectOrUcpOrImportModel.qml | 2 +- resources/qml/Menus/FileMenu.qml | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index c8d53a1154e..f85f4f73230 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -12,7 +12,7 @@ import Cura 1.1 as Cura UM.Dialog { id: workspaceDialog - title: manager.isUcp? catalog.i18nc("@title:window", "Open Universal Cura Project (UCP)"): catalog.i18nc("@title:window", "Open Project") + title: manager.isUcp? catalog.i18nc("@title:window Don't translate 'Universal Cura Project'", "Open Universal Cura Project (UCP)"): catalog.i18nc("@title:window", "Open Project") margin: UM.Theme.getSize("default_margin").width minimumWidth: UM.Theme.getSize("modal_window_minimum").width @@ -28,7 +28,7 @@ UM.Dialog UM.Label { id: titleLabel - text: manager.isUcp? catalog.i18nc("@action:title", "Summary - Open Universal Cura Project (UCP)"): catalog.i18nc("@action:title", "Summary - Cura Project") + text: manager.isUcp? catalog.i18nc("@action:title Don't translate 'Universal Cura Project'", "Summary - Open Universal Cura Project (UCP)"): catalog.i18nc("@action:title", "Summary - Cura Project") font: UM.Theme.getFont("large") anchors.top: parent.top anchors.left: parent.left diff --git a/plugins/3MFWriter/SettingSelection.qml b/plugins/3MFWriter/SettingSelection.qml index 794a5aacf6c..53594153b7f 100644 --- a/plugins/3MFWriter/SettingSelection.qml +++ b/plugins/3MFWriter/SettingSelection.qml @@ -19,7 +19,7 @@ RowLayout Layout.preferredWidth: UM.Theme.getSize("setting").width checked: modelData.selected onClicked: modelData.selected = checked - tooltip: modelData.selectable ? "" :catalog.i18nc("@tooltip", "This setting may not perform well while exporting to UCP. Users are asked to add it at their own risk.") + tooltip: modelData.selectable ? "" :catalog.i18nc("@tooltip Don't translate 'Universal Cura Project'", "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk.") } UM.Label @@ -30,8 +30,8 @@ RowLayout UM.HelpIcon { UM.I18nCatalog { id: catalog; name: "cura" } - text: catalog.i18nc("@tooltip", - "This setting may not perform well while exporting to UCP, Users are asked to add it at their own risk.") + text: catalog.i18nc("@tooltip Don't translate 'Universal Cura Project'", + "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk.") visible: !modelData.selectable } diff --git a/plugins/3MFWriter/UCPDialog.qml b/plugins/3MFWriter/UCPDialog.qml index 267306f5e2c..f90378a8ea3 100644 --- a/plugins/3MFWriter/UCPDialog.qml +++ b/plugins/3MFWriter/UCPDialog.qml @@ -12,7 +12,7 @@ import Cura 1.1 as Cura UM.Dialog { id: exportDialog - title: catalog.i18nc("@title:window", "Export Universal Cura Project") + title: catalog.i18nc("@title:window Don't translate 'Universal Cura Project'", "Export Universal Cura Project") margin: UM.Theme.getSize("default_margin").width minimumWidth: UM.Theme.getSize("modal_window_minimum").width @@ -39,14 +39,14 @@ UM.Dialog UM.Label { id: titleLabel - text: catalog.i18nc("@action:title", "Summary - Universal Cura Project") + text: catalog.i18nc("@action:title Don't translate 'Universal Cura Project'", "Summary - Universal Cura Project") font: UM.Theme.getFont("large") } UM.Label { id: descriptionLabel - text: catalog.i18nc("@action:description", "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing.") + text: catalog.i18nc("@action:description Don't translate 'Universal Cura Project'", "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing.") font: UM.Theme.getFont("default") wrapMode: Text.Wrap Layout.maximumWidth: headerColumn.width diff --git a/resources/qml/Dialogs/AskOpenAsProjectOrUcpOrImportModel.qml b/resources/qml/Dialogs/AskOpenAsProjectOrUcpOrImportModel.qml index a68c48b4a62..70e8e5740d6 100644 --- a/resources/qml/Dialogs/AskOpenAsProjectOrUcpOrImportModel.qml +++ b/resources/qml/Dialogs/AskOpenAsProjectOrUcpOrImportModel.qml @@ -14,7 +14,7 @@ UM.Dialog // This dialog asks the user whether he/she wants to open a project file as a project or import models. id: base - title: catalog.i18nc("@title:window", "Open Universal Cura Project (UCP) file") + title: catalog.i18nc("@title:window Don't translate 'Universal Cura Project'", "Open Universal Cura Project (UCP) file") width: UM.Theme.getSize("small_popup_dialog").width height: UM.Theme.getSize("small_popup_dialog").height backgroundColor: UM.Theme.getColor("main_background") diff --git a/resources/qml/Menus/FileMenu.qml b/resources/qml/Menus/FileMenu.qml index 67edcc5962c..5d252a32ba6 100644 --- a/resources/qml/Menus/FileMenu.qml +++ b/resources/qml/Menus/FileMenu.qml @@ -77,7 +77,7 @@ Cura.Menu Cura.MenuItem { id: saveUCPMenu - text: catalog.i18nc("@title:menu menubar:file", "&Save Universal Cura Project...") + text: catalog.i18nc("@title:menu menubar:file Don't translate 'Universal Cura Project'", "&Save Universal Cura Project...") enabled: UM.WorkspaceFileHandler.enabled && CuraApplication.getPackageManager().allEnabledPackages.includes("3MFWriter") onTriggered: CuraApplication.exportUcp() } From 77e949830a7c4a2aa9aca7abb9f825b0d07edaba Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 11 Mar 2024 13:04:26 +0100 Subject: [PATCH 639/765] Add missing ABS-CF material to material map CURA-11710 --- cura/PrinterOutput/Models/MaterialOutputModel.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cura/PrinterOutput/Models/MaterialOutputModel.py b/cura/PrinterOutput/Models/MaterialOutputModel.py index 91210a6a0ae..f2793584779 100644 --- a/cura/PrinterOutput/Models/MaterialOutputModel.py +++ b/cura/PrinterOutput/Models/MaterialOutputModel.py @@ -25,6 +25,7 @@ def guid(self) -> str: def getMaterialFromDefinition(guid, type, brand, name): _MATERIAL_MAP = { "abs" :{"name" :"ABS" ,"guid": "2780b345-577b-4a24-a2c5-12e6aad3e690"}, + "abs-cf10": {"name": "ABS-CF", "guid": "495a0ce5-9daf-4a16-b7b2-06856d82394d"}, "abs-wss1" :{"name" :"ABS-R" ,"guid": "88c8919c-6a09-471a-b7b6-e801263d862d"}, "asa" :{"name" :"ASA" ,"guid": "416eead4-0d8e-4f0b-8bfc-a91a519befa5"}, "nylon12-cf":{"name": "Nylon 12 CF" ,"guid": "3c6f2877-71cc-4760-84e6-4b89ab243e3b"}, From 790cc2ad50acdbb47ffffefc16c89df98e2d7b48 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Mon, 11 Mar 2024 13:25:24 +0100 Subject: [PATCH 640/765] Update translation labels --- resources/i18n/cs_CZ/cura.po | 220 ++++++++- resources/i18n/cs_CZ/fdmextruder.def.json.po | 18 +- resources/i18n/cs_CZ/fdmprinter.def.json.po | 374 ++++++++++++--- resources/i18n/cura.pot | 470 +++++++++++++------ resources/i18n/de_DE/cura.po | 220 ++++++++- resources/i18n/de_DE/fdmextruder.def.json.po | 18 +- resources/i18n/de_DE/fdmprinter.def.json.po | 374 ++++++++++++--- resources/i18n/es_ES/cura.po | 220 ++++++++- resources/i18n/es_ES/fdmextruder.def.json.po | 18 +- resources/i18n/es_ES/fdmprinter.def.json.po | 374 ++++++++++++--- resources/i18n/fdmextruder.def.json.pot | 18 +- resources/i18n/fdmprinter.def.json.pot | 429 ++++++++++++----- resources/i18n/fi_FI/cura.po | 210 ++++++++- resources/i18n/fi_FI/fdmextruder.def.json.po | 18 +- resources/i18n/fi_FI/fdmprinter.def.json.po | 334 ++++++++++--- resources/i18n/fr_FR/cura.po | 220 ++++++++- resources/i18n/fr_FR/fdmextruder.def.json.po | 18 +- resources/i18n/fr_FR/fdmprinter.def.json.po | 374 ++++++++++++--- resources/i18n/hu_HU/cura.po | 210 ++++++++- resources/i18n/hu_HU/fdmextruder.def.json.po | 18 +- resources/i18n/hu_HU/fdmprinter.def.json.po | 334 ++++++++++--- resources/i18n/it_IT/cura.po | 220 ++++++++- resources/i18n/it_IT/fdmextruder.def.json.po | 18 +- resources/i18n/it_IT/fdmprinter.def.json.po | 374 ++++++++++++--- resources/i18n/ja_JP/cura.po | 220 ++++++++- resources/i18n/ja_JP/fdmextruder.def.json.po | 18 +- resources/i18n/ja_JP/fdmprinter.def.json.po | 374 ++++++++++++--- resources/i18n/ko_KR/cura.po | 220 ++++++++- resources/i18n/ko_KR/fdmextruder.def.json.po | 18 +- resources/i18n/ko_KR/fdmprinter.def.json.po | 374 ++++++++++++--- resources/i18n/nl_NL/cura.po | 220 ++++++++- resources/i18n/nl_NL/fdmextruder.def.json.po | 18 +- resources/i18n/nl_NL/fdmprinter.def.json.po | 374 ++++++++++++--- resources/i18n/pl_PL/cura.po | 210 ++++++++- resources/i18n/pl_PL/fdmextruder.def.json.po | 18 +- resources/i18n/pl_PL/fdmprinter.def.json.po | 334 ++++++++++--- resources/i18n/pt_BR/cura.po | 220 ++++++++- resources/i18n/pt_BR/fdmextruder.def.json.po | 18 +- resources/i18n/pt_BR/fdmprinter.def.json.po | 376 ++++++++++++--- resources/i18n/pt_PT/cura.po | 220 ++++++++- resources/i18n/pt_PT/fdmextruder.def.json.po | 18 +- resources/i18n/pt_PT/fdmprinter.def.json.po | 374 ++++++++++++--- resources/i18n/ru_RU/cura.po | 220 ++++++++- resources/i18n/ru_RU/fdmextruder.def.json.po | 18 +- resources/i18n/ru_RU/fdmprinter.def.json.po | 374 ++++++++++++--- resources/i18n/tr_TR/cura.po | 220 ++++++++- resources/i18n/tr_TR/fdmextruder.def.json.po | 18 +- resources/i18n/tr_TR/fdmprinter.def.json.po | 374 ++++++++++++--- resources/i18n/zh_CN/cura.po | 220 ++++++++- resources/i18n/zh_CN/fdmextruder.def.json.po | 18 +- resources/i18n/zh_CN/fdmprinter.def.json.po | 374 ++++++++++++--- resources/i18n/zh_TW/cura.po | 214 ++++++++- resources/i18n/zh_TW/fdmextruder.def.json.po | 18 +- resources/i18n/zh_TW/fdmprinter.def.json.po | 334 ++++++++++--- 54 files changed, 9447 insertions(+), 1680 deletions(-) diff --git a/resources/i18n/cs_CZ/cura.po b/resources/i18n/cs_CZ/cura.po index 32671394906..7a842ac480c 100644 --- a/resources/i18n/cs_CZ/cura.po +++ b/resources/i18n/cs_CZ/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-31 19:13+0100\n" +"POT-Creation-Date: 2024-03-11 12:52+0100\n" "PO-Revision-Date: 2023-09-03 18:15+0200\n" "Last-Translator: Miroslav Šustek \n" "Language-Team: DenyCZ \n" @@ -125,6 +125,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "&Uložit projekt..." +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "" + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "Nasta&vení" @@ -270,6 +274,10 @@ msgstr[0] "Pro tuto tiskárnu není připojení přes cloud dostupné" msgstr[1] "Pro tyto tiskárny není připojení přes cloud dostupné" msgstr[2] "Pro tyto tiskárny není připojení přes cloud dostupné" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "" + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "Tisk stále probíhá. Cura nemůže spustit další tisk přes USB, dokud není předchozí tisk dokončen." @@ -504,10 +512,18 @@ msgctxt "@label" msgid "Anonymous" msgstr "Anonymní" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "Aplikační framework" +msgctxt "@title:column" +msgid "Applies on" +msgstr "" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "Aplikovat offsety extruderu do G kódu" @@ -694,6 +710,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "Vypočítáno" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "Vykreslování kamery:" @@ -1423,6 +1443,10 @@ msgctxt "@label" msgid "Draft" msgstr "Návrh" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "" + msgctxt "@action:button" msgid "Duplicate" msgstr "Duplikovat" @@ -1549,6 +1573,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Výběr exportu..." +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "" + msgctxt "@button" msgid "Export material archive" msgstr "Exportovat archiv s materiálem" @@ -1582,10 +1610,23 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "Ukončující G-kód extuderu" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "Počáteční G-kód extuderu" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "" + +#, python-brace-format +msgctxt "@label" +msgid "Extruder {0}" +msgstr "" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Extruder(y) zakázány" @@ -1652,6 +1693,11 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Nepodařilo se uložit archiv s materiálem" +#, python-brace-format +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "" + msgctxt "@label:category menu label" msgid "Favorites" msgstr "Oblíbené" @@ -1793,6 +1839,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Vynutit režim kompatibility zobrazení vrstev (vyžaduje restart)" +msgid "FreeCAD trackpad" +msgstr "" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Přední pohled" @@ -1881,6 +1930,10 @@ msgctxt "@action" msgid "Get started" msgstr "Začínáme" +msgctxt "@label" +msgid "Global" +msgstr "" + msgctxt "@title:tab" msgid "Global Settings" msgstr "Globální nastavení" @@ -1930,6 +1983,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "Skrýt všechny připojené tiskárny" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "Schovat toto nastavení" @@ -2006,6 +2063,10 @@ msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "Abyste mohli balíček použít, musíte restartovat Curu" +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "" + msgctxt "@label" msgid "Infill" msgstr "Výplň" @@ -2711,6 +2772,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "S aktuálním filtrem nebyly nalezeny žádné výsledky" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "" + msgctxt "@label" msgid "No time estimation available" msgstr "Žádný odhad času není dostupný" @@ -2812,6 +2877,10 @@ msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Současně lze načíst pouze jeden soubor G-kódu. Přeskočen import {0}" +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "" + msgctxt "@action:button" msgid "Open" msgstr "Otevřít" @@ -2840,10 +2909,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "Otevřít soubor s projektem" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "" + msgctxt "@action:label" msgid "Open With" msgstr "Otevřít s" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "" + msgctxt "@action:button" msgid "Open as project" msgstr "Otevřít jako projekt" @@ -3061,6 +3142,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "Přihlaste se, abyste získali ověřené pluginy a materiály pro UltiMaker Cura Enterprise" +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "" + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "Prosím synchronizujte před začátkem tisku materiálové profily s vašimi tiskárnami." @@ -3157,6 +3242,14 @@ msgctxt "@action:button" msgid "Print" msgstr "Tisk" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Tisknout po" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Tisknout před" + msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -3465,8 +3558,8 @@ msgid "Provides support for reading model files." msgstr "Poskytuje podporu pro čtení souborů modelu." msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Poskytuje podporu pro psaní souborů 3MF." +msgid "Provides support for writing 3MF and UCP files." +msgstr "" msgctxt "description" msgid "Provides support for writing MakerBot Format Packages." @@ -3710,8 +3803,12 @@ msgid "Save Cura project" msgstr "Uložit projekt Cura" msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "Uložit projekt Cura a tiskový soubor UFP" +msgid "Save Cura project and .makerbot print file" +msgstr "" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" +msgstr "" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3737,6 +3834,10 @@ msgctxt "@button" msgid "Save new profile" msgstr "Uložit nový profil" +msgctxt "@action:button" +msgid "Save project" +msgstr "" + msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "Uložte soubor .umm na USB úložiště." @@ -3840,6 +3941,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "Poslat záznam o pádu do UltiMaker" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "" + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "" + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "" + msgctxt "@action:button" msgid "Send report" msgstr "Odeslat záznam" @@ -3892,6 +4005,10 @@ msgctxt "@title:tab" msgid "Settings" msgstr "Nastavení" +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "Nastavení byla změněna, aby odpovídala aktuální dostupnosti extruderů:" @@ -3960,6 +4077,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "Měli by se soubory z plochy, nebo externích aplikací otevírat ve stejné instanci Cury?" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "" + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "Má být podložka vyčištěna před načtením nového modelu v jediné instanci Cury?" @@ -4016,6 +4137,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Zobrazit podrobný záznam pádu" +msgctxt "@action:button" +msgid "Show settings" +msgstr "" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Zobrazit souhrnný dialog při ukládání projektu" @@ -4092,10 +4217,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "Slicování selhalo" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "Slicování selhalo na neočekávané chybě. Zvažte, prosím, nahlášení chyby v našem issue trackeru." - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Slicuji..." @@ -4104,6 +4225,10 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Vyhlazování" +msgctxt "@label" +msgid "Solid" +msgstr "" + msgctxt "name" msgid "Solid View" msgstr "Pevný pohled" @@ -4229,10 +4354,26 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Úspěšně importován profil {0}." +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Souhrn - Projekt Cura" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "" + msgctxt "@label" msgid "Support" msgstr "Podpora" @@ -4614,6 +4755,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "Tato konfigurace není k dispozici, protože %1 nebyl rozpoznán. Navštivte prosím %2 a stáhněte si správný materiálový profil." +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "Toto je soubor projektu Cura. Chcete jej otevřít jako projekt nebo importovat z něj modely?" @@ -4705,6 +4850,14 @@ msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Toto nastavení je vyřešeno z konfliktních hodnot specifického extruder:" +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "" + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "" + msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" msgstr "" @@ -4934,6 +5087,11 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Nepodařilo se mi spustit nový proces přihlášení. Zkontrolujte, zda nějaký jiný již neběží." +#, python-brace-format +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "" + msgctxt "@label:status" msgid "Unavailable" msgstr "Nedostupný" @@ -4946,14 +5104,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Rozdělit modely" -msgctxt "@action:inmenu menubar:edit" -msgid "Print Before" -msgstr "Tisknout před" - -msgctxt "@action:inmenu menubar:edit" -msgid "Print After" -msgstr "Tisknout po" - msgctxt "@button" msgid "Uninstall" msgstr "Odinstalovat" @@ -4962,6 +5112,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Jednotka" +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "" + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "Univerzální konfigurace překladu programů" @@ -5151,6 +5305,10 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." msgstr "" +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "" + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Nahrát vlastní firmware" @@ -5183,6 +5341,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "Pomocná knihovna zahrnující Voronoi generátor" +msgctxt "@title:column" +msgid "Value" +msgstr "" + msgctxt "name" msgid "Version Upgrade 2.1 to 2.2" msgstr "Aktualizace verze 2.1 na 2.2" @@ -5287,6 +5449,10 @@ msgctxt "name" msgid "Version Upgrade 5.4 to 5.5" msgstr "" +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Zobrazit tiskárny v Digital Factory" @@ -5364,6 +5530,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "Jakou tiskárnu si přejete nakonfigurovat?" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "Jaký typ kamery by se měl použít?" @@ -5580,6 +5750,10 @@ msgctxt "@label" msgid "mm" msgstr "mm" +msgctxt "@label" +msgid "s" +msgstr "" + msgctxt "@info:status" msgid "today" msgstr "dnes" @@ -5649,10 +5823,22 @@ msgstr "Nepovedlo se stáhnout {} zásuvných modulů" #~ msgid "Material profiles not installed" #~ msgstr "Materiálové profily nejsou nainstalovány" +#~ msgctxt "description" +#~ msgid "Provides support for writing 3MF files." +#~ msgstr "Poskytuje podporu pro psaní souborů 3MF." + +#~ msgctxt "@option" +#~ msgid "Save Cura project and print file" +#~ msgstr "Uložit projekt Cura a tiskový soubor UFP" + #~ msgctxt "@info:title" #~ msgid "Simulation View" #~ msgstr "Pohled simulace" +#~ msgctxt "@message" +#~ msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +#~ msgstr "Slicování selhalo na neočekávané chybě. Zvažte, prosím, nahlášení chyby v našem issue trackeru." + #~ msgctxt "@label" #~ msgid "The material used in this project is currently not installed in Cura.
    Install the material profile and reopen the project." #~ msgstr "Materiál použitý v tomto projektu není aktuálně nainstalován v Cuře.
    Nainstalujte materiálový profil a znovu otevřete projekt." diff --git a/resources/i18n/cs_CZ/fdmextruder.def.json.po b/resources/i18n/cs_CZ/fdmextruder.def.json.po index bb02b812774..5819c51d85e 100644 --- a/resources/i18n/cs_CZ/fdmextruder.def.json.po +++ b/resources/i18n/cs_CZ/fdmextruder.def.json.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-06-08 16:32+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: 2020-02-20 17:30+0100\n" "Last-Translator: DenyCZ \n" "Language-Team: DenyCZ \n" @@ -45,6 +45,10 @@ msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "Ukončující G kód extruderu" +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "" + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Absolutní finální pozice extruderu" @@ -77,6 +81,10 @@ msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "Počáteční G kód extruderu" +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "" + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Absolutní počáteční pozice extruderu" @@ -161,6 +169,14 @@ msgctxt "machine_extruder_cooling_fan_number description" msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." msgstr "Číslo ventilátoru chlazení tisku přidruženého k tomuto extrudéru. Tuto změnu změňte pouze z výchozí hodnoty 0, pokud máte pro každý extrudér jiný ventilátor chlazení tisku." +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "" + msgctxt "machine_extruder_end_pos_x description" msgid "The x-coordinate of the ending position when turning the extruder off." msgstr "Souřadnice x koncové polohy při vypnutí extrudéru." diff --git a/resources/i18n/cs_CZ/fdmprinter.def.json.po b/resources/i18n/cs_CZ/fdmprinter.def.json.po index 4b697c9cead..763b2ee5b21 100644 --- a/resources/i18n/cs_CZ/fdmprinter.def.json.po +++ b/resources/i18n/cs_CZ/fdmprinter.def.json.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: 2023-02-16 20:35+0100\n" "Last-Translator: Miroslav Šustek \n" "Language-Team: DenyCZ \n" @@ -17,6 +17,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.3.2\n" +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "" + +msgctxt "brim_inside_margin description" +msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." +msgstr "" + msgctxt "ironing_inset description" msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." msgstr "Vzdálenost, která se má držet od okrajů modelu. Žehlení až k okraji mřížky může vést k zubatému okraji na výtisku." @@ -61,10 +69,6 @@ msgctxt "machine_disallowed_areas description" msgid "A list of polygons with areas the print head is not allowed to enter." msgstr "Seznam polygonů s oblastmi, do kterých tisková hlava nemá přístup." -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "Část plně obklopená jinou částí může generovat vnější límec, který se dotýká vnitřku obklopující části. Toto nastavení odstraní límec v dané vzdálenosti od vnitřních otvorů." - msgctxt "support_tree_branch_reach_limit description" msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " msgstr "Doporučení, jak daleko se mohou větve pohnout od bodu, který podporují. Větve mohou tuto hodnotu porušit, aby dosáhly svého cíle (podložka nebo plochá část modelu). Snížení této hodnoty učiní podporu více pevnou, ale zvýší počet větví (a společně s tím také množství použitého materiálu a dobu tisku) " @@ -157,6 +161,10 @@ msgctxt "resolution description" msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" msgstr "Všechna nastavení, která ovlivňují rozlišení tisku. Tato nastavení mají velký vliv na kvalitu (a dobu tisku)" +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "" + msgctxt "alternate_extra_perimeter label" msgid "Alternate Extra Wall" msgstr "Alternativní zeď navíc" @@ -405,21 +413,21 @@ msgctxt "adhesion_type option brim" msgid "Brim" msgstr "Límec" +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "" + msgctxt "brim_gap label" msgid "Brim Distance" msgstr "Vzdálenost límce" -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "Vzdálenost od límce uvnitř" - msgctxt "brim_line_count label" msgid "Brim Line Count" msgstr "Počet linek pro límec" -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Límec pouze venku" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "" msgctxt "brim_replaces_support label" msgid "Brim Replaces Support" @@ -461,6 +469,14 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "Teplota sestavení" +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "" + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "" + msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." msgstr "" @@ -873,6 +889,10 @@ msgctxt "cool_fan_enabled label" msgid "Enable Print Cooling" msgstr "Povolit chlazení při tisku" +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "" + msgctxt "retraction_enable label" msgid "Enable Retraction" msgstr "Povolit retrakci" @@ -905,6 +925,10 @@ msgctxt "ooze_shield_enabled description" msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." msgstr "Povolit vnější ochranu proti úniku. Tím se vytvoří model kolem modelu, který pravděpodobně otře druhou trysku, pokud je ve stejné výšce jako první tryska." +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "" + msgctxt "small_skin_on_surface description" msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." msgstr "" @@ -937,6 +961,10 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "Vynutí vytištění límce kolem modelu, i když by tento prostor byl jinak obsazen podporou. To nahradí některé regiony první vrstvy podpory okrajovými regiony." +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "" + msgctxt "support_type option everywhere" msgid "Everywhere" msgstr "Všude" @@ -1041,6 +1069,10 @@ msgctxt "speed_equalize_flow_width_factor label" msgid "Flow Equalization Ratio" msgstr "Míra vyrovnávání toku" +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "" + msgctxt "flow_rate_extrusion_offset_factor label" msgid "Flow Rate Compensation Factor" msgstr "Faktor kompenzace průtoku" @@ -1053,6 +1085,10 @@ msgctxt "material_flow_temp_graph label" msgid "Flow Temperature Graph" msgstr "Graf teploty toku" +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "" + msgctxt "material_flow_layer_0 description" msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." msgstr "Kompenzace toku pro první vrstvu: množství materiálu vytlačovaného na počáteční vrstvě se vynásobí touto hodnotou." @@ -1443,10 +1479,22 @@ msgctxt "wall_transition_filter_distance description" msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." msgstr "Pokud by se mělo rychle za sebou přecházet tam a zpět mezi různými počty zdí, nebude se sbíhání provádět. Nastavení odstraní přechody mezi různými počty čar zdí, pokud by byly blíže než tato vzdálenost." +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "Pokud je raft povolen, jedná se o další oblast voru kolem modelu, která má také raft. Zvětšení tohoto okraje vytvoří silnější raft při použití více materiálu a ponechání menší plochy pro váš tisk." +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "meshfix_union_all description" msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." msgstr "Ignorujte vnitřní geometrii vznikající z překrývajících se svazků v síti a svazky vytiskněte jako jeden. To může způsobit, že nechtěné vnitřní dutiny zmizí." @@ -1675,6 +1723,10 @@ msgctxt "wall_0_inset description" msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." msgstr "Inset aplikovaný na cestu vnější stěny. Pokud je vnější stěna menší než tryska a je vytištěna za vnitřními stěnami, použijte toto odsazení, aby se otvor v trysce překrýval s vnitřními stěnami místo vně modelu." +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "" + msgctxt "inset_direction option inside_out" msgid "Inside To Outside" msgstr "Zevnitř ven" @@ -1687,6 +1739,10 @@ msgctxt "support_interface_priority option interface_area_overwrite_support_area msgid "Interface preferred" msgstr "Preferovat rozhraní" +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "" + msgctxt "interlocking_beam_layer_count label" msgid "Interlocking Beam Layer Count" msgstr "Počet vrstev paprsků vzájemného propletení" @@ -1827,6 +1883,30 @@ msgctxt "support_tree_limit_branch_reach description" msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" msgstr "Omezuje, jak daleko by měly větve cestovat od bodu, který podporují. Toto nastavení může učinit podporu pevnější, ale zvýší počet větví (a společně s tím také množství použitého materiálu a dobu tisku)" +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "" + msgctxt "cutting_mesh description" msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." msgstr "Objem této sítě omezte na jiné sítě. Můžete to použít k vytvoření určitých oblastí tisku jednoho oka s různým nastavením as úplně jiným extruderem." @@ -1924,8 +2004,10 @@ msgid "Make the extruder prime position absolute rather than relative to the las msgstr "Zajistěte, aby hlavní poloha extrudéru byla absolutní, nikoli relativní k poslednímu známému umístění hlavy." msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "První a druhá vrstva modelu se překrývají ve směru Z, aby se kompenzovalo vlákno ztracené ve vzduchové mezeře. Všechny modely nad první vrstvou modelu budou o tuto částku posunuty dolů." +msgid "" +"Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" +"It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "" msgctxt "meshfix description" msgid "Make the meshes more suited for 3D printing." @@ -1951,10 +2033,18 @@ msgctxt "material label" msgid "Material" msgstr "Materiál" +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "" + msgctxt "material_guid label" msgid "Material GUID" msgstr "GUID materiálu" +msgctxt "material_type label" +msgid "Material Type" +msgstr "" + msgctxt "max_extrusion_before_wipe label" msgid "Material Volume Between Wipes" msgstr "Objem materiálu mezi čištěními" @@ -2231,6 +2321,10 @@ msgctxt "ironing_monotonic label" msgid "Monotonic Ironing Order" msgstr "Monotónní pořadí žehlení" +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "" + msgctxt "roofing_monotonic label" msgid "Monotonic Top Surface Order" msgstr "Monotónní pořadí horního povrchu" @@ -2271,6 +2365,10 @@ msgctxt "magic_mesh_surface_mode option normal" msgid "Normal" msgstr "Normální" +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "" + msgctxt "support_structure option normal" msgid "Normal" msgstr "Normální" @@ -2403,10 +2501,6 @@ msgctxt "ironing_only_highest_layer description" msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." msgstr "Žehlení provádějte pouze na poslední vrstvě sítě. To šetří čas, pokud spodní vrstvy nepotřebují hladký povrch." -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Límec tiskněte pouze na vnější stranu modelu. Tím se snižuje množství límce, který je třeba následně odstranit, zatímco to tolik nesnižuje přilnavost k podložce." - msgctxt "ooze_shield_angle label" msgid "Ooze Shield Angle" msgstr "Úhel Ooze štítu" @@ -2467,6 +2561,10 @@ msgctxt "group_outer_walls description" msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." msgstr "Venkovní stěny různých ostrovů ve stejné vrstvě jsou tisknuty postupně. Když je povoleno, množství změn proudu je omezeno, protože stěny jsou tisknuty po jednom typu najednou, když je zakázáno, počet cest mezi ostrovy se snižuje, protože stěny na stejných ostrovech jsou seskupeny." +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "" + msgctxt "inset_direction option outside_in" msgid "Outside To Inside" msgstr "Zvenku dovnitř" @@ -2547,6 +2645,10 @@ msgctxt "prime_tower_line_width label" msgid "Prime Tower Line Width" msgstr "Šířka čáry primární věže" +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "" + msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" msgstr "Minimální objem hlavní věže" @@ -2563,6 +2665,10 @@ msgctxt "speed_prime_tower label" msgid "Prime Tower Speed" msgstr "Rychlost tisku hlavní věže" +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "" + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "Pozice X hlavní věže" @@ -2579,18 +2685,14 @@ msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Trh při tisku" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "" + msgctxt "print_sequence label" msgid "Print Sequence" msgstr "Tisková sekvence" -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "Nastavit tiskovou sekvenci ručně" - -msgctxt "user_defined_print_order_enabled description" -msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." -msgstr "Umožňuje řadit seznam objektů pro ruční nastavení tiskové sekvence. První objekt ze seznamu bude vytisknut jako první." - msgctxt "speed_print label" msgid "Print Speed" msgstr "Rychlost tisku" @@ -2599,6 +2701,10 @@ msgctxt "fill_outline_gaps label" msgid "Print Thin Walls" msgstr "Tisk tenkých stěn" +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "" + msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "Vytiskněte věž vedle tisku, která slouží k naplnění materiálu po každém přepnutí trysky." @@ -2619,6 +2725,10 @@ msgctxt "fill_outline_gaps description" msgid "Print pieces of the model which are horizontally thinner than the nozzle size." msgstr "Tiskněte kousky modelu, které jsou vodorovně tenčí než velikost trysek." +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "" + msgctxt "bridge_skin_speed_2 description" msgid "Print speed to use when printing the second bridge skin layer." msgstr "Rychlost tisku, která se použije při tisku druhé vrstvy povrchu mostu." @@ -2627,6 +2737,14 @@ msgctxt "bridge_skin_speed_3 description" msgid "Print speed to use when printing the third bridge skin layer." msgstr "Rychlost tisku, která se použije při tisku třetí vrstvy povrchu mostu." +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "" + msgctxt "infill_before_walls description" msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." msgstr "Vytiskněte výplň před tiskem na stěny. První tisk stěn může vést k přesnějším stěnám, ale převisy se zhoršují. Tisk výplně nejprve vede k robustnějším stěnám, ale vzor výplně se někdy může objevit skrz povrch." @@ -2671,6 +2789,10 @@ msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "Vzduchový mezera v raftu" +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "" + msgctxt "raft_base_extruder_nr label" msgid "Raft Base Extruder" msgstr "Extruder základny raftu" @@ -2699,6 +2821,10 @@ msgctxt "raft_base_speed label" msgid "Raft Base Print Speed" msgstr "Rychlost tisku spodku raftu" +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "" + msgctxt "raft_base_thickness label" msgid "Raft Base Thickness" msgstr "Tloušťka základny raftu" @@ -2715,6 +2841,10 @@ msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" msgstr "Rychlost ventilátoru při tisku raftu" +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "" + msgctxt "raft_interface_extruder_nr label" msgid "Raft Middle Extruder" msgstr "Extruder vnitřku raftu" @@ -2743,6 +2873,10 @@ msgctxt "raft_interface_speed label" msgid "Raft Middle Print Speed" msgstr "Rychlost tisku prostředku raftu" +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "" + msgctxt "raft_interface_line_spacing label" msgid "Raft Middle Spacing" msgstr "Mezera ve středu raftu" @@ -2751,6 +2885,10 @@ msgctxt "raft_interface_thickness label" msgid "Raft Middle Thickness" msgstr "Tloušťka prostředku raftu" +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "" + msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" msgstr "Zrychlení tisku raftu" @@ -2767,6 +2905,10 @@ msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "Vyhlazování raftu" +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "" + msgctxt "raft_surface_extruder_nr label" msgid "Raft Top Extruder" msgstr "Extruder povrchu raftu" @@ -2799,10 +2941,22 @@ msgctxt "raft_surface_speed label" msgid "Raft Top Print Speed" msgstr "Rychlost tisku vršku raftu" +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "" + msgctxt "raft_surface_line_spacing label" msgid "Raft Top Spacing" msgstr "Mezera ve horních vrstvách raftu" +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "" + msgctxt "z_seam_type option random" msgid "Random" msgstr "Náhodné" @@ -2855,10 +3009,22 @@ msgctxt "carve_multiple_volumes label" msgid "Remove Mesh Intersection" msgstr "Odstanit průnik sítí" +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "" + msgctxt "raft_remove_inside_corners label" msgid "Remove Raft Inside Corners" msgstr "Odstranit vnitřní rohy raftu" +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "" + msgctxt "carve_multiple_volumes description" msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." msgstr "Odstraňte oblasti, kde se více sítí vzájemně překrývají. To lze použít, pokud se sloučené duální hmotné objekty vzájemně překrývají." @@ -2867,6 +3033,18 @@ msgctxt "remove_empty_first_layers description" msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." msgstr "Odstraňte prázdné vrstvy pod první potištěnou vrstvou, pokud jsou přítomny. Deaktivace tohoto nastavení může způsobit prázdné první vrstvy, pokud je nastavení Tolerance řezu nastaveno na Exkluzivní nebo Střední." +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "" + msgctxt "raft_remove_inside_corners description" msgid "Remove inside corners from the raft, causing the raft to become convex." msgstr "Odstranit vnitřní rohy raftu a změnit tak raft v konvexní (vypouklý) tvar." @@ -2887,6 +3065,10 @@ msgctxt "skin_outline_count description" msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." msgstr "Nahrazuje nejvzdálenější část horního / spodního vzoru řadou soustředných čar. Použití jedné nebo dvou čar zlepšuje střechy, které začínají na výplňovém materiálu." +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "" + msgctxt "support_tree_rest_preference label" msgid "Rest Preference" msgstr "Preferované umístění podpor" @@ -2959,6 +3141,10 @@ msgctxt "z_seam_corner label" msgid "Seam Corner Preference" msgstr "Rohová preference švu" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Nastavit tiskovou sekvenci ručně" + msgctxt "draft_shield_height_limitation description" msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." msgstr "Nastavte výšku štítu proti průvanu. Zvolte, zda chcete tisknout štít konceptu v plné výšce modelu nebo v omezené výšce." @@ -3359,10 +3545,6 @@ msgctxt "support_interface_priority label" msgid "Support Interface Priority" msgstr "Priorita rozhraní podpor" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Rozlišení rozhraní podpor" - msgctxt "speed_support_interface label" msgid "Support Interface Speed" msgstr "Rychlost tisku rozhraní podpor" @@ -3715,6 +3897,10 @@ msgctxt "magic_fuzzy_skin_point_dist description" msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." msgstr "Průměrná vzdálenost mezi náhodnými body zavedenými v každém segmentu čáry. Všimněte si, že původní body mnohoúhelníku jsou zahozeny, takže vysoká hladkost vede ke snížení rozlišení. Tato hodnota musí být vyšší než polovina tloušťky rozmazaného povrchu." +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "" + msgctxt "machine_acceleration description" msgid "The default acceleration of print head movement." msgstr "Výchozí zrychlení pohybu tiskové hlavy." @@ -4191,6 +4377,10 @@ msgctxt "jerk_travel description" msgid "The maximum instantaneous velocity change with which travel moves are made." msgstr "Maximální okamžitá změna rychlosti, se kterou se pohybují pohyby." +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "" + msgctxt "machine_max_feedrate_x description" msgid "The maximum speed for the motor of the X-direction." msgstr "Maximální rychlost pro motor ve směru X." @@ -4303,6 +4493,18 @@ msgctxt "raft_base_wall_count description" msgid "The number of contours to print around the linear pattern in the base layer of the raft." msgstr "Kolik obrysových čar se má tisknout okolo lineárního vzoru v základně raftu." +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "" + msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "Počet výplňových vrstev, které podporují okraje povrchu." @@ -4691,6 +4893,10 @@ msgctxt "machine_gcode_flavor description" msgid "The type of g-code to be generated." msgstr "Typ generovaného g-kódu." +msgctxt "material_type description" +msgid "The type of material used." +msgstr "" + msgctxt "coasting_volume description" msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." msgstr "Objem jinak vytekl. Tato hodnota by měla být obecně blízká průměru trysek." @@ -4739,10 +4945,22 @@ msgctxt "bridge_wall_coast description" msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." msgstr "Tím se řídí vzdálenost, kterou by extrudér měl dojet bezprostředně před začátkem zdi mostu. Pobyt před startem můstku může snížit tlak v trysce a může vést k ploššímu můstku." +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "Toto nastavení řídí, kolik vnitřních rohů v obrysu raftů je zaobleno. Vnitřní rohy jsou zaokrouhleny na půlkruh s poloměrem rovným zde uvedené hodnotě. Toto nastavení také odstraní otvory v obrysu raftu, které jsou menší než takový kruh." +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "retraction_count_max description" msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." msgstr "Toto nastavení omezuje počet stažení, ke kterým dochází v okně minimální vzdálenosti vytlačování. Další stažení v tomto okně budou ignorovány. Tím se zabrání opakovanému navíjení na stejný kus vlákna, protože to může vlákno zploštit a způsobit problémy s broušením." @@ -5103,10 +5321,6 @@ msgctxt "wall_overhang_angle description" msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." msgstr "Stěny, které přesahují více než tento úhel, budou vytištěny pomocí nastavení převislých stěn. Pokud je hodnota 90, nebudou se žádné stěny považovat za převislé. Převis, který je podporován podporou, nebude považován ani za převis." -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "Při kontrole, kde je model nad a pod podpěrou, proveďte kroky dané výšky. Nižší hodnoty se budou řezat pomaleji, zatímco vyšší hodnoty mohou způsobit tisk normální podpory na místech, kde mělo být rozhraní podpory." - msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." msgstr "" @@ -5499,42 +5713,74 @@ msgctxt "travel description" msgid "travel" msgstr "cestování" -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Doba trvání každého kroku v postupné změně průtoku" +#~ msgctxt "brim_inside_margin description" +#~ msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +#~ msgstr "Část plně obklopená jinou částí může generovat vnější límec, který se dotýká vnitřku obklopující části. Toto nastavení odstraní límec v dané vzdálenosti od vnitřních otvorů." + +#~ msgctxt "user_defined_print_order_enabled description" +#~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +#~ msgstr "Umožňuje řadit seznam objektů pro ruční nastavení tiskové sekvence. První objekt ze seznamu bude vytisknut jako první." + +#~ msgctxt "brim_inside_margin label" +#~ msgid "Brim Inside Avoid Margin" +#~ msgstr "Vzdálenost od límce uvnitř" + +#~ msgctxt "brim_outside_only label" +#~ msgid "Brim Only on Outside" +#~ msgstr "Límec pouze venku" + +#~ msgctxt "gradual_flow_discretisation_step_size description" +#~ msgid "Duration of each step in the gradual flow change" +#~ msgstr "Doba trvání každého kroku v postupné změně průtoku" + +#~ msgctxt "gradual_flow_enabled description" +#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +#~ msgstr "Povolit postupné změny průtoku. Když je povoleno, průtok se postupně zvyšuje / snižuje na cílový průtok. Toto je užitečné pro tiskárny s Bowdenovou trubicí, kde se průtok okamžitě nezmění, když se spustí / zastaví extrudér." + +#~ msgctxt "reset_flow_duration description" +#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +#~ msgstr "Pro jakýkoli pohyb delší než tato hodnota se materiálový průtok resetuje na cílový průtok dráhy" + +#~ msgctxt "gradual_flow_discretisation_step_size label" +#~ msgid "Gradual flow discretisation step size" +#~ msgstr "Velikost kroku diskretizace postupné změny průtoku" + +#~ msgctxt "gradual_flow_enabled label" +#~ msgid "Gradual flow enabled" +#~ msgstr "Postupné změny průtoku povoleny" -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Povolit postupné změny průtoku. Když je povoleno, průtok se postupně zvyšuje / snižuje na cílový průtok. Toto je užitečné pro tiskárny s Bowdenovou trubicí, kde se průtok okamžitě nezmění, když se spustí / zastaví extrudér." +#~ msgctxt "max_flow_acceleration label" +#~ msgid "Gradual flow max acceleration" +#~ msgstr "Maximální zrychlení postupných změn průtoku" -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Pro jakýkoli pohyb delší než tato hodnota se materiálový průtok resetuje na cílový průtok dráhy" +#~ msgctxt "layer_0_max_flow_acceleration label" +#~ msgid "Initial layer max flow acceleration" +#~ msgstr "Maximální zrychlení průtoku pro první vrstvu" -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Velikost kroku diskretizace postupné změny průtoku" +#~ msgctxt "layer_0_z_overlap description" +#~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +#~ msgstr "První a druhá vrstva modelu se překrývají ve směru Z, aby se kompenzovalo vlákno ztracené ve vzduchové mezeře. Všechny modely nad první vrstvou modelu budou o tuto částku posunuty dolů." -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Postupné změny průtoku povoleny" +#~ msgctxt "max_flow_acceleration description" +#~ msgid "Maximum acceleration for gradual flow changes" +#~ msgstr "Maximální zrychlení pro postupné změny průtoku" -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Maximální zrychlení postupných změn průtoku" +#~ msgctxt "layer_0_max_flow_acceleration description" +#~ msgid "Minimum speed for gradual flow changes for the first layer" +#~ msgstr "Minimální rychlost pro postupné změny průtoku pro první vrstvu" -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Maximální zrychlení průtoku pro první vrstvu" +#~ msgctxt "brim_outside_only description" +#~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +#~ msgstr "Límec tiskněte pouze na vnější stranu modelu. Tím se snižuje množství límce, který je třeba následně odstranit, zatímco to tolik nesnižuje přilnavost k podložce." -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximální zrychlení pro postupné změny průtoku" +#~ msgctxt "reset_flow_duration label" +#~ msgid "Reset flow duration" +#~ msgstr "Doba trvání resetování průtoku" -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimální rychlost pro postupné změny průtoku pro první vrstvu" +#~ msgctxt "support_interface_skip_height label" +#~ msgid "Support Interface Resolution" +#~ msgstr "Rozlišení rozhraní podpor" -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Doba trvání resetování průtoku" \ No newline at end of file +#~ msgctxt "support_interface_skip_height description" +#~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +#~ msgstr "Při kontrole, kde je model nad a pod podpěrou, proveďte kroky dané výšky. Nižší hodnoty se budou řezat pomaleji, zatímco vyšší hodnoty mohou způsobit tisk normální podpory na místech, kde mělo být rozhraní podpory." diff --git a/resources/i18n/cura.pot b/resources/i18n/cura.pot index 2fabd97f7e5..09565a411d9 100644 --- a/resources/i18n/cura.pot +++ b/resources/i18n/cura.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-31 19:13+0100\n" +"POT-Creation-Date: 2024-03-11 12:52+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -123,6 +123,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "" +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "" + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "" @@ -244,6 +248,10 @@ msgid_plural "A cloud connection is not available for some printers" msgstr[0] "" msgstr[1] "" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "" + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "" @@ -466,10 +474,18 @@ msgctxt "@label" msgid "Anonymous" msgstr "" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "" +msgctxt "@title:column" +msgid "Applies on" +msgstr "" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "" @@ -652,6 +668,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "" @@ -1326,6 +1346,10 @@ msgctxt "@label" msgid "Draft" msgstr "" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "" + msgctxt "@action:button" msgid "Duplicate" msgstr "" @@ -1448,6 +1472,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "" + msgctxt "@button" msgid "Export material archive" msgstr "" @@ -1477,10 +1505,23 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "" + +#, python-brace-format +msgctxt "@label" +msgid "Extruder {0}" +msgstr "" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "" @@ -1547,6 +1588,11 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "" +#, python-brace-format +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "" + msgctxt "@label:category menu label" msgid "Favorites" msgstr "" @@ -1680,6 +1726,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "" +msgid "FreeCAD trackpad" +msgstr "" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "" @@ -1756,6 +1805,10 @@ msgctxt "@action" msgid "Get started" msgstr "" +msgctxt "@label" +msgid "Global" +msgstr "" + msgctxt "@title:tab" msgid "Global Settings" msgstr "" @@ -1805,6 +1858,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "" @@ -1877,6 +1934,10 @@ msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "" +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "" + msgctxt "@label" msgid "Infill" msgstr "" @@ -2540,6 +2601,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "" + msgctxt "@label" msgid "No time estimation available" msgstr "" @@ -2641,6 +2706,10 @@ msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "" +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "" + msgctxt "@action:button" msgid "Open" msgstr "" @@ -2669,10 +2738,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "" + msgctxt "@action:label" msgid "Open With" msgstr "" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "" + msgctxt "@action:button" msgid "Open as project" msgstr "" @@ -2877,6 +2958,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "" +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "" + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "" @@ -2961,6 +3046,14 @@ msgctxt "@action:button" msgid "Print" msgstr "" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "" + msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -3404,7 +3497,11 @@ msgid "Save Cura project" msgstr "" msgctxt "@option" -msgid "Save Cura project and print file" +msgid "Save Cura project and .makerbot print file" +msgstr "" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" msgstr "" msgctxt "@title:window" @@ -3431,6 +3528,10 @@ msgctxt "@button" msgid "Save new profile" msgstr "" +msgctxt "@action:button" +msgid "Save project" +msgstr "" + msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "" @@ -3534,6 +3635,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "" + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "" + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "" + msgctxt "@action:button" msgid "Send report" msgstr "" @@ -3582,6 +3695,10 @@ msgctxt "@title:tab" msgid "Settings" msgstr "" +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "" @@ -3650,6 +3767,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "" + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "" @@ -3706,6 +3827,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "" +msgctxt "@action:button" +msgid "Show settings" +msgstr "" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "" @@ -3774,10 +3899,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "" - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "" @@ -3786,6 +3907,10 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "" +msgctxt "@label" +msgid "Solid" +msgstr "" + msgctxt "@item:inmenu" msgid "Solid view" msgstr "" @@ -3897,10 +4022,26 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "" +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "" + msgctxt "@label" msgid "Support" msgstr "" @@ -4269,6 +4410,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "" +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "" @@ -4352,6 +4497,14 @@ msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "" +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "" + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "" + msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" msgstr "" @@ -4553,6 +4706,11 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "" +#, python-brace-format +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "" + msgctxt "@label:status" msgid "Unavailable" msgstr "" @@ -4565,14 +4723,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "" -msgctxt "@action:inmenu menubar:edit" -msgid "Print Before" -msgstr "" - -msgctxt "@action:inmenu menubar:edit" -msgid "Print After" -msgstr "" - msgctxt "@button" msgid "Uninstall" msgstr "" @@ -4581,6 +4731,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "" +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "" + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "" @@ -4698,6 +4852,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "" +msgctxt "@title:column" +msgid "Value" +msgstr "" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "" @@ -4775,6 +4933,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "" @@ -4964,6 +5126,10 @@ msgctxt "@label" msgid "mm" msgstr "" +msgctxt "@label" +msgid "s" +msgstr "" + msgctxt "@info:status" msgid "today" msgstr "" @@ -4985,323 +5151,323 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "" msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" +msgid "Manages network connections to UltiMaker networked printers." msgstr "" msgctxt "name" -msgid "Post Processing" +msgid "UltiMaker Network Connection" msgstr "" msgctxt "description" -msgid "Provides a normal solid mesh view." +msgid "Provides support for importing profiles from g-code files." msgstr "" msgctxt "name" -msgid "Solid View" +msgid "G-code Profile Reader" msgstr "" msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." +msgid "Provides a normal solid mesh view." msgstr "" msgctxt "name" -msgid "Legacy Cura Profile Reader" +msgid "Solid View" msgstr "" msgctxt "description" -msgid "Provides the X-Ray view." +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" msgstr "" msgctxt "name" -msgid "X-Ray View" +msgid "CuraEngineGradualFlow" msgstr "" msgctxt "description" -msgid "Provides the preview of sliced layerdata." +msgid "Provides support for reading 3MF files." msgstr "" msgctxt "name" -msgid "Simulation View" +msgid "3MF Reader" msgstr "" msgctxt "description" -msgid "Provides support for reading AMF files." +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." msgstr "" msgctxt "name" -msgid "AMF Reader" +msgid "USB printing" msgstr "" msgctxt "description" -msgid "Provides a preview stage in Cura." +msgid "Checks for firmware updates." msgstr "" msgctxt "name" -msgid "Preview Stage" +msgid "Firmware Update Checker" msgstr "" msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." msgstr "" msgctxt "name" -msgid "Ultimaker Digital Library" +msgid "Marketplace" msgstr "" msgctxt "description" -msgid "Provides a machine actions for updating firmware." +msgid "Backup and restore your configuration." msgstr "" msgctxt "name" -msgid "Firmware Updater" +msgid "Cura Backups" msgstr "" msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." msgstr "" msgctxt "name" -msgid "Image Reader" +msgid "Machine Settings Action" msgstr "" msgctxt "description" -msgid "Backup and restore your configuration." +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." msgstr "" msgctxt "name" -msgid "Cura Backups" +msgid "Version Upgrade 2.5 to 2.6" msgstr "" msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." msgstr "" msgctxt "name" -msgid "Marketplace" +msgid "Version Upgrade 4.7 to 4.8" msgstr "" msgctxt "description" -msgid "Provides support for reading X3D files." +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." msgstr "" msgctxt "name" -msgid "X3D Reader" +msgid "Version Upgrade 4.4 to 4.5" msgstr "" msgctxt "description" -msgid "Provides support for writing 3MF files." +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." msgstr "" msgctxt "name" -msgid "3MF Writer" +msgid "Version Upgrade 3.0 to 3.1" msgstr "" msgctxt "description" -msgid "Checks for firmware updates." +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." msgstr "" msgctxt "name" -msgid "Firmware Update Checker" +msgid "Version Upgrade 4.11 to 4.12" msgstr "" msgctxt "description" -msgid "Provides support for reading model files." +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." msgstr "" msgctxt "name" -msgid "Trimesh Reader" +msgid "Version Upgrade 4.1 to 4.2" msgstr "" msgctxt "description" -msgid "Allows loading and displaying G-code files." +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." msgstr "" msgctxt "name" -msgid "G-code Reader" +msgid "Version Upgrade 2.6 to 2.7" msgstr "" msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." msgstr "" msgctxt "name" -msgid "UltiMaker machine actions" +msgid "Version Upgrade 4.6.0 to 4.6.2" msgstr "" msgctxt "description" -msgid "Writes g-code to a compressed archive." +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." msgstr "" msgctxt "name" -msgid "Compressed G-code Writer" +msgid "Version Upgrade 3.3 to 3.4" msgstr "" msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." msgstr "" msgctxt "name" -msgid "Machine Settings Action" +msgid "Version Upgrade 4.8 to 4.9" msgstr "" msgctxt "description" -msgid "Provides support for importing profiles from g-code files." +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." msgstr "" msgctxt "name" -msgid "G-code Profile Reader" +msgid "Version Upgrade 4.5 to 4.6" msgstr "" msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." msgstr "" msgctxt "name" -msgid "CuraEngine Backend" +msgid "Version Upgrade 4.2 to 4.3" msgstr "" msgctxt "description" -msgid "Provides a prepare stage in Cura." +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." msgstr "" msgctxt "name" -msgid "Prepare Stage" +msgid "Version Upgrade 3.2 to 3.3" msgstr "" msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." msgstr "" msgctxt "name" -msgid "UFP Writer" +msgid "Version Upgrade 4.3 to 4.4" msgstr "" msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." msgstr "" msgctxt "name" -msgid "Sentry Logger" +msgid "Version Upgrade 5.6 to 5.7" msgstr "" msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." msgstr "" msgctxt "name" -msgid "Removable Drive Output Device Plugin" +msgid "Version Upgrade 2.1 to 2.2" msgstr "" msgctxt "description" -msgid "Provides the Per Model Settings." +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." msgstr "" msgctxt "name" -msgid "Per Model Settings Tool" +msgid "Version Upgrade 5.3 to 5.4" msgstr "" msgctxt "description" -msgid "Writes g-code to a file." +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." msgstr "" msgctxt "name" -msgid "G-code Writer" +msgid "Version Upgrade 4.9 to 4.10" msgstr "" msgctxt "description" -msgid "Provides support for writing MakerBot Format Packages." +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." msgstr "" msgctxt "name" -msgid "Makerbot Printfile Writer" +msgid "Version Upgrade 2.7 to 3.0" msgstr "" msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." msgstr "" msgctxt "name" -msgid "USB printing" +msgid "Version Upgrade 3.5 to 4.0" msgstr "" msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." msgstr "" msgctxt "name" -msgid "Slice info" +msgid "Version Upgrade 5.2 to 5.3" msgstr "" msgctxt "description" -msgid "Provides support for exporting Cura profiles." +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." msgstr "" msgctxt "name" -msgid "Cura Profile Writer" +msgid "Version Upgrade 4.0 to 4.1" msgstr "" msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." msgstr "" msgctxt "name" -msgid "CuraEngineGradualFlow" +msgid "Version Upgrade 4.13 to 5.0" msgstr "" msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." msgstr "" msgctxt "name" -msgid "UltiMaker Network Connection" +msgid "Version Upgrade 3.4 to 3.5" msgstr "" msgctxt "description" -msgid "Provides a monitor stage in Cura." +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." msgstr "" msgctxt "name" -msgid "Monitor Stage" +msgid "Version Upgrade 2.2 to 2.4" msgstr "" msgctxt "description" -msgid "Provides support for reading 3MF files." +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." msgstr "" msgctxt "name" -msgid "3MF Reader" +msgid "Version Upgrade 4.6.2 to 4.7" msgstr "" msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." msgstr "" msgctxt "name" -msgid "Material Profiles" +msgid "Version Upgrade 5.4 to 5.5" msgstr "" msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." +msgid "Allows loading and displaying G-code files." msgstr "" msgctxt "name" -msgid "UFP Reader" +msgid "G-code Reader" msgstr "" msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgid "Submits anonymous slice info. Can be disabled through preferences." msgstr "" msgctxt "name" -msgid "Model Checker" +msgid "Slice info" msgstr "" msgctxt "description" -msgid "Provides support for importing Cura profiles." +msgid "Provides removable drive hotplugging and writing support." msgstr "" msgctxt "name" -msgid "Cura Profile Reader" +msgid "Removable Drive Output Device Plugin" msgstr "" msgctxt "description" @@ -5313,218 +5479,226 @@ msgid "Support Eraser" msgstr "" msgctxt "description" -msgid "Reads g-code from a compressed archive." +msgid "Checks models and print configuration for possible printing issues and give suggestions." msgstr "" msgctxt "name" -msgid "Compressed G-code Reader" +msgid "Model Checker" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgid "Provides a prepare stage in Cura." msgstr "" msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" +msgid "Prepare Stage" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgid "Provides the preview of sliced layerdata." msgstr "" msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" +msgid "Simulation View" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgid "Provides support for reading AMF files." msgstr "" msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" +msgid "AMF Reader" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgid "Provides the X-Ray view." msgstr "" msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" +msgid "X-Ray View" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgid "Provides a machine actions for updating firmware." msgstr "" msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" +msgid "Firmware Updater" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgid "Provides support for importing profiles from legacy Cura versions." msgstr "" msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" +msgid "Legacy Cura Profile Reader" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgid "Extension that allows for user created scripts for post processing" msgstr "" msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" +msgid "Post Processing" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgid "Logs certain events so that they can be used by the crash reporter" msgstr "" msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" +msgid "Sentry Logger" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgid "Provides support for writing MakerBot Format Packages." msgstr "" msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" +msgid "Makerbot Printfile Writer" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgid "Provides support for importing Cura profiles." msgstr "" msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" +msgid "Cura Profile Reader" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgid "Provides support for reading Ultimaker Format Packages." msgstr "" msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" +msgid "UFP Reader" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgid "Enables ability to generate printable geometry from 2D image files." msgstr "" msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" +msgid "Image Reader" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgid "Provides the link to the CuraEngine slicing backend." msgstr "" msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" +msgid "CuraEngine Backend" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgid "Writes g-code to a compressed archive." msgstr "" msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" +msgid "Compressed G-code Writer" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." msgstr "" msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" +msgid "UltiMaker machine actions" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgid "Reads g-code from a compressed archive." msgstr "" msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" +msgid "Compressed G-code Reader" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgid "Provides a preview stage in Cura." msgstr "" msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" +msgid "Preview Stage" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." msgstr "" msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" +msgid "Ultimaker Digital Library" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgid "Provides support for exporting Cura profiles." msgstr "" msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" +msgid "Cura Profile Writer" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgid "Provides support for reading X3D files." msgstr "" msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" +msgid "X3D Reader" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgid "Provides support for reading model files." msgstr "" msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" +msgid "Trimesh Reader" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgid "Provides a monitor stage in Cura." msgstr "" msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" +msgid "Monitor Stage" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgid "Provides the Per Model Settings." msgstr "" msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" +msgid "Per Model Settings Tool" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgid "Provides capabilities to read and write XML-based material profiles." msgstr "" msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" +msgid "Material Profiles" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgid "Provides support for writing 3MF and UCP files." msgstr "" msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" +msgid "3MF Writer" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgid "Provides support for writing Ultimaker Format Packages." msgstr "" msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" +msgid "UFP Writer" +msgstr "" + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "" + +msgctxt "name" +msgid "G-code Writer" msgstr "" diff --git a/resources/i18n/de_DE/cura.po b/resources/i18n/de_DE/cura.po index 8ca4de67b4f..c45016081f7 100644 --- a/resources/i18n/de_DE/cura.po +++ b/resources/i18n/de_DE/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-31 19:13+0100\n" +"POT-Creation-Date: 2024-03-11 12:52+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -117,6 +117,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "&Projekt speichern ..." +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "" + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "&Einstellungen" @@ -261,6 +265,10 @@ msgid_plural "A cloud connection is not available for some printers" msgstr[0] "Für einen Drucker ist keine Cloud-Verbindung verfügbar" msgstr[1] "Für mehrere Drucker ist keine Cloud-Verbindung verfügbar" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "" + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "Druck wird bearbeitet. Cura kann keinen weiteren Druck via USB starten, bis der vorherige Druck abgeschlossen wurde." @@ -495,10 +503,18 @@ msgctxt "@label" msgid "Anonymous" msgstr "Anonym" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "Anwendungsrahmenwerk" +msgctxt "@title:column" +msgid "Applies on" +msgstr "" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "Extruder-Versatzwerte auf GCode anwenden" @@ -685,6 +701,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "Berechnet" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "Kamera-Rendering:" @@ -1415,6 +1435,10 @@ msgctxt "@label" msgid "Draft" msgstr "Entwurf" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "" + msgctxt "@action:button" msgid "Duplicate" msgstr "Duplizieren" @@ -1541,6 +1565,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Auswahl exportieren..." +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "" + msgctxt "@button" msgid "Export material archive" msgstr "Materialarchiv exportieren" @@ -1574,10 +1602,23 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "G-Code Extruder-Ende" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "G-Code Extruder-Start" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "" + +#, python-brace-format +msgctxt "@label" +msgid "Extruder {0}" +msgstr "" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Extruder deaktiviert" @@ -1644,6 +1685,11 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Speichern des Materialarchivs fehlgeschlagen" +#, python-brace-format +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "" + msgctxt "@label:category menu label" msgid "Favorites" msgstr "Favoriten" @@ -1785,6 +1831,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Schichtenansicht Kompatibilitätsmodus erzwingen (Neustart erforderlich)" +msgid "FreeCAD trackpad" +msgstr "" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Vorderansicht" @@ -1873,6 +1922,10 @@ msgctxt "@action" msgid "Get started" msgstr "Erste Schritte" +msgctxt "@label" +msgid "Global" +msgstr "" + msgctxt "@title:tab" msgid "Global Settings" msgstr "Globale Einstellungen" @@ -1922,6 +1975,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "Alle verbundenen Drucker ausblenden" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "Diese Einstellung ausblenden" @@ -1998,6 +2055,10 @@ msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "Um das Paket nutzen zu können, müssen Sie Cura neu starten" +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "" + msgctxt "@label" msgid "Infill" msgstr "Füllung" @@ -2701,6 +2762,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "Keine Ergebnisse mit dem aktuellen Filter gefunden" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "" + msgctxt "@label" msgid "No time estimation available" msgstr "Keine Zeitschätzung verfügbar" @@ -2802,6 +2867,10 @@ msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Es kann nur jeweils ein G-Code gleichzeitig geladen werden. Wichtige {0} werden übersprungen." +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "" + msgctxt "@action:button" msgid "Open" msgstr "Öffnen" @@ -2830,10 +2899,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "Projektdatei öffnen" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "" + msgctxt "@action:label" msgid "Open With" msgstr "Öffnen" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "" + msgctxt "@action:button" msgid "Open as project" msgstr "Als Projekt öffnen" @@ -3049,6 +3130,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "Bitte melden Sie sich an, um verifizierte Plugins und Materialien für UltiMaker Cura Enterprise zu erhalten" +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "" + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "Bitte stimmen Sie die Materialprofile auf Ihre Drucker ab („synchronisieren“), bevor Sie mit dem Drucken beginnen." @@ -3145,6 +3230,14 @@ msgctxt "@action:button" msgid "Print" msgstr "Drucken" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Nach dem Drucken" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Vor dem Drucken" + msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -3451,8 +3544,8 @@ msgid "Provides support for reading model files." msgstr "Unterstützt das Lesen von Modelldateien." msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Bietet Unterstützung für das Schreiben von 3MF-Dateien." +msgid "Provides support for writing 3MF and UCP files." +msgstr "" msgctxt "description" msgid "Provides support for writing MakerBot Format Packages." @@ -3696,8 +3789,12 @@ msgid "Save Cura project" msgstr "Cura-Projekt speichern" msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "Cura-Projekt speichern und Datei drucken" +msgid "Save Cura project and .makerbot print file" +msgstr "" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" +msgstr "" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3723,6 +3820,10 @@ msgctxt "@button" msgid "Save new profile" msgstr "Neues Profil speichern" +msgctxt "@action:button" +msgid "Save project" +msgstr "" + msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "Speichern Sie die UMM-Datei auf einem USB-Stick." @@ -3826,6 +3927,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "Absturzbericht an UltiMaker senden" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "" + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "" + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "" + msgctxt "@action:button" msgid "Send report" msgstr "Bericht senden" @@ -3878,6 +3991,10 @@ msgctxt "@title:tab" msgid "Settings" msgstr "Einstellungen" +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "Die Einstellungen wurden an die aktuell verfügbaren Extruder angepasst:" @@ -3946,6 +4063,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "Sollten Dateien vom Desktop oder von externen Anwendungen in derselben Instanz von Cura geöffnet werden?" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "" + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "Soll das Druckbett jeweils vor dem Laden eines neuen Modells in einer einzelnen Instanz von Cura gelöscht werden?" @@ -4002,6 +4123,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Detaillierten Absturzbericht anzeigen" +msgctxt "@action:button" +msgid "Show settings" +msgstr "" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Dialog Zusammenfassung beim Speichern eines Projekts anzeigen" @@ -4078,10 +4203,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "Slicing fehlgeschlagen" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "Fehler beim Slicing mit einem unerwarteten Fehler. Bitte denken Sie daran, Fehler in unserem Issue Tracker zu melden." - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Das Slicing läuft..." @@ -4090,6 +4211,10 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Glättung" +msgctxt "@label" +msgid "Solid" +msgstr "" + msgctxt "name" msgid "Solid View" msgstr "Solide Ansicht" @@ -4215,10 +4340,26 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Profil {0} erfolgreich importiert." +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Zusammenfassung – Cura-Projekt" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "" + msgctxt "@label" msgid "Support" msgstr "Stützstruktur" @@ -4598,6 +4739,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "Diese Konfigurationen sind nicht verfügbar, weil %1 nicht erkannt wird. Besuchen Sie bitte %2 für das Herunterladen des korrekten Materialprofils." +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "Dies ist eine Cura-Projektdatei. Möchten Sie diese als Projekt öffnen oder die Modelle hieraus importieren?" @@ -4687,6 +4832,14 @@ msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Diese Einstellung wird durch gegensätzliche, extruderspezifische Werte gelöst:" +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "" + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "" + msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" msgstr "Diese Version ist nicht für den Einsatz in Produktionsumgebungen gedacht. Wenn Sie auf Probleme stoßen, melden Sie diese bitte auf unserer GitHub-Seite und geben Sie die vollständige Versionsnummer {self.getVersion()} an." @@ -4918,6 +5071,11 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Es kann kein neuer Anmeldevorgang gestartet werden. Bitte überprüfen Sie, ob noch ein weiterer Anmeldevorgang aktiv ist." +#, python-brace-format +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "" + msgctxt "@label:status" msgid "Unavailable" msgstr "Nicht verfügbar" @@ -4930,14 +5088,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Gruppierung für Modelle aufheben" -msgctxt "@action:inmenu menubar:edit" -msgid "Print Before" -msgstr "Vor dem Drucken" - -msgctxt "@action:inmenu menubar:edit" -msgid "Print After" -msgstr "Nach dem Drucken" - msgctxt "@button" msgid "Uninstall" msgstr "Deinstallieren" @@ -4946,6 +5096,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Einheit" +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "" + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "Universelle Build-Systemkonfiguration" @@ -5135,6 +5289,10 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." msgstr "Aktualisiert Konfigurationen von Cura 5.4 auf Cura 5.5." +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "" + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Benutzerdefinierte Firmware hochladen" @@ -5167,6 +5325,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "Utility-Bibliothek, einschließlich Voronoi-Generierung" +msgctxt "@title:column" +msgid "Value" +msgstr "" + msgctxt "name" msgid "Version Upgrade 2.1 to 2.2" msgstr "Upgrade von Version 2.1 auf 2.2" @@ -5271,6 +5433,10 @@ msgctxt "name" msgid "Version Upgrade 5.4 to 5.5" msgstr "Versions-Upgrade 5.4 auf 5.5" +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Drucker in der Digital Factory anzeigen" @@ -5348,6 +5514,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "Welchen Drucker möchten Sie einrichten?" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "Welches Kamera-Rendering sollte verwendet werden?" @@ -5562,6 +5732,10 @@ msgctxt "@label" msgid "mm" msgstr "mm" +msgctxt "@label" +msgid "s" +msgstr "" + msgctxt "@info:status" msgid "today" msgstr "heute" @@ -5589,3 +5763,15 @@ msgstr "Sie müssen das Programm beenden und neu starten {}, bevor Änderungen w #~ msgid "Provides support for exporting Cura profiles." #~ msgstr "Bietet Unterstützung für den Export von Cura-Profilen." + +#~ msgctxt "description" +#~ msgid "Provides support for writing 3MF files." +#~ msgstr "Bietet Unterstützung für das Schreiben von 3MF-Dateien." + +#~ msgctxt "@option" +#~ msgid "Save Cura project and print file" +#~ msgstr "Cura-Projekt speichern und Datei drucken" + +#~ msgctxt "@message" +#~ msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +#~ msgstr "Fehler beim Slicing mit einem unerwarteten Fehler. Bitte denken Sie daran, Fehler in unserem Issue Tracker zu melden." diff --git a/resources/i18n/de_DE/fdmextruder.def.json.po b/resources/i18n/de_DE/fdmextruder.def.json.po index c8cb488ecfb..a41fad6cc52 100644 --- a/resources/i18n/de_DE/fdmextruder.def.json.po +++ b/resources/i18n/de_DE/fdmextruder.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-06-08 16:32+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -40,6 +40,10 @@ msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "G-Code Extruder-Ende" +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "" + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Absolute Extruder-Endposition" @@ -72,6 +76,10 @@ msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "G-Code Extruder-Start" +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "" + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Absolute Startposition des Extruders" @@ -156,6 +164,14 @@ msgctxt "machine_extruder_cooling_fan_number description" msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." msgstr "Die Anzahl der Drucklüfter für diesen Extruder. Nur vom Standardwert 0 ändern, wenn Sie für jeden Extruder einen anderen Drucklüfter verwenden." +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "" + msgctxt "machine_extruder_end_pos_x description" msgid "The x-coordinate of the ending position when turning the extruder off." msgstr "Die X-Koordinate der Endposition beim Ausschalten des Extruders." diff --git a/resources/i18n/de_DE/fdmprinter.def.json.po b/resources/i18n/de_DE/fdmprinter.def.json.po index ff44a4837d1..e998361d7d0 100644 --- a/resources/i18n/de_DE/fdmprinter.def.json.po +++ b/resources/i18n/de_DE/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,6 +12,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "" + +msgctxt "brim_inside_margin description" +msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." +msgstr "" + msgctxt "ironing_inset description" msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." msgstr "Eine Distanz, die von den Kanten des Modells einzuhalten ist. Die Glättung des gesamten Weges zur Kante des Mesh führt möglicherweise zu einer gezackten Kante Ihres Drucks." @@ -56,10 +64,6 @@ msgctxt "machine_disallowed_areas description" msgid "A list of polygons with areas the print head is not allowed to enter." msgstr "Eine Liste mit Polygonen mit Bereichen, die für den Druckkopf unzulässig sind." -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "Ist ein Teil vollständig von einem anderen Teil eingeschlossen, wird bei diesem möglicherweise ein äußeres Brim-Element erzeugt, das die Innenseite des anderen Teils berührt. Hiermit wird der Teil des Brim-Elements entfernt, der sich innerhalb dieses Abstands zu inneren Löchern befindet." - msgctxt "support_tree_branch_reach_limit description" msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " msgstr "Dieser Wert ist die empfohlene Entfernung der Äste von den Stellen, die durch sie gestützt werden. Er kann überschritten werden, damit Äste ihre Zielposition erreichen (Druckplatte oder einen flachen Teil des Modells). Eine Senkung dieses Werts sorgt für eine stabilere Stützstruktur, erhöht jedoch die Anzahl der Äste und damit den Materialverbrauch/die Druckzeit)." @@ -152,6 +156,10 @@ msgctxt "resolution description" msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" msgstr "Alle Einstellungen, die die Auflösung des Drucks beeinflussen. Diese Einstellungen haben große Auswirkung auf die Qualität (und Druckdauer)." +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "" + msgctxt "alternate_extra_perimeter label" msgid "Alternate Extra Wall" msgstr "Abwechselnde Zusatzwände" @@ -400,21 +408,21 @@ msgctxt "adhesion_type option brim" msgid "Brim" msgstr "Brim" +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "" + msgctxt "brim_gap label" msgid "Brim Distance" msgstr "Abstand zum Brim-Element" -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "Abstand zur Vermeidung des inneren Brims" - msgctxt "brim_line_count label" msgid "Brim Line Count" msgstr "Anzahl der Brim-Linien" -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Brim nur an Außenseite" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "" msgctxt "brim_replaces_support label" msgid "Brim Replaces Support" @@ -456,6 +464,14 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "Temperatur Druckabmessung" +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "" + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "" + msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." msgstr "Durch Aktivieren dieser Einstellung erhält Ihr Prime-Turm einen Rand, auch wenn das Modell keinen hat. Wenn Sie eine stabilere Basis für einen hohen Turm möchten, können Sie die Basis-Höhe erhöhen." @@ -868,6 +884,10 @@ msgctxt "cool_fan_enabled label" msgid "Enable Print Cooling" msgstr "Kühlung für Drucken aktivieren" +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "" + msgctxt "retraction_enable label" msgid "Enable Retraction" msgstr "Einzug aktivieren" @@ -900,6 +920,10 @@ msgctxt "ooze_shield_enabled description" msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." msgstr "Aktiviert den äußeren Sickerschutz. Damit wird eine Hülle um das Modell erstellt, die eine zweite Düse abstreift, wenn diese auf derselben Höhe wie die erste Düse steht." +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "" + msgctxt "small_skin_on_surface description" msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." msgstr "Ermöglicht es, dass kleine (bis zu „Kleine obere/untere Breite“) Bereiche auf der obersten (der Luft ausgesetzten) Hautschicht mit Wänden anstelle des Standardmusters gefüllt werden." @@ -932,6 +956,10 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "Erzwingen Sie den Druck des Brims um das Modell herum, auch wenn dieser Raum sonst durch die Stützstruktur belegt würde. Dies ersetzt einige der ersten Schichten der Stützstruktur durch Brim-Bereiche." +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "" + msgctxt "support_type option everywhere" msgid "Everywhere" msgstr "Überall" @@ -1036,6 +1064,10 @@ msgctxt "speed_equalize_flow_width_factor label" msgid "Flow Equalization Ratio" msgstr "Verhältnis für Durchflussausgleich" +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "" + msgctxt "flow_rate_extrusion_offset_factor label" msgid "Flow Rate Compensation Factor" msgstr "Ausgleichsfaktor Durchflussrate" @@ -1048,6 +1080,10 @@ msgctxt "material_flow_temp_graph label" msgid "Flow Temperature Graph" msgstr "Fließtemperaturgraf" +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "" + msgctxt "material_flow_layer_0 description" msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." msgstr "Fluss-Kompensation für die erste Schicht: Die auf der ersten Schicht extrudierte Materialmenge wird mit diesem Wert multipliziert." @@ -1440,10 +1476,22 @@ msgctxt "wall_transition_filter_distance description" msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." msgstr "Wenn in schneller Folge viele Übergänge zwischen verschiedenen Wänden erzeugt würden, werden gar keine Übergänge erzeugt. Übergänge, die näher beieinander liegen als dieser Abstand, werden entfernt." +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "Wenn die Raft-Funktion aktiviert ist, gibt es einen zusätzlichen Raft-Bereich um das Modell herum, für das ein Raft erstellt wird. Bei einem größeren Abstand wird ein kräftigeres Raft-Element hergestellt, wobei jedoch mehr Material verbraucht wird und weniger Platz für das gedruckte Modell verbleibt." +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "meshfix_union_all description" msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." msgstr "Die interne Geometrie, die durch überlappende Volumen innerhalb eines Netzes entsteht, wird ignoriert und diese Volumen werden als ein Einziges gedruckt. Dadurch können unbeabsichtigte innere Hohlräume verschwinden." @@ -1672,6 +1720,10 @@ msgctxt "wall_0_inset description" msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." msgstr "Verwendete Einfügung am Pfad zur Außenwand. Wenn die Außenwand kleiner als die Düse ist und nach den Innenwänden gedruckt wird, verwenden Sie diesen Versatz, damit die Öffnung in der Düse mit den Innenwänden überlappt, anstelle mit der Außenseite des Modells." +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "" + msgctxt "inset_direction option inside_out" msgid "Inside To Outside" msgstr "Von innen nach außen" @@ -1684,6 +1736,10 @@ msgctxt "support_interface_priority option interface_area_overwrite_support_area msgid "Interface preferred" msgstr "Schnittstelle priorisiert" +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "" + msgctxt "interlocking_beam_layer_count label" msgid "Interlocking Beam Layer Count" msgstr "Anzahl der Schichten ineinandergreifender Balken" @@ -1824,6 +1880,30 @@ msgctxt "support_tree_limit_branch_reach description" msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" msgstr "Dieser Parameter schränkt ein, wie weit sich jeder Ast von der Stelle entfernen kann, die er stützt. Dadurch wird die Stabilität der Stützstruktur gestärkt, jedoch erhöht sich die Anzahl der Äste (und damit der Materialverbrauch•/ die Druckzeit)." +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "" + msgctxt "cutting_mesh description" msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." msgstr "Beschränkt die Menge dieses Meshs innerhalb der anderen Meshes. Sie können diese Funktion verwenden, um bestimmte Bereiche eines Mesh-Drucks mit unterschiedlichen Einstellungen und einem völlig anderen Extruder zu produzieren." @@ -1921,8 +2001,10 @@ msgid "Make the extruder prime position absolute rather than relative to the las msgstr "Bevorzugen Sie eine absolute Einzugsposition des Extruders anstelle einer relativen Position zur zuletzt bekannten Kopfposition." msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "Die erste und die zweite Schicht des Modells sollen sich in der Z-Richtung überlappen, um das verlorene Filament in dem Luftspalt zu kompensieren. Alle Modelle über der ersten Modellschicht verschieben sich um diesen Wert nach unten." +msgid "" +"Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" +"It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "" msgctxt "meshfix description" msgid "Make the meshes more suited for 3D printing." @@ -1948,10 +2030,18 @@ msgctxt "material label" msgid "Material" msgstr "Material" +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "" + msgctxt "material_guid label" msgid "Material GUID" msgstr "Material-GUID" +msgctxt "material_type label" +msgid "Material Type" +msgstr "" + msgctxt "max_extrusion_before_wipe label" msgid "Material Volume Between Wipes" msgstr "Materialmenge zwischen den Wischvorgängen" @@ -2228,6 +2318,10 @@ msgctxt "ironing_monotonic label" msgid "Monotonic Ironing Order" msgstr "Gleichmäßige Reihenfolge hin/her" +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "" + msgctxt "roofing_monotonic label" msgid "Monotonic Top Surface Order" msgstr "Gleichmäßige Reihenfolge oben" @@ -2268,6 +2362,10 @@ msgctxt "magic_mesh_surface_mode option normal" msgid "Normal" msgstr "Normal" +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "" + msgctxt "support_structure option normal" msgid "Normal" msgstr "Normal" @@ -2400,10 +2498,6 @@ msgctxt "ironing_only_highest_layer description" msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." msgstr "Führen Sie das Glätten nur für die allerletzte Schicht des Meshs aus. Dies spart Zeit, wenn die unteren Schichten keine glatte Oberflächenausführung erfordern." -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Brim nur an der Außenseite des Modells drucken. Damit reduziert sich die Anzahl der Brims, die Sie später entfernen müssen, während die Druckbetthaftung nicht signifikant eingeschränkt wird." - msgctxt "ooze_shield_angle label" msgid "Ooze Shield Angle" msgstr "Winkel für Sickerschutz" @@ -2464,6 +2558,10 @@ msgctxt "group_outer_walls description" msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." msgstr "Die äußeren Wände verschiedener Inseln in derselben Schicht werden nacheinander gedruckt. Wenn aktiviert, wird die Menge der Flussänderungen begrenzt, da die Wände nacheinander gedruckt werden, wenn deaktiviert, wird die Anzahl der Fahrten zwischen den Inseln reduziert, da die Wände auf den gleichen Inseln gruppiert sind." +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "" + msgctxt "inset_direction option outside_in" msgid "Outside To Inside" msgstr "Von außen nach innen" @@ -2544,6 +2642,10 @@ msgctxt "prime_tower_line_width label" msgid "Prime Tower Line Width" msgstr "Linienbreite Einzugsturm" +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "" + msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" msgstr "Mindestvolumen Einzugsturm" @@ -2560,6 +2662,10 @@ msgctxt "speed_prime_tower label" msgid "Prime Tower Speed" msgstr "Geschwindigkeit Einzugsturm" +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "" + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "X-Position des Einzugsturm" @@ -2576,18 +2682,14 @@ msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Ruckfunktion Drucken" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "" + msgctxt "print_sequence label" msgid "Print Sequence" msgstr "Druckreihenfolge" -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "Druckreihenfolge manuell einstellen" - -msgctxt "user_defined_print_order_enabled description" -msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." -msgstr "Ermöglicht das Ordnen der Objektliste, um die Druckreihenfolge manuell festzulegen. Das erste Objekt aus der Liste wird zuerst gedruckt." - msgctxt "speed_print label" msgid "Print Speed" msgstr "Druckgeschwindigkeit" @@ -2596,6 +2698,10 @@ msgctxt "fill_outline_gaps label" msgid "Print Thin Walls" msgstr "Drucken von dünnen Wänden" +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "" + msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "Drucken Sie einen Turm neben dem Druck, der zum Einziehen des Materials nach jeder Düsenschaltung dient." @@ -2616,6 +2722,10 @@ msgctxt "fill_outline_gaps description" msgid "Print pieces of the model which are horizontally thinner than the nozzle size." msgstr "Drucken Sie Teile des Modells, die horizontal dünner als die Düsengröße sind." +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "" + msgctxt "bridge_skin_speed_2 description" msgid "Print speed to use when printing the second bridge skin layer." msgstr "Druckgeschwindigkeit für das Drucken der zweiten Brücken-Außenhautschicht." @@ -2624,6 +2734,14 @@ msgctxt "bridge_skin_speed_3 description" msgid "Print speed to use when printing the third bridge skin layer." msgstr "Druckgeschwindigkeit für das Drucken der dritten Brücken-Außenhautschicht." +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "" + msgctxt "infill_before_walls description" msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." msgstr "Es wird die Füllung gedruckt, bevor die Wände gedruckt werden. Wenn man die Wände zuerst druckt, kann dies zu präziseren Wänden führen, aber Überhänge werden schlechter gedruckt. Wenn man die Füllung zuerst druckt, bekommt man stabilere Wände, aber manchmal zeigt sich das Füllmuster auf der Oberfläche." @@ -2668,6 +2786,10 @@ msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "Luftspalt für Raft" +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "" + msgctxt "raft_base_extruder_nr label" msgid "Raft Base Extruder" msgstr "Raft-Basis-Extruder" @@ -2696,6 +2818,10 @@ msgctxt "raft_base_speed label" msgid "Raft Base Print Speed" msgstr "Druckgeschwindigkeit für Raft-Basis" +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "" + msgctxt "raft_base_thickness label" msgid "Raft Base Thickness" msgstr "Dicke der Raft-Basis" @@ -2712,6 +2838,10 @@ msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" msgstr "Lüfterdrehzahl für Raft" +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "" + msgctxt "raft_interface_extruder_nr label" msgid "Raft Middle Extruder" msgstr "Extruder für die Raft-Mitte" @@ -2740,6 +2870,10 @@ msgctxt "raft_interface_speed label" msgid "Raft Middle Print Speed" msgstr "Druckgeschwindigkeit Raft Mitte" +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "" + msgctxt "raft_interface_line_spacing label" msgid "Raft Middle Spacing" msgstr "Linienabstand im Raft-Mittelbereich" @@ -2748,6 +2882,10 @@ msgctxt "raft_interface_thickness label" msgid "Raft Middle Thickness" msgstr "Dicke der Raft-Mittelbereichs" +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "" + msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" msgstr "Druckbeschleunigung Raft" @@ -2764,6 +2902,10 @@ msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "Raft-Glättung" +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "" + msgctxt "raft_surface_extruder_nr label" msgid "Raft Top Extruder" msgstr "Extruder für die Raft-Oberseite" @@ -2796,10 +2938,22 @@ msgctxt "raft_surface_speed label" msgid "Raft Top Print Speed" msgstr "Druckgeschwindigkeit Raft Oben" +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "" + msgctxt "raft_surface_line_spacing label" msgid "Raft Top Spacing" msgstr "Linienabstand der Raft-Oberfläche" +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "" + msgctxt "z_seam_type option random" msgid "Random" msgstr "Zufall" @@ -2852,10 +3006,22 @@ msgctxt "carve_multiple_volumes label" msgid "Remove Mesh Intersection" msgstr "Netzüberschneidung entfernen" +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "" + msgctxt "raft_remove_inside_corners label" msgid "Remove Raft Inside Corners" msgstr "Innenecken des Rafts entfernen" +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "" + msgctxt "carve_multiple_volumes description" msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." msgstr "Entfernt Bereiche, in denen mehrere Netze miteinander überlappen. Dies kann verwendet werden, wenn zusammengefügte Objekte aus zwei Materialien miteinander überlappen." @@ -2864,6 +3030,18 @@ msgctxt "remove_empty_first_layers description" msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." msgstr "Entfernen Sie die leeren Schichten unter der ersten gedruckten Schicht, sofern vorhanden. Die Deaktivierung dieser Einstellung kann zu leeren ersten Schichten führen, wenn die Einstellung der Slicing-Toleranz auf Exklusiv oder Mittel gesetzt wurde." +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "" + msgctxt "raft_remove_inside_corners description" msgid "Remove inside corners from the raft, causing the raft to become convex." msgstr "Entfernen der inneren Ecken des Floßes, so dass das Floß konvex wird." @@ -2884,6 +3062,10 @@ msgctxt "skin_outline_count description" msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." msgstr "Der äußerste Teil des oberen/unteren Musters wird durch eine Anzahl von konzentrischen Linien ersetzt. Die Verwendung von ein oder zwei Linien verbessert Dächer, die auf Füllmaterial beginnen." +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "" + msgctxt "support_tree_rest_preference label" msgid "Rest Preference" msgstr "Präferenz Auflagestelle" @@ -2956,6 +3138,10 @@ msgctxt "z_seam_corner label" msgid "Seam Corner Preference" msgstr "Präferenz Nahtkante" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Druckreihenfolge manuell einstellen" + msgctxt "draft_shield_height_limitation description" msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." msgstr "Hier wird die Höhe des Windschutzes eingestellt. Stellen Sie ein, ob der Windschutz für die gesamte Höhe des Modells oder für eine begrenzte Höhe gedruckt wird." @@ -3356,10 +3542,6 @@ msgctxt "support_interface_priority label" msgid "Support Interface Priority" msgstr "Schnittstellenpriorität der Stützstruktur" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Auflösung Stützstrukturschnittstelle" - msgctxt "speed_support_interface label" msgid "Support Interface Speed" msgstr "Stützstruktur-Schnittstellengeschwindigkeit" @@ -3712,6 +3894,10 @@ msgctxt "magic_fuzzy_skin_point_dist description" msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." msgstr "Der durchschnittliche Abstand zwischen den willkürlich auf jedes Liniensegment aufgebrachten Punkten. Beachten Sie, dass die Originalpunkte des Polygons verworfen werden, sodass eine hohe Glättung in einer Reduzierung der Auflösung resultiert. Dieser Wert muss größer sein als die Hälfte der Dicke der ungleichmäßigen Außenhaut." +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "" + msgctxt "machine_acceleration description" msgid "The default acceleration of print head movement." msgstr "Die voreingestellte Beschleunigung der Druckkopfbewegung." @@ -4188,6 +4374,10 @@ msgctxt "jerk_travel description" msgid "The maximum instantaneous velocity change with which travel moves are made." msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Fahrtbewegung ausgeführt wird." +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "" + msgctxt "machine_max_feedrate_x description" msgid "The maximum speed for the motor of the X-direction." msgstr "Die Maximaldrehzahl für den Motor der X-Richtung." @@ -4300,6 +4490,18 @@ msgctxt "raft_base_wall_count description" msgid "The number of contours to print around the linear pattern in the base layer of the raft." msgstr "Die Anzahl der Konturlinien, die um das Linienmodell in der untersten Schicht des Rafts gedruckt werden sollen." +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "" + msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "Die Anzahl der zusätzlichen Schichten, die die Außenhautkanten stützen." @@ -4688,6 +4890,10 @@ msgctxt "machine_gcode_flavor description" msgid "The type of g-code to be generated." msgstr "Der Typ des zu generierenden G-Codes." +msgctxt "material_type description" +msgid "The type of material used." +msgstr "" + msgctxt "coasting_volume description" msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." msgstr "Die Menge, die anderweitig abgesondert wird. Dieser Wert sollte im Allgemeinen in der Nähe vom Düsendurchmesser hoch drei liegen." @@ -4736,10 +4942,22 @@ msgctxt "bridge_wall_coast description" msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." msgstr "Damit wird der Abstand für das unmittelbare Coasting des Extruders vor Beginn einer Brückenwand gesteuert. Ein Coasting vor Brückenstart kann den Druck in der Düse reduzieren und eine flachere Brücke produzieren." +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "Diese Einstellung steuert, wie stark die Innenkanten des Raft-Umrisses gerundet werden. Die Innenkanten werden zu einem Halbkreis mit einem Radius entsprechend des hier definierten Werts gerundet. Diese Einstellung entfernt außerdem Löcher im Raft-Umriss, die kleiner als ein solcher Kreis sind." +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "retraction_count_max description" msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." msgstr "Diese Einstellung limitiert die Anzahl an Einzügen, die innerhalb des Fensters „Minimaler Extrusionsabstand“ auftritt. Weitere Einzüge innerhalb dieses Fensters werden ignoriert. Durch diese Funktion wird vermieden, dass das gleiche Stück Filament wiederholt eingezogen wird, da es in diesem Fall abgeflacht werden oder es zu Schleifen kommen kann." @@ -5100,10 +5318,6 @@ msgctxt "wall_overhang_angle description" msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." msgstr "Wände, die über diesen Winkel hinaus hängen, werden mithilfe der Einstellungen für Winkel für überhängende Wände gedruckt. Wenn der Wert 90 beträgt, werden keine Wände als überhängend behandelt. Überhänge, die von Stützstrukturen gestützt werden, werden ebenfalls nicht als Überhang behandelt." -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "Bei der Überprüfung, wo sich das Modell über und unter der Stützstruktur befindet, verwenden Sie Schritte der entsprechenden Höhe. Niedrigere Werte schneiden langsamer, während höhere Werte dazu führen können, dass die normale Stützstruktur an einigen Stellen gedruckt wird, wo sie als Stützstrukturschnittstelle gedruckt werden sollte." - msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." msgstr "Wenn diese Option aktiviert ist, werden die Werkzeugpfade für Drucker mit Planern für fließende Bewegungen korrigiert. Kleine Bewegungen, die von der allgemeinen Werkzeugpfadrichtung abweichen, werden geglättet, um Fließbewegungen zu verbessern." @@ -5496,42 +5710,74 @@ msgctxt "travel description" msgid "travel" msgstr "Bewegungen" -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Dauer der einzelnen Schritte bei der stufenweisen Änderung des Flusses" +#~ msgctxt "brim_inside_margin description" +#~ msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +#~ msgstr "Ist ein Teil vollständig von einem anderen Teil eingeschlossen, wird bei diesem möglicherweise ein äußeres Brim-Element erzeugt, das die Innenseite des anderen Teils berührt. Hiermit wird der Teil des Brim-Elements entfernt, der sich innerhalb dieses Abstands zu inneren Löchern befindet." + +#~ msgctxt "user_defined_print_order_enabled description" +#~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +#~ msgstr "Ermöglicht das Ordnen der Objektliste, um die Druckreihenfolge manuell festzulegen. Das erste Objekt aus der Liste wird zuerst gedruckt." + +#~ msgctxt "brim_inside_margin label" +#~ msgid "Brim Inside Avoid Margin" +#~ msgstr "Abstand zur Vermeidung des inneren Brims" + +#~ msgctxt "brim_outside_only label" +#~ msgid "Brim Only on Outside" +#~ msgstr "Brim nur an Außenseite" + +#~ msgctxt "gradual_flow_discretisation_step_size description" +#~ msgid "Duration of each step in the gradual flow change" +#~ msgstr "Dauer der einzelnen Schritte bei der stufenweisen Änderung des Flusses" + +#~ msgctxt "gradual_flow_enabled description" +#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +#~ msgstr "Aktivieren Sie stufenweise Flussänderungen. Wenn diese Option aktiviert ist, wird der Fluss stufenweise auf den Sollwert des Flusses erhöht bzw. verringert. Dies ist bei Druckern mit Bowden-Röhren sinnvoll, bei denen der Fluss nicht sofort geändert wird, sobald der Extrudermotor startet/stoppt." + +#~ msgctxt "reset_flow_duration description" +#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +#~ msgstr "Bei jeder Fahrtbewegung, die diesen Wert überschreitet, wird der Materialfluss auf den Sollwert des Flusses für den Weg zurückgesetzt" + +#~ msgctxt "gradual_flow_discretisation_step_size label" +#~ msgid "Gradual flow discretisation step size" +#~ msgstr "Schrittgröße der stufenweisen Fluss-Diskretisierung" + +#~ msgctxt "gradual_flow_enabled label" +#~ msgid "Gradual flow enabled" +#~ msgstr "Stufenweiser Fluss aktiviert" -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Aktivieren Sie stufenweise Flussänderungen. Wenn diese Option aktiviert ist, wird der Fluss stufenweise auf den Sollwert des Flusses erhöht bzw. verringert. Dies ist bei Druckern mit Bowden-Röhren sinnvoll, bei denen der Fluss nicht sofort geändert wird, sobald der Extrudermotor startet/stoppt." +#~ msgctxt "max_flow_acceleration label" +#~ msgid "Gradual flow max acceleration" +#~ msgstr "Maximale Beschleunigung bei stufenweisem Fluss" -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Bei jeder Fahrtbewegung, die diesen Wert überschreitet, wird der Materialfluss auf den Sollwert des Flusses für den Weg zurückgesetzt" +#~ msgctxt "layer_0_max_flow_acceleration label" +#~ msgid "Initial layer max flow acceleration" +#~ msgstr "Maximale Flussbeschleunigung bei erster Schicht" -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Schrittgröße der stufenweisen Fluss-Diskretisierung" +#~ msgctxt "layer_0_z_overlap description" +#~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +#~ msgstr "Die erste und die zweite Schicht des Modells sollen sich in der Z-Richtung überlappen, um das verlorene Filament in dem Luftspalt zu kompensieren. Alle Modelle über der ersten Modellschicht verschieben sich um diesen Wert nach unten." -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Stufenweiser Fluss aktiviert" +#~ msgctxt "max_flow_acceleration description" +#~ msgid "Maximum acceleration for gradual flow changes" +#~ msgstr "Maximale Beschleunigung für stufenweise Änderung des Flusses" -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Maximale Beschleunigung bei stufenweisem Fluss" +#~ msgctxt "layer_0_max_flow_acceleration description" +#~ msgid "Minimum speed for gradual flow changes for the first layer" +#~ msgstr "Mindestgeschwindigkeit für stufenweise Änderung des Flusses in der ersten Schicht" -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Maximale Flussbeschleunigung bei erster Schicht" +#~ msgctxt "brim_outside_only description" +#~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +#~ msgstr "Brim nur an der Außenseite des Modells drucken. Damit reduziert sich die Anzahl der Brims, die Sie später entfernen müssen, während die Druckbetthaftung nicht signifikant eingeschränkt wird." -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximale Beschleunigung für stufenweise Änderung des Flusses" +#~ msgctxt "reset_flow_duration label" +#~ msgid "Reset flow duration" +#~ msgstr "Flussdauer zurücksetzen" -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Mindestgeschwindigkeit für stufenweise Änderung des Flusses in der ersten Schicht" +#~ msgctxt "support_interface_skip_height label" +#~ msgid "Support Interface Resolution" +#~ msgstr "Auflösung Stützstrukturschnittstelle" -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Flussdauer zurücksetzen" +#~ msgctxt "support_interface_skip_height description" +#~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +#~ msgstr "Bei der Überprüfung, wo sich das Modell über und unter der Stützstruktur befindet, verwenden Sie Schritte der entsprechenden Höhe. Niedrigere Werte schneiden langsamer, während höhere Werte dazu führen können, dass die normale Stützstruktur an einigen Stellen gedruckt wird, wo sie als Stützstrukturschnittstelle gedruckt werden sollte." diff --git a/resources/i18n/es_ES/cura.po b/resources/i18n/es_ES/cura.po index aa4c7274414..d1331d9c060 100644 --- a/resources/i18n/es_ES/cura.po +++ b/resources/i18n/es_ES/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-31 19:13+0100\n" +"POT-Creation-Date: 2024-03-11 12:52+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -117,6 +117,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "&Guardar proyecto..." +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "" + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "A&justes" @@ -261,6 +265,10 @@ msgid_plural "A cloud connection is not available for some printers" msgstr[0] "La conexión a la nube no está disponible para una impresora" msgstr[1] "La conexión a la nube no está disponible para algunas impresoras" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "" + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "Todavía hay una impresión en curso. Cura no puede iniciar otra impresión a través de USB hasta que se haya completado la impresión anterior." @@ -495,10 +503,18 @@ msgctxt "@label" msgid "Anonymous" msgstr "Anónimo" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "Entorno de la aplicación" +msgctxt "@title:column" +msgid "Applies on" +msgstr "" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "Aplicar compensaciones del extrusor a GCode" @@ -685,6 +701,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "Calculado" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "Renderizado de cámara:" @@ -1415,6 +1435,10 @@ msgctxt "@label" msgid "Draft" msgstr "Boceto" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "" + msgctxt "@action:button" msgid "Duplicate" msgstr "Duplicado" @@ -1541,6 +1565,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Exportar selección..." +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "" + msgctxt "@button" msgid "Export material archive" msgstr "Exportar archivo de material" @@ -1574,10 +1602,23 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "GCode final del extrusor" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "GCode inicial del extrusor" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "" + +#, python-brace-format +msgctxt "@label" +msgid "Extruder {0}" +msgstr "" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Extrusores deshabilitados" @@ -1644,6 +1685,11 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Se ha producido un error al guardar el archivo de material" +#, python-brace-format +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "" + msgctxt "@label:category menu label" msgid "Favorites" msgstr "Favoritos" @@ -1785,6 +1831,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Forzar modo de compatibilidad de la vista de capas (necesario reiniciar)" +msgid "FreeCAD trackpad" +msgstr "" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Vista frontal" @@ -1873,6 +1922,10 @@ msgctxt "@action" msgid "Get started" msgstr "Empezar" +msgctxt "@label" +msgid "Global" +msgstr "" + msgctxt "@title:tab" msgid "Global Settings" msgstr "Ajustes globales" @@ -1922,6 +1975,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "Ocultar todas las impresoras conectadas" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "Ocultar este ajuste" @@ -1998,6 +2055,10 @@ msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "Para utilizar el paquete, deberá reiniciar Cura" +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "" + msgctxt "@label" msgid "Infill" msgstr "Relleno" @@ -2701,6 +2762,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "No se han encontrado resultados con el filtro actual" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "" + msgctxt "@label" msgid "No time estimation available" msgstr "Ningún cálculo de tiempo disponible" @@ -2802,6 +2867,10 @@ msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Solo se puede cargar un archivo GCode a la vez. Se omitió la importación de {0}" +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "" + msgctxt "@action:button" msgid "Open" msgstr "Abrir" @@ -2830,10 +2899,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "Abrir archivo de proyecto" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "" + msgctxt "@action:label" msgid "Open With" msgstr "Abrir con" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "" + msgctxt "@action:button" msgid "Open as project" msgstr "Abrir como proyecto" @@ -3050,6 +3131,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "Inicie sesión para obtener complementos y materiales verificados para UltiMaker Cura Enterprise" +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "" + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "Sincronice los perfiles de material con sus impresoras antes de comenzar a imprimir." @@ -3146,6 +3231,14 @@ msgctxt "@action:button" msgid "Print" msgstr "Imprimir" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Imprimir después" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Imprimir antes" + msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -3452,8 +3545,8 @@ msgid "Provides support for reading model files." msgstr "Proporciona asistencia para leer archivos 3D." msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Proporciona asistencia para escribir archivos 3MF." +msgid "Provides support for writing 3MF and UCP files." +msgstr "" msgctxt "description" msgid "Provides support for writing MakerBot Format Packages." @@ -3697,8 +3790,12 @@ msgid "Save Cura project" msgstr "Guardar el proyecto de Cura" msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "Guardar el proyecto de Cura e imprimir archivo" +msgid "Save Cura project and .makerbot print file" +msgstr "" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" +msgstr "" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3724,6 +3821,10 @@ msgctxt "@button" msgid "Save new profile" msgstr "Guardar nuevo perfil" +msgctxt "@action:button" +msgid "Save project" +msgstr "" + msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "Guarde el archivo .umm en una memoria USB." @@ -3827,6 +3928,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "Enviar informe de errores a UltiMaker" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "" + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "" + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "" + msgctxt "@action:button" msgid "Send report" msgstr "Enviar informe" @@ -3879,6 +3992,10 @@ msgctxt "@title:tab" msgid "Settings" msgstr "Ajustes" +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "La configuración se ha cambiado para que coincida con los extrusores disponibles en este momento:" @@ -3947,6 +4064,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "¿Debería abrir los archivos del escritorio o las aplicaciones externas en la misma instancia de Cura?" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "" + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "¿Se debe limpiar la placa de impresión antes de cargar un nuevo modelo en una única instancia de Cura?" @@ -4003,6 +4124,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Mostrar informe de errores detallado" +msgctxt "@action:button" +msgid "Show settings" +msgstr "" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Mostrar un cuadro de diálogo de resumen al guardar el proyecto" @@ -4079,10 +4204,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "Error en el corte" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "Se ha producido un error inesperado al realizar el corte o slicing. Le rogamos que informe sobre este error en nuestro rastreador de problemas." - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Segmentando..." @@ -4091,6 +4212,10 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Suavizado" +msgctxt "@label" +msgid "Solid" +msgstr "" + msgctxt "name" msgid "Solid View" msgstr "Vista de sólidos" @@ -4216,10 +4341,26 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Perfil {0} importado correctamente." +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Resumen: proyecto de Cura" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "" + msgctxt "@label" msgid "Support" msgstr "Soporte" @@ -4599,6 +4740,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "Esta configuración no se encuentra disponible porque %1 es un perfil desconocido. Visite %2 para descargar el perfil de materiales correcto." +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "Este es un archivo de proyecto Cura. ¿Le gustaría abrirlo como un proyecto o importar sus modelos?" @@ -4688,6 +4833,14 @@ msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Este valor se resuelve a partir de valores en conflicto específicos del extrusor:" +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "" + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "" + msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" msgstr "Esta versión no está destinada al uso en producción. Si tiene algún problema, notifíquelo en nuestra página de GitHub, mencionando la versión completa {self.getVersion()}" @@ -4919,6 +5072,11 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "No se puede iniciar un nuevo proceso de inicio de sesión. Compruebe si todavía está activo otro intento de inicio de sesión." +#, python-brace-format +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "" + msgctxt "@label:status" msgid "Unavailable" msgstr "No disponible" @@ -4931,14 +5089,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Desagrupar modelos" -msgctxt "@action:inmenu menubar:edit" -msgid "Print Before" -msgstr "Imprimir antes" - -msgctxt "@action:inmenu menubar:edit" -msgid "Print After" -msgstr "Imprimir después" - msgctxt "@button" msgid "Uninstall" msgstr "Desinstalar" @@ -4947,6 +5097,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Unidad" +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "" + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "Configuración del sistema de construcción universal" @@ -5136,6 +5290,10 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." msgstr "Actualiza las configuraciones de Cura 5.4 a Cura 5.5." +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "" + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Cargar firmware personalizado" @@ -5168,6 +5326,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "Biblioteca de utilidades, incluida la generación de Voronoi" +msgctxt "@title:column" +msgid "Value" +msgstr "" + msgctxt "name" msgid "Version Upgrade 2.1 to 2.2" msgstr "Actualización de la versión 2.1 a la 2.2" @@ -5272,6 +5434,10 @@ msgctxt "name" msgid "Version Upgrade 5.4 to 5.5" msgstr "Actualización de versión 5.4 a 5.5" +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Ver impresoras en Digital Factory" @@ -5349,6 +5515,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "¿Qué impresora le gustaría configurar?" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "¿Qué tipo de renderizado de cámara debería usarse?" @@ -5563,6 +5733,10 @@ msgctxt "@label" msgid "mm" msgstr "mm" +msgctxt "@label" +msgid "s" +msgstr "" + msgctxt "@info:status" msgid "today" msgstr "hoy" @@ -5590,3 +5764,15 @@ msgstr "Error al descargar los complementos {}" #~ msgid "Provides support for exporting Cura profiles." #~ msgstr "Ofrece asistencia para exportar perfiles de Cura." + +#~ msgctxt "description" +#~ msgid "Provides support for writing 3MF files." +#~ msgstr "Proporciona asistencia para escribir archivos 3MF." + +#~ msgctxt "@option" +#~ msgid "Save Cura project and print file" +#~ msgstr "Guardar el proyecto de Cura e imprimir archivo" + +#~ msgctxt "@message" +#~ msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +#~ msgstr "Se ha producido un error inesperado al realizar el corte o slicing. Le rogamos que informe sobre este error en nuestro rastreador de problemas." diff --git a/resources/i18n/es_ES/fdmextruder.def.json.po b/resources/i18n/es_ES/fdmextruder.def.json.po index ed064fa9bea..0631875e593 100644 --- a/resources/i18n/es_ES/fdmextruder.def.json.po +++ b/resources/i18n/es_ES/fdmextruder.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-06-08 16:32+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -40,6 +40,10 @@ msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "GCode final del extrusor" +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "" + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Posición final absoluta del extrusor" @@ -72,6 +76,10 @@ msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "GCode inicial del extrusor" +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "" + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Posición de inicio absoluta del extrusor" @@ -156,6 +164,14 @@ msgctxt "machine_extruder_cooling_fan_number description" msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." msgstr "Número del ventilador de refrigeración de impresión asociado al extrusor. Modifique el valor predeterminado 0 solo cuando disponga de un ventilador de refrigeración de impresión diferente para cada extrusor." +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "" + msgctxt "machine_extruder_end_pos_x description" msgid "The x-coordinate of the ending position when turning the extruder off." msgstr "Coordenada X de la posición de fin cuando se apaga el extrusor." diff --git a/resources/i18n/es_ES/fdmprinter.def.json.po b/resources/i18n/es_ES/fdmprinter.def.json.po index 6811ca05a87..e2a3e229f60 100644 --- a/resources/i18n/es_ES/fdmprinter.def.json.po +++ b/resources/i18n/es_ES/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,6 +12,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "" + +msgctxt "brim_inside_margin description" +msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." +msgstr "" + msgctxt "ironing_inset description" msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." msgstr "Distancia que debe guardarse desde el borde del modelo. Si se alisa hasta el borde de la malla, puede quedar un borde irregular." @@ -56,10 +64,6 @@ msgctxt "machine_disallowed_areas description" msgid "A list of polygons with areas the print head is not allowed to enter." msgstr "Lista de polígonos con áreas que el cabezal de impresión no tiene permitido introducir." -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "Una pieza completamente encerrada dentro de otra puede generar un borde exterior que toque el interior de la pieza exterior. Esto elimina cualquier borde dentro de esta distancia de los orificios internos." - msgctxt "support_tree_branch_reach_limit description" msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " msgstr "Una recomendación de la distancia a la que pueden situarse las ramas de los puntos que sostienen. Las ramas pueden infringir este valor para llegar a su destino (placa de impresión o una pieza plana del modelo). Reducir este valor hará que el soporte sea más resistente, pero aumentará la cantidad de ramas (y, con ello, el uso de material y el tiempo de impresión)" @@ -152,6 +156,10 @@ msgctxt "resolution description" msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" msgstr "Todos los ajustes que influyen en la resolución de la impresión. Estos ajustes tienen una gran repercusión en la calidad (y en el tiempo de impresión)." +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "" + msgctxt "alternate_extra_perimeter label" msgid "Alternate Extra Wall" msgstr "Alternar pared adicional" @@ -400,21 +408,21 @@ msgctxt "adhesion_type option brim" msgid "Brim" msgstr "Borde" +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "" + msgctxt "brim_gap label" msgid "Brim Distance" msgstr "Distancia del borde" -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "Margen de distancia del borde interior" - msgctxt "brim_line_count label" msgid "Brim Line Count" msgstr "Recuento de líneas de borde" -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Borde solo en el exterior" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "" msgctxt "brim_replaces_support label" msgid "Brim Replaces Support" @@ -456,6 +464,14 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "Temperatura de volumen de impresión" +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "" + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "" + msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." msgstr "Al habilitar esta configuración, tu torre de cebado tendrá un borde, incluso si el modelo no lo tiene. Si quieres una base más robusta para una torre alta, puedes aumentar la altura de la base." @@ -868,6 +884,10 @@ msgctxt "cool_fan_enabled label" msgid "Enable Print Cooling" msgstr "Activar refrigeración de impresión" +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "" + msgctxt "retraction_enable label" msgid "Enable Retraction" msgstr "Habilitar la retracción" @@ -900,6 +920,10 @@ msgctxt "ooze_shield_enabled description" msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." msgstr "Activar la placa de rezumado exterior. Esto crea un perímetro alrededor del modelo que suele limpiar una segunda tobera si se encuentra a la misma altura que la primera." +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "" + msgctxt "small_skin_on_surface description" msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." msgstr "Permite que las zonas pequeñas (hasta \"Ancho superior/inferior pequeño\") de la capa más superficial (expuestas al aire) se rellenen con paredes en lugar de con el patrón predeterminado." @@ -932,6 +956,10 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "Aplica la impresión de un borde alrededor del modelo, aunque en esa posición debiera estar el soporte. Sustituye algunas áreas de la primera capa de soporte por áreas de borde." +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "" + msgctxt "support_type option everywhere" msgid "Everywhere" msgstr "En todos sitios" @@ -1036,6 +1064,10 @@ msgctxt "speed_equalize_flow_width_factor label" msgid "Flow Equalization Ratio" msgstr "Proporción de ecualización de flujo" +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "" + msgctxt "flow_rate_extrusion_offset_factor label" msgid "Flow Rate Compensation Factor" msgstr "Factor de compensación del caudal" @@ -1048,6 +1080,10 @@ msgctxt "material_flow_temp_graph label" msgid "Flow Temperature Graph" msgstr "Gráfico de flujo y temperatura" +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "" + msgctxt "material_flow_layer_0 description" msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." msgstr "Compensación de flujo de la primera capa: la cantidad de material extruido de la capa inicial se multiplica por este valor." @@ -1440,10 +1476,22 @@ msgctxt "wall_transition_filter_distance description" msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." msgstr "Si planea pasar de un lado a otro entre diferentes números de pared en rápida sucesión, no realice ninguna transición. Elimine las transiciones si están más cerca que esta distancia." +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "Si la balsa está habilitada, esta es el área adicional de la balsa alrededor del modelo que también tiene una balsa. El aumento de este margen creará una balsa más resistente mientras que usará más material y dejará menos área para la impresión." +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "meshfix_union_all description" msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." msgstr "Ignora la geometría interna que surge de los volúmenes de superposición dentro de una malla e imprime los volúmenes como si fuera uno. Esto puede hacer que desaparezcan cavidades internas que no se hayan previsto." @@ -1672,6 +1720,10 @@ msgctxt "wall_0_inset description" msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." msgstr "Entrante aplicado a la trayectoria de la pared exterior. Si la pared exterior es más pequeña que la tobera y se imprime a continuación de las paredes interiores, utilice este valor de desplazamiento para hacer que el agujero de la tobera se superponga a las paredes interiores del modelo en lugar de a las exteriores." +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "" + msgctxt "inset_direction option inside_out" msgid "Inside To Outside" msgstr "Del interior al exterior" @@ -1684,6 +1736,10 @@ msgctxt "support_interface_priority option interface_area_overwrite_support_area msgid "Interface preferred" msgstr "Interfaz preferida" +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "" + msgctxt "interlocking_beam_layer_count label" msgid "Interlocking Beam Layer Count" msgstr "Recuento de capas de haz entrelazado" @@ -1824,6 +1880,30 @@ msgctxt "support_tree_limit_branch_reach description" msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" msgstr "Limite la distancia que debe recorrer cada rama desde el punto que soporta. Esto puede hacer que el soporte sea más resistente, pero aumentará la cantidad de ramas (y, con ello, el uso de material y el tiempo de impresión)" +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "" + msgctxt "cutting_mesh description" msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." msgstr "Limite el volumen de esta malla a lo que está dentro de otras mallas. Puede usar esto para hacer que determinadas áreas de una malla se impriman con ajustes diferentes y con un extrusor totalmente diferente." @@ -1921,8 +2001,10 @@ msgid "Make the extruder prime position absolute rather than relative to the las msgstr "La posición de preparación del extrusor se considera absoluta, en lugar de relativa a la última ubicación conocida del cabezal." msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "La superposición entre la primera y segunda capa del modelo para compensar la pérdida de material en el hueco de aire. Todas las capas por encima de la primera capa se desplazan hacia abajo por esta cantidad." +msgid "" +"Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" +"It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "" msgctxt "meshfix description" msgid "Make the meshes more suited for 3D printing." @@ -1948,10 +2030,18 @@ msgctxt "material label" msgid "Material" msgstr "Material" +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "" + msgctxt "material_guid label" msgid "Material GUID" msgstr "GUID del material" +msgctxt "material_type label" +msgid "Material Type" +msgstr "" + msgctxt "max_extrusion_before_wipe label" msgid "Material Volume Between Wipes" msgstr "Volumen de material entre limpiezas" @@ -2228,6 +2318,10 @@ msgctxt "ironing_monotonic label" msgid "Monotonic Ironing Order" msgstr "Orden de planchado monotónico" +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "" + msgctxt "roofing_monotonic label" msgid "Monotonic Top Surface Order" msgstr "Orden monotónica de la superficie superior" @@ -2268,6 +2362,10 @@ msgctxt "magic_mesh_surface_mode option normal" msgid "Normal" msgstr "Normal" +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "" + msgctxt "support_structure option normal" msgid "Normal" msgstr "Normal" @@ -2400,10 +2498,6 @@ msgctxt "ironing_only_highest_layer description" msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." msgstr "Planchar únicamente la última capa de la malla. De este modo se ahorra tiempo si las capas inferiores no requieren un acabado superficial suave." -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Imprimir solo el borde en el exterior del modelo. Esto reduce el número de bordes que deberá retirar después sin que la adherencia a la plataforma se vea muy afectada." - msgctxt "ooze_shield_angle label" msgid "Ooze Shield Angle" msgstr "Ángulo de la placa de rezumado" @@ -2464,6 +2558,10 @@ msgctxt "group_outer_walls description" msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." msgstr "Las paredes exteriores de diferentes islas en la misma capa se imprimen en secuencia. Cuando está habilitado, la cantidad de cambios de flujo se limita porque las paredes se imprimen de a una a la vez; cuando está deshabilitado, se reduce el número de desplazamientos entre islas porque las paredes en las mismas islas se agrupan." +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "" + msgctxt "inset_direction option outside_in" msgid "Outside To Inside" msgstr "Del exterior al interior" @@ -2544,6 +2642,10 @@ msgctxt "prime_tower_line_width label" msgid "Prime Tower Line Width" msgstr "Ancho de línea de la torre auxiliar" +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "" + msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" msgstr "Volumen mínimo de la torre auxiliar" @@ -2560,6 +2662,10 @@ msgctxt "speed_prime_tower label" msgid "Prime Tower Speed" msgstr "Velocidad de la torre auxiliar" +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "" + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "Posición de la torre auxiliar sobre el eje X" @@ -2576,18 +2682,14 @@ msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Impulso de impresión" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "" + msgctxt "print_sequence label" msgid "Print Sequence" msgstr "Secuencia de impresión" -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "Establecer secuencia de impresión manualmente" - -msgctxt "user_defined_print_order_enabled description" -msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." -msgstr "Permite ordenar la lista de objetos para establecer la secuencia de impresión manualmente. El primer objeto de la lista se imprimirá primero." - msgctxt "speed_print label" msgid "Print Speed" msgstr "Velocidad de impresión" @@ -2596,6 +2698,10 @@ msgctxt "fill_outline_gaps label" msgid "Print Thin Walls" msgstr "Imprimir paredes finas" +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "" + msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "Imprimir una torre junto a la impresión que sirve para preparar el material tras cada cambio de tobera." @@ -2616,6 +2722,10 @@ msgctxt "fill_outline_gaps description" msgid "Print pieces of the model which are horizontally thinner than the nozzle size." msgstr "Imprime las piezas del modelo que son horizontalmente más finas que el tamaño de la tobera." +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "" + msgctxt "bridge_skin_speed_2 description" msgid "Print speed to use when printing the second bridge skin layer." msgstr "Velocidad de impresión que se utiliza para imprimir la segunda capa del forro del puente." @@ -2624,6 +2734,14 @@ msgctxt "bridge_skin_speed_3 description" msgid "Print speed to use when printing the third bridge skin layer." msgstr "Velocidad de impresión que se utiliza para imprimir la tercera capa del forro del puente." +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "" + msgctxt "infill_before_walls description" msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." msgstr "Imprime el relleno antes de imprimir las paredes. Si se imprimen primero las paredes, estas serán más precisas, pero los voladizos se imprimirán peor. Si se imprime primero el relleno las paredes serán más resistentes, pero el patrón de relleno a veces se nota a través de la superficie." @@ -2668,6 +2786,10 @@ msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "Cámara de aire de la balsa" +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "" + msgctxt "raft_base_extruder_nr label" msgid "Raft Base Extruder" msgstr "Extrusor base de la balsa" @@ -2696,6 +2818,10 @@ msgctxt "raft_base_speed label" msgid "Raft Base Print Speed" msgstr "Velocidad de impresión de la base de la balsa" +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "" + msgctxt "raft_base_thickness label" msgid "Raft Base Thickness" msgstr "Grosor de la base de la balsa" @@ -2712,6 +2838,10 @@ msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" msgstr "Velocidad del ventilador de la balsa" +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "" + msgctxt "raft_interface_extruder_nr label" msgid "Raft Middle Extruder" msgstr "Extrusor medio de la balsa" @@ -2740,6 +2870,10 @@ msgctxt "raft_interface_speed label" msgid "Raft Middle Print Speed" msgstr "Velocidad de impresión de la balsa intermedia" +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "" + msgctxt "raft_interface_line_spacing label" msgid "Raft Middle Spacing" msgstr "Espaciado intermedio de la balsa" @@ -2748,6 +2882,10 @@ msgctxt "raft_interface_thickness label" msgid "Raft Middle Thickness" msgstr "Grosor intermedio de la balsa" +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "" + msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" msgstr "Aceleración de impresión de la balsa" @@ -2764,6 +2902,10 @@ msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "Suavizado de la balsa" +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "" + msgctxt "raft_surface_extruder_nr label" msgid "Raft Top Extruder" msgstr "Extrusor superior de la balsa" @@ -2796,10 +2938,22 @@ msgctxt "raft_surface_speed label" msgid "Raft Top Print Speed" msgstr "Velocidad de impresión de la balsa superior" +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "" + msgctxt "raft_surface_line_spacing label" msgid "Raft Top Spacing" msgstr "Espaciado superior de la balsa" +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "" + msgctxt "z_seam_type option random" msgid "Random" msgstr "Aleatoria" @@ -2852,10 +3006,22 @@ msgctxt "carve_multiple_volumes label" msgid "Remove Mesh Intersection" msgstr "Eliminar el cruce de mallas" +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "" + msgctxt "raft_remove_inside_corners label" msgid "Remove Raft Inside Corners" msgstr "Quitar las esquinas internas de la balsa" +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "" + msgctxt "carve_multiple_volumes description" msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." msgstr "Eliminar las zonas en las que se superponen varias mallas. Puede utilizarse esta opción cuando se superponen objetos combinados de dos materiales." @@ -2864,6 +3030,18 @@ msgctxt "remove_empty_first_layers description" msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." msgstr "Eliminar (si las hubiera) las capas vacías por debajo de la primera capa impresa. Deshabilitar este ajuste puede hacer que aparezcan primeras capas vacías si el ajuste de tolerancia de segmentación está establecido en Exclusiva o Medio." +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "" + msgctxt "raft_remove_inside_corners description" msgid "Remove inside corners from the raft, causing the raft to become convex." msgstr "Le permite eliminar las esquinas internas de la balsa, haciéndola convexa." @@ -2884,6 +3062,10 @@ msgctxt "skin_outline_count description" msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." msgstr "Reemplaza la parte más externa del patrón superior/inferior con un número de líneas concéntricas. Mediante el uso de una o dos líneas mejora los techos que comienzan en el material de relleno." +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "" + msgctxt "support_tree_rest_preference label" msgid "Rest Preference" msgstr "Preferencia de apoyo" @@ -2956,6 +3138,10 @@ msgctxt "z_seam_corner label" msgid "Seam Corner Preference" msgstr "Preferencia de esquina de costura" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Establecer secuencia de impresión manualmente" + msgctxt "draft_shield_height_limitation description" msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." msgstr "Establece la altura del parabrisas. Seleccione esta opción para imprimir el parabrisas a la altura completa del modelo o a una altura limitada." @@ -3356,10 +3542,6 @@ msgctxt "support_interface_priority label" msgid "Support Interface Priority" msgstr "Prioridad de la interfaz de soporte" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Resolución de la interfaz de soporte" - msgctxt "speed_support_interface label" msgid "Support Interface Speed" msgstr "Velocidad de interfaz del soporte" @@ -3712,6 +3894,10 @@ msgctxt "magic_fuzzy_skin_point_dist description" msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." msgstr "Distancia media entre los puntos aleatorios introducidos en cada segmento de línea. Tenga en cuenta que los puntos originales del polígono se descartan, así que un suavizado alto produce una reducción de la resolución. Este valor debe ser mayor que la mitad del grosor del forro difuso." +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "" + msgctxt "machine_acceleration description" msgid "The default acceleration of print head movement." msgstr "Aceleración predeterminada del movimiento del cabezal de impresión." @@ -4188,6 +4374,10 @@ msgctxt "jerk_travel description" msgid "The maximum instantaneous velocity change with which travel moves are made." msgstr "Cambio en la velocidad instantánea máxima a la que realizan los movimientos de desplazamiento." +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "" + msgctxt "machine_max_feedrate_x description" msgid "The maximum speed for the motor of the X-direction." msgstr "Velocidad máxima del motor de la dirección X." @@ -4300,6 +4490,18 @@ msgctxt "raft_base_wall_count description" msgid "The number of contours to print around the linear pattern in the base layer of the raft." msgstr "El número de contornos que se imprimirán alrededor del patrón lineal en la capa base de la balsa." +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "" + msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "El número de capas de relleno que soportan los bordes del forro." @@ -4688,6 +4890,10 @@ msgctxt "machine_gcode_flavor description" msgid "The type of g-code to be generated." msgstr "Tipo de GCode que se va a generar." +msgctxt "material_type description" +msgid "The type of material used." +msgstr "" + msgctxt "coasting_volume description" msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." msgstr "Volumen que de otro modo rezumaría. Este valor generalmente debería ser próximo al cubicaje del diámetro de la tobera." @@ -4736,10 +4942,22 @@ msgctxt "bridge_wall_coast description" msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." msgstr "Controla la distancia del depósito por inercia del extrusor justo antes de empezar un puente. Un depósito por inercia antes del inicio del puente puede reducir la presión en la tobera y dar como resultado un puente más horizontal." +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "Este ajuste controla la medida en que se redondean las esquinas interiores en el contorno de la balsa. Las esquinas hacia el interior se redondean en semicírculo con un radio equivalente al valor aquí indicado. Este ajuste también elimina los orificios del contorno de la balsa que sean más pequeños que dicho círculo." +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "retraction_count_max description" msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." msgstr "Este ajuste limita el número de retracciones que ocurren dentro de la ventana de distancia mínima de extrusión. Dentro de esta ventana se ignorarán las demás retracciones. Esto evita retraer repetidamente el mismo trozo de filamento, ya que esto podría aplanar el filamento y causar problemas de desmenuzamiento." @@ -5100,10 +5318,6 @@ msgctxt "wall_overhang_angle description" msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." msgstr "Las paredes con un ángulo de voladizo mayor que este se imprimirán con los ajustes de voladizo de pared. Cuando el valor sea 90, no se aplicará la condición de voladizo a la pared. El voladizo que se apoya en el soporte tampoco se tratará como voladizo." -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "A la hora de comprobar si existe un modelo por encima y por debajo del soporte, tome las medidas de la altura determinada. Reducir los valores hará que se segmente más despacio, mientras que valores más altos pueden provocar que el soporte normal se imprima en lugares en los que debería haber una interfaz de soporte." - msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." msgstr "Cuando está activado, las trayectorias de las herramientas se corrigen para impresoras con planificadores de movimiento suave. Los pequeños movimientos que se desvían de la dirección general de la trayectoria de la herramienta se suavizan para mejorar los movimientos fluidos." @@ -5496,42 +5710,74 @@ msgctxt "travel description" msgid "travel" msgstr "desplazamiento" -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duración de cada paso en el cambio de flujo gradual" +#~ msgctxt "brim_inside_margin description" +#~ msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +#~ msgstr "Una pieza completamente encerrada dentro de otra puede generar un borde exterior que toque el interior de la pieza exterior. Esto elimina cualquier borde dentro de esta distancia de los orificios internos." + +#~ msgctxt "user_defined_print_order_enabled description" +#~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +#~ msgstr "Permite ordenar la lista de objetos para establecer la secuencia de impresión manualmente. El primer objeto de la lista se imprimirá primero." + +#~ msgctxt "brim_inside_margin label" +#~ msgid "Brim Inside Avoid Margin" +#~ msgstr "Margen de distancia del borde interior" + +#~ msgctxt "brim_outside_only label" +#~ msgid "Brim Only on Outside" +#~ msgstr "Borde solo en el exterior" + +#~ msgctxt "gradual_flow_discretisation_step_size description" +#~ msgid "Duration of each step in the gradual flow change" +#~ msgstr "Duración de cada paso en el cambio de flujo gradual" + +#~ msgctxt "gradual_flow_enabled description" +#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +#~ msgstr "Activar cambios graduales de flujo. Cuando está activado, el flujo aumenta/disminuye gradualmente hasta el flujo objetivo. Esto es útil para impresoras con un tubo bowden donde el flujo no cambia inmediatamente cuando el motor del extrusor se enciende/apaga." + +#~ msgctxt "reset_flow_duration description" +#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +#~ msgstr "Para cualquier movimiento de desplazamiento superior a este valor, el flujo de material se restablece con el flujo objetivo de las trayectorias" + +#~ msgctxt "gradual_flow_discretisation_step_size label" +#~ msgid "Gradual flow discretisation step size" +#~ msgstr "Tamaño del paso de discretización del flujo gradual" + +#~ msgctxt "gradual_flow_enabled label" +#~ msgid "Gradual flow enabled" +#~ msgstr "Flujo gradual activado" -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Activar cambios graduales de flujo. Cuando está activado, el flujo aumenta/disminuye gradualmente hasta el flujo objetivo. Esto es útil para impresoras con un tubo bowden donde el flujo no cambia inmediatamente cuando el motor del extrusor se enciende/apaga." +#~ msgctxt "max_flow_acceleration label" +#~ msgid "Gradual flow max acceleration" +#~ msgstr "Aceleración máxima del flujo gradual" -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Para cualquier movimiento de desplazamiento superior a este valor, el flujo de material se restablece con el flujo objetivo de las trayectorias" +#~ msgctxt "layer_0_max_flow_acceleration label" +#~ msgid "Initial layer max flow acceleration" +#~ msgstr "Aceleración máxima del flujo de la capa inicial" -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Tamaño del paso de discretización del flujo gradual" +#~ msgctxt "layer_0_z_overlap description" +#~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +#~ msgstr "La superposición entre la primera y segunda capa del modelo para compensar la pérdida de material en el hueco de aire. Todas las capas por encima de la primera capa se desplazan hacia abajo por esta cantidad." -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Flujo gradual activado" +#~ msgctxt "max_flow_acceleration description" +#~ msgid "Maximum acceleration for gradual flow changes" +#~ msgstr "Aceleración máxima para los cambios de flujo graduales" -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Aceleración máxima del flujo gradual" +#~ msgctxt "layer_0_max_flow_acceleration description" +#~ msgid "Minimum speed for gradual flow changes for the first layer" +#~ msgstr "Velocidad mínima para los cambios de flujo graduales de la primera capa" -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Aceleración máxima del flujo de la capa inicial" +#~ msgctxt "brim_outside_only description" +#~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +#~ msgstr "Imprimir solo el borde en el exterior del modelo. Esto reduce el número de bordes que deberá retirar después sin que la adherencia a la plataforma se vea muy afectada." -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Aceleración máxima para los cambios de flujo graduales" +#~ msgctxt "reset_flow_duration label" +#~ msgid "Reset flow duration" +#~ msgstr "Restablecer duración del flujo" -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Velocidad mínima para los cambios de flujo graduales de la primera capa" +#~ msgctxt "support_interface_skip_height label" +#~ msgid "Support Interface Resolution" +#~ msgstr "Resolución de la interfaz de soporte" -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Restablecer duración del flujo" +#~ msgctxt "support_interface_skip_height description" +#~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +#~ msgstr "A la hora de comprobar si existe un modelo por encima y por debajo del soporte, tome las medidas de la altura determinada. Reducir los valores hará que se segmente más despacio, mientras que valores más altos pueden provocar que el soporte normal se imprima en lugares en los que debería haber una interfaz de soporte." diff --git a/resources/i18n/fdmextruder.def.json.pot b/resources/i18n/fdmextruder.def.json.pot index 8ec91cc9dc5..a5ad7842c97 100644 --- a/resources/i18n/fdmextruder.def.json.pot +++ b/resources/i18n/fdmextruder.def.json.pot @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-06-08 16:32+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -56,6 +56,14 @@ msgctxt "machine_extruder_end_code description" msgid "End g-code to execute when switching away from this extruder." msgstr "" +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "" + +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "" + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "" @@ -88,6 +96,14 @@ msgctxt "machine_extruder_start_code description" msgid "Start g-code to execute when switching to this extruder." msgstr "" +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "" + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "" diff --git a/resources/i18n/fdmprinter.def.json.pot b/resources/i18n/fdmprinter.def.json.pot index 4e858de0a7e..b1d0e5bc02c 100644 --- a/resources/i18n/fdmprinter.def.json.pot +++ b/resources/i18n/fdmprinter.def.json.pot @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -64,6 +64,22 @@ msgctxt "material_guid description" msgid "GUID of the material. This is set automatically." msgstr "" +msgctxt "material_type label" +msgid "Material Type" +msgstr "" + +msgctxt "material_type description" +msgid "The type of material used." +msgstr "" + +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "" + +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "" + msgctxt "material_diameter label" msgid "Diameter" msgstr "" @@ -3996,20 +4012,32 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "" -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "" + +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "" + +msgctxt "brim_location option outside" +msgid "Outside Only" msgstr "" -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "" + +msgctxt "brim_location option everywhere" +msgid "Everywhere" msgstr "" msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" +msgid "Brim Avoid Margin" msgstr "" msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." msgstr "" msgctxt "brim_smart_ordering label" @@ -4028,6 +4056,62 @@ msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "" +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "" + +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "" + +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "" + +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "" + +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "" + +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "" + +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "" + msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "" @@ -4036,6 +4120,30 @@ msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "" +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "" + +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "" + +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "" @@ -4049,39 +4157,31 @@ msgid "Initial Layer Z Overlap" msgstr "" msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "" - -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" msgstr "" -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "" - -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" msgstr "" -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." msgstr "" -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" msgstr "" -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." msgstr "" -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" msgstr "" -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." msgstr "" msgctxt "raft_interface_layers label" @@ -4116,28 +4216,76 @@ msgctxt "raft_interface_line_spacing description" msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." msgstr "" -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" msgstr "" -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." msgstr "" -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" msgstr "" -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." msgstr "" -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" msgstr "" -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "" + +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "" + +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "" + +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "" + +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "" + +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "" + +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "" + +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "" + +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "" + +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." msgstr "" msgctxt "raft_speed label" @@ -4148,12 +4296,12 @@ msgctxt "raft_speed description" msgid "The speed at which the raft is printed." msgstr "" -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" msgstr "" -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." msgstr "" msgctxt "raft_interface_speed label" @@ -4164,12 +4312,12 @@ msgctxt "raft_interface_speed description" msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." msgstr "" -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" msgstr "" -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." msgstr "" msgctxt "raft_acceleration label" @@ -4180,12 +4328,12 @@ msgctxt "raft_acceleration description" msgid "The acceleration with which the raft is printed." msgstr "" -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" msgstr "" -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." msgstr "" msgctxt "raft_interface_acceleration label" @@ -4196,12 +4344,12 @@ msgctxt "raft_interface_acceleration description" msgid "The acceleration with which the middle raft layer is printed." msgstr "" -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" msgstr "" -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." msgstr "" msgctxt "raft_jerk label" @@ -4212,12 +4360,12 @@ msgctxt "raft_jerk description" msgid "The jerk with which the raft is printed." msgstr "" -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" msgstr "" -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." msgstr "" msgctxt "raft_interface_jerk label" @@ -4228,12 +4376,12 @@ msgctxt "raft_interface_jerk description" msgid "The jerk with which the middle raft layer is printed." msgstr "" -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" msgstr "" -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." msgstr "" msgctxt "raft_fan_speed label" @@ -4244,12 +4392,12 @@ msgctxt "raft_fan_speed description" msgid "The fan speed for the raft." msgstr "" -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" msgstr "" -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." msgstr "" msgctxt "raft_interface_fan_speed label" @@ -4260,12 +4408,12 @@ msgctxt "raft_interface_fan_speed description" msgid "The fan speed for the middle raft layer." msgstr "" -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" msgstr "" -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." msgstr "" msgctxt "dual label" @@ -4284,6 +4432,22 @@ msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "" +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "" + +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "" + +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "" + +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "" + msgctxt "prime_tower_size label" msgid "Prime Tower Size" msgstr "" @@ -4300,6 +4464,14 @@ msgctxt "prime_tower_min_volume description" msgid "The minimum volume for each layer of the prime tower in order to purge enough material." msgstr "" +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "" + +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "" + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "" @@ -4593,7 +4765,7 @@ msgid "Set Print Sequence Manually" msgstr "" msgctxt "user_defined_print_order_enabled description" -msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." msgstr "" msgctxt "infill_mesh label" @@ -5404,28 +5576,76 @@ msgctxt "material_alternate_walls description" msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." msgstr "" -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" msgstr "" -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." msgstr "" -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" +msgctxt "ppr label" +msgid "Print Process Reporting" msgstr "" -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" msgstr "" -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" msgstr "" -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "" + +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "" + +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "" + +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "" + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "" + +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "" + +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." msgstr "" msgctxt "command_line_settings label" @@ -5476,42 +5696,3 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "" -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "" \ No newline at end of file diff --git a/resources/i18n/fi_FI/cura.po b/resources/i18n/fi_FI/cura.po index 55a60d50ae5..ddb1c5866c5 100644 --- a/resources/i18n/fi_FI/cura.po +++ b/resources/i18n/fi_FI/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-31 19:13+0100\n" +"POT-Creation-Date: 2024-03-11 12:52+0100\n" "PO-Revision-Date: 2022-07-15 10:53+0200\n" "Last-Translator: Bothof \n" "Language-Team: Finnish\n" @@ -123,6 +123,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "" +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "" + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "" @@ -252,6 +256,10 @@ msgid_plural "A cloud connection is not available for some printers" msgstr[0] "" msgstr[1] "" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "" + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "" @@ -486,10 +494,18 @@ msgctxt "@label" msgid "Anonymous" msgstr "" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "Sovelluskehys" +msgctxt "@title:column" +msgid "Applies on" +msgstr "" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "" @@ -676,6 +692,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "Laskettu" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "" @@ -1400,6 +1420,10 @@ msgctxt "@label" msgid "Draft" msgstr "" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "" + msgctxt "@action:button" msgid "Duplicate" msgstr "Jäljennös" @@ -1526,6 +1550,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "" + msgctxt "@button" msgid "Export material archive" msgstr "" @@ -1559,10 +1587,23 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "" + +#, python-brace-format +msgctxt "@label" +msgid "Extruder {0}" +msgstr "" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "" @@ -1629,6 +1670,11 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "" +#, python-brace-format +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "" + msgctxt "@label:category menu label" msgid "Favorites" msgstr "" @@ -1770,6 +1816,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Pakota kerrosnäkymän yhteensopivuustila (vaatii uudelleenkäynnistyksen)" +msgid "FreeCAD trackpad" +msgstr "" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "" @@ -1858,6 +1907,10 @@ msgctxt "@action" msgid "Get started" msgstr "" +msgctxt "@label" +msgid "Global" +msgstr "" + msgctxt "@title:tab" msgid "Global Settings" msgstr "Yleiset asetukset" @@ -1907,6 +1960,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "Piilota tämä asetus" @@ -1983,6 +2040,10 @@ msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "" +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "" + msgctxt "@label" msgid "Infill" msgstr "Täyttö" @@ -2686,6 +2747,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "" + msgctxt "@label" msgid "No time estimation available" msgstr "" @@ -2787,6 +2852,10 @@ msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Vain yksi G-code-tiedosto voidaan ladata kerralla. Tiedoston {0} tuonti ohitettiin." +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "" + msgctxt "@action:button" msgid "Open" msgstr "Avaa" @@ -2815,10 +2884,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "" + msgctxt "@action:label" msgid "Open With" msgstr "" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "" + msgctxt "@action:button" msgid "Open as project" msgstr "Avaa projektina" @@ -3027,6 +3108,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "" +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "" + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "" @@ -3123,6 +3208,14 @@ msgctxt "@action:button" msgid "Print" msgstr "Tulosta" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Tulosta jälkeen" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Tulosta ennen" + msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -3429,8 +3522,8 @@ msgid "Provides support for reading model files." msgstr "" msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Tukee 3MF-tiedostojen kirjoittamista." +msgid "Provides support for writing 3MF and UCP files." +msgstr "" msgctxt "description" msgid "Provides support for writing MakerBot Format Packages." @@ -3674,7 +3767,11 @@ msgid "Save Cura project" msgstr "" msgctxt "@option" -msgid "Save Cura project and print file" +msgid "Save Cura project and .makerbot print file" +msgstr "" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" msgstr "" msgctxt "@title:window" @@ -3701,6 +3798,10 @@ msgctxt "@button" msgid "Save new profile" msgstr "" +msgctxt "@action:button" +msgid "Save project" +msgstr "" + msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "" @@ -3804,6 +3905,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "" + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "" + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "" + msgctxt "@action:button" msgid "Send report" msgstr "" @@ -3856,6 +3969,10 @@ msgctxt "@title:tab" msgid "Settings" msgstr "Asetukset" +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "" @@ -3924,6 +4041,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "" + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "" @@ -3980,6 +4101,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "" +msgctxt "@action:button" +msgid "Show settings" +msgstr "" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Näytä yhteenvetoikkuna, kun projekti tallennetaan" @@ -4056,10 +4181,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "" - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Viipaloidaan..." @@ -4068,6 +4189,10 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Tasoitus" +msgctxt "@label" +msgid "Solid" +msgstr "" + msgctxt "name" msgid "Solid View" msgstr "Kiinteä näkymä" @@ -4193,10 +4318,26 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "" +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Yhteenveto – Cura-projekti" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "" + msgctxt "@label" msgid "Support" msgstr "" @@ -4569,6 +4710,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "" +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "Tämä on Cura-projektitiedosto. Haluatko avata sen projektina vai tuoda siinä olevat mallit?" @@ -4658,6 +4803,14 @@ msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "" +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "" + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "" + msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" msgstr "" @@ -4887,6 +5040,11 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "" +#, python-brace-format +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "" + msgctxt "@label:status" msgid "Unavailable" msgstr "" @@ -4899,14 +5057,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Poista mallien ryhmitys" -msgctxt "@action:inmenu menubar:edit" -msgid "Print Before" -msgstr "Tulosta ennen" - -msgctxt "@action:inmenu menubar:edit" -msgid "Print After" -msgstr "Tulosta jälkeen" - msgctxt "@button" msgid "Uninstall" msgstr "" @@ -4915,6 +5065,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "" +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "" + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "" @@ -5104,6 +5258,10 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." msgstr "" +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "" + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Lataa mukautettu laiteohjelmisto" @@ -5136,6 +5294,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "" +msgctxt "@title:column" +msgid "Value" +msgstr "" + msgctxt "name" msgid "Version Upgrade 2.1 to 2.2" msgstr "Päivitys versiosta 2.1 versioon 2.2" @@ -5240,6 +5402,10 @@ msgctxt "name" msgid "Version Upgrade 5.4 to 5.5" msgstr "" +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "" @@ -5317,6 +5483,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "" @@ -5522,6 +5692,10 @@ msgctxt "@label" msgid "mm" msgstr "mm" +msgctxt "@label" +msgid "s" +msgstr "" + msgctxt "@info:status" msgid "today" msgstr "" @@ -5546,3 +5720,7 @@ msgstr "" #~ msgctxt "@label" #~ msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." #~ msgstr "Ota reunuksen tai pohjaristikon tulostus käyttöön. Tämä lisää kappaleen ympärille tai alle tasaisen alueen, joka on helppo leikata pois myöhemmin." + +#~ msgctxt "description" +#~ msgid "Provides support for writing 3MF files." +#~ msgstr "Tukee 3MF-tiedostojen kirjoittamista." diff --git a/resources/i18n/fi_FI/fdmextruder.def.json.po b/resources/i18n/fi_FI/fdmextruder.def.json.po index 3a36171e143..fe680ec53b6 100644 --- a/resources/i18n/fi_FI/fdmextruder.def.json.po +++ b/resources/i18n/fi_FI/fdmextruder.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-06-08 16:32+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: 2022-07-15 11:17+0200\n" "Last-Translator: Bothof \n" "Language-Team: Finnish\n" @@ -44,6 +44,10 @@ msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "Suulakkeen lopetus-GCode" +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "" + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Suulakkeen lopetussijainti absoluuttinen" @@ -76,6 +80,10 @@ msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "Suulakkeen aloitus-GCode" +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "" + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Suulakkeen aloitussijainti absoluuttinen" @@ -160,6 +168,14 @@ msgctxt "machine_extruder_cooling_fan_number description" msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." msgstr "" +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "" + msgctxt "machine_extruder_end_pos_x description" msgid "The x-coordinate of the ending position when turning the extruder off." msgstr "Lopetussijainnin X-koordinaatti, kun suulake poistetaan käytöstä." diff --git a/resources/i18n/fi_FI/fdmprinter.def.json.po b/resources/i18n/fi_FI/fdmprinter.def.json.po index a1e4ab420e0..4f969ab9afe 100644 --- a/resources/i18n/fi_FI/fdmprinter.def.json.po +++ b/resources/i18n/fi_FI/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: 2022-07-15 11:17+0200\n" "Last-Translator: Bothof \n" "Language-Team: Finnish\n" @@ -16,6 +16,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.1.1\n" +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "" + +msgctxt "brim_inside_margin description" +msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." +msgstr "" + msgctxt "ironing_inset description" msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." msgstr "Etäisyys mallin reunoihin. Silitys verkon reunoihin saakka voi johtaa rosoiseen reunaan tulosteessa." @@ -60,10 +68,6 @@ msgctxt "machine_disallowed_areas description" msgid "A list of polygons with areas the print head is not allowed to enter." msgstr "Monikulmioluettelo, jossa on alueet, joihin tulostuspää ei saa siirtyä." -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "" - msgctxt "support_tree_branch_reach_limit description" msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " msgstr "" @@ -154,6 +158,10 @@ msgctxt "resolution description" msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" msgstr "Kaikki tulostuksen resoluutioon vaikuttavat asetukset. Näillä asetuksilla on suuri vaikutus laatuun (ja tulostusaikaan)." +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "" + msgctxt "alternate_extra_perimeter label" msgid "Alternate Extra Wall" msgstr "Vuoroittainen lisäseinämä" @@ -402,21 +410,21 @@ msgctxt "adhesion_type option brim" msgid "Brim" msgstr "Reunus" -msgctxt "brim_gap label" -msgid "Brim Distance" +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" msgstr "" -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" +msgctxt "brim_gap label" +msgid "Brim Distance" msgstr "" msgctxt "brim_line_count label" msgid "Brim Line Count" msgstr "Reunuksen linjaluku" -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Reunus vain ulkopuolella" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "" msgctxt "brim_replaces_support label" msgid "Brim Replaces Support" @@ -458,6 +466,14 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "" +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "" + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "" + msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." msgstr "" @@ -870,6 +886,10 @@ msgctxt "cool_fan_enabled label" msgid "Enable Print Cooling" msgstr "Ota tulostuksen jäähdytys käyttöön" +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "" + msgctxt "retraction_enable label" msgid "Enable Retraction" msgstr "Ota takaisinveto käyttöön" @@ -902,6 +922,10 @@ msgctxt "ooze_shield_enabled description" msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." msgstr "Ottaa ulkoisen tihkusuojuksen käyttöön. Tämä luo mallin ympärille kuoren, joka pyyhkii todennäköisesti toisen suuttimen, jos se on samalla korkeudella kuin ensimmäinen suutin." +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "" + msgctxt "small_skin_on_surface description" msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." msgstr "" @@ -934,6 +958,10 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "" +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "" + msgctxt "support_type option everywhere" msgid "Everywhere" msgstr "Kaikkialla" @@ -1038,6 +1066,10 @@ msgctxt "speed_equalize_flow_width_factor label" msgid "Flow Equalization Ratio" msgstr "" +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "" + msgctxt "flow_rate_extrusion_offset_factor label" msgid "Flow Rate Compensation Factor" msgstr "" @@ -1050,6 +1082,10 @@ msgctxt "material_flow_temp_graph label" msgid "Flow Temperature Graph" msgstr "Virtauksen lämpötilakaavio" +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "" + msgctxt "material_flow_layer_0 description" msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." msgstr "" @@ -1438,10 +1474,22 @@ msgctxt "wall_transition_filter_distance description" msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." msgstr "" +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "Jos pohjaristikko on otettu käyttöön, tämä on ylimääräinen ristikkoalue malli ympärillä, jolle myös annetaan pohjaristikko. Tämän marginaalin kasvattaminen vahvistaa pohjaristikkoa, jolloin käytetään enemmän materiaalia ja tulosteelle jää vähemmän tilaa." +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "meshfix_union_all description" msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." msgstr "Jätetään limittyvistä ainemääristä koostuva verkon sisäinen geometria huomiotta ja tulostetaan ainemäärät yhtenä. Tämä saattaa poistaa tahattomia sisäisiä onkaloita." @@ -1670,6 +1718,10 @@ msgctxt "wall_0_inset description" msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." msgstr "Ulkoseinämän reitille asetettu liitos. Jos ulkoseinämä on pienempi kuin suutin ja se tulostetaan sisäseinämien jälkeen, tällä siirtymällä saadaan suuttimen reikä limittymään sisäseinämiin mallin ulkopuolen sijaan." +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "" + msgctxt "inset_direction option inside_out" msgid "Inside To Outside" msgstr "" @@ -1682,6 +1734,10 @@ msgctxt "support_interface_priority option interface_area_overwrite_support_area msgid "Interface preferred" msgstr "" +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "" + msgctxt "interlocking_beam_layer_count label" msgid "Interlocking Beam Layer Count" msgstr "" @@ -1822,6 +1878,30 @@ msgctxt "support_tree_limit_branch_reach description" msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" msgstr "" +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "" + msgctxt "cutting_mesh description" msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." msgstr "Rajoita tämän verkon laajuus muiden verkkojen alueelle. Tällä voit määrittää tietyt yhden verkon alueet tulostumaan eri asetuksilla ja täysin eri suulakkeella." @@ -1919,8 +1999,10 @@ msgid "Make the extruder prime position absolute rather than relative to the las msgstr "Tekee suulakkeen esitäyttösijainnista absoluuttisen eikä suhteellisen viimeksi tunnettuun pään sijaintiin nähden." msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "Mallin ensimmäisen ja toisen kerroksen limitys Z-suunnassa, millä kompensoidaan ilmaraossa menetettyä tulostuslankaa. Kaikki ensimmäisen mallin kerroksen yläpuolella olevat mallit siirtyvät alas tämän määrän." +msgid "" +"Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" +"It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "" msgctxt "meshfix description" msgid "Make the meshes more suited for 3D printing." @@ -1946,10 +2028,18 @@ msgctxt "material label" msgid "Material" msgstr "Materiaali" +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "" + msgctxt "material_guid label" msgid "Material GUID" msgstr "Materiaalin GUID" +msgctxt "material_type label" +msgid "Material Type" +msgstr "" + msgctxt "max_extrusion_before_wipe label" msgid "Material Volume Between Wipes" msgstr "" @@ -2226,6 +2316,10 @@ msgctxt "ironing_monotonic label" msgid "Monotonic Ironing Order" msgstr "" +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "" + msgctxt "roofing_monotonic label" msgid "Monotonic Top Surface Order" msgstr "" @@ -2266,6 +2360,10 @@ msgctxt "magic_mesh_surface_mode option normal" msgid "Normal" msgstr "Normaali" +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "" + msgctxt "support_structure option normal" msgid "Normal" msgstr "" @@ -2398,10 +2496,6 @@ msgctxt "ironing_only_highest_layer description" msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." msgstr "Suorita silitys vain verkon viimeisessä kerroksessa. Tämä säästää aikaa, jos alemmat kerrokset eivät edellytä sileää pintaviimeistelyä." -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Tulostaa reunuksen vain mallin ulkopuolelle. Tämä vähentää myöhemmin poistettavan reunuksen määrää, mutta se ei juurikaan vähennä pöydän tarttuvuutta." - msgctxt "ooze_shield_angle label" msgid "Ooze Shield Angle" msgstr "Tihkusuojuksen kulma" @@ -2462,6 +2556,10 @@ msgctxt "group_outer_walls description" msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." msgstr "Samaan kerrokseen kuuluvat eri saarten ulkoseinät tulostetaan peräkkäin. Kun toiminto on käytössä, virtauksen muutosten määrä on rajoitettu, koska seinät tulostetaan yksi kerrallaan. Kun toiminto on pois päältä, matkojen määrä saarten välillä vähenee, koska saman saaren seinät ryhmitellään." +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "" + msgctxt "inset_direction option outside_in" msgid "Outside To Inside" msgstr "" @@ -2542,6 +2640,10 @@ msgctxt "prime_tower_line_width label" msgid "Prime Tower Line Width" msgstr "Esitäyttötornin linjan leveys" +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "" + msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" msgstr "Esitäyttötornin minimiainemäärä" @@ -2558,6 +2660,10 @@ msgctxt "speed_prime_tower label" msgid "Prime Tower Speed" msgstr "Esitäyttötornin nopeus" +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "" + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "Esitäyttötornin X-sijainti" @@ -2574,18 +2680,14 @@ msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Tulostuksen nykäisy" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "" + msgctxt "print_sequence label" msgid "Print Sequence" msgstr "Tulostusjärjestys" -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "Aseta tulostusjärjestys manuaalisesti" - -msgctxt "user_defined_print_order_enabled description" -msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." -msgstr "Mahdollistaa kohteiden järjestämisen tulostusjärjestyksen manuaaliseen asettamiseen. Listan ensimmäinen kohde tulostetaan ensin." - msgctxt "speed_print label" msgid "Print Speed" msgstr "Tulostusnopeus" @@ -2594,6 +2696,10 @@ msgctxt "fill_outline_gaps label" msgid "Print Thin Walls" msgstr "Tulosta ohuet seinämät" +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "" + msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "Tulosta tulosteen viereen torni, jolla materiaali esitäytetään aina suuttimen vaihdon jälkeen." @@ -2614,6 +2720,10 @@ msgctxt "fill_outline_gaps description" msgid "Print pieces of the model which are horizontally thinner than the nozzle size." msgstr "Tulostaa mallin kohtia, jotka ovat vaakasuunnassa suuttimen kokoa ohuempia." +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "" + msgctxt "bridge_skin_speed_2 description" msgid "Print speed to use when printing the second bridge skin layer." msgstr "" @@ -2622,6 +2732,14 @@ msgctxt "bridge_skin_speed_3 description" msgid "Print speed to use when printing the third bridge skin layer." msgstr "" +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "" + msgctxt "infill_before_walls description" msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." msgstr "Tulostetaan täyttö ennen seinien tulostamista. Seinien tulostaminen ensin saattaa johtaa tarkempiin seiniin, mutta ulokkeet tulostuvat huonommin. Täytön tulostaminen ensin johtaa tukevampiin seiniin, mutta täyttökuvio saattaa joskus näkyä pinnan läpi." @@ -2666,6 +2784,10 @@ msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "Pohjaristikon ilmarako" +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "" + msgctxt "raft_base_extruder_nr label" msgid "Raft Base Extruder" msgstr "" @@ -2694,6 +2816,10 @@ msgctxt "raft_base_speed label" msgid "Raft Base Print Speed" msgstr "Pohjaristikon pohjan tulostusnopeus" +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "" + msgctxt "raft_base_thickness label" msgid "Raft Base Thickness" msgstr "Pohjaristikon pohjan paksuus" @@ -2710,6 +2836,10 @@ msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" msgstr "Pohjaristikon tuulettimen nopeus" +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "" + msgctxt "raft_interface_extruder_nr label" msgid "Raft Middle Extruder" msgstr "" @@ -2738,6 +2868,10 @@ msgctxt "raft_interface_speed label" msgid "Raft Middle Print Speed" msgstr "Pohjaristikon keskikerroksen tulostusnopeus" +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "" + msgctxt "raft_interface_line_spacing label" msgid "Raft Middle Spacing" msgstr "Pohjaristikon keskikerroksen linjajako" @@ -2746,6 +2880,10 @@ msgctxt "raft_interface_thickness label" msgid "Raft Middle Thickness" msgstr "Pohjaristikon keskikerroksen paksuus" +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "" + msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" msgstr "Pohjaristikon tulostuksen kiihtyvyys" @@ -2762,6 +2900,10 @@ msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "Pohjaristikon tasoitus" +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "" + msgctxt "raft_surface_extruder_nr label" msgid "Raft Top Extruder" msgstr "" @@ -2794,10 +2936,22 @@ msgctxt "raft_surface_speed label" msgid "Raft Top Print Speed" msgstr "Pohjaristikon pinnan tulostusnopeus" +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "" + msgctxt "raft_surface_line_spacing label" msgid "Raft Top Spacing" msgstr "Pohjaristikon pinnan linjajako" +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "" + msgctxt "z_seam_type option random" msgid "Random" msgstr "Satunnainen" @@ -2850,10 +3004,22 @@ msgctxt "carve_multiple_volumes label" msgid "Remove Mesh Intersection" msgstr "Poista verkon leikkauspiste" +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "" + msgctxt "raft_remove_inside_corners label" msgid "Remove Raft Inside Corners" msgstr "" +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "" + msgctxt "carve_multiple_volumes description" msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." msgstr "Poistaa alueet, joissa useat verkot ovat limittäin toistensa kanssa. Tätä voidaan käyttää, jos yhdistetyt kaksoismateriaalikappaleet ovat limittäin toistensa kanssa." @@ -2862,6 +3028,18 @@ msgctxt "remove_empty_first_layers description" msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." msgstr "" +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "" + msgctxt "raft_remove_inside_corners description" msgid "Remove inside corners from the raft, causing the raft to become convex." msgstr "" @@ -2882,6 +3060,10 @@ msgctxt "skin_outline_count description" msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." msgstr "Korvaa ylä-/alakuvion uloimman osan samankeskisillä linjoilla. Yhden tai kahden linjan käyttäminen parantaa kattoja, jotka alkavat täyttömateriaalin keskeltä." +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "" + msgctxt "support_tree_rest_preference label" msgid "Rest Preference" msgstr "" @@ -2954,6 +3136,10 @@ msgctxt "z_seam_corner label" msgid "Seam Corner Preference" msgstr "Saumakulmien asetus" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Aseta tulostusjärjestys manuaalisesti" + msgctxt "draft_shield_height_limitation description" msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." msgstr "Aseta vetosuojuksen korkeus. Valitse, tulostetaanko vetosuojus koko mallin korkuisena vai rajoitetun korkuisena." @@ -3354,10 +3540,6 @@ msgctxt "support_interface_priority label" msgid "Support Interface Priority" msgstr "" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Tukiliittymän resoluutio" - msgctxt "speed_support_interface label" msgid "Support Interface Speed" msgstr "Tukiliittymän nopeus" @@ -3710,6 +3892,10 @@ msgctxt "magic_fuzzy_skin_point_dist description" msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." msgstr "Keskimääräinen etäisyys kunkin linjasegmentin satunnaisten pisteiden välillä. Huomaa, että alkuperäiset monikulmion pisteet poistetaan käytöstä, joten korkea sileysarvo alentaa resoluutiota. Tämän arvon täytyy olla suurempi kuin puolet karhean pintakalvon paksuudesta." +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "" + msgctxt "machine_acceleration description" msgid "The default acceleration of print head movement." msgstr "Tulostuspään liikkeen oletuskiihtyvyys." @@ -4184,6 +4370,10 @@ msgctxt "jerk_travel description" msgid "The maximum instantaneous velocity change with which travel moves are made." msgstr "Siirtoliikkeiden nopeuden hetkellinen maksimimuutos." +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "" + msgctxt "machine_max_feedrate_x description" msgid "The maximum speed for the motor of the X-direction." msgstr "X-suunnan moottorin maksiminopeus." @@ -4296,6 +4486,18 @@ msgctxt "raft_base_wall_count description" msgid "The number of contours to print around the linear pattern in the base layer of the raft." msgstr "" +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "" + msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "" @@ -4684,6 +4886,10 @@ msgctxt "machine_gcode_flavor description" msgid "The type of g-code to be generated." msgstr "" +msgctxt "material_type description" +msgid "The type of material used." +msgstr "" + msgctxt "coasting_volume description" msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." msgstr "Aineen määrä, joka muutoin on tihkunut. Tämän arvon tulisi yleensä olla lähellä suuttimen läpimittaa korotettuna kuutioon." @@ -4732,10 +4938,22 @@ msgctxt "bridge_wall_coast description" msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." msgstr "" +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "" +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "retraction_count_max description" msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." msgstr "Tämä asetus rajoittaa pursotuksen minimietäisyyden ikkunassa tapahtuvien takaisinvetojen lukumäärää. Muut tämän ikkunan takaisinvedot jätetään huomiotta. Tällä vältetään toistuvat takaisinvedot samalla tulostuslangan osalla, sillä tällöin lanka voi litistyä ja aiheuttaa hiertymisongelmia." @@ -5096,10 +5314,6 @@ msgctxt "wall_overhang_angle description" msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." msgstr "" -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "Kun tarkistat tuen päällä ja alla olevaa mallia, toimi annetun korkeuden mukaisesti. Pienemmillä arvoilla viipalointi tapahtuu hitaammin, ja korkeammat arvot saattavat aiheuttaa normaalin tuen tulostumisen paikkoihin, joissa olisi pitänyt olla tukiliittymä." - msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." msgstr "" @@ -5492,42 +5706,26 @@ msgctxt "travel description" msgid "travel" msgstr "siirtoliike" -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "" +#~ msgctxt "user_defined_print_order_enabled description" +#~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +#~ msgstr "Mahdollistaa kohteiden järjestämisen tulostusjärjestyksen manuaaliseen asettamiseen. Listan ensimmäinen kohde tulostetaan ensin." -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "" +#~ msgctxt "brim_outside_only label" +#~ msgid "Brim Only on Outside" +#~ msgstr "Reunus vain ulkopuolella" -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "" +#~ msgctxt "layer_0_z_overlap description" +#~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +#~ msgstr "Mallin ensimmäisen ja toisen kerroksen limitys Z-suunnassa, millä kompensoidaan ilmaraossa menetettyä tulostuslankaa. Kaikki ensimmäisen mallin kerroksen yläpuolella olevat mallit siirtyvät alas tämän määrän." -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "" +#~ msgctxt "brim_outside_only description" +#~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +#~ msgstr "Tulostaa reunuksen vain mallin ulkopuolelle. Tämä vähentää myöhemmin poistettavan reunuksen määrää, mutta se ei juurikaan vähennä pöydän tarttuvuutta." -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "" +#~ msgctxt "support_interface_skip_height label" +#~ msgid "Support Interface Resolution" +#~ msgstr "Tukiliittymän resoluutio" -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "" +#~ msgctxt "support_interface_skip_height description" +#~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +#~ msgstr "Kun tarkistat tuen päällä ja alla olevaa mallia, toimi annetun korkeuden mukaisesti. Pienemmillä arvoilla viipalointi tapahtuu hitaammin, ja korkeammat arvot saattavat aiheuttaa normaalin tuen tulostumisen paikkoihin, joissa olisi pitänyt olla tukiliittymä." diff --git a/resources/i18n/fr_FR/cura.po b/resources/i18n/fr_FR/cura.po index af46346d63c..199f7969932 100644 --- a/resources/i18n/fr_FR/cura.po +++ b/resources/i18n/fr_FR/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-31 19:13+0100\n" +"POT-Creation-Date: 2024-03-11 12:52+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -117,6 +117,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "&Enregistrer le projet..." +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "" + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "&Paramètres" @@ -258,6 +262,10 @@ msgid_plural "A cloud connection is not available for some printers" msgstr[0] "Une connexion cloud n'est pas disponible pour une imprimante" msgstr[1] "Une connexion cloud n'est pas disponible pour certaines imprimantes" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "" + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "Une impression est encore en cours. Cura ne peut pas démarrer une autre impression via USB tant que l'impression précédente n'est pas terminée." @@ -492,10 +500,18 @@ msgctxt "@label" msgid "Anonymous" msgstr "Anonyme" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "Cadre d'application" +msgctxt "@title:column" +msgid "Applies on" +msgstr "" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "Appliquer les décalages offset de l'extrudeuse au GCode" @@ -682,6 +698,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "Calculer" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "Rendu caméra:" @@ -1412,6 +1432,10 @@ msgctxt "@label" msgid "Draft" msgstr "Ébauche" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "" + msgctxt "@action:button" msgid "Duplicate" msgstr "Dupliquer" @@ -1538,6 +1562,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Exporter la sélection..." +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "" + msgctxt "@button" msgid "Export material archive" msgstr "Exporter l'archive des matériaux" @@ -1571,10 +1599,23 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "Extrudeuse G-Code de fin" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "Extrudeuse G-Code de démarrage" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "" + +#, python-brace-format +msgctxt "@label" +msgid "Extruder {0}" +msgstr "" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Extrudeuse(s) désactivée(s)" @@ -1641,6 +1682,11 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Échec de l'enregistrement de l'archive des matériaux" +#, python-brace-format +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "" + msgctxt "@label:category menu label" msgid "Favorites" msgstr "Favoris" @@ -1782,6 +1828,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Forcer l'affichage de la couche en mode de compatibilité (redémarrage requis)" +msgid "FreeCAD trackpad" +msgstr "" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Vue de face" @@ -1870,6 +1919,10 @@ msgctxt "@action" msgid "Get started" msgstr "Prise en main" +msgctxt "@label" +msgid "Global" +msgstr "" + msgctxt "@title:tab" msgid "Global Settings" msgstr "Paramètres généraux" @@ -1919,6 +1972,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "Masquer toutes les imprimantes connectées" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "Masquer ce paramètre" @@ -1995,6 +2052,10 @@ msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "Pour pouvoir utiliser le package, vous devrez redémarrer Cura" +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "" + msgctxt "@label" msgid "Infill" msgstr "Remplissage" @@ -2698,6 +2759,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "Aucun résultat trouvé avec le filtre actuel" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "" + msgctxt "@label" msgid "No time estimation available" msgstr "Aucune estimation de la durée n'est disponible" @@ -2799,6 +2864,10 @@ msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Un seul fichier G-Code peut être chargé à la fois. Importation de {0} sautée" +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "" + msgctxt "@action:button" msgid "Open" msgstr "Ouvrir" @@ -2827,10 +2896,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "Ouvrir un fichier de projet" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "" + msgctxt "@action:label" msgid "Open With" msgstr "Ouvrir avec" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "" + msgctxt "@action:button" msgid "Open as project" msgstr "Ouvrir comme projet" @@ -3047,6 +3128,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "Veuillez vous connecter pour obtenir les plug-ins et matériaux vérifiés pour UltiMaker Cura Enterprise" +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "" + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "Veuillez synchroniser les profils de matériaux avec vos imprimantes avant de commencer à imprimer." @@ -3143,6 +3228,14 @@ msgctxt "@action:button" msgid "Print" msgstr "Imprimer" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Imprimer après" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Imprimer avant" + msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -3449,8 +3542,8 @@ msgid "Provides support for reading model files." msgstr "Fournit la prise en charge de la lecture de fichiers modèle 3D." msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Permet l'écriture de fichiers 3MF." +msgid "Provides support for writing 3MF and UCP files." +msgstr "" msgctxt "description" msgid "Provides support for writing MakerBot Format Packages." @@ -3694,8 +3787,12 @@ msgid "Save Cura project" msgstr "Sauvegarder le projet Cura" msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "Sauvegarder le projet Cura et imprimer le fichier" +msgid "Save Cura project and .makerbot print file" +msgstr "" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" +msgstr "" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3721,6 +3818,10 @@ msgctxt "@button" msgid "Save new profile" msgstr "Enregistrer le nouveau profil" +msgctxt "@action:button" +msgid "Save project" +msgstr "" + msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "Enregistrez le fichier .umm sur une clé USB." @@ -3824,6 +3925,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "Envoyer le rapport de d'incident à UltiMaker" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "" + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "" + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "" + msgctxt "@action:button" msgid "Send report" msgstr "Envoyer rapport" @@ -3876,6 +3989,10 @@ msgctxt "@title:tab" msgid "Settings" msgstr "Paramètres" +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "Les paramètres ont été modifiés pour correspondre aux extrudeuses actuellement disponibles:" @@ -3944,6 +4061,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "L'ouverture de fichiers à partir du bureau ou d'applications externes doit-elle se faire dans la même instance de Cura ?" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "" + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "Les objets doivent-ils être supprimés du plateau de fabrication avant de charger un nouveau modèle dans l'instance unique de Cura ?" @@ -4000,6 +4121,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Afficher le rapport d'incident détaillé" +msgctxt "@action:button" +msgid "Show settings" +msgstr "" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Afficher la boîte de dialogue du résumé lors de l'enregistrement du projet" @@ -4076,10 +4201,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "Échec de la découpe" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "Échec de la découpe avec une erreur inattendue. Signalez un bug sur notre outil de suivi des problèmes." - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Découpe en cours..." @@ -4088,6 +4209,10 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Lissage" +msgctxt "@label" +msgid "Solid" +msgstr "" + msgctxt "name" msgid "Solid View" msgstr "Vue solide" @@ -4213,10 +4338,26 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Importation du profil {0} réussie." +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Résumé - Projet Cura" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "" + msgctxt "@label" msgid "Support" msgstr "Support" @@ -4596,6 +4737,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "Cette configuration n'est pas disponible car %1 n'est pas reconnu. Veuillez visiter %2 pour télécharger le profil matériel correct." +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "Ceci est un fichier de projet Cura. Souhaitez-vous l'ouvrir comme projet ou en importer les modèles ?" @@ -4685,6 +4830,14 @@ msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Ce paramètre est résolu à partir de valeurs conflictuelles spécifiques à l'extrudeur :" +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "" + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "" + msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" msgstr "Cette version n'est pas destinée à une utilisation en production. Si vous rencontrez des problèmes, veuillez les signaler sur notre page GitHub, en mentionnant la version complète {self.getVersion()}" @@ -4916,6 +5069,11 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Impossible de lancer une nouvelle procédure de connexion. Vérifiez si une autre tentative de connexion est toujours active." +#, python-brace-format +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "" + msgctxt "@label:status" msgid "Unavailable" msgstr "Indisponible" @@ -4928,14 +5086,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Dégrouper les modèles" -msgctxt "@action:inmenu menubar:edit" -msgid "Print Before" -msgstr "Imprimer avant" - -msgctxt "@action:inmenu menubar:edit" -msgid "Print After" -msgstr "Imprimer après" - msgctxt "@button" msgid "Uninstall" msgstr "Désinstaller" @@ -4944,6 +5094,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Unité" +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "" + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "Configuration du système de fabrication universel" @@ -5133,6 +5287,10 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." msgstr "Configurations des mises à niveau de Cura 5.4 vers Cura 5.5." +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "" + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Charger le firmware personnalisé" @@ -5165,6 +5323,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "Bibliothèque d'utilitaires, y compris la génération d'un diagramme Voronoï" +msgctxt "@title:column" +msgid "Value" +msgstr "" + msgctxt "name" msgid "Version Upgrade 2.1 to 2.2" msgstr "Mise à niveau vers 2.1 vers 2.2" @@ -5269,6 +5431,10 @@ msgctxt "name" msgid "Version Upgrade 5.4 to 5.5" msgstr "Mise à niveau de la version 5.4 vers 5.5" +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Afficher les imprimantes dans Digital Factory" @@ -5346,6 +5512,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "Quelle imprimante souhaitez-vous configurer?" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "Quel type de rendu de la caméra doit-il être utilisé?" @@ -5562,6 +5732,10 @@ msgctxt "@label" msgid "mm" msgstr "mm" +msgctxt "@label" +msgid "s" +msgstr "" + msgctxt "@info:status" msgid "today" msgstr "aujourd'hui" @@ -5589,3 +5763,15 @@ msgstr "Échec de téléchargement des plugins {}" #~ msgid "Provides support for exporting Cura profiles." #~ msgstr "Fournit une assistance pour l’exportation de profils Cura." + +#~ msgctxt "description" +#~ msgid "Provides support for writing 3MF files." +#~ msgstr "Permet l'écriture de fichiers 3MF." + +#~ msgctxt "@option" +#~ msgid "Save Cura project and print file" +#~ msgstr "Sauvegarder le projet Cura et imprimer le fichier" + +#~ msgctxt "@message" +#~ msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +#~ msgstr "Échec de la découpe avec une erreur inattendue. Signalez un bug sur notre outil de suivi des problèmes." diff --git a/resources/i18n/fr_FR/fdmextruder.def.json.po b/resources/i18n/fr_FR/fdmextruder.def.json.po index 51ad90b86b6..79650f9b990 100644 --- a/resources/i18n/fr_FR/fdmextruder.def.json.po +++ b/resources/i18n/fr_FR/fdmextruder.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-06-08 16:32+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -40,6 +40,10 @@ msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "Extrudeuse G-Code de fin" +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "" + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Extrudeuse Position de fin absolue" @@ -72,6 +76,10 @@ msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "Extrudeuse G-Code de démarrage" +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "" + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Extrudeuse Position de départ absolue" @@ -156,6 +164,14 @@ msgctxt "machine_extruder_cooling_fan_number description" msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." msgstr "Numéro du ventilateur de refroidissement d'impression associé à cette extrudeuse. Ne modifiez cette valeur par rapport à la valeur par défaut 0 que si vous utilisez un ventilateur de refroidissement d'impression différent pour chaque extrudeuse." +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "" + msgctxt "machine_extruder_end_pos_x description" msgid "The x-coordinate of the ending position when turning the extruder off." msgstr "Les coordonnées X de la position de fin lors de l'arrêt de l'extrudeuse." diff --git a/resources/i18n/fr_FR/fdmprinter.def.json.po b/resources/i18n/fr_FR/fdmprinter.def.json.po index 2376820b7ce..16a9e79223b 100644 --- a/resources/i18n/fr_FR/fdmprinter.def.json.po +++ b/resources/i18n/fr_FR/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,6 +12,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "" + +msgctxt "brim_inside_margin description" +msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." +msgstr "" + msgctxt "ironing_inset description" msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." msgstr "Distance à garder à partir des bords du modèle. Étirer jusqu'au bord de la maille peut entraîner l'apparition d'un bord denté sur votre impression." @@ -56,10 +64,6 @@ msgctxt "machine_disallowed_areas description" msgid "A list of polygons with areas the print head is not allowed to enter." msgstr "Une liste de polygones comportant les zones dans lesquelles la tête d'impression n'a pas le droit de pénétrer." -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "Une pièce entièrement contenue à l'intérieur d'une autre peut générer une bordure extérieure qui vient en contact avec l'intérieur de la pièce extérieure. Cette fonction supprime à cette distance toutes les bordures situées dans des vides intérieurs." - msgctxt "support_tree_branch_reach_limit description" msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " msgstr "Il s'agit de la distance recommandée à laquelle les branches peuvent s'éloigner des points qu'elles soutiennent. Les branches peuvent ne pas respecter cette valeur pour atteindre leur emplacement cible (plateau ou partie plate du modèle). L'abaissement de cette valeur rendra le support plus solide, mais le nombre de branches augmentera (tout comme la quantité de matériau utilisée et le temps d'impression)." @@ -152,6 +156,10 @@ msgctxt "resolution description" msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" msgstr "Tous les paramètres qui influent sur la résolution de l'impression. Ces paramètres ont un impact conséquent sur la qualité (et la durée d'impression)." +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "" + msgctxt "alternate_extra_perimeter label" msgid "Alternate Extra Wall" msgstr "Alterner les parois supplémentaires" @@ -400,21 +408,21 @@ msgctxt "adhesion_type option brim" msgid "Brim" msgstr "Bordure" +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "" + msgctxt "brim_gap label" msgid "Brim Distance" msgstr "Distance de la bordure" -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "Marge d'évitement de la bordure intérieure" - msgctxt "brim_line_count label" msgid "Brim Line Count" msgstr "Nombre de lignes de la bordure" -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Bordure uniquement sur l'extérieur" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "" msgctxt "brim_replaces_support label" msgid "Brim Replaces Support" @@ -456,6 +464,14 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "Température du volume d'impression" +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "" + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "" + msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." msgstr "En activant ce paramètre, votre tour d'amorçage aura un bord même si le modèle n'en a pas. Si vous souhaitez une base plus solide pour une tour élevée, vous pouvez augmenter la hauteur de la base." @@ -868,6 +884,10 @@ msgctxt "cool_fan_enabled label" msgid "Enable Print Cooling" msgstr "Activer le refroidissement de l'impression" +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "" + msgctxt "retraction_enable label" msgid "Enable Retraction" msgstr "Activer la rétraction" @@ -900,6 +920,10 @@ msgctxt "ooze_shield_enabled description" msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." msgstr "Activer le bouclier de suintage extérieur. Cela créera une coque autour du modèle qui est susceptible d'essuyer une deuxième buse si celle-ci est à la même hauteur que la première buse." +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "" + msgctxt "small_skin_on_surface description" msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." msgstr "Permet aux petites zones (jusqu'à « Petite largeur Haut/Bas ») de la couche supérieure (exposée à l'air) d'être remplies avec des parois au lieu du motif par défaut." @@ -932,6 +956,10 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "Appliquer la bordure à imprimer autour du modèle même si cet espace aurait autrement dû être occupé par le support, en remplaçant certaines régions de la première couche de support par des régions de la bordure." +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "" + msgctxt "support_type option everywhere" msgid "Everywhere" msgstr "Partout" @@ -1036,6 +1064,10 @@ msgctxt "speed_equalize_flow_width_factor label" msgid "Flow Equalization Ratio" msgstr "Rapport d'égalisation des débits" +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "" + msgctxt "flow_rate_extrusion_offset_factor label" msgid "Flow Rate Compensation Factor" msgstr "Facteur de compensation du débit" @@ -1048,6 +1080,10 @@ msgctxt "material_flow_temp_graph label" msgid "Flow Temperature Graph" msgstr "Graphique de la température du flux" +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "" + msgctxt "material_flow_layer_0 description" msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." msgstr "Compensation du débit pour la couche initiale : la quantité de matériau extrudée sur la couche initiale est multipliée par cette valeur." @@ -1440,10 +1476,22 @@ msgctxt "wall_transition_filter_distance description" msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." msgstr "S'il s'agit d'une transition d'avant en arrière entre différents nombres de parois en succession rapide, ne faites pas du tout la transition. Supprimez les transitions si elles sont plus proches les unes des autres que cette distance." +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "Si vous avez appliqué un radeau, alors il s’agit de l’espace de radeau supplémentaire autour du modèle qui dispose déjà d’un radeau. L’augmentation de cette marge va créer un radeau plus solide, mais requiert davantage de matériau et laisse moins de place pour votre impression." +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "meshfix_union_all description" msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." msgstr "Ignorer la géométrie interne pouvant découler de volumes se chevauchant à l'intérieur d'un maillage et imprimer les volumes comme un seul. Cela peut entraîner la disparition des cavités internes accidentelles." @@ -1672,6 +1720,10 @@ msgctxt "wall_0_inset description" msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." msgstr "Insert appliqué sur le passage de la paroi externe. Si la paroi externe est plus petite que la buse et imprimée après les parois intérieures, utiliser ce décalage pour que le trou dans la buse chevauche les parois internes et non l'extérieur du modèle." +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "" + msgctxt "inset_direction option inside_out" msgid "Inside To Outside" msgstr "De l'intérieur vers l'extérieur" @@ -1684,6 +1736,10 @@ msgctxt "support_interface_priority option interface_area_overwrite_support_area msgid "Interface preferred" msgstr "Priorité à l'interface" +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "" + msgctxt "interlocking_beam_layer_count label" msgid "Interlocking Beam Layer Count" msgstr "Nombre de couches des attaches de connexion" @@ -1824,6 +1880,30 @@ msgctxt "support_tree_limit_branch_reach description" msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" msgstr "Ce paramètre limite la distance parcourue par chaque branche à partir du point qu'elle soutient. Le support peut ainsi être plus solide, mais le nombre de branches augmentera (tout comme la quantité de matériau utilisée et le temps d'impression)" +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "" + msgctxt "cutting_mesh description" msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." msgstr "Limiter le volume de ce maillage à celui des autres maillages. Cette option permet de faire en sorte que certaines zones d'un maillage s'impriment avec des paramètres différents et avec une extrudeuse entièrement différente." @@ -1921,8 +2001,10 @@ msgid "Make the extruder prime position absolute rather than relative to the las msgstr "Rendre la position d'amorçage de l'extrudeuse absolue plutôt que relative à la dernière position connue de la tête." msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "La première et la deuxième couche du modèle se chevauchent dans la direction Z pour compenser le filament perdu dans l'entrefer. Toutes les couches au-dessus de la première couche du modèle seront décalées de ce montant." +msgid "" +"Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" +"It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "" msgctxt "meshfix description" msgid "Make the meshes more suited for 3D printing." @@ -1948,10 +2030,18 @@ msgctxt "material label" msgid "Material" msgstr "Matériau" +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "" + msgctxt "material_guid label" msgid "Material GUID" msgstr "GUID matériau" +msgctxt "material_type label" +msgid "Material Type" +msgstr "" + msgctxt "max_extrusion_before_wipe label" msgid "Material Volume Between Wipes" msgstr "Volume de matériau entre les essuyages" @@ -2228,6 +2318,10 @@ msgctxt "ironing_monotonic label" msgid "Monotonic Ironing Order" msgstr "Ordre d'étirage monotone" +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "" + msgctxt "roofing_monotonic label" msgid "Monotonic Top Surface Order" msgstr "Ordre monotone de la surface supérieure" @@ -2268,6 +2362,10 @@ msgctxt "magic_mesh_surface_mode option normal" msgid "Normal" msgstr "Normal" +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "" + msgctxt "support_structure option normal" msgid "Normal" msgstr "Normal" @@ -2400,10 +2498,6 @@ msgctxt "ironing_only_highest_layer description" msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." msgstr "N'exécute un étirage que sur l'ultime couche du maillage. Ceci économise du temps si les couches inférieures ne nécessitent pas de fini lisse de surface." -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Imprimer uniquement la bordure sur l'extérieur du modèle. Cela réduit la quantité de bordure que vous devez retirer par la suite, sans toutefois véritablement réduire l'adhérence au plateau." - msgctxt "ooze_shield_angle label" msgid "Ooze Shield Angle" msgstr "Angle du bouclier de suintage" @@ -2464,6 +2558,10 @@ msgctxt "group_outer_walls description" msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." msgstr "Les parois extérieures de différentes îles de la même couche sont imprimées séquentiellement. Lorsque ce paramètre est activé, le nombre de changements de débit est limité car les parois sont imprimées une par une ; lorsqu'il est désactivé, le nombre de déplacements entre les îles est réduit car les parois des mêmes îles sont regroupées." +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "" + msgctxt "inset_direction option outside_in" msgid "Outside To Inside" msgstr "De l'extérieur vers l'intérieur" @@ -2544,6 +2642,10 @@ msgctxt "prime_tower_line_width label" msgid "Prime Tower Line Width" msgstr "Largeur de ligne de la tour d'amorçage" +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "" + msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" msgstr "Volume minimum de la tour d'amorçage" @@ -2560,6 +2662,10 @@ msgctxt "speed_prime_tower label" msgid "Prime Tower Speed" msgstr "Vitesse de la tour d'amorçage" +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "" + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "Position X de la tour d'amorçage" @@ -2576,18 +2682,14 @@ msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Imprimer en saccade" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "" + msgctxt "print_sequence label" msgid "Print Sequence" msgstr "Séquence d'impression" -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "Définir la séquence d'impression manuellement" - -msgctxt "user_defined_print_order_enabled description" -msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." -msgstr "Permet de classer la liste des objets pour définir manuellement la séquence d'impression. Le premier objet de la liste sera imprimé en premier." - msgctxt "speed_print label" msgid "Print Speed" msgstr "Vitesse d’impression" @@ -2596,6 +2698,10 @@ msgctxt "fill_outline_gaps label" msgid "Print Thin Walls" msgstr "Imprimer parois fines" +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "" + msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "Imprimer une tour à côté de l'impression qui sert à amorcer le matériau après chaque changement de buse." @@ -2616,6 +2722,10 @@ msgctxt "fill_outline_gaps description" msgid "Print pieces of the model which are horizontally thinner than the nozzle size." msgstr "Imprimer les parties du modèle qui sont horizontalement plus fines que la taille de la buse." +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "" + msgctxt "bridge_skin_speed_2 description" msgid "Print speed to use when printing the second bridge skin layer." msgstr "Vitesse d'impression à utiliser lors de l'impression de la deuxième couche extérieure du pont." @@ -2624,6 +2734,14 @@ msgctxt "bridge_skin_speed_3 description" msgid "Print speed to use when printing the third bridge skin layer." msgstr "Vitesse d'impression à utiliser lors de l'impression de la troisième couche extérieure du pont." +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "" + msgctxt "infill_before_walls description" msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." msgstr "Imprime le remplissage avant d'imprimer les parois. Imprimer les parois d'abord permet d'obtenir des parois plus précises, mais les porte-à-faux s'impriment plus mal. Imprimer le remplissage d'abord entraîne des parois plus résistantes, mais le motif de remplissage se verra parfois à travers la surface." @@ -2668,6 +2786,10 @@ msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "Lame d'air du radeau" +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "" + msgctxt "raft_base_extruder_nr label" msgid "Raft Base Extruder" msgstr "Extrudeur de la base du raft" @@ -2696,6 +2818,10 @@ msgctxt "raft_base_speed label" msgid "Raft Base Print Speed" msgstr "Vitesse d’impression de la base du radeau" +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "" + msgctxt "raft_base_thickness label" msgid "Raft Base Thickness" msgstr "Épaisseur de la base du radeau" @@ -2712,6 +2838,10 @@ msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" msgstr "Vitesse du ventilateur pendant le radeau" +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "" + msgctxt "raft_interface_extruder_nr label" msgid "Raft Middle Extruder" msgstr "Extrudeur du milieu du radeau" @@ -2740,6 +2870,10 @@ msgctxt "raft_interface_speed label" msgid "Raft Middle Print Speed" msgstr "Vitesse d’impression du milieu du radeau" +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "" + msgctxt "raft_interface_line_spacing label" msgid "Raft Middle Spacing" msgstr "Interligne intermédiaire du radeau" @@ -2748,6 +2882,10 @@ msgctxt "raft_interface_thickness label" msgid "Raft Middle Thickness" msgstr "Épaisseur intermédiaire du radeau" +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "" + msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" msgstr "Accélération de l'impression du radeau" @@ -2764,6 +2902,10 @@ msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "Lissage de radeau" +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "" + msgctxt "raft_surface_extruder_nr label" msgid "Raft Top Extruder" msgstr "Extrudeur du haut du radeau" @@ -2796,10 +2938,22 @@ msgctxt "raft_surface_speed label" msgid "Raft Top Print Speed" msgstr "Vitesse d’impression du dessus du radeau" +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "" + msgctxt "raft_surface_line_spacing label" msgid "Raft Top Spacing" msgstr "Interligne supérieur du radeau" +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "" + msgctxt "z_seam_type option random" msgid "Random" msgstr "Aléatoire" @@ -2852,10 +3006,22 @@ msgctxt "carve_multiple_volumes label" msgid "Remove Mesh Intersection" msgstr "Supprimer l'intersection des mailles" +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "" + msgctxt "raft_remove_inside_corners label" msgid "Remove Raft Inside Corners" msgstr "Supprimer les coins intérieurs du radeau" +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "" + msgctxt "carve_multiple_volumes description" msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." msgstr "Supprime les zones sur lesquelles plusieurs mailles se chevauchent. Cette option peut être utilisée si des objets à matériau double fusionné se chevauchent." @@ -2864,6 +3030,18 @@ msgctxt "remove_empty_first_layers description" msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." msgstr "Supprimer les couches vides sous la première couche imprimée si elles sont présentes. Le fait de désactiver ce paramètre peut entraîner l'apparition de premières couches vides si le paramètre Tolérance à la découpe est défini sur Exclusif ou Milieu." +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "" + msgctxt "raft_remove_inside_corners description" msgid "Remove inside corners from the raft, causing the raft to become convex." msgstr "Supprimez les coins intérieurs du radeau afin de le rendre convexe." @@ -2884,6 +3062,10 @@ msgctxt "skin_outline_count description" msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." msgstr "Remplace la partie la plus externe du motif du dessus/dessous par un certain nombre de lignes concentriques. Le fait d'utiliser une ou deux lignes améliore les plafonds qui commencent sur du matériau de remplissage." +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "" + msgctxt "support_tree_rest_preference label" msgid "Rest Preference" msgstr "Préférence d'emplacement" @@ -2956,6 +3138,10 @@ msgctxt "z_seam_corner label" msgid "Seam Corner Preference" msgstr "Préférence de jointure d'angle" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Définir la séquence d'impression manuellement" + msgctxt "draft_shield_height_limitation description" msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." msgstr "Définit la hauteur du bouclier. Choisissez d'imprimer le bouclier à la pleine hauteur du modèle ou à une hauteur limitée." @@ -3356,10 +3542,6 @@ msgctxt "support_interface_priority label" msgid "Support Interface Priority" msgstr "Priorité de l'interface de support" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Résolution de l'interface du support" - msgctxt "speed_support_interface label" msgid "Support Interface Speed" msgstr "Vitesse d'impression de l'interface de support" @@ -3712,6 +3894,10 @@ msgctxt "magic_fuzzy_skin_point_dist description" msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." msgstr "Distance moyenne entre les points ajoutés aléatoirement sur chaque segment de ligne. Il faut noter que les points originaux du polygone ne sont plus pris en compte donc un fort lissage conduira à une diminution de la résolution. Cette valeur doit être supérieure à la moitié de l'épaisseur de la couche floue." +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "" + msgctxt "machine_acceleration description" msgid "The default acceleration of print head movement." msgstr "L'accélération par défaut du mouvement de la tête d'impression." @@ -4188,6 +4374,10 @@ msgctxt "jerk_travel description" msgid "The maximum instantaneous velocity change with which travel moves are made." msgstr "Le changement instantané maximal de vitesse selon lequel les déplacements s'effectuent." +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "" + msgctxt "machine_max_feedrate_x description" msgid "The maximum speed for the motor of the X-direction." msgstr "La vitesse maximale pour le moteur du sens X." @@ -4300,6 +4490,18 @@ msgctxt "raft_base_wall_count description" msgid "The number of contours to print around the linear pattern in the base layer of the raft." msgstr "Le nombre de contours à imprimer autour du motif linéaire dans la couche de base du radeau." +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "" + msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "Le nombre de couches de remplissage qui soutient les bords de la couche." @@ -4688,6 +4890,10 @@ msgctxt "machine_gcode_flavor description" msgid "The type of g-code to be generated." msgstr "Type de G-Code à générer." +msgctxt "material_type description" +msgid "The type of material used." +msgstr "" + msgctxt "coasting_volume description" msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." msgstr "Volume de matière qui devrait suinter de la buse. Cette valeur doit généralement rester proche du diamètre de la buse au cube." @@ -4736,10 +4942,22 @@ msgctxt "bridge_wall_coast description" msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." msgstr "Ce paramètre contrôle la distance que l'extrudeuse doit parcourir en roue libre immédiatement avant le début d'une paroi de pont. L'utilisation de la roue libre avant le début du pont permet de réduire la pression à l'intérieur de la buse et d'obtenir un pont plus plat." +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "Ce paramètre définit combien d'angles intérieurs sont arrondis dans le contour de radeau. Les angles internes sont arrondis en un demi-cercle avec un rayon égal à la valeur indiquée ici. Ce paramètre élimine également les cavités dans le contour de radeau qui sont d'une taille inférieure à ce cercle." +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "retraction_count_max description" msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." msgstr "Ce paramètre limite le nombre de rétractions dans l'intervalle de distance minimal d'extrusion. Les rétractions qui dépassent cette valeur seront ignorées. Cela évite les rétractions répétitives sur le même morceau de filament, car cela risque de l’aplatir et de générer des problèmes d’écrasement." @@ -5100,10 +5318,6 @@ msgctxt "wall_overhang_angle description" msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." msgstr "Les parois ayant un angle supérieur à cette valeur seront imprimées en utilisant les paramètres de parois en porte-à-faux. Si la valeur est 90, aucune paroi ne sera considérée comme étant en porte-à-faux. La saillie soutenue par le support ne sera pas non plus considérée comme étant en porte-à-faux." -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "Lors de la vérification de l'emplacement d'un modèle au-dessus et en-dessous du support, effectuer des étapes de la hauteur définie. Des valeurs plus faibles découperont plus lentement, tandis que des valeurs plus élevées peuvent causer l'impression d'un support normal à des endroits où il devrait y avoir une interface de support." - msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." msgstr "Lorsqu'ils sont activés, les parcours d'outils sont corrigés pour les imprimantes dotées de planificateurs de mouvements fluides. Les petits mouvements qui s'écartent de la direction générale de la trajectoire de l'outil sont lissés pour optimiser la fluidité des mouvements." @@ -5496,42 +5710,74 @@ msgctxt "travel description" msgid "travel" msgstr "déplacement" -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Durée de chaque étape du changement progressif de débit" +#~ msgctxt "brim_inside_margin description" +#~ msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +#~ msgstr "Une pièce entièrement contenue à l'intérieur d'une autre peut générer une bordure extérieure qui vient en contact avec l'intérieur de la pièce extérieure. Cette fonction supprime à cette distance toutes les bordures situées dans des vides intérieurs." + +#~ msgctxt "user_defined_print_order_enabled description" +#~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +#~ msgstr "Permet de classer la liste des objets pour définir manuellement la séquence d'impression. Le premier objet de la liste sera imprimé en premier." + +#~ msgctxt "brim_inside_margin label" +#~ msgid "Brim Inside Avoid Margin" +#~ msgstr "Marge d'évitement de la bordure intérieure" + +#~ msgctxt "brim_outside_only label" +#~ msgid "Brim Only on Outside" +#~ msgstr "Bordure uniquement sur l'extérieur" + +#~ msgctxt "gradual_flow_discretisation_step_size description" +#~ msgid "Duration of each step in the gradual flow change" +#~ msgstr "Durée de chaque étape du changement progressif de débit" + +#~ msgctxt "gradual_flow_enabled description" +#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +#~ msgstr "Permettre des changements de débit progressifs. Lorsque cette option est activée, le débit est progressivement augmenté/diminué jusqu'au débit cible. Cette option est utile pour les imprimantes équipées d'un tube Bowden avec lesquelles le débit n'est pas immédiatement modifié lorsque le moteur de l'extrudeuse démarre/s'arrête." + +#~ msgctxt "reset_flow_duration description" +#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +#~ msgstr "Pour tout déplacement plus long que cette valeur, le débit de matière est réinitialisé au débit cible du parcours" + +#~ msgctxt "gradual_flow_discretisation_step_size label" +#~ msgid "Gradual flow discretisation step size" +#~ msgstr "Taille du pas de discrétisation du débit progressif" + +#~ msgctxt "gradual_flow_enabled label" +#~ msgid "Gradual flow enabled" +#~ msgstr "Débit progressif activé" -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Permettre des changements de débit progressifs. Lorsque cette option est activée, le débit est progressivement augmenté/diminué jusqu'au débit cible. Cette option est utile pour les imprimantes équipées d'un tube Bowden avec lesquelles le débit n'est pas immédiatement modifié lorsque le moteur de l'extrudeuse démarre/s'arrête." +#~ msgctxt "max_flow_acceleration label" +#~ msgid "Gradual flow max acceleration" +#~ msgstr "Accélération maximale du débit progressif" -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Pour tout déplacement plus long que cette valeur, le débit de matière est réinitialisé au débit cible du parcours" +#~ msgctxt "layer_0_max_flow_acceleration label" +#~ msgid "Initial layer max flow acceleration" +#~ msgstr "Accélération maximale du débit de la couche initiale" -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Taille du pas de discrétisation du débit progressif" +#~ msgctxt "layer_0_z_overlap description" +#~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +#~ msgstr "La première et la deuxième couche du modèle se chevauchent dans la direction Z pour compenser le filament perdu dans l'entrefer. Toutes les couches au-dessus de la première couche du modèle seront décalées de ce montant." -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Débit progressif activé" +#~ msgctxt "max_flow_acceleration description" +#~ msgid "Maximum acceleration for gradual flow changes" +#~ msgstr "Accélération maximale des changements de débit progressifs" -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Accélération maximale du débit progressif" +#~ msgctxt "layer_0_max_flow_acceleration description" +#~ msgid "Minimum speed for gradual flow changes for the first layer" +#~ msgstr "Vitesse minimale des changements de débit progressifs pour la première couche" -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Accélération maximale du débit de la couche initiale" +#~ msgctxt "brim_outside_only description" +#~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +#~ msgstr "Imprimer uniquement la bordure sur l'extérieur du modèle. Cela réduit la quantité de bordure que vous devez retirer par la suite, sans toutefois véritablement réduire l'adhérence au plateau." -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Accélération maximale des changements de débit progressifs" +#~ msgctxt "reset_flow_duration label" +#~ msgid "Reset flow duration" +#~ msgstr "Réinitialiser la durée du débit" -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Vitesse minimale des changements de débit progressifs pour la première couche" +#~ msgctxt "support_interface_skip_height label" +#~ msgid "Support Interface Resolution" +#~ msgstr "Résolution de l'interface du support" -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Réinitialiser la durée du débit" +#~ msgctxt "support_interface_skip_height description" +#~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +#~ msgstr "Lors de la vérification de l'emplacement d'un modèle au-dessus et en-dessous du support, effectuer des étapes de la hauteur définie. Des valeurs plus faibles découperont plus lentement, tandis que des valeurs plus élevées peuvent causer l'impression d'un support normal à des endroits où il devrait y avoir une interface de support." diff --git a/resources/i18n/hu_HU/cura.po b/resources/i18n/hu_HU/cura.po index d5f06599a12..8e94f1077ee 100644 --- a/resources/i18n/hu_HU/cura.po +++ b/resources/i18n/hu_HU/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-31 19:13+0100\n" +"POT-Creation-Date: 2024-03-11 12:52+0100\n" "PO-Revision-Date: 2020-03-24 09:36+0100\n" "Last-Translator: Nagy Attila \n" "Language-Team: ATI-SZOFT\n" @@ -123,6 +123,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "" +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "" + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "&Beállítások" @@ -264,6 +268,10 @@ msgid_plural "A cloud connection is not available for some printers" msgstr[0] "" msgstr[1] "" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "" + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "A nyomtatás még folyamatban van. A Cura nem indíthat új nyomtatást USB-n keresztül, amíg az előző nyomtatás be nem fejeződött." @@ -498,10 +506,18 @@ msgctxt "@label" msgid "Anonymous" msgstr "Névtelen" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "Alkalmazás keretrendszer" +msgctxt "@title:column" +msgid "Applies on" +msgstr "" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "" @@ -688,6 +704,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "Számított" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "" @@ -1410,6 +1430,10 @@ msgctxt "@label" msgid "Draft" msgstr "" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "" + msgctxt "@action:button" msgid "Duplicate" msgstr "Másolat" @@ -1536,6 +1560,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Kiválasztás exportálása..." +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "" + msgctxt "@button" msgid "Export material archive" msgstr "" @@ -1569,10 +1597,23 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "Extruder G-kód zárás" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "Extruder G-kód kezdés" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "" + +#, python-brace-format +msgctxt "@label" +msgid "Extruder {0}" +msgstr "" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Extruder(ek) kikapcsolva" @@ -1639,6 +1680,11 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "" +#, python-brace-format +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "" + msgctxt "@label:category menu label" msgid "Favorites" msgstr "Kedvencek" @@ -1780,6 +1826,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "A rétegnézet kompatibilis módjának kényszerítése (újraindítás szükséges)" +msgid "FreeCAD trackpad" +msgstr "" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Előlnézet" @@ -1868,6 +1917,10 @@ msgctxt "@action" msgid "Get started" msgstr "Kezdjük el" +msgctxt "@label" +msgid "Global" +msgstr "" + msgctxt "@title:tab" msgid "Global Settings" msgstr "Általános beállítások" @@ -1917,6 +1970,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "Beállítás elrejtése" @@ -1993,6 +2050,10 @@ msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "" +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "" + msgctxt "@label" msgid "Infill" msgstr "Kitöltés" @@ -2696,6 +2757,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "" + msgctxt "@label" msgid "No time estimation available" msgstr "Nincs időbecslés" @@ -2797,6 +2862,10 @@ msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Egyszerre csak egy G-kód fájlt lehet betölteni. Az importálás kihagyva {0}" +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "" + msgctxt "@action:button" msgid "Open" msgstr "Megnyitás" @@ -2825,10 +2894,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "Projekt fájl megnyitása" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "" + msgctxt "@action:label" msgid "Open With" msgstr "" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "" + msgctxt "@action:button" msgid "Open as project" msgstr "Megnyitás projektként" @@ -3041,6 +3122,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "" +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "" + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "" @@ -3137,6 +3222,14 @@ msgctxt "@action:button" msgid "Print" msgstr "Nyomtatás" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Nyomtatás után" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Nyomtatás előtt" + msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -3443,8 +3536,8 @@ msgid "Provides support for reading model files." msgstr "Támogatást nyújt a modellfájlok olvasásához." msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Támogatást nyújt a 3MF fájlok írásához." +msgid "Provides support for writing 3MF and UCP files." +msgstr "" msgctxt "description" msgid "Provides support for writing MakerBot Format Packages." @@ -3688,7 +3781,11 @@ msgid "Save Cura project" msgstr "" msgctxt "@option" -msgid "Save Cura project and print file" +msgid "Save Cura project and .makerbot print file" +msgstr "" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" msgstr "" msgctxt "@title:window" @@ -3715,6 +3812,10 @@ msgctxt "@button" msgid "Save new profile" msgstr "" +msgctxt "@action:button" +msgid "Save project" +msgstr "" + msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "" @@ -3818,6 +3919,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "Hibajelentés küldése az UltiMaker -nek" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "" + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "" + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "" + msgctxt "@action:button" msgid "Send report" msgstr "Jelentés küldés" @@ -3870,6 +3983,10 @@ msgctxt "@title:tab" msgid "Settings" msgstr "Beállítások" +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "A beállításokat megváltoztattuk, hogy azok megfeleljenek az jelenleg elérhető extrudereknek:" @@ -3938,6 +4055,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "" + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "" @@ -3994,6 +4115,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Hibajelentés részletei" +msgctxt "@action:button" +msgid "Show settings" +msgstr "" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Összegzés megjelenítése projekt mentésekor" @@ -4070,10 +4195,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "" - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Szeletelés..." @@ -4082,6 +4203,10 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Simítás" +msgctxt "@label" +msgid "Solid" +msgstr "" + msgctxt "name" msgid "Solid View" msgstr "Felület nézet" @@ -4207,10 +4332,26 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "" +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Összegzés - Cura Project" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "" + msgctxt "@label" msgid "Support" msgstr "Támasz" @@ -4583,6 +4724,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "Ez a konfiguráció nem érhető el, mert a(z) %1 nem azonosítható. Kérjük, látogasson el a %2 webhelyre a megfelelő anyagprofil letöltéséhez." +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "Ez egy Cura projekt fájl. Szeretné projektként megnyitni, vagy importálni a modelleket?" @@ -4672,6 +4817,14 @@ msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "" +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "" + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "" + msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" msgstr "" @@ -4901,6 +5054,11 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "" +#, python-brace-format +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "" + msgctxt "@label:status" msgid "Unavailable" msgstr "Elérhetetlen" @@ -4913,14 +5071,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Csoport bontása" -msgctxt "@action:inmenu menubar:edit" -msgid "Print Before" -msgstr "Nyomtatás előtt" - -msgctxt "@action:inmenu menubar:edit" -msgid "Print After" -msgstr "Nyomtatás után" - msgctxt "@button" msgid "Uninstall" msgstr "" @@ -4929,6 +5079,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "" +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "" + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "" @@ -5118,6 +5272,10 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." msgstr "" +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "" + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Egyedi firmware feltöltése" @@ -5150,6 +5308,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "" +msgctxt "@title:column" +msgid "Value" +msgstr "" + msgctxt "name" msgid "Version Upgrade 2.1 to 2.2" msgstr "A 2.1-es verzió frissítése 2.2-re" @@ -5254,6 +5416,10 @@ msgctxt "name" msgid "Version Upgrade 5.4 to 5.5" msgstr "" +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "" @@ -5331,6 +5497,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "Milyen fípusú fényképezőgépet használunk?" @@ -5536,6 +5706,10 @@ msgctxt "@label" msgid "mm" msgstr "mm" +msgctxt "@label" +msgid "s" +msgstr "" + msgctxt "@info:status" msgid "today" msgstr "ma" @@ -5565,6 +5739,10 @@ msgstr "" #~ msgid "Error writing 3mf file." #~ msgstr "Hiba a 3mf fájl írásakor." +#~ msgctxt "description" +#~ msgid "Provides support for writing 3MF files." +#~ msgstr "Támogatást nyújt a 3MF fájlok írásához." + #~ msgctxt "@info:title" #~ msgid "Simulation View" #~ msgstr "Szimuláció nézet" diff --git a/resources/i18n/hu_HU/fdmextruder.def.json.po b/resources/i18n/hu_HU/fdmextruder.def.json.po index 25dcd91837e..c6ed0759975 100644 --- a/resources/i18n/hu_HU/fdmextruder.def.json.po +++ b/resources/i18n/hu_HU/fdmextruder.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-06-08 16:32+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: 2020-03-24 09:27+0100\n" "Last-Translator: Nagy Attila \n" "Language-Team: AT-VLOG\n" @@ -45,6 +45,10 @@ msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "Záró G-Code az extruderhez" +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "" + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Extruder abszolút vég pozíció" @@ -77,6 +81,10 @@ msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "Kezdő G-Code az extruderhez" +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "" + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Extruder Abszolút Indulási Helyzet" @@ -161,6 +169,14 @@ msgctxt "machine_extruder_cooling_fan_number description" msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." msgstr "Az extruderekhez társított nyomtatási hűtőventilátor száma.Csak akkor változtassa meg ezt az alapértelmezett 0-tól, ha minden extruder számára külön nyomtatási hűtőventilátor van." +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "" + msgctxt "machine_extruder_end_pos_x description" msgid "The x-coordinate of the ending position when turning the extruder off." msgstr "A befejező X koordináta, mikor az extruder kikapcsol." diff --git a/resources/i18n/hu_HU/fdmprinter.def.json.po b/resources/i18n/hu_HU/fdmprinter.def.json.po index 27eabd4bbcd..6e3d42800af 100644 --- a/resources/i18n/hu_HU/fdmprinter.def.json.po +++ b/resources/i18n/hu_HU/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: 2020-03-24 09:43+0100\n" "Last-Translator: Nagy Attila \n" "Language-Team: AT-VLOG\n" @@ -17,6 +17,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 2.2.4\n" +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "" + +msgctxt "brim_inside_margin description" +msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." +msgstr "" + msgctxt "ironing_inset description" msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." msgstr "A modell szélétől tartandó távolság. Ha a vasalás kifutna a test külső éleihez, az egyenetlenséget okozhatna ott." @@ -61,10 +69,6 @@ msgctxt "machine_disallowed_areas description" msgid "A list of polygons with areas the print head is not allowed to enter." msgstr "A sokszögek listája azon területekkel, ahová a nyomtatófej nem léphet be." -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "" - msgctxt "support_tree_branch_reach_limit description" msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " msgstr "" @@ -157,6 +161,10 @@ msgctxt "resolution description" msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" msgstr "Az összes beállítás, ami befolyásolja a nyomtatvány felbontását és minőségét. Ezekek a beállítások hatással vannak a minőségre és a nyomtatási sebességre." +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "" + msgctxt "alternate_extra_perimeter label" msgid "Alternate Extra Wall" msgstr "Alternatív extra fal" @@ -405,21 +413,21 @@ msgctxt "adhesion_type option brim" msgid "Brim" msgstr "Perem" -msgctxt "brim_gap label" -msgid "Brim Distance" +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" msgstr "" -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" +msgctxt "brim_gap label" +msgid "Brim Distance" msgstr "" msgctxt "brim_line_count label" msgid "Brim Line Count" msgstr "Perem vonalszám" -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Perem csak kívül" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "" msgctxt "brim_replaces_support label" msgid "Brim Replaces Support" @@ -461,6 +469,14 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "Építési tér hőmérséklete" +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "" + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "" + msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." msgstr "" @@ -873,6 +889,10 @@ msgctxt "cool_fan_enabled label" msgid "Enable Print Cooling" msgstr "Tárgyhűtés engedélyezés" +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "" + msgctxt "retraction_enable label" msgid "Enable Retraction" msgstr "Visszahúzás engedélyezés" @@ -905,6 +925,10 @@ msgctxt "ooze_shield_enabled description" msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." msgstr "Engedélyezi a szivárgáspajzsot. Ez létrehoz egy héjat a modell körül, úgy, hogy az nem ér a modellhez, azonban a fej visszaálláskor, az esetlegesen fúvókából kicsöppenő anyagmaradványokat 'letörli' ebben a héjban." +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "" + msgctxt "small_skin_on_surface description" msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." msgstr "" @@ -937,6 +961,10 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "Kényszerítő Perem nyomtatás a tárgy körül, még azokon a helyeken is, ahol egyébként támaszt kellene nyomtatni. Ezeken a helyeken a támasz első rétege helyett a perem lesz nyomtatva." +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "" + msgctxt "support_type option everywhere" msgid "Everywhere" msgstr "Mindenhol" @@ -1041,6 +1069,10 @@ msgctxt "speed_equalize_flow_width_factor label" msgid "Flow Equalization Ratio" msgstr "" +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "" + msgctxt "flow_rate_extrusion_offset_factor label" msgid "Flow Rate Compensation Factor" msgstr "" @@ -1053,6 +1085,10 @@ msgctxt "material_flow_temp_graph label" msgid "Flow Temperature Graph" msgstr "Adagolás hőmérséklet diagram" +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "" + msgctxt "material_flow_layer_0 description" msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." msgstr "Az első réteg áramlási kompenzációja: az eredeti rétegre extrudált anyag mennyiségét megszorozzuk ezzel az értékkel." @@ -1445,10 +1481,22 @@ msgctxt "wall_transition_filter_distance description" msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." msgstr "" +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "Ha az extra margót engedélyezzük, akkor a modell alá nyomtatott tutajt ki vogja egészíteni, és bővíteni kifelé irányban. Ez egy erősebb tutajt fog létrehozni, viszont több alapanyagot igényel, és csökkenti a használható nyomtatási területet." +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "meshfix_union_all description" msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." msgstr "Figyelmen kívül hagyja a hálóban lévő, átfedő térfogatokból származó belső geometriai alakzatokat, és a szintet egyben nyomtatja ki. Ez a nem kívánt belső üregek eltűnését eredményezheti." @@ -1677,6 +1725,10 @@ msgctxt "wall_0_inset description" msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." msgstr "Eltolás a külső fal útvonalára. Ha a külső fal kisebb, mint a fúvóka, és a belső falak után nyomtatódik, akkor ezt az eltolást használjuk, hogy a fúvóka furata a belső falakon nyúljon túl, a modell külseje helyett." +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "" + msgctxt "inset_direction option inside_out" msgid "Inside To Outside" msgstr "" @@ -1689,6 +1741,10 @@ msgctxt "support_interface_priority option interface_area_overwrite_support_area msgid "Interface preferred" msgstr "" +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "" + msgctxt "interlocking_beam_layer_count label" msgid "Interlocking Beam Layer Count" msgstr "" @@ -1829,6 +1885,30 @@ msgctxt "support_tree_limit_branch_reach description" msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" msgstr "" +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "" + msgctxt "cutting_mesh description" msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." msgstr "Korlátozza ennek a hálónak a térfogatát más hálókon belül. Ezt fel tudjuk használni egy háló nyomtatásának bizonyos területeire, különböző beállításokkal, vagy akát teljesen eltérő extruderrel." @@ -1926,8 +2006,10 @@ msgid "Make the extruder prime position absolute rather than relative to the las msgstr "A nyomtatófej kezdeti pozíciója legyen abszolút, és ne a fej utolsó ismert helyzetéhez viszonyítson." msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "A modell első és második rétege között átfedést hoz létre Z irányban.Ez képes kompenzálni azt a hibát, ami az első rétegben keletkezett. Ezt a hibát az okozza, hogy a tutaj légrésben az első réteg benyúlik, így nem alakul ki a tökéletes első réteg.Az első réteg feletti összes rész magasságát érinti ez a beállítás." +msgid "" +"Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" +"It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "" msgctxt "meshfix description" msgid "Make the meshes more suited for 3D printing." @@ -1953,10 +2035,18 @@ msgctxt "material label" msgid "Material" msgstr "Alapanyag" +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "" + msgctxt "material_guid label" msgid "Material GUID" msgstr "Alapanyag GUID" +msgctxt "material_type label" +msgid "Material Type" +msgstr "" + msgctxt "max_extrusion_before_wipe label" msgid "Material Volume Between Wipes" msgstr "Anyagmennyiség törlések között" @@ -2233,6 +2323,10 @@ msgctxt "ironing_monotonic label" msgid "Monotonic Ironing Order" msgstr "" +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "" + msgctxt "roofing_monotonic label" msgid "Monotonic Top Surface Order" msgstr "" @@ -2273,6 +2367,10 @@ msgctxt "magic_mesh_surface_mode option normal" msgid "Normal" msgstr "Normál" +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "" + msgctxt "support_structure option normal" msgid "Normal" msgstr "" @@ -2405,10 +2503,6 @@ msgctxt "ironing_only_highest_layer description" msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." msgstr "A vasalást csak a legfelső rétegen végzi el. Ha az alacsonyabb szinteken lévőfelső felületeken nem szükséges a sima felület, akkor ezzel időt takaríthatunk meg." -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Csak a modell külső falaihoz nyomtat Peremet. Ez csökkenti a perem nyomtatási költségét, és nem szükséges a belső részeken eltávolítani majd azt, továbbá a test letapadását nem csökkenti jelentősen." - msgctxt "ooze_shield_angle label" msgid "Ooze Shield Angle" msgstr "Szivárgáspajzs szöge" @@ -2469,6 +2563,10 @@ msgctxt "group_outer_walls description" msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." msgstr "Az azonos rétegben lévő különböző szigetek külső falait sorban nyomtatják. Amikor engedélyezve van, korlátozódik az áramlás változásainak mértéke, mert a falak típusonként nyomtathatók ki. Amikor letiltva van, az utazások számát a szigetek között csökkenti, mert ugyanazon szigeteken lévő falak csoportosítva vannak." +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "" + msgctxt "inset_direction option outside_in" msgid "Outside To Inside" msgstr "" @@ -2549,6 +2647,10 @@ msgctxt "prime_tower_line_width label" msgid "Prime Tower Line Width" msgstr "Előtorony vonalszélesség" +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "" + msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" msgstr "Előtorony minimális térfogat" @@ -2565,6 +2667,10 @@ msgctxt "speed_prime_tower label" msgid "Prime Tower Speed" msgstr "Előtorony sebesség" +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "" + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "Előtorony X helyzet" @@ -2581,18 +2687,14 @@ msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Nyomtatás löket" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "" + msgctxt "print_sequence label" msgid "Print Sequence" msgstr "Nyomtatási sorrend" -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "Nyomtatási sorrend kézi beállítása" - -msgctxt "user_defined_print_order_enabled description" -msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." -msgstr "Lehetővé teszi az objektumlista rendezését a nyomtatási sorrend kézi beállításához. A lista első objektuma lesz először nyomtatva." - msgctxt "speed_print label" msgid "Print Speed" msgstr "Nyomtatási sebesség" @@ -2601,6 +2703,10 @@ msgctxt "fill_outline_gaps label" msgid "Print Thin Walls" msgstr "Vékony falak nyomtatása" +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "" + msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "Nyomtasson egy tornyot a nyomtatandó tárgy mellett, amely abban segít, hogy a fejben lévő anyagváltást végre tudja hajtani. Kinyomtatja az előtoronyba a fejben marad előző alapanyag maradványokat, így már kitisztult fúvókával tudja a nyomtatást folytatni a nyomtatandó testen." @@ -2621,6 +2727,10 @@ msgctxt "fill_outline_gaps description" msgid "Print pieces of the model which are horizontally thinner than the nozzle size." msgstr "Nyomtassa a modell egyes részeit vékonyabbra a vízszintes síkon, mint a fúvóka mérete." +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "" + msgctxt "bridge_skin_speed_2 description" msgid "Print speed to use when printing the second bridge skin layer." msgstr "Ha használunk második hídréteget, akkor az ezzel a sebességgel fog nyomtatódni." @@ -2629,6 +2739,14 @@ msgctxt "bridge_skin_speed_3 description" msgid "Print speed to use when printing the third bridge skin layer." msgstr "Ha használunk harmadik hídréteget, akkor az ezzel a sebességgel fog nyomtatódni." +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "" + msgctxt "infill_before_walls description" msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." msgstr "Az adott rétegnél a kitöltést nyomtatjuk a falak nyomtatása előtt.A falak előzetes nyomtatása pontosabb falakat eredményezhet, azonban az átfedések nyomtatása gyengébb lehet. A kitöltés elsőnek nyomtatása szilárdabb falakhoz vezethet, de a feltöltési minta néha megjelenhet a felületen." @@ -2673,6 +2791,10 @@ msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "Tutaj légrés" +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "" + msgctxt "raft_base_extruder_nr label" msgid "Raft Base Extruder" msgstr "" @@ -2701,6 +2823,10 @@ msgctxt "raft_base_speed label" msgid "Raft Base Print Speed" msgstr "Tutajalap nyomtatási sebessége" +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "" + msgctxt "raft_base_thickness label" msgid "Raft Base Thickness" msgstr "Tutajalap vastagsága" @@ -2717,6 +2843,10 @@ msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" msgstr "Tutaj hűtés" +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "" + msgctxt "raft_interface_extruder_nr label" msgid "Raft Middle Extruder" msgstr "" @@ -2745,6 +2875,10 @@ msgctxt "raft_interface_speed label" msgid "Raft Middle Print Speed" msgstr "Tutajközép nyomtatási sebesség" +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "" + msgctxt "raft_interface_line_spacing label" msgid "Raft Middle Spacing" msgstr "Tutaj középső távolsága" @@ -2753,6 +2887,10 @@ msgctxt "raft_interface_thickness label" msgid "Raft Middle Thickness" msgstr "Tutaj közép vastagsága" +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "" + msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" msgstr "Tutaj gyorsulás" @@ -2769,6 +2907,10 @@ msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "Tutaj simítás" +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "" + msgctxt "raft_surface_extruder_nr label" msgid "Raft Top Extruder" msgstr "" @@ -2801,10 +2943,22 @@ msgctxt "raft_surface_speed label" msgid "Raft Top Print Speed" msgstr "Tutajfedél nyomtatási sebesség" +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "" + msgctxt "raft_surface_line_spacing label" msgid "Raft Top Spacing" msgstr "Tutaj felső távolsága" +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "" + msgctxt "z_seam_type option random" msgid "Random" msgstr "Véletlenszerű" @@ -2857,10 +3011,22 @@ msgctxt "carve_multiple_volumes label" msgid "Remove Mesh Intersection" msgstr "Keresztezések eltávolítása" +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "" + msgctxt "raft_remove_inside_corners label" msgid "Remove Raft Inside Corners" msgstr "" +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "" + msgctxt "carve_multiple_volumes description" msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." msgstr "Azon területek eltávolítása, ahol a hálók keresztezik egymást. Ezt általában ott kell használni, ahol kettős objektumok átfedésben vannak egymással." @@ -2869,6 +3035,18 @@ msgctxt "remove_empty_first_layers description" msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." msgstr "Távolítsa el az üres rétegeket amik az első nyomtatott réteg alatt, ha vannak. Ennek a beállításnak a letiltása esetén az első rétegek üresek lehetnek, ha a Szelet-tolerancia beállítást Kizárólagos vagy Közepes értékre állítják." +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "" + msgctxt "raft_remove_inside_corners description" msgid "Remove inside corners from the raft, causing the raft to become convex." msgstr "" @@ -2889,6 +3067,10 @@ msgctxt "skin_outline_count description" msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." msgstr "Lecseréli az alsó/felső felületi minta legkülsőbb falait koncentrikus vonalra.Egy vagy két vonal használata javítja a felső záró felületeket, ott, ahol még a kitöltés látható." +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "" + msgctxt "support_tree_rest_preference label" msgid "Rest Preference" msgstr "" @@ -2961,6 +3143,10 @@ msgctxt "z_seam_corner label" msgid "Seam Corner Preference" msgstr "Sarok varrat preferálás" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Nyomtatási sorrend kézi beállítása" + msgctxt "draft_shield_height_limitation description" msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." msgstr "Beállítja a huzatpajzs magasságát. Kiválasztható, hogy a modell teljes magasságában, vagy egy részleges magasságig épüljön a pajzs." @@ -3361,10 +3547,6 @@ msgctxt "support_interface_priority label" msgid "Support Interface Priority" msgstr "" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Interfész felosztás" - msgctxt "speed_support_interface label" msgid "Support Interface Speed" msgstr "Támasz interfész sebesség" @@ -3717,6 +3899,10 @@ msgctxt "magic_fuzzy_skin_point_dist description" msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." msgstr "Az egyes vonalszakaszokon létrehozott rücskök közötti átlagos távolság. Mivel az eredeti pontok eldobásra kerülnek, a sok rücsök a felbontás csökkenését fogja eredményezni. Ennek az értéknek meg kell haladnia a rücskös falvastagság felét." +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "" + msgctxt "machine_acceleration description" msgid "The default acceleration of print head movement." msgstr "A nyomtatófej mozgásának alapértelmezett gyorsulása." @@ -4193,6 +4379,10 @@ msgctxt "jerk_travel description" msgid "The maximum instantaneous velocity change with which travel moves are made." msgstr "A maximális pillanatnyi sebességváltozás változtatása a fej utazási mozgása alatt." +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "" + msgctxt "machine_max_feedrate_x description" msgid "The maximum speed for the motor of the X-direction." msgstr "Az X motor maximális sebessége." @@ -4305,6 +4495,18 @@ msgctxt "raft_base_wall_count description" msgid "The number of contours to print around the linear pattern in the base layer of the raft." msgstr "" +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "" + msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "" @@ -4693,6 +4895,10 @@ msgctxt "machine_gcode_flavor description" msgid "The type of g-code to be generated." msgstr "A létrehozandó g-kód típusa." +msgctxt "material_type description" +msgid "The type of material used." +msgstr "" + msgctxt "coasting_volume description" msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." msgstr "A csöppenés mértéke. Ennek az értéknek általában közel kell lennie a fúvóka átmérőjéhez." @@ -4741,10 +4947,22 @@ msgctxt "bridge_wall_coast description" msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." msgstr "Ez határozza meg, hogy a fejnek a szélekhez képest mennyi a távolsága a hídfal megkezdése előtt. A híd nyomtatásának megkezdése előtt az olvadókamra nyomást csökkentheti, ami így vízszintesebb hídhoz vezethez." +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "Ez a beállítás azt szabályozza, hogy tutajnak hány belső sarka legyen lekerekítve. A belső sarkokat félkörre kerekíti le, aminek sugara az itt megadott érték. Ez a beállítás eltávolítja a tutaj körvonalában lévő olyan lyukakat is, amik kisebbek, mint egy ilyen kör." +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "retraction_count_max description" msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." msgstr "Ez a beállítás korlátozza a minimális extrudálási távolság ablakon belüli visszahúzódások számát. Az ablakon belüli további visszahúzódásokat figyelmen kívül hagyjuk. Ezzel elkerülhető, hogy ugyanazon a szálpozicióban többször visszahúzódjon, mivel ez a nyomtatószálat ellapíthatja, eldarálhatja az extruder adagolókeréknél és ez elakadási problémákat okozhat." @@ -5105,10 +5323,6 @@ msgctxt "wall_overhang_angle description" msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." msgstr "" -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "Amikor a szeletelő ellenőrzi, hogy hol tart a támasz a modell alatt vagy fölött, szükség esetén a megadott magasságú lépéseket teszi meg. Az alacsonyabb értékek lassabb szeleteést okoznak, míg a magasabb érték a normál támasz kinyomtatását eredményezhetik olyan helyeken, ahol támasz interfészt kellene nyomtatni." - msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." msgstr "" @@ -5501,42 +5715,26 @@ msgctxt "travel description" msgid "travel" msgstr "fej átpozícionálás" -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "" +#~ msgctxt "user_defined_print_order_enabled description" +#~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +#~ msgstr "Lehetővé teszi az objektumlista rendezését a nyomtatási sorrend kézi beállításához. A lista első objektuma lesz először nyomtatva." -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "" +#~ msgctxt "brim_outside_only label" +#~ msgid "Brim Only on Outside" +#~ msgstr "Perem csak kívül" -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "" +#~ msgctxt "layer_0_z_overlap description" +#~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +#~ msgstr "A modell első és második rétege között átfedést hoz létre Z irányban.Ez képes kompenzálni azt a hibát, ami az első rétegben keletkezett. Ezt a hibát az okozza, hogy a tutaj légrésben az első réteg benyúlik, így nem alakul ki a tökéletes első réteg.Az első réteg feletti összes rész magasságát érinti ez a beállítás." -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "" +#~ msgctxt "brim_outside_only description" +#~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +#~ msgstr "Csak a modell külső falaihoz nyomtat Peremet. Ez csökkenti a perem nyomtatási költségét, és nem szükséges a belső részeken eltávolítani majd azt, továbbá a test letapadását nem csökkenti jelentősen." -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "" +#~ msgctxt "support_interface_skip_height label" +#~ msgid "Support Interface Resolution" +#~ msgstr "Interfész felosztás" -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "" +#~ msgctxt "support_interface_skip_height description" +#~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +#~ msgstr "Amikor a szeletelő ellenőrzi, hogy hol tart a támasz a modell alatt vagy fölött, szükség esetén a megadott magasságú lépéseket teszi meg. Az alacsonyabb értékek lassabb szeleteést okoznak, míg a magasabb érték a normál támasz kinyomtatását eredményezhetik olyan helyeken, ahol támasz interfészt kellene nyomtatni." diff --git a/resources/i18n/it_IT/cura.po b/resources/i18n/it_IT/cura.po index 48918d38836..1f21b8339a2 100644 --- a/resources/i18n/it_IT/cura.po +++ b/resources/i18n/it_IT/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-31 19:13+0100\n" +"POT-Creation-Date: 2024-03-11 12:52+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -117,6 +117,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "&Salva progetto..." +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "" + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "&Impostazioni" @@ -261,6 +265,10 @@ msgid_plural "A cloud connection is not available for some printers" msgstr[0] "Non è disponibile una connessione cloud per una stampante" msgstr[1] "Non è disponibile una connessione cloud per alcune stampanti" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "" + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "Stampa ancora in corso. Cura non può avviare un'altra stampa tramite USB finché la precedente non è stata completata." @@ -495,10 +503,18 @@ msgctxt "@label" msgid "Anonymous" msgstr "Anonimo" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "Struttura applicazione" +msgctxt "@title:column" +msgid "Applies on" +msgstr "" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "Applica offset estrusore a gcode" @@ -685,6 +701,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "Calcolato" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "Rendering fotocamera:" @@ -1415,6 +1435,10 @@ msgctxt "@label" msgid "Draft" msgstr "Bozza" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "" + msgctxt "@action:button" msgid "Duplicate" msgstr "Duplica" @@ -1541,6 +1565,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Esporta selezione..." +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "" + msgctxt "@button" msgid "Export material archive" msgstr "Esporta archivio materiali" @@ -1574,10 +1602,23 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "Codice G fine estrusore" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "Codice G avvio estrusore" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "" + +#, python-brace-format +msgctxt "@label" +msgid "Extruder {0}" +msgstr "" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Estrusore disabilitato" @@ -1644,6 +1685,11 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Impossibile salvare archivio materiali" +#, python-brace-format +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "" + msgctxt "@label:category menu label" msgid "Favorites" msgstr "Preferiti" @@ -1785,6 +1831,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Forzare la modalità di compatibilità visualizzazione strato (riavvio necessario)" +msgid "FreeCAD trackpad" +msgstr "" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Visualizzazione frontale" @@ -1873,6 +1922,10 @@ msgctxt "@action" msgid "Get started" msgstr "Per iniziare" +msgctxt "@label" +msgid "Global" +msgstr "" + msgctxt "@title:tab" msgid "Global Settings" msgstr "Impostazioni globali" @@ -1922,6 +1975,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "Nascondi tutte le stampanti collegate" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "Nascondi questa impostazione" @@ -1998,6 +2055,10 @@ msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "Per utilizzare il pacchetto è necessario riavviare Cura" +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "" + msgctxt "@label" msgid "Infill" msgstr "Riempimento" @@ -2701,6 +2762,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "Nessun risultato trovato con il filtro corrente" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "" + msgctxt "@label" msgid "No time estimation available" msgstr "Nessuna stima di tempo disponibile" @@ -2802,6 +2867,10 @@ msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "È possibile caricare un solo file codice G per volta. Importazione saltata {0}" +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "" + msgctxt "@action:button" msgid "Open" msgstr "Apri" @@ -2830,10 +2899,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "Apri file progetto" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "" + msgctxt "@action:label" msgid "Open With" msgstr "Apri con" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "" + msgctxt "@action:button" msgid "Open as project" msgstr "Apri come progetto" @@ -3050,6 +3131,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "Accedere per ottenere i plugin e i materiali verificati per UltiMaker Cura Enterprise" +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "" + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "Sincronizzare i profili del materiale con le stampanti prima di iniziare a stampare." @@ -3146,6 +3231,14 @@ msgctxt "@action:button" msgid "Print" msgstr "Stampa" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Stampa dopo" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Stampa prima" + msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -3452,8 +3545,8 @@ msgid "Provides support for reading model files." msgstr "Fornisce supporto per la lettura dei file modello." msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Fornisce il supporto per la scrittura di file 3MF." +msgid "Provides support for writing 3MF and UCP files." +msgstr "" msgctxt "description" msgid "Provides support for writing MakerBot Format Packages." @@ -3697,8 +3790,12 @@ msgid "Save Cura project" msgstr "Salva progetto Cura" msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "Salva progetto Cura e stampa file" +msgid "Save Cura project and .makerbot print file" +msgstr "" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" +msgstr "" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3724,6 +3821,10 @@ msgctxt "@button" msgid "Save new profile" msgstr "Salva nuovo profilo" +msgctxt "@action:button" +msgid "Save project" +msgstr "" + msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "Salvare il file .umm su una chiavetta USB." @@ -3827,6 +3928,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "Inviare il rapporto su crash a UltiMaker" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "" + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "" + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "" + msgctxt "@action:button" msgid "Send report" msgstr "Invia report" @@ -3879,6 +3992,10 @@ msgctxt "@title:tab" msgid "Settings" msgstr "Impostazioni" +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "Le impostazioni sono state modificate in base all’attuale disponibilità di estrusori:" @@ -3947,6 +4064,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "L'apertura dei file dal desktop o da applicazioni esterne deve essere eseguita nella stessa istanza di Cura?" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "" + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "È necessario pulire il piano di stampa prima di caricare un nuovo modello nella singola istanza di Cura?" @@ -4003,6 +4124,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Mostra il rapporto su crash dettagliato" +msgctxt "@action:button" +msgid "Show settings" +msgstr "" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Visualizza una finestra di riepilogo quando si salva un progetto" @@ -4079,10 +4204,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "Sezionamento non riuscito" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "Sezionamento non riuscito con un errore imprevisto. Valutare se segnalare un bug nel registro problemi." - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Sezionamento in corso..." @@ -4091,6 +4212,10 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Sistemazione" +msgctxt "@label" +msgid "Solid" +msgstr "" + msgctxt "name" msgid "Solid View" msgstr "Visualizzazione compatta" @@ -4216,10 +4341,26 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Profilo {0} importato correttamente." +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Riepilogo - Progetto Cura" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "" + msgctxt "@label" msgid "Support" msgstr "Supporto" @@ -4599,6 +4740,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "Questa configurazione non è disponibile perché %1 non viene riconosciuto. Visitare %2 per scaricare il profilo materiale corretto." +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "Questo è un file progetto Cura. Vuoi aprirlo come progetto o importarne i modelli?" @@ -4688,6 +4833,14 @@ msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Questa impostazione viene risolta dai valori in conflitto specifici dell'estrusore:" +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "" + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "" + msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" msgstr "Questa versione non è destinata all'uso in produzione. Se riscontri dei problemi, segnalali sulla nostra pagina GitHub, citando la versione completa {self.getVersion()}" @@ -4919,6 +5072,11 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Impossibile avviare un nuovo processo di accesso. Verificare se è ancora attivo un altro tentativo di accesso." +#, python-brace-format +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "" + msgctxt "@label:status" msgid "Unavailable" msgstr "Non disponibile" @@ -4931,14 +5089,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Separa modelli" -msgctxt "@action:inmenu menubar:edit" -msgid "Print Before" -msgstr "Stampa prima" - -msgctxt "@action:inmenu menubar:edit" -msgid "Print After" -msgstr "Stampa dopo" - msgctxt "@button" msgid "Uninstall" msgstr "Disinstalla" @@ -4947,6 +5097,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Unità" +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "" + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "Configurazione universale del sistema di build" @@ -5136,6 +5290,10 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." msgstr "Configurazioni aggiornamenti da Cura 5.4 a Cura 5.5" +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "" + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Carica il firmware personalizzato" @@ -5168,6 +5326,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "Libreria utilità, tra cui generazione diagramma Voronoi" +msgctxt "@title:column" +msgid "Value" +msgstr "" + msgctxt "name" msgid "Version Upgrade 2.1 to 2.2" msgstr "Aggiornamento della versione da 2.1 a 2.2" @@ -5272,6 +5434,10 @@ msgctxt "name" msgid "Version Upgrade 5.4 to 5.5" msgstr "Aggiornamento versione da 5.4 a 5.5" +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Visualizza le stampanti in Digital Factory" @@ -5349,6 +5515,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "Quale stampante si desidera configurare?" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "Quale tipo di rendering della fotocamera è necessario utilizzare?" @@ -5565,6 +5735,10 @@ msgctxt "@label" msgid "mm" msgstr "mm" +msgctxt "@label" +msgid "s" +msgstr "" + msgctxt "@info:status" msgid "today" msgstr "oggi" @@ -5592,3 +5766,15 @@ msgstr "Impossibile scaricare i plugin {}" #~ msgid "Provides support for exporting Cura profiles." #~ msgstr "Fornisce assistenza per l'esportazione di profili Cura." + +#~ msgctxt "description" +#~ msgid "Provides support for writing 3MF files." +#~ msgstr "Fornisce il supporto per la scrittura di file 3MF." + +#~ msgctxt "@option" +#~ msgid "Save Cura project and print file" +#~ msgstr "Salva progetto Cura e stampa file" + +#~ msgctxt "@message" +#~ msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +#~ msgstr "Sezionamento non riuscito con un errore imprevisto. Valutare se segnalare un bug nel registro problemi." diff --git a/resources/i18n/it_IT/fdmextruder.def.json.po b/resources/i18n/it_IT/fdmextruder.def.json.po index 4b3110e86e5..686cd9ea289 100644 --- a/resources/i18n/it_IT/fdmextruder.def.json.po +++ b/resources/i18n/it_IT/fdmextruder.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-06-08 16:32+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -40,6 +40,10 @@ msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "Codice G fine estrusore" +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "" + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Assoluto posizione fine estrusore" @@ -72,6 +76,10 @@ msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "Codice G avvio estrusore" +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "" + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Assoluto posizione avvio estrusore" @@ -156,6 +164,14 @@ msgctxt "machine_extruder_cooling_fan_number description" msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." msgstr "Il numero di ventole di raffreddamento stampa abbinate a questo estrusore. Modificarlo dal valore predefinito 0 solo quando si ha una ventola di raffreddamento diversa per ciascun estrusore." +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "" + msgctxt "machine_extruder_end_pos_x description" msgid "The x-coordinate of the ending position when turning the extruder off." msgstr "La coordinata x della posizione di fine allo spegnimento dell’estrusore." diff --git a/resources/i18n/it_IT/fdmprinter.def.json.po b/resources/i18n/it_IT/fdmprinter.def.json.po index e9fc77ca3c2..73453ed1e78 100644 --- a/resources/i18n/it_IT/fdmprinter.def.json.po +++ b/resources/i18n/it_IT/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,6 +12,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "" + +msgctxt "brim_inside_margin description" +msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." +msgstr "" + msgctxt "ironing_inset description" msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." msgstr "Distanza da mantenere dai bordi del modello. La stiratura fino in fondo sino al bordo del reticolo può causare la formazione di un bordo frastagliato nella stampa." @@ -56,10 +64,6 @@ msgctxt "machine_disallowed_areas description" msgid "A list of polygons with areas the print head is not allowed to enter." msgstr "Un elenco di poligoni con aree alle quali la testina di stampa non può accedere." -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "Una parte completamente racchiusa all'interno di un'altra parte può generare un brim esterno che tocca l'interno dell'altra parte. Questo rimuove tutti i brim entro questa distanza dai fori interni." - msgctxt "support_tree_branch_reach_limit description" msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " msgstr "Raccomandazione sull'entità della possibile distanza dei rami dai punti che supportano. I rami possono violare questo valore per raggiungere la loro destinazione (piano di stampa o parte piatta del modello). Ridurre questo valore può rendere il supporto più robusto, ma incrementa la quantità di rami (e, di conseguenza, la quantità di materiale/il tempo di stampa)" @@ -152,6 +156,10 @@ msgctxt "resolution description" msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" msgstr "Indica tutte le impostazioni che influiscono sulla risoluzione della stampa. Queste impostazioni hanno un elevato impatto sulla qualità (e il tempo di stampa)" +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "" + msgctxt "alternate_extra_perimeter label" msgid "Alternate Extra Wall" msgstr "Parete supplementare alternativa" @@ -400,21 +408,21 @@ msgctxt "adhesion_type option brim" msgid "Brim" msgstr "Brim" +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "" + msgctxt "brim_gap label" msgid "Brim Distance" msgstr "Distanza del Brim" -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "Margine di aggiramento interno del brim" - msgctxt "brim_line_count label" msgid "Brim Line Count" msgstr "Numero di linee del brim" -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Brim solo sull’esterno" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "" msgctxt "brim_replaces_support label" msgid "Brim Replaces Support" @@ -456,6 +464,14 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "Temperatura volume di stampa" +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "" + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "" + msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." msgstr "Attivando questa impostazione, la tua torre di primerizzazione avrà un bordo, anche se il modello non lo prevede. Se desideri una base più robusta per una torre alta, puoi aumentare l'altezza della base." @@ -868,6 +884,10 @@ msgctxt "cool_fan_enabled label" msgid "Enable Print Cooling" msgstr "Abilitazione raffreddamento stampa" +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "" + msgctxt "retraction_enable label" msgid "Enable Retraction" msgstr "Abilitazione della retrazione" @@ -900,6 +920,10 @@ msgctxt "ooze_shield_enabled description" msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." msgstr "Abilita il riparo esterno del materiale fuoriuscito. Questo crea un guscio intorno al modello per pulitura con un secondo ugello, se è alla stessa altezza del primo ugello." +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "" + msgctxt "small_skin_on_surface description" msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." msgstr "Abilita piccole (fino a \"piccola larghezza superiore/inferiore) aree sul livello più alto (esposto all'aria) per il riempimento con muri invece che con il modello predefinito." @@ -932,6 +956,10 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "Abilita la stampa del brim intorno al modello anche se quello spazio dovrebbe essere occupato dal supporto. Sostituisce alcune zone del primo strato del supporto con zone del brim." +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "" + msgctxt "support_type option everywhere" msgid "Everywhere" msgstr "In Tutti i Possibili Punti" @@ -1036,6 +1064,10 @@ msgctxt "speed_equalize_flow_width_factor label" msgid "Flow Equalization Ratio" msgstr "Rapporto di equalizzazione del flusso" +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "" + msgctxt "flow_rate_extrusion_offset_factor label" msgid "Flow Rate Compensation Factor" msgstr "Fattore di compensazione del flusso" @@ -1048,6 +1080,10 @@ msgctxt "material_flow_temp_graph label" msgid "Flow Temperature Graph" msgstr "Grafico della temperatura del flusso" +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "" + msgctxt "material_flow_layer_0 description" msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." msgstr "Determina la compensazione del flusso per il primo strato: la quantità di materiale estruso sullo strato iniziale viene moltiplicata per questo valore." @@ -1440,10 +1476,22 @@ msgctxt "wall_transition_filter_distance description" msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." msgstr "Se si pensa di eseguire la transizione avanti e indietro tra numeri di pareti differenti in rapida successione, non eseguire alcuna transizione. Rimuovere le transizioni se sono più vicine di questa distanza." +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "Se è abilitata la funzione raft, questo valore indica di quanto il raft fuoriesce rispetto al perimetro esterno del modello. Aumentando questo margine si creerà un raft più robusto, utilizzando però più materiale e lasciando meno spazio per la stampa." +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "meshfix_union_all description" msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." msgstr "Questa funzione ignora la geometria interna derivante da volumi in sovrapposizione all’interno di una maglia, stampandoli come un unico volume. Questo può comportare la scomparsa di cavità interne." @@ -1672,6 +1720,10 @@ msgctxt "wall_0_inset description" msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." msgstr "Inserto applicato al percorso della parete esterna. Se la parete esterna è di dimensioni inferiori all’ugello e stampata dopo le pareti interne, utilizzare questo offset per fare in modo che il foro dell’ugello si sovrapponga alle pareti interne anziché all’esterno del modello." +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "" + msgctxt "inset_direction option inside_out" msgid "Inside To Outside" msgstr "Dall'interno all'esterno" @@ -1684,6 +1736,10 @@ msgctxt "support_interface_priority option interface_area_overwrite_support_area msgid "Interface preferred" msgstr "Interfaccia preferita" +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "" + msgctxt "interlocking_beam_layer_count label" msgid "Interlocking Beam Layer Count" msgstr "Conteggio degli strati delle travi ad incastro" @@ -1824,6 +1880,30 @@ msgctxt "support_tree_limit_branch_reach description" msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" msgstr "Limita la distanza di ogni ramo dal punto che supporta. Questo può rendere il supporto più robusto, ma aumenta la quantità di rami (e, di conseguenza, la quantità di materiale/il tempo di stampa)" +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "" + msgctxt "cutting_mesh description" msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." msgstr "Limita il volume di questa maglia all'interno di altre maglie. Questo può essere utilizzato per stampare talune aree di una maglia con impostazioni diverse e con un diverso estrusore." @@ -1921,8 +2001,10 @@ msgid "Make the extruder prime position absolute rather than relative to the las msgstr "Rende la posizione di innesco estrusore assoluta anziché relativa rispetto all’ultima posizione nota della testina." msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "Effettua il primo e secondo strato di sovrapposizione modello nella direzione Z per compensare il filamento perso nel traferro. Tutti i modelli sopra il primo strato del modello saranno spostati verso il basso di questa quantità." +msgid "" +"Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" +"It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "" msgctxt "meshfix description" msgid "Make the meshes more suited for 3D printing." @@ -1948,10 +2030,18 @@ msgctxt "material label" msgid "Material" msgstr "Materiale" +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "" + msgctxt "material_guid label" msgid "Material GUID" msgstr "GUID materiale" +msgctxt "material_type label" +msgid "Material Type" +msgstr "" + msgctxt "max_extrusion_before_wipe label" msgid "Material Volume Between Wipes" msgstr "Volume di materiale tra le operazioni di pulitura" @@ -2228,6 +2318,10 @@ msgctxt "ironing_monotonic label" msgid "Monotonic Ironing Order" msgstr "Ordine di stiratura monotonico" +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "" + msgctxt "roofing_monotonic label" msgid "Monotonic Top Surface Order" msgstr "Ordine superficie superiore monotonico" @@ -2268,6 +2362,10 @@ msgctxt "magic_mesh_surface_mode option normal" msgid "Normal" msgstr "Normale" +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "" + msgctxt "support_structure option normal" msgid "Normal" msgstr "Normale" @@ -2400,10 +2498,6 @@ msgctxt "ironing_only_highest_layer description" msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." msgstr "Effettua lo stiramento solo dell'ultimissimo strato della maglia. È possibile quindi risparmiare tempo se gli strati inferiori non richiedono una finitura con superficie liscia." -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Stampa il brim solo sull’esterno del modello. Questo riduce la quantità del brim che si deve rimuovere in seguito, mentre non riduce particolarmente l’adesione al piano." - msgctxt "ooze_shield_angle label" msgid "Ooze Shield Angle" msgstr "Angolo del riparo materiale fuoriuscito" @@ -2464,6 +2558,10 @@ msgctxt "group_outer_walls description" msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." msgstr "Le pareti esterne di diverse isole nello stesso strato vengono stampate in sequenza. Quando abilitata, la quantità di variazione del flusso è limitata perché le pareti vengono stampate un tipo alla volta; quando disabilitata, si riduce il numero di spostamenti tra le isole perché le pareti nello stesso isola sono raggruppate." +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "" + msgctxt "inset_direction option outside_in" msgid "Outside To Inside" msgstr "Dall'esterno all'interno" @@ -2544,6 +2642,10 @@ msgctxt "prime_tower_line_width label" msgid "Prime Tower Line Width" msgstr "Larghezza della linea della torre di innesco" +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "" + msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" msgstr "Volume minimo torre di innesco" @@ -2560,6 +2662,10 @@ msgctxt "speed_prime_tower label" msgid "Prime Tower Speed" msgstr "Velocità della torre di innesco" +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "" + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "Posizione X torre di innesco" @@ -2576,18 +2682,14 @@ msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Jerk stampa" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "" + msgctxt "print_sequence label" msgid "Print Sequence" msgstr "Sequenza di stampa" -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "Imposta manualmente la sequenza di stampa" - -msgctxt "user_defined_print_order_enabled description" -msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." -msgstr "Consente di ordinare l'elenco degli oggetti per impostare manualmente la sequenza di stampa. Il primo oggetto dell'elenco sarà stampato per primo." - msgctxt "speed_print label" msgid "Print Speed" msgstr "Velocità di stampa" @@ -2596,6 +2698,10 @@ msgctxt "fill_outline_gaps label" msgid "Print Thin Walls" msgstr "Stampa pareti sottili" +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "" + msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "Stampa una torre accanto alla stampa che serve per innescare il materiale dopo ogni cambio ugello." @@ -2616,6 +2722,10 @@ msgctxt "fill_outline_gaps description" msgid "Print pieces of the model which are horizontally thinner than the nozzle size." msgstr "Stampa parti del modello orizzontalmente più sottili delle dimensioni dell'ugello." +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "" + msgctxt "bridge_skin_speed_2 description" msgid "Print speed to use when printing the second bridge skin layer." msgstr "La velocità di stampa da usare per stampare il secondo strato del rivestimento esterno ponte." @@ -2624,6 +2734,14 @@ msgctxt "bridge_skin_speed_3 description" msgid "Print speed to use when printing the third bridge skin layer." msgstr "La velocità di stampa da usare per stampare il terzo strato del rivestimento esterno ponte." +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "" + msgctxt "infill_before_walls description" msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." msgstr "Stampa il riempimento prima delle pareti. La stampa preliminare delle pareti può avere come risultato pareti più precise, ma sbalzi di stampa peggiori. La stampa preliminare del riempimento produce pareti più robuste, anche se a volte la configurazione (o pattern) di riempimento potrebbe risultare visibile attraverso la superficie." @@ -2668,6 +2786,10 @@ msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "Traferro del raft" +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "" + msgctxt "raft_base_extruder_nr label" msgid "Raft Base Extruder" msgstr "Estrusore della base del raft" @@ -2696,6 +2818,10 @@ msgctxt "raft_base_speed label" msgid "Raft Base Print Speed" msgstr "Velocità di stampa della base del raft" +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "" + msgctxt "raft_base_thickness label" msgid "Raft Base Thickness" msgstr "Spessore della base del raft" @@ -2712,6 +2838,10 @@ msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" msgstr "Velocità della ventola per il raft" +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "" + msgctxt "raft_interface_extruder_nr label" msgid "Raft Middle Extruder" msgstr "Estrusore intermedio del raft" @@ -2740,6 +2870,10 @@ msgctxt "raft_interface_speed label" msgid "Raft Middle Print Speed" msgstr "Velocità di stampa raft intermedio" +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "" + msgctxt "raft_interface_line_spacing label" msgid "Raft Middle Spacing" msgstr "Spaziatura dello strato intermedio del raft" @@ -2748,6 +2882,10 @@ msgctxt "raft_interface_thickness label" msgid "Raft Middle Thickness" msgstr "Spessore dello strato intermedio del raft" +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "" + msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" msgstr "Accelerazione di stampa del raft" @@ -2764,6 +2902,10 @@ msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "Smoothing raft" +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "" + msgctxt "raft_surface_extruder_nr label" msgid "Raft Top Extruder" msgstr "Estrusore superiore del raft" @@ -2796,10 +2938,22 @@ msgctxt "raft_surface_speed label" msgid "Raft Top Print Speed" msgstr "Velocità di stampa parte superiore del raft" +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "" + msgctxt "raft_surface_line_spacing label" msgid "Raft Top Spacing" msgstr "Spaziatura superiore del raft" +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "" + msgctxt "z_seam_type option random" msgid "Random" msgstr "Casuale" @@ -2852,10 +3006,22 @@ msgctxt "carve_multiple_volumes label" msgid "Remove Mesh Intersection" msgstr "Rimuovi intersezione maglie" +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "" + msgctxt "raft_remove_inside_corners label" msgid "Remove Raft Inside Corners" msgstr "Rimuovi angoli interni raft" +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "" + msgctxt "carve_multiple_volumes description" msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." msgstr "Rimuove le aree in cui maglie multiple si sovrappongono tra loro. Questo può essere usato se oggetti di due materiali uniti si sovrappongono tra loro." @@ -2864,6 +3030,18 @@ msgctxt "remove_empty_first_layers description" msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." msgstr "Rimuovere gli strati vuoti sotto il primo strato stampato, se presenti. La disabilitazione di questa impostazione può provocare la presenza di primi strati vuoti, se l'impostazione di Tolleranza di sezionamento è impostata su Esclusiva o Intermedia." +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "" + msgctxt "raft_remove_inside_corners description" msgid "Remove inside corners from the raft, causing the raft to become convex." msgstr "Consente di rimuovere angoli interni dal raft, facendolo diventare convesso." @@ -2884,6 +3062,10 @@ msgctxt "skin_outline_count description" msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." msgstr "Sostituisce la parte più esterna della configurazione degli strati superiori/inferiori con una serie di linee concentriche. L’utilizzo di una o due linee migliora le parti superiori (tetti) che iniziano sul materiale di riempimento." +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "" + msgctxt "support_tree_rest_preference label" msgid "Rest Preference" msgstr "Preferenza di appoggio" @@ -2956,6 +3138,10 @@ msgctxt "z_seam_corner label" msgid "Seam Corner Preference" msgstr "Preferenze angolo giunzione" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Imposta manualmente la sequenza di stampa" + msgctxt "draft_shield_height_limitation description" msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." msgstr "Imposta l’altezza del riparo paravento. Scegliere di stampare il riparo paravento all’altezza totale del modello o a un’altezza limitata." @@ -3356,10 +3542,6 @@ msgctxt "support_interface_priority label" msgid "Support Interface Priority" msgstr "Priorità interfaccia di supporto" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Risoluzione interfaccia supporto" - msgctxt "speed_support_interface label" msgid "Support Interface Speed" msgstr "Velocità interfaccia supporto" @@ -3712,6 +3894,10 @@ msgctxt "magic_fuzzy_skin_point_dist description" msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." msgstr "Indica la distanza media tra i punti casuali introdotti su ciascun segmento di linea. Si noti che i punti originali del poligono vengono scartati, perciò un elevato livello di regolarità si traduce in una riduzione della risoluzione. Questo valore deve essere superiore alla metà dello spessore del rivestimento incoerente (fuzzy)." +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "" + msgctxt "machine_acceleration description" msgid "The default acceleration of print head movement." msgstr "Indica l’accelerazione predefinita del movimento della testina di stampa." @@ -4188,6 +4374,10 @@ msgctxt "jerk_travel description" msgid "The maximum instantaneous velocity change with which travel moves are made." msgstr "Indica il cambio della velocità istantanea massima con cui vengono effettuati gli spostamenti." +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "" + msgctxt "machine_max_feedrate_x description" msgid "The maximum speed for the motor of the X-direction." msgstr "Indica la velocità massima del motore per la direzione X." @@ -4300,6 +4490,18 @@ msgctxt "raft_base_wall_count description" msgid "The number of contours to print around the linear pattern in the base layer of the raft." msgstr "Il numero di contorni da stampare intorno alla configurazione lineare nello strato di base del raft." +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "" + msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "Numero di layer di riempimento che supportano i bordi del rivestimento." @@ -4688,6 +4890,10 @@ msgctxt "machine_gcode_flavor description" msgid "The type of g-code to be generated." msgstr "Il tipo di codice G da generare." +msgctxt "material_type description" +msgid "The type of material used." +msgstr "" + msgctxt "coasting_volume description" msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." msgstr "È il volume di materiale fuoriuscito. Questo valore deve di norma essere prossimo al diametro dell'ugello al cubo." @@ -4736,10 +4942,22 @@ msgctxt "bridge_wall_coast description" msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." msgstr "Questo comanda la distanza che l’estrusore deve percorrere in coasting immediatamente dopo l’inizio di una parete ponte. Il coasting prima dell’inizio del ponte può ridurre la pressione nell’ugello e generare un ponte più piatto." +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "Questa impostazione controlla l'entità dell'arrotondamento degli angoli interni sul profilo raft. Gli angoli interni vengono arrotondati a semicerchio con un raggio pari al valore indicato. Questa impostazione elimina inoltre i fori sul profilo raft più piccoli di tale cerchio." +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "retraction_count_max description" msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." msgstr "Questa impostazione limita il numero di retrazioni previste all'interno della finestra di minima distanza di estrusione. Ulteriori retrazioni nell'ambito di questa finestra saranno ignorate. Questo evita di eseguire ripetute retrazioni sullo stesso pezzo di filamento, onde evitarne l'appiattimento e conseguenti problemi di deformazione." @@ -5100,10 +5318,6 @@ msgctxt "wall_overhang_angle description" msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." msgstr "Le pareti con uno sbalzo superiore a quest'angolo saranno stampate con le impostazioni per le pareti a sbalzo. Se il valore è 90, nessuna parete sarà trattata come parete a sbalzo. Nemmeno lo sbalzo supportato dal supporto sarà trattato come tale." -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "Quando si controlla dove si trova il modello sopra e sotto il supporto, procedere ad intervalli di altezza prestabilita. Valori inferiori causeranno un sezionamento più lento, mentre valori più alti potrebbero causare la stampa del supporto normale in alcuni punti in cui dovrebbe esserci un'interfaccia di supporto." - msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." msgstr "Se questa opzione è abilitata, i percorsi utensile vengono corretti per le stampanti con pianificatori del movimento regolare. I piccoli movimenti che deviano dalla direzione del percorso utensile generale vengono risistemati per migliorare i movimenti del fluido." @@ -5496,42 +5710,74 @@ msgctxt "travel description" msgid "travel" msgstr "spostamenti" -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Durata di ciascuna fase nella modifica del flusso graduale" +#~ msgctxt "brim_inside_margin description" +#~ msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +#~ msgstr "Una parte completamente racchiusa all'interno di un'altra parte può generare un brim esterno che tocca l'interno dell'altra parte. Questo rimuove tutti i brim entro questa distanza dai fori interni." + +#~ msgctxt "user_defined_print_order_enabled description" +#~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +#~ msgstr "Consente di ordinare l'elenco degli oggetti per impostare manualmente la sequenza di stampa. Il primo oggetto dell'elenco sarà stampato per primo." + +#~ msgctxt "brim_inside_margin label" +#~ msgid "Brim Inside Avoid Margin" +#~ msgstr "Margine di aggiramento interno del brim" + +#~ msgctxt "brim_outside_only label" +#~ msgid "Brim Only on Outside" +#~ msgstr "Brim solo sull’esterno" + +#~ msgctxt "gradual_flow_discretisation_step_size description" +#~ msgid "Duration of each step in the gradual flow change" +#~ msgstr "Durata di ciascuna fase nella modifica del flusso graduale" + +#~ msgctxt "gradual_flow_enabled description" +#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +#~ msgstr "Abilita le modifiche del flusso graduale. Se abilitate, il flusso viene gradualmente aumentato/diminuito rispetto al flusso target. Questa impostazione è utile per le stampanti con un tubo bowden in cui il flusso non viene immediatamente modificato all'avvio/all'arresto del motore dell'estrusore." + +#~ msgctxt "reset_flow_duration description" +#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +#~ msgstr "Per ogni corsa più lunga di questo valore, il flusso di materiale viene reimpostato al flusso target dei percorsi" + +#~ msgctxt "gradual_flow_discretisation_step_size label" +#~ msgid "Gradual flow discretisation step size" +#~ msgstr "Dimensione della fase di discretizzazione del flusso graduale" + +#~ msgctxt "gradual_flow_enabled label" +#~ msgid "Gradual flow enabled" +#~ msgstr "Flusso graduale abilitato" -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Abilita le modifiche del flusso graduale. Se abilitate, il flusso viene gradualmente aumentato/diminuito rispetto al flusso target. Questa impostazione è utile per le stampanti con un tubo bowden in cui il flusso non viene immediatamente modificato all'avvio/all'arresto del motore dell'estrusore." +#~ msgctxt "max_flow_acceleration label" +#~ msgid "Gradual flow max acceleration" +#~ msgstr "Accelerazione max del flusso graduale" -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Per ogni corsa più lunga di questo valore, il flusso di materiale viene reimpostato al flusso target dei percorsi" +#~ msgctxt "layer_0_max_flow_acceleration label" +#~ msgid "Initial layer max flow acceleration" +#~ msgstr "Accelerazione del flusso max del livello iniziale" -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Dimensione della fase di discretizzazione del flusso graduale" +#~ msgctxt "layer_0_z_overlap description" +#~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +#~ msgstr "Effettua il primo e secondo strato di sovrapposizione modello nella direzione Z per compensare il filamento perso nel traferro. Tutti i modelli sopra il primo strato del modello saranno spostati verso il basso di questa quantità." -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Flusso graduale abilitato" +#~ msgctxt "max_flow_acceleration description" +#~ msgid "Maximum acceleration for gradual flow changes" +#~ msgstr "Accelerazione massima per modifiche di flusso graduale" -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Accelerazione max del flusso graduale" +#~ msgctxt "layer_0_max_flow_acceleration description" +#~ msgid "Minimum speed for gradual flow changes for the first layer" +#~ msgstr "Velocità minima per le modifiche del flusso graduale per il primo livello" -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Accelerazione del flusso max del livello iniziale" +#~ msgctxt "brim_outside_only description" +#~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +#~ msgstr "Stampa il brim solo sull’esterno del modello. Questo riduce la quantità del brim che si deve rimuovere in seguito, mentre non riduce particolarmente l’adesione al piano." -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Accelerazione massima per modifiche di flusso graduale" +#~ msgctxt "reset_flow_duration label" +#~ msgid "Reset flow duration" +#~ msgstr "Reimposta durata flusso" -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Velocità minima per le modifiche del flusso graduale per il primo livello" +#~ msgctxt "support_interface_skip_height label" +#~ msgid "Support Interface Resolution" +#~ msgstr "Risoluzione interfaccia supporto" -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Reimposta durata flusso" \ No newline at end of file +#~ msgctxt "support_interface_skip_height description" +#~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +#~ msgstr "Quando si controlla dove si trova il modello sopra e sotto il supporto, procedere ad intervalli di altezza prestabilita. Valori inferiori causeranno un sezionamento più lento, mentre valori più alti potrebbero causare la stampa del supporto normale in alcuni punti in cui dovrebbe esserci un'interfaccia di supporto." diff --git a/resources/i18n/ja_JP/cura.po b/resources/i18n/ja_JP/cura.po index bc2f27e825f..c34720f0c23 100644 --- a/resources/i18n/ja_JP/cura.po +++ b/resources/i18n/ja_JP/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-31 19:13+0100\n" +"POT-Creation-Date: 2024-03-11 12:52+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -115,6 +115,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "プロジェクトを保存... (&S)" +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "" + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "&設定" @@ -258,6 +262,10 @@ msgid "A cloud connection is not available for a printer" msgid_plural "A cloud connection is not available for some printers" msgstr[0] "一部のプリンターではクラウド接続は利用できません" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "" + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "現在印刷中です。Curaは、前の印刷が完了するまでUSBを介した次の印刷を開始できません。" @@ -492,10 +500,18 @@ msgctxt "@label" msgid "Anonymous" msgstr "匿名" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "アプリケーションフレームワーク" +msgctxt "@title:column" +msgid "Applies on" +msgstr "" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "エクストルーダーのオフセットをGCodeに適用します" @@ -682,6 +698,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "計算された" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "カメラレンダリング:" @@ -1412,6 +1432,10 @@ msgctxt "@label" msgid "Draft" msgstr "ドラフト" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "" + msgctxt "@action:button" msgid "Duplicate" msgstr "複製" @@ -1538,6 +1562,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "選択エクスポート..." +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "" + msgctxt "@button" msgid "Export material archive" msgstr "材料アーカイブのエクスポート" @@ -1571,10 +1599,23 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "エクストルーダーがG-Codeを終了する" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "エクストルーダーがG-Codeを開始する" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "" + +#, python-brace-format +msgctxt "@label" +msgid "Extruder {0}" +msgstr "" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "エクストルーダーを無効にしました" @@ -1641,6 +1682,11 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "材料アーカイブの保存に失敗しました" +#, python-brace-format +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "" + msgctxt "@label:category menu label" msgid "Favorites" msgstr "お気に入り" @@ -1782,6 +1828,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "レイヤービューコンパティビリティモードを強制する。(再起動が必要)" +msgid "FreeCAD trackpad" +msgstr "" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "フロントビュー" @@ -1870,6 +1919,10 @@ msgctxt "@action" msgid "Get started" msgstr "はじめに" +msgctxt "@label" +msgid "Global" +msgstr "" + msgctxt "@title:tab" msgid "Global Settings" msgstr "グローバル設定" @@ -1919,6 +1972,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "接続されているすべてのプリンターを非表示にする" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "この設定を非表示にする" @@ -1995,6 +2052,10 @@ msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "このパッケージを使用するには、Curaを再始動する必要があります" +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "" + msgctxt "@label" msgid "Infill" msgstr "インフィル" @@ -2696,6 +2757,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "現在のフィルターでは、結果が見つかりません" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "" + msgctxt "@label" msgid "No time estimation available" msgstr "時間予測がありません" @@ -2797,6 +2862,10 @@ msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "一度に一つのG-codeしか読み取れません。{0}の取り込みをスキップしました。" +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "" + msgctxt "@action:button" msgid "Open" msgstr "開く" @@ -2825,10 +2894,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "プロジェクトファイルを開く" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "" + msgctxt "@action:label" msgid "Open With" msgstr "開く" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "" + msgctxt "@action:button" msgid "Open as project" msgstr "プロジェクトを開く" @@ -3043,6 +3124,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "検証済みのUltiMaker Cura Enterprise用プラグインおよび材料を入手するにはサインインしてください。" +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "" + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "プリントを開始する前に、材料プロファイルをプリンターと同期させてください。" @@ -3139,6 +3224,14 @@ msgctxt "@action:button" msgid "Print" msgstr "プリント" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "印刷後" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "印刷前" + msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -3443,8 +3536,8 @@ msgid "Provides support for reading model files." msgstr "モデルファイルを読み込むためのサポートを供給します。" msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "3MFファイルを読むこむためのサポートを供給する。" +msgid "Provides support for writing 3MF and UCP files." +msgstr "" msgctxt "description" msgid "Provides support for writing MakerBot Format Packages." @@ -3688,8 +3781,12 @@ msgid "Save Cura project" msgstr "Curaプロジェクトを保存する" msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "Curaプロジェクトとプリントファイルを保存する" +msgid "Save Cura project and .makerbot print file" +msgstr "" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" +msgstr "" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3715,6 +3812,10 @@ msgctxt "@button" msgid "Save new profile" msgstr "新しいプロファイルを保存" +msgctxt "@action:button" +msgid "Save project" +msgstr "" + msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr ".ummファイルをUSBメモリーに保存します。" @@ -3818,6 +3919,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "クラッシュ報告をUltiMakerに送信する" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "" + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "" + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "" + msgctxt "@action:button" msgid "Send report" msgstr "レポート送信" @@ -3870,6 +3983,10 @@ msgctxt "@title:tab" msgid "Settings" msgstr "設定" +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "現在利用可能な次のエクストルーダーに合わせて設定が変更されました:" @@ -3938,6 +4055,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "デスクトップまたは外部アプリケーションから開いたファイルをCuraの同じインスタンスで開く必要がありますか?" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "" + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "Curaの単一インスタンスに新しいモデルをロードする前に、ビルドプレートをクリアする必要はありますか?" @@ -3994,6 +4115,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "詳しいクラッシュ報告を表示する" +msgctxt "@action:button" +msgid "Show settings" +msgstr "" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "プロジェクトを保存時にダイアログサマリーを表示する" @@ -4070,10 +4195,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "スライスに失敗しました" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "予期しないエラーが発生し、スライスに失敗しました。問題追跡ツールでのバグ報告をご検討ください。" - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "スライス中..." @@ -4082,6 +4203,10 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "スムージング" +msgctxt "@label" +msgid "Solid" +msgstr "" + msgctxt "name" msgid "Solid View" msgstr "ソリッドビュー" @@ -4205,10 +4330,26 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "プロファイル{0}の取り込みが完了しました。" +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "サマリーCuraプロジェクト" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "" + msgctxt "@label" msgid "Support" msgstr "サポート" @@ -4586,6 +4727,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "%1 が認識されていないためこの構成は利用できません。%2 から適切な材料プロファイルをダウンロードしてください。" +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "これはCuraのプロジェクトファイルです。プロジェクトとしてあけますか、それともモデルのみ取り込みますか?" @@ -4671,6 +4816,14 @@ msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "この設定はエクストルーダー固有の競合する値から取得します:" +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "" + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "" + msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" msgstr "このバージョンは、運用環境での使用を目的としたmのではありません。問題が発生した場合は、GitHubページでフルバージョン{self.getVersion()}を記載して報告してください。" @@ -4902,6 +5055,11 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "新しいサインインプロセスを開始できません。別のサインインの試行がアクティブなままになっていないか確認します。" +#, python-brace-format +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "" + msgctxt "@label:status" msgid "Unavailable" msgstr "利用不可" @@ -4914,14 +5072,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "モデルを非グループ化" -msgctxt "@action:inmenu menubar:edit" -msgid "Print Before" -msgstr "印刷前" - -msgctxt "@action:inmenu menubar:edit" -msgid "Print After" -msgstr "印刷後" - msgctxt "@button" msgid "Uninstall" msgstr "アンインストール" @@ -4930,6 +5080,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "ユニット" +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "" + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "ユニバーサルビルドシステム設定" @@ -5119,6 +5273,10 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." msgstr "構成をCura 5.4からCura 5.5にアップグレードします。" +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "" + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "カスタムファームウェアをアップロードする" @@ -5151,6 +5309,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "ボロノイ図生成を含むユーティリティライブラリ" +msgctxt "@title:column" +msgid "Value" +msgstr "" + msgctxt "name" msgid "Version Upgrade 2.1 to 2.2" msgstr "2.1 から2.2にバージョンアップグレート" @@ -5255,6 +5417,10 @@ msgctxt "name" msgid "Version Upgrade 5.4 to 5.5" msgstr "5.4から5.5へのバージョンアップ" +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Digital Factoryでプリンターを表示する" @@ -5332,6 +5498,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "どのプリンターをセットアップしますか?" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "どのような種類のカメラレンダリングを使用する必要がありますか?" @@ -5545,6 +5715,10 @@ msgctxt "@label" msgid "mm" msgstr "mm" +msgctxt "@label" +msgid "s" +msgstr "" + msgctxt "@info:status" msgid "today" msgstr "本日" @@ -5572,3 +5746,15 @@ msgstr "{}プラグインのダウンロードに失敗しました" #~ msgid "Provides support for exporting Cura profiles." #~ msgstr "Curaプロファイルのエクスポートをサポートします。" + +#~ msgctxt "description" +#~ msgid "Provides support for writing 3MF files." +#~ msgstr "3MFファイルを読むこむためのサポートを供給する。" + +#~ msgctxt "@option" +#~ msgid "Save Cura project and print file" +#~ msgstr "Curaプロジェクトとプリントファイルを保存する" + +#~ msgctxt "@message" +#~ msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +#~ msgstr "予期しないエラーが発生し、スライスに失敗しました。問題追跡ツールでのバグ報告をご検討ください。" diff --git a/resources/i18n/ja_JP/fdmextruder.def.json.po b/resources/i18n/ja_JP/fdmextruder.def.json.po index d6e5ffe40e7..ec40ad4d2ec 100644 --- a/resources/i18n/ja_JP/fdmextruder.def.json.po +++ b/resources/i18n/ja_JP/fdmextruder.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-06-08 16:32+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -40,6 +40,10 @@ msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "エクストルーダーがG-Codeを終了する" +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "" + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "エクストルーダーのエンドポジションの絶対値" @@ -72,6 +76,10 @@ msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "エクストルーダーがG-Codeを開始する" +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "" + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "エクストルーダーのスタート位置の絶対値" @@ -156,6 +164,14 @@ msgctxt "machine_extruder_cooling_fan_number description" msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." msgstr "このエクストルーダーに関連付けられているプリント冷却ファンの数です。デフォルト値は0(ゼロ)です。各エクストルーダーに対してプリント冷却ファンが異なる場合にのみ変更します。" +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "" + msgctxt "machine_extruder_end_pos_x description" msgid "The x-coordinate of the ending position when turning the extruder off." msgstr "エクストルーダーを切った際のX座標の最終位置。" diff --git a/resources/i18n/ja_JP/fdmprinter.def.json.po b/resources/i18n/ja_JP/fdmprinter.def.json.po index a4311a63bd1..43eb55cdbdb 100644 --- a/resources/i18n/ja_JP/fdmprinter.def.json.po +++ b/resources/i18n/ja_JP/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,6 +12,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "" + +msgctxt "brim_inside_margin description" +msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." +msgstr "" + msgctxt "ironing_inset description" msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." msgstr "モデルの端からの距離。端までアイロンをすると、端が荒れる場合があります。" @@ -56,10 +64,6 @@ msgctxt "machine_disallowed_areas description" msgid "A list of polygons with areas the print head is not allowed to enter." msgstr "プリントヘッドの領域を持つポリゴンのリストは入力できません。" -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "別の部品内に完全に囲まれた部品は、別の部品の内側に接触する外側縁ができることがあります。この設定によって、内部の穴からこの間隔内のすべての縁が除去されます。" - msgctxt "support_tree_branch_reach_limit description" msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " msgstr "枝がサポートポイントからどれくらい移動できるかについての推奨値。枝は、目的地(ビルドプレートまたはモデルの平らな部分)に到達するためであればこの値に違反することができます。この値を小さくすることで、サポートをより頑丈にすることができますが、枝の量が増加します(材料の使用量やプリント時間も増加します)。" @@ -152,6 +156,10 @@ msgctxt "resolution description" msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" msgstr "プリントの解像度に影響を与えるすべての設定。これらの設定は、品質(および印刷時間)に大きな影響を与えます。" +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "" + msgctxt "alternate_extra_perimeter label" msgid "Alternate Extra Wall" msgstr "代替予備壁" @@ -400,21 +408,21 @@ msgctxt "adhesion_type option brim" msgid "Brim" msgstr "ブリム" +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "" + msgctxt "brim_gap label" msgid "Brim Distance" msgstr "ブリム距離" -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "内側縁がマージンに接触しないようにする" - msgctxt "brim_line_count label" msgid "Brim Line Count" msgstr "ブリムライン数" -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "外側にブリムのみ印刷" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "" msgctxt "brim_replaces_support label" msgid "Brim Replaces Support" @@ -456,6 +464,14 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "造形温度" +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "" + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "" + msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." msgstr "この設定を有効にすると、モデルにはない場合でもプライムタワーにブリムが付きます。高いタワーのためにより頑丈なベースが必要な場合は、ベースの高さを増やすことができます。" @@ -868,6 +884,10 @@ msgctxt "cool_fan_enabled label" msgid "Enable Print Cooling" msgstr "印刷中の冷却を有効にする" +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "" + msgctxt "retraction_enable label" msgid "Enable Retraction" msgstr "引き戻し有効" @@ -900,6 +920,10 @@ msgctxt "ooze_shield_enabled description" msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." msgstr "モデルの周りに壁(ooze shield)を作る。これを生成することで、一つ目のノズルの高さと2つ目のノズルが同じ高さであったとき、2つ目のノズルを綺麗にします。" +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "" + msgctxt "small_skin_on_surface description" msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." msgstr "最上位のスキンレイヤー(空気にさらされている)上の小さな(最大「小さな上部/下部幅」)領域を、デフォルトパターンの代わりに壁で埋められるようにします。" @@ -932,6 +956,10 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "スペースがサポートで埋まっている場合でも、モデルの周辺にブリムを印刷します。これにより、サポートの最初の層の一部のエリアがブリムになります。" +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "" + msgctxt "support_type option everywhere" msgid "Everywhere" msgstr "全対象" @@ -1036,6 +1064,10 @@ msgctxt "speed_equalize_flow_width_factor label" msgid "Flow Equalization Ratio" msgstr "フロー均一化率" +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "" + msgctxt "flow_rate_extrusion_offset_factor label" msgid "Flow Rate Compensation Factor" msgstr "流量補正要因" @@ -1048,6 +1080,10 @@ msgctxt "material_flow_temp_graph label" msgid "Flow Temperature Graph" msgstr "フロー温度グラフ" +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "" + msgctxt "material_flow_layer_0 description" msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." msgstr "初期レイヤーの流量補修:初期レイヤーの マテリアル吐出量はこの値の乗算で計算されます。" @@ -1440,10 +1476,22 @@ msgctxt "wall_transition_filter_distance description" msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." msgstr "異なる数のウォール間を相次いで行き来する場合は、まったく移行しないようにします。移行同士がこの距離よりも近い場合は、それらの移行を削除します。" +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "ラフトが有効になっている場合、モデルの周りに余分なラフト領域ができます。値を大きくするとより強力なラフトができますが、多くの材料を使用し、造形範囲は少なくなります。" +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "meshfix_union_all description" msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." msgstr "メッシュ内の重なり合うボリュームから生じる内部ジオメトリを無視し、ボリュームを1つとして印刷します。これにより、意図しない内部空洞が消えることがあります。" @@ -1672,6 +1720,10 @@ msgctxt "wall_0_inset description" msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." msgstr "外壁の経路にはめ込む。外壁がノズルよりも小さく、内壁の後に造形されている場合は、オフセットを使用して、ノズルの穴をモデルの外側ではなく内壁と重なるようにします。" +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "" + msgctxt "inset_direction option inside_out" msgid "Inside To Outside" msgstr "内側から外側へ" @@ -1684,6 +1736,10 @@ msgctxt "support_interface_priority option interface_area_overwrite_support_area msgid "Interface preferred" msgstr "インターフェイスを優先" +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "" + msgctxt "interlocking_beam_layer_count label" msgid "Interlocking Beam Layer Count" msgstr "インターロックビームレイヤー数" @@ -1824,6 +1880,30 @@ msgctxt "support_tree_limit_branch_reach description" msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" msgstr "各枝がサポートポイントからどれくらい移動するかを制限します。これにより、サポートをより頑丈にすることができますが、枝の量が増加します(材料の使用量やプリント時間も増加します)。" +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "" + msgctxt "cutting_mesh description" msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." msgstr "このメッシュの大きさをを他のメッシュ内に制限します。この設定を使用することで、1つの特定のメッシュ領域の設定を、、全く別のエクストルーダーで作成することができます。" @@ -1921,8 +2001,10 @@ msgid "Make the extruder prime position absolute rather than relative to the las msgstr "最後のヘッドの既知位置からではなく、エクストルーダー現在位置を絶対位置にします。" msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "エアギャップ内で失われたフィラメントを補うために、モデルの第1層と第2層をZ方向にオーバーラップさせます。この値によって、最初のモデルレイヤーがシフトダウンされます。" +msgid "" +"Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" +"It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "" msgctxt "meshfix description" msgid "Make the meshes more suited for 3D printing." @@ -1948,10 +2030,18 @@ msgctxt "material label" msgid "Material" msgstr "マテリアル" +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "" + msgctxt "material_guid label" msgid "Material GUID" msgstr "マテリアルGUID" +msgctxt "material_type label" +msgid "Material Type" +msgstr "" + msgctxt "max_extrusion_before_wipe label" msgid "Material Volume Between Wipes" msgstr "ワイプ間の材料の量" @@ -2228,6 +2318,10 @@ msgctxt "ironing_monotonic label" msgid "Monotonic Ironing Order" msgstr "アイロン方向一貫性" +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "" + msgctxt "roofing_monotonic label" msgid "Monotonic Top Surface Order" msgstr "上面方向一貫性" @@ -2268,6 +2362,10 @@ msgctxt "magic_mesh_surface_mode option normal" msgid "Normal" msgstr "標準" +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "" + msgctxt "support_structure option normal" msgid "Normal" msgstr "標準" @@ -2400,10 +2498,6 @@ msgctxt "ironing_only_highest_layer description" msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." msgstr "メッシュの最後のレイヤーでのみアイロンをかけます。下層にて滑らかな表面仕上げを必要としない場合、時間を節約します。" -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "モデルの外側のみにブリムを印刷します。これにより、後で取り除くブリムの量が減少します。またプレートへの接着力はそれほど低下しません。" - msgctxt "ooze_shield_angle label" msgid "Ooze Shield Angle" msgstr "Ooze Shield角度" @@ -2464,6 +2558,10 @@ msgctxt "group_outer_walls description" msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." msgstr "同じレイヤー内の異なる島の外壁は順次印刷されます。有効にすると、壁は1つの種類ずつ印刷されるため、フローの変化量が制限されます。無効にすると、同じ島の壁がグループ化されるため、島間の移動回数が減少します。" +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "" + msgctxt "inset_direction option outside_in" msgid "Outside To Inside" msgstr "外側から内側へ" @@ -2544,6 +2642,10 @@ msgctxt "prime_tower_line_width label" msgid "Prime Tower Line Width" msgstr "プライムタワーのライン幅" +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "" + msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" msgstr "プライムタワー最小容積" @@ -2560,6 +2662,10 @@ msgctxt "speed_prime_tower label" msgid "Prime Tower Speed" msgstr "プライムタワー印刷速度" +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "" + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "プライムタワーX位置" @@ -2576,18 +2682,14 @@ msgctxt "jerk_print label" msgid "Print Jerk" msgstr "印刷ジャーク" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "" + msgctxt "print_sequence label" msgid "Print Sequence" msgstr "印刷頻度" -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "手動で印刷順序を設定する" - -msgctxt "user_defined_print_order_enabled description" -msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." -msgstr "オブジェクトリストを並べ替えて、手動で印刷順序を設定することができます。リストの最初のオブジェクトが最初に印刷されます。" - msgctxt "speed_print label" msgid "Print Speed" msgstr "印刷速度" @@ -2596,6 +2698,10 @@ msgctxt "fill_outline_gaps label" msgid "Print Thin Walls" msgstr "薄壁印刷" +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "" + msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "印刷物の横にタワーを造形して、ノズル交換後にフィラメントの調整をします。" @@ -2616,6 +2722,10 @@ msgctxt "fill_outline_gaps description" msgid "Print pieces of the model which are horizontally thinner than the nozzle size." msgstr "ノズルサイズよりも細い壁を作ります。" +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "" + msgctxt "bridge_skin_speed_2 description" msgid "Print speed to use when printing the second bridge skin layer." msgstr "セカンドブリッジのスキンレイヤーを印刷する際に使用する印刷速度。" @@ -2624,6 +2734,14 @@ msgctxt "bridge_skin_speed_3 description" msgid "Print speed to use when printing the third bridge skin layer." msgstr "サードブリッジのスキンレイヤーを印刷する際に使用する印刷速度。" +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "" + msgctxt "infill_before_walls description" msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." msgstr "" @@ -2670,6 +2788,10 @@ msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "ラフト間のラップ" +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "" + msgctxt "raft_base_extruder_nr label" msgid "Raft Base Extruder" msgstr "ラフトベースエクストルーダー" @@ -2698,6 +2820,10 @@ msgctxt "raft_base_speed label" msgid "Raft Base Print Speed" msgstr "ラフトベース印刷速度" +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "" + msgctxt "raft_base_thickness label" msgid "Raft Base Thickness" msgstr "ラフトベース厚さ" @@ -2714,6 +2840,10 @@ msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" msgstr "ラフトファン速度" +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "" + msgctxt "raft_interface_extruder_nr label" msgid "Raft Middle Extruder" msgstr "ラフト中間エクストルーダー" @@ -2742,6 +2872,10 @@ msgctxt "raft_interface_speed label" msgid "Raft Middle Print Speed" msgstr "ラフト中間印刷速度" +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "" + msgctxt "raft_interface_line_spacing label" msgid "Raft Middle Spacing" msgstr "ラフト中間スペース" @@ -2750,6 +2884,10 @@ msgctxt "raft_interface_thickness label" msgid "Raft Middle Thickness" msgstr "ラフト中央厚さ" +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "" + msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" msgstr "ラフト印刷加速度" @@ -2766,6 +2904,10 @@ msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "ラフト補整" +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "" + msgctxt "raft_surface_extruder_nr label" msgid "Raft Top Extruder" msgstr "ラフトトップエクストルーダー" @@ -2798,10 +2940,22 @@ msgctxt "raft_surface_speed label" msgid "Raft Top Print Speed" msgstr "ラフト上層印刷速度" +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "" + msgctxt "raft_surface_line_spacing label" msgid "Raft Top Spacing" msgstr "ラフト最上面スペース" +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "" + msgctxt "z_seam_type option random" msgid "Random" msgstr "ランダム" @@ -2854,10 +3008,22 @@ msgctxt "carve_multiple_volumes label" msgid "Remove Mesh Intersection" msgstr "重複メッシュの削除" +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "" + msgctxt "raft_remove_inside_corners label" msgid "Remove Raft Inside Corners" msgstr "ラフト内側コーナーの削除" +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "" + msgctxt "carve_multiple_volumes description" msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." msgstr "複数のメッシュが重なっている領域を削除します。これは、結合された2つのマテリアルのオブジェクトが互いに重なっている場合に使用されます。" @@ -2866,6 +3032,18 @@ msgctxt "remove_empty_first_layers description" msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." msgstr "最初に印刷したレイヤーの下に空のレイヤーがある場合は取り除きます。この設定を無効にすると、スライストレランスが「排他」または「中間」に設定されている場合に最初のレイヤーが空になる原因になります。" +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "" + msgctxt "raft_remove_inside_corners description" msgid "Remove inside corners from the raft, causing the raft to become convex." msgstr "ラフトから内側コーナーを削除し、ラフトが凸になるようにします。" @@ -2886,6 +3064,10 @@ msgctxt "skin_outline_count description" msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." msgstr "上部/下部パターンの最も外側の部分を同心円の線で置き換えます。 1つまたは2つの線を使用すると、トップ部分の造形が改善されます。" +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "" + msgctxt "support_tree_rest_preference label" msgid "Rest Preference" msgstr "希望配置" @@ -2958,6 +3140,10 @@ msgctxt "z_seam_corner label" msgid "Seam Corner Preference" msgstr "シームコーナー設定" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "手動で印刷順序を設定する" + msgctxt "draft_shield_height_limitation description" msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." msgstr "ドラフトシールドの高さを設定します。ドラフトシールドは、モデルの全高、または限られた高さで印刷するように選択します。" @@ -3358,10 +3544,6 @@ msgctxt "support_interface_priority label" msgid "Support Interface Priority" msgstr "サポートインターフェイスの優先順位" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "サポートインタフェース解像度" - msgctxt "speed_support_interface label" msgid "Support Interface Speed" msgstr "サポートインタフェース速度" @@ -3716,6 +3898,10 @@ msgctxt "magic_fuzzy_skin_point_dist description" msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." msgstr "各線分に導入されたランダム点間の平均距離。ポリゴンの元の点は破棄されるので、積層の値を低くすることで、なめらかな仕上がりになります。この値は、ファジースキンの厚さの半分よりも大きくなければなりません。" +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "" + msgctxt "machine_acceleration description" msgid "The default acceleration of print head movement." msgstr "プリントヘッド移動のデフォルトの加速度。" @@ -4192,6 +4378,10 @@ msgctxt "jerk_travel description" msgid "The maximum instantaneous velocity change with which travel moves are made." msgstr "移動する際の最大瞬時速度の変更。" +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "" + msgctxt "machine_max_feedrate_x description" msgid "The maximum speed for the motor of the X-direction." msgstr "X方向のモーターの最大速度。" @@ -4304,6 +4494,18 @@ msgctxt "raft_base_wall_count description" msgid "The number of contours to print around the linear pattern in the base layer of the raft." msgstr "ラフトのベースレイヤーにある線状パターンの周囲にプリントする輪郭の数。" +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "" + msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "スキンエッジをサポートするインフィルレイヤーの数。" @@ -4692,6 +4894,10 @@ msgctxt "machine_gcode_flavor description" msgid "The type of g-code to be generated." msgstr "生成するG-codeの種類です。" +msgctxt "material_type description" +msgid "The type of material used." +msgstr "" + msgctxt "coasting_volume description" msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." msgstr "はみ出るフィラメントのボリューム。この値は、一般に、ノズル直径の3乗に近い値でなければならない。" @@ -4740,10 +4946,22 @@ msgctxt "bridge_wall_coast description" msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." msgstr "この設定は、ブリッジ壁が始まる直前に、エクストルーダーを動かす距離を制御します。ブリッジが始まる前にコースティングすることにより、ノズル内が減圧され、ブリッジがより平らになります。" +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "この設定は、ラフトの輪郭の内側の角がどの程度丸められるかを制御します。内側の角は、ここで指定した値と等しい半径の半円に丸められます。この設定は、そのような円よりも小さいラフトの輪郭の穴を削除します。" +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "retraction_count_max description" msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." msgstr "この設定は、決められた距離の中で起こる引き戻しの回数を制限します。制限数以上の引き戻しは無視されます。これによりフィーダーでフィラメントを誤って削ってしまう問題を軽減させます。" @@ -5104,10 +5322,6 @@ msgctxt "wall_overhang_angle description" msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." msgstr "この角度以上に張り出した壁は、オーバーハング壁設定を使用してプリントされます。値が90の場合は、オーバーハング壁として処理されません。サポートによってサポートされているオーバーハングも、オーバーハングとして処理されません。" -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "サポートの上下にモデルがあるかどうか確認するには、特定のサポートの高さを見ます。低い値はスライスに時間がかかり、高い値にするとサポートのインターフェイスがある場所に通常のサポートを印刷する可能性があります。" - msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." msgstr "有効にすると、スムーズモーションプランナーを備えたプリンターのツールパスが補正されます。一般的なツールパスの方向から逸脱する小さな動きが滑らかになり、フルイドモーションが改善されます。" @@ -5500,42 +5714,74 @@ msgctxt "travel description" msgid "travel" msgstr "移動" -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "段階的なフローの変化におけるステップごとの時間" +#~ msgctxt "brim_inside_margin description" +#~ msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +#~ msgstr "別の部品内に完全に囲まれた部品は、別の部品の内側に接触する外側縁ができることがあります。この設定によって、内部の穴からこの間隔内のすべての縁が除去されます。" + +#~ msgctxt "user_defined_print_order_enabled description" +#~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +#~ msgstr "オブジェクトリストを並べ替えて、手動で印刷順序を設定することができます。リストの最初のオブジェクトが最初に印刷されます。" + +#~ msgctxt "brim_inside_margin label" +#~ msgid "Brim Inside Avoid Margin" +#~ msgstr "内側縁がマージンに接触しないようにする" + +#~ msgctxt "brim_outside_only label" +#~ msgid "Brim Only on Outside" +#~ msgstr "外側にブリムのみ印刷" + +#~ msgctxt "gradual_flow_discretisation_step_size description" +#~ msgid "Duration of each step in the gradual flow change" +#~ msgstr "段階的なフローの変化におけるステップごとの時間" + +#~ msgctxt "gradual_flow_enabled description" +#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +#~ msgstr "段階的なフローの変化を有効にできます。有効にすると、フローは目標フローまで段階的に増減します。これは、押し出しモーターの始動/停止時にフローがすぐに変化しないボーデンチューブを備えたプリンターに便利です。" + +#~ msgctxt "reset_flow_duration description" +#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +#~ msgstr "この値より長い移動の場合、素材フローは目標フローにリセットされます。" + +#~ msgctxt "gradual_flow_discretisation_step_size label" +#~ msgid "Gradual flow discretisation step size" +#~ msgstr "段階的なフローの離散化ステップのサイズ" + +#~ msgctxt "gradual_flow_enabled label" +#~ msgid "Gradual flow enabled" +#~ msgstr "段階的なフローが有効" -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "段階的なフローの変化を有効にできます。有効にすると、フローは目標フローまで段階的に増減します。これは、押し出しモーターの始動/停止時にフローがすぐに変化しないボーデンチューブを備えたプリンターに便利です。" +#~ msgctxt "max_flow_acceleration label" +#~ msgid "Gradual flow max acceleration" +#~ msgstr "段階的なフローの最大加速度" -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "この値より長い移動の場合、素材フローは目標フローにリセットされます。" +#~ msgctxt "layer_0_max_flow_acceleration label" +#~ msgid "Initial layer max flow acceleration" +#~ msgstr "初期層の最大フロー加速度" -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "段階的なフローの離散化ステップのサイズ" +#~ msgctxt "layer_0_z_overlap description" +#~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +#~ msgstr "エアギャップ内で失われたフィラメントを補うために、モデルの第1層と第2層をZ方向にオーバーラップさせます。この値によって、最初のモデルレイヤーがシフトダウンされます。" -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "段階的なフローが有効" +#~ msgctxt "max_flow_acceleration description" +#~ msgid "Maximum acceleration for gradual flow changes" +#~ msgstr "フローを段階的に変化させるための最大加速度" -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "段階的なフローの最大加速度" +#~ msgctxt "layer_0_max_flow_acceleration description" +#~ msgid "Minimum speed for gradual flow changes for the first layer" +#~ msgstr "第1層のフローを段階的に変化させるための最低速度" -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "初期層の最大フロー加速度" +#~ msgctxt "brim_outside_only description" +#~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +#~ msgstr "モデルの外側のみにブリムを印刷します。これにより、後で取り除くブリムの量が減少します。またプレートへの接着力はそれほど低下しません。" -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "フローを段階的に変化させるための最大加速度" +#~ msgctxt "reset_flow_duration label" +#~ msgid "Reset flow duration" +#~ msgstr "フロー期間をリセット" -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "第1層のフローを段階的に変化させるための最低速度" +#~ msgctxt "support_interface_skip_height label" +#~ msgid "Support Interface Resolution" +#~ msgstr "サポートインタフェース解像度" -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "フロー期間をリセット" \ No newline at end of file +#~ msgctxt "support_interface_skip_height description" +#~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +#~ msgstr "サポートの上下にモデルがあるかどうか確認するには、特定のサポートの高さを見ます。低い値はスライスに時間がかかり、高い値にするとサポートのインターフェイスがある場所に通常のサポートを印刷する可能性があります。" diff --git a/resources/i18n/ko_KR/cura.po b/resources/i18n/ko_KR/cura.po index 6bfbd1bae7c..4d686f6cd6a 100644 --- a/resources/i18n/ko_KR/cura.po +++ b/resources/i18n/ko_KR/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-31 19:13+0100\n" +"POT-Creation-Date: 2024-03-11 12:52+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -115,6 +115,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "프로젝트 저장(&S)..." +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "" + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "설정" @@ -258,6 +262,10 @@ msgid "A cloud connection is not available for a printer" msgid_plural "A cloud connection is not available for some printers" msgstr[0] "A cloud connection is not available for some printers" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "" + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "프린트가 아직 진행 중입니다. Cura는 이전 프린트가 완료될 때까지는 USB를 통해 다른 프린트를 시작할 수 없습니다." @@ -492,10 +500,18 @@ msgctxt "@label" msgid "Anonymous" msgstr "익명" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "애플리케이션 프레임 워크" +msgctxt "@title:column" +msgid "Applies on" +msgstr "" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "익스트루더 오프셋을 GCode에 적용" @@ -682,6 +698,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "계산된" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "카메라 렌더링:" @@ -1412,6 +1432,10 @@ msgctxt "@label" msgid "Draft" msgstr "초안" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "" + msgctxt "@action:button" msgid "Duplicate" msgstr "복제" @@ -1538,6 +1562,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "내보내기 선택..." +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "" + msgctxt "@button" msgid "Export material archive" msgstr "재료 아카이브 내보내기" @@ -1571,10 +1599,23 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "익스트루더 종료 Gcode" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "익스트루더 시작 Gcode" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "" + +#, python-brace-format +msgctxt "@label" +msgid "Extruder {0}" +msgstr "" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "익스트루더 비활성화됨" @@ -1641,6 +1682,11 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "재료 아카이브를 저장하는 데 실패함" +#, python-brace-format +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "" + msgctxt "@label:category menu label" msgid "Favorites" msgstr "즐겨찾기" @@ -1782,6 +1828,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "레이어 뷰 호환성 모드로 전환 (다시 시작해야 함)" +msgid "FreeCAD trackpad" +msgstr "" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "앞에서 보기" @@ -1870,6 +1919,10 @@ msgctxt "@action" msgid "Get started" msgstr "시작하기" +msgctxt "@label" +msgid "Global" +msgstr "" + msgctxt "@title:tab" msgid "Global Settings" msgstr "전역 설정" @@ -1919,6 +1972,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "연결된 프린터 모두 숨기기" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "이 설정 숨기기" @@ -1995,6 +2052,10 @@ msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "패키지를 사용하려면 Cura를 재시작해야 합니다." +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "" + msgctxt "@label" msgid "Infill" msgstr "내부채움" @@ -2696,6 +2757,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "현재 필터로는 결과를 찾을 수 없음" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "" + msgctxt "@label" msgid "No time estimation available" msgstr "시간 추산 이용 불가" @@ -2797,6 +2862,10 @@ msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "한 번에 하나의 G-코드 파일만 로드 할 수 있습니다. {0} 가져 오기를 건너 뛰었습니다." +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "" + msgctxt "@action:button" msgid "Open" msgstr "열기" @@ -2825,10 +2894,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "프로젝트 파일 열기" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "" + msgctxt "@action:label" msgid "Open With" msgstr "다음으로 열기" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "" + msgctxt "@action:button" msgid "Open as project" msgstr "프로젝트로 열기" @@ -3042,6 +3123,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "UltiMaker Cura Enterprise용으로 검증된 플러그인 및 재료를 받으려면 로그인하십시오." +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "" + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "프린트를 시작하기 전에 재료 프로파일을 프린터와 동기화하십시오." @@ -3138,6 +3223,14 @@ msgctxt "@action:button" msgid "Print" msgstr "프린트" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "인쇄 후" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "인쇄 전" + msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -3442,8 +3535,8 @@ msgid "Provides support for reading model files." msgstr "모델 파일 읽기 기능을 제공합니다." msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "3MF 파일 작성 지원을 제공합니다." +msgid "Provides support for writing 3MF and UCP files." +msgstr "" msgctxt "description" msgid "Provides support for writing MakerBot Format Packages." @@ -3687,8 +3780,12 @@ msgid "Save Cura project" msgstr "Cura 프로젝트 저장하기" msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "Cura 프로젝트 저장하고 파일 프린팅하기" +msgid "Save Cura project and .makerbot print file" +msgstr "" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" +msgstr "" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3714,6 +3811,10 @@ msgctxt "@button" msgid "Save new profile" msgstr "새 프로필 저장" +msgctxt "@action:button" +msgid "Save project" +msgstr "" + msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr ".umm 파일을 USB 스틱에 저장합니다." @@ -3817,6 +3918,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "충돌 보고서를 UltiMaker에 보내기" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "" + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "" + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "" + msgctxt "@action:button" msgid "Send report" msgstr "보고서 전송" @@ -3869,6 +3982,10 @@ msgctxt "@title:tab" msgid "Settings" msgstr "설정" +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "익스트루더의 현재 가용성과 일치하도록 설정이 변경되었습니다:" @@ -3937,6 +4054,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "데스크톱 또는 외부 애플리케이션의 파일을 동일한 Cura 인스턴스에서 엽니까?" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "" + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "Cura의 단일 인스턴스에서 새 모델을 로드하기 전에 빌드 플레이트를 지워야 합니까?" @@ -3993,6 +4114,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "충돌 리포트 보기" +msgctxt "@action:button" +msgid "Show settings" +msgstr "" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "프로젝트 저장시 요약 대화 상자 표시" @@ -4069,10 +4194,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "슬라이싱 실패" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "예기치 않은 오류로 인해 슬라이싱에 실패했습니다. 이슈 트래커에 버그를 보고하는 것을 고려하십시오." - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "슬라이싱..." @@ -4081,6 +4202,10 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "스무딩(smoothing)" +msgctxt "@label" +msgid "Solid" +msgstr "" + msgctxt "name" msgid "Solid View" msgstr "솔리드 뷰" @@ -4206,10 +4331,26 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "프로파일 {0}을(를) 성공적으로 가져왔습니다." +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "요약 - Cura 프로젝트" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "" + msgctxt "@label" msgid "Support" msgstr "서포트" @@ -4587,6 +4728,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "%1이(가) 인식되지 않기 때문에 이 구성을 사용할 수 없습니다. %2에 방문하여 올바른 재료 프로파일을 다운로드하십시오." +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "이 파일은 Cura 프로젝트 파일입니다. 프로젝트로 열거나 모델을 가져 오시겠습니까?" @@ -4674,6 +4819,14 @@ msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "이 설정은 충돌하는 압출기별 값으로 결정됩니다:" +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "" + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "" + msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" msgstr "이 버전은 프로덕션용이 아닙니다. 문제가 발생하면 정식 버전 {self.getVersion()}을 언급하며 GitHub 페이지에 보고해 주세요." @@ -4905,6 +5058,11 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "새 로그인 작업을 시작할 수 없습니다. 다른 로그인 작업이 진행 중인지 확인하십시오." +#, python-brace-format +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "" + msgctxt "@label:status" msgid "Unavailable" msgstr "사용불가" @@ -4917,14 +5075,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "모델 그룹 해제" -msgctxt "@action:inmenu menubar:edit" -msgid "Print Before" -msgstr "인쇄 전" - -msgctxt "@action:inmenu menubar:edit" -msgid "Print After" -msgstr "인쇄 후" - msgctxt "@button" msgid "Uninstall" msgstr "설치 제거" @@ -4933,6 +5083,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "단위" +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "" + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "범용 빌드 시스템 설정" @@ -5122,6 +5276,10 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." msgstr "Cura 5.4에서 Cura 5.5로 구성을 업그레이드합니다." +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "" + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "사용자 정의 펌웨어 업로드" @@ -5154,6 +5312,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "Voronoi 세대를 포함한 유틸리티 라이브러리" +msgctxt "@title:column" +msgid "Value" +msgstr "" + msgctxt "name" msgid "Version Upgrade 2.1 to 2.2" msgstr "2.1에서 2.2로 버전 업그레이드" @@ -5258,6 +5420,10 @@ msgctxt "name" msgid "Version Upgrade 5.4 to 5.5" msgstr "5.4에서 5.5로 버전 업그레이드" +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Digital Factory에서 프린터 보기" @@ -5335,6 +5501,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "어떤 프린터를 설정하시겠습니까?" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "어떤 유형의 카메라 렌더링을 사용해야 합니까?" @@ -5548,6 +5718,10 @@ msgctxt "@label" msgid "mm" msgstr "mm" +msgctxt "@label" +msgid "s" +msgstr "" + msgctxt "@info:status" msgid "today" msgstr "오늘" @@ -5575,3 +5749,15 @@ msgstr "{}개의 플러그인을 다운로드하지 못했습니다" #~ msgid "Provides support for exporting Cura profiles." #~ msgstr "Cura 프로필 내보내기를 지원합니다." + +#~ msgctxt "description" +#~ msgid "Provides support for writing 3MF files." +#~ msgstr "3MF 파일 작성 지원을 제공합니다." + +#~ msgctxt "@option" +#~ msgid "Save Cura project and print file" +#~ msgstr "Cura 프로젝트 저장하고 파일 프린팅하기" + +#~ msgctxt "@message" +#~ msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +#~ msgstr "예기치 않은 오류로 인해 슬라이싱에 실패했습니다. 이슈 트래커에 버그를 보고하는 것을 고려하십시오." diff --git a/resources/i18n/ko_KR/fdmextruder.def.json.po b/resources/i18n/ko_KR/fdmextruder.def.json.po index c9fd48f56d1..346df6b0133 100644 --- a/resources/i18n/ko_KR/fdmextruder.def.json.po +++ b/resources/i18n/ko_KR/fdmextruder.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-06-08 16:32+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -40,6 +40,10 @@ msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "익스트루더 엔드 G 코드" +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "" + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "익스트루더 끝 절대 위치" @@ -72,6 +76,10 @@ msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "익스트루더 스타트 G 코드" +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "" + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "익스트루더 시작 위치의 절대 값" @@ -156,6 +164,14 @@ msgctxt "machine_extruder_cooling_fan_number description" msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." msgstr "이 익스트루더와 관련된 프린팅 냉각 팬의 개수. 각 익스트루더마다 다른 프린팅 냉각 팬이 있을 때만 기본값 0에서 변경하십시오." +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "" + msgctxt "machine_extruder_end_pos_x description" msgid "The x-coordinate of the ending position when turning the extruder off." msgstr "익스트루더를 끌 때 끝 위치의 x 좌표." diff --git a/resources/i18n/ko_KR/fdmprinter.def.json.po b/resources/i18n/ko_KR/fdmprinter.def.json.po index 0cf075c8547..e7fce4a0b2a 100644 --- a/resources/i18n/ko_KR/fdmprinter.def.json.po +++ b/resources/i18n/ko_KR/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,6 +12,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "" + +msgctxt "brim_inside_margin description" +msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." +msgstr "" + msgctxt "ironing_inset description" msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." msgstr "모델 브림에서 떨어서포트 않는 거리. 메쉬 브림까지 다림질하면 출력물의 브림가 고르지 않을 수 있습니다." @@ -56,10 +64,6 @@ msgctxt "machine_disallowed_areas description" msgid "A list of polygons with areas the print head is not allowed to enter." msgstr "프린팅 헤드가 위치할 수 없는 구역의 목록입니다." -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "다른 부품 내부에 완전히 둘러싸인 부품은 다른 부품의 내부에 닿는 외부 브림을 생성할 수 있습니다. 이렇게 하면 내부 구멍에서 이 거리 내에 있는 모든 브림이 제거됩니다." - msgctxt "support_tree_branch_reach_limit description" msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " msgstr "브랜치가 서포트하는 지점에서 뻗어 나가는 거리에 대한 권장 사항입니다. 브랜치는 목적지(빌드 플레이트 또는 모델의 평평한 부분)에 도달하기 위해 이 값을 초과할 수 있습니다. 이 값을 낮추면 서포트가 더 견고해지지만, 브랜치의 양이 늘어나므로 재료 사용량/프린트 시간이 늘어납니다." @@ -152,6 +156,10 @@ msgctxt "resolution description" msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" msgstr "출력물의 해상도에 영향을 미치는 모든 설정. 이러한 설정은 품질 (및 프린팅 시간)에 큰 영향을 미칩니다." +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "" + msgctxt "alternate_extra_perimeter label" msgid "Alternate Extra Wall" msgstr "대체 여분 벽" @@ -400,21 +408,21 @@ msgctxt "adhesion_type option brim" msgid "Brim" msgstr "브림" +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "" + msgctxt "brim_gap label" msgid "Brim Distance" msgstr "브림 거리" -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "내부 브림의 여백 회피" - msgctxt "brim_line_count label" msgid "Brim Line Count" msgstr "브림 선 수" -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "밖에서만 브림 생성" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "" msgctxt "brim_replaces_support label" msgid "Brim Replaces Support" @@ -456,6 +464,14 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "빌드 볼륨 온도" +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "" + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "" + msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." msgstr "이 설정을 활성화하면 모델에 브림이 없더라도 프라임 타워에는 브림이 생성됩니다. 높은 타워의 튼튼한 베이스가 필요하다면 베이스 높이를 늘릴 수 있습니다." @@ -868,6 +884,10 @@ msgctxt "cool_fan_enabled label" msgid "Enable Print Cooling" msgstr "프린팅 냉각 사용" +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "" + msgctxt "retraction_enable label" msgid "Enable Retraction" msgstr "리트렉션 활성화" @@ -900,6 +920,10 @@ msgctxt "ooze_shield_enabled description" msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." msgstr "Ooze 쉴드를 활성화. 이렇게하면 첫 번째 노즐과 동일한 높이에 두 번째 노즐을 닦을 가능성이 있는 모델 주위에 쉘이 생깁니다." +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "" + msgctxt "small_skin_on_surface description" msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." msgstr "맨 위 스킨 레이어(공기에 노출됨)의 작은(최대 '작은 상단/하단 너비') 영역을 기본 패턴 대신 벽으로 채울 수 있습니다." @@ -932,6 +956,10 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "서포트가 차지할 공간이더라도 모델 주변에 브림이 인쇄되도록 합니다. 이렇게 하면 서포트의 첫 번째 레이어 영역 일부가 브림 영역으로 대체됩니다." +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "" + msgctxt "support_type option everywhere" msgid "Everywhere" msgstr "어디에나" @@ -1036,6 +1064,10 @@ msgctxt "speed_equalize_flow_width_factor label" msgid "Flow Equalization Ratio" msgstr "흐름 균일화 비율" +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "" + msgctxt "flow_rate_extrusion_offset_factor label" msgid "Flow Rate Compensation Factor" msgstr "압출 속도 보상 배율" @@ -1048,6 +1080,10 @@ msgctxt "material_flow_temp_graph label" msgid "Flow Temperature Graph" msgstr "재료 공급 온도 그래프" +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "" + msgctxt "material_flow_layer_0 description" msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." msgstr "첫번째 레이어에 대한 압출량 보상: 압출 된 재료의 양에 이 값을 곱합니다." @@ -1440,10 +1476,22 @@ msgctxt "wall_transition_filter_distance description" msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." msgstr "서로 다른 수의 벽들 사이를 빠르게 연속적으로 왔다 갔다 하며 전환되는 경우에는 전환하지 마십시오. 이 거리보다 서로 더 가까운 경우에는 전환을 제거하십시오." +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "래프트가 활성화 된 경우 래프트가 주어진 모델 주변의 추가 래프트 지역입니다. 이 여백을 늘리면 재료를 더 많이 사용하고 출력물을 적게 차지하면서 더 강력한 래프트가 만들어집니다." +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "meshfix_union_all description" msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." msgstr "메쉬 내의 겹치는 볼륨으로 인해 발생하는 내부 지오메트리를 무시하고 볼륨을 하나로 프린팅합니다. 이로 인해 의도하지 않은 내부 공동이 사라질 수 있습니다." @@ -1672,6 +1720,10 @@ msgctxt "wall_0_inset description" msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." msgstr "외벽의 경로에 삽입이 적용됩니다. 외벽이 노즐보다 작고 내벽 다음에 프린팅 된 경우 이 옵셋을 사용하여 노즐의 구멍이 모델 외부가 아닌 내벽과 겹치도록하십시오." +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "" + msgctxt "inset_direction option inside_out" msgid "Inside To Outside" msgstr "내부에서 외부로" @@ -1684,6 +1736,10 @@ msgctxt "support_interface_priority option interface_area_overwrite_support_area msgid "Interface preferred" msgstr "인터페이스 우선" +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "" + msgctxt "interlocking_beam_layer_count label" msgid "Interlocking Beam Layer Count" msgstr "연동 빔 레이어 수" @@ -1824,6 +1880,30 @@ msgctxt "support_tree_limit_branch_reach description" msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" msgstr "각 브랜치가 서포트하는 지점에서 뻗어 나가는 거리를 제한합니다. 이렇게 하면 서포트가 더 견고해질 수 있지만, 브랜치의 양이 늘어나므로 재료 사용량/프린트 시간이 늘어납니다." +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "" + msgctxt "cutting_mesh description" msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." msgstr "이 메쉬의 볼륨을 다른 메쉬 내로 제한합니다. 이 기능을 사용하면 다른 설정과 전체 익스트루더로 하나의 메쉬 프린팅 영역을 만들 수 있습니다." @@ -1921,8 +2001,10 @@ msgid "Make the extruder prime position absolute rather than relative to the las msgstr "익스투루더의 위치를 헤드의 마지막으로 알려진 위치에 상대위치가 아닌 절대 위치로 만듭니다." msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "에어 갭에서 손실 된 필라멘트를 보완하기 위해 Z 방향으로 모델의 첫 번째와 두 번째 레이어가 중첩되도록 합니다. 첫 번째 모델 레이어 위의 모든 모델은이 양만큼 아래로 이동합니다." +msgid "" +"Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" +"It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "" msgctxt "meshfix description" msgid "Make the meshes more suited for 3D printing." @@ -1948,10 +2030,18 @@ msgctxt "material label" msgid "Material" msgstr "재료" +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "" + msgctxt "material_guid label" msgid "Material GUID" msgstr "재료 GUID" +msgctxt "material_type label" +msgid "Material Type" +msgstr "" + msgctxt "max_extrusion_before_wipe label" msgid "Material Volume Between Wipes" msgstr "와이프 사이의 재료 볼륨" @@ -2228,6 +2318,10 @@ msgctxt "ironing_monotonic label" msgid "Monotonic Ironing Order" msgstr "단면 다림질 순서" +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "" + msgctxt "roofing_monotonic label" msgid "Monotonic Top Surface Order" msgstr "단면 상단 표면 순서" @@ -2268,6 +2362,10 @@ msgctxt "magic_mesh_surface_mode option normal" msgid "Normal" msgstr "표준" +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "" + msgctxt "support_structure option normal" msgid "Normal" msgstr "표준" @@ -2400,10 +2498,6 @@ msgctxt "ironing_only_highest_layer description" msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." msgstr "메쉬의 마지막 레이어에서만 다림질을 수행합니다. 이것은 낮은 레이어에서 매끄러운 표면 처리가 필요하지 않은 경우 시간을 절약 할 수 있습니다." -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "모델 바깥 쪽 브림에만 프린팅합니다. 나중에 제거해야하는 브림의 양이 줄어들지만 베드 접착력은 그렇게 많이 줄어들지 않습니다." - msgctxt "ooze_shield_angle label" msgid "Ooze Shield Angle" msgstr "Ooze 쉴드 각" @@ -2464,6 +2558,10 @@ msgctxt "group_outer_walls description" msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." msgstr "동일한 레이어의 서로 다른 섬의 외벽이 순차적으로 인쇄됩니다. 활성화되면 벽 종류별로 하나씩 인쇄되므로 유량 변화량이 제한되며 비활성화되면 동일한 섬의 벽이 그룹화되어 섬 간 이동 수가 감소합니다." +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "" + msgctxt "inset_direction option outside_in" msgid "Outside To Inside" msgstr "외부에서 내부로" @@ -2544,6 +2642,10 @@ msgctxt "prime_tower_line_width label" msgid "Prime Tower Line Width" msgstr "프라임 타워 라인 폭" +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "" + msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" msgstr "프라임 타워 최소 볼륨" @@ -2560,6 +2662,10 @@ msgctxt "speed_prime_tower label" msgid "Prime Tower Speed" msgstr "프라임 타워 속도" +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "" + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "프라임 타워 X 위치" @@ -2576,18 +2682,14 @@ msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Jerk 프린팅" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "" + msgctxt "print_sequence label" msgid "Print Sequence" msgstr "프린팅 순서" -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "수동으로 인쇄 순서 설정" - -msgctxt "user_defined_print_order_enabled description" -msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." -msgstr "객체 목록을 정렬하여 수동으로 인쇄 순서를 설정할 수 있습니다. 목록의 첫 번째 객체가 먼저 인쇄됩니다." - msgctxt "speed_print label" msgid "Print Speed" msgstr "프린팅 속도" @@ -2596,6 +2698,10 @@ msgctxt "fill_outline_gaps label" msgid "Print Thin Walls" msgstr "얇은 벽 프린팅" +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "" + msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "각 노즐을 교체 한 후에 재료를 프라이밍(Priming)하는 프린팅 옆에 타워를 프린팅하십시오." @@ -2616,6 +2722,10 @@ msgctxt "fill_outline_gaps description" msgid "Print pieces of the model which are horizontally thinner than the nozzle size." msgstr "노즐 크기보다 수평으로 더 얇은 모델 조각을 프린팅하십시오." +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "" + msgctxt "bridge_skin_speed_2 description" msgid "Print speed to use when printing the second bridge skin layer." msgstr "두번째 브릿지 스킨 레이어를 인쇄 할 때 사용할 인쇄 속도." @@ -2624,6 +2734,14 @@ msgctxt "bridge_skin_speed_3 description" msgid "Print speed to use when printing the third bridge skin layer." msgstr "세번째 브릿지 스킨 레이어를 인쇄 할 때 사용할 인쇄 속도." +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "" + msgctxt "infill_before_walls description" msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." msgstr "벽을 프린팅하기 전에 내부채움물을 프린팅하기. 벽을 먼저 프린팅하면 벽이 더 정확해질 수 있지만 겹침으로 프린팅이 매끄럽지 않습니다. 내부채움을 먼저 프린팅하면 더 튼튼한 벽이 생기지만 내부채움 패턴이 때로 표면을 통해 보일 수 있습니다." @@ -2668,6 +2786,10 @@ msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "래프트 에어 갭" +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "" + msgctxt "raft_base_extruder_nr label" msgid "Raft Base Extruder" msgstr "래프트 베이스 익스트루더" @@ -2696,6 +2818,10 @@ msgctxt "raft_base_speed label" msgid "Raft Base Print Speed" msgstr "래프트 기본 프린팅 속도" +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "" + msgctxt "raft_base_thickness label" msgid "Raft Base Thickness" msgstr "래프트 기준 두께" @@ -2712,6 +2838,10 @@ msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" msgstr "래프트 팬 속도" +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "" + msgctxt "raft_interface_extruder_nr label" msgid "Raft Middle Extruder" msgstr "래프트 중간 익스트루더" @@ -2740,6 +2870,10 @@ msgctxt "raft_interface_speed label" msgid "Raft Middle Print Speed" msgstr "래프트 중앙 프린팅 속도" +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "" + msgctxt "raft_interface_line_spacing label" msgid "Raft Middle Spacing" msgstr "래프트 중간 간격" @@ -2748,6 +2882,10 @@ msgctxt "raft_interface_thickness label" msgid "Raft Middle Thickness" msgstr "래프트 중간 두께" +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "" + msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" msgstr "래프트 프린팅 가속도" @@ -2764,6 +2902,10 @@ msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "래프트 부드럽게하기" +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "" + msgctxt "raft_surface_extruder_nr label" msgid "Raft Top Extruder" msgstr "래프트 상단 익스트루더" @@ -2796,10 +2938,22 @@ msgctxt "raft_surface_speed label" msgid "Raft Top Print Speed" msgstr "래프트 상단 프린팅 속도" +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "" + msgctxt "raft_surface_line_spacing label" msgid "Raft Top Spacing" msgstr "래프트 상단 간격" +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "" + msgctxt "z_seam_type option random" msgid "Random" msgstr "랜덤" @@ -2852,10 +3006,22 @@ msgctxt "carve_multiple_volumes label" msgid "Remove Mesh Intersection" msgstr "교차된 메쉬 제거" +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "" + msgctxt "raft_remove_inside_corners label" msgid "Remove Raft Inside Corners" msgstr "래프트 내부 모서리 제거" +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "" + msgctxt "carve_multiple_volumes description" msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." msgstr "여러 메시가 서로 겹치는 영역을 제거합니다. 병합 된 2개의 재료가 서로 중첩되는 경우 사용될 수 있습니다." @@ -2864,6 +3030,18 @@ msgctxt "remove_empty_first_layers description" msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." msgstr "첫 번째로 프린팅된 레이어 바로 아래의 비어 있는 레이어를 제거합니다. 이 설정을 해제하면 슬라이싱 허용 오차 설정을 배타 또는 중간으로 설정할 경우 첫 번째 레이어가 비어 있게 될 수 있습니다." +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "" + msgctxt "raft_remove_inside_corners description" msgid "Remove inside corners from the raft, causing the raft to become convex." msgstr "래프트가 볼록해지도록 래프트에서 내부 모서리를 제거합니다." @@ -2884,6 +3062,10 @@ msgctxt "skin_outline_count description" msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." msgstr "위쪽/아래쪽 패턴의 가장 바깥 쪽 부분을 여러 동심 선으로 바꿉니다. 하나 또는 두 개의 선을 사용하면 내부채움 재료로 시작하는 지붕면이 향상됩니다." +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "" + msgctxt "support_tree_rest_preference label" msgid "Rest Preference" msgstr "배치 기본 설정" @@ -2956,6 +3138,10 @@ msgctxt "z_seam_corner label" msgid "Seam Corner Preference" msgstr "솔기 코너 환경 설정" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "수동으로 인쇄 순서 설정" + msgctxt "draft_shield_height_limitation description" msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." msgstr "드래프트 쉴드의 높이를 설정합니다. 모델의 전체 높이 또는 제한된 높이에서 드래프트 쉴드를 프린팅하도록 선택합니다." @@ -3356,10 +3542,6 @@ msgctxt "support_interface_priority label" msgid "Support Interface Priority" msgstr "서포트 인터페이스 우선순위" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "서포트 인터페이스 해상도" - msgctxt "speed_support_interface label" msgid "Support Interface Speed" msgstr "서포트 인터페이스 속도" @@ -3712,6 +3894,10 @@ msgctxt "magic_fuzzy_skin_point_dist description" msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." msgstr "각 선분에 있는 임의의 점 사이의 평균 거리입니다. 다각형의 원래 점은 버려지므로 해상도가 감소합니다. 이 값은 퍼지 스킨 두께의 절반보다 커야합니다." +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "" + msgctxt "machine_acceleration description" msgid "The default acceleration of print head movement." msgstr "프린트 헤드 이동시 기본 가속도." @@ -4188,6 +4374,10 @@ msgctxt "jerk_travel description" msgid "The maximum instantaneous velocity change with which travel moves are made." msgstr "헤드가 이동하는 최대 순간 속도 변화." +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "" + msgctxt "machine_max_feedrate_x description" msgid "The maximum speed for the motor of the X-direction." msgstr "X 방향의 모터 최대 속도입니다." @@ -4300,6 +4490,18 @@ msgctxt "raft_base_wall_count description" msgid "The number of contours to print around the linear pattern in the base layer of the raft." msgstr "래프트의 베이스 레이어에 있는 선형 패턴 주위에 프린팅 할 윤곽의 수." +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "" + msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "스킨 에지를 지원하는 내부채움 레이어의 수." @@ -4688,6 +4890,10 @@ msgctxt "machine_gcode_flavor description" msgid "The type of g-code to be generated." msgstr "생성 될 gcode의 유형." +msgctxt "material_type description" +msgid "The type of material used." +msgstr "" + msgctxt "coasting_volume description" msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." msgstr "그렇지 않으면 볼륨이 흘러 나옵니다. 이 값은 일반적으로 노즐 직경 입방체에 가깝습니다." @@ -4736,10 +4942,22 @@ msgctxt "bridge_wall_coast description" msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." msgstr "이것은 브릿지 벽이 시작되기 직전에 익스트루더가 있어야하는 거리를 제어합니다. 브릿지가 시작되기 전에 코스팅(coasting)을 하면 노즐의 압력을 낮추고 보다 평평한 브릿지를 만들 수 있습니다." +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "이 설정은 래프트 윤곽의 안쪽 구석의 곡률을 제어합니다. 안쪽 구석이 여기에 지정된 값과 동일한 반경으로 반원 모양으로 휘어집니다. 또한 이 설정을 사용하면 래프트 윤곽에서 그러한 원보다 작은 구멍이 제거됩니다." +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "retraction_count_max description" msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." msgstr "이 설정은 최소 압출 거리에서 발생하는 리트렉션 수를 제한합니다. 이 거리내에서 더 이상의 리트렉션은 무시됩니다. 이렇게 하면 필라멘트를 평평하게하고 갈리는 문제를 일으킬 수 있으므로 동일한 필라멘트에서 반복적으로 리트렉션하지 않습니다." @@ -5100,10 +5318,6 @@ msgctxt "wall_overhang_angle description" msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." msgstr "이 각도보다 놓은 오버행(경사면)의 벽은 오버행 벽 설정을 사용해 인쇄됩니다. 값이 90이면 오버행(경사면)으로 처리되는 벽이 없습니다. 서포트로 지지되는 오버행(경사면)도 오버행(경사면)으로 처리되지 않습니다." -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "서포트가 모델의 위와 아래에 있는지 확인하려면 주어진 높이의 단계를 수행하십시오. 값이 낮을수록 슬라이스가 느려지고, 값이 높을수록 서포트 인터페이스가 있어야하는 곳에서는 정상적인 서포트다 프린팅 될 수 있습니다." - msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." msgstr "활성화하면 부드러운 모션 플래너가 있는 프린터의 도구 경로가 수정됩니다. 일반적인 도구 경로 방향에서 벗어나는 작은 움직임이 평활화되어 플루이드 모션이 개선됩니다." @@ -5496,42 +5710,74 @@ msgctxt "travel description" msgid "travel" msgstr "이동" -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "점진적 흐름 변화의 각 단계 지속 시간" +#~ msgctxt "brim_inside_margin description" +#~ msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +#~ msgstr "다른 부품 내부에 완전히 둘러싸인 부품은 다른 부품의 내부에 닿는 외부 브림을 생성할 수 있습니다. 이렇게 하면 내부 구멍에서 이 거리 내에 있는 모든 브림이 제거됩니다." + +#~ msgctxt "user_defined_print_order_enabled description" +#~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +#~ msgstr "객체 목록을 정렬하여 수동으로 인쇄 순서를 설정할 수 있습니다. 목록의 첫 번째 객체가 먼저 인쇄됩니다." + +#~ msgctxt "brim_inside_margin label" +#~ msgid "Brim Inside Avoid Margin" +#~ msgstr "내부 브림의 여백 회피" + +#~ msgctxt "brim_outside_only label" +#~ msgid "Brim Only on Outside" +#~ msgstr "밖에서만 브림 생성" + +#~ msgctxt "gradual_flow_discretisation_step_size description" +#~ msgid "Duration of each step in the gradual flow change" +#~ msgstr "점진적 흐름 변화의 각 단계 지속 시간" + +#~ msgctxt "gradual_flow_enabled description" +#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +#~ msgstr "점진적 흐름 변경을 활성화합니다. 활성화하면 흐름이 목표 흐름까지 점진적으로 증가/감소됩니다. 이는 압출기 모터가 시작/정지될 때 흐름이 즉시 변경되지 않는 보우덴 튜브가 있는 프린터에 유용합니다." + +#~ msgctxt "reset_flow_duration description" +#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +#~ msgstr "이 값보다 긴 이동에 대해서는 재료 흐름이 경로 목표 흐름으로 재설정됩니다" + +#~ msgctxt "gradual_flow_discretisation_step_size label" +#~ msgid "Gradual flow discretisation step size" +#~ msgstr "점진적 흐름 이산화 단계 크기" + +#~ msgctxt "gradual_flow_enabled label" +#~ msgid "Gradual flow enabled" +#~ msgstr "점진적 흐름 활성화" -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "점진적 흐름 변경을 활성화합니다. 활성화하면 흐름이 목표 흐름까지 점진적으로 증가/감소됩니다. 이는 압출기 모터가 시작/정지될 때 흐름이 즉시 변경되지 않는 보우덴 튜브가 있는 프린터에 유용합니다." +#~ msgctxt "max_flow_acceleration label" +#~ msgid "Gradual flow max acceleration" +#~ msgstr "점진적 흐름 최대 가속도" -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "이 값보다 긴 이동에 대해서는 재료 흐름이 경로 목표 흐름으로 재설정됩니다" +#~ msgctxt "layer_0_max_flow_acceleration label" +#~ msgid "Initial layer max flow acceleration" +#~ msgstr "초기 레이어 최대 흐름 가속도" -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "점진적 흐름 이산화 단계 크기" +#~ msgctxt "layer_0_z_overlap description" +#~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +#~ msgstr "에어 갭에서 손실 된 필라멘트를 보완하기 위해 Z 방향으로 모델의 첫 번째와 두 번째 레이어가 중첩되도록 합니다. 첫 번째 모델 레이어 위의 모든 모델은이 양만큼 아래로 이동합니다." -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "점진적 흐름 활성화" +#~ msgctxt "max_flow_acceleration description" +#~ msgid "Maximum acceleration for gradual flow changes" +#~ msgstr "점진적 흐름 변경에 대한 최대 가속도" -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "점진적 흐름 최대 가속도" +#~ msgctxt "layer_0_max_flow_acceleration description" +#~ msgid "Minimum speed for gradual flow changes for the first layer" +#~ msgstr "첫 번째 레이어의 점진적인 흐름 변화를 위한 최소 속도" -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "초기 레이어 최대 흐름 가속도" +#~ msgctxt "brim_outside_only description" +#~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +#~ msgstr "모델 바깥 쪽 브림에만 프린팅합니다. 나중에 제거해야하는 브림의 양이 줄어들지만 베드 접착력은 그렇게 많이 줄어들지 않습니다." -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "점진적 흐름 변경에 대한 최대 가속도" +#~ msgctxt "reset_flow_duration label" +#~ msgid "Reset flow duration" +#~ msgstr "흐름 지속 시간 재설정" -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "첫 번째 레이어의 점진적인 흐름 변화를 위한 최소 속도" +#~ msgctxt "support_interface_skip_height label" +#~ msgid "Support Interface Resolution" +#~ msgstr "서포트 인터페이스 해상도" -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "흐름 지속 시간 재설정" +#~ msgctxt "support_interface_skip_height description" +#~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +#~ msgstr "서포트가 모델의 위와 아래에 있는지 확인하려면 주어진 높이의 단계를 수행하십시오. 값이 낮을수록 슬라이스가 느려지고, 값이 높을수록 서포트 인터페이스가 있어야하는 곳에서는 정상적인 서포트다 프린팅 될 수 있습니다." diff --git a/resources/i18n/nl_NL/cura.po b/resources/i18n/nl_NL/cura.po index 43ca87b01e2..e14f7186282 100644 --- a/resources/i18n/nl_NL/cura.po +++ b/resources/i18n/nl_NL/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-31 19:13+0100\n" +"POT-Creation-Date: 2024-03-11 12:52+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -117,6 +117,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "&Project opslaan..." +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "" + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "In&stellingen" @@ -261,6 +265,10 @@ msgid_plural "A cloud connection is not available for some printers" msgstr[0] "Een cloudverbinding is niet beschikbaar voor een printer" msgstr[1] "Een cloudverbinding is niet beschikbaar voor meerdere printers" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "" + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "Er wordt nog een print afgedrukt. Cura kan pas een nieuwe print via USB starten zodra de vorige print is voltooid." @@ -495,10 +503,18 @@ msgctxt "@label" msgid "Anonymous" msgstr "Anoniem" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "Toepassingskader" +msgctxt "@title:column" +msgid "Applies on" +msgstr "" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "Pas extruderoffsets toe op GCode" @@ -685,6 +701,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "Berekend" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "Cameraweergave:" @@ -1411,6 +1431,10 @@ msgctxt "@label" msgid "Draft" msgstr "Ontwerp" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "" + msgctxt "@action:button" msgid "Duplicate" msgstr "Dupliceren" @@ -1537,6 +1561,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Selectie Exporteren..." +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "" + msgctxt "@button" msgid "Export material archive" msgstr "Materiaalarchief exporteren" @@ -1570,10 +1598,23 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "Eind-G-code van extruder" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "Start-G-code van extruder" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "" + +#, python-brace-format +msgctxt "@label" +msgid "Extruder {0}" +msgstr "" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Extruder(s) uitgeschakeld" @@ -1640,6 +1681,11 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Opslaan materiaalarchief mislukt" +#, python-brace-format +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "" + msgctxt "@label:category menu label" msgid "Favorites" msgstr "Favorieten" @@ -1781,6 +1827,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Compatibiliteitsmodus voor laagweergave forceren (opnieuw opstarten vereist)" +msgid "FreeCAD trackpad" +msgstr "" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Weergave voorzijde" @@ -1869,6 +1918,10 @@ msgctxt "@action" msgid "Get started" msgstr "Aan de slag" +msgctxt "@label" +msgid "Global" +msgstr "" + msgctxt "@title:tab" msgid "Global Settings" msgstr "Algemene Instellingen" @@ -1918,6 +1971,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "Alle aangesloten printers verbergen" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "Deze instelling verbergen" @@ -1994,6 +2051,10 @@ msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "Om het pakket te gebruiken moet u Cura opnieuw opstarten" +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "" + msgctxt "@label" msgid "Infill" msgstr "Vulling" @@ -2697,6 +2758,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "Geen resultaten gevonden met huidige filter" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "" + msgctxt "@label" msgid "No time estimation available" msgstr "Geen tijdschatting beschikbaar" @@ -2798,6 +2863,10 @@ msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Er kan slechts één G-code-bestand tegelijkertijd worden geladen. Het importeren van {0} is overgeslagen" +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "" + msgctxt "@action:button" msgid "Open" msgstr "Openen" @@ -2826,10 +2895,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "Projectbestand Openen" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "" + msgctxt "@action:label" msgid "Open With" msgstr "Openen" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "" + msgctxt "@action:button" msgid "Open as project" msgstr "Openen als project" @@ -3046,6 +3127,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "Meld u aan voor geverifieerde plug-ins en materialen voor UltiMaker Cura Enterprise" +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "" + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "Synchroniseer de materiaalprofielen met uw printer voordat u gaat printen." @@ -3142,6 +3227,14 @@ msgctxt "@action:button" msgid "Print" msgstr "Printen" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Afdrukken na" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Afdrukken voor" + msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -3448,8 +3541,8 @@ msgid "Provides support for reading model files." msgstr "Biedt ondersteuning voor het lezen van modelbestanden." msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Biedt ondersteuning voor het schrijven van 3MF-bestanden." +msgid "Provides support for writing 3MF and UCP files." +msgstr "" msgctxt "description" msgid "Provides support for writing MakerBot Format Packages." @@ -3693,8 +3786,12 @@ msgid "Save Cura project" msgstr "Cura-project opslaan" msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "Cura-project opslaan en bestand printen" +msgid "Save Cura project and .makerbot print file" +msgstr "" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" +msgstr "" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3720,6 +3817,10 @@ msgctxt "@button" msgid "Save new profile" msgstr "Bewaar nieuw profiel" +msgctxt "@action:button" +msgid "Save project" +msgstr "" + msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "Bewaar het .umm-bestand op een USB-stick." @@ -3823,6 +3924,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "Het crashrapport naar UltiMaker verzenden" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "" + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "" + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "" + msgctxt "@action:button" msgid "Send report" msgstr "Rapport verzenden" @@ -3875,6 +3988,10 @@ msgctxt "@title:tab" msgid "Settings" msgstr "Instellingen" +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "De instellingen zijn gewijzigd zodat deze overeenkomen met de huidige beschikbaarheid van extruders:" @@ -3943,6 +4060,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "Wilt u dat bestanden vanaf de desktop of externe toepassingen in dezelfde instantie van Cura worden geopend?" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "" + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "Moet het platform worden leeggemaakt voordat u een nieuw model laadt in de dezelfde instantie van Cura?" @@ -3999,6 +4120,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Gedetailleerd crashrapport weergeven" +msgctxt "@action:button" +msgid "Show settings" +msgstr "" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Dialoogvenster voor samenvatting weergeven tijdens het opslaan van een project" @@ -4075,10 +4200,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "Slicen mislukt" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "Slicen is mislukt door een onverwachte fout. Overweeg om de fout te melden via onze issue tracker." - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Slicen..." @@ -4087,6 +4208,10 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Effenen" +msgctxt "@label" +msgid "Solid" +msgstr "" + msgctxt "name" msgid "Solid View" msgstr "Solide weergave" @@ -4212,10 +4337,26 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Het profiel {0} is geïmporteerd." +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Samenvatting - Cura-project" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "" + msgctxt "@label" msgid "Support" msgstr "Supportstructuur" @@ -4595,6 +4736,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "Deze configuratie is niet beschikbaar omdat %1 niet wordt herkend. Ga naar %2 om het juiste materiaalprofiel te downloaden." +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "Dit is een Cura-projectbestand. Wilt u dit openen als project of de modellen eruit importeren?" @@ -4684,6 +4829,14 @@ msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Deze instelling wordt afgeleid van strijdige extruderspecifieke waarden:" +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "" + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "" + msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" msgstr "Deze versie is niet bedoeld voor productiegebruik. Als u problemen tegenkomt, meld ze dan op onze GitHub-pagina, met vermelding van de volledige versie {self.getVersion()}" @@ -4913,6 +5066,11 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Er kan geen nieuw aanmeldingsproces worden gestart. Controleer of een andere aanmeldingspoging nog actief is." +#, python-brace-format +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "" + msgctxt "@label:status" msgid "Unavailable" msgstr "Niet beschikbaar" @@ -4925,14 +5083,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Groeperen van Modellen Opheffen" -msgctxt "@action:inmenu menubar:edit" -msgid "Print Before" -msgstr "Afdrukken voor" - -msgctxt "@action:inmenu menubar:edit" -msgid "Print After" -msgstr "Afdrukken na" - msgctxt "@button" msgid "Uninstall" msgstr "De-installeren" @@ -4941,6 +5091,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Eenheid" +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "" + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "Universele configuratie bouwsysteem" @@ -5130,6 +5284,10 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." msgstr "Werkt configuraties bij van Cura 5.4 naar Cura 5.5." +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "" + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Aangepaste Firmware Uploaden" @@ -5162,6 +5320,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "Gebruiksbibliotheek, waaronder Voronoi-generatie" +msgctxt "@title:column" +msgid "Value" +msgstr "" + msgctxt "name" msgid "Version Upgrade 2.1 to 2.2" msgstr "Versie-upgrade van 2.1 naar 2.2" @@ -5266,6 +5428,10 @@ msgctxt "name" msgid "Version Upgrade 5.4 to 5.5" msgstr "Versie-upgrade 5.4 naar 5.5" +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Printers weergeven in Digital Factory" @@ -5343,6 +5509,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "Welke printer wilt u instellen?" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "Welk type cameraweergave moet worden gebruikt?" @@ -5559,6 +5729,10 @@ msgctxt "@label" msgid "mm" msgstr "mm" +msgctxt "@label" +msgid "s" +msgstr "" + msgctxt "@info:status" msgid "today" msgstr "vandaag" @@ -5586,3 +5760,15 @@ msgstr "{} plug-ins zijn niet gedownload" #~ msgid "Provides support for exporting Cura profiles." #~ msgstr "Biedt ondersteuning voor het exporteren van Cura-profielen." + +#~ msgctxt "description" +#~ msgid "Provides support for writing 3MF files." +#~ msgstr "Biedt ondersteuning voor het schrijven van 3MF-bestanden." + +#~ msgctxt "@option" +#~ msgid "Save Cura project and print file" +#~ msgstr "Cura-project opslaan en bestand printen" + +#~ msgctxt "@message" +#~ msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +#~ msgstr "Slicen is mislukt door een onverwachte fout. Overweeg om de fout te melden via onze issue tracker." diff --git a/resources/i18n/nl_NL/fdmextruder.def.json.po b/resources/i18n/nl_NL/fdmextruder.def.json.po index d25d5716162..bc7be33e4d2 100644 --- a/resources/i18n/nl_NL/fdmextruder.def.json.po +++ b/resources/i18n/nl_NL/fdmextruder.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-06-08 16:32+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -40,6 +40,10 @@ msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "Eind-G-code van Extruder" +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "" + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Absolute Eindpositie Extruder" @@ -72,6 +76,10 @@ msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "Start-G-code van Extruder" +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "" + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Absolute Startpositie Extruder" @@ -156,6 +164,14 @@ msgctxt "machine_extruder_cooling_fan_number description" msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." msgstr "Het nummer van de bij deze extruder behorende printkoelventilator. Verander de standaardwaarde 0 alleen als u voor elke extruder een andere printkoelventilator hebt." +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "" + msgctxt "machine_extruder_end_pos_x description" msgid "The x-coordinate of the ending position when turning the extruder off." msgstr "De X-coördinaat van de eindpositie wanneer de extruder wordt uitgeschakeld." diff --git a/resources/i18n/nl_NL/fdmprinter.def.json.po b/resources/i18n/nl_NL/fdmprinter.def.json.po index 8c4ef463a88..ba1cf6c1ea0 100644 --- a/resources/i18n/nl_NL/fdmprinter.def.json.po +++ b/resources/i18n/nl_NL/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,6 +12,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "" + +msgctxt "brim_inside_margin description" +msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." +msgstr "" + msgctxt "ironing_inset description" msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." msgstr "De afstand die moet worden aangehouden tot de randen van het model. Strijken tot de rand van het raster kan leiden tot een gerafelde rand van de print." @@ -56,10 +64,6 @@ msgctxt "machine_disallowed_areas description" msgid "A list of polygons with areas the print head is not allowed to enter." msgstr "Een lijst polygonen met gebieden waarin de printkop niet mag komen." -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "Een deel dat volledig is ingesloten in een ander deel kan een buitenste brim genereren die de binnenkant van het andere deel raakt. Dit verwijdert alle brim binnen deze afstand van de interne gaten." - msgctxt "support_tree_branch_reach_limit description" msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " msgstr "Een aanbeveling over hoe ver takken kunnen bewegen van de punten die ze ondersteunen. Takken kunnen deze waarde overschrijden om hun bestemming te bereiken (bouwplaat of een plat deel van het model). Als u deze waarde verlaagt, wordt de ondersteuning steviger, maar neemt het aantal takken toe (en daardoor materiaalgebruik/printtijd)." @@ -152,6 +156,10 @@ msgctxt "resolution description" msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" msgstr "Alle instellingen die invloed hebben op de resolutie van de print. Deze instellingen hebben een grote invloed op de kwaliteit (en printtijd)." +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "" + msgctxt "alternate_extra_perimeter label" msgid "Alternate Extra Wall" msgstr "Afwisselend Extra Wand" @@ -400,21 +408,21 @@ msgctxt "adhesion_type option brim" msgid "Brim" msgstr "Brim" +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "" + msgctxt "brim_gap label" msgid "Brim Distance" msgstr "Brimafstand" -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "Binnenste mijdmarge brim" - msgctxt "brim_line_count label" msgid "Brim Line Count" msgstr "Aantal Brimlijnen" -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Brim Alleen aan Buitenkant" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "" msgctxt "brim_replaces_support label" msgid "Brim Replaces Support" @@ -456,6 +464,14 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "Temperatuur werkvolume" +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "" + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "" + msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." msgstr "Door deze instelling in te schakelen, krijgt uw prime toren een brim, zelfs als het model dat niet heeft. Als u een stevigere basis wilt voor een hoge toren, kunt u de basis hoogte verhogen." @@ -868,6 +884,10 @@ msgctxt "cool_fan_enabled label" msgid "Enable Print Cooling" msgstr "Koelen van de Print Inschakelen" +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "" + msgctxt "retraction_enable label" msgid "Enable Retraction" msgstr "Intrekken Inschakelen" @@ -900,6 +920,10 @@ msgctxt "ooze_shield_enabled description" msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." msgstr "Hiermee wordt het uitloopscherm aan de buitenkant ingeschakeld, waardoor een shell rond het model wordt gemaakt waarop een tweede nozzle kan worden afgeveegd als deze zich op dezelfde hoogte bevindt als de eerste nozzle." +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "" + msgctxt "small_skin_on_surface description" msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." msgstr "Laat kleine (tot 'Breedte kleine bovenkant/onderkant') gebieden op de bovenste skinned layer (blootgesteld aan lucht) opvullen met muren in plaats van het standaardpatroon." @@ -932,6 +956,10 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "Dwing af dat de brim rond het model wordt geprint, zelfs als deze ruimte anders door supportstructuur zou worden ingenomen. Hierdoor worden enkele gebieden van de eerste supportlaag vervangen door brimgebieden." +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "" + msgctxt "support_type option everywhere" msgid "Everywhere" msgstr "Overal" @@ -1036,6 +1064,10 @@ msgctxt "speed_equalize_flow_width_factor label" msgid "Flow Equalization Ratio" msgstr "Verhouding voor afstemmen doorvoer" +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "" + msgctxt "flow_rate_extrusion_offset_factor label" msgid "Flow Rate Compensation Factor" msgstr "Doorvoercompensatiefactor" @@ -1048,6 +1080,10 @@ msgctxt "material_flow_temp_graph label" msgid "Flow Temperature Graph" msgstr "Grafiek Doorvoertemperatuur" +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "" + msgctxt "material_flow_layer_0 description" msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." msgstr "Doorvoercompensatie voor de eerste laag: de hoeveelheid materiaal die voor de eerste laag wordt doorgevoerd, wordt vermenigvuldigd met deze waarde." @@ -1440,10 +1476,22 @@ msgctxt "wall_transition_filter_distance description" msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." msgstr "Maak geen gebruik van wandovergangen als dit leidt tot snelle achtereenvolgende veranderingen in het aantal wanden. Verwijder overgangen als de afstand tussen overgangen kleiner is dan deze afstand." +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "Als de raft is ingeschakeld, is dit het extra raftgebied rond het model dat ook van een raft wordt voorzien. Als u deze marge vergroot, krijgt u een stevigere raft, maar gebruikt u ook meer materiaal en houdt u minder ruimte over voor de print." +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "meshfix_union_all description" msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." msgstr "Negeer de interne geometrie die ontstaat uit overlappende volumes binnen een raster en print de volumes als een geheel. Hiermee kunnen onbedoelde holtes binnenin verdwijnen." @@ -1672,6 +1720,10 @@ msgctxt "wall_0_inset description" msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." msgstr "Uitsparing die wordt toegepast in de buitenwand. Als de buitenwand smaller is dan de nozzle en na de binnenwand wordt geprint, gebruikt u deze offset om het gat in de nozzle te laten overlappen met de binnenwanden in plaats van met de buitenkant van het model." +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "" + msgctxt "inset_direction option inside_out" msgid "Inside To Outside" msgstr "Van binnen naar buiten" @@ -1684,6 +1736,10 @@ msgctxt "support_interface_priority option interface_area_overwrite_support_area msgid "Interface preferred" msgstr "Geprefereerde interface" +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "" + msgctxt "interlocking_beam_layer_count label" msgid "Interlocking Beam Layer Count" msgstr "Aantal in elkaar grijpende balklagen" @@ -1824,6 +1880,30 @@ msgctxt "support_tree_limit_branch_reach description" msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" msgstr "Beperken hoe ver elke tak moet bewegen vanaf het punt dat het ondersteunt. Dit kan de steun steviger maken, maar zal de hoeveelheid takken vergroten (en daardoor het materiaalgebruik/de printtijd)." +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "" + msgctxt "cutting_mesh description" msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." msgstr "Beperk het volume van dit raster binnen andere rasters. U kunt dit gebruiken om bepaalde delen van een raster met andere instellingen en met een andere extruder te printen." @@ -1921,8 +2001,10 @@ msgid "Make the extruder prime position absolute rather than relative to the las msgstr "Maak van de primepositie van de extruder de absolute positie, in plaats van de relatieve positie ten opzichte van de laatst bekende locatie van de printkop." msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "Laat de eerste en tweede laag van het model overlappen in de Z-richting om te compenseren voor verloren materiaal in de luchtlaag. Alle stukjes model boven de eerste laag worden met deze hoeveelheid naar beneden verschoven." +msgid "" +"Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" +"It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "" msgctxt "meshfix description" msgid "Make the meshes more suited for 3D printing." @@ -1948,10 +2030,18 @@ msgctxt "material label" msgid "Material" msgstr "Materiaal" +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "" + msgctxt "material_guid label" msgid "Material GUID" msgstr "Materiaal-GUID" +msgctxt "material_type label" +msgid "Material Type" +msgstr "" + msgctxt "max_extrusion_before_wipe label" msgid "Material Volume Between Wipes" msgstr "Materiaalvolume tussen afvegen" @@ -2228,6 +2318,10 @@ msgctxt "ironing_monotonic label" msgid "Monotonic Ironing Order" msgstr "Monotone strijkvolgorde" +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "" + msgctxt "roofing_monotonic label" msgid "Monotonic Top Surface Order" msgstr "Monotone volgorde bovenlaag" @@ -2268,6 +2362,10 @@ msgctxt "magic_mesh_surface_mode option normal" msgid "Normal" msgstr "Normaal" +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "" + msgctxt "support_structure option normal" msgid "Normal" msgstr "Normaal" @@ -2400,10 +2498,6 @@ msgctxt "ironing_only_highest_layer description" msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." msgstr "Strijk alleen de allerlaatste laag van het voorwerp. Dit bespaart tijd als de daaronder gelegen lagen geen glad oppervlak vereisen." -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Print de brim alleen aan de buitenkant van het model. Hiermee verkleint u de hoeveelheid brim die u achteraf moet verwijderen, zonder dat dit de hechting aan het printbed te zeer vermindert." - msgctxt "ooze_shield_angle label" msgid "Ooze Shield Angle" msgstr "Hoek Uitloopscherm" @@ -2464,6 +2558,10 @@ msgctxt "group_outer_walls description" msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." msgstr "Buitenwanden van verschillende eilanden in dezelfde laag worden achtereenvolgens geprint. Wanneer ingeschakeld, wordt de hoeveelheid stroomveranderingen beperkt omdat wanden één type tegelijk worden geprint. Wanneer uitgeschakeld, wordt het aantal verplaatsingen tussen eilanden verminderd omdat wanden op dezelfde eilanden worden gegroepeerd." +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "" + msgctxt "inset_direction option outside_in" msgid "Outside To Inside" msgstr "Van buiten naar binnen" @@ -2544,6 +2642,10 @@ msgctxt "prime_tower_line_width label" msgid "Prime Tower Line Width" msgstr "Lijnbreedte Primepijler" +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "" + msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" msgstr "Minimumvolume primepijler" @@ -2560,6 +2662,10 @@ msgctxt "speed_prime_tower label" msgid "Prime Tower Speed" msgstr "Snelheid Primepijler" +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "" + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "X-positie Primepijler" @@ -2576,18 +2682,14 @@ msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Printschok" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "" + msgctxt "print_sequence label" msgid "Print Sequence" msgstr "Printvolgorde" -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "Handmatig afdrukvolgorde instellen" - -msgctxt "user_defined_print_order_enabled description" -msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." -msgstr "Maakt het mogelijk de objectlijst te ordenen om de afdrukvolgorde handmatig in te stellen. Het eerste object van de lijst wordt als eerste afgedrukt." - msgctxt "speed_print label" msgid "Print Speed" msgstr "Printsnelheid" @@ -2596,6 +2698,10 @@ msgctxt "fill_outline_gaps label" msgid "Print Thin Walls" msgstr "Dunne wanden printen" +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "" + msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "Print een pijler naast de print, waarop het materiaal na iedere nozzlewisseling wordt ingespoeld." @@ -2616,6 +2722,10 @@ msgctxt "fill_outline_gaps description" msgid "Print pieces of the model which are horizontally thinner than the nozzle size." msgstr "Print delen van het model die horizontaal dunner zijn dan de maat van de nozzle." +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "" + msgctxt "bridge_skin_speed_2 description" msgid "Print speed to use when printing the second bridge skin layer." msgstr "Printsnelheid tijdens het printen van de tweede brugskinlaag." @@ -2624,6 +2734,14 @@ msgctxt "bridge_skin_speed_3 description" msgid "Print speed to use when printing the third bridge skin layer." msgstr "Printsnelheid tijdens het printen van de derde brugskinlaag." +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "" + msgctxt "infill_before_walls description" msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." msgstr "Print de vulling voordat de wanden worden geprint. Wanneer u eerst de wanden print, worden deze nauwkeuriger geprint, maar wordt de overhang mogelijk van mindere kwaliteit. Wanneer u eerst de vulling print, worden de wanden steviger, maar schijnt het vulpatroon mogelijk door." @@ -2668,6 +2786,10 @@ msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "Luchtruimte Raft" +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "" + msgctxt "raft_base_extruder_nr label" msgid "Raft Base Extruder" msgstr "Raft basisextruder" @@ -2696,6 +2818,10 @@ msgctxt "raft_base_speed label" msgid "Raft Base Print Speed" msgstr "Printsnelheid Grondvlak Raft" +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "" + msgctxt "raft_base_thickness label" msgid "Raft Base Thickness" msgstr "Dikte Grondvlak Raft" @@ -2712,6 +2838,10 @@ msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" msgstr "Ventilatorsnelheid Raft" +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "" + msgctxt "raft_interface_extruder_nr label" msgid "Raft Middle Extruder" msgstr "Raft middelste extruder" @@ -2740,6 +2870,10 @@ msgctxt "raft_interface_speed label" msgid "Raft Middle Print Speed" msgstr "Printsnelheid Midden Raft" +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "" + msgctxt "raft_interface_line_spacing label" msgid "Raft Middle Spacing" msgstr "Tussenruimte Midden Raft" @@ -2748,6 +2882,10 @@ msgctxt "raft_interface_thickness label" msgid "Raft Middle Thickness" msgstr "Lijndikte Midden Raft" +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "" + msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" msgstr "Printacceleratie Raft" @@ -2764,6 +2902,10 @@ msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "Raft effenen" +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "" + msgctxt "raft_surface_extruder_nr label" msgid "Raft Top Extruder" msgstr "Raft bovenste extruder" @@ -2796,10 +2938,22 @@ msgctxt "raft_surface_speed label" msgid "Raft Top Print Speed" msgstr "Printsnelheid Bovenkant Raft" +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "" + msgctxt "raft_surface_line_spacing label" msgid "Raft Top Spacing" msgstr "Bovenruimte Raft" +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "" + msgctxt "z_seam_type option random" msgid "Random" msgstr "Willekeurig" @@ -2852,10 +3006,22 @@ msgctxt "carve_multiple_volumes label" msgid "Remove Mesh Intersection" msgstr "Rastersnijpunt verwijderen" +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "" + msgctxt "raft_remove_inside_corners label" msgid "Remove Raft Inside Corners" msgstr "Binnenhoeken raft verwijderen" +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "" + msgctxt "carve_multiple_volumes description" msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." msgstr "Hiermee verwijdert u gebieden waar meerdere rasters elkaar overlappen. Deze functie kan worden gebruikt als samengevoegde objecten van twee materialen elkaar overlappen." @@ -2864,6 +3030,18 @@ msgctxt "remove_empty_first_layers description" msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." msgstr "Hiermee worden de lege lagen onder de eerste geprinte laag verwijderd, indien aanwezig. Als u deze instelling uitschakelt, kunnen lege eerste lagen ontstaan als de Slicetolerantie is ingesteld op Exclusief of Midden." +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "" + msgctxt "raft_remove_inside_corners description" msgid "Remove inside corners from the raft, causing the raft to become convex." msgstr "Verwijdering van de binnenhoeken van de raft maakt de raft bol." @@ -2884,6 +3062,10 @@ msgctxt "skin_outline_count description" msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." msgstr "Vervang het buitenste gedeelte van het patroon boven-/onderkant door een aantal concentrische lijnen. Het gebruik van 1 of 2 lijnen verbetert daken die op vulmateriaal beginnen." +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "" + msgctxt "support_tree_rest_preference label" msgid "Rest Preference" msgstr "Plaatsings voorkeur" @@ -2956,6 +3138,10 @@ msgctxt "z_seam_corner label" msgid "Seam Corner Preference" msgstr "Voorkeur van naad en hoek" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Handmatig afdrukvolgorde instellen" + msgctxt "draft_shield_height_limitation description" msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." msgstr "Stel de hoogte van het tochtscherm in. U kunt ervoor kiezen een tochtscherm met dezelfde hoogte als het model of lager te printen." @@ -3356,10 +3542,6 @@ msgctxt "support_interface_priority label" msgid "Support Interface Priority" msgstr "Ondersteuning Interface Prioriteit" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Resolutie Verbindingsstructuur" - msgctxt "speed_support_interface label" msgid "Support Interface Speed" msgstr "Vulsnelheid Verbindingsstructuur" @@ -3712,6 +3894,10 @@ msgctxt "magic_fuzzy_skin_point_dist description" msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." msgstr "De gemiddelde afstand tussen de willekeurig geplaatste punten op elk lijnsegment. Houd er rekening mee dat de originele punten van de polygoon worden verwijderd. Een hoge effenheid leidt dus tot een verlaging van de resolutie. Deze waarde moet hoger zijn dan de helft van de Dikte rafelig oppervlak." +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "" + msgctxt "machine_acceleration description" msgid "The default acceleration of print head movement." msgstr "De standaardacceleratie van de printkopbeweging." @@ -4188,6 +4374,10 @@ msgctxt "jerk_travel description" msgid "The maximum instantaneous velocity change with which travel moves are made." msgstr "De maximale onmiddellijke snelheidsverandering tijdens het uitvoeren van bewegingen." +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "" + msgctxt "machine_max_feedrate_x description" msgid "The maximum speed for the motor of the X-direction." msgstr "De maximale snelheid van de motor in de X-richting." @@ -4300,6 +4490,18 @@ msgctxt "raft_base_wall_count description" msgid "The number of contours to print around the linear pattern in the base layer of the raft." msgstr "Het aantal contouren dat wordt geprint rond het lineaire patroon in de basislaag van de raft." +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "" + msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "Het aantal opvullagen dat skinranden ondersteunt." @@ -4688,6 +4890,10 @@ msgctxt "machine_gcode_flavor description" msgid "The type of g-code to be generated." msgstr "De G-code-versie die moet worden gegenereerd." +msgctxt "material_type description" +msgid "The type of material used." +msgstr "" + msgctxt "coasting_volume description" msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." msgstr "Hiermee stelt u volume in dat anders zou worden afgevoerd. Deze waarde dient zo dicht mogelijk bij de berekende waarde van de nozzlediameter te liggen." @@ -4736,10 +4942,22 @@ msgctxt "bridge_wall_coast description" msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." msgstr "Met deze optie controleert u de afstand die de extruder moet coasten voordat een brugwand begint. Met coasting voordat de brug begint, vermindert u de druk in de nozzle en krijgt u mogelijk een vlakkere brug." +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "Bepaalt hoeveel binnenhoeken in de raftcontour worden afgerond. Naar binnen gebogen hoeken worden tot een halve cirkel afgerond met een straal die gelijk is aan de hier opgegeven waarde. Met deze instellingen worden ook gaten in de raftcontour verwijderd die kleiner zijn dan een dergelijke cirkel." +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "retraction_count_max description" msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." msgstr "Deze instelling beperkt het aantal intrekbewegingen dat kan worden uitgevoerd binnen het gebied Minimaal afstandsgebied voor intrekken. Extra intrekbewegingen binnen dit gebied worden genegeerd. Hiermee voorkomt u dat hetzelfde stuk filament meerdere keren wordt ingetrokken en dus kan worden geplet en kan gaan haperen." @@ -5100,10 +5318,6 @@ msgctxt "wall_overhang_angle description" msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." msgstr "Wanden die overhangen in een hoek groter dan deze waarde, worden geprint met instellingen voor overhangende wanden. Wanneer de waarde 90 is, wordt een wand niet als een overhangende wand gezien. Een overhang die wordt ondersteund door ondersteuning wordt ook niet als overhang gezien." -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "Maak treden van de opgegeven hoogte tijdens het controleren waar zich boven en onder de supportstructuur delen van het model bevinden. Lagere waarden slicen lager, terwijl door hogere waarden mogelijk normale supportstructuur wordt geprint op plekken waar een verbindingsstructuur had moeten zijn." - msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." msgstr "Indien ingeschakeld, worden gereedschapsbanen gecorrigeerd voor printers met vloeiende bewegingsplanners. Kleine bewegingen die afwijken van de algemene richting van het gereedschapspad worden afgevlakt om vloeiende bewegingen te verbeteren." @@ -5496,42 +5710,74 @@ msgctxt "travel description" msgid "travel" msgstr "beweging" -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duur van elke stap in de geleidelijke flowverandering" +#~ msgctxt "brim_inside_margin description" +#~ msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +#~ msgstr "Een deel dat volledig is ingesloten in een ander deel kan een buitenste brim genereren die de binnenkant van het andere deel raakt. Dit verwijdert alle brim binnen deze afstand van de interne gaten." + +#~ msgctxt "user_defined_print_order_enabled description" +#~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +#~ msgstr "Maakt het mogelijk de objectlijst te ordenen om de afdrukvolgorde handmatig in te stellen. Het eerste object van de lijst wordt als eerste afgedrukt." + +#~ msgctxt "brim_inside_margin label" +#~ msgid "Brim Inside Avoid Margin" +#~ msgstr "Binnenste mijdmarge brim" + +#~ msgctxt "brim_outside_only label" +#~ msgid "Brim Only on Outside" +#~ msgstr "Brim Alleen aan Buitenkant" + +#~ msgctxt "gradual_flow_discretisation_step_size description" +#~ msgid "Duration of each step in the gradual flow change" +#~ msgstr "Duur van elke stap in de geleidelijke flowverandering" + +#~ msgctxt "gradual_flow_enabled description" +#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +#~ msgstr "Geleidelijke veranderingen in flow inschakelen. Indien ingeschakeld, wordt de flow geleidelijk verhoogd/verlaagd tot de doelflow. Dit is handig voor printers met een bowdenbuis waarbij de flow niet onmiddellijk verandert wanneer de extrudermotor start/stopt." + +#~ msgctxt "reset_flow_duration description" +#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +#~ msgstr "Voor elke verplaatsing die langer is dan deze waarde, wordt de materiaalflow teruggezet op de doelflow van de paden." + +#~ msgctxt "gradual_flow_discretisation_step_size label" +#~ msgid "Gradual flow discretisation step size" +#~ msgstr "Stapgrootte geleidelijke flowdiscretisatie" + +#~ msgctxt "gradual_flow_enabled label" +#~ msgid "Gradual flow enabled" +#~ msgstr "Geleidelijke flow ingeschakeld" -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Geleidelijke veranderingen in flow inschakelen. Indien ingeschakeld, wordt de flow geleidelijk verhoogd/verlaagd tot de doelflow. Dit is handig voor printers met een bowdenbuis waarbij de flow niet onmiddellijk verandert wanneer de extrudermotor start/stopt." +#~ msgctxt "max_flow_acceleration label" +#~ msgid "Gradual flow max acceleration" +#~ msgstr "Max. versnelling geleidelijke flow" -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Voor elke verplaatsing die langer is dan deze waarde, wordt de materiaalflow teruggezet op de doelflow van de paden." +#~ msgctxt "layer_0_max_flow_acceleration label" +#~ msgid "Initial layer max flow acceleration" +#~ msgstr "Maximale flowversnelling in de beginlaag" -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Stapgrootte geleidelijke flowdiscretisatie" +#~ msgctxt "layer_0_z_overlap description" +#~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +#~ msgstr "Laat de eerste en tweede laag van het model overlappen in de Z-richting om te compenseren voor verloren materiaal in de luchtlaag. Alle stukjes model boven de eerste laag worden met deze hoeveelheid naar beneden verschoven." -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Geleidelijke flow ingeschakeld" +#~ msgctxt "max_flow_acceleration description" +#~ msgid "Maximum acceleration for gradual flow changes" +#~ msgstr "Maximale versnelling voor geleidelijke flowveranderingen" -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Max. versnelling geleidelijke flow" +#~ msgctxt "layer_0_max_flow_acceleration description" +#~ msgid "Minimum speed for gradual flow changes for the first layer" +#~ msgstr "Minimumsnelheid voor geleidelijke flowveranderingen voor de eerste laag" -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Maximale flowversnelling in de beginlaag" +#~ msgctxt "brim_outside_only description" +#~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +#~ msgstr "Print de brim alleen aan de buitenkant van het model. Hiermee verkleint u de hoeveelheid brim die u achteraf moet verwijderen, zonder dat dit de hechting aan het printbed te zeer vermindert." -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximale versnelling voor geleidelijke flowveranderingen" +#~ msgctxt "reset_flow_duration label" +#~ msgid "Reset flow duration" +#~ msgstr "Flowduur resetten" -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimumsnelheid voor geleidelijke flowveranderingen voor de eerste laag" +#~ msgctxt "support_interface_skip_height label" +#~ msgid "Support Interface Resolution" +#~ msgstr "Resolutie Verbindingsstructuur" -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Flowduur resetten" +#~ msgctxt "support_interface_skip_height description" +#~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +#~ msgstr "Maak treden van de opgegeven hoogte tijdens het controleren waar zich boven en onder de supportstructuur delen van het model bevinden. Lagere waarden slicen lager, terwijl door hogere waarden mogelijk normale supportstructuur wordt geprint op plekken waar een verbindingsstructuur had moeten zijn." diff --git a/resources/i18n/pl_PL/cura.po b/resources/i18n/pl_PL/cura.po index fe9f6061418..b21f42ed6e0 100644 --- a/resources/i18n/pl_PL/cura.po +++ b/resources/i18n/pl_PL/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-31 19:13+0100\n" +"POT-Creation-Date: 2024-03-11 12:52+0100\n" "PO-Revision-Date: 2021-09-07 08:02+0200\n" "Last-Translator: Mariusz Matłosz \n" "Language-Team: Mariusz Matłosz , reprapy.pl\n" @@ -124,6 +124,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "" +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "" + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "Opcje" @@ -265,6 +269,10 @@ msgid_plural "A cloud connection is not available for some printers" msgstr[0] "" msgstr[1] "" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "" + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "Nadal trwa drukowanie. Cura nie może rozpocząć kolejnego wydruku przez USB, dopóki poprzedni wydruk nie zostanie zakończony." @@ -499,10 +507,18 @@ msgctxt "@label" msgid "Anonymous" msgstr "Anonimowa" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "Struktura aplikacji" +msgctxt "@title:column" +msgid "Applies on" +msgstr "" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "" @@ -689,6 +705,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "Przeliczone" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "Renderowanie z kamery:" @@ -1413,6 +1433,10 @@ msgctxt "@label" msgid "Draft" msgstr "Szkic" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "" + msgctxt "@action:button" msgid "Duplicate" msgstr "Duplikuj" @@ -1539,6 +1563,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Eksportuj Zaznaczenie..." +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "" + msgctxt "@button" msgid "Export material archive" msgstr "" @@ -1572,10 +1600,23 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "Końcowy G-code ekstrudera" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "Początkowy G-code ekstrudera" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "" + +#, python-brace-format +msgctxt "@label" +msgid "Extruder {0}" +msgstr "" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Ekstruder(y) wyłączony(/e)" @@ -1642,6 +1683,11 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "" +#, python-brace-format +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "" + msgctxt "@label:category menu label" msgid "Favorites" msgstr "Ulubione" @@ -1783,6 +1829,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Wymuszenie widoku warstw w trybie zgodności (wymaga ponownego uruchomienia)" +msgid "FreeCAD trackpad" +msgstr "" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Widok z przodu" @@ -1871,6 +1920,10 @@ msgctxt "@action" msgid "Get started" msgstr "Rozpocznij" +msgctxt "@label" +msgid "Global" +msgstr "" + msgctxt "@title:tab" msgid "Global Settings" msgstr "Ustawienia ogólne" @@ -1920,6 +1973,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "Ukryj tę opcję" @@ -1996,6 +2053,10 @@ msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "" +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "" + msgctxt "@label" msgid "Infill" msgstr "Wypełnienie" @@ -2699,6 +2760,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "" + msgctxt "@label" msgid "No time estimation available" msgstr "Szacunkowy czas niedostępny" @@ -2800,6 +2865,10 @@ msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Jednocześnie można załadować tylko jeden plik G-code. Pominięto importowanie {0}" +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "" + msgctxt "@action:button" msgid "Open" msgstr "Otwórz" @@ -2828,10 +2897,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "Otwórz Plik Projektu" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "" + msgctxt "@action:label" msgid "Open With" msgstr "" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "" + msgctxt "@action:button" msgid "Open as project" msgstr "Otwórz jako projekt" @@ -3044,6 +3125,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "" +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "" + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "" @@ -3140,6 +3225,14 @@ msgctxt "@action:button" msgid "Print" msgstr "Drukuj" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Drukuj po" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Drukuj przed" + msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -3446,8 +3539,8 @@ msgid "Provides support for reading model files." msgstr "Zapewnia wsparcie dla czytania plików modeli." msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Zapewnia wsparcie dla tworzenia plików 3MF." +msgid "Provides support for writing 3MF and UCP files." +msgstr "" msgctxt "description" msgid "Provides support for writing MakerBot Format Packages." @@ -3691,7 +3784,11 @@ msgid "Save Cura project" msgstr "" msgctxt "@option" -msgid "Save Cura project and print file" +msgid "Save Cura project and .makerbot print file" +msgstr "" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" msgstr "" msgctxt "@title:window" @@ -3718,6 +3815,10 @@ msgctxt "@button" msgid "Save new profile" msgstr "" +msgctxt "@action:button" +msgid "Save project" +msgstr "" + msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "" @@ -3821,6 +3922,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "Wyślij raport błędu do UltiMaker" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "" + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "" + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "" + msgctxt "@action:button" msgid "Send report" msgstr "Wyślij raport" @@ -3873,6 +3986,10 @@ msgctxt "@title:tab" msgid "Settings" msgstr "Ustawienia" +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "Ustawienia zostały zmienione w celu dopasowania do bieżącej dostępności ekstruderów:" @@ -3941,6 +4058,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "" + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "" @@ -3997,6 +4118,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Pokaż szczegółowy raport błędu" +msgctxt "@action:button" +msgid "Show settings" +msgstr "" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Pokaż okno podsumowania podczas zapisywaniu projektu" @@ -4073,10 +4198,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "" - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Cięcie..." @@ -4085,6 +4206,10 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Wygładzanie" +msgctxt "@label" +msgid "Solid" +msgstr "" + msgctxt "name" msgid "Solid View" msgstr "Widok Bryły" @@ -4210,10 +4335,26 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "" +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Podsumowanie - Projekt Cura" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "" + msgctxt "@label" msgid "Support" msgstr "Podpory" @@ -4586,6 +4727,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "Ta konfiguracja jest niedostępna, ponieważ %1 jest nierozpoznany. Przejdź do %2, aby pobrać prawidłowy profil materiału." +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "Jest to plik projektu Cura. Czy chcesz otworzyć go jako projekt, czy zaimportować z niego modele?" @@ -4675,6 +4820,14 @@ msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "" +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "" + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "" + msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" msgstr "" @@ -4904,6 +5057,11 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "" +#, python-brace-format +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "" + msgctxt "@label:status" msgid "Unavailable" msgstr "Niedostępne" @@ -4916,14 +5074,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Rozgrupuj modele" -msgctxt "@action:inmenu menubar:edit" -msgid "Print Before" -msgstr "Drukuj przed" - -msgctxt "@action:inmenu menubar:edit" -msgid "Print After" -msgstr "Drukuj po" - msgctxt "@button" msgid "Uninstall" msgstr "" @@ -4932,6 +5082,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "" +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "" + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "" @@ -5121,6 +5275,10 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." msgstr "" +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "" + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Prześlij niestandardowe oprogramowanie" @@ -5153,6 +5311,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "" +msgctxt "@title:column" +msgid "Value" +msgstr "" + msgctxt "name" msgid "Version Upgrade 2.1 to 2.2" msgstr "Ulepszenie Wersji z 2.1 do 2.2" @@ -5257,6 +5419,10 @@ msgctxt "name" msgid "Version Upgrade 5.4 to 5.5" msgstr "" +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "" @@ -5334,6 +5500,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "Jakiego rodzaju kamery należy użyć do renderowania?" @@ -5539,6 +5709,10 @@ msgctxt "@label" msgid "mm" msgstr "mm" +msgctxt "@label" +msgid "s" +msgstr "" + msgctxt "@info:status" msgid "today" msgstr "dziś" @@ -5572,6 +5746,10 @@ msgstr "" #~ msgid "Error writing 3mf file." #~ msgstr "Błąd zapisu pliku 3mf." +#~ msgctxt "description" +#~ msgid "Provides support for writing 3MF files." +#~ msgstr "Zapewnia wsparcie dla tworzenia plików 3MF." + #~ msgctxt "@info:title" #~ msgid "Simulation View" #~ msgstr "Widok symulacji" diff --git a/resources/i18n/pl_PL/fdmextruder.def.json.po b/resources/i18n/pl_PL/fdmextruder.def.json.po index 81c2838708b..28aa15ea876 100644 --- a/resources/i18n/pl_PL/fdmextruder.def.json.po +++ b/resources/i18n/pl_PL/fdmextruder.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-06-08 16:32+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: 2019-03-13 14:00+0200\n" "Last-Translator: Mariusz 'Virgin71' Matłosz \n" "Language-Team: reprapy.pl\n" @@ -45,6 +45,10 @@ msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "Końcowy G-code Ekstrudera" +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "" + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Bezwzgl. Końcowa Pozycja Ekstrudera" @@ -77,6 +81,10 @@ msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "Początkowy G-code Ekstrudera" +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "" + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Bezwzględna Pozycja Początkowa Ekstrudera" @@ -161,6 +169,14 @@ msgctxt "machine_extruder_cooling_fan_number description" msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." msgstr "Numer wentylatora przypisanego do ekstrudera. Zmień z domyślnej wartości 0, tylko w przypadku, kiedy posiadasz oddzielny wentylator dla każdego ekstrudera." +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "" + msgctxt "machine_extruder_end_pos_x description" msgid "The x-coordinate of the ending position when turning the extruder off." msgstr "Współrzędna X końcowej pozycji ekstrudera podczas jego wyłączania." diff --git a/resources/i18n/pl_PL/fdmprinter.def.json.po b/resources/i18n/pl_PL/fdmprinter.def.json.po index 7f093c859c2..93266470944 100644 --- a/resources/i18n/pl_PL/fdmprinter.def.json.po +++ b/resources/i18n/pl_PL/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: 2019-11-15 15:34+0100\n" "Last-Translator: Mariusz Matłosz \n" "Language-Team: Mariusz Matłosz , reprapy.pl\n" @@ -16,6 +16,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.2.4\n" +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "" + +msgctxt "brim_inside_margin description" +msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." +msgstr "" + msgctxt "ironing_inset description" msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." msgstr "Odległość utrzymywana od krawędzi modelu. Prasowanie do końca krawędzi siatki może powodować zadarte krawędzie na wydruku." @@ -60,10 +68,6 @@ msgctxt "machine_disallowed_areas description" msgid "A list of polygons with areas the print head is not allowed to enter." msgstr "Lista obszarów, we których głowica nie może się poruszać." -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "" - msgctxt "support_tree_branch_reach_limit description" msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " msgstr "" @@ -156,6 +160,10 @@ msgctxt "resolution description" msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" msgstr "Wszystkie ustawienia, które wpływają na rozdzielczość druku. Ustawienia te mają ogromny wpływ na jakość (i czas druku)" +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "" + msgctxt "alternate_extra_perimeter label" msgid "Alternate Extra Wall" msgstr "Zastosuj Dodatkową Ścianę" @@ -404,21 +412,21 @@ msgctxt "adhesion_type option brim" msgid "Brim" msgstr "Obrys" -msgctxt "brim_gap label" -msgid "Brim Distance" +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" msgstr "" -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" +msgctxt "brim_gap label" +msgid "Brim Distance" msgstr "" msgctxt "brim_line_count label" msgid "Brim Line Count" msgstr "Liczba Linii Obrysu" -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Obrys Tylko na Zew" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "" msgctxt "brim_replaces_support label" msgid "Brim Replaces Support" @@ -460,6 +468,14 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "Temperatura obszaru roboczego" +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "" + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "" + msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." msgstr "" @@ -872,6 +888,10 @@ msgctxt "cool_fan_enabled label" msgid "Enable Print Cooling" msgstr "Włącz Chłodzenie Wydruku" +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "" + msgctxt "retraction_enable label" msgid "Enable Retraction" msgstr "Włącz Retrakcję" @@ -904,6 +924,10 @@ msgctxt "ooze_shield_enabled description" msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." msgstr "Włączyć zewnętrzną osłonę. Powstanie powłoka wokół modelu, która będzie czyściła drugą dyszę, jeśli jest na tej samej wysokości, co pierwsza dysza." +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "" + msgctxt "small_skin_on_surface description" msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." msgstr "" @@ -936,6 +960,10 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "Wymuś drukowanie obrysu wokół modelu, nawet jeśli powierzchnia byłaby zajęta przez podpory. Zastępuje obszary podpór przez obrys. Dotyczy pierwszej warstwy." +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "" + msgctxt "support_type option everywhere" msgid "Everywhere" msgstr "Wszędzie" @@ -1040,6 +1068,10 @@ msgctxt "speed_equalize_flow_width_factor label" msgid "Flow Equalization Ratio" msgstr "" +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "" + msgctxt "flow_rate_extrusion_offset_factor label" msgid "Flow Rate Compensation Factor" msgstr "Współczynnik kompensacji przepływu" @@ -1052,6 +1084,10 @@ msgctxt "material_flow_temp_graph label" msgid "Flow Temperature Graph" msgstr "Wykres Temp. Przepływu" +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "" + msgctxt "material_flow_layer_0 description" msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." msgstr "Kompensacja przepływu dla pierwszej warstwy: ilość materiału ekstrudowanego na pierwszej warstwie jest mnożona przez tę wartość." @@ -1444,10 +1480,22 @@ msgctxt "wall_transition_filter_distance description" msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." msgstr "" +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "Jeśli tratwa jest włączona, jest to dodatkowy obszar tratwy wokół modelu, który ma również tratwę. Zwiększenie marginesu wzmocni tratwę przy wykorzystaniu z większej ilości materiału i pozostawi mniej miejsca na wydruk." +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "meshfix_union_all description" msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." msgstr "Zignoruj geometrię wewnętrzną wynikającą z nakładania się brył w siatce i wydrukuj ją jako jedną. Może to spowodować zniknięcie niezamierzonych wewnętrznych ubytków." @@ -1676,6 +1724,10 @@ msgctxt "wall_0_inset description" msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." msgstr "Wkład nałożony na ścieżkę zewnętrznej ściany. Jeśli zewnętrzna ścianka jest mniejsza niż dysza i jest drukowana po wewnętrznych ściankach, użyj tego przesunięcia, aby uzyskać otwór w dyszy, żeby nakładała się z wewnętrzną ścianą zamiast być na zewnątrz modelu." +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "" + msgctxt "inset_direction option inside_out" msgid "Inside To Outside" msgstr "" @@ -1688,6 +1740,10 @@ msgctxt "support_interface_priority option interface_area_overwrite_support_area msgid "Interface preferred" msgstr "" +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "" + msgctxt "interlocking_beam_layer_count label" msgid "Interlocking Beam Layer Count" msgstr "" @@ -1828,6 +1884,30 @@ msgctxt "support_tree_limit_branch_reach description" msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" msgstr "" +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "" + msgctxt "cutting_mesh description" msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." msgstr "Potnij siatkę na części. Możesz to zrobić, aby stworzyć określone miejsca w jednej siatce, które będą drukowane z innymi ustawieniami, a nawet innym ekstruderem." @@ -1925,8 +2005,10 @@ msgid "Make the extruder prime position absolute rather than relative to the las msgstr "Zmień pozycję końcową ekstrudera na bezwzględną, zamiast względem ostatniej pozycji głowicy." msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "Niech pierwsza i druga warstwa nachodzą na siebie w osi Z, aby skompensować stratę filamentu w szczelinie powietrznej. Wszystkie modele powyżej pierwszej warstwy modelu będą obniżone o tą wartość." +msgid "" +"Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" +"It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "" msgctxt "meshfix description" msgid "Make the meshes more suited for 3D printing." @@ -1952,10 +2034,18 @@ msgctxt "material label" msgid "Material" msgstr "Materiał" +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "" + msgctxt "material_guid label" msgid "Material GUID" msgstr "GUID Materiału" +msgctxt "material_type label" +msgid "Material Type" +msgstr "" + msgctxt "max_extrusion_before_wipe label" msgid "Material Volume Between Wipes" msgstr "Objętość materiału między czyszczeniem" @@ -2232,6 +2322,10 @@ msgctxt "ironing_monotonic label" msgid "Monotonic Ironing Order" msgstr "" +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "" + msgctxt "roofing_monotonic label" msgid "Monotonic Top Surface Order" msgstr "" @@ -2272,6 +2366,10 @@ msgctxt "magic_mesh_surface_mode option normal" msgid "Normal" msgstr "Normalny" +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "" + msgctxt "support_structure option normal" msgid "Normal" msgstr "" @@ -2404,10 +2502,6 @@ msgctxt "ironing_only_highest_layer description" msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." msgstr "Przeprowadzaj prasowanie tylko na najwyższej warstwie siatki. Oszczędza to czas jeżeli niższe warstwy nie muszą mieć gładkie wykończenia powierzchni." -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Drukuj obrys tylko na zewnątrz modelu. Zmniejsza to liczbę obrysu, który trzeba usunąć po wydruku, podczas gdy nie zmniejsza znacząco przyczepności do stołu." - msgctxt "ooze_shield_angle label" msgid "Ooze Shield Angle" msgstr "Kąt Osłony Wycierającej" @@ -2468,6 +2562,10 @@ msgctxt "group_outer_walls description" msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." msgstr "Zewnętrzne ściany różnych wysp w tej samej warstwie są drukowane sekwencyjnie. Gdy jest włączone, ilość zmian przepływu jest ograniczona, ponieważ ściany są drukowane po jednym rodzaju na raz. Gdy jest wyłączone, liczba podróży między wyspami jest zmniejszana, ponieważ ściany na tych samych wyspach są grupowane." +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "" + msgctxt "inset_direction option outside_in" msgid "Outside To Inside" msgstr "" @@ -2548,6 +2646,10 @@ msgctxt "prime_tower_line_width label" msgid "Prime Tower Line Width" msgstr "Szerokość Linii Wieży Czyszczczenia" +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "" + msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" msgstr "Min. Objętość Wieży Czyszczącej" @@ -2564,6 +2666,10 @@ msgctxt "speed_prime_tower label" msgid "Prime Tower Speed" msgstr "Prędkość Wieży Czyszczenia" +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "" + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "Pozycja Wieży Czyszcz. X" @@ -2580,18 +2686,14 @@ msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Zryw Druku" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "" + msgctxt "print_sequence label" msgid "Print Sequence" msgstr "Sekwencja Wydruku" -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "Ręczne ustawienie kolejności drukowania" - -msgctxt "user_defined_print_order_enabled description" -msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." -msgstr "Umożliwia ręczne ustawienie kolejności drukowania na liście obiektów. Pierwszy obiekt z listy zostanie wydrukowany jako pierwszy." - msgctxt "speed_print label" msgid "Print Speed" msgstr "Prędkość Druku" @@ -2600,6 +2702,10 @@ msgctxt "fill_outline_gaps label" msgid "Print Thin Walls" msgstr "Drukuj Cienkie Linie" +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "" + msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "Wydrukuj wieżę obok wydruku, która służy do zmiany materiału po każdym przełączeniu dyszy." @@ -2620,6 +2726,10 @@ msgctxt "fill_outline_gaps description" msgid "Print pieces of the model which are horizontally thinner than the nozzle size." msgstr "Drukuj części modelu, które są poziomo cieńsze niż rozmiar dyszy." +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "" + msgctxt "bridge_skin_speed_2 description" msgid "Print speed to use when printing the second bridge skin layer." msgstr "Prędkość używana podczas drukowania drugiej warstwy skóry mostu." @@ -2628,6 +2738,14 @@ msgctxt "bridge_skin_speed_3 description" msgid "Print speed to use when printing the third bridge skin layer." msgstr "Prędkość używana podczas drukowania trzeciej warstwy skóry mostu." +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "" + msgctxt "infill_before_walls description" msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." msgstr "Wydrukuj wypełnienie przed wydrukowaniem ścian. Drukowanie ścian jako pierwsze może prowadzić do bardziej dokładnych ścian, ale pogorszy zwisy. Drukowanie wypełnienia najpierw prowadzi do mocniejszych ścian, ale wzór wypełnienia może czasem być widoczny przez powierzchnię." @@ -2672,6 +2790,10 @@ msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "Przerwa Tratwy" +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "" + msgctxt "raft_base_extruder_nr label" msgid "Raft Base Extruder" msgstr "" @@ -2700,6 +2822,10 @@ msgctxt "raft_base_speed label" msgid "Raft Base Print Speed" msgstr "Prędk. Druku Podst. Tratwy" +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "" + msgctxt "raft_base_thickness label" msgid "Raft Base Thickness" msgstr "Grubość Podstawy Tratwy" @@ -2716,6 +2842,10 @@ msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" msgstr "Prędk. Went. Tratwa" +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "" + msgctxt "raft_interface_extruder_nr label" msgid "Raft Middle Extruder" msgstr "" @@ -2744,6 +2874,10 @@ msgctxt "raft_interface_speed label" msgid "Raft Middle Print Speed" msgstr "Prędk. Druku Środka Tratwy" +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "" + msgctxt "raft_interface_line_spacing label" msgid "Raft Middle Spacing" msgstr "Przerwy Środka Tratwy" @@ -2752,6 +2886,10 @@ msgctxt "raft_interface_thickness label" msgid "Raft Middle Thickness" msgstr "Grubość Środka Tratwy" +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "" + msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" msgstr "Przysp. Druku Tratwy" @@ -2768,6 +2906,10 @@ msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "Wygładzanie Tratwy" +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "" + msgctxt "raft_surface_extruder_nr label" msgid "Raft Top Extruder" msgstr "" @@ -2800,10 +2942,22 @@ msgctxt "raft_surface_speed label" msgid "Raft Top Print Speed" msgstr "Prędk. Druku Góry Tratwy" +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "" + msgctxt "raft_surface_line_spacing label" msgid "Raft Top Spacing" msgstr "Przerwy Góra Tratwy" +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "" + msgctxt "z_seam_type option random" msgid "Random" msgstr "Losowe" @@ -2856,10 +3010,22 @@ msgctxt "carve_multiple_volumes label" msgid "Remove Mesh Intersection" msgstr "Usuń Przecięcia Siatki" +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "" + msgctxt "raft_remove_inside_corners label" msgid "Remove Raft Inside Corners" msgstr "" +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "" + msgctxt "carve_multiple_volumes description" msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." msgstr "Usuń obszary gdzie kilka siatek nakłada się na siebie. Może zostać użyte, jeżeli dwa obiekty do druku 2 materiałami nachodzą na siebie." @@ -2868,6 +3034,18 @@ msgctxt "remove_empty_first_layers description" msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." msgstr "Usuń puste warstwy poniżej pierwszej drukowanej warstwy jeżeli takie występują. Wyłączenie tego ustawienia może powodować puste pierwsze warstwy jeżeli Tolerancja Cięcia jest ustawiona na Włącznie lub Środek." +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "" + msgctxt "raft_remove_inside_corners description" msgid "Remove inside corners from the raft, causing the raft to become convex." msgstr "" @@ -2888,6 +3066,10 @@ msgctxt "skin_outline_count description" msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." msgstr "Zastępuje najbardziej zewnętrzną część wzoru górnego/dolnego za pomocą kilku koncentrycznych linii. Korzystanie z jednej lub dwóch linii poprawia dachy, które zaczynają się na wypełnieniu." +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "" + msgctxt "support_tree_rest_preference label" msgid "Rest Preference" msgstr "" @@ -2960,6 +3142,10 @@ msgctxt "z_seam_corner label" msgid "Seam Corner Preference" msgstr "Wybór Rogu Szwu" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Ręczne ustawienie kolejności drukowania" + msgctxt "draft_shield_height_limitation description" msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." msgstr "Ustaw wysokość osłony przeciwwiatrowej. Wybierz czy drukować osłonę do pełnej wysokości modelu czy do określonej wysokości." @@ -3360,10 +3546,6 @@ msgctxt "support_interface_priority label" msgid "Support Interface Priority" msgstr "" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Rozdzielczość Połączenia Podpory" - msgctxt "speed_support_interface label" msgid "Support Interface Speed" msgstr "Prędk. Połączenia Podpór" @@ -3716,6 +3898,10 @@ msgctxt "magic_fuzzy_skin_point_dist description" msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." msgstr "Średnia odległość między losowymi punktami wprowadzonymi w każdym segmencie linii. Zwróć uwagę, że oryginalne punkty wielokąta są odrzucane, a zatem duża gładkość powoduje zmniejszenie rozdzielczości. Wartość ta musi być większa niż połowa Grubości Nierównej Skóry." +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "" + msgctxt "machine_acceleration description" msgid "The default acceleration of print head movement." msgstr "Domyślną przyspieszenie ruchu głowicy." @@ -4192,6 +4378,10 @@ msgctxt "jerk_travel description" msgid "The maximum instantaneous velocity change with which travel moves are made." msgstr "Maksymalna zmiana prędkości chwilowej z jaką wykonywane są ruchy jałowe." +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "" + msgctxt "machine_max_feedrate_x description" msgid "The maximum speed for the motor of the X-direction." msgstr "Maksymalna prędkość silnika osi X." @@ -4304,6 +4494,18 @@ msgctxt "raft_base_wall_count description" msgid "The number of contours to print around the linear pattern in the base layer of the raft." msgstr "" +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "" + msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "" @@ -4692,6 +4894,10 @@ msgctxt "machine_gcode_flavor description" msgid "The type of g-code to be generated." msgstr "Typ g-code, który ma być generowany." +msgctxt "material_type description" +msgid "The type of material used." +msgstr "" + msgctxt "coasting_volume description" msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." msgstr "Objętość materiału wyciekającego jest inna. Wartość ta powinna być zasadniczo zbliżona do średnicy dyszy do sześcianu." @@ -4740,10 +4946,22 @@ msgctxt "bridge_wall_coast description" msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." msgstr "Określa odległość, na jakiej ekstruder powinien wykonać rozbieg natychmiast przed rozpoczęciem ściany mostu. Rozbieg przed rozpoczęciem mostu może zredukować ciśnienie w dyszy i może stworzyć bardziej płaski most." +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "To ustawienie kontroluje jak bardzo wewn. narożniki w zewn. krawędzi tratwy mają być zaokrąglone. Wew. narożniki są zaokrąglane do półokręgów o promieniu równym wartości podanej tutaj. To ustawienie usuwa także otwory w zewn. krawędzi tratwy, które są mniejsze niż taki okrąg." +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "retraction_count_max description" msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." msgstr "To ustawienie ogranicza liczbę retrakcji występujących w oknie minimalnej długości ekstruzji. Dalsze retrakcje w tym oknie zostaną zignorowane. Pozwala to uniknąć wielokrotnych retrakcji na tym samym odcinku filamentu, ponieważ może to spłaszczyć filament i spowodować problemy z wyciskaniem filamentu." @@ -5104,10 +5322,6 @@ msgctxt "wall_overhang_angle description" msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." msgstr "Ściany, które wystają więcej niż zadany kont, zostaną wydrukowane przy użyciu ustawień wystających ścian. Gdy wartość wynosi 90, żadne ściany nie będą traktowane jako wystające. Zwis, który jest obsługiwany przez podpory, nie będzie również traktowany jako zwis." -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "Sprawdzając, czy model znajduje się powyżej czy poniżej podpory, wykonaj stopnie o danej wysokości. Niższe wartości będą cięte wolniej, podczas gdy wyższe wartości mogą powodować drukowanie zwykłej podpory w niektórych miejscach, w których powinno istnieć połączenie." - msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." msgstr "" @@ -5500,42 +5714,26 @@ msgctxt "travel description" msgid "travel" msgstr "ruch jałowy" -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "" +#~ msgctxt "user_defined_print_order_enabled description" +#~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +#~ msgstr "Umożliwia ręczne ustawienie kolejności drukowania na liście obiektów. Pierwszy obiekt z listy zostanie wydrukowany jako pierwszy." -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "" +#~ msgctxt "brim_outside_only label" +#~ msgid "Brim Only on Outside" +#~ msgstr "Obrys Tylko na Zew" -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "" +#~ msgctxt "layer_0_z_overlap description" +#~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +#~ msgstr "Niech pierwsza i druga warstwa nachodzą na siebie w osi Z, aby skompensować stratę filamentu w szczelinie powietrznej. Wszystkie modele powyżej pierwszej warstwy modelu będą obniżone o tą wartość." -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "" +#~ msgctxt "brim_outside_only description" +#~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +#~ msgstr "Drukuj obrys tylko na zewnątrz modelu. Zmniejsza to liczbę obrysu, który trzeba usunąć po wydruku, podczas gdy nie zmniejsza znacząco przyczepności do stołu." -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "" +#~ msgctxt "support_interface_skip_height label" +#~ msgid "Support Interface Resolution" +#~ msgstr "Rozdzielczość Połączenia Podpory" -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "" +#~ msgctxt "support_interface_skip_height description" +#~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +#~ msgstr "Sprawdzając, czy model znajduje się powyżej czy poniżej podpory, wykonaj stopnie o danej wysokości. Niższe wartości będą cięte wolniej, podczas gdy wyższe wartości mogą powodować drukowanie zwykłej podpory w niektórych miejscach, w których powinno istnieć połączenie." diff --git a/resources/i18n/pt_BR/cura.po b/resources/i18n/pt_BR/cura.po index 0ae0a56cfd0..cced0fec029 100644 --- a/resources/i18n/pt_BR/cura.po +++ b/resources/i18n/pt_BR/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-31 19:13+0100\n" +"POT-Creation-Date: 2024-03-11 12:52+0100\n" "PO-Revision-Date: 2023-11-19 19:51+0100\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" @@ -123,6 +123,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "&Salvar Projeto..." +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "" + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "Aju&stes" @@ -267,6 +271,10 @@ msgid_plural "A cloud connection is not available for some printers" msgstr[0] "Conexão de nuvem não está disponível para uma impressora" msgstr[1] "Conexão de nuvem não está disponível para algumas impressoras" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "" + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "Uma impressão ainda está em progresso. O Cura não pode iniciar outra impressão via USB até que a impressão anterior tenha completado." @@ -501,10 +509,18 @@ msgctxt "@label" msgid "Anonymous" msgstr "Anônimo" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "Framework de Aplicações" +msgctxt "@title:column" +msgid "Applies on" +msgstr "" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "Aplicar deslocamentos de Extrusão ao G-Code" @@ -691,6 +707,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "Calculado" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "Renderização de câmera:" @@ -1426,6 +1446,10 @@ msgctxt "@label" msgid "Draft" msgstr "Rascunho" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "" + msgctxt "@action:button" msgid "Duplicate" msgstr "Duplicar" @@ -1552,6 +1576,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Exportar Seleção..." +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "" + msgctxt "@button" msgid "Export material archive" msgstr "Exportar arquivo de material" @@ -1585,10 +1613,23 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "G-Code Final do Extrusor" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "G-Code Inicial do Extrusor" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "" + +#, python-brace-format +msgctxt "@label" +msgid "Extruder {0}" +msgstr "" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Extrusor(es) Desabilitado(s)" @@ -1655,6 +1696,11 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Falha em salvar o arquivo de materiais" +#, python-brace-format +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "" + msgctxt "@label:category menu label" msgid "Favorites" msgstr "Favoritos" @@ -1796,6 +1842,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Forçar modo de compatibilidade da visão de camadas (requer reinício)" +msgid "FreeCAD trackpad" +msgstr "" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Visão Frontal" @@ -1884,6 +1933,10 @@ msgctxt "@action" msgid "Get started" msgstr "Começar" +msgctxt "@label" +msgid "Global" +msgstr "" + msgctxt "@title:tab" msgid "Global Settings" msgstr "Ajustes globais" @@ -1933,6 +1986,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "Omitir todas as impressoras conectadas" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "Ocultar este ajuste" @@ -2009,6 +2066,10 @@ msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "Para usar o pacote você precisará reiniciar o Cura" +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "" + msgctxt "@label" msgid "Infill" msgstr "Preenchimento" @@ -2712,6 +2773,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "Não há resultados encontrados com o filtro atual" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "" + msgctxt "@label" msgid "No time estimation available" msgstr "Sem estimativa de tempo disponível" @@ -2813,6 +2878,10 @@ msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Somente um arquivo G-Code pode ser carregado por vez. Pulando importação de {0}" +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "" + msgctxt "@action:button" msgid "Open" msgstr "Abrir" @@ -2841,10 +2910,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "Abrir Arquivo de Projeto" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "" + msgctxt "@action:label" msgid "Open With" msgstr "Abrir Com" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "" + msgctxt "@action:button" msgid "Open as project" msgstr "Abrir como projeto" @@ -3061,6 +3142,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "Por favor se logue para adquirir complementos e materiais verificados para o UltiMaker Cura Enterprise" +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "" + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "Por favor sincronize os perfis de material com suas impressoras antes de começar a imprimir." @@ -3157,6 +3242,14 @@ msgctxt "@action:button" msgid "Print" msgstr "Imprimir" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Imprimir depois" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Imprimir antes" + msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -3463,8 +3556,8 @@ msgid "Provides support for reading model files." msgstr "Provê suporta a ler arquivos de modelo." msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Provê suporte à escrita de arquivos 3MF." +msgid "Provides support for writing 3MF and UCP files." +msgstr "" msgctxt "description" msgid "Provides support for writing MakerBot Format Packages." @@ -3708,8 +3801,12 @@ msgid "Save Cura project" msgstr "Salvar o projeto Cura" msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "Salvar o projeto Cura e imprimir o arquivo" +msgid "Save Cura project and .makerbot print file" +msgstr "" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" +msgstr "" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3735,6 +3832,10 @@ msgctxt "@button" msgid "Save new profile" msgstr "Salvar novo perfil" +msgctxt "@action:button" +msgid "Save project" +msgstr "" + msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "Grava o arquivo .umm em um pendrive USB." @@ -3838,6 +3939,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "Enviar relatório de falha à UltiMaker" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "" + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "" + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "" + msgctxt "@action:button" msgid "Send report" msgstr "Enviar relatório" @@ -3890,6 +4003,10 @@ msgctxt "@title:tab" msgid "Settings" msgstr "Ajustes" +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "Os ajustes foram alterados para seguir a disponibilidade de extrusores atuais:" @@ -3958,6 +4075,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "Arquivos da área de trabalho ou de aplicações externas devem ser abertos na mesma instância do Cura?" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "" + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "A plataforma de construção deve ser esvaziada antes de carregar um modelo novo na instância única do Cura?" @@ -4014,6 +4135,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Exibir relatório de falha detalhado" +msgctxt "@action:button" +msgid "Show settings" +msgstr "" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Exibir diálogo de resumo ao salvar projeto" @@ -4090,10 +4215,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "Fatiamento falhado" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "O fatiamento falhou com um erro não esperado. Por favor considere relatar um bug em nosso issue tracker." - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Fatiando..." @@ -4102,6 +4223,10 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Suavização" +msgctxt "@label" +msgid "Solid" +msgstr "" + msgctxt "name" msgid "Solid View" msgstr "Visão Sólida" @@ -4227,10 +4352,26 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Perfil {0} importado com sucesso." +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Resumo - Projeto do Cura" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "" + msgctxt "@label" msgid "Support" msgstr "Suporte" @@ -4610,6 +4751,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "Esta configuração não está disponível porque %1 não foi reconhecido. Por favor visite %2 para baixar o perfil de materil correto." +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "Este é um arquivo de projeto do Cura. Gostaria de abri-lo como um projeto ou importar os modelos dele?" @@ -4699,6 +4844,14 @@ msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Este ajuste é resolvido dos valores conflitante específicos de extrusor:" +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "" + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "" + msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" msgstr "Esta versão não é pretendida para uso em produção. Se você encontrar quaisquer problemas, por favor relate-os na nossa página de GitHub, mencionando a versão completa {self.getVersion()}" @@ -4930,6 +5083,11 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Não foi possível iniciar processo de login. Verifique se outra tentativa de login ainda está ativa." +#, python-brace-format +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "" + msgctxt "@label:status" msgid "Unavailable" msgstr "Indisponível" @@ -4942,14 +5100,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Desagrupar Modelos" -msgctxt "@action:inmenu menubar:edit" -msgid "Print Before" -msgstr "Imprimir antes" - -msgctxt "@action:inmenu menubar:edit" -msgid "Print After" -msgstr "Imprimir depois" - msgctxt "@button" msgid "Uninstall" msgstr "Desinstalar" @@ -4958,6 +5108,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Unidade" +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "" + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "Configuração de sistema universal de construção" @@ -5147,6 +5301,10 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." msgstr "Atualiza configurações do Cura 5.4 para o Cura 5.5." +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "" + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Carregar Firmware personalizado" @@ -5179,6 +5337,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "Biblioteca de utilidade, incluindo geração Voronoi" +msgctxt "@title:column" +msgid "Value" +msgstr "" + msgctxt "name" msgid "Version Upgrade 2.1 to 2.2" msgstr "Atualização de Versão de 2.1 para 2.2" @@ -5283,6 +5445,10 @@ msgctxt "name" msgid "Version Upgrade 5.4 to 5.5" msgstr "Atualização de Versão de 5.4 para 5.5" +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Ver impressoras na Digital Factory" @@ -5360,6 +5526,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "Que impressora você gostaria de configurar?" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "Que tipo de renderização de câmera deve ser usada?" @@ -5573,6 +5743,10 @@ msgctxt "@label" msgid "mm" msgstr "mm" +msgctxt "@label" +msgid "s" +msgstr "" + msgctxt "@info:status" msgid "today" msgstr "hoje" @@ -5641,10 +5815,22 @@ msgstr "{} complementos falharam em baixar" #~ msgid "Material profiles not installed" #~ msgstr "Perfis de material não instalados" +#~ msgctxt "description" +#~ msgid "Provides support for writing 3MF files." +#~ msgstr "Provê suporte à escrita de arquivos 3MF." + +#~ msgctxt "@option" +#~ msgid "Save Cura project and print file" +#~ msgstr "Salvar o projeto Cura e imprimir o arquivo" + #~ msgctxt "@info:title" #~ msgid "Simulation View" #~ msgstr "Visão Simulada" +#~ msgctxt "@message" +#~ msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +#~ msgstr "O fatiamento falhou com um erro não esperado. Por favor considere relatar um bug em nosso issue tracker." + #~ msgctxt "@label" #~ msgid "The material used in this project is currently not installed in Cura.
    Install the material profile and reopen the project." #~ msgstr "O material usado neste projeto não está instalado atualmente no Cura.
    Instale o perfil de material e reabra o projeto." diff --git a/resources/i18n/pt_BR/fdmextruder.def.json.po b/resources/i18n/pt_BR/fdmextruder.def.json.po index ffa30c9afab..2df12e0e9bd 100644 --- a/resources/i18n/pt_BR/fdmextruder.def.json.po +++ b/resources/i18n/pt_BR/fdmextruder.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-06-08 16:32+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: 2021-04-11 17:09+0200\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" @@ -45,6 +45,10 @@ msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "G-Code Final do Extrusor" +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "" + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Posição Absoluta Final do Extrusor" @@ -77,6 +81,10 @@ msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "G-Code Inicial do Extrusor" +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "" + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Posição Absoluta de Início do Extrusor" @@ -161,6 +169,14 @@ msgctxt "machine_extruder_cooling_fan_number description" msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." msgstr "O número da ventoinha de refrigeração da impressão associada a este extrusor. Somente altere o valor default 0 quando você tiver uma ventoinha diferente para cada extrusor." +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "" + msgctxt "machine_extruder_end_pos_x description" msgid "The x-coordinate of the ending position when turning the extruder off." msgstr "A coordenada X da posição final do extrusor quando se o desliga." diff --git a/resources/i18n/pt_BR/fdmprinter.def.json.po b/resources/i18n/pt_BR/fdmprinter.def.json.po index 412a020a7ed..67f5bcbca3d 100644 --- a/resources/i18n/pt_BR/fdmprinter.def.json.po +++ b/resources/i18n/pt_BR/fdmprinter.def.json.po @@ -1,12 +1,12 @@ # Cura # Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. -# +# msgid "" msgstr "" "Project-Id-Version: Cura 5.0\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: 2023-11-22 17:17+0100\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" @@ -17,6 +17,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Poedit 3.4.1\n" +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "" + +msgctxt "brim_inside_margin description" +msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." +msgstr "" + msgctxt "ironing_inset description" msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." msgstr "A distância a manter das arestas do modelo. Passar a ferro as arestas da malha podem resultar em um aspecto entalhado da sua peça." @@ -61,10 +69,6 @@ msgctxt "machine_disallowed_areas description" msgid "A list of polygons with areas the print head is not allowed to enter." msgstr "Uma lista de polígonos com áreas em que a cabeça de impressão é proibida de entrar." -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "Uma peça completamente contida em outra peça pode gerar um brim externo que toca o interior da outra parte. Este ajuste remove todo o brim dentro desta distância dos buracos internos." - msgctxt "support_tree_branch_reach_limit description" msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " msgstr "Uma recomendação de quão distante galhos podem se mover dos pontos que eles suportam. Os galhos podem violar este valor para alcançar seu destino (plataforma de impressão ou parte chata do modelo). Abaixar este valor pode fazer o suporte ficar mais estável, mas aumentará o número de galhos (e por causa disso, ambos o uso de material e o tempo de impressão) " @@ -157,6 +161,10 @@ msgctxt "resolution description" msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" msgstr "Todos os ajustes que influenciam a resolução da impressão. Estes ajustes têm um impacto maior na qualidade (e tempo de impressão)" +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "" + msgctxt "alternate_extra_perimeter label" msgid "Alternate Extra Wall" msgstr "Alternar Parede Adicional" @@ -405,21 +413,21 @@ msgctxt "adhesion_type option brim" msgid "Brim" msgstr "Brim" +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "" + msgctxt "brim_gap label" msgid "Brim Distance" msgstr "Distância do Brim" -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "Brim Dentro da Margem a Evitar" - msgctxt "brim_line_count label" msgid "Brim Line Count" msgstr "Contagem de Linhas do Brim" -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Brim Somente Para Fora" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "" msgctxt "brim_replaces_support label" msgid "Brim Replaces Support" @@ -461,6 +469,14 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "Temperatura do Volume de Impressão" +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "" + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "" + msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." msgstr "Ao habilitar este ajuste sua torre de purga ganhará um brim, mesmo que o modelo não tenha. Se você quiser uma base mais firme para uma torre alta, pode aumentar a altura." @@ -873,6 +889,10 @@ msgctxt "cool_fan_enabled label" msgid "Enable Print Cooling" msgstr "Habilitar Refrigeração de Impressão" +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "" + msgctxt "retraction_enable label" msgid "Enable Retraction" msgstr "Habilitar Retração" @@ -905,6 +925,10 @@ msgctxt "ooze_shield_enabled description" msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." msgstr "Habilita a cobertura exterior de escorrimento. Isso criará uma casca ou cobertura em volta do modelo que ajudará a limpar o segundo bico se estiver na mesma altura do primeiro bico." +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "" + msgctxt "small_skin_on_surface description" msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." msgstr "Habilita pequenas regiões (até a 'Largura de Teto/Base Pequenos') na camada superior com contorno (exposta ao ar) pra serem preenchidas com paredes ao invés do padrão default." @@ -937,6 +961,10 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "Força que o brim seja impresso em volta do modelo mesmo se este espaço fosse ser ocupado por suporte. Isto substitui algumas regiões da primeira camada de suporte por regiões de brim." +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "" + msgctxt "support_type option everywhere" msgid "Everywhere" msgstr "Em Todo Lugar" @@ -1041,6 +1069,10 @@ msgctxt "speed_equalize_flow_width_factor label" msgid "Flow Equalization Ratio" msgstr "Raio de Equalização de Fluxo" +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "" + msgctxt "flow_rate_extrusion_offset_factor label" msgid "Flow Rate Compensation Factor" msgstr "Fator de Compensação da Taxa de Fluxo" @@ -1053,6 +1085,10 @@ msgctxt "material_flow_temp_graph label" msgid "Flow Temperature Graph" msgstr "Gráfico de Fluxo de Temperatura" +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "" + msgctxt "material_flow_layer_0 description" msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." msgstr "Compensação de fluxo para a primeira camada; a quantidade de material extrudado na camada inicial é multiplicada por este valor." @@ -1445,10 +1481,22 @@ msgctxt "wall_transition_filter_distance description" msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." msgstr "Se for detectado que a cabeça de impressão estaria alternando em rápida sucessão entre números diferentes de parede, não fazer tal alternação. Remove transições se elas estiverem próximas até essa distância." +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "Se o Raft estiver habilitado, esta é a área extra do raft em volta do modelo que também faz parte dele. Aumentar esta margem criará um raft mais forte mas também gastará mais material e deixará menos área para sua impressão." +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "meshfix_union_all description" msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." msgstr "Ignora a geometria interna de volumes sobrepostos dentro de uma malha e imprime os volumes como um único volume. Isto pode ter o efeito não-intencional de fazer cavidades desaparecerem." @@ -1677,6 +1725,10 @@ msgctxt "wall_0_inset description" msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." msgstr "Penetração adicional aplicada ao caminho da parede externa. Se a parede externa for menor que o bico, e impressa depois das paredes internas, use este deslocamento para fazer o orifício do bico se sobrepor às paredes internas ao invés de ao lado de fora do modelo." +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "" + msgctxt "inset_direction option inside_out" msgid "Inside To Outside" msgstr "De Dentro Pra Fora" @@ -1689,6 +1741,10 @@ msgctxt "support_interface_priority option interface_area_overwrite_support_area msgid "Interface preferred" msgstr "Interface preferida" +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "" + msgctxt "interlocking_beam_layer_count label" msgid "Interlocking Beam Layer Count" msgstr "Contagem de Camadas das Vigas Interligadas" @@ -1829,6 +1885,30 @@ msgctxt "support_tree_limit_branch_reach description" msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" msgstr "Limita quão longe cada galho deve percorrer do ponto que ele suporta. Isto pode fazer o suporte mais estável, mas aumentará a quantidade de galhos (e por causa disso, uso de material e tempo de impressão)" +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "" + msgctxt "cutting_mesh description" msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." msgstr "Limitar o volume desta malha para dentro de outras malhas. Você pode usar isto para fazer certas áreas de uma malha imprimirem com ajustes diferentes, incluindo extrusor diferente." @@ -1926,8 +2006,10 @@ msgid "Make the extruder prime position absolute rather than relative to the las msgstr "Faz a posição de purga do extrusor absoluta ao invés de relativa à última posição conhecida da cabeça." msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "Faz a primeira e segunda camadas do modelo se sobreporem na direção Z para compensar pelo filamento perdido no vão aéreo. Todos os modelos acima da primeira camada de modelo serão deslocados para baixo por essa distância." +msgid "" +"Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" +"It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "" msgctxt "meshfix description" msgid "Make the meshes more suited for 3D printing." @@ -1953,10 +2035,18 @@ msgctxt "material label" msgid "Material" msgstr "Material" +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "" + msgctxt "material_guid label" msgid "Material GUID" msgstr "GUID do Material" +msgctxt "material_type label" +msgid "Material Type" +msgstr "" + msgctxt "max_extrusion_before_wipe label" msgid "Material Volume Between Wipes" msgstr "Volume de Material Entre Limpezas" @@ -2233,6 +2323,10 @@ msgctxt "ironing_monotonic label" msgid "Monotonic Ironing Order" msgstr "Ordem de Passagem a Ferro Monotônica" +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "" + msgctxt "roofing_monotonic label" msgid "Monotonic Top Surface Order" msgstr "Ordem da Superfície Monotônica Superior" @@ -2273,6 +2367,10 @@ msgctxt "magic_mesh_surface_mode option normal" msgid "Normal" msgstr "Normal" +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "" + msgctxt "support_structure option normal" msgid "Normal" msgstr "Normal" @@ -2405,10 +2503,6 @@ msgctxt "ironing_only_highest_layer description" msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." msgstr "Somente executar a passagem a ferro na última camada da malha. Isto economiza tempo se as camadas abaixo não precisarem de um acabamento de superfície amaciado." -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Imprimir o Brim somente no lado de fora do modelo. Isto reduz a quantidade de brim a ser removida no final, e não reduz tanto a aderência à mesa." - msgctxt "ooze_shield_angle label" msgid "Ooze Shield Angle" msgstr "Ângulo da Cobertura de Escorrimento" @@ -2469,6 +2563,10 @@ msgctxt "group_outer_walls description" msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." msgstr "Paredes externas de ilhas diferentes na mesma camada são impressas em sequência. Quando habilitado, as mudanças de fluxo são limitadas porque as paredes são impressas um tipo a cada vez; quando desabilitado, o número de percursos entre as ilhas é reduzido porque as paredes nas mesmas ilhas são agrupadas." +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "" + msgctxt "inset_direction option outside_in" msgid "Outside To Inside" msgstr "De Fora Pra Dentro" @@ -2549,6 +2647,10 @@ msgctxt "prime_tower_line_width label" msgid "Prime Tower Line Width" msgstr "Largura de Extrusão da Torre de Purga" +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "" + msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" msgstr "Volume Mínimo da Torre de Purga" @@ -2565,6 +2667,10 @@ msgctxt "speed_prime_tower label" msgid "Prime Tower Speed" msgstr "Velocidade da Torre de Purga" +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "" + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "Posição X da Torre de Purga" @@ -2581,18 +2687,14 @@ msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Jerk da Impressão" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "" + msgctxt "print_sequence label" msgid "Print Sequence" msgstr "Sequência de Impressão" -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "Definir sequência de impressão manualmente" - -msgctxt "user_defined_print_order_enabled description" -msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." -msgstr "Permite ordenar a lista de objetos para definir a sequência de impressão manualmente. O primeiro objeto da lista será impresso primeiro." - msgctxt "speed_print label" msgid "Print Speed" msgstr "Velocidade de Impressão" @@ -2601,6 +2703,10 @@ msgctxt "fill_outline_gaps label" msgid "Print Thin Walls" msgstr "Imprimir Paredes Finas" +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "" + msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "Imprimir uma torre próxima à impressão que serve para purgar o material a cada troca de bico." @@ -2621,6 +2727,10 @@ msgctxt "fill_outline_gaps description" msgid "Print pieces of the model which are horizontally thinner than the nozzle size." msgstr "Imprime partes do modelo que são horizontalmente mais finas que o tamanho do bico." +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "" + msgctxt "bridge_skin_speed_2 description" msgid "Print speed to use when printing the second bridge skin layer." msgstr "Velocidade de impressão a usar quando imprimir a segunda camada de ponte." @@ -2629,6 +2739,14 @@ msgctxt "bridge_skin_speed_3 description" msgid "Print speed to use when printing the third bridge skin layer." msgstr "Velocidade de impressão a usar quando imprimir a terceira camada de ponte." +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "" + msgctxt "infill_before_walls description" msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." msgstr "Imprime o preenchimento antes de imprimir as paredes. Imprimir as paredes primeiro pode levar a paredes mais precisas, mas seções pendentes são impressas com pior qualidade. Imprimir o preenchimento primeiro leva a paredes mais fortes, mas o padrão de preenchimento pode às vezes aparecer através da superfície." @@ -2673,6 +2791,10 @@ msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "Vão Aéreo do Raft" +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "" + msgctxt "raft_base_extruder_nr label" msgid "Raft Base Extruder" msgstr "Extrusor da Base do Raft" @@ -2701,6 +2823,10 @@ msgctxt "raft_base_speed label" msgid "Raft Base Print Speed" msgstr "Velocidade de Impressão da Base do Raft" +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "" + msgctxt "raft_base_thickness label" msgid "Raft Base Thickness" msgstr "Espessura da Base do Raft" @@ -2717,6 +2843,10 @@ msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" msgstr "Velocidade de Ventoinha no Raft" +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "" + msgctxt "raft_interface_extruder_nr label" msgid "Raft Middle Extruder" msgstr "Extrusor do Meio do Raft" @@ -2745,6 +2875,10 @@ msgctxt "raft_interface_speed label" msgid "Raft Middle Print Speed" msgstr "Velocidade de Impressão do Meio do Raft" +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "" + msgctxt "raft_interface_line_spacing label" msgid "Raft Middle Spacing" msgstr "Espaçamento do Meio do Raft" @@ -2753,6 +2887,10 @@ msgctxt "raft_interface_thickness label" msgid "Raft Middle Thickness" msgstr "Espessura do Meio do Raft" +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "" + msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" msgstr "Aceleração de Impressão do Raft" @@ -2769,6 +2907,10 @@ msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "Amaciamento do Raft" +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "" + msgctxt "raft_surface_extruder_nr label" msgid "Raft Top Extruder" msgstr "Extrusor do Topo do Raft" @@ -2801,10 +2943,22 @@ msgctxt "raft_surface_speed label" msgid "Raft Top Print Speed" msgstr "Velocidade de Impressão do Topo do Raft" +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "" + msgctxt "raft_surface_line_spacing label" msgid "Raft Top Spacing" msgstr "Espaçamento Superior do Raft" +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "" + msgctxt "z_seam_type option random" msgid "Random" msgstr "Aleatório" @@ -2857,10 +3011,22 @@ msgctxt "carve_multiple_volumes label" msgid "Remove Mesh Intersection" msgstr "Remover Interseções de Malha" +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "" + msgctxt "raft_remove_inside_corners label" msgid "Remove Raft Inside Corners" msgstr "Remover Cantos Internos de Raft" +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "" + msgctxt "carve_multiple_volumes description" msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." msgstr "Remove áreas onde várias malhas estão sobrepondo uma à outra. Isto pode ser usado se objetos de material duplo se sobrepõem um ao outro." @@ -2869,6 +3035,18 @@ msgctxt "remove_empty_first_layers description" msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." msgstr "Remove camadas vazias entre a primeira camada impressa se estiverem presentes. Desabilitar este ajuste pode criar camadas iniciais vazias se a Tolerância de Fatiamento estiver configurada para Exclusivo ou Meio." +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "" + msgctxt "raft_remove_inside_corners description" msgid "Remove inside corners from the raft, causing the raft to become convex." msgstr "Remove os cantos internos do raft, fazendo com que ele se torne convexo." @@ -2889,6 +3067,10 @@ msgctxt "skin_outline_count description" msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." msgstr "Substitui a parte externa do padrão superior/inferir com um número de linhas concêntricas. Usar uma ou duas linhas melhora tetos e topos que começam a ser construídos em cima de padrões de preenchimento." +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "" + msgctxt "support_tree_rest_preference label" msgid "Rest Preference" msgstr "Preferência de Descanso" @@ -2961,6 +3143,10 @@ msgctxt "z_seam_corner label" msgid "Seam Corner Preference" msgstr "Preferência do Canto da Costura" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Definir sequência de impressão manualmente" + msgctxt "draft_shield_height_limitation description" msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." msgstr "Estabelece a altura da cobertura de trabalho. Escolha imprimir a cobertura na altura total dos modelos ou até uma altura limitada." @@ -3363,10 +3549,6 @@ msgctxt "support_interface_priority label" msgid "Support Interface Priority" msgstr "Prioridade de Interface de Suporte" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Resolução da Interface de Suporte" - msgctxt "speed_support_interface label" msgid "Support Interface Speed" msgstr "Velocidade da Interface de Suporte" @@ -3721,6 +3903,10 @@ msgctxt "magic_fuzzy_skin_point_dist description" msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." msgstr "A distância média entre os pontos aleatórios introduzidos em cada segmento de linha. Note que os pontos originais do polígono são descartados, portanto umo alto alisamento resulta em redução da resolução. Este valor deve ser maior que a metade da Espessura do Contorno Felpudo." +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "" + msgctxt "machine_acceleration description" msgid "The default acceleration of print head movement." msgstr "A aceleração default a ser usada nos eixos para o movimento da cabeça de impressão." @@ -4198,6 +4384,10 @@ msgctxt "jerk_travel description" msgid "The maximum instantaneous velocity change with which travel moves are made." msgstr "A mudança instantânea máxima de velocidade em uma direção com que os percursos são feitos." +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "" + msgctxt "machine_max_feedrate_x description" msgid "The maximum speed for the motor of the X-direction." msgstr "A velocidade máxima para o motor da impressora na direção X." @@ -4310,6 +4500,18 @@ msgctxt "raft_base_wall_count description" msgid "The number of contours to print around the linear pattern in the base layer of the raft." msgstr "O número de contornos a serem impressos em volta do padrão linear na camada base do raft." +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "" + msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "O número de camadas de preenchimento que suportam arestas de contorno." @@ -4701,6 +4903,10 @@ msgctxt "machine_gcode_flavor description" msgid "The type of g-code to be generated." msgstr "O tipo de G-Code a ser gerado." +msgctxt "material_type description" +msgid "The type of material used." +msgstr "" + msgctxt "coasting_volume description" msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." msgstr "Volume que seria escorrido. Este valor deve em geral estar perto do diâmetro do bico ao cubo." @@ -4750,10 +4956,22 @@ msgctxt "bridge_wall_coast description" msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." msgstr "Este ajuste controla a distância que o extrusor deve parar de extrudar antes que a parede de ponte comece. Desengrenar antes da ponte iniciar pode reduzir a pressão no bico e produzir em uma ponte mais horizontal." +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "Este ajuste controla quanto os cantos internos do contorno do raft são arredondados. Esses cantos internos são convertidos em semicírculos com raio igual ao valor dado aqui. Este ajuste também remove furos no contorno do raft que forem menores que o círculo equivalente." +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "retraction_count_max description" msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." msgstr "Este ajuste limita o número de retrações ocorrendo dentro da janela de distância de extrusão mínima. Retrações subsequentes dentro desta janela serão ignoradas. Isto previne repetidas retrações no mesmo pedaço de filamento, já que isso pode acabar ovalando e desgastando o filamento." @@ -5114,10 +5332,6 @@ msgctxt "wall_overhang_angle description" msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." msgstr "Paredes que pendem por mais do que esse ângulo serão impressas usando ajustes de paredes pendentes. Quando este valor for 90, nenhuma parede será tratada como pendente. Seções pendentes que têm suportes também não serão tratadas como pendentes." -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "Quando verificar se há partes do modelo abaixo e acima do suporte, usar passos de dada altura. Valores baixos fatiarão mais lentamente, enquanto que valores altos farão com que suporte convencional seja impresso em lugares em que deveria haver interface de suporte." - msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." msgstr "Quando habilitado os percursos do extrusor são corrigidos para impressora com planejadores de movimento suavizado. Pequenos movimentos que se desviariam da direção geral do percurso do extrusor são suavizados para melhorar os movimentos fluidos." @@ -5510,42 +5724,74 @@ msgctxt "travel description" msgid "travel" msgstr "percurso" -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duração de cada passo na alteração de fluxo gradual" +#~ msgctxt "brim_inside_margin description" +#~ msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +#~ msgstr "Uma peça completamente contida em outra peça pode gerar um brim externo que toca o interior da outra parte. Este ajuste remove todo o brim dentro desta distância dos buracos internos." + +#~ msgctxt "user_defined_print_order_enabled description" +#~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +#~ msgstr "Permite ordenar a lista de objetos para definir a sequência de impressão manualmente. O primeiro objeto da lista será impresso primeiro." + +#~ msgctxt "brim_inside_margin label" +#~ msgid "Brim Inside Avoid Margin" +#~ msgstr "Brim Dentro da Margem a Evitar" + +#~ msgctxt "brim_outside_only label" +#~ msgid "Brim Only on Outside" +#~ msgstr "Brim Somente Para Fora" + +#~ msgctxt "gradual_flow_discretisation_step_size description" +#~ msgid "Duration of each step in the gradual flow change" +#~ msgstr "Duração de cada passo na alteração de fluxo gradual" + +#~ msgctxt "gradual_flow_enabled description" +#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +#~ msgstr "Habilita mudanças graduais de fluxo. Quando habilitado, o fluxo é gradualmente aumentado ou reduzido para o fluxo alvo. Útil para impressoras com tubo bowden onde o fluxo não é imediatamente alterado quando o motor do extrusor inicia ou para." + +#~ msgctxt "reset_flow_duration description" +#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +#~ msgstr "Para qualquer movimento mais longo que este valor, o fluxo material é resetado para o fluxo-alvo do percurso." + +#~ msgctxt "gradual_flow_discretisation_step_size label" +#~ msgid "Gradual flow discretisation step size" +#~ msgstr "Tamanho de passo da discretização de fluxo gradual" + +#~ msgctxt "gradual_flow_enabled label" +#~ msgid "Gradual flow enabled" +#~ msgstr "Fluxo gradual habilitado" -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Habilita mudanças graduais de fluxo. Quando habilitado, o fluxo é gradualmente aumentado ou reduzido para o fluxo alvo. Útil para impressoras com tubo bowden onde o fluxo não é imediatamente alterado quando o motor do extrusor inicia ou para." +#~ msgctxt "max_flow_acceleration label" +#~ msgid "Gradual flow max acceleration" +#~ msgstr "Aceleração máxima do fluxo gradual" -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Para qualquer movimento mais longo que este valor, o fluxo material é resetado para o fluxo-alvo do percurso." +#~ msgctxt "layer_0_max_flow_acceleration label" +#~ msgid "Initial layer max flow acceleration" +#~ msgstr "Aceleração máxima de fluxo da camada inicial" -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Tamanho de passo da discretização de fluxo gradual" +#~ msgctxt "layer_0_z_overlap description" +#~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +#~ msgstr "Faz a primeira e segunda camadas do modelo se sobreporem na direção Z para compensar pelo filamento perdido no vão aéreo. Todos os modelos acima da primeira camada de modelo serão deslocados para baixo por essa distância." -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Fluxo gradual habilitado" +#~ msgctxt "max_flow_acceleration description" +#~ msgid "Maximum acceleration for gradual flow changes" +#~ msgstr "Aceleração máxima para alterações de fluxo gradual" -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Aceleração máxima do fluxo gradual" +#~ msgctxt "layer_0_max_flow_acceleration description" +#~ msgid "Minimum speed for gradual flow changes for the first layer" +#~ msgstr "Velocidade mínima para alterações graduais de fluxo na primeira camada" -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Aceleração máxima de fluxo da camada inicial" +#~ msgctxt "brim_outside_only description" +#~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +#~ msgstr "Imprimir o Brim somente no lado de fora do modelo. Isto reduz a quantidade de brim a ser removida no final, e não reduz tanto a aderência à mesa." -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Aceleração máxima para alterações de fluxo gradual" +#~ msgctxt "reset_flow_duration label" +#~ msgid "Reset flow duration" +#~ msgstr "Duração de reset do fluxo" -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Velocidade mínima para alterações graduais de fluxo na primeira camada" +#~ msgctxt "support_interface_skip_height label" +#~ msgid "Support Interface Resolution" +#~ msgstr "Resolução da Interface de Suporte" -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Duração de reset do fluxo" +#~ msgctxt "support_interface_skip_height description" +#~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +#~ msgstr "Quando verificar se há partes do modelo abaixo e acima do suporte, usar passos de dada altura. Valores baixos fatiarão mais lentamente, enquanto que valores altos farão com que suporte convencional seja impresso em lugares em que deveria haver interface de suporte." diff --git a/resources/i18n/pt_PT/cura.po b/resources/i18n/pt_PT/cura.po index d6e19b222d3..8c19bee65cb 100644 --- a/resources/i18n/pt_PT/cura.po +++ b/resources/i18n/pt_PT/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-31 19:13+0100\n" +"POT-Creation-Date: 2024-03-11 12:52+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -117,6 +117,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "&Guardar projeto..." +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "" + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "&Definições" @@ -261,6 +265,10 @@ msgid_plural "A cloud connection is not available for some printers" msgstr[0] "Não existe uma conectividade de cloud disponível para a impressora" msgstr[1] "Não existe uma conectividade de cloud disponível para algumas impressoras" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "" + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "Existe uma impressão em curso. O Cura não consegue iniciar outra impressão via USB até a impressão anterior ser concluída." @@ -495,10 +503,18 @@ msgctxt "@label" msgid "Anonymous" msgstr "Anónimo" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "Framework da aplicação" +msgctxt "@title:column" +msgid "Applies on" +msgstr "" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "Aplicar desvios da extrusora ao GCode" @@ -685,6 +701,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "Calculado" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "Composição de câmara:" @@ -1418,6 +1438,10 @@ msgctxt "@label" msgid "Draft" msgstr "Rascunho" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "" + msgctxt "@action:button" msgid "Duplicate" msgstr "Duplicar" @@ -1544,6 +1568,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Exportar seleção..." +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "" + msgctxt "@button" msgid "Export material archive" msgstr "Exportar ficheiro de material" @@ -1577,10 +1605,23 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "G-code final do extrusor" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "G-code inicial do extrusor" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "" + +#, python-brace-format +msgctxt "@label" +msgid "Extruder {0}" +msgstr "" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Extrusor(es) desativado(s)" @@ -1647,6 +1688,11 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Erro ao guardar o arquivo de material" +#, python-brace-format +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "" + msgctxt "@label:category menu label" msgid "Favorites" msgstr "Favoritos" @@ -1788,6 +1834,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Forçar o modo de compatibilidade na visualização por camada (é necessário reiniciar)" +msgid "FreeCAD trackpad" +msgstr "" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Vista Frente" @@ -1876,6 +1925,10 @@ msgctxt "@action" msgid "Get started" msgstr "Iniciar" +msgctxt "@label" +msgid "Global" +msgstr "" + msgctxt "@title:tab" msgid "Global Settings" msgstr "Definições Globais" @@ -1925,6 +1978,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "Ocultar todas as impressoras conectadas" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "Esconder esta definição" @@ -2001,6 +2058,10 @@ msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "Para poder utilizar este pacote terá de reiniciar o Cura" +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "" + msgctxt "@label" msgid "Infill" msgstr "Enchimento" @@ -2704,6 +2765,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "Não foram encontrados resultados com o filtro atual" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "" + msgctxt "@label" msgid "No time estimation available" msgstr "Nenhuma estimativa de tempo disponível" @@ -2805,6 +2870,10 @@ msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Apenas pode ser carregado um ficheiro G-code de cada vez. Importação {0} ignorada" +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "" + msgctxt "@action:button" msgid "Open" msgstr "Abrir" @@ -2833,10 +2902,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "Abrir ficheiro de projeto" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "" + msgctxt "@action:label" msgid "Open With" msgstr "Abrir" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "" + msgctxt "@action:button" msgid "Open as project" msgstr "Abrir como projeto" @@ -3053,6 +3134,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "Inicie sessão para obter plug-ins e materiais verificados para o UltiMaker Cura Enterprise" +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "" + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "Sincronize os perfis de material com as suas impressoras antes de começar a imprimir." @@ -3149,6 +3234,14 @@ msgctxt "@action:button" msgid "Print" msgstr "Imprimir" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Imprimir depois" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Imprimir antes" + msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -3455,8 +3548,8 @@ msgid "Provides support for reading model files." msgstr "Fornece suporte para a leitura de ficheiros modelo." msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Possiblita a gravação de ficheiros 3MF." +msgid "Provides support for writing 3MF and UCP files." +msgstr "" msgctxt "description" msgid "Provides support for writing MakerBot Format Packages." @@ -3700,8 +3793,12 @@ msgid "Save Cura project" msgstr "Guardar projeto Cura" msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "Guardar o projeto Cura e o ficheiro de impressão" +msgid "Save Cura project and .makerbot print file" +msgstr "" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" +msgstr "" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3727,6 +3824,10 @@ msgctxt "@button" msgid "Save new profile" msgstr "Guardar novo perfil" +msgctxt "@action:button" +msgid "Save project" +msgstr "" + msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "Guarde o ficheiro .umm numa unidade USB." @@ -3830,6 +3931,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "Enviar relatório de falhas para a UltiMaker" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "" + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "" + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "" + msgctxt "@action:button" msgid "Send report" msgstr "Enviar relatório" @@ -3882,6 +3995,10 @@ msgctxt "@title:tab" msgid "Settings" msgstr "Definições" +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "As definições foram alteradas de forma a corresponder aos extrusores disponíveis de momento:" @@ -3950,6 +4067,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "Pretende que os ficheiros abertos a partir do ambiente de trabalho ou de aplicações externas sejam executados na mesma instância do Cura?" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "" + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "Limpar a base de construção antes de carregar um novo modelo na instância única do Cura?" @@ -4006,6 +4127,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Mostrar relatório de falhas detalhado" +msgctxt "@action:button" +msgid "Show settings" +msgstr "" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Mostrar caixa de diálogo de resumo ao guardar projeto" @@ -4082,10 +4207,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "O seccionamento falhou" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "O seccionamento falhou com um erro inesperado. Por favor reportar um erro no nosso registo de problemas." - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "A Seccionar..." @@ -4094,6 +4215,10 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Suavização" +msgctxt "@label" +msgid "Solid" +msgstr "" + msgctxt "name" msgid "Solid View" msgstr "Vista Sólidos" @@ -4219,10 +4344,26 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Perfil {0} importado com êxito." +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Resumo – Projeto Cura" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "" + msgctxt "@label" msgid "Support" msgstr "Suportes" @@ -4600,6 +4741,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "Esta configuração não está disponível porque não foi possível reconhecer %1. Visite %2 para transferir o perfil de material correto." +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "Este ficheiro é um Projeto do Cura. Pretende abrir como Projeto ou só importar os modelos 3D incluídos no Projeto?" @@ -4689,6 +4834,14 @@ msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Esta definição está resolvida a partir de valores específicos da extrusora em conflito:" +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "" + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "" + msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" msgstr "Esta versão não se destina a uma utilização de produção. Se encontrar quaisquer problemas, comunique-os na nossa página no GitHub, referindo a versão completa {self.getVersion()}" @@ -4920,6 +5073,11 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Não é possível iniciar um novo processo de início de sessão. Verifique se ainda está ativa outra tentativa de início de sessão." +#, python-brace-format +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "" + msgctxt "@label:status" msgid "Unavailable" msgstr "Indisponível" @@ -4932,14 +5090,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Desagrupar Modelos" -msgctxt "@action:inmenu menubar:edit" -msgid "Print Before" -msgstr "Imprimir antes" - -msgctxt "@action:inmenu menubar:edit" -msgid "Print After" -msgstr "Imprimir depois" - msgctxt "@button" msgid "Uninstall" msgstr "Desinstalar" @@ -4948,6 +5098,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Unidade" +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "" + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "Configuração de sistema de construção universal" @@ -5137,6 +5291,10 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." msgstr "Atualiza configurações do Cura 5.4 para o Cura 5.5." +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "" + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Carregar firmware personalizado" @@ -5169,6 +5327,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "Biblioteca de utilidades, incluindo a geração em Voronoi" +msgctxt "@title:column" +msgid "Value" +msgstr "" + msgctxt "name" msgid "Version Upgrade 2.1 to 2.2" msgstr "Atualização da versão 2.1 para 2.2" @@ -5273,6 +5435,10 @@ msgctxt "name" msgid "Version Upgrade 5.4 to 5.5" msgstr "Atualização da versão 5.4 para 5.5" +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Visualize as impressoras na fábrica digital" @@ -5350,6 +5516,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "Qual impressora gostaria de definir?" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "Que tipo de composição de câmara deve ser utilizado?" @@ -5564,6 +5734,10 @@ msgctxt "@label" msgid "mm" msgstr "mm" +msgctxt "@label" +msgid "s" +msgstr "" + msgctxt "@info:status" msgid "today" msgstr "hoje" @@ -5591,3 +5765,15 @@ msgstr "Falhou a transferência de {} plug-ins" #~ msgid "Provides support for exporting Cura profiles." #~ msgstr "Oferece apoio para a exportação de perfis Cura." + +#~ msgctxt "description" +#~ msgid "Provides support for writing 3MF files." +#~ msgstr "Possiblita a gravação de ficheiros 3MF." + +#~ msgctxt "@option" +#~ msgid "Save Cura project and print file" +#~ msgstr "Guardar o projeto Cura e o ficheiro de impressão" + +#~ msgctxt "@message" +#~ msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +#~ msgstr "O seccionamento falhou com um erro inesperado. Por favor reportar um erro no nosso registo de problemas." diff --git a/resources/i18n/pt_PT/fdmextruder.def.json.po b/resources/i18n/pt_PT/fdmextruder.def.json.po index 2c0a17fafa5..beed5f903e3 100644 --- a/resources/i18n/pt_PT/fdmextruder.def.json.po +++ b/resources/i18n/pt_PT/fdmextruder.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-06-08 16:32+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -40,6 +40,10 @@ msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "G-Code Final do Extrusor" +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "" + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Posição Final Absoluta do Extrusor" @@ -72,6 +76,10 @@ msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "G-Code Inicial do Extrusor" +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "" + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Posição Inicial Absoluta do Extrusor" @@ -156,6 +164,14 @@ msgctxt "machine_extruder_cooling_fan_number description" msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." msgstr "O número de ventoinhas de arrefecimento de impressão associadas a este extrusor. Apenas alterar o valor predefinido de 0 quando tiver uma ventoinha de arrefecimento de impressão diferente para cada extrusor." +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "" + msgctxt "machine_extruder_end_pos_x description" msgid "The x-coordinate of the ending position when turning the extruder off." msgstr "A coordenada X da posição final ao desligar o extrusor." diff --git a/resources/i18n/pt_PT/fdmprinter.def.json.po b/resources/i18n/pt_PT/fdmprinter.def.json.po index 36283bc9de4..66badba1609 100644 --- a/resources/i18n/pt_PT/fdmprinter.def.json.po +++ b/resources/i18n/pt_PT/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,6 +12,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "" + +msgctxt "brim_inside_margin description" +msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." +msgstr "" + msgctxt "ironing_inset description" msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." msgstr "A distância a manter em relação às extremidades do modelo. \"Engomar\" até à extremidade da superfície pode resultar em arestas irregulares na impressão." @@ -56,10 +64,6 @@ msgctxt "machine_disallowed_areas description" msgid "A list of polygons with areas the print head is not allowed to enter." msgstr "Uma lista de polígonos com áreas onde a cabeça de impressão não pode entrar." -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "Uma peça totalmente fechada dentro de outra peça pode gerar uma aba externa que toca a parte interna da outra peça. Isto remove todas as bordas dentro dessa distância dos orifícios internos." - msgctxt "support_tree_branch_reach_limit description" msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " msgstr "Uma recomendação sobre qual a distância que os ramos podem percorrer a partir dos pontos que apoiam. Os ramos podem desrespeitar este valor, para alcançar o seu destino (placa de construção ou uma parte do modelo). Reduzir esse valor pode tornar o suporte mais resistente, contudo vai aumentar a quantidade de ramos (e, por conseguinte, também o uso de mais material e tempo de impressão)" @@ -152,6 +156,10 @@ msgctxt "resolution description" msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" msgstr "Todas as definições que influenciam a resolução da impressão. Estas definições têm um grande impacto na qualidade. (e no tempo de impressão)." +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "" + msgctxt "alternate_extra_perimeter label" msgid "Alternate Extra Wall" msgstr "Alternar Parede Adicional" @@ -400,21 +408,21 @@ msgctxt "adhesion_type option brim" msgid "Brim" msgstr "Aba" +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "" + msgctxt "brim_gap label" msgid "Brim Distance" msgstr "Distância da Aba" -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "Borda interna evitar margem" - msgctxt "brim_line_count label" msgid "Brim Line Count" msgstr "Número Linhas da Aba" -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Aba Apenas no Exterior" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "" msgctxt "brim_replaces_support label" msgid "Brim Replaces Support" @@ -456,6 +464,14 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "Temperatura do volume de construção" +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "" + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "" + msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." msgstr "Ao ativar esta configuração, sua torre de primagem terá uma aba, mesmo que o modelo não tenha. Se você deseja uma base mais robusta para uma torre alta, pode aumentar a altura da base." @@ -868,6 +884,10 @@ msgctxt "cool_fan_enabled label" msgid "Enable Print Cooling" msgstr "Ativar Arrefecimento Impressão" +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "" + msgctxt "retraction_enable label" msgid "Enable Retraction" msgstr "Ativar Retração" @@ -900,6 +920,10 @@ msgctxt "ooze_shield_enabled description" msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." msgstr "Ativa a proteção exterior contra escorrimentos. Isto irá criar um invólucro em torno do modelo que deverá limpar um segundo nozzle, caso este se encontre à mesma altura que o primeiro nozzle." +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "" + msgctxt "small_skin_on_surface description" msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." msgstr "Ative as regiões pequenas (até à \"Largura superior/interior pequena\") na camada mais superior (exposta ao ar) para que sejam preenchidas com paredes em vez do padrão predefinido." @@ -932,6 +956,10 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "Aplicar a aba para ser impressa em torno do modelo, mesmo se esse espaço fosse ocupado de outra forma pelo suporte. Isto substitui algumas regiões da primeira camada do suporte por regiões de aba." +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "" + msgctxt "support_type option everywhere" msgid "Everywhere" msgstr "Em todo o lado" @@ -1036,6 +1064,10 @@ msgctxt "speed_equalize_flow_width_factor label" msgid "Flow Equalization Ratio" msgstr "Proporção de equalização do fluxo" +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "" + msgctxt "flow_rate_extrusion_offset_factor label" msgid "Flow Rate Compensation Factor" msgstr "Fator de compensação da taxa de fluxo" @@ -1048,6 +1080,10 @@ msgctxt "material_flow_temp_graph label" msgid "Flow Temperature Graph" msgstr "Gráfico de temperatura de fluxo" +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "" + msgctxt "material_flow_layer_0 description" msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." msgstr "Compensação de fluxo para a camada inicial: a quantidade de material extrudido na camada inicial é multiplicada por este valor." @@ -1440,10 +1476,22 @@ msgctxt "wall_transition_filter_distance description" msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." msgstr "Se estiver a efetuar a transição para trás e para a frente entre diferentes números de paredes numa rápida sucessão, não efetuar qualquer transição. Remover as transições se estiverem mais juntas do que esta distância." +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "Se o Raft estiver ativado, esta será a área de raft adicional em torno do modelo que também terá um raft. Aumentar o valor desta margem irá criar um raft mais robusto, mas ao mesmo tempo utiliza mais material e reduz a área disponível para a impressão." +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "meshfix_union_all description" msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." msgstr "Ignorar a geometria interna provocada pela sobreposição de volumes num objecto e imprime os volumes como um só. Pode provocar o desaparecimento indesejado de cavidades interiores." @@ -1672,6 +1720,10 @@ msgctxt "wall_0_inset description" msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." msgstr "Desvio aplicado à trajetória da parede exterior. Se a parede exterior for menor que o nozzle e impressa depois das paredes interiores, utilize este desvio para que o buraco do nozzle se sobreponha às paredes interiores e não ao exterior do modelo." +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "" + msgctxt "inset_direction option inside_out" msgid "Inside To Outside" msgstr "De dentro para fora" @@ -1684,6 +1736,10 @@ msgctxt "support_interface_priority option interface_area_overwrite_support_area msgid "Interface preferred" msgstr "Interface preferida" +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "" + msgctxt "interlocking_beam_layer_count label" msgid "Interlocking Beam Layer Count" msgstr "Contagem de camada de feixe de interligação" @@ -1824,6 +1880,30 @@ msgctxt "support_tree_limit_branch_reach description" msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" msgstr "Limita a distância que cada ramo deve percorrer a partir do ponto que apoia. Isto pode tornar o suporte mais resistente, contudo vai aumentar a quantidade de ramos (e, por conseguinte, também o uso de mais material e tempo de impressão)" +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "" + msgctxt "cutting_mesh description" msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." msgstr "Limita o volume desta malha para o interior de outras malhas. Pode utilizar esta opção para fazer com que determinadas áreas de uma malha sejam impressas com diferentes definições e com um extrusor distinta." @@ -1921,8 +2001,10 @@ msgid "Make the extruder prime position absolute rather than relative to the las msgstr "Definir como absoluta, a posição para a preparação do extrusor, em vez de relativa à última posição conhecida da cabeça." msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "Sobrepor, na direção Z, a primeira e a segunda camadas do modelo para compensar o filamento perdido na caixa de ar. O valor da distância com que todos os modelos acima da primeira camada do modelo serão deslocados para baixo." +msgid "" +"Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" +"It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "" msgctxt "meshfix description" msgid "Make the meshes more suited for 3D printing." @@ -1948,10 +2030,18 @@ msgctxt "material label" msgid "Material" msgstr "Material" +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "" + msgctxt "material_guid label" msgid "Material GUID" msgstr "GUID do material" +msgctxt "material_type label" +msgid "Material Type" +msgstr "" + msgctxt "max_extrusion_before_wipe label" msgid "Material Volume Between Wipes" msgstr "Volume de material entre limpezas" @@ -2228,6 +2318,10 @@ msgctxt "ironing_monotonic label" msgid "Monotonic Ironing Order" msgstr "Ordem de Engomar em \"Monotonic\"" +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "" + msgctxt "roofing_monotonic label" msgid "Monotonic Top Surface Order" msgstr "Ordem da superfície superior em \"Monotonic\"" @@ -2268,6 +2362,10 @@ msgctxt "magic_mesh_surface_mode option normal" msgid "Normal" msgstr "Normal" +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "" + msgctxt "support_structure option normal" msgid "Normal" msgstr "Normal" @@ -2400,10 +2498,6 @@ msgctxt "ironing_only_highest_layer description" msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." msgstr "Engomar apenas a última camada do modelo. Isto permite poupar tempo se as camadas inferiores não precisarem de ter um acabamento mais suave." -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Imprimir a aba apenas no exterior do modelo. Isto reduz a quantidade de abas a remover posteriormente, e ao mesmo tempo não reduz assim tanto a aderência à base." - msgctxt "ooze_shield_angle label" msgid "Ooze Shield Angle" msgstr "Ângulo da proteção contra escorrimentos" @@ -2464,6 +2558,10 @@ msgctxt "group_outer_walls description" msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." msgstr "As paredes externas de diferentes ilhas na mesma camada são impressas em sequência. Quando habilitado, a quantidade de mudanças no fluxo é limitada porque as paredes são impressas um tipo de cada vez; quando desabilitado, o número de deslocamentos entre ilhas é reduzido porque as paredes nas mesmas ilhas são agrupadas." +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "" + msgctxt "inset_direction option outside_in" msgid "Outside To Inside" msgstr "De fora para dentro" @@ -2544,6 +2642,10 @@ msgctxt "prime_tower_line_width label" msgid "Prime Tower Line Width" msgstr "Diâmetro Linha Torre Preparação" +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "" + msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" msgstr "Volume mínimo da torre de preparação" @@ -2560,6 +2662,10 @@ msgctxt "speed_prime_tower label" msgid "Prime Tower Speed" msgstr "Velocidade da torre de preparação" +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "" + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "Posição X da torre de preparação" @@ -2576,18 +2682,14 @@ msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Jerk da Impressão" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "" + msgctxt "print_sequence label" msgid "Print Sequence" msgstr "Sequência de impressão" -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "Definir sequência de impressão manualmente" - -msgctxt "user_defined_print_order_enabled description" -msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." -msgstr "Permite ordenar a lista de objetos para definir a sequência de impressão manualmente. O primeiro objeto da lista será impresso primeiro." - msgctxt "speed_print label" msgid "Print Speed" msgstr "Velocidade de Impressão" @@ -2596,6 +2698,10 @@ msgctxt "fill_outline_gaps label" msgid "Print Thin Walls" msgstr "Imprimir Paredes Finas" +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "" + msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "Imprime uma torre próxima da impressão que prepara o material depois de cada substituição do nozzle." @@ -2616,6 +2722,10 @@ msgctxt "fill_outline_gaps description" msgid "Print pieces of the model which are horizontally thinner than the nozzle size." msgstr "Imprimir paredes do modelo que são mais finas horizontalmente do que o tamanho do nozzle." +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "" + msgctxt "bridge_skin_speed_2 description" msgid "Print speed to use when printing the second bridge skin layer." msgstr "Velocidade de impressão a ser utilizada ao imprimir a segunda camada do revestimento de Bridge." @@ -2624,6 +2734,14 @@ msgctxt "bridge_skin_speed_3 description" msgid "Print speed to use when printing the third bridge skin layer." msgstr "Velocidade de impressão a ser utilizada ao imprimir a terceira camada do revestimento de Bridge." +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "" + msgctxt "infill_before_walls description" msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." msgstr "Imprime o enchimento antes de imprimir as paredes. Imprimir as paredes em primeiro lugar pode resultar em paredes mais precisas, embora as saliências sejam impressas com menor qualidade. Imprimir o enchimento em primeiro lugar resulta em paredes mais robustas, embora, por vezes, o padrão geométrico de enchimento possa ser visto através da superfície." @@ -2668,6 +2786,10 @@ msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "Caixa de Ar do Raft" +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "" + msgctxt "raft_base_extruder_nr label" msgid "Raft Base Extruder" msgstr "Extrusor da base do raft" @@ -2696,6 +2818,10 @@ msgctxt "raft_base_speed label" msgid "Raft Base Print Speed" msgstr "Velocidade da Base do Raft" +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "" + msgctxt "raft_base_thickness label" msgid "Raft Base Thickness" msgstr "Espessura da Base do Raft" @@ -2712,6 +2838,10 @@ msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" msgstr "Velocidade do ventilador do raft" +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "" + msgctxt "raft_interface_extruder_nr label" msgid "Raft Middle Extruder" msgstr "Extrusor do meio do raft" @@ -2740,6 +2870,10 @@ msgctxt "raft_interface_speed label" msgid "Raft Middle Print Speed" msgstr "Velocidade do Meio do Raft" +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "" + msgctxt "raft_interface_line_spacing label" msgid "Raft Middle Spacing" msgstr "Espaçamento do Meio do Raft" @@ -2748,6 +2882,10 @@ msgctxt "raft_interface_thickness label" msgid "Raft Middle Thickness" msgstr "Espessura do Meio do Raft" +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "" + msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" msgstr "Aceleração Impressão do Raft" @@ -2764,6 +2902,10 @@ msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "Suavização Raft" +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "" + msgctxt "raft_surface_extruder_nr label" msgid "Raft Top Extruder" msgstr "Extrusora superior do raft" @@ -2796,10 +2938,22 @@ msgctxt "raft_surface_speed label" msgid "Raft Top Print Speed" msgstr "Velocidade do Topo do Raft" +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "" + msgctxt "raft_surface_line_spacing label" msgid "Raft Top Spacing" msgstr "Espaçamento Superior do Raft" +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "" + msgctxt "z_seam_type option random" msgid "Random" msgstr "Aleatório" @@ -2852,10 +3006,22 @@ msgctxt "carve_multiple_volumes label" msgid "Remove Mesh Intersection" msgstr "Remover interceção de malhas" +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "" + msgctxt "raft_remove_inside_corners label" msgid "Remove Raft Inside Corners" msgstr "Remover cantos interiores do raft" +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "" + msgctxt "carve_multiple_volumes description" msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." msgstr "Remover as áreas onde várias malhas se sobrepõem entre si. Isto pode ser utilizado se houver uma sobreposição dos objetos com diferentes materiais que estejam combinados." @@ -2864,6 +3030,18 @@ msgctxt "remove_empty_first_layers description" msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." msgstr "Remove as camadas vazias por baixo da primeira camada impressa, se existirem. Desativar esta definição pode causar primeiras camadas vazias, se a definição Tolerância de Seccionamento estiver definida como Exclusivo ou Centro." +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "" + msgctxt "raft_remove_inside_corners description" msgid "Remove inside corners from the raft, causing the raft to become convex." msgstr "Remover os cantos interiores do raft, fazendo com que o raft se torne convexo." @@ -2884,6 +3062,10 @@ msgctxt "skin_outline_count description" msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." msgstr "Substitui a parte mais exterior do padrão superior/inferior por um número de linhas concêntricas. Usar uma ou duas linhas melhora os tectos que começam no material de enchimento." +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "" + msgctxt "support_tree_rest_preference label" msgid "Rest Preference" msgstr "Preferência de Apoio" @@ -2956,6 +3138,10 @@ msgctxt "z_seam_corner label" msgid "Seam Corner Preference" msgstr "Preferência Canto Junta" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Definir sequência de impressão manualmente" + msgctxt "draft_shield_height_limitation description" msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." msgstr "Define a altura da proteção contra correntes de ar. Opte por imprimir a proteção contra correntes de ar com a altura máxima do modelo ou com uma altura limitada." @@ -3356,10 +3542,6 @@ msgctxt "support_interface_priority label" msgid "Support Interface Priority" msgstr "Prioridade da Interface e Suporte" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Resolução Interface Suporte" - msgctxt "speed_support_interface label" msgid "Support Interface Speed" msgstr "Velocidade da interface de suporte" @@ -3712,6 +3894,10 @@ msgctxt "magic_fuzzy_skin_point_dist description" msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." msgstr "A distância média entre os pontos aleatórios introduzidos em cada segmento de linha. Observe que os pontos originais do polígono são eliminados, pelo que uma suavidade elevada resulta numa redução da resolução. Este valor deve ser superior a metade da Espessura do revestimento difuso." +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "" + msgctxt "machine_acceleration description" msgid "The default acceleration of print head movement." msgstr "A aceleração predefinida do movimento da cabeça de impressão." @@ -4188,6 +4374,10 @@ msgctxt "jerk_travel description" msgid "The maximum instantaneous velocity change with which travel moves are made." msgstr "A mudança de velocidade instantânea máxima com a qual os movimentos de deslocação são impressos." +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "" + msgctxt "machine_max_feedrate_x description" msgid "The maximum speed for the motor of the X-direction." msgstr "A velocidade máxima do motor da direção X." @@ -4300,6 +4490,18 @@ msgctxt "raft_base_wall_count description" msgid "The number of contours to print around the linear pattern in the base layer of the raft." msgstr "O número de contornos a imprimir em torno do padrão linear na camada base do raft." +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "" + msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "O número de camadas de enchimento que suportam as arestas do revestimento." @@ -4688,6 +4890,10 @@ msgctxt "machine_gcode_flavor description" msgid "The type of g-code to be generated." msgstr "O tipo de G-code a ser gerado." +msgctxt "material_type description" +msgid "The type of material used." +msgstr "" + msgctxt "coasting_volume description" msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." msgstr "O volume que de outra forma iria escorrer. Geralmente, este valor deve ser próximo ao diâmetro cúbico do nozzle." @@ -4736,10 +4942,22 @@ msgctxt "bridge_wall_coast description" msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." msgstr "Isto controla a distância que o extrusor deve desacelerar imediatamente antes do início de uma parede de Bridge. Desacelerar antes do início de Bridge pode reduzir a pressão no nozzle e poderá produzir um vão mais liso." +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "Esta definição controla o nível do arredondamento dos cantos internos do contorno do raft. Os cantos internos são arredondados para um semicírculo com um raio igual ao valor aqui fornecido. Esta definição também remove buracos no contorno do raft que sejam menores que esse semicírculo." +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "retraction_count_max description" msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." msgstr "Esta definição limita o número de retrações que ocorrem no intervalo mínimo de distância de extrusão. As retrações adicionais dentro deste intervalo serão ignoradas. Isto evita a retração repetida no mesmo filamento, uma vez que tal pode achatar o filamento e causar problemas de trituração." @@ -5100,10 +5318,6 @@ msgctxt "wall_overhang_angle description" msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." msgstr "As paredes com saliências que ultrapassem este ângulo serão impressas utilizando definições de parede de saliências. Quando o valor é 90, nenhuma parede é considerada como sendo uma saliência. As saliências suportadas por suporte também não serão consideradas como saliências." -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "Ao verificar os locais onde existe modelo por cima e por baixo do suporte, tome as medidas necessárias de acordo com a altura determinada. Os valores mais reduzidos irão seccionar mais lentamente, enquanto os valores mais elevados podem fazer com que o suporte normal seja impresso em alguns locais onde deveria existir uma interface de suporte." - msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." msgstr "Quando ativados, os percursos da ferramenta são corrigidos para impressoras com planeadores de movimento suave. Os pequenos movimentos que se desviam da direção do percurso da ferramenta geral são suavizados para melhorar a fluidez dos movimentos." @@ -5496,42 +5710,74 @@ msgctxt "travel description" msgid "travel" msgstr "deslocação" -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duração de cada etapa da alteração do fluxo gradual" +#~ msgctxt "brim_inside_margin description" +#~ msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +#~ msgstr "Uma peça totalmente fechada dentro de outra peça pode gerar uma aba externa que toca a parte interna da outra peça. Isto remove todas as bordas dentro dessa distância dos orifícios internos." + +#~ msgctxt "user_defined_print_order_enabled description" +#~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +#~ msgstr "Permite ordenar a lista de objetos para definir a sequência de impressão manualmente. O primeiro objeto da lista será impresso primeiro." + +#~ msgctxt "brim_inside_margin label" +#~ msgid "Brim Inside Avoid Margin" +#~ msgstr "Borda interna evitar margem" + +#~ msgctxt "brim_outside_only label" +#~ msgid "Brim Only on Outside" +#~ msgstr "Aba Apenas no Exterior" + +#~ msgctxt "gradual_flow_discretisation_step_size description" +#~ msgid "Duration of each step in the gradual flow change" +#~ msgstr "Duração de cada etapa da alteração do fluxo gradual" + +#~ msgctxt "gradual_flow_enabled description" +#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +#~ msgstr "Permite alterar gradualmente o fluxo. Quando ativado, o fluxo é gradualmente aumentado/diminuído até atingir o fluxo-alvo. Esta funcionalidade é útil para impressoras com um tubo Bowden, onde o fluxo não é alterado imediatamente quando o motor extusor para/arranca." + +#~ msgctxt "reset_flow_duration description" +#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +#~ msgstr "Para qualquer movimento de deslocação superior a este valor, o fluxo de material é reposto para o fluxo de destino do percurso." + +#~ msgctxt "gradual_flow_discretisation_step_size label" +#~ msgid "Gradual flow discretisation step size" +#~ msgstr "Tamanho da etapa de discretização do fluxo gradual" + +#~ msgctxt "gradual_flow_enabled label" +#~ msgid "Gradual flow enabled" +#~ msgstr "Fluxo gradual ativado" -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Permite alterar gradualmente o fluxo. Quando ativado, o fluxo é gradualmente aumentado/diminuído até atingir o fluxo-alvo. Esta funcionalidade é útil para impressoras com um tubo Bowden, onde o fluxo não é alterado imediatamente quando o motor extusor para/arranca." +#~ msgctxt "max_flow_acceleration label" +#~ msgid "Gradual flow max acceleration" +#~ msgstr "Aceleração máxima do fluxo gradual" -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Para qualquer movimento de deslocação superior a este valor, o fluxo de material é reposto para o fluxo de destino do percurso." +#~ msgctxt "layer_0_max_flow_acceleration label" +#~ msgid "Initial layer max flow acceleration" +#~ msgstr "Aceleração do fluxo máximo da camada inicial" -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Tamanho da etapa de discretização do fluxo gradual" +#~ msgctxt "layer_0_z_overlap description" +#~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +#~ msgstr "Sobrepor, na direção Z, a primeira e a segunda camadas do modelo para compensar o filamento perdido na caixa de ar. O valor da distância com que todos os modelos acima da primeira camada do modelo serão deslocados para baixo." -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Fluxo gradual ativado" +#~ msgctxt "max_flow_acceleration description" +#~ msgid "Maximum acceleration for gradual flow changes" +#~ msgstr "Aceleração máxima para alterações do fluxo gradual" -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Aceleração máxima do fluxo gradual" +#~ msgctxt "layer_0_max_flow_acceleration description" +#~ msgid "Minimum speed for gradual flow changes for the first layer" +#~ msgstr "Velocidade mínima para alterações do fluxo gradual da primeira camada" -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Aceleração do fluxo máximo da camada inicial" +#~ msgctxt "brim_outside_only description" +#~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +#~ msgstr "Imprimir a aba apenas no exterior do modelo. Isto reduz a quantidade de abas a remover posteriormente, e ao mesmo tempo não reduz assim tanto a aderência à base." -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Aceleração máxima para alterações do fluxo gradual" +#~ msgctxt "reset_flow_duration label" +#~ msgid "Reset flow duration" +#~ msgstr "Repor duração do fluxo" -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Velocidade mínima para alterações do fluxo gradual da primeira camada" +#~ msgctxt "support_interface_skip_height label" +#~ msgid "Support Interface Resolution" +#~ msgstr "Resolução Interface Suporte" -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Repor duração do fluxo" +#~ msgctxt "support_interface_skip_height description" +#~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +#~ msgstr "Ao verificar os locais onde existe modelo por cima e por baixo do suporte, tome as medidas necessárias de acordo com a altura determinada. Os valores mais reduzidos irão seccionar mais lentamente, enquanto os valores mais elevados podem fazer com que o suporte normal seja impresso em alguns locais onde deveria existir uma interface de suporte." diff --git a/resources/i18n/ru_RU/cura.po b/resources/i18n/ru_RU/cura.po index 2960193d7e7..eed66872d2a 100644 --- a/resources/i18n/ru_RU/cura.po +++ b/resources/i18n/ru_RU/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-31 19:13+0100\n" +"POT-Creation-Date: 2024-03-11 12:52+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -121,6 +121,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "&Сохранить проект..." +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "" + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "&Параметры" @@ -267,6 +271,10 @@ msgstr[1] "Подключение к облаку недоступно для н msgstr[2] "Подключение к облаку недоступно для некоторых принтеров" msgstr[3] "" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "" + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "Печать еще выполняется. Cura не может начать другую печать через USB, пока предыдущая печать не будет завершена." @@ -501,10 +509,18 @@ msgctxt "@label" msgid "Anonymous" msgstr "Анонимн" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "Фреймворк приложения" +msgctxt "@title:column" +msgid "Applies on" +msgstr "" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "Применить смещения экструдера к GCode" @@ -691,6 +707,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "Вычислено" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "Рендеринг камеры:" @@ -1421,6 +1441,10 @@ msgctxt "@label" msgid "Draft" msgstr "Черновой" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "" + msgctxt "@action:button" msgid "Duplicate" msgstr "Дублировать" @@ -1547,6 +1571,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Экспорт выбранного..." +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "" + msgctxt "@button" msgid "Export material archive" msgstr "Экспорт архива материалов" @@ -1580,10 +1608,23 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "Завершающий G-код экструдера" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "Стартовый G-код экструдера" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "" + +#, python-brace-format +msgctxt "@label" +msgid "Extruder {0}" +msgstr "" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Экструдер (-ы) отключен (-ы)" @@ -1650,6 +1691,11 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Архив материалов не сохранен" +#, python-brace-format +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "" + msgctxt "@label:category menu label" msgid "Favorites" msgstr "Избранные" @@ -1791,6 +1837,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Просматривать слои в режиме совместимости (требуется перезапуск)" +msgid "FreeCAD trackpad" +msgstr "" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Вид спереди" @@ -1879,6 +1928,10 @@ msgctxt "@action" msgid "Get started" msgstr "Приступить" +msgctxt "@label" +msgid "Global" +msgstr "" + msgctxt "@title:tab" msgid "Global Settings" msgstr "Общие параметры" @@ -1928,6 +1981,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "Скрыть все подключенные принтеры" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "Спрятать этот параметр" @@ -2004,6 +2061,10 @@ msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "Для работы с пакетом необходимо перезапустить Cura" +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "" + msgctxt "@label" msgid "Infill" msgstr "Заполнение" @@ -2711,6 +2772,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "Поиск с текущим фильтром не дал результатов" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "" + msgctxt "@label" msgid "No time estimation available" msgstr "Оценка времени недоступна" @@ -2812,6 +2877,10 @@ msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Только один G-code файла может быть загружен в момент времени. Пропускаю импортирование {0}" +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "" + msgctxt "@action:button" msgid "Open" msgstr "Открыть" @@ -2840,10 +2909,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "Открыть файл проекта" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "" + msgctxt "@action:label" msgid "Open With" msgstr "Открыть с помощью" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "" + msgctxt "@action:button" msgid "Open as project" msgstr "Открыть как проект" @@ -3062,6 +3143,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "Войдите, чтобы получить проверенные встраиваемые модули и материалы для UltiMaker Cura Enterprise" +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "" + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "Перед началом печати синхронизируйте профили материалов с принтерами." @@ -3158,6 +3243,14 @@ msgctxt "@action:button" msgid "Print" msgstr "Печать" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Печатать после" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Печатать до" + msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -3468,8 +3561,8 @@ msgid "Provides support for reading model files." msgstr "Предоставляет поддержку для чтения файлов моделей." msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Предоставляет возможность записи 3MF файлов." +msgid "Provides support for writing 3MF and UCP files." +msgstr "" msgctxt "description" msgid "Provides support for writing MakerBot Format Packages." @@ -3713,8 +3806,12 @@ msgid "Save Cura project" msgstr "Сохранить проект Cura" msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "Сохранить проекта Cura и распечатать файл" +msgid "Save Cura project and .makerbot print file" +msgstr "" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" +msgstr "" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3740,6 +3837,10 @@ msgctxt "@button" msgid "Save new profile" msgstr "Сохранить новый профиль" +msgctxt "@action:button" +msgid "Save project" +msgstr "" + msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "Сохраните UMM-файл на USB-накопителе." @@ -3843,6 +3944,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "Отправить отчет о сбое в UltiMaker" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "" + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "" + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "" + msgctxt "@action:button" msgid "Send report" msgstr "Отправить отчёт" @@ -3895,6 +4008,10 @@ msgctxt "@title:tab" msgid "Settings" msgstr "Параметры" +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "Настройки изменены в соответствии с текущей доступностью экструдеров:" @@ -3963,6 +4080,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "Открывать файлы с компьютера и из внешних приложений в одном экземпляре Cura?" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "" + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "Следует ли очищать печатную пластину перед загрузкой новой модели в единственный экземпляр Cura?" @@ -4019,6 +4140,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Показать подробный отчет о сбое" +msgctxt "@action:button" +msgid "Show settings" +msgstr "" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Показывать сводку при сохранении проекта" @@ -4095,10 +4220,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "Нарезка на слои не выполнена" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "Нарезка на слои не выполнена из-за непредвиденной ошибки. Возможно, стоит сообщить об ошибке в нашей системе отслеживания проблем." - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Нарезка на слои..." @@ -4107,6 +4228,10 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Сглаживание" +msgctxt "@label" +msgid "Solid" +msgstr "" + msgctxt "name" msgid "Solid View" msgstr "Обзор" @@ -4232,10 +4357,26 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Профиль {0} успешно импортирован." +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Сводка - Проект Cura" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "" + msgctxt "@label" msgid "Support" msgstr "Поддержки" @@ -4619,6 +4760,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "Данная конфигурация недоступна, поскольку %1 не распознан. Посетите %2 и загрузите подходящий профиль материала." +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "Это проект Cura. Следует открыть его как проект или просто импортировать из него модели?" @@ -4712,6 +4857,14 @@ msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Эта настройка получена из конфликтующих значений экструдера:" +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "" + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "" + msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" msgstr "Эта версия не предназначена для производственного использования. Если у вас возникнут какие-либо проблемы, сообщите о них на нашей странице GitHub, указав полную версию {self.getVersion()}" @@ -4943,6 +5096,11 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Невозможно начать новый вход в систему. Проверьте, возможно другой сеанс еще не завершен." +#, python-brace-format +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "" + msgctxt "@label:status" msgid "Unavailable" msgstr "Недоступен" @@ -4955,14 +5113,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Разгруппировать модели" -msgctxt "@action:inmenu menubar:edit" -msgid "Print Before" -msgstr "Печатать до" - -msgctxt "@action:inmenu menubar:edit" -msgid "Print After" -msgstr "Печатать после" - msgctxt "@button" msgid "Uninstall" msgstr "Удалить" @@ -4971,6 +5121,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Единица" +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "" + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "Конфигурация универсальной системы сборки" @@ -5160,6 +5314,10 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." msgstr "Обновляет конфигурации с Cura 5.4 до Cura 5.5." +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "" + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Залить собственную прошивку" @@ -5192,6 +5350,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "Вспомогательные функции, включая генерацию диаграмм Вороного" +msgctxt "@title:column" +msgid "Value" +msgstr "" + msgctxt "name" msgid "Version Upgrade 2.1 to 2.2" msgstr "Обновление версии 2.1 до 2.2" @@ -5296,6 +5458,10 @@ msgctxt "name" msgid "Version Upgrade 5.4 to 5.5" msgstr "Обновление версии 5.4 до 5.5" +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Просмотреть принтеры в Digital Factory" @@ -5373,6 +5539,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "Какой принтер вы хотите настроить?" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "Рендеринг камеры какого типа следует использовать?" @@ -5591,6 +5761,10 @@ msgctxt "@label" msgid "mm" msgstr "мм" +msgctxt "@label" +msgid "s" +msgstr "" + msgctxt "@info:status" msgid "today" msgstr "сегодня" @@ -5618,3 +5792,15 @@ msgstr "Встраиваемые модули ({} шт.) не загружены #~ msgid "Provides support for exporting Cura profiles." #~ msgstr "Обеспечивает поддержку экспорта профилей Cura." + +#~ msgctxt "description" +#~ msgid "Provides support for writing 3MF files." +#~ msgstr "Предоставляет возможность записи 3MF файлов." + +#~ msgctxt "@option" +#~ msgid "Save Cura project and print file" +#~ msgstr "Сохранить проекта Cura и распечатать файл" + +#~ msgctxt "@message" +#~ msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +#~ msgstr "Нарезка на слои не выполнена из-за непредвиденной ошибки. Возможно, стоит сообщить об ошибке в нашей системе отслеживания проблем." diff --git a/resources/i18n/ru_RU/fdmextruder.def.json.po b/resources/i18n/ru_RU/fdmextruder.def.json.po index 664a28569cc..c3bce9a5288 100644 --- a/resources/i18n/ru_RU/fdmextruder.def.json.po +++ b/resources/i18n/ru_RU/fdmextruder.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-06-08 16:32+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -40,6 +40,10 @@ msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "Завершающий G-код экструдера" +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "" + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Абсолютная конечная позиция экструдера" @@ -72,6 +76,10 @@ msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "Стартовый G-код экструдера" +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "" + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Абсолютная стартовая позиция экструдера" @@ -156,6 +164,14 @@ msgctxt "machine_extruder_cooling_fan_number description" msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." msgstr "Номер охлаждающего вентилятора, используемого при печати и ассоциированного с этим экструдером. Применяемое по умолчанию значение 0 следует менять только при наличии другого охлаждающего вентилятора, используемого при печати, для каждого экструдера." +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "" + msgctxt "machine_extruder_end_pos_x description" msgid "The x-coordinate of the ending position when turning the extruder off." msgstr "X координата конечной позиции при отключении экструдера." diff --git a/resources/i18n/ru_RU/fdmprinter.def.json.po b/resources/i18n/ru_RU/fdmprinter.def.json.po index bba90e21eff..ddb6dcef99f 100644 --- a/resources/i18n/ru_RU/fdmprinter.def.json.po +++ b/resources/i18n/ru_RU/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,6 +12,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "" + +msgctxt "brim_inside_margin description" +msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." +msgstr "" + msgctxt "ironing_inset description" msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." msgstr "Расстояние от краёв модели. Разглаживание от края до края может выразиться в загибании краёв при печати." @@ -56,10 +64,6 @@ msgctxt "machine_disallowed_areas description" msgid "A list of polygons with areas the print head is not allowed to enter." msgstr "Список полигонов с областями, в которые голове запрещено заходить." -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "Деталь, полностью заключенная внутри другой детали, может создать внешнюю кайму, которая касается внутренней части другой детали. Эта опция убирает всю кайму в пределах этого расстояния от внутренних отверстий." - msgctxt "support_tree_branch_reach_limit description" msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " msgstr "Рекомендация относительно того, как далеко ответвления могут отходить от точек, которые они поддерживают. Ответвления могут нарушать это значение, чтобы добраться до места назначения (рабочей пластины или плоской части модели). Снижение этого значения может сделать поддержку прочнее, но увеличит количество ответвлений (и, как следствие, расход материала и время печати)" @@ -152,6 +156,10 @@ msgctxt "resolution description" msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" msgstr "Все параметры, которые влияют на разрешение печати. Эти параметры сильно влияют на качество (и время печати)" +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "" + msgctxt "alternate_extra_perimeter label" msgid "Alternate Extra Wall" msgstr "Чередующаяся стенка" @@ -400,21 +408,21 @@ msgctxt "adhesion_type option brim" msgid "Brim" msgstr "Кайма" +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "" + msgctxt "brim_gap label" msgid "Brim Distance" msgstr "Расстояние до каймы" -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "Кайма внутри зоны избегания" - msgctxt "brim_line_count label" msgid "Brim Line Count" msgstr "Количество линий каймы" -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Кайма только снаружи" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "" msgctxt "brim_replaces_support label" msgid "Brim Replaces Support" @@ -456,6 +464,14 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "Температура для объема печати" +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "" + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "" + msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." msgstr "Активируя эту настройку, ваша башня подготовки получит бортик, даже если модель его не требует. Если вам нужна более устойчивая основа для высокой башни, вы можете увеличить высоту основания." @@ -868,6 +884,10 @@ msgctxt "cool_fan_enabled label" msgid "Enable Print Cooling" msgstr "Включить вентиляторы" +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "" + msgctxt "retraction_enable label" msgid "Enable Retraction" msgstr "Разрешить откат" @@ -900,6 +920,10 @@ msgctxt "ooze_shield_enabled description" msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." msgstr "Разрешает печать внешней защиты от вытекших капель. Создаёт ограду вокруг модели, о которую вытирается материал, вытекший из второго сопла, если оно находится на той же высоте, что и первое сопло." +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "" + msgctxt "small_skin_on_surface description" msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." msgstr "Включите заполнение небольших областей (до «маленькой ширины вверху/внизу») в самом верхнем слое оболочки (которые подвержены воздействию воздуха) стенками вместо шаблона по умолчанию." @@ -932,6 +956,10 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "Принудительная печать каймы вокруг модели, даже если пространство в ином случае было бы занято поддержкой. При этом некоторые участки первого слоя поддержки заменяются участками каймы." +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "" + msgctxt "support_type option everywhere" msgid "Everywhere" msgstr "Везде" @@ -1036,6 +1064,10 @@ msgctxt "speed_equalize_flow_width_factor label" msgid "Flow Equalization Ratio" msgstr "Коэффициент выравнивания потока" +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "" + msgctxt "flow_rate_extrusion_offset_factor label" msgid "Flow Rate Compensation Factor" msgstr "Коэффициент компенсации расхода" @@ -1048,6 +1080,10 @@ msgctxt "material_flow_temp_graph label" msgid "Flow Temperature Graph" msgstr "График температуры потока" +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "" + msgctxt "material_flow_layer_0 description" msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." msgstr "Компенсация потока для первого слоя: объем выдавленного материала на первом слое умножается на этот коэффициент." @@ -1440,10 +1476,22 @@ msgctxt "wall_transition_filter_distance description" msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." msgstr "Если ожидаются переходы туда и обратно между разным количеством стенок в быстрой последовательности, не выполняйте переходы совсем. Удалите переходы, если расстояние между ними меньше значения этого параметра." +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "Если подложка включена, это дополнительное поле вокруг модели, которая также имеет подложку. Увеличение этого значения создаст более крепкую поддержку, используя больше материала и оставляя меньше свободной области для печати." +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "meshfix_union_all description" msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." msgstr "Игнорирует внутреннюю геометрию, являющуюся результатом перекрытия объёмов в модели, и печатает эти объёмы как один. Это может приводить к непреднамеренному исчезновению внутренних полостей." @@ -1672,6 +1720,10 @@ msgctxt "wall_0_inset description" msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." msgstr "Вставка применяется для внешних стенок. Если внешняя стенка меньше диаметра сопла и печатается после внутренних стенок, то используйте это смещение для захода соплом на внутренние стенки, вместо выхода за модель." +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "" + msgctxt "inset_direction option inside_out" msgid "Inside To Outside" msgstr "От внутренних к внешним" @@ -1684,6 +1736,10 @@ msgctxt "support_interface_priority option interface_area_overwrite_support_area msgid "Interface preferred" msgstr "Предпочитать интерфейс" +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "" + msgctxt "interlocking_beam_layer_count label" msgid "Interlocking Beam Layer Count" msgstr "Количество слоев взаимосвязанных балок" @@ -1824,6 +1880,30 @@ msgctxt "support_tree_limit_branch_reach description" msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" msgstr "Ограничьте расстояние, на которое каждое ответвление должно удаляться от опорной точки. Это может сделать поддержку прочнее, но увеличит количество ответвлений (и, как следствие, расход материала и время печати)" +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "" + msgctxt "cutting_mesh description" msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." msgstr "Ограничивает объём объекта внутри других объектов. Вы можете использовать это для печати определённых областей одного объекта, применяя различные параметры печати и даже другой экструдер." @@ -1921,8 +2001,10 @@ msgid "Make the extruder prime position absolute rather than relative to the las msgstr "Сделать стартовую позицию экструдера абсолютной, а не относительной от последней известной позиции головы." msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "Приводит к наложению первого и второго слоёв модели по оси Z для компенсации потерь материала в воздушном зазоре. Все слои модели выше первого будут смещены чуть ниже на указанное значение." +msgid "" +"Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" +"It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "" msgctxt "meshfix description" msgid "Make the meshes more suited for 3D printing." @@ -1948,10 +2030,18 @@ msgctxt "material label" msgid "Material" msgstr "Материал" +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "" + msgctxt "material_guid label" msgid "Material GUID" msgstr "GUID материала" +msgctxt "material_type label" +msgid "Material Type" +msgstr "" + msgctxt "max_extrusion_before_wipe label" msgid "Material Volume Between Wipes" msgstr "Объем материала между очистками" @@ -2228,6 +2318,10 @@ msgctxt "ironing_monotonic label" msgid "Monotonic Ironing Order" msgstr "Монотонный порядок разглаживания" +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "" + msgctxt "roofing_monotonic label" msgid "Monotonic Top Surface Order" msgstr "Монотонный порядок верхней оболочки" @@ -2268,6 +2362,10 @@ msgctxt "magic_mesh_surface_mode option normal" msgid "Normal" msgstr "Нормаль" +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "" + msgctxt "support_structure option normal" msgid "Normal" msgstr "Нормаль" @@ -2400,10 +2498,6 @@ msgctxt "ironing_only_highest_layer description" msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." msgstr "Выполняет разглаживание только на самом последнем слое модели. Экономит время, когда нижние слои не требуют сглаживания поверхности." -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Печатать кайму только на внешней стороне модели. Это сокращает объём каймы, которую вам потребуется удалить в дальнейшем, и не снижает качество прилипания к столу." - msgctxt "ooze_shield_angle label" msgid "Ooze Shield Angle" msgstr "Угол защиты от капель" @@ -2464,6 +2558,10 @@ msgctxt "group_outer_walls description" msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." msgstr "Внешние стены разных островов в одном слое печатаются последовательно. При включении количество изменений потока ограничено, поскольку стены печатаются один тип за раз, при отключении количество перемещений между островами уменьшается, потому что стены на одних и тех же островах группируются." +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "" + msgctxt "inset_direction option outside_in" msgid "Outside To Inside" msgstr "От внешних к внутренним" @@ -2544,6 +2642,10 @@ msgctxt "prime_tower_line_width label" msgid "Prime Tower Line Width" msgstr "Ширина линии черновой башни" +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "" + msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" msgstr "Минимальный объём черновой башни" @@ -2560,6 +2662,10 @@ msgctxt "speed_prime_tower label" msgid "Prime Tower Speed" msgstr "Скорость черновых башен" +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "" + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "X позиция черновой башни" @@ -2576,18 +2682,14 @@ msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Рывок печати" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "" + msgctxt "print_sequence label" msgid "Print Sequence" msgstr "Последовательная печать" -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "Установить последовательность печати вручную" - -msgctxt "user_defined_print_order_enabled description" -msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." -msgstr "Позволяет упорядочить список объектов для ручной настройки последовательности печати. Первый объект из списка будет напечатан первым." - msgctxt "speed_print label" msgid "Print Speed" msgstr "Скорость печати" @@ -2596,6 +2698,10 @@ msgctxt "fill_outline_gaps label" msgid "Print Thin Walls" msgstr "Печать тонких стенок" +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "" + msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "Печатает башню перед печатью модели, чем помогает выдавить старый материал после смены экструдера." @@ -2616,6 +2722,10 @@ msgctxt "fill_outline_gaps description" msgid "Print pieces of the model which are horizontally thinner than the nozzle size." msgstr "Печать частей модели, которые по горизонтали тоньше диаметра сопла." +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "" + msgctxt "bridge_skin_speed_2 description" msgid "Print speed to use when printing the second bridge skin layer." msgstr "Скорость, с которой печатается слой второй оболочки мостика." @@ -2624,6 +2734,14 @@ msgctxt "bridge_skin_speed_3 description" msgid "Print speed to use when printing the third bridge skin layer." msgstr "Скорость, с которой печатается слой третьей оболочки мостика." +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "" + msgctxt "infill_before_walls description" msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." msgstr "Печатать заполнение до печати стенок. Если печатать сначала стенки, то это может сделать их более точными, но нависающие стенки будут напечатаны хуже. Если печатать сначала заполнение, то это сделает стенки более крепкими, но шаблон заполнения может иногда прорываться сквозь поверхность стенки." @@ -2668,6 +2786,10 @@ msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "Воздушный зазор подложки" +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "" + msgctxt "raft_base_extruder_nr label" msgid "Raft Base Extruder" msgstr "Экструдер нижних подложек" @@ -2696,6 +2818,10 @@ msgctxt "raft_base_speed label" msgid "Raft Base Print Speed" msgstr "Скорость печати низа подложки" +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "" + msgctxt "raft_base_thickness label" msgid "Raft Base Thickness" msgstr "Толщина нижнего слоя подложки" @@ -2712,6 +2838,10 @@ msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" msgstr "Скорость вентилятора для подложки" +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "" + msgctxt "raft_interface_extruder_nr label" msgid "Raft Middle Extruder" msgstr "Экструдер серединных подложек" @@ -2740,6 +2870,10 @@ msgctxt "raft_interface_speed label" msgid "Raft Middle Print Speed" msgstr "Скорость печати середины подложки" +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "" + msgctxt "raft_interface_line_spacing label" msgid "Raft Middle Spacing" msgstr "Дистанция между слоями середины подложки" @@ -2748,6 +2882,10 @@ msgctxt "raft_interface_thickness label" msgid "Raft Middle Thickness" msgstr "Толщина середины подложки" +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "" + msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" msgstr "Ускорение печати подложки" @@ -2764,6 +2902,10 @@ msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "Сглаживание подложки" +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "" + msgctxt "raft_surface_extruder_nr label" msgid "Raft Top Extruder" msgstr "Экструдер верхних подложек" @@ -2796,10 +2938,22 @@ msgctxt "raft_surface_speed label" msgid "Raft Top Print Speed" msgstr "Скорость печати верха подложки" +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "" + msgctxt "raft_surface_line_spacing label" msgid "Raft Top Spacing" msgstr "Дистанция между линиями верха поддержки" +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "" + msgctxt "z_seam_type option random" msgid "Random" msgstr "Случайно" @@ -2852,10 +3006,22 @@ msgctxt "carve_multiple_volumes label" msgid "Remove Mesh Intersection" msgstr "Удалить пересечения объектов" +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "" + msgctxt "raft_remove_inside_corners label" msgid "Remove Raft Inside Corners" msgstr "Удаление внутренних углов подложки" +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "" + msgctxt "carve_multiple_volumes description" msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." msgstr "Удаляет области, где несколько объектов перекрываются друг с другом. Можно использовать, для объектов, состоящих из двух материалов и пересекающихся друг с другом." @@ -2864,6 +3030,18 @@ msgctxt "remove_empty_first_layers description" msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." msgstr "Удаление пустых слоёв под первым печатаемым слоем, если они имеются. Отключение этой функции может привести к созданию первых пустых слоев, если для параметра «Допуск слайсинга» установлено значение «Включение» или «Середина»." +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "" + msgctxt "raft_remove_inside_corners description" msgid "Remove inside corners from the raft, causing the raft to become convex." msgstr "Удаляйте внутренние углы с подложки, чтобы она стала выпуклой." @@ -2884,6 +3062,10 @@ msgctxt "skin_outline_count description" msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." msgstr "Заменяет внешнюю часть шаблона крышки/дна рядом концентрических линий. Использование одной или двух линий улучшает мосты, которые печатаются поверх материала заполнения." +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "" + msgctxt "support_tree_rest_preference label" msgid "Rest Preference" msgstr "Предпочтение опоры" @@ -2956,6 +3138,10 @@ msgctxt "z_seam_corner label" msgid "Seam Corner Preference" msgstr "Настройки угла шва" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Установить последовательность печати вручную" + msgctxt "draft_shield_height_limitation description" msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." msgstr "Устанавливает высоту кожуха. Можно печать кожух высотой с модель или указать определённую высоту." @@ -3356,10 +3542,6 @@ msgctxt "support_interface_priority label" msgid "Support Interface Priority" msgstr "Приоритет интерфейса поддержки" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Разрешение связующего слоя поддержек" - msgctxt "speed_support_interface label" msgid "Support Interface Speed" msgstr "Скорость границы поддержек" @@ -3712,6 +3894,10 @@ msgctxt "magic_fuzzy_skin_point_dist description" msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." msgstr "Среднее расстояние между случайными точками, который вносятся в каждый сегмент линии. Следует отметить, что оригинальные точки полигона отбрасываются, таким образом, сильное сглаживание приводит к уменьшению разрешения. Это значение должно быть больше половины толщины шершавой оболочки." +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "" + msgctxt "machine_acceleration description" msgid "The default acceleration of print head movement." msgstr "Стандартное ускорение для движений головы." @@ -4188,6 +4374,10 @@ msgctxt "jerk_travel description" msgid "The maximum instantaneous velocity change with which travel moves are made." msgstr "Изменение максимальной мгновенной скорости, с которой выполняются перемещения." +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "" + msgctxt "machine_max_feedrate_x description" msgid "The maximum speed for the motor of the X-direction." msgstr "Максимальная скорость для мотора оси X." @@ -4300,6 +4490,18 @@ msgctxt "raft_base_wall_count description" msgid "The number of contours to print around the linear pattern in the base layer of the raft." msgstr "Количество контуров, которые необходимо напечатать вокруг линейного рисунка в слое основания подложки." +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "" + msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "Количество слоев, которые поддерживают края оболочки." @@ -4688,6 +4890,10 @@ msgctxt "machine_gcode_flavor description" msgid "The type of g-code to be generated." msgstr "Генерируемый тип G-кода." +msgctxt "material_type description" +msgid "The type of material used." +msgstr "" + msgctxt "coasting_volume description" msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." msgstr "Объём, который бы сочился. Это значение должно обычно быть близко к возведенному в куб диаметру сопла." @@ -4736,10 +4942,22 @@ msgctxt "bridge_wall_coast description" msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." msgstr "Эта настройка управляет расстоянием наката экструдера непосредственно перед началом стенки мостика. Накат перед началом мостика может уменьшить давление в сопле и создать более ровный мостик." +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "Этот параметр регулирует величину скругления внутренних углов контура подложки. Внутренние углы скругляются до полукруга с радиусом, равным установленному здесь значению. Этот параметр также приводит к удалению отверстий в контуре подложки, которые меньше такого круга." +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "retraction_count_max description" msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." msgstr "Данный параметр ограничивает число откатов, которые происходят внутри окна минимальной дистанции экструзии. Дальнейшие откаты внутри этого окна будут проигнорированы. Это исключает выполнение множества повторяющихся откатов над одним и тем же участком нити, что позволяет избежать проблем с истиранием нити." @@ -5100,10 +5318,6 @@ msgctxt "wall_overhang_angle description" msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." msgstr "Стенки, выступающие под углом больше указанного, будут напечатаны с использованием настроек выступающей стенки. Если значение составляет 90, стенки не считаются выступающими. Выступающие элементы, для которых имеется поддержка, также не считаются выступающими." -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "Если выбрано в случае, когда модель находится под и над поддержкой, принимает шаги данной высоты. Малые значения замедляют просчёт, а большие - могут привести к генерации поддержек в некоторых местах, где лучше бы печатать интерфейс поддержек." - msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." msgstr "При включении траектории инструмента корректируются для принтеров с планировщиками плавного движения. Небольшие движения, отклоняющиеся от общего направления траектории инструмента, сглаживаются для улучшения плавности движений." @@ -5496,42 +5710,74 @@ msgctxt "travel description" msgid "travel" msgstr "перемещение" -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Продолжительность каждого этапа постепенного изменения потока" +#~ msgctxt "brim_inside_margin description" +#~ msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +#~ msgstr "Деталь, полностью заключенная внутри другой детали, может создать внешнюю кайму, которая касается внутренней части другой детали. Эта опция убирает всю кайму в пределах этого расстояния от внутренних отверстий." + +#~ msgctxt "user_defined_print_order_enabled description" +#~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +#~ msgstr "Позволяет упорядочить список объектов для ручной настройки последовательности печати. Первый объект из списка будет напечатан первым." + +#~ msgctxt "brim_inside_margin label" +#~ msgid "Brim Inside Avoid Margin" +#~ msgstr "Кайма внутри зоны избегания" + +#~ msgctxt "brim_outside_only label" +#~ msgid "Brim Only on Outside" +#~ msgstr "Кайма только снаружи" + +#~ msgctxt "gradual_flow_discretisation_step_size description" +#~ msgid "Duration of each step in the gradual flow change" +#~ msgstr "Продолжительность каждого этапа постепенного изменения потока" + +#~ msgctxt "gradual_flow_enabled description" +#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +#~ msgstr "Включите постепенное изменение потока. Если эта функция включена, поток постепенно увеличивается/уменьшается до целевого значения. Это полезно для принтеров с трубкой Боудена, где поток не меняется сразу при запуске/остановке двигателя экструдера." + +#~ msgctxt "reset_flow_duration description" +#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +#~ msgstr "Для любого перемещения, превышающего это значение, поток материала сбрасывается до целевого потока пути" + +#~ msgctxt "gradual_flow_discretisation_step_size label" +#~ msgid "Gradual flow discretisation step size" +#~ msgstr "Размер шага дискретизации постепенного потока" + +#~ msgctxt "gradual_flow_enabled label" +#~ msgid "Gradual flow enabled" +#~ msgstr "Постепенный поток включен" -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Включите постепенное изменение потока. Если эта функция включена, поток постепенно увеличивается/уменьшается до целевого значения. Это полезно для принтеров с трубкой Боудена, где поток не меняется сразу при запуске/остановке двигателя экструдера." +#~ msgctxt "max_flow_acceleration label" +#~ msgid "Gradual flow max acceleration" +#~ msgstr "Максимальное ускорение постепенного потока" -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Для любого перемещения, превышающего это значение, поток материала сбрасывается до целевого потока пути" +#~ msgctxt "layer_0_max_flow_acceleration label" +#~ msgid "Initial layer max flow acceleration" +#~ msgstr "Максимальное ускорение потока начального слоя" -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Размер шага дискретизации постепенного потока" +#~ msgctxt "layer_0_z_overlap description" +#~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +#~ msgstr "Приводит к наложению первого и второго слоёв модели по оси Z для компенсации потерь материала в воздушном зазоре. Все слои модели выше первого будут смещены чуть ниже на указанное значение." -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Постепенный поток включен" +#~ msgctxt "max_flow_acceleration description" +#~ msgid "Maximum acceleration for gradual flow changes" +#~ msgstr "Максимальное ускорение для плавного изменения потока" -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Максимальное ускорение постепенного потока" +#~ msgctxt "layer_0_max_flow_acceleration description" +#~ msgid "Minimum speed for gradual flow changes for the first layer" +#~ msgstr "Минимальная скорость для постепенного изменения потока для первого слоя" -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Максимальное ускорение потока начального слоя" +#~ msgctxt "brim_outside_only description" +#~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +#~ msgstr "Печатать кайму только на внешней стороне модели. Это сокращает объём каймы, которую вам потребуется удалить в дальнейшем, и не снижает качество прилипания к столу." -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Максимальное ускорение для плавного изменения потока" +#~ msgctxt "reset_flow_duration label" +#~ msgid "Reset flow duration" +#~ msgstr "Сбросить продолжительность потока" -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Минимальная скорость для постепенного изменения потока для первого слоя" +#~ msgctxt "support_interface_skip_height label" +#~ msgid "Support Interface Resolution" +#~ msgstr "Разрешение связующего слоя поддержек" -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Сбросить продолжительность потока" +#~ msgctxt "support_interface_skip_height description" +#~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +#~ msgstr "Если выбрано в случае, когда модель находится под и над поддержкой, принимает шаги данной высоты. Малые значения замедляют просчёт, а большие - могут привести к генерации поддержек в некоторых местах, где лучше бы печатать интерфейс поддержек." diff --git a/resources/i18n/tr_TR/cura.po b/resources/i18n/tr_TR/cura.po index c3afd0c7c12..d55b7a0d7de 100644 --- a/resources/i18n/tr_TR/cura.po +++ b/resources/i18n/tr_TR/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-31 19:13+0100\n" +"POT-Creation-Date: 2024-03-11 12:52+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -117,6 +117,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "&Projeyi Kaydet..." +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "" + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "&Ayarlar" @@ -261,6 +265,10 @@ msgid_plural "A cloud connection is not available for some printers" msgstr[0] "Yazıcı için kullanılabilir bulut bağlantısı yok" msgstr[1] "Bazı yazıcılar için kullanılabilir bulut bağlantısı yok" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "" + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "Devam eden bir baskı var. Cura, önceki baskı tamamlanmadan USB aracılığıyla başka bir baskı işi başlatamaz." @@ -495,10 +503,18 @@ msgctxt "@label" msgid "Anonymous" msgstr "Anonim" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "Uygulama çerçevesi" +msgctxt "@title:column" +msgid "Applies on" +msgstr "" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "Ekstrüder ofsetlerini GCode'a uygula" @@ -685,6 +701,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "Hesaplanmış" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "Kamera oluşturma:" @@ -1415,6 +1435,10 @@ msgctxt "@label" msgid "Draft" msgstr "Taslak" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "" + msgctxt "@action:button" msgid "Duplicate" msgstr "Çoğalt" @@ -1541,6 +1565,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Seçimi Dışa Aktar..." +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "" + msgctxt "@button" msgid "Export material archive" msgstr "Malzeme arşivini dışa aktar" @@ -1574,10 +1602,23 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "Ekstruder G-Code'u Sonlandırma" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "Ekstruder G-Code'u Başlatma" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "" + +#, python-brace-format +msgctxt "@label" +msgid "Extruder {0}" +msgstr "" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Ekstrüder(ler) Devre Dışı Bırakıldı" @@ -1644,6 +1685,11 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Malzeme arşivi kaydedilemedi" +#, python-brace-format +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "" + msgctxt "@label:category menu label" msgid "Favorites" msgstr "Favoriler" @@ -1785,6 +1831,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Katman görünümünü uyumluluk moduna zorla (yeniden başlatma gerekir)" +msgid "FreeCAD trackpad" +msgstr "" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Önden Görünüm" @@ -1873,6 +1922,10 @@ msgctxt "@action" msgid "Get started" msgstr "Başlayın" +msgctxt "@label" +msgid "Global" +msgstr "" + msgctxt "@title:tab" msgid "Global Settings" msgstr "Küresel Ayarlar" @@ -1922,6 +1975,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "Bağlı tüm yazıcıları gizle" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "Bu ayarı gizle" @@ -1998,6 +2055,10 @@ msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "Paketi kullanmak için Cura'yı yeniden başlatmanız gerekecek" +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "" + msgctxt "@label" msgid "Infill" msgstr "Dolgu" @@ -2701,6 +2762,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "Mevcut filtreyle başka sonuç bulunmadı" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "" + msgctxt "@label" msgid "No time estimation available" msgstr "Süre tahmini yok" @@ -2802,6 +2867,10 @@ msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Aynı anda yalnızca bir G-code dosyası yüklenebilir. {0} içe aktarma atlandı" +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "" + msgctxt "@action:button" msgid "Open" msgstr "Aç" @@ -2830,10 +2899,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "Proje Dosyası Aç" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "" + msgctxt "@action:label" msgid "Open With" msgstr "Birlikte Aç" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "" + msgctxt "@action:button" msgid "Open as project" msgstr "Proje olarak aç" @@ -3050,6 +3131,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "UltiMaker Cura Enterprise için onaylı eklenti ve malzemeleri almak için lütfen oturum açın" +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "" + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "Lütfen baskıya başlamadan önce malzeme profillerini yazıcılarınızla senkronize edin." @@ -3146,6 +3231,14 @@ msgctxt "@action:button" msgid "Print" msgstr "Yazdır" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Sonra Yazdır" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Önce Yazdır" + msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -3452,8 +3545,8 @@ msgid "Provides support for reading model files." msgstr "Model dosyalarını okuma desteği sağlar." msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "3MF dosyalarının yazılması için destek sağlar." +msgid "Provides support for writing 3MF and UCP files." +msgstr "" msgctxt "description" msgid "Provides support for writing MakerBot Format Packages." @@ -3697,8 +3790,12 @@ msgid "Save Cura project" msgstr "Cura projesini kaydet" msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "Cura projesini kaydet ve dosyayı yazdır" +msgid "Save Cura project and .makerbot print file" +msgstr "" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" +msgstr "" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3724,6 +3821,10 @@ msgctxt "@button" msgid "Save new profile" msgstr "Yeni profil kaydet" +msgctxt "@action:button" +msgid "Save project" +msgstr "" + msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr ".umm dosyasını bir USB çubuğa kaydedin." @@ -3827,6 +3928,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "Çökme raporunu UltiMaker’a gönder" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "" + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "" + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "" + msgctxt "@action:button" msgid "Send report" msgstr "Rapor gönder" @@ -3879,6 +3992,10 @@ msgctxt "@title:tab" msgid "Settings" msgstr "Ayarlar" +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "Ayarlar, ekstrüderlerin mevcut kullanılabilirliğine uyacak şekilde değiştirildi:" @@ -3947,6 +4064,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "Masaüstünden veya harici uygulamalardan açılan dosyalar aynı Cura örneğinde mi açılacak?" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "" + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "Cura'nın tek örneğinde yeni bir model yüklenmeden önce yapı plakası temizlensin mi?" @@ -4003,6 +4124,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Ayrıntılı çökme raporu göster" +msgctxt "@action:button" +msgid "Show settings" +msgstr "" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Projeyi kaydederken özet iletişim kutusunu göster" @@ -4079,10 +4204,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "Dilimleme başarısız" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "Dilimleme işlemi beklenmeyen bir hatayla başarısız oldu. Lütfen sorun izleyicimizde hata bildirmeyi düşünün." - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Dilimleniyor..." @@ -4091,6 +4212,10 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Düzeltme" +msgctxt "@label" +msgid "Solid" +msgstr "" + msgctxt "name" msgid "Solid View" msgstr "Gerçek Görünüm" @@ -4216,10 +4341,26 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "{0} profili başarıyla içe aktarıldı." +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Özet - Cura Projesi" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "" + msgctxt "@label" msgid "Support" msgstr "Destek" @@ -4599,6 +4740,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "%1 tanınmadığından bu yapılandırma kullanılamaz. Doğru malzeme profilini indirmek için lütfen %2 bölümünü ziyaret edin." +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "Bu bir Cura proje dosyasıdır. Bir proje olarak açmak mı yoksa içindeki modelleri içe aktarmak mı istiyorsunuz?" @@ -4688,6 +4833,14 @@ msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Bu ayar, çakışan ekstrüdere özgü değerlerden çözümlenir:" +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "" + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "" + msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" msgstr "Bu sürüm üretimde kullanıma yönelik değildir. Herhangi bir sorunla karşılaşırsanız, lütfen tam sürümü {self.getVersion()} belirterek GitHub sayfamıza bildirin." @@ -4919,6 +5072,11 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Yeni bir oturum açma işlemi başlatılamıyor. Başka bir aktif oturum açma girişimi olup olmadığını kontrol edin." +#, python-brace-format +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "" + msgctxt "@label:status" msgid "Unavailable" msgstr "Mevcut değil" @@ -4931,14 +5089,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Model Grubunu Çöz" -msgctxt "@action:inmenu menubar:edit" -msgid "Print Before" -msgstr "Önce Yazdır" - -msgctxt "@action:inmenu menubar:edit" -msgid "Print After" -msgstr "Sonra Yazdır" - msgctxt "@button" msgid "Uninstall" msgstr "Kaldır" @@ -4947,6 +5097,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Birim" +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "" + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "Evrensel yapı sistemi yapılandırması" @@ -5136,6 +5290,10 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." msgstr "Cura 5.4'ten Cura 5.5'e yükseltme yapılandırmaları" +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "" + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Özel Aygıt Yazılımı Yükle" @@ -5168,6 +5326,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "Kullanım kütüphanesi, Voronoi oluşturma dâhil" +msgctxt "@title:column" +msgid "Value" +msgstr "" + msgctxt "name" msgid "Version Upgrade 2.1 to 2.2" msgstr "2.1’den 2.2’ye Sürüm Yükseltme" @@ -5272,6 +5434,10 @@ msgctxt "name" msgid "Version Upgrade 5.4 to 5.5" msgstr "5.4'ten 5.5'e Sürüm Yükseltme" +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Yazıcıları Digital Factory’de görüntüleyin" @@ -5349,6 +5515,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "Hangi yazıcıyı kurmak istersiniz?" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "Ne tür bir kamera oluşturma işlemi kullanılmalıdır?" @@ -5565,6 +5735,10 @@ msgctxt "@label" msgid "mm" msgstr "mm" +msgctxt "@label" +msgid "s" +msgstr "" + msgctxt "@info:status" msgid "today" msgstr "bugün" @@ -5592,3 +5766,15 @@ msgstr "{} eklenti indirilemedi" #~ msgid "Provides support for exporting Cura profiles." #~ msgstr "Cura profillerinin dışa aktarımı için destek sağlar." + +#~ msgctxt "description" +#~ msgid "Provides support for writing 3MF files." +#~ msgstr "3MF dosyalarının yazılması için destek sağlar." + +#~ msgctxt "@option" +#~ msgid "Save Cura project and print file" +#~ msgstr "Cura projesini kaydet ve dosyayı yazdır" + +#~ msgctxt "@message" +#~ msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +#~ msgstr "Dilimleme işlemi beklenmeyen bir hatayla başarısız oldu. Lütfen sorun izleyicimizde hata bildirmeyi düşünün." diff --git a/resources/i18n/tr_TR/fdmextruder.def.json.po b/resources/i18n/tr_TR/fdmextruder.def.json.po index 3fe29072e87..a79f169d345 100644 --- a/resources/i18n/tr_TR/fdmextruder.def.json.po +++ b/resources/i18n/tr_TR/fdmextruder.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-06-08 16:32+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -40,6 +40,10 @@ msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "Ekstruder G-Code'u Sonlandırma" +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "" + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Ekstruderin Mutlak Bitiş Konumu" @@ -72,6 +76,10 @@ msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "Ekstruder G-Code'u Başlatma" +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "" + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Ekstruderin Mutlak Başlangıç Konumu" @@ -156,6 +164,14 @@ msgctxt "machine_extruder_cooling_fan_number description" msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." msgstr "Bu ekstrüdere bağlı yazıcı soğutma fanı sayısı. Yalnızca her bir ekstrüder için farklı yazıcı soğutma fanınız varsa bunu 0 varsayılan değeri olarak değiştirin." +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "" + msgctxt "machine_extruder_end_pos_x description" msgid "The x-coordinate of the ending position when turning the extruder off." msgstr "Ekstruder kapatılırken bitiş konumunun x koordinatı." diff --git a/resources/i18n/tr_TR/fdmprinter.def.json.po b/resources/i18n/tr_TR/fdmprinter.def.json.po index 0e11895512d..5f22acc7253 100644 --- a/resources/i18n/tr_TR/fdmprinter.def.json.po +++ b/resources/i18n/tr_TR/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,6 +12,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "" + +msgctxt "brim_inside_margin description" +msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." +msgstr "" + msgctxt "ironing_inset description" msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." msgstr "Modelin kenarlarından bırakılması gereken mesafe. Ağın kenarlarına kadar ütülemek baskınızın kenarlarının pürüzlü olmasına neden olabilir." @@ -56,10 +64,6 @@ msgctxt "machine_disallowed_areas description" msgid "A list of polygons with areas the print head is not allowed to enter." msgstr "Yazıcı başlığının giremediği alanları olan poligon listesi." -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "Bir başka parçanın içine tamamen kapatılmış bir parça, diğer parçanın içine temas eden bir dış kenar oluşturabilir. Bu, iç deliklerden bu mesafe içindeki tüm kenarları kaldırır." - msgctxt "support_tree_branch_reach_limit description" msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " msgstr "Dalların destekledikleri noktalardan ne kadar uzağa hareket edebileceğine dair bir tavsiye. Dallar hedeflerine (yapı levhası veya modelin düz bir parçası) ulaşmak için bu değeri ihlal edebilir. Bu değeri düşürmek, desteği daha sağlam hale getirecek, ancak dal miktarını (ve bu nedenle, malzeme kullanımı/baskı süresini) artıracaktır" @@ -152,6 +156,10 @@ msgctxt "resolution description" msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" msgstr "Yazdırma çözünürlüğünü etkileyen tüm ayarlar. Bu ayarların (ve yazdırma süresinin) kalite üzerinde büyük bir etkisi vardır" +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "" + msgctxt "alternate_extra_perimeter label" msgid "Alternate Extra Wall" msgstr "Alternatif Ek Duvar" @@ -400,21 +408,21 @@ msgctxt "adhesion_type option brim" msgid "Brim" msgstr "Kenar" +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "" + msgctxt "brim_gap label" msgid "Brim Distance" msgstr "Uç Mesafesi" -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "Kenar İçi Kaçınma Payı" - msgctxt "brim_line_count label" msgid "Brim Line Count" msgstr "Kenar Hattı Sayısı" -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Sadece Dış Kısımdaki Kenar" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "" msgctxt "brim_replaces_support label" msgid "Brim Replaces Support" @@ -456,6 +464,14 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "Yapı Disk Bölümü Sıcaklığı" +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "" + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "" + msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." msgstr "Bu ayarı etkinleştirmeniz, modelinizde olmasa bile prime tower'ınıza bir brim kazandırır. Eğer yüksek bir kule için daha sağlam bir taban istiyorsanız, taban yüksekliğini artırabilirsiniz." @@ -868,6 +884,10 @@ msgctxt "cool_fan_enabled label" msgid "Enable Print Cooling" msgstr "Yazdırma Soğutmayı Etkinleştir" +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "" + msgctxt "retraction_enable label" msgid "Enable Retraction" msgstr "Geri Çekmeyi Etkinleştir" @@ -900,6 +920,10 @@ msgctxt "ooze_shield_enabled description" msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." msgstr "Dış sızdırma kalkanını etkinleştirir. Modelin etrafında, ilk nozül ile aynı yükseklikte olması halinde ikinci bir nozülü temizleyebilecek olan bir kalkan oluşturacaktır." +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "" + msgctxt "small_skin_on_surface description" msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." msgstr "En üstteki yüzey alanı katmanındaki (havaya maruz kalan) küçük (\"Küçük Üst/Alt Genişliği\"ne kadar) bölgeleri varsayılan desen yerine duvarlarla dolduran ayarı etkinleştirin." @@ -932,6 +956,10 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "İlgili alan üzerinde destek olsa bile kenarı modelin çevresine yazdırmaya zorlayın. Desteğin ilk katmanının bazı alanlarını kenar alanları ile değiştirir." +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "" + msgctxt "support_type option everywhere" msgid "Everywhere" msgstr "Her bölüm" @@ -1036,6 +1064,10 @@ msgctxt "speed_equalize_flow_width_factor label" msgid "Flow Equalization Ratio" msgstr "Akış Eşitleme Oranı" +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "" + msgctxt "flow_rate_extrusion_offset_factor label" msgid "Flow Rate Compensation Factor" msgstr "Akış hızı dengeleme çarpanı" @@ -1048,6 +1080,10 @@ msgctxt "material_flow_temp_graph label" msgid "Flow Temperature Graph" msgstr "Akış Sıcaklık Grafiği" +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "" + msgctxt "material_flow_layer_0 description" msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." msgstr "İlk katman için akış dengelemesi: ilk katmana ekstrude edilen malzeme miktarı bu değerle çarpılır." @@ -1440,10 +1476,22 @@ msgctxt "wall_transition_filter_distance description" msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." msgstr "Farklı sayıda duvar arasında arka arkaya hızlıca ileri geri geçiş yapılacaksa duvarlar arasında geçiş yapmayın. Duvarlar bir arada bu mesafeden daha yakındaysa geçişleri kaldırın." +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "Radye etkinleştirildiğinde, ayrıca radye verilen model etrafındaki ek radye alanıdır. Bu boşluğu artırmak, daha fazla malzeme kullanırken ve yazdırma için daha az alan bırakırken daha sağlam bir radye oluşturacaktır." +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "meshfix_union_all description" msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." msgstr "Bir örgü içinde çakışan hacimlerden kaynaklanan iç geometriyi yok sayın ve hacimleri tek bir hacim olarak yazdırın. Bu durum, istenmeyen iç boşlukların kaybolmasını sağlar." @@ -1672,6 +1720,10 @@ msgctxt "wall_0_inset description" msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." msgstr "Dış duvar yoluna uygulanan ilave. Dış duvar nozülden küçükse ve iç duvardan sonra yazdırılmışsa, nozüldeki deliği modelin dış kısmı yerine iç duvarlar ile üst üste bindirmek için bu ofseti kullanın." +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "" + msgctxt "inset_direction option inside_out" msgid "Inside To Outside" msgstr "İçten Dışa" @@ -1684,6 +1736,10 @@ msgctxt "support_interface_priority option interface_area_overwrite_support_area msgid "Interface preferred" msgstr "Tercih edilen arayüz" +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "" + msgctxt "interlocking_beam_layer_count label" msgid "Interlocking Beam Layer Count" msgstr "İç İçe Geçen Kiriş Katman Sayısı" @@ -1824,6 +1880,30 @@ msgctxt "support_tree_limit_branch_reach description" msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" msgstr "Her dalın desteklediği noktadan ne kadar uzağa gitmesi gerektiğini sınırlayın. Bu sınırlama, desteği daha sağlam hale getirebilir, ancak dalların miktarını (ve bu nedenle, malzeme kullanımı/baskı süresini) artıracaktır" +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "" + msgctxt "cutting_mesh description" msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." msgstr "Bu örgünün hacmini diğer örgülere göre sınırlandırın. Bir örgünün belirli alanlarını farklı ayarlarla ve tamamen farklı bir ekstrüder ile yazdırmak için bunu kullanabilirsiniz." @@ -1921,8 +2001,10 @@ msgid "Make the extruder prime position absolute rather than relative to the las msgstr "Ekstruder ilk konumunu, yazıcı başlığının son konumuna göre ayarlamak yerine mutlak olarak ayarlayın." msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "Hava boşluğundaki filaman kaybını telafi etmek için Z yönünde modelin ilk ve ikinci katmanını çakıştırın. İlk model katmanının üstündeki tüm modeller bu miktara indirilecektir." +msgid "" +"Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" +"It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "" msgctxt "meshfix description" msgid "Make the meshes more suited for 3D printing." @@ -1948,10 +2030,18 @@ msgctxt "material label" msgid "Material" msgstr "Malzeme" +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "" + msgctxt "material_guid label" msgid "Material GUID" msgstr "GUID malzeme" +msgctxt "material_type label" +msgid "Material Type" +msgstr "" + msgctxt "max_extrusion_before_wipe label" msgid "Material Volume Between Wipes" msgstr "Sürme Hareketleri Arasındaki Malzeme Hacmi" @@ -2228,6 +2318,10 @@ msgctxt "ironing_monotonic label" msgid "Monotonic Ironing Order" msgstr "Monotonik Ütüleme Düzeni" +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "" + msgctxt "roofing_monotonic label" msgid "Monotonic Top Surface Order" msgstr "Monotonik Üst Yüzey Düzeni" @@ -2268,6 +2362,10 @@ msgctxt "magic_mesh_surface_mode option normal" msgid "Normal" msgstr "Normal" +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "" + msgctxt "support_structure option normal" msgid "Normal" msgstr "Normal" @@ -2400,10 +2498,6 @@ msgctxt "ironing_only_highest_layer description" msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." msgstr "Ütüleme işlemini bileşimin sadece en son katmanı üzerinde gerçekleştirin. Bu, alt katmanlarda pürüzsüz bir yüzey tesviyesine gerek olmadığı durumlarda zaman kazandırır." -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Sadece modelin dış kısmındaki kenarı yazdırır. Yatak yapışmasını büyük oranda azaltmasa da daha sonra kaldırmanız gereken kenar sayısını azaltır." - msgctxt "ooze_shield_angle label" msgid "Ooze Shield Angle" msgstr "Sızdırma Kalkanı Açısı" @@ -2464,6 +2558,10 @@ msgctxt "group_outer_walls description" msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." msgstr "Aynı katman içindeki farklı adalardaki dış duvarlar sırayla basılır. Etkinleştirildiğinde, akış değişiklik miktarı duvarlar tür türüne basıldığı için sınırlıdır, devre dışı bırakıldığında ise aynı adalardaki duvarlar gruplandığı için adalar arasındaki seyahat sayısı azalır." +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "" + msgctxt "inset_direction option outside_in" msgid "Outside To Inside" msgstr "Dıştan İçe" @@ -2544,6 +2642,10 @@ msgctxt "prime_tower_line_width label" msgid "Prime Tower Line Width" msgstr "İlk Direk Hattı Genişliği" +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "" + msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" msgstr "İlk Direğin Minimum Hacmi" @@ -2560,6 +2662,10 @@ msgctxt "speed_prime_tower label" msgid "Prime Tower Speed" msgstr "İlk Direk Hızı" +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "" + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "İlk Direk X Konumu" @@ -2576,18 +2682,14 @@ msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Yazdırma İvmesi Değişimi" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "" + msgctxt "print_sequence label" msgid "Print Sequence" msgstr "Yazdırma Dizisi" -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "Baskı Sırasını Manuel Olarak Ayarla" - -msgctxt "user_defined_print_order_enabled description" -msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." -msgstr "Nesne listesini sıralayarak baskı sırasını manuel olarak ayarlamayı sağlar. Listeden ilk nesne ilk olarak basılacak." - msgctxt "speed_print label" msgid "Print Speed" msgstr "Yazdırma Hızı" @@ -2596,6 +2698,10 @@ msgctxt "fill_outline_gaps label" msgid "Print Thin Walls" msgstr "İnce Duvarları Yazdır" +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "" + msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "Malzemenin hazırlanmasına yardımcı olan yazıcının yanındaki direği her nozül değişiminden sonra yazdırın." @@ -2616,6 +2722,10 @@ msgctxt "fill_outline_gaps description" msgid "Print pieces of the model which are horizontally thinner than the nozzle size." msgstr "Yatay olarak nozül boyutundan daha ince olan model parçalarını yazdırır." +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "" + msgctxt "bridge_skin_speed_2 description" msgid "Print speed to use when printing the second bridge skin layer." msgstr "İkinci köprü yüzey alanı katmanı yazdırılırken kullanılacak yazdırma hızı." @@ -2624,6 +2734,14 @@ msgctxt "bridge_skin_speed_3 description" msgid "Print speed to use when printing the third bridge skin layer." msgstr "Üçüncü köprü yüzey alanı katmanı yazdırılırken kullanılacak yazdırma hızı." +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "" + msgctxt "infill_before_walls description" msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." msgstr "Duvarları yazdırmadan önce dolguyu yazdırın. Önce duvarları yazdırmak daha düzgün duvarlar oluşturabilir ama yazdırmayı olumsuz etkiler. Önce dolguyu yazdırmak duvarların daha sağlam olmasını sağlar, fakat dolgu şekli bazen yüzeyden görünebilir." @@ -2668,6 +2786,10 @@ msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "Radye Hava Boşluğu" +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "" + msgctxt "raft_base_extruder_nr label" msgid "Raft Base Extruder" msgstr "Radye Taban Ekstrüderi" @@ -2696,6 +2818,10 @@ msgctxt "raft_base_speed label" msgid "Raft Base Print Speed" msgstr "Radyenin Taban Yazdırma Hızı" +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "" + msgctxt "raft_base_thickness label" msgid "Raft Base Thickness" msgstr "Radye Taban Kalınlığı" @@ -2712,6 +2838,10 @@ msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" msgstr "Radye Fan Hızı" +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "" + msgctxt "raft_interface_extruder_nr label" msgid "Raft Middle Extruder" msgstr "Radye Orta Ekstrüderi" @@ -2740,6 +2870,10 @@ msgctxt "raft_interface_speed label" msgid "Raft Middle Print Speed" msgstr "Radyenin Orta Yazdırma Hızı" +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "" + msgctxt "raft_interface_line_spacing label" msgid "Raft Middle Spacing" msgstr "Radye Orta Boşluğu" @@ -2748,6 +2882,10 @@ msgctxt "raft_interface_thickness label" msgid "Raft Middle Thickness" msgstr "Radye Orta Kalınlığı" +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "" + msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" msgstr "Radye Yazdırma İvmesi" @@ -2764,6 +2902,10 @@ msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "Radye Düzeltme" +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "" + msgctxt "raft_surface_extruder_nr label" msgid "Raft Top Extruder" msgstr "Radye Üst Ekstrüderi" @@ -2796,10 +2938,22 @@ msgctxt "raft_surface_speed label" msgid "Raft Top Print Speed" msgstr "Radye Üst Yazdırma Hızı" +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "" + msgctxt "raft_surface_line_spacing label" msgid "Raft Top Spacing" msgstr "Radyenin Üst Boşluğu" +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "" + msgctxt "z_seam_type option random" msgid "Random" msgstr "Gelişigüzel" @@ -2852,10 +3006,22 @@ msgctxt "carve_multiple_volumes label" msgid "Remove Mesh Intersection" msgstr "Bileşim Kesişimini Kaldırın" +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "" + msgctxt "raft_remove_inside_corners label" msgid "Remove Raft Inside Corners" msgstr "Radye İç Köşelerini Kaldır" +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "" + msgctxt "carve_multiple_volumes description" msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." msgstr "Birden fazla bileşimin çakıştığı alanları kaldırın. Bu, birleştirilmiş ikili malzemeler çakıştığında kullanılabilir." @@ -2864,6 +3030,18 @@ msgctxt "remove_empty_first_layers description" msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." msgstr "Basılan ilk katmanın altındaki varsa boş katmanları kaldır. Bu ayarın devre dışı bırakılması, Dilimleme Toleransı Dışlayıcı veya Ortalayıcı olarak ayarlanmışsa, boş ilk katmanlar oluşmasına neden olabilir." +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "" + msgctxt "raft_remove_inside_corners description" msgid "Remove inside corners from the raft, causing the raft to become convex." msgstr "Radyenin iç köşelerini kaldırır ve radyenin dışbükey olmasına yol açar." @@ -2884,6 +3062,10 @@ msgctxt "skin_outline_count description" msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." msgstr "Üst/alt şeklin en dıştaki parçasını eş merkezli hatlar ile değiştirir. Bir veya iki hat kullanmak, dolgu malzemesinde başlayan tavanları geliştirir." +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "" + msgctxt "support_tree_rest_preference label" msgid "Rest Preference" msgstr "Yerleştirme Tercihi" @@ -2956,6 +3138,10 @@ msgctxt "z_seam_corner label" msgid "Seam Corner Preference" msgstr "Dikiş Köşesi Tercihi" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Baskı Sırasını Manuel Olarak Ayarla" + msgctxt "draft_shield_height_limitation description" msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." msgstr "Cereyan kalkanının yüksekliğini ayarlayın. Cereyan kalkanını model yüksekliğinde veya sınırlı yükseklikte yazdırmayı seçin." @@ -3356,10 +3542,6 @@ msgctxt "support_interface_priority label" msgid "Support Interface Priority" msgstr "Destek Arayüzü Önceliği" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Destek Arayüz Çözünürlüğü" - msgctxt "speed_support_interface label" msgid "Support Interface Speed" msgstr "Destek Arayüzü Hızı" @@ -3712,6 +3894,10 @@ msgctxt "magic_fuzzy_skin_point_dist description" msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." msgstr "Her bir hat dilimine tanıtılan rastgele noktalar arasındaki ortalama mesafe. Poligonların asıl noktalarının çıkarıldığını dikkate alın; bunun sonucunda yüksek pürüzsüzlük sonuçları çözünürlük azalmasıyla sonuçlanabilir. Bu değer, Belirsiz Dış Katman Kalınlığından yüksek olmalıdır." +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "" + msgctxt "machine_acceleration description" msgid "The default acceleration of print head movement." msgstr "Yazıcı başlığı hareketinin varsayılan ivmesi." @@ -4188,6 +4374,10 @@ msgctxt "jerk_travel description" msgid "The maximum instantaneous velocity change with which travel moves are made." msgstr "Hareket hamlelerinin yapıldığı maksimum anlık hız değişimi." +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "" + msgctxt "machine_max_feedrate_x description" msgid "The maximum speed for the motor of the X-direction." msgstr "X yönü motoru için maksimum hız." @@ -4300,6 +4490,18 @@ msgctxt "raft_base_wall_count description" msgid "The number of contours to print around the linear pattern in the base layer of the raft." msgstr "Radyenin taban katmanındaki doğrusal desen etrafına basılacak kontur sayısıdır." +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "" + msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "Kaplamanın kenarlarını destekleyen dolgu katmanının kalınlığı." @@ -4688,6 +4890,10 @@ msgctxt "machine_gcode_flavor description" msgid "The type of g-code to be generated." msgstr "Oluşturulacak g-code türü." +msgctxt "material_type description" +msgid "The type of material used." +msgstr "" + msgctxt "coasting_volume description" msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." msgstr "Aksi takdirde hacim sızdırılır. Bu değer, genellikle nozül çapının küpüne yakındır." @@ -4736,10 +4942,22 @@ msgctxt "bridge_wall_coast description" msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." msgstr "Bu, ekstruderin bir köprü duvarı başlamadan hemen önce taraması gereken mesafeyi kontrol eder. Köprü başlamadan önce tarama, nozüldeki basıncı azaltabilir ve daha düz bir köprü üretebilir." +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "Bu ayar, radye ana hattında yer alan iç köşelerin ne kadar yuvarlanacağını kontrol eder. İç köşeler, burada belirtilen değere eşit yarıçapa sahip yarım daire şeklinde yuvarlanır. Ayrıca bu ayar, söz konusu daireden daha küçük olan radye ana hattındaki delikleri ortadan kaldırır." +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "retraction_count_max description" msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." msgstr "Bu ayar, düşük ekstrüzyon mesafesi penceresinde oluşan ekstrüzyon sayısını sınırlandırır. Bu penceredeki geri çekmeler yok sayılacaktır. Filamanı düzleştirebildiği ve aşındırma sorunlarına yol açabileceği için aynı filaman parçası üzerinde tekrar tekrar geri çekme yapılmasını önler." @@ -5100,10 +5318,6 @@ msgctxt "wall_overhang_angle description" msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." msgstr "Bu açıdan daha yüksek çıkıntıya sahip duvarlar çıkıntılı duvar ayarları kullanılarak basılacaktır. Değer 90 ise hiçbir duvarda çıkıntı olmadığı varsayılacaktır. Destek ile desteklenen çıkıntılar da çıkıntı olarak değerlendirilmeyecektir." -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "Desteğin üstünde ve altında model bulunduğunda, kontrol sırasında verilen yükseklikte adımlar uygulayın. Daha yüksek değerler, destek arayüzü olması gereken yerlerde yazdırılacak normal destek oluştururken daha düşük değerler daha yavaş dilimler." - msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." msgstr "Bu ayar etkinleştirildiğinde, düzgün hareket planlayıcıları olan yazıcılar için takım yolları düzeltilir. Genel takım yolu yönünden sapan küçük hareketler, akışkan hareketlerini iyileştirmek için düzeltilir." @@ -5496,42 +5710,74 @@ msgctxt "travel description" msgid "travel" msgstr "hareket" -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Kademeli akış değişimindeki her adımın süresi" +#~ msgctxt "brim_inside_margin description" +#~ msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +#~ msgstr "Bir başka parçanın içine tamamen kapatılmış bir parça, diğer parçanın içine temas eden bir dış kenar oluşturabilir. Bu, iç deliklerden bu mesafe içindeki tüm kenarları kaldırır." + +#~ msgctxt "user_defined_print_order_enabled description" +#~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +#~ msgstr "Nesne listesini sıralayarak baskı sırasını manuel olarak ayarlamayı sağlar. Listeden ilk nesne ilk olarak basılacak." + +#~ msgctxt "brim_inside_margin label" +#~ msgid "Brim Inside Avoid Margin" +#~ msgstr "Kenar İçi Kaçınma Payı" + +#~ msgctxt "brim_outside_only label" +#~ msgid "Brim Only on Outside" +#~ msgstr "Sadece Dış Kısımdaki Kenar" + +#~ msgctxt "gradual_flow_discretisation_step_size description" +#~ msgid "Duration of each step in the gradual flow change" +#~ msgstr "Kademeli akış değişimindeki her adımın süresi" + +#~ msgctxt "gradual_flow_enabled description" +#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +#~ msgstr "Kademeli akış değişikliklerini etkinleştir. Bu ayar etkinleştirildiğinde, akış, hedef akışa doğru kademeli olarak artırılır/azaltılır. Bu, ekstruder motoru çalıştırıldığında/durdurulduğunda akışın hemen değişmediği, bowden tüplü yazıcılar için kullanışlı bir özelliktir." + +#~ msgctxt "reset_flow_duration description" +#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +#~ msgstr "Bu değerden daha uzun herhangi bir hareket için, malzeme akışı hedef akışına sıfırlanır" + +#~ msgctxt "gradual_flow_discretisation_step_size label" +#~ msgid "Gradual flow discretisation step size" +#~ msgstr "Kademeli akış ayrıştırma adım boyutu" + +#~ msgctxt "gradual_flow_enabled label" +#~ msgid "Gradual flow enabled" +#~ msgstr "Kademeli akış etkin" -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Kademeli akış değişikliklerini etkinleştir. Bu ayar etkinleştirildiğinde, akış, hedef akışa doğru kademeli olarak artırılır/azaltılır. Bu, ekstruder motoru çalıştırıldığında/durdurulduğunda akışın hemen değişmediği, bowden tüplü yazıcılar için kullanışlı bir özelliktir." +#~ msgctxt "max_flow_acceleration label" +#~ msgid "Gradual flow max acceleration" +#~ msgstr "Kademeli akış maksimum ivme" -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Bu değerden daha uzun herhangi bir hareket için, malzeme akışı hedef akışına sıfırlanır" +#~ msgctxt "layer_0_max_flow_acceleration label" +#~ msgid "Initial layer max flow acceleration" +#~ msgstr "İlk katman maksimum akış ivmesi" -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Kademeli akış ayrıştırma adım boyutu" +#~ msgctxt "layer_0_z_overlap description" +#~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +#~ msgstr "Hava boşluğundaki filaman kaybını telafi etmek için Z yönünde modelin ilk ve ikinci katmanını çakıştırın. İlk model katmanının üstündeki tüm modeller bu miktara indirilecektir." -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Kademeli akış etkin" +#~ msgctxt "max_flow_acceleration description" +#~ msgid "Maximum acceleration for gradual flow changes" +#~ msgstr "Kademeli akış değişiklikleri için maksimum ivme" -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Kademeli akış maksimum ivme" +#~ msgctxt "layer_0_max_flow_acceleration description" +#~ msgid "Minimum speed for gradual flow changes for the first layer" +#~ msgstr "İlk katmandaki kademeli akış değişiklikleri için minimum hız" -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "İlk katman maksimum akış ivmesi" +#~ msgctxt "brim_outside_only description" +#~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +#~ msgstr "Sadece modelin dış kısmındaki kenarı yazdırır. Yatak yapışmasını büyük oranda azaltmasa da daha sonra kaldırmanız gereken kenar sayısını azaltır." -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Kademeli akış değişiklikleri için maksimum ivme" +#~ msgctxt "reset_flow_duration label" +#~ msgid "Reset flow duration" +#~ msgstr "Akış süresini sıfırla" -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "İlk katmandaki kademeli akış değişiklikleri için minimum hız" +#~ msgctxt "support_interface_skip_height label" +#~ msgid "Support Interface Resolution" +#~ msgstr "Destek Arayüz Çözünürlüğü" -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Akış süresini sıfırla" +#~ msgctxt "support_interface_skip_height description" +#~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +#~ msgstr "Desteğin üstünde ve altında model bulunduğunda, kontrol sırasında verilen yükseklikte adımlar uygulayın. Daha yüksek değerler, destek arayüzü olması gereken yerlerde yazdırılacak normal destek oluştururken daha düşük değerler daha yavaş dilimler." diff --git a/resources/i18n/zh_CN/cura.po b/resources/i18n/zh_CN/cura.po index cf2ed81f9bb..13fa048673c 100644 --- a/resources/i18n/zh_CN/cura.po +++ b/resources/i18n/zh_CN/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-31 19:13+0100\n" +"POT-Creation-Date: 2024-03-11 12:52+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -115,6 +115,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "保存项目(&S)..." +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "" + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "设置(&S)" @@ -258,6 +262,10 @@ msgid "A cloud connection is not available for a printer" msgid_plural "A cloud connection is not available for some printers" msgstr[0] "某些打印机无云连接可用" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "" + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "正在进行打印在上一次打印完成之前,Cura 无法通过 USB 启动另一次打印。" @@ -492,10 +500,18 @@ msgctxt "@label" msgid "Anonymous" msgstr "匿名" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "应用框架" +msgctxt "@title:column" +msgid "Applies on" +msgstr "" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "将挤出器偏移量应用于 GCode" @@ -682,6 +698,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "已计算" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "摄像头渲染:" @@ -1412,6 +1432,10 @@ msgctxt "@label" msgid "Draft" msgstr "草稿" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "" + msgctxt "@action:button" msgid "Duplicate" msgstr "复制" @@ -1538,6 +1562,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "导出选择..." +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "" + msgctxt "@button" msgid "Export material archive" msgstr "导出材料存档" @@ -1571,10 +1599,23 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "挤出机的结束 G-code" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "挤出机的开始 G-code" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "" + +#, python-brace-format +msgctxt "@label" +msgid "Extruder {0}" +msgstr "" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "挤出机已禁用" @@ -1641,6 +1682,11 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "未能保存材料存档" +#, python-brace-format +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "" + msgctxt "@label:category menu label" msgid "Favorites" msgstr "收藏" @@ -1782,6 +1828,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "强制层视图兼容模式(需要重新启动)" +msgid "FreeCAD trackpad" +msgstr "" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "正视图" @@ -1870,6 +1919,10 @@ msgctxt "@action" msgid "Get started" msgstr "开始" +msgctxt "@label" +msgid "Global" +msgstr "" + msgctxt "@title:tab" msgid "Global Settings" msgstr "全局设置" @@ -1919,6 +1972,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "隐藏所有连接的打印机" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "隐藏此设置" @@ -1995,6 +2052,10 @@ msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "要使用该包,您需要重新启动 Cura" +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "" + msgctxt "@label" msgid "Infill" msgstr "填充" @@ -2696,6 +2757,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "当前筛选没有任何结果" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "" + msgctxt "@label" msgid "No time estimation available" msgstr "无可用时间估计" @@ -2797,6 +2862,10 @@ msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "一次只能加载一个 G-code 文件。{0} 已跳过导入" +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "" + msgctxt "@action:button" msgid "Open" msgstr "打开" @@ -2825,10 +2894,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "打开项目文件" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "" + msgctxt "@action:label" msgid "Open With" msgstr "打开方式" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "" + msgctxt "@action:button" msgid "Open as project" msgstr "作为项目打开" @@ -3044,6 +3125,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "请登录以获取经验证适用于 UltiMaker Cura Enterprise 的插件和材料" +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "" + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "请在开始打印之前将材料配置文件与您的打印机同步。" @@ -3140,6 +3225,14 @@ msgctxt "@action:button" msgid "Print" msgstr "打印" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "打印后" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "打印前" + msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -3444,8 +3537,8 @@ msgid "Provides support for reading model files." msgstr "提供对读取模型文件的支持。" msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "提供对写入 3MF 文件的支持。" +msgid "Provides support for writing 3MF and UCP files." +msgstr "" msgctxt "description" msgid "Provides support for writing MakerBot Format Packages." @@ -3689,8 +3782,12 @@ msgid "Save Cura project" msgstr "保存 Cura 项目" msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "保存 Cura 项目并打印文件" +msgid "Save Cura project and .makerbot print file" +msgstr "" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" +msgstr "" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3716,6 +3813,10 @@ msgctxt "@button" msgid "Save new profile" msgstr "保存新配置文件" +msgctxt "@action:button" +msgid "Save project" +msgstr "" + msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "将 .umm文件保存到 U 盘。" @@ -3819,6 +3920,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "向 UltiMaker 发送错误报告" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "" + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "" + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "" + msgctxt "@action:button" msgid "Send report" msgstr "发送报告" @@ -3871,6 +3984,10 @@ msgctxt "@title:tab" msgid "Settings" msgstr "设置" +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "已根据挤出机的当前可用性更改设置:" @@ -3939,6 +4056,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "应从桌面打开文件还是在同一 Cura 实例中打开外部应用程序?" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "" + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "是否应在清理构建板后再将新模型加载到单个 Cura 实例中?" @@ -3995,6 +4116,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "显示详细的错误报告" +msgctxt "@action:button" +msgid "Show settings" +msgstr "" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "保存项目时显示摘要对话框" @@ -4071,10 +4196,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "切片失败" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "发生意外错误,切片失败。请于问题跟踪器上报告错误。" - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "正在切片..." @@ -4083,6 +4204,10 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "平滑" +msgctxt "@label" +msgid "Solid" +msgstr "" + msgctxt "name" msgid "Solid View" msgstr "实体视图" @@ -4208,10 +4333,26 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "已成功导入配置文件 {0}。" +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "摘要 - Cura 项目" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "" + msgctxt "@label" msgid "Support" msgstr "支持" @@ -4589,6 +4730,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "此配置不可用,因为 %1 未被识别。请访问 %2 以下载正确的材料配置文件。" +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "这是一个 Cura 项目文件。您想将其作为一个项目打开还是从中导入模型?" @@ -4676,6 +4821,14 @@ msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "此设置与挤出器特定值不同:" +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "" + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "" + msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" msgstr "此版本不用作生产用途。如果您遇到任何问题,请在我们的 GitHub 页面报告,并注明完整版本 {self.getVersion()}" @@ -4907,6 +5060,11 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "无法开始新的登录过程。请检查是否仍在尝试进行另一登录。" +#, python-brace-format +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "" + msgctxt "@label:status" msgid "Unavailable" msgstr "不可用" @@ -4919,14 +5077,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "拆分模型" -msgctxt "@action:inmenu menubar:edit" -msgid "Print Before" -msgstr "打印前" - -msgctxt "@action:inmenu menubar:edit" -msgid "Print After" -msgstr "打印后" - msgctxt "@button" msgid "Uninstall" msgstr "卸载" @@ -4935,6 +5085,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "单位" +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "" + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "通用构建系统配置" @@ -5124,6 +5278,10 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." msgstr "将配置从 Cura 5.4 升级到 Cura 5.5。" +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "" + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "上传自定义固件" @@ -5156,6 +5314,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "实用程序库,包括 Voronoi 图生成" +msgctxt "@title:column" +msgid "Value" +msgstr "" + msgctxt "name" msgid "Version Upgrade 2.1 to 2.2" msgstr "版本自 2.1 升级到 2.2" @@ -5260,6 +5422,10 @@ msgctxt "name" msgid "Version Upgrade 5.4 to 5.5" msgstr "版本 5.4 升级到 5.5" +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "在 Digital Factory 中查看打印机" @@ -5337,6 +5503,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "您要设置什么打印机?" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "应使用哪种类型的摄像头进行渲染?" @@ -5550,6 +5720,10 @@ msgctxt "@label" msgid "mm" msgstr "mm" +msgctxt "@label" +msgid "s" +msgstr "" + msgctxt "@info:status" msgid "today" msgstr "今天" @@ -5577,3 +5751,15 @@ msgstr "{} 个插件下载失败" #~ msgid "Provides support for exporting Cura profiles." #~ msgstr "为导出 Cura 配置文件提供支持。" + +#~ msgctxt "description" +#~ msgid "Provides support for writing 3MF files." +#~ msgstr "提供对写入 3MF 文件的支持。" + +#~ msgctxt "@option" +#~ msgid "Save Cura project and print file" +#~ msgstr "保存 Cura 项目并打印文件" + +#~ msgctxt "@message" +#~ msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +#~ msgstr "发生意外错误,切片失败。请于问题跟踪器上报告错误。" diff --git a/resources/i18n/zh_CN/fdmextruder.def.json.po b/resources/i18n/zh_CN/fdmextruder.def.json.po index f7f4772e6f7..47b82afda86 100644 --- a/resources/i18n/zh_CN/fdmextruder.def.json.po +++ b/resources/i18n/zh_CN/fdmextruder.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-06-08 16:32+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -40,6 +40,10 @@ msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "挤出机的结束 G-code" +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "" + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "挤出机终点绝对位置" @@ -72,6 +76,10 @@ msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "挤出机的开始 G-code" +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "" + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "挤出机起点绝对位置" @@ -156,6 +164,14 @@ msgctxt "machine_extruder_cooling_fan_number description" msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." msgstr "打印冷却风扇的数量与该挤出机有关。仅在每个挤出机都对应不同的打印冷却风扇时,对默认值 0 进行更改。" +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "" + msgctxt "machine_extruder_end_pos_x description" msgid "The x-coordinate of the ending position when turning the extruder off." msgstr "关闭挤出机时的终止位置的 X 坐标。" diff --git a/resources/i18n/zh_CN/fdmprinter.def.json.po b/resources/i18n/zh_CN/fdmprinter.def.json.po index 46968320513..1f3813f4551 100644 --- a/resources/i18n/zh_CN/fdmprinter.def.json.po +++ b/resources/i18n/zh_CN/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,6 +12,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "" + +msgctxt "brim_inside_margin description" +msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." +msgstr "" + msgctxt "ironing_inset description" msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." msgstr "与模型边缘保持的距离。 一直熨平至网格的边缘可能导致打印品出现锯齿状边缘。" @@ -56,10 +64,6 @@ msgctxt "machine_disallowed_areas description" msgid "A list of polygons with areas the print head is not allowed to enter." msgstr "包含不允许打印头进入区域的多边形列表。" -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "一个零件完全封闭在另一个零件内部会生成与另一个零件内部相接触的边沿。这可从内孔移除此距离内的所有边沿。" - msgctxt "support_tree_branch_reach_limit description" msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " msgstr "建议分支离从其支撑点移动的距离。分支可以违反此值以到达其目的地(打印平台或模型的平面部分)。降低此值可以使支撑更坚固,但会增加分支数量(进而增加材料的使用/打印时间)" @@ -152,6 +156,10 @@ msgctxt "resolution description" msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" msgstr "影响打印分辨率的所有设置。 这些设置会对质量(和打印时间)产生显著影响" +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "" + msgctxt "alternate_extra_perimeter label" msgid "Alternate Extra Wall" msgstr "交替备用壁" @@ -400,21 +408,21 @@ msgctxt "adhesion_type option brim" msgid "Brim" msgstr "Brim" +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "" + msgctxt "brim_gap label" msgid "Brim Distance" msgstr "边沿距离" -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "修剪内部对象避免留白" - msgctxt "brim_line_count label" msgid "Brim Line Count" msgstr "Brim 走线计数" -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "仅在外部打印 Brim" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "" msgctxt "brim_replaces_support label" msgid "Brim Replaces Support" @@ -456,6 +464,14 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "打印体积温度" +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "" + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "" + msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." msgstr "启用此设置将为您的 prime tower 添加一个边缘,即使您的模型中原本没有。如果您希望高塔有更坚固的基座,可以增加底座高度。" @@ -868,6 +884,10 @@ msgctxt "cool_fan_enabled label" msgid "Enable Print Cooling" msgstr "开启打印冷却" +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "" + msgctxt "retraction_enable label" msgid "Enable Retraction" msgstr "启用回抽" @@ -900,6 +920,10 @@ msgctxt "ooze_shield_enabled description" msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." msgstr "启用外部渗出罩。 这将在模型周围创建一个外壳,如果与第一个喷嘴处于相同的高度,则可能会擦拭第二个喷嘴。" +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "" + msgctxt "small_skin_on_surface description" msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." msgstr "使最顶层蒙皮图层(暴露在空气中)的小区域(最多“小顶部/底部宽度”)用墙壁填充,而不是默认图案。" @@ -932,6 +956,10 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "强制围绕模型打印 Brim,即使该空间本该由支撑占据。此操作会将第一层的某些支撑区域替换为 Brim 区域。" +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "" + msgctxt "support_type option everywhere" msgid "Everywhere" msgstr "全部支撑" @@ -1036,6 +1064,10 @@ msgctxt "speed_equalize_flow_width_factor label" msgid "Flow Equalization Ratio" msgstr "流量均衡比" +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "" + msgctxt "flow_rate_extrusion_offset_factor label" msgid "Flow Rate Compensation Factor" msgstr "流量补偿因子" @@ -1048,6 +1080,10 @@ msgctxt "material_flow_temp_graph label" msgid "Flow Temperature Graph" msgstr "流量温度图" +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "" + msgctxt "material_flow_layer_0 description" msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." msgstr "第一层的流量补偿:起始层挤出的材料量乘以此值。" @@ -1440,10 +1476,22 @@ msgctxt "wall_transition_filter_distance description" msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." msgstr "如果要在不同数量的壁之间快速连续地来回过渡,那么根本不要过渡。如果这些过渡的距离之和小于此距离,则移除过渡。" +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "如果启用了 raft,则这是指也被提供了 raft 的模型周围的额外 raft 区域。 增加此留白将创建强度更大的 raft,但会使用更多材料,为打印品留下的空间更少。" +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "meshfix_union_all description" msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." msgstr "忽略由网格内的重叠体积产生的内部几何,并将多个部分作为一个打印。 这可能会导致意外的内部孔洞消失。" @@ -1672,6 +1720,10 @@ msgctxt "wall_0_inset description" msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." msgstr "应用在外壁路径上的嵌入。 如果外壁小于喷嘴,并且在内壁之后打印,则使用该偏移量来使喷嘴中的孔与内壁而不是模型外部重叠。" +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "" + msgctxt "inset_direction option inside_out" msgid "Inside To Outside" msgstr "从内到外" @@ -1684,6 +1736,10 @@ msgctxt "support_interface_priority option interface_area_overwrite_support_area msgid "Interface preferred" msgstr "偏好接触面" +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "" + msgctxt "interlocking_beam_layer_count label" msgid "Interlocking Beam Layer Count" msgstr "互锁梁层数" @@ -1824,6 +1880,30 @@ msgctxt "support_tree_limit_branch_reach description" msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" msgstr "限制每个分支从其支撑点移动的距离。这样可以使支撑更坚固,但会增加分支的数量(进而增加材料的使用/打印时间)" +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "" + msgctxt "cutting_mesh description" msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." msgstr "将此网格的体积限制在其他网格内。 您可以使用它来制作采用不同的设置以及完全不同的挤出机的网格打印的特定区域。" @@ -1921,8 +2001,10 @@ msgid "Make the extruder prime position absolute rather than relative to the las msgstr "使挤出机主要位置为绝对值,而不是与上一已知打印头位置的相对值。" msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "使模型的第一层和第二层在 Z 方向上重叠以补偿在空隙中损失的耗材。 第一个模型层上方的所有模型将向下移动此重叠量。" +msgid "" +"Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" +"It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "" msgctxt "meshfix description" msgid "Make the meshes more suited for 3D printing." @@ -1948,10 +2030,18 @@ msgctxt "material label" msgid "Material" msgstr "材料" +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "" + msgctxt "material_guid label" msgid "Material GUID" msgstr "材料 GUID" +msgctxt "material_type label" +msgid "Material Type" +msgstr "" + msgctxt "max_extrusion_before_wipe label" msgid "Material Volume Between Wipes" msgstr "擦拭之间的材料量" @@ -2228,6 +2318,10 @@ msgctxt "ironing_monotonic label" msgid "Monotonic Ironing Order" msgstr "单调熨平顺序" +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "" + msgctxt "roofing_monotonic label" msgid "Monotonic Top Surface Order" msgstr "单调顶部表面顺序" @@ -2268,6 +2362,10 @@ msgctxt "magic_mesh_surface_mode option normal" msgid "Normal" msgstr "正常" +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "" + msgctxt "support_structure option normal" msgid "Normal" msgstr "正常" @@ -2400,10 +2498,6 @@ msgctxt "ironing_only_highest_layer description" msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." msgstr "仅在网格的最后一层执行熨平。 如果较低的层不需要平滑的表面效果,这将节省时间。" -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "仅在模型外部打印 brim。 这会减少您之后需要移除的 brim 量,而不会过度影响热床附着。" - msgctxt "ooze_shield_angle label" msgid "Ooze Shield Angle" msgstr "渗出罩角度" @@ -2464,6 +2558,10 @@ msgctxt "group_outer_walls description" msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." msgstr "" +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "" + msgctxt "inset_direction option outside_in" msgid "Outside To Inside" msgstr "从外到内" @@ -2544,6 +2642,10 @@ msgctxt "prime_tower_line_width label" msgid "Prime Tower Line Width" msgstr "装填塔走线宽度" +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "" + msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" msgstr "装填塔最小体积" @@ -2560,6 +2662,10 @@ msgctxt "speed_prime_tower label" msgid "Prime Tower Speed" msgstr "装填塔速度" +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "" + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "装填塔 X 位置" @@ -2576,18 +2682,14 @@ msgctxt "jerk_print label" msgid "Print Jerk" msgstr "打印抖动速度" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "" + msgctxt "print_sequence label" msgid "Print Sequence" msgstr "打印序列" -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "手动设置打印顺序" - -msgctxt "user_defined_print_order_enabled description" -msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." -msgstr "允许对对象列表进行排序,以手动设置打印顺序。列表中的第一个对象将首先被打印。" - msgctxt "speed_print label" msgid "Print Speed" msgstr "打印速度" @@ -2596,6 +2698,10 @@ msgctxt "fill_outline_gaps label" msgid "Print Thin Walls" msgstr "打印薄壁" +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "" + msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "在打印品相邻处打印一个塔,用于在每个喷嘴切换后装填材料。" @@ -2616,6 +2722,10 @@ msgctxt "fill_outline_gaps description" msgid "Print pieces of the model which are horizontally thinner than the nozzle size." msgstr "打印在水平面上比喷嘴尺寸更薄的模型部件。" +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "" + msgctxt "bridge_skin_speed_2 description" msgid "Print speed to use when printing the second bridge skin layer." msgstr "打印桥梁第二层表面时使用的打印速度。" @@ -2624,6 +2734,14 @@ msgctxt "bridge_skin_speed_3 description" msgid "Print speed to use when printing the third bridge skin layer." msgstr "打印桥梁第三层表面时使用的打印速度。" +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "" + msgctxt "infill_before_walls description" msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." msgstr "打印壁前先打印填充物。 先打印壁可能产生更精确的壁,但悬垂打印质量会较差。 先打印填充会产生更牢固的壁,但有时候填充图案会透过表面显现出来。" @@ -2668,6 +2786,10 @@ msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "Raft 空隙" +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "" + msgctxt "raft_base_extruder_nr label" msgid "Raft Base Extruder" msgstr "Raft 底层挤出器" @@ -2696,6 +2818,10 @@ msgctxt "raft_base_speed label" msgid "Raft Base Print Speed" msgstr "Raft 基础打印速度" +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "" + msgctxt "raft_base_thickness label" msgid "Raft Base Thickness" msgstr "Raft 基础厚度" @@ -2712,6 +2838,10 @@ msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" msgstr "Raft 风扇速度" +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "" + msgctxt "raft_interface_extruder_nr label" msgid "Raft Middle Extruder" msgstr "Raft 中间挤出器" @@ -2740,6 +2870,10 @@ msgctxt "raft_interface_speed label" msgid "Raft Middle Print Speed" msgstr "Raft 中间打印速度" +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "" + msgctxt "raft_interface_line_spacing label" msgid "Raft Middle Spacing" msgstr "Raft 中间间距" @@ -2748,6 +2882,10 @@ msgctxt "raft_interface_thickness label" msgid "Raft Middle Thickness" msgstr "Raft 中间厚度" +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "" + msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" msgstr "Raft 打印加速度" @@ -2764,6 +2902,10 @@ msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "Raft 平滑度" +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "" + msgctxt "raft_surface_extruder_nr label" msgid "Raft Top Extruder" msgstr "Raft 顶层挤出器" @@ -2796,10 +2938,22 @@ msgctxt "raft_surface_speed label" msgid "Raft Top Print Speed" msgstr "Raft 顶部打印速度" +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "" + msgctxt "raft_surface_line_spacing label" msgid "Raft Top Spacing" msgstr "Raft 顶部间距" +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "" + msgctxt "z_seam_type option random" msgid "Random" msgstr "随机" @@ -2852,10 +3006,22 @@ msgctxt "carve_multiple_volumes label" msgid "Remove Mesh Intersection" msgstr "移除网格交叉" +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "" + msgctxt "raft_remove_inside_corners label" msgid "Remove Raft Inside Corners" msgstr "移除 Raft 内侧角" +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "" + msgctxt "carve_multiple_volumes description" msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." msgstr "移除多个网格互相重叠的区域。 如果合并的双材料模型彼此重叠,此选项可能适用。" @@ -2864,6 +3030,18 @@ msgctxt "remove_empty_first_layers description" msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." msgstr "移除第一个打印层下方的空白层(如果存在)。如果“切片公差”设置被设为“独占”或“中间”,禁用此设置可能导致空白第一层。" +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "" + msgctxt "raft_remove_inside_corners description" msgid "Remove inside corners from the raft, causing the raft to become convex." msgstr "从 Raft 上移除内侧角,这会使 Raft 变得凸出。" @@ -2884,6 +3062,10 @@ msgctxt "skin_outline_count description" msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." msgstr "用多个同心线代替顶部/底部图案的最外面部分。 使用一条或两条线改善从填充材料开始的顶板。" +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "" + msgctxt "support_tree_rest_preference label" msgid "Rest Preference" msgstr "停留偏好" @@ -2956,6 +3138,10 @@ msgctxt "z_seam_corner label" msgid "Seam Corner Preference" msgstr "缝隙角偏好设置" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "手动设置打印顺序" + msgctxt "draft_shield_height_limitation description" msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." msgstr "设置防风罩的高度。 选择在模型的完整高度或有限高度处打印防风罩。" @@ -3356,10 +3542,6 @@ msgctxt "support_interface_priority label" msgid "Support Interface Priority" msgstr "支撑接触面优先级" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "支撑接触面分辨率" - msgctxt "speed_support_interface label" msgid "Support Interface Speed" msgstr "支撑接触面速度" @@ -3712,6 +3894,10 @@ msgctxt "magic_fuzzy_skin_point_dist description" msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." msgstr "在每个走线部分引入的随机点之间的平均距离。 注意,多边形的原始点被舍弃,因此高平滑度导致分辨率降低。 该值必须大于模糊皮肤厚度的一半。" +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "" + msgctxt "machine_acceleration description" msgid "The default acceleration of print head movement." msgstr "打印头移动的默认加速度。" @@ -4188,6 +4374,10 @@ msgctxt "jerk_travel description" msgid "The maximum instantaneous velocity change with which travel moves are made." msgstr "进行空驶时的最大瞬时速度变化。" +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "" + msgctxt "machine_max_feedrate_x description" msgid "The maximum speed for the motor of the X-direction." msgstr "X 轴方向电机的最大速度。" @@ -4300,6 +4490,18 @@ msgctxt "raft_base_wall_count description" msgid "The number of contours to print around the linear pattern in the base layer of the raft." msgstr "在 Raft 的底板层中,围绕线型图案打印轮廓的次数。" +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "" + msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "支撑皮肤边缘的填充物的层数。" @@ -4688,6 +4890,10 @@ msgctxt "machine_gcode_flavor description" msgid "The type of g-code to be generated." msgstr "需要生成的 G-code 类型。" +msgctxt "material_type description" +msgid "The type of material used." +msgstr "" + msgctxt "coasting_volume description" msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." msgstr "该体积如不进行滑行则会渗出。 该值一般应接近喷嘴立方直径。" @@ -4736,10 +4942,22 @@ msgctxt "bridge_wall_coast description" msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." msgstr "此参数用于控制挤出机在开始打印桥壁前应该滑行的距离。在开始打印连桥之前滑行,可以降低喷嘴中的压力,并保证打印出平滑的连桥。" +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "该设置控制 Raft 轮廓中的内角呈圆形的程度。内向角被设置为半圆形,半径等于此处的值。此设置还会移除 raft 轮廓中小于此半圆形的孔。" +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "retraction_count_max description" msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." msgstr "此设置限制在最小挤出距离范围内发生的回抽数。 此范围内的额外回抽将会忽略。 这避免了在同一件耗材上重复回抽,从而导致耗材变扁并引起磨损问题。" @@ -5100,10 +5318,6 @@ msgctxt "wall_overhang_angle description" msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." msgstr "悬垂超过此角度的壁将使用悬垂壁设置打印。该值为 90 时,不会将任何壁视为悬垂。受到支撑支持的悬垂也不会被视为悬垂。" -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "在检查支撑上方或下方是否有模型时,采用指定高度的步阶。 值越低切片速度越慢,而较高的值会导致在部分应有支撑接触面的位置打印一般的支撑。" - msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." msgstr "当启用时,对具有平滑运动规划器的打印机进行刀具路径校正。对偏离一般刀具轨迹方向的小运动进行平滑,改善流体运动。" @@ -5496,42 +5710,74 @@ msgctxt "travel description" msgid "travel" msgstr "空驶" -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "渐变流量每一步的持续时间" +#~ msgctxt "brim_inside_margin description" +#~ msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +#~ msgstr "一个零件完全封闭在另一个零件内部会生成与另一个零件内部相接触的边沿。这可从内孔移除此距离内的所有边沿。" + +#~ msgctxt "user_defined_print_order_enabled description" +#~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +#~ msgstr "允许对对象列表进行排序,以手动设置打印顺序。列表中的第一个对象将首先被打印。" + +#~ msgctxt "brim_inside_margin label" +#~ msgid "Brim Inside Avoid Margin" +#~ msgstr "修剪内部对象避免留白" + +#~ msgctxt "brim_outside_only label" +#~ msgid "Brim Only on Outside" +#~ msgstr "仅在外部打印 Brim" + +#~ msgctxt "gradual_flow_discretisation_step_size description" +#~ msgid "Duration of each step in the gradual flow change" +#~ msgstr "渐变流量每一步的持续时间" + +#~ msgctxt "gradual_flow_enabled description" +#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +#~ msgstr "启用渐变流量。当启用时,流量逐渐增加/降低到目标流量。这对于有鲍登管的打印机很有用,当挤出机电机启动/停止时,流量不会立即改变。" + +#~ msgctxt "reset_flow_duration description" +#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +#~ msgstr "对于任何超过此值的行程移动,材料流量将重置为路径目标流量" + +#~ msgctxt "gradual_flow_discretisation_step_size label" +#~ msgid "Gradual flow discretisation step size" +#~ msgstr "渐变流量离散步长" + +#~ msgctxt "gradual_flow_enabled label" +#~ msgid "Gradual flow enabled" +#~ msgstr "渐变流量已启用" -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "启用渐变流量。当启用时,流量逐渐增加/降低到目标流量。这对于有鲍登管的打印机很有用,当挤出机电机启动/停止时,流量不会立即改变。" +#~ msgctxt "max_flow_acceleration label" +#~ msgid "Gradual flow max acceleration" +#~ msgstr "渐变流量最大加速度" -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "对于任何超过此值的行程移动,材料流量将重置为路径目标流量" +#~ msgctxt "layer_0_max_flow_acceleration label" +#~ msgid "Initial layer max flow acceleration" +#~ msgstr "初始层最大流量加速度" -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "渐变流量离散步长" +#~ msgctxt "layer_0_z_overlap description" +#~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +#~ msgstr "使模型的第一层和第二层在 Z 方向上重叠以补偿在空隙中损失的耗材。 第一个模型层上方的所有模型将向下移动此重叠量。" -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "渐变流量已启用" +#~ msgctxt "max_flow_acceleration description" +#~ msgid "Maximum acceleration for gradual flow changes" +#~ msgstr "渐变流量的最大加速度" -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "渐变流量最大加速度" +#~ msgctxt "layer_0_max_flow_acceleration description" +#~ msgid "Minimum speed for gradual flow changes for the first layer" +#~ msgstr "第一层渐变流量的最小速度" -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "初始层最大流量加速度" +#~ msgctxt "brim_outside_only description" +#~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +#~ msgstr "仅在模型外部打印 brim。 这会减少您之后需要移除的 brim 量,而不会过度影响热床附着。" -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "渐变流量的最大加速度" +#~ msgctxt "reset_flow_duration label" +#~ msgid "Reset flow duration" +#~ msgstr "重置流量持续时间" -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "第一层渐变流量的最小速度" +#~ msgctxt "support_interface_skip_height label" +#~ msgid "Support Interface Resolution" +#~ msgstr "支撑接触面分辨率" -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "重置流量持续时间" +#~ msgctxt "support_interface_skip_height description" +#~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +#~ msgstr "在检查支撑上方或下方是否有模型时,采用指定高度的步阶。 值越低切片速度越慢,而较高的值会导致在部分应有支撑接触面的位置打印一般的支撑。" diff --git a/resources/i18n/zh_TW/cura.po b/resources/i18n/zh_TW/cura.po index 741bde1d143..cc09d840ce7 100644 --- a/resources/i18n/zh_TW/cura.po +++ b/resources/i18n/zh_TW/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-31 19:13+0100\n" +"POT-Creation-Date: 2024-03-11 12:52+0100\n" "PO-Revision-Date: 2022-01-02 19:59+0800\n" "Last-Translator: Valen Chang \n" "Language-Team: Valen Chang \n" @@ -121,6 +121,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "儲存專案...(&S)" +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "" + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "設定(&S)" @@ -264,6 +268,10 @@ msgid "A cloud connection is not available for a printer" msgid_plural "A cloud connection is not available for some printers" msgstr[0] "印表機無法使用雲端連接" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "" + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "列印仍在進行中。列印完成前,Cura 無法透過 USB 開始另一次列印。" @@ -498,10 +506,18 @@ msgctxt "@label" msgid "Anonymous" msgstr "匿名" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "應用框架" +msgctxt "@title:column" +msgid "Applies on" +msgstr "" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "將擠出機偏移設定至Gcode" @@ -688,6 +704,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "已計算" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "攝影機渲染:" @@ -1412,6 +1432,10 @@ msgctxt "@label" msgid "Draft" msgstr "草稿" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "" + msgctxt "@action:button" msgid "Duplicate" msgstr "複製" @@ -1538,6 +1562,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "匯出選擇..." +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "" + msgctxt "@button" msgid "Export material archive" msgstr "輸出線材設定存檔" @@ -1571,10 +1599,23 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "擠出機結束 G-code" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "擠出機起始 G-code" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "" + +#, python-brace-format +msgctxt "@label" +msgid "Extruder {0}" +msgstr "" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "擠出機已停用" @@ -1641,6 +1682,11 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "線材資料儲存失敗" +#, python-brace-format +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "" + msgctxt "@label:category menu label" msgid "Favorites" msgstr "常用" @@ -1782,6 +1828,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "強制分層檢視相容模式(需要重新啟動)" +msgid "FreeCAD trackpad" +msgstr "" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "前視圖" @@ -1870,6 +1919,10 @@ msgctxt "@action" msgid "Get started" msgstr "開始" +msgctxt "@label" +msgid "Global" +msgstr "" + msgctxt "@title:tab" msgid "Global Settings" msgstr "全局設定" @@ -1919,6 +1972,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "隱藏此設定" @@ -1995,6 +2052,10 @@ msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "" +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "" + msgctxt "@label" msgid "Infill" msgstr "填充" @@ -2697,6 +2758,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "" + msgctxt "@label" msgid "No time estimation available" msgstr "沒有時間估計" @@ -2798,6 +2863,10 @@ msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "一次只能載入一個 G-code 檔案。{0} 已跳過匯入" +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "" + msgctxt "@action:button" msgid "Open" msgstr "開啟" @@ -2826,10 +2895,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "開啟專案檔案" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "" + msgctxt "@action:label" msgid "Open With" msgstr "" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "" + msgctxt "@action:button" msgid "Open as project" msgstr "作為專案開啟" @@ -3045,6 +3126,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "請登入以取得 UltiMaker Cura Enterprise 驗証的外掛及線材" +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "" + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "再列印前請先同步線材資料." @@ -3141,6 +3226,14 @@ msgctxt "@action:button" msgid "Print" msgstr "列印" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "列印後" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "列印前" + msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -3445,8 +3538,8 @@ msgid "Provides support for reading model files." msgstr "提供讀取模型檔案的支援。" msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "提供寫入 3MF 檔案的支援。" +msgid "Provides support for writing 3MF and UCP files." +msgstr "" msgctxt "description" msgid "Provides support for writing MakerBot Format Packages." @@ -3690,7 +3783,11 @@ msgid "Save Cura project" msgstr "" msgctxt "@option" -msgid "Save Cura project and print file" +msgid "Save Cura project and .makerbot print file" +msgstr "" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" msgstr "" msgctxt "@title:window" @@ -3717,6 +3814,10 @@ msgctxt "@button" msgid "Save new profile" msgstr "" +msgctxt "@action:button" +msgid "Save project" +msgstr "" + msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "將 .umm 的文件儲存至USB." @@ -3820,6 +3921,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "傳送錯誤報告給 UltiMaker" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "" + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "" + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "" + msgctxt "@action:button" msgid "Send report" msgstr "送出報告" @@ -3872,6 +3985,10 @@ msgctxt "@title:tab" msgid "Settings" msgstr "設定" +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "設定已被更改為符合目前擠出機:" @@ -3940,6 +4057,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "從桌面或外部程式開啟檔案時,使用同一 Cura 視窗嗎?" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "" + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "需要再載入新模型前清空視窗內之列印平台嗎?" @@ -3996,6 +4117,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "顯示詳細的錯誤報告" +msgctxt "@action:button" +msgid "Show settings" +msgstr "" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "儲存專案時顯示摘要對話框" @@ -4072,10 +4197,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "切片失敗" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "未知問題使切片失敗. 請考慮在我們的問題追蹤器內回報問題." - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "正在切片..." @@ -4084,6 +4205,10 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "平滑" +msgctxt "@label" +msgid "Solid" +msgstr "" + msgctxt "name" msgid "Solid View" msgstr "實體檢視" @@ -4209,10 +4334,26 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "已成功匯入列印參數 {0}。" +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "摘要 - Cura 專案" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "" + msgctxt "@label" msgid "Support" msgstr "支撐" @@ -4583,6 +4724,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "由於無法識別 %1,因此無法使用此設定。 請連上 %2 下載正確的線材參數設定。" +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "這是一個 Cura 專案檔案。你想將其作為一個專案開啟還是從中匯入模型?" @@ -4670,6 +4815,14 @@ msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "此設定是透過解決擠出機設定值衝突獲得:" +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "" + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "" + msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" msgstr "" @@ -4899,6 +5052,11 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "無法開始新的登入程序。檢查是否有其他登入仍在進行中。" +#, python-brace-format +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "" + msgctxt "@label:status" msgid "Unavailable" msgstr "無法使用" @@ -4911,14 +5069,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "取消模型群組" -msgctxt "@action:inmenu menubar:edit" -msgid "Print Before" -msgstr "列印前" - -msgctxt "@action:inmenu menubar:edit" -msgid "Print After" -msgstr "列印後" - msgctxt "@button" msgid "Uninstall" msgstr "" @@ -4927,6 +5077,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "" +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "" + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "" @@ -5116,6 +5270,10 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." msgstr "" +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "" + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "上傳自訂韌體" @@ -5148,6 +5306,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "" +msgctxt "@title:column" +msgid "Value" +msgstr "" + msgctxt "name" msgid "Version Upgrade 2.1 to 2.2" msgstr "升級版本 2.1 到 2.2" @@ -5252,6 +5414,10 @@ msgctxt "name" msgid "Version Upgrade 5.4 to 5.5" msgstr "" +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "" @@ -5329,6 +5495,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "使用哪種類型的攝影機渲染?" @@ -5539,6 +5709,10 @@ msgctxt "@label" msgid "mm" msgstr "mm" +msgctxt "@label" +msgid "s" +msgstr "" + msgctxt "@info:status" msgid "today" msgstr "今天" @@ -7628,6 +7802,10 @@ msgstr "下載外掛 {} 失敗" #~ msgid "Provides machine actions for UltiMaker machines (such as bed leveling wizard, selecting upgrades, etc)" #~ msgstr "提供 UltiMaker 印表機專屬功能(如平台調平精靈、選擇升級等)" +#~ msgctxt "description" +#~ msgid "Provides support for writing 3MF files." +#~ msgstr "提供寫入 3MF 檔案的支援。" + #~ msgctxt "description" #~ msgid "Provides support for writing X3G files" #~ msgstr "提供寫入 X3G 檔案的支援" @@ -7914,6 +8092,10 @@ msgstr "下載外掛 {} 失敗" #~ msgid "Slice current printjob" #~ msgstr "對目前列印工作進行切片" +#~ msgctxt "@message" +#~ msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +#~ msgstr "未知問題使切片失敗. 請考慮在我們的問題追蹤器內回報問題." + #~ msgctxt "@label:PrintjobStatus" #~ msgid "Slicing unavailable" #~ msgstr "切片無法使用" diff --git a/resources/i18n/zh_TW/fdmextruder.def.json.po b/resources/i18n/zh_TW/fdmextruder.def.json.po index cec44fd115e..82d1aa57244 100644 --- a/resources/i18n/zh_TW/fdmextruder.def.json.po +++ b/resources/i18n/zh_TW/fdmextruder.def.json.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-06-08 16:32+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: 2022-01-02 19:59+0800\n" "Last-Translator: Valen Chang \n" "Language-Team: Valen Chang \n" @@ -45,6 +45,10 @@ msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "擠出機結束 Gcode" +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "" + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "擠出機終點絕對位置" @@ -77,6 +81,10 @@ msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "擠出機起始 G-code" +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "" + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "擠出機起點絕對位置" @@ -161,6 +169,14 @@ msgctxt "machine_extruder_cooling_fan_number description" msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." msgstr "與此擠出機關聯的列印冷卻風扇的數量。只有當每個擠出機的列印冷卻風扇數量不同時,才需更改此值為正確數量,否則保持預設值 0 即可。" +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "" + msgctxt "machine_extruder_end_pos_x description" msgid "The x-coordinate of the ending position when turning the extruder off." msgstr "關閉擠出機時的終止位置的 X 座標。" diff --git a/resources/i18n/zh_TW/fdmprinter.def.json.po b/resources/i18n/zh_TW/fdmprinter.def.json.po index aa02299fc12..be8a1cf103d 100644 --- a/resources/i18n/zh_TW/fdmprinter.def.json.po +++ b/resources/i18n/zh_TW/fdmprinter.def.json.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-11-24 12:51+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: 2022-01-02 20:24+0800\n" "Last-Translator: Valen Chang \n" "Language-Team: Valen Chang \n" @@ -17,6 +17,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.0\n" +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "" + +msgctxt "brim_inside_margin description" +msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." +msgstr "" + msgctxt "ironing_inset description" msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." msgstr "與模型邊緣保持的距離。一直燙平至網格的邊緣可能導致列印品出現鋸齒狀邊緣。" @@ -61,10 +69,6 @@ msgctxt "machine_disallowed_areas description" msgid "A list of polygons with areas the print head is not allowed to enter." msgstr "禁止列印頭進入區域的多邊形清單。" -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "" - msgctxt "support_tree_branch_reach_limit description" msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " msgstr "" @@ -157,6 +161,10 @@ msgctxt "resolution description" msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" msgstr "影響列印解析度的所有設定。這些設定會對品質(和列印時間)產生顯著影響" +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "" + msgctxt "alternate_extra_perimeter label" msgid "Alternate Extra Wall" msgstr "交錯額外牆壁" @@ -405,21 +413,21 @@ msgctxt "adhesion_type option brim" msgid "Brim" msgstr "邊緣" +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "" + msgctxt "brim_gap label" msgid "Brim Distance" msgstr "邊緣間距" -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "" - msgctxt "brim_line_count label" msgid "Brim Line Count" msgstr "邊緣線條數量" -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "僅在外部列印邊緣" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "" msgctxt "brim_replaces_support label" msgid "Brim Replaces Support" @@ -461,6 +469,14 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "列印空間溫度" +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "" + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "" + msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." msgstr "" @@ -873,6 +889,10 @@ msgctxt "cool_fan_enabled label" msgid "Enable Print Cooling" msgstr "開啟列印冷卻" +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "" + msgctxt "retraction_enable label" msgid "Enable Retraction" msgstr "啟用回抽" @@ -905,6 +925,10 @@ msgctxt "ooze_shield_enabled description" msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." msgstr "啟用外部擦拭牆。這將在模型周圍創建一個外殼,如果與第一個噴頭處於相同的高度,則可能會擦拭第二個噴頭。" +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "" + msgctxt "small_skin_on_surface description" msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." msgstr "" @@ -937,6 +961,10 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "強制在模型周圍列印邊緣,即使該空間已被支撐佔用。在第一層的部份區域會以邊綠取代支撐。" +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "" + msgctxt "support_type option everywhere" msgid "Everywhere" msgstr "每個地方" @@ -1041,6 +1069,10 @@ msgctxt "speed_equalize_flow_width_factor label" msgid "Flow Equalization Ratio" msgstr "" +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "" + msgctxt "flow_rate_extrusion_offset_factor label" msgid "Flow Rate Compensation Factor" msgstr "流速補償係數" @@ -1053,6 +1085,10 @@ msgctxt "material_flow_temp_graph label" msgid "Flow Temperature Graph" msgstr "流量溫度圖" +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "" + msgctxt "material_flow_layer_0 description" msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." msgstr "第一層的流量補償:在起始層上擠出的線材量會乘以此值。" @@ -1445,10 +1481,22 @@ msgctxt "wall_transition_filter_distance description" msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." msgstr "" +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "如果啟用了木筏,在模型周圍也會增加額外邊緣。增大這個邊緣將產生更強的木筏,不過也會使用更多的線材,並減少印表機的可列印面積。" +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "meshfix_union_all description" msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." msgstr "忽略因網格內部重疊產生的幾何空間,並將多個重疊體積作為一個列印。這可能會導致意外的內部孔洞消失。" @@ -1677,6 +1725,10 @@ msgctxt "wall_0_inset description" msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." msgstr "內嵌是套用在外壁路徑上的功能。如果外壁小於噴頭,並且在內壁之後列印,則此偏移量將使噴頭孔內移與內壁重疊而不是行走在模型外部。" +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "" + msgctxt "inset_direction option inside_out" msgid "Inside To Outside" msgstr "" @@ -1689,6 +1741,10 @@ msgctxt "support_interface_priority option interface_area_overwrite_support_area msgid "Interface preferred" msgstr "" +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "" + msgctxt "interlocking_beam_layer_count label" msgid "Interlocking Beam Layer Count" msgstr "" @@ -1829,6 +1885,30 @@ msgctxt "support_tree_limit_branch_reach description" msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" msgstr "" +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "" + msgctxt "cutting_mesh description" msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." msgstr "將此網格的體積限制在其他網格內。你可以使用它來制作採用不同的設定以及完全不同的擠出機的網格列印的特定區域。" @@ -1926,8 +2006,10 @@ msgid "Make the extruder prime position absolute rather than relative to the las msgstr "擠出機的控制參數使用絕對位置,而不是與前次位置的相對位移。" msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "使模型的第一層和第二層在 Z 方向上重疊以補償在空隙中損失的線材。第一個模型層上方的所有模型將向下移動此重疊量。" +msgid "" +"Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" +"It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "" msgctxt "meshfix description" msgid "Make the meshes more suited for 3D printing." @@ -1953,10 +2035,18 @@ msgctxt "material label" msgid "Material" msgstr "線材" +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "" + msgctxt "material_guid label" msgid "Material GUID" msgstr "線材 GUID" +msgctxt "material_type label" +msgid "Material Type" +msgstr "" + msgctxt "max_extrusion_before_wipe label" msgid "Material Volume Between Wipes" msgstr "擦拭線材體積" @@ -2233,6 +2323,10 @@ msgctxt "ironing_monotonic label" msgid "Monotonic Ironing Order" msgstr "單一化燙平順序" +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "" + msgctxt "roofing_monotonic label" msgid "Monotonic Top Surface Order" msgstr "頂層表面單一化列印順序" @@ -2273,6 +2367,10 @@ msgctxt "magic_mesh_surface_mode option normal" msgid "Normal" msgstr "正常" +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "" + msgctxt "support_structure option normal" msgid "Normal" msgstr "正常" @@ -2405,10 +2503,6 @@ msgctxt "ironing_only_highest_layer description" msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." msgstr "只在網格的最後一層進行燙平處理。 如果下層不需要光滑的表面,可啟用此選項以節省時間。" -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "僅在模型外部列印邊緣。這會減少你之後需要移除的邊緣量,而不會過度影響列印平台附著。" - msgctxt "ooze_shield_angle label" msgid "Ooze Shield Angle" msgstr "擦拭牆角度" @@ -2469,6 +2563,10 @@ msgctxt "group_outer_walls description" msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." msgstr "" +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "" + msgctxt "inset_direction option outside_in" msgid "Outside To Inside" msgstr "" @@ -2549,6 +2647,10 @@ msgctxt "prime_tower_line_width label" msgid "Prime Tower Line Width" msgstr "換料塔線寬" +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "" + msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" msgstr "換料塔最小體積" @@ -2565,6 +2667,10 @@ msgctxt "speed_prime_tower label" msgid "Prime Tower Speed" msgstr "換料塔速度" +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "" + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "換料塔 X 位置" @@ -2581,18 +2687,14 @@ msgctxt "jerk_print label" msgid "Print Jerk" msgstr "列印加加速度" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "" + msgctxt "print_sequence label" msgid "Print Sequence" msgstr "列印順序" -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "手動設置列印順序" - -msgctxt "user_defined_print_order_enabled description" -msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." -msgstr "允許手動設置物件列表以設定列印順序。列表中的第一個物件將首先被列印。" - msgctxt "speed_print label" msgid "Print Speed" msgstr "列印速度" @@ -2601,6 +2703,10 @@ msgctxt "fill_outline_gaps label" msgid "Print Thin Walls" msgstr "列印薄壁" +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "" + msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "在列印件旁邊印一個塔,用在每次切換噴頭後填充線材。" @@ -2621,6 +2727,10 @@ msgctxt "fill_outline_gaps description" msgid "Print pieces of the model which are horizontally thinner than the nozzle size." msgstr "列印在水平面上比噴頭尺寸更薄的模型部件。" +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "" + msgctxt "bridge_skin_speed_2 description" msgid "Print speed to use when printing the second bridge skin layer." msgstr "列印橋樑表層區域第二層時的速度。" @@ -2629,6 +2739,14 @@ msgctxt "bridge_skin_speed_3 description" msgid "Print speed to use when printing the third bridge skin layer." msgstr "列印橋樑表層區域第三層時的速度。" +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "" + msgctxt "infill_before_walls description" msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." msgstr "列印牆壁前先列印填充。先列印牆壁可以產生更精確的牆壁,但突出部分列印品質會較差。先列印填充會產生更牢固的牆壁,但有時候填充的列印樣式會透過表面顯現出來。" @@ -2673,6 +2791,10 @@ msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "木筏間隙" +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "" + msgctxt "raft_base_extruder_nr label" msgid "Raft Base Extruder" msgstr "" @@ -2701,6 +2823,10 @@ msgctxt "raft_base_speed label" msgid "Raft Base Print Speed" msgstr "木筏底部列印速度" +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "" + msgctxt "raft_base_thickness label" msgid "Raft Base Thickness" msgstr "木筏底部厚度" @@ -2717,6 +2843,10 @@ msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" msgstr "木筏風扇轉速" +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "" + msgctxt "raft_interface_extruder_nr label" msgid "Raft Middle Extruder" msgstr "" @@ -2745,6 +2875,10 @@ msgctxt "raft_interface_speed label" msgid "Raft Middle Print Speed" msgstr "木筏中層列印速度" +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "" + msgctxt "raft_interface_line_spacing label" msgid "Raft Middle Spacing" msgstr "木筏中層間距" @@ -2753,6 +2887,10 @@ msgctxt "raft_interface_thickness label" msgid "Raft Middle Thickness" msgstr "木筏中層厚度" +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "" + msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" msgstr "木筏列印加速度" @@ -2769,6 +2907,10 @@ msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "木筏平滑處理" +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "" + msgctxt "raft_surface_extruder_nr label" msgid "Raft Top Extruder" msgstr "" @@ -2801,10 +2943,22 @@ msgctxt "raft_surface_speed label" msgid "Raft Top Print Speed" msgstr "木筏頂部列印速度" +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "" + msgctxt "raft_surface_line_spacing label" msgid "Raft Top Spacing" msgstr "木筏頂部間距" +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "" + msgctxt "z_seam_type option random" msgid "Random" msgstr "隨機" @@ -2857,10 +3011,22 @@ msgctxt "carve_multiple_volumes label" msgid "Remove Mesh Intersection" msgstr "刪除網格交集部分" +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "" + msgctxt "raft_remove_inside_corners label" msgid "Remove Raft Inside Corners" msgstr "" +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "" + msgctxt "carve_multiple_volumes description" msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." msgstr "刪除多個網格彼此重疊的區域。如果合併的雙重線材對象彼此重疊,則可以使用此選項。" @@ -2869,6 +3035,18 @@ msgctxt "remove_empty_first_layers description" msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." msgstr "如果可列印的第一層下方有空的層,將其移除。假如「切片公差」設定為「排除」或「中間」,關閉此設定可能會導致空的第一層。" +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "" + msgctxt "raft_remove_inside_corners description" msgid "Remove inside corners from the raft, causing the raft to become convex." msgstr "" @@ -2889,6 +3067,10 @@ msgctxt "skin_outline_count description" msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." msgstr "用多個同心線代替頂部/底部列印樣式的最外面部分。使用一條或兩條線可以改善列印在填充上的頂板。" +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "" + msgctxt "support_tree_rest_preference label" msgid "Rest Preference" msgstr "" @@ -2961,6 +3143,10 @@ msgctxt "z_seam_corner label" msgid "Seam Corner Preference" msgstr "接縫偏好設定" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "手動設置列印順序" + msgctxt "draft_shield_height_limitation description" msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." msgstr "設定防風罩的高度。選擇防風罩與模型同高或只列印到限制的高度。" @@ -3361,10 +3547,6 @@ msgctxt "support_interface_priority label" msgid "Support Interface Priority" msgstr "" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "支撐介面解析度" - msgctxt "speed_support_interface label" msgid "Support Interface Speed" msgstr "支撐介面速度" @@ -3717,6 +3899,10 @@ msgctxt "magic_fuzzy_skin_point_dist description" msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." msgstr "在每個線條部分改變的隨機點之間的平均距離。注意,多邊形的原始點會被捨棄,因此高平滑度導致解析度降低。該值必須大於絨毛皮膚厚度的一半。" +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "" + msgctxt "machine_acceleration description" msgid "The default acceleration of print head movement." msgstr "列印頭移動的預設加速度。" @@ -4193,6 +4379,10 @@ msgctxt "jerk_travel description" msgid "The maximum instantaneous velocity change with which travel moves are made." msgstr "進行空跑時的最大瞬時速度變化。" +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "" + msgctxt "machine_max_feedrate_x description" msgid "The maximum speed for the motor of the X-direction." msgstr "X 軸方向馬達的最大速度。" @@ -4305,6 +4495,18 @@ msgctxt "raft_base_wall_count description" msgid "The number of contours to print around the linear pattern in the base layer of the raft." msgstr "" +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "" + msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "支撐表層邊緣的額外填充的層數。" @@ -4693,6 +4895,10 @@ msgctxt "machine_gcode_flavor description" msgid "The type of g-code to be generated." msgstr "產生 G-code 的類型。" +msgctxt "material_type description" +msgid "The type of material used." +msgstr "" + msgctxt "coasting_volume description" msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." msgstr "不進行滑行時,會滲出的體積。該值一般應接近噴頭直徑的立方。" @@ -4741,10 +4947,22 @@ msgctxt "bridge_wall_coast description" msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." msgstr "這可以控制擠出機在開始列印橋樑牆壁前滑行的距離。在橋樑開始之前進行滑行可以減小噴頭中的壓力並可能產生更平坦的橋樑。" +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "此設定控制木筏輪廓凹角導圓角的量。向內的轉角會被導為圓弧,其半徑等於此設定值。此設定同時可以移除木筏輪廓中半徑小於此設定值的圓孔。" +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "retraction_count_max description" msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." msgstr "此設定限制在最小擠出距離範圍內發生的回抽數。此範圍內的額外回抽將會忽略。這避免了在同一件線材上重複回抽,從而導致線材變扁並引起磨損問題。" @@ -5105,10 +5323,6 @@ msgctxt "wall_overhang_angle description" msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." msgstr "牆壁突出的角度大於此值時,將使用突出牆壁的設定列印。當此值設定為 90 時,所有牆壁都不會被當作突出牆壁。被支撐的突出牆壁也將不不會被當作突出牆壁。" -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "在檢查支撐上方或下方是否有模型時,所採用步階的高度。值越低切片速度越慢,而較高的值會導致在部分應有支撐介面的位置列印一般的支撐。" - msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." msgstr "" @@ -5501,42 +5715,26 @@ msgctxt "travel description" msgid "travel" msgstr "空跑" -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "" +#~ msgctxt "user_defined_print_order_enabled description" +#~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +#~ msgstr "允許手動設置物件列表以設定列印順序。列表中的第一個物件將首先被列印。" -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "" +#~ msgctxt "brim_outside_only label" +#~ msgid "Brim Only on Outside" +#~ msgstr "僅在外部列印邊緣" -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "" +#~ msgctxt "layer_0_z_overlap description" +#~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +#~ msgstr "使模型的第一層和第二層在 Z 方向上重疊以補償在空隙中損失的線材。第一個模型層上方的所有模型將向下移動此重疊量。" -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "" +#~ msgctxt "brim_outside_only description" +#~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +#~ msgstr "僅在模型外部列印邊緣。這會減少你之後需要移除的邊緣量,而不會過度影響列印平台附著。" -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "" +#~ msgctxt "support_interface_skip_height label" +#~ msgid "Support Interface Resolution" +#~ msgstr "支撐介面解析度" -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "" +#~ msgctxt "support_interface_skip_height description" +#~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +#~ msgstr "在檢查支撐上方或下方是否有模型時,所採用步階的高度。值越低切片速度越慢,而較高的值會導致在部分應有支撐介面的位置列印一般的支撐。" From ef833897fc35a85a9521d570f828aac43a5ce23b Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Mon, 11 Mar 2024 15:14:20 +0100 Subject: [PATCH 641/765] Update bundled packages with method materials. Added PET-CF and updated URLS. PP-446 --- resources/bundled_packages/cura.json | 218 ++++++++++++++++++++++++--- 1 file changed, 194 insertions(+), 24 deletions(-) diff --git a/resources/bundled_packages/cura.json b/resources/bundled_packages/cura.json index 6a499860d1f..a3cc8327854 100644 --- a/resources/bundled_packages/cura.json +++ b/resources/bundled_packages/cura.json @@ -1303,6 +1303,24 @@ } } }, + "GenericPETCF": { + "package_info": { + "package_id": "GenericPETCF", + "package_type": "material", + "display_name": "Generic PETCF", + "description": "The generic PET-CF profile which other profiles can be based upon.", + "package_version": "1.4.0", + "sdk_version": "8.6.0", + "website": "https://github.com/Ultimaker/fdm_materials", + "author": { + "author_id": "Generic", + "display_name": "Generic", + "email": "materials@ultimaker.com", + "website": "https://github.com/Ultimaker/fdm_materials", + "description": "Professional 3D printing made accessible." + } + } + }, "GenericPETG": { "package_info": { "package_id": "GenericPETG", @@ -1657,14 +1675,14 @@ "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", "sdk_version": "8.6.0", - "website": "https://ultimaker.com/products/materials/abs", + "website": "https://ultimaker.com/materials/s-series-abs/", "author": { "author_id": "UltimakerPackages", "display_name": "UltiMaker", "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", - "support_website": "https://ultimaker.com/en/resources/troubleshooting/materials" + "support_website": "https://ultimaker.com/in/cura/materials/ultimaker-abs/printing-guidelines" } } }, @@ -1676,14 +1694,14 @@ "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", "sdk_version": "8.6.0", - "website": "https://ultimaker.com/products/materials/breakaway", + "website": "https://ultimaker.com/materials/s-series-breakaway/", "author": { "author_id": "UltimakerPackages", "display_name": "UltiMaker", "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", - "support_website": "https://ultimaker.com/en/resources/troubleshooting/materials" + "support_website": "https://ultimaker.com/in/cura/materials/ultimaker-breakaway/printing-guidelines" } } }, @@ -1695,14 +1713,14 @@ "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", "sdk_version": "8.6.0", - "website": "https://ultimaker.com/products/materials/abs", + "website": "https://ultimaker.com/materials/s-series-cpe/", "author": { "author_id": "UltimakerPackages", "display_name": "UltiMaker", "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", - "support_website": "https://ultimaker.com/en/resources/troubleshooting/materials" + "support_website": "https://ultimaker.com/in/cura/materials/ultimaker-cpe/printing-guidelines" } } }, @@ -1714,7 +1732,7 @@ "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", "sdk_version": "8.6.0", - "website": "https://ultimaker.com/products/materials/cpe", + "website": "https://ultimaker.com/in/cura/materials/ultimaker-cpe-plus/printing-guidelines", "author": { "author_id": "UltimakerPackages", "display_name": "UltiMaker", @@ -1733,14 +1751,14 @@ "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", "sdk_version": "8.6.0", - "website": "https://ultimaker.com/products/materials/abs", + "website": "https://ultimaker.com/materials/s-series-nylon/", "author": { "author_id": "UltimakerPackages", "display_name": "UltiMaker", "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", - "support_website": "https://ultimaker.com/en/resources/troubleshooting/materials" + "support_website": "https://ultimaker.com/in/cura/materials/ultimaker-nylon/printing-guidelines" } } }, @@ -1752,14 +1770,52 @@ "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", "sdk_version": "8.6.0", - "website": "https://ultimaker.com/products/materials/pc", + "website": "https://ultimaker.com/materials/s-series-pc/", "author": { "author_id": "UltimakerPackages", "display_name": "UltiMaker", "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", - "support_website": "https://ultimaker.com/en/resources/troubleshooting/materials" + "support_website": "https://ultimaker.com/in/cura/materials/ultimaker-pc/printing-guidelines" + } + } + }, + "UltimakerPETCF": { + "package_info": { + "package_id": "UltimakerPETCF", + "package_type": "material", + "display_name": "Ultimaker PETCF", + "description": "Example package for material and quality profiles for Ultimaker materials.", + "package_version": "1.4.0", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/s-series-pet-carbon-fiber/", + "author": { + "author_id": "UltimakerPackages", + "display_name": "UltiMaker", + "email": "materials@ultimaker.com", + "website": "https://ultimaker.com", + "description": "Professional 3D printing made accessible.", + "support_website": "https://ultimaker.com/in/cura/materials/ultimaker-pet-cf/printing-guidelines" + } + } + }, + "UltimakerPETG": { + "package_info": { + "package_id": "UltimakerPETG", + "package_type": "material", + "display_name": "Ultimaker PETG", + "description": "Example package for material and quality profiles for Ultimaker materials.", + "package_version": "1.4.0", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/s-series-petg/", + "author": { + "author_id": "UltimakerPackages", + "display_name": "UltiMaker", + "email": "materials@ultimaker.com", + "website": "https://ultimaker.com", + "description": "Professional 3D printing made accessible.", + "support_website": "https://ultimaker.com/in/cura/materials/ultimaker-petg/printing-guidelines" } } }, @@ -1771,14 +1827,14 @@ "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", "sdk_version": "8.6.0", - "website": "https://ultimaker.com/products/materials/abs", + "website": "https://ultimaker.com/materials/s-series-pla/", "author": { "author_id": "UltimakerPackages", "display_name": "UltiMaker", "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", - "support_website": "https://ultimaker.com/en/resources/troubleshooting/materials" + "support_website": "https://ultimaker.com/in/cura/materials/ultimaker-pla/printing-guidelines" } } }, @@ -1790,14 +1846,14 @@ "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", "sdk_version": "8.6.0", - "website": "https://ultimaker.com/products/materials/pp", + "website": "https://ultimaker.com/materials/s-series-pp/", "author": { "author_id": "UltimakerPackages", "display_name": "UltiMaker", "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", - "support_website": "https://ultimaker.com/en/resources/troubleshooting/materials" + "support_website": "https://ultimaker.com/in/cura/materials/ultimaker-pp/printing-guidelines" } } }, @@ -1809,14 +1865,33 @@ "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", "sdk_version": "8.6.0", - "website": "https://ultimaker.com/products/materials/abs", + "website": "https://ultimaker.com/materials/s-series-pva/", "author": { "author_id": "UltimakerPackages", "display_name": "UltiMaker", "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", - "support_website": "https://ultimaker.com/en/resources/troubleshooting/materials" + "support_website": "https://ultimaker.com/in/cura/materials/ultimaker-pva/printing-guidelines" + } + } + }, + "UltimakerTPLA": { + "package_info": { + "package_id": "UltimakerTPLA", + "package_type": "material", + "display_name": "Ultimaker Tough PLA", + "description": "Example package for material and quality profiles for Ultimaker materials.", + "package_version": "1.4.0", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/s-series-tough-pla/", + "author": { + "author_id": "UltimakerPackages", + "display_name": "UltiMaker", + "email": "materials@ultimaker.com", + "website": "https://ultimaker.com", + "description": "Professional 3D printing made accessible.", + "support_website": "https://ultimaker.com/in/cura/materials/ultimaker-tough-pla/printing-guidelines" } } }, @@ -1828,33 +1903,128 @@ "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", "sdk_version": "8.6.0", - "website": "https://ultimaker.com/products/materials/tpu-95a", + "website": "https://ultimaker.com/materials/s-series-tpu-95a/", "author": { "author_id": "UltimakerPackages", "display_name": "UltiMaker", "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", - "support_website": "https://ultimaker.com/en/resources/troubleshooting/materials" + "support_website": "https://ultimaker.com/in/cura/materials/ultimaker-tpu-95a/printing-guidelines" } } }, - "UltimakerTPLA": { + "UltimakerABSCF_175": { "package_info": { - "package_id": "UltimakerTPLA", + "package_id": "UltimakerABSR_175", "package_type": "material", - "display_name": "Ultimaker Tough PLA", + "display_name": "Ultimaker ABS-CF", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", "sdk_version": "8.6.0", - "website": "https://ultimaker.com/products/materials/tough-pla", + "website": "https://ultimaker.com/materials/method-series-abs-carbon-fiber/", "author": { "author_id": "UltimakerPackages", "display_name": "UltiMaker", "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", - "support_website": "https://ultimaker.com/en/resources/troubleshooting/materials" + "support_website": "https://support.makerbot.com/s/materials/method" + } + } + }, + "UltimakerABSR_175": { + "package_info": { + "package_id": "UltimakerABSR_175", + "package_type": "material", + "display_name": "Ultimaker ABS-R", + "description": "Example package for material and quality profiles for Ultimaker materials.", + "package_version": "1.4.0", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/method-series-abs-r/", + "author": { + "author_id": "UltimakerPackages", + "display_name": "UltiMaker", + "email": "materials@ultimaker.com", + "website": "https://ultimaker.com", + "description": "Professional 3D printing made accessible.", + "support_website": "https://support.makerbot.com/s/materials/method" + } + } + }, + "UltimakerASA_175": { + "package_info": { + "package_id": "UltimakerASA_175", + "package_type": "material", + "display_name": "Ultimaker ASA", + "description": "Example package for material and quality profiles for Ultimaker materials.", + "package_version": "1.4.0", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/method-series-asa/", + "author": { + "author_id": "UltimakerPackages", + "display_name": "UltiMaker", + "email": "materials@ultimaker.com", + "website": "https://ultimaker.com", + "description": "Professional 3D printing made accessible.", + "support_website": "https://support.makerbot.com/s/materials/method" + } + } + }, + "UltimakerPA12CF_175": { + "package_info": { + "package_id": "UltimakerPA12CF_175", + "package_type": "material", + "display_name": "Ultimaker Nylon12 CF", + "description": "Example package for material and quality profiles for Ultimaker materials.", + "package_version": "1.4.0", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/method-series-nylon-12-carbon-fiber/", + "author": { + "author_id": "UltimakerPackages", + "display_name": "UltiMaker", + "email": "materials@ultimaker.com", + "website": "https://ultimaker.com", + "description": "Professional 3D printing made accessible.", + "support_website": "https://support.makerbot.com/s/materials/method" + } + } + }, + "UltimakerRapidRinse_175": { + "package_info": { + "package_id": "UltimakerRapidRinse_175", + "package_type": "material", + "display_name": "Ultimaker RapidRinse", + "description": "Example package for material and quality profiles for Ultimaker materials.", + "package_version": "1.4.0", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/method-series-rapidrinse/", + "author": { + "author_id": "UltimakerPackages", + "display_name": "UltiMaker", + "email": "materials@ultimaker.com", + "website": "https://ultimaker.com", + "description": "Professional 3D printing made accessible.", + "support_website": "https://support.makerbot.com/s/materials/method" + } + } + }, + "UltimakerSR30_175": { + "package_info": { + "package_id": "UltimakerSR30_175", + "package_type": "material", + "display_name": "Ultimaker SR-30", + "description": "Example package for material and quality profiles for Ultimaker materials.", + "package_version": "1.4.0", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/method-series-sr-30/", + "author": { + "author_id": "UltimakerPackages", + "display_name": "UltiMaker", + "email": "materials@ultimaker.com", + "website": "https://ultimaker.com", + "description": "Professional 3D printing made accessible.", + "support_website": "https://support.makerbot.com/s/materials/method" } } }, From 634828ad20bd864ba4e5abc6f5e2773b83098467 Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Mon, 11 Mar 2024 16:04:27 +0100 Subject: [PATCH 642/765] Link up display names Nylon12-CF PP-446 --- resources/bundled_packages/cura.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/bundled_packages/cura.json b/resources/bundled_packages/cura.json index a3cc8327854..4a71b41bd9b 100644 --- a/resources/bundled_packages/cura.json +++ b/resources/bundled_packages/cura.json @@ -1975,7 +1975,7 @@ "package_info": { "package_id": "UltimakerPA12CF_175", "package_type": "material", - "display_name": "Ultimaker Nylon12 CF", + "display_name": "Ultimaker Nylon12 Carbon Fiber", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", "sdk_version": "8.6.0", From 41cc4b5392932d352a715e8a3a10996e14b2f514 Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Tue, 12 Mar 2024 09:36:35 +0100 Subject: [PATCH 643/765] Updated Method material package versions to 2.0.0 PP-446 --- resources/bundled_packages/cura.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/resources/bundled_packages/cura.json b/resources/bundled_packages/cura.json index 4a71b41bd9b..455f7c9a24a 100644 --- a/resources/bundled_packages/cura.json +++ b/resources/bundled_packages/cura.json @@ -1920,7 +1920,7 @@ "package_type": "material", "display_name": "Ultimaker ABS-CF", "description": "Example package for material and quality profiles for Ultimaker materials.", - "package_version": "1.4.0", + "package_version": "2.0.0", "sdk_version": "8.6.0", "website": "https://ultimaker.com/materials/method-series-abs-carbon-fiber/", "author": { @@ -1939,7 +1939,7 @@ "package_type": "material", "display_name": "Ultimaker ABS-R", "description": "Example package for material and quality profiles for Ultimaker materials.", - "package_version": "1.4.0", + "package_version": "2.0.0", "sdk_version": "8.6.0", "website": "https://ultimaker.com/materials/method-series-abs-r/", "author": { @@ -1958,7 +1958,7 @@ "package_type": "material", "display_name": "Ultimaker ASA", "description": "Example package for material and quality profiles for Ultimaker materials.", - "package_version": "1.4.0", + "package_version": "2.0.0", "sdk_version": "8.6.0", "website": "https://ultimaker.com/materials/method-series-asa/", "author": { @@ -1977,7 +1977,7 @@ "package_type": "material", "display_name": "Ultimaker Nylon12 Carbon Fiber", "description": "Example package for material and quality profiles for Ultimaker materials.", - "package_version": "1.4.0", + "package_version": "2.0.0", "sdk_version": "8.6.0", "website": "https://ultimaker.com/materials/method-series-nylon-12-carbon-fiber/", "author": { @@ -1996,7 +1996,7 @@ "package_type": "material", "display_name": "Ultimaker RapidRinse", "description": "Example package for material and quality profiles for Ultimaker materials.", - "package_version": "1.4.0", + "package_version": "2.0.0", "sdk_version": "8.6.0", "website": "https://ultimaker.com/materials/method-series-rapidrinse/", "author": { @@ -2015,7 +2015,7 @@ "package_type": "material", "display_name": "Ultimaker SR-30", "description": "Example package for material and quality profiles for Ultimaker materials.", - "package_version": "1.4.0", + "package_version": "2.0.0", "sdk_version": "8.6.0", "website": "https://ultimaker.com/materials/method-series-sr-30/", "author": { From 20cc036b619d6c0ec07952c626e4a21109941f72 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Tue, 12 Mar 2024 14:32:48 +0100 Subject: [PATCH 644/765] Save as UCP text corrected CURA-11715 --- plugins/3MFWriter/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/3MFWriter/__init__.py b/plugins/3MFWriter/__init__.py index 0b2976c3860..8cc9e4febaa 100644 --- a/plugins/3MFWriter/__init__.py +++ b/plugins/3MFWriter/__init__.py @@ -39,7 +39,7 @@ def getMetaData(): "output": [ { "extension": workspace_extension, - "description": i18n_catalog.i18nc("@item:inlistbox", "Cura Project 3MF file"), + "description": i18n_catalog.i18nc("@item:inlistbox", "Universal Cura Project (UCP) file"), "mime_type": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", "mode": ThreeMFWorkspaceWriter.ThreeMFWorkspaceWriter.OutputMode.BinaryMode } From 52a303e977dc909ed7de942d4e0e86fdb2ad3c08 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Tue, 12 Mar 2024 14:54:22 +0100 Subject: [PATCH 645/765] Slightly reformulate brim_inside_margin description --- resources/definitions/fdmprinter.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 4e10dfbee3d..3f8bc0d0616 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6089,7 +6089,7 @@ "brim_inside_margin": { "label": "Brim Avoid Margin", - "description": "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces.", + "description": "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models.", "unit": "mm", "type": "float", "value": "line_width * 4", From e1bfb2a60d67098963c0be2cb97ba4248eddfc70 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Tue, 12 Mar 2024 15:11:23 +0100 Subject: [PATCH 646/765] Update translation files with the brim_inside_margin description --- resources/i18n/cs_CZ/fdmprinter.def.json.po | 4 ++-- resources/i18n/de_DE/fdmprinter.def.json.po | 4 ++-- resources/i18n/es_ES/fdmprinter.def.json.po | 4 ++-- resources/i18n/fdmprinter.def.json.pot | 4 ++-- resources/i18n/fi_FI/fdmprinter.def.json.po | 4 ++-- resources/i18n/fr_FR/fdmprinter.def.json.po | 4 ++-- resources/i18n/hu_HU/fdmprinter.def.json.po | 4 ++-- resources/i18n/it_IT/fdmprinter.def.json.po | 4 ++-- resources/i18n/ja_JP/fdmprinter.def.json.po | 4 ++-- resources/i18n/ko_KR/fdmprinter.def.json.po | 4 ++-- resources/i18n/nl_NL/fdmprinter.def.json.po | 4 ++-- resources/i18n/pl_PL/fdmprinter.def.json.po | 4 ++-- resources/i18n/pt_BR/fdmprinter.def.json.po | 4 ++-- resources/i18n/pt_PT/fdmprinter.def.json.po | 4 ++-- resources/i18n/ru_RU/fdmprinter.def.json.po | 4 ++-- resources/i18n/tr_TR/fdmprinter.def.json.po | 4 ++-- resources/i18n/zh_CN/fdmprinter.def.json.po | 4 ++-- resources/i18n/zh_TW/fdmprinter.def.json.po | 4 ++-- 18 files changed, 36 insertions(+), 36 deletions(-) diff --git a/resources/i18n/cs_CZ/fdmprinter.def.json.po b/resources/i18n/cs_CZ/fdmprinter.def.json.po index 763b2ee5b21..5fd9a10ebe4 100644 --- a/resources/i18n/cs_CZ/fdmprinter.def.json.po +++ b/resources/i18n/cs_CZ/fdmprinter.def.json.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"POT-Creation-Date: 2024-03-12 15:10+0000\n" "PO-Revision-Date: 2023-02-16 20:35+0100\n" "Last-Translator: Miroslav Šustek \n" "Language-Team: DenyCZ \n" @@ -22,7 +22,7 @@ msgid "How to generate the prime tower:
    • Normal: create a buc msgstr "" msgctxt "brim_inside_margin description" -msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." msgstr "" msgctxt "ironing_inset description" diff --git a/resources/i18n/de_DE/fdmprinter.def.json.po b/resources/i18n/de_DE/fdmprinter.def.json.po index e998361d7d0..2f3306c16b2 100644 --- a/resources/i18n/de_DE/fdmprinter.def.json.po +++ b/resources/i18n/de_DE/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"POT-Creation-Date: 2024-03-12 15:10+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgid "How to generate the prime tower:
      • Normal: create a buc msgstr "" msgctxt "brim_inside_margin description" -msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." msgstr "" msgctxt "ironing_inset description" diff --git a/resources/i18n/es_ES/fdmprinter.def.json.po b/resources/i18n/es_ES/fdmprinter.def.json.po index e2a3e229f60..960d5d45244 100644 --- a/resources/i18n/es_ES/fdmprinter.def.json.po +++ b/resources/i18n/es_ES/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"POT-Creation-Date: 2024-03-12 15:10+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgid "How to generate the prime tower:
        • Normal: create a buc msgstr "" msgctxt "brim_inside_margin description" -msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." msgstr "" msgctxt "ironing_inset description" diff --git a/resources/i18n/fdmprinter.def.json.pot b/resources/i18n/fdmprinter.def.json.pot index b1d0e5bc02c..3a9c03d6f8d 100644 --- a/resources/i18n/fdmprinter.def.json.pot +++ b/resources/i18n/fdmprinter.def.json.pot @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"POT-Creation-Date: 2024-03-12 15:10+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -4037,7 +4037,7 @@ msgid "Brim Avoid Margin" msgstr "" msgctxt "brim_inside_margin description" -msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." msgstr "" msgctxt "brim_smart_ordering label" diff --git a/resources/i18n/fi_FI/fdmprinter.def.json.po b/resources/i18n/fi_FI/fdmprinter.def.json.po index 4f969ab9afe..2c63a641f53 100644 --- a/resources/i18n/fi_FI/fdmprinter.def.json.po +++ b/resources/i18n/fi_FI/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"POT-Creation-Date: 2024-03-12 15:10+0000\n" "PO-Revision-Date: 2022-07-15 11:17+0200\n" "Last-Translator: Bothof \n" "Language-Team: Finnish\n" @@ -21,7 +21,7 @@ msgid "How to generate the prime tower:
          • Normal: create a buc msgstr "" msgctxt "brim_inside_margin description" -msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." msgstr "" msgctxt "ironing_inset description" diff --git a/resources/i18n/fr_FR/fdmprinter.def.json.po b/resources/i18n/fr_FR/fdmprinter.def.json.po index 16a9e79223b..07527684737 100644 --- a/resources/i18n/fr_FR/fdmprinter.def.json.po +++ b/resources/i18n/fr_FR/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"POT-Creation-Date: 2024-03-12 15:10+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgid "How to generate the prime tower:
            • Normal: create a buc msgstr "" msgctxt "brim_inside_margin description" -msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." msgstr "" msgctxt "ironing_inset description" diff --git a/resources/i18n/hu_HU/fdmprinter.def.json.po b/resources/i18n/hu_HU/fdmprinter.def.json.po index 6e3d42800af..8fb0801e5de 100644 --- a/resources/i18n/hu_HU/fdmprinter.def.json.po +++ b/resources/i18n/hu_HU/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"POT-Creation-Date: 2024-03-12 15:10+0000\n" "PO-Revision-Date: 2020-03-24 09:43+0100\n" "Last-Translator: Nagy Attila \n" "Language-Team: AT-VLOG\n" @@ -22,7 +22,7 @@ msgid "How to generate the prime tower:
              • Normal: create a buc msgstr "" msgctxt "brim_inside_margin description" -msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." msgstr "" msgctxt "ironing_inset description" diff --git a/resources/i18n/it_IT/fdmprinter.def.json.po b/resources/i18n/it_IT/fdmprinter.def.json.po index 73453ed1e78..b09b7acc0d0 100644 --- a/resources/i18n/it_IT/fdmprinter.def.json.po +++ b/resources/i18n/it_IT/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"POT-Creation-Date: 2024-03-12 15:10+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgid "How to generate the prime tower:
                • Normal: create a buc msgstr "" msgctxt "brim_inside_margin description" -msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." msgstr "" msgctxt "ironing_inset description" diff --git a/resources/i18n/ja_JP/fdmprinter.def.json.po b/resources/i18n/ja_JP/fdmprinter.def.json.po index 43eb55cdbdb..17b5651ac2e 100644 --- a/resources/i18n/ja_JP/fdmprinter.def.json.po +++ b/resources/i18n/ja_JP/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"POT-Creation-Date: 2024-03-12 15:10+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgid "How to generate the prime tower:
                  • Normal: create a buc msgstr "" msgctxt "brim_inside_margin description" -msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." msgstr "" msgctxt "ironing_inset description" diff --git a/resources/i18n/ko_KR/fdmprinter.def.json.po b/resources/i18n/ko_KR/fdmprinter.def.json.po index e7fce4a0b2a..ac5bd603dcd 100644 --- a/resources/i18n/ko_KR/fdmprinter.def.json.po +++ b/resources/i18n/ko_KR/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"POT-Creation-Date: 2024-03-12 15:10+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgid "How to generate the prime tower:
                    • Normal: create a buc msgstr "" msgctxt "brim_inside_margin description" -msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." msgstr "" msgctxt "ironing_inset description" diff --git a/resources/i18n/nl_NL/fdmprinter.def.json.po b/resources/i18n/nl_NL/fdmprinter.def.json.po index ba1cf6c1ea0..fc48cceed67 100644 --- a/resources/i18n/nl_NL/fdmprinter.def.json.po +++ b/resources/i18n/nl_NL/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"POT-Creation-Date: 2024-03-12 15:10+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgid "How to generate the prime tower:
                      • Normal: create a buc msgstr "" msgctxt "brim_inside_margin description" -msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." msgstr "" msgctxt "ironing_inset description" diff --git a/resources/i18n/pl_PL/fdmprinter.def.json.po b/resources/i18n/pl_PL/fdmprinter.def.json.po index 93266470944..9e2c0dda309 100644 --- a/resources/i18n/pl_PL/fdmprinter.def.json.po +++ b/resources/i18n/pl_PL/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"POT-Creation-Date: 2024-03-12 15:10+0000\n" "PO-Revision-Date: 2019-11-15 15:34+0100\n" "Last-Translator: Mariusz Matłosz \n" "Language-Team: Mariusz Matłosz , reprapy.pl\n" @@ -21,7 +21,7 @@ msgid "How to generate the prime tower:
                        • Normal: create a buc msgstr "" msgctxt "brim_inside_margin description" -msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." msgstr "" msgctxt "ironing_inset description" diff --git a/resources/i18n/pt_BR/fdmprinter.def.json.po b/resources/i18n/pt_BR/fdmprinter.def.json.po index 67f5bcbca3d..1fe85a5738d 100644 --- a/resources/i18n/pt_BR/fdmprinter.def.json.po +++ b/resources/i18n/pt_BR/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.0\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"POT-Creation-Date: 2024-03-12 15:10+0000\n" "PO-Revision-Date: 2023-11-22 17:17+0100\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" @@ -22,7 +22,7 @@ msgid "How to generate the prime tower:
                          • Normal: create a buc msgstr "" msgctxt "brim_inside_margin description" -msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." msgstr "" msgctxt "ironing_inset description" diff --git a/resources/i18n/pt_PT/fdmprinter.def.json.po b/resources/i18n/pt_PT/fdmprinter.def.json.po index 66badba1609..6a0a73b91e4 100644 --- a/resources/i18n/pt_PT/fdmprinter.def.json.po +++ b/resources/i18n/pt_PT/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"POT-Creation-Date: 2024-03-12 15:10+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgid "How to generate the prime tower:
                            • Normal: create a buc msgstr "" msgctxt "brim_inside_margin description" -msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." msgstr "" msgctxt "ironing_inset description" diff --git a/resources/i18n/ru_RU/fdmprinter.def.json.po b/resources/i18n/ru_RU/fdmprinter.def.json.po index ddb6dcef99f..3c22b34d238 100644 --- a/resources/i18n/ru_RU/fdmprinter.def.json.po +++ b/resources/i18n/ru_RU/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"POT-Creation-Date: 2024-03-12 15:10+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgid "How to generate the prime tower:
                              • Normal: create a buc msgstr "" msgctxt "brim_inside_margin description" -msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." msgstr "" msgctxt "ironing_inset description" diff --git a/resources/i18n/tr_TR/fdmprinter.def.json.po b/resources/i18n/tr_TR/fdmprinter.def.json.po index 5f22acc7253..dd35f09d61c 100644 --- a/resources/i18n/tr_TR/fdmprinter.def.json.po +++ b/resources/i18n/tr_TR/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"POT-Creation-Date: 2024-03-12 15:10+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgid "How to generate the prime tower:
                                • Normal: create a buc msgstr "" msgctxt "brim_inside_margin description" -msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." msgstr "" msgctxt "ironing_inset description" diff --git a/resources/i18n/zh_CN/fdmprinter.def.json.po b/resources/i18n/zh_CN/fdmprinter.def.json.po index 1f3813f4551..fb5d1f4a019 100644 --- a/resources/i18n/zh_CN/fdmprinter.def.json.po +++ b/resources/i18n/zh_CN/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"POT-Creation-Date: 2024-03-12 15:10+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgid "How to generate the prime tower:
                                  • Normal: create a buc msgstr "" msgctxt "brim_inside_margin description" -msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." msgstr "" msgctxt "ironing_inset description" diff --git a/resources/i18n/zh_TW/fdmprinter.def.json.po b/resources/i18n/zh_TW/fdmprinter.def.json.po index be8a1cf103d..347b24aaccc 100644 --- a/resources/i18n/zh_TW/fdmprinter.def.json.po +++ b/resources/i18n/zh_TW/fdmprinter.def.json.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"POT-Creation-Date: 2024-03-12 15:10+0000\n" "PO-Revision-Date: 2022-01-02 20:24+0800\n" "Last-Translator: Valen Chang \n" "Language-Team: Valen Chang \n" @@ -22,7 +22,7 @@ msgid "How to generate the prime tower:
                                    • Normal: create a buc msgstr "" msgctxt "brim_inside_margin description" -msgid "A brim around a surface may touch an other surface where brim is not expected. This removes all brim within this distance from brimless surfaces." +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." msgstr "" msgctxt "ironing_inset description" From 5824cf5414346d1c069fcdeb63a0b0466d095473 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Tue, 12 Mar 2024 16:02:10 +0100 Subject: [PATCH 647/765] Both Project and UCP has same text CURA-11715 --- plugins/3MFWriter/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/3MFWriter/__init__.py b/plugins/3MFWriter/__init__.py index 8cc9e4febaa..7fc750fccd3 100644 --- a/plugins/3MFWriter/__init__.py +++ b/plugins/3MFWriter/__init__.py @@ -39,7 +39,7 @@ def getMetaData(): "output": [ { "extension": workspace_extension, - "description": i18n_catalog.i18nc("@item:inlistbox", "Universal Cura Project (UCP) file"), + "description": i18n_catalog.i18nc("@item:inlistbox", "3MF Project file"), "mime_type": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", "mode": ThreeMFWorkspaceWriter.ThreeMFWorkspaceWriter.OutputMode.BinaryMode } From b06805dd8523cada74d0704bbc18ed1946ff03d4 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Tue, 12 Mar 2024 16:30:19 +0100 Subject: [PATCH 648/765] Mimetype introduction for ucp CURA-11715 --- plugins/3MFWriter/UCPDialog.py | 4 ++-- plugins/3MFWriter/__init__.py | 14 +++++++++++++- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/plugins/3MFWriter/UCPDialog.py b/plugins/3MFWriter/UCPDialog.py index bedfb4d0da8..8f38f0bd0a8 100644 --- a/plugins/3MFWriter/UCPDialog.py +++ b/plugins/3MFWriter/UCPDialog.py @@ -75,9 +75,9 @@ def save3mf(self): device.requestWrite( nodes, file_name, - ["application/vnd.ms-package.3dmanufacturing-3dmodel+xml"], + ["application/x-ucp"], workspace_handler, - preferred_mimetype_list="application/vnd.ms-package.3dmanufacturing-3dmodel+xml" + preferred_mimetype_list="application/x-ucp" ) except OutputDeviceError.UserCanceledError: self._onRejected() diff --git a/plugins/3MFWriter/__init__.py b/plugins/3MFWriter/__init__.py index 7fc750fccd3..1cecf4c3f81 100644 --- a/plugins/3MFWriter/__init__.py +++ b/plugins/3MFWriter/__init__.py @@ -32,6 +32,12 @@ def getMetaData(): "description": i18n_catalog.i18nc("@item:inlistbox", "3MF file"), "mime_type": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", "mode": ThreeMFWriter.ThreeMFWriter.OutputMode.BinaryMode + }, + { + "extension": "3mf", + "description": i18n_catalog.i18nc("@item:inlistbox", "Universal Cura Project"), + "mime_type": "application/x-ucp", + "mode": ThreeMFWriter.ThreeMFWriter.OutputMode.BinaryMode } ] } @@ -39,9 +45,15 @@ def getMetaData(): "output": [ { "extension": workspace_extension, - "description": i18n_catalog.i18nc("@item:inlistbox", "3MF Project file"), + "description": i18n_catalog.i18nc("@item:inlistbox", "Cura Project 3MF file"), "mime_type": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", "mode": ThreeMFWorkspaceWriter.ThreeMFWorkspaceWriter.OutputMode.BinaryMode + }, + { + "extension": "3mf", + "description": i18n_catalog.i18nc("@item:inlistbox", "Universal Cura Project"), + "mime_type": "application/x-ucp", + "mode": ThreeMFWorkspaceWriter.ThreeMFWorkspaceWriter.OutputMode.BinaryMode } ] } From 2048b040241e91cea6c8d6c722255e3712bae6f2 Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Tue, 12 Mar 2024 18:03:55 +0100 Subject: [PATCH 649/765] Remove solid intent mode for SR-30 (support material) PP-447 --- ...methodx_2xa_um-sr30-175_0.2mm_solid.inst.cfg | 17 ----------------- ...ethodxl_2xa_um-sr30-175_0.2mm_solid.inst.cfg | 17 ----------------- 2 files changed, 34 deletions(-) delete mode 100644 resources/intent/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm_solid.inst.cfg delete mode 100644 resources/intent/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm_solid.inst.cfg diff --git a/resources/intent/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm_solid.inst.cfg deleted file mode 100644 index a833556bd8b..00000000000 --- a/resources/intent/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm_solid.inst.cfg +++ /dev/null @@ -1,17 +0,0 @@ -[general] -definition = ultimaker_methodx -name = Solid -version = 4 - -[metadata] -intent_category = solid -is_experimental = True -material = ultimaker_sr30_175 -quality_type = draft -setting_version = 22 -type = intent -variant = 2XA - -[values] -infill_sparse_density = 100 - diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm_solid.inst.cfg deleted file mode 100644 index 01a55c85a42..00000000000 --- a/resources/intent/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm_solid.inst.cfg +++ /dev/null @@ -1,17 +0,0 @@ -[general] -definition = ultimaker_methodxl -name = Solid -version = 4 - -[metadata] -intent_category = solid -is_experimental = True -material = ultimaker_sr30_175 -quality_type = draft -setting_version = 22 -type = intent -variant = 2XA - -[values] -infill_sparse_density = 100 - From 6e75eb34afe83c9c57bd3679d2244b42e0cd0bfe Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Tue, 12 Mar 2024 23:38:09 +0100 Subject: [PATCH 650/765] Make lines update in real-time in the simulation-view too. This approach does suffer from returning to exactly the same point, which can mess up the view. part of CURA-11521 --- plugins/SimulationView/SimulationPass.py | 10 +++++++++- plugins/SimulationView/layers3d.shader | 8 ++++++++ plugins/SimulationView/layers3d_shadow.shader | 10 ++++++++++ 3 files changed, 27 insertions(+), 1 deletion(-) diff --git a/plugins/SimulationView/SimulationPass.py b/plugins/SimulationView/SimulationPass.py index 2099f6c21da..ab876b94cf1 100644 --- a/plugins/SimulationView/SimulationPass.py +++ b/plugins/SimulationView/SimulationPass.py @@ -143,6 +143,7 @@ def render(self): if self._layer_view.getCurrentLayer() > -1 and ((not self._layer_view._only_show_top_layers) or (not self._layer_view.getCompatibilityMode())): start = 0 end = 0 + towards_next_vertex = 0 element_counts = layer_data.getElementCounts() for layer in sorted(element_counts.keys()): # In the current layer, we show just the indicated paths @@ -162,12 +163,19 @@ def render(self): if ratio <= 0.0001 or index + 1 == len(polygon.data): # in case there multiple polygons and polygon changes, the first point has the same value as the last point in the previous polygon head_position = pos_a + node.getWorldPosition() + self._layer_shader.setUniformValue("u_last_vertex", pos_a) + self._layer_shader.setUniformValue("u_next_vertex", pos_a) + self._layer_shader.setUniformValue("u_last_line_ratio", 1.0) else: pos_b = Vector(polygon.data[index + 1][0], polygon.data[index + 1][1], polygon.data[index + 1][2]) vec = pos_a * (1.0 - ratio) + pos_b * ratio head_position = vec + node.getWorldPosition() + towards_next_vertex = 2 + self._layer_shader.setUniformValue("u_last_vertex", pos_a) + self._layer_shader.setUniformValue("u_next_vertex", pos_b) + self._layer_shader.setUniformValue("u_last_line_ratio", ratio) break break if self._layer_view.getMinimumLayer() > layer: @@ -176,7 +184,7 @@ def render(self): # Calculate the range of paths in the last layer current_layer_start = end - current_layer_end = end + int( self._layer_view.getCurrentPath()) * 2 # Because each point is used twice + current_layer_end = end + towards_next_vertex + int( self._layer_view.getCurrentPath()) * 2 # Because each point is used twice # This uses glDrawRangeElements internally to only draw a certain range of lines. # All the layers but the current selected layer are rendered first diff --git a/plugins/SimulationView/layers3d.shader b/plugins/SimulationView/layers3d.shader index b43d9986909..4b6b53c62f8 100644 --- a/plugins/SimulationView/layers3d.shader +++ b/plugins/SimulationView/layers3d.shader @@ -19,6 +19,10 @@ vertex41core = uniform highp mat4 u_normalMatrix; + uniform vec3 u_last_vertex; + uniform vec3 u_next_vertex; + uniform float u_last_line_ratio; + in highp vec4 a_vertex; in lowp vec4 a_color; in lowp vec4 a_material_color; @@ -134,6 +138,10 @@ vertex41core = void main() { vec4 v1_vertex = a_vertex; + if (v1_vertex.xyz == u_next_vertex) + { + v1_vertex.xyz = mix(u_last_vertex, u_next_vertex, u_last_line_ratio); + } v1_vertex.y -= a_line_dim.y / 2; // half layer down vec4 world_space_vert = u_modelMatrix * v1_vertex; diff --git a/plugins/SimulationView/layers3d_shadow.shader b/plugins/SimulationView/layers3d_shadow.shader index 88268938c94..03871a9be0f 100644 --- a/plugins/SimulationView/layers3d_shadow.shader +++ b/plugins/SimulationView/layers3d_shadow.shader @@ -10,6 +10,10 @@ vertex41core = uniform highp mat4 u_normalMatrix; + uniform vec3 u_last_vertex; + uniform vec3 u_next_vertex; + uniform float u_last_line_ratio; + in highp vec4 a_vertex; in lowp vec4 a_color; in lowp vec4 a_grayColor; @@ -35,6 +39,10 @@ vertex41core = void main() { vec4 v1_vertex = a_vertex; + if (v1_vertex.xyz == u_next_vertex) + { + v1_vertex.xyz = mix(u_last_vertex, u_next_vertex, u_last_line_ratio); + } v1_vertex.y -= a_line_dim.y / 2; // half layer down vec4 world_space_vert = u_modelMatrix * v1_vertex; @@ -274,6 +282,8 @@ u_viewMatrix = view_matrix u_projectionMatrix = projection_matrix u_normalMatrix = normal_matrix u_lightPosition = light_0_position +u_lastVertex = last_vertex +u_nextVertex = next_vertex [attributes] a_vertex = vertex From d6295171dd817285d962a0c5cf8cf4f3a81529d1 Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Wed, 13 Mar 2024 08:43:41 +0100 Subject: [PATCH 651/765] Add the last line (when time-sim active) as a separate batch instead. part of CURA-11521 --- plugins/SimulationView/SimulationPass.py | 31 ++++++++++++++----- plugins/SimulationView/layers3d.shader | 4 +++ plugins/SimulationView/layers3d_shadow.shader | 10 ------ 3 files changed, 28 insertions(+), 17 deletions(-) diff --git a/plugins/SimulationView/SimulationPass.py b/plugins/SimulationView/SimulationPass.py index ab876b94cf1..d9aef983855 100644 --- a/plugins/SimulationView/SimulationPass.py +++ b/plugins/SimulationView/SimulationPass.py @@ -121,6 +121,7 @@ def render(self): disabled_batch = RenderBatch(self._disabled_shader) head_position = None # Indicates the current position of the print head nozzle_node = None + not_a_vector = Vector(math.nan, math.nan, math.nan) for node in DepthFirstIterator(self._scene.getRoot()): @@ -143,6 +144,9 @@ def render(self): if self._layer_view.getCurrentLayer() > -1 and ((not self._layer_view._only_show_top_layers) or (not self._layer_view.getCompatibilityMode())): start = 0 end = 0 + vertex_before_head = not_a_vector + vertex_after_head = not_a_vector + last_to_next_ratio = 0.0 towards_next_vertex = 0 element_counts = layer_data.getElementCounts() for layer in sorted(element_counts.keys()): @@ -160,22 +164,19 @@ def render(self): ratio = self._layer_view.getCurrentPath() - math.floor(self._layer_view.getCurrentPath()) pos_a = Vector(polygon.data[index][0], polygon.data[index][1], polygon.data[index][2]) + vertex_before_head = pos_a + last_to_next_ratio = ratio if ratio <= 0.0001 or index + 1 == len(polygon.data): # in case there multiple polygons and polygon changes, the first point has the same value as the last point in the previous polygon head_position = pos_a + node.getWorldPosition() - self._layer_shader.setUniformValue("u_last_vertex", pos_a) - self._layer_shader.setUniformValue("u_next_vertex", pos_a) - self._layer_shader.setUniformValue("u_last_line_ratio", 1.0) else: pos_b = Vector(polygon.data[index + 1][0], polygon.data[index + 1][1], polygon.data[index + 1][2]) vec = pos_a * (1.0 - ratio) + pos_b * ratio head_position = vec + node.getWorldPosition() + vertex_after_head = pos_b towards_next_vertex = 2 - self._layer_shader.setUniformValue("u_last_vertex", pos_a) - self._layer_shader.setUniformValue("u_next_vertex", pos_b) - self._layer_shader.setUniformValue("u_last_line_ratio", ratio) break break if self._layer_view.getMinimumLayer() > layer: @@ -184,7 +185,7 @@ def render(self): # Calculate the range of paths in the last layer current_layer_start = end - current_layer_end = end + towards_next_vertex + int( self._layer_view.getCurrentPath()) * 2 # Because each point is used twice + current_layer_end = end + int( self._layer_view.getCurrentPath()) * 2 # Because each point is used twice # This uses glDrawRangeElements internally to only draw a certain range of lines. # All the layers but the current selected layer are rendered first @@ -195,6 +196,11 @@ def render(self): self._current_shader = self._layer_shader self._switching_layers = True + # reset 'last vertex' + self._layer_shader.setUniformValue("u_last_vertex", not_a_vector) + self._layer_shader.setUniformValue("u_next_vertex", not_a_vector) + self._layer_shader.setUniformValue("u_last_line_ratio", 1.0) + # The first line does not have a previous line: add a MoveCombingType in front for start detection # this way the first start of the layer can also be drawn prev_line_types = numpy.concatenate([numpy.asarray([LayerPolygon.MoveCombingType], dtype = numpy.float32), layer_data._attributes["line_types"]["value"]]) @@ -211,6 +217,17 @@ def render(self): current_layer_batch.addItem(node.getWorldTransformation(), layer_data) current_layer_batch.render(self._scene.getActiveCamera()) + # Last line may be partial + if vertex_after_head != not_a_vector and vertex_after_head != not_a_vector: + self._layer_shader.setUniformValue("u_last_vertex", vertex_before_head) + self._layer_shader.setUniformValue("u_next_vertex", vertex_after_head) + self._layer_shader.setUniformValue("u_last_line_ratio", last_to_next_ratio) + last_line_start = current_layer_end + last_line_end = current_layer_end + towards_next_vertex + last_line_batch = RenderBatch(self._layer_shader, type = RenderBatch.RenderType.Solid, mode=RenderBatch.RenderMode.Lines, range = (last_line_start, last_line_end)) + last_line_batch.addItem(node.getWorldTransformation(), layer_data) + last_line_batch.render(self._scene.getActiveCamera()) + self._old_current_layer = self._layer_view.getCurrentLayer() self._old_current_path = self._layer_view.getCurrentPath() diff --git a/plugins/SimulationView/layers3d.shader b/plugins/SimulationView/layers3d.shader index 4b6b53c62f8..508126e163d 100644 --- a/plugins/SimulationView/layers3d.shader +++ b/plugins/SimulationView/layers3d.shader @@ -435,6 +435,10 @@ u_max_feedrate = 1 u_min_thickness = 0 u_max_thickness = 1 +u_last_vertex = [0.0, 0.0, 0.0] +u_next_vertex = [0.0, 0.0, 0.0] +u_last_line_ratio = 1.0 + [bindings] u_modelMatrix = model_matrix u_viewMatrix = view_matrix diff --git a/plugins/SimulationView/layers3d_shadow.shader b/plugins/SimulationView/layers3d_shadow.shader index 03871a9be0f..88268938c94 100644 --- a/plugins/SimulationView/layers3d_shadow.shader +++ b/plugins/SimulationView/layers3d_shadow.shader @@ -10,10 +10,6 @@ vertex41core = uniform highp mat4 u_normalMatrix; - uniform vec3 u_last_vertex; - uniform vec3 u_next_vertex; - uniform float u_last_line_ratio; - in highp vec4 a_vertex; in lowp vec4 a_color; in lowp vec4 a_grayColor; @@ -39,10 +35,6 @@ vertex41core = void main() { vec4 v1_vertex = a_vertex; - if (v1_vertex.xyz == u_next_vertex) - { - v1_vertex.xyz = mix(u_last_vertex, u_next_vertex, u_last_line_ratio); - } v1_vertex.y -= a_line_dim.y / 2; // half layer down vec4 world_space_vert = u_modelMatrix * v1_vertex; @@ -282,8 +274,6 @@ u_viewMatrix = view_matrix u_projectionMatrix = projection_matrix u_normalMatrix = normal_matrix u_lightPosition = light_0_position -u_lastVertex = last_vertex -u_nextVertex = next_vertex [attributes] a_vertex = vertex From 406a238d96dbc3307c6078f16ba8c05ce8b9a948 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Wed, 13 Mar 2024 09:03:20 +0100 Subject: [PATCH 652/765] Update translation files with UCP file type --- resources/i18n/cs_CZ/cura.po | 6 +++++- resources/i18n/cura.pot | 6 +++++- resources/i18n/de_DE/cura.po | 6 +++++- resources/i18n/es_ES/cura.po | 6 +++++- resources/i18n/fi_FI/cura.po | 6 +++++- resources/i18n/fr_FR/cura.po | 6 +++++- resources/i18n/hu_HU/cura.po | 6 +++++- resources/i18n/it_IT/cura.po | 6 +++++- resources/i18n/ja_JP/cura.po | 6 +++++- resources/i18n/ko_KR/cura.po | 6 +++++- resources/i18n/nl_NL/cura.po | 6 +++++- resources/i18n/pl_PL/cura.po | 6 +++++- resources/i18n/pt_BR/cura.po | 6 +++++- resources/i18n/pt_PT/cura.po | 6 +++++- resources/i18n/ru_RU/cura.po | 6 +++++- resources/i18n/tr_TR/cura.po | 6 +++++- resources/i18n/zh_CN/cura.po | 6 +++++- resources/i18n/zh_TW/cura.po | 6 +++++- 18 files changed, 90 insertions(+), 18 deletions(-) diff --git a/resources/i18n/cs_CZ/cura.po b/resources/i18n/cs_CZ/cura.po index 7a842ac480c..035f8934057 100644 --- a/resources/i18n/cs_CZ/cura.po +++ b/resources/i18n/cs_CZ/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: 2023-09-03 18:15+0200\n" "Last-Translator: Miroslav Šustek \n" "Language-Team: DenyCZ \n" @@ -5112,6 +5112,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Jednotka" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" diff --git a/resources/i18n/cura.pot b/resources/i18n/cura.pot index 09565a411d9..ecf7cf0b3cf 100644 --- a/resources/i18n/cura.pot +++ b/resources/i18n/cura.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -4731,6 +4731,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" diff --git a/resources/i18n/de_DE/cura.po b/resources/i18n/de_DE/cura.po index c45016081f7..a04b7e59640 100644 --- a/resources/i18n/de_DE/cura.po +++ b/resources/i18n/de_DE/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5096,6 +5096,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Einheit" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" diff --git a/resources/i18n/es_ES/cura.po b/resources/i18n/es_ES/cura.po index d1331d9c060..48e3e99205d 100644 --- a/resources/i18n/es_ES/cura.po +++ b/resources/i18n/es_ES/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5097,6 +5097,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Unidad" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" diff --git a/resources/i18n/fi_FI/cura.po b/resources/i18n/fi_FI/cura.po index ddb1c5866c5..f8a0313836d 100644 --- a/resources/i18n/fi_FI/cura.po +++ b/resources/i18n/fi_FI/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: 2022-07-15 10:53+0200\n" "Last-Translator: Bothof \n" "Language-Team: Finnish\n" @@ -5065,6 +5065,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" diff --git a/resources/i18n/fr_FR/cura.po b/resources/i18n/fr_FR/cura.po index 199f7969932..bc58fb9ca88 100644 --- a/resources/i18n/fr_FR/cura.po +++ b/resources/i18n/fr_FR/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5094,6 +5094,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Unité" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" diff --git a/resources/i18n/hu_HU/cura.po b/resources/i18n/hu_HU/cura.po index 8e94f1077ee..c3b1de85aa7 100644 --- a/resources/i18n/hu_HU/cura.po +++ b/resources/i18n/hu_HU/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: 2020-03-24 09:36+0100\n" "Last-Translator: Nagy Attila \n" "Language-Team: ATI-SZOFT\n" @@ -5079,6 +5079,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" diff --git a/resources/i18n/it_IT/cura.po b/resources/i18n/it_IT/cura.po index 1f21b8339a2..15a7a1c88f4 100644 --- a/resources/i18n/it_IT/cura.po +++ b/resources/i18n/it_IT/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5097,6 +5097,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Unità" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" diff --git a/resources/i18n/ja_JP/cura.po b/resources/i18n/ja_JP/cura.po index c34720f0c23..c9e40dee259 100644 --- a/resources/i18n/ja_JP/cura.po +++ b/resources/i18n/ja_JP/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5080,6 +5080,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "ユニット" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" diff --git a/resources/i18n/ko_KR/cura.po b/resources/i18n/ko_KR/cura.po index 4d686f6cd6a..21641fa7ea0 100644 --- a/resources/i18n/ko_KR/cura.po +++ b/resources/i18n/ko_KR/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5083,6 +5083,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "단위" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" diff --git a/resources/i18n/nl_NL/cura.po b/resources/i18n/nl_NL/cura.po index e14f7186282..c046657690c 100644 --- a/resources/i18n/nl_NL/cura.po +++ b/resources/i18n/nl_NL/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5091,6 +5091,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Eenheid" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" diff --git a/resources/i18n/pl_PL/cura.po b/resources/i18n/pl_PL/cura.po index b21f42ed6e0..2261bb2de0d 100644 --- a/resources/i18n/pl_PL/cura.po +++ b/resources/i18n/pl_PL/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: 2021-09-07 08:02+0200\n" "Last-Translator: Mariusz Matłosz \n" "Language-Team: Mariusz Matłosz , reprapy.pl\n" @@ -5082,6 +5082,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" diff --git a/resources/i18n/pt_BR/cura.po b/resources/i18n/pt_BR/cura.po index cced0fec029..50157a02e35 100644 --- a/resources/i18n/pt_BR/cura.po +++ b/resources/i18n/pt_BR/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: 2023-11-19 19:51+0100\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" @@ -5108,6 +5108,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Unidade" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" diff --git a/resources/i18n/pt_PT/cura.po b/resources/i18n/pt_PT/cura.po index 8c19bee65cb..e3ddb9e8680 100644 --- a/resources/i18n/pt_PT/cura.po +++ b/resources/i18n/pt_PT/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5098,6 +5098,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Unidade" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" diff --git a/resources/i18n/ru_RU/cura.po b/resources/i18n/ru_RU/cura.po index eed66872d2a..238063e01ec 100644 --- a/resources/i18n/ru_RU/cura.po +++ b/resources/i18n/ru_RU/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5121,6 +5121,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Единица" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" diff --git a/resources/i18n/tr_TR/cura.po b/resources/i18n/tr_TR/cura.po index d55b7a0d7de..60e85385941 100644 --- a/resources/i18n/tr_TR/cura.po +++ b/resources/i18n/tr_TR/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5097,6 +5097,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Birim" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" diff --git a/resources/i18n/zh_CN/cura.po b/resources/i18n/zh_CN/cura.po index 13fa048673c..300d25211ac 100644 --- a/resources/i18n/zh_CN/cura.po +++ b/resources/i18n/zh_CN/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5085,6 +5085,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "单位" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" diff --git a/resources/i18n/zh_TW/cura.po b/resources/i18n/zh_TW/cura.po index cc09d840ce7..241a1f1f5d6 100644 --- a/resources/i18n/zh_TW/cura.po +++ b/resources/i18n/zh_TW/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: 2022-01-02 19:59+0800\n" "Last-Translator: Valen Chang \n" "Language-Team: Valen Chang \n" @@ -5077,6 +5077,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" From a67a61298e63540b4c80a1879fc78db1fb7ea896 Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Wed, 13 Mar 2024 09:22:49 +0100 Subject: [PATCH 653/765] Apply suggestions from code review Undo changes to conandata.yml Co-authored-by: HellAholic --- conandata.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/conandata.yml b/conandata.yml index 24f9abf294b..0d0452ebbe5 100644 --- a/conandata.yml +++ b/conandata.yml @@ -1,14 +1,14 @@ -version: "5.8.0-alpha.0" +version: "5.7.0-beta.0" requirements: - - "uranium/(latest)@ultimaker/testing" - - "curaengine/(latest)@ultimaker/testing" - - "cura_binary_data/(latest)@ultimaker/testing" - - "fdm_materials/(latest)@ultimaker/testing" + - "uranium/(latest)@ultimaker/stable" + - "curaengine/(latest)@ultimaker/stable" + - "cura_binary_data/(latest)@ultimaker/stable" + - "fdm_materials/(latest)@ultimaker/stable" - "curaengine_plugin_gradual_flow/0.1.0-beta.3" - "dulcificum/latest@ultimaker/testing" - "pysavitar/5.3.0" - "pynest2d/5.3.0" - - "curaengine_grpc_definitions/(latest)@ultimaker/testing" + - "curaengine_grpc_definitions/0.2.0" requirements_internal: - "fdm_materials/(latest)@internal/testing" - "cura_private_data/(latest)@internal/testing" From 4e564c7eb55c851671f0b57099b2718ce27859c2 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Wed, 13 Mar 2024 09:25:32 +0100 Subject: [PATCH 654/765] Add gradual flow plugin translations --- .../cs_CZ/gradual_flow_settings.def.json.po | 54 +++++++++++++++++ .../de_DE/gradual_flow_settings.def.json.po | 54 +++++++++++++++++ .../es_ES/gradual_flow_settings.def.json.po | 54 +++++++++++++++++ .../fi_FI/gradual_flow_settings.def.json.po | 54 +++++++++++++++++ .../fr_FR/gradual_flow_settings.def.json.po | 54 +++++++++++++++++ .../i18n/gradual_flow_settings.def.json.pot | 58 +++++++++++++++++++ .../hu_HU/gradual_flow_settings.def.json.po | 54 +++++++++++++++++ .../it_IT/gradual_flow_settings.def.json.po | 54 +++++++++++++++++ .../ja_JP/gradual_flow_settings.def.json.po | 54 +++++++++++++++++ .../ko_KR/gradual_flow_settings.def.json.po | 54 +++++++++++++++++ .../nl_NL/gradual_flow_settings.def.json.po | 54 +++++++++++++++++ .../pl_PL/gradual_flow_settings.def.json.po | 54 +++++++++++++++++ .../pt_BR/gradual_flow_settings.def.json.po | 54 +++++++++++++++++ .../pt_PT/gradual_flow_settings.def.json.po | 54 +++++++++++++++++ .../ru_RU/gradual_flow_settings.def.json.po | 54 +++++++++++++++++ .../tr_TR/gradual_flow_settings.def.json.po | 54 +++++++++++++++++ .../zh_CN/gradual_flow_settings.def.json.po | 54 +++++++++++++++++ .../zh_TW/gradual_flow_settings.def.json.po | 54 +++++++++++++++++ 18 files changed, 976 insertions(+) create mode 100644 resources/i18n/cs_CZ/gradual_flow_settings.def.json.po create mode 100644 resources/i18n/de_DE/gradual_flow_settings.def.json.po create mode 100644 resources/i18n/es_ES/gradual_flow_settings.def.json.po create mode 100644 resources/i18n/fi_FI/gradual_flow_settings.def.json.po create mode 100644 resources/i18n/fr_FR/gradual_flow_settings.def.json.po create mode 100644 resources/i18n/gradual_flow_settings.def.json.pot create mode 100644 resources/i18n/hu_HU/gradual_flow_settings.def.json.po create mode 100644 resources/i18n/it_IT/gradual_flow_settings.def.json.po create mode 100644 resources/i18n/ja_JP/gradual_flow_settings.def.json.po create mode 100644 resources/i18n/ko_KR/gradual_flow_settings.def.json.po create mode 100644 resources/i18n/nl_NL/gradual_flow_settings.def.json.po create mode 100644 resources/i18n/pl_PL/gradual_flow_settings.def.json.po create mode 100644 resources/i18n/pt_BR/gradual_flow_settings.def.json.po create mode 100644 resources/i18n/pt_PT/gradual_flow_settings.def.json.po create mode 100644 resources/i18n/ru_RU/gradual_flow_settings.def.json.po create mode 100644 resources/i18n/tr_TR/gradual_flow_settings.def.json.po create mode 100644 resources/i18n/zh_CN/gradual_flow_settings.def.json.po create mode 100644 resources/i18n/zh_TW/gradual_flow_settings.def.json.po diff --git a/resources/i18n/cs_CZ/gradual_flow_settings.def.json.po b/resources/i18n/cs_CZ/gradual_flow_settings.def.json.po new file mode 100644 index 00000000000..363b0994aa1 --- /dev/null +++ b/resources/i18n/cs_CZ/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/i18n/de_DE/gradual_flow_settings.def.json.po b/resources/i18n/de_DE/gradual_flow_settings.def.json.po new file mode 100644 index 00000000000..363b0994aa1 --- /dev/null +++ b/resources/i18n/de_DE/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/i18n/es_ES/gradual_flow_settings.def.json.po b/resources/i18n/es_ES/gradual_flow_settings.def.json.po new file mode 100644 index 00000000000..363b0994aa1 --- /dev/null +++ b/resources/i18n/es_ES/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/i18n/fi_FI/gradual_flow_settings.def.json.po b/resources/i18n/fi_FI/gradual_flow_settings.def.json.po new file mode 100644 index 00000000000..363b0994aa1 --- /dev/null +++ b/resources/i18n/fi_FI/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/i18n/fr_FR/gradual_flow_settings.def.json.po b/resources/i18n/fr_FR/gradual_flow_settings.def.json.po new file mode 100644 index 00000000000..363b0994aa1 --- /dev/null +++ b/resources/i18n/fr_FR/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/i18n/gradual_flow_settings.def.json.pot b/resources/i18n/gradual_flow_settings.def.json.pot new file mode 100644 index 00000000000..7d9afba68fc --- /dev/null +++ b/resources/i18n/gradual_flow_settings.def.json.pot @@ -0,0 +1,58 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + + + + + + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" + diff --git a/resources/i18n/hu_HU/gradual_flow_settings.def.json.po b/resources/i18n/hu_HU/gradual_flow_settings.def.json.po new file mode 100644 index 00000000000..363b0994aa1 --- /dev/null +++ b/resources/i18n/hu_HU/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/i18n/it_IT/gradual_flow_settings.def.json.po b/resources/i18n/it_IT/gradual_flow_settings.def.json.po new file mode 100644 index 00000000000..363b0994aa1 --- /dev/null +++ b/resources/i18n/it_IT/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/i18n/ja_JP/gradual_flow_settings.def.json.po b/resources/i18n/ja_JP/gradual_flow_settings.def.json.po new file mode 100644 index 00000000000..363b0994aa1 --- /dev/null +++ b/resources/i18n/ja_JP/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/i18n/ko_KR/gradual_flow_settings.def.json.po b/resources/i18n/ko_KR/gradual_flow_settings.def.json.po new file mode 100644 index 00000000000..363b0994aa1 --- /dev/null +++ b/resources/i18n/ko_KR/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/i18n/nl_NL/gradual_flow_settings.def.json.po b/resources/i18n/nl_NL/gradual_flow_settings.def.json.po new file mode 100644 index 00000000000..363b0994aa1 --- /dev/null +++ b/resources/i18n/nl_NL/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/i18n/pl_PL/gradual_flow_settings.def.json.po b/resources/i18n/pl_PL/gradual_flow_settings.def.json.po new file mode 100644 index 00000000000..363b0994aa1 --- /dev/null +++ b/resources/i18n/pl_PL/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/i18n/pt_BR/gradual_flow_settings.def.json.po b/resources/i18n/pt_BR/gradual_flow_settings.def.json.po new file mode 100644 index 00000000000..363b0994aa1 --- /dev/null +++ b/resources/i18n/pt_BR/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/i18n/pt_PT/gradual_flow_settings.def.json.po b/resources/i18n/pt_PT/gradual_flow_settings.def.json.po new file mode 100644 index 00000000000..363b0994aa1 --- /dev/null +++ b/resources/i18n/pt_PT/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/i18n/ru_RU/gradual_flow_settings.def.json.po b/resources/i18n/ru_RU/gradual_flow_settings.def.json.po new file mode 100644 index 00000000000..363b0994aa1 --- /dev/null +++ b/resources/i18n/ru_RU/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/i18n/tr_TR/gradual_flow_settings.def.json.po b/resources/i18n/tr_TR/gradual_flow_settings.def.json.po new file mode 100644 index 00000000000..363b0994aa1 --- /dev/null +++ b/resources/i18n/tr_TR/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/i18n/zh_CN/gradual_flow_settings.def.json.po b/resources/i18n/zh_CN/gradual_flow_settings.def.json.po new file mode 100644 index 00000000000..363b0994aa1 --- /dev/null +++ b/resources/i18n/zh_CN/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/i18n/zh_TW/gradual_flow_settings.def.json.po b/resources/i18n/zh_TW/gradual_flow_settings.def.json.po new file mode 100644 index 00000000000..363b0994aa1 --- /dev/null +++ b/resources/i18n/zh_TW/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" From cf7f807b412ff9e533dc43372dedacdef9c2b041 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Wed, 13 Mar 2024 09:52:50 +0100 Subject: [PATCH 655/765] placing Setting loaded from ucp on top before Suggested Profile setting CURA-11721 --- plugins/3MFReader/WorkspaceDialog.qml | 81 ++++++++++++++------------- 1 file changed, 41 insertions(+), 40 deletions(-) diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index f85f4f73230..a8cdad92bdd 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -156,46 +156,6 @@ UM.Dialog } } - WorkspaceSection - { - id: profileSection - title: manager.isUcp? catalog.i18nc("@action:label", "Suggested Profile settings"):catalog.i18nc("@action:label", "Profile settings") - iconSource: UM.Theme.getIcon("Sliders") - content: Column - { - id: profileSettingsValuesTable - spacing: UM.Theme.getSize("default_margin").height - leftPadding: UM.Theme.getSize("medium_button_icon").width + UM.Theme.getSize("default_margin").width - - WorkspaceRow - { - leftLabelText: catalog.i18nc("@action:label", "Name") - rightLabelText: manager.qualityName - visible: manager.isCompatibleMachine - } - - WorkspaceRow - { - leftLabelText: catalog.i18nc("@action:label", "Intent") - rightLabelText: manager.intentName - visible: manager.isCompatibleMachine - } - - WorkspaceRow - { - leftLabelText: catalog.i18nc("@action:label", "Not in profile") - rightLabelText: catalog.i18ncp("@action:label", "%1 override", "%1 overrides", manager.numUserSettings).arg(manager.numUserSettings) - visible: manager.numUserSettings != 0 && manager.isCompatibleMachine - } - - WorkspaceRow - { - leftLabelText: catalog.i18nc("@action:label", "Derivative from") - rightLabelText: catalog.i18ncp("@action:label", "%1, %2 override", "%1, %2 overrides", manager.numSettingsOverridenByQualityChanges).arg(manager.qualityType).arg(manager.numSettingsOverridenByQualityChanges) - visible: manager.numSettingsOverridenByQualityChanges != 0 && manager.isCompatibleMachine - } - } - } WorkspaceSection { id: ucpProfileSection @@ -279,6 +239,47 @@ UM.Dialog } } + WorkspaceSection + { + id: profileSection + title: manager.isUcp? catalog.i18nc("@action:label", "Suggested Profile settings"):catalog.i18nc("@action:label", "Profile settings") + iconSource: UM.Theme.getIcon("Sliders") + content: Column + { + id: profileSettingsValuesTable + spacing: UM.Theme.getSize("default_margin").height + leftPadding: UM.Theme.getSize("medium_button_icon").width + UM.Theme.getSize("default_margin").width + + WorkspaceRow + { + leftLabelText: catalog.i18nc("@action:label", "Name") + rightLabelText: manager.qualityName + visible: manager.isCompatibleMachine + } + + WorkspaceRow + { + leftLabelText: catalog.i18nc("@action:label", "Intent") + rightLabelText: manager.intentName + visible: manager.isCompatibleMachine + } + + WorkspaceRow + { + leftLabelText: catalog.i18nc("@action:label", "Not in profile") + rightLabelText: catalog.i18ncp("@action:label", "%1 override", "%1 overrides", manager.numUserSettings).arg(manager.numUserSettings) + visible: manager.numUserSettings != 0 && !manager.isUcp + } + + WorkspaceRow + { + leftLabelText: catalog.i18nc("@action:label", "Derivative from") + rightLabelText: catalog.i18ncp("@action:label", "%1, %2 override", "%1, %2 overrides", manager.numSettingsOverridenByQualityChanges).arg(manager.qualityType).arg(manager.numSettingsOverridenByQualityChanges) + visible: manager.numSettingsOverridenByQualityChanges != 0 && manager.isCompatibleMachine + } + } + } + WorkspaceSection { id: materialSection From 5dcab953581b09ba056a4fda47055fada43c87a3 Mon Sep 17 00:00:00 2001 From: Remco Burema <41987080+rburema@users.noreply.github.com> Date: Wed, 13 Mar 2024 11:10:04 +0100 Subject: [PATCH 656/765] Code review: change name to 'vertex_distance_ratio'. To be better in line with the other variables. Done as part of CURA-11521 Co-authored-by: Saumya Jain <70144862+saumyaj3@users.noreply.github.com> --- plugins/SimulationView/SimulationPass.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/SimulationView/SimulationPass.py b/plugins/SimulationView/SimulationPass.py index d9aef983855..b7234037978 100644 --- a/plugins/SimulationView/SimulationPass.py +++ b/plugins/SimulationView/SimulationPass.py @@ -146,7 +146,7 @@ def render(self): end = 0 vertex_before_head = not_a_vector vertex_after_head = not_a_vector - last_to_next_ratio = 0.0 + vertex_distance_ratio = 0.0 towards_next_vertex = 0 element_counts = layer_data.getElementCounts() for layer in sorted(element_counts.keys()): @@ -165,7 +165,7 @@ def render(self): pos_a = Vector(polygon.data[index][0], polygon.data[index][1], polygon.data[index][2]) vertex_before_head = pos_a - last_to_next_ratio = ratio + vertex_distance_ratio = ratio if ratio <= 0.0001 or index + 1 == len(polygon.data): # in case there multiple polygons and polygon changes, the first point has the same value as the last point in the previous polygon head_position = pos_a + node.getWorldPosition() @@ -221,7 +221,7 @@ def render(self): if vertex_after_head != not_a_vector and vertex_after_head != not_a_vector: self._layer_shader.setUniformValue("u_last_vertex", vertex_before_head) self._layer_shader.setUniformValue("u_next_vertex", vertex_after_head) - self._layer_shader.setUniformValue("u_last_line_ratio", last_to_next_ratio) + self._layer_shader.setUniformValue("u_last_line_ratio", vertex_distance_ratio) last_line_start = current_layer_end last_line_end = current_layer_end + towards_next_vertex last_line_batch = RenderBatch(self._layer_shader, type = RenderBatch.RenderType.Solid, mode=RenderBatch.RenderMode.Lines, range = (last_line_start, last_line_end)) From 778bd11a71e589a75ec7451fd3d275a466e1421c Mon Sep 17 00:00:00 2001 From: Remco Burema <41987080+rburema@users.noreply.github.com> Date: Wed, 13 Mar 2024 11:13:03 +0100 Subject: [PATCH 657/765] Review comments to add a comment. Done as part of CURA-11521 --- plugins/SimulationView/SimulationPass.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/SimulationView/SimulationPass.py b/plugins/SimulationView/SimulationPass.py index b7234037978..efe80162b5d 100644 --- a/plugins/SimulationView/SimulationPass.py +++ b/plugins/SimulationView/SimulationPass.py @@ -176,7 +176,7 @@ def render(self): vec = pos_a * (1.0 - ratio) + pos_b * ratio head_position = vec + node.getWorldPosition() vertex_after_head = pos_b - towards_next_vertex = 2 + towards_next_vertex = 2 # Add two to the index to print the current and next vertices as an 'unfinished' line (to the nozzle). break break if self._layer_view.getMinimumLayer() > layer: From f5877d3bce2e6f9f16f2cd58413c4b6c249d7038 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Wed, 13 Mar 2024 12:00:32 +0100 Subject: [PATCH 658/765] Fix post processing plugin button alignment This was caused by the label within the component spanning multiple lines, causing the height of the component to increase. Since the buttons were vertically aligned the positioning of these buttons are impacted. CURA-11697 --- plugins/PostProcessingPlugin/PostProcessingPlugin.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/PostProcessingPlugin/PostProcessingPlugin.qml b/plugins/PostProcessingPlugin/PostProcessingPlugin.qml index 0f379479bac..47eb1e55071 100644 --- a/plugins/PostProcessingPlugin/PostProcessingPlugin.qml +++ b/plugins/PostProcessingPlugin/PostProcessingPlugin.qml @@ -120,6 +120,8 @@ UM.Dialog UM.Label { Layout.fillWidth: true + Layout.preferredHeight: height + elide: Text.ElideRight text: manager.getScriptLabelByKey(modelData.toString()) } From e90cbcfa0146c36d41d51032cbfb40ce6f7bb64c Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Wed, 13 Mar 2024 13:38:46 +0100 Subject: [PATCH 659/765] not clearing the current machinein case of UCP because we don't want to write again the same thing. CURA-11701 --- plugins/3MFReader/ThreeMFWorkspaceReader.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py index e6992611c13..164952f9f18 100755 --- a/plugins/3MFReader/ThreeMFWorkspaceReader.py +++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py @@ -915,10 +915,6 @@ def read(self, file_name): # Prepare the machine self._applyChangesToMachine(global_stack, extruder_stack_dict) - else: - # Just clear the settings now, so that we can change the active machine without conflicts - self._clearMachineSettings(global_stack, {}) - Logger.log("d", "Workspace loading is notifying rest of the code of changes...") # Actually change the active machine. From 42b72f81bb16ffa6912eb96aed29a3fd3349af56 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Wed, 13 Mar 2024 14:08:04 +0100 Subject: [PATCH 660/765] Optimize overridden calculated settings computation Instead of getting all the settings and checking whether they have a user state, just take the settings from the user changes containers, which is way faster. CURA-11475 --- cura/Settings/SettingInheritanceManager.py | 45 +++++++++++++++------- 1 file changed, 32 insertions(+), 13 deletions(-) diff --git a/cura/Settings/SettingInheritanceManager.py b/cura/Settings/SettingInheritanceManager.py index 5ae00ae2719..26d07733693 100644 --- a/cura/Settings/SettingInheritanceManager.py +++ b/cura/Settings/SettingInheritanceManager.py @@ -32,6 +32,7 @@ def __init__(self, parent = None) -> None: self._global_container_stack = None # type: Optional[ContainerStack] self._settings_with_inheritance_warning = [] # type: List[str] self._active_container_stack = None # type: Optional[ExtruderStack] + self._active_containers = [] # type: List[ContainerInterface] self._update_timer = QTimer() self._update_timer.setInterval(500) @@ -101,6 +102,7 @@ def _onActiveExtruderChanged(self) -> None: new_active_stack = ExtruderManager.getInstance().getActiveExtruderStack() if not new_active_stack: self._active_container_stack = None + self._active_containers = [] return if new_active_stack != self._active_container_stack: # Check if changed @@ -114,6 +116,13 @@ def _onActiveExtruderChanged(self) -> None: self._active_container_stack.containersChanged.connect(self._onContainersChanged) self._update_timer.start() # Ensure that the settings_with_inheritance_warning list is populated. + ## Mash all containers for all the stacks together. + self._active_containers = [] + stack = self._active_container_stack + while stack: + self._active_containers.extend(stack.getContainers()) + stack = stack.getNextStack() + def _onPropertyChanged(self, key: str, property_name: str) -> None: if (property_name == "value" or property_name == "enabled") and self._global_container_stack: definitions = self._global_container_stack.definition.findDefinitions(key = key) # type: List["SettingDefinition"] @@ -171,7 +180,6 @@ def settingsWithInheritanceWarning(self) -> List[str]: def _settingIsOverwritingInheritance(self, key: str, stack: ContainerStack = None) -> bool: """Check if a setting has an inheritance function that is overwritten""" - has_setting_function = False if not stack: stack = self._active_container_stack if not stack: # No active container stack yet! @@ -179,9 +187,6 @@ def _settingIsOverwritingInheritance(self, key: str, stack: ContainerStack = Non if self._active_container_stack is None: return False - all_keys = self._active_container_stack.getAllKeys() - - containers = [] # type: List[ContainerInterface] has_user_state = stack.getProperty(key, "state") == InstanceState.User """Check if the setting has a user state. If not, it is never overwritten.""" @@ -189,6 +194,13 @@ def _settingIsOverwritingInheritance(self, key: str, stack: ContainerStack = Non if not has_user_state: return False + return self._userSettingIsOverwritingInheritance(key, stack, self._active_container_stack.getAllKeys()) + + def _userSettingIsOverwritingInheritance(self, key: str, stack: ContainerStack, all_keys) -> bool: + """Check if a setting has an inheritance function that is overwritten""" + + has_setting_function = False + # If a setting is not enabled, don't label it as overwritten (It's never visible anyway). if not stack.getProperty(key, "enabled"): return False @@ -199,12 +211,8 @@ def _settingIsOverwritingInheritance(self, key: str, stack: ContainerStack = Non if user_container and isinstance(user_container.getProperty(key, "value"), SettingFunction): return False - ## Mash all containers for all the stacks together. - while stack: - containers.extend(stack.getContainers()) - stack = stack.getNextStack() has_non_function_value = False - for container in containers: + for container in self._active_containers: try: value = container.getProperty(key, "value") except AttributeError: @@ -227,6 +235,7 @@ def _settingIsOverwritingInheritance(self, key: str, stack: ContainerStack = Non if has_setting_function: break # There is a setting function somewhere, stop looking deeper. + return has_setting_function and has_non_function_value def _update(self) -> None: @@ -237,10 +246,20 @@ def _update(self) -> None: return # Check all setting keys that we know of and see if they are overridden. - for setting_key in self._global_container_stack.getAllKeys(): - override = self._settingIsOverwritingInheritance(setting_key) - if override: - self._settings_with_inheritance_warning.append(setting_key) + if self._active_container_stack: + all_keys = self._active_container_stack.getAllKeys() + + # Get user settings from all stacks + user_settings_keys = set() + stack = self._active_container_stack + while stack: + user_settings_keys.update(stack.userChanges.getAllKeys()) + stack = stack.getNextStack() + + for setting_key in user_settings_keys: + override = self._userSettingIsOverwritingInheritance(setting_key, self._active_container_stack, all_keys) + if override: + self._settings_with_inheritance_warning.append(setting_key) # Check all the categories if any of their children have their inheritance overwritten. for category in self._global_container_stack.definition.findDefinitions(type = "category"): From 49a111efabeb7c0f55c3ddba73d3af90ff2ae65b Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Wed, 13 Mar 2024 16:45:49 +0100 Subject: [PATCH 661/765] Use the package_id that Bart used in the contributor portal. PP-446 --- resources/bundled_packages/cura.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/resources/bundled_packages/cura.json b/resources/bundled_packages/cura.json index 455f7c9a24a..59d8547ed6f 100644 --- a/resources/bundled_packages/cura.json +++ b/resources/bundled_packages/cura.json @@ -1916,7 +1916,7 @@ }, "UltimakerABSCF_175": { "package_info": { - "package_id": "UltimakerABSR_175", + "package_id": "ULTIMAKERBASCFMETHOD", "package_type": "material", "display_name": "Ultimaker ABS-CF", "description": "Example package for material and quality profiles for Ultimaker materials.", @@ -1935,7 +1935,7 @@ }, "UltimakerABSR_175": { "package_info": { - "package_id": "UltimakerABSR_175", + "package_id": "ULTIMAKERABSRMETHOD", "package_type": "material", "display_name": "Ultimaker ABS-R", "description": "Example package for material and quality profiles for Ultimaker materials.", @@ -1954,7 +1954,7 @@ }, "UltimakerASA_175": { "package_info": { - "package_id": "UltimakerASA_175", + "package_id": "ULTIMAKERASAMETHOD", "package_type": "material", "display_name": "Ultimaker ASA", "description": "Example package for material and quality profiles for Ultimaker materials.", @@ -1973,7 +1973,7 @@ }, "UltimakerPA12CF_175": { "package_info": { - "package_id": "UltimakerPA12CF_175", + "package_id": "ULTIMAKERNYLON12CFMETHOD", "package_type": "material", "display_name": "Ultimaker Nylon12 Carbon Fiber", "description": "Example package for material and quality profiles for Ultimaker materials.", @@ -1992,7 +1992,7 @@ }, "UltimakerRapidRinse_175": { "package_info": { - "package_id": "UltimakerRapidRinse_175", + "package_id": "ULTIMAKERRAPIDRINSEMETHOD", "package_type": "material", "display_name": "Ultimaker RapidRinse", "description": "Example package for material and quality profiles for Ultimaker materials.", @@ -2011,7 +2011,7 @@ }, "UltimakerSR30_175": { "package_info": { - "package_id": "UltimakerSR30_175", + "package_id": "ULTIMAKERSR30METHOD", "package_type": "material", "display_name": "Ultimaker SR-30", "description": "Example package for material and quality profiles for Ultimaker materials.", From 72ef2334cacda391eebc19dbb73de35eab7cccb0 Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Wed, 13 Mar 2024 16:48:23 +0100 Subject: [PATCH 662/765] Use the package_id that Bart used in the contributor portal. PP-446 --- resources/bundled_packages/cura.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/resources/bundled_packages/cura.json b/resources/bundled_packages/cura.json index 59d8547ed6f..143dfd6f7d4 100644 --- a/resources/bundled_packages/cura.json +++ b/resources/bundled_packages/cura.json @@ -1914,7 +1914,7 @@ } } }, - "UltimakerABSCF_175": { + "ULTIMAKERBASCFMETHOD": { "package_info": { "package_id": "ULTIMAKERBASCFMETHOD", "package_type": "material", @@ -1933,7 +1933,7 @@ } } }, - "UltimakerABSR_175": { + "ULTIMAKERABSRMETHOD": { "package_info": { "package_id": "ULTIMAKERABSRMETHOD", "package_type": "material", @@ -1952,7 +1952,7 @@ } } }, - "UltimakerASA_175": { + "ULTIMAKERASAMETHOD": { "package_info": { "package_id": "ULTIMAKERASAMETHOD", "package_type": "material", @@ -1971,7 +1971,7 @@ } } }, - "UltimakerPA12CF_175": { + "ULTIMAKERNYLON12CFMETHOD": { "package_info": { "package_id": "ULTIMAKERNYLON12CFMETHOD", "package_type": "material", @@ -1990,7 +1990,7 @@ } } }, - "UltimakerRapidRinse_175": { + "ULTIMAKERRAPIDRINSEMETHOD": { "package_info": { "package_id": "ULTIMAKERRAPIDRINSEMETHOD", "package_type": "material", @@ -2009,7 +2009,7 @@ } } }, - "UltimakerSR30_175": { + "ULTIMAKERSR30METHOD": { "package_info": { "package_id": "ULTIMAKERSR30METHOD", "package_type": "material", From 85b60c1f283ca28a68415c97a9d367c3f1b548d0 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Thu, 14 Mar 2024 11:17:12 +0100 Subject: [PATCH 663/765] Do not get user profile by loading auth data --- cura/OAuth2/AuthorizationService.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cura/OAuth2/AuthorizationService.py b/cura/OAuth2/AuthorizationService.py index 4e8d28173a3..e62e00a793c 100644 --- a/cura/OAuth2/AuthorizationService.py +++ b/cura/OAuth2/AuthorizationService.py @@ -305,7 +305,8 @@ def callback(profile: Optional["UserProfile"]) -> None: message_type = Message.MessageType.ERROR) Logger.warning("Unable to get user profile using auth data from preferences.") self._unable_to_get_data_message.show() - self.getUserProfile(callback) + if self._get_user_profile: + self.getUserProfile(callback) except (ValueError, TypeError): Logger.logException("w", "Could not load auth data from preferences") From 9604674c8bf624ff287d95c4d95bfdead2d2abbd Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Thu, 14 Mar 2024 11:45:15 +0100 Subject: [PATCH 664/765] Added Cura.MachineSelector in place of combobox combobox seemed to be tampering with the mouse area of machineselector CURA-11700 --- plugins/3MFReader/WorkspaceDialog.qml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index a8cdad92bdd..e617764700c 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -103,12 +103,17 @@ UM.Dialog comboboxTitle: catalog.i18nc("@action:label", "Open With") comboboxTooltipText: catalog.i18nc("@info:tooltip", "Printer settings will be updated to match the settings saved with the project.") comboboxVisible: workspaceDialog.visible && manager.updatableMachinesModel.count > 1 - combobox: Cura.MachineSelector + Cura.MachineSelector { id: machineSelector + visible: comboboxVisible headerCornerSide: Cura.RoundedRectangle.Direction.All - width: parent.width - height: parent.height + anchors.top: parent.top + anchors.topMargin: UM.Theme.getSize("default_margin").width * 3 + anchors.right: parent.right + anchors.rightMargin: UM.Theme.getSize("default_margin").width + width: UM.Theme.getSize("machine_selector_widget").width + height: UM.Theme.getSize("machine_selector_widget").height machineListModel: manager.updatableMachinesModel machineName: manager.machineName From 73e4d7873588c1af823723c5d7be15eb032c16fb Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Thu, 14 Mar 2024 13:01:01 +0100 Subject: [PATCH 665/765] added limit mimetype for 3mf project and removed saving ucp as mesh writer CURA-11715 --- plugins/3MFWriter/__init__.py | 6 ------ resources/qml/Menus/FileMenu.qml | 1 + 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/plugins/3MFWriter/__init__.py b/plugins/3MFWriter/__init__.py index 1cecf4c3f81..980aefdf851 100644 --- a/plugins/3MFWriter/__init__.py +++ b/plugins/3MFWriter/__init__.py @@ -33,12 +33,6 @@ def getMetaData(): "mime_type": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", "mode": ThreeMFWriter.ThreeMFWriter.OutputMode.BinaryMode }, - { - "extension": "3mf", - "description": i18n_catalog.i18nc("@item:inlistbox", "Universal Cura Project"), - "mime_type": "application/x-ucp", - "mode": ThreeMFWriter.ThreeMFWriter.OutputMode.BinaryMode - } ] } metaData["workspace_writer"] = { diff --git a/resources/qml/Menus/FileMenu.qml b/resources/qml/Menus/FileMenu.qml index 5d252a32ba6..9589a9da341 100644 --- a/resources/qml/Menus/FileMenu.qml +++ b/resources/qml/Menus/FileMenu.qml @@ -51,6 +51,7 @@ Cura.Menu "filter_by_machine": false, "file_type": "workspace", "preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", + "limit_mimetypes":["application/vnd.ms-package.3dmanufacturing-3dmodel+xml"], }; if (UM.Preferences.getValue("cura/dialog_on_project_save")) { From 8308b640ca20096c8ed6ca3dc5cae7ce32698af1 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Thu, 14 Mar 2024 16:02:35 +0100 Subject: [PATCH 666/765] Revert "Optimize overridden calculated settings computation" This reverts commit 42b72f81bb16ffa6912eb96aed29a3fd3349af56. --- cura/Settings/SettingInheritanceManager.py | 45 +++++++--------------- 1 file changed, 13 insertions(+), 32 deletions(-) diff --git a/cura/Settings/SettingInheritanceManager.py b/cura/Settings/SettingInheritanceManager.py index 26d07733693..5ae00ae2719 100644 --- a/cura/Settings/SettingInheritanceManager.py +++ b/cura/Settings/SettingInheritanceManager.py @@ -32,7 +32,6 @@ def __init__(self, parent = None) -> None: self._global_container_stack = None # type: Optional[ContainerStack] self._settings_with_inheritance_warning = [] # type: List[str] self._active_container_stack = None # type: Optional[ExtruderStack] - self._active_containers = [] # type: List[ContainerInterface] self._update_timer = QTimer() self._update_timer.setInterval(500) @@ -102,7 +101,6 @@ def _onActiveExtruderChanged(self) -> None: new_active_stack = ExtruderManager.getInstance().getActiveExtruderStack() if not new_active_stack: self._active_container_stack = None - self._active_containers = [] return if new_active_stack != self._active_container_stack: # Check if changed @@ -116,13 +114,6 @@ def _onActiveExtruderChanged(self) -> None: self._active_container_stack.containersChanged.connect(self._onContainersChanged) self._update_timer.start() # Ensure that the settings_with_inheritance_warning list is populated. - ## Mash all containers for all the stacks together. - self._active_containers = [] - stack = self._active_container_stack - while stack: - self._active_containers.extend(stack.getContainers()) - stack = stack.getNextStack() - def _onPropertyChanged(self, key: str, property_name: str) -> None: if (property_name == "value" or property_name == "enabled") and self._global_container_stack: definitions = self._global_container_stack.definition.findDefinitions(key = key) # type: List["SettingDefinition"] @@ -180,6 +171,7 @@ def settingsWithInheritanceWarning(self) -> List[str]: def _settingIsOverwritingInheritance(self, key: str, stack: ContainerStack = None) -> bool: """Check if a setting has an inheritance function that is overwritten""" + has_setting_function = False if not stack: stack = self._active_container_stack if not stack: # No active container stack yet! @@ -187,6 +179,9 @@ def _settingIsOverwritingInheritance(self, key: str, stack: ContainerStack = Non if self._active_container_stack is None: return False + all_keys = self._active_container_stack.getAllKeys() + + containers = [] # type: List[ContainerInterface] has_user_state = stack.getProperty(key, "state") == InstanceState.User """Check if the setting has a user state. If not, it is never overwritten.""" @@ -194,13 +189,6 @@ def _settingIsOverwritingInheritance(self, key: str, stack: ContainerStack = Non if not has_user_state: return False - return self._userSettingIsOverwritingInheritance(key, stack, self._active_container_stack.getAllKeys()) - - def _userSettingIsOverwritingInheritance(self, key: str, stack: ContainerStack, all_keys) -> bool: - """Check if a setting has an inheritance function that is overwritten""" - - has_setting_function = False - # If a setting is not enabled, don't label it as overwritten (It's never visible anyway). if not stack.getProperty(key, "enabled"): return False @@ -211,8 +199,12 @@ def _userSettingIsOverwritingInheritance(self, key: str, stack: ContainerStack, if user_container and isinstance(user_container.getProperty(key, "value"), SettingFunction): return False + ## Mash all containers for all the stacks together. + while stack: + containers.extend(stack.getContainers()) + stack = stack.getNextStack() has_non_function_value = False - for container in self._active_containers: + for container in containers: try: value = container.getProperty(key, "value") except AttributeError: @@ -235,7 +227,6 @@ def _userSettingIsOverwritingInheritance(self, key: str, stack: ContainerStack, if has_setting_function: break # There is a setting function somewhere, stop looking deeper. - return has_setting_function and has_non_function_value def _update(self) -> None: @@ -246,20 +237,10 @@ def _update(self) -> None: return # Check all setting keys that we know of and see if they are overridden. - if self._active_container_stack: - all_keys = self._active_container_stack.getAllKeys() - - # Get user settings from all stacks - user_settings_keys = set() - stack = self._active_container_stack - while stack: - user_settings_keys.update(stack.userChanges.getAllKeys()) - stack = stack.getNextStack() - - for setting_key in user_settings_keys: - override = self._userSettingIsOverwritingInheritance(setting_key, self._active_container_stack, all_keys) - if override: - self._settings_with_inheritance_warning.append(setting_key) + for setting_key in self._global_container_stack.getAllKeys(): + override = self._settingIsOverwritingInheritance(setting_key) + if override: + self._settings_with_inheritance_warning.append(setting_key) # Check all the categories if any of their children have their inheritance overwritten. for category in self._global_container_stack.definition.findDefinitions(type = "category"): From b5940a54f4e9951433660570d1fdd903d5a36d6c Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Thu, 14 Mar 2024 16:17:24 +0100 Subject: [PATCH 667/765] fixing size of drop down CURA-11700 --- plugins/3MFReader/WorkspaceDialog.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index e617764700c..acc4ced404a 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -112,8 +112,8 @@ UM.Dialog anchors.topMargin: UM.Theme.getSize("default_margin").width * 3 anchors.right: parent.right anchors.rightMargin: UM.Theme.getSize("default_margin").width - width: UM.Theme.getSize("machine_selector_widget").width - height: UM.Theme.getSize("machine_selector_widget").height + width: Math.round(parent.width / 2.5) + height: UM.Theme.getSize("button").height machineListModel: manager.updatableMachinesModel machineName: manager.machineName From 40bc08f482bd9529be1a8f00f41b9b3fbf5a8109 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Thu, 14 Mar 2024 17:09:11 +0100 Subject: [PATCH 668/765] Apparantly the first time override is written it is not overriden by next upload. Now, it does CURA-11720 --- plugins/3MFReader/WorkspaceDialog.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index a8cdad92bdd..f0f74b60b76 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -171,6 +171,7 @@ UM.Dialog WorkspaceRow { + id: numberOfOverrides leftLabelText: catalog.i18nc("@action:label", "Settings Loaded from UCP file") rightLabelText: catalog.i18ncp("@action:label", "%1 override", "%1 overrides", manager.exportedSettingModel.rowCount()).arg(manager.exportedSettingModel.rowCount()) buttonText: tableViewSpecificSettings.shouldBeVisible ? catalog.i18nc("@action:button", "Hide settings") : catalog.i18nc("@action:button", "Show settings") @@ -204,6 +205,7 @@ UM.Dialog { tableModel.clear() tableModel.rows = modelRows + numberOfOverrides.rightLabelText = catalog.i18ncp("@action:label", "%1 override", "%1 overrides", manager.exportedSettingModel.rowCount()).arg(manager.exportedSettingModel.rowCount()) } } From e0f5d2595c3196e4a654f01c2b788084064d6231 Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Thu, 14 Mar 2024 18:45:40 +0100 Subject: [PATCH 669/765] Only save project as project (not ucp). If we don't limit this, the user would also have the basically fake option to save as UCP ... which would still save as a workspace/project instead, leading to much confusion. (This is the 2nd instance of where this needs to go actually...) part of CURA-11715 --- resources/qml/Menus/SaveProjectMenu.qml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/resources/qml/Menus/SaveProjectMenu.qml b/resources/qml/Menus/SaveProjectMenu.qml index 2140d5e0ef5..cd2b82daebe 100644 --- a/resources/qml/Menus/SaveProjectMenu.qml +++ b/resources/qml/Menus/SaveProjectMenu.qml @@ -28,7 +28,12 @@ Cura.Menu // Prevent shortcut triggering if the item is disabled! return } - var args = { "filter_by_machine": false, "file_type": "workspace", "preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml" }; + var args = { + "filter_by_machine": false, + "file_type": "workspace", + "preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", + "limit_mimetypes": ["application/vnd.ms-package.3dmanufacturing-3dmodel+xml"], + }; if (UM.Preferences.getValue("cura/dialog_on_project_save")) { saveWorkspaceDialog.deviceId = model.id From 2948af3f96eed29c8277a2f238e6365ccd7cd077 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 14 Mar 2024 22:29:28 +0100 Subject: [PATCH 670/765] Add upgrade script for changed `brim_location` setting CURA-11526 --- .../VersionUpgrade56to57/VersionUpgrade56to57.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/plugins/VersionUpgrade/VersionUpgrade56to57/VersionUpgrade56to57.py b/plugins/VersionUpgrade/VersionUpgrade56to57/VersionUpgrade56to57.py index 8e94f7963c6..5ac4907ecb5 100644 --- a/plugins/VersionUpgrade/VersionUpgrade56to57/VersionUpgrade56to57.py +++ b/plugins/VersionUpgrade/VersionUpgrade56to57/VersionUpgrade56to57.py @@ -37,6 +37,11 @@ def upgradePreferences(self, serialized: str, filename: str) -> Tuple[List[str], if removed in visible_settings: visible_settings.remove(removed) + if "brim_outside_only" in parser["values"]: + parser["values"]["brim_location"] = "outside" if bool( + parser["values"]["brim_outside_only"]) else "everywhere" + del parser["values"]["brim_outside_only"] + parser["general"]["visible_settings"] = ";".join(visible_settings) result = io.StringIO() @@ -68,6 +73,11 @@ def upgradeInstanceContainer(self, serialized: str, filename: str) -> Tuple[List if removed in parser["values"]: del parser["values"][removed] + if "brim_outside_only" in parser["values"]: + parser["values"]["brim_location"] = "outside" if bool( + parser["values"]["brim_outside_only"]) else "everywhere" + del parser["values"]["brim_outside_only"] + result = io.StringIO() parser.write(result) return [filename], [result.getvalue()] From b3317fdfc456d7ef82ba82e9ad9d4c6eb9c3e277 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 15 Mar 2024 09:56:36 +0100 Subject: [PATCH 671/765] Updated translations --- plugins/3MFWriter/__init__.py | 2 +- resources/i18n/de_DE/cura.po | 1575 ++- resources/i18n/de_DE/fdmextruder.def.json.po | 186 +- resources/i18n/de_DE/fdmprinter.def.json.po | 8640 ++++++++-------- .../de_DE/gradual_flow_settings.def.json.po | 55 +- resources/i18n/es_ES/cura.po | 1577 ++- resources/i18n/es_ES/fdmextruder.def.json.po | 186 +- resources/i18n/es_ES/fdmprinter.def.json.po | 8642 ++++++++-------- .../es_ES/gradual_flow_settings.def.json.po | 55 +- resources/i18n/fr_FR/cura.po | 1595 ++- resources/i18n/fr_FR/fdmextruder.def.json.po | 186 +- resources/i18n/fr_FR/fdmprinter.def.json.po | 8636 ++++++++-------- .../fr_FR/gradual_flow_settings.def.json.po | 55 +- resources/i18n/it_IT/cura.po | 1582 ++- resources/i18n/it_IT/fdmextruder.def.json.po | 186 +- resources/i18n/it_IT/fdmprinter.def.json.po | 8642 ++++++++-------- .../it_IT/gradual_flow_settings.def.json.po | 55 +- resources/i18n/ja_JP/cura.po | 1572 ++- resources/i18n/ja_JP/fdmextruder.def.json.po | 186 +- resources/i18n/ja_JP/fdmprinter.def.json.po | 8596 ++++++++-------- .../ja_JP/gradual_flow_settings.def.json.po | 55 +- resources/i18n/ko_KR/cura.po | 1572 ++- resources/i18n/ko_KR/fdmextruder.def.json.po | 186 +- resources/i18n/ko_KR/fdmprinter.def.json.po | 8600 ++++++++-------- .../ko_KR/gradual_flow_settings.def.json.po | 55 +- resources/i18n/nl_NL/cura.po | 1577 ++- resources/i18n/nl_NL/fdmextruder.def.json.po | 186 +- resources/i18n/nl_NL/fdmprinter.def.json.po | 8640 ++++++++-------- .../nl_NL/gradual_flow_settings.def.json.po | 55 +- resources/i18n/pt_PT/cura.po | 1578 ++- resources/i18n/pt_PT/fdmextruder.def.json.po | 186 +- resources/i18n/pt_PT/fdmprinter.def.json.po | 8654 ++++++++--------- .../pt_PT/gradual_flow_settings.def.json.po | 55 +- resources/i18n/ru_RU/cura.po | 1594 ++- resources/i18n/ru_RU/fdmextruder.def.json.po | 186 +- resources/i18n/ru_RU/fdmprinter.def.json.po | 8590 ++++++++-------- .../ru_RU/gradual_flow_settings.def.json.po | 55 +- resources/i18n/tr_TR/cura.po | 1580 ++- resources/i18n/tr_TR/fdmextruder.def.json.po | 186 +- resources/i18n/tr_TR/fdmprinter.def.json.po | 8642 ++++++++-------- .../tr_TR/gradual_flow_settings.def.json.po | 55 +- resources/i18n/zh_CN/cura.po | 1576 ++- resources/i18n/zh_CN/fdmextruder.def.json.po | 258 +- resources/i18n/zh_CN/fdmprinter.def.json.po | 8589 ++++++++-------- .../zh_CN/gradual_flow_settings.def.json.po | 55 +- 45 files changed, 55601 insertions(+), 59373 deletions(-) diff --git a/plugins/3MFWriter/__init__.py b/plugins/3MFWriter/__init__.py index 980aefdf851..74a15d0c5ea 100644 --- a/plugins/3MFWriter/__init__.py +++ b/plugins/3MFWriter/__init__.py @@ -45,7 +45,7 @@ def getMetaData(): }, { "extension": "3mf", - "description": i18n_catalog.i18nc("@item:inlistbox", "Universal Cura Project"), + "description": "Universal Cura Project", "mime_type": "application/x-ucp", "mode": ThreeMFWorkspaceWriter.ThreeMFWorkspaceWriter.OutputMode.BinaryMode } diff --git a/resources/i18n/de_DE/cura.po b/resources/i18n/de_DE/cura.po index a04b7e59640..5b740cb72c5 100644 --- a/resources/i18n/de_DE/cura.po +++ b/resources/i18n/de_DE/cura.po @@ -12,7 +12,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" msgstr "%(width).1f x %(depth).1f x %(height).1f mm" @@ -119,7 +118,7 @@ msgstr "&Projekt speichern ..." msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" msgid "&Save Universal Cura Project..." -msgstr "" +msgstr "&Speichern Universal Cura Projekt ..." msgctxt "@title:menu menubar:toplevel" msgid "&Settings" @@ -142,13 +141,9 @@ msgid "*You will need to restart the application for these changes to have effec msgstr "*Die Anwendung muss neu gestartet werden, damit die Änderungen in Kraft treten." msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "" -"- Materialprofile und Plug-ins aus dem Marketplace hinzufügen\n" -"- Materialprofile und Plug-ins sichern und synchronisieren\n" +msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgstr "- Materialprofile und Plug-ins aus dem Marketplace hinzufügen" +"- Materialprofile und Plug-ins sichern und synchronisieren" "- Ideenaustausch mit und Hilfe von mehr als 48.000 Benutzern in der UltiMaker Community" msgctxt "@heading" @@ -175,14 +170,6 @@ msgctxt "@item:inlistbox" msgid "3MF File" msgstr "3MF-Datei" -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF-Reader" - -msgctxt "name" -msgid "3MF Writer" -msgstr "3MF-Writer" - msgctxt "@error:zip" msgid "3MF Writer plug-in is corrupt." msgstr "Das 3MF-Writer-Plugin ist beschädigt." @@ -203,56 +190,37 @@ msgctxt "@label %i will be replaced with a profile name" msgid "Only user changed settings will be saved in the custom profile.
                                      For materials that support it, the new custom profile will inherit properties from %1." msgstr "Nur vom Benutzer geänderte Einstellungen werden im benutzerdefinierten Profil gespeichert.
                                      Für Materialien, bei denen dies unterstützt ist, übernimmt das neue benutzerdefinierte Profil Eigenschaften von %1." -#, python-brace-format msgctxt "@label OpenGL renderer" msgid "
                                    • OpenGL Renderer: {renderer}
                                    • " msgstr "
                                    • OpenGL-Renderer: {renderer}
                                    • " -#, python-brace-format msgctxt "@label OpenGL vendor" msgid "
                                    • OpenGL Vendor: {vendor}
                                    • " msgstr "
                                    • OpenGL-Anbieter: {vendor}
                                    • " -#, python-brace-format msgctxt "@label OpenGL version" msgid "
                                    • OpenGL Version: {version}
                                    • " msgstr "
                                    • OpenGL-Version: {version}
                                    • " msgctxt "@label crash message" -msgid "" -"

                                      A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

                                      \n" -"

                                      Please use the \"Send report\" button to post a bug report automatically to our servers

                                      \n" -" " -msgstr "" -"

                                      Ein schwerer Fehler ist in Cura aufgetreten. Senden Sie uns diesen Absturzbericht, um das Problem zu beheben

                                      \n" -"

                                      Verwenden Sie bitte die Schaltfläche „Bericht senden“, um den Fehlerbericht automatisch an unsere Server zu senden

                                      \n" +msgid "

                                      A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

                                      \n

                                      Please use the \"Send report\" button to post a bug report automatically to our servers

                                      \n " +msgstr "

                                      Ein schwerer Fehler ist in Cura aufgetreten. Senden Sie uns diesen Absturzbericht, um das Problem zu beheben

                                      " +"

                                      Verwenden Sie bitte die Schaltfläche „Bericht senden“, um den Fehlerbericht automatisch an unsere Server zu senden

                                      " " " msgctxt "@label crash message" -msgid "" -"

                                      Oops, UltiMaker Cura has encountered something that doesn't seem right.

                                      \n" -"

                                      We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

                                      \n" -"

                                      Backups can be found in the configuration folder.

                                      \n" -"

                                      Please send us this Crash Report to fix the problem.

                                      \n" -" " -msgstr "" -"

                                      Hoppla, bei UltiMaker Cura ist ein Problem aufgetreten.

                                      \n" -"

                                      Beim Start ist ein nicht behebbarer Fehler aufgetreten. Er wurde möglicherweise durch einige falsche Konfigurationsdateien verursacht. Wir empfehlen ein Backup und Reset Ihrer Konfiguration.

                                      \n" -"

                                      Backups sind im Konfigurationsordner abgelegt.

                                      \n" -"

                                      Senden Sie uns diesen Absturzbericht bitte, um das Problem zu beheben.

                                      \n" +msgid "

                                      Oops, UltiMaker Cura has encountered something that doesn't seem right.

                                      \n

                                      We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

                                      \n

                                      Backups can be found in the configuration folder.

                                      \n

                                      Please send us this Crash Report to fix the problem.

                                      \n " +msgstr "

                                      Hoppla, bei UltiMaker Cura ist ein Problem aufgetreten.

                                      " +"

                                      Beim Start ist ein nicht behebbarer Fehler aufgetreten. Er wurde möglicherweise durch einige falsche Konfigurationsdateien verursacht. Wir empfehlen ein Backup und Reset Ihrer Konfiguration.

                                      " +"

                                      Backups sind im Konfigurationsordner abgelegt.

                                      " +"

                                      Senden Sie uns diesen Absturzbericht bitte, um das Problem zu beheben.

                                      " " " -#, python-brace-format msgctxt "@info:status" -msgid "" -"

                                      One or more 3D models may not print optimally due to the model size and material configuration:

                                      \n" -"

                                      {model_names}

                                      \n" -"

                                      Find out how to ensure the best possible print quality and reliability.

                                      \n" -"

                                      View print quality guide

                                      " -msgstr "" -"

                                      Ein oder mehrere 3D-Modelle können möglicherweise aufgrund der Modellgröße und Materialkonfiguration nicht optimal gedruckt werden:

                                      \n" -"

                                      {model_names}

                                      \n" -"

                                      Erfahren Sie, wie Sie die bestmögliche Druckqualität und Zuverlässigkeit sicherstellen.

                                      \n" +msgid "

                                      One or more 3D models may not print optimally due to the model size and material configuration:

                                      \n

                                      {model_names}

                                      \n

                                      Find out how to ensure the best possible print quality and reliability.

                                      \n

                                      View print quality guide

                                      " +msgstr "

                                      Ein oder mehrere 3D-Modelle können möglicherweise aufgrund der Modellgröße und Materialkonfiguration nicht optimal gedruckt werden:

                                      " +"

                                      {model_names}

                                      " +"

                                      Erfahren Sie, wie Sie die bestmögliche Druckqualität und Zuverlässigkeit sicherstellen.

                                      " "

                                      Leitfaden zu Druckqualität anzeigen

                                      " msgctxt "@label" @@ -267,7 +235,7 @@ msgstr[1] "Für mehrere Drucker ist keine Cloud-Verbindung verfügbar" msgctxt "@text" msgid "A highly dense and strong part but at a slower print time. Great for functional parts." -msgstr "" +msgstr "Ein sehr dichtes und starkes Teil, aber mit einer langsameren Druckzeit. Ideal für Funktionsteile." msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." @@ -277,10 +245,6 @@ msgctxt "@item:inlistbox" msgid "AMF File" msgstr "AMF-Datei" -msgctxt "name" -msgid "AMF Reader" -msgstr "AMF-Reader" - msgctxt "@label" msgid "Abort" msgstr "Abbrechen" @@ -317,10 +281,6 @@ msgctxt "@button" msgid "Accept" msgstr "Akzeptieren" -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Akzeptiert den G-Code und sendet diesen an einen Drucker. Das Plugin kann auch die Firmware aktualisieren." - msgctxt "@label" msgid "Account synced" msgstr "Konto wurde synchronisiert" @@ -413,7 +373,6 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Drucker manuell hinzufügen" -#, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "Drucker {name} ({model}) aus Ihrem Konto wird hinzugefügt" @@ -454,7 +413,6 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Alle Dateien (*)" -#, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "Alle unterstützten Typen ({0})" @@ -463,10 +421,6 @@ msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "Senden von anonymen Daten erlauben" -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Ermöglicht das Laden und Anzeigen von G-Code-Dateien." - msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Stets nachfragen" @@ -505,7 +459,7 @@ msgstr "Anonym" msgctxt "@option:radio" msgid "Anonymous crash reports" -msgstr "" +msgstr "Anonyme Absturzberichte" msgctxt "@label Description for application component" msgid "Application framework" @@ -513,7 +467,7 @@ msgstr "Anwendungsrahmenwerk" msgctxt "@title:column" msgid "Applies on" -msgstr "" +msgstr "Gilt für" msgctxt "@label" msgid "Apply Extruder offsets to GCode" @@ -547,7 +501,6 @@ msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to move %1 to the top of the queue?" msgstr "Soll dieser %1 wirklich an den Anfang der Warteschlange vorgezogen werden?" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "Möchten Sie {printer_name} wirklich vorübergehend entfernen?" @@ -560,7 +513,6 @@ msgctxt "@label (%1 is object name)" msgid "Are you sure you wish to remove %1? This cannot be undone!" msgstr "Möchten Sie %1 wirklich entfernen? Dies kann nicht rückgängig gemacht werden!" -#, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "Möchten Sie {0} wirklich entfernen? Der Vorgang kann nicht rückgängig gemacht werden!" @@ -625,10 +577,6 @@ msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Backup und Reset der Konfiguration" -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Sicherung und Wiederherstellen Ihrer Konfiguration." - msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "Materialeinstellungen und Plug-ins sichern und synchronisieren" @@ -703,7 +651,7 @@ msgstr "Berechnet" msgctxt "@window:text" msgid "Camera navigation:" -msgstr "" +msgstr "Kamera-Navigation:" msgctxt "@window:text" msgid "Camera rendering:" @@ -725,12 +673,10 @@ msgctxt "@label" msgid "Can't connect to your UltiMaker printer?" msgstr "Sie können keine Verbindung zu Ihrem UltiMaker-Drucker herstellen?" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "Import des Profils aus Datei {0} kann erst durchgeführt werden, wenn ein Drucker hinzugefügt wurde." -#, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "Wenn G-Code geladen wird, kann keine weitere Datei geöffnet werden. Wichtige {0} werden übersprungen." @@ -803,21 +749,8 @@ msgctxt "@label" msgid "Checking..." msgstr "Überprüfung läuft ..." -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Nach Firmware-Updates suchen." - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Überprüft Modelle und Druckkonfiguration auf mögliche Probleme und erteilt Empfehlungen." - msgctxt "@label" -msgid "" -"Chooses between the techniques available to generate support. \n" -"\n" -"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" -"\n" -"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "Wählt zwischen den verfügbaren Techniken zur Erzeugung von Stützstrukturen. Mit „Normal“ wird eine Stützstruktur direkt unter den überhängenden Teilen erzeugt, die direkt darauf liegen. In der Einstellung „Tree“ wird eine Baumstützstruktur erzeugt, die zu den überhängenden Teilen reicht und diese stützt. Die Stützstruktur verästelt sich innerhalb des Modells und stützt es so gut wie möglich vom Druckbett aus." msgctxt "@action:inmenu menubar:edit" @@ -896,14 +829,6 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Komprimierte G-Code-Datei" -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Reader für komprimierten G-Code" - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Writer für komprimierten G-Code" - msgctxt "@title:window" msgid "Configuration Changes" msgstr "Konfigurationsänderungen" @@ -976,10 +901,6 @@ msgctxt "@info:status" msgid "Connected via cloud" msgstr "Über Cloud verbunden" -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Stellt eine Verbindung zur Digitalen Bibliothek her und ermöglicht es Cura, Dateien aus der Digitalen Bibliothek zu öffnen und darin zu speichern." - msgctxt "@tooltip:button" msgid "Consult the UltiMaker Community." msgstr "Wenden Sie sich an die UltiMaker Community." @@ -1020,7 +941,6 @@ msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "Konnte kein Archiv von Benutzer-Datenverzeichnis {} erstellen" -#, python-brace-format msgctxt "@info:status Don't translate the tag {device}!" msgid "Could not find a file name when trying to write to {device}." msgstr "Bei dem Versuch, auf {device} zu schreiben, wurde ein Dateiname nicht gefunden." @@ -1049,12 +969,10 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Materialarchiv konnte nicht in {} gespeichert werden:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "Konnte nicht als {0} gespeichert werden: {1}" -#, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Konnte nicht auf dem Wechseldatenträger gespeichert werden {0}: {1}" @@ -1063,31 +981,19 @@ msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "Daten konnten nicht in Drucker geladen werden." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"No permission to execute process." -msgstr "" -"EnginePlugin konnte nicht gestartet werden: {self._plugin_id}\n" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." +msgstr "EnginePlugin konnte nicht gestartet werden: {self._plugin_id}" "Keine Berechtigung zum Ausführen des Prozesses." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Operating system is blocking it (antivirus?)" -msgstr "" -"EnginePlugin konnte nicht gestartet werden: {self._plugin_id}\n" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" +msgstr "EnginePlugin konnte nicht gestartet werden: {self._plugin_id}" "Betriebssystem blockiert es (Antivirenprogramm?)" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Resource is temporarily unavailable" -msgstr "" -"EnginePlugin konnte nicht gestartet werden: {self._plugin_id}\n" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" +msgstr "EnginePlugin konnte nicht gestartet werden: {self._plugin_id}" "Ressource ist vorübergehend nicht verfügbar" msgctxt "@title:window" @@ -1130,10 +1036,6 @@ msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Erstellen Sie Druckprojekte in der digitalen Bibliothek." -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Erstellt ein Radierernetz, um den Druck von Stützstrukturen in bestimmten Positionen zu blockieren" - msgctxt "@info:backup_status" msgid "Creating your backup..." msgstr "Ihr Backup wird erstellt..." @@ -1146,22 +1048,10 @@ msgctxt "@title:window" msgid "Cura Backups" msgstr "Cura-Backups" -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura-Backups" - msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Cura-Profil" -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura-Profil-Reader" - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura-Profil-Writer" - msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Cura-Projekt 3MF-Datei" @@ -1174,17 +1064,13 @@ msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura kann nicht starten" -#, python-brace-format msgctxt "@info:status" msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." msgstr "Cura hat Materialprofile entdeckt, die auf dem Host-Drucker der Gruppe {0} noch nicht installiert wurden." msgctxt "@info:credit" -msgid "" -"Cura is developed by UltiMaker in cooperation with the community.\n" -"Cura proudly uses the following open source projects:" -msgstr "" -"Cura wurde von UltiMaker in Zusammenarbeit mit der Community entwickelt.\n" +msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" +msgstr "Cura wurde von UltiMaker in Zusammenarbeit mit der Community entwickelt." "Cura verwendet mit Stolz die folgenden Open Source-Projekte:" msgctxt "@label" @@ -1195,18 +1081,6 @@ msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura-Version" -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine Backend" - -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "CuraEngine-Plugin zur stufenweisen Glättung des Flusses, um Sprünge bei hohem Fluss zu begrenzen" - -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - msgctxt "@label" msgid "Currency:" msgstr "Währung:" @@ -1437,7 +1311,7 @@ msgstr "Entwurf" msgctxt "@action:inmenu menubar:edit" msgid "Drop All Models to buildplate" -msgstr "" +msgstr "Alle Modelle auf Bauplatte ablegen" msgctxt "@action:button" msgid "Duplicate" @@ -1463,12 +1337,10 @@ msgctxt "@action:button" msgid "Eject" msgstr "Auswerfen" -#, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "Wechseldatenträger auswerfen {0}" -#, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "Ausgeworfen {0}. Sie können den Datenträger jetzt sicher entfernen." @@ -1493,10 +1365,6 @@ msgctxt "@label" msgid "Enabled" msgstr "Aktiviert" -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Ermöglicht Erstellung von druckbarer Geometrie aus einer 2D-Bilddatei." - msgctxt "@title:label" msgid "End G-code" msgstr "Ende G-Code" @@ -1567,7 +1435,7 @@ msgstr "Auswahl exportieren..." msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Export Universal Cura Project" -msgstr "" +msgstr "Universal Cura Projekt exportieren" msgctxt "@button" msgid "Export material archive" @@ -1577,7 +1445,6 @@ msgctxt "@info:title" msgid "Export succeeded" msgstr "Export erfolgreich ausgeführt" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Profil wurde nach {0} exportiert" @@ -1586,10 +1453,6 @@ msgctxt "@tooltip:button" msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "Erweitern Sie UltiMaker Cura durch Plugins und Materialprofile." -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Erweiterung, die eine Nachbearbeitung von Skripten ermöglicht, die von Benutzern erstellt wurden" - msgctxt "@label" msgid "Extruder" msgstr "Extruder" @@ -1604,7 +1467,7 @@ msgstr "G-Code Extruder-Ende" msgctxt "@label" msgid "Extruder End G-code duration" -msgstr "" +msgstr "Extruder Ende G-Code Dauer" msgctxt "@title:label" msgid "Extruder Start G-code" @@ -1612,12 +1475,11 @@ msgstr "G-Code Extruder-Start" msgctxt "@label" msgid "Extruder Start G-code duration" -msgstr "" +msgstr "Extruder Start G-Code Dauer" -#, python-brace-format msgctxt "@label" msgid "Extruder {0}" -msgstr "" +msgstr "Extruder {0}" msgctxt "@info:title" msgid "Extruder(s) Disabled" @@ -1639,7 +1501,6 @@ msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "Die Erstellung eines Materialarchivs zur Synchronisierung mit Druckern ist fehlgeschlagen." -#, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "Auswurf fehlgeschlagen {0}. Möglicherweise wird das Laufwerk von einem anderen Programm verwendet." @@ -1648,27 +1509,22 @@ msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "Exportieren des Materials nach %1: %2 schlug fehl" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Export des Profils nach {0} fehlgeschlagen: {1}" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Export des Profils nach {0} fehlgeschlagen: Fehlermeldung von Writer-Plugin." -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Import des Profils aus Datei {0} fehlgeschlagen:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Import des Profils aus Datei {0} fehlgeschlagen:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Import des Profils aus Datei {0}: {1} fehlgeschlagen" @@ -1685,10 +1541,9 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Speichern des Materialarchivs fehlgeschlagen" -#, python-brace-format msgctxt "@info:status" msgid "Failed writing to specific cloud printer: {0} not in remote clusters." -msgstr "" +msgstr "Schreiben auf bestimmten Cloud-Drucker fehlgeschlagen: {0} nicht in entfernten Clustern." msgctxt "@label:category menu label" msgid "Favorites" @@ -1714,7 +1569,6 @@ msgctxt "@info:title" msgid "File Saved" msgstr "Datei wurde gespeichert" -#, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Datei {0} enthält kein gültiges Profil." @@ -1747,14 +1601,6 @@ msgctxt "@title:window" msgid "Firmware Update" msgstr "Firmware-Aktualisierung" -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Firmware-Update-Prüfer" - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Firmware-Aktualisierungsfunktion" - msgctxt "@label" msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." msgstr "Firmware kann nicht aktualisiert werden, da die Verbindung zum Drucker die Firmware-Aktualisierung nicht unterstützt." @@ -1832,7 +1678,7 @@ msgid "Force layer view compatibility mode (restart required)" msgstr "Schichtenansicht Kompatibilitätsmodus erzwingen (Neustart erforderlich)" msgid "FreeCAD trackpad" -msgstr "" +msgstr "FreeCAD Trackpad" msgctxt "@action:inmenu menubar:view" msgid "Front View" @@ -1854,18 +1700,6 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "G-Code-Datei" -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "G-Code-Profil-Reader" - -msgctxt "name" -msgid "G-code Reader" -msgstr "G-Code-Reader" - -msgctxt "name" -msgid "G-code Writer" -msgstr "G-Code-Writer" - msgctxt "@label" msgid "G-code flavor" msgstr "G-Code-Variante" @@ -1924,7 +1758,7 @@ msgstr "Erste Schritte" msgctxt "@label" msgid "Global" -msgstr "" +msgstr "Global" msgctxt "@title:tab" msgid "Global Settings" @@ -1938,7 +1772,6 @@ msgctxt "@label" msgid "Grid Placement" msgstr "Rasterplatzierung" -#, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "Gruppe #{group_nr}" @@ -1977,7 +1810,7 @@ msgstr "Alle verbundenen Drucker ausblenden" msgctxt "@action:button" msgid "Hide settings" -msgstr "" +msgstr "Einstellungen ausblenden" msgctxt "@action:menu" msgid "Hide this setting" @@ -2015,10 +1848,6 @@ msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "Wenn Ihr Drucker nicht aufgeführt ist, lesen Sie die
                                      Anleitung für Fehlerbehebung für Netzwerkdruck" -msgctxt "name" -msgid "Image Reader" -msgstr "Bild-Reader" - msgctxt "@action:button" msgid "Import" msgstr "Importieren" @@ -2057,7 +1886,7 @@ msgstr "Um das Paket nutzen zu können, müssen Sie Cura neu starten" msgctxt "@option:radio" msgid "Include UltiMaker account name" -msgstr "" +msgstr "UltiMaker-Kontoname einschließen" msgctxt "@label" msgid "Infill" @@ -2303,10 +2132,6 @@ msgctxt "@info:tooltip" msgid "Left View" msgstr "Ansicht von links" -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Cura-Vorgängerprofil-Reader" - msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "Lassen Sie es die Entwickler wissen, falls etwas schief läuft." @@ -2387,10 +2212,6 @@ msgctxt "@title:groupbox" msgid "Logs" msgstr "Protokolle" -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Protokolliert bestimmte Ereignisse, damit diese vom Absturzbericht verwendet werden können" - msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Verbindung zum Drucker wurde unterbrochen" @@ -2399,10 +2220,6 @@ msgctxt "@action" msgid "Machine Settings" msgstr "Geräteeinstellungen" -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Beschreibung Geräteeinstellungen" - msgctxt "@backuplist:label" msgid "Machines" msgstr "Maschinen" @@ -2419,10 +2236,6 @@ msgctxt "@item:inlistbox" msgid "Makerbot Printfile" msgstr "Makerbot-Druckdatei" -msgctxt "name" -msgid "Makerbot Printfile Writer" -msgstr "Makerbot-Druckdatei-Writer" - msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "MakerbotWriter konnte nicht im angegebenen Pfad speichern." @@ -2479,14 +2292,6 @@ msgctxt "@text" msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." msgstr "Verwalten Sie hier Ihre UltiMaker Cura Plug-ins und Ihre Materialprofile. Halten Sie Ihre Plug-ins auf dem neuesten Stand und sichern Sie Ihr Setup regelmäßig." -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "Verwaltet die Erweiterungen der Anwendung und ermöglicht das Durchsuchen von Erweiterungen auf der Ultimaker-Website." - -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "Verwaltet Netzwerkverbindungen zu Ultimaker-Netzwerkdruckern." - msgctxt "@label" msgid "Manufacturer" msgstr "Hersteller" @@ -2499,10 +2304,6 @@ msgctxt "@label" msgid "Marketplace" msgstr "Marktplatz" -msgctxt "name" -msgid "Marketplace" -msgstr "Marktplatz" - msgctxt "@action:label" msgid "Material" msgstr "Material" @@ -2519,10 +2320,6 @@ msgctxt "@label:listbox" msgid "Material Color" msgstr "Materialfarbe" -msgctxt "name" -msgid "Material Profiles" -msgstr "Materialprofile" - msgctxt "@label" msgid "Material Type" msgstr "Materialtyp" @@ -2567,10 +2364,6 @@ msgctxt "@action:label" msgid "Mode" msgstr "Modus" -msgctxt "name" -msgid "Model Checker" -msgstr "Modell-Prüfer" - msgctxt "@info:title" msgid "Model Errors" msgstr "Modellfehler" @@ -2587,10 +2380,6 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "Überwachen" -msgctxt "name" -msgid "Monitor Stage" -msgstr "Überwachungsstufe" - msgctxt "@action:button" msgid "Monitor print" msgstr "Druck überwachen" @@ -2665,7 +2454,6 @@ msgctxt "@info:title" msgid "Network error" msgstr "Netzwerkfehler" -#, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" msgstr "Neue %s-stabile Firmware verfügbar" @@ -2678,7 +2466,6 @@ msgctxt "@label" msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." msgstr "Neue UltiMaker-Drucker können mit Digital Factory verbunden und aus der Ferne überwacht werden." -#, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." msgstr "Es können neue Funktionen oder Bug-Fixes für Ihren {machine_name} verfügbar sein! Falls noch nicht geschehen, wird empfohlen, die Firmware auf Ihrem Drucker auf Version {latest_version} zu aktualisieren." @@ -2725,7 +2512,6 @@ msgctxt "@label" msgid "No cost estimation available" msgstr "Keine Kostenschätzung verfügbar" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Kein benutzerdefiniertes Profil für das Importieren in Datei {0}" @@ -2764,7 +2550,7 @@ msgstr "Keine Ergebnisse mit dem aktuellen Filter gefunden" msgctxt "@label" msgid "No specific value has been set" -msgstr "" +msgstr "Es wurde kein spezifischer Wert festgelegt" msgctxt "@label" msgid "No time estimation available" @@ -2862,14 +2648,13 @@ msgctxt "@label" msgid "Only Show Top Layers" msgstr "Nur obere Schichten anzeigen" -#, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Es kann nur jeweils ein G-Code gleichzeitig geladen werden. Wichtige {0} werden übersprungen." msgctxt "@message" msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." -msgstr "" +msgstr "Ups! Während Ihres Slicing-Vorgangs ist ein unerwarteter Fehler aufgetreten. Seien Sie versichert, dass wir die Absturzprotokolle automatisch zur Analyse erhalten haben, wenn Sie die gemeinsame Nutzung von Daten in Ihren Einstellungen nicht deaktiviert haben. Um uns weiter zu helfen, sollten Sie Ihre Projektdetails in unserem Problem-Tracker veröffentlichen." msgctxt "@action:button" msgid "Open" @@ -2901,11 +2686,11 @@ msgstr "Projektdatei öffnen" msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Open Universal Cura Project (UCP)" -msgstr "" +msgstr "Universal Cura Projekt (UCP) öffnen" msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Open Universal Cura Project (UCP) file" -msgstr "" +msgstr "Universal Cura Projekt (UCP)-Datei öffnen" msgctxt "@action:label" msgid "Open With" @@ -2913,7 +2698,7 @@ msgstr "Öffnen" msgctxt "@action:button" msgid "Open as UCP" -msgstr "" +msgstr "Als UCP öffnen" msgctxt "@action:button" msgid "Open as project" @@ -3036,10 +2821,6 @@ msgctxt "@label" msgid "Per Model Settings" msgstr "Einstellungen pro Objekt" -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Werkzeug „Einstellungen pro Objekt“" - msgid "Perspective" msgstr "Ansicht" @@ -3076,14 +2857,9 @@ msgid "Please give the required permissions when authorizing this application." msgstr "Erteilen Sie bitte die erforderlichen Freigaben bei der Autorisierung dieser Anwendung." msgctxt "@info" -msgid "" -"Please make sure your printer has a connection:\n" -"- Check if the printer is turned on.\n" -"- Check if the printer is connected to the network.\n" -"- Check if you are signed in to discover cloud-connected printers." -msgstr "" -"Stellen Sie sicher, dass der Drucker verbunden ist:\n" -"– Prüfen Sie, ob der Drucker eingeschaltet ist.– Prüfen Sie, ob der Drucker mit dem Netzwerk verbunden ist.\n" +msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." +msgstr "Stellen Sie sicher, dass der Drucker verbunden ist:" +"– Prüfen Sie, ob der Drucker eingeschaltet ist.– Prüfen Sie, ob der Drucker mit dem Netzwerk verbunden ist." "– Prüfen Sie, ob Sie angemeldet sind, falls Sie über die Cloud verbundene Drucker suchen möchten." msgctxt "@text" @@ -3111,15 +2887,10 @@ msgid "Please remove the print" msgstr "Bitte den Ausdruck entfernen" msgctxt "@info:status" -msgid "" -"Please review settings and check if your models:\n" -"- Fit within the build volume\n" -"- Are assigned to an enabled extruder\n" -"- Are not all set as modifier meshes" -msgstr "" -"Bitte überprüfen Sie die Einstellungen und prüfen Sie, ob Ihre Modelle:\n" -"- Mit der Druckraumgröße kompatibel sind\n" -"- Einem aktiven Extruder zugewiesen sind\n" +msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" +msgstr "Bitte überprüfen Sie die Einstellungen und prüfen Sie, ob Ihre Modelle:" +"- Mit der Druckraumgröße kompatibel sind" +"- Einem aktiven Extruder zugewiesen sind" "- Nicht alle als Modifier Meshes eingerichtet sind" msgctxt "@label" @@ -3132,7 +2903,7 @@ msgstr "Bitte melden Sie sich an, um verifizierte Plugins und Materialien für U msgctxt "@info:tooltip" msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." -msgstr "" +msgstr "Bitte melden Sie sich bei Ihrem UltiMaker-Konto an, um das Senden nicht-anonymer Daten zu ermöglichen." msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." @@ -3174,10 +2945,6 @@ msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Nachbearbeitung" -msgctxt "name" -msgid "Post Processing" -msgstr "Nachbearbeitung" - msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "Plugin Nachbearbeitung" @@ -3194,10 +2961,6 @@ msgctxt "@item:inmenu" msgid "Prepare" msgstr "Vorbereiten" -msgctxt "name" -msgid "Prepare Stage" -msgstr "Vorbereitungsstufe" - msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "Vorbereitung läuft..." @@ -3218,10 +2981,6 @@ msgctxt "@item:inmenu" msgid "Preview" msgstr "Vorschau" -msgctxt "name" -msgid "Preview Stage" -msgstr "Vorschaustufe" - msgctxt "@tooltip" msgid "Prime Tower" msgstr "Einzugsturm" @@ -3422,7 +3181,6 @@ msgctxt "@title:column" msgid "Profile settings" msgstr "Profileinstellungen" -#, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Profil {0} hat einen unbekannten Dateityp oder ist beschädigt." @@ -3447,22 +3205,18 @@ msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Programmiersprache" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "Projektdatei {0} enthält einen unbekannten Maschinentyp {1}. Importieren der Maschine ist nicht möglich. Stattdessen werden die Modelle importiert." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "Projektdatei {0} ist beschädigt: {1}." -#, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." msgstr "Projektdatei {0} verwendet Profile, die nicht mit dieser UltiMaker Cura-Version kompatibel sind." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "Auf Projektdatei {0} kann plötzlich nicht mehr zugegriffen werden: {1}." @@ -3471,147 +3225,42 @@ msgctxt "@label" msgid "Properties" msgstr "Eigenschaften" -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Ermöglicht Gerätemaßnahmen für die Aktualisierung der Firmware." - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Bietet eine Überwachungsstufe in Cura." +msgctxt "@label" +msgid "PyQt version" +msgstr "PyQt Version" -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Bietet eine normale, solide Netzansicht." +msgctxt "@Label Description for application dependency" +msgid "Python Error tracking library" +msgstr "Python-Fehlerverfolgungs-Bibliothek" -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Bietet eine Vorbereitungsstufe in Cura." +msgctxt "@label Description for application dependency" +msgid "Python bindings for Clipper" +msgstr "Python-Anbindungen für Clipper" -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Bietet eine Vorschaustufe in Cura." +msgctxt "@label Description for application component" +msgid "Python bindings for libnest2d" +msgstr "Python-Bindungen für libnest2d" -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Beschreibt die Durchführung der Geräteeinstellung (z. B. Druckabmessung, Düsengröße usw.)" +msgctxt "@label" +msgid "Qt version" +msgstr "Qt Version" -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Bietet Möglichkeiten, um XML-basierte Materialprofile zu lesen und zu schreiben." +msgctxt "@info:status" +msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." +msgstr "Der Qualitätstyp „{0}“ ist nicht mit der aktuell aktiven Maschinendefinition „{1}“ kompatibel." -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Ermöglicht Maschinenabläufe für UltiMaker-Maschinen (z. B. Assistent für Bettnivellierung, Auswahl von Upgrades usw.)" +msgctxt "@info:title" +msgid "Queue Full" +msgstr "Warteschlange voll" -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Ermöglicht Hotplugging des Wechseldatenträgers und Beschreiben." - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Ermöglicht das Exportieren von Cura-Profilen." - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Ermöglicht das Importieren von Cura-Profilen." - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Ermöglicht das Importieren von Profilen aus G-Code-Dateien." - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Bietet Unterstützung für den Import von Profilen der Vorgängerversionen von Cura." - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Ermöglicht das Lesen von 3MF-Dateien." - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Ermöglicht das Lesen von AMF-Dateien." - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Bietet Unterstützung für das Lesen von Ultimaker Format Packages." - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Bietet Unterstützung für das Lesen von X3D-Dateien." - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Unterstützt das Lesen von Modelldateien." - -msgctxt "description" -msgid "Provides support for writing 3MF and UCP files." -msgstr "" - -msgctxt "description" -msgid "Provides support for writing MakerBot Format Packages." -msgstr "Bietet Unterstützung für das Schreiben von MakerBot-Formatpaketen." - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Bietet Unterstützung für das Schreiben von Ultimaker Format Packages." - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Ermöglicht die Einstellungen pro Objekt." - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Stellt die Röntgen-Ansicht bereit." - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Stellt die Verbindung zum Slicing-Backend der CuraEngine her." - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Stellt eine Vorschau der Daten der Slice-Ebene bereit." - -msgctxt "@label" -msgid "PyQt version" -msgstr "PyQt Version" - -msgctxt "@Label Description for application dependency" -msgid "Python Error tracking library" -msgstr "Python-Fehlerverfolgungs-Bibliothek" - -msgctxt "@label Description for application dependency" -msgid "Python bindings for Clipper" -msgstr "Python-Anbindungen für Clipper" - -msgctxt "@label Description for application component" -msgid "Python bindings for libnest2d" -msgstr "Python-Bindungen für libnest2d" - -msgctxt "@label" -msgid "Qt version" -msgstr "Qt Version" - -#, python-brace-format -msgctxt "@info:status" -msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." -msgstr "Der Qualitätstyp „{0}“ ist nicht mit der aktuell aktiven Maschinendefinition „{1}“ kompatibel." - -msgctxt "@info:title" -msgid "Queue Full" -msgstr "Warteschlange voll" - -msgctxt "@label" -msgid "Queued" -msgstr "In Warteschlange" +msgctxt "@label" +msgid "Queued" +msgstr "In Warteschlange" msgctxt "@info:button, %1 is the application name" msgid "Quit %1" msgstr "%1 beenden" -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Liest G-Code-Format aus einem komprimierten Archiv." - msgctxt "@button" msgid "Recommended" msgstr "Empfohlen" @@ -3664,10 +3313,6 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "Wechseldatenträger" -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Ausgabegerät-Plugin für Wechseldatenträger" - msgctxt "@action:button" msgid "Remove" msgstr "Entfernen" @@ -3790,11 +3435,11 @@ msgstr "Cura-Projekt speichern" msgctxt "@option" msgid "Save Cura project and .makerbot print file" -msgstr "" +msgstr "Cura Projekt und .makerbot Druckdatei speichern" msgctxt "@option" msgid "Save Cura project and .ufp print file" -msgstr "" +msgstr "Cura Projekt und .ufp Druckdatei speichern" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3822,7 +3467,7 @@ msgstr "Neues Profil speichern" msgctxt "@action:button" msgid "Save project" -msgstr "" +msgstr "Projekt speichern" msgctxt "@text" msgid "Save the .umm file on a USB stick." @@ -3832,12 +3477,10 @@ msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "Speichern auf Wechseldatenträger" -#, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "Auf Wechseldatenträger speichern {0}" -#, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Auf Wechseldatenträger {0} gespeichert als {1}" @@ -3846,7 +3489,6 @@ msgctxt "@info:title" msgid "Saving" msgstr "Wird gespeichert" -#, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Wird auf Wechseldatenträger gespeichert {0}" @@ -3929,15 +3571,15 @@ msgstr "Absturzbericht an UltiMaker senden" msgctxt "@info:tooltip" msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." -msgstr "" +msgstr "Senden Sie Absturzberichte mit Ihrem registrierten UltiMaker-Kontonamen und dem Projektnamen an UltiMaker Sentry. Es werden keine tatsächlichen Modelldaten gesendet." msgctxt "@info:tooltip" msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." -msgstr "" +msgstr "Senden Sie Absturzberichte ohne persönliche Informationen oder Modelldaten an UltiMaker." msgctxt "@option:check" msgid "Send engine crash reports" -msgstr "" +msgstr "Motor-Absturzberichte senden" msgctxt "@action:button" msgid "Send report" @@ -3951,10 +3593,6 @@ msgctxt "@info:title" msgid "Sending materials to printer" msgstr "Material an Drucker senden" -msgctxt "name" -msgid "Sentry Logger" -msgstr "Sentry-Protokolleinrichtung" - msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Bibliothek für serielle Kommunikation" @@ -3993,7 +3631,7 @@ msgstr "Einstellungen" msgctxt "@action:label" msgid "Settings Loaded from UCP file" -msgstr "" +msgstr "Einstellungen werden aus UCP-Datei geladen" msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" @@ -4065,7 +3703,7 @@ msgstr "Sollten Dateien vom Desktop oder von externen Anwendungen in derselben I msgctxt "@info:tooltip" msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." -msgstr "" +msgstr "Sollten Slicing-Abstürze automatisch an Ultimaker gemeldet werden? Beachten Sie, dass keine Modelle, IP-Adressen oder andere persönlich identifizierbare Informationen gesendet oder gespeichert werden, es sei denn, Sie geben Ihre ausdrückliche Erlaubnis." msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" @@ -4125,7 +3763,7 @@ msgstr "Detaillierten Absturzbericht anzeigen" msgctxt "@action:button" msgid "Show settings" -msgstr "" +msgstr "Einstellungen anzeigen" msgctxt "@option:check" msgid "Show summary dialog when saving project" @@ -4163,10 +3801,6 @@ msgctxt "@label" msgid "Sign in to the UltiMaker platform" msgstr "Bei der UltiMaker-Plattform anmelden" -msgctxt "name" -msgid "Simulation View" -msgstr "Simulationsansicht" - msgctxt "@tooltip" msgid "Skin" msgstr "Außenhaut" @@ -4195,10 +3829,6 @@ msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Bei Änderung der Einstellungen automatisch schneiden." -msgctxt "name" -msgid "Slice info" -msgstr "Slice-Informationen" - msgctxt "@message:title" msgid "Slicing failed" msgstr "Slicing fehlgeschlagen" @@ -4213,24 +3843,15 @@ msgstr "Glättung" msgctxt "@label" msgid "Solid" -msgstr "" - -msgctxt "name" -msgid "Solid View" -msgstr "Solide Ansicht" +msgstr "Fest" msgctxt "@item:inmenu" msgid "Solid view" msgstr "Solide Ansicht" msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "" -"Einige ausgeblendete Einstellungen verwenden Werte, die von ihren normalen, berechneten Werten abweichen.\n" -"\n" +msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." +msgstr "Einige ausgeblendete Einstellungen verwenden Werte, die von ihren normalen, berechneten Werten abweichen." "Klicken Sie, um diese Einstellungen sichtbar zu machen." msgctxt "@info:status" @@ -4246,13 +3867,8 @@ msgid "Some setting-values defined in %1 were overridden." msgstr "Einige in %1 definierte Einstellungswerte wurden überschrieben." msgctxt "@tooltip" -msgid "" -"Some setting/override values are different from the values stored in the profile.\n" -"\n" -"Click to open the profile manager." -msgstr "" -"Einige Einstellungs-/Überschreibungswerte unterscheiden sich von den im Profil gespeicherten Werten.\n" -"\n" +msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." +msgstr "Einige Einstellungs-/Überschreibungswerte unterscheiden sich von den im Profil gespeicherten Werten." "Klicken Sie, um den Profilmanager zu öffnen." msgctxt "@action:label" @@ -4323,10 +3939,6 @@ msgctxt "@label" msgid "Strength" msgstr "Festigkeit" -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Sendet anonymisierte Slice-Informationen. Kann in den Einstellungen deaktiviert werden." - msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "Material erfolgreich nach %1 exportiert" @@ -4335,18 +3947,17 @@ msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "Material wurde erfolgreich importiert %1" -#, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Profil {0} erfolgreich importiert." msgctxt "@action:label" msgid "Suggested Material settings" -msgstr "" +msgstr "Empfohlene Materialeinstellungen" msgctxt "@action:label" msgid "Suggested Profile settings" -msgstr "" +msgstr "Empfohlene Profileinstellungen" msgctxt "@action:title" msgid "Summary - Cura Project" @@ -4354,11 +3965,11 @@ msgstr "Zusammenfassung – Cura-Projekt" msgctxt "@action:title Don't translate 'Universal Cura Project'" msgid "Summary - Open Universal Cura Project (UCP)" -msgstr "" +msgstr "Zusammenfassung – Universal Cura Projekt (UCP) öffnen" msgctxt "@action:title Don't translate 'Universal Cura Project'" msgid "Summary - Universal Cura Project" -msgstr "" +msgstr "Zusammenfassung – Universal Cura Projekt" msgctxt "@label" msgid "Support" @@ -4372,10 +3983,6 @@ msgctxt "@label" msgid "Support Blocker" msgstr "Stützstruktur-Blocker" -msgctxt "name" -msgid "Support Eraser" -msgstr "Stützstruktur-Radierer" - msgctxt "@tooltip" msgid "Support Infill" msgstr "Stützstruktur-Füllung" @@ -4542,7 +4149,6 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "Das für das Drucken der Stützstruktur verwendete Extruder-Element. Diese wird für die Mehrfach-Extrusion benutzt." -#, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "Die Datei {0} ist bereits vorhanden. Soll die Datei wirklich überschrieben werden?" @@ -4606,21 +4212,10 @@ msgid "The nozzle inserted in this extruder." msgstr "Die in diesem Extruder eingesetzte Düse." msgctxt "@label" -msgid "" -"The pattern of the infill material of the print:\n" -"\n" -"For quick prints of non functional model choose line, zig zag or lightning infill.\n" -"\n" -"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" -"\n" -"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "" -"Das Muster des Füllmaterials des Drucks:\n" -"\n" -"Für schnelle Drucke von nicht funktionalen Modellen wählen Sie die Linien-, Zickzack- oder Blitz-Füllung.\n" -"\n" -"Für funktionale Teile, die keiner großen Belastung ausgesetzt sind, empfehlen wir ein Raster-, Dreieck- oder Tri-Hexagon-Muster.\n" -"\n" +msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "Das Muster des Füllmaterials des Drucks:" +"Für schnelle Drucke von nicht funktionalen Modellen wählen Sie die Linien-, Zickzack- oder Blitz-Füllung." +"Für funktionale Teile, die keiner großen Belastung ausgesetzt sind, empfehlen wir ein Raster-, Dreieck- oder Tri-Hexagon-Muster." "Für funktionale 3D-Drucke, die eine hohe Festigkeit in mehreren Richtungen erfordern, verwenden Sie am besten die Würfel-, Würfel-Unterbereich-, Viertelwürfel-, Octahedral- und Gyroid-Füllungen." msgctxt "@info:tooltip" @@ -4741,7 +4336,7 @@ msgstr "Diese Konfigurationen sind nicht verfügbar, weil %1 nicht erkannt wird. msgctxt "@text:window" msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" -msgstr "" +msgstr "Dies ist eine Cura Universal Projektdatei. Möchten Sie es als Cura Projekt oder Cura Universal Project öffnen oder die Modelle daraus importieren?" msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" @@ -4777,7 +4372,6 @@ msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "Dieser Drucker steuert eine Gruppe von %1 Druckern an." -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Dieses Profil {0} enthält falsche Daten, Importieren nicht möglich." @@ -4791,13 +4385,8 @@ msgid "This project contains materials or plugins that are currently not install msgstr "Dieses Projekt enthält Materialien oder Plug-ins, die derzeit nicht in Cura installiert sind.
                                      Installieren Sie die fehlenden Pakete und öffnen Sie das Projekt erneut." msgctxt "@label" -msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." -msgstr "" -"Diese Einstellung hat einen vom Profil abweichenden Wert.\n" -"\n" +msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." +msgstr "Diese Einstellung hat einen vom Profil abweichenden Wert." "Klicken Sie, um den Wert des Profils wiederherzustellen." msgctxt "@item:tooltip" @@ -4815,13 +4404,8 @@ msgid "This setting is always shared between all extruders. Changing it here wil msgstr "Diese Einstellung wird stets zwischen allen Extrudern geteilt. Eine Änderung ändert den Wert für alle Extruder." msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "" -"Diese Einstellung wird normalerweise berechnet; aktuell ist jedoch ein Absolutwert eingestellt.\n" -"\n" +msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." +msgstr "Diese Einstellung wird normalerweise berechnet; aktuell ist jedoch ein Absolutwert eingestellt." "Klicken Sie, um den berechneten Wert wiederherzustellen." msgctxt "@label" @@ -4834,11 +4418,11 @@ msgstr "Diese Einstellung wird durch gegensätzliche, extruderspezifische Werte msgctxt "@tooltip Don't translate 'Universal Cura Project'" msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." -msgstr "" +msgstr "Diese Einstellung funktioniert möglicherweise beim Export in ein Universal Cura Projekt nicht einwandfrei. Die Benutzer werden gebeten, sie auf eigenes Risiko hinzuzufügen." msgctxt "@tooltip Don't translate 'Universal Cura Project'" msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." -msgstr "" +msgstr "Diese Einstellung funktioniert beim Export in ein Universal Cura Projekt möglicherweise nicht einwandfrei. Die Benutzer werden gebeten, sie auf eigenes Risiko hinzuzufügen." msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" @@ -4856,7 +4440,6 @@ msgctxt "@text" msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." msgstr "Um die Materialprofile automatisch mit all Ihren mit Digital Factory verbundenen Druckern zu synchronisieren, müssen Sie in Cura angemeldet sein." -#, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "Bitte besuchen Sie {website_link}, um eine Verbindung herzustellen" @@ -4869,7 +4452,6 @@ msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." msgstr "Um direkt auf Ihrem Drucker über das Netzwerk zu drucken, muss der Drucker über ein Netzwerkkabel oder per WLAN mit dem Netzwerk verbunden sein. Wenn Sie Cura nicht mit Ihrem Drucker verbinden, können Sie G-Code-Dateien auf einen USB-Stick kopieren und diesen am Drucker anschließen." -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "Wenn Sie {printer_name} dauerhaft entfernen möchten, dann besuchen Sie bitte die {digital_factory_link}" @@ -4918,10 +4500,6 @@ msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "Versucht, ein Cura-Backup-Verzeichnis ohne entsprechende Daten oder Metadaten wiederherzustellen." -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh Reader" - msgctxt "@button" msgid "Troubleshooting" msgstr "Störungen beheben" @@ -4942,22 +4520,10 @@ msgctxt "@label" msgid "Type" msgstr "Typ" -msgctxt "name" -msgid "UFP Reader" -msgstr "UFP-Reader" - -msgctxt "name" -msgid "UFP Writer" -msgstr "UFP-Writer" - msgctxt "@item:inmenu" msgid "USB printing" msgstr "USB-Drucken" -msgctxt "name" -msgid "USB printing" -msgstr "USB-Drucken" - msgctxt "@button" msgid "UltiMaker Account" msgstr "UltiMaker‑Konto" @@ -4974,10 +4540,6 @@ msgctxt "@item:inlistbox" msgid "UltiMaker Format Package" msgstr "UltiMaker Format Package" -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "UltiMaker-Netzwerkverbindung" - msgctxt "@info" msgid "UltiMaker Verified Package" msgstr "Durch UltiMaker verifiziertes Paket" @@ -4986,10 +4548,6 @@ msgctxt "@info" msgid "UltiMaker Verified Plug-in" msgstr "Durch UltiMaker verifiziertes Plug-in" -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "UltiMaker-Maschinenabläufe" - msgctxt "@button" msgid "UltiMaker printer" msgstr "UltiMaker-Drucker" @@ -5002,10 +4560,6 @@ msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Digitale Bibliothek von UltiMaker" - msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Das Profil kann nicht hinzugefügt werden." @@ -5014,18 +4568,13 @@ msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Innerhalb der Druckabmessung für alle Objekte konnte keine Position gefunden werden" -#, python-brace-format msgctxt "@info:plugin_failed" msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" msgstr "Die ausführbare Datei des lokalen EnginePlugin-Servers kann nicht gefunden werden für: {self._plugin_id}" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Unable to kill running EnginePlugin: {self._plugin_id}\n" -"Access is denied." -msgstr "" -"Laufendes EnginePlugin kann nicht beendet werden: {self._plugin_id}\n" +msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." +msgstr "Laufendes EnginePlugin kann nicht beendet werden: {self._plugin_id}" "Zugriff verweigert." msgctxt "@info" @@ -5048,12 +4597,10 @@ msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "Schneiden (Slicing) ist nicht möglich, da der Einzugsturm oder die Einzugsposition(en) ungültig ist (sind)." -#, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "Schneiden (Slicing) ist nicht möglich, da Objekte vorhanden sind, die mit dem deaktivierten Extruder %s verbunden sind." -#, python-brace-format msgctxt "@info:status" msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" msgstr "Aufgrund der Pro-Modell-Einstellungen ist kein Schneiden (Slicing) möglich. Die folgenden Einstellungen sind für ein oder mehrere Modelle fehlerhaft: {error_labels}" @@ -5062,7 +4609,6 @@ msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "Slicing mit dem aktuellen Material nicht möglich, da es mit der gewählten Maschine oder Konfiguration nicht kompatibel ist." -#, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "Die aktuellen Einstellungen lassen kein Schneiden (Slicing) zu. Die folgenden Einstellungen sind fehlerhaft:{0}" @@ -5071,10 +4617,9 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Es kann kein neuer Anmeldevorgang gestartet werden. Bitte überprüfen Sie, ob noch ein weiterer Anmeldevorgang aktiv ist." -#, python-brace-format msgctxt "@info:error" msgid "Unable to write to file: {0}" -msgstr "" +msgstr "Es kann nicht in die Datei geschrieben werden: {0}" msgctxt "@label:status" msgid "Unavailable" @@ -5098,11 +4643,11 @@ msgstr "Einheit" msgctxt "@item:inlistbox" msgid "Universal Cura Project" -msgstr "" +msgstr "Universal Cura Projekt" msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." -msgstr "" +msgstr "Universal Cura Projekt-Dateien können auf verschiedenen 3D-Druckern gedruckt werden, wobei die Positionsdaten und ausgewählten Einstellungen erhalten bleiben. Beim Export werden alle Modelle, die sich auf der Bauplatte befinden, mit ihrer aktuellen Position, Ausrichtung und ihrem Maßstab einbezogen. Sie können auch auswählen, welche Einstellungen pro Extruder oder pro Modell enthalten sein sollen, um einen korrekten Druck zu gewährleisten." msgctxt "@label Description for development tool" msgid "Universal build system configuration" @@ -5124,7 +4669,6 @@ msgctxt "@label:property" msgid "Unknown Package" msgstr "Unbekanntes Paket" -#, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Unbekannter Fehlercode beim Upload des Druckauftrags: {0}" @@ -5189,265 +4733,49 @@ msgctxt "@button" msgid "Updating..." msgstr "Aktualisierung läuft…" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Aktualisiert Konfigurationen von Cura 2.1 auf Cura 2.2." +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Benutzerdefinierte Firmware hochladen" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Aktualisiert Konfigurationen von Cura 2.2 auf Cura 2.4." +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "Druckauftrag wird vorbereitet." -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Aktualisiert Konfigurationen von Cura 2.5 auf Cura 2.6." +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "Ihr Backup wird hochgeladen..." -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Aktualisiert Konfigurationen von Cura 2.6 auf Cura 2.7." +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "Eine einzelne Instanz von Cura verwenden" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Aktualisiert Konfigurationen von Cura 2.7 auf Cura 3.0." +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "Für diese Materialkombination Kleber für eine bessere Haftung verwenden." -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Aktualisiert Konfigurationen von Cura 3.0 auf Cura 3.1." +msgctxt "@label" +msgid "User Agreement" +msgstr "Benutzervereinbarung" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Aktualisiert Konfigurationen von Cura 3.2 auf Cura 3.3." +msgctxt "@label Description for application dependency" +msgid "Utility functions, including an image loader" +msgstr "Utility-Funktionen, einschließlich Bildlader" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Aktualisiert Konfigurationen von Cura 3.3 auf Cura 3.4." +msgctxt "@label Description for application dependency" +msgid "Utility library, including Voronoi generation" +msgstr "Utility-Bibliothek, einschließlich Voronoi-Generierung" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Aktualisiert Konfigurationen von Cura 3.4 auf Cura 3.5." +msgctxt "@title:column" +msgid "Value" +msgstr "Wert" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Aktualisiert Konfigurationen von Cura 3.5 auf Cura 4.0." +msgctxt "@button" +msgid "View printers in Digital Factory" +msgstr "Drucker in der Digital Factory anzeigen" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Aktualisiert Konfigurationen von Cura 4.0 auf Cura 4.1." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Aktualisiert Konfigurationen von Cura 4.1 auf Cura 4.2." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Aktualisiert die Konfigurationen von Cura 4.11 auf Cura 4.12." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Aktualisiert Konfigurationen von Cura 4.13 auf Cura 5.0." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Aktualisiert Konfigurationen von Cura 4.2 auf Cura 4.3." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Aktualisiert Konfigurationen von Cura 4.3 auf Cura 4.4." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Upgrade der Konfigurationen von Cura 4.4 auf Cura 4.5." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Upgrade der Konfigurationen von Cura 4.5 auf Cura 4.6." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Upgrade der Konfigurationen von Cura 4.6.0 auf Cura 4.6.2." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Aktualisiert Konfigurationen von Cura 4.6.2 auf Cura 4.7." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Upgrade der Konfigurationen von Cura 4.7 auf Cura 4.8." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Upgrade der Konfigurationen von Cura 4.8 auf Cura 4.9." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Upgrade der Konfigurationen von Cura 4.9 auf Cura 4.10." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Upgrade der Konfigurationen von Cura 5.2 auf Cura 5.3." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Aktualisiert Konfigurationen von Cura 5.3 auf Cura 5.4." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Aktualisiert Konfigurationen von Cura 5.4 auf Cura 5.5." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." -msgstr "" - -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Benutzerdefinierte Firmware hochladen" - -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Druckauftrag wird vorbereitet." - -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Ihr Backup wird hochgeladen..." - -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Eine einzelne Instanz von Cura verwenden" - -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "Für diese Materialkombination Kleber für eine bessere Haftung verwenden." - -msgctxt "@label" -msgid "User Agreement" -msgstr "Benutzervereinbarung" - -msgctxt "@label Description for application dependency" -msgid "Utility functions, including an image loader" -msgstr "Utility-Funktionen, einschließlich Bildlader" - -msgctxt "@label Description for application dependency" -msgid "Utility library, including Voronoi generation" -msgstr "Utility-Bibliothek, einschließlich Voronoi-Generierung" - -msgctxt "@title:column" -msgid "Value" -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Upgrade von Version 2.1 auf 2.2" - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Upgrade von Version 2.2 auf 2.4" - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Upgrade von Version 2.5 auf 2.6" - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Upgrade von Version 2.6 auf 2.7" - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Upgrade von Version 2.7 auf 3.0" - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Upgrade von Version 3.0 auf 3.1" - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Upgrade von Version 3.2 auf 3.3" - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Upgrade von Version 3.3 auf 3.4" - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Upgrade von Version 3.4 auf 3.5" - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Upgrade von Version 3.5 auf 4.0" - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Upgrade von Version 4.0 auf 4.1" - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Upgrade von Version 4.1 auf 4.2" - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Upgrade von Version 4.11 auf 4.12" - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Upgrade von Version 4.13 auf 5.0" - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Upgrade von Version 4.2 auf 4.3" - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Upgrade von Version 4.3 auf 4.4" - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Upgrade von Version 4.4 auf 4.5" - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Upgrade von Version 4.5 auf 4.6" - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Upgrade von Version 4.6.0 auf 4.6.2" - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Upgrade von Version 4.6.2 auf 4.7" - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Upgrade von Version 4.7 auf 4.8" - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Upgrade von Version 4.8 auf 4.9" - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Upgrade von Version 4.9 auf 4.10" - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "Upgrade von Version 5.2 auf 5.3" - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "Versions-Upgrade 5.3 auf 5.4" - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "Versions-Upgrade 5.4 auf 5.5" - -msgctxt "name" -msgid "Version Upgrade 5.6 to 5.7" -msgstr "" - -msgctxt "@button" -msgid "View printers in Digital Factory" -msgstr "Drucker in der Digital Factory anzeigen" - -msgctxt "@label" -msgid "View type" -msgstr "Typ anzeigen" +msgctxt "@label" +msgid "View type" +msgstr "Typ anzeigen" msgctxt "@label link to technical assistance" msgid "View user manuals online" @@ -5493,7 +4821,6 @@ msgctxt "@info:title" msgid "Warning" msgstr "Warnhinweis" -#, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Warnung: Das Profil wird nicht angezeigt, weil sein Qualitätstyp „{0}“ für die aktuelle Konfiguration nicht verfügbar ist. Wechseln Sie zu einer Material-/Düsenkombination, die mit diesem Qualitätstyp kompatibel ist." @@ -5520,7 +4847,7 @@ msgstr "Welchen Drucker möchten Sie einrichten?" msgctxt "@info:tooltip" msgid "What type of camera navigation should be used?" -msgstr "" +msgstr "Welche Art der Kameranavigation sollte verwendet werden?" msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" @@ -5558,14 +4885,6 @@ msgctxt "@action:label" msgid "Width (mm)" msgstr "Breite (mm)" -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "G-Code wird in ein komprimiertes Archiv geschrieben." - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Schreibt G-Code in eine Datei." - msgctxt "@label" msgid "X (Width)" msgstr "X (Breite)" @@ -5578,10 +4897,6 @@ msgctxt "@label" msgid "X min" msgstr "X min" -msgctxt "name" -msgid "X-Ray View" -msgstr "Röntgen-Ansicht" - msgctxt "@item:inlistbox" msgid "X-Ray view" msgstr "Röntgen-Ansicht" @@ -5594,10 +4909,6 @@ msgctxt "@item:inlistbox" msgid "X3D File" msgstr "X3D-Datei" -msgctxt "name" -msgid "X3D Reader" -msgstr "X3D-Reader" - msgctxt "@label" msgid "Y (Depth)" msgstr "Y (Tiefe)" @@ -5615,31 +4926,19 @@ msgid "Yes" msgstr "Ja" msgctxt "@label" -msgid "" -"You are about to remove all printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" +msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" msgstr "Es werden gleich alle Drucker aus Cura entfernt. Dieser Vorgang kann nicht rückgängig gemacht werden.Möchten Sie wirklich fortfahren?" -#, python-brace-format msgctxt "@label" -msgid "" -"You are about to remove {0} printer from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgid_plural "" -"You are about to remove {0} printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr[0] "" -"Es wird gleich {0} Drucker aus Cura entfernt. Der Vorgang kann nicht rückgängig gemacht werden. \n" -"Möchten Sie wirklich fortfahren." -msgstr[1] "" -"Es werden gleich {0} Drucker aus Cura entfernt. Der Vorgang kann nicht rückgängig gemacht werden. \n" -"Möchten Sie wirklich fortfahren." +msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgstr[0] "Es wird gleich {0} Drucker aus Cura entfernt. Der Vorgang kann nicht rückgängig gemacht werden. \nMöchten Sie wirklich fortfahren." +msgstr[1] "Es werden gleich {0} Drucker aus Cura entfernt. Der Vorgang kann nicht rückgängig gemacht werden. \nMöchten Sie wirklich fortfahren." msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "Sie versuchen, sich mit einem Drucker zu verbinden, auf dem Ultimaker Connect nicht läuft. Bitte aktualisieren Sie die Firmware des Druckers." -#, python-brace-format msgctxt "@info:status" msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." msgstr "Sie versuchen, sich mit {0} zu verbinden, aber dieser Drucker ist nicht der Host, der die Gruppe verwaltet. Besuchen Sie die Website, um den Drucker als Host der Gruppe zu konfigurieren." @@ -5650,9 +4949,8 @@ msgstr "Sie verfügen derzeit über keine Backups. Verwenden Sie die Schaltfläc msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "" -"Sie haben einige Profileinstellungen personalisiert.\n" -"Möchten Sie diese geänderten Einstellungen nach einem Profilwechsel beibehalten?\n" +msgstr "Sie haben einige Profileinstellungen personalisiert." +"Möchten Sie diese geänderten Einstellungen nach einem Profilwechsel beibehalten?" "Sie können die Änderungen auch verwerfen, um die Standardeinstellungen von '%1' zu laden." msgctxt "@label" @@ -5683,13 +4981,9 @@ msgctxt "@info" msgid "Your new printer will automatically appear in Cura" msgstr "Ihr neuer Drucker wird automatisch in Cura angezeigt." -#, python-brace-format msgctxt "@info:status" -msgid "" -"Your printer {printer_name} could be connected via cloud.\n" -" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "" -"Your printer {printer_name} could be connected via cloud.\n" +msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "Your printer {printer_name} could be connected via cloud." " Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" msgctxt "@label" @@ -5738,7 +5032,7 @@ msgstr "mm" msgctxt "@label" msgid "s" -msgstr "" +msgstr "s" msgctxt "@info:status" msgid "today" @@ -5752,7 +5046,6 @@ msgctxt "@label" msgid "version: %1" msgstr "Version: %1" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "{printer_name} wird bis zur nächsten Synchronisierung entfernt." @@ -5761,21 +5054,553 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Sie müssen das Programm beenden und neu starten {}, bevor Änderungen wirksam werden." -#~ msgctxt "@label" -#~ msgid "Default" -#~ msgstr "Default" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Verwaltet Netzwerkverbindungen zu vernetzten UltiMaker-Druckern." + +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "UltiMaker-Netzwerkverbindung" + +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Ermöglicht das Importieren von Profilen aus G-Code-Dateien." -#~ msgid "Provides support for exporting Cura profiles." -#~ msgstr "Bietet Unterstützung für den Export von Cura-Profilen." +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "G-Code-Profil-Reader" -#~ msgctxt "description" -#~ msgid "Provides support for writing 3MF files." -#~ msgstr "Bietet Unterstützung für das Schreiben von 3MF-Dateien." +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Bietet eine normale, solide Netzansicht." -#~ msgctxt "@option" -#~ msgid "Save Cura project and print file" -#~ msgstr "Cura-Projekt speichern und Datei drucken" +msgctxt "name" +msgid "Solid View" +msgstr "Solide Ansicht" -#~ msgctxt "@message" -#~ msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -#~ msgstr "Fehler beim Slicing mit einem unerwarteten Fehler. Bitte denken Sie daran, Fehler in unserem Issue Tracker zu melden." +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "CuraEngine-Plugin zur stufenweisen Glättung des Flusses, um Sprünge bei hohem Fluss zu begrenzen" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Ermöglicht das Lesen von 3MF-Dateien." + +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF-Reader" + +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Akzeptiert den G-Code und sendet diesen an einen Drucker. Das Plugin kann auch die Firmware aktualisieren." + +msgctxt "name" +msgid "USB printing" +msgstr "USB-Drucken" + +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Nach Firmware-Updates suchen." + +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Firmware-Update-Prüfer" + +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Verwaltet die Erweiterungen der Anwendung und ermöglicht das Durchsuchen von Erweiterungen auf der Ultimaker-Website." + +msgctxt "name" +msgid "Marketplace" +msgstr "Marktplatz" + +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Sicherung und Wiederherstellen Ihrer Konfiguration." + +msgctxt "name" +msgid "Cura Backups" +msgstr "Cura-Backups" + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Beschreibt die Durchführung der Geräteeinstellung (z. B. Druckabmessung, Düsengröße usw.)" + +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Beschreibung Geräteeinstellungen" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Aktualisiert Konfigurationen von Cura 2.5 auf Cura 2.6." + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Upgrade von Version 2.5 auf 2.6" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Upgrade der Konfigurationen von Cura 4.7 auf Cura 4.8." + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Upgrade von Version 4.7 auf 4.8" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Upgrade der Konfigurationen von Cura 4.4 auf Cura 4.5." + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Upgrade von Version 4.4 auf 4.5" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Aktualisiert Konfigurationen von Cura 3.0 auf Cura 3.1." + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Upgrade von Version 3.0 auf 3.1" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Aktualisiert die Konfigurationen von Cura 4.11 auf Cura 4.12." + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Upgrade von Version 4.11 auf 4.12" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Aktualisiert Konfigurationen von Cura 4.1 auf Cura 4.2." + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Upgrade von Version 4.1 auf 4.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Aktualisiert Konfigurationen von Cura 2.6 auf Cura 2.7." + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Upgrade von Version 2.6 auf 2.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Upgrade der Konfigurationen von Cura 4.6.0 auf Cura 4.6.2." + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Upgrade von Version 4.6.0 auf 4.6.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Aktualisiert Konfigurationen von Cura 3.3 auf Cura 3.4." + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Upgrade von Version 3.3 auf 3.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Upgrade der Konfigurationen von Cura 4.8 auf Cura 4.9." + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Upgrade von Version 4.8 auf 4.9" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Upgrade der Konfigurationen von Cura 4.5 auf Cura 4.6." + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Upgrade von Version 4.5 auf 4.6" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Aktualisiert Konfigurationen von Cura 4.2 auf Cura 4.3." + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Upgrade von Version 4.2 auf 4.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Aktualisiert Konfigurationen von Cura 3.2 auf Cura 3.3." + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Upgrade von Version 3.2 auf 3.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Aktualisiert Konfigurationen von Cura 4.3 auf Cura 4.4." + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Upgrade von Version 4.3 auf 4.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "Upgrades von Konfigurationen von Cura 5.6 auf Cura 5.7." + +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "Versions-Upgrade 5.6 auf 5.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Aktualisiert Konfigurationen von Cura 2.1 auf Cura 2.2." + +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Upgrade von Version 2.1 auf 2.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Aktualisiert Konfigurationen von Cura 5.3 auf Cura 5.4." + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "Versions-Upgrade 5.3 auf 5.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Upgrade der Konfigurationen von Cura 4.9 auf Cura 4.10." + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Upgrade von Version 4.9 auf 4.10" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Aktualisiert Konfigurationen von Cura 2.7 auf Cura 3.0." + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Upgrade von Version 2.7 auf 3.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Aktualisiert Konfigurationen von Cura 3.5 auf Cura 4.0." + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Upgrade von Version 3.5 auf 4.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Upgrade der Konfigurationen von Cura 5.2 auf Cura 5.3." + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Upgrade von Version 5.2 auf 5.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Aktualisiert Konfigurationen von Cura 4.0 auf Cura 4.1." + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Upgrade von Version 4.0 auf 4.1" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Aktualisiert Konfigurationen von Cura 4.13 auf Cura 5.0." + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Upgrade von Version 4.13 auf 5.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Aktualisiert Konfigurationen von Cura 3.4 auf Cura 3.5." + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Upgrade von Version 3.4 auf 3.5" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Aktualisiert Konfigurationen von Cura 2.2 auf Cura 2.4." + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Upgrade von Version 2.2 auf 2.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Aktualisiert Konfigurationen von Cura 4.6.2 auf Cura 4.7." + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Upgrade von Version 4.6.2 auf 4.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Aktualisiert Konfigurationen von Cura 5.4 auf Cura 5.5." + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "Versions-Upgrade 5.4 auf 5.5" + +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Ermöglicht das Laden und Anzeigen von G-Code-Dateien." + +msgctxt "name" +msgid "G-code Reader" +msgstr "G-Code-Reader" + +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Sendet anonymisierte Slice-Informationen. Kann in den Einstellungen deaktiviert werden." + +msgctxt "name" +msgid "Slice info" +msgstr "Slice-Informationen" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Ermöglicht Hotplugging des Wechseldatenträgers und Beschreiben." + +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Ausgabegerät-Plugin für Wechseldatenträger" + +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Erstellt ein Radierernetz, um den Druck von Stützstrukturen in bestimmten Positionen zu blockieren" + +msgctxt "name" +msgid "Support Eraser" +msgstr "Stützstruktur-Radierer" + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Überprüft Modelle und Druckkonfiguration auf mögliche Probleme und erteilt Empfehlungen." + +msgctxt "name" +msgid "Model Checker" +msgstr "Modell-Prüfer" + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Bietet eine Vorbereitungsstufe in Cura." + +msgctxt "name" +msgid "Prepare Stage" +msgstr "Vorbereitungsstufe" + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Stellt eine Vorschau der Daten der Slice-Ebene bereit." + +msgctxt "name" +msgid "Simulation View" +msgstr "Simulationsansicht" + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Ermöglicht das Lesen von AMF-Dateien." + +msgctxt "name" +msgid "AMF Reader" +msgstr "AMF-Reader" + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Stellt die Röntgen-Ansicht bereit." + +msgctxt "name" +msgid "X-Ray View" +msgstr "Röntgen-Ansicht" + +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Ermöglicht Gerätemaßnahmen für die Aktualisierung der Firmware." + +msgctxt "name" +msgid "Firmware Updater" +msgstr "Firmware-Aktualisierungsfunktion" + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Bietet Unterstützung für den Import von Profilen der Vorgängerversionen von Cura." + +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Cura-Vorgängerprofil-Reader" + +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Erweiterung, die eine Nachbearbeitung von Skripten ermöglicht, die von Benutzern erstellt wurden" + +msgctxt "name" +msgid "Post Processing" +msgstr "Nachbearbeitung" + +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Protokolliert bestimmte Ereignisse, damit diese vom Absturzbericht verwendet werden können" + +msgctxt "name" +msgid "Sentry Logger" +msgstr "Sentry-Protokolleinrichtung" + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "Bietet Unterstützung für das Schreiben von MakerBot-Formatpaketen." + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "Makerbot-Druckdatei-Writer" + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Ermöglicht das Importieren von Cura-Profilen." + +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Cura-Profil-Reader" + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Bietet Unterstützung für das Lesen von Ultimaker Format Packages." + +msgctxt "name" +msgid "UFP Reader" +msgstr "UFP-Reader" + +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Ermöglicht Erstellung von druckbarer Geometrie aus einer 2D-Bilddatei." + +msgctxt "name" +msgid "Image Reader" +msgstr "Bild-Reader" + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Stellt die Verbindung zum Slicing-Backend der CuraEngine her." + +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine Backend" + +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "G-Code wird in ein komprimiertes Archiv geschrieben." + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Writer für komprimierten G-Code" + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Ermöglicht Maschinenabläufe für UltiMaker-Maschinen (z. B. Assistent für Bettnivellierung, Auswahl von Upgrades usw.)" + +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "UltiMaker-Maschinenabläufe" + +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Liest G-Code-Format aus einem komprimierten Archiv." + +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Reader für komprimierten G-Code" + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Bietet eine Vorschaustufe in Cura." + +msgctxt "name" +msgid "Preview Stage" +msgstr "Vorschaustufe" + +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Stellt eine Verbindung zur Digitalen Bibliothek her und ermöglicht es Cura, Dateien aus der Digitalen Bibliothek zu öffnen und darin zu speichern." + +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Digitale Bibliothek von UltiMaker" + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Ermöglicht das Exportieren von Cura-Profilen." + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura-Profil-Writer" + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Bietet Unterstützung für das Lesen von X3D-Dateien." + +msgctxt "name" +msgid "X3D Reader" +msgstr "X3D-Reader" + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Unterstützt das Lesen von Modelldateien." + +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh Reader" + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Bietet eine Überwachungsstufe in Cura." + +msgctxt "name" +msgid "Monitor Stage" +msgstr "Überwachungsstufe" + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Ermöglicht die Einstellungen pro Objekt." + +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Werkzeug „Einstellungen pro Objekt“" + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Bietet Möglichkeiten, um XML-basierte Materialprofile zu lesen und zu schreiben." + +msgctxt "name" +msgid "Material Profiles" +msgstr "Materialprofile" + +msgctxt "description" +msgid "Provides support for writing 3MF and UCP files." +msgstr "Bietet Unterstützung für das Schreiben von 3MF- und UCP-Dateien." + +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF-Writer" + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Bietet Unterstützung für das Schreiben von Ultimaker Format Packages." + +msgctxt "name" +msgid "UFP Writer" +msgstr "UFP-Writer" + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Schreibt G-Code in eine Datei." + +msgctxt "name" +msgid "G-code Writer" +msgstr "G-Code-Writer" diff --git a/resources/i18n/de_DE/fdmextruder.def.json.po b/resources/i18n/de_DE/fdmextruder.def.json.po index a41fad6cc52..57f835ec08d 100644 --- a/resources/i18n/de_DE/fdmextruder.def.json.po +++ b/resources/i18n/de_DE/fdmextruder.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,186 +12,114 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Haftung" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Der Durchmesser des verwendeten Filaments wird angepasst. Stellen Sie hier den Durchmesser des verwendeten Filaments ein." - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Druckplattenhaftung" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Durchmesser" - -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "Auszuführenden G-Code beim Umschalten von diesem Extruder beenden." - msgctxt "extruder_nr label" msgid "Extruder" msgstr "Extruder" +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "Die für das Drucken verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." + +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Drucklüfter Extruder" + +msgctxt "machine_extruder_cooling_fan_number description" +msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." +msgstr "Die Anzahl der Drucklüfter für diesen Extruder. Nur vom Standardwert 0 ändern, wenn Sie für jeden Extruder einen anderen Drucklüfter verwenden." + msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "G-Code Extruder-Ende" +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "Auszuführenden G-Code beim Umschalten von diesem Extruder beenden." + msgctxt "machine_extruder_end_code_duration label" msgid "Extruder End G-Code Duration" -msgstr "" +msgstr "Extruder Ende G-Code Dauer" + +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "Die Zeit, die für die Ausführung des Ende-G-Codes benötigt wird, wenn Sie von diesem Extruder wegschalten." msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Absolute Extruder-Endposition" +msgctxt "machine_extruder_end_pos_abs description" +msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." +msgstr "Bevorzugen Sie eine absolute Endposition des Extruders anstelle einer relativen Position zur zuletzt bekannten Kopfposition." + msgctxt "machine_extruder_end_pos_x label" msgid "Extruder End Position X" msgstr "Extruder-Endposition X" +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "Die X-Koordinate der Endposition beim Ausschalten des Extruders." + msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Extruder-Endposition Y" -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "X-Position Extruder-Einzug" - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Y-Position Extruder-Einzug" - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Z-Position Extruder-Einzug" - -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Drucklüfter Extruder" +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "Die Y-Koordinate der Endposition beim Ausschalten des Extruders." msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "G-Code Extruder-Start" +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "Auszuführenden G-Code beim Umschalten auf diesen Extruder starten." + msgctxt "machine_extruder_start_code_duration label" msgid "Extruder Start G-Code Duration" -msgstr "" +msgstr "Extruder Start G-Code Dauer" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "Die Zeit, die für die Ausführung des Start-G-Codes benötigt wird, wenn Sie zu diesem Extruder wechseln." msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Absolute Startposition des Extruders" +msgctxt "machine_extruder_start_pos_abs description" +msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." +msgstr "Bevorzugen Sie eine absolute Startposition des Extruders anstelle einer relativen Position zur zuletzt bekannten Kopfposition." + msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "X-Position Extruder-Start" +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "Die X-Koordinate der Startposition beim Einschalten des Extruders." + msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "Y-Position Extruder-Start" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Gerät" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Gerätespezifische Einstellungen" - -msgctxt "machine_extruder_end_pos_abs description" -msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." -msgstr "Bevorzugen Sie eine absolute Endposition des Extruders anstelle einer relativen Position zur zuletzt bekannten Kopfposition." - -msgctxt "machine_extruder_start_pos_abs description" -msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." -msgstr "Bevorzugen Sie eine absolute Startposition des Extruders anstelle einer relativen Position zur zuletzt bekannten Kopfposition." - -msgctxt "material description" -msgid "Material" -msgstr "Material" - -msgctxt "material label" -msgid "Material" -msgstr "Material" - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Düsendurchmesser" - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Düsen-ID" +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "Die Y-Koordinate der Startposition beim Einschalten des Extruders." msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "X-Versatz Düse" -msgctxt "machine_nozzle_offset_y label" -msgid "Nozzle Y Offset" -msgstr "Y-Versatz Düse" - -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "Auszuführenden G-Code beim Umschalten auf diesen Extruder starten." - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Die X-Koordinate der Position, an der die Düse am Druckbeginn einzieht." - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Die Y-Koordinate der Position, an der die Düse am Druckbeginn einzieht." - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Die Z-Koordinate der Position, an der die Düse am Druckbeginn einzieht." - -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "Die für das Drucken verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Der Innendurchmesser der Düse. Verwenden Sie diese Einstellung, wenn Sie eine Düse einer Nicht-Standardgröße verwenden." - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "Der Düsen-ID für eine Extruder-Einheit, z. B. „AA 0,4“ und „BB 0,8“." - -msgctxt "machine_extruder_cooling_fan_number description" -msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." -msgstr "Die Anzahl der Drucklüfter für diesen Extruder. Nur vom Standardwert 0 ändern, wenn Sie für jeden Extruder einen anderen Drucklüfter verwenden." - -msgctxt "machine_extruder_end_code_duration description" -msgid "The time it takes to execute the end g-code, when switching away from this extruder." -msgstr "" - -msgctxt "machine_extruder_start_code_duration description" -msgid "The time it'll take to execute the start g-code, when switching to this extruder." -msgstr "" - -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "Die X-Koordinate der Endposition beim Ausschalten des Extruders." - msgctxt "machine_nozzle_offset_x description" msgid "The x-coordinate of the offset of the nozzle." msgstr "Die X-Koordinate des Düsenversatzes." -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "Die X-Koordinate der Startposition beim Einschalten des Extruders." - -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "Die Y-Koordinate der Endposition beim Ausschalten des Extruders." +msgctxt "machine_nozzle_offset_y label" +msgid "Nozzle Y Offset" +msgstr "Y-Versatz Düse" msgctxt "machine_nozzle_offset_y description" msgid "The y-coordinate of the offset of the nozzle." msgstr "Die Y-Koordinate des Düsenversatzes." - -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "Die Y-Koordinate der Startposition beim Einschalten des Extruders." diff --git a/resources/i18n/de_DE/fdmprinter.def.json.po b/resources/i18n/de_DE/fdmprinter.def.json.po index 2f3306c16b2..1552828808f 100644 --- a/resources/i18n/de_DE/fdmprinter.def.json.po +++ b/resources/i18n/de_DE/fdmprinter.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-12 15:10+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,5772 +12,5682 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "prime_tower_mode description" -msgid "How to generate the prime tower:
                                      • Normal: create a bucket in which secondary materials are primed
                                      • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
                                      " -msgstr "" - -msgctxt "brim_inside_margin description" -msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." -msgstr "" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Gerät" -msgctxt "ironing_inset description" -msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." -msgstr "Eine Distanz, die von den Kanten des Modells einzuhalten ist. Die Glättung des gesamten Weges zur Kante des Mesh führt möglicherweise zu einer gezackten Kante Ihres Drucks." +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Gerätespezifische Einstellungen" -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "Ein Faktor, der angibt, wie stark das Filament zwischen dem Feeder und der Düsenkammer komprimiert wird; hilft zu bestimmen, wie weit das Material für einen Filamentwechsel bewegt werden muss." +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Gerät" -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Eine Liste von Ganzzahl-Linienrichtungen für den Fall, wenn die oberen Außenhautschichten die Linien- oder Zickzack-Muster verwenden. Elemente aus der Liste werden während des Aufbaus der Schichten sequentiell verwendet und wenn das Listenende erreicht wird, beginnt die Liste von vorne. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (45- und 135-Grad) verwendet werden." +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "Die Bezeichnung Ihres 3D-Druckermodells." -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Eine Liste von Ganzzahl-Linienrichtungen für den Fall, wenn die oberen/unteren Schichten die Linien- oder Zickzack-Muster verwenden. Elemente aus der Liste werden während des Aufbaus der Schichten sequentiell verwendet und wenn das Listenende erreicht wird, beginnt die Liste von vorne. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (45- und 135-Grad) verwendet werden." +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Anzeige der Gerätevarianten" -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "Liste der zu verwendenden Linienrichtungen (in ganzen Zahlen). Die Elemente der Liste werden während des Aufbaus der Schichten der Reihe nach abgearbeitet. Wenn das Ende der Liste erreicht wird, wird wieder beim ersten Element begonnen. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass der Standardwinkel von 0 Grad zu verwenden ist." +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "Zeigt optional die verschiedenen Varianten dieses Geräts an, die in separaten json-Dateien beschrieben werden." -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Liste der zu verwendenden Linienrichtungen (in ganzen Zahlen). Die Elemente der Liste werden während des Aufbaus der Schichten der Reihe nach abgearbeitet. Wenn das Ende der Liste erreicht wird, wird wieder beim ersten Element begonnen. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (zwischen 45 und 135- rad, falls die Verbindungsstellen ziemlich dick sind, oder 90 Grad) zu verwenden sind." +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "Start G-Code" -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Liste der zu verwendenden Linienrichtungen (in ganzen Zahlen). Die Elemente der Liste werden während des Aufbaus der Schichten der Reihe nach abgearbeitet. Wenn das Ende der Liste erreicht wird, wird wieder beim ersten Element begonnen. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (zwischen 45 und 135- rad, falls die Verbindungsstellen ziemlich dick sind, oder 90 Grad) zu verwenden sind." +msgctxt "machine_start_gcode description" +msgid "G-code commands to be executed at the very start - separated by \n." +msgstr "G-Code-Befehle, die zu Beginn ausgeführt werden sollen – getrennt durch " +"." -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Liste der zu verwendenden Linienrichtungen (in ganzen Zahlen). Die Elemente der Liste werden während des Aufbaus der Schichten der Reihe nach abgearbeitet. Wenn das Ende der Liste erreicht wird, wird wieder beim ersten Element begonnen. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (zwischen 45 und 135- rad, falls die Verbindungsstellen ziemlich dick sind, oder 90 Grad) zu verwenden sind." +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "Ende G-Code" -msgctxt "infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." -msgstr "Eine Liste von Ganzzahl-Linienrichtungen für die Verwendung. Elemente aus der Liste werden während des Aufbaus der Schichten sequentiell verwendet und wenn das Listenende erreicht wird, beginnt die Liste von vorne. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (45- und 135-Grad für die Linien- und Zickzack-Muster und 45-Grad für alle anderen Muster) verwendet werden." +msgctxt "machine_end_gcode description" +msgid "G-code commands to be executed at the very end - separated by \n." +msgstr "G-Code-Befehle, die am Ende ausgeführt werden sollen – getrennt durch " +"." -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "Eine Liste mit Polygonen mit Bereichen, in welche die Düse nicht eintreten darf." +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "Material-GUID" -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "Eine Liste mit Polygonen mit Bereichen, die für den Druckkopf unzulässig sind." +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "GUID des Materials. Dies wird automatisch eingestellt." -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "Dieser Wert ist die empfohlene Entfernung der Äste von den Stellen, die durch sie gestützt werden. Er kann überschritten werden, damit Äste ihre Zielposition erreichen (Druckplatte oder einen flachen Teil des Modells). Eine Senkung dieses Werts sorgt für eine stabilere Stützstruktur, erhöht jedoch die Anzahl der Äste und damit den Materialverbrauch/die Druckzeit)." +msgctxt "material_type label" +msgid "Material Type" +msgstr "Materialart" -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Extruder absolute Einzugsposition" +msgctxt "material_type description" +msgid "The type of material used." +msgstr "Die Art des verwendeten Materials." -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Maximale Abweichung für Anpassschichten" +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "Material-Marke" -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Topographische Größe der Anpassschichten" +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "Die Marke des verwendeten Materials." -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Abweichung Schrittgröße für Anpassschichten" +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Durchmesser" -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "Die Funktion Anpassschichten berechnet die Schichthöhe je nach Form des Modells." +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Der Durchmesser des verwendeten Filaments wird angepasst. Stellen Sie hier den Durchmesser des verwendeten Filaments ein." -msgctxt "infill_wall_line_count description" -msgid "" -"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" -"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "" -"Fügen Sie zusätzliche Wände um den Füllbereich hinzu. Derartige Wände können zu einem verringerten Absacken der oberen/unteren Außenhautlinien beitragen, was bedeutet, dass Sie weniger Außenhautschichten oben/unten bei derselben Qualität von Kosten für zusätzliches Material benötigen.\n" -" Diese Funktion ist verknüpfbar mit „Füllungspolygone verbinden“, um alle Füllungen mit einem einzigen Extrusionspfad zu verbinden, ohne dass hierzu Vorwärtsbewegungen oder Rückzüge erforderlich sind, sofern die richtige Konfiguration gewählt wurde." +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Warten auf Aufheizen der Druckplatte" -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Haftung" +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "Option zur Eingabe eines Befehls beim Start, um zu warten, bis die Druckplattentemperatur erreicht wurde." -msgctxt "material_adhesion_tendency label" -msgid "Adhesion Tendency" -msgstr "Haftungstendenz" +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Warten auf Aufheizen der Düse" -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Justieren Sie die Überlappung zwischen den Wänden und den Außenhaut-Mittellinien bzw. den Endpunkten der Außenhaut-Mittellinien als Prozentwert der Linienbreite der Außenhautlinien und der inneren Wand. Eine geringe Überlappung ermöglicht die feste Verbindung der Wände mit der Außenhaut. Beachten Sie, dass bei einer einheitlichen Linienbreite von Außenhaut und Wand jeder Prozentwert über 50 % bereits dazu führen kann, dass die Außenhaut über die Wand hinausgeht, da in diesem Moment die Position der Düse des Außenhaut-Extruders möglicherweise bereits über die Wandmitte hinausgeht." +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "Option zur Eingabe eines Befehls beim Start, um zu warten, bis die Düsentemperatur erreicht wurde." -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Justieren Sie die Überlappung zwischen den Wänden und den Außenhaut-Mittellinien bzw. den Endpunkten der Außenhaut-Mittellinien. Eine geringe Überlappung ermöglicht die feste Verbindung der Wände mit der Außenhaut. Beachten Sie, dass bei einer einheitlichen Linienbreite von Außenhaut und Wand jeder Wert über die Hälfte der Wandbreite bereits dazu führen kann, dass die Außenhaut über die Wand hinausgeht, da in diesem Moment die Position der Düse des Außenhaut-Extruders möglicherweise bereits über die Wandmitte hinausgeht." +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Materialtemperaturen einfügen" -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Passt die Fülldichte des Drucks an." +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "Option zum Einfügen von Befehlen für die Düsentemperatur am Start des Gcodes. Wenn der start_gcode bereits Befehle für die Düsentemperatur enthält, deaktiviert das Cura Programm diese Einstellung automatisch." -msgctxt "support_interface_density description" -msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Die Dichte der Stützstrukturdächer und -böden wird eingestellt. Ein höherer Wert führt zu besseren Überhängen, aber die Stützstrukturen sind schwieriger zu entfernen." +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Temperaturprüfung der Druckplatte einfügen" -msgctxt "support_tree_top_rate description" -msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "Dadurch wird die Dichte der Stützstruktur angepasst, mit der die Spitzen der Äste generiert werden. Ein höherer Wert führt zu besseren Überhängen, allerdings lässt sich die Stützstruktur schwerer entfernen. Verwenden Sie bei sehr hohen Werten ein Stützdach oder stellen Sie sicher, dass die Dichte der Stützstruktur oben ähnlich hoch ist." +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "Option zum Einfügen von Befehlen für die Druckplattentemperatur am Start des Gcodes. Wenn der start_gcode bereits Befehle für die Druckplattentemperatur enthält, deaktiviert das Cura Programm diese Einstellung automatisch." -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Die Dichte der Stützstruktur wird eingestellt. Ein höherer Wert führt zu besseren Überhängen, aber die Stützstrukturen sind schwieriger zu entfernen." +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Gerätebreite" -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Der Durchmesser des verwendeten Filaments wird angepasst. Stellen Sie hier den Durchmesser des verwendeten Filaments ein." +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "Die Breite (X-Richtung) des druckbaren Bereichs." -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "Es werden Stützstrukturen platziert. Die Platzierung kann auf „Druckbett berühren“ oder „Überall“ eingestellt werden. Wenn „Überall“ eingestellt wird, werden die Stützstrukturen auch auf dem Modell gedruckt." +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Gerätetiefe" -msgctxt "prime_tower_wipe_enabled description" -msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." -msgstr "Nach dem Drucken des Einzugsturms mit einer Düse wird das ausgetretene Material von der anderen Düse am Einzugsturm abgewischt." +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "Die Tiefe (Y-Richtung) des druckbaren Bereichs." -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "Nachdem das Gerät von einem Extruder zu einem anderen gewechselt hat, wird die Druckplatte abgesenkt, um einen Abstand zwischen der Düse und dem Druck zu bilden. Das verhindert, dass die Düse abgesondertes Material auf der Außenseite des Drucks hinterlässt." +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Gerätehöhe" -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Alle" +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "Die Höhe (Z-Richtung) des druckbaren Bereichs." -msgctxt "print_sequence option all_at_once" -msgid "All at Once" -msgstr "Alle gleichzeitig" +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Druckbettform" -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "Alle Einstellungen, die die Auflösung des Drucks beeinflussen. Diese Einstellungen haben große Auswirkung auf die Qualität (und Druckdauer)." +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "Die Form der Druckplatte ohne Berücksichtigung nicht druckbarer Bereiche." -msgctxt "user_defined_print_order_enabled description" -msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." -msgstr "" +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Rechteckig" -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Abwechselnde Zusatzwände" +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Elliptisch" -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Wechselndes Entfernen des Netzes" +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Druckplattenmaterial" -msgctxt "material_alternate_walls label" -msgid "Alternate Wall Directions" -msgstr "Abwechselnde Wandrichtungen" +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "Das Material der im Drucker eingebauten Druckplatte." -msgctxt "material_alternate_walls description" -msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." -msgstr "Abwechselnde Wandrichtungen für jede weitere Schicht und jeden Einsatz. Nützlich für Materialien, die Spannungen aufbauen können, wie beim Metalldruck." +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Glas" msgctxt "machine_buildplate_type option aluminum" msgid "Aluminum" msgstr "Aluminium" +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Mit beheizter Druckplatte" + +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "Option für vorhandene beheizte Druckplatte." + +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "Verfügt über Temperaturstabilisierung für den Druckraum" + +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "Zeigt an, ob das Gerät die Temperatur im Druckraum stabilisieren kann." + msgctxt "machine_always_write_active_tool label" msgid "Always Write Active Tool" msgstr "Immer aktives Tools schreiben" -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "Stets zurückziehen, wenn eine Bewegung für den Beginn einer Außenwand erfolgt." - -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "Der Abstand, der auf die Polygone in den einzelnen Schichten angewendet wird. Positive Werte können zu große Löcher kompensieren; negative Werte können zu kleine Löcher kompensieren." +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "Mit aktivem Werkzeug schreiben, nach dem temporäre Befehle an das inaktive Werkzeug übermittelt wurden. Erforderlich für Dual-Extruder-Druck mit Smoothie oder anderer Firmware mit modalen Werkzeugbefehlen." -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "Der Abstand, der auf die Polygone in der ersten Schicht angewendet wird. Ein negativer Wert kann ein Zerquetschen der ersten Schicht, auch als „Elefantenfuß“ bezeichnet, ausgleichen." - -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "Der Abstand, der auf die Polygone in den einzelnen Schichten angewendet wird. Positive Werte können die Stützbereiche glätten und dadurch eine stabilere Stützstruktur schaffen." - -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "Umfang des angewandten Versatzes für die Böden der Stützstruktur." - -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "Umfang des angewandten Versatzes für die Dächer der Stützstruktur." - -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "Umfang des angewandten Versatzes für die Stützstruktur-Schnittstellen-Polygone." - -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "Wert, um den das Filament eingezogen wird, damit es während des Abwischens nicht austritt." - -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "Ein Zusatz zum Radius von der Mitte jedes Würfels, um die Modellbegrenzungen zu überprüfen und um zu entscheiden, ob dieser Würfel unterteilt werden sollte. Höhere Werte führen zu einem dickeren Gehäuse von kleinen Würfeln im Bereich der Modellbegrenzungen." - -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Anti-Überhang-Netz" - -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Einzugsmaß für Sickerschutz" - -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Einzugsgeschwindigkeit für Sickerschutz" - -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "Verwenden Sie den Extruder-Versatz für das Koordinatensystem. Betrifft alle Extruder." - -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "Erzeugt eine Struktur aus ineinandergreifenden Balken an den Stellen, an denen sich Modelle berühren. Dies verbessert die Haftung zwischen Modellen, insbesondere bei Modellen, die aus verschiedenen Materialien gedruckt werden." - -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Gedruckte Teile bei Bewegung umgehen" - -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Stützstrukturen bei Bewegung umgehen" - -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Hinten" - -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Hinten links" - -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Hinten rechts" - -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits von Bytes" - -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Beides" - -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "Beide überlappen" - -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Untere Schichten" - -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Unteres Muster für erste Schicht" - -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Expansionsdistanz Außenhaut unten" - -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Breite für das Entfernen der Außenhaut unten" - -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Untere Dicke" - -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "Astdichte" - -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "Astdichte" - -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "Winkel des Astdurchmessers" - -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Einzugsmaß für Bruchvorbereitung" - -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Einzugsgeschwindigkeit für Bruchvorbereitung" - -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Temperatur für Bruchvorbereitung" - -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Einzugsmaß für das Brechen" - -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Einzugsgeschwindigkeit für das Brechen" - -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Bruchtemperatur" - -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Stützstruktur in Blöcke aufteilen" - -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Lüfterdrehzahl Brücke" - -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Brücke hat mehrere Schichten" - -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Dichte Brücke, zweite Außenhaut" - -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Lüfterdrehzahl Brücke, zweite Außenhaut" - -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Fluss Brücke, zweite Außenhaut" - -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Geschwindigkeit Brücke, zweite Außenhaut" - -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Dichte der Brücken-Außenhaut" - -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Brücken-Außenhautfluss" - -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Brücken-Außenhautgeschwindigkeit" - -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Schwellenwert Stützstruktur Brücken-Außenhaut" - -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Maximale Dichte der Materialsparfüllung der Brücke" - -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Dichte Brücke, dritte Außenhaut" - -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Lüfterdrehzahl Brücke, dritte Außenhaut" - -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Fluss Brücke, dritte Außenhaut" - -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Geschwindigkeit Brücke, dritte Außenhaut" - -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Coasting Brückenwand" - -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Brückenwandfluss" - -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Brückenwandgeschwindigkeit" - -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Brim" - -msgctxt "brim_inside_margin label" -msgid "Brim Avoid Margin" -msgstr "" - -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Abstand zum Brim-Element" - -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Anzahl der Brim-Linien" - -msgctxt "brim_location label" -msgid "Brim Location" -msgstr "" - -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Brim ersetzt die Stützstruktur" - -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Breite des Brim-Elements" - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Druckplattenhaftung" - -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Druckplattenhaftung für Extruder" - -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Druckplattenhaftungstyp" - -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Druckplattenmaterial" - -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Druckbettform" - -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Temperatur Druckplatte" - -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Temperatur der Druckplatte für die erste Schicht" - -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Temperatur Druckabmessung" - -msgctxt "bv_temp_anomaly_limit label" -msgid "Build Volume temperature Limit" -msgstr "" - -msgctxt "bv_temp_warn_limit label" -msgid "Build Volume temperature Warning" -msgstr "" - -msgctxt "prime_tower_brim_enable description" -msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "Durch Aktivieren dieser Einstellung erhält Ihr Prime-Turm einen Rand, auch wenn das Modell keinen hat. Wenn Sie eine stabilere Basis für einen hohen Turm möchten, können Sie die Basis-Höhe erhöhen." - -msgctxt "center_object label" -msgid "Center Object" -msgstr "Objekt zentrieren" - -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "Ändern Sie die Geometrie des gedruckten Modells so, dass eine minimale Stützstruktur benötigt wird. Tiefe Überhänge werden flacher. Überhängende Bereiche fallen herunter und werden damit vertikaler." - -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "Wählt zwischen den verfügbaren Techniken zur Erzeugung von Stützstrukturen. Mit „Normal“ wird eine Stützstruktur direkt unter den überhängenden Teilen erzeugt, die direkt darauf liegen. In der Einstellung „Tree“ wird eine Baumstützstruktur erzeugt, die zu den überhängenden Teilen reicht und diese stützt. Die Stützstruktur verästelt sich innerhalb des Modells und stützt es so gut wie möglich vom Druckbett aus." - -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Coasting-Geschwindigkeit" - -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Coasting-Volumen" - -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "Beim Coasting wird der letzte Teil eines Extrusionswegs durch einen Bewegungsweg ersetzt. Das abgesonderte Material wird zum Druck des letzten Stücks des Extrusionswegs verwendet, um Fadenziehen zu vermindern." - -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Combing-Modus" - -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "Durch Combing bleibt die Düse während der Bewegung innerhalb von bereits gedruckten Bereichen. Dies führt zu einer leicht verlängerten Bewegungszeit, reduziert jedoch die Notwendigkeit von Einzügen. Wenn Combing deaktiviert ist, wird das Material eingezogen und die Düse bewegt sich in einer geraden Linie zum nächsten Punkt. Es ist außerdem möglich, das Combing über die oberen/unteren Außenhautbereiche zu vermeiden, oder nur Combing innerhalb der Füllung auszuführen." - -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Einstellungen Befehlszeile" - -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Konzentrisch" - -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Konzentrisch" +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "Is-Center-Ursprung" -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Konzentrisch" +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "Definiert, ob die X/Y-Koordinaten der Nullposition des Druckers in der Mitte des druckbaren Bereichs stehen." -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Konzentrisch" +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Anzahl Extruder" -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Konzentrisch" +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "Anzahl der Extruder-Elemente. Ein Extruder-Element ist die Kombination aus Zuführung, Filamentführungsschlauch und Düse." -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Konzentrisch" +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Anzahl der aktivierten Extruder" -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Konzentrisch" +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "Anzahl der aktivierten Extruder-Elemente; wird automatisch in der Software festgelegt" -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Konzentrisch" +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Düsendurchmesser außen" -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Konzentrisch" +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "Der Außendurchmesser der Düsenspitze." -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Winkel konische Stützstruktur" +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Düsenlänge" -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Mindestbreite konische Stützstruktur" +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "Der Höhenunterschied zwischen der Düsenspitze und dem untersten Bereich des Druckkopfes." -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Füllungslinien verbinden" +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Düsenwinkel" -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Füllungspolygone verbinden" +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "Der Winkel zwischen der horizontalen Planfläche und dem konischen Teil direkt über der Düsenspitze." -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Stützlinien verbinden" +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Heizzonenlänge" -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Zickzack-Elemente Stützstruktur verbinden" +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "Die Distanz von der Düsenspitze, in der Wärme von der Düse zum Filament geleitet wird." -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Polygone oben/unten verbinden" +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Temperatursteuerung der Düse aktivieren" -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "Verbinden Sie Füllungspfade, wenn sie nebeneinander laufen. Bei Füllungsmustern, die aus mehreren geschlossenen Polygonen bestehen, reduziert die Aktivierung dieser Einstellung die Durchlaufzeit erheblich." +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "Für die Temperatursteuerung von Cura. Schalten Sie diese Funktion aus, um die Düsentemperatur außerhalb von Cura zu steuern." -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "Die Zickzack-Elemente werden verbunden. Dies erhöht die Stärke der Zickzack-Stützstruktur." +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Aufheizgeschwindigkeit" -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "Die Enden der Stützlinien werden miteinander verbunden. Die Aktivierung dieser Einstellung kann Ihre Stützstruktur stabiler machen und Unterextrusion verhindern, kostet jedoch mehr Material." +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "Die Geschwindigkeit (°C/Sek.), mit der die Düse durchschnittlich bei normalen Drucktemperaturen und im Standby aufheizt." -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "Verbindet die Enden, an denen das Füllmuster auf die Innenwand trifft, mithilfe einer Linie, die der Form der Innenwand folgt. Durch Aktivierung dieser Einstellung kann die Füllung besser an den Wänden haften; auch die Auswirkungen der Füllung auf die Qualität der vertikalen Flächen werden reduziert. Die Deaktivierung dieser Einstellung reduziert den Materialverbrauch." +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Abkühlgeschwindigkeit" -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "Außenhaut-Pfade oben/unten verbinden, wenn sie nebeneinander laufen. Bei konzentrischen Mustern reduziert die Aktivierung dieser Einstellung die Durchlaufzeit erheblich. Da die Verbindungen jedoch auf halbem Weg über der Füllung erfolgen können, kann diese Funktion die Oberflächenqualität reduzieren." +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "Die Geschwindigkeit (°C/Sek.), mit der die Düse durchschnittlich bei normalen Drucktemperaturen und im Standby abkühlt." -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "Definieren Sie, ob Kanten am Modell-Umriss die Nahtposition beeinflussen. Keine bedeutet, dass Kanten keinen Einfluss auf die Nahtposition haben. Naht verbergen lässt die Naht mit höherer Wahrscheinlichkeit an einer innenliegenden Kante auftreten. Naht offenlegen lässt die Naht mit höherer Wahrscheinlichkeit an einer Außenkante auftreten. Naht verbergen oder offenlegen lässt die Naht mit höherer Wahrscheinlichkeit an einer innenliegenden oder außenliegenden Kante auftreten. Intelligent verbergen lässt die Naht an innen- oder außenliegenden Kanten auftreten, verwendet aber – falls zweckmäßig – häufiger innenliegende Kanten." +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Mindestzeit Standby-Temperatur" -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "Konvertieren Sie jede Fülllinie in diese mehrfachen Linien. Die zusätzlichen Linien überschneiden sich nicht, sondern vermeiden sich vielmehr. Damit wird die Füllung steifer, allerdings erhöhen sich Druckzeit und Materialverbrauch." +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "Die Mindestzeit, die ein Extruder inaktiv sein muss, bevor die Düse abkühlt. Nur wenn der Extruder über diese Zeit hinaus nicht verwendet wurde, kann er auf die Standby-Temperatur abkühlen." -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Abkühlgeschwindigkeit" +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "G-Code-Variante" -msgctxt "cooling description" -msgid "Cooling" -msgstr "Kühlung" +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "Der Typ des zu generierenden G-Codes." -msgctxt "cooling label" -msgid "Cooling" -msgstr "Kühlung" +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Kreuz" +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volumetrisch)" -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Quer" +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "3D-Kreuz" +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Größe 3D-Quertasche" +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Querfülldichte Bild für Stützstruktur" +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Querfülldichte Bild" +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits von Bytes" -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Kristallines Material" +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Würfel" +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Würfel-Unterbereich" +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Firmware-Einzug" -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Gehäuse Würfel-Unterbereich" +msgctxt "machine_firmware_retract description" +msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." +msgstr "Definiert, ob Firmware-Einzugsbefehle (G10/G11) anstelle der E-Eigenschaft in G1-Befehlen verwendet wird, um das Material einzuziehen." -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Mesh beschneiden" +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Extruder teilen sich Heizelement" -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "Der Materialfluss (in mm3 pro Sekunde) in Bezug zur Temperatur (Grad Celsius)." +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "Gibt an, ob die Extruder sich ein Heizelement teilen oder jeweils über ein eigenes verfügen." -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Voreingestellte Beschleunigung" +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Extruder teilen sich eine Düse" -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Standardtemperatur Druckplatte" +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "Gibt an, ob die Extruder gemeinsam eine Düse nutzen oder jeweils über eine eigene verfügen. In der Einstellung „true“ ist zu erwarten, dass das GCode-Skript „printer-start“ alle Extruder ordnungsgemäß in einem bekannten und untereinander kompatiblen Anfangszustand anordnet (Rückzugstellung; entweder Null oder mit einem nicht zurückgezogenen Filament); in diesem Fall wird die anfängliche Rückzugstellung für jeden Extruder durch den Parameter „machine_extruders_shared_nozzle_initial_retraction“ beschrieben." -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Voreingestellter Filament-Ruck" +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Rückzugstellung der gemeinsam genutzten Düse" -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Voreingestellte Drucktemperatur" +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "Bestimmt, wie weit das Filament jedes Extruders bei Abschluss des GCode-Skripts „printer-start“ von der gemeinsam genutzten Düsenspitze zurückgezogen sein soll; der Wert sollte gleich oder größer sein als die Länge des gemeinsamen Teils der Düsenkanäle." -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Voreingestellter X-Y-Ruck" +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Unzulässige Bereiche" -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Voreingestellter Z-Ruck" +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "Eine Liste mit Polygonen mit Bereichen, die für den Druckkopf unzulässig sind." -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "Voreingestellter Ruck für die Bewegung in der horizontalen Planfläche." +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Unzulässige Bereiche für die Düse" -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "Voreingestellter Ruck für den Motor in Z-Richtung." +msgctxt "nozzle_disallowed_areas description" +msgid "A list of polygons with areas the nozzle is not allowed to enter." +msgstr "Eine Liste mit Polygonen mit Bereichen, in welche die Düse nicht eintreten darf." -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "Voreingestellter Ruck für den Motor des Filaments." +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Gerätekopf und Lüfter Polygon" -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "Erkennt Brücken und ändert die Druckgeschwindigkeit, Fluss- und Lüftereinstellungen während des Drucks von Brücken." +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "Die Form des Druckkopfes. Dies sind die Koordinaten relativ zur Position des Druckkopfs; meist ist dies die Position des ersten Extruders. Die Abmessungen links und vor dem Druckkopf müssen negative Koordinaten sein." -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "Bestimmt die Reihenfolge, in der die Wände gedruckt werden. Das frühe Drucken der Außenwände hilft bei der Maßgenauigkeit, da Fehler von Innenwänden nicht an die Außenseite weitergegeben werden können. Wenn sie jedoch später gedruckt werden, ist ein Stapeldruck besser möglich, wenn Überhänge gedruckt werden. Bei einer ungleichmäßigen Anzahl an Gesamtinnenwänden wird die „mittlere letzte Linie“ immer zuletzt gedruckt." +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Brückenhöhe" -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "Legt fest, welchen Rang dieses Netz (Mesh) bei mehreren überlappenden Mesh-Füllungen hat. Bereiche, in denen mehrere Mesh-Füllungen überlappen, übernehmen die Einstellungen des Netzes mit dem höchsten Rang. Ist der Rang einer Mesh-Füllung höher, führt dies zu einer Modifizierung der Füllungen oder Mesh-Füllungen, deren Rang niedriger oder normal ist." +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "Der Höhenunterschied zwischen der Düsenspitze und dem Brückensystem (X- und Y-Achsen)." -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "Legt fest, wann eine Blitz-Füllschicht alles Darüberliegende tragen soll. Gemessen in dem Winkel, den die Schichtstärke vorgibt." +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Düsen-ID" -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "Legt fest, wann eine Blitz-Füllschicht das Modell darüber tragen soll. Gemessen in dem Winkel, den die Schichtstärke vorgibt." +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Der Düsen-ID für eine Extruder-Einheit, z. B. „AA 0,4“ und „BB 0,8“." -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Durchmesser" +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Düsendurchmesser" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "Vergrößerung des Durchmessers zum Modell" +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Der Innendurchmesser der Düse. Verwenden Sie diese Einstellung, wenn Sie eine Düse einer Nicht-Standardgröße verwenden." -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "Dies bezeichnet den Durchmesser, den jeder Ast haben sollte, wenn er die Druckplatte erreicht. Verbessert die Betthaftung." +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Versatz mit Extruder" -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "Verschiedene Optionen, die die Materialbereitstellung für die Extrusion und die Haftung am Druckbett verbessern. Durch die Brim-Funktion wird ein flacher, einschichtiger Bereich um die Basis des Modells herum hinzugefügt, um Warping zu verhindern. Durch die Raft-Funktion wird ein dickes Gitter mit Dach unter dem Modell hinzugefügt. Das Skirt-Element ist eine Linie, die um das Modell herum gedruckt wird, aber nicht mit dem Modell verbunden ist." +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "Verwenden Sie den Extruder-Versatz für das Koordinatensystem. Betrifft alle Extruder." -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Unzulässige Bereiche" +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Z-Position Extruder-Einzug" -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "Der Abstand zwischen den gedruckten Fülllinien. Diese Einstellung wird anhand von Fülldichte und Breite der Fülllinien berechnet." +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Die Z-Koordinate der Position, an der die Düse am Druckbeginn einzieht." -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "Der Abstand zwischen der ursprünglichen gedruckten Stützstrukturlinien. Diese Einstellung wird anhand der Dichte der Stützstruktur berechnet." +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "Extruder absolute Einzugsposition" -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "Der Abstand zwischen den gedruckten Stützstrukturbodenlinien. Diese Einstellung wird anhand der Dichte des Stützstrukturboden berechnet, kann aber auch separat eingestellt werden." +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "Bevorzugen Sie eine absolute Einzugsposition des Extruders anstelle einer relativen Position zur zuletzt bekannten Kopfposition." -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "Der Abstand zwischen den gedruckten Stützdachlinien. Diese Einstellung wird anhand der Dichte der Stützstruktur berechnet, kann aber auch separat eingestellt werden." +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Maximaldrehzahl X" -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "Der Abstand zwischen den gedruckten Stützstrukturlinien. Diese Einstellung wird anhand der Dichte der Stützstruktur berechnet." +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "Die Maximaldrehzahl für den Motor der X-Richtung." -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." -msgstr "Abstand vom Druck zum Boden der Stütze. Beachten Sie, dass dies auf die nächste Schichthöhe aufgerundet wird." +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Maximaldrehzahl Y" -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "Der Abstand von der Oberseite der Stützstruktur zum gedruckten Objekt." +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "Die Maximaldrehzahl für den Motor der Y-Richtung." -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." -msgstr "Abstand von der Ober-/Unterseite der Stützstruktur zum Druck. Diese Lücke ermöglicht es, die Stützen nach dem Drucken des Modells zu entfernen. Die oberste Stützschicht unter dem Modell könnte ein Bruchteil der normalen Schichten sein." +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Maximaldrehzahl Z" -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "Der Abstand, der nach jeder Fülllinie zurückgelegt wird, damit die Füllung besser an den Wänden haftet. Diese Option ähnelt Füllung überlappen, aber ohne Extrusion und nur an einem Ende der Fülllinie." +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "Die Maximaldrehzahl für den Motor der Z-Richtung." -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "Entfernung einer Bewegung nach der Außenwand, um die Z-Naht besser zu verbergen." +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Maximaldrehzahl E" -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "Der Abstand des Windschutzes zum gedruckten Objekt in den X/Y-Richtungen." +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "Die Maximalgeschwindigkeit des Filaments." -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "Der Abstand des Sicherschutzes zum gedruckten Objekt in den X/Y-Richtungen." +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Maximale Beschleunigung X" -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "Der Abstand der Stützstruktur zum Überhang in der X- und Y-Richtung." +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "Die maximale Beschleunigung für den Motor der X-Richtung" -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "Der Abstand der Stützstruktur zum gedruckten Objekt in der X- und Y-Richtung." +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Maximale Beschleunigung Y" -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Abstandspunkte werden verschoben, um den Pfad zu glätten" +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Die maximale Beschleunigung für den Motor der Y-Richtung." -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Abstandspunkte werden verschoben, um den Pfad zu glätten" +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Maximale Beschleunigung Z" -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "Keine Füllungsbereiche generieren, die kleiner als dieser sind (stattdessen Außenhaut verwenden)." +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Die maximale Beschleunigung für den Motor der Z-Richtung." -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Höhe des Windschutzes" +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Maximale Beschleunigung Filament" -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Begrenzung des Windschutzes" +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "Die maximale Beschleunigung für den Motor des Filaments." -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "X/Y-Abstand des Windschutzes" +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Voreingestellte Beschleunigung" -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Stütznetz ablegen" +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "Die voreingestellte Beschleunigung der Druckkopfbewegung." -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Duale Extrusion" +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Voreingestellter X-Y-Ruck" -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Elliptisch" +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "Voreingestellter Ruck für die Bewegung in der horizontalen Planfläche." -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Beschleunigungssteuerung aktivieren" +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Voreingestellter Z-Ruck" -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Brückeneinstellungen aktivieren" +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "Voreingestellter Ruck für den Motor in Z-Richtung." -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Coasting aktivieren" +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Voreingestellter Filament-Ruck" + +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "Voreingestellter Ruck für den Motor des Filaments." -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Konische Stützstruktur aktivieren" +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Schritte pro Millimeter (X)" -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Windschutz aktivieren" +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "Anzahl der Schritte des Schrittmotors, die zu einem Millimeter Bewegung in X-Richtung führen." -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "Fließbewegung aktivieren" +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Schritte pro Millimeter (Y)" -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Glätten aktivieren" +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "Anzahl der Schritte des Schrittmotors, die zu einem Millimeter Bewegung in Y-Richtung führen." -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Rucksteuerung aktivieren" +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Schritte pro Millimeter (Z)" -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Temperatursteuerung der Düse aktivieren" +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "Anzahl der Schritte des Schrittmotors, die zu einem Millimeter Bewegung in Z-Richtung führen." -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Sickerschutz aktivieren" +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Schritte pro Millimeter (E)" -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "Einzugstropfen aktivieren" +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "Wie viele Schritte sollen die Schrittmotoren ausführen, um das Feeder-Rad um einen Millimeter auf seinem Umfang zu bewegen." -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Einzugsturm aktivieren" +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "X-Endanschlag in positiver Richtung" -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Kühlung für Drucken aktivieren" +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "Definiert, ob der Endanschlag der X-Achse in positiver Richtung (hohe X-Koordinate) oder negativer Richtung (niedrige X-Koordinate) liegt." -msgctxt "ppr_enable label" -msgid "Enable Print Process Reporting" -msgstr "" +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Y-Endanschlag in positiver Richtung" -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Einzug aktivieren" +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "Definiert, ob der Endanschlag der Y-Achse in positiver Richtung (hohe Y-Koordinate) oder negativer Richtung (niedrige Y-Koordinate) liegt." -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Stütz-Brim aktivieren" +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Z-Endanschlag in positiver Richtung" -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Stützboden aktivieren" +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "Definiert, ob der Endanschlag der Z-Achse in positiver Richtung (hohe Z-Koordinate) oder negativer Richtung (niedrige Z-Koordinate) liegt." -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Stützstruktur-Schnittstelle aktivieren" +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Mindest-Vorschub" -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Stützdach aktivieren" +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "Die Mindestgeschwindigkeit für die Bewegung des Druckkopfes." -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "Beschleunigung für Bewegungen aktivieren" +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Feeder-Raddurchmesser" -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "Ruckfunktion für Bewegungen aktivieren" +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "Der Durchmesser des Rades für den Transport des Materials in den Feeder." -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "Aktiviert den äußeren Sickerschutz. Damit wird eine Hülle um das Modell erstellt, die eine zweite Düse abstreift, wenn diese auf derselben Höhe wie die erste Düse steht." +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "Skalierung der Lüftergeschwindigkeit auf 0–1" -msgctxt "ppr_enable description" -msgid "Enable print process reporting for setting threshold values for possible fault detection." -msgstr "" +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "Skalieren der Lüftergeschwindigkeit auf einen Wert zwischen 0 und 1 statt zwischen 0 und 256" -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "Ermöglicht es, dass kleine (bis zu „Kleine obere/untere Breite“) Bereiche auf der obersten (der Luft ausgesetzten) Hautschicht mit Wänden anstelle des Standardmusters gefüllt werden." +msgctxt "resolution label" +msgid "Quality" +msgstr "Qualität" -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "Ermöglicht die Justierung der Ruckfunktion des Druckkopfes bei Änderung der Geschwindigkeit in der X- oder Y-Achse. Eine Erhöhung der Ruckfunktion kann die Druckzeit auf Kosten der Druckqualität reduzieren." +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "Alle Einstellungen, die die Auflösung des Drucks beeinflussen. Diese Einstellungen haben große Auswirkung auf die Qualität (und Druckdauer)." -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "Ermöglicht die Justierung der Druckkopfbeschleunigung. Eine Erhöhung der Beschleunigungen kann die Druckzeit auf Kosten der Druckqualität reduzieren." +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Schichtdicke" -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "Die Druckerlüfter werden während des Druckens aktiviert. Die Lüfter verbessern die Qualität von Schichten mit kurzen Schichtzeiten und von Brückenbildung/Überhängen." +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "Die Dicke jeder Schicht in mm. Bei höheren Werten werden schnellere Drucke mit niedrigerer Auflösung hergestellt, bei niedrigeren Werten langsamere Drucke mit höherer Auflösung." -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "Ende G-Code" +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Dicke der ersten Schicht" -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Ausspüldauer am Ende des Filaments" +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "Die Dicke der ersten Schicht in mm. Eine dicke erste Schicht erleichtert die Haftung am Druckbett." -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Ausspülgeschwindigkeit am Ende des Filaments" +msgctxt "line_width label" +msgid "Line Width" +msgstr "Linienbreite" -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "Erzwingen Sie den Druck des Brims um das Modell herum, auch wenn dieser Raum sonst durch die Stützstruktur belegt würde. Dies ersetzt einige der ersten Schichten der Stützstruktur durch Brim-Bereiche." +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "Die Breite einer einzelnen Linie. Generell sollte die Breite jeder Linie der Breite der Düse entsprechen. Eine leichte Reduzierung dieses Werts kann jedoch zu besseren Drucken führen." -msgctxt "brim_location option everywhere" -msgid "Everywhere" -msgstr "" +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Breite der Wandlinien" -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "Überall" +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Die Breite einer einzelnen Wandlinie." -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Exklusiv" +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Breite der äußeren Wandlinien" -msgctxt "experimental label" -msgid "Experimental" -msgstr "Experimentell" +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "Die Breite der äußersten Wandlinie. Indem dieser Wert reduziert wird, können höhere Detaillierungsgrade erreicht werden." -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Naht offenlegen" +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Breite der inneren Wandlinien" -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Extensives Stitching" +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "Die Breite einer einzelnen Wandlinie für alle Wandlinien, außer der äußersten." -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "Extensives Stitching versucht die Löcher im Netz mit sich berührenden Polygonen abzudecken. Diese Option kann eine lange Verarbeitungszeit in Anspruch nehmen." +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Breite der oberen/unteren Linie" -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "Zusätzliche Füllung Wandlinien" +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Die Breite einer einzelnen oberen/unteren Linie." -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Linienanzahl der zusätzlichen Außenhaut" +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Breite der Fülllinien" -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "Nach einem Düsenwechsel zusätzlich bereitzustellendes Material." +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Die Breite einer einzelnen Fülllinie." -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "X-Position Extruder-Einzug" +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Skirt-/Brim-Linienbreite" -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Y-Position Extruder-Einzug" +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "Die Breite einer einzelnen Skirt- oder Brim-Linie." -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Z-Position Extruder-Einzug" +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Breite der Stützstrukturlinien" -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Extruder teilen sich Heizelement" +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Die Breite einer einzelnen Stützstrukturlinie." + +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Stützstruktur Schnittstelle Linienbreite" -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Extruder teilen sich eine Düse" +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "Die Breite einer einzelnen Stützdach- oder Bodenlinie." -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Geschwindigkeitsregulierer für Abkühlung bei Extrusion" +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Breite der Stützdachlinie" -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "Korrekturfaktor für die Geschwindigkeit auf Basis der Extrusionsbreite. Bei 0 % wird die Bewegungsgeschwindigkeit konstant in der Druckgeschwindigkeit gehalten. Bei 100 % wird die Bewegungsgeschwindigkeit so eingestellt, dass der Fluss (in mm³/s) konstant bleibt, d. h. Linien mit der Hälfte der normalen Linienstärke werden doppelt so schnell gedruckt und Linien mit der doppelten Linienstärke werden halb so schnell gedruckt. Ein Wert größer als 100 % kann dazu beitragen, den höheren Druck zu kompensieren, der zum Extrudieren breiter Linien erforderlich ist." +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "Die Breite einer einzelnen Stützdachlinie." -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Lüfterdrehzahl" +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Stützstruktur Boden Linienbreite" -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Lüfterdrehzahl überschreiben" +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "Die Breite einer Linienbreite eines einzelnen Bodens." -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "Teile, die kleiner sind als dieser Wert, werden in Detailgeschwindigkeit gedruckt." +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Linienbreite Einzugsturm" -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Merkmale, die noch nicht vollständig ausgearbeitet wurden." +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "Die Linienbreite eines einzelnen Einzugsturms." -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Feeder-Raddurchmesser" +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Linienbreite der ersten Schicht" -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Endgültige Drucktemperatur" +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "Multiplikator der Linienbreite der ersten Schicht. Eine Erhöhung dieses Werts verbessert möglicherweise die Betthaftung." -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Firmware-Einzug" +msgctxt "shell label" +msgid "Walls" +msgstr "Wände" -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Extruder für erste Schicht der Stützstruktur" +msgctxt "shell description" +msgid "Shell" +msgstr "Gehäuse" -msgctxt "material_flow label" -msgid "Flow" -msgstr "Fluss" +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Extruder für Wand" -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Verhältnis für Durchflussausgleich" +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "Die für das Drucken der Wände verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." -msgctxt "flow_anomaly_limit label" -msgid "Flow Limit" -msgstr "" +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Extruder Außenwand" -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Ausgleichsfaktor Durchflussrate" +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "Die für das Drucken der Außenwände verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Ausgleich Durchflussrate max. Extrusionswirkung" +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Extruder Innenwand" -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Fließtemperaturgraf" +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "Die für das Drucken der Innenwände verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." -msgctxt "flow_warn_limit label" -msgid "Flow Warning" -msgstr "" +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Wanddicke" -msgctxt "material_flow_layer_0 description" -msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." -msgstr "Fluss-Kompensation für die erste Schicht: Die auf der ersten Schicht extrudierte Materialmenge wird mit diesem Wert multipliziert." +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "Die Dicke der Wände in horizontaler Richtung. Dieser Wert geteilt durch die Wandliniendicke bestimmt die Anzahl der Wände." -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "Durchflusskompensation an den unteren Linien der ersten Schicht" +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Anzahl der Wandlinien" -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Durchflusskompensation an Füllungslinien." +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "Die Anzahl der Wände. Wenn diese anhand der Wanddicke berechnet wird, wird der Wert auf eine ganze Zahl auf- oder abgerundet." -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "Durchflusskompensation an Dach- oder Bodenlinien der Stützstruktur." +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Wandübergangslänge" -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "Durchflusskompensation an Linien von Flächen an der Oberseite des Druckobjekts." +msgctxt "wall_transition_length description" +msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." +msgstr "Wenn beim Übergang zwischen verschiedenen Wänden das Teil dünner wird, wird ein bestimmter Raum zugewiesen, in dem sich die Wandlinien teilen bzw. verbinden." -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Durchflusskompensation an Einzugsturmlinien." +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Anzahl verteilter Wände" -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Durchflusskompensation an Skirt- oder Brim-Linien." +msgctxt "wall_distribution_count description" +msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." +msgstr "Die Anzahl der Wände, gezählt von der Mitte aus, über welche die Variation verteilt werden soll. Niedrigere Werte führen dazu, dass sich die Außenwände in ihrer Stärke nicht verändern." -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Durchflusskompensation an Stützbodenlinien." +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Schwellenwinkel für Wandübergang" -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Durchflusskompensation an Stützdachlinien." +msgctxt "wall_transition_angle description" +msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." +msgstr "Legt fest, ab welchem Winkel Übergänge zwischen einer geraden und einer ungeraden Anzahl von Wänden erstellt werden. Eine Keilform mit einem größeren Winkel als in dieser Einstellung erhält keine Übergänge und es werden keine Wände in der Mitte gedruckt, um den verbleibenden Raum zu füllen. Wenn diese Einstellung verringert wird, reduziert dies die Anzahl und Länge dieser Mittelwände, kann jedoch Lücken oder zu starke Extrudierungen hinterlassen." -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Durchflusskompensation an Stützstrukturlinien." +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Wandübergangsfilter Abstand" -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "Durchflusskompensation an der äußersten Wandlinie der ersten Schicht" +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "Wenn in schneller Folge viele Übergänge zwischen verschiedenen Wänden erzeugt würden, werden gar keine Übergänge erzeugt. Übergänge, die näher beieinander liegen als dieser Abstand, werden entfernt." -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "Durchflusskompensation an der äußeren Wandlinie." +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Wandübergangsfilter Rand" -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Flussausgleich an der äußersten Wandlinie der Oberfläche." +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "Vermeiden Sie den Wechsel zwischen getrennten und zusammengeführten Wänden. Dieser Rand erweitert den Bereich der Linienstärken auf [Minimale Wandlinienstärke – Rand, 2 x Minimale Wandlinienstärke + Rand]. Wenn Sie diesen Rand vergrößern, wird die Anzahl der Übergänge reduziert, was die Anzahl der Starts/Stopps und die Anfahrzeit für die Extrusion reduziert. Große Unterschiede der Linienstärken können jedoch zu Unter- oder Überextrusionsproblemen führen." -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Flussausgleich auf den Wandlinien der Oberfläche für alle Wandlinien außer der äußersten." +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Wipe-Abstand der Außenwand" -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Durchflusskompensation an oberen/unteren Linien." +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "Entfernung einer Bewegung nach der Außenwand, um die Z-Naht besser zu verbergen." -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "Durchflusskompensation an allen Wandlinien bis auf die äußere, aber nur für die erste Schicht" +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Einfügung Außenwand" -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "Durchflusskompensation an allen Wandlinien bis auf die äußere." +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "Verwendete Einfügung am Pfad zur Außenwand. Wenn die Außenwand kleiner als die Düse ist und nach den Innenwänden gedruckt wird, verwenden Sie diesen Versatz, damit die Öffnung in der Düse mit den Innenwänden überlappt, anstelle mit der Außenseite des Modells." -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Durchflusskompensation an Wandlinien." +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Reihenfolge des Wanddrucks optimieren" -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "Fluss-Kompensation: Die extrudierte Materialmenge wird mit diesem Wert multipliziert." +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "Optimieren Sie die Reihenfolge, in der die Wände gedruckt werden, um die Anzahl der Einzüge und die zurückgelegten Distanzen zu reduzieren. Dieser Schritt bringt für die meisten Teile Vorteile, allerdings werden einige möglicherweise länger benötigen. Vergleichen Sie deshalb bitte die Schätzung der Druckzeiten mit und ohne Optimierung. Bei Wahl eines Brims als Druckplattenhaftungstyp ist die erste Schicht nicht optimiert." -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "Fließbewegungswinkel" +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Wandreihenfolge" -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "Fließbewegung – Verschiebeabstand" +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "Bestimmt die Reihenfolge, in der die Wände gedruckt werden. Das frühe Drucken der Außenwände hilft bei der Maßgenauigkeit, da Fehler von Innenwänden nicht an die Außenseite weitergegeben werden können. Wenn sie jedoch später gedruckt werden, ist ein Stapeldruck besser möglich, wenn Überhänge gedruckt werden. Bei einer ungleichmäßigen Anzahl an Gesamtinnenwänden wird die „mittlere letzte Linie“ immer zuletzt gedruckt." -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "Fließbewegung – kleiner Abstand" +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "Von innen nach außen" -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Ausspüldauer" +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "Von außen nach innen" -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Ausspülgeschwindigkeit" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Abwechselnde Zusatzwände" + +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "Es wird eine Zusatzwand für jede zweite Schicht gedruckt. Auf diese Weise gelangt Füllung zwischen diese Zusatzwände, was zu stärkeren Drucken führt." + +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Mindestlinienstärke der Wand" msgctxt "min_wall_line_width description" msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgstr "Bei dünnen Strukturen, die etwa ein- bis zweimal so groß sind wie die Düse, müssen die Linienstärken an die Dicke des Modells angepasst werden. Mit dieser Einstellung wird die Mindestlinienstärke für die Wände festgelegt. Die minimalen Linienstärken bestimmen gleichzeitig auch die maximalen Linienstärken, da wir bei einer gewissen Stärke der Geometrie von N- auf N+1-Wände übergehen, wobei die N-Wände breit und die N+1-Wände schmal sind. Die maximale Wandlinienstärke beträgt das Doppelte der minimalen Wandlinienstärke." -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Vorne" - -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Vorne links" +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Minimale Wandlinienstärke (geradzahlig)" -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Vorne rechts" +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "Die Mindestlinienstärke für normale polygonale Wände. Diese Einstellung legt fest, bei welcher Stärke des Modells vom Druck einer einzelnen dünnen Wandlinie auf den Druck zweier Wandlinien umgeschaltet wird. Eine höhere minimale geradzahlige Wandlinienstärke führt zu einer höheren maximalen geradzahligen Wandlinienstärke. Die maximale geradzahlige Wandlinienstärke wird berechnet als Außenwandlinienstärke + 0,5 x minimale geradzahlige Wandlinienstärke." -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Voll" +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Minimale Wandlinienstärke (ungeradzahlig)" -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Ungleichmäßige Außenhaut" +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "Die minimale Linienbreite für Polylinienwände mit Lücken in der mittleren Linie. Diese Einstellung legt fest, bei welcher Stärke im Modell ein Übergang vom Druck zweier Wandlinien zum Druck zweier Außenwände und einer einzigen zentralen Wand in der Mitte erfolgt. Eine höhere minimale ungeradzahlige Wandlinienstärke führt zu einer höheren maximalen ungeradzahligen Wandlinienstärke. Die maximale ungerade Wandlinienbreite wird berechnet als 2 x Minimale Wandlinienbreite." -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Dichte der ungleichmäßigen Außenhaut" +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Drucken von dünnen Wänden" -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Nur ungleichmäßige Außenhaut" +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "Drucken Sie Teile des Modells, die horizontal dünner als die Düsengröße sind." -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Punktabstand der ungleichmäßigen Außenhaut" +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Mindestgröße des Merkmals" -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Dicke der ungleichmäßigen Außenhaut" +msgctxt "min_feature_size description" +msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." +msgstr "Mindeststärke dünner Merkmale. Modellmerkmale, die dünner sind als dieser Wert, werden nicht gedruckt, während Merkmale, die dicker als die Mindeststärke sind, auf die Mindestwandlinienstärke verbreitert werden." -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "G-Code-Variante" +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Minimale Wandlinienstärke (dünn)" -msgctxt "machine_end_gcode description" -msgid "" -"G-code commands to be executed at the very end - separated by \n" -"." -msgstr "" -"G-Code-Befehle, die am Ende ausgeführt werden sollen – getrennt durch \n" -"." +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "Breite der Wand, die dünne Merkmale (entsprechend der Mindest-Merkmalgröße) des Modells ersetzen wird. Wenn die Mindeststärke der Wandlinie dünner ist als die Stärke des Merkmals, wird die Wand so dick wie das Merkmal selbst." -msgctxt "machine_start_gcode description" -msgid "" -"G-code commands to be executed at the very start - separated by \n" -"." -msgstr "" -"G-Code-Befehle, die zu Beginn ausgeführt werden sollen – getrennt durch \n" -"." +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Horizontale Erweiterung" -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "GUID des Materials. Dies wird automatisch eingestellt." +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "Der Abstand, der auf die Polygone in den einzelnen Schichten angewendet wird. Positive Werte können zu große Löcher kompensieren; negative Werte können zu kleine Löcher kompensieren." -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Brückenhöhe" +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Horizontale Erweiterung erste Schicht" -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "Ineinandergreifende Struktur generieren" +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "Der Abstand, der auf die Polygone in der ersten Schicht angewendet wird. Ein negativer Wert kann ein Zerquetschen der ersten Schicht, auch als „Elefantenfuß“ bezeichnet, ausgleichen." -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Stützstruktur generieren" +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Horizontalloch-Erweiterung" -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "Erstellen Sie ein Brim in den Stützstruktur-Füllungsbereichen der ersten Schicht. Das Brim wird unterhalb der Stützstruktur und nicht drumherum gedruckt. Die Aktivierung dieser Einstellung erhöht die Haftung der Stützstruktur am Druckbett." +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "Bei einem Wert größer als Null ist die Horizontalloch-Erweiterung der Versatz, der auf alle Löcher in jeder Schicht angewendet wird. Positive Werte vergrößern die Löcher, negative Werte verringern die Lochgröße. Wenn diese Einstellung aktiviert ist, kann sie mit „Maximaler Durchmesser der Horizontalloch-Erweiterung“ weiter angepasst werden." -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "Es wird eine dichte Schnittstelle zwischen dem Modell und der Stützstruktur generiert. Das erstellt eine Außenhaut oben auf der Stützstruktur, auf der das Modell gedruckt wird, und unten auf der Stützstruktur, wo diese auf dem Modell ruht." +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "Maximaler Durchmesser der Horizontalloch-Erweiterung" -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "Es wird eine dichte Materialschicht zwischen dem Boden der Stützstruktur und dem Modell generiert. Das erstellt eine Außenhaut zwischen dem Modell und der Stützstruktur." +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "Bei Werten größer als Null wird die Horizontalloch-Erweiterung schrittweise auf kleine Löcher angewendet (kleine Löcher werden stärker erweitert). Beim Wert Null wird die Horizontalloch-Erweiterung auf alle Löcher angewendet. Löcher, die größer als der maximale Durchmesser der Horizontalloch-Erweiterung sind, werden nicht erweitert." -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "Es wird eine dichte Materialschicht zwischen der Stützdachstruktur und dem Modell generiert. Das erstellt eine Außenhaut zwischen dem Modell und der Stützstruktur." +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Justierung der Z-Naht" -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "Damit werden Strukturen zur Unterstützung von Modellteilen mit Überhängen generiert. Ohne diese Strukturen würden solche Teile während des Druckvorgangs zusammenfallen." +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "Der Startdruckpunkt von jedem Teil einer Schicht. Wenn der Druck der Teile in aufeinanderfolgenden Schichten am gleichen Punkt startet, kann eine vertikale Naht sichtbar werden. Wird dieser neben einer benutzerdefinierten Position ausgerichtet, ist die Naht am einfachsten zu entfernen. Wird er zufällig platziert, fallen die Ungenauigkeiten am Startpunkt weniger auf. Wird der kürzeste Weg eingestellt, ist der Druck schneller." -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Glas" +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Benutzerdefiniert" -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "Gehen Sie ein weiteres Mal über die Oberfläche, aber extrudieren Sie diesmal sehr wenig Material. Dadurch wird die oberste Kunststoffschicht geschmolzen und es entsteht eine glattere Oberfläche. Der Druck in der Düsenkammer bleibt weiterhin hoch, so dass Risse in der Oberfläche mit Material gefüllt werden." +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Kürzester" -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Höhe stufenweise Füllungsschritte" +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Zufall" -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Stufenweise Füllungsschritte" +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Schärfste Kante" -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Höhe stufenweiser Füllungsschritt Stützstruktur" +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Position der Z-Naht" -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Stufenweise Füllungsschritte Stützstruktur" +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "Die Position in der Nähe der Stelle, an der die einzelnen Teile einer Ebene gedruckt werden sollen." -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "Reduzieren Sie die Temperatur allmählich auf diesen Wert, wenn Sie aufgrund der Mindestzeit für eine Schicht mit reduzierter Geschwindigkeit drucken." +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Hinten links" -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Gitter" +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Hinten" -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Gitter" +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Hinten rechts" -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Gitter" +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Rechts" -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Gitter" +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Vorne rechts" -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Gitter" +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Vorne" -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Vorne links" -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Äußere Wände gruppieren" +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Links" -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "Z-Naht X" -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "Die X-Koordinate der Position, neben der der Druck jedes Teils in einer Schicht begonnen wird." -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "Verfügt über Temperaturstabilisierung für den Druckraum" +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Z-Naht Y" -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Mit beheizter Druckplatte" +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "Die Y-Koordinate der Position, neben der der Druck jedes Teils in einer Schicht begonnen wird." -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Aufheizgeschwindigkeit" +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Präferenz Nahtkante" -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Heizzonenlänge" +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "Definieren Sie, ob Kanten am Modell-Umriss die Nahtposition beeinflussen. Keine bedeutet, dass Kanten keinen Einfluss auf die Nahtposition haben. Naht verbergen lässt die Naht mit höherer Wahrscheinlichkeit an einer innenliegenden Kante auftreten. Naht offenlegen lässt die Naht mit höherer Wahrscheinlichkeit an einer Außenkante auftreten. Naht verbergen oder offenlegen lässt die Naht mit höherer Wahrscheinlichkeit an einer innenliegenden oder außenliegenden Kante auftreten. Intelligent verbergen lässt die Naht an innen- oder außenliegenden Kanten auftreten, verwendet aber – falls zweckmäßig – häufiger innenliegende Kanten." -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "Die Begrenzung der Höhe des Windschutzes. Oberhalb dieser Höhe wird kein Windschutz mehr gedruckt." +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Keine" msgctxt "z_seam_corner option z_seam_corner_inner" msgid "Hide Seam" msgstr "Naht verbergen" +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Naht offenlegen" + msgctxt "z_seam_corner option z_seam_corner_any" msgid "Hide or Expose Seam" msgstr "Naht verbergen oder offenlegen" -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Horizontalloch-Erweiterung" +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Intelligent verbergen" -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "Maximaler Durchmesser der Horizontalloch-Erweiterung" +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Realitvwert der Z-Naht" -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "Löcher und Teilkonturen mit einem kleineren Durchmesser werden mit Small Feature Speed gedruckt." +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "Bei Aktivierung sind die Z-Naht-Koordinaten relativ zur Mitte der jeweiligen Teile. Bei Deaktivierung definieren die Koordinaten eine absolute Position auf dem Druckbett." -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Horizontale Erweiterung" +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Oben/Unten" -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Schrumpfungskompensation für horizontalen Skalierungsfaktor" +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Oben/Unten" -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "Streckmaß für das Filament im erhitzten Zustand, bevor es bricht." +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Oberfläche Außenhaut Extruder" -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "Maß, um das das Material eingezogen werden muss, damit es nicht heraussickert." +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "Die für das Drucken der obersten Außenhaut verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." -msgctxt "flow_rate_extrusion_offset_factor description" -msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." -msgstr "Wie weit das Filament bewegt werden kann, um Änderungen der Durchflussrate zu kompensieren – als Prozentsatz der Strecke, die das Filament sich während einer Sekunde Extrusion bewegen würde." +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Oberfläche Außenhaut Schichten" -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "Maß, um das das Filament eingezogen werden muss, damit es sauber abgebrochen werden kann." +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "Die Anzahl der obersten Außenhautschichten. Üblicherweise reicht eine einzige oberste Schicht aus, um höherwertige Oberflächen zu generieren." -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "Geschwindigkeit, mit der das Filament eingezogen werden muss, bevor es beim Einziehen abgebrochen wird." +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Oberfläche Außenhaut Linienbreite" -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "Geschwindigkeit, mit der das Material beim Filamentwechsel eingezogen werden muss, damit es nicht heraussickert." +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "Die Breite einer einzelnen Linie der oberen Druckbereiche." -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "Gibt an, wie schnell das Material nach Austausch einer leeren Spule gegen eine neue Spule desselben Materials vorbereitet werden muss." +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Oberfläche Außenhaut Muster" -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "Gibt an, wie schnell das Material nach einem Wechsel zu einem anderen Material vorbereitet werden muss." +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "Das Muster der obersten Schichten." -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "Gibt an, wie lange das Material sicher außerhalb der trockenen Lagerung aufbewahrt werden kann." +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Linien" -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "Anzahl der Schritte des Schrittmotors, die zu einem Millimeter Bewegung in X-Richtung führen." +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Konzentrisch" -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "Anzahl der Schritte des Schrittmotors, die zu einem Millimeter Bewegung in Y-Richtung führen." +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "Anzahl der Schritte des Schrittmotors, die zu einem Millimeter Bewegung in Z-Richtung führen." +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Gleichmäßige Reihenfolge oben" -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "Wie viele Schritte sollen die Schrittmotoren ausführen, um das Feeder-Rad um einen Millimeter auf seinem Umfang zu bewegen." +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Obere Linien werden in einer Reihenfolge gedruckt, so dass sie sich mit benachbarten Linien immer in einer einzigen Richtung überschneiden. Dies erfordert etwas mehr Zeit für den Druck, lässt aber flache Oberflächen gleichmäßiger aussehen." -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "Materialmenge (Filamentlänge), die erforderlich ist, um das letzte Material aus der Düse zu entfernen, wenn eine leere Spule durch eine neue Spule mit dem selben Material ersetzt wird." +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Linienrichtungen der Oberfläche Außenhaut" -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "Materialmenge (Filamentlänge), die erforderlich ist, um bei einem Materialwechsel das letzte Material aus der Düse zu entfernen." +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Eine Liste von Ganzzahl-Linienrichtungen für den Fall, wenn die oberen Außenhautschichten die Linien- oder Zickzack-Muster verwenden. Elemente aus der Liste werden während des Aufbaus der Schichten sequentiell verwendet und wenn das Listenende erreicht wird, beginnt die Liste von vorne. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (45- und 135-Grad) verwendet werden." -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "Bestimmt, wie weit das Filament jedes Extruders bei Abschluss des GCode-Skripts „printer-start“ von der gemeinsam genutzten Düsenspitze zurückgezogen sein soll; der Wert sollte gleich oder größer sein als die Länge des gemeinsamen Teils der Düsenkanäle." +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Extruder Oben/Unten" -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "Hierdurch wird bestimmt, wie Stützstruktur-Schnittstelle und Stützstruktur interagieren, wenn sie sich überschneiden. Zurzeit nur für Stützdächer implementiert." +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "Die für das Drucken der oberen und unteren Außenhaut verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "Dies bezeichnet die minimale Höhe eines Astes, der auf dem Modell platziert werden soll. Verhindert kleine Tropfen in der Stützstruktur. Diese Einstellung wird ignoriert, wenn ein Ast ein Stützdach hält." +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Obere/untere Dicke" -msgctxt "bridge_skin_support_threshold description" -msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." -msgstr "Wenn ein Außenhautbereich für weniger als diesen Prozentwert seines Bereichs unterstützt wird, drucken Sie ihn mit den Brückeneinstellungen. Ansonsten erfolgt der Druck mit den normalen Außenhauteinstellungen." +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "Die Dicke der oberen/unteren Schichten des Drucks. Dieser Wert geteilt durch die Schichtdicke bestimmt die Anzahl der oberen/unteren Schichten." -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "Weicht ein Werkzeugpfad-Segment mehr als diesen Winkel von der allgemeinen Bewegung ab, wird es geglättet." +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Obere Dicke" -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "Bei Aktivierung werden die zweite und dritte Schicht über der Luft mit den folgenden Einstellungen gedruckt. Ansonsten werden diese Schichten mit den normalen Einstellungen gedruckt." +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "Die Dicke der oberen Schichten des Drucks. Dieser Wert geteilt durch die Schichtdicke bestimmt die Anzahl der oberen Schichten." -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "Wenn in schneller Folge viele Übergänge zwischen verschiedenen Wänden erzeugt würden, werden gar keine Übergänge erzeugt. Übergänge, die näher beieinander liegen als dieser Abstand, werden entfernt." +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Obere Schichten" -msgctxt "raft_base_margin description" -msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "Die Anzahl der oberen Schichten. Wenn diese anhand der oberen Dicke berechnet wird, wird der Wert auf eine ganze Zahl auf- oder abgerundet." -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Wenn die Raft-Funktion aktiviert ist, gibt es einen zusätzlichen Raft-Bereich um das Modell herum, für das ein Raft erstellt wird. Bei einem größeren Abstand wird ein kräftigeres Raft-Element hergestellt, wobei jedoch mehr Material verbraucht wird und weniger Platz für das gedruckte Modell verbleibt." +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Untere Dicke" -msgctxt "raft_interface_margin description" -msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "Die Dicke der unteren Schichten des Drucks. Dieser Wert geteilt durch die Schichtdicke bestimmt die Anzahl der unteren Schichten." -msgctxt "raft_surface_margin description" -msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Untere Schichten" -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "Die interne Geometrie, die durch überlappende Volumen innerhalb eines Netzes entsteht, wird ignoriert und diese Volumen werden als ein Einziges gedruckt. Dadurch können unbeabsichtigte innere Hohlräume verschwinden." +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "Die Anzahl der unteren Schichten. Wenn diese anhand der unteren Dicke berechnet wird, wird der Wert auf eine ganze Zahl auf- oder abgerundet." -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Temperaturprüfung der Druckplatte einfügen" +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "Erste untere Schichten" -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Materialtemperaturen einfügen" +msgctxt "initial_bottom_layers description" +msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "Die Anzahl der ersten Schichten, die auf die Druckplatte aufgetragen werden. Wenn diese anhand der unteren Dicke berechnet werden, wird der Wert auf eine ganze Zahl auf- oder abgerundet." -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Inklusiv" +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Unteres/oberes Muster" -msgctxt "infill description" -msgid "Infill" -msgstr "Füllung" +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Das Muster der oberen/unteren Schichten." -msgctxt "infill label" -msgid "Infill" -msgstr "Füllung" +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Linien" + +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Konzentrisch" + +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" + +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Unteres Muster für erste Schicht" + +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "Das Muster am Boden des Drucks der ersten Schicht." + +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Linien" + +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Konzentrisch" + +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Beschleunigung Füllung" +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Polygone oben/unten verbinden" -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Füllung vor Wänden" +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "Außenhaut-Pfade oben/unten verbinden, wenn sie nebeneinander laufen. Bei konzentrischen Mustern reduziert die Aktivierung dieser Einstellung die Durchlaufzeit erheblich. Da die Verbindungen jedoch auf halbem Weg über der Füllung erfolgen können, kann diese Funktion die Oberflächenqualität reduzieren." -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Fülldichte" +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Gleichmäßige Reihenfolge oben/unten" -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Extruder für Füllung" +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Obere/Untere Linien werden in einer Reihenfolge gedruckt, so dass sie sich mit benachbarten Linien immer in gleicher Richtung überschneiden. Dies erfordert etwas mehr Zeit für den Druck, lässt aber flache Oberflächen gleichmäßiger aussehen." -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Fluss der Füllung" +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Richtungen der oberen/unteren Linie" -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Ruckfunktion Füllung" +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Eine Liste von Ganzzahl-Linienrichtungen für den Fall, wenn die oberen/unteren Schichten die Linien- oder Zickzack-Muster verwenden. Elemente aus der Liste werden während des Aufbaus der Schichten sequentiell verwendet und wenn das Listenende erreicht wird, beginnt die Liste von vorne. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (45- und 135-Grad) verwendet werden." -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Füllschichtdicke" +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "Kleine obere/untere Breite" -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "Linienrichtungen Füllung" +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "Kleine obere bzw. untere Bereiche werden mit Wänden anstelle des standardmäßigen oberen und unteren Musters gefüllt. So lassen sich ruckartige Bewegungen vermeiden. Dies ist standardmäßig für die oberste (der Luft ausgesetzten) Schicht deaktiviert (siehe „Kleine Oberseite/Unterseite auf der Oberfläche“)." -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Linienabstand Füllung" +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "Kleine Oberseite/Unterseite auf der Oberfläche" -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "Fülllinie multiplizieren" +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "Ermöglicht es, dass kleine (bis zu „Kleine obere/untere Breite“) Bereiche auf der obersten (der Luft ausgesetzten) Hautschicht mit Wänden anstelle des Standardmusters gefüllt werden." -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Breite der Fülllinien" +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Keine Außenhaut in Z-Lücken" -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Mesh-Füllung" +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "Wenn das Modell kleine, nur wenige Schichten hohe vertikale Lücken aufweist, sind diese normalerweise von einer Außenhaut bedeckt. Aktivieren Sie diese Einstellung, damit bei sehr kleinen Lücken keine Außenhaut gedruckt wird. Dies verkürzt die zum Drucken und Slicen benötigte Zeit, aber die Füllung bleibt der Luft ausgesetzt." -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Füllung für Überhänge Stützstruktur" +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Linienanzahl der zusätzlichen Außenhaut" -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Füllung überlappen" +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "Der äußerste Teil des oberen/unteren Musters wird durch eine Anzahl von konzentrischen Linien ersetzt. Die Verwendung von ein oder zwei Linien verbessert Dächer, die auf Füllmaterial beginnen." -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "Prozentsatz Füllung überlappen" +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Glätten aktivieren" -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Füllmuster" +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "Gehen Sie ein weiteres Mal über die Oberfläche, aber extrudieren Sie diesmal sehr wenig Material. Dadurch wird die oberste Kunststoffschicht geschmolzen und es entsteht eine glattere Oberfläche. Der Druck in der Düsenkammer bleibt weiterhin hoch, so dass Risse in der Oberfläche mit Material gefüllt werden." -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Füllgeschwindigkeit" +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Nur oberste Schicht glätten" -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Füllstruktur" +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "Führen Sie das Glätten nur für die allerletzte Schicht des Meshs aus. Dies spart Zeit, wenn die unteren Schichten keine glatte Oberflächenausführung erfordern." -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Bewegungsoptimierung Füllung" +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Glättungsmuster" -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "Wipe-Abstand der Füllung" +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "Das Muster, das für die Glättung der Oberflächen verwendet wird." -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "X-Versatz Füllung" +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Konzentrisch" -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Y-Versatz Füllung" +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "Erste untere Schichten" +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Gleichmäßige Reihenfolge hin/her" -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Anfängliche Lüfterdrehzahl" +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Linien werden hin und her in einer Reihenfolge gedruckt, so dass sie sich mit benachbarten Linien immer in gleicher Richtung überschneiden. Dies erfordert etwas mehr Zeit für den Druck, lässt aber flache Oberflächen gleichmäßiger aussehen." -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Beschleunigung erste Schicht" +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Glättungslinienabstand" -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "Unterer Fluss der ersten Schicht" +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "Der Abstand zwischen den Glättungslinien." -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "Durchmesser der ersten Schicht" +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Glättungsfluss" -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Fluss der ersten Schicht" +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "Die Materialmenge relativ zu einer normalen Außenhautlinie, um während des Glättens zu extrudieren. Indem die Düse gefüllt bleibt, können einige Spalten in der oberen Schicht gefüllt werden, allerdings führt zu viel davon zu einer übermäßigen Extrudierung und Markierungen seitlich der Oberfläche." -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Dicke der ersten Schicht" +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Glättungseinsatz" -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Horizontale Erweiterung erste Schicht" +msgctxt "ironing_inset description" +msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." +msgstr "Eine Distanz, die von den Kanten des Modells einzuhalten ist. Die Glättung des gesamten Weges zur Kante des Mesh führt möglicherweise zu einer gezackten Kante Ihres Drucks." -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "Innenwandfluss der ersten Schicht" +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Glättungsgeschwindigkeit" -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Ruckfunktion der ersten Schicht" +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "Die Geschwindigkeit, mit der über die Oberfläche gegangen wird." -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Linienbreite der ersten Schicht" +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Beschleunigung Glättung" -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "Außenwandfluss der ersten Schicht" +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "Die Beschleunigung, mit der das Glätten erfolgt." -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Druckbeschleunigung für die erste Schicht" +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Ruckfunktion glätten" -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Ruckfunktion Druck für die erste Schicht" +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung während des Glättens." -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Druckgeschwindigkeit für die erste Schicht" +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Prozentsatz Außenhaut überlappen" -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Geschwindigkeit der ersten Schicht" +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Justieren Sie die Überlappung zwischen den Wänden und den Außenhaut-Mittellinien bzw. den Endpunkten der Außenhaut-Mittellinien als Prozentwert der Linienbreite der Außenhautlinien und der inneren Wand. Eine geringe Überlappung ermöglicht die feste Verbindung der Wände mit der Außenhaut. Beachten Sie, dass bei einer einheitlichen Linienbreite von Außenhaut und Wand jeder Prozentwert über 50 % bereits dazu führen kann, dass die Außenhaut über die Wand hinausgeht, da in diesem Moment die Position der Düse des Außenhaut-Extruders möglicherweise bereits über die Wandmitte hinausgeht." -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "Linienabstand der ursprünglichen Stützstruktur" +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Außenhaut überlappen" -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Geschwindigkeit der Bewegung für die erste Schicht" +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Justieren Sie die Überlappung zwischen den Wänden und den Außenhaut-Mittellinien bzw. den Endpunkten der Außenhaut-Mittellinien. Eine geringe Überlappung ermöglicht die feste Verbindung der Wände mit der Außenhaut. Beachten Sie, dass bei einer einheitlichen Linienbreite von Außenhaut und Wand jeder Wert über die Hälfte der Wandbreite bereits dazu führen kann, dass die Außenhaut über die Wand hinausgeht, da in diesem Moment die Position der Düse des Außenhaut-Extruders möglicherweise bereits über die Wandmitte hinausgeht." -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Ruckfunktion Bewegung für die erste Schicht" +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Breite für das Entfernen der Außenhaut" -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Bewegungsgeschwindigkeit für die erste Schicht" +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "Dies bezeichnet die größte Breite der zu entfernenden Außenhautbereiche. Jeder Außenhautbereich, der kleiner als dieser Wert ist, verschwindet. Dies kann bei der Beschränkung der benötigten Zeit und Materialmenge für das Drucken der Außenhaut oben/unten an abgeschrägten Flächen des Modells unterstützen." + +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Breite für das Entfernen der Außenhaut oben" -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Z Überlappung der ersten Schicht" +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "Dies bezeichnet die größte Breite der zu entfernenden oberen Außenhautbereiche. Jeder Außenhautbereich, der kleiner als dieser Wert ist, verschwindet. Dies kann bei der Beschränkung der benötigten Zeit und Materialmenge für das Drucken der oberen Außenhaut an abgeschrägten Flächen des Modells unterstützen." -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Anfängliche Drucktemperatur" +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Breite für das Entfernen der Außenhaut unten" -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Beschleunigung Innenwand" +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "Dies bezeichnet die größte Breite der zu entfernenden unteren Außenhautbereiche. Jeder Außenhautbereich, der kleiner als dieser Wert ist, verschwindet. Dies kann bei der Beschränkung der benötigten Zeit und Materialmenge für das Drucken der unteren Außenhaut an abgeschrägten Flächen des Modells unterstützen." -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Extruder Innenwand" +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Expansionsdistanz Außenhaut" -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Ruckfunktion Innenwand" +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "Die Distanz, um die die Außenhäute in die Füllung expandiert werden. Höhere Werte lassen die Außenhaut besser am Füllmuster und die Wände an den angrenzenden Schichten besser an der Außenhaut haften. Niedrigere Werte reduzieren den Materialverbrauch." -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Geschwindigkeit Innenwand" +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Expansionsdistanz Außenhaut oben" -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Wandfluss innen" +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "Die Distanz, um die die oberen Außenhäute in die Füllung expandiert werden. Höhere Werte lassen die Außenhaut besser am Füllmuster und die Wände an den Schichten darüber besser an der Außenhaut haften. Niedrigere Werte reduzieren den Materialverbrauch." -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Breite der inneren Wandlinien" +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Expansionsdistanz Außenhaut unten" -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "Verwendete Einfügung am Pfad zur Außenwand. Wenn die Außenwand kleiner als die Düse ist und nach den Innenwänden gedruckt wird, verwenden Sie diesen Versatz, damit die Öffnung in der Düse mit den Innenwänden überlappt, anstelle mit der Außenseite des Modells." +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "Die Distanz, um die die unteren Außenhäute in die Füllung expandiert werden. Höhere Werte lassen die Außenhaut besser am Füllmuster und an den Wänden auf der darunter liegenden Schicht haften. Niedrigere Werte reduzieren den Materialverbrauch." -msgctxt "brim_location option inside" -msgid "Inside Only" -msgstr "" +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Maximaler Winkel Außenhaut für Expansion" -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "Von innen nach außen" +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "Die Außenhaut von Ober- und/oder Unterseiten Ihres Objekts, deren Winkel größer als dieser Wert sind, werden nicht expandiert. Dadurch wird vermieden, dass die schmalen Außenhautbereiche, die entstehen, wenn die Modelloberfläche eine nahezu vertikale Neigung aufweist, expandiert werden. Ein Winkel von 0° ist horizontal und führt dazu, dass ein solcher Außenhautbereich nicht expandiert wird; ein Winkel von 90° ist vertikal und führt dazu, dass die gesamte Außenhaut expandiert wird." -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "Schnittstellenlinien priorisiert" +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Mindestbreite Außenhaut für Expansion" -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "Schnittstelle priorisiert" +msgctxt "min_skin_width_for_expansion description" +msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." +msgstr "Außenhautbereiche, die schmaler als die Mindestbreite sind, werden nicht expandiert. Damit wird vermieden, dass enge Außenhautbereiche expandiert werden, die entstehen, wenn die Modellfläche eine nahezu vertikale Neigung aufweist." -msgctxt "prime_tower_mode option interleaved" -msgid "Interleaved" -msgstr "" +msgctxt "infill label" +msgid "Infill" +msgstr "Füllung" -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "Anzahl der Schichten ineinandergreifender Balken" +msgctxt "infill description" +msgid "Infill" +msgstr "Füllung" -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "Breite der ineinandergreifenden Balken" +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Extruder für Füllung" -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "Abstand zu Begrenzungen ineinandergreifender Strukturen" +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "Die für das Drucken der Füllung verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "Tiefe der ineinandergreifenden Struktur" +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Fülldichte" -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "Ausrichtung der ineinandergreifenden Struktur" +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "Passt die Fülldichte des Drucks an." -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Nur oberste Schicht glätten" +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Linienabstand Füllung" -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Beschleunigung Glättung" +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "Der Abstand zwischen den gedruckten Fülllinien. Diese Einstellung wird anhand von Fülldichte und Breite der Fülllinien berechnet." -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Glättungsfluss" +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Füllmuster" -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Glättungseinsatz" +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "Das Muster des Füllungsmaterials des Drucks. Die Linien- und Zickzack-Füllung wechselt die Richtung auf abwechselnden Schichten, was die Materialkosten reduziert. Die Gitter-, Dreieck-, Tri-Hexagon-, Kubus-, Oktett-, Viertelkubus-, Kreuz- und konzentrischen Muster werden in jeder Schicht vollständig gedruckt. Die Füllung in Form von Kreiseln, Würfeln, Viertelwürfeln und Achten wechselt mit jeder Schicht, um eine gleichmäßigere Verteilung der Stärke in jeder Richtung zu erreichen. Bei der Blitz-Füllung wird versucht, die Füllung zu minimieren, indem nur die Decke des Objekts unterstützt wird." -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Ruckfunktion glätten" +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Gitter" -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Glättungslinienabstand" +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Linien" -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Glättungsmuster" +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Dreiecke" -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Glättungsgeschwindigkeit" +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Tri-Hexagon" -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "Is-Center-Ursprung" +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Würfel" -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "Ist Stützmaterial" +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Würfel-Unterbereich" -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "Lässt sich das Material im erhitzten Zustand leicht brechen (kristallin) oder bildet es lange, verflochtene Polymerketten (nicht kristallin)?" +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Octet" -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "Wird dieses Material normalerweise während des Druckvorgangs als Stützmaterial verwendet?" +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Viertelwürfel" -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "Es werden nur die Umrisse der Teile gejittert und nicht die Löcher der Teile." +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Konzentrisch" -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Unterbrochene Flächen beibehalten" +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Schichtdicke" +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Kreuz" -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "Schichtstart X" +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "3D-Kreuz" -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Schichtstart Y" +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "Die Schichtdicke der Raft-Basisschicht. Dabei sollte es sich um eine dicke Schicht handeln, die fest an der Druckplatte haftet." +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Blitz" -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "Die Schichtdicke des Raft-Mittelbereichs." +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Füllungslinien verbinden" -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Die Schichtdicke der oberen Raft-Schichten." +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "Verbindet die Enden, an denen das Füllmuster auf die Innenwand trifft, mithilfe einer Linie, die der Form der Innenwand folgt. Durch Aktivierung dieser Einstellung kann die Füllung besser an den Wänden haften; auch die Auswirkungen der Füllung auf die Qualität der vertikalen Flächen werden reduziert. Die Deaktivierung dieser Einstellung reduziert den Materialverbrauch." -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "Überspringen Sie eine Verbindung zwischen den Stützstrukturlinien nach jedem N-Millimeter, um das Brechen der Stützstruktur zu erleichtern." +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Füllungspolygone verbinden" -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Links" +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "Verbinden Sie Füllungspfade, wenn sie nebeneinander laufen. Bei Füllungsmustern, die aus mehreren geschlossenen Polygonen bestehen, reduziert die Aktivierung dieser Einstellung die Durchlaufzeit erheblich." -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Druckkopf anheben" +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Linienrichtungen Füllung" + +msgctxt "infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." +msgstr "Eine Liste von Ganzzahl-Linienrichtungen für die Verwendung. Elemente aus der Liste werden während des Aufbaus der Schichten sequentiell verwendet und wenn das Listenende erreicht wird, beginnt die Liste von vorne. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (45- und 135-Grad für die Linien- und Zickzack-Muster und 45-Grad für alle anderen Muster) verwendet werden." -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Blitz" +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "X-Versatz Füllung" -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Überstandswinkel der Blitz-Füllung" +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "Das Füllmuster wird um diese Distanz entlang der X-Achse verschoben." -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Beschnittwinkel der Blitz-Füllung" +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Y-Versatz Füllung" -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Begradigungswinkel der Blitz-Füllung" +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "Das Füllmuster wird um diese Distanz entlang der Y-Achse verschoben." -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Stützwinkel der Blitz-Füllung" +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Füllstart randomisieren" -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "Begrenzung der Astreichweite" +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "Randomisieren Sie, welche Fülllinie zuerst gedruckt wird. So wird vermieden, dass ein Segment am stärksten ist. Allerdings muss dafür eine zusätzliche Bewegung ausgeführt werden." -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "Dieser Parameter schränkt ein, wie weit sich jeder Ast von der Stelle entfernen kann, die er stützt. Dadurch wird die Stabilität der Stützstruktur gestärkt, jedoch erhöht sich die Anzahl der Äste (und damit der Materialverbrauch•/ die Druckzeit)." +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "Fülllinie multiplizieren" -msgctxt "bv_temp_warn_limit description" -msgid "Limit on Build Volume Temperature warning for detection." -msgstr "" +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "Konvertieren Sie jede Fülllinie in diese mehrfachen Linien. Die zusätzlichen Linien überschneiden sich nicht, sondern vermeiden sich vielmehr. Damit wird die Füllung steifer, allerdings erhöhen sich Druckzeit und Materialverbrauch." -msgctxt "bv_temp_anomaly_limit description" -msgid "Limit on Build Volume temperature Anomaly for detection." -msgstr "" +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Zusätzliche Füllung Wandlinien" -msgctxt "print_temp_anomaly_limit description" -msgid "Limit on Print Temperature anomaly for detection." -msgstr "" +msgctxt "infill_wall_line_count description" +msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "Fügen Sie zusätzliche Wände um den Füllbereich hinzu. Derartige Wände können zu einem verringerten Absacken der oberen/unteren Außenhautlinien beitragen, was bedeutet, dass Sie weniger Außenhautschichten oben/unten bei derselben Qualität von Kosten für zusätzliches Material benötigen." +" Diese Funktion ist verknüpfbar mit „Füllungspolygone verbinden“, um alle Füllungen mit einem einzigen Extrusionspfad zu verbinden, ohne dass hierzu Vorwärtsbewegungen oder Rückzüge erforderlich sind, sofern die richtige Konfiguration gewählt wurde." -msgctxt "print_temp_warn_limit description" -msgid "Limit on Print temperature warning for detection." -msgstr "" +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Gehäuse Würfel-Unterbereich" -msgctxt "flow_anomaly_limit description" -msgid "Limit on flow anomaly for detection." -msgstr "" +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "Ein Zusatz zum Radius von der Mitte jedes Würfels, um die Modellbegrenzungen zu überprüfen und um zu entscheiden, ob dieser Würfel unterteilt werden sollte. Höhere Werte führen zu einem dickeren Gehäuse von kleinen Würfeln im Bereich der Modellbegrenzungen." -msgctxt "flow_warn_limit description" -msgid "Limit on the flow warning for detection." -msgstr "" +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "Prozentsatz Füllung überlappen" -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "Beschränkt die Menge dieses Meshs innerhalb der anderen Meshes. Sie können diese Funktion verwenden, um bestimmte Bereiche eines Mesh-Drucks mit unterschiedlichen Einstellungen und einem völlig anderen Extruder zu produzieren." +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Das Ausmaß des Überlappens zwischen der Füllung und den Wänden als Prozentwert der Füllungslinienbreite. Ein leichtes Überlappen ermöglicht es den Wänden, eine solide Verbindung mit der Füllung herzustellen." -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Begrenzt" +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Füllung überlappen" -msgctxt "line_width label" -msgid "Line Width" -msgstr "Linienbreite" +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Das Ausmaß des Überlappens zwischen der Füllung und den Wänden. Ein leichtes Überlappen ermöglicht es den Wänden, eine solide Verbindung mit der Füllung herzustellen." -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Linien" +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "Wipe-Abstand der Füllung" -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Linien" +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "Der Abstand, der nach jeder Fülllinie zurückgelegt wird, damit die Füllung besser an den Wänden haftet. Diese Option ähnelt Füllung überlappen, aber ohne Extrusion und nur an einem Ende der Fülllinie." -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Linien" +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Füllschichtdicke" -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Linien" +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "Die Dicke pro Schicht des Füllmaterials. Dieser Wert sollte immer ein Vielfaches der Schichtdicke sein und wird sonst auf- oder abgerundet." -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Linien" +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Stufenweise Füllungsschritte" -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Linien" +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "Anzahl der Male zur Reduzierung der Füllungsdichte um die Hälfte bei Arbeiten unter den oberen Flächen. Bereiche, die weiter an den Oberflächen sind, erhalten eine höhere Dichte bis zur Füllungsdichte." -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Linien" +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Höhe stufenweise Füllungsschritte" -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Linien" +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "Die Höhe der Füllung einer bestimmten Dichte vor dem Umschalten auf die halbe Dichte." -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Füllung vor Wänden" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Gerät" +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "Es wird die Füllung gedruckt, bevor die Wände gedruckt werden. Wenn man die Wände zuerst druckt, kann dies zu präziseren Wänden führen, aber Überhänge werden schlechter gedruckt. Wenn man die Füllung zuerst druckt, bekommt man stabilere Wände, aber manchmal zeigt sich das Füllmuster auf der Oberfläche." -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Gerätetiefe" +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Mindestbereich Füllung" -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Gerätekopf und Lüfter Polygon" +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "Keine Füllungsbereiche generieren, die kleiner als dieser sind (stattdessen Außenhaut verwenden)." -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Gerätehöhe" +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Füllstruktur" -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Gerät" +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "Drucken Sie Füllstrukturen nur dort, wo das Modell gestützt werden soll. Die Aktivierung dieser Option reduziert die Druckdauer und den Materialverbrauch, führt jedoch zu einer ungleichmäßigen Objektdicke." -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Gerätebreite" +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Füllung für Überhänge Stützstruktur" -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Gerätespezifische Einstellungen" +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "Der Mindestwinkel für Überhänge, für welche eine Stützstruktur zugefügt wird. Bei einem Wert von 0° werden Objekte komplett gefüllt, bei 90° wird keine Füllung ausgeführt." -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Überhänge druckbar machen" +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Stützenstärke für Außenhautkanten" -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "Erstellen Sie Netze, die einander berühren und sich leicht überlappen. Damit haften sie besser aneinander." +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "Die Stärke der zusätzlichen Füllung, die die Außenhautkanten stützt." -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "Macht die Bereiche der Stützstruktur am Boden kleiner als beim Überhang." +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Unterstützungsebenen für Außenhautkanten" -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "Sorgt für Unterstützung überall unterhalb des Stütznetzes, sodass kein Überhang im Stütznetz vorhanden ist." +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "Die Anzahl der zusätzlichen Schichten, die die Außenhautkanten stützen." -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "Bevorzugen Sie eine absolute Einzugsposition des Extruders anstelle einer relativen Position zur zuletzt bekannten Kopfposition." +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Stützwinkel der Blitz-Füllung" -msgctxt "layer_0_z_overlap description" -msgid "" -"Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" -"It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" -msgstr "" +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Legt fest, wann eine Blitz-Füllschicht alles Darüberliegende tragen soll. Gemessen in dem Winkel, den die Schichtstärke vorgibt." -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Passe die Gitter besser an den 3D-Druck an." +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Überstandswinkel der Blitz-Füllung" -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Legt fest, wann eine Blitz-Füllschicht das Modell darüber tragen soll. Gemessen in dem Winkel, den die Schichtstärke vorgibt." -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Beschnittwinkel der Blitz-Füllung" -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volumetrisch)" +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "Die Endpunkte von Füllungslinien werden gekürzt, um Material zu sparen. Bei dieser Einstellung handelt es sich um den Winkel des Überhangs der Endpunkte von diesen Linien." + +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Begradigungswinkel der Blitz-Füllung" -msgctxt "material description" +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "Um Druckzeit zu sparen, werden die Füllungslinien begradigt. Dies ist der maximal zulässige Winkel des Überhangs über die Länge der Füllung." + +msgctxt "material label" msgid "Material" msgstr "Material" -msgctxt "material label" +msgctxt "material description" msgid "Material" msgstr "Material" -msgctxt "material_brand label" -msgid "Material Brand" -msgstr "" +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Voreingestellte Drucktemperatur" -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "Material-GUID" +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "Die für den Druck verwendete Standardtemperatur. Dies sollte die „Basis“-Temperatur eines Materials sein. Alle anderen Drucktemperaturen sollten anhand dieses Wertes einen Versatz verwenden" -msgctxt "material_type label" -msgid "Material Type" -msgstr "" +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Temperatur Druckabmessung" -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Materialmenge zwischen den Wischvorgängen" +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "Die Temperatur der Druckumgebung. Beträgt der Wert 0, wird die Druckraumtemperatur nicht angepasst." -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Max. Combing Entfernung ohne Einziehen" +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Drucktemperatur" -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Maximale Beschleunigung X" +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "Die Temperatur, die für das Drucken verwendet wird." -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Maximale Beschleunigung Y" +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Drucktemperatur erste Schicht" -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Maximale Beschleunigung Z" +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer." +msgstr "Die Temperatur, die für den Druck der ersten Schicht verwendet wird." -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "Maximaler Astwinkel" +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Anfängliche Drucktemperatur" -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Maximale Abweichung" +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "Die Mindesttemperatur während des Aufheizens auf die Drucktemperatur, bei welcher der Druck bereits starten kann." -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Maximale Abweichung der Extrusionsfläche" +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Endgültige Drucktemperatur" -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Maximaldrehzahl des Lüfters" +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "Die Temperatur, bei der das Abkühlen bereits beginnen kann, bevor der Druck beendet wird." -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Maximale Beschleunigung Filament" +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Geschwindigkeitsregulierer für Abkühlung bei Extrusion" -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Maximaler Winkel des Modells" +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "Die zusätzliche Geschwindigkeit mit der die Düse während der Extrusion abkühlt. Der gleiche Wert wird verwendet, um Aufheizgeschwindigkeit anzugeben, die verloren geht wenn während der Extrusion aufgeheizt wird." -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Maximaler Lochflächen-Überstand" +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Standardtemperatur Druckplatte" -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Maximale Parkdauer" +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "Die für die erhitzte Druckplatte verwendete Standardtemperatur. Dies sollte die „Basis“-Temperatur einer Druckplatte sein. Alle anderen Drucktemperaturen sollten anhand dieses Wertes einen Versatz verwenden" -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Maximale Auflösung" +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Temperatur Druckplatte" -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Maximale Anzahl von Einzügen" +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "Die Temperatur, die für das beheizte Druckbett verwendet wird. Beträgt dieser Wert 0, wird das Bett nicht beheizt." -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Maximaler Winkel Außenhaut für Expansion" +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Temperatur der Druckplatte für die erste Schicht" -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Maximaldrehzahl E" +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "Die Temperatur, auf die das Druckbett für die erste Schicht erhitzt wird. Beträgt dieser Wert 0, wird das Druckbett für die erste Schicht nicht beheizt." -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Maximaldrehzahl X" +msgctxt "material_adhesion_tendency label" +msgid "Adhesion Tendency" +msgstr "Haftungstendenz" -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Maximaldrehzahl Y" +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "Oberflächenhaftungstendenz." -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Maximaldrehzahl Z" +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Oberflächenenergie" -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Maximaler Durchmesser für Stützpfeiler" +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Oberflächenenergie." -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Maximale Bewegungsauflösung" +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Kompensation der Schrumpfung des Skalierungsfaktors" -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "Die maximale Beschleunigung für den Motor der X-Richtung" +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "Um die Schrumpfung des Materials beim Abkühlen zu kompensieren, wird das Modell mit diesem Faktor skaliert." -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Die maximale Beschleunigung für den Motor der Y-Richtung." +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Schrumpfungskompensation für horizontalen Skalierungsfaktor" -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Die maximale Beschleunigung für den Motor der Z-Richtung." +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "Um die Schrumpfung des Materials beim Abkühlen auszugleichen, wird das Modell mit diesem Faktor in XY-Richtung (horizontal) skaliert." -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "Die maximale Beschleunigung für den Motor des Filaments." +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Schrumpfungskompensation für vertikalen Skalierungsfaktor" -msgctxt "bridge_sparse_infill_max_density description" -msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." -msgstr "Maximale Dichte der Füllung, die im Sparmodus eingefüllt werden soll. Haut über spärlicher Füllung wird als nicht unterstützt betrachtet und kann daher als Brückenhaut behandelt werden." +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "Um die Schrumpfung des Materials beim Abkühlen auszugleichen, wird das Modell mit diesem Faktor in Z-Richtung (vertikal) skaliert." -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "Der Mindestdurchmesser in den X/Y-Richtungen eines kleinen Bereichs, der durch einen speziellen Stützpfeiler gestützt wird." +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Kristallines Material" -msgctxt "max_extrusion_before_wipe description" -msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." -msgstr "Die maximale Materialmenge, die extrudiert werden kann, bevor die Düse ein weiteres Mal abgewischt wird. Ist dieser Wert kleiner als das in einer Schicht benötigte Materialvolumen, so hat die Einstellung in dieser Schicht keine Auswirkung, d.h. sie ist auf ein Wischen pro Schicht begrenzt." +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "Lässt sich das Material im erhitzten Zustand leicht brechen (kristallin) oder bildet es lange, verflochtene Polymerketten (nicht kristallin)?" -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Überlappung zusammengeführte Netze" +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Einzugsmaß für Sickerschutz" -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Netzreparaturen" +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "Maß, um das das Material eingezogen werden muss, damit es nicht heraussickert." -msgctxt "mesh_position_x label" -msgid "Mesh Position X" -msgstr "Netzposition X" +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Einzugsgeschwindigkeit für Sickerschutz" -msgctxt "mesh_position_y label" -msgid "Mesh Position Y" -msgstr "Netzposition Y" +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "Geschwindigkeit, mit der das Material beim Filamentwechsel eingezogen werden muss, damit es nicht heraussickert." -msgctxt "mesh_position_z label" -msgid "Mesh Position Z" -msgstr "Netzposition Z" +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Einzugsmaß für Bruchvorbereitung" -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Rang der Netzverarbeitung" +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "Streckmaß für das Filament im erhitzten Zustand, bevor es bricht." + +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Einzugsgeschwindigkeit für Bruchvorbereitung" + +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "Geschwindigkeit, mit der das Filament eingezogen werden muss, bevor es beim Einziehen abgebrochen wird." + +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Temperatur für Bruchvorbereitung" + +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "Die Temperatur, die zum Spülen des Materials verwendet wird, sollte ungefähr der höchstmöglichen Drucktemperatur entsprechen." + +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Einzugsmaß für das Brechen" -msgctxt "mesh_rotation_matrix label" -msgid "Mesh Rotation Matrix" -msgstr "Matrix Netzdrehung" +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "Maß, um das das Filament eingezogen werden muss, damit es sauber abgebrochen werden kann." -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Mitte" +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Einzugsgeschwindigkeit für das Brechen" -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Mindestbreite der Form" +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "Geschwindigkeit, mit der das Filament eingezogen werden muss, damit es sauber abgebrochen werden kann." -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Mindestzeit Standby-Temperatur" +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Bruchtemperatur" -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Mindestlänge Brückenwand" +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "Die Temperatur, bei der das Filament für eine saubere Bruchstelle gebrochen wird." -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Minimale Wandlinienstärke (geradzahlig)" +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Ausspülgeschwindigkeit" -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Fenster „Minimaler Extrusionsabstand“" +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "Gibt an, wie schnell das Material nach einem Wechsel zu einem anderen Material vorbereitet werden muss." -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Mindestgröße des Merkmals" +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Ausspüldauer" -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Mindest-Vorschub" +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "Materialmenge (Filamentlänge), die erforderlich ist, um bei einem Materialwechsel das letzte Material aus der Düse zu entfernen." -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "Mindesthöhe auf Modell" +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Ausspülgeschwindigkeit am Ende des Filaments" -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Mindestbereich Füllung" +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "Gibt an, wie schnell das Material nach Austausch einer leeren Spule gegen eine neue Spule desselben Materials vorbereitet werden muss." -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Mindestzeit für Schicht" +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Ausspüldauer am Ende des Filaments" -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Minimale Wandlinienstärke (ungeradzahlig)" +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "Materialmenge (Filamentlänge), die erforderlich ist, um das letzte Material aus der Düse zu entfernen, wenn eine leere Spule durch eine neue Spule mit dem selben Material ersetzt wird." -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Mindestumfang Polygon" +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Maximale Parkdauer" -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Mindestbreite Außenhaut für Expansion" +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "Gibt an, wie lange das Material sicher außerhalb der trockenen Lagerung aufbewahrt werden kann." -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Mindestgeschwindigkeit" +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Faktor für Bewegung ohne Ladung" -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Mindestbereich Stützstruktur" +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "Ein Faktor, der angibt, wie stark das Filament zwischen dem Feeder und der Düsenkammer komprimiert wird; hilft zu bestimmen, wie weit das Material für einen Filamentwechsel bewegt werden muss." -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Mindestbereich Stützstrukturboden" +msgctxt "material_flow label" +msgid "Flow" +msgstr "Fluss" -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Mindestbereich Stützstruktur-Schnittstelle" +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "Fluss-Kompensation: Die extrudierte Materialmenge wird mit diesem Wert multipliziert." -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Mindestbereich Stützstrukturdach" +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Wandfluss" -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "X/Y-Mindestabstand der Stützstruktur" +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Durchflusskompensation an Wandlinien." -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Minimale Wandlinienstärke (dünn)" +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Wandfluss außen" -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Mindestvolumen vor Coasting" +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "Durchflusskompensation an der äußeren Wandlinie." -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Mindestlinienstärke der Wand" +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Wandfluss innen" -msgctxt "minimum_interface_area description" -msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Mindestflächenbreite für Stützstruktur-Schnittstellen-Polygone. Polygone, die eine kleinere Fläche als diesen Wert aufweisen, werden als normale Stützstruktur gedruckt." +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "Durchflusskompensation an allen Wandlinien bis auf die äußere." -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "Mindestflächenbreite für Stützstruktur-Polygone. Polygone, die eine kleinere Fläche als diesen Wert aufweisen, werden nicht generiert." +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Fluss der äußersten Oberflächenwand" -msgctxt "minimum_bottom_area description" -msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Mindestfläche für die Dächer der Stützstruktur. Polygone, die eine kleinere Fläche als diesen Wert aufweisen, werden als normale Stützstruktur gedruckt." +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Flussausgleich an der äußersten Wandlinie der Oberfläche." -msgctxt "minimum_roof_area description" -msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Mindestfläche für die Dächer der Stützstruktur. Polygone, die eine kleinere Fläche als diesen Wert aufweisen, werden als normale Stützstruktur gedruckt." +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Fluss der inneren Oberflächenwand(en)" -msgctxt "min_feature_size description" -msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." -msgstr "Mindeststärke dünner Merkmale. Modellmerkmale, die dünner sind als dieser Wert, werden nicht gedruckt, während Merkmale, die dicker als die Mindeststärke sind, auf die Mindestwandlinienstärke verbreitert werden." +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Flussausgleich auf den Wandlinien der Oberfläche für alle Wandlinien außer der äußersten." -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "Die Mindestbreite, auf die die Basis der konischen Stützstruktur reduziert wird. Geringe Breiten können instabile Stützstrukturen zur Folge haben." +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Fluss oben/unten" -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Form" +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Durchflusskompensation an oberen/unteren Linien." -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Formwinkel" +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Fluss Oberfläche Außenhaut" -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Dachhöhe der Form" +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "Durchflusskompensation an Linien von Flächen an der Oberseite des Druckobjekts." -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Gleichmäßige Reihenfolge hin/her" +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Fluss der Füllung" -msgctxt "raft_surface_monotonic label" -msgid "Monotonic Raft Top Surface Order" -msgstr "" +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Durchflusskompensation an Füllungslinien." -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Gleichmäßige Reihenfolge oben" +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Skirt/Brim-Fluss" -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Gleichmäßige Reihenfolge oben/unten" +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Durchflusskompensation an Skirt- oder Brim-Linien." -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "Mehrere Skirt-Linien ermöglichen eine bessere Materialbereitstellung für die Extrusion für kleine Modelle. Wird dieser Wert auf 0 eingestellt, wird kein Skirt erstellt." +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Stützstruktur-Fluss" -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "Multiplikator der Linienbreite der ersten Schicht. Eine Erhöhung dieses Werts verbessert möglicherweise die Betthaftung." +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Durchflusskompensation an Stützstrukturlinien." -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Faktor für Bewegung ohne Ladung" +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Fluss Stützstruktur-Schnittstelle" -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Keine Außenhaut in Z-Lücken" +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "Durchflusskompensation an Dach- oder Bodenlinien der Stützstruktur." -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Nicht-traditionelle Möglichkeiten, Ihre Modelle zu drucken." +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Stützdachfluss" + +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Durchflusskompensation an Stützdachlinien." -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Keine" +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Stützbodenfluss" -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Keine" +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Durchflusskompensation an Stützbodenlinien." -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normal" +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Fluss Einzugsturm" -msgctxt "prime_tower_mode option normal" -msgid "Normal" -msgstr "" +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Durchflusskompensation an Einzugsturmlinien." -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Normal" +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Fluss der ersten Schicht" -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "Normalerweise versucht Cura kleine Löcher im Netz abzudecken und Teile von Schichten, die große Löcher aufweisen, zu entfernen. Die Aktivierung dieser Option erhält jene Teile, die nicht abgedeckt werden können. Diese Option sollte nur als letzter Ausweg verwendet werden, wenn es andernfalls nicht möglich ist, einen korrekten G-Code zu berechnen." +msgctxt "material_flow_layer_0 description" +msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." +msgstr "Fluss-Kompensation für die erste Schicht: Die auf der ersten Schicht extrudierte Materialmenge wird mit diesem Wert multipliziert." -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Nicht in Außenhaut" +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "Innenwandfluss der ersten Schicht" -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "Nicht auf der Außenfläche" +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "Durchflusskompensation an allen Wandlinien bis auf die äußere, aber nur für die erste Schicht" -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Düsenwinkel" +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "Außenwandfluss der ersten Schicht" -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Düsendurchmesser" +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "Durchflusskompensation an der äußersten Wandlinie der ersten Schicht" -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Unzulässige Bereiche für die Düse" +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "Unterer Fluss der ersten Schicht" -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Düsen-ID" +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "Durchflusskompensation an den unteren Linien der ersten Schicht" -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Düsenlänge" +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Standby-Temperatur" -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Zusätzliche Einzugsmenge bei Düsenwechsel" +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "Die Temperatur der Düse, wenn eine andere Düse aktuell für das Drucken verwendet wird." -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Düsenwechsel Einzugsgeschwindigkeit (Zurückschieben)" +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "Ist Stützmaterial" -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Düsenwechsel Rückzuggeschwindigkeit" +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "Wird dieses Material normalerweise während des Druckvorgangs als Stützmaterial verwendet?" -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Düsenwechsel Einzugsabstand" +msgctxt "speed label" +msgid "Speed" +msgstr "Geschwindigkeit" -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Düsenwechsel Rückzugsgeschwindigkeit" +msgctxt "speed description" +msgid "Speed" +msgstr "Geschwindigkeit" -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Anzahl Extruder" +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Druckgeschwindigkeit" -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Anzahl der aktivierten Extruder" +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "Die Geschwindigkeit, mit der gedruckt wird." -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Anzahl der langsamen Schichten" +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Füllgeschwindigkeit" -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "Anzahl der aktivierten Extruder-Elemente; wird automatisch in der Software festgelegt" +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "Die Geschwindigkeit, mit der die Füllung gedruckt wird." -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "Anzahl der Extruder-Elemente. Ein Extruder-Element ist die Kombination aus Zuführung, Filamentführungsschlauch und Düse." +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Wandgeschwindigkeit" -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "Anzahl der Wiederholungen für das Bewegen der Düse über der Bürste." +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "Die Geschwindigkeit, mit der die Wände gedruckt werden." -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "Anzahl der Male zur Reduzierung der Füllungsdichte um die Hälfte bei Arbeiten unter den oberen Flächen. Bereiche, die weiter an den Oberflächen sind, erhalten eine höhere Dichte bis zur Füllungsdichte." +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Geschwindigkeit Außenwand" -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "Anzahl der Male zur Reduzierung der Stützstruktur-Füllungsdichte um die Hälfte bei Arbeiten unter den oberen Flächen. Bereiche, die weiter an den Oberflächen sind, erhalten eine höhere Dichte bis zur Füllungsdichte der Stützstruktur." +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "Die Geschwindigkeit, mit der die Außenwände gedruckt werden. Durch das Drucken der Außenwand bei einer niedrigeren Geschwindigkeit wird eine bessere Endqualität der Außenhaut erreicht. Wenn allerdings zwischen der Geschwindigkeit für die Innenwand und jener für die Außenwand ein zu großer Unterschied besteht, wird die Qualität negativ beeinträchtigt." -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Octet" +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Geschwindigkeit Innenwand" -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Aus" +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "Die Geschwindigkeit, mit der alle Innenwände gedruckt werden. Wenn die Innenwand schneller als die Außenwand gedruckt wird, wird die Druckzeit reduziert. Es wird empfohlen, diese Geschwindigkeit zwischen der Geschwindigkeit für die Außenwand und der Füllgeschwindigkeit einzustellen." -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "Verwendeter Versatz für das Objekt in X-Richtung." +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Geschwindigkeit der äußeren Oberfläche der Wand" -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "Verwendeter Versatz für das Objekt in Y-Richtung." +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "Die Geschwindigkeit, mit der die äußersten Wände der Oberfläche gedruckt werden." -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "Der für das Objekt in Z-Richtung verwendete Versatz. Damit können Sie den Vorgang ausführen, der unter dem Begriff „Objekt absenken“ verwendet wurde." +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Geschwindigkeit der inneren Oberfläche der Wand" -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Versatz mit Extruder" +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "Die Geschwindigkeit, mit der die inneren Wände der Oberfläche gedruckt werden." -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "Wenn möglich auf der Druckplatte" +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Oberfläche Außenhaut Geschwindigkeit" -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "Bei Bedarf auf dem Modell" +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "Die Geschwindigkeit, mit der die Oberflächen der Außenhaut-Schichten gedruckt werden." -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "Nacheinander" +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Geschwindigkeit obere/untere Schicht" -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "Führen Sie nur einen Z-Sprung aus, wenn Sie über gedruckte Teile fahren, die nicht durch eine horizontale Bewegung vermeidbar sind, indem Sie gedruckte Teile während der Fahrt vermeiden." +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "Die Geschwindigkeit, mit der die oberen/unteren Schichten gedruckt werden." -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "Führen Sie das Glätten nur für die allerletzte Schicht des Meshs aus. Dies spart Zeit, wenn die unteren Schichten keine glatte Oberflächenausführung erfordern." +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Stützstrukturgeschwindigkeit" -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Winkel für Sickerschutz" +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "Die Geschwindigkeit, mit der die Stützstruktur gedruckt wird. Durch das Drucken der Stützstruktur bei höheren Geschwindigkeiten kann die Gesamtdruckzeit deutlich verringert werden. Die Oberflächenqualität der Stützstruktur ist nicht wichtig, da diese nach dem Drucken entfernt wird." -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Abstand für Sickerschutz" +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Stützstruktur-Füllungsgeschwindigkeit" -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "Optimale Astreichweite" +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "Die Geschwindigkeit, mit der die Füllung der Stützstruktur gedruckt wird. Durch das Drucken der Füllung bei einer geringeren Geschwindigkeit, kann die Stabilität verbessert werden." -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Reihenfolge des Wanddrucks optimieren" +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Stützstruktur-Schnittstellengeschwindigkeit" -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "Optimieren Sie die Reihenfolge, in der die Wände gedruckt werden, um die Anzahl der Einzüge und die zurückgelegten Distanzen zu reduzieren. Dieser Schritt bringt für die meisten Teile Vorteile, allerdings werden einige möglicherweise länger benötigen. Vergleichen Sie deshalb bitte die Schätzung der Druckzeiten mit und ohne Optimierung. Bei Wahl eines Brims als Druckplattenhaftungstyp ist die erste Schicht nicht optimiert." +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "Die Geschwindigkeit, mit der die Dächer und Böden der Stützstruktur gedruckt werden. Durch das Drucken bei einer geringeren Geschwindigkeit kann die Qualität der Überhänge verbessert werden." + +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Stützdachgeschwindigkeit" -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Düsendurchmesser außen" +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "Die Geschwindigkeit, mit der die Dächer der Stützstruktur gedruckt werden. Durch das Drucken bei einer geringeren Geschwindigkeit kann die Qualität der Überhänge verbessert werden." -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Beschleunigung Außenwand" +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Geschwindigkeit Bodenstruktur" -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Extruder Außenwand" +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "Die Geschwindigkeit, mit der die Böden der Stützstruktur gedruckt werden. Durch das Drucken bei einer geringeren Geschwindigkeit kann die Haftung des Stützdachs Ihres Modells verbessert werden." -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Wandfluss außen" +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Geschwindigkeit Einzugsturm" -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Einfügung Außenwand" +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "Die Geschwindigkeit, mit der der Einzugsturm gedruckt wird. Das Drucken des Einzugsturms bei einer geringeren Geschwindigkeit kann zu einem stabileren Ergebnis führen, wenn die Haftung zwischen den verschiedenen Filamenten nicht optimal ist." -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "Ruckfunktion Außenwand" +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Bewegungsgeschwindigkeit" -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Breite der äußeren Wandlinien" +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "Die Geschwindigkeit, mit der Bewegungen durchgeführt werden." -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Geschwindigkeit Außenwand" +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Geschwindigkeit der ersten Schicht" -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Wipe-Abstand der Außenwand" +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "Die Geschwindigkeit für die erste Schicht. Ein niedrigerer Wert wird empfohlen, um die Haftung auf der Bauplatte zu verbessern. Hat keinen Einfluss auf die Haftstrukturen des Druckbetts selbst, wie Krempe und Raft." -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Die äußeren Wände verschiedener Inseln in derselben Schicht werden nacheinander gedruckt. Wenn aktiviert, wird die Menge der Flussänderungen begrenzt, da die Wände nacheinander gedruckt werden, wenn deaktiviert, wird die Anzahl der Fahrten zwischen den Inseln reduziert, da die Wände auf den gleichen Inseln gruppiert sind." +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Druckgeschwindigkeit für die erste Schicht" -msgctxt "brim_location option outside" -msgid "Outside Only" -msgstr "" +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "Die Druckgeschwindigkeit für die erste Schicht. Ein niedrigerer Wert wird empfohlen, um die Haftung an der Druckplatte zu verbessern." -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "Von außen nach innen" +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Bewegungsgeschwindigkeit für die erste Schicht" -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Winkel für überhängende Wände" +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "Die Bewegungsgeschwindigkeit für die erste Schicht. Ein niedrigerer Wert wird empfohlen, um das Wegziehen zuvor gedruckter Teile von der Druckplatte zu vermeiden. Der Wert dieser Einstellung kann automatisch aus dem Verhältnis zwischen Bewegungsgeschwindigkeit und Druckgeschwindigkeit errechnet werden." -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Geschwindigkeit für überhängende Wände" +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Geschwindigkeit Skirt/Brim" -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "Überhängende Wände werden zu diesem Prozentwert ihrer normalen Druckgeschwindigkeit gedruckt." +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "Die Geschwindigkeit, mit der die Skirt- und Brim-Elemente gedruckt werden. Normalerweise wird dafür die Geschwindigkeit der Basisschicht verwendet. In machen Fällen kann es jedoch vorteilhaft sein, das Skirt- oder Brim-Element mit einer anderen Geschwindigkeit zu drucken." -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Pausieren nach Aufhebung des Einzugs." +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Sprunghöhe Z" -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "Lüfterdrehzahl in Prozentwert für das Drucken von Brückenwänden und -Außenhaut." +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "Die Geschwindigkeit, mit der bei Z-Sprüngen die vertikale Bewegung (Z-Achse) erfolgt. Diese liegt in der Regel unterhalb der Druckgeschwindigkeit, da die Bewegung von Druckbett oder Brücke schwieriger ist." -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "Lüfterdrehzahl in Prozentwert für das Drucken der zweiten Brücken-Außenhautschicht." +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Anzahl der langsamen Schichten" -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "Prozentwert der Lüfterdrehzahl für die Verwendung beim Drucken der Außenhautbereiche direkt oberhalb der Stützstruktur. Die Verwendung einer hohen Lüfterdrehzahl ermöglicht ein leichteres Entfernen der Stützstruktur." +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "Die ersten Schichten werden langsamer als der Rest des Modells gedruckt, damit sie besser am Druckbett haften und um die Wahrscheinlichkeit eines erfolgreichen Drucks zu erhöhen. Die Geschwindigkeit wird während des Druckens dieser Schichten schrittweise erhöht." -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "Prozentwert der Lüfterdrehzahl für das Drucken der dritten Brücken-Außenhautschicht." +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Verhältnis für Durchflussausgleich" -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "Polygone in geschnittenen Schichten, die einen Umfang unter diesem Wert haben, werden ausgefiltert. Niedrigere Werte führen zu einem Mesh mit höherer Auflösung zulasten der Slicing-Zeit. Dies gilt in erster Linie für SLA-Drucker mit höherer Auflösung und sehr kleine 3D-Modelle mit zahlreichen Details." +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "Korrekturfaktor für die Geschwindigkeit auf Basis der Extrusionsbreite. Bei 0 % wird die Bewegungsgeschwindigkeit konstant in der Druckgeschwindigkeit gehalten. Bei 100 % wird die Bewegungsgeschwindigkeit so eingestellt, dass der Fluss (in mm³/s) konstant bleibt, d. h. Linien mit der Hälfte der normalen Linienstärke werden doppelt so schnell gedruckt und Linien mit der doppelten Linienstärke werden halb so schnell gedruckt. Ein Wert größer als 100 % kann dazu beitragen, den höheren Druck zu kompensieren, der zum Extrudieren breiter Linien erforderlich ist." -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "Bevorzugter Astwinkel" +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Beschleunigungssteuerung aktivieren" -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "Vermeiden Sie den Wechsel zwischen getrennten und zusammengeführten Wänden. Dieser Rand erweitert den Bereich der Linienstärken auf [Minimale Wandlinienstärke – Rand, 2 x Minimale Wandlinienstärke + Rand]. Wenn Sie diesen Rand vergrößern, wird die Anzahl der Übergänge reduziert, was die Anzahl der Starts/Stopps und die Anfahrzeit für die Extrusion reduziert. Große Unterschiede der Linienstärken können jedoch zu Unter- oder Überextrusionsproblemen führen." +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "Ermöglicht die Justierung der Druckkopfbeschleunigung. Eine Erhöhung der Beschleunigungen kann die Druckzeit auf Kosten der Druckqualität reduzieren." -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Beschleunigung Einzugsturm" +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Beschleunigung für Bewegungen aktivieren" -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Base" -msgstr "Grundfläche des Prime-Turms" +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "Verwenden Sie eine separate Beschleunigungsrate für Bewegungen. Wenn diese Option deaktiviert ist, wird für Bewegungen der Beschleunigungswert der gedruckten Linie an der Zielposition verwendet." -msgctxt "prime_tower_base_height label" -msgid "Prime Tower Base Height" -msgstr "Höhe der Prime-Turm-Basis" +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Beschleunigung Druck" -msgctxt "prime_tower_base_size label" -msgid "Prime Tower Base Size" -msgstr "Größe der Prime-Turm-Basis" +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "Die Beschleunigung, mit der das Drucken erfolgt." -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Slope" -msgstr "Neigung der Prime-Turm-Basis" +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Beschleunigung Füllung" -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Fluss Einzugsturm" +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "Die Beschleunigung, mit der die Füllung gedruckt wird." -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "Ruckfunktion Einzugsturm" +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Beschleunigung Wand" -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Linienbreite Einzugsturm" +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "Die Beschleunigung, mit der die Wände gedruckt werden." -msgctxt "prime_tower_max_bridging_distance label" -msgid "Prime Tower Maximum Bridging Distance" -msgstr "" +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Beschleunigung Außenwand" -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Mindestvolumen Einzugsturm" +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "Die Beschleunigung, mit der die Außenwände gedruckt werden." -msgctxt "prime_tower_raft_base_line_spacing label" -msgid "Prime Tower Raft Line Spacing" -msgstr "Linienabstand des Prime-Turm-Floßes" +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Beschleunigung Innenwand" -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Größe Einzugsturm" +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "Die Beschleunigung, mit der die Innenwände gedruckt werden." -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Geschwindigkeit Einzugsturm" +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Beschleunigung der äußeren Oberfläche der Wand" -msgctxt "prime_tower_mode label" -msgid "Prime Tower Type" -msgstr "" +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "Die Beschleunigung, mit der die äußersten Wände der Oberfläche gedruckt werden." -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "X-Position des Einzugsturm" +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Beschleunigung der inneren Oberfläche der Wand" -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Y-Position des Einzugsturms" +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "Die Beschleunigung, mit der die inneren Wände der Oberfläche gedruckt werden." -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Beschleunigung Druck" +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Beschleunigung Oberfläche Außenhaut" -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Ruckfunktion Drucken" +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "Die Beschleunigung, mit der die Oberflächen der Außenhaut-Schichten gedruckt werden." -msgctxt "ppr label" -msgid "Print Process Reporting" -msgstr "" +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Beschleunigung Oben/Unten" + +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "Die Beschleunigung, mit der die oberen/unteren Schichten gedruckt werden." -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Druckreihenfolge" +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Beschleunigung Stützstruktur" -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Druckgeschwindigkeit" +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "Die Beschleunigung, mit der die Stützstruktur gedruckt wird." -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Drucken von dünnen Wänden" +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Beschleunigung Stützstrukturfüllung" -msgctxt "brim_location description" -msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." -msgstr "" +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "Die Beschleunigung, mit der die Füllung der Stützstruktur gedruckt wird." -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "Drucken Sie einen Turm neben dem Druck, der zum Einziehen des Materials nach jeder Düsenschaltung dient." +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Beschleunigung Stützstrukturschnittstelle" -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "Drucken Sie Füllstrukturen nur dort, wo das Modell gestützt werden soll. Die Aktivierung dieser Option reduziert die Druckdauer und den Materialverbrauch, führt jedoch zu einer ungleichmäßigen Objektdicke." +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "Die Beschleunigung, mit der die Böden der Stützstruktur gedruckt wird. Durch das Drucken bei einer geringeren Beschleunigung kann die Qualität der Überhänge verbessert werden." -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Linien werden hin und her in einer Reihenfolge gedruckt, so dass sie sich mit benachbarten Linien immer in gleicher Richtung überschneiden. Dies erfordert etwas mehr Zeit für den Druck, lässt aber flache Oberflächen gleichmäßiger aussehen." +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Beschleunigung Dachstruktur" -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "Damit werden Modelle als Form gedruckt, die gegossen werden kann, um ein Modell zu erhalten, das den Modellen des Druckbetts ähnelt." +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "Die Beschleunigung, mit der die Dächer der Stützstruktur gedruckt werden. Durch das Drucken bei einer geringeren Beschleunigung kann die Qualität der Überhänge verbessert werden." -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "Drucken Sie Teile des Modells, die horizontal dünner als die Düsengröße sind." +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Beschleunigung Bodenstruktur" -msgctxt "raft_surface_monotonic description" -msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." -msgstr "" +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "Die Beschleunigung, mit der die Böden der Stützstruktur gedruckt werden. Durch das Drucken bei einer geringeren Beschleunigung kann die Haftung des Stützdachs verbessert werden." -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "Druckgeschwindigkeit für das Drucken der zweiten Brücken-Außenhautschicht." +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Beschleunigung Einzugsturm" -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "Druckgeschwindigkeit für das Drucken der dritten Brücken-Außenhautschicht." +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "Die Beschleunigung, mit der der Einzugsturm gedruckt wird." -msgctxt "print_temp_anomaly_limit label" -msgid "Print temperature Limit" -msgstr "" +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Beschleunigung Bewegung" -msgctxt "print_temp_warn_limit label" -msgid "Print temperature Warning" -msgstr "" +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "Die Beschleunigung, mit der Bewegungen durchgeführt werden." -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "Es wird die Füllung gedruckt, bevor die Wände gedruckt werden. Wenn man die Wände zuerst druckt, kann dies zu präziseren Wänden führen, aber Überhänge werden schlechter gedruckt. Wenn man die Füllung zuerst druckt, bekommt man stabilere Wände, aber manchmal zeigt sich das Füllmuster auf der Oberfläche." +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Beschleunigung erste Schicht" -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Obere Linien werden in einer Reihenfolge gedruckt, so dass sie sich mit benachbarten Linien immer in einer einzigen Richtung überschneiden. Dies erfordert etwas mehr Zeit für den Druck, lässt aber flache Oberflächen gleichmäßiger aussehen." +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "Die Beschleunigung für die erste Schicht." -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Obere/Untere Linien werden in einer Reihenfolge gedruckt, so dass sie sich mit benachbarten Linien immer in gleicher Richtung überschneiden. Dies erfordert etwas mehr Zeit für den Druck, lässt aber flache Oberflächen gleichmäßiger aussehen." +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Druckbeschleunigung für die erste Schicht" -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Drucktemperatur" +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "Die Beschleunigung während des Druckens der ersten Schicht." -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Drucktemperatur erste Schicht" +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Geschwindigkeit der Bewegung für die erste Schicht" -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "Ein Druck der innersten Skirt-Linie mit mehreren Schichten ermöglicht ein einfaches Entfernen des Skirts." +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Die Beschleunigung für die Fahrtbewegung der ersten Schicht." -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "Es wird eine Zusatzwand für jede zweite Schicht gedruckt. Auf diese Weise gelangt Füllung zwischen diese Zusatzwände, was zu stärkeren Drucken führt." +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Beschleunigung Skirt/Brim" -msgctxt "resolution label" -msgid "Quality" -msgstr "Qualität" +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "Die Beschleunigung, mit der die Skirt- und Brim-Elemente gedruckt werden. Normalerweise wird dafür die Beschleunigung der Basisschicht verwendet. In machen Fällen kann es jedoch vorteilhaft sein, das Skirt- oder Brim-Element mit einer anderen Beschleunigung zu drucken." -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Viertelwürfel" +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Rucksteuerung aktivieren" -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Raft" +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "Ermöglicht die Justierung der Ruckfunktion des Druckkopfes bei Änderung der Geschwindigkeit in der X- oder Y-Achse. Eine Erhöhung der Ruckfunktion kann die Druckzeit auf Kosten der Druckqualität reduzieren." -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Luftspalt für Raft" +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Ruckfunktion für Bewegungen aktivieren" -msgctxt "raft_base_margin label" -msgid "Raft Base Extra Margin" -msgstr "" +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "Verwenden Sie eine separate Ruckrate für Bewegungen. Wenn diese Option deaktiviert ist, wird für Bewegungen der Ruckfunktionswert der gedruckten Linie an der Zielposition verwendet." -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Raft-Basis-Extruder" +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Ruckfunktion Drucken" -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Lüfterdrehzahl für Raft-Basis" +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung des Druckkopfes." -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Linienabstand der Raft-Basis" +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Ruckfunktion Füllung" -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Linienbreite der Raft-Basis" +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Füllung gedruckt wird." -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Druckbeschleunigung Raft Unten" +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Ruckfunktion Wand" -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Ruckfunktion Drucken Raft-Basis" +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Wände gedruckt werden." -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Druckgeschwindigkeit für Raft-Basis" +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "Ruckfunktion Außenwand" -msgctxt "raft_base_smoothing label" -msgid "Raft Base Smoothing" -msgstr "" +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Außenwände gedruckt werden." -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Dicke der Raft-Basis" +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Ruckfunktion Innenwand" -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Wandanzahl des Raft-Bodens" +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der alle Innenwände gedruckt werden." -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Zusätzlicher Abstand für Raft" +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Ruck der inneren Oberflächenwand" -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Lüfterdrehzahl für Raft" +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "Die maximale instantane Geschwindigkeitsänderung, mit der die inneren Oberflächenwände gedruckt werden." -msgctxt "raft_interface_margin label" -msgid "Raft Middle Extra Margin" -msgstr "" +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Ruck der äußersten Oberflächenwand" -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Extruder für die Raft-Mitte" +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "Die maximale instantane Geschwindigkeitsänderung, mit der die äußersten Oberflächenwände gedruckt werden." -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Lüfterdrehzahl Raft Mitte" +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Justierung der Oberfläche Außenhaut" -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Mittlere Ebenen des Rafts" +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die oberen Schichten der Außenhaut gedruckt werden." + +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Ruckfunktion obere/untere Schicht" -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Linienbreite des Raft-Mittelbereichs" +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die oberen/unteren Schichten gedruckt werden." -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Druckbeschleunigung Raft Mitte" +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Ruckfunktion Stützstruktur" -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Ruckfunktion Drucken Raft Mitte" +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Stützstruktur gedruckt wird." -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Druckgeschwindigkeit Raft Mitte" +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Ruckfunktion Stützstruktur-Füllung" -msgctxt "raft_interface_smoothing label" -msgid "Raft Middle Smoothing" -msgstr "" +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Füllung der Stützstruktur gedruckt wird." -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Linienabstand im Raft-Mittelbereich" +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Ruckfunktion Stützstruktur-Schnittstelle" -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Dicke der Raft-Mittelbereichs" +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Dächer und Böden der Stützstruktur gedruckt werden." -msgctxt "raft_interface_wall_count label" -msgid "Raft Middle Wall Count" -msgstr "" +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Ruckfunktion für Dachstruktur" -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Druckbeschleunigung Raft" +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Dächer der Stützstruktur gedruckt werden." -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Ruckfunktion Raft-Druck" +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Ruckfunktion für Bodenstruktur" -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Raft-Druckgeschwindigkeit" +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Böden der Stützstruktur gedruckt werden." -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Raft-Glättung" +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "Ruckfunktion Einzugsturm" -msgctxt "raft_surface_margin label" -msgid "Raft Top Extra Margin" -msgstr "" +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der der Einzugsturm gedruckt wird." -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Extruder für die Raft-Oberseite" +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Ruckfunktion Bewegung" -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Lüfterdrehzahl Raft Oben" +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Fahrtbewegung ausgeführt wird." -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Dicke der oberen Raft-Schichten" +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Ruckfunktion der ersten Schicht" -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Obere Raft-Schichten" +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung für die erste Schicht." -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Linienbreite der Raft-Oberfläche" +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Ruckfunktion Druck für die erste Schicht" -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Druckbeschleunigung Raft Oben" +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung während des Druckens für die erste Schicht." -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Ruckfunktion Drucken Raft Oben" +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Ruckfunktion Bewegung für die erste Schicht" -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Druckgeschwindigkeit Raft Oben" +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Die Beschleunigung für die Fahrtbewegung der ersten Schicht." -msgctxt "raft_surface_smoothing label" -msgid "Raft Top Smoothing" -msgstr "" +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Ruckfunktion Skirt/Brim" -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Linienabstand der Raft-Oberfläche" +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der Skirt und Brim gedruckt werden." -msgctxt "raft_surface_wall_count label" -msgid "Raft Top Wall Count" -msgstr "" +msgctxt "travel label" +msgid "Travel" +msgstr "Bewegungen" -msgctxt "raft_wall_count label" -msgid "Raft Wall Count" -msgstr "" +msgctxt "travel description" +msgid "travel" +msgstr "Bewegungen" -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Zufall" +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Einzug aktivieren" -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "Füllstart randomisieren" +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Das Filament wird eingezogen, wenn sich die Düse über einen nicht zu bedruckenden Bereich bewegt." -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "Randomisieren Sie, welche Fülllinie zuerst gedruckt wird. So wird vermieden, dass ein Segment am stärksten ist. Allerdings muss dafür eine zusätzliche Bewegung ausgeführt werden." +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Einziehen bei Schichtänderung" -msgctxt "magic_fuzzy_skin_enabled description" -msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." -msgstr "Willkürliche Zitterbewegung beim Druck der äußeren Wand, wodurch die Oberfläche ein raues und ungleichmäßiges Aussehen erhält." +msgctxt "retract_at_layer_change description" +msgid "Retract the filament when the nozzle is moving to the next layer." +msgstr "Ziehen Sie das Filament ein, wenn die Düse zur nächsten Schicht fährt." -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Rechteckig" +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Einzugsabstand" -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "Normaldrehzahl des Lüfters" +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "Die Länge des Materials, das während der Einzugsbewegung eingezogen wird." -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Normaldrehzahl des Lüfters bei Höhe" +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Einzugsgeschwindigkeit" -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Normaldrehzahl des Lüfters bei Schicht" +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung eingezogen und zurückgeschoben wird." -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "Grenzwert für Normaldrehzahl/Maximaldrehzahl des Lüfters" +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Einzugsgeschwindigkeit (Einzug)" -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Relative Extrusion" +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung eingezogen wird." -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Alle Löcher entfernen" +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Einzugsgeschwindigkeit (Zurückschieben)" -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Leere erste Schichten entfernen" +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung zurückgeschoben wird." -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Netzüberschneidung entfernen" +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Zusätzliche Zurückschiebemenge nach Einzug" -msgctxt "raft_base_remove_inside_corners label" -msgid "Remove Raft Base Inside Corners" -msgstr "" +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "Während einer Bewegung über einen nicht zu bedruckenden Bereich kann Material wegsickern, was hier kompensiert werden kann." -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Innenecken des Rafts entfernen" +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Mindestbewegung für Einzug" -msgctxt "raft_interface_remove_inside_corners label" -msgid "Remove Raft Middle Inside Corners" -msgstr "" +msgctxt "retraction_min_travel description" +msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." +msgstr "Der Mindestbewegungsabstand, damit ein Einzug erfolgt. Dadurch kommt es zu weniger Einzügen in einem kleinen Gebiet." -msgctxt "raft_surface_remove_inside_corners label" -msgid "Remove Raft Top Inside Corners" -msgstr "" +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Maximale Anzahl von Einzügen" -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "Entfernt Bereiche, in denen mehrere Netze miteinander überlappen. Dies kann verwendet werden, wenn zusammengefügte Objekte aus zwei Materialien miteinander überlappen." +msgctxt "retraction_count_max description" +msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." +msgstr "Diese Einstellung limitiert die Anzahl an Einzügen, die innerhalb des Fensters „Minimaler Extrusionsabstand“ auftritt. Weitere Einzüge innerhalb dieses Fensters werden ignoriert. Durch diese Funktion wird vermieden, dass das gleiche Stück Filament wiederholt eingezogen wird, da es in diesem Fall abgeflacht werden oder es zu Schleifen kommen kann." -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "Entfernen Sie die leeren Schichten unter der ersten gedruckten Schicht, sofern vorhanden. Die Deaktivierung dieser Einstellung kann zu leeren ersten Schichten führen, wenn die Einstellung der Slicing-Toleranz auf Exklusiv oder Mittel gesetzt wurde." +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Fenster „Minimaler Extrusionsabstand“" -msgctxt "raft_base_remove_inside_corners description" -msgid "Remove inside corners from the raft base, causing the raft to become convex." -msgstr "" +msgctxt "retraction_extrusion_window description" +msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." +msgstr "Das Fenster, in dem die maximale Anzahl von Einzügen durchgeführt wird. Dieser Wert sollte etwa der Größe des Einzugsabstands entsprechen, sodass die effektive Häufigkeit, mit der ein Einzug dieselbe Stelle des Materials passiert, begrenzt wird." -msgctxt "raft_interface_remove_inside_corners description" -msgid "Remove inside corners from the raft middle part, causing the raft to become convex." -msgstr "" +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Combing-Modus" -msgctxt "raft_surface_remove_inside_corners description" -msgid "Remove inside corners from the raft top part, causing the raft to become convex." -msgstr "" +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "Durch Combing bleibt die Düse während der Bewegung innerhalb von bereits gedruckten Bereichen. Dies führt zu einer leicht verlängerten Bewegungszeit, reduziert jedoch die Notwendigkeit von Einzügen. Wenn Combing deaktiviert ist, wird das Material eingezogen und die Düse bewegt sich in einer geraden Linie zum nächsten Punkt. Es ist außerdem möglich, das Combing über die oberen/unteren Außenhautbereiche zu vermeiden, oder nur Combing innerhalb der Füllung auszuführen." -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Entfernen der inneren Ecken des Floßes, so dass das Floß konvex wird." +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Aus" -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "Es werden alle Löcher in den einzelnen Schichten entfernt und lediglich die äußere Form wird erhalten. Dadurch wird jegliche unsichtbare interne Geometrie ignoriert. Jedoch werden auch solche Löcher in den Schichten ignoriert, die man von oben oder unten sehen kann." +msgctxt "retraction_combing option all" +msgid "All" +msgstr "Alle" -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Nicht auf der Außenfläche" -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Nicht in Außenhaut" -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "Der äußerste Teil des oberen/unteren Musters wird durch eine Anzahl von konzentrischen Linien ersetzt. Die Verwendung von ein oder zwei Linien verbessert Dächer, die auf Füllmaterial beginnen." +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "Innerhalb der Füllung" -msgctxt "ppr description" -msgid "Reporting events that go out of set thresholds" -msgstr "" +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Max. Combing Entfernung ohne Einziehen" -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "Präferenz Auflagestelle" +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "Bei Werten größer als Null verwenden die Combing-Fahrbewegungen, die weiter als über diese Distanz erfolgen, die Einzugsfunktion. Beim Wert Null gibt es keine Maximalstellung, und die Combing-Fahrbewegungen verwenden die Einzugsfunktion nicht." msgctxt "travel_retract_before_outer_wall label" msgid "Retract Before Outer Wall" msgstr "Vor Außenwand zurückziehen" -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Einziehen bei Schichtänderung" - -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Das Filament wird eingezogen, wenn sich die Düse über einen nicht zu bedruckenden Bereich bewegt." - -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Das Filament wird eingezogen, wenn sich die Düse über einen nicht zu bedruckenden Bereich bewegt." - -msgctxt "retract_at_layer_change description" -msgid "Retract the filament when the nozzle is moving to the next layer." -msgstr "Ziehen Sie das Filament ein, wenn die Düse zur nächsten Schicht fährt." - -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Einzugsabstand" - -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Zusätzliche Zurückschiebemenge nach Einzug" +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "Stets zurückziehen, wenn eine Bewegung für den Beginn einer Außenwand erfolgt." -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Mindestbewegung für Einzug" +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Gedruckte Teile bei Bewegung umgehen" -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Einzugsgeschwindigkeit (Zurückschieben)" +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "Die Düse vermeidet bei der Bewegung bereits gedruckte Teile. Diese Option ist nur verfügbar, wenn Combing aktiviert ist." -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Einzugsgeschwindigkeit (Einzug)" +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Stützstrukturen bei Bewegung umgehen" -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Einzugsgeschwindigkeit" +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "Die Düse vermeidet bei der Bewegung bereits gedruckte Stützstrukturen. Diese Option ist nur verfügbar, wenn Combing aktiviert ist." -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Rechts" +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Umgehungsabstand Bewegung" -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "Skalierung der Lüftergeschwindigkeit auf 0–1" +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "Der Abstand zwischen der Düse und den bereits gedruckten Teilen, wenn diese bei Bewegungen umgangen werden." -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "Skalieren der Lüftergeschwindigkeit auf einen Wert zwischen 0 und 1 statt zwischen 0 und 256" +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "Schichtstart X" -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Kompensation der Schrumpfung des Skalierungsfaktors" +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "Die X-Koordinate der Position, neben der das Teil positioniert ist, von dem aus der Druck jeder Schicht begonnen wird." -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "Szene verfügt über Stütznetze" +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Schichtstart Y" -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Präferenz Nahtkante" +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "Die Y-Koordinate der Position, neben der das Teil positioniert ist, von dem aus der Druck jeder Schicht begonnen wird." -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "Druckreihenfolge manuell einstellen" +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Z-Sprung beim Einziehen" -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "Hier wird die Höhe des Windschutzes eingestellt. Stellen Sie ein, ob der Windschutz für die gesamte Höhe des Modells oder für eine begrenzte Höhe gedruckt wird." +msgctxt "retraction_hop_enabled description" +msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "Nach dem Einzug wird das Druckbett gesenkt, um einen Abstand zwischen Düse und Druck herzustellen. Das verhindert, dass die Düse den Druck während der Bewegungen anschlägt und verringert die Möglichkeit, dass der Druck vom Druckbett heruntergestoßen wird." -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Verwendete Einstellungen für das Drucken mit mehreren Extrudern." +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Z-Sprung nur über gedruckten Teilen" -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "Diese Einstellungen werden nur verwendet, wenn CuraEngine nicht seitens Cura aufgerufen wird." +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "Führen Sie nur einen Z-Sprung aus, wenn Sie über gedruckte Teile fahren, die nicht durch eine horizontale Bewegung vermeidbar sind, indem Sie gedruckte Teile während der Fahrt vermeiden." -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Rückzugstellung der gemeinsam genutzten Düse" +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Z-Sprung Höhe" -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Schärfste Kante" +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Der Höhenunterschied bei Ausführung eines Z-Sprungs." -msgctxt "shell description" -msgid "Shell" -msgstr "Gehäuse" +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Z-Sprung nach Extruder-Wechsel" -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Kürzester" +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "Nachdem das Gerät von einem Extruder zu einem anderen gewechselt hat, wird die Druckplatte abgesenkt, um einen Abstand zwischen der Düse und dem Druck zu bilden. Das verhindert, dass die Düse abgesondertes Material auf der Außenseite des Drucks hinterlässt." -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Anzeige der Gerätevarianten" +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Z-Sprung Höhe nach Extruder-Wechsel" -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Unterstützungsebenen für Außenhautkanten" +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "Der Höhenunterschied bei Ausführung eines Z-Sprungs nach Extruder-Wechsel." -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Stützenstärke für Außenhautkanten" +msgctxt "cooling label" +msgid "Cooling" +msgstr "Kühlung" -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Expansionsdistanz Außenhaut" +msgctxt "cooling description" +msgid "Cooling" +msgstr "Kühlung" -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Außenhaut überlappen" +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Kühlung für Drucken aktivieren" -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Prozentsatz Außenhaut überlappen" +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "Die Druckerlüfter werden während des Druckens aktiviert. Die Lüfter verbessern die Qualität von Schichten mit kurzen Schichtzeiten und von Brückenbildung/Überhängen." -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Breite für das Entfernen der Außenhaut" +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Lüfterdrehzahl" -msgctxt "min_skin_width_for_expansion description" -msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." -msgstr "Außenhautbereiche, die schmaler als die Mindestbreite sind, werden nicht expandiert. Damit wird vermieden, dass enge Außenhautbereiche expandiert werden, die entstehen, wenn die Modellfläche eine nahezu vertikale Neigung aufweist." +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "Die Drehzahl, mit der die Druckerlüfter laufen." -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "Überspringen Sie eine in jeder N-Verbindungslinie, um das Wegbrechen der Stützstruktur zu erleichtern." +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "Normaldrehzahl des Lüfters" -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "Überspringen Sie einige Stützstruktur-Verbindungen, um das Brechen der Stützstruktur zu erleichtern. Diese Einstellung ist für die Zickzack-Stützstruktur-Füllung vorgesehen." +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "Die Drehzahl, mit der die Lüfter laufen, bevor der Grenzwert erreicht wird. Wenn eine Schicht schneller als der Grenzwert gedruckt wird, steigt die Lüfterdrehzahl schrittweise zur Maximaldrehzahl des Lüfters an." -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Skirt" +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Maximaldrehzahl des Lüfters" -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Skirt-Abstand" +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "Die Drehzahl, mit der die Lüfter bei der Mindestzeit für Schicht laufen. Die Lüfterdrehzahl wird schrittweise von der Normaldrehzahl bis zur Maximaldrehzahl des Lüfters angehoben, wenn der Grenzwert erreicht wird." -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "Skirt-Höhe" +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "Grenzwert für Normaldrehzahl/Maximaldrehzahl des Lüfters" -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Anzahl der Skirt-Linien" +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "Die Schichtzeit, die den Grenzwert zwischen Normaldrehzahl und Maximaldrehzahl des Lüfters darstellt. Für Schichten, die langsamer als diese Zeit gedruckt werden, läuft der Lüfter auf Normaldrehzahl. Für schnellere Schichten steigt die Lüfterdrehzahl schrittweise zur Maximaldrehzahl des Lüfters an." -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Beschleunigung Skirt/Brim" +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Anfängliche Lüfterdrehzahl" -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Skirt/Brim-Extruder" +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "Die Drehzahl, mit der die Lüfter zu Druckbeginn drehen. In den nachfolgenden Schichten wird die Lüfterdrehzahl schrittweise bis zu der Schicht gesteigert, die der Normaldrehzahl in der Höhe entspricht." -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Skirt/Brim-Fluss" +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Normaldrehzahl des Lüfters bei Höhe" -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Ruckfunktion Skirt/Brim" +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "Die Höhe, auf der die Lüfter mit Normaldrehzahl laufen. In den Schichten darunter wird die Lüfterdrehzahl schrittweise von der anfänglichen Lüfterdrehzahl bis zur Normaldrehzahl angehoben." -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Skirt-/Brim-Linienbreite" +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Normaldrehzahl des Lüfters bei Schicht" -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Mindestlänge für Skirt/Brim" +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "Die Schicht, bei der die Lüfter mit Normaldrehzahl laufen. Wenn Normaldrehzahl des Lüfters bei Höhe eingestellt ist, wird dieser Wert berechnet und auf eine ganze Zahl auf- oder abgerundet." -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Geschwindigkeit Skirt/Brim" +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Mindestzeit für Schicht" -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Slicing-Toleranz" +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "Die Mindestzeit, die für eine Schicht aufgewendet wird. Hierdurch wird der Drucker verlangsamt, um mindestens die hier eingestellte Zeit für eine Schicht aufzuwenden. Dadurch kann das gedruckte Material angemessen abkühlen, bevor die folgende Schicht gedruckt wird. Die Schichten können dennoch weniger als die Mindestzeit für eine Schicht erfordern, wenn die Funktion Druckkopf anheben deaktiviert ist und die Mindestgeschwindigkeit andernfalls verletzt würde." -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Geschwindigkeit der ersten Schicht von Details" +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Mindestgeschwindigkeit" -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Max. Detaillänge" +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "Die Mindestdruckgeschwindigkeit, trotz Verlangsamung aufgrund der Mindestzeit für Schicht. Wenn der Drucker zu langsam arbeitet, sinkt der Druck in der Düse zu stark ab und dies führt zu einer schlechten Druckqualität." -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Detailgeschwindigkeit" +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Druckkopf anheben" -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Max. Lochdurchmesser" +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "Wenn die Mindestgeschwindigkeit aufgrund der Mindestzeit für Schicht erreicht wird, wird der Druckkopf vom Druck angehoben und die zusätzliche Zeit, bis die Mindestzeit für Schicht erreicht ist, gewartet." msgctxt "cool_min_temperature label" msgid "Small Layer Printing Temperature" msgstr "Drucktemperatur für kleine Schichten" -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "Kleine Oberseite/Unterseite auf der Oberfläche" +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "Reduzieren Sie die Temperatur allmählich auf diesen Wert, wenn Sie aufgrund der Mindestzeit für eine Schicht mit reduzierter Geschwindigkeit drucken." -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "Kleine obere/untere Breite" +msgctxt "support label" +msgid "Support" +msgstr "Stützstruktur" -msgctxt "small_feature_speed_factor_0 description" -msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "Bei kleinen Details wird die Geschwindigkeit bei der ersten Schicht auf diesen Prozentsatz der normalen Druckgeschwindigkeit gesetzt. Durch eine niedrigere Druckgeschwindigkeit können die Haftung und die Genauigkeit verbessert werden." +msgctxt "support description" +msgid "Support" +msgstr "Stützstruktur" -msgctxt "small_feature_speed_factor description" -msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "Bei kleinen Details wird die Geschwindigkeit auf diesen Prozentsatz der normalen Druckgeschwindigkeit gesetzt. Durch eine niedrigere Druckgeschwindigkeit können die Haftung und die Genauigkeit verbessert werden." +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Stützstruktur generieren" -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "Kleine obere bzw. untere Bereiche werden mit Wänden anstelle des standardmäßigen oberen und unteren Musters gefüllt. So lassen sich ruckartige Bewegungen vermeiden. Dies ist standardmäßig für die oberste (der Luft ausgesetzten) Schicht deaktiviert (siehe „Kleine Oberseite/Unterseite auf der Oberfläche“)." +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "Damit werden Strukturen zur Unterstützung von Modellteilen mit Überhängen generiert. Ohne diese Strukturen würden solche Teile während des Druckvorgangs zusammenfallen." -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "Intelligente Brim" +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Extruder für Stützstruktur" -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Intelligent verbergen" +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "Das für das Drucken der Stützstruktur verwendete Extruder-Element. Diese wird für die Mehrfach-Extrusion benutzt." -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Glätten der spiralisierten Kontur" +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Extruder für Füllung Stützstruktur" -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "Glättet die spiralförmigen Konturen, um die Sichtbarkeit der Z-Naht zu reduzieren (die Z-Naht sollte am Druckobjekt kaum sichtbar sein, ist jedoch in der Schichtenansicht erkennbar). Beachten Sie, dass beim Glätten feine Oberflächendetails verwischt werden." +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "Das für das Drucken der Füllung der Stützstruktur verwendete Extruder-Element. Diese wird für die Mehrfach-Extrusion benutzt." -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "Während einer Bewegung über einen nicht zu bedruckenden Bereich kann Material wegsickern, was hier kompensiert werden kann." +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Extruder für erste Schicht der Stützstruktur" -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "Während einer Bewegung für den Abwischvorgang kann Material wegsickern, was hier kompensiert werden kann." +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "Das für das Drucken der ersten Schicht der Stützstruktur verwendete Extruder-Element. Diese wird für die Mehrfach-Extrusion benutzt." -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Sonderfunktionen" +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Extruder für Stützstruktur-Schnittstelle" -msgctxt "speed description" -msgid "Speed" -msgstr "Geschwindigkeit" +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "Das für das Drucken der Dächer und Böden der Stützstruktur verwendete Extruder-Element. Dieses wird für die Mehrfach-Extrusion benutzt." -msgctxt "speed label" -msgid "Speed" -msgstr "Geschwindigkeit" +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Extruder für Dachstruktur" -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "Geschwindigkeit für das Verfahren der Z-Achse während des Sprungs." +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "Das für das Drucken der Stützdachstruktur verwendete Extruder-Element. Dieses wird für die Mehrfach-Extrusion benutzt." -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Spiralisieren der äußeren Konturen" +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Extruder für Bodenstruktur" -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "Durch Spiralisieren wird die Z-Bewegung der äußeren Kante geglättet. Dies führt zu einem konstanten Z-Anstieg des gesamten Drucks. Diese Funktion wandelt ein solides Modell in einen Druck mit Einzelwänden und einem soliden Boden um. Diese Funktion sollte nur aktiviert werden, wenn jede Schicht nur ein einzelnes Teil enthält." +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "Das für das Drucken der Stützstruktur der Böden verwendete Extruder-Element. Dieses wird für die Mehrfach-Extrusion benutzt." -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Standby-Temperatur" +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Stützstruktur" -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "Start G-Code" +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "Wählt zwischen den verfügbaren Techniken zur Erzeugung von Stützstrukturen. Mit „Normal“ wird eine Stützstruktur direkt unter den überhängenden Teilen erzeugt, die direkt darauf liegen. In der Einstellung „Tree“ wird eine Baumstützstruktur erzeugt, die zu den überhängenden Teilen reicht und diese stützt. Die Stützstruktur verästelt sich innerhalb des Modells und stützt es so gut wie möglich vom Druckbett aus." -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "Der Startdruckpunkt von jedem Teil einer Schicht. Wenn der Druck der Teile in aufeinanderfolgenden Schichten am gleichen Punkt startet, kann eine vertikale Naht sichtbar werden. Wird dieser neben einer benutzerdefinierten Position ausgerichtet, ist die Naht am einfachsten zu entfernen. Wird er zufällig platziert, fallen die Ungenauigkeiten am Startpunkt weniger auf. Wird der kürzeste Weg eingestellt, ist der Druck schneller." +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Normal" -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Schritte pro Millimeter (E)" +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Tree" -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Schritte pro Millimeter (X)" +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "Maximaler Astwinkel" -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Schritte pro Millimeter (Y)" +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "Dies bezeichnet den maximalen Winkel der Äste, die um das Modell herum entstehen. Verwenden Sie einen geringeren Winkel, um sie vertikaler und stabiler zu gestalten. Verwenden Sie einen stärkeren Winkel, um mehr Reichweite zu erhalten." + +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "Astdichte" + +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "Dies beschreibt den Durchmesser der dünnsten Äste der Baumstützstruktur. Dickere Äste sind stabiler. Äste zur Basis hin werden dicker als diese sein." + +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "Stammdurchmesser" + +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "Durchmesser der breitesten Äste der Baumstützstruktur. Ein dickerer Stamm ist stabiler, ein dünnerer Stamm nimmt weniger Platz auf dem Druckbett ein." -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Schritte pro Millimeter (Z)" +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "Winkel des Astdurchmessers" -msgctxt "support description" -msgid "Support" -msgstr "Stützstruktur" +msgctxt "support_tree_branch_diameter_angle description" +msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." +msgstr "Dies beschreibt den Winkel der Astdurchmesser, da sie stufenweise zum Boden hin dicker werden. Ein Winkel von 0 lässt die Äste über die gesamte Länge hinweg eine gleiche Dicke haben. Ein geringer Winkel kann die Stabilität der Baumstützstruktur erhöhen." -msgctxt "support label" -msgid "Support" -msgstr "Stützstruktur" +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Platzierung Stützstruktur" -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Beschleunigung Stützstruktur" +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "Druckbett berühren" -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Unterer Abstand der Stützstruktur" +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "Überall" -msgctxt "support_bottom_wall_count label" -msgid "Support Bottom Wall Line Count" -msgstr "Anzahl der unteren Wandlinien der Stützstruktur" +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "Bevorzugter Astwinkel" -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Anzahl der Brim-Stützstrukturlinien" +msgctxt "support_tree_angle_slow description" +msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." +msgstr "Dies bezeichnet den bevorzugten Winkel der Äste, wenn eine Vermeidung des Modells nicht notwendig ist. Verwenden Sie einen geringeren Winkel, um sie vertikaler und stabiler zu gestalten. Verwenden Sie einen stärkeren Astwinkel, um sie schneller zusammenzuführen." -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Breite der Brim-Stützstruktur" +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "Vergrößerung des Durchmessers zum Modell" -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Anzahl der Stützstruktur-Blocklinien" +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "Dies bezeichnet die maximale Vergrößerung des Durchmessers eines Astes, der mit dem Modell verbunden werden muss, durch die Zusammenführung mit Ästen, die die Druckplatte erreichen könnten. Die Erhöhung dieses Wertes verkürzt die Druckzeit, vergrößert jedoch die Stützstruktur, die auf dem Modell ruht." -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Blockgröße für Stützstruktur" +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "Mindesthöhe auf Modell" -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "Dichte der Stützstruktur" +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "Dies bezeichnet die minimale Höhe eines Astes, der auf dem Modell platziert werden soll. Verhindert kleine Tropfen in der Stützstruktur. Diese Einstellung wird ignoriert, wenn ein Ast ein Stützdach hält." -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Abstandspriorität der Stützstruktur" +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "Durchmesser der ersten Schicht" -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Extruder für Stützstruktur" +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "Dies bezeichnet den Durchmesser, den jeder Ast haben sollte, wenn er die Druckplatte erreicht. Verbessert die Betthaftung." -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Beschleunigung Bodenstruktur" +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "Astdichte" -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Dichte der Bodenstruktur" +msgctxt "support_tree_top_rate description" +msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "Dadurch wird die Dichte der Stützstruktur angepasst, mit der die Spitzen der Äste generiert werden. Ein höherer Wert führt zu besseren Überhängen, allerdings lässt sich die Stützstruktur schwerer entfernen. Verwenden Sie bei sehr hohen Werten ein Stützdach oder stellen Sie sicher, dass die Dichte der Stützstruktur oben ähnlich hoch ist." -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Extruder für Bodenstruktur" +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "Astspitzendurchmesser" -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Stützbodenfluss" +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "Dies bezeichnet den Durchmesser an der Spitze von Ästen in der Baumstützstruktur." -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Horizontale Erweiterung Stützstrukturboden" +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "Begrenzung der Astreichweite" -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Ruckfunktion für Bodenstruktur" +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "Dieser Parameter schränkt ein, wie weit sich jeder Ast von der Stelle entfernen kann, die er stützt. Dadurch wird die Stabilität der Stützstruktur gestärkt, jedoch erhöht sich die Anzahl der Äste (und damit der Materialverbrauch•/ die Druckzeit)." -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Richtungen der Bodenlinien unterstützen" +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "Optimale Astreichweite" -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Linienabstand der Bodenstruktur" +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "Dieser Wert ist die empfohlene Entfernung der Äste von den Stellen, die durch sie gestützt werden. Er kann überschritten werden, damit Äste ihre Zielposition erreichen (Druckplatte oder einen flachen Teil des Modells). Eine Senkung dieses Werts sorgt für eine stabilere Stützstruktur, erhöht jedoch die Anzahl der Äste und damit den Materialverbrauch/die Druckzeit)." -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Stützstruktur Boden Linienbreite" +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "Präferenz Auflagestelle" -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Muster der Bodenstruktur" +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "Hierdurch wird die bevorzugte Platzierung der Stützstrukturen festgelegt. Wenn Strukturen nicht an der gewünschten Stelle platziert werden können, werden sie anderswo positioniert, möglicherweise sogar auf dem Modell." -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Geschwindigkeit Bodenstruktur" +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "Wenn möglich auf der Druckplatte" -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Dicke der Bodenstruktur" +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "Bei Bedarf auf dem Modell" -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Stützstruktur-Fluss" +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Winkel für Überhänge Stützstruktur" -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Horizontale Erweiterung der Stützstruktur" +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "Der Mindestwinkel für Überhänge, für welche eine Stützstruktur zugefügt wird. Bei einem Wert von 0° werden alle Überhänge gestützt, bei 90° wird kein Überhang gestützt." -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Beschleunigung Stützstrukturfüllung" +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Muster der Stützstruktur" -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Extruder für Füllung Stützstruktur" +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "Das Muster der Stützstruktur des Drucks. Die verschiedenen verfügbaren Optionen führen zu einer stabilen oder zu einer leicht entfernbaren Stützstruktur." -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Ruckfunktion Stützstruktur-Füllung" +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Linien" -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Stützstruktur Füllschichtdicke" +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Gitter" -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Unterstützung Linienrichtung Füllung" +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Dreiecke" -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Stützstruktur-Füllungsgeschwindigkeit" +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Konzentrisch" -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Beschleunigung Stützstrukturschnittstelle" +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "Dichte Stützstrukturschnittstelle" +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Quer" -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Extruder für Stützstruktur-Schnittstelle" +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Fluss Stützstruktur-Schnittstelle" +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Anzahl der Wandlinien der Stützstruktur" -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Horizontale Erweiterung Stützstruktur-Schnittstelle" +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Die Anzahl der Wände, mit denen die Stützstruktur-Füllung umgeben wird. Das Hinzufügen einer Wand kann den Druck der Stützstruktur zuverlässiger machen und Überhänge besser unterstützen. Es erhöht jedoch die Druckzeit und den Materialverbrauch." -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Ruckfunktion Stützstruktur-Schnittstelle" +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Anzahl der Wandlinien der Stützstruktur-Schnittstelle" -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Richtungen der Verbindungslinien unterstützen" +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Die Anzahl der Wände, mit denen die Stützstruktur-Schnittstelle umgeben wird. Das Hinzufügen einer Wand kann den Druck der Stützstruktur zuverlässiger machen und Überhänge besser unterstützen. Es erhöht jedoch die Druckzeit und den Materialverbrauch." -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Stützstruktur Schnittstelle Linienbreite" +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Anzahl der Wandlinien des Stützdachs" -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Muster Stützstrukturschnittstelle" +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Die Anzahl der Wände, mit denen das Stützstruktur-Schnittstellendach umgeben wird. Das Hinzufügen einer Wand kann den Druck der Stützstruktur zuverlässiger machen und Überhänge besser unterstützen. Es erhöht jedoch die Druckzeit und den Materialverbrauch." + +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "Anzahl der unteren Wandlinien der Stützstruktur" -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "Schnittstellenpriorität der Stützstruktur" +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Die Anzahl der Wände, mit denen der Stützstruktur-Schnittstellenboden umgeben wird. Das Hinzufügen einer Wand kann den Druck der Stützstruktur zuverlässiger machen und Überhänge besser unterstützen. Es erhöht jedoch die Druckzeit und den Materialverbrauch." -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Stützstruktur-Schnittstellengeschwindigkeit" +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Stützlinien verbinden" -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Dicke der Stützstrukturschnittstelle" +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "Die Enden der Stützlinien werden miteinander verbunden. Die Aktivierung dieser Einstellung kann Ihre Stützstruktur stabiler machen und Unterextrusion verhindern, kostet jedoch mehr Material." -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "Anzahl der Wandlinien der Stützstruktur-Schnittstelle" +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Zickzack-Elemente Stützstruktur verbinden" -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Ruckfunktion Stützstruktur" +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "Die Zickzack-Elemente werden verbunden. Dies erhöht die Stärke der Zickzack-Stützstruktur." -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "Abstand für Zusammenführung der Stützstrukturen" +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "Dichte der Stützstruktur" + +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Die Dichte der Stützstruktur wird eingestellt. Ein höherer Wert führt zu besseren Überhängen, aber die Stützstrukturen sind schwieriger zu entfernen." msgctxt "support_line_distance label" msgid "Support Line Distance" msgstr "Linienabstand der Stützstruktur" -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Breite der Stützstrukturlinien" +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "Der Abstand zwischen den gedruckten Stützstrukturlinien. Diese Einstellung wird anhand der Dichte der Stützstruktur berechnet." -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Stütznetz" +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "Linienabstand der ursprünglichen Stützstruktur" -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Winkel für Überhänge Stützstruktur" +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "Der Abstand zwischen der ursprünglichen gedruckten Stützstrukturlinien. Diese Einstellung wird anhand der Dichte der Stützstruktur berechnet." -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Muster der Stützstruktur" +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Unterstützung Linienrichtung Füllung" -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Platzierung Stützstruktur" +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "Liste der zu verwendenden Linienrichtungen (in ganzen Zahlen). Die Elemente der Liste werden während des Aufbaus der Schichten der Reihe nach abgearbeitet. Wenn das Ende der Liste erreicht wird, wird wieder beim ersten Element begonnen. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass der Standardwinkel von 0 Grad zu verwenden ist." -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Beschleunigung Dachstruktur" +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Stütz-Brim aktivieren" -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Dichte der Dachstruktur" +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "Erstellen Sie ein Brim in den Stützstruktur-Füllungsbereichen der ersten Schicht. Das Brim wird unterhalb der Stützstruktur und nicht drumherum gedruckt. Die Aktivierung dieser Einstellung erhöht die Haftung der Stützstruktur am Druckbett." -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Extruder für Dachstruktur" +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Breite der Brim-Stützstruktur" -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Stützdachfluss" +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "Die Breite des unter der Stützstruktur zu druckenden Brims. Ein größeres Brim erhöht die Haftung am Druckbett, jedoch erhöht sich hierdurch der Materialverbrauch." -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Horizontale Erweiterung Stützstrukturdach" +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Anzahl der Brim-Stützstrukturlinien" -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Ruckfunktion für Dachstruktur" +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "Die Anzahl der Linien für die Brim-Stützstruktur. Eine größere Anzahl von Brim-Linien verbessert die Haftung am Druckbett, jedoch erhöht sich hierdurch der Materialverbrauch." -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Richtungen der Dachlinien unterstützen" +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Z-Abstand der Stützstruktur" -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Linienabstand der Dachstruktur" +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "Abstand von der Ober-/Unterseite der Stützstruktur zum Druck. Diese Lücke ermöglicht es, die Stützen nach dem Drucken des Modells zu entfernen. Die oberste Stützschicht unter dem Modell könnte ein Bruchteil der normalen Schichten sein." -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Breite der Stützdachlinie" +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Oberer Abstand der Stützstruktur" -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Muster des Stützdachs" +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "Der Abstand von der Oberseite der Stützstruktur zum gedruckten Objekt." -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Stützdachgeschwindigkeit" +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Unterer Abstand der Stützstruktur" -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "Dicke des Stützdachs" +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "Abstand vom Druck zum Boden der Stütze. Beachten Sie, dass dies auf die nächste Schichthöhe aufgerundet wird." -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "Anzahl der Wandlinien des Stützdachs" +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "X/Y-Abstand der Stützstruktur" -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Stützstrukturgeschwindigkeit" +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "Der Abstand der Stützstruktur zum gedruckten Objekt in der X- und Y-Richtung." + +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Abstandspriorität der Stützstruktur" + +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "Definiert, ob die X/Y-Distanz der Stützstruktur die Z-Distanz der Stützstruktur aufhebt oder umgekehrt. Wenn X/Y Z aufhebt, kann die X/Y-Distanz die Stützstruktur vom Modell wegschieben und damit die tatsächliche Z-Distanz zum Überhang beeinflussen. Diese Einstellung kann deaktiviert werden, indem die X/Y-Distanz um die Überhänge nicht angewendet wird." + +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y hebt Z auf" + +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z hebt X/Y auf" + +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "X/Y-Mindestabstand der Stützstruktur" + +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "Der Abstand der Stützstruktur zum Überhang in der X- und Y-Richtung." msgctxt "support_bottom_stair_step_height label" msgid "Support Stair Step Height" msgstr "Stufenhöhe der Stützstruktur" +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "Die Höhe der Stufen der treppenförmigen Unterlage für die Stützstruktur des Modells. Ein niedriger Wert kann das Entfernen der Stützstruktur erschweren, ein zu hoher Wert kann jedoch zu instabilen Stützstrukturen führen. Auf Null einstellen, um das Stufenverhalten zu deaktivieren." + msgctxt "support_bottom_stair_step_width label" msgid "Support Stair Step Maximum Width" msgstr "Max. Stufenhöhe der Stützstruktur" +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "Die maximale Breite der Stufen der treppenförmigen Unterlage für die Stützstruktur des Modells. Ein niedriger Wert kann das Entfernen der Stützstruktur erschweren, ein zu hoher Wert kann jedoch zu instabilen Stützstrukturen führen." + msgctxt "support_bottom_stair_step_min_slope label" msgid "Support Stair Step Minimum Slope Angle" msgstr "Stützstufe minimaler Neigungswinkel" -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Stützstruktur" +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "Die Mindestneigung des Bereichs zur Erstellung einer Stützstufe. Bei niedrigeren Werten lassen sich die Stützstrukturen an flachen Neigungen leichter entfernen. Zu niedrige Werte können allerdings zu widersprüchlichen Ergebnissen an anderen Teilen des Modells führen." -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Oberer Abstand der Stützstruktur" +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "Abstand für Zusammenführung der Stützstrukturen" -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Anzahl der Wandlinien der Stützstruktur" +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "Der Maximalabstand zwischen Stützstrukturen in der X- und Y-Richtung. Wenn der Abstand einzelner Strukturen zueinander diesen Wert unterschreitet, werden diese Strukturen miteinander kombiniert und bilden eine Struktur." -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "X/Y-Abstand der Stützstruktur" +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Horizontale Erweiterung der Stützstruktur" -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Z-Abstand der Stützstruktur" +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "Der Abstand, der auf die Polygone in den einzelnen Schichten angewendet wird. Positive Werte können die Stützbereiche glätten und dadurch eine stabilere Stützstruktur schaffen." + +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Stützstruktur Füllschichtdicke" + +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "Die Dicke pro Schicht des Füllmaterials der Stützstruktur. Dieser Wert sollte immer ein Vielfaches der Schichtdicke sein und wird sonst auf- oder abgerundet." + +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Stufenweise Füllungsschritte Stützstruktur" + +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "Anzahl der Male zur Reduzierung der Stützstruktur-Füllungsdichte um die Hälfte bei Arbeiten unter den oberen Flächen. Bereiche, die weiter an den Oberflächen sind, erhalten eine höhere Dichte bis zur Füllungsdichte der Stützstruktur." + +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Höhe stufenweiser Füllungsschritt Stützstruktur" + +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "Die Höhe der Stützstruktur-Füllung einer bestimmten Dichte vor dem Umschalten auf die halbe Dichte." + +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Mindestbereich Stützstruktur" + +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "Mindestflächenbreite für Stützstruktur-Polygone. Polygone, die eine kleinere Fläche als diesen Wert aufweisen, werden nicht generiert." + +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Stützstruktur-Schnittstelle aktivieren" + +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "Es wird eine dichte Schnittstelle zwischen dem Modell und der Stützstruktur generiert. Das erstellt eine Außenhaut oben auf der Stützstruktur, auf der das Modell gedruckt wird, und unten auf der Stützstruktur, wo diese auf dem Modell ruht." -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "Stützlinien priorisiert" +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Stützdach aktivieren" -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "Stützstruktur priorisiert" +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "Es wird eine dichte Materialschicht zwischen der Stützdachstruktur und dem Modell generiert. Das erstellt eine Außenhaut zwischen dem Modell und der Stützstruktur." -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Unterstützte Lüfterdrehzahl für Außenhaut" +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Stützboden aktivieren" -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Oberfläche" +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "Es wird eine dichte Materialschicht zwischen dem Boden der Stützstruktur und dem Modell generiert. Das erstellt eine Außenhaut zwischen dem Modell und der Stützstruktur." -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "Oberflächenenergie" +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Dicke der Stützstrukturschnittstelle" -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Oberflächenmodus" +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "Die Dicke der Schnittstelle der Stützstruktur, wo sie das Modell unten und oben berührt." -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "Oberflächenhaftungstendenz." +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "Dicke des Stützdachs" -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Oberflächenenergie." +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "Die Dicke des Stützdachs. Dies steuert die Menge an dichten Schichten oben an der Stützstruktur, auf der das Modell aufsitzt." -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "Vertauschen Sie die Druckreihenfolge der innersten und der zweitinnersten Brim-Linie, um die Entfernung des Brims zu erleichtern." +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Dicke der Bodenstruktur" -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "Schaltet mit jeder Schicht das Volumen zu den entsprechenden Netzüberschneidungen, sodass die überlappenden Netze miteinander verwebt werden. Durch Abschalten dieser Funktion erhält eines der Netze das gesamte Volumen der Überlappung, während es von den anderen Netzen entfernt wird." +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "Die Dicke der Stützböden. Dies steuert die Anzahl der dichten Schichten, die oben an einem Modell gedruckt werden, auf dem die Stützstruktur aufsitzt." -msgctxt "adaptive_layer_height_threshold description" -msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." -msgstr "Horizontaler Abstand zwischen zwei angrenzenden Schichten. Bei Einstellung eines niedrigeren Werts werden dünnere Schichten aufgetragen, damit die Kanten der Schichten enger aneinander liegen." +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Dichte Stützstrukturschnittstelle" -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "Die X-Koordinate der Position, neben der das Teil positioniert ist, von dem aus der Druck jeder Schicht begonnen wird." +msgctxt "support_interface_density description" +msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Die Dichte der Stützstrukturdächer und -böden wird eingestellt. Ein höherer Wert führt zu besseren Überhängen, aber die Stützstrukturen sind schwieriger zu entfernen." -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "Die X-Koordinate der Position, neben der der Druck jedes Teils in einer Schicht begonnen wird." +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Dichte der Dachstruktur" -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Die X-Koordinate der Position, an der die Düse am Druckbeginn einzieht." +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Die Dichte der Stützstrukturdächer wird eingestellt. Ein höherer Wert führt zu besseren Überhängen, aber die Stützstrukturen sind schwieriger zu entfernen." -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "Die Y-Koordinate der Position, neben der das Teil positioniert ist, von dem aus der Druck jeder Schicht begonnen wird." +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Linienabstand der Dachstruktur" -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "Die Y-Koordinate der Position, neben der der Druck jedes Teils in einer Schicht begonnen wird." +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "Der Abstand zwischen den gedruckten Stützdachlinien. Diese Einstellung wird anhand der Dichte der Stützstruktur berechnet, kann aber auch separat eingestellt werden." -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Die Y-Koordinate der Position, an der die Düse am Druckbeginn einzieht." +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Dichte der Bodenstruktur" -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Die Z-Koordinate der Position, an der die Düse am Druckbeginn einzieht." +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "Die Dichte der Stützstrukturböden wird eingestellt. Ein höherer Wert führt zu einer besseren Haftung der Stützstruktur oben am Modell." -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "Die Beschleunigung während des Druckens der ersten Schicht." +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Linienabstand der Bodenstruktur" -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "Die Beschleunigung für die erste Schicht." +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "Der Abstand zwischen den gedruckten Stützstrukturbodenlinien. Diese Einstellung wird anhand der Dichte des Stützstrukturboden berechnet, kann aber auch separat eingestellt werden." -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Die Beschleunigung für die Fahrtbewegung der ersten Schicht." +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Muster Stützstrukturschnittstelle" -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Die Beschleunigung für die Fahrtbewegung der ersten Schicht." +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "Das Muster, mit dem die Schnittstelle der Stützstruktur mit dem Modell gedruckt wird." -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "Die Beschleunigung, mit der die Innenwände gedruckt werden." +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Linien" -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "Die Beschleunigung, mit der die Füllung gedruckt wird." +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Gitter" -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "Die Beschleunigung, mit der das Glätten erfolgt." +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Dreiecke" -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "Die Beschleunigung, mit der das Drucken erfolgt." +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Konzentrisch" -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "Die Beschleunigung, mit der die unteren Raft-Schichten gedruckt werden." +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "Die Beschleunigung, mit der die Böden der Stützstruktur gedruckt werden. Durch das Drucken bei einer geringeren Beschleunigung kann die Haftung des Stützdachs verbessert werden." +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Muster des Stützdachs" -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "Die Beschleunigung, mit der die Füllung der Stützstruktur gedruckt wird." +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "Das Muster, mit dem die Dächer der Stützstruktur gedruckt werden." -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "Die Beschleunigung, mit der die mittleren Raft-Schichten gedruckt werden." +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Linien" -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "Die Beschleunigung, mit der die Außenwände gedruckt werden." +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Gitter" -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "Die Beschleunigung, mit der der Einzugsturm gedruckt wird." +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Dreiecke" -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "Die Beschleunigung, mit der das Raft gedruckt wird." +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Konzentrisch" -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "Die Beschleunigung, mit der die Böden der Stützstruktur gedruckt wird. Durch das Drucken bei einer geringeren Beschleunigung kann die Qualität der Überhänge verbessert werden." +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "Die Beschleunigung, mit der die Dächer der Stützstruktur gedruckt werden. Durch das Drucken bei einer geringeren Beschleunigung kann die Qualität der Überhänge verbessert werden." +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Muster der Bodenstruktur" -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "Die Beschleunigung, mit der die Skirt- und Brim-Elemente gedruckt werden. Normalerweise wird dafür die Beschleunigung der Basisschicht verwendet. In machen Fällen kann es jedoch vorteilhaft sein, das Skirt- oder Brim-Element mit einer anderen Beschleunigung zu drucken." +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "Das Muster, mit dem die Unterseiten der Stützstruktur gedruckt werden." -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "Die Beschleunigung, mit der die Stützstruktur gedruckt wird." +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Linien" -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "Die Beschleunigung, mit der die oberen Raft-Schichten gedruckt werden." +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Gitter" -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "Die Beschleunigung, mit der die inneren Wände der Oberfläche gedruckt werden." +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Dreiecke" -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "Die Beschleunigung, mit der die äußersten Wände der Oberfläche gedruckt werden." +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Konzentrisch" -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "Die Beschleunigung, mit der die Wände gedruckt werden." +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "Die Beschleunigung, mit der die Oberflächen der Außenhaut-Schichten gedruckt werden." +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Mindestbereich Stützstruktur-Schnittstelle" + +msgctxt "minimum_interface_area description" +msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Mindestflächenbreite für Stützstruktur-Schnittstellen-Polygone. Polygone, die eine kleinere Fläche als diesen Wert aufweisen, werden als normale Stützstruktur gedruckt." -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "Die Beschleunigung, mit der die oberen/unteren Schichten gedruckt werden." +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Mindestbereich Stützstrukturdach" -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "Die Beschleunigung, mit der Bewegungen durchgeführt werden." +msgctxt "minimum_roof_area description" +msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Mindestfläche für die Dächer der Stützstruktur. Polygone, die eine kleinere Fläche als diesen Wert aufweisen, werden als normale Stützstruktur gedruckt." -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "Die Materialmenge relativ zu einer normalen Außenhautlinie, um während des Glättens zu extrudieren. Indem die Düse gefüllt bleibt, können einige Spalten in der oberen Schicht gefüllt werden, allerdings führt zu viel davon zu einer übermäßigen Extrudierung und Markierungen seitlich der Oberfläche." +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Mindestbereich Stützstrukturboden" -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "Das Ausmaß des Überlappens zwischen der Füllung und den Wänden als Prozentwert der Füllungslinienbreite. Ein leichtes Überlappen ermöglicht es den Wänden, eine solide Verbindung mit der Füllung herzustellen." +msgctxt "minimum_bottom_area description" +msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Mindestfläche für die Dächer der Stützstruktur. Polygone, die eine kleinere Fläche als diesen Wert aufweisen, werden als normale Stützstruktur gedruckt." -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "Das Ausmaß des Überlappens zwischen der Füllung und den Wänden. Ein leichtes Überlappen ermöglicht es den Wänden, eine solide Verbindung mit der Füllung herzustellen." +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Horizontale Erweiterung Stützstruktur-Schnittstelle" -msgctxt "switch_extruder_retraction_amount description" -msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." -msgstr "Der Wert für den Einzug beim Umstellen der Extruder: 0 einstellen, um keinen Einzug zu erhalten. Dies sollte generell mit der Länge der Heizzone übereinstimmen." +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "Umfang des angewandten Versatzes für die Stützstruktur-Schnittstellen-Polygone." -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "Der Winkel zwischen der horizontalen Planfläche und dem konischen Teil direkt über der Düsenspitze." +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Horizontale Erweiterung Stützstrukturdach" -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "Der Winkel eines Pfeilerdachs. Ein höherer Wert hat spitze Pfeilerdächer zur Folge, ein niedrigerer Wert führt zu flacheren Pfeilerdächern." +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "Umfang des angewandten Versatzes für die Dächer der Stützstruktur." -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "Dies bezeichnet den Winkel des Überhangs der für die Form erstellten Außenwände. 0 Grad ergibt eine vertikale Außenhaut der Form, während 90 Grad dazu führt, dass die Außenseite des Modells der Modellkontur folgt." +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Horizontale Erweiterung Stützstrukturboden" -msgctxt "support_tree_branch_diameter_angle description" -msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." -msgstr "Dies beschreibt den Winkel der Astdurchmesser, da sie stufenweise zum Boden hin dicker werden. Ein Winkel von 0 lässt die Äste über die gesamte Länge hinweg eine gleiche Dicke haben. Ein geringer Winkel kann die Stabilität der Baumstützstruktur erhöhen." +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "Umfang des angewandten Versatzes für die Böden der Stützstruktur." -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "Der Neigungswinkel der konischen Stützstruktur. Bei 0 Grad ist er vertikal und bei 90 Grad horizontal. Kleinere Winkel machen die Stützstruktur stabiler, aber benötigen mehr Material. Negative Winkel machen die Basis der Stützstruktur breiter als die Spitze." +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "Schnittstellenpriorität der Stützstruktur" -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "Die durchschnittliche Dichte der Punkte, die auf jedes Polygon einer Schicht aufgebracht werden. Beachten Sie, dass die Originalpunkte des Polygons verworfen werden, sodass eine geringe Dichte in einer Reduzierung der Auflösung resultiert." +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "Hierdurch wird bestimmt, wie Stützstruktur-Schnittstelle und Stützstruktur interagieren, wenn sie sich überschneiden. Zurzeit nur für Stützdächer implementiert." -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "Der durchschnittliche Abstand zwischen den willkürlich auf jedes Liniensegment aufgebrachten Punkten. Beachten Sie, dass die Originalpunkte des Polygons verworfen werden, sodass eine hohe Glättung in einer Reduzierung der Auflösung resultiert. Dieser Wert muss größer sein als die Hälfte der Dicke der ungleichmäßigen Außenhaut." +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "Stützstruktur priorisiert" -msgctxt "material_brand description" -msgid "The brand of material used." -msgstr "" +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "Schnittstelle priorisiert" -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "Die voreingestellte Beschleunigung der Druckkopfbewegung." +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "Stützlinien priorisiert" -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "Die für den Druck verwendete Standardtemperatur. Dies sollte die „Basis“-Temperatur eines Materials sein. Alle anderen Drucktemperaturen sollten anhand dieses Wertes einen Versatz verwenden" +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "Schnittstellenlinien priorisiert" -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "Die für die erhitzte Druckplatte verwendete Standardtemperatur. Dies sollte die „Basis“-Temperatur einer Druckplatte sein. Alle anderen Drucktemperaturen sollten anhand dieses Wertes einen Versatz verwenden" +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "Beide überlappen" -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Die Dichte der Brücken-Außenhautschicht. Werte unter 100 erhöhen die Spalten zwischen den Außenhautlinien." +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Richtungen der Verbindungslinien unterstützen" -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "Die Dichte der Stützstrukturböden wird eingestellt. Ein höherer Wert führt zu einer besseren Haftung der Stützstruktur oben am Modell." +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Liste der zu verwendenden Linienrichtungen (in ganzen Zahlen). Die Elemente der Liste werden während des Aufbaus der Schichten der Reihe nach abgearbeitet. Wenn das Ende der Liste erreicht wird, wird wieder beim ersten Element begonnen. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (zwischen 45 und 135- rad, falls die Verbindungsstellen ziemlich dick sind, oder 90 Grad) zu verwenden sind." -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Die Dichte der Stützstrukturdächer wird eingestellt. Ein höherer Wert führt zu besseren Überhängen, aber die Stützstrukturen sind schwieriger zu entfernen." +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Richtungen der Dachlinien unterstützen" -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Die Dichte der zweiten Brücken-Außenhautschicht. Werte unter 100 erhöhen die Spalten zwischen den Außenhautlinien." +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Liste der zu verwendenden Linienrichtungen (in ganzen Zahlen). Die Elemente der Liste werden während des Aufbaus der Schichten der Reihe nach abgearbeitet. Wenn das Ende der Liste erreicht wird, wird wieder beim ersten Element begonnen. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (zwischen 45 und 135- rad, falls die Verbindungsstellen ziemlich dick sind, oder 90 Grad) zu verwenden sind." -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Die Dichte der dritten Brücken-Außenhautschicht. Werte unter 100 erhöhen die Spalten zwischen den Außenhautlinien." +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Richtungen der Bodenlinien unterstützen" -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "Die Tiefe (Y-Richtung) des druckbaren Bereichs." +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Liste der zu verwendenden Linienrichtungen (in ganzen Zahlen). Die Elemente der Liste werden während des Aufbaus der Schichten der Reihe nach abgearbeitet. Wenn das Ende der Liste erreicht wird, wird wieder beim ersten Element begonnen. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (zwischen 45 und 135- rad, falls die Verbindungsstellen ziemlich dick sind, oder 90 Grad) zu verwenden sind." -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "Der Durchmesser eines speziellen Pfeilers." +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Lüfterdrehzahl überschreiben" -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "Dies beschreibt den Durchmesser der dünnsten Äste der Baumstützstruktur. Dickere Äste sind stabiler. Äste zur Basis hin werden dicker als diese sein." +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "Bei Aktivierung wird die Lüfterdrehzahl für die Druckkühlung für die Außenhautbereiche direkt über der Stützstruktur geändert." -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "Dies bezeichnet den Durchmesser an der Spitze von Ästen in der Baumstützstruktur." +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Unterstützte Lüfterdrehzahl für Außenhaut" -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "Der Durchmesser des Rades für den Transport des Materials in den Feeder." +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "Prozentwert der Lüfterdrehzahl für die Verwendung beim Drucken der Außenhautbereiche direkt oberhalb der Stützstruktur. Die Verwendung einer hohen Lüfterdrehzahl ermöglicht ein leichteres Entfernen der Stützstruktur." -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "Durchmesser der breitesten Äste der Baumstützstruktur. Ein dickerer Stamm ist stabiler, ein dünnerer Stamm nimmt weniger Platz auf dem Druckbett ein." +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Verwendung von Pfeilern" -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "Der Höhenunterscheid der nächsten Schichthöhe im Vergleich zur vorherigen." +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "Es werden spezielle Pfeiler verwendet, um kleine Überhänge zu stützen. Diese Pfeiler haben einen größeren Durchmesser als der von ihnen gestützte Bereich. In der Nähe des Überhangs verkleinert sich der Durchmesser der Pfeiler, was zur Bildung eines Dachs führt." -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "Der Abstand zwischen den Glättungslinien." +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Pfeilerdurchmesser" -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "Der Abstand zwischen der Düse und den bereits gedruckten Teilen, wenn diese bei Bewegungen umgangen werden." +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "Der Durchmesser eines speziellen Pfeilers." -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "Der Abstand zwischen den Raft-Linien der Raft-Basisschicht. Große Abstände erleichtern das Entfernen des Raft vom Druckbett." +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Maximaler Durchmesser für Stützpfeiler" -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "Der Abstand zwischen den Raft-Linien im Raft-Mittelbereich. Der Abstand im Mittelbereich sollte recht groß sein, dennoch muss dieser dicht genug sein, um die Raft-Oberflächenschichten stützen zu können." +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "Der Mindestdurchmesser in den X/Y-Richtungen eines kleinen Bereichs, der durch einen speziellen Stützpfeiler gestützt wird." -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "Der Abstand zwischen den Raft-Linien der Raft-Oberflächenschichten. Der Abstand sollte der Linienbreite entsprechen, damit die Oberfläche stabil ist." +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Winkel des Pfeilerdachs" -msgctxt "prime_tower_raft_base_line_spacing description" -msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "Der Abstand zwischen den Floßlinien für die einzigartige Prime-Turm-Floßschicht. Ein großer Abstand erleichtert das Entfernen des Floßes von der Bauplatte." +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "Der Winkel eines Pfeilerdachs. Ein höherer Wert hat spitze Pfeilerdächer zur Folge, ein niedrigerer Wert führt zu flacheren Pfeilerdächern." -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "Der Abstand von der Begrenzung zwischen Modellen, der eine ineinandergreifende Struktur erzeugt, gemessen in Zellen. Eine zu geringe Zellenanzahl führt zu mangelnder Haftung." +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Stütznetz ablegen" -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "Der Abstand vom Model zur äußersten Brim-Linie. Ein größeres Brim-Element verbessert die Haftung am Druckbett, es wird dadurch aber auch der verwendbare Druckbereich verkleinert." +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "Sorgt für Unterstützung überall unterhalb des Stütznetzes, sodass kein Überhang im Stütznetz vorhanden ist." -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "Der Abstand von der Außenseite eines Modells, in dem keine ineinandergreifenden Strukturen erzeugt werden, gemessen in Zellen." +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "Szene verfügt über Stütznetze" -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "Die Distanz von der Düsenspitze, in der Wärme von der Düse zum Filament geleitet wird." +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "Die Szene verfügt über Stütznetze. Diese Einstellung wird von Cura gesteuert." -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "Die Distanz, um die die unteren Außenhäute in die Füllung expandiert werden. Höhere Werte lassen die Außenhaut besser am Füllmuster und an den Wänden auf der darunter liegenden Schicht haften. Niedrigere Werte reduzieren den Materialverbrauch." +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Druckplattenhaftung" -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "Die Distanz, um die die Außenhäute in die Füllung expandiert werden. Höhere Werte lassen die Außenhaut besser am Füllmuster und die Wände an den angrenzenden Schichten besser an der Außenhaut haften. Niedrigere Werte reduzieren den Materialverbrauch." +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Haftung" -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "Die Distanz, um die die oberen Außenhäute in die Füllung expandiert werden. Höhere Werte lassen die Außenhaut besser am Füllmuster und die Wände an den Schichten darüber besser an der Außenhaut haften. Niedrigere Werte reduzieren den Materialverbrauch." +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "Einzugstropfen aktivieren" + +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "Diese Funktion legt fest, ob das Filament vor dem Drucken mit einem Tropfen eingezogen wird. Wenn diese Funktion aktiviert ist, stellt der Extruder vor dem Drucken an der Düse Material bereit. Der Brim- oder Skirt-Druck kann ebenfalls als Einzug wirken; in diesem Fall kann das Ausschalten dieser Funktion Zeit einsparen." -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "Die Strecke, die der Kopf durch Vorwärts- und Rückwärtsbewegung über die Bürste hinweg fährt." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "X-Position Extruder-Einzug" -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "Die Endpunkte von Füllungslinien werden gekürzt, um Material zu sparen. Bei dieser Einstellung handelt es sich um den Winkel des Überhangs der Endpunkte von diesen Linien." +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Die X-Koordinate der Position, an der die Düse am Druckbeginn einzieht." -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "Die zusätzliche Geschwindigkeit mit der die Düse während der Extrusion abkühlt. Der gleiche Wert wird verwendet, um Aufheizgeschwindigkeit anzugeben, die verloren geht wenn während der Extrusion aufgeheizt wird." +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Y-Position Extruder-Einzug" -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "Das für das Drucken der ersten Schicht der Stützstruktur verwendete Extruder-Element. Diese wird für die Mehrfach-Extrusion benutzt." +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Die Y-Koordinate der Position, an der die Düse am Druckbeginn einzieht." -msgctxt "raft_base_extruder_nr description" -msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." -msgstr "Der Extruderzug, der für den Druck der ersten Schicht des Rafts verwendet wird. Dies wird bei der Mehrfachextrusion verwendet." +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Druckplattenhaftungstyp" -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "Das für das Drucken der Stützstruktur der Böden verwendete Extruder-Element. Dieses wird für die Mehrfach-Extrusion benutzt." +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "Verschiedene Optionen, die die Materialbereitstellung für die Extrusion und die Haftung am Druckbett verbessern. Durch die Brim-Funktion wird ein flacher, einschichtiger Bereich um die Basis des Modells herum hinzugefügt, um Warping zu verhindern. Durch die Raft-Funktion wird ein dickes Gitter mit Dach unter dem Modell hinzugefügt. Das Skirt-Element ist eine Linie, die um das Modell herum gedruckt wird, aber nicht mit dem Modell verbunden ist." -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "Das für das Drucken der Füllung der Stützstruktur verwendete Extruder-Element. Diese wird für die Mehrfach-Extrusion benutzt." +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Skirt" -msgctxt "raft_interface_extruder_nr description" -msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." -msgstr "Der Extruderzug, der für den Druck der mittleren Schicht des Rafts verwendet wird. Dies wird bei der Mehrfachextrusion verwendet." +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Brim" -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "Das für das Drucken der Dächer und Böden der Stützstruktur verwendete Extruder-Element. Dieses wird für die Mehrfach-Extrusion benutzt." +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Raft" -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "Das für das Drucken der Stützdachstruktur verwendete Extruder-Element. Dieses wird für die Mehrfach-Extrusion benutzt." +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Keine" -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "Der Extruderzug, der für den Druck von Skirt oder Brim verwendet wird. Dies wird bei der Mehrfachextrusion verwendet." +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Druckplattenhaftung für Extruder" msgctxt "adhesion_extruder_nr description" msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." msgstr "Das für das Drucken von Skirt/Brim/Raft verwendete Extruder-Element. Diese wird für die Mehrfach-Extrusion benutzt." -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "Das für das Drucken der Stützstruktur verwendete Extruder-Element. Diese wird für die Mehrfach-Extrusion benutzt." - -msgctxt "raft_surface_extruder_nr description" -msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." -msgstr "Der Extruderzug, der für den Druck der obersten Schicht(en) des Rafts verwendet wird. Dies wird bei der Mehrfachextrusion verwendet." - -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "Die für das Drucken der Füllung verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." - -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "Die für das Drucken der Innenwände verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Skirt/Brim-Extruder" -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "Die für das Drucken der Außenwände verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "Der Extruderzug, der für den Druck von Skirt oder Brim verwendet wird. Dies wird bei der Mehrfachextrusion verwendet." -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "Die für das Drucken der oberen und unteren Außenhaut verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Raft-Basis-Extruder" -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "Die für das Drucken der obersten Außenhaut verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." +msgctxt "raft_base_extruder_nr description" +msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." +msgstr "Der Extruderzug, der für den Druck der ersten Schicht des Rafts verwendet wird. Dies wird bei der Mehrfachextrusion verwendet." -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "Die für das Drucken der Wände verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Extruder für die Raft-Mitte" -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "Die Drehzahl des Lüfters für die Raft-Basisschicht." +msgctxt "raft_interface_extruder_nr description" +msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." +msgstr "Der Extruderzug, der für den Druck der mittleren Schicht des Rafts verwendet wird. Dies wird bei der Mehrfachextrusion verwendet." -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "Die Drehzahl des Lüfters für die mittlere Raft-Schicht." +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Extruder für die Raft-Oberseite" -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "Die Drehzahl des Lüfters für das Raft." +msgctxt "raft_surface_extruder_nr description" +msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." +msgstr "Der Extruderzug, der für den Druck der obersten Schicht(en) des Rafts verwendet wird. Dies wird bei der Mehrfachextrusion verwendet." -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "Die Drehzahl des Lüfters für die obere Raft-Schicht." +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Anzahl der Skirt-Linien" -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "Die Dateiposition eines Bildes, von dem die Helligkeitswerte die minimale Dichte an der entsprechenden Position in der Füllung des Drucks bestimmen." +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "Mehrere Skirt-Linien ermöglichen eine bessere Materialbereitstellung für die Extrusion für kleine Modelle. Wird dieser Wert auf 0 eingestellt, wird kein Skirt erstellt." -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "Die Dateiposition eines Bildes, von dem die Helligkeitswerte die minimale Dichte an der entsprechenden Position in der Stützstruktur bestimmen." +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "Skirt-Höhe" -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "Die ersten Schichten werden langsamer als der Rest des Modells gedruckt, damit sie besser am Druckbett haften und um die Wahrscheinlichkeit eines erfolgreichen Drucks zu erhöhen. Die Geschwindigkeit wird während des Druckens dieser Schichten schrittweise erhöht." +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "Ein Druck der innersten Skirt-Linie mit mehreren Schichten ermöglicht ein einfaches Entfernen des Skirts." -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "Die Lücke zwischen der letzten Raft-Schicht und der ersten Schicht des Modells. Nur die erste Schicht wird entsprechend dieses Wertes angehoben, um die Bindung zwischen der Raft-Schicht und dem Modell zu reduzieren. Dies macht es leichter, das Raft abzuziehen." +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Skirt-Abstand" -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "Die Höhe (Z-Richtung) des druckbaren Bereichs." +msgctxt "skirt_gap description" +msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "Der horizontale Abstand zwischen dem Skirt und der ersten Schicht des Drucks." +"Es handelt sich dabei um den Mindestabstand. Ab diesem Abstand werden mehrere Skirt-Linien in äußerer Richtung angebracht." -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "Bezeichnet die Höhe über horizontalen Teilen Ihres Modell, in der die Form gedruckt wird." +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Mindestlänge für Skirt/Brim" -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "Die Höhe, auf der die Lüfter mit Normaldrehzahl laufen. In den Schichten darunter wird die Lüfterdrehzahl schrittweise von der anfänglichen Lüfterdrehzahl bis zur Normaldrehzahl angehoben." +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "Die Mindestlänge für das Skirt- oder Brim-Element. Wenn diese Mindestlänge nicht durch die Anzahl der Skirt- oder Brim-Linien erreicht wird, werden weitere Skirt- oder Brim-Linien hinzugefügt, bis diese Mindestlänge erreicht wird. Hinweis: Wenn die Linienzahl auf 0 eingestellt wird, wird dies ignoriert." -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "Der Höhenunterschied zwischen der Düsenspitze und dem Brückensystem (X- und Y-Achsen)." +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Breite des Brim-Elements" -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "Der Höhenunterschied zwischen der Düsenspitze und dem untersten Bereich des Druckkopfes." +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "Der Abstand vom Model zur äußersten Brim-Linie. Ein größeres Brim-Element verbessert die Haftung am Druckbett, es wird dadurch aber auch der verwendbare Druckbereich verkleinert." -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "Der Höhenunterschied bei Ausführung eines Z-Sprungs nach Extruder-Wechsel." +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Anzahl der Brim-Linien" -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Der Höhenunterschied bei Ausführung eines Z-Sprungs." +msgctxt "brim_line_count description" +msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." +msgstr "Die Anzahl der Linien für das Brim-Element. Eine größere Anzahl von Brim-Linien verbessert die Haftung am Druckbett, es wird dadurch aber auch der verwendbare Druckbereich verkleinert." -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "Der Höhenunterschied bei Ausführung eines Z-Sprungs." +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Abstand zum Brim-Element" -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "Die Dicke jeder Schicht in mm. Bei höheren Werten werden schnellere Drucke mit niedrigerer Auflösung hergestellt, bei niedrigeren Werten langsamere Drucke mit höherer Auflösung." +msgctxt "brim_gap description" +msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." +msgstr "Der horizontale Abstand zwischen der ersten Brim-Linie und der Kontur der ersten Schicht des Drucks. Eine kleine Spalte kann das Entfernen des Brims vereinfachen, wobei trotzdem alle thermischen Vorteile genutzt werden können." -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "Die Höhe der Füllung einer bestimmten Dichte vor dem Umschalten auf die halbe Dichte." +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Brim ersetzt die Stützstruktur" -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "Die Höhe der Stützstruktur-Füllung einer bestimmten Dichte vor dem Umschalten auf die halbe Dichte." +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "Erzwingen Sie den Druck des Brims um das Modell herum, auch wenn dieser Raum sonst durch die Stützstruktur belegt würde. Dies ersetzt einige der ersten Schichten der Stützstruktur durch Brim-Bereiche." -msgctxt "interlocking_beam_layer_count description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "Die Höhe der Balken in der ineinandergreifenden Struktur, gemessen in der Anzahl der Schichten. Eine geringe Anzahl an Schichten ist stärker, aber anfälliger für Mängel." +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "Position des Randes" -msgctxt "interlocking_orientation description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "Die Höhe der Balken in der ineinandergreifenden Struktur, gemessen in der Anzahl der Schichten. Eine geringe Anzahl an Schichten ist stärker, aber anfälliger für Mängel." +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "Drucken Sie einen Rand an der Außenseite des Modells, an der Innenseite oder an beiden. Je nach Modell können Sie so die Menge des Randes, den Sie anschließend entfernen müssen, reduzieren und gleichzeitig eine gute Bettanhaftung sicherstellen." -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "Die Dicke der ersten Schicht in mm. Eine dicke erste Schicht erleichtert die Haftung am Druckbett." +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "Nur außen" -msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "Die Höhe der Prime-Turm-Basis. Eine Erhöhung dieses Wertes führt zu einem stabileren Prime-Turm, da die Basis breiter wird. Ist dieser Wert zu niedrig, hat der Prime-Turm keine stabile Basis." +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "Nur innen" -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "Die Höhe der Stufen der treppenförmigen Unterlage für die Stützstruktur des Modells. Ein niedriger Wert kann das Entfernen der Stützstruktur erschweren, ein zu hoher Wert kann jedoch zu instabilen Stützstrukturen führen. Auf Null einstellen, um das Stufenverhalten zu deaktivieren." +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "Überall" -msgctxt "brim_gap description" -msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." -msgstr "Der horizontale Abstand zwischen der ersten Brim-Linie und der Kontur der ersten Schicht des Drucks. Eine kleine Spalte kann das Entfernen des Brims vereinfachen, wobei trotzdem alle thermischen Vorteile genutzt werden können." +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "Randvermeidung" -msgctxt "skirt_gap description" -msgid "" -"The horizontal distance between the skirt and the first layer of the print.\n" -"This is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "" -"Der horizontale Abstand zwischen dem Skirt und der ersten Schicht des Drucks.\n" -"Es handelt sich dabei um den Mindestabstand. Ab diesem Abstand werden mehrere Skirt-Linien in äußerer Richtung angebracht." +msgctxt "brim_inside_margin description" +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "Ein Rand um ein Modell kann ein anderes Modell an einer Stelle berühren, an der Sie sie nicht haben wollen. Dies entfernt alle Ränder innerhalb dieser Entfernung von Modellen ohne Rand." -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "Um Druckzeit zu sparen, werden die Füllungslinien begradigt. Dies ist der maximal zulässige Winkel des Überhangs über die Länge der Füllung." +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "Intelligente Brim" -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "Das Füllmuster wird um diese Distanz entlang der X-Achse verschoben." +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "Vertauschen Sie die Druckreihenfolge der innersten und der zweitinnersten Brim-Linie, um die Entfernung des Brims zu erleichtern." -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "Das Füllmuster wird um diese Distanz entlang der Y-Achse verschoben." +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Zusätzlicher Abstand für Raft" -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Der Innendurchmesser der Düse. Verwenden Sie diese Einstellung, wenn Sie eine Düse einer Nicht-Standardgröße verwenden." +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Wenn die Raft-Funktion aktiviert ist, gibt es einen zusätzlichen Raft-Bereich um das Modell herum, für das ein Raft erstellt wird. Bei einem größeren Abstand wird ein kräftigeres Raft-Element hergestellt, wobei jedoch mehr Material verbraucht wird und weniger Platz für das gedruckte Modell verbleibt." -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "Die Ruckfunktion, mit der die unteren Raft-Schichten gedruckt werden." +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "Floßbasis Extra-Rand" -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "Die Ruckfunktion, mit der die mittleren Raft-Schichten gedruckt werden." +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Wenn die Floßbasis aktiviert ist, ist dies der zusätzliche Floßbereich um das Modell herum, das ebenfalls ein Floß erhält. Wenn Sie diesen Rand vergrößern, wird ein stärkeres Floß erzeugt, wobei mehr Material verwendet wird und weniger Fläche für den Druck übrig bleibt." -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "Die Ruckfunktion, mit der das Raft gedruckt wird." +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "Floßmitte Extra-Rand" -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "Die Ruckfunktion, mit der die oberen Raft-Schichten gedruckt werden." +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Wenn die Floßmitte aktiviert ist, ist dies der zusätzliche Floßbereich um das Modell, der ebenfalls ein Floß erhält. Wenn Sie diesen Rand erhöhen, wird ein stärkeres Floß erzeugt, wobei mehr Material verwendet wird und weniger Fläche für den Druck übrig bleibt." -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "Dies bezeichnet die größte Breite der zu entfernenden unteren Außenhautbereiche. Jeder Außenhautbereich, der kleiner als dieser Wert ist, verschwindet. Dies kann bei der Beschränkung der benötigten Zeit und Materialmenge für das Drucken der unteren Außenhaut an abgeschrägten Flächen des Modells unterstützen." +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "Floß Oberseite Extra-Rand" -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "Dies bezeichnet die größte Breite der zu entfernenden Außenhautbereiche. Jeder Außenhautbereich, der kleiner als dieser Wert ist, verschwindet. Dies kann bei der Beschränkung der benötigten Zeit und Materialmenge für das Drucken der Außenhaut oben/unten an abgeschrägten Flächen des Modells unterstützen." +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Wenn die Oberseite des Floßes aktiviert ist, ist dies der zusätzliche Bereich um das Modell herum, der ebenfalls mit einem Floß versehen wird. Wenn Sie diesen Rand erhöhen, wird ein stärkeres Floß erzeugt, wobei mehr Material verwendet wird und weniger Fläche für den Druck übrig bleibt." -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "Dies bezeichnet die größte Breite der zu entfernenden oberen Außenhautbereiche. Jeder Außenhautbereich, der kleiner als dieser Wert ist, verschwindet. Dies kann bei der Beschränkung der benötigten Zeit und Materialmenge für das Drucken der oberen Außenhaut an abgeschrägten Flächen des Modells unterstützen." +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Innenecken des Rafts entfernen" -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "Die Schicht, bei der die Lüfter mit Normaldrehzahl laufen. Wenn Normaldrehzahl des Lüfters bei Höhe eingestellt ist, wird dieser Wert berechnet und auf eine ganze Zahl auf- oder abgerundet." +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Entfernen der inneren Ecken des Floßes, so dass das Floß konvex wird." -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "Die Schichtzeit, die den Grenzwert zwischen Normaldrehzahl und Maximaldrehzahl des Lüfters darstellt. Für Schichten, die langsamer als diese Zeit gedruckt werden, läuft der Lüfter auf Normaldrehzahl. Für schnellere Schichten steigt die Lüfterdrehzahl schrittweise zur Maximaldrehzahl des Lüfters an." +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "Innenecken der Floßbasis entfernen" -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "Die Länge des Materials, das während der Einzugsbewegung eingezogen wird." +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "Entfernen Sie die Innenecken der Floßbasis, so dass das Floß konvex wird." -msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "Der Größenfaktor, der für die Neigung der Prime-Turm-Basis verwendet wird. Wenn Sie diesen Wert erhöhen, wird die Basis schlanker. Wenn Sie ihn verringern, wird die Basis dicker." +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "Mittlere Innenecken des Floßes entfernen" -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "Das Material der im Drucker eingebauten Druckplatte." +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "Entfernen Sie die Innenecken aus dem mittleren Teil des Floßes, so dass das Floß konvex wird." -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "Die max. zulässige Höhendifferenz von der Basisschichthöhe." +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "Innenecken der Oberseite des Floßes entfernen" -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "Der maximale Winkel, den ein Teil im Sickerschutz haben kann. 0 Grad ist vertikal und 90 Grad ist horizontal. Ein kleinerer Winkel führt zu weniger ausgefallenen Sickerschützen, jedoch mehr Material." +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "Entfernen Sie die Innenecken aus der Oberseite des Floßes, damit das Floß konvex wird." -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "Der maximale Winkel von Überhängen, nachdem sie druckbar gemacht wurden. Bei einem Wert von 0° werden alle Überhänge durch ein Teil des Modells ersetzt, das mit der Druckplatte verbunden ist, 90° führt zu keiner Änderung des Modells." +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Raft-Glättung" -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "Dies bezeichnet den maximalen Winkel der Äste, die um das Modell herum entstehen. Verwenden Sie einen geringeren Winkel, um sie vertikaler und stabiler zu gestalten. Verwenden Sie einen stärkeren Winkel, um mehr Reichweite zu erhalten." +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Diese Einstellung steuert, wie stark die Innenkanten des Raft-Umrisses gerundet werden. Die Innenkanten werden zu einem Halbkreis mit einem Radius entsprechend des hier definierten Werts gerundet. Diese Einstellung entfernt außerdem Löcher im Raft-Umriss, die kleiner als ein solcher Kreis sind." -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "Die maximale Fläche eines Lochs im Sockel des Modells, das mittels „Überhang drucken“ entfernt werden soll. Löcher mit kleinerer Fläche werden beibehalten. Beim Wert 0 mm² werden alle Löcher in der Modellbasis gefüllt." +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "Floßbasis glätten" -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "Die maximal zulässige Abweichung bei Reduzierung der maximalen Auflösung. Wenn Sie diesen Wert erhöhen, wird der Druck ungenauer, der G-Code wird jedoch kleiner. Die maximale Abweichung ist eine Grenze für die maximale Auflösung. Wenn die beiden Werte sich widersprechen, wird stets die maximale Abweichung eingehalten." +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Diese Einstellung steuert, wie stark die Innenecken in der Kontur des Floßbodens abgerundet werden. Die Innenecken werden zu einem Halbkreis mit einem Radius abgerundet, der dem hier angegebenen Wert entspricht. Mit dieser Einstellung werden auch Löcher im Umriss des Floßes entfernt, die kleiner als ein solcher Kreis sind." -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "Der Maximalabstand zwischen Stützstrukturen in der X- und Y-Richtung. Wenn der Abstand einzelner Strukturen zueinander diesen Wert unterschreitet, werden diese Strukturen miteinander kombiniert und bilden eine Struktur." +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "Floßmitte glätten" -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "Die maximale Strecke (in mm), die das Filament bewegt werden kann, um Änderungen der Durchflussrate zu kompensieren." +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Diese Einstellung steuert, wie stark die Innenecken in der Floßmitte abgerundet werden. Die Innenecken werden zu einem Halbkreis mit einem Radius abgerundet, der dem hier angegebenen Wert entspricht. Mit dieser Einstellung werden auch Löcher im Floßumriss entfernt, die kleiner als ein solcher Kreis sind." -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "Die maximale zulässige Abweichung für Extrusionsflächen beim Entfernen von Zwischenpunkten aus einer Geraden. Ein Zwischenpunkt kann als Änderungspunkt für die Linienstärke in einer langen Geraden dienen. Wenn dieser entfernt wird, führt es dazu, dass die Linie eine einheitliche Stärke hat und folglich ein wenig Extrusionsfläche verloren geht (oder hinzugefügt wird). Wenn Sie diesen Wert erhöhen, können Sie eine leichte Unter- (oder Über-) Extrusion zwischen geraden, parallelen Wänden feststellen, da mehr dazwischenliegende Änderungspunkte für die Linienstärke entfernt werden können. Ihr Druck wird weniger genau sein, aber der g-Code wird kleiner sein." +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "Floßoberseite glätten" -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung während des Druckens für die erste Schicht." +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Mit dieser Einstellung legen Sie fest, wie stark die Innenecken des oberen Umrisses des Floßes abgerundet werden. Die Innenecken werden zu einem Halbkreis mit einem Radius abgerundet, der dem hier angegebenen Wert entspricht. Mit dieser Einstellung werden auch Löcher im Floßumriss entfernt, die kleiner als ein solcher Kreis sind." -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung des Druckkopfes." +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Luftspalt für Raft" -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung während des Glättens." +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "Die Lücke zwischen der letzten Raft-Schicht und der ersten Schicht des Modells. Nur die erste Schicht wird entsprechend dieses Wertes angehoben, um die Bindung zwischen der Raft-Schicht und dem Modell zu reduzieren. Dies macht es leichter, das Raft abzuziehen." -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der alle Innenwände gedruckt werden." +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Z Überlappung der ersten Schicht" -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Füllung gedruckt wird." +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "Lassen Sie die erste und zweite Ebene des Modells in Z-Richtung überlappen, um das im Luftspalt verlorene Filament auszugleichen. Alle Modelle oberhalb der ersten Modellebene werden um diesen Betrag nach unten verschoben.\nEs kann vorkommen, dass aufgrund dieser Einstellung die zweite Ebene unterhalb der ersten Ebene gedruckt wird. Dieses Verhalten ist beabsichtigt." -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Böden der Stützstruktur gedruckt werden." +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Dicke der Raft-Basis" -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Füllung der Stützstruktur gedruckt wird." +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "Die Schichtdicke der Raft-Basisschicht. Dabei sollte es sich um eine dicke Schicht handeln, die fest an der Druckplatte haftet." -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Außenwände gedruckt werden." +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Linienbreite der Raft-Basis" -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der der Einzugsturm gedruckt wird." +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "Die Breite der Linien in der Raft-Basisschicht. Dabei sollte es sich um dicke Linien handeln, da diese besser an der Druckplatte haften." -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Dächer und Böden der Stützstruktur gedruckt werden." +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Linienabstand der Raft-Basis" -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Dächer der Stützstruktur gedruckt werden." +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "Der Abstand zwischen den Raft-Linien der Raft-Basisschicht. Große Abstände erleichtern das Entfernen des Raft vom Druckbett." -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der Skirt und Brim gedruckt werden." +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Mittlere Ebenen des Rafts" -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Stützstruktur gedruckt wird." +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "Die Anzahl der Schichten zwischen dem Boden und der Oberfläche des Rafts. Aus diesen besteht der größte Teil des Rafts. Eine Erhöhung dieses Wertes führt zu einem dickeren und stabileren Raft." -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "Die maximale instantane Geschwindigkeitsänderung, mit der die äußersten Oberflächenwände gedruckt werden." +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Dicke der Raft-Mittelbereichs" -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "Die maximale instantane Geschwindigkeitsänderung, mit der die inneren Oberflächenwände gedruckt werden." +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "Die Schichtdicke des Raft-Mittelbereichs." -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Wände gedruckt werden." +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Linienbreite des Raft-Mittelbereichs" -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die oberen Schichten der Außenhaut gedruckt werden." +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "Die Breite der Linien im Raft-Mittelbereich. Wenn die zweite Schicht mehr extrudiert, haften die Linien besser an der Druckplatte." -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die oberen/unteren Schichten gedruckt werden." +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Linienabstand im Raft-Mittelbereich" -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Fahrtbewegung ausgeführt wird." +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "Der Abstand zwischen den Raft-Linien im Raft-Mittelbereich. Der Abstand im Mittelbereich sollte recht groß sein, dennoch muss dieser dicht genug sein, um die Raft-Oberflächenschichten stützen zu können." -msgctxt "prime_tower_max_bridging_distance description" -msgid "The maximum length of the branches which may be printed over the air." -msgstr "" +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Obere Raft-Schichten" + +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "Die Anzahl der Oberflächenschichten auf der zweiten Raft-Schicht. Dabei handelt es sich um komplett gefüllte Schichten, auf denen das Modell ruht. Bei der Verwendung von 2 Schichten entsteht eine glattere Oberfläche als bei einer Schicht." -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "Die Maximaldrehzahl für den Motor der X-Richtung." +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Dicke der oberen Raft-Schichten" -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "Die Maximaldrehzahl für den Motor der Y-Richtung." +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Die Schichtdicke der oberen Raft-Schichten." -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "Die Maximaldrehzahl für den Motor der Z-Richtung." +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Linienbreite der Raft-Oberfläche" -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "Die Maximalgeschwindigkeit des Filaments." +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "Die Breite der Linien in der Raft-Oberfläche. Dünne Linien sorgen dafür, dass die Raft-Oberfläche glatter wird." -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "Die maximale Breite der Stufen der treppenförmigen Unterlage für die Stützstruktur des Modells. Ein niedriger Wert kann das Entfernen der Stützstruktur erschweren, ein zu hoher Wert kann jedoch zu instabilen Stützstrukturen führen." +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Linienabstand der Raft-Oberfläche" -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "Der Mindestabstand zwischen der Außenseite der Form und der Außenseite des Modells." +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "Der Abstand zwischen den Raft-Linien der Raft-Oberflächenschichten. Der Abstand sollte der Linienbreite entsprechen, damit die Oberfläche stabil ist." -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "Die Mindestgeschwindigkeit für die Bewegung des Druckkopfes." +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "Monotone Floßoberflächenordnung" -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "Die Mindesttemperatur während des Aufheizens auf die Drucktemperatur, bei welcher der Druck bereits starten kann." +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "Drucken Sie die Linien auf der Oberseite des Floßes in einer Reihenfolge, die bewirkt, dass sie sich immer mit den benachbarten Linien in einer Richtung überlappen. Der Druckvorgang dauert dadurch etwas länger, aber die Oberfläche sieht konsistenter aus, was auch auf der Unterseite des Modells sichtbar ist." -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "Die Mindestzeit, die ein Extruder inaktiv sein muss, bevor die Düse abkühlt. Nur wenn der Extruder über diese Zeit hinaus nicht verwendet wurde, kann er auf die Standby-Temperatur abkühlen." +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "Anzahl der Floßwände" -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "Der Mindestwinkel für Überhänge, für welche eine Stützstruktur zugefügt wird. Bei einem Wert von 0° werden Objekte komplett gefüllt, bei 90° wird keine Füllung ausgeführt." +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "Die Anzahl der Konturen, die um das lineare Muster des Floßes gedruckt werden." -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "Der Mindestwinkel für Überhänge, für welche eine Stützstruktur zugefügt wird. Bei einem Wert von 0° werden alle Überhänge gestützt, bei 90° wird kein Überhang gestützt." +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Wandanzahl des Raft-Bodens" -msgctxt "retraction_min_travel description" -msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." -msgstr "Der Mindestbewegungsabstand, damit ein Einzug erfolgt. Dadurch kommt es zu weniger Einzügen in einem kleinen Gebiet." +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "Die Anzahl der Konturlinien, die um das Linienmodell in der untersten Schicht des Rafts gedruckt werden sollen." -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "Die Mindestlänge für das Skirt- oder Brim-Element. Wenn diese Mindestlänge nicht durch die Anzahl der Skirt- oder Brim-Linien erreicht wird, werden weitere Skirt- oder Brim-Linien hinzugefügt, bis diese Mindestlänge erreicht wird. Hinweis: Wenn die Linienzahl auf 0 eingestellt wird, wird dies ignoriert." +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "Anzahl der mittleren Wände des Floßes" -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "Die minimale Linienbreite für Polylinienwände mit Lücken in der mittleren Linie. Diese Einstellung legt fest, bei welcher Stärke im Modell ein Übergang vom Druck zweier Wandlinien zum Druck zweier Außenwände und einer einzigen zentralen Wand in der Mitte erfolgt. Eine höhere minimale ungeradzahlige Wandlinienstärke führt zu einer höheren maximalen ungeradzahligen Wandlinienstärke. Die maximale ungerade Wandlinienbreite wird berechnet als 2 x Minimale Wandlinienbreite." +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "Die Anzahl der Konturen, die um das lineare Muster in den mittleren Schichten des Floßes gedruckt werden." -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "Die Mindestlinienstärke für normale polygonale Wände. Diese Einstellung legt fest, bei welcher Stärke des Modells vom Druck einer einzelnen dünnen Wandlinie auf den Druck zweier Wandlinien umgeschaltet wird. Eine höhere minimale geradzahlige Wandlinienstärke führt zu einer höheren maximalen geradzahligen Wandlinienstärke. Die maximale geradzahlige Wandlinienstärke wird berechnet als Außenwandlinienstärke + 0,5 x minimale geradzahlige Wandlinienstärke." +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "Anzahl der oberen Wände des Floßes" -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "Die Mindestdruckgeschwindigkeit, trotz Verlangsamung aufgrund der Mindestzeit für Schicht. Wenn der Drucker zu langsam arbeitet, sinkt der Druck in der Düse zu stark ab und dies führt zu einer schlechten Druckqualität." +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "Die Anzahl der Konturen, die um das lineare Muster in den oberen Lagen des Floßes gedruckt werden sollen." -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "Die Mindestgröße eines Linienabschnitts nach dem Slicen. Wenn Sie diesen Wert erhöhen, führt dies zu einer niedrigeren Auslösung des Mesh. Damit kann der Drucker die erforderliche Geschwindigkeit für die Verarbeitung des G-Codes beibehalten; außerdem wird die Slice-Geschwindigkeit erhöht, indem Details des Mesh entfernt werden, die ohnehin nicht verarbeitet werden können." +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Raft-Druckgeschwindigkeit" -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "Die maximale Größe eines Bewegungsliniensegments nach dem Slicen. Wenn Sie diesen Wert erhöhen, weisen die Fahrtbewegungen weniger glatte Kanten aus. Das ermöglicht dem Drucker, die für die Verarbeitung eines G-Codes erforderliche Geschwindigkeit aufrechtzuerhalten, allerdings kann das Modell damit auch weniger akkurat werden." +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "Die Geschwindigkeit, mit der das Raft gedruckt wird." -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "Die Mindestneigung des Bereichs zur Erstellung einer Stützstufe. Bei niedrigeren Werten lassen sich die Stützstrukturen an flachen Neigungen leichter entfernen. Zu niedrige Werte können allerdings zu widersprüchlichen Ergebnissen an anderen Teilen des Modells führen." +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Druckgeschwindigkeit für Raft-Basis" -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "Die Mindestzeit, die für eine Schicht aufgewendet wird. Hierdurch wird der Drucker verlangsamt, um mindestens die hier eingestellte Zeit für eine Schicht aufzuwenden. Dadurch kann das gedruckte Material angemessen abkühlen, bevor die folgende Schicht gedruckt wird. Die Schichten können dennoch weniger als die Mindestzeit für eine Schicht erfordern, wenn die Funktion Druckkopf anheben deaktiviert ist und die Mindestgeschwindigkeit andernfalls verletzt würde." +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "Die Geschwindigkeit, mit der die Raft-Basisschicht gedruckt wird. Diese sollte relativ niedrig sein, da zu diesem Zeitpunkt ein großes Materialvolumen aus der Düse kommt." -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "Das Mindestvolumen für jede Schicht des Einzugsturms, um ausreichend Material zu spülen." +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Druckgeschwindigkeit Raft Mitte" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "Dies bezeichnet die maximale Vergrößerung des Durchmessers eines Astes, der mit dem Modell verbunden werden muss, durch die Zusammenführung mit Ästen, die die Druckplatte erreichen könnten. Die Erhöhung dieses Wertes verkürzt die Druckzeit, vergrößert jedoch die Stützstruktur, die auf dem Modell ruht." +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "Die Geschwindigkeit, mit der die Raft-Mittelschicht gedruckt wird. Diese sollte relativ niedrig sein, da zu diesem Zeitpunkt ein großes Materialvolumen aus der Düse kommt." -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "Die Bezeichnung Ihres 3D-Druckermodells." +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Druckgeschwindigkeit Raft Oben" -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "Der Düsen-ID für eine Extruder-Einheit, z. B. „AA 0,4“ und „BB 0,8“." +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "Die Geschwindigkeit, mit der die oberen Schichten des Raft gedruckt werden. Diese sollte etwas geringer sein, damit die Düse langsam angrenzende Oberflächenlinien glätten kann." -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "Die Düse vermeidet bei der Bewegung bereits gedruckte Teile. Diese Option ist nur verfügbar, wenn Combing aktiviert ist." +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Druckbeschleunigung Raft" -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "Die Düse vermeidet bei der Bewegung bereits gedruckte Stützstrukturen. Diese Option ist nur verfügbar, wenn Combing aktiviert ist." +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "Die Beschleunigung, mit der das Raft gedruckt wird." -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "Die Anzahl der unteren Schichten. Wenn diese anhand der unteren Dicke berechnet wird, wird der Wert auf eine ganze Zahl auf- oder abgerundet." +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Druckbeschleunigung Raft Unten" -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "Die Anzahl der Konturlinien, die um das Linienmodell in der untersten Schicht des Rafts gedruckt werden sollen." +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "Die Beschleunigung, mit der die unteren Raft-Schichten gedruckt werden." -msgctxt "raft_interface_wall_count description" -msgid "The number of contours to print around the linear pattern in the middle layers of the raft." -msgstr "" +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Druckbeschleunigung Raft Mitte" -msgctxt "raft_surface_wall_count description" -msgid "The number of contours to print around the linear pattern in the top layers of the raft." -msgstr "" +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "Die Beschleunigung, mit der die mittleren Raft-Schichten gedruckt werden." -msgctxt "raft_wall_count description" -msgid "The number of contours to print around the linear pattern of the raft." -msgstr "" +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Druckbeschleunigung Raft Oben" -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "Die Anzahl der zusätzlichen Schichten, die die Außenhautkanten stützen." +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "Die Beschleunigung, mit der die oberen Raft-Schichten gedruckt werden." -msgctxt "initial_bottom_layers description" -msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "Die Anzahl der ersten Schichten, die auf die Druckplatte aufgetragen werden. Wenn diese anhand der unteren Dicke berechnet werden, wird der Wert auf eine ganze Zahl auf- oder abgerundet." +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Ruckfunktion Raft-Druck" -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "Die Anzahl der Schichten zwischen dem Boden und der Oberfläche des Rafts. Aus diesen besteht der größte Teil des Rafts. Eine Erhöhung dieses Wertes führt zu einem dickeren und stabileren Raft." +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "Die Ruckfunktion, mit der das Raft gedruckt wird." -msgctxt "brim_line_count description" -msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." -msgstr "Die Anzahl der Linien für das Brim-Element. Eine größere Anzahl von Brim-Linien verbessert die Haftung am Druckbett, es wird dadurch aber auch der verwendbare Druckbereich verkleinert." +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Ruckfunktion Drucken Raft-Basis" -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "Die Anzahl der Linien für die Brim-Stützstruktur. Eine größere Anzahl von Brim-Linien verbessert die Haftung am Druckbett, jedoch erhöht sich hierdurch der Materialverbrauch." +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "Die Ruckfunktion, mit der die unteren Raft-Schichten gedruckt werden." -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "Die Anzahl der Oberflächenschichten auf der zweiten Raft-Schicht. Dabei handelt es sich um komplett gefüllte Schichten, auf denen das Modell ruht. Bei der Verwendung von 2 Schichten entsteht eine glattere Oberfläche als bei einer Schicht." +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Ruckfunktion Drucken Raft Mitte" -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "Die Anzahl der oberen Schichten. Wenn diese anhand der oberen Dicke berechnet wird, wird der Wert auf eine ganze Zahl auf- oder abgerundet." +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "Die Ruckfunktion, mit der die mittleren Raft-Schichten gedruckt werden." -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "Die Anzahl der obersten Außenhautschichten. Üblicherweise reicht eine einzige oberste Schicht aus, um höherwertige Oberflächen zu generieren." +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Ruckfunktion Drucken Raft Oben" -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Die Anzahl der Wände, mit denen die Stützstruktur-Füllung umgeben wird. Das Hinzufügen einer Wand kann den Druck der Stützstruktur zuverlässiger machen und Überhänge besser unterstützen. Es erhöht jedoch die Druckzeit und den Materialverbrauch." +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "Die Ruckfunktion, mit der die oberen Raft-Schichten gedruckt werden." -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Die Anzahl der Wände, mit denen der Stützstruktur-Schnittstellenboden umgeben wird. Das Hinzufügen einer Wand kann den Druck der Stützstruktur zuverlässiger machen und Überhänge besser unterstützen. Es erhöht jedoch die Druckzeit und den Materialverbrauch." +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Lüfterdrehzahl für Raft" -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Die Anzahl der Wände, mit denen das Stützstruktur-Schnittstellendach umgeben wird. Das Hinzufügen einer Wand kann den Druck der Stützstruktur zuverlässiger machen und Überhänge besser unterstützen. Es erhöht jedoch die Druckzeit und den Materialverbrauch." +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "Die Drehzahl des Lüfters für das Raft." -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Die Anzahl der Wände, mit denen die Stützstruktur-Schnittstelle umgeben wird. Das Hinzufügen einer Wand kann den Druck der Stützstruktur zuverlässiger machen und Überhänge besser unterstützen. Es erhöht jedoch die Druckzeit und den Materialverbrauch." +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Lüfterdrehzahl für Raft-Basis" -msgctxt "wall_distribution_count description" -msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." -msgstr "Die Anzahl der Wände, gezählt von der Mitte aus, über welche die Variation verteilt werden soll. Niedrigere Werte führen dazu, dass sich die Außenwände in ihrer Stärke nicht verändern." +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "Die Drehzahl des Lüfters für die Raft-Basisschicht." -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "Die Anzahl der Wände. Wenn diese anhand der Wanddicke berechnet wird, wird der Wert auf eine ganze Zahl auf- oder abgerundet." +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Lüfterdrehzahl Raft Mitte" -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "Der Außendurchmesser der Düsenspitze." +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "Die Drehzahl des Lüfters für die mittlere Raft-Schicht." -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "Das Muster des Füllungsmaterials des Drucks. Die Linien- und Zickzack-Füllung wechselt die Richtung auf abwechselnden Schichten, was die Materialkosten reduziert. Die Gitter-, Dreieck-, Tri-Hexagon-, Kubus-, Oktett-, Viertelkubus-, Kreuz- und konzentrischen Muster werden in jeder Schicht vollständig gedruckt. Die Füllung in Form von Kreiseln, Würfeln, Viertelwürfeln und Achten wechselt mit jeder Schicht, um eine gleichmäßigere Verteilung der Stärke in jeder Richtung zu erreichen. Bei der Blitz-Füllung wird versucht, die Füllung zu minimieren, indem nur die Decke des Objekts unterstützt wird." +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Lüfterdrehzahl Raft Oben" -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "Das Muster der Stützstruktur des Drucks. Die verschiedenen verfügbaren Optionen führen zu einer stabilen oder zu einer leicht entfernbaren Stützstruktur." +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "Die Drehzahl des Lüfters für die obere Raft-Schicht." -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "Das Muster der obersten Schichten." +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Duale Extrusion" -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Das Muster der oberen/unteren Schichten." +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Verwendete Einstellungen für das Drucken mit mehreren Extrudern." -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "Das Muster am Boden des Drucks der ersten Schicht." +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Einzugsturm aktivieren" -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "Das Muster, das für die Glättung der Oberflächen verwendet wird." +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "Drucken Sie einen Turm neben dem Druck, der zum Einziehen des Materials nach jeder Düsenschaltung dient." -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "Das Muster, mit dem die Unterseiten der Stützstruktur gedruckt werden." +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "Prime Tower Typ" -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "Das Muster, mit dem die Schnittstelle der Stützstruktur mit dem Modell gedruckt wird." +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
                                      • Normal: create a bucket in which secondary materials are primed
                                      • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
                                      " +msgstr "So erzeugen Sie den Prime Tower:
                                      • Normal: Erstellen Sie ein Bucket, in dem sekundäre Materialien grundiert werden
                                      • Verschachtelt: Erstellen Sie einen Prime Tower so spärlich wie möglich. Das spart Zeit und Filament, ist aber nur möglich, wenn die verwendeten Materialien aneinander haften
                                      " -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "Das Muster, mit dem die Dächer der Stützstruktur gedruckt werden." +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "Normal" -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "Die Position in der Nähe der Stelle, an der die einzelnen Teile einer Ebene gedruckt werden sollen." +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "Verschachtelt" -msgctxt "support_tree_angle_slow description" -msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." -msgstr "Dies bezeichnet den bevorzugten Winkel der Äste, wenn eine Vermeidung des Modells nicht notwendig ist. Verwenden Sie einen geringeren Winkel, um sie vertikaler und stabiler zu gestalten. Verwenden Sie einen stärkeren Astwinkel, um sie schneller zusammenzuführen." +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Größe Einzugsturm" -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "Hierdurch wird die bevorzugte Platzierung der Stützstrukturen festgelegt. Wenn Strukturen nicht an der gewünschten Stelle platziert werden können, werden sie anderswo positioniert, möglicherweise sogar auf dem Modell." +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "Die Breite des Einzugsturms." -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung für die erste Schicht." +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Mindestvolumen Einzugsturm" -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "Die Form der Druckplatte ohne Berücksichtigung nicht druckbarer Bereiche." +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "Das Mindestvolumen für jede Schicht des Einzugsturms, um ausreichend Material zu spülen." -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "Die Form des Druckkopfes. Dies sind die Koordinaten relativ zur Position des Druckkopfs; meist ist dies die Position des ersten Extruders. Die Abmessungen links und vor dem Druckkopf müssen negative Koordinaten sein." +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "Prime Tower Maximaler Überbrückungsabstand" -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "Die Größe der Taschen bei Überkreuzung im 3D-Quermuster bei Höhen, in denen sich das Muster selbst berührt." +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "Die maximale Länge der Zweige, die über die Luft gedruckt werden dürfen." -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "Das kleinste Volumen, das ein Extrusionsweg haben sollte, damit Coasting möglich ist. Bei kürzeren Extrusionswegen wurde ein geringerer Druck in der Bowden-Röhre aufgebaut und daher wird das Coasting-Volumen linear skaliert. Dieser Wert sollte immer größer sein als das Coasting-Volumen." +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "X-Position des Einzugsturm" -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "Die Geschwindigkeit (°C/Sek.), mit der die Düse durchschnittlich bei normalen Drucktemperaturen und im Standby abkühlt." +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "Die X-Koordinate der Position des Einzugsturms." -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "Die Geschwindigkeit (°C/Sek.), mit der die Düse durchschnittlich bei normalen Drucktemperaturen und im Standby aufheizt." +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Y-Position des Einzugsturms" -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "Die Geschwindigkeit, mit der alle Innenwände gedruckt werden. Wenn die Innenwand schneller als die Außenwand gedruckt wird, wird die Druckzeit reduziert. Es wird empfohlen, diese Geschwindigkeit zwischen der Geschwindigkeit für die Außenwand und der Füllgeschwindigkeit einzustellen." +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "Die Y-Koordinate der Position des Einzugsturms." -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "Die Geschwindigkeit, mit der die Brücken-Außenhautbereiche gedruckt werden." +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Wipe-Düse am Einzugsturm inaktiv" -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "Die Geschwindigkeit, mit der die Füllung gedruckt wird." +msgctxt "prime_tower_wipe_enabled description" +msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." +msgstr "Nach dem Drucken des Einzugsturms mit einer Düse wird das ausgetretene Material von der anderen Düse am Einzugsturm abgewischt." -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "Die Geschwindigkeit, mit der gedruckt wird." +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Base" +msgstr "Grundfläche des Prime-Turms" -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "Die Geschwindigkeit, mit der die Raft-Basisschicht gedruckt wird. Diese sollte relativ niedrig sein, da zu diesem Zeitpunkt ein großes Materialvolumen aus der Düse kommt." +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "Durch Aktivieren dieser Einstellung erhält Ihr Prime-Turm einen Rand, auch wenn das Modell keinen hat. Wenn Sie eine stabilere Basis für einen hohen Turm möchten, können Sie die Basis-Höhe erhöhen." -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "Die Geschwindigkeit, mit der die Brückenwände gedruckt werden." +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "Größe der Prime-Turm-Basis" -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "Die Drehzahl, mit der die Lüfter zu Druckbeginn drehen. In den nachfolgenden Schichten wird die Lüfterdrehzahl schrittweise bis zu der Schicht gesteigert, die der Normaldrehzahl in der Höhe entspricht." +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "Die Breite des Prime-Turm-Randes/Basis. Eine größere Basis verbessert die Haftung auf der Bauplatte, verringert jedoch auch den effektiven Druckbereich." -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "Die Drehzahl, mit der die Lüfter laufen, bevor der Grenzwert erreicht wird. Wenn eine Schicht schneller als der Grenzwert gedruckt wird, steigt die Lüfterdrehzahl schrittweise zur Maximaldrehzahl des Lüfters an." +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "Höhe der Prime-Turm-Basis" -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "Die Drehzahl, mit der die Lüfter bei der Mindestzeit für Schicht laufen. Die Lüfterdrehzahl wird schrittweise von der Normaldrehzahl bis zur Maximaldrehzahl des Lüfters angehoben, wenn der Grenzwert erreicht wird." +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "Die Höhe der Prime-Turm-Basis. Eine Erhöhung dieses Wertes führt zu einem stabileren Prime-Turm, da die Basis breiter wird. Ist dieser Wert zu niedrig, hat der Prime-Turm keine stabile Basis." -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung zurückgeschoben wird." +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "Neigung der Prime-Turm-Basis" -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung vorbereitet wird." +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "Der Größenfaktor, der für die Neigung der Prime-Turm-Basis verwendet wird. Wenn Sie diesen Wert erhöhen, wird die Basis schlanker. Wenn Sie ihn verringern, wird die Basis dicker." -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "Die Geschwindigkeit, mit der das Filament während eines Düsenwechseleinzugs zurückgeschoben wird." +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "Linienabstand des Prime-Turm-Floßes" -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung eingezogen und zurückgeschoben wird." +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "Der Abstand zwischen den Floßlinien für die einzigartige Prime-Turm-Floßschicht. Ein großer Abstand erleichtert das Entfernen des Floßes von der Bauplatte." -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung eingezogen und während einer Einzugsbewegung für Abwischen zurückgeschoben wird." +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Sickerschutz aktivieren" -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "Die Geschwindigkeit, mit der das Filament während eines Düsenwechseleinzugs zurückgezogen wird." +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "Aktiviert den äußeren Sickerschutz. Damit wird eine Hülle um das Modell erstellt, die eine zweite Düse abstreift, wenn diese auf derselben Höhe wie die erste Düse steht." -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung eingezogen wird." +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Winkel für Sickerschutz" -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung für Abwischen eingezogen wird." +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "Der maximale Winkel, den ein Teil im Sickerschutz haben kann. 0 Grad ist vertikal und 90 Grad ist horizontal. Ein kleinerer Winkel führt zu weniger ausgefallenen Sickerschützen, jedoch mehr Material." -msgctxt "switch_extruder_retraction_speeds description" -msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." -msgstr "Die Geschwindigkeit, mit der das Filament zurückgezogen wird. Eine höhere Rückzugsgeschwindigkeit funktioniert besser, allerdings kann eine sehr hohe Rückzugsgeschwindigkeit zu einem Schleifen des Filaments führen." +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Abstand für Sickerschutz" -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "Die Geschwindigkeit, mit der die Böden der Stützstruktur gedruckt werden. Durch das Drucken bei einer geringeren Geschwindigkeit kann die Haftung des Stützdachs Ihres Modells verbessert werden." +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "Der Abstand des Sicherschutzes zum gedruckten Objekt in den X/Y-Richtungen." -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "Die Geschwindigkeit, mit der die Füllung der Stützstruktur gedruckt wird. Durch das Drucken der Füllung bei einer geringeren Geschwindigkeit, kann die Stabilität verbessert werden." +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Düsenwechsel Einzugsabstand" -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "Die Geschwindigkeit, mit der die Raft-Mittelschicht gedruckt wird. Diese sollte relativ niedrig sein, da zu diesem Zeitpunkt ein großes Materialvolumen aus der Düse kommt." +msgctxt "switch_extruder_retraction_amount description" +msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." +msgstr "Der Wert für den Einzug beim Umstellen der Extruder: 0 einstellen, um keinen Einzug zu erhalten. Dies sollte generell mit der Länge der Heizzone übereinstimmen." -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "Die Geschwindigkeit, mit der die Außenwände gedruckt werden. Durch das Drucken der Außenwand bei einer niedrigeren Geschwindigkeit wird eine bessere Endqualität der Außenhaut erreicht. Wenn allerdings zwischen der Geschwindigkeit für die Innenwand und jener für die Außenwand ein zu großer Unterschied besteht, wird die Qualität negativ beeinträchtigt." +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Düsenwechsel Rückzugsgeschwindigkeit" + +msgctxt "switch_extruder_retraction_speeds description" +msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." +msgstr "Die Geschwindigkeit, mit der das Filament zurückgezogen wird. Eine höhere Rückzugsgeschwindigkeit funktioniert besser, allerdings kann eine sehr hohe Rückzugsgeschwindigkeit zu einem Schleifen des Filaments führen." -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "Die Geschwindigkeit, mit der der Einzugsturm gedruckt wird. Das Drucken des Einzugsturms bei einer geringeren Geschwindigkeit kann zu einem stabileren Ergebnis führen, wenn die Haftung zwischen den verschiedenen Filamenten nicht optimal ist." +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Düsenwechsel Rückzuggeschwindigkeit" -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "Die Drehzahl, mit der die Druckerlüfter laufen." +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "Die Geschwindigkeit, mit der das Filament während eines Düsenwechseleinzugs zurückgezogen wird." -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "Die Geschwindigkeit, mit der das Raft gedruckt wird." +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Düsenwechsel Einzugsgeschwindigkeit (Zurückschieben)" -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "Die Geschwindigkeit, mit der die Dächer und Böden der Stützstruktur gedruckt werden. Durch das Drucken bei einer geringeren Geschwindigkeit kann die Qualität der Überhänge verbessert werden." +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "Die Geschwindigkeit, mit der das Filament während eines Düsenwechseleinzugs zurückgeschoben wird." -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "Die Geschwindigkeit, mit der die Dächer der Stützstruktur gedruckt werden. Durch das Drucken bei einer geringeren Geschwindigkeit kann die Qualität der Überhänge verbessert werden." +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Zusätzliche Einzugsmenge bei Düsenwechsel" -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "Die Geschwindigkeit, mit der die Skirt- und Brim-Elemente gedruckt werden. Normalerweise wird dafür die Geschwindigkeit der Basisschicht verwendet. In machen Fällen kann es jedoch vorteilhaft sein, das Skirt- oder Brim-Element mit einer anderen Geschwindigkeit zu drucken." +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "Nach einem Düsenwechsel zusätzlich bereitzustellendes Material." -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "Die Geschwindigkeit, mit der die Stützstruktur gedruckt wird. Durch das Drucken der Stützstruktur bei höheren Geschwindigkeiten kann die Gesamtdruckzeit deutlich verringert werden. Die Oberflächenqualität der Stützstruktur ist nicht wichtig, da diese nach dem Drucken entfernt wird." +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Netzreparaturen" -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "Die Geschwindigkeit, mit der die oberen Schichten des Raft gedruckt werden. Diese sollte etwas geringer sein, damit die Düse langsam angrenzende Oberflächenlinien glätten kann." +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Passe die Gitter besser an den 3D-Druck an." -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "Die Geschwindigkeit, mit der die inneren Wände der Oberfläche gedruckt werden." +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Überlappende Volumen vereinen" -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "Die Geschwindigkeit, mit der die äußersten Wände der Oberfläche gedruckt werden." +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "Die interne Geometrie, die durch überlappende Volumen innerhalb eines Netzes entsteht, wird ignoriert und diese Volumen werden als ein Einziges gedruckt. Dadurch können unbeabsichtigte innere Hohlräume verschwinden." -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "Die Geschwindigkeit, mit der bei Z-Sprüngen die vertikale Bewegung (Z-Achse) erfolgt. Diese liegt in der Regel unterhalb der Druckgeschwindigkeit, da die Bewegung von Druckbett oder Brücke schwieriger ist." +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Alle Löcher entfernen" -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "Die Geschwindigkeit, mit der die Wände gedruckt werden." +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "Es werden alle Löcher in den einzelnen Schichten entfernt und lediglich die äußere Form wird erhalten. Dadurch wird jegliche unsichtbare interne Geometrie ignoriert. Jedoch werden auch solche Löcher in den Schichten ignoriert, die man von oben oder unten sehen kann." -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "Die Geschwindigkeit, mit der über die Oberfläche gegangen wird." +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Extensives Stitching" -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "Geschwindigkeit, mit der das Filament eingezogen werden muss, damit es sauber abgebrochen werden kann." +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "Extensives Stitching versucht die Löcher im Netz mit sich berührenden Polygonen abzudecken. Diese Option kann eine lange Verarbeitungszeit in Anspruch nehmen." -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "Die Geschwindigkeit, mit der die Oberflächen der Außenhaut-Schichten gedruckt werden." +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Unterbrochene Flächen beibehalten" -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "Die Geschwindigkeit, mit der die oberen/unteren Schichten gedruckt werden." +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "Normalerweise versucht Cura kleine Löcher im Netz abzudecken und Teile von Schichten, die große Löcher aufweisen, zu entfernen. Die Aktivierung dieser Option erhält jene Teile, die nicht abgedeckt werden können. Diese Option sollte nur als letzter Ausweg verwendet werden, wenn es andernfalls nicht möglich ist, einen korrekten G-Code zu berechnen." -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "Die Geschwindigkeit, mit der Bewegungen durchgeführt werden." +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Überlappung zusammengeführte Netze" -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "Die Geschwindigkeit, mit der die Bewegung während des Coasting erfolgt, in Relation zur Geschwindigkeit des Extrusionswegs. Ein Wert leicht unter 100 % wird empfohlen, da während der Coasting-Bewegung der Druck in den Bowden-Röhren abfällt." +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "Erstellen Sie Netze, die einander berühren und sich leicht überlappen. Damit haften sie besser aneinander." -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "Die Geschwindigkeit für die erste Schicht. Ein niedrigerer Wert wird empfohlen, um die Haftung auf der Bauplatte zu verbessern. Hat keinen Einfluss auf die Haftstrukturen des Druckbetts selbst, wie Krempe und Raft." +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Netzüberschneidung entfernen" -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "Die Druckgeschwindigkeit für die erste Schicht. Ein niedrigerer Wert wird empfohlen, um die Haftung an der Druckplatte zu verbessern." +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "Entfernt Bereiche, in denen mehrere Netze miteinander überlappen. Dies kann verwendet werden, wenn zusammengefügte Objekte aus zwei Materialien miteinander überlappen." -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "Die Bewegungsgeschwindigkeit für die erste Schicht. Ein niedrigerer Wert wird empfohlen, um das Wegziehen zuvor gedruckter Teile von der Druckplatte zu vermeiden. Der Wert dieser Einstellung kann automatisch aus dem Verhältnis zwischen Bewegungsgeschwindigkeit und Druckgeschwindigkeit errechnet werden." +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "Wechselndes Entfernen des Netzes" -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "Die Temperatur, bei der das Filament für eine saubere Bruchstelle gebrochen wird." +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "Schaltet mit jeder Schicht das Volumen zu den entsprechenden Netzüberschneidungen, sodass die überlappenden Netze miteinander verwebt werden. Durch Abschalten dieser Funktion erhält eines der Netze das gesamte Volumen der Überlappung, während es von den anderen Netzen entfernt wird." -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "Die Temperatur der Druckumgebung. Beträgt der Wert 0, wird die Druckraumtemperatur nicht angepasst." +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Leere erste Schichten entfernen" -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "Die Temperatur der Düse, wenn eine andere Düse aktuell für das Drucken verwendet wird." +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "Entfernen Sie die leeren Schichten unter der ersten gedruckten Schicht, sofern vorhanden. Die Deaktivierung dieser Einstellung kann zu leeren ersten Schichten führen, wenn die Einstellung der Slicing-Toleranz auf Exklusiv oder Mittel gesetzt wurde." -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "Die Temperatur, bei der das Abkühlen bereits beginnen kann, bevor der Druck beendet wird." +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Maximale Auflösung" -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer." -msgstr "Die Temperatur, die für den Druck der ersten Schicht verwendet wird." +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "Die Mindestgröße eines Linienabschnitts nach dem Slicen. Wenn Sie diesen Wert erhöhen, führt dies zu einer niedrigeren Auslösung des Mesh. Damit kann der Drucker die erforderliche Geschwindigkeit für die Verarbeitung des G-Codes beibehalten; außerdem wird die Slice-Geschwindigkeit erhöht, indem Details des Mesh entfernt werden, die ohnehin nicht verarbeitet werden können." -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "Die Temperatur, die für das Drucken verwendet wird." +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Maximale Bewegungsauflösung" -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "Die Temperatur, auf die das Druckbett für die erste Schicht erhitzt wird. Beträgt dieser Wert 0, wird das Druckbett für die erste Schicht nicht beheizt." +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "Die maximale Größe eines Bewegungsliniensegments nach dem Slicen. Wenn Sie diesen Wert erhöhen, weisen die Fahrtbewegungen weniger glatte Kanten aus. Das ermöglicht dem Drucker, die für die Verarbeitung eines G-Codes erforderliche Geschwindigkeit aufrechtzuerhalten, allerdings kann das Modell damit auch weniger akkurat werden." -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "Die Temperatur, die für das beheizte Druckbett verwendet wird. Beträgt dieser Wert 0, wird das Bett nicht beheizt." +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Maximale Abweichung" -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "Die Temperatur, die zum Spülen des Materials verwendet wird, sollte ungefähr der höchstmöglichen Drucktemperatur entsprechen." +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "Die maximal zulässige Abweichung bei Reduzierung der maximalen Auflösung. Wenn Sie diesen Wert erhöhen, wird der Druck ungenauer, der G-Code wird jedoch kleiner. Die maximale Abweichung ist eine Grenze für die maximale Auflösung. Wenn die beiden Werte sich widersprechen, wird stets die maximale Abweichung eingehalten." -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "Die Dicke der unteren Schichten des Drucks. Dieser Wert geteilt durch die Schichtdicke bestimmt die Anzahl der unteren Schichten." +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Maximale Abweichung der Extrusionsfläche" -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "Die Stärke der zusätzlichen Füllung, die die Außenhautkanten stützt." +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "Die maximale zulässige Abweichung für Extrusionsflächen beim Entfernen von Zwischenpunkten aus einer Geraden. Ein Zwischenpunkt kann als Änderungspunkt für die Linienstärke in einer langen Geraden dienen. Wenn dieser entfernt wird, führt es dazu, dass die Linie eine einheitliche Stärke hat und folglich ein wenig Extrusionsfläche verloren geht (oder hinzugefügt wird). Wenn Sie diesen Wert erhöhen, können Sie eine leichte Unter- (oder Über-) Extrusion zwischen geraden, parallelen Wänden feststellen, da mehr dazwischenliegende Änderungspunkte für die Linienstärke entfernt werden können. Ihr Druck wird weniger genau sein, aber der g-Code wird kleiner sein." -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "Die Dicke der Schnittstelle der Stützstruktur, wo sie das Modell unten und oben berührt." +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "Fließbewegung aktivieren" -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "Die Dicke der Stützböden. Dies steuert die Anzahl der dichten Schichten, die oben an einem Modell gedruckt werden, auf dem die Stützstruktur aufsitzt." +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "Wenn diese Option aktiviert ist, werden die Werkzeugpfade für Drucker mit Planern für fließende Bewegungen korrigiert. Kleine Bewegungen, die von der allgemeinen Werkzeugpfadrichtung abweichen, werden geglättet, um Fließbewegungen zu verbessern." -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "Die Dicke des Stützdachs. Dies steuert die Menge an dichten Schichten oben an der Stützstruktur, auf der das Modell aufsitzt." +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "Fließbewegung – Verschiebeabstand" -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "Die Dicke der oberen Schichten des Drucks. Dieser Wert geteilt durch die Schichtdicke bestimmt die Anzahl der oberen Schichten." +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Abstandspunkte werden verschoben, um den Pfad zu glätten" -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "Die Dicke der oberen/unteren Schichten des Drucks. Dieser Wert geteilt durch die Schichtdicke bestimmt die Anzahl der oberen/unteren Schichten." +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "Fließbewegung – kleiner Abstand" -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "Die Dicke der Wände in horizontaler Richtung. Dieser Wert geteilt durch die Wandliniendicke bestimmt die Anzahl der Wände." +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Abstandspunkte werden verschoben, um den Pfad zu glätten" -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "Die Dicke pro Schicht des Füllmaterials. Dieser Wert sollte immer ein Vielfaches der Schichtdicke sein und wird sonst auf- oder abgerundet." +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "Fließbewegungswinkel" -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "Die Dicke pro Schicht des Füllmaterials der Stützstruktur. Dieser Wert sollte immer ein Vielfaches der Schichtdicke sein und wird sonst auf- oder abgerundet." +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "Weicht ein Werkzeugpfad-Segment mehr als diesen Winkel von der allgemeinen Bewegung ab, wird es geglättet." -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "Der Typ des zu generierenden G-Codes." +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Sonderfunktionen" -msgctxt "material_type description" -msgid "The type of material used." -msgstr "" +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Nicht-traditionelle Möglichkeiten, Ihre Modelle zu drucken." + +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Druckreihenfolge" -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "Die Menge, die anderweitig abgesondert wird. Dieser Wert sollte im Allgemeinen in der Nähe vom Düsendurchmesser hoch drei liegen." +msgctxt "print_sequence description" +msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." +msgstr "Es wird festgelegt, ob eine Schicht für alle Modelle gleichzeitig gedruckt werden soll oder ob zuerst ein Modell fertig gedruckt wird, bevor der Druck eines weiteren begonnen wird. Der „Nacheinandermodus“ ist möglich, wenn a) nur ein Extruder aktiviert ist und b) alle Modelle voneinander getrennt sind, sodass sich der gesamte Druckkopf zwischen allen Modellen bewegen kann und alle Modelle niedriger sind als der Abstand zwischen der Düse und den X/Y-Achsen." -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "Die Breite (X-Richtung) des druckbaren Bereichs." +msgctxt "print_sequence option all_at_once" +msgid "All at Once" +msgstr "Alle gleichzeitig" -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "Die Breite des unter der Stützstruktur zu druckenden Brims. Ein größeres Brim erhöht die Haftung am Druckbett, jedoch erhöht sich hierdurch der Materialverbrauch." +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "Nacheinander" -msgctxt "interlocking_beam_width description" -msgid "The width of the interlocking structure beams." -msgstr "Die Breite der Balken in der ineinandergreifenden Struktur." +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Druckreihenfolge manuell einstellen" -msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "Die Breite des Prime-Turm-Randes/Basis. Eine größere Basis verbessert die Haftung auf der Bauplatte, verringert jedoch auch den effektiven Druckbereich." +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "Ermöglicht es Ihnen, die Objektliste zu ordnen, um die Druckreihenfolge manuell festzulegen. Das erste Objekt in der Liste wird zuerst gedruckt." -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "Die Breite des Einzugsturms." +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Mesh-Füllung" -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "Die Breite der Zitterbewegung. Es wird empfohlen, diese niedriger als der Breite der äußeren Wand einzustellen, da die inneren Wände unverändert bleiben." +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "Verwenden Sie dieses Mesh, um die Füllung anderer Meshes zu ändern, mit denen es überlappt. Dabei werden Füllungsbereiche anderer Meshes mit Regionen für dieses Mesh ersetzt. Es wird empfohlen, nur eine Wand und keine obere/untere Außenhaut für dieses Mesh zu drucken." -msgctxt "retraction_extrusion_window description" -msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." -msgstr "Das Fenster, in dem die maximale Anzahl von Einzügen durchgeführt wird. Dieser Wert sollte etwa der Größe des Einzugsabstands entsprechen, sodass die effektive Häufigkeit, mit der ein Einzug dieselbe Stelle des Materials passiert, begrenzt wird." +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "Rang der Netzverarbeitung" -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "Die X-Koordinate der Position des Einzugsturms." +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "Legt fest, welchen Rang dieses Netz (Mesh) bei mehreren überlappenden Mesh-Füllungen hat. Bereiche, in denen mehrere Mesh-Füllungen überlappen, übernehmen die Einstellungen des Netzes mit dem höchsten Rang. Ist der Rang einer Mesh-Füllung höher, führt dies zu einer Modifizierung der Füllungen oder Mesh-Füllungen, deren Rang niedriger oder normal ist." -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "Die Y-Koordinate der Position des Einzugsturms." +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Mesh beschneiden" -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "Die Szene verfügt über Stütznetze. Diese Einstellung wird von Cura gesteuert." +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "Beschränkt die Menge dieses Meshs innerhalb der anderen Meshes. Sie können diese Funktion verwenden, um bestimmte Bereiche eines Mesh-Drucks mit unterschiedlichen Einstellungen und einem völlig anderen Extruder zu produzieren." -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "Damit wird der Abstand für das unmittelbare Coasting des Extruders vor Beginn einer Brückenwand gesteuert. Ein Coasting vor Brückenstart kann den Druck in der Düse reduzieren und eine flachere Brücke produzieren." +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Form" -msgctxt "raft_base_smoothing description" -msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "Damit werden Modelle als Form gedruckt, die gegossen werden kann, um ein Modell zu erhalten, das den Modellen des Druckbetts ähnelt." -msgctxt "raft_interface_smoothing description" -msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Mindestbreite der Form" -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Diese Einstellung steuert, wie stark die Innenkanten des Raft-Umrisses gerundet werden. Die Innenkanten werden zu einem Halbkreis mit einem Radius entsprechend des hier definierten Werts gerundet. Diese Einstellung entfernt außerdem Löcher im Raft-Umriss, die kleiner als ein solcher Kreis sind." +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "Der Mindestabstand zwischen der Außenseite der Form und der Außenseite des Modells." -msgctxt "raft_surface_smoothing description" -msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Dachhöhe der Form" -msgctxt "retraction_count_max description" -msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." -msgstr "Diese Einstellung limitiert die Anzahl an Einzügen, die innerhalb des Fensters „Minimaler Extrusionsabstand“ auftritt. Weitere Einzüge innerhalb dieses Fensters werden ignoriert. Durch diese Funktion wird vermieden, dass das gleiche Stück Filament wiederholt eingezogen wird, da es in diesem Fall abgeflacht werden oder es zu Schleifen kommen kann." +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "Bezeichnet die Höhe über horizontalen Teilen Ihres Modell, in der die Form gedruckt wird." -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "Es wird rund um das Modell eine Wand erstellt, die (heiße) Luft festhält und vor externen Luftströmen schützt. Dies ist besonders nützlich bei Materialien, die sich leicht verbiegen." +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Formwinkel" -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "Astspitzendurchmesser" +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "Dies bezeichnet den Winkel des Überhangs der für die Form erstellten Außenwände. 0 Grad ergibt eine vertikale Außenhaut der Form, während 90 Grad dazu führt, dass die Außenseite des Modells der Modellkontur folgt." -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "Um die Schrumpfung des Materials beim Abkühlen auszugleichen, wird das Modell mit diesem Faktor in XY-Richtung (horizontal) skaliert." +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Stütznetz" -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "Um die Schrumpfung des Materials beim Abkühlen auszugleichen, wird das Modell mit diesem Faktor in Z-Richtung (vertikal) skaliert." +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "Dieses Netz wird verwendet, um festzulegen, welche Bereiche gestützt werden sollen. Dies kann verwendet werden, um eine Stützstruktur zu errichten." -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "Um die Schrumpfung des Materials beim Abkühlen zu kompensieren, wird das Modell mit diesem Faktor skaliert." +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Anti-Überhang-Netz" -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Obere Schichten" +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "Dieses Netz wird verwendet, um festzulegen, welcher Teil des Modells als Überhang erkannt werden soll. Dies kann verwendet werden, um eine unerwünschte Stützstruktur zu entfernen." -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Expansionsdistanz Außenhaut oben" +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Oberflächenmodus" -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Breite für das Entfernen der Außenhaut oben" +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "Behandelt das Modell nur als Oberfläche, Volumen oder Volumen mit losen Oberflächen. Der Normaldruck-Modus druckt nur umschlossene Volumen. „Oberfläche“ druckt eine einzelne Wand und verfolgt die Mesh-Oberfläche ohne Füllung und ohne obere/untere Außenhaut. „Beide“ druckt umschlossene Volumen wie üblich und alle verbleibenden Polygone als Oberflächen." -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Beschleunigung der inneren Oberfläche der Wand" +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Normal" -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Ruck der äußersten Oberflächenwand" +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Oberfläche" -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Geschwindigkeit der inneren Oberfläche der Wand" +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Beides" -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Fluss der inneren Oberflächenwand(en)" +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Spiralisieren der äußeren Konturen" -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Beschleunigung der äußeren Oberfläche der Wand" +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "Durch Spiralisieren wird die Z-Bewegung der äußeren Kante geglättet. Dies führt zu einem konstanten Z-Anstieg des gesamten Drucks. Diese Funktion wandelt ein solides Modell in einen Druck mit Einzelwänden und einem soliden Boden um. Diese Funktion sollte nur aktiviert werden, wenn jede Schicht nur ein einzelnes Teil enthält." -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Fluss der äußersten Oberflächenwand" +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Glätten der spiralisierten Kontur" -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Ruck der inneren Oberflächenwand" +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "Glättet die spiralförmigen Konturen, um die Sichtbarkeit der Z-Naht zu reduzieren (die Z-Naht sollte am Druckobjekt kaum sichtbar sein, ist jedoch in der Schichtenansicht erkennbar). Beachten Sie, dass beim Glätten feine Oberflächendetails verwischt werden." -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Geschwindigkeit der äußeren Oberfläche der Wand" +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Relative Extrusion" -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Beschleunigung Oberfläche Außenhaut" +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "Verwenden Sie die relative Extrusion anstelle der absoluten Extrusion. Die Verwendung relativer E-Schritte erleichtert die Nachbearbeitung des G-Code. Diese Option wird jedoch nicht von allen Druckern unterstützt und kann geringfügige Abweichungen bei der Menge des abgesetzten Materials im Vergleich zu absoluten E-Schritten zur Folge haben. Ungeachtet dieser Einstellung wird der Extrusionsmodus stets auf absolut gesetzt, bevor ein G-Code-Skript ausgegeben wird." -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Oberfläche Außenhaut Extruder" +msgctxt "experimental label" +msgid "Experimental" +msgstr "Experimentell" -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Fluss Oberfläche Außenhaut" +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Merkmale, die noch nicht vollständig ausgearbeitet wurden." -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Justierung der Oberfläche Außenhaut" +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Slicing-Toleranz" -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Oberfläche Außenhaut Schichten" +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "Vertikale Toleranz der geschnittenen (Slicing) Schichten. Die Konturen einer Schicht werden normalerweise erzeugt, indem ein Querschnitt durch die Mitte der Höhe jeder Schicht (Mitte) vorgenommen wird. Alternativ kann jede Schicht die Bereiche aufweisen, die über die gesamte Dicke der Schicht (Exklusiv) in das Volumen fallen, oder eine Schicht weist die Bereiche auf, die innerhalb der Schicht (Inklusiv) irgendwo hineinfallen. Inklusiv ermöglicht die meisten Details, Exklusiv die beste Passform und Mitte entspricht der ursprünglichen Fläche am ehesten." -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Linienrichtungen der Oberfläche Außenhaut" +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Mitte" -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Oberfläche Außenhaut Linienbreite" +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Exklusiv" -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Oberfläche Außenhaut Muster" +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Inklusiv" -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Oberfläche Außenhaut Geschwindigkeit" +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Bewegungsoptimierung Füllung" + +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "Bei Aktivierung wird die Reihenfolge, in der die Fülllinien gedruckt werden, optimiert, um die gefahrene Distanz zu reduzieren. Diese erzielte Reduzierung der Bewegung ist sehr stark von dem zu slicenden Modell, dem Füllmuster, der Dichte usw. abhängig. Beachten Sie, dass die Dauer für das Slicen bei einigen Modellen mit vielen kleinen Füllbereichen erheblich länger ausfallen kann." -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Obere Dicke" +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Fließtemperaturgraf" -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "Die Außenhaut von Ober- und/oder Unterseiten Ihres Objekts, deren Winkel größer als dieser Wert sind, werden nicht expandiert. Dadurch wird vermieden, dass die schmalen Außenhautbereiche, die entstehen, wenn die Modelloberfläche eine nahezu vertikale Neigung aufweist, expandiert werden. Ein Winkel von 0° ist horizontal und führt dazu, dass ein solcher Außenhautbereich nicht expandiert wird; ein Winkel von 90° ist vertikal und führt dazu, dass die gesamte Außenhaut expandiert wird." +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "Der Materialfluss (in mm3 pro Sekunde) in Bezug zur Temperatur (Grad Celsius)." -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Oben/Unten" +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Mindestumfang Polygon" -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Oben/Unten" +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "Polygone in geschnittenen Schichten, die einen Umfang unter diesem Wert haben, werden ausgefiltert. Niedrigere Werte führen zu einem Mesh mit höherer Auflösung zulasten der Slicing-Zeit. Dies gilt in erster Linie für SLA-Drucker mit höherer Auflösung und sehr kleine 3D-Modelle mit zahlreichen Details." -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Beschleunigung Oben/Unten" +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "Ineinandergreifende Struktur generieren" -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Extruder Oben/Unten" +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "Erzeugt eine Struktur aus ineinandergreifenden Balken an den Stellen, an denen sich Modelle berühren. Dies verbessert die Haftung zwischen Modellen, insbesondere bei Modellen, die aus verschiedenen Materialien gedruckt werden." -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Fluss oben/unten" +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "Breite der ineinandergreifenden Balken" -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Ruckfunktion obere/untere Schicht" +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "Die Breite der Balken in der ineinandergreifenden Struktur." -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Richtungen der oberen/unteren Linie" +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "Ausrichtung der ineinandergreifenden Struktur" -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Breite der oberen/unteren Linie" +msgctxt "interlocking_orientation description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "Die Höhe der Balken in der ineinandergreifenden Struktur, gemessen in der Anzahl der Schichten. Eine geringe Anzahl an Schichten ist stärker, aber anfälliger für Mängel." -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Unteres/oberes Muster" +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "Anzahl der Schichten ineinandergreifender Balken" -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Geschwindigkeit obere/untere Schicht" +msgctxt "interlocking_beam_layer_count description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "Die Höhe der Balken in der ineinandergreifenden Struktur, gemessen in der Anzahl der Schichten. Eine geringe Anzahl an Schichten ist stärker, aber anfälliger für Mängel." -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Obere/untere Dicke" +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "Tiefe der ineinandergreifenden Struktur" -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "Druckbett berühren" +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "Der Abstand von der Begrenzung zwischen Modellen, der eine ineinandergreifende Struktur erzeugt, gemessen in Zellen. Eine zu geringe Zellenanzahl führt zu mangelnder Haftung." -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Pfeilerdurchmesser" +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "Abstand zu Begrenzungen ineinandergreifender Strukturen" -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Winkel des Pfeilerdachs" +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "Der Abstand von der Außenseite eines Modells, in dem keine ineinandergreifenden Strukturen erzeugt werden, gemessen in Zellen." -msgctxt "mesh_rotation_matrix description" -msgid "Transformation matrix to be applied to the model when loading it from file." -msgstr "Transformationsmatrix, die beim Laden aus der Datei auf das Modell angewandt wird." +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Stützstruktur in Blöcke aufteilen" -msgctxt "travel label" -msgid "Travel" -msgstr "Bewegungen" +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "Überspringen Sie einige Stützstruktur-Verbindungen, um das Brechen der Stützstruktur zu erleichtern. Diese Einstellung ist für die Zickzack-Stützstruktur-Füllung vorgesehen." -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Beschleunigung Bewegung" +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Blockgröße für Stützstruktur" -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Umgehungsabstand Bewegung" +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "Überspringen Sie eine Verbindung zwischen den Stützstrukturlinien nach jedem N-Millimeter, um das Brechen der Stützstruktur zu erleichtern." -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Ruckfunktion Bewegung" +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Anzahl der Stützstruktur-Blocklinien" -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Bewegungsgeschwindigkeit" +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "Überspringen Sie eine in jeder N-Verbindungslinie, um das Wegbrechen der Stützstruktur zu erleichtern." -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "Behandelt das Modell nur als Oberfläche, Volumen oder Volumen mit losen Oberflächen. Der Normaldruck-Modus druckt nur umschlossene Volumen. „Oberfläche“ druckt eine einzelne Wand und verfolgt die Mesh-Oberfläche ohne Füllung und ohne obere/untere Außenhaut. „Beide“ druckt umschlossene Volumen wie üblich und alle verbleibenden Polygone als Oberflächen." +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Windschutz aktivieren" -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Tree" +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "Es wird rund um das Modell eine Wand erstellt, die (heiße) Luft festhält und vor externen Luftströmen schützt. Dies ist besonders nützlich bei Materialien, die sich leicht verbiegen." -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Tri-Hexagon" +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "X/Y-Abstand des Windschutzes" -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Dreiecke" +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "Der Abstand des Windschutzes zum gedruckten Objekt in den X/Y-Richtungen." -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Dreiecke" +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Begrenzung des Windschutzes" -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Dreiecke" +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "Hier wird die Höhe des Windschutzes eingestellt. Stellen Sie ein, ob der Windschutz für die gesamte Höhe des Modells oder für eine begrenzte Höhe gedruckt wird." -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Dreiecke" +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Voll" -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Dreiecke" +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Begrenzt" -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "Stammdurchmesser" +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Höhe des Windschutzes" -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "Die Begrenzung der Höhe des Windschutzes. Oberhalb dieser Höhe wird kein Windschutz mehr gedruckt." -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Überlappende Volumen vereinen" +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Überhänge druckbar machen" -msgctxt "bridge_wall_min_length description" -msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." -msgstr "Wände ohne Stützstruktur, die kürzer als dieser Wert sind, werden mit normalen Wandeinstellungen gedruckt. Längere Wände ohne Stützstruktur werden mithilfe der Brückenwandeinstellungen gedruckt." +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "Ändern Sie die Geometrie des gedruckten Modells so, dass eine minimale Stützstruktur benötigt wird. Tiefe Überhänge werden flacher. Überhängende Bereiche fallen herunter und werden damit vertikaler." -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Anpassschichten verwenden" +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Maximaler Winkel des Modells" -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Verwendung von Pfeilern" +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "Der maximale Winkel von Überhängen, nachdem sie druckbar gemacht wurden. Bei einem Wert von 0° werden alle Überhänge durch ein Teil des Modells ersetzt, das mit der Druckplatte verbunden ist, 90° führt zu keiner Änderung des Modells." -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "Verwenden Sie eine separate Beschleunigungsrate für Bewegungen. Wenn diese Option deaktiviert ist, wird für Bewegungen der Beschleunigungswert der gedruckten Linie an der Zielposition verwendet." +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Maximaler Lochflächen-Überstand" -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "Verwenden Sie eine separate Ruckrate für Bewegungen. Wenn diese Option deaktiviert ist, wird für Bewegungen der Ruckfunktionswert der gedruckten Linie an der Zielposition verwendet." +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "Die maximale Fläche eines Lochs im Sockel des Modells, das mittels „Überhang drucken“ entfernt werden soll. Löcher mit kleinerer Fläche werden beibehalten. Beim Wert 0 mm² werden alle Löcher in der Modellbasis gefüllt." -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "Verwenden Sie die relative Extrusion anstelle der absoluten Extrusion. Die Verwendung relativer E-Schritte erleichtert die Nachbearbeitung des G-Code. Diese Option wird jedoch nicht von allen Druckern unterstützt und kann geringfügige Abweichungen bei der Menge des abgesetzten Materials im Vergleich zu absoluten E-Schritten zur Folge haben. Ungeachtet dieser Einstellung wird der Extrusionsmodus stets auf absolut gesetzt, bevor ein G-Code-Skript ausgegeben wird." +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Coasting aktivieren" -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "Es werden spezielle Pfeiler verwendet, um kleine Überhänge zu stützen. Diese Pfeiler haben einen größeren Durchmesser als der von ihnen gestützte Bereich. In der Nähe des Überhangs verkleinert sich der Durchmesser der Pfeiler, was zur Bildung eines Dachs führt." +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "Beim Coasting wird der letzte Teil eines Extrusionswegs durch einen Bewegungsweg ersetzt. Das abgesonderte Material wird zum Druck des letzten Stücks des Extrusionswegs verwendet, um Fadenziehen zu vermindern." -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "Verwenden Sie dieses Mesh, um die Füllung anderer Meshes zu ändern, mit denen es überlappt. Dabei werden Füllungsbereiche anderer Meshes mit Regionen für dieses Mesh ersetzt. Es wird empfohlen, nur eine Wand und keine obere/untere Außenhaut für dieses Mesh zu drucken." +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Coasting-Volumen" -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "Dieses Netz wird verwendet, um festzulegen, welche Bereiche gestützt werden sollen. Dies kann verwendet werden, um eine Stützstruktur zu errichten." +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "Die Menge, die anderweitig abgesondert wird. Dieser Wert sollte im Allgemeinen in der Nähe vom Düsendurchmesser hoch drei liegen." + +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Mindestvolumen vor Coasting" -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "Dieses Netz wird verwendet, um festzulegen, welcher Teil des Modells als Überhang erkannt werden soll. Dies kann verwendet werden, um eine unerwünschte Stützstruktur zu entfernen." +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "Das kleinste Volumen, das ein Extrusionsweg haben sollte, damit Coasting möglich ist. Bei kürzeren Extrusionswegen wurde ein geringerer Druck in der Bowden-Röhre aufgebaut und daher wird das Coasting-Volumen linear skaliert. Dieser Wert sollte immer größer sein als das Coasting-Volumen." -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Benutzerdefiniert" +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Coasting-Geschwindigkeit" -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Schrumpfungskompensation für vertikalen Skalierungsfaktor" +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "Die Geschwindigkeit, mit der die Bewegung während des Coasting erfolgt, in Relation zur Geschwindigkeit des Extrusionswegs. Ein Wert leicht unter 100 % wird empfohlen, da während der Coasting-Bewegung der Druck in den Bowden-Röhren abfällt." -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "Vertikale Toleranz der geschnittenen (Slicing) Schichten. Die Konturen einer Schicht werden normalerweise erzeugt, indem ein Querschnitt durch die Mitte der Höhe jeder Schicht (Mitte) vorgenommen wird. Alternativ kann jede Schicht die Bereiche aufweisen, die über die gesamte Dicke der Schicht (Exklusiv) in das Volumen fallen, oder eine Schicht weist die Bereiche auf, die innerhalb der Schicht (Inklusiv) irgendwo hineinfallen. Inklusiv ermöglicht die meisten Details, Exklusiv die beste Passform und Mitte entspricht der ursprünglichen Fläche am ehesten." +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Größe 3D-Quertasche" -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Warten auf Aufheizen der Druckplatte" +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "Die Größe der Taschen bei Überkreuzung im 3D-Quermuster bei Höhen, in denen sich das Muster selbst berührt." -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Warten auf Aufheizen der Düse" +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Querfülldichte Bild" -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Beschleunigung Wand" +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "Die Dateiposition eines Bildes, von dem die Helligkeitswerte die minimale Dichte an der entsprechenden Position in der Füllung des Drucks bestimmen." -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Anzahl verteilter Wände" +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Querfülldichte Bild für Stützstruktur" -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Extruder für Wand" +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "Die Dateiposition eines Bildes, von dem die Helligkeitswerte die minimale Dichte an der entsprechenden Position in der Stützstruktur bestimmen." -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Wandfluss" +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Konische Stützstruktur aktivieren" -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Ruckfunktion Wand" +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "Macht die Bereiche der Stützstruktur am Boden kleiner als beim Überhang." -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Anzahl der Wandlinien" +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Winkel konische Stützstruktur" -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Breite der Wandlinien" +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "Der Neigungswinkel der konischen Stützstruktur. Bei 0 Grad ist er vertikal und bei 90 Grad horizontal. Kleinere Winkel machen die Stützstruktur stabiler, aber benötigen mehr Material. Negative Winkel machen die Basis der Stützstruktur breiter als die Spitze." -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Wandreihenfolge" +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Mindestbreite konische Stützstruktur" -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Wandgeschwindigkeit" +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "Die Mindestbreite, auf die die Basis der konischen Stützstruktur reduziert wird. Geringe Breiten können instabile Stützstrukturen zur Folge haben." -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Wanddicke" +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Ungleichmäßige Außenhaut" -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Wandübergangslänge" +msgctxt "magic_fuzzy_skin_enabled description" +msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." +msgstr "Willkürliche Zitterbewegung beim Druck der äußeren Wand, wodurch die Oberfläche ein raues und ungleichmäßiges Aussehen erhält." -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Wandübergangsfilter Abstand" +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Nur ungleichmäßige Außenhaut" -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Wandübergangsfilter Rand" +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "Es werden nur die Umrisse der Teile gejittert und nicht die Löcher der Teile." -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Schwellenwinkel für Wandübergang" +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Dicke der ungleichmäßigen Außenhaut" -msgctxt "shell label" -msgid "Walls" -msgstr "Wände" +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "Die Breite der Zitterbewegung. Es wird empfohlen, diese niedriger als der Breite der äußeren Wand einzustellen, da die inneren Wände unverändert bleiben." -msgctxt "wall_overhang_angle description" -msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." -msgstr "Wände, die über diesen Winkel hinaus hängen, werden mithilfe der Einstellungen für Winkel für überhängende Wände gedruckt. Wenn der Wert 90 beträgt, werden keine Wände als überhängend behandelt. Überhänge, die von Stützstrukturen gestützt werden, werden ebenfalls nicht als Überhang behandelt." +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Dichte der ungleichmäßigen Außenhaut" -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "Wenn diese Option aktiviert ist, werden die Werkzeugpfade für Drucker mit Planern für fließende Bewegungen korrigiert. Kleine Bewegungen, die von der allgemeinen Werkzeugpfadrichtung abweichen, werden geglättet, um Fließbewegungen zu verbessern." +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "Die durchschnittliche Dichte der Punkte, die auf jedes Polygon einer Schicht aufgebracht werden. Beachten Sie, dass die Originalpunkte des Polygons verworfen werden, sodass eine geringe Dichte in einer Reduzierung der Auflösung resultiert." -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "Bei Aktivierung wird die Reihenfolge, in der die Fülllinien gedruckt werden, optimiert, um die gefahrene Distanz zu reduzieren. Diese erzielte Reduzierung der Bewegung ist sehr stark von dem zu slicenden Modell, dem Füllmuster, der Dichte usw. abhängig. Beachten Sie, dass die Dauer für das Slicen bei einigen Modellen mit vielen kleinen Füllbereichen erheblich länger ausfallen kann." +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Punktabstand der ungleichmäßigen Außenhaut" -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "Bei Aktivierung wird die Lüfterdrehzahl für die Druckkühlung für die Außenhautbereiche direkt über der Stützstruktur geändert." +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "Der durchschnittliche Abstand zwischen den willkürlich auf jedes Liniensegment aufgebrachten Punkten. Beachten Sie, dass die Originalpunkte des Polygons verworfen werden, sodass eine hohe Glättung in einer Reduzierung der Auflösung resultiert. Dieser Wert muss größer sein als die Hälfte der Dicke der ungleichmäßigen Außenhaut." -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "Bei Aktivierung sind die Z-Naht-Koordinaten relativ zur Mitte der jeweiligen Teile. Bei Deaktivierung definieren die Koordinaten eine absolute Position auf dem Druckbett." +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Ausgleich Durchflussrate max. Extrusionswirkung" -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "Bei Werten größer als Null verwenden die Combing-Fahrbewegungen, die weiter als über diese Distanz erfolgen, die Einzugsfunktion. Beim Wert Null gibt es keine Maximalstellung, und die Combing-Fahrbewegungen verwenden die Einzugsfunktion nicht." +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "Die maximale Strecke (in mm), die das Filament bewegt werden kann, um Änderungen der Durchflussrate zu kompensieren." -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "Bei Werten größer als Null wird die Horizontalloch-Erweiterung schrittweise auf kleine Löcher angewendet (kleine Löcher werden stärker erweitert). Beim Wert Null wird die Horizontalloch-Erweiterung auf alle Löcher angewendet. Löcher, die größer als der maximale Durchmesser der Horizontalloch-Erweiterung sind, werden nicht erweitert." +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Ausgleichsfaktor Durchflussrate" -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "Bei einem Wert größer als Null ist die Horizontalloch-Erweiterung der Versatz, der auf alle Löcher in jeder Schicht angewendet wird. Positive Werte vergrößern die Löcher, negative Werte verringern die Lochgröße. Wenn diese Einstellung aktiviert ist, kann sie mit „Maximaler Durchmesser der Horizontalloch-Erweiterung“ weiter angepasst werden." +msgctxt "flow_rate_extrusion_offset_factor description" +msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." +msgstr "Wie weit das Filament bewegt werden kann, um Änderungen der Durchflussrate zu kompensieren – als Prozentsatz der Strecke, die das Filament sich während einer Sekunde Extrusion bewegen würde." -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "Die extrudierte Materialmenge beim Drucken von Brücken-Außenhautbereichen wird mit diesem Wert multipliziert." +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Anpassschichten verwenden" -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "Die extrudierte Materialmenge beim Drucken von Brückenwänden wird mit diesem Wert multipliziert." +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "Die Funktion Anpassschichten berechnet die Schichthöhe je nach Form des Modells." -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Die extrudierte Materialmenge beim Drucken der zweiten Brücken-Außenhautschicht wird mit diesem Wert multipliziert." +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "Maximale Abweichung für Anpassschichten" -msgctxt "bridge_skin_material_flow_3 description" -msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Die extrudierte Materialmenge beim Drucken der dritten Brücken-Außenhautschicht wird mit diesem Wert multipliziert." +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "Die max. zulässige Höhendifferenz von der Basisschichthöhe." -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "Wenn die Mindestgeschwindigkeit aufgrund der Mindestzeit für Schicht erreicht wird, wird der Druckkopf vom Druck angehoben und die zusätzliche Zeit, bis die Mindestzeit für Schicht erreicht ist, gewartet." +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "Abweichung Schrittgröße für Anpassschichten" -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "Wenn das Modell kleine, nur wenige Schichten hohe vertikale Lücken aufweist, sind diese normalerweise von einer Außenhaut bedeckt. Aktivieren Sie diese Einstellung, damit bei sehr kleinen Lücken keine Außenhaut gedruckt wird. Dies verkürzt die zum Drucken und Slicen benötigte Zeit, aber die Füllung bleibt der Luft ausgesetzt." +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "Der Höhenunterscheid der nächsten Schichthöhe im Vergleich zur vorherigen." -msgctxt "wall_transition_angle description" -msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." -msgstr "Legt fest, ab welchem Winkel Übergänge zwischen einer geraden und einer ungeraden Anzahl von Wänden erstellt werden. Eine Keilform mit einem größeren Winkel als in dieser Einstellung erhält keine Übergänge und es werden keine Wände in der Mitte gedruckt, um den verbleibenden Raum zu füllen. Wenn diese Einstellung verringert wird, reduziert dies die Anzahl und Länge dieser Mittelwände, kann jedoch Lücken oder zu starke Extrudierungen hinterlassen." +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "Topographische Größe der Anpassschichten" -msgctxt "wall_transition_length description" -msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." -msgstr "Wenn beim Übergang zwischen verschiedenen Wänden das Teil dünner wird, wird ein bestimmter Raum zugewiesen, in dem sich die Wandlinien teilen bzw. verbinden." +msgctxt "adaptive_layer_height_threshold description" +msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." +msgstr "Horizontaler Abstand zwischen zwei angrenzenden Schichten. Bei Einstellung eines niedrigeren Werts werden dünnere Schichten aufgetragen, damit die Kanten der Schichten enger aneinander liegen." -msgctxt "wipe_hop_enable description" -msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "Beim Abwischen wird das Druckbett gesenkt, um einen Abstand zwischen Düse und Druck herzustellen. Das verhindert, dass die Düse während der Bewegungen den Druckkörper trifft und verringert die Möglichkeit, dass der Druck vom Druckbett heruntergestoßen wird." +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Winkel für überhängende Wände" -msgctxt "retraction_hop_enabled description" -msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "Nach dem Einzug wird das Druckbett gesenkt, um einen Abstand zwischen Düse und Druck herzustellen. Das verhindert, dass die Düse den Druck während der Bewegungen anschlägt und verringert die Möglichkeit, dass der Druck vom Druckbett heruntergestoßen wird." +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." +msgstr "Wände, die über diesen Winkel hinaus hängen, werden mithilfe der Einstellungen für Winkel für überhängende Wände gedruckt. Wenn der Wert 90 beträgt, werden keine Wände als überhängend behandelt. Überhänge, die von Stützstrukturen gestützt werden, werden ebenfalls nicht als Überhang behandelt." -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "Definiert, ob die X/Y-Distanz der Stützstruktur die Z-Distanz der Stützstruktur aufhebt oder umgekehrt. Wenn X/Y Z aufhebt, kann die X/Y-Distanz die Stützstruktur vom Modell wegschieben und damit die tatsächliche Z-Distanz zum Überhang beeinflussen. Diese Einstellung kann deaktiviert werden, indem die X/Y-Distanz um die Überhänge nicht angewendet wird." +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Geschwindigkeit für überhängende Wände" -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "Definiert, ob die X/Y-Koordinaten der Nullposition des Druckers in der Mitte des druckbaren Bereichs stehen." +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "Überhängende Wände werden zu diesem Prozentwert ihrer normalen Druckgeschwindigkeit gedruckt." -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "Definiert, ob der Endanschlag der X-Achse in positiver Richtung (hohe X-Koordinate) oder negativer Richtung (niedrige X-Koordinate) liegt." +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Brückeneinstellungen aktivieren" + +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "Erkennt Brücken und ändert die Druckgeschwindigkeit, Fluss- und Lüftereinstellungen während des Drucks von Brücken." -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "Definiert, ob der Endanschlag der Y-Achse in positiver Richtung (hohe Y-Koordinate) oder negativer Richtung (niedrige Y-Koordinate) liegt." +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Mindestlänge Brückenwand" -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "Definiert, ob der Endanschlag der Z-Achse in positiver Richtung (hohe Z-Koordinate) oder negativer Richtung (niedrige Z-Koordinate) liegt." +msgctxt "bridge_wall_min_length description" +msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." +msgstr "Wände ohne Stützstruktur, die kürzer als dieser Wert sind, werden mit normalen Wandeinstellungen gedruckt. Längere Wände ohne Stützstruktur werden mithilfe der Brückenwandeinstellungen gedruckt." -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "Gibt an, ob die Extruder sich ein Heizelement teilen oder jeweils über ein eigenes verfügen." +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Schwellenwert Stützstruktur Brücken-Außenhaut" -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "Gibt an, ob die Extruder gemeinsam eine Düse nutzen oder jeweils über eine eigene verfügen. In der Einstellung „true“ ist zu erwarten, dass das GCode-Skript „printer-start“ alle Extruder ordnungsgemäß in einem bekannten und untereinander kompatiblen Anfangszustand anordnet (Rückzugstellung; entweder Null oder mit einem nicht zurückgezogenen Filament); in diesem Fall wird die anfängliche Rückzugstellung für jeden Extruder durch den Parameter „machine_extruders_shared_nozzle_initial_retraction“ beschrieben." +msgctxt "bridge_skin_support_threshold description" +msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." +msgstr "Wenn ein Außenhautbereich für weniger als diesen Prozentwert seines Bereichs unterstützt wird, drucken Sie ihn mit den Brückeneinstellungen. Ansonsten erfolgt der Druck mit den normalen Außenhauteinstellungen." -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "Option für vorhandene beheizte Druckplatte." +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Maximale Dichte der Materialsparfüllung der Brücke" -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "Zeigt an, ob das Gerät die Temperatur im Druckraum stabilisieren kann." +msgctxt "bridge_sparse_infill_max_density description" +msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." +msgstr "Maximale Dichte der Füllung, die im Sparmodus eingefüllt werden soll. Haut über spärlicher Füllung wird als nicht unterstützt betrachtet und kann daher als Brückenhaut behandelt werden." -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "Ermöglicht das Zentrieren des Objekts in der Mitte eines Druckbetts (0,0) anstelle der Verwendung eines Koordinatensystems, in dem das Objekt gespeichert war." +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Coasting Brückenwand" -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "Für die Temperatursteuerung von Cura. Schalten Sie diese Funktion aus, um die Düsentemperatur außerhalb von Cura zu steuern." +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "Damit wird der Abstand für das unmittelbare Coasting des Extruders vor Beginn einer Brückenwand gesteuert. Ein Coasting vor Brückenstart kann den Druck in der Düse reduzieren und eine flachere Brücke produzieren." -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "Option zum Einfügen von Befehlen für die Druckplattentemperatur am Start des Gcodes. Wenn der start_gcode bereits Befehle für die Druckplattentemperatur enthält, deaktiviert das Cura Programm diese Einstellung automatisch." +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Brückenwandgeschwindigkeit" -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "Option zum Einfügen von Befehlen für die Düsentemperatur am Start des Gcodes. Wenn der start_gcode bereits Befehle für die Düsentemperatur enthält, deaktiviert das Cura Programm diese Einstellung automatisch." +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "Die Geschwindigkeit, mit der die Brückenwände gedruckt werden." -msgctxt "clean_between_layers description" -msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." -msgstr "Option für das Einfügen eines G-Codes für das Abwischen der Düse zwischen den Schichten (max. einer pro Schicht). Die Aktivierung dieser Einstellung könnte das Einzugsverhalten beim Schichtenwechsel beeinflussen. Verwenden Sie bitte die Einstellungen für Abwischen bei Einzug, um das Einziehen bei Schichten zu steuern, bei denen das Skript für das Abwischen aktiv wird." +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Brückenwandfluss" -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "Option zur Eingabe eines Befehls beim Start, um zu warten, bis die Druckplattentemperatur erreicht wurde." +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "Die extrudierte Materialmenge beim Drucken von Brückenwänden wird mit diesem Wert multipliziert." -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "Diese Funktion legt fest, ob das Filament vor dem Drucken mit einem Tropfen eingezogen wird. Wenn diese Funktion aktiviert ist, stellt der Extruder vor dem Drucken an der Düse Material bereit. Der Brim- oder Skirt-Druck kann ebenfalls als Einzug wirken; in diesem Fall kann das Ausschalten dieser Funktion Zeit einsparen." +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Brücken-Außenhautgeschwindigkeit" -msgctxt "print_sequence description" -msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -msgstr "Es wird festgelegt, ob eine Schicht für alle Modelle gleichzeitig gedruckt werden soll oder ob zuerst ein Modell fertig gedruckt wird, bevor der Druck eines weiteren begonnen wird. Der „Nacheinandermodus“ ist möglich, wenn a) nur ein Extruder aktiviert ist und b) alle Modelle voneinander getrennt sind, sodass sich der gesamte Druckkopf zwischen allen Modellen bewegen kann und alle Modelle niedriger sind als der Abstand zwischen der Düse und den X/Y-Achsen." +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "Die Geschwindigkeit, mit der die Brücken-Außenhautbereiche gedruckt werden." -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "Zeigt optional die verschiedenen Varianten dieses Geräts an, die in separaten json-Dateien beschrieben werden." +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Brücken-Außenhautfluss" -msgctxt "machine_firmware_retract description" -msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." -msgstr "Definiert, ob Firmware-Einzugsbefehle (G10/G11) anstelle der E-Eigenschaft in G1-Befehlen verwendet wird, um das Material einzuziehen." +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "Die extrudierte Materialmenge beim Drucken von Brücken-Außenhautbereichen wird mit diesem Wert multipliziert." -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "Option zur Eingabe eines Befehls beim Start, um zu warten, bis die Düsentemperatur erreicht wurde." +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Dichte der Brücken-Außenhaut" -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Die Breite einer einzelnen Fülllinie." +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Die Dichte der Brücken-Außenhautschicht. Werte unter 100 erhöhen die Spalten zwischen den Außenhautlinien." -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "Die Breite einer einzelnen Stützdach- oder Bodenlinie." +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Lüfterdrehzahl Brücke" -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "Die Breite einer einzelnen Linie der oberen Druckbereiche." +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "Lüfterdrehzahl in Prozentwert für das Drucken von Brückenwänden und -Außenhaut." -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "Die Breite einer einzelnen Linie. Generell sollte die Breite jeder Linie der Breite der Düse entsprechen. Eine leichte Reduzierung dieses Werts kann jedoch zu besseren Drucken führen." +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Brücke hat mehrere Schichten" -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "Die Linienbreite eines einzelnen Einzugsturms." +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "Bei Aktivierung werden die zweite und dritte Schicht über der Luft mit den folgenden Einstellungen gedruckt. Ansonsten werden diese Schichten mit den normalen Einstellungen gedruckt." -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "Die Breite einer einzelnen Skirt- oder Brim-Linie." +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Geschwindigkeit Brücke, zweite Außenhaut" -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "Die Breite einer Linienbreite eines einzelnen Bodens." +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "Druckgeschwindigkeit für das Drucken der zweiten Brücken-Außenhautschicht." -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "Die Breite einer einzelnen Stützdachlinie." +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Fluss Brücke, zweite Außenhaut" -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Die Breite einer einzelnen Stützstrukturlinie." +msgctxt "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Die extrudierte Materialmenge beim Drucken der zweiten Brücken-Außenhautschicht wird mit diesem Wert multipliziert." -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Die Breite einer einzelnen oberen/unteren Linie." +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Dichte Brücke, zweite Außenhaut" -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "Die Breite einer einzelnen Wandlinie für alle Wandlinien, außer der äußersten." +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Die Dichte der zweiten Brücken-Außenhautschicht. Werte unter 100 erhöhen die Spalten zwischen den Außenhautlinien." -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Die Breite einer einzelnen Wandlinie." +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Lüfterdrehzahl Brücke, zweite Außenhaut" -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "Die Breite der Linien in der Raft-Basisschicht. Dabei sollte es sich um dicke Linien handeln, da diese besser an der Druckplatte haften." +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "Lüfterdrehzahl in Prozentwert für das Drucken der zweiten Brücken-Außenhautschicht." -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "Die Breite der Linien im Raft-Mittelbereich. Wenn die zweite Schicht mehr extrudiert, haften die Linien besser an der Druckplatte." +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Geschwindigkeit Brücke, dritte Außenhaut" -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "Die Breite der Linien in der Raft-Oberfläche. Dünne Linien sorgen dafür, dass die Raft-Oberfläche glatter wird." +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "Druckgeschwindigkeit für das Drucken der dritten Brücken-Außenhautschicht." -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "Die Breite der äußersten Wandlinie. Indem dieser Wert reduziert wird, können höhere Detaillierungsgrade erreicht werden." +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Fluss Brücke, dritte Außenhaut" -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "Breite der Wand, die dünne Merkmale (entsprechend der Mindest-Merkmalgröße) des Modells ersetzen wird. Wenn die Mindeststärke der Wandlinie dünner ist als die Stärke des Merkmals, wird die Wand so dick wie das Merkmal selbst." +msgctxt "bridge_skin_material_flow_3 description" +msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Die extrudierte Materialmenge beim Drucken der dritten Brücken-Außenhautschicht wird mit diesem Wert multipliziert." -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "X-Position für Bürste - Abwischen" +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Dichte Brücke, dritte Außenhaut" -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Sprunghöhe - Abwischen" +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Die Dichte der dritten Brücken-Außenhautschicht. Werte unter 100 erhöhen die Spalten zwischen den Außenhautlinien." -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "Wipe-Düse am Einzugsturm inaktiv" +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Lüfterdrehzahl Brücke, dritte Außenhaut" -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Abstand Wischbewegung" +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "Prozentwert der Lüfterdrehzahl für das Drucken der dritten Brücken-Außenhautschicht." msgctxt "clean_between_layers label" msgid "Wipe Nozzle Between Layers" msgstr "Düse zwischen den Schichten abwischen" -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Abwischen pausieren" +msgctxt "clean_between_layers description" +msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." +msgstr "Option für das Einfügen eines G-Codes für das Abwischen der Düse zwischen den Schichten (max. einer pro Schicht). Die Aktivierung dieser Einstellung könnte das Einzugsverhalten beim Schichtenwechsel beeinflussen. Verwenden Sie bitte die Einstellungen für Abwischen bei Einzug, um das Einziehen bei Schichten zu steuern, bei denen das Skript für das Abwischen aktiv wird." -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Wiederholungszähler - Abwischen" +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Materialmenge zwischen den Wischvorgängen" -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Einzugsabstand für Abwischen" +msgctxt "max_extrusion_before_wipe description" +msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." +msgstr "Die maximale Materialmenge, die extrudiert werden kann, bevor die Düse ein weiteres Mal abgewischt wird. Ist dieser Wert kleiner als das in einer Schicht benötigte Materialvolumen, so hat die Einstellung in dieser Schicht keine Auswirkung, d.h. sie ist auf ein Wischen pro Schicht begrenzt." msgctxt "wipe_retraction_enable label" msgid "Wipe Retraction Enable" msgstr "Abwischen bei Einzug aktivieren" +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Das Filament wird eingezogen, wenn sich die Düse über einen nicht zu bedruckenden Bereich bewegt." + +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Einzugsabstand für Abwischen" + +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "Wert, um den das Filament eingezogen wird, damit es während des Abwischens nicht austritt." + msgctxt "wipe_retraction_extra_prime_amount label" msgid "Wipe Retraction Extra Prime Amount" msgstr "Zusätzliche Zurückschiebemenge nach Einzug für Abwischen" -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Vorbereitungszeit für Abwischen beim Einzug" +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "Während einer Bewegung für den Abwischvorgang kann Material wegsickern, was hier kompensiert werden kann." + +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Einzugsgeschwindigkeit für Abwischen" + +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung eingezogen und während einer Einzugsbewegung für Abwischen zurückgeschoben wird." msgctxt "wipe_retraction_retract_speed label" msgid "Wipe Retraction Retract Speed" msgstr "Einzugsgeschwindigkeit (Einzug) für Abwischen" -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Einzugsgeschwindigkeit für Abwischen" +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung für Abwischen eingezogen wird." + +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Vorbereitungszeit für Abwischen beim Einzug" + +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung vorbereitet wird." + +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Abwischen pausieren" + +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Pausieren nach Aufhebung des Einzugs." msgctxt "wipe_hop_enable label" msgid "Wipe Z Hop" msgstr "Z-Sprung beim Abwischen" +msgctxt "wipe_hop_enable description" +msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "Beim Abwischen wird das Druckbett gesenkt, um einen Abstand zwischen Düse und Druck herzustellen. Das verhindert, dass die Düse während der Bewegungen den Druckkörper trifft und verringert die Möglichkeit, dass der Druck vom Druckbett heruntergestoßen wird." + msgctxt "wipe_hop_amount label" msgid "Wipe Z Hop Height" msgstr "Z-Sprung Höhe - Abwischen" -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "Innerhalb der Füllung" +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "Der Höhenunterschied bei Ausführung eines Z-Sprungs." -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "Mit aktivem Werkzeug schreiben, nach dem temporäre Befehle an das inaktive Werkzeug übermittelt wurden. Erforderlich für Dual-Extruder-Druck mit Smoothie oder anderer Firmware mit modalen Werkzeugbefehlen." +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Sprunghöhe - Abwischen" -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "X-Endanschlag in positiver Richtung" +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "Geschwindigkeit für das Verfahren der Z-Achse während des Sprungs." + +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "X-Position für Bürste - Abwischen" msgctxt "wipe_brush_pos_x description" msgid "X location where wipe script will start." msgstr "X-Position, an der das Skript für Abwischen startet." -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y hebt Z auf" +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Wiederholungszähler - Abwischen" -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Y-Endanschlag in positiver Richtung" +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "Anzahl der Wiederholungen für das Bewegen der Düse über der Bürste." -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Z-Endanschlag in positiver Richtung" +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Abstand Wischbewegung" -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Z-Sprung nach Extruder-Wechsel" +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "Die Strecke, die der Kopf durch Vorwärts- und Rückwärtsbewegung über die Bürste hinweg fährt." -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Z-Sprung Höhe nach Extruder-Wechsel" +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Max. Lochdurchmesser" -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Z-Sprung Höhe" +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "Löcher und Teilkonturen mit einem kleineren Durchmesser werden mit Small Feature Speed gedruckt." -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Z-Sprung nur über gedruckten Teilen" +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Max. Detaillänge" -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Sprunghöhe Z" +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "Teile, die kleiner sind als dieser Wert, werden in Detailgeschwindigkeit gedruckt." -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Z-Sprung beim Einziehen" +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Detailgeschwindigkeit" -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Justierung der Z-Naht" +msgctxt "small_feature_speed_factor description" +msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "Bei kleinen Details wird die Geschwindigkeit auf diesen Prozentsatz der normalen Druckgeschwindigkeit gesetzt. Durch eine niedrigere Druckgeschwindigkeit können die Haftung und die Genauigkeit verbessert werden." -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Position der Z-Naht" +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Geschwindigkeit der ersten Schicht von Details" -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Realitvwert der Z-Naht" +msgctxt "small_feature_speed_factor_0 description" +msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "Bei kleinen Details wird die Geschwindigkeit bei der ersten Schicht auf diesen Prozentsatz der normalen Druckgeschwindigkeit gesetzt. Durch eine niedrigere Druckgeschwindigkeit können die Haftung und die Genauigkeit verbessert werden." -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "Z-Naht X" +msgctxt "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "Abwechselnde Wandrichtungen" -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Z-Naht Y" +msgctxt "material_alternate_walls description" +msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." +msgstr "Abwechselnde Wandrichtungen für jede weitere Schicht und jeden Einsatz. Nützlich für Materialien, die Spannungen aufbauen können, wie beim Metalldruck." -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z hebt X/Y auf" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Äußere Wände gruppieren" -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Die äußeren Wände verschiedener Inseln in derselben Schicht werden nacheinander gedruckt. Wenn aktiviert, wird die Menge der Flussänderungen begrenzt, da die Wände nacheinander gedruckt werden, wenn deaktiviert, wird die Anzahl der Fahrten zwischen den Inseln reduziert, da die Wände auf den gleichen Inseln gruppiert sind." -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "Druckprozess-Berichterstattung" -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "Meldung von Ereignissen, die über die eingestellten Schwellenwerte hinausgehen" -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "Druckprozess-Berichterstattung aktivieren" -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "Aktivieren Sie die Druckprozess-Berichterstattung, um Schwellenwerte für eine mögliche Fehlererkennung festzulegen." -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "Fluss-Warnung" -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "Grenzwert für die Fluss-Warnung zur Erkennung." -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "Fluss-Grenzwert" -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "Grenzwert für die Flussanomalie zur Erkennung." -msgctxt "travel description" -msgid "travel" -msgstr "Bewegungen" +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "Drucktemperatur-Warnung" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "Grenzwert für Drucktemperaturwarnung zur Erkennung." -#~ msgctxt "brim_inside_margin description" -#~ msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -#~ msgstr "Ist ein Teil vollständig von einem anderen Teil eingeschlossen, wird bei diesem möglicherweise ein äußeres Brim-Element erzeugt, das die Innenseite des anderen Teils berührt. Hiermit wird der Teil des Brim-Elements entfernt, der sich innerhalb dieses Abstands zu inneren Löchern befindet." +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "Drucktemperatur-Grenzwert" -#~ msgctxt "user_defined_print_order_enabled description" -#~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." -#~ msgstr "Ermöglicht das Ordnen der Objektliste, um die Druckreihenfolge manuell festzulegen. Das erste Objekt aus der Liste wird zuerst gedruckt." +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "Grenzwert für die Erkennung von Drucktemperatur-Anomalien." -#~ msgctxt "brim_inside_margin label" -#~ msgid "Brim Inside Avoid Margin" -#~ msgstr "Abstand zur Vermeidung des inneren Brims" +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "Build-Volumen-Temperatur Warnung" -#~ msgctxt "brim_outside_only label" -#~ msgid "Brim Only on Outside" -#~ msgstr "Brim nur an Außenseite" +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "Grenzwert für die Erkennung einer Warnung vor der Build-Volumen-Temperatur." -#~ msgctxt "gradual_flow_discretisation_step_size description" -#~ msgid "Duration of each step in the gradual flow change" -#~ msgstr "Dauer der einzelnen Schritte bei der stufenweisen Änderung des Flusses" +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "Build-Volumen-Temperatur Grenzwert" -#~ msgctxt "gradual_flow_enabled description" -#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -#~ msgstr "Aktivieren Sie stufenweise Flussänderungen. Wenn diese Option aktiviert ist, wird der Fluss stufenweise auf den Sollwert des Flusses erhöht bzw. verringert. Dies ist bei Druckern mit Bowden-Röhren sinnvoll, bei denen der Fluss nicht sofort geändert wird, sobald der Extrudermotor startet/stoppt." +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "Grenzwert für Anomalie der Build-Volumen-Temperatur für die Erkennung." -#~ msgctxt "reset_flow_duration description" -#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -#~ msgstr "Bei jeder Fahrtbewegung, die diesen Wert überschreitet, wird der Materialfluss auf den Sollwert des Flusses für den Weg zurückgesetzt" +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Einstellungen Befehlszeile" -#~ msgctxt "gradual_flow_discretisation_step_size label" -#~ msgid "Gradual flow discretisation step size" -#~ msgstr "Schrittgröße der stufenweisen Fluss-Diskretisierung" +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "Diese Einstellungen werden nur verwendet, wenn CuraEngine nicht seitens Cura aufgerufen wird." -#~ msgctxt "gradual_flow_enabled label" -#~ msgid "Gradual flow enabled" -#~ msgstr "Stufenweiser Fluss aktiviert" +msgctxt "center_object label" +msgid "Center Object" +msgstr "Objekt zentrieren" -#~ msgctxt "max_flow_acceleration label" -#~ msgid "Gradual flow max acceleration" -#~ msgstr "Maximale Beschleunigung bei stufenweisem Fluss" +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "Ermöglicht das Zentrieren des Objekts in der Mitte eines Druckbetts (0,0) anstelle der Verwendung eines Koordinatensystems, in dem das Objekt gespeichert war." -#~ msgctxt "layer_0_max_flow_acceleration label" -#~ msgid "Initial layer max flow acceleration" -#~ msgstr "Maximale Flussbeschleunigung bei erster Schicht" +msgctxt "mesh_position_x label" +msgid "Mesh Position X" +msgstr "Netzposition X" -#~ msgctxt "layer_0_z_overlap description" -#~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -#~ msgstr "Die erste und die zweite Schicht des Modells sollen sich in der Z-Richtung überlappen, um das verlorene Filament in dem Luftspalt zu kompensieren. Alle Modelle über der ersten Modellschicht verschieben sich um diesen Wert nach unten." +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "Verwendeter Versatz für das Objekt in X-Richtung." -#~ msgctxt "max_flow_acceleration description" -#~ msgid "Maximum acceleration for gradual flow changes" -#~ msgstr "Maximale Beschleunigung für stufenweise Änderung des Flusses" +msgctxt "mesh_position_y label" +msgid "Mesh Position Y" +msgstr "Netzposition Y" -#~ msgctxt "layer_0_max_flow_acceleration description" -#~ msgid "Minimum speed for gradual flow changes for the first layer" -#~ msgstr "Mindestgeschwindigkeit für stufenweise Änderung des Flusses in der ersten Schicht" +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "Verwendeter Versatz für das Objekt in Y-Richtung." -#~ msgctxt "brim_outside_only description" -#~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -#~ msgstr "Brim nur an der Außenseite des Modells drucken. Damit reduziert sich die Anzahl der Brims, die Sie später entfernen müssen, während die Druckbetthaftung nicht signifikant eingeschränkt wird." +msgctxt "mesh_position_z label" +msgid "Mesh Position Z" +msgstr "Netzposition Z" -#~ msgctxt "reset_flow_duration label" -#~ msgid "Reset flow duration" -#~ msgstr "Flussdauer zurücksetzen" +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "Der für das Objekt in Z-Richtung verwendete Versatz. Damit können Sie den Vorgang ausführen, der unter dem Begriff „Objekt absenken“ verwendet wurde." -#~ msgctxt "support_interface_skip_height label" -#~ msgid "Support Interface Resolution" -#~ msgstr "Auflösung Stützstrukturschnittstelle" +msgctxt "mesh_rotation_matrix label" +msgid "Mesh Rotation Matrix" +msgstr "Matrix Netzdrehung" -#~ msgctxt "support_interface_skip_height description" -#~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -#~ msgstr "Bei der Überprüfung, wo sich das Modell über und unter der Stützstruktur befindet, verwenden Sie Schritte der entsprechenden Höhe. Niedrigere Werte schneiden langsamer, während höhere Werte dazu führen können, dass die normale Stützstruktur an einigen Stellen gedruckt wird, wo sie als Stützstrukturschnittstelle gedruckt werden sollte." +msgctxt "mesh_rotation_matrix description" +msgid "Transformation matrix to be applied to the model when loading it from file." +msgstr "Transformationsmatrix, die beim Laden aus der Datei auf das Modell angewandt wird." diff --git a/resources/i18n/de_DE/gradual_flow_settings.def.json.po b/resources/i18n/de_DE/gradual_flow_settings.def.json.po index 363b0994aa1..dcb91f9dfe6 100644 --- a/resources/i18n/de_DE/gradual_flow_settings.def.json.po +++ b/resources/i18n/de_DE/gradual_flow_settings.def.json.po @@ -1,54 +1,53 @@ -# msgid "" msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: 2024-03-11 11:28+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: en\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" - msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" msgstr "Gradual flow max acceleration" -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" - msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" msgstr "Maximum acceleration for gradual flow changes" +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" msgstr "Minimum speed for gradual flow changes for the first layer" +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + msgctxt "reset_flow_duration label" msgid "Reset flow duration" msgstr "Reset flow duration" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" diff --git a/resources/i18n/es_ES/cura.po b/resources/i18n/es_ES/cura.po index 48e3e99205d..a4d723cea28 100644 --- a/resources/i18n/es_ES/cura.po +++ b/resources/i18n/es_ES/cura.po @@ -12,7 +12,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" msgstr "%(width).1f x %(depth).1f x %(height).1f mm" @@ -119,7 +118,7 @@ msgstr "&Guardar proyecto..." msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" msgid "&Save Universal Cura Project..." -msgstr "" +msgstr "&Guardar proyecto Universal Cura..." msgctxt "@title:menu menubar:toplevel" msgid "&Settings" @@ -142,13 +141,9 @@ msgid "*You will need to restart the application for these changes to have effec msgstr "*Tendrá que reiniciar la aplicación para que estos cambios tengan efecto." msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "" -"- Añada perfiles de materiales y complementos del Marketplace \n" -"- Realice copias de seguridad y sincronice los perfiles y complementos de sus materiales \n" +msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgstr "- Añada perfiles de materiales y complementos del Marketplace " +"- Realice copias de seguridad y sincronice los perfiles y complementos de sus materiales " "- Comparta ideas y obtenga ayuda de más de 48 000 usuarios de la comunidad UltiMaker" msgctxt "@heading" @@ -175,14 +170,6 @@ msgctxt "@item:inlistbox" msgid "3MF File" msgstr "Archivo 3MF" -msgctxt "name" -msgid "3MF Reader" -msgstr "Lector de 3MF" - -msgctxt "name" -msgid "3MF Writer" -msgstr "Escritor de 3MF" - msgctxt "@error:zip" msgid "3MF Writer plug-in is corrupt." msgstr "El complemento del Escritor de 3MF está dañado." @@ -203,56 +190,37 @@ msgctxt "@label %i will be replaced with a profile name" msgid "Only user changed settings will be saved in the custom profile.
                                      For materials that support it, the new custom profile will inherit properties from %1." msgstr "Solo la configuración modificada por el usuario se guardar en el perfil personalizado.
                                      El nuevo perfil personalizado heredar las propiedades de %1 para los materiales compatibles." -#, python-brace-format msgctxt "@label OpenGL renderer" msgid "
                                    • OpenGL Renderer: {renderer}
                                    • " msgstr "
                                    • Representador de OpenGL: {renderer}
                                    • " -#, python-brace-format msgctxt "@label OpenGL vendor" msgid "
                                    • OpenGL Vendor: {vendor}
                                    • " msgstr "
                                    • Proveedor de OpenGL: {vendor}
                                    • " -#, python-brace-format msgctxt "@label OpenGL version" msgid "
                                    • OpenGL Version: {version}
                                    • " msgstr "
                                    • Versión de OpenGL: {version}
                                    • " msgctxt "@label crash message" -msgid "" -"

                                      A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

                                      \n" -"

                                      Please use the \"Send report\" button to post a bug report automatically to our servers

                                      \n" -" " -msgstr "" -"

                                      Se ha producido un error grave en Cura. Envíenos este informe de errores para que podamos solucionar el problema.

                                      \n" -"

                                      Utilice el botón "Enviar informe" para publicar automáticamente el informe de errores en nuestros servidores.

                                      \n" +msgid "

                                      A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

                                      \n

                                      Please use the \"Send report\" button to post a bug report automatically to our servers

                                      \n " +msgstr "

                                      Se ha producido un error grave en Cura. Envíenos este informe de errores para que podamos solucionar el problema.

                                      " +"

                                      Utilice el botón "Enviar informe" para publicar automáticamente el informe de errores en nuestros servidores.

                                      " " " msgctxt "@label crash message" -msgid "" -"

                                      Oops, UltiMaker Cura has encountered something that doesn't seem right.

                                      \n" -"

                                      We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

                                      \n" -"

                                      Backups can be found in the configuration folder.

                                      \n" -"

                                      Please send us this Crash Report to fix the problem.

                                      \n" -" " -msgstr "" -"

                                      ¡Vaya! UltiMaker Cura ha encontrado un error.

                                      \n" -"

                                      Hemos detectado un error irreversible durante el inicio, posiblemente como consecuencia de varios archivos de configuración erróneos. Le recomendamos que realice una copia de seguridad y que restablezca los ajustes.

                                      \n" -"

                                      Las copias de seguridad se encuentran en la carpeta de configuración.

                                      \n" -"

                                      Envíenos el informe de errores para que podamos solucionar el problema.

                                      \n" +msgid "

                                      Oops, UltiMaker Cura has encountered something that doesn't seem right.

                                      \n

                                      We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

                                      \n

                                      Backups can be found in the configuration folder.

                                      \n

                                      Please send us this Crash Report to fix the problem.

                                      \n " +msgstr "

                                      ¡Vaya! UltiMaker Cura ha encontrado un error.

                                      " +"

                                      Hemos detectado un error irreversible durante el inicio, posiblemente como consecuencia de varios archivos de configuración erróneos. Le recomendamos que realice una copia de seguridad y que restablezca los ajustes.

                                      " +"

                                      Las copias de seguridad se encuentran en la carpeta de configuración.

                                      " +"

                                      Envíenos el informe de errores para que podamos solucionar el problema.

                                      " " " -#, python-brace-format msgctxt "@info:status" -msgid "" -"

                                      One or more 3D models may not print optimally due to the model size and material configuration:

                                      \n" -"

                                      {model_names}

                                      \n" -"

                                      Find out how to ensure the best possible print quality and reliability.

                                      \n" -"

                                      View print quality guide

                                      " -msgstr "" -"

                                      Es posible que uno o más modelos 3D no se impriman correctamente debido al tamaño del modelo y la configuración del material:

                                      \n" -"

                                      {model_names}

                                      \n" -"

                                      Obtenga más información sobre cómo garantizar la mejor calidad y fiabilidad de impresión posible.

                                      \n" +msgid "

                                      One or more 3D models may not print optimally due to the model size and material configuration:

                                      \n

                                      {model_names}

                                      \n

                                      Find out how to ensure the best possible print quality and reliability.

                                      \n

                                      View print quality guide

                                      " +msgstr "

                                      Es posible que uno o más modelos 3D no se impriman correctamente debido al tamaño del modelo y la configuración del material:

                                      " +"

                                      {model_names}

                                      " +"

                                      Obtenga más información sobre cómo garantizar la mejor calidad y fiabilidad de impresión posible.

                                      " "

                                      Ver guía de impresión de calidad

                                      " msgctxt "@label" @@ -267,7 +235,7 @@ msgstr[1] "La conexión a la nube no está disponible para algunas impresoras" msgctxt "@text" msgid "A highly dense and strong part but at a slower print time. Great for functional parts." -msgstr "" +msgstr "Una pieza muy densa y resistente pero con un tiempo de impresión más lento. Excelente para piezas funcionales." msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." @@ -277,10 +245,6 @@ msgctxt "@item:inlistbox" msgid "AMF File" msgstr "Archivo AMF" -msgctxt "name" -msgid "AMF Reader" -msgstr "Lector de AMF" - msgctxt "@label" msgid "Abort" msgstr "Cancelar" @@ -317,10 +281,6 @@ msgctxt "@button" msgid "Accept" msgstr "Aceptar" -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Acepta GCode y lo envía a una impresora. El complemento también puede actualizar el firmware." - msgctxt "@label" msgid "Account synced" msgstr "Cuenta sincronizada" @@ -413,7 +373,6 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Añadir impresora manualmente" -#, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "Añadiendo la impresora {name} ({model}) de su cuenta" @@ -454,7 +413,6 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Todos los archivos (*)" -#, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "Todos los tipos compatibles ({0})" @@ -463,10 +421,6 @@ msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "Permitir el envío de datos anónimos" -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Permite cargar y visualizar archivos GCode." - msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Preguntar siempre" @@ -505,7 +459,7 @@ msgstr "Anónimo" msgctxt "@option:radio" msgid "Anonymous crash reports" -msgstr "" +msgstr "Informes anónimos de fallos" msgctxt "@label Description for application component" msgid "Application framework" @@ -513,7 +467,7 @@ msgstr "Entorno de la aplicación" msgctxt "@title:column" msgid "Applies on" -msgstr "" +msgstr "Se aplica en" msgctxt "@label" msgid "Apply Extruder offsets to GCode" @@ -547,7 +501,6 @@ msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to move %1 to the top of the queue?" msgstr "¿Seguro que desea mover %1 al principio de la cola?" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "¿Seguro que desea eliminar {printer_name} temporalmente?" @@ -560,7 +513,6 @@ msgctxt "@label (%1 is object name)" msgid "Are you sure you wish to remove %1? This cannot be undone!" msgstr "¿Seguro que desea eliminar %1? ¡Esta acción no se puede deshacer!" -#, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "¿Seguro que desea eliminar {0}? ¡Esta acción no se puede deshacer!" @@ -625,10 +577,6 @@ msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Realizar copia de seguridad y restablecer configuración" -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Realice una copia de seguridad de su configuración y restáurela." - msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "Realice copias de seguridad y sincronice los ajustes y complementos de sus materiales" @@ -703,7 +651,7 @@ msgstr "Calculado" msgctxt "@window:text" msgid "Camera navigation:" -msgstr "" +msgstr "Navegación por la cámara:" msgctxt "@window:text" msgid "Camera rendering:" @@ -725,12 +673,10 @@ msgctxt "@label" msgid "Can't connect to your UltiMaker printer?" msgstr "¿No puede conectarse a la impresora UltiMaker?" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "No se puede importar el perfil de {0} antes de añadir una impresora." -#, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "No se puede abrir ningún archivo si se está cargando un archivo GCode. Se omitió la importación de {0}" @@ -803,21 +749,8 @@ msgctxt "@label" msgid "Checking..." msgstr "Comprobando..." -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Busca actualizaciones de firmware." - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Comprueba las configuraciones de los modelos y la impresión en busca de posibles problemas de impresión y da consejos." - msgctxt "@label" -msgid "" -"Chooses between the techniques available to generate support. \n" -"\n" -"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" -"\n" -"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "Elige entre las técnicas disponibles para generar soporte. El soporte \"Normal\" crea una estructura de soporte directamente debajo de las partes en voladizo y lleva estas áreas hacia abajo. El soporte en \"Árbol\" crea ramas en las áreas en voladizo que sostienen el modelo al final de estas ramas y permite que las ramas se arrastren alrededor del modelo para sostenerlo tanto como sea posible en la placa de impresión." msgctxt "@action:inmenu menubar:edit" @@ -896,14 +829,6 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Archivo GCode comprimido" -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Lector de GCode comprimido" - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Escritor de GCode comprimido" - msgctxt "@title:window" msgid "Configuration Changes" msgstr "Cambios de configuración" @@ -976,10 +901,6 @@ msgctxt "@info:status" msgid "Connected via cloud" msgstr "Conectado mediante cloud" -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Se conecta a la biblioteca digital, por lo que Cura puede abrir y guardar archivos en ella." - msgctxt "@tooltip:button" msgid "Consult the UltiMaker Community." msgstr "Consulte en la Comunidad UltiMaker." @@ -1020,7 +941,6 @@ msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "No se ha podido crear el archivo desde el directorio de datos de usuario: {}" -#, python-brace-format msgctxt "@info:status Don't translate the tag {device}!" msgid "Could not find a file name when trying to write to {device}." msgstr "No se pudo encontrar un nombre de archivo al tratar de escribir en {device}." @@ -1049,12 +969,10 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "No se pudo guardar el archivo de material en {}:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "No se pudo guardar en {0}: {1}" -#, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "No se pudo guardar en unidad extraíble {0}: {1}" @@ -1063,31 +981,19 @@ msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "No se han podido cargar los datos en la impresora." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"No permission to execute process." -msgstr "" -"No se pudo iniciar EnginePlugin: {self._plugin_id}\n" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." +msgstr "No se pudo iniciar EnginePlugin: {self._plugin_id}" "No se tiene permiso para ejecutar el proceso." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Operating system is blocking it (antivirus?)" -msgstr "" -"No se pudo iniciar EnginePlugin: {self._plugin_id}\n" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" +msgstr "No se pudo iniciar EnginePlugin: {self._plugin_id}" "El sistema operativo lo está bloqueando (¿antivirus?)" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Resource is temporarily unavailable" -msgstr "" -"No se pudo iniciar EnginePlugin: {self._plugin_id}\n" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" +msgstr "No se pudo iniciar EnginePlugin: {self._plugin_id}" "El recurso no está disponible temporalmente" msgctxt "@title:window" @@ -1130,10 +1036,6 @@ msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Cree proyectos de impresión en Digital Library." -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Crea una malla de borrado que impide la impresión de soportes en determinados lugares" - msgctxt "@info:backup_status" msgid "Creating your backup..." msgstr "Creando copia de seguridad..." @@ -1146,22 +1048,10 @@ msgctxt "@title:window" msgid "Cura Backups" msgstr "Copias de seguridad de Cura" -msgctxt "name" -msgid "Cura Backups" -msgstr "Copias de seguridad de Cura" - msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Perfil de cura" -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Lector de perfiles de Cura" - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Escritor de perfiles de Cura" - msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Archivo 3MF del proyecto de Cura" @@ -1174,17 +1064,13 @@ msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura no puede iniciarse" -#, python-brace-format msgctxt "@info:status" msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." msgstr "Cura ha detectado perfiles de material que aún no estaban instalados en la impresora host del grupo {0}." msgctxt "@info:credit" -msgid "" -"Cura is developed by UltiMaker in cooperation with the community.\n" -"Cura proudly uses the following open source projects:" -msgstr "" -"UltiMaker ha desarrollado Cura en cooperación con la comunidad.\n" +msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" +msgstr "UltiMaker ha desarrollado Cura en cooperación con la comunidad." "Cura se enorgullece de utilizar los siguientes proyectos de código abierto:" msgctxt "@label" @@ -1195,18 +1081,6 @@ msgctxt "@label Cura version number" msgid "Cura version" msgstr "Versión de Cura" -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Backend de CuraEngine" - -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "Complemento de CuraEngine para suavizar gradualmente el flujo con el fin de limitar los saltos de flujo elevados" - -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "Flujo gradual de CuraEngine" - msgctxt "@label" msgid "Currency:" msgstr "Moneda:" @@ -1437,7 +1311,7 @@ msgstr "Boceto" msgctxt "@action:inmenu menubar:edit" msgid "Drop All Models to buildplate" -msgstr "" +msgstr "Soltar todos los modelos en la placa de construcción" msgctxt "@action:button" msgid "Duplicate" @@ -1463,12 +1337,10 @@ msgctxt "@action:button" msgid "Eject" msgstr "Expulsar" -#, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "Expulsar dispositivo extraíble {0}" -#, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "Expulsado {0}. Ahora puede retirar de forma segura la unidad." @@ -1493,10 +1365,6 @@ msgctxt "@label" msgid "Enabled" msgstr "Habilitado" -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Habilita la capacidad de generar geometría imprimible a partir de archivos de imagen 2D." - msgctxt "@title:label" msgid "End G-code" msgstr "Finalizar GCode" @@ -1567,7 +1435,7 @@ msgstr "Exportar selección..." msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Export Universal Cura Project" -msgstr "" +msgstr "Exportar proyecto Universal Cura" msgctxt "@button" msgid "Export material archive" @@ -1577,7 +1445,6 @@ msgctxt "@info:title" msgid "Export succeeded" msgstr "Exportación correcta" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Perfil exportado a {0}" @@ -1586,10 +1453,6 @@ msgctxt "@tooltip:button" msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "Amplíe UltiMaker Cura con complementos y perfiles de materiales." -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Extensión que permite el posprocesamiento de las secuencias de comandos creadas por los usuarios" - msgctxt "@label" msgid "Extruder" msgstr "Extrusor" @@ -1604,7 +1467,7 @@ msgstr "GCode final del extrusor" msgctxt "@label" msgid "Extruder End G-code duration" -msgstr "" +msgstr "Duración del código G de fin de extrusora" msgctxt "@title:label" msgid "Extruder Start G-code" @@ -1612,12 +1475,11 @@ msgstr "GCode inicial del extrusor" msgctxt "@label" msgid "Extruder Start G-code duration" -msgstr "" +msgstr "Duración del código G de inicio del extrusor" -#, python-brace-format msgctxt "@label" msgid "Extruder {0}" -msgstr "" +msgstr "Extrusor {0}" msgctxt "@info:title" msgid "Extruder(s) Disabled" @@ -1639,7 +1501,6 @@ msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "Error al crear un archivo de materiales para sincronizarlo con las impresoras." -#, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "Error al expulsar {0}. Es posible que otro programa esté utilizando la unidad." @@ -1648,27 +1509,22 @@ msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "Se ha producido un error al exportar el material a %1: %2" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Error al exportar el perfil a {0}: {1}" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Error al exportar el perfil a {0}: Error en el complemento de escritura." -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Error al importar el perfil de {0}:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Error al importar el perfil de {0}:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Error al importar el perfil de {0}: {1}" @@ -1685,10 +1541,9 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Se ha producido un error al guardar el archivo de material" -#, python-brace-format msgctxt "@info:status" msgid "Failed writing to specific cloud printer: {0} not in remote clusters." -msgstr "" +msgstr "Fallo al escribir en una impresora en nube específica: {0} no está en grupos remotos." msgctxt "@label:category menu label" msgid "Favorites" @@ -1714,7 +1569,6 @@ msgctxt "@info:title" msgid "File Saved" msgstr "Archivo guardado" -#, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "El archivo {0} no contiene ningún perfil válido." @@ -1747,14 +1601,6 @@ msgctxt "@title:window" msgid "Firmware Update" msgstr "Actualización del firmware" -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Buscador de actualizaciones de firmware" - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Actualizador de firmware" - msgctxt "@label" msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." msgstr "No se puede actualizar el firmware porque la conexión con la impresora no permite actualizaciones de firmware." @@ -1832,7 +1678,7 @@ msgid "Force layer view compatibility mode (restart required)" msgstr "Forzar modo de compatibilidad de la vista de capas (necesario reiniciar)" msgid "FreeCAD trackpad" -msgstr "" +msgstr "Panel de seguimiento de FreeCAD" msgctxt "@action:inmenu menubar:view" msgid "Front View" @@ -1854,18 +1700,6 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "Archivo GCode" -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Lector de perfiles GCode" - -msgctxt "name" -msgid "G-code Reader" -msgstr "Lector de GCode" - -msgctxt "name" -msgid "G-code Writer" -msgstr "Escritor de GCode" - msgctxt "@label" msgid "G-code flavor" msgstr "Tipo de GCode" @@ -1924,7 +1758,7 @@ msgstr "Empezar" msgctxt "@label" msgid "Global" -msgstr "" +msgstr "Mundial" msgctxt "@title:tab" msgid "Global Settings" @@ -1938,7 +1772,6 @@ msgctxt "@label" msgid "Grid Placement" msgstr "Colocación de cuadrícula" -#, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "N.º de grupo {group_nr}" @@ -1977,7 +1810,7 @@ msgstr "Ocultar todas las impresoras conectadas" msgctxt "@action:button" msgid "Hide settings" -msgstr "" +msgstr "Ocultar configuración" msgctxt "@action:menu" msgid "Hide this setting" @@ -2015,10 +1848,6 @@ msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "Si la impresora no aparece en la lista, lea la guía de solución de problemas de impresión y red" -msgctxt "name" -msgid "Image Reader" -msgstr "Lector de imágenes" - msgctxt "@action:button" msgid "Import" msgstr "Importar" @@ -2057,7 +1886,7 @@ msgstr "Para utilizar el paquete, deberá reiniciar Cura" msgctxt "@option:radio" msgid "Include UltiMaker account name" -msgstr "" +msgstr "Incluir nombre de cuenta UltiMaker" msgctxt "@label" msgid "Infill" @@ -2303,10 +2132,6 @@ msgctxt "@info:tooltip" msgid "Left View" msgstr "Vista del lado izquierdo" -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Lector de perfiles antiguos de Cura" - msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "Informe a los desarrolladores de que algo no funciona bien." @@ -2387,10 +2212,6 @@ msgctxt "@title:groupbox" msgid "Logs" msgstr "Registros" -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Registra determinados eventos para que puedan utilizarse en el informe del accidente" - msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Se ha perdido la conexión con la impresora" @@ -2399,10 +2220,6 @@ msgctxt "@action" msgid "Machine Settings" msgstr "Ajustes de la máquina" -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Acción Ajustes de la máquina" - msgctxt "@backuplist:label" msgid "Machines" msgstr "Máquinas" @@ -2419,10 +2236,6 @@ msgctxt "@item:inlistbox" msgid "Makerbot Printfile" msgstr "Archivo de impresión Makerbot" -msgctxt "name" -msgid "Makerbot Printfile Writer" -msgstr "Escritor de archivos de impresión Makerbot" - msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "MakerbotWriter no pudo guardar en la ruta designada." @@ -2479,14 +2292,6 @@ msgctxt "@text" msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." msgstr "Gestionar los complementos y los perfiles de materiales de UltiMaker Cura aquí. Asegúrese de mantener los complementos actualizados y hacer una copia de seguridad de su configuración regularmente." -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "Gestiona las extensiones de la aplicación y permite navegar por las extensiones desde el sitio web de UltiMaker." - -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "Gestiona las conexiones de red de las impresoras UltiMaker conectadas." - msgctxt "@label" msgid "Manufacturer" msgstr "Fabricante" @@ -2499,10 +2304,6 @@ msgctxt "@label" msgid "Marketplace" msgstr "Marketplace" -msgctxt "name" -msgid "Marketplace" -msgstr "Marketplace" - msgctxt "@action:label" msgid "Material" msgstr "Material" @@ -2519,10 +2320,6 @@ msgctxt "@label:listbox" msgid "Material Color" msgstr "Color del material" -msgctxt "name" -msgid "Material Profiles" -msgstr "Perfiles de material" - msgctxt "@label" msgid "Material Type" msgstr "Tipo de material" @@ -2567,10 +2364,6 @@ msgctxt "@action:label" msgid "Mode" msgstr "Modo" -msgctxt "name" -msgid "Model Checker" -msgstr "Comprobador de modelos" - msgctxt "@info:title" msgid "Model Errors" msgstr "Errores de modelo" @@ -2587,10 +2380,6 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "Supervisar" -msgctxt "name" -msgid "Monitor Stage" -msgstr "Fase de supervisión" - msgctxt "@action:button" msgid "Monitor print" msgstr "Supervisar la impresión" @@ -2665,7 +2454,6 @@ msgctxt "@info:title" msgid "Network error" msgstr "Error de red" -#, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" msgstr "Nuevo firmware de %s estable disponible" @@ -2678,7 +2466,6 @@ msgctxt "@label" msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." msgstr "Las nuevas impresoras UltiMaker pueden conectarse a Digital Factory y supervisarse a distancia." -#, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." msgstr "Puede que haya nuevas funciones o correcciones de errores disponibles para {machine_name}. Si no dispone de la última versión disponible, se recomienda actualizar el firmware de la impresora a la versión {latest_version}." @@ -2725,7 +2512,6 @@ msgctxt "@label" msgid "No cost estimation available" msgstr "Ningún cálculo de costes disponible" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "No hay ningún perfil personalizado para importar en el archivo {0}" @@ -2764,7 +2550,7 @@ msgstr "No se han encontrado resultados con el filtro actual" msgctxt "@label" msgid "No specific value has been set" -msgstr "" +msgstr "No se ha establecido ningún valor específico" msgctxt "@label" msgid "No time estimation available" @@ -2862,14 +2648,13 @@ msgctxt "@label" msgid "Only Show Top Layers" msgstr "Mostrar solo capas superiores" -#, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Solo se puede cargar un archivo GCode a la vez. Se omitió la importación de {0}" msgctxt "@message" msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." -msgstr "" +msgstr "¡Vaya! Se ha producido un error inesperado durante su proceso de corte. Tenga la seguridad de que hemos recibido automáticamente los registros del fallo para su análisis, si no ha desactivado el uso compartido de datos en sus preferencias. Para ayudarnos un poco más, considere la posibilidad de compartir los detalles de su proyecto en nuestro localizador de incidencias." msgctxt "@action:button" msgid "Open" @@ -2901,11 +2686,11 @@ msgstr "Abrir archivo de proyecto" msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Open Universal Cura Project (UCP)" -msgstr "" +msgstr "Abrir el proyecto Universal Cura (UCP)" msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Open Universal Cura Project (UCP) file" -msgstr "" +msgstr "Abrir el archivo del proyecto Universal Cura (UCP)" msgctxt "@action:label" msgid "Open With" @@ -2913,7 +2698,7 @@ msgstr "Abrir con" msgctxt "@action:button" msgid "Open as UCP" -msgstr "" +msgstr "Abrir como UCP" msgctxt "@action:button" msgid "Open as project" @@ -3036,10 +2821,6 @@ msgctxt "@label" msgid "Per Model Settings" msgstr "Ajustes por modelo" -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Herramienta de ajustes por modelo" - msgid "Perspective" msgstr "Perspectiva" @@ -3076,15 +2857,10 @@ msgid "Please give the required permissions when authorizing this application." msgstr "Conceda los permisos necesarios al autorizar esta aplicación." msgctxt "@info" -msgid "" -"Please make sure your printer has a connection:\n" -"- Check if the printer is turned on.\n" -"- Check if the printer is connected to the network.\n" -"- Check if you are signed in to discover cloud-connected printers." -msgstr "" -"Asegúrese de que la impresora está conectada:\n" -"- Compruebe que la impresora está encendida.\n" -"- Compruebe que la impresora está conectada a la red.\n" +msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." +msgstr "Asegúrese de que la impresora está conectada:" +"- Compruebe que la impresora está encendida." +"- Compruebe que la impresora está conectada a la red." "- Compruebe que ha iniciado sesión para ver impresoras conectadas a la nube." msgctxt "@text" @@ -3112,15 +2888,10 @@ msgid "Please remove the print" msgstr "Retire la impresión" msgctxt "@info:status" -msgid "" -"Please review settings and check if your models:\n" -"- Fit within the build volume\n" -"- Are assigned to an enabled extruder\n" -"- Are not all set as modifier meshes" -msgstr "" -"Revise la configuración y compruebe si sus modelos:\n" -"- Se integran en el volumen de impresión\n" -"- Están asignados a un extrusor activado\n" +msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" +msgstr "Revise la configuración y compruebe si sus modelos:" +"- Se integran en el volumen de impresión" +"- Están asignados a un extrusor activado" "- No están todos definidos como mallas modificadoras" msgctxt "@label" @@ -3133,7 +2904,7 @@ msgstr "Inicie sesión para obtener complementos y materiales verificados para U msgctxt "@info:tooltip" msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." -msgstr "" +msgstr "Inicie sesión en su cuenta de UltiMaker para permitir el envío de datos no anónimos." msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." @@ -3175,10 +2946,6 @@ msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Posprocesamiento" -msgctxt "name" -msgid "Post Processing" -msgstr "Posprocesamiento" - msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "Complemento de posprocesamiento" @@ -3195,10 +2962,6 @@ msgctxt "@item:inmenu" msgid "Prepare" msgstr "Preparar" -msgctxt "name" -msgid "Prepare Stage" -msgstr "Fase de preparación" - msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "Preparando..." @@ -3219,10 +2982,6 @@ msgctxt "@item:inmenu" msgid "Preview" msgstr "Vista previa" -msgctxt "name" -msgid "Preview Stage" -msgstr "Fase de vista previa" - msgctxt "@tooltip" msgid "Prime Tower" msgstr "Torre auxiliar" @@ -3423,7 +3182,6 @@ msgctxt "@title:column" msgid "Profile settings" msgstr "Ajustes del perfil" -#, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "El perfil {0} tiene un tipo de archivo desconocido o está corrupto." @@ -3448,22 +3206,18 @@ msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Lenguaje de programación" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "El archivo del proyecto {0} contiene un tipo de máquina desconocida {1}. No se puede importar la máquina, en su lugar, se importarán los modelos." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "El archivo de proyecto {0} está dañado: {1}." -#, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." msgstr "El archivo de proyecto {0} se ha creado con perfiles desconocidos para esta versión de Ultimaker Cura." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "El archivo de proyecto {0} está repentinamente inaccesible: {1}." @@ -3472,147 +3226,42 @@ msgctxt "@label" msgid "Properties" msgstr "Propiedades" -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Proporciona opciones a la máquina para actualizar el firmware." - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Proporciona una fase de supervisión en Cura." +msgctxt "@label" +msgid "PyQt version" +msgstr "Versión PyQt" -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Proporciona una vista de malla sólida normal." +msgctxt "@Label Description for application dependency" +msgid "Python Error tracking library" +msgstr "Biblioteca de seguimiento de errores de Python" -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Proporciona una fase de preparación en Cura." +msgctxt "@label Description for application dependency" +msgid "Python bindings for Clipper" +msgstr "Enlaces de Python para Clipper" -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Proporciona una fase de vista previa en Cura." +msgctxt "@label Description for application component" +msgid "Python bindings for libnest2d" +msgstr "Enlaces de Python para libnest2d" -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Permite cambiar los ajustes de la máquina (como el volumen de impresión, el tamaño de la tobera, etc.)." +msgctxt "@label" +msgid "Qt version" +msgstr "Versión Qt" -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Permite leer y escribir perfiles de material basados en XML." +msgctxt "@info:status" +msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." +msgstr "El tipo de calidad '{0}' no es compatible con la definición actual de máquina activa '{1}'." -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Proporciona las acciones de la máquina de las máquinas Ultimaker (como un asistente para la nivelación de la plataforma, la selección de actualizaciones, etc.)." +msgctxt "@info:title" +msgid "Queue Full" +msgstr "Cola llena" -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Proporciona asistencia para la conexión directa y la escritura de la unidad extraíble." - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Proporciona asistencia para exportar perfiles de Cura." - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Proporciona asistencia para la importación de perfiles de Cura." - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Proporciona asistencia para la importación de perfiles de archivos GCode." - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Proporciona asistencia para la importación de perfiles de versiones anteriores de Cura." - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Proporciona asistencia para leer archivos 3MF." - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Proporciona asistencia para leer archivos AMF." - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Proporciona soporte para la lectura de paquetes de formato Ultimaker." - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Proporciona asistencia para leer archivos X3D." - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Proporciona asistencia para leer archivos 3D." - -msgctxt "description" -msgid "Provides support for writing 3MF and UCP files." -msgstr "" - -msgctxt "description" -msgid "Provides support for writing MakerBot Format Packages." -msgstr "Proporciona soporte para escribir paquetes de formato MakerBot." - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Permite la escritura de paquetes de formato Ultimaker." - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Proporciona los ajustes por modelo." - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Proporciona la vista de rayos X." - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Proporciona el vínculo para el backend de segmentación de CuraEngine." - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Proporciona la vista previa de los datos de las capas cortadas." - -msgctxt "@label" -msgid "PyQt version" -msgstr "Versión PyQt" - -msgctxt "@Label Description for application dependency" -msgid "Python Error tracking library" -msgstr "Biblioteca de seguimiento de errores de Python" - -msgctxt "@label Description for application dependency" -msgid "Python bindings for Clipper" -msgstr "Enlaces de Python para Clipper" - -msgctxt "@label Description for application component" -msgid "Python bindings for libnest2d" -msgstr "Enlaces de Python para libnest2d" - -msgctxt "@label" -msgid "Qt version" -msgstr "Versión Qt" - -#, python-brace-format -msgctxt "@info:status" -msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." -msgstr "El tipo de calidad '{0}' no es compatible con la definición actual de máquina activa '{1}'." - -msgctxt "@info:title" -msgid "Queue Full" -msgstr "Cola llena" - -msgctxt "@label" -msgid "Queued" -msgstr "En cola" +msgctxt "@label" +msgid "Queued" +msgstr "En cola" msgctxt "@info:button, %1 is the application name" msgid "Quit %1" msgstr "Salir de %1" -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Lee GCode de un archivo comprimido." - msgctxt "@button" msgid "Recommended" msgstr "Recomendado" @@ -3665,10 +3314,6 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "Unidad extraíble" -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Complemento de dispositivo de salida de unidad extraíble" - msgctxt "@action:button" msgid "Remove" msgstr "Eliminar" @@ -3791,11 +3436,11 @@ msgstr "Guardar el proyecto de Cura" msgctxt "@option" msgid "Save Cura project and .makerbot print file" -msgstr "" +msgstr "Guardar proyecto Cura y archivo de impresión .makerbot" msgctxt "@option" msgid "Save Cura project and .ufp print file" -msgstr "" +msgstr "Guardar proyecto Cura y archivo de impresión .ufp" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3823,7 +3468,7 @@ msgstr "Guardar nuevo perfil" msgctxt "@action:button" msgid "Save project" -msgstr "" +msgstr "Guardar proyecto" msgctxt "@text" msgid "Save the .umm file on a USB stick." @@ -3833,12 +3478,10 @@ msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "Guardar en unidad extraíble" -#, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "Guardar en unidad extraíble {0}" -#, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Guardado en unidad extraíble {0} como {1}" @@ -3847,7 +3490,6 @@ msgctxt "@info:title" msgid "Saving" msgstr "Guardando" -#, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Guardando en unidad extraíble {0}" @@ -3930,15 +3572,15 @@ msgstr "Enviar informe de errores a UltiMaker" msgctxt "@info:tooltip" msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." -msgstr "" +msgstr "Envíe informes de fallos con el nombre de su cuenta UltiMaker registrada y el nombre del proyecto a UltiMaker Sentry. No se envían datos reales del modelo." msgctxt "@info:tooltip" msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." -msgstr "" +msgstr "Envíe a UltiMaker informes de incidencias sin ningún tipo de información que permita la identificación personal ni datos de modelos." msgctxt "@option:check" msgid "Send engine crash reports" -msgstr "" +msgstr "Enviar informes de fallos del motor" msgctxt "@action:button" msgid "Send report" @@ -3952,10 +3594,6 @@ msgctxt "@info:title" msgid "Sending materials to printer" msgstr "Enviando materiales a la impresora" -msgctxt "name" -msgid "Sentry Logger" -msgstr "Registro de Sentry" - msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Biblioteca de comunicación en serie" @@ -3994,7 +3632,7 @@ msgstr "Ajustes" msgctxt "@action:label" msgid "Settings Loaded from UCP file" -msgstr "" +msgstr "Ajustes cargados desde el archivo UCP" msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" @@ -4066,7 +3704,7 @@ msgstr "¿Debería abrir los archivos del escritorio o las aplicaciones externas msgctxt "@info:tooltip" msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." -msgstr "" +msgstr "¿Deben notificarse automáticamente las incidencias de rebanado a Ultimaker? Tenga en cuenta que no se envían ni almacenan modelos, direcciones IP u otra información de identificación personal, a menos que usted lo autorice explícitamente." msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" @@ -4126,7 +3764,7 @@ msgstr "Mostrar informe de errores detallado" msgctxt "@action:button" msgid "Show settings" -msgstr "" +msgstr "Mostrar ajustes" msgctxt "@option:check" msgid "Show summary dialog when saving project" @@ -4164,10 +3802,6 @@ msgctxt "@label" msgid "Sign in to the UltiMaker platform" msgstr "Inicie sesión en la plataforma UltiMaker" -msgctxt "name" -msgid "Simulation View" -msgstr "Vista de simulación" - msgctxt "@tooltip" msgid "Skin" msgstr "Forro" @@ -4196,10 +3830,6 @@ msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Segmentar automáticamente al cambiar los ajustes." -msgctxt "name" -msgid "Slice info" -msgstr "Info de la segmentación" - msgctxt "@message:title" msgid "Slicing failed" msgstr "Error en el corte" @@ -4214,24 +3844,15 @@ msgstr "Suavizado" msgctxt "@label" msgid "Solid" -msgstr "" - -msgctxt "name" -msgid "Solid View" -msgstr "Vista de sólidos" +msgstr "Sólido" msgctxt "@item:inmenu" msgid "Solid view" msgstr "Vista de sólidos" msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "" -"Algunos ajustes ocultos utilizan valores diferentes de los valores normales calculados.\n" -"\n" +msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." +msgstr "Algunos ajustes ocultos utilizan valores diferentes de los valores normales calculados." "Haga clic para mostrar estos ajustes." msgctxt "@info:status" @@ -4247,13 +3868,8 @@ msgid "Some setting-values defined in %1 were overridden." msgstr "Algunos de los valores de configuración definidos en %1 se han anulado." msgctxt "@tooltip" -msgid "" -"Some setting/override values are different from the values stored in the profile.\n" -"\n" -"Click to open the profile manager." -msgstr "" -"Algunos valores de los ajustes o sobrescrituras son distintos a los valores almacenados en el perfil.\n" -"\n" +msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." +msgstr "Algunos valores de los ajustes o sobrescrituras son distintos a los valores almacenados en el perfil." "Haga clic para abrir el administrador de perfiles." msgctxt "@action:label" @@ -4324,10 +3940,6 @@ msgctxt "@label" msgid "Strength" msgstr "Resistencia" -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Envía información anónima de la segmentación. Se puede desactivar en las preferencias." - msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "El material se ha exportado correctamente a %1" @@ -4336,18 +3948,17 @@ msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "El material se ha importado correctamente en %1" -#, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Perfil {0} importado correctamente." msgctxt "@action:label" msgid "Suggested Material settings" -msgstr "" +msgstr "Ajustes de material sugeridos" msgctxt "@action:label" msgid "Suggested Profile settings" -msgstr "" +msgstr "Ajustes de perfil sugeridos" msgctxt "@action:title" msgid "Summary - Cura Project" @@ -4355,11 +3966,11 @@ msgstr "Resumen: proyecto de Cura" msgctxt "@action:title Don't translate 'Universal Cura Project'" msgid "Summary - Open Universal Cura Project (UCP)" -msgstr "" +msgstr "Resumen: Abrir proyecto Universal Cura (UCP)" msgctxt "@action:title Don't translate 'Universal Cura Project'" msgid "Summary - Universal Cura Project" -msgstr "" +msgstr "Resumen: Proyecto Universal Cura" msgctxt "@label" msgid "Support" @@ -4373,10 +3984,6 @@ msgctxt "@label" msgid "Support Blocker" msgstr "Bloqueador de soporte" -msgctxt "name" -msgid "Support Eraser" -msgstr "Borrador de soporte" - msgctxt "@tooltip" msgid "Support Infill" msgstr "Relleno de soporte" @@ -4543,7 +4150,6 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "El tren extrusor que se utiliza para imprimir el soporte. Se emplea en la extrusión múltiple." -#, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "El archivo {0} ya existe. ¿Está seguro de que desea sobrescribirlo?" @@ -4607,21 +4213,10 @@ msgid "The nozzle inserted in this extruder." msgstr "Tobera insertada en este extrusor." msgctxt "@label" -msgid "" -"The pattern of the infill material of the print:\n" -"\n" -"For quick prints of non functional model choose line, zig zag or lightning infill.\n" -"\n" -"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" -"\n" -"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "" -"Patrón del material de relleno de la impresión:\n" -"\n" -"Para impresiones rpidas de modelos no funcionales, elija lnea, zigzag o relleno ligero.\n" -"\n" -"Para una pieza funcional que no est sujeta a mucha tensin, recomendamos rejilla, tringulo o trihexgono.\n" -"\n" +msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "Patrón del material de relleno de la impresión:" +"Para impresiones rpidas de modelos no funcionales, elija lnea, zigzag o relleno ligero." +"Para una pieza funcional que no est sujeta a mucha tensin, recomendamos rejilla, tringulo o trihexgono." "Para las impresiones 3D funcionales que requieran una alta resistencia en varias direcciones, utilice cbico, subdivisin cbica, cbico bitruncado, octeto o giroide." msgctxt "@info:tooltip" @@ -4742,7 +4337,7 @@ msgstr "Esta configuración no se encuentra disponible porque %1 es un perfil de msgctxt "@text:window" msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" -msgstr "" +msgstr "Este es un archivo de proyecto Cura Universal. ¿Desea abrirlo como proyecto Cura o proyecto Universal Cura o importar los modelos desde él?" msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" @@ -4778,7 +4373,6 @@ msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "Esta impresora aloja un grupo de %1 impresoras." -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Este perfil {0} contiene datos incorrectos, no se han podido importar." @@ -4792,13 +4386,8 @@ msgid "This project contains materials or plugins that are currently not install msgstr "Este proyecto contiene materiales o complementos que actualmente no están instalados en Cura.
                                      Instale los paquetes que faltan y vuelva a abrir el proyecto." msgctxt "@label" -msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." -msgstr "" -"Este ajuste tiene un valor distinto del perfil.\n" -"\n" +msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." +msgstr "Este ajuste tiene un valor distinto del perfil." "Haga clic para restaurar el valor del perfil." msgctxt "@item:tooltip" @@ -4816,13 +4405,8 @@ msgid "This setting is always shared between all extruders. Changing it here wil msgstr "Este ajuste siempre se comparte entre extrusores. Si lo modifica, modificará el valor de todos los extrusores." msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "" -"Este ajuste se calcula normalmente pero actualmente tiene un valor absoluto establecido.\n" -"\n" +msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." +msgstr "Este ajuste se calcula normalmente pero actualmente tiene un valor absoluto establecido." "Haga clic para restaurar el valor calculado." msgctxt "@label" @@ -4835,11 +4419,11 @@ msgstr "Este valor se resuelve a partir de valores en conflicto específicos del msgctxt "@tooltip Don't translate 'Universal Cura Project'" msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." -msgstr "" +msgstr "Es posible que este ajuste no funcione correctamente al exportar a un proyecto Universal Cura, se ruega a los usuarios que lo añadan bajo su propia responsabilidad." msgctxt "@tooltip Don't translate 'Universal Cura Project'" msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." -msgstr "" +msgstr "Es posible que este ajuste no funcione correctamente al exportar a un proyecto Universal Cura. Se ruega a los usuarios que lo añadan bajo su propia responsabilidad." msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" @@ -4857,7 +4441,6 @@ msgctxt "@text" msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." msgstr "Para sincronizar automáticamente los perfiles de material con todas sus impresoras conectadas a Digital Factory debe iniciar sesión en Cura." -#, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "Para establecer una conexión, visite {website_link}" @@ -4870,7 +4453,6 @@ msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." msgstr "Para imprimir directamente a través de la red, asegúrese de que la impresora está conectada a la red mediante un cable de red o conéctela a la red wifi. Si no conecta Cura con la impresora, también puede utilizar una unidad USB para transferir archivos GCode a la impresora." -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "Para eliminar {printer_name} permanentemente, visite {digital_factory_link}" @@ -4919,10 +4501,6 @@ msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "Se ha intentado restaurar una copia de seguridad de Cura sin tener los datos o metadatos adecuados." -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Lector Trimesh" - msgctxt "@button" msgid "Troubleshooting" msgstr "Solución de problemas" @@ -4943,22 +4521,10 @@ msgctxt "@label" msgid "Type" msgstr "Tipo" -msgctxt "name" -msgid "UFP Reader" -msgstr "Lector de UFP" - -msgctxt "name" -msgid "UFP Writer" -msgstr "Escritor de UFP" - msgctxt "@item:inmenu" msgid "USB printing" msgstr "Impresión USB" -msgctxt "name" -msgid "USB printing" -msgstr "Impresión USB" - msgctxt "@button" msgid "UltiMaker Account" msgstr "Cuenta de UltiMaker" @@ -4975,10 +4541,6 @@ msgctxt "@item:inlistbox" msgid "UltiMaker Format Package" msgstr "Paquete de formato UltiMaker" -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "Conexión en red de UltiMaker" - msgctxt "@info" msgid "UltiMaker Verified Package" msgstr "Paquete verificado por UltiMaker" @@ -4987,10 +4549,6 @@ msgctxt "@info" msgid "UltiMaker Verified Plug-in" msgstr "Complemento verificado por UltiMaker" -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "Acciones de la máquina UltiMaker" - msgctxt "@button" msgid "UltiMaker printer" msgstr "Impresoras UltiMaker" @@ -5003,10 +4561,6 @@ msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - msgctxt "@info:status" msgid "Unable to add the profile." msgstr "No se puede añadir el perfil." @@ -5015,18 +4569,13 @@ msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "No se puede encontrar una ubicación dentro del volumen de impresión para todos los objetos" -#, python-brace-format msgctxt "@info:plugin_failed" msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" msgstr "No se puede encontrar el ejecutable del servidor EnginePlugin local para: {self._plugin_id}" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Unable to kill running EnginePlugin: {self._plugin_id}\n" -"Access is denied." -msgstr "" -"No se puede detener el EnginePlugin en ejecución: {self._plugin_id}\n" +msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." +msgstr "No se puede detener el EnginePlugin en ejecución: {self._plugin_id}" "El acceso se ha denegado." msgctxt "@info" @@ -5049,12 +4598,10 @@ msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "No se puede segmentar porque la torre auxiliar o la posición o posiciones de preparación no son válidas." -#, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "No se puede segmentar porque hay objetos asociados al extrusor %s que está deshabilitado." -#, python-brace-format msgctxt "@info:status" msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" msgstr "Los ajustes de algunos modelos no permiten la segmentación. Los siguientes ajustes contienen errores en uno o más modelos: {error_labels}." @@ -5063,7 +4610,6 @@ msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "No se puede segmentar con el material actual, ya que es incompatible con el dispositivo o la configuración seleccionados." -#, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "Los ajustes actuales no permiten la segmentación. Los siguientes ajustes contienen errores: {0}" @@ -5072,10 +4618,9 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "No se puede iniciar un nuevo proceso de inicio de sesión. Compruebe si todavía está activo otro intento de inicio de sesión." -#, python-brace-format msgctxt "@info:error" msgid "Unable to write to file: {0}" -msgstr "" +msgstr "No se puede escribir en el archivo: {0}" msgctxt "@label:status" msgid "Unavailable" @@ -5099,11 +4644,11 @@ msgstr "Unidad" msgctxt "@item:inlistbox" msgid "Universal Cura Project" -msgstr "" +msgstr "Proyecto Universal Cura" msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." -msgstr "" +msgstr "Los archivos del proyecto Universal Cura pueden imprimirse en diferentes impresoras 3D conservando los datos de posición y los ajustes seleccionados. Al exportarlos, se incluirán todos los modelos presentes en la placa de impresión junto con su posición, orientación y escala actuales. También puede seleccionar qué ajustes por extrusor o por modelo deben incluirse para garantizar una impresión adecuada." msgctxt "@label Description for development tool" msgid "Universal build system configuration" @@ -5125,7 +4670,6 @@ msgctxt "@label:property" msgid "Unknown Package" msgstr "Paquete desconocido" -#, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Código de error desconocido al cargar el trabajo de impresión: {0}" @@ -5190,265 +4734,49 @@ msgctxt "@button" msgid "Updating..." msgstr "Actualizando..." -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Actualiza las configuraciones de Cura 2.1 a Cura 2.2." +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Cargar firmware personalizado" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Actualiza la configuración de Cura 2.2 a Cura 2.4." +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "Cargando el trabajo de impresión a la impresora." -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Actualiza la configuración de Cura 2.5 a Cura 2.6." +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "Cargando su copia de seguridad..." -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Actualiza la configuración de Cura 2.6 a Cura 2.7." +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "Utilizar una sola instancia de Cura" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Actualiza la configuración de Cura 2.7 a Cura 3.0." +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "Utilice pegamento con esta combinación de materiales para lograr una mejor adhesión." -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Actualiza la configuración de Cura 3.0 a Cura 3.1." +msgctxt "@label" +msgid "User Agreement" +msgstr "Acuerdo de usuario" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Actualiza la configuración de Cura 3.2 a Cura 3.3." +msgctxt "@label Description for application dependency" +msgid "Utility functions, including an image loader" +msgstr "Funciones de utilidades, incluido un cargador de imágenes" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Actualiza la configuración de Cura 3.3 a Cura 3.4." +msgctxt "@label Description for application dependency" +msgid "Utility library, including Voronoi generation" +msgstr "Biblioteca de utilidades, incluida la generación de Voronoi" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Actualiza las configuraciones de Cura 3.4 a Cura 3.5." +msgctxt "@title:column" +msgid "Value" +msgstr "Valor" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Actualiza la configuración de Cura 3.5 a Cura 4.0." +msgctxt "@button" +msgid "View printers in Digital Factory" +msgstr "Ver impresoras en Digital Factory" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Actualiza la configuración de Cura 4.0 a Cura 4.1." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Actualiza la configuración de Cura 4.1 a Cura 4.2." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Actualiza la configuración de Cura 4.11 a Cura 4.12." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Actualiza las configuraciones de Cura 4.13 a Cura 5.0." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Actualiza la configuración de Cura 4.2 a Cura 4.3." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Actualiza la configuración de Cura 4.3 a Cura 4.4." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Actualiza la configuración de Cura 4.4 a Cura 4.5." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Actualiza la configuración de Cura 4.5 a Cura 4.6." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Actualiza la configuración de Cura 4.6.0 a Cura 4.6.2." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Actualiza la configuración de Cura 4.6.2 a Cura 4.7." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Actualiza la configuración de Cura 4.7 a Cura 4.8." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Actualiza la configuración de Cura 4.8 a Cura 4.9." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Actualiza la configuración de Cura 4.9 a Cura 4.10." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Actualiza la configuración de Cura 5.2 a Cura 5.3." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Actualiza las configuraciones de Cura 5.3 a Cura 5.4." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Actualiza las configuraciones de Cura 5.4 a Cura 5.5." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." -msgstr "" - -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Cargar firmware personalizado" - -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Cargando el trabajo de impresión a la impresora." - -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Cargando su copia de seguridad..." - -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Utilizar una sola instancia de Cura" - -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "Utilice pegamento con esta combinación de materiales para lograr una mejor adhesión." - -msgctxt "@label" -msgid "User Agreement" -msgstr "Acuerdo de usuario" - -msgctxt "@label Description for application dependency" -msgid "Utility functions, including an image loader" -msgstr "Funciones de utilidades, incluido un cargador de imágenes" - -msgctxt "@label Description for application dependency" -msgid "Utility library, including Voronoi generation" -msgstr "Biblioteca de utilidades, incluida la generación de Voronoi" - -msgctxt "@title:column" -msgid "Value" -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Actualización de la versión 2.1 a la 2.2" - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Actualización de la versión 2.2 a la 2.4" - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Actualización de la versión 2.5 a la 2.6" - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Actualización de la versión 2.6 a la 2.7" - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Actualización de la versión 2.7 a la 3.0" - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Actualización de la versión 3.0 a la 3.1" - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Actualización de la versión 3.2 a la 3.3" - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Actualización de la versión 3.3 a la 3.4" - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Actualización de la versión 3.4 a la 3.5" - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Actualización de la versión 3.5 a la 4.0" - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Actualización de la versión 4.0 a la 4.1" - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Actualización de la versión 4.1 a la 4.2" - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Actualización de la versión 4.11 a 4.12" - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Actualización de la versión 4.3 a la 5.0" - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Actualización de la versión 4.2 a la 4.3" - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Actualización de la versión 4.3 a la 4.4" - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Actualización de la versión 4.4 a la 4.5" - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Actualización de la versión 4.5 a la 4.6" - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Actualización de la versión 4.6.0 a la 4.6.2" - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Actualización de la versión 4.6.2 a la 4.7" - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Actualización de la versión 4.7 a la 4.8" - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Actualización de la versión 4.8 a la 4.9" - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Actualización de la versión 4.9 a la 4.10" - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "Actualización de la versión 5.2 a la 5.3" - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "Actualización de versión 5.3 a 5.4" - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "Actualización de versión 5.4 a 5.5" - -msgctxt "name" -msgid "Version Upgrade 5.6 to 5.7" -msgstr "" - -msgctxt "@button" -msgid "View printers in Digital Factory" -msgstr "Ver impresoras en Digital Factory" - -msgctxt "@label" -msgid "View type" -msgstr "Ver tipo" +msgctxt "@label" +msgid "View type" +msgstr "Ver tipo" msgctxt "@label link to technical assistance" msgid "View user manuals online" @@ -5494,7 +4822,6 @@ msgctxt "@info:title" msgid "Warning" msgstr "Advertencia" -#, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Advertencia: el perfil no es visible porque su tipo de calidad '{0}' no está disponible para la configuración actual. Cambie a una combinación de material/tobera que pueda utilizar este tipo de calidad." @@ -5521,7 +4848,7 @@ msgstr "¿Qué impresora le gustaría configurar?" msgctxt "@info:tooltip" msgid "What type of camera navigation should be used?" -msgstr "" +msgstr "¿Qué tipo de cámara de navegación debe utilizarse?" msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" @@ -5559,14 +4886,6 @@ msgctxt "@action:label" msgid "Width (mm)" msgstr "Anchura (mm)" -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Escribe GCode en un archivo comprimido." - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Escribe GCode en un archivo." - msgctxt "@label" msgid "X (Width)" msgstr "X (anchura)" @@ -5579,10 +4898,6 @@ msgctxt "@label" msgid "X min" msgstr "X mín" -msgctxt "name" -msgid "X-Ray View" -msgstr "Vista de rayos X" - msgctxt "@item:inlistbox" msgid "X-Ray view" msgstr "Vista de rayos X" @@ -5595,10 +4910,6 @@ msgctxt "@item:inlistbox" msgid "X3D File" msgstr "Archivo X3D" -msgctxt "name" -msgid "X3D Reader" -msgstr "Lector de X3D" - msgctxt "@label" msgid "Y (Depth)" msgstr "Y (profundidad)" @@ -5616,31 +4927,19 @@ msgid "Yes" msgstr "Sí" msgctxt "@label" -msgid "" -"You are about to remove all printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" +msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" msgstr "Está a punto de eliminar todas las impresoras de Cura. Esta acción no se puede deshacer.¿Seguro que desea continuar?" -#, python-brace-format msgctxt "@label" -msgid "" -"You are about to remove {0} printer from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgid_plural "" -"You are about to remove {0} printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr[0] "" -"Está a punto de eliminar {0} impresora de Cura. Esta acción no se puede deshacer.\n" -"¿Seguro que desea continuar?" -msgstr[1] "" -"Está a punto de eliminar {0} impresoras de Cura. Esta acción no se puede deshacer.\n" -"¿Seguro que desea continuar?" +msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgstr[0] "Está a punto de eliminar {0} impresora de Cura. Esta acción no se puede deshacer.\n¿Seguro que desea continuar?" +msgstr[1] "Está a punto de eliminar {0} impresoras de Cura. Esta acción no se puede deshacer.\n¿Seguro que desea continuar?" msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "Está intentando conectarse a una impresora que no está ejecutando Ultimaker Connect. Actualice la impresora al firmware más reciente." -#, python-brace-format msgctxt "@info:status" msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." msgstr "Está intentando conectarse a {0} pero ese no es el host de un grupo. Puede visitar la página web para configurarlo como host de grupo." @@ -5651,9 +4950,8 @@ msgstr "Actualmente no posee ninguna copia de seguridad. Utilice el botón de Re msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "" -"Ha personalizado algunos ajustes del perfil.\n" -"¿Le gustaría mantener estos ajustes cambiados después de cambiar de perfil?\n" +msgstr "Ha personalizado algunos ajustes del perfil." +"¿Le gustaría mantener estos ajustes cambiados después de cambiar de perfil?" "También puede descartar los cambios para cargar los valores predeterminados de'%1'." msgctxt "@label" @@ -5684,13 +4982,9 @@ msgctxt "@info" msgid "Your new printer will automatically appear in Cura" msgstr "Su nueva impresora aparecerá automáticamente en Cura" -#, python-brace-format msgctxt "@info:status" -msgid "" -"Your printer {printer_name} could be connected via cloud.\n" -" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "" -"Su impresora {printer_name} podría estar conectada a través de la nube.\n" +msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "Su impresora {printer_name} podría estar conectada a través de la nube." " Administre su cola de impresión y supervise las impresiones desde cualquier lugar conectando su impresora a Digital Factory" msgctxt "@label" @@ -5739,7 +5033,7 @@ msgstr "mm" msgctxt "@label" msgid "s" -msgstr "" +msgstr "s" msgctxt "@info:status" msgid "today" @@ -5753,7 +5047,6 @@ msgctxt "@label" msgid "version: %1" msgstr "versión: %1" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "{printer_name} se eliminará hasta la próxima sincronización de la cuenta." @@ -5762,21 +5055,553 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Error al descargar los complementos {}" -#~ msgctxt "@label" -#~ msgid "Default" -#~ msgstr "Default" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Gestiona las conexiones de red con las impresoras en red UltiMaker." + +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "Conexión en red de UltiMaker" + +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Proporciona asistencia para la importación de perfiles de archivos GCode." -#~ msgid "Provides support for exporting Cura profiles." -#~ msgstr "Ofrece asistencia para exportar perfiles de Cura." +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "Lector de perfiles GCode" -#~ msgctxt "description" -#~ msgid "Provides support for writing 3MF files." -#~ msgstr "Proporciona asistencia para escribir archivos 3MF." +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Proporciona una vista de malla sólida normal." -#~ msgctxt "@option" -#~ msgid "Save Cura project and print file" -#~ msgstr "Guardar el proyecto de Cura e imprimir archivo" +msgctxt "name" +msgid "Solid View" +msgstr "Vista de sólidos" -#~ msgctxt "@message" -#~ msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -#~ msgstr "Se ha producido un error inesperado al realizar el corte o slicing. Le rogamos que informe sobre este error en nuestro rastreador de problemas." +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "Complemento de CuraEngine para suavizar gradualmente el flujo con el fin de limitar los saltos de flujo elevados" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "Flujo gradual de CuraEngine" + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Proporciona asistencia para leer archivos 3MF." + +msgctxt "name" +msgid "3MF Reader" +msgstr "Lector de 3MF" + +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Acepta GCode y lo envía a una impresora. El complemento también puede actualizar el firmware." + +msgctxt "name" +msgid "USB printing" +msgstr "Impresión USB" + +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Busca actualizaciones de firmware." + +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Buscador de actualizaciones de firmware" + +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Gestiona las extensiones de la aplicación y permite navegar por las extensiones desde el sitio web de UltiMaker." + +msgctxt "name" +msgid "Marketplace" +msgstr "Marketplace" + +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Realice una copia de seguridad de su configuración y restáurela." + +msgctxt "name" +msgid "Cura Backups" +msgstr "Copias de seguridad de Cura" + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Permite cambiar los ajustes de la máquina (como el volumen de impresión, el tamaño de la tobera, etc.)." + +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Acción Ajustes de la máquina" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Actualiza la configuración de Cura 2.5 a Cura 2.6." + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Actualización de la versión 2.5 a la 2.6" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Actualiza la configuración de Cura 4.7 a Cura 4.8." + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Actualización de la versión 4.7 a la 4.8" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Actualiza la configuración de Cura 4.4 a Cura 4.5." + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Actualización de la versión 4.4 a la 4.5" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Actualiza la configuración de Cura 3.0 a Cura 3.1." + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Actualización de la versión 3.0 a la 3.1" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Actualiza la configuración de Cura 4.11 a Cura 4.12." + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Actualización de la versión 4.11 a 4.12" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Actualiza la configuración de Cura 4.1 a Cura 4.2." + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Actualización de la versión 4.1 a la 4.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Actualiza la configuración de Cura 2.6 a Cura 2.7." + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Actualización de la versión 2.6 a la 2.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Actualiza la configuración de Cura 4.6.0 a Cura 4.6.2." + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Actualización de la versión 4.6.0 a la 4.6.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Actualiza la configuración de Cura 3.3 a Cura 3.4." + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Actualización de la versión 3.3 a la 3.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Actualiza la configuración de Cura 4.8 a Cura 4.9." + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Actualización de la versión 4.8 a la 4.9" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Actualiza la configuración de Cura 4.5 a Cura 4.6." + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Actualización de la versión 4.5 a la 4.6" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Actualiza la configuración de Cura 4.2 a Cura 4.3." + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Actualización de la versión 4.2 a la 4.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Actualiza la configuración de Cura 3.2 a Cura 3.3." + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Actualización de la versión 3.2 a la 3.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Actualiza la configuración de Cura 4.3 a Cura 4.4." + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Actualización de la versión 4.3 a la 4.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "Actualiza las configuraciones de Cura 5.6 a Cura 5.7." + +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "Actualización de la versión 5.6 a la 5.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Actualiza las configuraciones de Cura 2.1 a Cura 2.2." + +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Actualización de la versión 2.1 a la 2.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Actualiza las configuraciones de Cura 5.3 a Cura 5.4." + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "Actualización de versión 5.3 a 5.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Actualiza la configuración de Cura 4.9 a Cura 4.10." + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Actualización de la versión 4.9 a la 4.10" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Actualiza la configuración de Cura 2.7 a Cura 3.0." + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Actualización de la versión 2.7 a la 3.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Actualiza la configuración de Cura 3.5 a Cura 4.0." + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Actualización de la versión 3.5 a la 4.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Actualiza la configuración de Cura 5.2 a Cura 5.3." + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Actualización de la versión 5.2 a la 5.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Actualiza la configuración de Cura 4.0 a Cura 4.1." + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Actualización de la versión 4.0 a la 4.1" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Actualiza las configuraciones de Cura 4.13 a Cura 5.0." + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Actualización de la versión 4.3 a la 5.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Actualiza las configuraciones de Cura 3.4 a Cura 3.5." + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Actualización de la versión 3.4 a la 3.5" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Actualiza la configuración de Cura 2.2 a Cura 2.4." + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Actualización de la versión 2.2 a la 2.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Actualiza la configuración de Cura 4.6.2 a Cura 4.7." + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Actualización de la versión 4.6.2 a la 4.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Actualiza las configuraciones de Cura 5.4 a Cura 5.5." + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "Actualización de versión 5.4 a 5.5" + +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Permite cargar y visualizar archivos GCode." + +msgctxt "name" +msgid "G-code Reader" +msgstr "Lector de GCode" + +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Envía información anónima de la segmentación. Se puede desactivar en las preferencias." + +msgctxt "name" +msgid "Slice info" +msgstr "Info de la segmentación" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Proporciona asistencia para la conexión directa y la escritura de la unidad extraíble." + +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Complemento de dispositivo de salida de unidad extraíble" + +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Crea una malla de borrado que impide la impresión de soportes en determinados lugares" + +msgctxt "name" +msgid "Support Eraser" +msgstr "Borrador de soporte" + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Comprueba las configuraciones de los modelos y la impresión en busca de posibles problemas de impresión y da consejos." + +msgctxt "name" +msgid "Model Checker" +msgstr "Comprobador de modelos" + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Proporciona una fase de preparación en Cura." + +msgctxt "name" +msgid "Prepare Stage" +msgstr "Fase de preparación" + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Proporciona la vista previa de los datos de las capas cortadas." + +msgctxt "name" +msgid "Simulation View" +msgstr "Vista de simulación" + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Proporciona asistencia para leer archivos AMF." + +msgctxt "name" +msgid "AMF Reader" +msgstr "Lector de AMF" + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Proporciona la vista de rayos X." + +msgctxt "name" +msgid "X-Ray View" +msgstr "Vista de rayos X" + +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Proporciona opciones a la máquina para actualizar el firmware." + +msgctxt "name" +msgid "Firmware Updater" +msgstr "Actualizador de firmware" + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Proporciona asistencia para la importación de perfiles de versiones anteriores de Cura." + +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Lector de perfiles antiguos de Cura" + +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Extensión que permite el posprocesamiento de las secuencias de comandos creadas por los usuarios" + +msgctxt "name" +msgid "Post Processing" +msgstr "Posprocesamiento" + +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Registra determinados eventos para que puedan utilizarse en el informe del accidente" + +msgctxt "name" +msgid "Sentry Logger" +msgstr "Registro de Sentry" + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "Proporciona soporte para escribir paquetes de formato MakerBot." + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "Escritor de archivos de impresión Makerbot" + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Proporciona asistencia para la importación de perfiles de Cura." + +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Lector de perfiles de Cura" + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Proporciona soporte para la lectura de paquetes de formato Ultimaker." + +msgctxt "name" +msgid "UFP Reader" +msgstr "Lector de UFP" + +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Habilita la capacidad de generar geometría imprimible a partir de archivos de imagen 2D." + +msgctxt "name" +msgid "Image Reader" +msgstr "Lector de imágenes" + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Proporciona el vínculo para el backend de segmentación de CuraEngine." + +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Backend de CuraEngine" + +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Escribe GCode en un archivo comprimido." + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Escritor de GCode comprimido" + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Proporciona las acciones de la máquina de las máquinas Ultimaker (como un asistente para la nivelación de la plataforma, la selección de actualizaciones, etc.)." + +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Acciones de la máquina UltiMaker" + +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Lee GCode de un archivo comprimido." + +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Lector de GCode comprimido" + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Proporciona una fase de vista previa en Cura." + +msgctxt "name" +msgid "Preview Stage" +msgstr "Fase de vista previa" + +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Se conecta a la biblioteca digital, por lo que Cura puede abrir y guardar archivos en ella." + +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Proporciona asistencia para exportar perfiles de Cura." + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Escritor de perfiles de Cura" + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Proporciona asistencia para leer archivos X3D." + +msgctxt "name" +msgid "X3D Reader" +msgstr "Lector de X3D" + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Proporciona asistencia para leer archivos 3D." + +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Lector Trimesh" + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Proporciona una fase de supervisión en Cura." + +msgctxt "name" +msgid "Monitor Stage" +msgstr "Fase de supervisión" + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Proporciona los ajustes por modelo." + +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Herramienta de ajustes por modelo" + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Permite leer y escribir perfiles de material basados en XML." + +msgctxt "name" +msgid "Material Profiles" +msgstr "Perfiles de material" + +msgctxt "description" +msgid "Provides support for writing 3MF and UCP files." +msgstr "Permite escribir archivos 3MF y UCP." + +msgctxt "name" +msgid "3MF Writer" +msgstr "Escritor de 3MF" + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Permite la escritura de paquetes de formato Ultimaker." + +msgctxt "name" +msgid "UFP Writer" +msgstr "Escritor de UFP" + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Escribe GCode en un archivo." + +msgctxt "name" +msgid "G-code Writer" +msgstr "Escritor de GCode" diff --git a/resources/i18n/es_ES/fdmextruder.def.json.po b/resources/i18n/es_ES/fdmextruder.def.json.po index 0631875e593..5e7b73ffb7e 100644 --- a/resources/i18n/es_ES/fdmextruder.def.json.po +++ b/resources/i18n/es_ES/fdmextruder.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,186 +12,114 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Adherencia" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Ajusta el diámetro del filamento utilizado. Este valor debe coincidir con el diámetro del filamento utilizado." - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Adherencia de la placa de impresión" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diámetro" - -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "Finalizar GCode para ejecutarlo al cambiar desde este extrusor." - msgctxt "extruder_nr label" msgid "Extruder" msgstr "Extrusor" +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir. Se emplea en la extrusión múltiple." + +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Ventilador de refrigeración de impresión del extrusor" + +msgctxt "machine_extruder_cooling_fan_number description" +msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." +msgstr "Número del ventilador de refrigeración de impresión asociado al extrusor. Modifique el valor predeterminado 0 solo cuando disponga de un ventilador de refrigeración de impresión diferente para cada extrusor." + msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "GCode final del extrusor" +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "Finalizar GCode para ejecutarlo al cambiar desde este extrusor." + msgctxt "machine_extruder_end_code_duration label" msgid "Extruder End G-Code Duration" -msgstr "" +msgstr "Duración del código G de fin del extrusor" + +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "El tiempo que tarda en ejecutarse el código G final, cuando se sale de este extrusor." msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Posición final absoluta del extrusor" +msgctxt "machine_extruder_end_pos_abs description" +msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." +msgstr "La posición final del extrusor se considera absoluta, en lugar de relativa a la última ubicación conocida del cabezal." + msgctxt "machine_extruder_end_pos_x label" msgid "Extruder End Position X" msgstr "Posición de fin del extrusor sobre el eje X" +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "Coordenada X de la posición de fin cuando se apaga el extrusor." + msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Posición de fin del extrusor sobre el eje Y" -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Posición de preparación del extrusor sobre el eje X" - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Posición de preparación del extrusor sobre el eje Y" - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Posición de preparación del extrusor sobre el eje Z" - -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Ventilador de refrigeración de impresión del extrusor" +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "Coordenada Y de la posición de fin cuando se apaga el extrusor." msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "GCode inicial del extrusor" +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "Iniciar GCode para ejecutarlo al cambiar a este extrusor." + msgctxt "machine_extruder_start_code_duration label" msgid "Extruder Start G-Code Duration" -msgstr "" +msgstr "Duración del código G de inicio del extrusor" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "El tiempo que tardará en ejecutarse el código G de inicio, al cambiar a este extrusor." msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Posición de inicio absoluta del extrusor" +msgctxt "machine_extruder_start_pos_abs description" +msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." +msgstr "El extrusor se coloca en la posición de inicio absoluta según la última ubicación conocida del cabezal." + msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "Posición de inicio del extrusor sobre el eje X" +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "Coordenada X de la posición de inicio cuando se enciende el extrusor." + msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "Posición de inicio del extrusor sobre el eje Y" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Máquina" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Ajustes específicos de la máquina" - -msgctxt "machine_extruder_end_pos_abs description" -msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." -msgstr "La posición final del extrusor se considera absoluta, en lugar de relativa a la última ubicación conocida del cabezal." - -msgctxt "machine_extruder_start_pos_abs description" -msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." -msgstr "El extrusor se coloca en la posición de inicio absoluta según la última ubicación conocida del cabezal." - -msgctxt "material description" -msgid "Material" -msgstr "Material" - -msgctxt "material label" -msgid "Material" -msgstr "Material" - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diámetro de la tobera" - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Id. de la tobera" +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "Coordenada Y de la posición de inicio cuando se enciende el extrusor." msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "Desplazamiento de la tobera sobre el eje X" -msgctxt "machine_nozzle_offset_y label" -msgid "Nozzle Y Offset" -msgstr "Desplazamiento de la tobera sobre el eje Y" - -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "Iniciar GCode para ejecutarlo al cambiar a este extrusor." - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Coordenada X de la posición en la que la tobera se coloca al inicio de la impresión." - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Coordenada Y de la posición en la que la tobera se coloca al inicio de la impresión." - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Coordenada Z de la posición en la que la tobera queda preparada al inicio de la impresión." - -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir. Se emplea en la extrusión múltiple." - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Diámetro interior de la tobera. Cambie este ajuste cuando utilice un tamaño de tobera no estándar." - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "Id. de la tobera de un tren extrusor, como \"AA 0.4\" y \"BB 0.8\"." - -msgctxt "machine_extruder_cooling_fan_number description" -msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." -msgstr "Número del ventilador de refrigeración de impresión asociado al extrusor. Modifique el valor predeterminado 0 solo cuando disponga de un ventilador de refrigeración de impresión diferente para cada extrusor." - -msgctxt "machine_extruder_end_code_duration description" -msgid "The time it takes to execute the end g-code, when switching away from this extruder." -msgstr "" - -msgctxt "machine_extruder_start_code_duration description" -msgid "The time it'll take to execute the start g-code, when switching to this extruder." -msgstr "" - -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "Coordenada X de la posición de fin cuando se apaga el extrusor." - msgctxt "machine_nozzle_offset_x description" msgid "The x-coordinate of the offset of the nozzle." msgstr "Coordenada X del desplazamiento de la tobera." -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "Coordenada X de la posición de inicio cuando se enciende el extrusor." - -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "Coordenada Y de la posición de fin cuando se apaga el extrusor." +msgctxt "machine_nozzle_offset_y label" +msgid "Nozzle Y Offset" +msgstr "Desplazamiento de la tobera sobre el eje Y" msgctxt "machine_nozzle_offset_y description" msgid "The y-coordinate of the offset of the nozzle." msgstr "Coordenada Y del desplazamiento de la tobera." - -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "Coordenada Y de la posición de inicio cuando se enciende el extrusor." diff --git a/resources/i18n/es_ES/fdmprinter.def.json.po b/resources/i18n/es_ES/fdmprinter.def.json.po index 960d5d45244..6ac633ab415 100644 --- a/resources/i18n/es_ES/fdmprinter.def.json.po +++ b/resources/i18n/es_ES/fdmprinter.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-12 15:10+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,5772 +12,5682 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "prime_tower_mode description" -msgid "How to generate the prime tower:
                                      • Normal: create a bucket in which secondary materials are primed
                                      • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
                                      " -msgstr "" - -msgctxt "brim_inside_margin description" -msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." -msgstr "" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Máquina" -msgctxt "ironing_inset description" -msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." -msgstr "Distancia que debe guardarse desde el borde del modelo. Si se alisa hasta el borde de la malla, puede quedar un borde irregular." +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Ajustes específicos de la máquina" -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "Un factor que indica cuánto se comprime el filamento entre el alimentador y la cámara de la boquilla. Se utiliza para determinar cuán lejos debe avanzar el material para cambiar el filamento." +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Tipo de máquina" -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Una lista de los valores enteros de las direcciones de línea si las capas de la superficie superior del forro utilizan líneas o el patrón en zigzag. Los elementos de esta lista se utilizan de forma secuencial a medida que las capas se utilizan y, cuando se alcanza el final, la lista vuelve a comenzar desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía que utiliza los ángulos predeterminados típicos (45 y 135 grados)." +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "Nombre del modelo de la impresora 3D." -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Una lista de los valores enteros de las direcciones de línea si las capas superiores e inferiores utilizan líneas o el patrón en zigzag. Los elementos de esta lista se utilizan de forma secuencial a medida que las capas se utilizan y, cuando se alcanza el final, la lista vuelve a comenzar desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía que utiliza los ángulos predeterminados típicos (45 y 135 grados)." +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Mostrar versiones de la máquina" -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "Una lista de los valores enteros de las direcciones de línea que se van a utilizar. Los elementos de la lista se usan secuencialmente a medida que avanzan las capas y cuando se alcanza el final de la lista, comienza de nuevo desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía, lo que significa que se usa el ángulo predeterminado de 0 grados." +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "Elija si desea mostrar las diferentes versiones de esta máquina, las cuales están descritas en archivos .json independientes." -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Una lista de los valores enteros de las direcciones de línea que se van a utilizar. Los elementos de la lista se usan secuencialmente a medida que avanzan las capas y cuando se alcanza el final de la lista, comienza de nuevo desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía, lo que significa que se utilizan los ángulos estándar (que varían entre 45 y 135 grados si las interfaces son bastante gruesas o de 90 grados en otro caso)." +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "Iniciar GCode" -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Una lista de los valores enteros de las direcciones de línea que se van a utilizar. Los elementos de la lista se usan secuencialmente a medida que avanzan las capas y cuando se alcanza el final de la lista, comienza de nuevo desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía, lo que significa que se utilizan los ángulos estándar (que varían entre 45 y 135 grados si las interfaces son bastante gruesas o de 90 grados en otro caso)." +msgctxt "machine_start_gcode description" +msgid "G-code commands to be executed at the very start - separated by \n." +msgstr "Los comandos de GCode que se ejecutarán justo al inicio separados por - " +"." -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Una lista de los valores enteros de las direcciones de línea que se van a utilizar. Los elementos de la lista se usan secuencialmente a medida que avanzan las capas y cuando se alcanza el final de la lista, comienza de nuevo desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía, lo que significa que se utilizan los ángulos estándar (que varían entre 45 y 135 grados si las interfaces son bastante gruesas o de 90 grados en otro caso)." +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "Finalizar GCode" -msgctxt "infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." -msgstr "Una lista de los valores enteros de las direcciones de línea. Los elementos de esta lista se utilizan de forma secuencial a medida que las capas se utilizan y, cuando se alcanza el final, la lista vuelve a comenzar desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía que utiliza los ángulos predeterminados típicos (45 y 135 grados para las líneas y los patrones en zigzag y 45 grados para el resto de patrones)." +msgctxt "machine_end_gcode description" +msgid "G-code commands to be executed at the very end - separated by \n." +msgstr "Los comandos de GCode que se ejecutarán justo al final separados por -" +"." -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "Lista de polígonos con áreas en las que la tobera no tiene permitido entrar." +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "GUID del material" -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "Lista de polígonos con áreas que el cabezal de impresión no tiene permitido introducir." +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "GUID del material. Este valor se define de forma automática." -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "Una recomendación de la distancia a la que pueden situarse las ramas de los puntos que sostienen. Las ramas pueden infringir este valor para llegar a su destino (placa de impresión o una pieza plana del modelo). Reducir este valor hará que el soporte sea más resistente, pero aumentará la cantidad de ramas (y, con ello, el uso de material y el tiempo de impresión)" +msgctxt "material_type label" +msgid "Material Type" +msgstr "Tipo de material" -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Posición de preparación absoluta del extrusor" +msgctxt "material_type description" +msgid "The type of material used." +msgstr "El tipo de material utilizado." -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Variación máxima de las capas de adaptación" +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "Marca del material" -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Tamaño de la topografía de las capas de adaptación" +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "La marca del material utilizado." -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Tamaño de pasos de variación de las capas de adaptación" +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diámetro" -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "Las capas de adaptación calculan las alturas de las capas dependiendo de la forma del modelo." +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Ajusta el diámetro del filamento utilizado. Este valor debe coincidir con el diámetro del filamento utilizado." -msgctxt "infill_wall_line_count description" -msgid "" -"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" -"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "" -"Agregar paredes adicionales alrededor del área de relleno. Estas paredes pueden hacer que las líneas del forro superior/inferior se aflojen menos, lo que significa que necesitaría menos capas de forro superior/inferior para obtener la misma calidad utilizando algo más de material.\n" -"Puede utilizar esta función junto a la de Conectar polígonos de relleno para conectar todo el relleno en una única trayectoria de extrusión sin necesidad de desplazamientos ni retracciones si se configura correctamente." +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Esperar a que la placa de impresión se caliente" -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Adherencia" +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "Elija si desea escribir un comando para esperar a que la temperatura de la placa de impresión se alcance al inicio." -msgctxt "material_adhesion_tendency label" -msgid "Adhesion Tendency" -msgstr "Tendencia de adherencia" +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Esperar a la que la tobera se caliente" -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Ajuste la cantidad de superposición entre las paredes y (los extremos de) las líneas centrales del forro, como un porcentaje de los anchos de las líneas del forro y la pared más profunda. Una ligera superposición permite que las paredes estén firmemente unidas al forro. Tenga en cuenta que, con un mismo ancho de la línea del forro y la pared, cualquier porcentaje superior al 50 % ya puede provocar que cualquier forro sobrepase la pared, debido a que en ese punto la posición de la tobera del extrusor del forro ya puede sobrepasar la mitad de la pared." +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "Elija si desea esperar a que la temperatura de la tobera se alcance al inicio." -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Ajuste la cantidad de superposición entre las paredes y (los extremos de) las líneas centrales del forro. Una ligera superposición permite que las paredes estén firmemente unidas al forro. Tenga en cuenta que, con un mismo ancho de la línea del forro y la pared, cualquier valor superior a la mitad del ancho de la pared ya puede provocar que cualquier forro sobrepase la pared, debido a que en ese punto la posición de la tobera del extrusor del forro ya puede sobrepasar la mitad de la pared." +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Incluir temperaturas del material" -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Ajusta la densidad del relleno de la impresión." +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "Elija si desea incluir comandos de temperatura de la tobera al inicio del Gcode. Si start_gcode ya contiene comandos de temperatura de la tobera, la interfaz de Cura desactivará este ajuste de forma automática." -msgctxt "support_interface_density description" -msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Ajusta la densidad de los techos y suelos de la estructura de soporte. Un valor superior da como resultado mejores voladizos pero los soportes son más difíciles de retirar." +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Incluir temperatura de la placa de impresión" -msgctxt "support_tree_top_rate description" -msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "Ajusta la densidad de la estructura de soporte utilizada para generar las puntas de las ramas. Un valor más alto da como resultado mejores voladizos, pero los soportes son más difíciles de eliminar. Utilice el techo de soporte para valores muy altos o asegúrese de que la densidad del soporte sea igual de alta en la parte superior." +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "Elija si desea incluir comandos de temperatura de la placa de impresión al iniciar el Gcode. Si start_gcode ya contiene comandos de temperatura de la placa de impresión, la interfaz de Cura desactivará este ajuste de forma automática." -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Ajusta la densidad de la estructura del soporte. Un valor superior da como resultado mejores voladizos pero los soportes son más difíciles de retirar." +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Ancho de la máquina" -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Ajusta el diámetro del filamento utilizado. Este valor debe coincidir con el diámetro del filamento utilizado." +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "Ancho (dimensión sobre el eje X) del área de impresión." -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "Ajusta la colocación de las estructuras del soporte. La colocación se puede establecer tocando la placa de impresión o en todas partes. Cuando se establece en todas partes, las estructuras del soporte también se imprimirán en el modelo." +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Profundidad de la máquina" -msgctxt "prime_tower_wipe_enabled description" -msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." -msgstr "Tras imprimir la torre auxiliar con una tobera, limpie el material rezumado de la otra tobera de la torre auxiliar." +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "Profundidad (dimensión sobre el eje Y) del área de impresión." -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "Cuando la máquina cambia de un extrusor a otro, la placa de impresión se baja para crear holgura entre la tobera y la impresión. Esto impide que el material rezumado quede fuera de la impresión." +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Altura de la máquina" -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Todo" +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "Altura (dimensión sobre el eje Z) del área de impresión." -msgctxt "print_sequence option all_at_once" -msgid "All at Once" -msgstr "Todos a la vez" +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Forma de la placa de impresión" -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "Todos los ajustes que influyen en la resolución de la impresión. Estos ajustes tienen una gran repercusión en la calidad (y en el tiempo de impresión)." +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "La forma de la placa de impresión sin tener en cuenta las zonas externas al área de impresión." -msgctxt "user_defined_print_order_enabled description" -msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." -msgstr "" +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Rectangular" -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Alternar pared adicional" +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Elíptica" -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Alternar la retirada de las mallas" +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Material de placa de impresión" -msgctxt "material_alternate_walls label" -msgid "Alternate Wall Directions" -msgstr "Alternar direcciones de pared" +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "Material de la placa de impresión colocado en la impresora." -msgctxt "material_alternate_walls description" -msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." -msgstr "Le permite alternar las direcciones de las paredes entre capas o insertos. Útil para materiales que pueden acumular tensión, como para imprimir en metal." +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Vidrio" msgctxt "machine_buildplate_type option aluminum" msgid "Aluminum" msgstr "Aluminio" +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Tiene una placa de impresión caliente" + +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "Indica si la máquina tiene una placa de impresión caliente." + +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "Tiene estabilización de temperatura del volumen de impresión" + +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "Si la máquina puede estabilizar la temperatura del volumen de impresión." + msgctxt "machine_always_write_active_tool label" msgid "Always Write Active Tool" msgstr "Escriba siempre la herramienta activa" -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "Retraer siempre al desplazarse para empezar una pared exterior." - -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "Cantidad de desplazamiento aplicado a todos los polígonos de cada capa. Los valores positivos pueden compensar agujeros demasiado grandes; los valores negativos pueden compensar agujeros demasiado pequeños." +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "Escriba la herramienta activa después de enviar comandos temporales a la herramienta inactiva. Requerido para la impresión de extrusión dual con Smoothie u otro firmware con comandos de herramientas modales." -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "Cantidad de desplazamiento aplicado a todos los polígonos de la primera capa. Un valor negativo puede compensar el aplastamiento de la primera capa, lo que se conoce como «pie de elefante»." - -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "Cantidad de desplazamiento aplicado a todos los polígonos de cada capa. Los valores positivos pueden suavizar las áreas del soporte y producir un soporte más robusto." - -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "Cantidad de desplazamiento aplicado a los suelos del soporte." - -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "Cantidad de desplazamiento aplicado a los techos del soporte." - -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "Cantidad de desplazamiento aplicado a los polígonos de la interfaz de soporte." - -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "Cantidad para retraer el filamento para que no rezume durante la secuencia de limpieza." - -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "Un suplemento al radio desde el centro de cada cubo cuyo fin es comprobar el contorno del modelo para decidir si este cubo debería subdividirse. Cuanto mayor sea su valor, más grueso será el perímetro de cubos pequeños junto al contorno del modelo." - -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Malla antivoladizo" - -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Velocidad de retracción antirrezumado" - -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Velocidad de retracción antirrezumado" - -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "Aplicar el desplazamiento del extrusor al sistema de coordenadas. Influye en todos los extrusores." - -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "En las ubicaciones donde se tocan los modelos, genere una estructura de haz entrelazado. Esto mejora la adhesión entre los modelos, especialmente de aquellos impresos en materiales diferentes." - -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Evitar partes impresas al desplazarse" - -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Evitar soportes al desplazarse" - -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Posterior" - -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Posterior izquierda" - -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Posterior derecha" - -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Ambos" - -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "Ambos se solapan" - -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Capas inferiores" - -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Patrón inferior de la capa inicial" - -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Distancia de expansión del forro inferior" - -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Anchura de retirada del forro inferior" - -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Grosor inferior" - -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "Densidad de la rama" - -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "Diámetro de la rama" - -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "Ángulo del diámetro de la rama" - -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Posición retraída de preparación de rotura" - -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Velocidad de retracción de preparación de rotura" - -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Temperatura de preparación de rotura" - -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Posición retraída de rotura" - -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Velocidad de retracción de rotura" - -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Temperatura de rotura" - -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Descomponer el soporte en pedazos" - -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Velocidad del ventilador del puente" - -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Puente con varias capas" - -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Densidad del segundo forro del puente" - -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Velocidad del ventilador del segundo forro del puente" - -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Flujo del segundo forro del puente" - -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Velocidad del segundo forro del puente" - -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Densidad de forro del puente" - -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Flujo de forro del puente" - -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Velocidad de forro del puente" - -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Umbral del soporte del forro del puente" - -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Densidad máxima de relleno de puente escaso" - -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Densidad del tercer forro del puente" - -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Velocidad del ventilador del tercer forro del puente" - -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Flujo del tercer forro del puente" - -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Velocidad del tercer forro del puente" - -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Depósito por inercia de la pared del puente" - -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Flujo de pared del puente" - -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Velocidad de pared del puente" - -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Borde" - -msgctxt "brim_inside_margin label" -msgid "Brim Avoid Margin" -msgstr "" - -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Distancia del borde" - -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Recuento de líneas de borde" - -msgctxt "brim_location label" -msgid "Brim Location" -msgstr "" - -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Sustituir soporte por borde" - -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Ancho del borde" - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Adherencia de la placa de impresión" - -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Extrusor de adherencia de la placa de impresión" - -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Tipo adherencia de la placa de impresión" - -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Material de placa de impresión" - -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Forma de la placa de impresión" - -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Temperatura de la placa de impresión" - -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Temperatura de la placa de impresión en la capa inicial" - -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Temperatura de volumen de impresión" - -msgctxt "bv_temp_anomaly_limit label" -msgid "Build Volume temperature Limit" -msgstr "" - -msgctxt "bv_temp_warn_limit label" -msgid "Build Volume temperature Warning" -msgstr "" - -msgctxt "prime_tower_brim_enable description" -msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "Al habilitar esta configuración, tu torre de cebado tendrá un borde, incluso si el modelo no lo tiene. Si quieres una base más robusta para una torre alta, puedes aumentar la altura de la base." - -msgctxt "center_object label" -msgid "Center Object" -msgstr "Centrar objeto" - -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "Cambiar la geometría del modelo impreso de modo que se necesite un soporte mínimo. Los voladizos descendentes se convertirán en voladizos llanos y las áreas inclinadas caerán para ser más verticales." - -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "Elige entre las técnicas disponibles para generar soporte. El soporte \"Normal\" crea una estructura de soporte directamente debajo de las partes en voladizo y lleva estas áreas hacia abajo. El soporte en \"Árbol\" crea ramas en las áreas en voladizo que sostienen el modelo al final de estas ramas y permite que las ramas se arrastren alrededor del modelo para sostenerlo tanto como sea posible en la placa de impresión." - -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Velocidad de depósito por inercia" - -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Volumen de depósito por inercia" - -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "Depósito por inercia sustituye la última parte de una trayectoria de extrusión por una trayectoria de desplazamiento. El material rezumado se utiliza para imprimir la última parte de la trayectoria de extrusión con el fin de reducir el encordado." - -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Modo Peinada" - -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "La opción de peinada mantiene la tobera dentro de las áreas ya impresas al desplazarse. Esto ocasiona movimientos de desplazamiento ligeramente más largos, pero reduce la necesidad de realizar retracciones. Si se desactiva la opción de peinada, el material se retraerá y la tobera se moverá en línea recta hasta el siguiente punto. Otra posibilidad es evitar la peinada en áreas de forro superiores/inferiores o peinar solo en el relleno." - -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Ajustes de la línea de comandos" - -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Concéntrico" - -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Concéntrico" +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "El origen está centrado" -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Concéntrico" +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "Indica si las coordenadas X/Y de la posición inicial del cabezal de impresión se encuentran en el centro del área de impresión." -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concéntrico" +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Número de extrusores" -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Concéntrico" +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "Número de trenes extrusores. Un tren extrusor está formado por un alimentador, un tubo guía y una tobera." -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Concéntrico" +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Número de extrusores habilitados" -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Concéntrico" +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "Número de trenes extrusores habilitados y configurados en el software de forma automática" -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concéntrico" +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Diámetro exterior de la tobera" -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Concéntrico" +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "Diámetro exterior de la punta de la tobera." -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Ángulo del soporte cónico" +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Longitud de la tobera" -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Anchura mínima del soporte cónico" +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "Diferencia de altura entre la punta de la tobera y la parte más baja del cabezal de impresión." -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Conectar líneas de relleno" +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Ángulo de la tobera" -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Conectar polígonos de relleno" +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "Ángulo entre el plano horizontal y la parte cónica que hay justo encima de la punta de la tobera." -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Conectar líneas del soporte" +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Longitud de la zona térmica" -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Conectar zigzags del soporte" +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "Distancia desde la punta de la tobera que transfiere calor al filamento." -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Conectar polígonos superiores/inferiores" +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Habilitar control de temperatura de la tobera" -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "Conectar las trayectorias de polígonos cuando están próximas entre sí. Habilitar esta opción reduce considerablemente el tiempo de desplazamiento en los patrones de relleno que constan de varios polígonos cerrados." +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "Para controlar la temperatura desde Cura. Si va a controlar la temperatura de la tobera desde fuera de Cura, desactive esta opción." -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "Conectar los zigzags. Esto aumentará la resistencia de la estructura del soporte de zigzag." +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Velocidad de calentamiento" -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "Unión de los extremos de las líneas de soporte. Al habilitar este ajuste, puede conseguir que el soporte sea más sólido y reducir la infraextrusión, pero se necesitará más material." +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "Velocidad (°C/s) de calentamiento de la tobera calculada como una media a partir de las temperaturas de impresión habituales y la temperatura en modo de espera." -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "Conectar los extremos donde los patrones de relleno se juntan con la pared interior usando una línea que siga la forma de esta. Habilitar este ajuste puede lograr que el relleno se adhiera mejor a las paredes y se reduzca el efecto del relleno sobre la calidad de las superficies verticales. Deshabilitar este ajuste reduce la cantidad de material utilizado." +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Velocidad de enfriamiento" -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "Conecta las trayectorias de forro superior/inferior cuando están próximas entre sí. Al habilitar este ajuste, en el patrón concéntrico se reduce considerablemente el tiempo de desplazamiento, pero las conexiones pueden producirse en mitad del relleno, con lo que bajaría la calidad de la superficie superior." +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "Velocidad (°C/s) de enfriamiento de la tobera calculada como una media a partir de las temperaturas de impresión habituales y la temperatura en modo de espera." -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "Controlar si las esquinas del contorno del modelo influyen en la posición de la costura. «Ninguno» significa que las esquinas no influyen en la posición de la costura. «Ocultar costura» significa que es probable que la costura se realice en una esquina interior. «Mostrar costura» significa que es probable que la costura se realice en una esquina exterior. «Ocultar o mostrar costura» significa que es probable que la costura se realice en una esquina interior o exterior. «Costura inteligente» permite realizar la costura en ambas esquinas, pero opta con más frecuencia por las esquinas interiores, si resulta oportuno." +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Temperatura mínima en modo de espera" -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "Multiplicar cada línea de relleno. Las líneas adicionales no se cruzan entre sí, sino que se evitan entre ellas. Esto consigue un relleno más rígido, pero incrementa el tiempo de impresión y el uso de material." +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "Tiempo mínimo que un extrusor debe permanecer inactivo antes de que la tobera se enfríe. Para que pueda enfriarse hasta alcanzar la temperatura en modo de espera, el extrusor deberá permanecer inactivo durante un tiempo superior al establecido." -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Velocidad de enfriamiento" +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "Tipo de GCode" -msgctxt "cooling description" -msgid "Cooling" -msgstr "Refrigeración" +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "Tipo de GCode que se va a generar." -msgctxt "cooling label" -msgid "Cooling" -msgstr "Refrigeración" +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Cruz" +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volumetric)" -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Cruz" +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "Cruz 3D" +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Tamaño de las bolsas 3D en cruces" +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Imagen de densidad de relleno cruzada para soporte" +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Imagen de densidad de relleno cruzada" +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Material cristalino" +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Cúbico" +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Subdivisión cúbica" +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Retracción de firmware" -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Perímetro de la subdivisión cúbica" +msgctxt "machine_firmware_retract description" +msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." +msgstr "Utilizar o no los comandos de retracción de firmware (G10/G11) en lugar de utilizar la propiedad E en comandos G1 para retraer el material." -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Cortar malla" +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Calentador compartido de extrusores" -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "Datos que vinculan el flujo de materiales (en 3 mm por segundo) a la temperatura (grados centígrados)." +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "Si los extrusores comparten un único calentador en lugar de que cada extrusor tenga el suyo propio." -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Aceleración predeterminada" +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Los extrusores comparten la tobera" -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Temperatura predeterminada de la placa de impresión" +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "Indica si los extrusores comparten una única tobera en lugar de que cada uno tenga la suya propia. Cuando se establece en true, se espera que la secuencia de comandos gcode de inicio de la impresora establezca todos los extrusores en un estado de retracción inicial conocido y mutuamente compatible (ninguno o un solo filamento que no se retrae); en este caso, el estado de retracción inicial se describe, por extrusor, mediante el parámetro \"machine_extruders_shared_nozzle_initial_retraction\"." -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Impulso de filamento predeterminado" +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Retracción inicial de tobera compartida" -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Temperatura de impresión predeterminada" +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "La cantidad de filamento de cada extrusor que se supone que se ha retirado de la punta de la tobera compartida al final de la secuencia de comandos gcode de inicio de la impresora; el valor debe ser igual o mayor que la longitud de la parte común de los conductos de la tobera." -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Impulso X-Y predeterminado" +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Áreas no permitidas" -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Impulso Z predeterminado" +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "Lista de polígonos con áreas que el cabezal de impresión no tiene permitido introducir." -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "Impulso predeterminado para el movimiento en el plano horizontal." +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Áreas no permitidas para la tobera" -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "Impulso predeterminado del motor de la dirección Z." +msgctxt "nozzle_disallowed_areas description" +msgid "A list of polygons with areas the nozzle is not allowed to enter." +msgstr "Lista de polígonos con áreas en las que la tobera no tiene permitido entrar." -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "Impulso predeterminado del motor del filamento." +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Polígono del cabezal de la máquina y del ventilador" -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "Detección de puentes y modificación de los ajustes de velocidad de impresión, flujo y ventilador durante la impresión de puentes." +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "La forma del cabezal de impresión. Estas son las coordenadas relativas a la posición del cabezal de impresión, que generalmente es la posición de su primer extrusor. Las dimensiones de la izquierda y de la parte delantera del cabezal de impresión deben ser coordenadas negativas." -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "Determina el orden de impresión de las paredes. Empezar imprimiendo las paredes exteriores ayuda a la precisión dimensional, ya que evita que los defectos de las paredes interiores se propaguen al exterior. Sin embargo, si las imprime más tarde, podrá apilarlas mejor cuando se impriman los voladizos. Cuando hay una cantidad impar de paredes interiores totales, la «última línea central» siempre se imprime en último lugar." +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Altura del puente" -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "Determina la prioridad de esta malla al tener en cuenta varias mallas de relleno superpuestas. Las áreas en las que se superponen varias mallas de relleno tomarán la configuración de la malla con el rango más alto. Una malla de relleno con un rango superior modificará el relleno de las mallas de relleno con un rango inferior y mallas normales." +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "Diferencia de altura entre la punta de la tobera y el sistema del puente (ejes X e Y)." -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "Determina cuándo una capa de relleno de rayos tiene que soportar algo por encima de ella. Medido en el ángulo dado el espesor de una capa." +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Id. de la tobera" -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "Determina cuándo una capa de relleno de rayos tiene que soportar el modelo que está por encima. Medido en el ángulo dado el espesor." +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Id. de la tobera de un tren extrusor, como \"AA 0.4\" y \"BB 0.8\"." -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diámetro" +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diámetro de la tobera" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "Aumento del diámetro para el modelo" +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Diámetro interior de la tobera. Cambie este ajuste cuando utilice un tamaño de tobera no estándar." -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "Diámetro que cada rama trata de alcanzar al llegar a la placa de impresión. Mejora la adherencia a la plataforma." +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Desplazamiento con extrusor" -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "Opciones diferentes que ayudan a mejorar tanto la extrusión como la adherencia a la placa de impresión. El borde agrega una zona plana de una sola capa alrededor de la base del modelo para impedir que se deforme. La balsa agrega una rejilla gruesa con un techo por debajo del modelo. La falda es una línea impresa alrededor del modelo, pero que no está conectada al modelo." +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "Aplicar el desplazamiento del extrusor al sistema de coordenadas. Influye en todos los extrusores." -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Áreas no permitidas" +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posición de preparación del extrusor sobre el eje Z" -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "Distancia entre las líneas de relleno impresas. Este ajuste se calcula por la densidad del relleno y el ancho de la línea de relleno." +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Coordenada Z de la posición en la que la tobera queda preparada al inicio de la impresión." -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "Distancia entre las líneas de estructuras del soporte de la capa inicial impresas. Este ajuste se calcula por la densidad del soporte." +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "Posición de preparación absoluta del extrusor" -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "Distancia entre las líneas de suelo de soporte impresas. Este ajuste se calcula por la densidad del suelo del soporte pero se puede ajustar de forma independiente." +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "La posición de preparación del extrusor se considera absoluta, en lugar de relativa a la última ubicación conocida del cabezal." -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "Distancia entre las líneas de techo de soporte impresas. Este ajuste se calcula por la densidad del techo del soporte pero se puede ajustar de forma independiente." +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Velocidad máxima sobre el eje X" -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "Distancia entre las líneas de estructuras del soporte impresas. Este ajuste se calcula por la densidad del soporte." +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "Velocidad máxima del motor de la dirección X." -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." -msgstr "Distancia de la impresión hasta la parte inferior del soporte. Ten en cuenta que esto se redondea al siguiente altura de capa." +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Velocidad máxima sobre el eje Y" -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "Distancia desde la parte superior del soporte a la impresión." +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "Velocidad máxima del motor de la dirección Y." -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." -msgstr "Distancia desde la parte superior/inferior de la estructura de soporte hasta la impresión. Este espacio proporciona la holgura necesaria para remover los soportes después de imprimir el modelo. La capa de soporte más cercana al modelo podría ser una fracción de las capas regulares." +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Velocidad máxima sobre el eje Z" -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "Distancia de un desplazamiento insertado después de cada línea de relleno, para que el relleno se adhiera mejor a las paredes. Esta opción es similar a la superposición del relleno, pero sin extrusión y solo en un extremo de la línea de relleno." +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "Velocidad máxima del motor de la dirección Z." -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "Distancia de un movimiento de desplazamiento insertado tras la pared exterior con el fin de ocultar mejor la costura sobre el eje Z." +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Velocidad máxima E" -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "Distancia entre el parabrisas y la impresión, en las direcciones X/Y." +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "Velocidad máxima del filamento." -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "Distancia entre la placa de rezumado y la impresión, en las direcciones X/Y." +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Aceleración máxima sobre el eje X" -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "Distancia de la estructura de soporte desde el voladizo en las direcciones X/Y." +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "Aceleración máxima del motor de la dirección X" -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "Distancia de la estructura del soporte desde la impresión en las direcciones X/Y." +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Aceleración máxima de Y" -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Los puntos de distancia se desplazan para suavizar la trayectoria" +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Aceleración máxima del motor de la dirección Y." -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Los puntos de distancia se desplazan para suavizar la trayectoria" +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Aceleración máxima de Z" -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "No genere áreas con un relleno inferior a este (utilice forro)." +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Aceleración máxima del motor de la dirección Z." -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Altura del parabrisas" +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Aceleración máxima del filamento" -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Limitación del parabrisas" +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "Aceleración máxima del motor del filamento." -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Distancia X/Y del parabrisas" +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Aceleración predeterminada" -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Malla de soporte desplegable" +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "Aceleración predeterminada del movimiento del cabezal de impresión." -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Extrusión doble" +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Impulso X-Y predeterminado" -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Elíptica" +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "Impulso predeterminado para el movimiento en el plano horizontal." -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Activar control de aceleración" +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Impulso Z predeterminado" -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Habilitar ajustes del puente" +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "Impulso predeterminado del motor de la dirección Z." -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Habilitar depósito por inercia" +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Impulso de filamento predeterminado" + +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "Impulso predeterminado del motor del filamento." -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Activar soporte cónico" +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Pasos por milímetro (X)" -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Habilitar parabrisas" +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "Número de pasos que tiene que dar el motor para abarcar un milímetro de movimiento en la dirección X." -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "Activar movimiento fluido" +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Pasos por milímetro (Y)" -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Habilitar alisado" +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "Número de pasos que tiene que dar el motor para abarcar un milímetro de movimiento en la dirección Y." -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Activar control de impulso" +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Pasos por milímetro (Z)" -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Habilitar control de temperatura de la tobera" +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "Número de pasos que tiene que dar el motor para abarcar un milímetro de movimiento en la dirección Z." -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Activar placa de rezumado" +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Pasos por milímetro (E)" -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "Activar gotas de cebado" +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "El número de pasos en un motor paso a paso que mueve la rueda de alimentación en incrementos de 1 milímetro alrededor de su circunferencia." -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Activar la torre auxiliar" +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "Tope de X en dirección positiva" -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Activar refrigeración de impresión" +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "Si el tope del eje X se encuentra en la dirección positiva (coordenada X hacia arriba) o negativa (coordenada X hacia abajo)." -msgctxt "ppr_enable label" -msgid "Enable Print Process Reporting" -msgstr "" +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Tope de Y en dirección positiva" -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Habilitar la retracción" +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "Si el tope del eje Y se encuentra en la dirección positiva (coordenada Y hacia arriba) o negativa (coordenada Y hacia abajo)." -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Habilitar borde de soporte" +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Tope de Z en dirección positiva" -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Habilitar suelo del soporte" +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "Si el tope del eje Z se encuentra en la dirección positiva (coordenada Z hacia arriba) o negativa (coordenada Z hacia abajo)." -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Habilitar interfaz del soporte" +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Velocidad de alimentación mínima" -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Habilitar techo del soporte" +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "Velocidad mínima de movimiento del cabezal de impresión." -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "Habilitar aceleración de desplazamiento" +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Diámetro de la rueda del alimentador" -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "Activar impulso de desplazamiento" +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "El diámetro de la rueda que dirige el material hacia el alimentador." -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "Activar la placa de rezumado exterior. Esto crea un perímetro alrededor del modelo que suele limpiar una segunda tobera si se encuentra a la misma altura que la primera." +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "Escale la velocidad del ventilador a 0-1" -msgctxt "ppr_enable description" -msgid "Enable print process reporting for setting threshold values for possible fault detection." -msgstr "" +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "Escale la velocidad del ventilador para que esté entre 0 y 1 en lugar de entre 0 y 256." -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "Permite que las zonas pequeñas (hasta \"Ancho superior/inferior pequeño\") de la capa más superficial (expuestas al aire) se rellenen con paredes en lugar de con el patrón predeterminado." +msgctxt "resolution label" +msgid "Quality" +msgstr "Calidad" -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "Permite ajustar el impulso del cabezal de impresión cuando la velocidad del eje X o Y cambia. Aumentar el impulso puede reducir el tiempo de impresión a costa de la calidad de impresión." +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "Todos los ajustes que influyen en la resolución de la impresión. Estos ajustes tienen una gran repercusión en la calidad (y en el tiempo de impresión)." -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "Permite ajustar la aceleración del cabezal de impresión. Aumentar las aceleraciones puede reducir el tiempo de impresión a costa de la calidad de impresión." +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Altura de capa" -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "Habilita ventiladores de refrigeración mientras se imprime. Los ventiladores mejoran la calidad de la impresión en capas con menores tiempos de capas y puentes o voladizos." +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "Altura de cada capa en mm. Los valores más altos producen impresiones más rápidas con una menor resolución, los valores más bajos producen impresiones más lentas con una mayor resolución." -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "Finalizar GCode" +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Altura de capa inicial" -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Longitud de purga del extremo del filamento" +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "Altura de capa inicial en mm. Una capa inicial más gruesa se adhiere a la placa de impresión con mayor facilidad." -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Velocidad de purga del extremo del filamento" +msgctxt "line_width label" +msgid "Line Width" +msgstr "Ancho de línea" -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "Aplica la impresión de un borde alrededor del modelo, aunque en esa posición debiera estar el soporte. Sustituye algunas áreas de la primera capa de soporte por áreas de borde." +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "Ancho de una única línea. Generalmente, el ancho de cada línea se debería corresponder con el ancho de la tobera. Sin embargo, reducir este valor ligeramente podría producir mejores impresiones." -msgctxt "brim_location option everywhere" -msgid "Everywhere" -msgstr "" +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Ancho de línea de pared" -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "En todos sitios" +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Ancho de una sola línea de pared." -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Exclusiva" +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Ancho de línea de la pared exterior" -msgctxt "experimental label" -msgid "Experimental" -msgstr "Experimental" +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "Ancho de la línea de pared más externa. Reduciendo este valor se puede imprimir con un mayor nivel de detalle." -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Mostrar costura" +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Ancho de línea de pared(es) interna(s)" -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Cosido amplio" +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "Ancho de una sola línea de pared para todas las líneas de pared excepto la más externa." -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "Cosido amplio intenta coser los agujeros abiertos en la malla cerrando el agujero con polígonos que se tocan. Esta opción puede agregar una gran cantidad de tiempo de procesamiento." +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Ancho de línea superior/inferior" -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "Recuento de líneas de pared adicional" +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Ancho de una sola línea superior/inferior." -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Recuento de paredes adicionales de forro" +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Ancho de línea de relleno" -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "Material adicional que debe cebarse tras el cambio de tobera." +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Ancho de una sola línea de relleno." -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Posición de preparación del extrusor sobre el eje X" +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Ancho de línea de falda/borde" -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Posición de preparación del extrusor sobre el eje Y" +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "Ancho de una sola línea de falda o borde." -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Posición de preparación del extrusor sobre el eje Z" +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Ancho de línea de soporte" -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Calentador compartido de extrusores" +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Ancho de una sola línea de estructura de soporte." + +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Ancho de línea de interfaz de soporte" -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Los extrusores comparten la tobera" +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "Ancho de una sola línea de techo o suelo de soporte." -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Modificador de la velocidad de enfriamiento de la extrusión" +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Ancho de línea del techo de soporte" -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "Factor de corrección del ancho de extrusión basado en la velocidad. Al 0 % de velocidad de movimiento se mantiene constante a la velocidad de impresión. Al 100 % de velocidad de movimiento se ajusta para mantener el flujo constante (en mm³/s), es decir, las líneas cuyo ancho es la mitad del ancho normal se imprimen el doble de rápido y las líneas que tienen el doble de ancho se imprimen a la mitad de la velocidad. Un valor superior al 100 % puede ayudar a compensar la mayor presión necesaria para extruir líneas anchas." +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "Ancho de una sola línea de techo de soporte." -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Velocidad del ventilador" +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Ancho de línea del suelo de soporte" -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Alteración de velocidad del ventilador" +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "Ancho de una sola línea de suelo de soporte." -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "Los contornos de las partes que sean más cortos que esta longitud se imprimen utilizando la función Velocidad de pequeñas partes." +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Ancho de línea de la torre auxiliar" -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Características que aún no se han desarrollado por completo." +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "Ancho de una sola línea de la torre auxiliar." -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Diámetro de la rueda del alimentador" +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Ancho de línea de la capa inicial" -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Temperatura de impresión final" +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "Multiplicador del ancho de la línea de la primera capa. Si esta se aumenta, se puede mejorar la adherencia a la plataforma." -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Retracción de firmware" +msgctxt "shell label" +msgid "Walls" +msgstr "Paredes" -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Extrusor del soporte de la primera capa" +msgctxt "shell description" +msgid "Shell" +msgstr "Perímetro" -msgctxt "material_flow label" -msgid "Flow" -msgstr "Flujo" +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Extrusor de pared" -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Proporción de ecualización de flujo" +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir paredes. Se emplea en la extrusión múltiple." -msgctxt "flow_anomaly_limit label" -msgid "Flow Limit" -msgstr "" +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Extrusor de pared exterior" -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Factor de compensación del caudal" +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir la pared exterior. Se emplea en la extrusión múltiple." -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Desplazamiento de extrusión máximo del factor de compensación del caudal" +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Extrusor de pared interior" -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Gráfico de flujo y temperatura" +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir las paredes interiores. Se emplea en la extrusión múltiple." -msgctxt "flow_warn_limit label" -msgid "Flow Warning" -msgstr "" +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Grosor de la pared" -msgctxt "material_flow_layer_0 description" -msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." -msgstr "Compensación de flujo de la primera capa: la cantidad de material extruido de la capa inicial se multiplica por este valor." +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "Grosor de las paredes en dirección horizontal. Este valor dividido por el ancho de la línea de pared define el número de paredes." -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "Compensación de flujo en las líneas inferiores de la primera capa" +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Recuento de líneas de pared" -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Compensación de flujo en líneas de relleno." +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "Número de paredes. Al calcularlo por el grosor de las paredes, este valor se redondea a un número entero." -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "Compensación de flujo en líneas de techo o suelo de soporte." +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Longitud de transición de la pared" -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "Compensación de flujo en líneas de las áreas superiores de la impresión." +msgctxt "wall_transition_length description" +msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." +msgstr "Cuando se pasa de un número de paredes a otro a medida que la pieza se hace más delgada, se asigna una determinada cantidad de espacio para dividir o unir las líneas de contorno." -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Compensación de flujo en líneas de la torre auxiliar." +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Recuento de distribución de pared" -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Compensación de flujo en líneas de falda o borde." +msgctxt "wall_distribution_count description" +msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." +msgstr "El número de paredes, contadas desde el centro, en las que se distribuirá la variación. Los valores más bajos indican que el ancho de las paredes externas no cambia." -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Compensación de flujo en líneas de suelo de soporte." +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Ángulo de umbral de transición de pared" -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Compensación de flujo en líneas de techo de soporte." +msgctxt "wall_transition_angle description" +msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." +msgstr "Cuándo crear transiciones entre números de pared pares e impares. Una forma de cuña con un ángulo mayor que esta configuración no tiene transacciones y no se imprimirán paredes en el centro para rellenar el espacio restante. Reducir esta configuración reduce el número y la longitud de estas paredes centrales, pero puede dejar espacios o sobreextrusión." -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Compensación de flujo en líneas de estructura de soporte." +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Distancia del filtro de transición a la pared" -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "Compensación de flujo en la línea de pared más externa de la primera capa." +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "Si planea pasar de un lado a otro entre diferentes números de pared en rápida sucesión, no realice ninguna transición. Elimine las transiciones si están más cerca que esta distancia." -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "Compensación de flujo en la línea de pared más externa." +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Margen del filtro de transición de pared" -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Compensación de flujo en la línea de la pared exterior más externa de la superficie superior." +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "Evite la transición de ida y vuelta entre una pared extra y una menos. Este margen amplía el rango de anchos de línea después de [Ancho mínimo de línea perimetral - Margen, 2 * Ancho mínimo de línea perimetral + Margen]. Aumentar este margen reduce el número de transiciones, lo que reduce el número de arranques y paradas de la extrusión y el tiempo de recorrido. No obstante, las grandes variaciones en el ancho de la línea pueden provocar problemas de subextrusión o sobreextrusión." -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Compensación de flujo en las líneas de pared de la superficie superior para todas las líneas de pared excepto la más externa." +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Distancia de pasada de la pared exterior" -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Compensación de flujo en las líneas superiores o inferiores." +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "Distancia de un movimiento de desplazamiento insertado tras la pared exterior con el fin de ocultar mejor la costura sobre el eje Z." -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "Compensación de caudal en líneas de pared para todas, excepto la más exterior, pero solo para la primera capa." +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Entrante en la pared exterior" -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "Compensación de flujo en líneas de pared para todas las líneas excepto la más externa." +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "Entrante aplicado a la trayectoria de la pared exterior. Si la pared exterior es más pequeña que la tobera y se imprime a continuación de las paredes interiores, utilice este valor de desplazamiento para hacer que el agujero de la tobera se superponga a las paredes interiores del modelo en lugar de a las exteriores." -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Compensación de flujo en líneas de pared." +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Optimizar el orden de impresión de paredes" -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "Compensación de flujo: la cantidad de material extruido se multiplica por este valor." +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "Optimizar el orden en el que se imprimen las paredes a fin de reducir el número de retracciones y la distancia recorrida. La mayoría de los componentes se beneficiarán si este ajuste está habilitado pero, en algunos casos, se puede tardar más, por lo que deben compararse las previsiones de tiempo de impresión con y sin optimización. La primera capa no está optimizada al elegir el borde como el tipo de adhesión de la placa de impresión." -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "Ángulo de movimiento fluido" +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Orden de paredes" -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "Cambio de distancia del movimiento fluido" +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "Determina el orden de impresión de las paredes. Empezar imprimiendo las paredes exteriores ayuda a la precisión dimensional, ya que evita que los defectos de las paredes interiores se propaguen al exterior. Sin embargo, si las imprime más tarde, podrá apilarlas mejor cuando se impriman los voladizos. Cuando hay una cantidad impar de paredes interiores totales, la «última línea central» siempre se imprime en último lugar." -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "Pequeña distancia del movimiento fluido" +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "Del interior al exterior" -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Longitud de purga de descarga" +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "Del exterior al interior" -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Velocidad de purga de descarga" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Alternar pared adicional" + +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "Imprime una pared adicional cada dos capas. De este modo el relleno se queda atrapado entre estas paredes adicionales, lo que da como resultado impresiones más sólidas." + +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Ancho mínimo de la línea perimetral" msgctxt "min_wall_line_width description" msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgstr "Para estructuras delgadas, aproximadamente una o dos veces el tamaño de la boquilla, los anchos de línea deben cambiarse para que coincidan con el grosor del modelo. Esta configuración controla el ancho de línea mínimo permitido para las paredes. Los anchos de línea mínimos también determinan de forma inherente los anchos de línea máximos, ya que la transición de N a N + 1 paredes se realiza con un grosor geométrico donde N paredes son anchas y N + 1 paredes son estrechas. La línea perimetral más ancha posible es el doble del ancho mínimo de la línea perimetral." -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Delantera" - -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Delantera izquierda" - -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Delantera derecha" +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Ancho mínimo de la línea perimetral uniforme" -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Completo" +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "El ancho de línea mínimo para paredes poligonales normales. Este ajuste determina a qué espesor de modelo pasamos de imprimir una sola línea de perímetro delgada a imprimir dos líneas de perímetro. Un ancho mínimo más alto de la línea perimetral par conduce a un ancho máximo más alto de la línea perimetral impar. El ancho máximo de la línea perimetral par se calcula como el ancho de la línea perimetral exterior + 0,5 * el ancho mínimo de la línea perimetral impar." -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Forro difuso" +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Ancho mínimo de la línea perimetral impar" -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Densidad del forro difuso" +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "La anchura mínima de línea para las paredes tipo polilínea para rellenar el hueco de la línea central. Este parámetro determina a partir de qué grosor de modelo pasamos de imprimir dos líneas de pared a imprimir dos paredes exteriores y una sola pared central en el medio. Un ancho mínimo más alto de la línea de pared impar conduce a un ancho máximo más alto de la línea de pared par. El ancho máximo de línea de pared impar se calcula como el doble del ancho mínimo de línea de pared par." -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Forro difuso exterior únicamente" +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Imprimir paredes finas" -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Distancia de punto del forro difuso" +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "Imprime las piezas del modelo que son horizontalmente más finas que el tamaño de la tobera." -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Grosor del forro difuso" +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Tamaño mínimo de la característica" -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "Tipo de GCode" +msgctxt "min_feature_size description" +msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." +msgstr "Espesor mínimo de características delgadas. Las características del modelo que sean más delgadas que este valor no se imprimirán, mientras que las características más gruesas que el tamaño mínimo de la característica se estirarán hasta el ancho mínimo de la línea perimetral." -msgctxt "machine_end_gcode description" -msgid "" -"G-code commands to be executed at the very end - separated by \n" -"." -msgstr "" -"Los comandos de GCode que se ejecutarán justo al final separados por -\n" -"." +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Ancho mínimo de la línea perimetral delgada" -msgctxt "machine_start_gcode description" -msgid "" -"G-code commands to be executed at the very start - separated by \n" -"." -msgstr "" -"Los comandos de GCode que se ejecutarán justo al inicio separados por - \n" -"." +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "Ancho de la pared que reemplazará las características delgadas (según el tamaño mínimo de la característica) del modelo. Si el ancho mínimo de la línea perimetral es más delgado que el grosor de la característica, la pared se volverá tan gruesa como la propia característica." -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "GUID del material. Este valor se define de forma automática." +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Expansión horizontal" -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Altura del puente" +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "Cantidad de desplazamiento aplicado a todos los polígonos de cada capa. Los valores positivos pueden compensar agujeros demasiado grandes; los valores negativos pueden compensar agujeros demasiado pequeños." -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "Generar estructura entrelazada" +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Expansión horizontal de la capa inicial" -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Generar soporte" +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "Cantidad de desplazamiento aplicado a todos los polígonos de la primera capa. Un valor negativo puede compensar el aplastamiento de la primera capa, lo que se conoce como «pie de elefante»." -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "Genera un borde dentro de las zonas de relleno del soporte de la primera capa. Este borde se imprime por debajo del soporte y no a su alrededor. Si habilita esta configuración aumentará la adhesión del soporte a la placa de impresión." +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Expansión horizontal de orificios" -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "Genera una gruesa interfaz entre el modelo y el soporte. De esta forma, se crea un forro en la parte superior del soporte, donde se imprime el modelo, y en la parte inferior del soporte, donde se apoya el modelo." +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "Cuando es mayor que cero, la Expansión horizontal de agujeros es la cantidad de desplazamiento aplicada a todos los agujeros de cada capa. Los valores positivos aumentan el tamaño de los agujeros y los negativos lo reducen. Cuando esta configuración está activada, se puede ajustar aún más con el Diámetro máximo de expansión horizontal de agujeros." -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "Genere una placa densa de material entre la parte inferior del soporte y el modelo. Esto creará un forro entre el modelo y el soporte." +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "Diámetro máximo de la expansión horizontal de los orificios" -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "Genere una placa densa de material entre la parte superior del soporte y el modelo. Esto creará un forro entre el modelo y el soporte." +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "Cuando es mayor que cero, la expansión horizontal de los orificios se aplica gradualmente en orificios pequeños (los orificios pequeños se expanden más). Cuando se establezca en cero, la expansión horizontal de los orificios se aplicará a todos ellos. Los orificios mayores que el diámetro máximo de expansión horizontal de los orificios no se expanden." -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "Generar estructuras para soportar piezas del modelo que tengan voladizos. Sin estas estructuras, estas piezas se romperían durante la impresión." +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Alineación de costuras en Z" -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Vidrio" +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "Punto de partida de cada trayectoria en una capa. Cuando las trayectorias en capas consecutivas comienzan en el mismo punto, puede aparecer una costura vertical en la impresión. Cuando se alinean cerca de una ubicación especificada por el usuario, es más fácil eliminar la costura. Si se colocan aleatoriamente, las inexactitudes del inicio de las trayectorias se notarán menos. Si se toma la trayectoria más corta, la impresión será más rápida." -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "Pasar por la superficie superior una vez más, pero esta vez extruyendo muy poco material, para derretir la capa superior del plástico y crear una superficie más lisa. La presión de la cámara en la boquilla se mantiene alta para que los pliegues de la superficie se llenen de material." +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Especificada por el usuario" -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Altura necesaria de los pasos de relleno" +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Más corta" -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Pasos de relleno necesarios" +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Aleatoria" -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Altura necesaria de los escalones de relleno de soporte" +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Esquina más pronunciada" -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Escalones de relleno de soporte" +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Posición de costura en Z" -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "Reduzca gradualmente a esta temperatura cuando imprima a velocidades bajas debido al tiempo mínimo de capa." +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "La posición cerca de donde comenzará la impresión de cada parte de una capa." -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Rejilla" +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Posterior izquierda" -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Rejilla" +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Posterior" -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Rejilla" +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Posterior derecha" -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Rejilla" +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Derecha" -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Rejilla" +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Delantera derecha" -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Delantera" -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Agrupar las paredes exteriores" +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Delantera izquierda" -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Giroide" +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Izquierda" -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Giroide" +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "X de la costura Z" -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "Tiene estabilización de temperatura del volumen de impresión" +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "Coordenada X de la posición cerca de donde se comienza a imprimir cada parte en una capa." -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Tiene una placa de impresión caliente" +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Y de la costura Z" -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Velocidad de calentamiento" +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "Coordenada Y de la posición cerca de donde se comienza a imprimir cada parte en una capa." -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Longitud de la zona térmica" +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Preferencia de esquina de costura" -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "Limitación de la altura del parabrisas. Por encima de esta altura, no se imprimirá ningún parabrisas." +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "Controlar si las esquinas del contorno del modelo influyen en la posición de la costura. «Ninguno» significa que las esquinas no influyen en la posición de la costura. «Ocultar costura» significa que es probable que la costura se realice en una esquina interior. «Mostrar costura» significa que es probable que la costura se realice en una esquina exterior. «Ocultar o mostrar costura» significa que es probable que la costura se realice en una esquina interior o exterior. «Costura inteligente» permite realizar la costura en ambas esquinas, pero opta con más frecuencia por las esquinas interiores, si resulta oportuno." + +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Ninguno" msgctxt "z_seam_corner option z_seam_corner_inner" msgid "Hide Seam" msgstr "Ocultar costura" +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Mostrar costura" + msgctxt "z_seam_corner option z_seam_corner_any" msgid "Hide or Expose Seam" msgstr "Ocultar o mostrar costura" -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Expansión horizontal de orificios" +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Costura inteligente" -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "Diámetro máximo de la expansión horizontal de los orificios" +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Costuras relativas en Z" -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "Los agujeros y contornos de las piezas con un diámetro menor que estos se imprimen utilizando la función Velocidad de pequeñas partes." +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "Cuando se habilita, las coordenadas de la costura en z son relativas al centro de cada pieza. De lo contrario, las coordenadas definen una posición absoluta en la placa de impresión." -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Expansión horizontal" +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Superior o inferior" -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Factor de escala horizontal para la compensación de la contracción" +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Superior o inferior" -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "Hasta dónde puede estirarse el filamento antes de que se rompa mientras se calienta." +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Extrusor de la superficie superior del forro" -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "Hasta dónde tiene que retraerse el material antes de detener el rezumado." +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir el nivel superior del forro. Se emplea en la extrusión múltiple." -msgctxt "flow_rate_extrusion_offset_factor description" -msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." -msgstr "La distancia para mover el filamento con el fin de compensar los cambios en el caudal, como porcentaje de la distancia a la que se movería el filamento en un segundo de extrusión." +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Capas de la superficie superior del forro" -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "Hasta dónde debe retraerse el filamento para que se rompa limpiamente." +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "El número de capas del nivel superior del forro. Normalmente es suficiente con una sola capa para generar superficies superiores con mayor calidad." -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "Con qué velocidad debe retraerse el filamento justo antes de romperse en una retracción." +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Ancho de línea de la superficie superior del forro" -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "Con qué velocidad tiene que retraerse el material durante un cambio de filamento para evitar el rezumado." +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "Ancho de una sola línea de las áreas superiores de la impresión." -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "La velocidad de cebado del material después de sustituir una bobina vacía por una bobina nueva del mismo material." +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Patrón de la superficie superior del forro" -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "La velocidad de cebado del material después de cambiar a otro material." +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "El patrón de las capas de nivel superior." -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "La cantidad de tiempo que el material puede mantenerse seco de forma segura." +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Líneas" -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "Número de pasos que tiene que dar el motor para abarcar un milímetro de movimiento en la dirección X." +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Concéntrico" -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "Número de pasos que tiene que dar el motor para abarcar un milímetro de movimiento en la dirección Y." +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "Número de pasos que tiene que dar el motor para abarcar un milímetro de movimiento en la dirección Z." +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Orden monotónica de la superficie superior" -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "El número de pasos en un motor paso a paso que mueve la rueda de alimentación en incrementos de 1 milímetro alrededor de su circunferencia." +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprime colocando las líneas de la superficie superior de modo que siempre se superpongan a las líneas adyacentes en una dirección. Esto lleva un poco más de tiempo de impresión, pero hace que las superficies planas tengan un aspecto más consistente." -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "La cantidad de material que se va a utilizará para purgar el material que había antes en la tobera (en longitud del filamento) al sustituir una bobina vacía por una bobina nueva del mismo material." +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Direcciones de línea de la superficie superior del forro" -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "La cantidad de material que se va a utilizar para purgar el material que había antes en la tobera (en longitud del filamento) cuando se cambia a otro material." +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Una lista de los valores enteros de las direcciones de línea si las capas de la superficie superior del forro utilizan líneas o el patrón en zigzag. Los elementos de esta lista se utilizan de forma secuencial a medida que las capas se utilizan y, cuando se alcanza el final, la lista vuelve a comenzar desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía que utiliza los ángulos predeterminados típicos (45 y 135 grados)." -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "La cantidad de filamento de cada extrusor que se supone que se ha retirado de la punta de la tobera compartida al final de la secuencia de comandos gcode de inicio de la impresora; el valor debe ser igual o mayor que la longitud de la parte común de los conductos de la tobera." +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Extrusor superior/inferior" -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "Cómo interactuarán la interfaz y el soporte en caso de superposición. Actualmente, solo implantado para techos de soporte." +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir el forro superior e inferior. Se emplea en la extrusión múltiple." -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "Qué altura debe tener una rama si se coloca sobre el modelo. Evita la formación de pequeñas gotas de soporte. Esta configuración se ignora cuando una rama está aguantando un techo de soporte." +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Grosor superior/inferior" -msgctxt "bridge_skin_support_threshold description" -msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." -msgstr "Si un área de forro es compatible con un porcentaje inferior de su área, se imprime utilizando los ajustes de puente. De lo contrario, se imprimirá utilizando los ajustes de forro habituales." +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "Grosor de las capas superiores/inferiores en la impresión. Este valor dividido por la altura de la capa define el número de capas superiores/inferiores." -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "Si un segmento de la trayectoria de la herramienta se desvía más de este ángulo del movimiento general, se suaviza." +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Grosor superior" -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "Si esta opción está habilitada, la segunda y tercera capa por encima del aire se imprimen utilizando los siguientes ajustes. De lo contrario, estas capas se imprimen utilizando los ajustes habituales." +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "Grosor de las capas superiores en la impresión. Este valor dividido por la altura de capa define el número de capas superiores." -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "Si planea pasar de un lado a otro entre diferentes números de pared en rápida sucesión, no realice ninguna transición. Elimine las transiciones si están más cerca que esta distancia." +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Capas superiores" -msgctxt "raft_base_margin description" -msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "Número de capas superiores. Al calcularlo por el grosor superior, este valor se redondea a un número entero." -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Si la balsa está habilitada, esta es el área adicional de la balsa alrededor del modelo que también tiene una balsa. El aumento de este margen creará una balsa más resistente mientras que usará más material y dejará menos área para la impresión." +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Grosor inferior" -msgctxt "raft_interface_margin description" -msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "Grosor de las capas inferiores en la impresión. Este valor dividido por la altura de capa define el número de capas inferiores." -msgctxt "raft_surface_margin description" -msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Capas inferiores" -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "Ignora la geometría interna que surge de los volúmenes de superposición dentro de una malla e imprime los volúmenes como si fuera uno. Esto puede hacer que desaparezcan cavidades internas que no se hayan previsto." +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "Número de capas inferiores. Al calcularlo por el grosor inferior, este valor se redondea a un número entero." -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Incluir temperatura de la placa de impresión" +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "Capas inferiores iniciales" -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Incluir temperaturas del material" +msgctxt "initial_bottom_layers description" +msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "El número de capas inferiores iniciales, desde la capa de impresión hacia arriba. Al calcularlo por el grosor inferior, este valor se redondea a un número entero." -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Inclusiva" +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Patrón superior/inferior" -msgctxt "infill description" -msgid "Infill" -msgstr "Relleno" +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Patrón de las capas superiores/inferiores." + +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Líneas" + +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concéntrico" + +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Patrón inferior de la capa inicial" + +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "El patrón que aparece en la parte inferior de la impresión de la primera capa." + +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Líneas" + +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Concéntrico" + +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" -msgctxt "infill label" -msgid "Infill" -msgstr "Relleno" +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Conectar polígonos superiores/inferiores" -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Aceleración del relleno" +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "Conecta las trayectorias de forro superior/inferior cuando están próximas entre sí. Al habilitar este ajuste, en el patrón concéntrico se reduce considerablemente el tiempo de desplazamiento, pero las conexiones pueden producirse en mitad del relleno, con lo que bajaría la calidad de la superficie superior." -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Relleno antes que las paredes" +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Orden monotónica superior e inferior" -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Densidad de relleno" +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprime colocando las líneas superior e inferior de modo que siempre se superpongan a las líneas adyacentes en una dirección. Esto lleva un poco más de tiempo de impresión, pero hace que las superficies planas tengan un aspecto más consistente." -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Extrusor del relleno" +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Direcciones de línea superior/inferior" -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Flujo de relleno" +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Una lista de los valores enteros de las direcciones de línea si las capas superiores e inferiores utilizan líneas o el patrón en zigzag. Los elementos de esta lista se utilizan de forma secuencial a medida que las capas se utilizan y, cuando se alcanza el final, la lista vuelve a comenzar desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía que utiliza los ángulos predeterminados típicos (45 y 135 grados)." -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Impulso de relleno" +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "Anchura superior/​inferior pequeña" -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Grosor de la capa de relleno" +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "Las zonas pequeñas superiores/inferiores se rellenan con paredes en lugar de con el patrón predeterminado superior/inferior. Esto ayuda a evitar movimientos bruscos. Está desactivado para la capa superior (expuesta al aire) por defecto. (Consulte: \"Zonas pequeñas superiores/inferiores en superficie\")." -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "Direcciones de línea de relleno" +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "Zonas pequeñas superiores/inferiores en superficie" -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Distancia de línea de relleno" +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "Permite que las zonas pequeñas (hasta \"Ancho superior/inferior pequeño\") de la capa más superficial (expuestas al aire) se rellenen con paredes en lugar de con el patrón predeterminado." -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "Multiplicador de línea de relleno" +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Sin forro en huecos en Z" -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Ancho de línea de relleno" +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "Cuando el modelo tiene pequeños huecos verticales de solo unas pocas capas, normalmente suele haber forro alrededor de ellas en el espacio estrecho. Active este ajuste para no generar forro si el hueco vertical es muy pequeño. Esto mejora el tiempo de impresión y de segmentación, pero deja el relleno expuesto al aire." -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Malla de relleno" +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Recuento de paredes adicionales de forro" -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Ángulo de voladizo de relleno" +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "Reemplaza la parte más externa del patrón superior/inferior con un número de líneas concéntricas. Mediante el uso de una o dos líneas mejora los techos que comienzan en el material de relleno." -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Superposición del relleno" +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Habilitar alisado" -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "Porcentaje de superposición del relleno" +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "Pasar por la superficie superior una vez más, pero esta vez extruyendo muy poco material, para derretir la capa superior del plástico y crear una superficie más lisa. La presión de la cámara en la boquilla se mantiene alta para que los pliegues de la superficie se llenen de material." -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Patrón de relleno" +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Planchar solo la capa superior" -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Velocidad de relleno" +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "Planchar únicamente la última capa de la malla. De este modo se ahorra tiempo si las capas inferiores no requieren un acabado superficial suave." -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Soporte de relleno" +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Patrón de alisado" -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Optimización del desplazamiento del relleno" +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "El patrón que se usará para el alisado de las superficies superiores." -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "Distancia de pasada de relleno" +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Concéntrico" -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "Desplazamiento del relleno sobre el eje X" +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Desplazamiento del relleno sobre el eje Y" +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Orden de planchado monotónico" -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "Capas inferiores iniciales" +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprime colocando las líneas de planchado de modo que siempre se superpongan a las líneas adyacentes en una dirección. Esto lleva un poco más de tiempo de impresión, pero hace que las superficies planas tengan un aspecto más consistente." -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Velocidad inicial del ventilador" +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Espaciado de líneas del alisado" -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Aceleración de la capa inicial" +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "Distancia entre las líneas del alisado." -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "Flujo inferior de la capa inicial" +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Flujo de alisado" -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "Diámetro de la capa inicial" +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "Cantidad de material (relativa a la línea del forro normal) que se extruye durante el alisado. Dejar la tobera llena permite rellenar algunas grietas de la superficie, pero llenarla demasiado puede provocar la sobrextrusión y afectar a la superficie." -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Flujo de capa inicial" +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Inserción de alisado" -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Altura de capa inicial" +msgctxt "ironing_inset description" +msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." +msgstr "Distancia que debe guardarse desde el borde del modelo. Si se alisa hasta el borde de la malla, puede quedar un borde irregular." -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Expansión horizontal de la capa inicial" +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Velocidad de alisado" -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "Flujo de pared interior de la capa inicial" +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "Velocidad a la que pasa por encima de la superficie superior." -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Impulso de capa inicial" +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Aceleración del alisado" -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Ancho de línea de la capa inicial" +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "La aceleración a la que se produce el alisado." -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "Flujo de pared exterior de la capa inicial" +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Impulso de alisado" -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Aceleración de impresión de la capa inicial" +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "Cambio en la velocidad instantánea máxima durante el alisado." -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Impulso de impresión de capa inicial" +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Porcentaje de superposición del forro" -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Velocidad de impresión de la capa inicial" +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Ajuste la cantidad de superposición entre las paredes y (los extremos de) las líneas centrales del forro, como un porcentaje de los anchos de las líneas del forro y la pared más profunda. Una ligera superposición permite que las paredes estén firmemente unidas al forro. Tenga en cuenta que, con un mismo ancho de la línea del forro y la pared, cualquier porcentaje superior al 50 % ya puede provocar que cualquier forro sobrepase la pared, debido a que en ese punto la posición de la tobera del extrusor del forro ya puede sobrepasar la mitad de la pared." -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Velocidad de capa inicial" +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Superposición del forro" -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "Distancia de línea del soporte de la capa inicial" +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Ajuste la cantidad de superposición entre las paredes y (los extremos de) las líneas centrales del forro. Una ligera superposición permite que las paredes estén firmemente unidas al forro. Tenga en cuenta que, con un mismo ancho de la línea del forro y la pared, cualquier valor superior a la mitad del ancho de la pared ya puede provocar que cualquier forro sobrepase la pared, debido a que en ese punto la posición de la tobera del extrusor del forro ya puede sobrepasar la mitad de la pared." -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Aceleración de desplazamiento de la capa inicial" +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Anchura de retirada del forro" -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Impulso de desplazamiento de capa inicial" +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "Anchura máxima de las áreas de forro que se deben retirar. Todas las áreas de forro inferiores a este valor desaparecerán. Esto puede contribuir a limitar el tiempo y el material empleados en imprimir el forro superior/inferior en las superficies inclinadas del modelo." + +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Anchura de retirada del forro superior" -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Velocidad de desplazamiento de la capa inicial" +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "Anchura máxima de las áreas superiores de forro que se deben retirar. Todas las áreas de forro inferiores a este valor desaparecerán. Esto puede contribuir a limitar el tiempo y el material empleados en imprimir el forro superior en las superficies inclinadas del modelo." -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Superposición de las capas iniciales en Z" +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Anchura de retirada del forro inferior" -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Temperatura de impresión inicial" +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "Anchura máxima de las áreas inferiores de forro que se deben retirar. Todas las áreas de forro inferiores a este valor desaparecerán. Esto puede contribuir a limitar el tiempo y el material empleados en imprimir el forro inferior en las superficies inclinadas del modelo." -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Aceleración de pared interior" +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Distancia de expansión del forro" -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Extrusor de pared interior" +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "La distancia a la que los forros se expanden en el relleno. Los valores superiores hacen que el forro se adhiera mejor al patrón de relleno y que las paredes de las capas vecinas se adhieran mejor al forro. Los valores inferiores ahorran material." -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Impulso de pared interior" +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Distancia de expansión del forro superior" -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Velocidad de pared interior" +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "La distancia a la que los forros superiores se expanden en el relleno. Los valores superiores hacen que el forro se adhiera mejor al patrón de relleno y que las paredes de la capa superior se adhieran mejor al forro. Los valores inferiores ahorran material." -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Flujo de pared o paredes interiores" +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Distancia de expansión del forro inferior" -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Ancho de línea de pared(es) interna(s)" +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "La distancia a la que los forros inferiores se expanden en el relleno. Los valores superiores hacen que el forro se adhiera mejor al patrón de relleno y que el forro se adhiera mejor a las paredes de la capa inferior. Los valores inferiores ahorran material." -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "Entrante aplicado a la trayectoria de la pared exterior. Si la pared exterior es más pequeña que la tobera y se imprime a continuación de las paredes interiores, utilice este valor de desplazamiento para hacer que el agujero de la tobera se superponga a las paredes interiores del modelo en lugar de a las exteriores." +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Ángulo máximo de expansión del forro" -msgctxt "brim_location option inside" -msgid "Inside Only" -msgstr "" +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "El revestimiento superior e inferior no se expandirá cuando las superficies superior e inferior del objeto tengan un ángulo mayor que este valor. Esto evita la expansión de las pequeñas áreas de revestimiento que se crean cuando la superficie del modelo tiene una pendiente casi vertical. Un ángulo de 0° es horizontal y no provoca la extensión de ningún revestimiento exterior, mientras que un ángulo de 90 ° es vertical y provoca la extensión de todo el revestimiento exterior." -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "Del interior al exterior" +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Anchura de expansión mínima del forro" -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "Líneas de interfaz preferidas" +msgctxt "min_skin_width_for_expansion description" +msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." +msgstr "Las áreas de forro más estrechas que este valor no se expanden. Esto evita la expansión de las áreas de forro estrechas que se crean cuando la superficie del modelo tiene una inclinación casi vertical." -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "Interfaz preferida" +msgctxt "infill label" +msgid "Infill" +msgstr "Relleno" -msgctxt "prime_tower_mode option interleaved" -msgid "Interleaved" -msgstr "" +msgctxt "infill description" +msgid "Infill" +msgstr "Relleno" -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "Recuento de capas de haz entrelazado" +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Extrusor del relleno" -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "Ancho del haz entrelazado" +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir el relleno. Se emplea en la extrusión múltiple." -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "Distancia a los límites de entrelazado" +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Densidad de relleno" -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "Profundidad del entrelazado" +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "Ajusta la densidad del relleno de la impresión." -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "Orientación de estructura entrelazada" +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Distancia de línea de relleno" -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Planchar solo la capa superior" +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "Distancia entre las líneas de relleno impresas. Este ajuste se calcula por la densidad del relleno y el ancho de la línea de relleno." -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Aceleración del alisado" +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Patrón de relleno" -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Flujo de alisado" +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "Patrón del material de relleno de la impresión. El método de llenado en línea y en zigzag cambia de dirección en capas alternas para reducir los costes de material. Los patrones de rejilla, triángulo, trihexágono, cubo, octaédrico, cubo bitruncado, transversal y concéntrico se imprimen en todas las capas por completo. Los rellenos de giroide, cúbico, cúbico bitruncado y octaédrico se alternan en cada capa para lograr una distribución más uniforme de la fuerza en todas las direcciones. El relleno de rayos intenta minimizar el relleno apoyando solo la parte superior del objeto." -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Inserción de alisado" +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Rejilla" -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Impulso de alisado" +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Líneas" -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Espaciado de líneas del alisado" +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Triángulos" -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Patrón de alisado" +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Trihexagonal" -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Velocidad de alisado" +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Cúbico" -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "El origen está centrado" +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Subdivisión cúbica" -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "Es material de soporte" +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Octeto" -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "¿Es este el tipo de material que se desprende limpiamente cuando se calienta (cristalino) o el que produce largas cadenas de polímeros entrelazadas (no cristalino)?" +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Cúbico bitruncado" -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "Este material se utiliza normalmente como material de soporte durante la impresión." +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Concéntrico" -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "Use solo los contornos de las piezas, no los orificios de las piezas." +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Mantener caras desconectadas" +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Cruz" -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Altura de capa" +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "Cruz 3D" -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "X de inicio de capa" +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Giroide" -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Y de inicio de capa" +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Rayos" -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "Grosor de la capa base de la balsa. Esta debe ser una capa gruesa que se adhiera firmemente a la placa de impresión de la impresora." +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Conectar líneas de relleno" -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "Grosor de la capa intermedia de la balsa." +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "Conectar los extremos donde los patrones de relleno se juntan con la pared interior usando una línea que siga la forma de esta. Habilitar este ajuste puede lograr que el relleno se adhiera mejor a las paredes y se reduzca el efecto del relleno sobre la calidad de las superficies verticales. Deshabilitar este ajuste reduce la cantidad de material utilizado." -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Grosor de capa de las capas superiores de la balsa." +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Conectar polígonos de relleno" -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "Omitir una conexión entre líneas de soporte una vez cada N milímetros a fin de lograr que la estructura de soporte resulte más fácil de descomponer." +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "Conectar las trayectorias de polígonos cuando están próximas entre sí. Habilitar esta opción reduce considerablemente el tiempo de desplazamiento en los patrones de relleno que constan de varios polígonos cerrados." -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Izquierda" +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Direcciones de línea de relleno" + +msgctxt "infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." +msgstr "Una lista de los valores enteros de las direcciones de línea. Los elementos de esta lista se utilizan de forma secuencial a medida que las capas se utilizan y, cuando se alcanza el final, la lista vuelve a comenzar desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía que utiliza los ángulos predeterminados típicos (45 y 135 grados para las líneas y los patrones en zigzag y 45 grados para el resto de patrones)." -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Levantar el cabezal" +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "Desplazamiento del relleno sobre el eje X" -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Rayos" +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "El patrón de relleno se mueve esta distancia a lo largo del eje X." -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Ángulo del voladizo de relleno de rayos" +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Desplazamiento del relleno sobre el eje Y" -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Ángulo de recorte de relleno de rayos" +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "El patrón de relleno se mueve esta distancia a lo largo del eje Y." -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Ángulo de enderezamiento de rayos" +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Comienzo de relleno aleatorio" -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Ángulo de sujeción de relleno de rayos" +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "Determine qué línea de relleno se imprime primero. Esto evita que un segmento se convierta en el más fuerte, pero a expensas de un movimiento adicional." -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "Alcance límite de la rama" +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "Multiplicador de línea de relleno" -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "Limite la distancia que debe recorrer cada rama desde el punto que soporta. Esto puede hacer que el soporte sea más resistente, pero aumentará la cantidad de ramas (y, con ello, el uso de material y el tiempo de impresión)" +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "Multiplicar cada línea de relleno. Las líneas adicionales no se cruzan entre sí, sino que se evitan entre ellas. Esto consigue un relleno más rígido, pero incrementa el tiempo de impresión y el uso de material." -msgctxt "bv_temp_warn_limit description" -msgid "Limit on Build Volume Temperature warning for detection." -msgstr "" +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Recuento de líneas de pared adicional" -msgctxt "bv_temp_anomaly_limit description" -msgid "Limit on Build Volume temperature Anomaly for detection." -msgstr "" +msgctxt "infill_wall_line_count description" +msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "Agregar paredes adicionales alrededor del área de relleno. Estas paredes pueden hacer que las líneas del forro superior/inferior se aflojen menos, lo que significa que necesitaría menos capas de forro superior/inferior para obtener la misma calidad utilizando algo más de material." +"Puede utilizar esta función junto a la de Conectar polígonos de relleno para conectar todo el relleno en una única trayectoria de extrusión sin necesidad de desplazamientos ni retracciones si se configura correctamente." -msgctxt "print_temp_anomaly_limit description" -msgid "Limit on Print Temperature anomaly for detection." -msgstr "" +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Perímetro de la subdivisión cúbica" -msgctxt "print_temp_warn_limit description" -msgid "Limit on Print temperature warning for detection." -msgstr "" +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "Un suplemento al radio desde el centro de cada cubo cuyo fin es comprobar el contorno del modelo para decidir si este cubo debería subdividirse. Cuanto mayor sea su valor, más grueso será el perímetro de cubos pequeños junto al contorno del modelo." -msgctxt "flow_anomaly_limit description" -msgid "Limit on flow anomaly for detection." -msgstr "" +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "Porcentaje de superposición del relleno" -msgctxt "flow_warn_limit description" -msgid "Limit on the flow warning for detection." -msgstr "" +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "La cantidad de superposición entre el relleno y las paredes son un porcentaje del ancho de la línea de relleno. Una ligera superposición permite que las paredes estén firmemente unidas al relleno." -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "Limite el volumen de esta malla a lo que está dentro de otras mallas. Puede usar esto para hacer que determinadas áreas de una malla se impriman con ajustes diferentes y con un extrusor totalmente diferente." +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Superposición del relleno" -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Limitado" +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Cantidad de superposición entre el relleno y las paredes. Una ligera superposición permite que las paredes conecten firmemente con el relleno." -msgctxt "line_width label" -msgid "Line Width" -msgstr "Ancho de línea" +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "Distancia de pasada de relleno" -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Líneas" +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "Distancia de un desplazamiento insertado después de cada línea de relleno, para que el relleno se adhiera mejor a las paredes. Esta opción es similar a la superposición del relleno, pero sin extrusión y solo en un extremo de la línea de relleno." -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Líneas" +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Grosor de la capa de relleno" -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Líneas" +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "Grosor por capa de material de relleno. Este valor siempre debe ser un múltiplo de la altura de la capa y, de lo contrario, se redondea." -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Líneas" +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Pasos de relleno necesarios" -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Líneas" +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "Número de veces necesarias para reducir a la mitad la densidad del relleno a medida que se aleja de las superficies superiores. Las zonas más próximas a las superficies superiores tienen una densidad mayor, hasta alcanzar la densidad de relleno." -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Líneas" +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Altura necesaria de los pasos de relleno" -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Líneas" +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "Altura de un relleno de determinada densidad antes de cambiar a la mitad de la densidad." -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Líneas" +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Relleno antes que las paredes" -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "Imprime el relleno antes de imprimir las paredes. Si se imprimen primero las paredes, estas serán más precisas, pero los voladizos se imprimirán peor. Si se imprime primero el relleno las paredes serán más resistentes, pero el patrón de relleno a veces se nota a través de la superficie." -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Máquina" +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Área de relleno mínima" -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Profundidad de la máquina" +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "No genere áreas con un relleno inferior a este (utilice forro)." -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Polígono del cabezal de la máquina y del ventilador" +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Soporte de relleno" -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Altura de la máquina" +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "Imprimir estructuras de relleno solo cuando se deban soportar las partes superiores del modelo. Habilitar esto reduce el tiempo de impresión y el uso de material, pero ocasiona que la resistencia del objeto no sea uniforme." -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Tipo de máquina" +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Ángulo de voladizo de relleno" -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Ancho de la máquina" +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "El ángulo mínimo de los voladizos internos para los que se agrega relleno. A partir de un valor de 0 º todos los objetos estarán totalmente rellenos, a 90 º no se proporcionará ningún relleno." -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Ajustes específicos de la máquina" +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Espesor de soporte de los bordes del forro" -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Convertir voladizo en imprimible" +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "El grosor del relleno extra que soporta los bordes del forro." -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "Hace que las mallas que se tocan las unas a las otras se superpongan ligeramente. Esto mejora la conexión entre ellas." +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Capas de soporte de los bordes del forro" -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "Hace que las áreas de soporte sean más pequeñas en la parte inferior que en el voladizo." +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "El número de capas de relleno que soportan los bordes del forro." -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "Disponga un soporte en todas partes por debajo de la malla de soporte, para que no haya voladizo en la malla de soporte." +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Ángulo de sujeción de relleno de rayos" -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "La posición de preparación del extrusor se considera absoluta, en lugar de relativa a la última ubicación conocida del cabezal." +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Determina cuándo una capa de relleno de rayos tiene que soportar algo por encima de ella. Medido en el ángulo dado el espesor de una capa." -msgctxt "layer_0_z_overlap description" -msgid "" -"Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" -"It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" -msgstr "" +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Ángulo del voladizo de relleno de rayos" -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Consiga las mallas más adecuadas para la impresión 3D." +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Determina cuándo una capa de relleno de rayos tiene que soportar el modelo que está por encima. Medido en el ángulo dado el espesor." -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Ángulo de recorte de relleno de rayos" -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "Los extremos de las líneas de relleno se acortan para ahorrar material. Esta configuración es el ángulo de voladizo de los extremos de estas líneas." -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volumetric)" +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Ángulo de enderezamiento de rayos" -msgctxt "material description" +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "Las líneas de relleno se simplifican para ahorrar tiempo al imprimir. Este es el ángulo máximo permitido del voladizo sobre la longitud de la línea de relleno." + +msgctxt "material label" msgid "Material" msgstr "Material" -msgctxt "material label" +msgctxt "material description" msgid "Material" msgstr "Material" -msgctxt "material_brand label" -msgid "Material Brand" -msgstr "" +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Temperatura de impresión predeterminada" -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "GUID del material" +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "La temperatura predeterminada que se utiliza para imprimir. Debería ser la temperatura básica del material. Las demás temperaturas de impresión deberían calcularse a partir de este valor" -msgctxt "material_type label" -msgid "Material Type" -msgstr "" +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Temperatura de volumen de impresión" -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Volumen de material entre limpiezas" +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "La temperatura del entorno de impresión. Si el valor es 0, la temperatura de volumen de impresión no se ajustará." -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Distancia de peinada máxima sin retracción" +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Temperatura de impresión" -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Aceleración máxima sobre el eje X" +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "Temperatura de la impresión." -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Aceleración máxima de Y" +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Temperatura de impresión de la capa inicial" -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Aceleración máxima de Z" +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer." +msgstr "La temperatura utilizada para imprimir la primera capa." -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "Ángulo máximo de la rama" +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Temperatura de impresión inicial" -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Desviación máxima" +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "La temperatura mínima durante el calentamiento hasta alcanzar la temperatura de impresión a la cual puede comenzar la impresión." -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Desviación máxima del área de extrusión" +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Temperatura de impresión final" -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Velocidad máxima del ventilador" +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "La temperatura a la que se puede empezar a enfriar justo antes de finalizar la impresión." -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Aceleración máxima del filamento" +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Modificador de la velocidad de enfriamiento de la extrusión" -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Ángulo máximo del modelo" +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "Velocidad adicional a la que se enfría la tobera durante la extrusión. El mismo valor se utiliza para indicar la velocidad de calentamiento perdido cuando se calienta durante la extrusión." -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Área máxima del agujero en voladizo" +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Temperatura predeterminada de la placa de impresión" -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Duración máxima de estacionamiento" +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "La temperatura predeterminada que se utiliza en placa de impresión caliente. Debería ser la temperatura básica de una placa de impresión. Las demás temperaturas de impresión deberían calcularse a partir de este valor" -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Resolución máxima" +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Temperatura de la placa de impresión" -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Recuento máximo de retracciones" +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "La temperatura utilizada para la placa de impresión caliente. Si el valor es 0, la placa de impresión no se calentará." -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Ángulo máximo de expansión del forro" +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Temperatura de la placa de impresión en la capa inicial" -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Velocidad máxima E" +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "Temperatura de la placa de impresión una vez caliente en la primera capa. Si el valor es 0, la placa de impresión no se calentará en la primera capa." -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Velocidad máxima sobre el eje X" +msgctxt "material_adhesion_tendency label" +msgid "Adhesion Tendency" +msgstr "Tendencia de adherencia" -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Velocidad máxima sobre el eje Y" +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "Tendencia de adherencia de la superficie." -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Velocidad máxima sobre el eje Z" +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Energía de la superficie" -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Diámetro máximo soportado por la torre" +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Energía de la superficie." -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Resolución de desplazamiento máximo" +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Factor de escala para la compensación de la contracción" -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "Aceleración máxima del motor de la dirección X" +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "Para compensar la contracción del material a medida que se enfría, el modelo se escala con este factor." -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Aceleración máxima del motor de la dirección Y." +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Factor de escala horizontal para la compensación de la contracción" -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Aceleración máxima del motor de la dirección Z." +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "Para compensar la contracción del material al enfriarse, el modelo se escala con este factor en la dirección XY (horizontalmente)." -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "Aceleración máxima del motor del filamento." +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Factor de escala vertical para la compensación de la contracción" -msgctxt "bridge_sparse_infill_max_density description" -msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." -msgstr "La máxima densidad de relleno que se considera escasa. El forro sobre el relleno escaso se considera sin soporte y, por lo tanto, se puede tratar como un forro de puente." +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "Para compensar la contracción del material al enfriarse, el modelo se escala con este factor en la dirección Z (verticalmente)." -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "Diámetro máximo en las direcciones X/Y de una pequeña área que debe ser soportada por una torre de soporte especializada." +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Material cristalino" -msgctxt "max_extrusion_before_wipe description" -msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." -msgstr "Material máximo que puede extruirse antes de que se inicie otra limpieza de la tobera. Si este valor es inferior al volumen de material necesario en una capa, el ajuste no tiene efecto en esa capa, es decir, se limita a una limpieza por capa." +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "¿Es este el tipo de material que se desprende limpiamente cuando se calienta (cristalino) o el que produce largas cadenas de polímeros entrelazadas (no cristalino)?" -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Superponer mallas combinadas" +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Velocidad de retracción antirrezumado" -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Correcciones de malla" +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "Hasta dónde tiene que retraerse el material antes de detener el rezumado." -msgctxt "mesh_position_x label" -msgid "Mesh Position X" -msgstr "Posición X en la malla" +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Velocidad de retracción antirrezumado" -msgctxt "mesh_position_y label" -msgid "Mesh Position Y" -msgstr "Posición Y en la malla" +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "Con qué velocidad tiene que retraerse el material durante un cambio de filamento para evitar el rezumado." -msgctxt "mesh_position_z label" -msgid "Mesh Position Z" -msgstr "Posición Z en la malla" +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Posición retraída de preparación de rotura" -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Rango de procesamiento de la malla" +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "Hasta dónde puede estirarse el filamento antes de que se rompa mientras se calienta." + +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Velocidad de retracción de preparación de rotura" + +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "Con qué velocidad debe retraerse el filamento justo antes de romperse en una retracción." + +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Temperatura de preparación de rotura" + +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "La temperatura utilizada para purgar el material. Debería ser aproximadamente igual a la temperatura de impresión más alta posible." + +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Posición retraída de rotura" -msgctxt "mesh_rotation_matrix label" -msgid "Mesh Rotation Matrix" -msgstr "Matriz de rotación de la malla" +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "Hasta dónde debe retraerse el filamento para que se rompa limpiamente." -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Media" +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Velocidad de retracción de rotura" -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Ancho de molde mínimo" +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "Velocidad a la que debe retraerse el filamento para que se rompa limpiamente." -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Temperatura mínima en modo de espera" +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Temperatura de rotura" -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Longitud mínima de la pared del puente" +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "Temperatura a la que se rompe el filamento de forma limpia." -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Ancho mínimo de la línea perimetral uniforme" +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Velocidad de purga de descarga" -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Ventana de distancia mínima de extrusión" +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "La velocidad de cebado del material después de cambiar a otro material." -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Tamaño mínimo de la característica" +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Longitud de purga de descarga" -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Velocidad de alimentación mínima" +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "La cantidad de material que se va a utilizar para purgar el material que había antes en la tobera (en longitud del filamento) cuando se cambia a otro material." -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "Altura mínima para el modelo" +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Velocidad de purga del extremo del filamento" -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Área de relleno mínima" +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "La velocidad de cebado del material después de sustituir una bobina vacía por una bobina nueva del mismo material." -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Tiempo mínimo de capa" +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Longitud de purga del extremo del filamento" -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Ancho mínimo de la línea perimetral impar" +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "La cantidad de material que se va a utilizará para purgar el material que había antes en la tobera (en longitud del filamento) al sustituir una bobina vacía por una bobina nueva del mismo material." -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Circunferencia mínima de polígono" +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Duración máxima de estacionamiento" -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Anchura de expansión mínima del forro" +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "La cantidad de tiempo que el material puede mantenerse seco de forma segura." -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Velocidad mínima" +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Factor de desplazamiento sin carga" -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Área del soporte mínima" +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "Un factor que indica cuánto se comprime el filamento entre el alimentador y la cámara de la boquilla. Se utiliza para determinar cuán lejos debe avanzar el material para cambiar el filamento." -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Área de los suelos del soporte mínima" +msgctxt "material_flow label" +msgid "Flow" +msgstr "Flujo" -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Área de la interfaz de soporte mínima" +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "Compensación de flujo: la cantidad de material extruido se multiplica por este valor." -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Área de los techos del soporte mínima" +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Flujo de pared" -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Distancia X/Y mínima del soporte" +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Compensación de flujo en líneas de pared." -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Ancho mínimo de la línea perimetral delgada" +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Flujo de pared exterior" -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Volumen mínimo antes del depósito por inercia" +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "Compensación de flujo en la línea de pared más externa." -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Ancho mínimo de la línea perimetral" +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Flujo de pared o paredes interiores" -msgctxt "minimum_interface_area description" -msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Tamaño del área mínima para los polígonos de la interfaz de soporte. Los polígonos que posean un área de menor tamaño que este valor se imprimirán como soporte normal." +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "Compensación de flujo en líneas de pared para todas las líneas excepto la más externa." -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "Tamaño del área mínima para los polígonos del soporte. No se generarán polígonos que posean un área de menor tamaño que este valor." +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Flujo de la pared exterior de la superficie superior" -msgctxt "minimum_bottom_area description" -msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Tamaño del área mínima para los suelos del soporte. Los polígonos que posean un área de menor tamaño que este valor se imprimirán como soporte normal." +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Compensación de flujo en la línea de la pared exterior más externa de la superficie superior." -msgctxt "minimum_roof_area description" -msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Tamaño del área mínima para los techos del soporte. Los polígonos que posean un área de menor tamaño que este valor se imprimirán como soporte normal." +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Flujo de la pared interior de la superficie superior" -msgctxt "min_feature_size description" -msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." -msgstr "Espesor mínimo de características delgadas. Las características del modelo que sean más delgadas que este valor no se imprimirán, mientras que las características más gruesas que el tamaño mínimo de la característica se estirarán hasta el ancho mínimo de la línea perimetral." +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Compensación de flujo en las líneas de pared de la superficie superior para todas las líneas de pared excepto la más externa." -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "Ancho mínimo al que se reduce la base del área de soporte cónico. Las anchuras pequeñas pueden producir estructuras de soporte inestables." +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Flujo superior o inferior" -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Molde" +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Compensación de flujo en las líneas superiores o inferiores." -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Ángulo del molde" +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Flujo de forro de superficie superior" -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Altura del techo del molde" +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "Compensación de flujo en líneas de las áreas superiores de la impresión." -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Orden de planchado monotónico" +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Flujo de relleno" -msgctxt "raft_surface_monotonic label" -msgid "Monotonic Raft Top Surface Order" -msgstr "" +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Compensación de flujo en líneas de relleno." -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Orden monotónica de la superficie superior" +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Flujo de falda/borde" -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Orden monotónica superior e inferior" +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Compensación de flujo en líneas de falda o borde." -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "Líneas de falda múltiples sirven para preparar la extrusión mejor para modelos pequeños. Con un ajuste de 0 se desactivará la falda." +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Flujo de soporte" -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "Multiplicador del ancho de la línea de la primera capa. Si esta se aumenta, se puede mejorar la adherencia a la plataforma." +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Compensación de flujo en líneas de estructura de soporte." -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Factor de desplazamiento sin carga" +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Flujo de interfaz de soporte" -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Sin forro en huecos en Z" +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "Compensación de flujo en líneas de techo o suelo de soporte." -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Formas no tradicionales de imprimir sus modelos." +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Flujo de techo de soporte" + +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Compensación de flujo en líneas de techo de soporte." -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Ninguno" +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Flujo de suelo de soporte" -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Ninguno" +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Compensación de flujo en líneas de suelo de soporte." -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normal" +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Flujo de la torre auxiliar" -msgctxt "prime_tower_mode option normal" -msgid "Normal" -msgstr "" +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Compensación de flujo en líneas de la torre auxiliar." -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Normal" +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Flujo de capa inicial" -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "Normalmente, Cura intenta coser los pequeños agujeros de la malla y eliminar las partes de una capa con grandes agujeros. Al habilitar esta opción, se mantienen aquellas partes que no puedan coserse. Esta opción se debe utilizar como una opción de último recurso cuando todo lo demás falla para producir un GCode adecuado." +msgctxt "material_flow_layer_0 description" +msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." +msgstr "Compensación de flujo de la primera capa: la cantidad de material extruido de la capa inicial se multiplica por este valor." -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "No en el forro" +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "Flujo de pared interior de la capa inicial" -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "No en la superficie exterior" +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "Compensación de caudal en líneas de pared para todas, excepto la más exterior, pero solo para la primera capa." -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Ángulo de la tobera" +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "Flujo de pared exterior de la capa inicial" -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diámetro de la tobera" +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "Compensación de flujo en la línea de pared más externa de la primera capa." -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Áreas no permitidas para la tobera" +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "Flujo inferior de la capa inicial" -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Id. de la tobera" +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "Compensación de flujo en las líneas inferiores de la primera capa" -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Longitud de la tobera" +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Temperatura en modo de espera" -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Volumen de cebado adicional tras cambio de tobera" +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "Temperatura de la tobera cuando otra se está utilizando en la impresión." -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Velocidad de cebado del cambio de tobera" +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "Es material de soporte" -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Velocidad de retracción del cambio de tobera" +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "Este material se utiliza normalmente como material de soporte durante la impresión." -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Distancia de retracción del cambio de tobera" +msgctxt "speed label" +msgid "Speed" +msgstr "Velocidad" -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Velocidad de retracción del cambio de tobera" +msgctxt "speed description" +msgid "Speed" +msgstr "Velocidad" -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Número de extrusores" +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Velocidad de impresión" -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Número de extrusores habilitados" +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "Velocidad a la que se realiza la impresión." -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Número de capas más lentas" +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Velocidad de relleno" -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "Número de trenes extrusores habilitados y configurados en el software de forma automática" +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "Velocidad a la que se imprime el relleno." -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "Número de trenes extrusores. Un tren extrusor está formado por un alimentador, un tubo guía y una tobera." +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Velocidad de pared" -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "Número de movimientos de la tobera a lo largo del cepillo." +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "Velocidad a la que se imprimen las paredes." -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "Número de veces necesarias para reducir a la mitad la densidad del relleno a medida que se aleja de las superficies superiores. Las zonas más próximas a las superficies superiores tienen una densidad mayor, hasta alcanzar la densidad de relleno." +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Velocidad de pared exterior" -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "Número de veces necesarias para reducir a la mitad la densidad del relleno de soporte a medida que se aleja de las superficies superiores. Las zonas más próximas a las superficies superiores tienen una densidad mayor, hasta alcanzar la densidad de relleno de soporte." +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "Velocidad a la que se imprimen las paredes exteriores. Imprimir la pared exterior a una velocidad inferior mejora la calidad final del forro. Sin embargo, una gran diferencia entre la velocidad de la pared interior y de la pared exterior afectará negativamente a la calidad." -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Octeto" +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Velocidad de pared interior" -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Apagado" +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "Velocidad a la que se imprimen todas las paredes interiores. Imprimir la pared interior más rápido que la exterior reduce el tiempo de impresión. Ajustar este valor entre la velocidad de la pared exterior y la velocidad a la que se imprime el relleno puede ir bien." -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "Desplazamiento aplicado al objeto en la dirección x." +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Velocidad de la pared externa de la superficie superior" -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "Desplazamiento aplicado al objeto en la dirección y." +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "La velocidad con la que se imprimen las paredes más externas de la superficie superior." -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "Desplazamiento aplicado al objeto sobre el eje Z. Permite efectuar la operación antes conocida como «Object Sink»." +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Velocidad de la pared interna de la superficie superior" -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Desplazamiento con extrusor" +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "La velocidad a la que se imprimen las paredes internas de la superficie superior." -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "En la placa de impresión, cuando sea posible" +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Velocidad de la superficie superior del forro" -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "Sobre el modelo, en caso de que sea necesario" +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "Velocidad a la que se imprimen las capas de la superficie superior del forro." -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "De uno en uno" +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Velocidad superior/inferior" -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "Realizar un salto en Z solo al desplazarse por las partes impresas que no puede evitar el movimiento horizontal de la opción Evitar partes impresas al desplazarse." +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "Velocidad a la que se imprimen las capas superiores/inferiores." -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "Planchar únicamente la última capa de la malla. De este modo se ahorra tiempo si las capas inferiores no requieren un acabado superficial suave." +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Velocidad de soporte" -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Ángulo de la placa de rezumado" +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "Velocidad a la que se imprime la estructura de soporte. Imprimir el soporte a una mayor velocidad puede reducir considerablemente el tiempo de impresión. La calidad de superficie de la estructura de soporte no es importante, ya que se elimina después de la impresión." -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Distancia de la placa de rezumado" +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Velocidad de relleno del soporte" -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "Espaciado óptimo de ramas" +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "Velocidad a la que se rellena el soporte. Imprimir el relleno a una velocidad inferior mejora la estabilidad." -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Optimizar el orden de impresión de paredes" +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Velocidad de interfaz del soporte" -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "Optimizar el orden en el que se imprimen las paredes a fin de reducir el número de retracciones y la distancia recorrida. La mayoría de los componentes se beneficiarán si este ajuste está habilitado pero, en algunos casos, se puede tardar más, por lo que deben compararse las previsiones de tiempo de impresión con y sin optimización. La primera capa no está optimizada al elegir el borde como el tipo de adhesión de la placa de impresión." +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "Velocidad a la que se imprimen los techos y suelos del soporte. Imprimirlos a una velocidad inferior puede mejorar la calidad del voladizo." + +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Velocidad del techo del soporte" -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Diámetro exterior de la tobera" +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "Velocidad a la que se imprimen los techos del soporte. Imprimirlos a una velocidad inferior puede mejorar la calidad del voladizo." -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Aceleración de pared exterior" +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Velocidad del suelo del soporte" -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Extrusor de pared exterior" +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "Velocidad a la que se imprimen los suelos del soporte. Imprimirlos a una velocidad inferior puede mejorar la adhesión del soporte en la parte superior del modelo." -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Flujo de pared exterior" +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Velocidad de la torre auxiliar" -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Entrante en la pared exterior" +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "Velocidad a la que se imprime la torre auxiliar. Imprimir la torre auxiliar a una velocidad inferior puede conseguir más estabilidad si la adherencia entre los diferentes filamentos es insuficiente." -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "Impulso de pared exterior" +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Velocidad de desplazamiento" -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Ancho de línea de la pared exterior" +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "Velocidad a la que tienen lugar los movimientos de desplazamiento." -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Velocidad de pared exterior" +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Velocidad de capa inicial" -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Distancia de pasada de la pared exterior" +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "La velocidad de la capa inicial. Se recomienda un valor más bajo para mejorar la adherencia a la placa de impresión. No influye en las estructuras de adhesión de la placa de impresión en sí, como el borde y la balsa." -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Las paredes exteriores de diferentes islas en la misma capa se imprimen en secuencia. Cuando está habilitado, la cantidad de cambios de flujo se limita porque las paredes se imprimen de a una a la vez; cuando está deshabilitado, se reduce el número de desplazamientos entre islas porque las paredes en las mismas islas se agrupan." +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Velocidad de impresión de la capa inicial" -msgctxt "brim_location option outside" -msgid "Outside Only" -msgstr "" +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "Velocidad de impresión de la capa inicial. Se recomienda un valor más bajo para mejorar la adherencia a la placa de impresión." -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "Del exterior al interior" +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Velocidad de desplazamiento de la capa inicial" -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Ángulo de voladizo de pared" +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "Velocidad de impresión de la capa inicial. Se recomienda un valor más bajo para evitar que las partes ya impresas se separen de la placa de impresión. El valor de este ajuste se puede calcular automáticamente a partir del ratio entre la velocidad de desplazamiento y la velocidad de impresión." -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Velocidad de voladizo de pared" +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Velocidad de falda/borde" -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "Los voladizos de pared se imprimirán a este porcentaje de su velocidad de impresión normal." +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "Velocidad a la que se imprimen la falda y el borde. Normalmente, esto se hace a la velocidad de la capa inicial, pero a veces es posible que se prefiera imprimir la falda o el borde a una velocidad diferente." -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Pausa después de no haber retracción." +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Velocidad del salto en Z" -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "Porcentaje de velocidad del ventilador que se emplea en la impresión de las paredes y el forro del puente." +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "Velocidad a la que se realiza el movimiento vertical en la dirección Z para los saltos en Z. Suele ser inferior a la velocidad de impresión porque la placa de impresión o el puente de la máquina es más difícil de desplazar." -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "Velocidad del ventilador en porcentaje que se utiliza para imprimir la segunda capa del forro del puente." +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Número de capas más lentas" -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "Porcentaje para la velocidad de ventilador que se utiliza al imprimir las áreas del forro que se encuentran inmediatamente encima del soporte. Si utiliza una velocidad alta para el ventilador, será más fácil retirar el soporte." +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "Las primeras capas se imprimen más lentamente que el resto del modelo para obtener una mejor adhesión a la placa de impresión y mejorar la tasa de éxito global de las impresiones. La velocidad aumenta gradualmente en estas capas." -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "Velocidad del ventilador en porcentaje que se utiliza para imprimir la tercera capa del forro del puente." +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Proporción de ecualización de flujo" -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "Se filtran los polígonos en capas segmentadas que tienen una circunferencia más pequeña que esta. Los valores más pequeños suponen una resolución de malla mayor a costa de un tiempo de segmentación. Está indicado, sobre todo, para impresoras SLA y modelos 3D muy pequeños con muchos detalles." +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "Factor de corrección del ancho de extrusión basado en la velocidad. Al 0 % de velocidad de movimiento se mantiene constante a la velocidad de impresión. Al 100 % de velocidad de movimiento se ajusta para mantener el flujo constante (en mm³/s), es decir, las líneas cuyo ancho es la mitad del ancho normal se imprimen el doble de rápido y las líneas que tienen el doble de ancho se imprimen a la mitad de la velocidad. Un valor superior al 100 % puede ayudar a compensar la mayor presión necesaria para extruir líneas anchas." -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "Ángulo de rama preferido" +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Activar control de aceleración" -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "Evite la transición de ida y vuelta entre una pared extra y una menos. Este margen amplía el rango de anchos de línea después de [Ancho mínimo de línea perimetral - Margen, 2 * Ancho mínimo de línea perimetral + Margen]. Aumentar este margen reduce el número de transiciones, lo que reduce el número de arranques y paradas de la extrusión y el tiempo de recorrido. No obstante, las grandes variaciones en el ancho de la línea pueden provocar problemas de subextrusión o sobreextrusión." +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "Permite ajustar la aceleración del cabezal de impresión. Aumentar las aceleraciones puede reducir el tiempo de impresión a costa de la calidad de impresión." -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Aceleración de la torre auxiliar" +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Habilitar aceleración de desplazamiento" -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Base" -msgstr "Base de la torre de cebado" +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "Utilice una tasa de aceleración independiente para los movimientos de desplazamiento. Si está deshabilitada, los movimientos de desplazamiento utilizarán el valor de aceleración de la línea impresa en su destino." -msgctxt "prime_tower_base_height label" -msgid "Prime Tower Base Height" -msgstr "Altura de la base de la torre de cebado" +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Aceleración de la impresión" -msgctxt "prime_tower_base_size label" -msgid "Prime Tower Base Size" -msgstr "Tamaño de la base de la torre de cebado" +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "Aceleración a la que se realiza la impresión." -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Slope" -msgstr "Pendiente de la Base de la Torre de Cebado" +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Aceleración del relleno" -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Flujo de la torre auxiliar" +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "Aceleración a la que se imprime el relleno." -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "Impulso de la torre auxiliar" +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Aceleración de la pared" -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Ancho de línea de la torre auxiliar" +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "Aceleración a la que se imprimen las paredes." -msgctxt "prime_tower_max_bridging_distance label" -msgid "Prime Tower Maximum Bridging Distance" -msgstr "" +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Aceleración de pared exterior" -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Volumen mínimo de la torre auxiliar" +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "Aceleración a la que se imprimen las paredes exteriores." -msgctxt "prime_tower_raft_base_line_spacing label" -msgid "Prime Tower Raft Line Spacing" -msgstr "Espaciado de las líneas del raft de la torre de cebado" +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Aceleración de pared interior" -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Tamaño de la torre auxiliar" +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "Aceleración a la que se imprimen las paredes interiores." -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Velocidad de la torre auxiliar" +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Aceleración de la superficie externa superior de la pared" -msgctxt "prime_tower_mode label" -msgid "Prime Tower Type" -msgstr "" +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "La aceleración con la que se imprimen las paredes más externas de la superficie superior." -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "Posición de la torre auxiliar sobre el eje X" +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Aceleración de la superficie interna superior de la pared" -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Posición de la torre auxiliar sobre el eje Y" +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "La aceleración con la que se imprimen las paredes internas de la superficie superior." -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Aceleración de la impresión" +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Aceleración de la superficie superior del forro" -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Impulso de impresión" +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "Aceleración a la que se imprimen las capas de la superficie superior del forro." -msgctxt "ppr label" -msgid "Print Process Reporting" -msgstr "" +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Aceleración superior/inferior" + +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "Aceleración a la que se imprimen las capas superiores/inferiores." -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Secuencia de impresión" +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Aceleración de soporte" -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Velocidad de impresión" +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "Aceleración a la que se imprime la estructura de soporte." -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Imprimir paredes finas" +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Aceleración de relleno de soporte" -msgctxt "brim_location description" -msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." -msgstr "" +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "Aceleración a la que se imprime el relleno de soporte." -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "Imprimir una torre junto a la impresión que sirve para preparar el material tras cada cambio de tobera." +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Aceleración de interfaz de soporte" -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "Imprimir estructuras de relleno solo cuando se deban soportar las partes superiores del modelo. Habilitar esto reduce el tiempo de impresión y el uso de material, pero ocasiona que la resistencia del objeto no sea uniforme." +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "Aceleración a la que se imprimen los techos y suelos del soporte. Imprimirlos a una aceleración inferior puede mejorar la calidad del voladizo." -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprime colocando las líneas de planchado de modo que siempre se superpongan a las líneas adyacentes en una dirección. Esto lleva un poco más de tiempo de impresión, pero hace que las superficies planas tengan un aspecto más consistente." +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Aceleración del techo del soporte" -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "Imprimir modelos como un molde que se pueden fundir para obtener un modelo que se parezca a los modelos de la placa de impresión." +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "Aceleración a la que se imprimen los techos del soporte. Imprimirlos a una aceleración inferior puede mejorar la calidad del voladizo." -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "Imprime las piezas del modelo que son horizontalmente más finas que el tamaño de la tobera." +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Aceleración del suelo del soporte" -msgctxt "raft_surface_monotonic description" -msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." -msgstr "" +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "Aceleración a la que se imprimen los suelos del soporte. Imprimirlos a una aceleración inferior puede mejorar la adhesión de soporte en la parte superior del modelo." -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "Velocidad de impresión que se utiliza para imprimir la segunda capa del forro del puente." +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Aceleración de la torre auxiliar" -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "Velocidad de impresión que se utiliza para imprimir la tercera capa del forro del puente." +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "Aceleración a la que se imprime la torre auxiliar." -msgctxt "print_temp_anomaly_limit label" -msgid "Print temperature Limit" -msgstr "" +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Aceleración de desplazamiento" -msgctxt "print_temp_warn_limit label" -msgid "Print temperature Warning" -msgstr "" +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "Aceleración a la que se realizan los movimientos de desplazamiento." -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "Imprime el relleno antes de imprimir las paredes. Si se imprimen primero las paredes, estas serán más precisas, pero los voladizos se imprimirán peor. Si se imprime primero el relleno las paredes serán más resistentes, pero el patrón de relleno a veces se nota a través de la superficie." +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Aceleración de la capa inicial" -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprime colocando las líneas de la superficie superior de modo que siempre se superpongan a las líneas adyacentes en una dirección. Esto lleva un poco más de tiempo de impresión, pero hace que las superficies planas tengan un aspecto más consistente." +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "Aceleración de la capa inicial." -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprime colocando las líneas superior e inferior de modo que siempre se superpongan a las líneas adyacentes en una dirección. Esto lleva un poco más de tiempo de impresión, pero hace que las superficies planas tengan un aspecto más consistente." +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Aceleración de impresión de la capa inicial" -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Temperatura de impresión" +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "Aceleración durante la impresión de la capa inicial." -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Temperatura de impresión de la capa inicial" +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Aceleración de desplazamiento de la capa inicial" -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "La impresión de la línea más interna de la falda con varias capas facilita su eliminación." +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Aceleración de los movimientos de desplazamiento de la capa inicial." -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "Imprime una pared adicional cada dos capas. De este modo el relleno se queda atrapado entre estas paredes adicionales, lo que da como resultado impresiones más sólidas." +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Aceleración de falda/borde" -msgctxt "resolution label" -msgid "Quality" -msgstr "Calidad" +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "Aceleración a la que se imprimen la falda y el borde. Normalmente, esto se hace a la aceleración de la capa inicial, pero a veces es posible que se prefiera imprimir la falda o el borde a una aceleración diferente." -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Cúbico bitruncado" +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Activar control de impulso" -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Balsa" +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "Permite ajustar el impulso del cabezal de impresión cuando la velocidad del eje X o Y cambia. Aumentar el impulso puede reducir el tiempo de impresión a costa de la calidad de impresión." -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Cámara de aire de la balsa" +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Activar impulso de desplazamiento" -msgctxt "raft_base_margin label" -msgid "Raft Base Extra Margin" -msgstr "" +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "Utilice una tasa de impulso independiente para los movimientos de desplazamiento. Si está deshabilitada, los movimientos de desplazamiento utilizarán el valor de impulso de la línea impresa en su destino." -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Extrusor base de la balsa" +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Impulso de impresión" -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Velocidad del ventilador de la base de la balsa" +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "Cambio en la velocidad instantánea máxima del cabezal de impresión." -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Espacio de la línea base de la balsa" +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Impulso de relleno" -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Ancho de la línea base de la balsa" +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprime el relleno." -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Aceleración de la impresión de la base de la balsa" +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Impulso de pared" -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Impulso de impresión de base de la balsa" +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen las paredes." -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Velocidad de impresión de la base de la balsa" +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "Impulso de pared exterior" -msgctxt "raft_base_smoothing label" -msgid "Raft Base Smoothing" -msgstr "" +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen las paredes exteriores." -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Grosor de la base de la balsa" +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Impulso de pared interior" -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Recuento de paredes base de balsa" +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen las paredes interiores." -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Margen adicional de la balsa" +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Sacudida de la pared interior de la superficie superior" -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Velocidad del ventilador de la balsa" +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "El cambio máximo de velocidad instantánea con el que se imprimen las paredes interiores de la superficie superior." -msgctxt "raft_interface_margin label" -msgid "Raft Middle Extra Margin" -msgstr "" +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Sacudida de la pared exterior más externa de la superficie superior" -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Extrusor medio de la balsa" +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "El cambio máximo de velocidad instantánea con el que se imprimen las paredes exteriores más externas de la superficie superior." -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Velocidad del ventilador de balsa intermedia" +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Impulso de la superficie superior del forro" -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Capas medias de la balsa" +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprime la capa de la superficie superior del forro." + +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Impulso superior/inferior" -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Ancho de la línea intermedia de la balsa" +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen las capas superiores/inferiores." -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Aceleración de la impresión de la balsa intermedia" +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Impulso de soporte" -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Impulso de impresión de balsa intermedia" +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprime la estructura de soporte." -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Velocidad de impresión de la balsa intermedia" +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Impulso de relleno de soporte" -msgctxt "raft_interface_smoothing label" -msgid "Raft Middle Smoothing" -msgstr "" +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprime el relleno de soporte." -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Espaciado intermedio de la balsa" +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Impulso de interfaz de soporte" -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Grosor intermedio de la balsa" +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen los techos y suelos del soporte." -msgctxt "raft_interface_wall_count label" -msgid "Raft Middle Wall Count" -msgstr "" +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Impulso del techo del soporte" -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Aceleración de impresión de la balsa" +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen los techos del soporte." -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Impulso de impresión de la balsa" +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Impulso del suelo del soporte" -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Velocidad de impresión de la balsa" +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen los suelos del soporte." -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Suavizado de la balsa" +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "Impulso de la torre auxiliar" -msgctxt "raft_surface_margin label" -msgid "Raft Top Extra Margin" -msgstr "" +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprime la torre auxiliar." -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Extrusor superior de la balsa" +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Impulso de desplazamiento" -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Velocidad del ventilador de balsa superior" +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "Cambio en la velocidad instantánea máxima a la que realizan los movimientos de desplazamiento." -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Grosor de las capas superiores de la balsa" +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Impulso de capa inicial" -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Capas superiores de la balsa" +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "Cambio en la velocidad instantánea máxima de la capa inicial." -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Ancho de las líneas superiores de la balsa" +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Impulso de impresión de capa inicial" -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Aceleración de la impresión de la balsa superior" +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "Cambio en la velocidad instantánea máxima durante la impresión de la capa inicial." -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Impulso de impresión de balsa superior" +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Impulso de desplazamiento de capa inicial" -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Velocidad de impresión de la balsa superior" +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Aceleración de los movimientos de desplazamiento de la capa inicial." -msgctxt "raft_surface_smoothing label" -msgid "Raft Top Smoothing" -msgstr "" +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Impulso de falda/borde" -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Espaciado superior de la balsa" +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen la falta y el borde." -msgctxt "raft_surface_wall_count label" -msgid "Raft Top Wall Count" -msgstr "" +msgctxt "travel label" +msgid "Travel" +msgstr "Desplazamiento" -msgctxt "raft_wall_count label" -msgid "Raft Wall Count" -msgstr "" +msgctxt "travel description" +msgid "travel" +msgstr "desplazamiento" -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Aleatoria" +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Habilitar la retracción" -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "Comienzo de relleno aleatorio" +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Retrae el filamento cuando la tobera se mueve sobre un área no impresa." -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "Determine qué línea de relleno se imprime primero. Esto evita que un segmento se convierta en el más fuerte, pero a expensas de un movimiento adicional." +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Retracción en el cambio de capa" -msgctxt "magic_fuzzy_skin_enabled description" -msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." -msgstr "Fluctúa aleatoriamente durante la impresión de la pared exterior, de modo que la superficie tiene un aspecto desigual y difuso." +msgctxt "retract_at_layer_change description" +msgid "Retract the filament when the nozzle is moving to the next layer." +msgstr "Retrae el filamento cuando la tobera se mueve a la siguiente capa." -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Rectangular" +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Distancia de retracción" -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "Velocidad normal del ventilador" +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "Longitud del material retraído durante un movimiento de retracción." -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Velocidad normal del ventilador a altura" +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Velocidad de retracción" -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Velocidad normal del ventilador por capa" +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "Velocidad a la que se retrae el filamento y se prepara durante un movimiento de retracción." -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "Umbral de velocidad normal/máxima del ventilador" +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Velocidad de retracción" -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Extrusión relativa" +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "Velocidad a la que se retrae el filamento durante un movimiento de retracción." -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Eliminar todos los agujeros" +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Velocidad de cebado de retracción" -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Eliminar primeras capas vacías" +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "Velocidad a la que se prepara el filamento durante un movimiento de retracción." -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Eliminar el cruce de mallas" +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Cantidad de cebado adicional de retracción" -msgctxt "raft_base_remove_inside_corners label" -msgid "Remove Raft Base Inside Corners" -msgstr "" +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "Algunos materiales pueden rezumar durante el movimiento de un desplazamiento, lo cual se puede corregir aquí." -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Quitar las esquinas internas de la balsa" +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Desplazamiento mínimo de retracción" -msgctxt "raft_interface_remove_inside_corners label" -msgid "Remove Raft Middle Inside Corners" -msgstr "" +msgctxt "retraction_min_travel description" +msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." +msgstr "Distancia mínima de desplazamiento necesario para que no se produzca retracción alguna. Esto ayuda a conseguir un menor número de retracciones en un área pequeña." -msgctxt "raft_surface_remove_inside_corners label" -msgid "Remove Raft Top Inside Corners" -msgstr "" +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Recuento máximo de retracciones" -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "Eliminar las zonas en las que se superponen varias mallas. Puede utilizarse esta opción cuando se superponen objetos combinados de dos materiales." +msgctxt "retraction_count_max description" +msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." +msgstr "Este ajuste limita el número de retracciones que ocurren dentro de la ventana de distancia mínima de extrusión. Dentro de esta ventana se ignorarán las demás retracciones. Esto evita retraer repetidamente el mismo trozo de filamento, ya que esto podría aplanar el filamento y causar problemas de desmenuzamiento." -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "Eliminar (si las hubiera) las capas vacías por debajo de la primera capa impresa. Deshabilitar este ajuste puede hacer que aparezcan primeras capas vacías si el ajuste de tolerancia de segmentación está establecido en Exclusiva o Medio." +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Ventana de distancia mínima de extrusión" -msgctxt "raft_base_remove_inside_corners description" -msgid "Remove inside corners from the raft base, causing the raft to become convex." -msgstr "" +msgctxt "retraction_extrusion_window description" +msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." +msgstr "Ventana en la que se aplica el recuento máximo de retracciones. Este valor debe ser aproximadamente el mismo que la distancia de retracción, lo que limita efectivamente el número de veces que una retracción pasa por el mismo parche de material." -msgctxt "raft_interface_remove_inside_corners description" -msgid "Remove inside corners from the raft middle part, causing the raft to become convex." -msgstr "" +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Modo Peinada" -msgctxt "raft_surface_remove_inside_corners description" -msgid "Remove inside corners from the raft top part, causing the raft to become convex." -msgstr "" +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "La opción de peinada mantiene la tobera dentro de las áreas ya impresas al desplazarse. Esto ocasiona movimientos de desplazamiento ligeramente más largos, pero reduce la necesidad de realizar retracciones. Si se desactiva la opción de peinada, el material se retraerá y la tobera se moverá en línea recta hasta el siguiente punto. Otra posibilidad es evitar la peinada en áreas de forro superiores/inferiores o peinar solo en el relleno." -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Le permite eliminar las esquinas internas de la balsa, haciéndola convexa." +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Apagado" -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "Elimina los agujeros en cada capa y mantiene solo la forma exterior. Esto ignorará cualquier geometría interna invisible. Sin embargo, también ignora los agujeros de la capa que pueden verse desde arriba o desde abajo." +msgctxt "retraction_combing option all" +msgid "All" +msgstr "Todo" -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "No en la superficie exterior" -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "No en el forro" -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "Reemplaza la parte más externa del patrón superior/inferior con un número de líneas concéntricas. Mediante el uso de una o dos líneas mejora los techos que comienzan en el material de relleno." +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "Sobre el relleno" -msgctxt "ppr description" -msgid "Reporting events that go out of set thresholds" -msgstr "" +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Distancia de peinada máxima sin retracción" -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "Preferencia de apoyo" +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "Si es mayor que cero, los movimientos de desplazamiento de peinada que sean superiores a esta distancia utilizarán retracción. Si se establece como cero, no hay un máximo y los movimientos de peinada no utilizarán la retracción." msgctxt "travel_retract_before_outer_wall label" msgid "Retract Before Outer Wall" msgstr "Retracción antes de la pared exterior" -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Retracción en el cambio de capa" - -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Retrae el filamento cuando la tobera se mueve sobre un área no impresa." - -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Retrae el filamento cuando la tobera se mueve sobre un área no impresa." - -msgctxt "retract_at_layer_change description" -msgid "Retract the filament when the nozzle is moving to the next layer." -msgstr "Retrae el filamento cuando la tobera se mueve a la siguiente capa." - -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Distancia de retracción" - -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Cantidad de cebado adicional de retracción" +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "Retraer siempre al desplazarse para empezar una pared exterior." -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Desplazamiento mínimo de retracción" +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Evitar partes impresas al desplazarse" -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Velocidad de cebado de retracción" +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "La tobera evita las partes ya impresas al desplazarse. Esta opción solo está disponible cuando se ha activado la opción de peinada." -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Velocidad de retracción" +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Evitar soportes al desplazarse" -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Velocidad de retracción" +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "La tobera evita los soportes ya impresos al desplazarse. Esta opción solo está disponible cuando se ha activado la opción de peinada." -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Derecha" +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Distancia para evitar al desplazarse" -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "Escale la velocidad del ventilador a 0-1" +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "Distancia entre la tobera y las partes ya impresas, cuando se evita durante movimientos de desplazamiento." -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "Escale la velocidad del ventilador para que esté entre 0 y 1 en lugar de entre 0 y 256." +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "X de inicio de capa" -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Factor de escala para la compensación de la contracción" +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "Coordenada X de la posición cerca de donde se encuentra la pieza para comenzar a imprimir cada capa." -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "La escena tiene mallas de soporte" +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Y de inicio de capa" -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Preferencia de esquina de costura" +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "Coordenada Y de la posición cerca de donde se encuentra la pieza para comenzar a imprimir cada capa." -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "Establecer secuencia de impresión manualmente" +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Salto en Z en la retracción" -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "Establece la altura del parabrisas. Seleccione esta opción para imprimir el parabrisas a la altura completa del modelo o a una altura limitada." +msgctxt "retraction_hop_enabled description" +msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "Siempre que se realiza una retracción, la placa de impresión se baja para crear holgura entre la tobera y la impresión. Impide que la tobera golpee la impresión durante movimientos de desplazamiento, reduciendo las posibilidades de alcanzar la impresión de la placa de impresión." -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Ajustes utilizados en la impresión con varios extrusores." +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Salto en Z solo en las partes impresas" -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "Ajustes que únicamente se utilizan si CuraEngine no se ejecuta desde la interfaz de Cura." +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "Realizar un salto en Z solo al desplazarse por las partes impresas que no puede evitar el movimiento horizontal de la opción Evitar partes impresas al desplazarse." -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Retracción inicial de tobera compartida" +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Altura del salto en Z" -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Esquina más pronunciada" +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Diferencia de altura cuando se realiza un salto en Z." -msgctxt "shell description" -msgid "Shell" -msgstr "Perímetro" +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Salto en Z tras cambio de extrusor" -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Más corta" +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "Cuando la máquina cambia de un extrusor a otro, la placa de impresión se baja para crear holgura entre la tobera y la impresión. Esto impide que el material rezumado quede fuera de la impresión." -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Mostrar versiones de la máquina" +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Salto en Z tras altura de cambio de extrusor" -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Capas de soporte de los bordes del forro" +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "Diferencia de altura cuando se realiza un salto en Z después de un cambio de extrusor." -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Espesor de soporte de los bordes del forro" +msgctxt "cooling label" +msgid "Cooling" +msgstr "Refrigeración" -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Distancia de expansión del forro" +msgctxt "cooling description" +msgid "Cooling" +msgstr "Refrigeración" -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Superposición del forro" +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Activar refrigeración de impresión" -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Porcentaje de superposición del forro" +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "Habilita ventiladores de refrigeración mientras se imprime. Los ventiladores mejoran la calidad de la impresión en capas con menores tiempos de capas y puentes o voladizos." -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Anchura de retirada del forro" +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Velocidad del ventilador" -msgctxt "min_skin_width_for_expansion description" -msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." -msgstr "Las áreas de forro más estrechas que este valor no se expanden. Esto evita la expansión de las áreas de forro estrechas que se crean cuando la superficie del modelo tiene una inclinación casi vertical." +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "Velocidad a la que giran los ventiladores de refrigeración de impresión." -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "Omitir una de cada N líneas de conexión para que la estructura de soporte se descomponga fácilmente." +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "Velocidad normal del ventilador" -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "Omitir algunas conexiones de línea de soporte para que la estructura de soporte sea más fácil de descomponer. Este ajuste es aplicable al patrón de relleno del soporte en zigzag." +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "Velocidad a la que giran los ventiladores antes de alcanzar el umbral. Cuando una capa se imprime más rápido que el umbral, la velocidad del ventilador se inclina gradualmente hacia la velocidad máxima del ventilador." -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Falda" +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Velocidad máxima del ventilador" -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Distancia de falda" +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "Velocidad a la que giran los ventiladores en el tiempo mínimo de capa. La velocidad del ventilador aumenta gradualmente entre la velocidad normal y máxima del ventilador cuando se alcanza el umbral." -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "Altura de la falda" +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "Umbral de velocidad normal/máxima del ventilador" -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Recuento de líneas de falda" +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "Tiempo de capa que establece el umbral entre la velocidad normal y la máxima del ventilador. Las capas que se imprimen más despacio que este tiempo utilizan la velocidad de ventilador regular. Para las capas más rápidas el ventilador aumenta la velocidad gradualmente hacia la velocidad máxima del ventilador." -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Aceleración de falda/borde" +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Velocidad inicial del ventilador" -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Extrusor de falda o borde" +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "Velocidad a la que giran los ventiladores al comienzo de la impresión. En las capas posteriores, la velocidad del ventilador aumenta gradualmente hasta la capa correspondiente a la velocidad normal del ventilador a altura." -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Flujo de falda/borde" +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Velocidad normal del ventilador a altura" -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Impulso de falda/borde" +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "Altura a la que giran los ventiladores en la velocidad normal del ventilador. En las capas más bajas, la velocidad del ventilador aumenta gradualmente desde la velocidad inicial del ventilador hasta la velocidad normal del ventilador." -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Ancho de línea de falda/borde" +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Velocidad normal del ventilador por capa" -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Longitud mínima de falda/borde" +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "Capa en la que los ventiladores giran a velocidad normal del ventilador. Si la velocidad normal del ventilador a altura está establecida, este valor se calcula y redondea a un número entero." -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Velocidad de falda/borde" +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Tiempo mínimo de capa" -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Tolerancia de segmentación" +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "Tiempo mínimo empleado en una capa. Esto fuerza a la impresora a ir más despacio, para emplear al menos el tiempo establecido aquí en una capa. Esto permite que el material impreso se enfríe adecuadamente antes de imprimir la siguiente capa. Es posible que el tiempo para cada capa sea inferior al tiempo mínimo si se desactiva Levantar el cabezal o si la velocidad mínima se ve modificada de otro modo." -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Velocidad de la capa inicial de partes pequeñas" +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Velocidad mínima" -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Longitud máxima de pequeñas partes" +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "Velocidad de impresión mínima, a pesar de ir más despacio debido al tiempo mínimo de capa. Cuando la impresora vaya demasiado despacio, la presión de la tobera puede ser demasiado baja y resultar en una impresión de mala calidad." -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Velocidad de pequeñas partes" +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Levantar el cabezal" -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Tamaño máximo de agujero pequeño" +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "Cuando se alcanza la velocidad mínima debido al tiempo mínimo de capa, levante el cabezal de la impresión y espere el tiempo adicional hasta que se alcance el tiempo mínimo de capa." msgctxt "cool_min_temperature label" msgid "Small Layer Printing Temperature" msgstr "Temperatura de impresión de capas pequeñas" -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "Zonas pequeñas superiores/inferiores en superficie" +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "Reduzca gradualmente a esta temperatura cuando imprima a velocidades bajas debido al tiempo mínimo de capa." -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "Anchura superior/​inferior pequeña" +msgctxt "support label" +msgid "Support" +msgstr "Soporte" -msgctxt "small_feature_speed_factor_0 description" -msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "Las pequeñas partes de la primera capa se imprimirán a este porcentaje de su velocidad de impresión normal. Una impresión más lenta puede mejorar la adhesión y la precisión." +msgctxt "support description" +msgid "Support" +msgstr "Soporte" -msgctxt "small_feature_speed_factor description" -msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "Las pequeñas partes se imprimirán a este porcentaje de su velocidad de impresión normal. Una impresión más lenta puede mejorar la adhesión y la precisión." +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Generar soporte" -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "Las zonas pequeñas superiores/inferiores se rellenan con paredes en lugar de con el patrón predeterminado superior/inferior. Esto ayuda a evitar movimientos bruscos. Está desactivado para la capa superior (expuesta al aire) por defecto. (Consulte: \"Zonas pequeñas superiores/inferiores en superficie\")." +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "Generar estructuras para soportar piezas del modelo que tengan voladizos. Sin estas estructuras, estas piezas se romperían durante la impresión." -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "Borde inteligente" +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Extrusor del soporte" -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Costura inteligente" +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir el soporte. Se emplea en la extrusión múltiple." -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Contornos espiralizados suaves" +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Extrusor del relleno de soporte" -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "Suaviza los contornos espiralizados para reducir la visibilidad de la costura Z (la costura Z debería ser apenas visible en la impresora pero seguirá siendo visible en la vista de capas). Tenga en cuenta que la suavización tenderá a desdibujar detalles finos de la superficie." +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir el relleno del soporte. Se emplea en la extrusión múltiple." -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "Algunos materiales pueden rezumar durante el movimiento de un desplazamiento, lo cual se puede corregir aquí." +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Extrusor del soporte de la primera capa" -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "Algunos materiales pueden rezumar durante el movimiento de un desplazamiento de limpieza, lo cual se puede corregir aquí." +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir la primera capa del relleno de soporte. Se emplea en la extrusión múltiple." -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Modos especiales" +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Extrusor de la interfaz de soporte" -msgctxt "speed description" -msgid "Speed" -msgstr "Velocidad" +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir los techos y suelos del soporte. Se emplea en la extrusión múltiple." -msgctxt "speed label" -msgid "Speed" -msgstr "Velocidad" +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Extrusor del techo del soporte" -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "Velocidad para mover el eje Z durante el salto." +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir los techos del soporte. Se emplea en la extrusión múltiple." -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Espiralizar el contorno exterior" +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Extrusor del suelo del soporte" -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "La opción de espiralizar suaviza el movimiento en Z del borde exterior. Esto creará un incremento en Z constante durante toda la impresión. Esta función convierte un modelo sólido en una impresión de una sola pared con una parte inferior sólida. Esta función solo se debería habilitar cuando cada capa contenga una única pieza." +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir los suelos del soporte. Se emplea en la extrusión múltiple." -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Temperatura en modo de espera" +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Estructura de soporte" -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "Iniciar GCode" +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "Elige entre las técnicas disponibles para generar soporte. El soporte \"Normal\" crea una estructura de soporte directamente debajo de las partes en voladizo y lleva estas áreas hacia abajo. El soporte en \"Árbol\" crea ramas en las áreas en voladizo que sostienen el modelo al final de estas ramas y permite que las ramas se arrastren alrededor del modelo para sostenerlo tanto como sea posible en la placa de impresión." -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "Punto de partida de cada trayectoria en una capa. Cuando las trayectorias en capas consecutivas comienzan en el mismo punto, puede aparecer una costura vertical en la impresión. Cuando se alinean cerca de una ubicación especificada por el usuario, es más fácil eliminar la costura. Si se colocan aleatoriamente, las inexactitudes del inicio de las trayectorias se notarán menos. Si se toma la trayectoria más corta, la impresión será más rápida." +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Normal" -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Pasos por milímetro (E)" +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Árbol" -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Pasos por milímetro (X)" +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "Ángulo máximo de la rama" -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Pasos por milímetro (Y)" +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "El ángulo máximo de las ramas mientras crecen alrededor del modelo. Utilice un ángulo más pequeño para hacerlas más verticales y más estables. Utilice un ángulo mayor para abarcar más." + +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "Diámetro de la rama" + +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "El diámetro de las ramas más finas del soporte en árbol. Cuanto más gruesas sean las ramas, más robustas serán. Las ramas que estén cerca de la base serán más gruesas que esto." + +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "Diámetro del tronco" + +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "El diámetro de las ramas más anchas del soporte en árbol. Un tronco más grueso es más resistente, pero uno más delgado ocupa menos espacio en la placa de impresión." -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Pasos por milímetro (Z)" +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "Ángulo del diámetro de la rama" -msgctxt "support description" -msgid "Support" -msgstr "Soporte" +msgctxt "support_tree_branch_diameter_angle description" +msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." +msgstr "El ángulo del diámetro de las ramas es gradualmente más alto según se acercan a la base. Un ángulo de 0 ocasionará que las ramas tengan un grosor uniforme en toda su longitud. Un poco de ángulo puede aumentar la estabilidad del soporte en árbol." -msgctxt "support label" -msgid "Support" -msgstr "Soporte" +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Colocación del soporte" -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Aceleración de soporte" +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "Tocando la placa de impresión" -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Distancia inferior del soporte" +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "En todos sitios" -msgctxt "support_bottom_wall_count label" -msgid "Support Bottom Wall Line Count" -msgstr "Recuento de líneas de pared de la base de soporte" +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "Ángulo de rama preferido" -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Recuento de líneas del borde de soporte" +msgctxt "support_tree_angle_slow description" +msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." +msgstr "El ángulo para las ramas de preferencia cuando no tienen que evitar el modelo. Utilice un ángulo más pequeño para hacerlas más verticales y más estables. Utilice un ángulo mayor para que las ramas se fusionen más rápido." -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Ancho del borde de soporte" +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "Aumento del diámetro para el modelo" -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Recuento de líneas de pedazos del soporte" +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "El diámetro máximo de una rama que debe conectarse al modelo puede aumentar al fusionarse con ramas que podrían llegar a la placa de impresión. Al aumentarlo, se reduce el tiempo de impresión, pero el área de soporte que descansa sobre el modelo aumenta" -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Tamaño de los pedazos de soporte" +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "Altura mínima para el modelo" -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "Densidad del soporte" +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "Qué altura debe tener una rama si se coloca sobre el modelo. Evita la formación de pequeñas gotas de soporte. Esta configuración se ignora cuando una rama está aguantando un techo de soporte." -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Prioridad de las distancias del soporte" +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "Diámetro de la capa inicial" -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Extrusor del soporte" +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "Diámetro que cada rama trata de alcanzar al llegar a la placa de impresión. Mejora la adherencia a la plataforma." -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Aceleración del suelo del soporte" +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "Densidad de la rama" -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Densidad del suelo del soporte" +msgctxt "support_tree_top_rate description" +msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "Ajusta la densidad de la estructura de soporte utilizada para generar las puntas de las ramas. Un valor más alto da como resultado mejores voladizos, pero los soportes son más difíciles de eliminar. Utilice el techo de soporte para valores muy altos o asegúrese de que la densidad del soporte sea igual de alta en la parte superior." -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Extrusor del suelo del soporte" +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "Diámetro de la punta" -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Flujo de suelo de soporte" +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "El diámetro de la parte superior de la punta de las ramas de soporte en árbol." -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Expansión horizontal de los suelos de soporte" +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "Alcance límite de la rama" -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Impulso del suelo del soporte" +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "Limite la distancia que debe recorrer cada rama desde el punto que soporta. Esto puede hacer que el soporte sea más resistente, pero aumentará la cantidad de ramas (y, con ello, el uso de material y el tiempo de impresión)" -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Direcciones de línea del suelo de soporte" +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "Espaciado óptimo de ramas" -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Distancia de línea del suelo de soporte" +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "Una recomendación de la distancia a la que pueden situarse las ramas de los puntos que sostienen. Las ramas pueden infringir este valor para llegar a su destino (placa de impresión o una pieza plana del modelo). Reducir este valor hará que el soporte sea más resistente, pero aumentará la cantidad de ramas (y, con ello, el uso de material y el tiempo de impresión)" -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Ancho de línea del suelo de soporte" +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "Preferencia de apoyo" -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Patrón del suelo del soporte" +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "La colocación preferida para las estructuras de soporte. Si las estructuras no se pueden poner en la colocación preferida, se pondrán en otro lugar, incluso si eso significa situarlas sobre el modelo." -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Velocidad del suelo del soporte" +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "En la placa de impresión, cuando sea posible" -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Grosor del suelo del soporte" +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "Sobre el modelo, en caso de que sea necesario" -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Flujo de soporte" +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Ángulo de voladizo del soporte" -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Expansión horizontal del soporte" +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "Ángulo mínimo de los voladizos para los que se agrega soporte. A partir de un valor de 0º todos los voladizos tendrán soporte, a 90º no se proporcionará ningún soporte." -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Aceleración de relleno de soporte" +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Patrón del soporte" -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Extrusor del relleno de soporte" +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "Patrón de las estructuras del soporte de la impresión. Las diferentes opciones disponibles dan como resultado un soporte robusto o fácil de retirar." -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Impulso de relleno de soporte" +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Líneas" -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Grosor de la capa de relleno de soporte" +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Rejilla" -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Dirección de línea de relleno de soporte" +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Triángulos" -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Velocidad de relleno del soporte" +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Concéntrico" -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Aceleración de interfaz de soporte" +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "Densidad de la interfaz de soporte" +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Cruz" -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Extrusor de la interfaz de soporte" +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Giroide" -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Flujo de interfaz de soporte" +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Recuento de líneas de pared del soporte" -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Expansión horizontal de la interfaz de soporte" +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "El número de paredes con las que el soporte rodea el relleno. Añadir una pared puede hacer que la impresión de soporte sea más fiable y pueda soportar mejor los voladizos pero aumenta el tiempo de impresión y el material utilizado." -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Impulso de interfaz de soporte" +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Recuento de líneas de pared de la interfaz de soporte" -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Direcciones de línea de interfaz de soporte" +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "El número de paredes con las que rodear la interfaz de soporte. Añadir una pared puede hacer que la copia impresa del soporte sea más fiable y pueda sostener mejor los voladizos, pero aumentará el tiempo de impresión y el material utilizado." -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Ancho de línea de interfaz de soporte" +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Recuento de líneas de pared del techo de soporte" -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Patrón de la interfaz de soporte" +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "El número de paredes con las que rodear el techo de la interfaz de soporte. Añadir una pared puede hacer que la copia impresa del soporte sea más fiable y pueda sostener mejor los voladizos, pero aumentará el tiempo de impresión y el material utilizado." + +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "Recuento de líneas de pared de la base de soporte" -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "Prioridad de la interfaz de soporte" +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "El número de paredes con las que rodear el suelo de la interfaz de soporte. Añadir una pared puede hacer que la copia impresa del soporte sea más fiable y pueda sostener mejor los voladizos, pero aumentará el tiempo de impresión y el material utilizado." -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Velocidad de interfaz del soporte" +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Conectar líneas del soporte" -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Grosor de la interfaz del soporte" +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "Unión de los extremos de las líneas de soporte. Al habilitar este ajuste, puede conseguir que el soporte sea más sólido y reducir la infraextrusión, pero se necesitará más material." -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "Recuento de líneas de pared de la interfaz de soporte" +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Conectar zigzags del soporte" -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Impulso de soporte" +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "Conectar los zigzags. Esto aumentará la resistencia de la estructura del soporte de zigzag." -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "Distancia de unión del soporte" +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "Densidad del soporte" + +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Ajusta la densidad de la estructura del soporte. Un valor superior da como resultado mejores voladizos pero los soportes son más difíciles de retirar." msgctxt "support_line_distance label" msgid "Support Line Distance" msgstr "Distancia de línea del soporte" -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Ancho de línea de soporte" +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "Distancia entre las líneas de estructuras del soporte impresas. Este ajuste se calcula por la densidad del soporte." -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Malla de soporte" +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "Distancia de línea del soporte de la capa inicial" -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Ángulo de voladizo del soporte" +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "Distancia entre las líneas de estructuras del soporte de la capa inicial impresas. Este ajuste se calcula por la densidad del soporte." -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Patrón del soporte" +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Dirección de línea de relleno de soporte" -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Colocación del soporte" +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "Una lista de los valores enteros de las direcciones de línea que se van a utilizar. Los elementos de la lista se usan secuencialmente a medida que avanzan las capas y cuando se alcanza el final de la lista, comienza de nuevo desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía, lo que significa que se usa el ángulo predeterminado de 0 grados." -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Aceleración del techo del soporte" +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Habilitar borde de soporte" -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Densidad del techo del soporte" +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "Genera un borde dentro de las zonas de relleno del soporte de la primera capa. Este borde se imprime por debajo del soporte y no a su alrededor. Si habilita esta configuración aumentará la adhesión del soporte a la placa de impresión." -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Extrusor del techo del soporte" +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Ancho del borde de soporte" -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Flujo de techo de soporte" +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "Anchura del borde de impresión que se imprime por debajo del soporte. Una anchura de soporte amplia mejora la adhesión a la placa de impresión, pero requieren material adicional." -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Expansión horizontal de los techos del soporte" +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Recuento de líneas del borde de soporte" -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Impulso del techo del soporte" +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "Número de líneas utilizadas para el borde de soporte. Más líneas de borde mejoran la adhesión a la placa de impresión, pero requieren material adicional." -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Direcciones de línea del techo de soporte" +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Distancia en Z del soporte" -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Distancia de línea del techo del soporte" +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "Distancia desde la parte superior/inferior de la estructura de soporte hasta la impresión. Este espacio proporciona la holgura necesaria para remover los soportes después de imprimir el modelo. La capa de soporte más cercana al modelo podría ser una fracción de las capas regulares." -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Ancho de línea del techo de soporte" +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Distancia superior del soporte" -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Patrón del techo del soporte" +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "Distancia desde la parte superior del soporte a la impresión." -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Velocidad del techo del soporte" +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Distancia inferior del soporte" -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "Grosor del techo del soporte" +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "Distancia de la impresión hasta la parte inferior del soporte. Ten en cuenta que esto se redondea al siguiente altura de capa." -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "Recuento de líneas de pared del techo de soporte" +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "Distancia X/Y del soporte" -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Velocidad de soporte" +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "Distancia de la estructura del soporte desde la impresión en las direcciones X/Y." + +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Prioridad de las distancias del soporte" + +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "Elija si quiere que la distancia X/Y del soporte prevalezca sobre la distancia Z del soporte o viceversa. Si X/Y prevalece sobre Z, la distancia X/Y puede separar el soporte del modelo, lo que afectaría a la distancia Z real con respecto al voladizo. Esta opción puede desactivarse si la distancia X/Y no se aplica a los voladizos." + +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y sobre Z" + +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z sobre X/Y" + +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Distancia X/Y mínima del soporte" + +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "Distancia de la estructura de soporte desde el voladizo en las direcciones X/Y." msgctxt "support_bottom_stair_step_height label" msgid "Support Stair Step Height" msgstr "Altura del escalón de la escalera del soporte" +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "Altura de los escalones de la parte inferior de la escalera del soporte que descansa sobre el modelo. Un valor más bajo hace que el soporte sea difícil de retirar pero valores demasiado altos pueden producir estructuras del soporte inestables. Configúrelo en cero para desactivar el comportamiento de escalera." + msgctxt "support_bottom_stair_step_width label" msgid "Support Stair Step Maximum Width" msgstr "Ancho máximo del escalón de la escalera del soporte" +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "Ancho máximo de los escalones de la parte inferior de la escalera del soporte que descansa sobre el modelo. Un valor más bajo hace que el soporte sea difícil de retirar pero valores demasiado altos pueden producir estructuras del soporte inestables." + msgctxt "support_bottom_stair_step_min_slope label" msgid "Support Stair Step Minimum Slope Angle" msgstr "Ángulo de pendiente mínimo del escalón de la escalera de soporte" -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Estructura de soporte" +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "La pendiente mínima de la zona para un efecto del escalón de la escalera de soporte. Los valores más bajos deberían facilitar la extracción del soporte en pendientes poco profundas, pero los valores muy bajos pueden dar resultados realmente contradictorios en otras partes del modelo." -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Distancia superior del soporte" +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "Distancia de unión del soporte" -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Recuento de líneas de pared del soporte" +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "Distancia máxima entre las estructuras del soporte en las direcciones X/Y. Cuando las estructuras separadas están más cerca entre sí que este valor, se combinan en una." -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "Distancia X/Y del soporte" +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Expansión horizontal del soporte" -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Distancia en Z del soporte" +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "Cantidad de desplazamiento aplicado a todos los polígonos de cada capa. Los valores positivos pueden suavizar las áreas del soporte y producir un soporte más robusto." + +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Grosor de la capa de relleno de soporte" + +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "Grosor por capa de material de relleno de soporte. Este valor siempre debe ser un múltiplo de la altura de la capa; de lo contrario, se redondea." + +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Escalones de relleno de soporte" + +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "Número de veces necesarias para reducir a la mitad la densidad del relleno de soporte a medida que se aleja de las superficies superiores. Las zonas más próximas a las superficies superiores tienen una densidad mayor, hasta alcanzar la densidad de relleno de soporte." + +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Altura necesaria de los escalones de relleno de soporte" + +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "Altura del relleno de soporte de una determinada densidad antes de cambiar a la mitad de la densidad." + +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Área del soporte mínima" + +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "Tamaño del área mínima para los polígonos del soporte. No se generarán polígonos que posean un área de menor tamaño que este valor." + +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Habilitar interfaz del soporte" + +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "Genera una gruesa interfaz entre el modelo y el soporte. De esta forma, se crea un forro en la parte superior del soporte, donde se imprime el modelo, y en la parte inferior del soporte, donde se apoya el modelo." -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "Líneas de soporte preferidas" +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Habilitar techo del soporte" -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "Soporte preferido" +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "Genere una placa densa de material entre la parte superior del soporte y el modelo. Esto creará un forro entre el modelo y el soporte." -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Velocidad del ventilador para forro con soporte" +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Habilitar suelo del soporte" -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Superficie" +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "Genere una placa densa de material entre la parte inferior del soporte y el modelo. Esto creará un forro entre el modelo y el soporte." -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "Energía de la superficie" +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Grosor de la interfaz del soporte" -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Modo de superficie" +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "Grosor de la interfaz del soporte donde toca con el modelo, ya sea en la parte superior o inferior." -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "Tendencia de adherencia de la superficie." +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "Grosor del techo del soporte" -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Energía de la superficie." +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "Grosor de los techos del soporte. Este valor controla el número de capas densas en la parte superior del soporte, donde apoya el modelo." -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "Intercambie el orden de impresión de las líneas más internas y del segundo borde más interno. De ese modo se mejora la eliminación del borde." +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Grosor del suelo del soporte" -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "Cambiar la malla a la que pertenecerán los volúmenes que se cruzan en cada capa, de forma que las mallas superpuestas se entrelacen. Desactivar esta opción dará lugar a que una de las mallas reciba todo el volumen de la superposición y que este se elimine de las demás mallas." +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "Grosor de los suelos del soporte. Este valor controla el número de capas densas que se imprimen en las partes superiores de un modelo, donde apoya el soporte." -msgctxt "adaptive_layer_height_threshold description" -msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." -msgstr "Distancia horizontal objetivo entre dos capas adyacentes. Si se reduce este ajuste, se tendrán que utilizar capas más finas para acercar más los bordes de las capas." +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Densidad de la interfaz de soporte" -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "Coordenada X de la posición cerca de donde se encuentra la pieza para comenzar a imprimir cada capa." +msgctxt "support_interface_density description" +msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Ajusta la densidad de los techos y suelos de la estructura de soporte. Un valor superior da como resultado mejores voladizos pero los soportes son más difíciles de retirar." -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "Coordenada X de la posición cerca de donde se comienza a imprimir cada parte en una capa." +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Densidad del techo del soporte" -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Coordenada X de la posición en la que la tobera se coloca al inicio de la impresión." +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Densidad de los techos de la estructura de soporte. Un valor superior da como resultado mejores voladizos pero los soportes son más difíciles de retirar." -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "Coordenada Y de la posición cerca de donde se encuentra la pieza para comenzar a imprimir cada capa." +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Distancia de línea del techo del soporte" -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "Coordenada Y de la posición cerca de donde se comienza a imprimir cada parte en una capa." +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "Distancia entre las líneas de techo de soporte impresas. Este ajuste se calcula por la densidad del techo del soporte pero se puede ajustar de forma independiente." -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Coordenada Y de la posición en la que la tobera se coloca al inicio de la impresión." +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Densidad del suelo del soporte" -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Coordenada Z de la posición en la que la tobera queda preparada al inicio de la impresión." +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "Densidad de los suelos de la estructura de soporte. Un valor superior da como resultado una mejor adhesión del soporte en la parte superior del modelo." -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "Aceleración durante la impresión de la capa inicial." +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Distancia de línea del suelo de soporte" -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "Aceleración de la capa inicial." +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "Distancia entre las líneas de suelo de soporte impresas. Este ajuste se calcula por la densidad del suelo del soporte pero se puede ajustar de forma independiente." -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Aceleración de los movimientos de desplazamiento de la capa inicial." +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Patrón de la interfaz de soporte" -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Aceleración de los movimientos de desplazamiento de la capa inicial." +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "Patrón con el que se imprime la interfaz de soporte con el modelo." -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "Aceleración a la que se imprimen las paredes interiores." +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Líneas" -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "Aceleración a la que se imprime el relleno." +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Rejilla" -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "La aceleración a la que se produce el alisado." +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Triángulos" -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "Aceleración a la que se realiza la impresión." +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Concéntrico" -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "Aceleración a la que se imprime la capa base de la balsa." +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "Aceleración a la que se imprimen los suelos del soporte. Imprimirlos a una aceleración inferior puede mejorar la adhesión de soporte en la parte superior del modelo." +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Patrón del techo del soporte" -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "Aceleración a la que se imprime el relleno de soporte." +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "Patrón con el que se imprimen los techos del soporte." -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "Aceleración a la que se imprime la capa intermedia de la balsa." +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Líneas" -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "Aceleración a la que se imprimen las paredes exteriores." +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Rejilla" -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "Aceleración a la que se imprime la torre auxiliar." +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Triángulos" -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "Aceleración a la que se imprime la balsa." +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Concéntrico" -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "Aceleración a la que se imprimen los techos y suelos del soporte. Imprimirlos a una aceleración inferior puede mejorar la calidad del voladizo." +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "Aceleración a la que se imprimen los techos del soporte. Imprimirlos a una aceleración inferior puede mejorar la calidad del voladizo." +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Patrón del suelo del soporte" -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "Aceleración a la que se imprimen la falda y el borde. Normalmente, esto se hace a la aceleración de la capa inicial, pero a veces es posible que se prefiera imprimir la falda o el borde a una aceleración diferente." +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "Patrón con el que se imprimen los suelos del soporte." -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "Aceleración a la que se imprime la estructura de soporte." +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Líneas" -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "Aceleración a la que se imprimen las capas superiores de la balsa." +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Rejilla" -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "La aceleración con la que se imprimen las paredes internas de la superficie superior." +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Triángulos" -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "La aceleración con la que se imprimen las paredes más externas de la superficie superior." +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concéntrico" -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "Aceleración a la que se imprimen las paredes." +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "Aceleración a la que se imprimen las capas de la superficie superior del forro." +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Área de la interfaz de soporte mínima" + +msgctxt "minimum_interface_area description" +msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Tamaño del área mínima para los polígonos de la interfaz de soporte. Los polígonos que posean un área de menor tamaño que este valor se imprimirán como soporte normal." -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "Aceleración a la que se imprimen las capas superiores/inferiores." +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Área de los techos del soporte mínima" -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "Aceleración a la que se realizan los movimientos de desplazamiento." +msgctxt "minimum_roof_area description" +msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Tamaño del área mínima para los techos del soporte. Los polígonos que posean un área de menor tamaño que este valor se imprimirán como soporte normal." -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "Cantidad de material (relativa a la línea del forro normal) que se extruye durante el alisado. Dejar la tobera llena permite rellenar algunas grietas de la superficie, pero llenarla demasiado puede provocar la sobrextrusión y afectar a la superficie." +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Área de los suelos del soporte mínima" -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "La cantidad de superposición entre el relleno y las paredes son un porcentaje del ancho de la línea de relleno. Una ligera superposición permite que las paredes estén firmemente unidas al relleno." +msgctxt "minimum_bottom_area description" +msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Tamaño del área mínima para los suelos del soporte. Los polígonos que posean un área de menor tamaño que este valor se imprimirán como soporte normal." -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "Cantidad de superposición entre el relleno y las paredes. Una ligera superposición permite que las paredes conecten firmemente con el relleno." +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Expansión horizontal de la interfaz de soporte" -msgctxt "switch_extruder_retraction_amount description" -msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." -msgstr "Distancia de la retracción al cambiar los extrusores. Utilice el valor 0 para que no haya retracción. Por norma general, este valor debe ser igual a la longitud de la zona de calentamiento." +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "Cantidad de desplazamiento aplicado a los polígonos de la interfaz de soporte." -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "Ángulo entre el plano horizontal y la parte cónica que hay justo encima de la punta de la tobera." +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Expansión horizontal de los techos del soporte" -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "Ángulo del techo superior de una torre. Un valor más alto da como resultado techos de torre en punta, un valor más bajo da como resultado techos de torre planos." +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "Cantidad de desplazamiento aplicado a los techos del soporte." -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "Ángulo del voladizo de las paredes exteriores creado para el molde. 0º hará el perímetro exterior del molde vertical, mientras que 90º hará el exterior del modelo seguido del contorno del modelo." +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Expansión horizontal de los suelos de soporte" -msgctxt "support_tree_branch_diameter_angle description" -msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." -msgstr "El ángulo del diámetro de las ramas es gradualmente más alto según se acercan a la base. Un ángulo de 0 ocasionará que las ramas tengan un grosor uniforme en toda su longitud. Un poco de ángulo puede aumentar la estabilidad del soporte en árbol." +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "Cantidad de desplazamiento aplicado a los suelos del soporte." -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "Ángulo de inclinación del soporte cónico. Donde 0 grados es vertical y 90 grados es horizontal. Cuanto más pequeños son los ángulos, más robusto es el soporte, pero consta de más material. Los ángulos negativos hacen que la base del soporte sea más ancha que la parte superior." +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "Prioridad de la interfaz de soporte" -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "Densidad media de los puntos introducidos en cada polígono en una capa. Tenga en cuenta que los puntos originales del polígono se descartan, así que una baja densidad produce una reducción de la resolución." +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "Cómo interactuarán la interfaz y el soporte en caso de superposición. Actualmente, solo implantado para techos de soporte." -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "Distancia media entre los puntos aleatorios introducidos en cada segmento de línea. Tenga en cuenta que los puntos originales del polígono se descartan, así que un suavizado alto produce una reducción de la resolución. Este valor debe ser mayor que la mitad del grosor del forro difuso." +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "Soporte preferido" -msgctxt "material_brand description" -msgid "The brand of material used." -msgstr "" +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "Interfaz preferida" -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "Aceleración predeterminada del movimiento del cabezal de impresión." +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "Líneas de soporte preferidas" -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "La temperatura predeterminada que se utiliza para imprimir. Debería ser la temperatura básica del material. Las demás temperaturas de impresión deberían calcularse a partir de este valor" +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "Líneas de interfaz preferidas" -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "La temperatura predeterminada que se utiliza en placa de impresión caliente. Debería ser la temperatura básica de una placa de impresión. Las demás temperaturas de impresión deberían calcularse a partir de este valor" +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "Ambos se solapan" -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Densidad de la capa de forro del puente. Un valor inferior a 100 aumentará los huecos entre las líneas del forro." +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Direcciones de línea de interfaz de soporte" -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "Densidad de los suelos de la estructura de soporte. Un valor superior da como resultado una mejor adhesión del soporte en la parte superior del modelo." +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Una lista de los valores enteros de las direcciones de línea que se van a utilizar. Los elementos de la lista se usan secuencialmente a medida que avanzan las capas y cuando se alcanza el final de la lista, comienza de nuevo desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía, lo que significa que se utilizan los ángulos estándar (que varían entre 45 y 135 grados si las interfaces son bastante gruesas o de 90 grados en otro caso)." -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Densidad de los techos de la estructura de soporte. Un valor superior da como resultado mejores voladizos pero los soportes son más difíciles de retirar." +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Direcciones de línea del techo de soporte" -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Densidad de la segunda capa de forro del puente. Un valor inferior a 100 aumentará los huecos entre las líneas del forro." +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Una lista de los valores enteros de las direcciones de línea que se van a utilizar. Los elementos de la lista se usan secuencialmente a medida que avanzan las capas y cuando se alcanza el final de la lista, comienza de nuevo desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía, lo que significa que se utilizan los ángulos estándar (que varían entre 45 y 135 grados si las interfaces son bastante gruesas o de 90 grados en otro caso)." -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Densidad de la tercera capa de forro del puente. Un valor inferior a 100 aumentará los huecos entre las líneas del forro." +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Direcciones de línea del suelo de soporte" -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "Profundidad (dimensión sobre el eje Y) del área de impresión." +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Una lista de los valores enteros de las direcciones de línea que se van a utilizar. Los elementos de la lista se usan secuencialmente a medida que avanzan las capas y cuando se alcanza el final de la lista, comienza de nuevo desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía, lo que significa que se utilizan los ángulos estándar (que varían entre 45 y 135 grados si las interfaces son bastante gruesas o de 90 grados en otro caso)." -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "Diámetro de una torre especial." +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Alteración de velocidad del ventilador" -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "El diámetro de las ramas más finas del soporte en árbol. Cuanto más gruesas sean las ramas, más robustas serán. Las ramas que estén cerca de la base serán más gruesas que esto." +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "Al habilitar esta opción, la velocidad del ventilador de enfriamiento de impresión cambia para las áreas de forro que se encuentran inmediatamente encima del soporte." -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "El diámetro de la parte superior de la punta de las ramas de soporte en árbol." +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Velocidad del ventilador para forro con soporte" -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "El diámetro de la rueda que dirige el material hacia el alimentador." +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "Porcentaje para la velocidad de ventilador que se utiliza al imprimir las áreas del forro que se encuentran inmediatamente encima del soporte. Si utiliza una velocidad alta para el ventilador, será más fácil retirar el soporte." -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "El diámetro de las ramas más anchas del soporte en árbol. Un tronco más grueso es más resistente, pero uno más delgado ocupa menos espacio en la placa de impresión." +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Usar torres" -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "La diferencia de altura de la siguiente altura de capa en comparación con la anterior." +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "Usa torres especializadas como soporte de pequeñas áreas de voladizo. Estas torres tienen un diámetro mayor que la región que soportan. El diámetro de las torres disminuye cerca del voladizo, formando un techo." -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "Distancia entre las líneas del alisado." +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Diámetro de la torre" -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "Distancia entre la tobera y las partes ya impresas, cuando se evita durante movimientos de desplazamiento." +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "Diámetro de una torre especial." -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "Distancia entre las líneas de balsa para la capa base de la balsa. Un amplio espaciado facilita la retirada de la balsa de la placa de impresión." +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Diámetro máximo soportado por la torre" -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "Distancia entre las líneas de la balsa para la capa intermedia de la balsa. La espaciado del centro debería ser bastante amplio, pero lo suficientemente denso como para soportar las capas superiores de la balsa." +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "Diámetro máximo en las direcciones X/Y de una pequeña área que debe ser soportada por una torre de soporte especializada." -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "Distancia entre las líneas de la balsa para las capas superiores de la balsa. La separación debe ser igual a la ancho de línea para producir una superficie sólida." +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Ángulo del techo de la torre" -msgctxt "prime_tower_raft_base_line_spacing description" -msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "La distancia entre las líneas del raft para la capa única del raft de la torre de cebado. Un espaciado amplio facilita la eliminación del raft de la placa de construcción." +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "Ángulo del techo superior de una torre. Un valor más alto da como resultado techos de torre en punta, un valor más bajo da como resultado techos de torre planos." -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "La distancia del límite entre los modelos para generar una estructura entrelazada, medida en celdas. Un número demasiado bajo de celdas provocará una adhesión deficiente." +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Malla de soporte desplegable" -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "Distancia desde el modelo hasta la línea del borde exterior. Un borde mayor mejora la adhesión a la plataforma de impresión, pero también reduce el área de impresión efectiva." +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "Disponga un soporte en todas partes por debajo de la malla de soporte, para que no haya voladizo en la malla de soporte." -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "La distancia desde el exterior de un modelo en el que no se generarán estructuras entrelazadas, medida en celdas." +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "La escena tiene mallas de soporte" -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "Distancia desde la punta de la tobera que transfiere calor al filamento." +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "Hay mallas de soporte presentes en la escena. Esta configuración está controlada por Cura." -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "La distancia a la que los forros inferiores se expanden en el relleno. Los valores superiores hacen que el forro se adhiera mejor al patrón de relleno y que el forro se adhiera mejor a las paredes de la capa inferior. Los valores inferiores ahorran material." +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Adherencia de la placa de impresión" -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "La distancia a la que los forros se expanden en el relleno. Los valores superiores hacen que el forro se adhiera mejor al patrón de relleno y que las paredes de las capas vecinas se adhieran mejor al forro. Los valores inferiores ahorran material." +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Adherencia" -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "La distancia a la que los forros superiores se expanden en el relleno. Los valores superiores hacen que el forro se adhiera mejor al patrón de relleno y que las paredes de la capa superior se adhieran mejor al forro. Los valores inferiores ahorran material." +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "Activar gotas de cebado" + +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "Si cebar el filamento con una gota antes de imprimir. Al activar este ajuste se garantiza que el extrusor tendrá material listo en la tobera antes de imprimir. La impresión de borde o falda puede actuar como cebado también, en este caso ahorrará tiempo al desactivar este ajuste." -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "La distancia para mover el cabezal hacia adelante y hacia atrás a lo largo del cepillo." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posición de preparación del extrusor sobre el eje X" -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "Los extremos de las líneas de relleno se acortan para ahorrar material. Esta configuración es el ángulo de voladizo de los extremos de estas líneas." +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Coordenada X de la posición en la que la tobera se coloca al inicio de la impresión." -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "Velocidad adicional a la que se enfría la tobera durante la extrusión. El mismo valor se utiliza para indicar la velocidad de calentamiento perdido cuando se calienta durante la extrusión." +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posición de preparación del extrusor sobre el eje Y" -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir la primera capa del relleno de soporte. Se emplea en la extrusión múltiple." +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Coordenada Y de la posición en la que la tobera se coloca al inicio de la impresión." -msgctxt "raft_base_extruder_nr description" -msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir la primera capa de la balsa. Se emplea en la extrusión múltiple." +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Tipo adherencia de la placa de impresión" -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir los suelos del soporte. Se emplea en la extrusión múltiple." +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "Opciones diferentes que ayudan a mejorar tanto la extrusión como la adherencia a la placa de impresión. El borde agrega una zona plana de una sola capa alrededor de la base del modelo para impedir que se deforme. La balsa agrega una rejilla gruesa con un techo por debajo del modelo. La falda es una línea impresa alrededor del modelo, pero que no está conectada al modelo." -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir el relleno del soporte. Se emplea en la extrusión múltiple." +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Falda" -msgctxt "raft_interface_extruder_nr description" -msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir la capa media de la balsa. Se emplea en la extrusión múltiple." +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Borde" -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir los techos y suelos del soporte. Se emplea en la extrusión múltiple." +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Balsa" -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir los techos del soporte. Se emplea en la extrusión múltiple." +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Ninguno" -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir la falda o el borde. Se emplea en la extrusión múltiple." +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Extrusor de adherencia de la placa de impresión" msgctxt "adhesion_extruder_nr description" msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." msgstr "El tren extrusor que se utiliza para imprimir la falda/borde/balsa. Se emplea en la extrusión múltiple." -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir el soporte. Se emplea en la extrusión múltiple." - -msgctxt "raft_surface_extruder_nr description" -msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir la capa o capas superiores de la balsa. Se emplea en la extrusión múltiple." - -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir el relleno. Se emplea en la extrusión múltiple." - -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir las paredes interiores. Se emplea en la extrusión múltiple." +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Extrusor de falda o borde" -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir la pared exterior. Se emplea en la extrusión múltiple." +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir la falda o el borde. Se emplea en la extrusión múltiple." -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir el forro superior e inferior. Se emplea en la extrusión múltiple." +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Extrusor base de la balsa" -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir el nivel superior del forro. Se emplea en la extrusión múltiple." +msgctxt "raft_base_extruder_nr description" +msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir la primera capa de la balsa. Se emplea en la extrusión múltiple." -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir paredes. Se emplea en la extrusión múltiple." +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Extrusor medio de la balsa" -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "Velocidad del ventilador para la capa base de la balsa." +msgctxt "raft_interface_extruder_nr description" +msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir la capa media de la balsa. Se emplea en la extrusión múltiple." -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "Velocidad del ventilador para la capa intermedia de la balsa." +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Extrusor superior de la balsa" -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "Velocidad del ventilador para la balsa." +msgctxt "raft_surface_extruder_nr description" +msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir la capa o capas superiores de la balsa. Se emplea en la extrusión múltiple." -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "Velocidad del ventilador para las capas superiores de la balsa." +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Recuento de líneas de falda" -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "La ubicación del archivo de una imagen de la que los valores de brillo determinan la densidad mínima en la ubicación correspondiente en el relleno de la impresión." +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "Líneas de falda múltiples sirven para preparar la extrusión mejor para modelos pequeños. Con un ajuste de 0 se desactivará la falda." -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "La ubicación del archivo de una imagen de la que los valores de brillo determinan la densidad mínima en la ubicación correspondiente del soporte." +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "Altura de la falda" -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "Las primeras capas se imprimen más lentamente que el resto del modelo para obtener una mejor adhesión a la placa de impresión y mejorar la tasa de éxito global de las impresiones. La velocidad aumenta gradualmente en estas capas." +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "La impresión de la línea más interna de la falda con varias capas facilita su eliminación." -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "Hueco entre la capa final de la balsa y la primera capa del modelo. Solo la primera capa se eleva según este valor para reducir la unión entre la capa de la balsa y el modelo y que sea más fácil despegar la balsa." +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Distancia de falda" -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "Altura (dimensión sobre el eje Z) del área de impresión." +msgctxt "skirt_gap description" +msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "La distancia horizontal entre la falda y la primera capa de la impresión." +"Se trata de la distancia mínima. Múltiples líneas de falda se extenderán hacia el exterior a partir de esta distancia." -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "Altura por encima de las piezas horizontales del modelo del que imprimir el molde." +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Longitud mínima de falda/borde" -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "Altura a la que giran los ventiladores en la velocidad normal del ventilador. En las capas más bajas, la velocidad del ventilador aumenta gradualmente desde la velocidad inicial del ventilador hasta la velocidad normal del ventilador." +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "La longitud mínima de la falda o el borde. Si el número de líneas de falda o borde no alcanza esta longitud, se agregarán más líneas de falda o borde hasta alcanzar esta longitud mínima. Nota: Si el número de líneas está establecido en 0, esto se ignora." -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "Diferencia de altura entre la punta de la tobera y el sistema del puente (ejes X e Y)." +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Ancho del borde" -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "Diferencia de altura entre la punta de la tobera y la parte más baja del cabezal de impresión." +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "Distancia desde el modelo hasta la línea del borde exterior. Un borde mayor mejora la adhesión a la plataforma de impresión, pero también reduce el área de impresión efectiva." -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "Diferencia de altura cuando se realiza un salto en Z después de un cambio de extrusor." +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Recuento de líneas de borde" -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Diferencia de altura cuando se realiza un salto en Z." +msgctxt "brim_line_count description" +msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." +msgstr "Número de líneas utilizadas para un borde. Más líneas de borde mejoran la adhesión a la plataforma de impresión, pero también reducen el área de impresión efectiva." -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "Diferencia de altura cuando se realiza un salto en Z." +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Distancia del borde" -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "Altura de cada capa en mm. Los valores más altos producen impresiones más rápidas con una menor resolución, los valores más bajos producen impresiones más lentas con una mayor resolución." +msgctxt "brim_gap description" +msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." +msgstr "La distancia horizontal entre la primera línea de borde y el contorno de la primera capa de la impresión. Un pequeño orificio puede facilitar la eliminación del borde al tiempo que proporciona ventajas térmicas." -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "Altura de un relleno de determinada densidad antes de cambiar a la mitad de la densidad." +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Sustituir soporte por borde" -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "Altura del relleno de soporte de una determinada densidad antes de cambiar a la mitad de la densidad." +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "Aplica la impresión de un borde alrededor del modelo, aunque en esa posición debiera estar el soporte. Sustituye algunas áreas de la primera capa de soporte por áreas de borde." -msgctxt "interlocking_beam_layer_count description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "La altura de los haces de la estructura entrelazada, medida en número de capas. Cuantas menos capas, mayor resistencia, pero más susceptible a los defectos." +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "Ubicación del borde" -msgctxt "interlocking_orientation description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "La altura de los haces de la estructura entrelazada, medida en número de capas. Cuantas menos capas, mayor resistencia, pero más susceptible a los defectos." +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "Imprima un borde en el exterior del modelo, en el interior o en ambos. Dependiendo del modelo, esto ayuda a reducir la cantidad de borde que tendrá que retirar después, al tiempo que garantiza una correcta adherencia de la cama." -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "Altura de capa inicial en mm. Una capa inicial más gruesa se adhiere a la placa de impresión con mayor facilidad." +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "Solo exterior" -msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "La altura de la base de la torre de cebado. Aumentar este valor resultará en una torre de cebado más robusta porque la base será más ancha. Si esta configuración es demasiado baja, la torre de cebado no tendrá una base resistente." +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "Solo interior" -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "Altura de los escalones de la parte inferior de la escalera del soporte que descansa sobre el modelo. Un valor más bajo hace que el soporte sea difícil de retirar pero valores demasiado altos pueden producir estructuras del soporte inestables. Configúrelo en cero para desactivar el comportamiento de escalera." +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "En todas partes" -msgctxt "brim_gap description" -msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." -msgstr "La distancia horizontal entre la primera línea de borde y el contorno de la primera capa de la impresión. Un pequeño orificio puede facilitar la eliminación del borde al tiempo que proporciona ventajas térmicas." +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "Borde, evitar margen" -msgctxt "skirt_gap description" -msgid "" -"The horizontal distance between the skirt and the first layer of the print.\n" -"This is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "" -"La distancia horizontal entre la falda y la primera capa de la impresión.\n" -"Se trata de la distancia mínima. Múltiples líneas de falda se extenderán hacia el exterior a partir de esta distancia." +msgctxt "brim_inside_margin description" +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "Un borde alrededor de un modelo puede tocar a otro modelo donde no lo desee. Esto elimina todo el borde dentro de esta distancia de los modelos sin borde." -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "Las líneas de relleno se simplifican para ahorrar tiempo al imprimir. Este es el ángulo máximo permitido del voladizo sobre la longitud de la línea de relleno." +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "Borde inteligente" -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "El patrón de relleno se mueve esta distancia a lo largo del eje X." +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "Intercambie el orden de impresión de las líneas más internas y del segundo borde más interno. De ese modo se mejora la eliminación del borde." -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "El patrón de relleno se mueve esta distancia a lo largo del eje Y." +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Margen adicional de la balsa" -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Diámetro interior de la tobera. Cambie este ajuste cuando utilice un tamaño de tobera no estándar." +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Si la balsa está habilitada, esta es el área adicional de la balsa alrededor del modelo que también tiene una balsa. El aumento de este margen creará una balsa más resistente mientras que usará más material y dejará menos área para la impresión." -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "Impulso con el que se imprime la capa base de la balsa." +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "Margen extra de base de balsa" -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "Impulso con el que se imprime la capa intermedia de la balsa." +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Si la base de balsa está activada, esta es el área de balsa extra alrededor del modelo al que también se le da una balsa. Si aumenta este margen, creará una balsa más fuerte, aunque utilizará más material y dejará menos superficie para su impresión." -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "Impulso con el que se imprime la balsa." +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "Margen extra medio de la balsa" -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "Impulso con el que se imprimen las capas superiores de la balsa." +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Si el medio de la balsa está activado, esta es el área adicional de la balsa alrededor del modelo al que también se le da una balsa. Si aumenta este margen, creará una balsa más resistente, aunque utilizará más material y dejará menos superficie para su impresión." -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "Anchura máxima de las áreas inferiores de forro que se deben retirar. Todas las áreas de forro inferiores a este valor desaparecerán. Esto puede contribuir a limitar el tiempo y el material empleados en imprimir el forro inferior en las superficies inclinadas del modelo." +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "Margen extra de la parte superior de la balsa" -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "Anchura máxima de las áreas de forro que se deben retirar. Todas las áreas de forro inferiores a este valor desaparecerán. Esto puede contribuir a limitar el tiempo y el material empleados en imprimir el forro superior/inferior en las superficies inclinadas del modelo." +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Si la parte superior de la balsa está activada, esta es el área extra de balsa alrededor del modelo al que también se le da una balsa. Si aumenta este margen, creará una balsa más resistente, aunque utilizará más material y dejará menos superficie para su impresión." -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "Anchura máxima de las áreas superiores de forro que se deben retirar. Todas las áreas de forro inferiores a este valor desaparecerán. Esto puede contribuir a limitar el tiempo y el material empleados en imprimir el forro superior en las superficies inclinadas del modelo." +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Quitar las esquinas internas de la balsa" -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "Capa en la que los ventiladores giran a velocidad normal del ventilador. Si la velocidad normal del ventilador a altura está establecida, este valor se calcula y redondea a un número entero." +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Le permite eliminar las esquinas internas de la balsa, haciéndola convexa." -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "Tiempo de capa que establece el umbral entre la velocidad normal y la máxima del ventilador. Las capas que se imprimen más despacio que este tiempo utilizan la velocidad de ventilador regular. Para las capas más rápidas el ventilador aumenta la velocidad gradualmente hacia la velocidad máxima del ventilador." +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "Retirar las esquinas interiores de la base de la balsa" -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "Longitud del material retraído durante un movimiento de retracción." +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "Retire las esquinas interiores de la base de la balsa, lo que hará que esta se vuelva convexa." -msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "El factor de magnitud utilizado para la pendiente de la base de la torre de cebado. Si aumentas este valor, la base se volverá más delgada. Si lo disminuyes, la base se volverá más gruesa." +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "Retirar las esquinas interiores centrales de la balsa" -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "Material de la placa de impresión colocado en la impresora." +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "Retire las esquinas interiores de la parte central de la balsa, lo que hará que esta se vuelva convexa." -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "La diferencia de altura máxima permitida en comparación con la altura de la capa base." +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "Retire las esquinas interiores de la parte superior de la balsa" -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "Ángulo de separación máximo de la placa de rezumado. Un valor 0° significa vertical y un valor de 90°, horizontal. Un ángulo más pequeño resultará en menos placas de rezumado con errores, pero más material." +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "Retire las esquinas interiores de la parte superior de la balsa, lo que hará que esta se vuelva convexa." -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "Ángulo máximo de los voladizos una vez que se han hecho imprimibles. Un valor de 0º hace que todos los voladizos sean reemplazados por una pieza del modelo conectada a la placa de impresión y un valor de 90º no cambiará el modelo." +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Suavizado de la balsa" -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "El ángulo máximo de las ramas mientras crecen alrededor del modelo. Utilice un ángulo más pequeño para hacerlas más verticales y más estables. Utilice un ángulo mayor para abarcar más." +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Este ajuste controla la medida en que se redondean las esquinas interiores en el contorno de la balsa. Las esquinas hacia el interior se redondean en semicírculo con un radio equivalente al valor aquí indicado. Este ajuste también elimina los orificios del contorno de la balsa que sean más pequeños que dicho círculo." -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "El área máxima de un agujero en la base del modelo antes de que se elimine mediante la herramienta Convertir voladizo en imprimible. Se conservarán los agujeros más pequeños. Con un valor de 0 mm² se rellenan todos los agujeros de la base del modelo." +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "Suavizado de la base de la balsa" -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "La desviación máxima permitida al reducir la resolución en el ajuste de la resolución máxima. Si se aumenta el valor, la impresión será menos precisa pero el GCode será más pequeño. La desviación máxima es un límite para la resolución máxima, por lo que si las dos entran en conflicto, la desviación máxima siempre tendrá prioridad." +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Este ajuste controla cuánto se redondean las esquinas interiores en el contorno de la base de la balsa. Las esquinas interiores se redondean a un semicírculo con un radio igual al valor dado aquí. Este ajuste también elimina los huecos en el contorno de la balsa que sean más pequeños que dicho círculo." -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "Distancia máxima entre las estructuras del soporte en las direcciones X/Y. Cuando las estructuras separadas están más cerca entre sí que este valor, se combinan en una." +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "Suavizado medio de la balsa" -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "La distancia máxima en mm para mover el filamento con el fin de compensar los cambios en el caudal." +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Este ajuste controla cuánto se redondean las esquinas interiores en el contorno medio de la balsa. Las esquinas interiores se redondean a un semicírculo con un radio igual al valor dado aquí. Este ajuste también elimina los huecos en el contorno de la balsa que sean más pequeños que dicho círculo." -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "La desviación máxima del área de extrusión permitida al eliminar puntos intermedios de una línea recta. Un punto intermedio puede actuar como un punto de cambio de ancho en una línea recta larga. Por lo tanto, si se elimina, la línea tendrá un ancho uniforme y, como resultado, perderá (o ganará) área de extrusión. En caso de incremento, es posible que observe una extrusión leve por debajo (o por encima) entre paredes paralelas rectas, ya que será posible eliminar múltiples puntos de cambio de ancho intermedio. La impresión será menos precisa, pero el GCode será más pequeño." +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "Suavizado de la parte superior de la balsa" -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "Cambio en la velocidad instantánea máxima durante la impresión de la capa inicial." +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Este ajuste controla cuánto se redondean las esquinas interiores en el contorno superior de la balsa. Las esquinas interiores se redondean a un semicírculo con un radio igual al valor dado aquí. Este ajuste también elimina los huecos en el contorno de la balsa que sean más pequeños que dicho círculo." -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "Cambio en la velocidad instantánea máxima del cabezal de impresión." +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Cámara de aire de la balsa" -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "Cambio en la velocidad instantánea máxima durante el alisado." +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "Hueco entre la capa final de la balsa y la primera capa del modelo. Solo la primera capa se eleva según este valor para reducir la unión entre la capa de la balsa y el modelo y que sea más fácil despegar la balsa." -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen las paredes interiores." +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Superposición de las capas iniciales en Z" -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprime el relleno." +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "Haga que la primera y la segunda capa del modelo se solapen en la dirección Z para compensar el filamento perdido en el entrehierro. Todos los modelos situados por encima de la primera capa del modelo se desplazarán hacia abajo en esta medida.\nCabe señalar que a veces la segunda capa se imprime por debajo de la capa inicial debido a este ajuste. Este es el comportamiento previsto." -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen los suelos del soporte." +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Grosor de la base de la balsa" -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprime el relleno de soporte." +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "Grosor de la capa base de la balsa. Esta debe ser una capa gruesa que se adhiera firmemente a la placa de impresión de la impresora." -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen las paredes exteriores." +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Ancho de la línea base de la balsa" -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprime la torre auxiliar." +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "Ancho de las líneas de la capa base de la balsa. Estas deben ser líneas gruesas para facilitar la adherencia a la placa e impresión." -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen los techos y suelos del soporte." +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Espacio de la línea base de la balsa" -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen los techos del soporte." +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "Distancia entre las líneas de balsa para la capa base de la balsa. Un amplio espaciado facilita la retirada de la balsa de la placa de impresión." -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen la falta y el borde." +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Capas medias de la balsa" -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprime la estructura de soporte." +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "El número de capas entre la base y la superficie de la balsa. Estas comprenden el espesor principal de la balsa. Al aumentar este número se crea una balsa más gruesa y resistente." -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "El cambio máximo de velocidad instantánea con el que se imprimen las paredes exteriores más externas de la superficie superior." +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Grosor intermedio de la balsa" -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "El cambio máximo de velocidad instantánea con el que se imprimen las paredes interiores de la superficie superior." +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "Grosor de la capa intermedia de la balsa." -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen las paredes." +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Ancho de la línea intermedia de la balsa" -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprime la capa de la superficie superior del forro." +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "Ancho de las líneas de la capa intermedia de la balsa. Haciendo la segunda capa con mayor extrusión las líneas se adhieren a la placa de impresión." -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen las capas superiores/inferiores." +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Espaciado intermedio de la balsa" -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "Cambio en la velocidad instantánea máxima a la que realizan los movimientos de desplazamiento." +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "Distancia entre las líneas de la balsa para la capa intermedia de la balsa. La espaciado del centro debería ser bastante amplio, pero lo suficientemente denso como para soportar las capas superiores de la balsa." -msgctxt "prime_tower_max_bridging_distance description" -msgid "The maximum length of the branches which may be printed over the air." -msgstr "" +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Capas superiores de la balsa" + +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "Número de capas superiores encima de la segunda capa de la balsa. Estas son las capas en las que se asienta el modelo. Dos capas producen una superficie superior más lisa que una." -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "Velocidad máxima del motor de la dirección X." +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Grosor de las capas superiores de la balsa" -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "Velocidad máxima del motor de la dirección Y." +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Grosor de capa de las capas superiores de la balsa." -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "Velocidad máxima del motor de la dirección Z." +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Ancho de las líneas superiores de la balsa" -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "Velocidad máxima del filamento." +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "Ancho de las líneas de la superficie superior de la balsa. Estas pueden ser líneas finas para que la parte superior de la balsa sea lisa." -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "Ancho máximo de los escalones de la parte inferior de la escalera del soporte que descansa sobre el modelo. Un valor más bajo hace que el soporte sea difícil de retirar pero valores demasiado altos pueden producir estructuras del soporte inestables." +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Espaciado superior de la balsa" -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "Distancia mínima entre la parte exterior del molde y la parte exterior del modelo." +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "Distancia entre las líneas de la balsa para las capas superiores de la balsa. La separación debe ser igual a la ancho de línea para producir una superficie sólida." -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "Velocidad mínima de movimiento del cabezal de impresión." +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "Orden monotónico de la superficie superior de la balsa" -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "La temperatura mínima durante el calentamiento hasta alcanzar la temperatura de impresión a la cual puede comenzar la impresión." +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "Imprima las líneas de la superficie superior de la balsa en un orden que haga que siempre se solapen con las líneas adyacentes en una sola dirección. Esto lleva algo más de tiempo de impresión, pero hace que la superficie tenga un aspecto más homogéneo, lo que también se aprecia en la superficie inferior del modelo." -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "Tiempo mínimo que un extrusor debe permanecer inactivo antes de que la tobera se enfríe. Para que pueda enfriarse hasta alcanzar la temperatura en modo de espera, el extrusor deberá permanecer inactivo durante un tiempo superior al establecido." +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "Número de paredes de la balsa" -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "El ángulo mínimo de los voladizos internos para los que se agrega relleno. A partir de un valor de 0 º todos los objetos estarán totalmente rellenos, a 90 º no se proporcionará ningún relleno." +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "El número de contornos a imprimir alrededor del patrón lineal de la balsa." -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "Ángulo mínimo de los voladizos para los que se agrega soporte. A partir de un valor de 0º todos los voladizos tendrán soporte, a 90º no se proporcionará ningún soporte." +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Recuento de paredes base de balsa" -msgctxt "retraction_min_travel description" -msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." -msgstr "Distancia mínima de desplazamiento necesario para que no se produzca retracción alguna. Esto ayuda a conseguir un menor número de retracciones en un área pequeña." +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "El número de contornos que se imprimirán alrededor del patrón lineal en la capa base de la balsa." -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "La longitud mínima de la falda o el borde. Si el número de líneas de falda o borde no alcanza esta longitud, se agregarán más líneas de falda o borde hasta alcanzar esta longitud mínima. Nota: Si el número de líneas está establecido en 0, esto se ignora." +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "Número de paredes intermedias de la balsa" -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "La anchura mínima de línea para las paredes tipo polilínea para rellenar el hueco de la línea central. Este parámetro determina a partir de qué grosor de modelo pasamos de imprimir dos líneas de pared a imprimir dos paredes exteriores y una sola pared central en el medio. Un ancho mínimo más alto de la línea de pared impar conduce a un ancho máximo más alto de la línea de pared par. El ancho máximo de línea de pared impar se calcula como el doble del ancho mínimo de línea de pared par." +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "El número de contornos a imprimir alrededor del patrón lineal en las capas medias de la balsa." -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "El ancho de línea mínimo para paredes poligonales normales. Este ajuste determina a qué espesor de modelo pasamos de imprimir una sola línea de perímetro delgada a imprimir dos líneas de perímetro. Un ancho mínimo más alto de la línea perimetral par conduce a un ancho máximo más alto de la línea perimetral impar. El ancho máximo de la línea perimetral par se calcula como el ancho de la línea perimetral exterior + 0,5 * el ancho mínimo de la línea perimetral impar." +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "Número de paredes superiores de la balsa" -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "Velocidad de impresión mínima, a pesar de ir más despacio debido al tiempo mínimo de capa. Cuando la impresora vaya demasiado despacio, la presión de la tobera puede ser demasiado baja y resultar en una impresión de mala calidad." +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "El número de contornos a imprimir alrededor del patrón lineal en las capas superiores de la balsa." -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "El tamaño mínimo de un segmento de línea tras la segmentación. Si se aumenta, la resolución de la malla será menor. Esto puede permitir a la impresora mantener la velocidad que necesita para procesar GCode y aumentará la velocidad de segmentación al eliminar detalles de la malla que, de todas formas, no puede procesar." +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Velocidad de impresión de la balsa" -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "El tamaño mínimo de un segmento de línea de desplazamiento tras la segmentación. Si se aumenta, los movimientos de desplazamiento tendrán esquinas menos suavizadas. Esto puede le permite a la impresora mantener la velocidad que necesita para procesar GCode pero puede ocasionar que evitar el modelo sea menos preciso." +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "Velocidad a la que se imprime la balsa." -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "La pendiente mínima de la zona para un efecto del escalón de la escalera de soporte. Los valores más bajos deberían facilitar la extracción del soporte en pendientes poco profundas, pero los valores muy bajos pueden dar resultados realmente contradictorios en otras partes del modelo." +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Velocidad de impresión de la base de la balsa" -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "Tiempo mínimo empleado en una capa. Esto fuerza a la impresora a ir más despacio, para emplear al menos el tiempo establecido aquí en una capa. Esto permite que el material impreso se enfríe adecuadamente antes de imprimir la siguiente capa. Es posible que el tiempo para cada capa sea inferior al tiempo mínimo si se desactiva Levantar el cabezal o si la velocidad mínima se ve modificada de otro modo." +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "Velocidad a la que se imprime la capa de base de la balsa. Esta debe imprimirse con bastante lentitud, ya que el volumen de material que sale de la tobera es bastante alto." -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "El volumen mínimo de cada capa de la torre auxiliar que permite purgar suficiente material." +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Velocidad de impresión de la balsa intermedia" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "El diámetro máximo de una rama que debe conectarse al modelo puede aumentar al fusionarse con ramas que podrían llegar a la placa de impresión. Al aumentarlo, se reduce el tiempo de impresión, pero el área de soporte que descansa sobre el modelo aumenta" +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "Velocidad a la que se imprime la capa intermedia de la balsa. Esta debe imprimirse con bastante lentitud, ya que el volumen de material que sale de la tobera es bastante alto." -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "Nombre del modelo de la impresora 3D." +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Velocidad de impresión de la balsa superior" -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "Id. de la tobera de un tren extrusor, como \"AA 0.4\" y \"BB 0.8\"." +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "Velocidad a la que se imprimen las capas superiores de la balsa. Estas deben imprimirse un poco más lento para permitir que la tobera pueda suavizar lentamente las líneas superficiales adyacentes." -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "La tobera evita las partes ya impresas al desplazarse. Esta opción solo está disponible cuando se ha activado la opción de peinada." +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Aceleración de impresión de la balsa" -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "La tobera evita los soportes ya impresos al desplazarse. Esta opción solo está disponible cuando se ha activado la opción de peinada." +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "Aceleración a la que se imprime la balsa." -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "Número de capas inferiores. Al calcularlo por el grosor inferior, este valor se redondea a un número entero." +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Aceleración de la impresión de la base de la balsa" -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "El número de contornos que se imprimirán alrededor del patrón lineal en la capa base de la balsa." +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "Aceleración a la que se imprime la capa base de la balsa." -msgctxt "raft_interface_wall_count description" -msgid "The number of contours to print around the linear pattern in the middle layers of the raft." -msgstr "" +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Aceleración de la impresión de la balsa intermedia" -msgctxt "raft_surface_wall_count description" -msgid "The number of contours to print around the linear pattern in the top layers of the raft." -msgstr "" +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "Aceleración a la que se imprime la capa intermedia de la balsa." -msgctxt "raft_wall_count description" -msgid "The number of contours to print around the linear pattern of the raft." -msgstr "" +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Aceleración de la impresión de la balsa superior" -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "El número de capas de relleno que soportan los bordes del forro." +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "Aceleración a la que se imprimen las capas superiores de la balsa." -msgctxt "initial_bottom_layers description" -msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "El número de capas inferiores iniciales, desde la capa de impresión hacia arriba. Al calcularlo por el grosor inferior, este valor se redondea a un número entero." +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Impulso de impresión de la balsa" -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "El número de capas entre la base y la superficie de la balsa. Estas comprenden el espesor principal de la balsa. Al aumentar este número se crea una balsa más gruesa y resistente." +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "Impulso con el que se imprime la balsa." -msgctxt "brim_line_count description" -msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." -msgstr "Número de líneas utilizadas para un borde. Más líneas de borde mejoran la adhesión a la plataforma de impresión, pero también reducen el área de impresión efectiva." +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Impulso de impresión de base de la balsa" -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "Número de líneas utilizadas para el borde de soporte. Más líneas de borde mejoran la adhesión a la placa de impresión, pero requieren material adicional." +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "Impulso con el que se imprime la capa base de la balsa." -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "Número de capas superiores encima de la segunda capa de la balsa. Estas son las capas en las que se asienta el modelo. Dos capas producen una superficie superior más lisa que una." +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Impulso de impresión de balsa intermedia" -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "Número de capas superiores. Al calcularlo por el grosor superior, este valor se redondea a un número entero." +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "Impulso con el que se imprime la capa intermedia de la balsa." -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "El número de capas del nivel superior del forro. Normalmente es suficiente con una sola capa para generar superficies superiores con mayor calidad." +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Impulso de impresión de balsa superior" -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "El número de paredes con las que el soporte rodea el relleno. Añadir una pared puede hacer que la impresión de soporte sea más fiable y pueda soportar mejor los voladizos pero aumenta el tiempo de impresión y el material utilizado." +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "Impulso con el que se imprimen las capas superiores de la balsa." -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "El número de paredes con las que rodear el suelo de la interfaz de soporte. Añadir una pared puede hacer que la copia impresa del soporte sea más fiable y pueda sostener mejor los voladizos, pero aumentará el tiempo de impresión y el material utilizado." +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Velocidad del ventilador de la balsa" -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "El número de paredes con las que rodear el techo de la interfaz de soporte. Añadir una pared puede hacer que la copia impresa del soporte sea más fiable y pueda sostener mejor los voladizos, pero aumentará el tiempo de impresión y el material utilizado." +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "Velocidad del ventilador para la balsa." -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "El número de paredes con las que rodear la interfaz de soporte. Añadir una pared puede hacer que la copia impresa del soporte sea más fiable y pueda sostener mejor los voladizos, pero aumentará el tiempo de impresión y el material utilizado." +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Velocidad del ventilador de la base de la balsa" -msgctxt "wall_distribution_count description" -msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." -msgstr "El número de paredes, contadas desde el centro, en las que se distribuirá la variación. Los valores más bajos indican que el ancho de las paredes externas no cambia." +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "Velocidad del ventilador para la capa base de la balsa." -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "Número de paredes. Al calcularlo por el grosor de las paredes, este valor se redondea a un número entero." +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Velocidad del ventilador de balsa intermedia" -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "Diámetro exterior de la punta de la tobera." +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "Velocidad del ventilador para la capa intermedia de la balsa." -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "Patrón del material de relleno de la impresión. El método de llenado en línea y en zigzag cambia de dirección en capas alternas para reducir los costes de material. Los patrones de rejilla, triángulo, trihexágono, cubo, octaédrico, cubo bitruncado, transversal y concéntrico se imprimen en todas las capas por completo. Los rellenos de giroide, cúbico, cúbico bitruncado y octaédrico se alternan en cada capa para lograr una distribución más uniforme de la fuerza en todas las direcciones. El relleno de rayos intenta minimizar el relleno apoyando solo la parte superior del objeto." +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Velocidad del ventilador de balsa superior" -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "Patrón de las estructuras del soporte de la impresión. Las diferentes opciones disponibles dan como resultado un soporte robusto o fácil de retirar." +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "Velocidad del ventilador para las capas superiores de la balsa." -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "El patrón de las capas de nivel superior." +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Extrusión doble" -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Patrón de las capas superiores/inferiores." +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Ajustes utilizados en la impresión con varios extrusores." -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "El patrón que aparece en la parte inferior de la impresión de la primera capa." +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Activar la torre auxiliar" -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "El patrón que se usará para el alisado de las superficies superiores." +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "Imprimir una torre junto a la impresión que sirve para preparar el material tras cada cambio de tobera." -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "Patrón con el que se imprimen los suelos del soporte." +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "Tipo de torre de imprimación" -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "Patrón con el que se imprime la interfaz de soporte con el modelo." +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
                                      • Normal: create a bucket in which secondary materials are primed
                                      • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
                                      " +msgstr "Cómo generar la torre de imprimación:
                                      • Normal: cree un cubo en el que los materiales secundarios estén imprimados
                                      • Intercalada: cree una torre de imprimación lo más dispersa posible. Esto ahorrará tiempo y filamento, pero solo es posible si los materiales utilizados se adhieren entre sí
                                      " -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "Patrón con el que se imprimen los techos del soporte." +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "Normal" -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "La posición cerca de donde comenzará la impresión de cada parte de una capa." +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "Intercalada" -msgctxt "support_tree_angle_slow description" -msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." -msgstr "El ángulo para las ramas de preferencia cuando no tienen que evitar el modelo. Utilice un ángulo más pequeño para hacerlas más verticales y más estables. Utilice un ángulo mayor para que las ramas se fusionen más rápido." +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Tamaño de la torre auxiliar" -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "La colocación preferida para las estructuras de soporte. Si las estructuras no se pueden poner en la colocación preferida, se pondrán en otro lugar, incluso si eso significa situarlas sobre el modelo." +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "Anchura de la torre auxiliar." -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "Cambio en la velocidad instantánea máxima de la capa inicial." +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Volumen mínimo de la torre auxiliar" -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "La forma de la placa de impresión sin tener en cuenta las zonas externas al área de impresión." +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "El volumen mínimo de cada capa de la torre auxiliar que permite purgar suficiente material." -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "La forma del cabezal de impresión. Estas son las coordenadas relativas a la posición del cabezal de impresión, que generalmente es la posición de su primer extrusor. Las dimensiones de la izquierda y de la parte delantera del cabezal de impresión deben ser coordenadas negativas." +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "Distancia máxima de puenteo de la torre de imprimación" -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "Tamaño de las bolsas en cruces del patrón de cruz 3D en las alturas en las que el patrón coincide consigo mismo." +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "Longitud máxima de las ramas que pueden imprimirse en el aire." -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "Menor Volumen que deberá tener una trayectoria de extrusión antes de permitir el depósito por inercia. Para trayectorias de extrusión más pequeñas, se acumula menos presión en el tubo guía y, por tanto, el volumen depositado por inercia se escala linealmente. Este valor debe ser siempre mayor que el Volumen de depósito por inercia." +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "Posición de la torre auxiliar sobre el eje X" -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "Velocidad (°C/s) de enfriamiento de la tobera calculada como una media a partir de las temperaturas de impresión habituales y la temperatura en modo de espera." +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "Coordenada X de la posición de la torre auxiliar." -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "Velocidad (°C/s) de calentamiento de la tobera calculada como una media a partir de las temperaturas de impresión habituales y la temperatura en modo de espera." +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Posición de la torre auxiliar sobre el eje Y" -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "Velocidad a la que se imprimen todas las paredes interiores. Imprimir la pared interior más rápido que la exterior reduce el tiempo de impresión. Ajustar este valor entre la velocidad de la pared exterior y la velocidad a la que se imprime el relleno puede ir bien." +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "Coordenada Y de la posición de la torre auxiliar." -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "Velocidad a la que se imprimen las áreas de forro del puente." +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Limpiar tobera inactiva de la torre auxiliar" -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "Velocidad a la que se imprime el relleno." +msgctxt "prime_tower_wipe_enabled description" +msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." +msgstr "Tras imprimir la torre auxiliar con una tobera, limpie el material rezumado de la otra tobera de la torre auxiliar." -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "Velocidad a la que se realiza la impresión." +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Base" +msgstr "Base de la torre de cebado" -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "Velocidad a la que se imprime la capa de base de la balsa. Esta debe imprimirse con bastante lentitud, ya que el volumen de material que sale de la tobera es bastante alto." +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "Al habilitar esta configuración, tu torre de cebado tendrá un borde, incluso si el modelo no lo tiene. Si quieres una base más robusta para una torre alta, puedes aumentar la altura de la base." -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "Velocidad a la que se imprimen las paredes del puente." +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "Tamaño de la base de la torre de cebado" -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "Velocidad a la que giran los ventiladores al comienzo de la impresión. En las capas posteriores, la velocidad del ventilador aumenta gradualmente hasta la capa correspondiente a la velocidad normal del ventilador a altura." +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "El ancho del borde/base de la torre de cebado. Una base más grande mejora la adhesión a la placa de construcción, pero también reduce el área efectiva de impresión." -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "Velocidad a la que giran los ventiladores antes de alcanzar el umbral. Cuando una capa se imprime más rápido que el umbral, la velocidad del ventilador se inclina gradualmente hacia la velocidad máxima del ventilador." +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "Altura de la base de la torre de cebado" -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "Velocidad a la que giran los ventiladores en el tiempo mínimo de capa. La velocidad del ventilador aumenta gradualmente entre la velocidad normal y máxima del ventilador cuando se alcanza el umbral." +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "La altura de la base de la torre de cebado. Aumentar este valor resultará en una torre de cebado más robusta porque la base será más ancha. Si esta configuración es demasiado baja, la torre de cebado no tendrá una base resistente." -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "Velocidad a la que se prepara el filamento durante un movimiento de retracción." +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "Pendiente de la Base de la Torre de Cebado" -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "Velocidad a la que se prepara el filamento durante un movimiento de retracción de limpieza." +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "El factor de magnitud utilizado para la pendiente de la base de la torre de cebado. Si aumentas este valor, la base se volverá más delgada. Si lo disminuyes, la base se volverá más gruesa." -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "Velocidad a la que se retrae el filamento durante una retracción del cambio de tobera." +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "Espaciado de las líneas del raft de la torre de cebado" -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "Velocidad a la que se retrae el filamento y se prepara durante un movimiento de retracción." +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "La distancia entre las líneas del raft para la capa única del raft de la torre de cebado. Un espaciado amplio facilita la eliminación del raft de la placa de construcción." -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "Velocidad a la que se retrae el filamento y se prepara durante un movimiento de retracción de limpieza." +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Activar placa de rezumado" -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "Velocidad a la que se retrae el filamento durante una retracción del cambio de tobera." +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "Activar la placa de rezumado exterior. Esto crea un perímetro alrededor del modelo que suele limpiar una segunda tobera si se encuentra a la misma altura que la primera." -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "Velocidad a la que se retrae el filamento durante un movimiento de retracción." +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Ángulo de la placa de rezumado" -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "Velocidad a la que se retrae el filamento durante un movimiento de retracción de limpieza." +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "Ángulo de separación máximo de la placa de rezumado. Un valor 0° significa vertical y un valor de 90°, horizontal. Un ángulo más pequeño resultará en menos placas de rezumado con errores, pero más material." -msgctxt "switch_extruder_retraction_speeds description" -msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." -msgstr "Velocidad de retracción del filamento. Se recomienda una velocidad de retracción alta, pero si es demasiado alta, podría hacer que el filamento se aplaste." +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Distancia de la placa de rezumado" -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "Velocidad a la que se imprimen los suelos del soporte. Imprimirlos a una velocidad inferior puede mejorar la adhesión del soporte en la parte superior del modelo." +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "Distancia entre la placa de rezumado y la impresión, en las direcciones X/Y." -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "Velocidad a la que se rellena el soporte. Imprimir el relleno a una velocidad inferior mejora la estabilidad." +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Distancia de retracción del cambio de tobera" -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "Velocidad a la que se imprime la capa intermedia de la balsa. Esta debe imprimirse con bastante lentitud, ya que el volumen de material que sale de la tobera es bastante alto." +msgctxt "switch_extruder_retraction_amount description" +msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." +msgstr "Distancia de la retracción al cambiar los extrusores. Utilice el valor 0 para que no haya retracción. Por norma general, este valor debe ser igual a la longitud de la zona de calentamiento." -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "Velocidad a la que se imprimen las paredes exteriores. Imprimir la pared exterior a una velocidad inferior mejora la calidad final del forro. Sin embargo, una gran diferencia entre la velocidad de la pared interior y de la pared exterior afectará negativamente a la calidad." +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Velocidad de retracción del cambio de tobera" + +msgctxt "switch_extruder_retraction_speeds description" +msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." +msgstr "Velocidad de retracción del filamento. Se recomienda una velocidad de retracción alta, pero si es demasiado alta, podría hacer que el filamento se aplaste." -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "Velocidad a la que se imprime la torre auxiliar. Imprimir la torre auxiliar a una velocidad inferior puede conseguir más estabilidad si la adherencia entre los diferentes filamentos es insuficiente." +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Velocidad de retracción del cambio de tobera" -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "Velocidad a la que giran los ventiladores de refrigeración de impresión." +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "Velocidad a la que se retrae el filamento durante una retracción del cambio de tobera." -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "Velocidad a la que se imprime la balsa." +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Velocidad de cebado del cambio de tobera" -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "Velocidad a la que se imprimen los techos y suelos del soporte. Imprimirlos a una velocidad inferior puede mejorar la calidad del voladizo." +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "Velocidad a la que se retrae el filamento durante una retracción del cambio de tobera." -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "Velocidad a la que se imprimen los techos del soporte. Imprimirlos a una velocidad inferior puede mejorar la calidad del voladizo." +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Volumen de cebado adicional tras cambio de tobera" -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "Velocidad a la que se imprimen la falda y el borde. Normalmente, esto se hace a la velocidad de la capa inicial, pero a veces es posible que se prefiera imprimir la falda o el borde a una velocidad diferente." +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "Material adicional que debe cebarse tras el cambio de tobera." -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "Velocidad a la que se imprime la estructura de soporte. Imprimir el soporte a una mayor velocidad puede reducir considerablemente el tiempo de impresión. La calidad de superficie de la estructura de soporte no es importante, ya que se elimina después de la impresión." +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Correcciones de malla" -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "Velocidad a la que se imprimen las capas superiores de la balsa. Estas deben imprimirse un poco más lento para permitir que la tobera pueda suavizar lentamente las líneas superficiales adyacentes." +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Consiga las mallas más adecuadas para la impresión 3D." -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "La velocidad a la que se imprimen las paredes internas de la superficie superior." +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Volúmenes de superposiciones de uniones" -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "La velocidad con la que se imprimen las paredes más externas de la superficie superior." +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "Ignora la geometría interna que surge de los volúmenes de superposición dentro de una malla e imprime los volúmenes como si fuera uno. Esto puede hacer que desaparezcan cavidades internas que no se hayan previsto." -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "Velocidad a la que se realiza el movimiento vertical en la dirección Z para los saltos en Z. Suele ser inferior a la velocidad de impresión porque la placa de impresión o el puente de la máquina es más difícil de desplazar." +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Eliminar todos los agujeros" -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "Velocidad a la que se imprimen las paredes." +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "Elimina los agujeros en cada capa y mantiene solo la forma exterior. Esto ignorará cualquier geometría interna invisible. Sin embargo, también ignora los agujeros de la capa que pueden verse desde arriba o desde abajo." -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "Velocidad a la que pasa por encima de la superficie superior." +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Cosido amplio" -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "Velocidad a la que debe retraerse el filamento para que se rompa limpiamente." +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "Cosido amplio intenta coser los agujeros abiertos en la malla cerrando el agujero con polígonos que se tocan. Esta opción puede agregar una gran cantidad de tiempo de procesamiento." -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "Velocidad a la que se imprimen las capas de la superficie superior del forro." +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Mantener caras desconectadas" -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "Velocidad a la que se imprimen las capas superiores/inferiores." +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "Normalmente, Cura intenta coser los pequeños agujeros de la malla y eliminar las partes de una capa con grandes agujeros. Al habilitar esta opción, se mantienen aquellas partes que no puedan coserse. Esta opción se debe utilizar como una opción de último recurso cuando todo lo demás falla para producir un GCode adecuado." -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "Velocidad a la que tienen lugar los movimientos de desplazamiento." +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Superponer mallas combinadas" -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "Velocidad a la que se desplaza durante el depósito por inercia con relación a la velocidad de la trayectoria de extrusión. Se recomienda un valor ligeramente por debajo del 100%, ya que la presión en el tubo guía disminuye durante el movimiento depósito por inercia." +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "Hace que las mallas que se tocan las unas a las otras se superpongan ligeramente. Esto mejora la conexión entre ellas." -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "La velocidad de la capa inicial. Se recomienda un valor más bajo para mejorar la adherencia a la placa de impresión. No influye en las estructuras de adhesión de la placa de impresión en sí, como el borde y la balsa." +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Eliminar el cruce de mallas" -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "Velocidad de impresión de la capa inicial. Se recomienda un valor más bajo para mejorar la adherencia a la placa de impresión." +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "Eliminar las zonas en las que se superponen varias mallas. Puede utilizarse esta opción cuando se superponen objetos combinados de dos materiales." -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "Velocidad de impresión de la capa inicial. Se recomienda un valor más bajo para evitar que las partes ya impresas se separen de la placa de impresión. El valor de este ajuste se puede calcular automáticamente a partir del ratio entre la velocidad de desplazamiento y la velocidad de impresión." +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "Alternar la retirada de las mallas" -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "Temperatura a la que se rompe el filamento de forma limpia." +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "Cambiar la malla a la que pertenecerán los volúmenes que se cruzan en cada capa, de forma que las mallas superpuestas se entrelacen. Desactivar esta opción dará lugar a que una de las mallas reciba todo el volumen de la superposición y que este se elimine de las demás mallas." -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "La temperatura del entorno de impresión. Si el valor es 0, la temperatura de volumen de impresión no se ajustará." +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Eliminar primeras capas vacías" -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "Temperatura de la tobera cuando otra se está utilizando en la impresión." +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "Eliminar (si las hubiera) las capas vacías por debajo de la primera capa impresa. Deshabilitar este ajuste puede hacer que aparezcan primeras capas vacías si el ajuste de tolerancia de segmentación está establecido en Exclusiva o Medio." -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "La temperatura a la que se puede empezar a enfriar justo antes de finalizar la impresión." +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Resolución máxima" -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer." -msgstr "La temperatura utilizada para imprimir la primera capa." +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "El tamaño mínimo de un segmento de línea tras la segmentación. Si se aumenta, la resolución de la malla será menor. Esto puede permitir a la impresora mantener la velocidad que necesita para procesar GCode y aumentará la velocidad de segmentación al eliminar detalles de la malla que, de todas formas, no puede procesar." -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "Temperatura de la impresión." +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Resolución de desplazamiento máximo" -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "Temperatura de la placa de impresión una vez caliente en la primera capa. Si el valor es 0, la placa de impresión no se calentará en la primera capa." +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "El tamaño mínimo de un segmento de línea de desplazamiento tras la segmentación. Si se aumenta, los movimientos de desplazamiento tendrán esquinas menos suavizadas. Esto puede le permite a la impresora mantener la velocidad que necesita para procesar GCode pero puede ocasionar que evitar el modelo sea menos preciso." -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "La temperatura utilizada para la placa de impresión caliente. Si el valor es 0, la placa de impresión no se calentará." +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Desviación máxima" -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "La temperatura utilizada para purgar el material. Debería ser aproximadamente igual a la temperatura de impresión más alta posible." +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "La desviación máxima permitida al reducir la resolución en el ajuste de la resolución máxima. Si se aumenta el valor, la impresión será menos precisa pero el GCode será más pequeño. La desviación máxima es un límite para la resolución máxima, por lo que si las dos entran en conflicto, la desviación máxima siempre tendrá prioridad." -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "Grosor de las capas inferiores en la impresión. Este valor dividido por la altura de capa define el número de capas inferiores." +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Desviación máxima del área de extrusión" -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "El grosor del relleno extra que soporta los bordes del forro." +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "La desviación máxima del área de extrusión permitida al eliminar puntos intermedios de una línea recta. Un punto intermedio puede actuar como un punto de cambio de ancho en una línea recta larga. Por lo tanto, si se elimina, la línea tendrá un ancho uniforme y, como resultado, perderá (o ganará) área de extrusión. En caso de incremento, es posible que observe una extrusión leve por debajo (o por encima) entre paredes paralelas rectas, ya que será posible eliminar múltiples puntos de cambio de ancho intermedio. La impresión será menos precisa, pero el GCode será más pequeño." -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "Grosor de la interfaz del soporte donde toca con el modelo, ya sea en la parte superior o inferior." +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "Activar movimiento fluido" -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "Grosor de los suelos del soporte. Este valor controla el número de capas densas que se imprimen en las partes superiores de un modelo, donde apoya el soporte." +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "Cuando está activado, las trayectorias de las herramientas se corrigen para impresoras con planificadores de movimiento suave. Los pequeños movimientos que se desvían de la dirección general de la trayectoria de la herramienta se suavizan para mejorar los movimientos fluidos." -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "Grosor de los techos del soporte. Este valor controla el número de capas densas en la parte superior del soporte, donde apoya el modelo." +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "Cambio de distancia del movimiento fluido" -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "Grosor de las capas superiores en la impresión. Este valor dividido por la altura de capa define el número de capas superiores." +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Los puntos de distancia se desplazan para suavizar la trayectoria" -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "Grosor de las capas superiores/inferiores en la impresión. Este valor dividido por la altura de la capa define el número de capas superiores/inferiores." +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "Pequeña distancia del movimiento fluido" -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "Grosor de las paredes en dirección horizontal. Este valor dividido por el ancho de la línea de pared define el número de paredes." +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Los puntos de distancia se desplazan para suavizar la trayectoria" -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "Grosor por capa de material de relleno. Este valor siempre debe ser un múltiplo de la altura de la capa y, de lo contrario, se redondea." +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "Ángulo de movimiento fluido" -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "Grosor por capa de material de relleno de soporte. Este valor siempre debe ser un múltiplo de la altura de la capa; de lo contrario, se redondea." +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "Si un segmento de la trayectoria de la herramienta se desvía más de este ángulo del movimiento general, se suaviza." -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "Tipo de GCode que se va a generar." +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Modos especiales" -msgctxt "material_type description" -msgid "The type of material used." -msgstr "" +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Formas no tradicionales de imprimir sus modelos." + +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Secuencia de impresión" -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "Volumen que de otro modo rezumaría. Este valor generalmente debería ser próximo al cubicaje del diámetro de la tobera." +msgctxt "print_sequence description" +msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." +msgstr "Con esta opción se decide si imprimir todos los modelos al mismo tiempo capa por capa o esperar a terminar un modelo antes de pasar al siguiente. El modo de uno en uno solo es posible si todos los modelos están lo suficientemente separados para que el cabezal de impresión pase entre ellos y todos estén a menos de la distancia entre la boquilla y los ejes X/Y." -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "Ancho (dimensión sobre el eje X) del área de impresión." +msgctxt "print_sequence option all_at_once" +msgid "All at Once" +msgstr "Todos a la vez" -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "Anchura del borde de impresión que se imprime por debajo del soporte. Una anchura de soporte amplia mejora la adhesión a la placa de impresión, pero requieren material adicional." +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "De uno en uno" -msgctxt "interlocking_beam_width description" -msgid "The width of the interlocking structure beams." -msgstr "El ancho de los haces de la estructura entrelazada." +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Establecer secuencia de impresión manualmente" -msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "El ancho del borde/base de la torre de cebado. Una base más grande mejora la adhesión a la placa de construcción, pero también reduce el área efectiva de impresión." +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "Le permite ordenar la lista de objetos para establecer manualmente la secuencia de impresión. El primer objeto de la lista se imprimirá primero." -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "Anchura de la torre auxiliar." +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Malla de relleno" -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "Ancho dentro de la cual se fluctúa. Se recomienda mantener este valor por debajo del ancho de la pared exterior, ya que las paredes interiores permanecen inalteradas." +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "Utilice esta malla para modificar el relleno de otras mallas con las que se superpone. Reemplaza las zonas de relleno de otras mallas con zonas de esta malla. Se sugiere imprimir una pared y no un forro superior/inferior para esta malla." -msgctxt "retraction_extrusion_window description" -msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." -msgstr "Ventana en la que se aplica el recuento máximo de retracciones. Este valor debe ser aproximadamente el mismo que la distancia de retracción, lo que limita efectivamente el número de veces que una retracción pasa por el mismo parche de material." +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "Rango de procesamiento de la malla" -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "Coordenada X de la posición de la torre auxiliar." +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "Determina la prioridad de esta malla al tener en cuenta varias mallas de relleno superpuestas. Las áreas en las que se superponen varias mallas de relleno tomarán la configuración de la malla con el rango más alto. Una malla de relleno con un rango superior modificará el relleno de las mallas de relleno con un rango inferior y mallas normales." -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "Coordenada Y de la posición de la torre auxiliar." +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Cortar malla" -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "Hay mallas de soporte presentes en la escena. Esta configuración está controlada por Cura." +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "Limite el volumen de esta malla a lo que está dentro de otras mallas. Puede usar esto para hacer que determinadas áreas de una malla se impriman con ajustes diferentes y con un extrusor totalmente diferente." -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "Controla la distancia del depósito por inercia del extrusor justo antes de empezar un puente. Un depósito por inercia antes del inicio del puente puede reducir la presión en la tobera y dar como resultado un puente más horizontal." +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Molde" -msgctxt "raft_base_smoothing description" -msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "Imprimir modelos como un molde que se pueden fundir para obtener un modelo que se parezca a los modelos de la placa de impresión." -msgctxt "raft_interface_smoothing description" -msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Ancho de molde mínimo" -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Este ajuste controla la medida en que se redondean las esquinas interiores en el contorno de la balsa. Las esquinas hacia el interior se redondean en semicírculo con un radio equivalente al valor aquí indicado. Este ajuste también elimina los orificios del contorno de la balsa que sean más pequeños que dicho círculo." +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "Distancia mínima entre la parte exterior del molde y la parte exterior del modelo." -msgctxt "raft_surface_smoothing description" -msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Altura del techo del molde" -msgctxt "retraction_count_max description" -msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." -msgstr "Este ajuste limita el número de retracciones que ocurren dentro de la ventana de distancia mínima de extrusión. Dentro de esta ventana se ignorarán las demás retracciones. Esto evita retraer repetidamente el mismo trozo de filamento, ya que esto podría aplanar el filamento y causar problemas de desmenuzamiento." +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "Altura por encima de las piezas horizontales del modelo del que imprimir el molde." -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "Esto creará una pared alrededor del modelo que atrapa el aire (caliente) y lo protege contra flujos de aire exterior. Es especialmente útil para materiales que se deforman fácilmente." +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Ángulo del molde" -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "Diámetro de la punta" +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "Ángulo del voladizo de las paredes exteriores creado para el molde. 0º hará el perímetro exterior del molde vertical, mientras que 90º hará el exterior del modelo seguido del contorno del modelo." -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "Para compensar la contracción del material al enfriarse, el modelo se escala con este factor en la dirección XY (horizontalmente)." +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Malla de soporte" -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "Para compensar la contracción del material al enfriarse, el modelo se escala con este factor en la dirección Z (verticalmente)." +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "Utilice esta malla para especificar las áreas de soporte. Esta opción puede utilizarse para generar estructuras de soporte." -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "Para compensar la contracción del material a medida que se enfría, el modelo se escala con este factor." +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Malla antivoladizo" -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Capas superiores" +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "Utilice esta malla para especificar los lugares del modelo en los que no debería detectarse ningún voladizo. Esta opción puede utilizarse para eliminar estructuras de soporte no deseadas." -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Distancia de expansión del forro superior" +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Modo de superficie" -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Anchura de retirada del forro superior" +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "Tratar el modelo como una superficie solo, un volumen o volúmenes con superficies sueltas. El modo de impresión normal solo imprime volúmenes cerrados. «Superficie» imprime una sola pared trazando la superficie de la malla sin relleno ni forro superior/inferior. «Ambos» imprime volúmenes cerrados de la forma habitual y cualquier polígono restante como superficies." -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Aceleración de la superficie interna superior de la pared" +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Normal" -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Sacudida de la pared exterior más externa de la superficie superior" +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Superficie" -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Velocidad de la pared interna de la superficie superior" +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Ambos" -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Flujo de la pared interior de la superficie superior" +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Espiralizar el contorno exterior" -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Aceleración de la superficie externa superior de la pared" +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "La opción de espiralizar suaviza el movimiento en Z del borde exterior. Esto creará un incremento en Z constante durante toda la impresión. Esta función convierte un modelo sólido en una impresión de una sola pared con una parte inferior sólida. Esta función solo se debería habilitar cuando cada capa contenga una única pieza." -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Flujo de la pared exterior de la superficie superior" +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Contornos espiralizados suaves" -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Sacudida de la pared interior de la superficie superior" +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "Suaviza los contornos espiralizados para reducir la visibilidad de la costura Z (la costura Z debería ser apenas visible en la impresora pero seguirá siendo visible en la vista de capas). Tenga en cuenta que la suavización tenderá a desdibujar detalles finos de la superficie." -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Velocidad de la pared externa de la superficie superior" +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Extrusión relativa" -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Aceleración de la superficie superior del forro" +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "Utilizar la extrusión relativa en lugar de la extrusión absoluta. El uso de pasos de extrusión relativos permite un procesamiento posterior más sencillo del GCode. Sin embargo, no es compatible con todas las impresoras y puede causar ligeras desviaciones en la cantidad de material depositado si se compara con los pasos de extrusión absolutos. Con independencia de este ajuste, el modo de extrusión se ajustará siempre en absoluto antes de la salida de cualquier secuencia GCode." -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Extrusor de la superficie superior del forro" +msgctxt "experimental label" +msgid "Experimental" +msgstr "Experimental" -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Flujo de forro de superficie superior" +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Características que aún no se han desarrollado por completo." -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Impulso de la superficie superior del forro" +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Tolerancia de segmentación" -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Capas de la superficie superior del forro" +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "Tolerancia vertical en las capas cortadas. Los contornos de una capa se generan normalmente pasando las secciones entrecruzadas a través del medio de cada espesor de capa (Media). Alternativamente, cada capa puede tener áreas ubicadas dentro del volumen a través de todo el grosor de la capa (Exclusiva) o una capa puede tener áreas ubicadas dentro en cualquier lugar de la capa (Inclusiva). La opción Inclusiva permite conservar la mayoría de los detalles, la opción Exclusiva permite obtener una adaptación óptima y la opción Media permite permanecer cerca de la superficie original." -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Direcciones de línea de la superficie superior del forro" +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Media" -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Ancho de línea de la superficie superior del forro" +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Exclusiva" -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Patrón de la superficie superior del forro" +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Inclusiva" -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Velocidad de la superficie superior del forro" +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Optimización del desplazamiento del relleno" + +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "Cuando está habilitado, se optimiza el orden en el que se imprimen las líneas de relleno para reducir la distancia de desplazamiento. La reducción del tiempo de desplazamiento obtenido depende en gran parte del modelo que se está fragmentando, el patrón de relleno, la densidad, etc. Tenga en cuenta que, para algunos modelos que tienen pequeñas áreas de relleno, el tiempo para fragmentar el modelo se puede aumentar en gran medida." -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Grosor superior" +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Gráfico de flujo y temperatura" -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "El revestimiento superior e inferior no se expandirá cuando las superficies superior e inferior del objeto tengan un ángulo mayor que este valor. Esto evita la expansión de las pequeñas áreas de revestimiento que se crean cuando la superficie del modelo tiene una pendiente casi vertical. Un ángulo de 0° es horizontal y no provoca la extensión de ningún revestimiento exterior, mientras que un ángulo de 90 ° es vertical y provoca la extensión de todo el revestimiento exterior." +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "Datos que vinculan el flujo de materiales (en 3 mm por segundo) a la temperatura (grados centígrados)." -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Superior o inferior" +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Circunferencia mínima de polígono" -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Superior o inferior" +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "Se filtran los polígonos en capas segmentadas que tienen una circunferencia más pequeña que esta. Los valores más pequeños suponen una resolución de malla mayor a costa de un tiempo de segmentación. Está indicado, sobre todo, para impresoras SLA y modelos 3D muy pequeños con muchos detalles." -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Aceleración superior/inferior" +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "Generar estructura entrelazada" -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Extrusor superior/inferior" +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "En las ubicaciones donde se tocan los modelos, genere una estructura de haz entrelazado. Esto mejora la adhesión entre los modelos, especialmente de aquellos impresos en materiales diferentes." -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Flujo superior o inferior" +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "Ancho del haz entrelazado" -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Impulso superior/inferior" +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "El ancho de los haces de la estructura entrelazada." -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Direcciones de línea superior/inferior" +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "Orientación de estructura entrelazada" -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Ancho de línea superior/inferior" +msgctxt "interlocking_orientation description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "La altura de los haces de la estructura entrelazada, medida en número de capas. Cuantas menos capas, mayor resistencia, pero más susceptible a los defectos." -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Patrón superior/inferior" +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "Recuento de capas de haz entrelazado" -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Velocidad superior/inferior" +msgctxt "interlocking_beam_layer_count description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "La altura de los haces de la estructura entrelazada, medida en número de capas. Cuantas menos capas, mayor resistencia, pero más susceptible a los defectos." -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Grosor superior/inferior" +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "Profundidad del entrelazado" -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "Tocando la placa de impresión" +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "La distancia del límite entre los modelos para generar una estructura entrelazada, medida en celdas. Un número demasiado bajo de celdas provocará una adhesión deficiente." -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Diámetro de la torre" +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "Distancia a los límites de entrelazado" -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Ángulo del techo de la torre" +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "La distancia desde el exterior de un modelo en el que no se generarán estructuras entrelazadas, medida en celdas." -msgctxt "mesh_rotation_matrix description" -msgid "Transformation matrix to be applied to the model when loading it from file." -msgstr "Matriz de transformación que se aplicará al modelo cuando se cargue desde el archivo." +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Descomponer el soporte en pedazos" -msgctxt "travel label" -msgid "Travel" -msgstr "Desplazamiento" +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "Omitir algunas conexiones de línea de soporte para que la estructura de soporte sea más fácil de descomponer. Este ajuste es aplicable al patrón de relleno del soporte en zigzag." -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Aceleración de desplazamiento" +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Tamaño de los pedazos de soporte" -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Distancia para evitar al desplazarse" +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "Omitir una conexión entre líneas de soporte una vez cada N milímetros a fin de lograr que la estructura de soporte resulte más fácil de descomponer." -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Impulso de desplazamiento" +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Recuento de líneas de pedazos del soporte" -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Velocidad de desplazamiento" +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "Omitir una de cada N líneas de conexión para que la estructura de soporte se descomponga fácilmente." -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "Tratar el modelo como una superficie solo, un volumen o volúmenes con superficies sueltas. El modo de impresión normal solo imprime volúmenes cerrados. «Superficie» imprime una sola pared trazando la superficie de la malla sin relleno ni forro superior/inferior. «Ambos» imprime volúmenes cerrados de la forma habitual y cualquier polígono restante como superficies." +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Habilitar parabrisas" -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Árbol" +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "Esto creará una pared alrededor del modelo que atrapa el aire (caliente) y lo protege contra flujos de aire exterior. Es especialmente útil para materiales que se deforman fácilmente." -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Trihexagonal" +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Distancia X/Y del parabrisas" -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Triángulos" +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "Distancia entre el parabrisas y la impresión, en las direcciones X/Y." -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Triángulos" +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Limitación del parabrisas" -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Triángulos" +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "Establece la altura del parabrisas. Seleccione esta opción para imprimir el parabrisas a la altura completa del modelo o a una altura limitada." -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Triángulos" +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Completo" -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Triángulos" +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Limitado" -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "Diámetro del tronco" +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Altura del parabrisas" -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "Limitación de la altura del parabrisas. Por encima de esta altura, no se imprimirá ningún parabrisas." -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Volúmenes de superposiciones de uniones" +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Convertir voladizo en imprimible" -msgctxt "bridge_wall_min_length description" -msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." -msgstr "Las paredes no compatibles menores que este valor se imprimirán utilizando los ajustes de pared habituales. Las paredes no compatibles mayores se imprimirán utilizando los ajustes de pared de puente." +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "Cambiar la geometría del modelo impreso de modo que se necesite un soporte mínimo. Los voladizos descendentes se convertirán en voladizos llanos y las áreas inclinadas caerán para ser más verticales." -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Utilizar capas de adaptación" +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Ángulo máximo del modelo" -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Usar torres" +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "Ángulo máximo de los voladizos una vez que se han hecho imprimibles. Un valor de 0º hace que todos los voladizos sean reemplazados por una pieza del modelo conectada a la placa de impresión y un valor de 90º no cambiará el modelo." -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "Utilice una tasa de aceleración independiente para los movimientos de desplazamiento. Si está deshabilitada, los movimientos de desplazamiento utilizarán el valor de aceleración de la línea impresa en su destino." +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Área máxima del agujero en voladizo" -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "Utilice una tasa de impulso independiente para los movimientos de desplazamiento. Si está deshabilitada, los movimientos de desplazamiento utilizarán el valor de impulso de la línea impresa en su destino." +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "El área máxima de un agujero en la base del modelo antes de que se elimine mediante la herramienta Convertir voladizo en imprimible. Se conservarán los agujeros más pequeños. Con un valor de 0 mm² se rellenan todos los agujeros de la base del modelo." -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "Utilizar la extrusión relativa en lugar de la extrusión absoluta. El uso de pasos de extrusión relativos permite un procesamiento posterior más sencillo del GCode. Sin embargo, no es compatible con todas las impresoras y puede causar ligeras desviaciones en la cantidad de material depositado si se compara con los pasos de extrusión absolutos. Con independencia de este ajuste, el modo de extrusión se ajustará siempre en absoluto antes de la salida de cualquier secuencia GCode." +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Habilitar depósito por inercia" -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "Usa torres especializadas como soporte de pequeñas áreas de voladizo. Estas torres tienen un diámetro mayor que la región que soportan. El diámetro de las torres disminuye cerca del voladizo, formando un techo." +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "Depósito por inercia sustituye la última parte de una trayectoria de extrusión por una trayectoria de desplazamiento. El material rezumado se utiliza para imprimir la última parte de la trayectoria de extrusión con el fin de reducir el encordado." -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "Utilice esta malla para modificar el relleno de otras mallas con las que se superpone. Reemplaza las zonas de relleno de otras mallas con zonas de esta malla. Se sugiere imprimir una pared y no un forro superior/inferior para esta malla." +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Volumen de depósito por inercia" -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "Utilice esta malla para especificar las áreas de soporte. Esta opción puede utilizarse para generar estructuras de soporte." +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "Volumen que de otro modo rezumaría. Este valor generalmente debería ser próximo al cubicaje del diámetro de la tobera." + +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Volumen mínimo antes del depósito por inercia" -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "Utilice esta malla para especificar los lugares del modelo en los que no debería detectarse ningún voladizo. Esta opción puede utilizarse para eliminar estructuras de soporte no deseadas." +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "Menor Volumen que deberá tener una trayectoria de extrusión antes de permitir el depósito por inercia. Para trayectorias de extrusión más pequeñas, se acumula menos presión en el tubo guía y, por tanto, el volumen depositado por inercia se escala linealmente. Este valor debe ser siempre mayor que el Volumen de depósito por inercia." -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Especificada por el usuario" +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Velocidad de depósito por inercia" -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Factor de escala vertical para la compensación de la contracción" +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "Velocidad a la que se desplaza durante el depósito por inercia con relación a la velocidad de la trayectoria de extrusión. Se recomienda un valor ligeramente por debajo del 100%, ya que la presión en el tubo guía disminuye durante el movimiento depósito por inercia." -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "Tolerancia vertical en las capas cortadas. Los contornos de una capa se generan normalmente pasando las secciones entrecruzadas a través del medio de cada espesor de capa (Media). Alternativamente, cada capa puede tener áreas ubicadas dentro del volumen a través de todo el grosor de la capa (Exclusiva) o una capa puede tener áreas ubicadas dentro en cualquier lugar de la capa (Inclusiva). La opción Inclusiva permite conservar la mayoría de los detalles, la opción Exclusiva permite obtener una adaptación óptima y la opción Media permite permanecer cerca de la superficie original." +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Tamaño de las bolsas 3D en cruces" -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Esperar a que la placa de impresión se caliente" +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "Tamaño de las bolsas en cruces del patrón de cruz 3D en las alturas en las que el patrón coincide consigo mismo." -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Esperar a la que la tobera se caliente" +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Imagen de densidad de relleno cruzada" -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Aceleración de la pared" +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "La ubicación del archivo de una imagen de la que los valores de brillo determinan la densidad mínima en la ubicación correspondiente en el relleno de la impresión." -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Recuento de distribución de pared" +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Imagen de densidad de relleno cruzada para soporte" -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Extrusor de pared" +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "La ubicación del archivo de una imagen de la que los valores de brillo determinan la densidad mínima en la ubicación correspondiente del soporte." -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Flujo de pared" +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Activar soporte cónico" -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Impulso de pared" +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "Hace que las áreas de soporte sean más pequeñas en la parte inferior que en el voladizo." -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Recuento de líneas de pared" +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Ángulo del soporte cónico" -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Ancho de línea de pared" +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "Ángulo de inclinación del soporte cónico. Donde 0 grados es vertical y 90 grados es horizontal. Cuanto más pequeños son los ángulos, más robusto es el soporte, pero consta de más material. Los ángulos negativos hacen que la base del soporte sea más ancha que la parte superior." -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Orden de paredes" +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Anchura mínima del soporte cónico" -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Velocidad de pared" +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "Ancho mínimo al que se reduce la base del área de soporte cónico. Las anchuras pequeñas pueden producir estructuras de soporte inestables." -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Grosor de la pared" +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Forro difuso" -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Longitud de transición de la pared" +msgctxt "magic_fuzzy_skin_enabled description" +msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." +msgstr "Fluctúa aleatoriamente durante la impresión de la pared exterior, de modo que la superficie tiene un aspecto desigual y difuso." -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Distancia del filtro de transición a la pared" +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Forro difuso exterior únicamente" -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Margen del filtro de transición de pared" +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "Use solo los contornos de las piezas, no los orificios de las piezas." -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Ángulo de umbral de transición de pared" +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Grosor del forro difuso" -msgctxt "shell label" -msgid "Walls" -msgstr "Paredes" +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "Ancho dentro de la cual se fluctúa. Se recomienda mantener este valor por debajo del ancho de la pared exterior, ya que las paredes interiores permanecen inalteradas." -msgctxt "wall_overhang_angle description" -msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." -msgstr "Las paredes con un ángulo de voladizo mayor que este se imprimirán con los ajustes de voladizo de pared. Cuando el valor sea 90, no se aplicará la condición de voladizo a la pared. El voladizo que se apoya en el soporte tampoco se tratará como voladizo." +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Densidad del forro difuso" -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "Cuando está activado, las trayectorias de las herramientas se corrigen para impresoras con planificadores de movimiento suave. Los pequeños movimientos que se desvían de la dirección general de la trayectoria de la herramienta se suavizan para mejorar los movimientos fluidos." +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "Densidad media de los puntos introducidos en cada polígono en una capa. Tenga en cuenta que los puntos originales del polígono se descartan, así que una baja densidad produce una reducción de la resolución." -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "Cuando está habilitado, se optimiza el orden en el que se imprimen las líneas de relleno para reducir la distancia de desplazamiento. La reducción del tiempo de desplazamiento obtenido depende en gran parte del modelo que se está fragmentando, el patrón de relleno, la densidad, etc. Tenga en cuenta que, para algunos modelos que tienen pequeñas áreas de relleno, el tiempo para fragmentar el modelo se puede aumentar en gran medida." +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Distancia de punto del forro difuso" -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "Al habilitar esta opción, la velocidad del ventilador de enfriamiento de impresión cambia para las áreas de forro que se encuentran inmediatamente encima del soporte." +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "Distancia media entre los puntos aleatorios introducidos en cada segmento de línea. Tenga en cuenta que los puntos originales del polígono se descartan, así que un suavizado alto produce una reducción de la resolución. Este valor debe ser mayor que la mitad del grosor del forro difuso." -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "Cuando se habilita, las coordenadas de la costura en z son relativas al centro de cada pieza. De lo contrario, las coordenadas definen una posición absoluta en la placa de impresión." +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Desplazamiento de extrusión máximo del factor de compensación del caudal" -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "Si es mayor que cero, los movimientos de desplazamiento de peinada que sean superiores a esta distancia utilizarán retracción. Si se establece como cero, no hay un máximo y los movimientos de peinada no utilizarán la retracción." +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "La distancia máxima en mm para mover el filamento con el fin de compensar los cambios en el caudal." -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "Cuando es mayor que cero, la expansión horizontal de los orificios se aplica gradualmente en orificios pequeños (los orificios pequeños se expanden más). Cuando se establezca en cero, la expansión horizontal de los orificios se aplicará a todos ellos. Los orificios mayores que el diámetro máximo de expansión horizontal de los orificios no se expanden." +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Factor de compensación del caudal" -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "Cuando es mayor que cero, la Expansión horizontal de agujeros es la cantidad de desplazamiento aplicada a todos los agujeros de cada capa. Los valores positivos aumentan el tamaño de los agujeros y los negativos lo reducen. Cuando esta configuración está activada, se puede ajustar aún más con el Diámetro máximo de expansión horizontal de agujeros." +msgctxt "flow_rate_extrusion_offset_factor description" +msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." +msgstr "La distancia para mover el filamento con el fin de compensar los cambios en el caudal, como porcentaje de la distancia a la que se movería el filamento en un segundo de extrusión." -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "Cuando se imprimen las áreas de forro del puente; la cantidad de material extruido se multiplica por este valor." +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Utilizar capas de adaptación" -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "Cuando se imprimen las paredes del puente; la cantidad de material extruido se multiplica por este valor." +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "Las capas de adaptación calculan las alturas de las capas dependiendo de la forma del modelo." -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Cuando se imprime la segunda capa del forro del puente; la cantidad de material extruido se multiplica por este valor." +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "Variación máxima de las capas de adaptación" -msgctxt "bridge_skin_material_flow_3 description" -msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Cuando se imprime la tercera capa del forro del puente; la cantidad de material extruido se multiplica por este valor." +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "La diferencia de altura máxima permitida en comparación con la altura de la capa base." -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "Cuando se alcanza la velocidad mínima debido al tiempo mínimo de capa, levante el cabezal de la impresión y espere el tiempo adicional hasta que se alcance el tiempo mínimo de capa." +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "Tamaño de pasos de variación de las capas de adaptación" -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "Cuando el modelo tiene pequeños huecos verticales de solo unas pocas capas, normalmente suele haber forro alrededor de ellas en el espacio estrecho. Active este ajuste para no generar forro si el hueco vertical es muy pequeño. Esto mejora el tiempo de impresión y de segmentación, pero deja el relleno expuesto al aire." +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "La diferencia de altura de la siguiente altura de capa en comparación con la anterior." -msgctxt "wall_transition_angle description" -msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." -msgstr "Cuándo crear transiciones entre números de pared pares e impares. Una forma de cuña con un ángulo mayor que esta configuración no tiene transacciones y no se imprimirán paredes en el centro para rellenar el espacio restante. Reducir esta configuración reduce el número y la longitud de estas paredes centrales, pero puede dejar espacios o sobreextrusión." +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "Tamaño de la topografía de las capas de adaptación" -msgctxt "wall_transition_length description" -msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." -msgstr "Cuando se pasa de un número de paredes a otro a medida que la pieza se hace más delgada, se asigna una determinada cantidad de espacio para dividir o unir las líneas de contorno." +msgctxt "adaptive_layer_height_threshold description" +msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." +msgstr "Distancia horizontal objetivo entre dos capas adyacentes. Si se reduce este ajuste, se tendrán que utilizar capas más finas para acercar más los bordes de las capas." -msgctxt "wipe_hop_enable description" -msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "Siempre que se limpia, la placa de impresión se baja para crear holgura entre la tobera y la impresión. Impide que la tobera golpee la impresión durante los movimientos de desplazamiento, reduciendo las posibilidades de golpear la impresión desde la placa de impresión." +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Ángulo de voladizo de pared" -msgctxt "retraction_hop_enabled description" -msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "Siempre que se realiza una retracción, la placa de impresión se baja para crear holgura entre la tobera y la impresión. Impide que la tobera golpee la impresión durante movimientos de desplazamiento, reduciendo las posibilidades de alcanzar la impresión de la placa de impresión." +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." +msgstr "Las paredes con un ángulo de voladizo mayor que este se imprimirán con los ajustes de voladizo de pared. Cuando el valor sea 90, no se aplicará la condición de voladizo a la pared. El voladizo que se apoya en el soporte tampoco se tratará como voladizo." -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "Elija si quiere que la distancia X/Y del soporte prevalezca sobre la distancia Z del soporte o viceversa. Si X/Y prevalece sobre Z, la distancia X/Y puede separar el soporte del modelo, lo que afectaría a la distancia Z real con respecto al voladizo. Esta opción puede desactivarse si la distancia X/Y no se aplica a los voladizos." +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Velocidad de voladizo de pared" -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "Indica si las coordenadas X/Y de la posición inicial del cabezal de impresión se encuentran en el centro del área de impresión." +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "Los voladizos de pared se imprimirán a este porcentaje de su velocidad de impresión normal." -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "Si el tope del eje X se encuentra en la dirección positiva (coordenada X hacia arriba) o negativa (coordenada X hacia abajo)." +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Habilitar ajustes del puente" + +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "Detección de puentes y modificación de los ajustes de velocidad de impresión, flujo y ventilador durante la impresión de puentes." -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "Si el tope del eje Y se encuentra en la dirección positiva (coordenada Y hacia arriba) o negativa (coordenada Y hacia abajo)." +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Longitud mínima de la pared del puente" -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "Si el tope del eje Z se encuentra en la dirección positiva (coordenada Z hacia arriba) o negativa (coordenada Z hacia abajo)." +msgctxt "bridge_wall_min_length description" +msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." +msgstr "Las paredes no compatibles menores que este valor se imprimirán utilizando los ajustes de pared habituales. Las paredes no compatibles mayores se imprimirán utilizando los ajustes de pared de puente." -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "Si los extrusores comparten un único calentador en lugar de que cada extrusor tenga el suyo propio." +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Umbral del soporte del forro del puente" -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "Indica si los extrusores comparten una única tobera en lugar de que cada uno tenga la suya propia. Cuando se establece en true, se espera que la secuencia de comandos gcode de inicio de la impresora establezca todos los extrusores en un estado de retracción inicial conocido y mutuamente compatible (ninguno o un solo filamento que no se retrae); en este caso, el estado de retracción inicial se describe, por extrusor, mediante el parámetro \"machine_extruders_shared_nozzle_initial_retraction\"." +msgctxt "bridge_skin_support_threshold description" +msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." +msgstr "Si un área de forro es compatible con un porcentaje inferior de su área, se imprime utilizando los ajustes de puente. De lo contrario, se imprimirá utilizando los ajustes de forro habituales." -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "Indica si la máquina tiene una placa de impresión caliente." +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Densidad máxima de relleno de puente escaso" -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "Si la máquina puede estabilizar la temperatura del volumen de impresión." +msgctxt "bridge_sparse_infill_max_density description" +msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." +msgstr "La máxima densidad de relleno que se considera escasa. El forro sobre el relleno escaso se considera sin soporte y, por lo tanto, se puede tratar como un forro de puente." -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "Centrar o no el objeto en el centro de la plataforma de impresión (0, 0), en vez de utilizar el sistema de coordenadas con el que se guardó el objeto." +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Depósito por inercia de la pared del puente" -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "Para controlar la temperatura desde Cura. Si va a controlar la temperatura de la tobera desde fuera de Cura, desactive esta opción." +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "Controla la distancia del depósito por inercia del extrusor justo antes de empezar un puente. Un depósito por inercia antes del inicio del puente puede reducir la presión en la tobera y dar como resultado un puente más horizontal." -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "Elija si desea incluir comandos de temperatura de la placa de impresión al iniciar el Gcode. Si start_gcode ya contiene comandos de temperatura de la placa de impresión, la interfaz de Cura desactivará este ajuste de forma automática." +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Velocidad de pared del puente" -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "Elija si desea incluir comandos de temperatura de la tobera al inicio del Gcode. Si start_gcode ya contiene comandos de temperatura de la tobera, la interfaz de Cura desactivará este ajuste de forma automática." +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "Velocidad a la que se imprimen las paredes del puente." -msgctxt "clean_between_layers description" -msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." -msgstr "Posibilidad de incluir GCode de limpieza de tobera entre capas (máximo 1 por capa). Habilitar este ajuste puede influir en el comportamiento de retracción en el cambio de capa. Utilice los ajustes de retracción de limpieza para controlar la retracción en las capas donde la secuencia de limpieza estará en curso." +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Flujo de pared del puente" -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "Elija si desea escribir un comando para esperar a que la temperatura de la placa de impresión se alcance al inicio." +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "Cuando se imprimen las paredes del puente; la cantidad de material extruido se multiplica por este valor." -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "Si cebar el filamento con una gota antes de imprimir. Al activar este ajuste se garantiza que el extrusor tendrá material listo en la tobera antes de imprimir. La impresión de borde o falda puede actuar como cebado también, en este caso ahorrará tiempo al desactivar este ajuste." +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Velocidad de forro del puente" -msgctxt "print_sequence description" -msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -msgstr "Con esta opción se decide si imprimir todos los modelos al mismo tiempo capa por capa o esperar a terminar un modelo antes de pasar al siguiente. El modo de uno en uno solo es posible si todos los modelos están lo suficientemente separados para que el cabezal de impresión pase entre ellos y todos estén a menos de la distancia entre la boquilla y los ejes X/Y." +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "Velocidad a la que se imprimen las áreas de forro del puente." -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "Elija si desea mostrar las diferentes versiones de esta máquina, las cuales están descritas en archivos .json independientes." +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Flujo de forro del puente" -msgctxt "machine_firmware_retract description" -msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." -msgstr "Utilizar o no los comandos de retracción de firmware (G10/G11) en lugar de utilizar la propiedad E en comandos G1 para retraer el material." +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "Cuando se imprimen las áreas de forro del puente; la cantidad de material extruido se multiplica por este valor." -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "Elija si desea esperar a que la temperatura de la tobera se alcance al inicio." +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Densidad de forro del puente" -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Ancho de una sola línea de relleno." +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Densidad de la capa de forro del puente. Un valor inferior a 100 aumentará los huecos entre las líneas del forro." -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "Ancho de una sola línea de techo o suelo de soporte." +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Velocidad del ventilador del puente" -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "Ancho de una sola línea de las áreas superiores de la impresión." +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "Porcentaje de velocidad del ventilador que se emplea en la impresión de las paredes y el forro del puente." -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "Ancho de una única línea. Generalmente, el ancho de cada línea se debería corresponder con el ancho de la tobera. Sin embargo, reducir este valor ligeramente podría producir mejores impresiones." +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Puente con varias capas" -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "Ancho de una sola línea de la torre auxiliar." +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "Si esta opción está habilitada, la segunda y tercera capa por encima del aire se imprimen utilizando los siguientes ajustes. De lo contrario, estas capas se imprimen utilizando los ajustes habituales." -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "Ancho de una sola línea de falda o borde." +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Velocidad del segundo forro del puente" -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "Ancho de una sola línea de suelo de soporte." +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "Velocidad de impresión que se utiliza para imprimir la segunda capa del forro del puente." -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "Ancho de una sola línea de techo de soporte." +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Flujo del segundo forro del puente" -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Ancho de una sola línea de estructura de soporte." +msgctxt "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Cuando se imprime la segunda capa del forro del puente; la cantidad de material extruido se multiplica por este valor." -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Ancho de una sola línea superior/inferior." +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Densidad del segundo forro del puente" -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "Ancho de una sola línea de pared para todas las líneas de pared excepto la más externa." +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Densidad de la segunda capa de forro del puente. Un valor inferior a 100 aumentará los huecos entre las líneas del forro." -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Ancho de una sola línea de pared." +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Velocidad del ventilador del segundo forro del puente" -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "Ancho de las líneas de la capa base de la balsa. Estas deben ser líneas gruesas para facilitar la adherencia a la placa e impresión." +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "Velocidad del ventilador en porcentaje que se utiliza para imprimir la segunda capa del forro del puente." -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "Ancho de las líneas de la capa intermedia de la balsa. Haciendo la segunda capa con mayor extrusión las líneas se adhieren a la placa de impresión." +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Velocidad del tercer forro del puente" -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "Ancho de las líneas de la superficie superior de la balsa. Estas pueden ser líneas finas para que la parte superior de la balsa sea lisa." +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "Velocidad de impresión que se utiliza para imprimir la tercera capa del forro del puente." -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "Ancho de la línea de pared más externa. Reduciendo este valor se puede imprimir con un mayor nivel de detalle." +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Flujo del tercer forro del puente" -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "Ancho de la pared que reemplazará las características delgadas (según el tamaño mínimo de la característica) del modelo. Si el ancho mínimo de la línea perimetral es más delgado que el grosor de la característica, la pared se volverá tan gruesa como la propia característica." +msgctxt "bridge_skin_material_flow_3 description" +msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Cuando se imprime la tercera capa del forro del puente; la cantidad de material extruido se multiplica por este valor." -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "Limpiar posición X de cepillo" +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Densidad del tercer forro del puente" -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Limpiar velocidad de salto" +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Densidad de la tercera capa de forro del puente. Un valor inferior a 100 aumentará los huecos entre las líneas del forro." -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "Limpiar tobera inactiva de la torre auxiliar" +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Velocidad del ventilador del tercer forro del puente" -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Distancia de movimiento de limpieza" +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "Velocidad del ventilador en porcentaje que se utiliza para imprimir la tercera capa del forro del puente." msgctxt "clean_between_layers label" msgid "Wipe Nozzle Between Layers" msgstr "Limpiar tobera entre capas" -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Pausar limpieza" +msgctxt "clean_between_layers description" +msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." +msgstr "Posibilidad de incluir GCode de limpieza de tobera entre capas (máximo 1 por capa). Habilitar este ajuste puede influir en el comportamiento de retracción en el cambio de capa. Utilice los ajustes de retracción de limpieza para controlar la retracción en las capas donde la secuencia de limpieza estará en curso." -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Recuento de repeticiones de limpieza" +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Volumen de material entre limpiezas" -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Distancia de retracción de limpieza" +msgctxt "max_extrusion_before_wipe description" +msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." +msgstr "Material máximo que puede extruirse antes de que se inicie otra limpieza de la tobera. Si este valor es inferior al volumen de material necesario en una capa, el ajuste no tiene efecto en esa capa, es decir, se limita a una limpieza por capa." msgctxt "wipe_retraction_enable label" msgid "Wipe Retraction Enable" msgstr "Habilitación de retracción de limpieza" +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Retrae el filamento cuando la tobera se mueve sobre un área no impresa." + +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Distancia de retracción de limpieza" + +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "Cantidad para retraer el filamento para que no rezume durante la secuencia de limpieza." + msgctxt "wipe_retraction_extra_prime_amount label" msgid "Wipe Retraction Extra Prime Amount" msgstr "Cantidad de cebado adicional de retracción de limpieza" -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Velocidad de cebado de retracción de limpieza" +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "Algunos materiales pueden rezumar durante el movimiento de un desplazamiento de limpieza, lo cual se puede corregir aquí." + +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Velocidad de retracción de limpieza" + +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "Velocidad a la que se retrae el filamento y se prepara durante un movimiento de retracción de limpieza." msgctxt "wipe_retraction_retract_speed label" msgid "Wipe Retraction Retract Speed" msgstr "Velocidad de retracción en retracción de limpieza" -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Velocidad de retracción de limpieza" +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "Velocidad a la que se retrae el filamento durante un movimiento de retracción de limpieza." + +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Velocidad de cebado de retracción de limpieza" + +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "Velocidad a la que se prepara el filamento durante un movimiento de retracción de limpieza." + +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Pausar limpieza" + +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Pausa después de no haber retracción." msgctxt "wipe_hop_enable label" msgid "Wipe Z Hop" msgstr "Limpiar salto en Z" +msgctxt "wipe_hop_enable description" +msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "Siempre que se limpia, la placa de impresión se baja para crear holgura entre la tobera y la impresión. Impide que la tobera golpee la impresión durante los movimientos de desplazamiento, reduciendo las posibilidades de golpear la impresión desde la placa de impresión." + msgctxt "wipe_hop_amount label" msgid "Wipe Z Hop Height" msgstr "Limpiar altura del salto en Z" -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "Sobre el relleno" +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "Diferencia de altura cuando se realiza un salto en Z." -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "Escriba la herramienta activa después de enviar comandos temporales a la herramienta inactiva. Requerido para la impresión de extrusión dual con Smoothie u otro firmware con comandos de herramientas modales." +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Limpiar velocidad de salto" -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "Tope de X en dirección positiva" +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "Velocidad para mover el eje Z durante el salto." + +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "Limpiar posición X de cepillo" msgctxt "wipe_brush_pos_x description" msgid "X location where wipe script will start." msgstr "Ubicación X donde se iniciará la secuencia de limpieza." -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y sobre Z" +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Recuento de repeticiones de limpieza" -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Tope de Y en dirección positiva" +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "Número de movimientos de la tobera a lo largo del cepillo." -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Tope de Z en dirección positiva" +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Distancia de movimiento de limpieza" -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Salto en Z tras cambio de extrusor" +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "La distancia para mover el cabezal hacia adelante y hacia atrás a lo largo del cepillo." -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Salto en Z tras altura de cambio de extrusor" +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Tamaño máximo de agujero pequeño" -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Altura del salto en Z" +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "Los agujeros y contornos de las piezas con un diámetro menor que estos se imprimen utilizando la función Velocidad de pequeñas partes." -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Salto en Z solo en las partes impresas" +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Longitud máxima de pequeñas partes" -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Velocidad del salto en Z" +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "Los contornos de las partes que sean más cortos que esta longitud se imprimen utilizando la función Velocidad de pequeñas partes." -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Salto en Z en la retracción" +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Velocidad de pequeñas partes" -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Alineación de costuras en Z" +msgctxt "small_feature_speed_factor description" +msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "Las pequeñas partes se imprimirán a este porcentaje de su velocidad de impresión normal. Una impresión más lenta puede mejorar la adhesión y la precisión." -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Posición de costura en Z" +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Velocidad de la capa inicial de partes pequeñas" -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Costuras relativas en Z" +msgctxt "small_feature_speed_factor_0 description" +msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "Las pequeñas partes de la primera capa se imprimirán a este porcentaje de su velocidad de impresión normal. Una impresión más lenta puede mejorar la adhesión y la precisión." -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "X de la costura Z" +msgctxt "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "Alternar direcciones de pared" -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Y de la costura Z" +msgctxt "material_alternate_walls description" +msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." +msgstr "Le permite alternar las direcciones de las paredes entre capas o insertos. Útil para materiales que pueden acumular tensión, como para imprimir en metal." -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z sobre X/Y" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Agrupar las paredes exteriores" -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Las paredes exteriores de diferentes islas en la misma capa se imprimen en secuencia. Cuando está habilitado, la cantidad de cambios de flujo se limita porque las paredes se imprimen de a una a la vez; cuando está deshabilitado, se reduce el número de desplazamientos entre islas porque las paredes en las mismas islas se agrupan." -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "Informe del proceso de impresión" -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "Informes de eventos que se salen de los umbrales establecidos" -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "Activar informe de proceso de impresión" -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "Habilite la generación de informes de procesos de impresión para establecer valores umbral para la posible detección de fallos." -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "Advertencia de caudal" -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "Límite del aviso de caudal para la detección." -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "Límite de caudal" -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "Límite en la anomalía de caudal para la detección." -msgctxt "travel description" -msgid "travel" -msgstr "desplazamiento" +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "Advertencia de temperatura de impresión" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "Límite en la advertencia de temperatura de impresión para la detección." -#~ msgctxt "brim_inside_margin description" -#~ msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -#~ msgstr "Una pieza completamente encerrada dentro de otra puede generar un borde exterior que toque el interior de la pieza exterior. Esto elimina cualquier borde dentro de esta distancia de los orificios internos." +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "Límite de temperatura de impresión" -#~ msgctxt "user_defined_print_order_enabled description" -#~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." -#~ msgstr "Permite ordenar la lista de objetos para establecer la secuencia de impresión manualmente. El primer objeto de la lista se imprimirá primero." +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "Límite de anomalía de temperatura de impresión para la detección." -#~ msgctxt "brim_inside_margin label" -#~ msgid "Brim Inside Avoid Margin" -#~ msgstr "Margen de distancia del borde interior" +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "Advertencia de temperatura de volumen de construcción" -#~ msgctxt "brim_outside_only label" -#~ msgid "Brim Only on Outside" -#~ msgstr "Borde solo en el exterior" +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "Límite de la advertencia de temperatura de volumen de construcción para la detección." -#~ msgctxt "gradual_flow_discretisation_step_size description" -#~ msgid "Duration of each step in the gradual flow change" -#~ msgstr "Duración de cada paso en el cambio de flujo gradual" +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "Límite de temperatura del volumen de acumulación" -#~ msgctxt "gradual_flow_enabled description" -#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -#~ msgstr "Activar cambios graduales de flujo. Cuando está activado, el flujo aumenta/disminuye gradualmente hasta el flujo objetivo. Esto es útil para impresoras con un tubo bowden donde el flujo no cambia inmediatamente cuando el motor del extrusor se enciende/apaga." +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "Límite de detección de anomalías en la temperatura del volumen de producción." -#~ msgctxt "reset_flow_duration description" -#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -#~ msgstr "Para cualquier movimiento de desplazamiento superior a este valor, el flujo de material se restablece con el flujo objetivo de las trayectorias" +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Ajustes de la línea de comandos" -#~ msgctxt "gradual_flow_discretisation_step_size label" -#~ msgid "Gradual flow discretisation step size" -#~ msgstr "Tamaño del paso de discretización del flujo gradual" +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "Ajustes que únicamente se utilizan si CuraEngine no se ejecuta desde la interfaz de Cura." -#~ msgctxt "gradual_flow_enabled label" -#~ msgid "Gradual flow enabled" -#~ msgstr "Flujo gradual activado" +msgctxt "center_object label" +msgid "Center Object" +msgstr "Centrar objeto" -#~ msgctxt "max_flow_acceleration label" -#~ msgid "Gradual flow max acceleration" -#~ msgstr "Aceleración máxima del flujo gradual" +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "Centrar o no el objeto en el centro de la plataforma de impresión (0, 0), en vez de utilizar el sistema de coordenadas con el que se guardó el objeto." -#~ msgctxt "layer_0_max_flow_acceleration label" -#~ msgid "Initial layer max flow acceleration" -#~ msgstr "Aceleración máxima del flujo de la capa inicial" +msgctxt "mesh_position_x label" +msgid "Mesh Position X" +msgstr "Posición X en la malla" -#~ msgctxt "layer_0_z_overlap description" -#~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -#~ msgstr "La superposición entre la primera y segunda capa del modelo para compensar la pérdida de material en el hueco de aire. Todas las capas por encima de la primera capa se desplazan hacia abajo por esta cantidad." +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "Desplazamiento aplicado al objeto en la dirección x." -#~ msgctxt "max_flow_acceleration description" -#~ msgid "Maximum acceleration for gradual flow changes" -#~ msgstr "Aceleración máxima para los cambios de flujo graduales" +msgctxt "mesh_position_y label" +msgid "Mesh Position Y" +msgstr "Posición Y en la malla" -#~ msgctxt "layer_0_max_flow_acceleration description" -#~ msgid "Minimum speed for gradual flow changes for the first layer" -#~ msgstr "Velocidad mínima para los cambios de flujo graduales de la primera capa" +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "Desplazamiento aplicado al objeto en la dirección y." -#~ msgctxt "brim_outside_only description" -#~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -#~ msgstr "Imprimir solo el borde en el exterior del modelo. Esto reduce el número de bordes que deberá retirar después sin que la adherencia a la plataforma se vea muy afectada." +msgctxt "mesh_position_z label" +msgid "Mesh Position Z" +msgstr "Posición Z en la malla" -#~ msgctxt "reset_flow_duration label" -#~ msgid "Reset flow duration" -#~ msgstr "Restablecer duración del flujo" +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "Desplazamiento aplicado al objeto sobre el eje Z. Permite efectuar la operación antes conocida como «Object Sink»." -#~ msgctxt "support_interface_skip_height label" -#~ msgid "Support Interface Resolution" -#~ msgstr "Resolución de la interfaz de soporte" +msgctxt "mesh_rotation_matrix label" +msgid "Mesh Rotation Matrix" +msgstr "Matriz de rotación de la malla" -#~ msgctxt "support_interface_skip_height description" -#~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -#~ msgstr "A la hora de comprobar si existe un modelo por encima y por debajo del soporte, tome las medidas de la altura determinada. Reducir los valores hará que se segmente más despacio, mientras que valores más altos pueden provocar que el soporte normal se imprima en lugares en los que debería haber una interfaz de soporte." +msgctxt "mesh_rotation_matrix description" +msgid "Transformation matrix to be applied to the model when loading it from file." +msgstr "Matriz de transformación que se aplicará al modelo cuando se cargue desde el archivo." diff --git a/resources/i18n/es_ES/gradual_flow_settings.def.json.po b/resources/i18n/es_ES/gradual_flow_settings.def.json.po index 363b0994aa1..964aab219f6 100644 --- a/resources/i18n/es_ES/gradual_flow_settings.def.json.po +++ b/resources/i18n/es_ES/gradual_flow_settings.def.json.po @@ -1,54 +1,53 @@ -# msgid "" msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: 2024-03-11 11:28+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: en\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" - msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" msgstr "Gradual flow max acceleration" -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" - msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" msgstr "Maximum acceleration for gradual flow changes" +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" msgstr "Minimum speed for gradual flow changes for the first layer" +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + msgctxt "reset_flow_duration label" msgid "Reset flow duration" msgstr "Reset flow duration" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" diff --git a/resources/i18n/fr_FR/cura.po b/resources/i18n/fr_FR/cura.po index bc58fb9ca88..5e450c09d88 100644 --- a/resources/i18n/fr_FR/cura.po +++ b/resources/i18n/fr_FR/cura.po @@ -12,7 +12,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" -#, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" msgstr "%(width).1f x %(depth).1f x %(height).1f mm" @@ -119,7 +118,7 @@ msgstr "&Enregistrer le projet..." msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" msgid "&Save Universal Cura Project..." -msgstr "" +msgstr "&Enregistrer vers Universal Cura Project..." msgctxt "@title:menu menubar:toplevel" msgid "&Settings" @@ -142,10 +141,7 @@ msgid "*You will need to restart the application for these changes to have effec msgstr "*Vous devez redémarrer l'application pour appliquer ces changements." msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" msgstr "- Ajoutez des profils de matériaux et des plug-ins à partir de la Marketplace- Sauvegardez et synchronisez vos profils de matériaux et vos plug-ins- Partagez vos idées et obtenez l'aide de plus de 48 000 utilisateurs de la communauté Ultimaker" msgctxt "@heading" @@ -172,14 +168,6 @@ msgctxt "@item:inlistbox" msgid "3MF File" msgstr "Fichier 3MF" -msgctxt "name" -msgid "3MF Reader" -msgstr "Lecteur 3MF" - -msgctxt "name" -msgid "3MF Writer" -msgstr "Générateur 3MF" - msgctxt "@error:zip" msgid "3MF Writer plug-in is corrupt." msgstr "Le plugin 3MF Writer est corrompu." @@ -200,56 +188,37 @@ msgctxt "@label %i will be replaced with a profile name" msgid "Only user changed settings will be saved in the custom profile.
                                      For materials that support it, the new custom profile will inherit properties from %1." msgstr "Seuls les paramètres modifiés par l'utilisateur seront enregistrés dans le profil personnalisé.
                                      Pour les matériaux qui le permettent, le nouveau profil personnalisé héritera des propriétés de %1." -#, python-brace-format msgctxt "@label OpenGL renderer" msgid "
                                    • OpenGL Renderer: {renderer}
                                    • " msgstr "
                                    • Moteur de rendu OpenGL: {renderer}
                                    • " -#, python-brace-format msgctxt "@label OpenGL vendor" msgid "
                                    • OpenGL Vendor: {vendor}
                                    • " msgstr "
                                    • Revendeur OpenGL: {vendor}
                                    • " -#, python-brace-format msgctxt "@label OpenGL version" msgid "
                                    • OpenGL Version: {version}
                                    • " msgstr "
                                    • Version OpenGL: {version}
                                    • " msgctxt "@label crash message" -msgid "" -"

                                      A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

                                      \n" -"

                                      Please use the \"Send report\" button to post a bug report automatically to our servers

                                      \n" -" " -msgstr "" -"

                                      Une erreur fatale est survenue dans Cura. Veuillez nous envoyer ce rapport d'incident pour résoudre le problème

                                      \n" -"

                                      Veuillez utiliser le bouton « Envoyer rapport » pour publier automatiquement un rapport d'erreur sur nos serveurs

                                      \n" +msgid "

                                      A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

                                      \n

                                      Please use the \"Send report\" button to post a bug report automatically to our servers

                                      \n " +msgstr "

                                      Une erreur fatale est survenue dans Cura. Veuillez nous envoyer ce rapport d'incident pour résoudre le problème

                                      " +"

                                      Veuillez utiliser le bouton « Envoyer rapport » pour publier automatiquement un rapport d'erreur sur nos serveurs

                                      " " " msgctxt "@label crash message" -msgid "" -"

                                      Oops, UltiMaker Cura has encountered something that doesn't seem right.

                                      \n" -"

                                      We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

                                      \n" -"

                                      Backups can be found in the configuration folder.

                                      \n" -"

                                      Please send us this Crash Report to fix the problem.

                                      \n" -" " -msgstr "" -"

                                      Oups, un problème est survenu dans UltiMaker Cura.

                                      \n" -"

                                      Une erreur irrécupérable est survenue lors du démarrage. Elle peut avoir été causée par des fichiers de configuration incorrects. Nous vous suggérons de sauvegarder et de réinitialiser votre configuration.

                                      \n" -"

                                      Les sauvegardes se trouvent dans le dossier de configuration.

                                      \n" -"

                                      Veuillez nous envoyer ce rapport d'incident pour que nous puissions résoudre le problème.

                                      \n" +msgid "

                                      Oops, UltiMaker Cura has encountered something that doesn't seem right.

                                      \n

                                      We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

                                      \n

                                      Backups can be found in the configuration folder.

                                      \n

                                      Please send us this Crash Report to fix the problem.

                                      \n " +msgstr "

                                      Oups, un problème est survenu dans UltiMaker Cura.

                                      " +"

                                      Une erreur irrécupérable est survenue lors du démarrage. Elle peut avoir été causée par des fichiers de configuration incorrects. Nous vous suggérons de sauvegarder et de réinitialiser votre configuration.

                                      " +"

                                      Les sauvegardes se trouvent dans le dossier de configuration.

                                      " +"

                                      Veuillez nous envoyer ce rapport d'incident pour que nous puissions résoudre le problème.

                                      " " " -#, python-brace-format msgctxt "@info:status" -msgid "" -"

                                      One or more 3D models may not print optimally due to the model size and material configuration:

                                      \n" -"

                                      {model_names}

                                      \n" -"

                                      Find out how to ensure the best possible print quality and reliability.

                                      \n" -"

                                      View print quality guide

                                      " -msgstr "" -"

                                      Un ou plusieurs modèles 3D peuvent ne pas s'imprimer de manière optimale en raison de la taille du modèle et de la configuration matérielle:

                                      \n" -"

                                      {model_names}

                                      \n" -"

                                      Découvrez comment optimiser la qualité et la fiabilité de l'impression.

                                      \n" +msgid "

                                      One or more 3D models may not print optimally due to the model size and material configuration:

                                      \n

                                      {model_names}

                                      \n

                                      Find out how to ensure the best possible print quality and reliability.

                                      \n

                                      View print quality guide

                                      " +msgstr "

                                      Un ou plusieurs modèles 3D peuvent ne pas s'imprimer de manière optimale en raison de la taille du modèle et de la configuration matérielle:

                                      " +"

                                      {model_names}

                                      " +"

                                      Découvrez comment optimiser la qualité et la fiabilité de l'impression.

                                      " "

                                      Consultez le guide de qualité d'impression

                                      " msgctxt "@label" @@ -264,7 +233,7 @@ msgstr[1] "Une connexion cloud n'est pas disponible pour certaines imprimantes" msgctxt "@text" msgid "A highly dense and strong part but at a slower print time. Great for functional parts." -msgstr "" +msgstr "Une pièce très dense et résistante, mais avec un temps d'impression plus lent. Idéal pour les pièces fonctionnelles." msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." @@ -274,10 +243,6 @@ msgctxt "@item:inlistbox" msgid "AMF File" msgstr "Fichier AMF" -msgctxt "name" -msgid "AMF Reader" -msgstr "Lecteur AMF" - msgctxt "@label" msgid "Abort" msgstr "Abandonner" @@ -314,10 +279,6 @@ msgctxt "@button" msgid "Accept" msgstr "Accepter" -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Accepte les G-Code et les envoie à une imprimante. Ce plugin peut aussi mettre à jour le firmware." - msgctxt "@label" msgid "Account synced" msgstr "Compte synchronisé" @@ -410,7 +371,6 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Ajouter l'imprimante manuellement" -#, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "Ajout de l'imprimante {name} ({model}) à partir de votre compte" @@ -451,7 +411,6 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Tous les fichiers (*)" -#, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "Tous les types supportés ({0})" @@ -460,10 +419,6 @@ msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "Autoriser l'envoi de données anonymes" -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Permet le chargement et l'affichage de fichiers G-Code." - msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Toujours me demander" @@ -502,7 +457,7 @@ msgstr "Anonyme" msgctxt "@option:radio" msgid "Anonymous crash reports" -msgstr "" +msgstr "Rapports de plantage anonymes" msgctxt "@label Description for application component" msgid "Application framework" @@ -510,7 +465,7 @@ msgstr "Cadre d'application" msgctxt "@title:column" msgid "Applies on" -msgstr "" +msgstr "S'applique sur" msgctxt "@label" msgid "Apply Extruder offsets to GCode" @@ -544,7 +499,6 @@ msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to move %1 to the top of the queue?" msgstr "Êtes-vous sûr de vouloir déplacer %1 en haut de la file d'attente ?" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "Voulez-vous vraiment supprimer {printer_name} temporairement?" @@ -557,7 +511,6 @@ msgctxt "@label (%1 is object name)" msgid "Are you sure you wish to remove %1? This cannot be undone!" msgstr "Êtes-vous sûr de vouloir supprimer l'objet %1 ? Vous ne pourrez pas revenir en arrière !" -#, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "Voulez-vous vraiment supprimer l'objet {0}? Cette action est irréversible!" @@ -622,10 +575,6 @@ msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Sauvegarder et réinitialiser la configuration" -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Sauvegardez et restaurez votre configuration." - msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "Sauvegardez et synchronisez vos paramètres de matériaux et vos plugins" @@ -700,7 +649,7 @@ msgstr "Calculer" msgctxt "@window:text" msgid "Camera navigation:" -msgstr "" +msgstr "Navigation de la caméra :" msgctxt "@window:text" msgid "Camera rendering:" @@ -722,12 +671,10 @@ msgctxt "@label" msgid "Can't connect to your UltiMaker printer?" msgstr "Impossible de vous connecter à votre imprimante UltiMaker ?" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "Impossible d'importer le profil depuis {0} avant l'ajout d'une imprimante." -#, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "Impossible d'ouvrir un autre fichier si le G-Code est en cours de chargement. Importation de {0} sautée" @@ -800,21 +747,8 @@ msgctxt "@label" msgid "Checking..." msgstr "Vérification en cours..." -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Vérifie les mises à jour du firmware." - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Vérifie les modèles et la configuration de l'impression pour déceler d'éventuels problèmes d'impression et donne des suggestions." - msgctxt "@label" -msgid "" -"Chooses between the techniques available to generate support. \n" -"\n" -"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" -"\n" -"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "Choisit entre les stratégies de support disponibles. Le support « Normal » créé une structure de support directement sous les zones en porte-à-faux et fait descendre les supports directement vers le bas. Le support « Arborescent » génère une structure de branches depuis le plateau tout autour du modèle qui vont supporter les portes-à-faux sans toucher le modèle ailleur que les zones supportées." msgctxt "@action:inmenu menubar:edit" @@ -893,14 +827,6 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Fichier G-Code compressé" -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Lecteur G-Code compressé" - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Générateur de G-Code compressé" - msgctxt "@title:window" msgid "Configuration Changes" msgstr "Modifications de configuration" @@ -973,10 +899,6 @@ msgctxt "@info:status" msgid "Connected via cloud" msgstr "Connecté via le cloud" -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Se connecte à la Digital Library, permettant à Cura d'ouvrir des fichiers à partir de cette dernière et d'y enregistrer des fichiers." - msgctxt "@tooltip:button" msgid "Consult the UltiMaker Community." msgstr "Consultez la communauté UltiMaker." @@ -999,7 +921,7 @@ msgstr "Copier dans le presse-papier" msgctxt "@action:menu" msgid "Copy value to all extruders" -msgstr "Copier la valeur vers tous les extrudeurs" +msgstr "Copier la valeur vers toutes les extrudeuses" msgctxt "@label" msgid "Cost per Meter" @@ -1017,7 +939,6 @@ msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "Impossible de créer une archive à partir du répertoire de données de l'utilisateur: {}" -#, python-brace-format msgctxt "@info:status Don't translate the tag {device}!" msgid "Could not find a file name when trying to write to {device}." msgstr "Impossible de trouver un nom de fichier lors d'une tentative d'écriture sur {device}." @@ -1046,12 +967,10 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Impossible d'enregistrer l'archive du matériau dans {} :" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "Impossible d'enregistrer {0} : {1}" -#, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Impossible d'enregistrer sur le lecteur {0}: {1}" @@ -1060,31 +979,19 @@ msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "Impossible de transférer les données à l'imprimante." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"No permission to execute process." -msgstr "" -"Impossible de démarrer EnginePlugin : {self._plugin_id}\n" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." +msgstr "Impossible de démarrer EnginePlugin : {self._plugin_id}" "Il n'y a pas d'autorisation pour exécuter le processus." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Operating system is blocking it (antivirus?)" -msgstr "" -"Impossible de démarrer EnginePlugin : {self._plugin_id}\n" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" +msgstr "Impossible de démarrer EnginePlugin : {self._plugin_id}" "Le système d'exploitation le bloque (antivirus ?)" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Resource is temporarily unavailable" -msgstr "" -"Impossible de démarrer EnginePlugin : {self._plugin_id}\n" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" +msgstr "Impossible de démarrer EnginePlugin : {self._plugin_id}" "La ressource est temporairement indisponible" msgctxt "@title:window" @@ -1127,10 +1034,6 @@ msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Créez des projets d'impression dans Digital Library." -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Crée un maillage effaceur pour bloquer l'impression du support en certains endroits" - msgctxt "@info:backup_status" msgid "Creating your backup..." msgstr "Création de votre sauvegarde..." @@ -1143,22 +1046,10 @@ msgctxt "@title:window" msgid "Cura Backups" msgstr "Sauvegardes Cura" -msgctxt "name" -msgid "Cura Backups" -msgstr "Sauvegardes Cura" - msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Profil Cura" -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Lecteur de profil Cura" - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Générateur de profil Cura" - msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Projet Cura fichier 3MF" @@ -1171,17 +1062,13 @@ msgctxt "@title:window" msgid "Cura can't start" msgstr "Échec du démarrage de Cura" -#, python-brace-format msgctxt "@info:status" msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." msgstr "Cura a détecté des profils de matériau qui ne sont pas encore installés sur l'imprimante hôte du groupe {0}." msgctxt "@info:credit" -msgid "" -"Cura is developed by UltiMaker in cooperation with the community.\n" -"Cura proudly uses the following open source projects:" -msgstr "" -"Cura a été développé par Ultimaker B.V. en coopération avec la communauté Ultimaker.\n" +msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" +msgstr "Cura a été développé par Ultimaker B.V. en coopération avec la communauté Ultimaker." "Cura est fier d'utiliser les projets open source suivants :" msgctxt "@label" @@ -1192,18 +1079,6 @@ msgctxt "@label Cura version number" msgid "Cura version" msgstr "Version Cura" -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Système CuraEngine" - -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "Plugin CuraEngine permettant de lisser progressivement le débit afin de limiter les sauts lorsque le débit est élevé" - -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - msgctxt "@label" msgid "Currency:" msgstr "Devise:" @@ -1434,7 +1309,7 @@ msgstr "Ébauche" msgctxt "@action:inmenu menubar:edit" msgid "Drop All Models to buildplate" -msgstr "" +msgstr "Déposer tous les modèles sur le plateau" msgctxt "@action:button" msgid "Duplicate" @@ -1460,12 +1335,10 @@ msgctxt "@action:button" msgid "Eject" msgstr "Ejecter" -#, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "Ejecter le lecteur amovible {0}" -#, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "Lecteur {0} éjecté. Vous pouvez maintenant le retirer en tout sécurité." @@ -1490,10 +1363,6 @@ msgctxt "@label" msgid "Enabled" msgstr "Activé" -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Permet de générer une géométrie imprimable à partir de fichiers d'image 2D." - msgctxt "@title:label" msgid "End G-code" msgstr "G-Code de fin" @@ -1564,7 +1433,7 @@ msgstr "Exporter la sélection..." msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Export Universal Cura Project" -msgstr "" +msgstr "Exporter vers Universal Cura Project" msgctxt "@button" msgid "Export material archive" @@ -1574,7 +1443,6 @@ msgctxt "@info:title" msgid "Export succeeded" msgstr "L'exportation a réussi" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Profil exporté vers {0}" @@ -1583,10 +1451,6 @@ msgctxt "@tooltip:button" msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "Étendez UltiMaker Cura avec des plugins et des profils de matériaux." -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Extension qui permet le post-traitement des scripts créés par l'utilisateur" - msgctxt "@label" msgid "Extruder" msgstr "Extrudeuse" @@ -1601,7 +1465,7 @@ msgstr "Extrudeuse G-Code de fin" msgctxt "@label" msgid "Extruder End G-code duration" -msgstr "" +msgstr "Durée du G-code à la fin de l'extrudeuse" msgctxt "@title:label" msgid "Extruder Start G-code" @@ -1609,12 +1473,11 @@ msgstr "Extrudeuse G-Code de démarrage" msgctxt "@label" msgid "Extruder Start G-code duration" -msgstr "" +msgstr "Durée du G-code du début de l'extrudeuse" -#, python-brace-format msgctxt "@label" msgid "Extruder {0}" -msgstr "" +msgstr "Extrudeuse {0}" msgctxt "@info:title" msgid "Extruder(s) Disabled" @@ -1636,7 +1499,6 @@ msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "Échec de la création de l'archive des matériaux à synchroniser avec les imprimantes." -#, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "Impossible d'éjecter {0}. Un autre programme utilise peut-être ce lecteur." @@ -1645,27 +1507,22 @@ msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "Échec de l'exportation de matériau vers %1 : %2" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Échec de l'exportation du profil vers {0} : {1}" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Échec de l'exportation du profil vers {0}: le plugin du générateur a rapporté une erreur." -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Échec de l'importation du profil depuis le fichier {0} :" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Échec de l'importation du profil depuis le fichier {0}:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Impossible d'importer le profil depuis {0}: {1}" @@ -1682,10 +1539,9 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Échec de l'enregistrement de l'archive des matériaux" -#, python-brace-format msgctxt "@info:status" msgid "Failed writing to specific cloud printer: {0} not in remote clusters." -msgstr "" +msgstr "Échec de l'écriture sur une imprimante cloud spécifique : {0} pas dans les groupes distants." msgctxt "@label:category menu label" msgid "Favorites" @@ -1711,7 +1567,6 @@ msgctxt "@info:title" msgid "File Saved" msgstr "Fichier enregistré" -#, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Le fichier {0} ne contient pas de profil valide." @@ -1744,14 +1599,6 @@ msgctxt "@title:window" msgid "Firmware Update" msgstr "Mise à jour du firmware" -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Vérificateur des mises à jour du firmware" - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Programme de mise à jour du firmware" - msgctxt "@label" msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." msgstr "Échec de la mise à jour du firmware, car cette fonctionnalité n'est pas prise en charge par la connexion avec l'imprimante." @@ -1829,7 +1676,7 @@ msgid "Force layer view compatibility mode (restart required)" msgstr "Forcer l'affichage de la couche en mode de compatibilité (redémarrage requis)" msgid "FreeCAD trackpad" -msgstr "" +msgstr "Pavé tactile de FreeCAD" msgctxt "@action:inmenu menubar:view" msgid "Front View" @@ -1851,18 +1698,6 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "Fichier GCode" -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Lecteur de profil G-Code" - -msgctxt "name" -msgid "G-code Reader" -msgstr "Lecteur G-Code" - -msgctxt "name" -msgid "G-code Writer" -msgstr "Générateur de G-Code" - msgctxt "@label" msgid "G-code flavor" msgstr "Parfum G-Code" @@ -1921,7 +1756,7 @@ msgstr "Prise en main" msgctxt "@label" msgid "Global" -msgstr "" +msgstr "Général" msgctxt "@title:tab" msgid "Global Settings" @@ -1935,7 +1770,6 @@ msgctxt "@label" msgid "Grid Placement" msgstr "Positionnement de la grille" -#, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "Groupe nº {group_nr}" @@ -1974,7 +1808,7 @@ msgstr "Masquer toutes les imprimantes connectées" msgctxt "@action:button" msgid "Hide settings" -msgstr "" +msgstr "Masquer les paramètres" msgctxt "@action:menu" msgid "Hide this setting" @@ -2012,10 +1846,6 @@ msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "Si votre imprimante n'apparaît pas dans la liste, lisez le guide de dépannage de l'impression en réseau" -msgctxt "name" -msgid "Image Reader" -msgstr "Lecteur d'images" - msgctxt "@action:button" msgid "Import" msgstr "Importer" @@ -2054,7 +1884,7 @@ msgstr "Pour pouvoir utiliser le package, vous devrez redémarrer Cura" msgctxt "@option:radio" msgid "Include UltiMaker account name" -msgstr "" +msgstr "Inclure le nom du compte UltiMaker" msgctxt "@label" msgid "Infill" @@ -2300,10 +2130,6 @@ msgctxt "@info:tooltip" msgid "Left View" msgstr "Vue gauche" -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Lecteur de profil Cura antérieur" - msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "Informez les développeurs en cas de problème." @@ -2384,10 +2210,6 @@ msgctxt "@title:groupbox" msgid "Logs" msgstr "Journaux" -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Enregistre certains événements afin qu'ils puissent être utilisés par le rapporteur d'incident" - msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Connexion avec l'imprimante perdue" @@ -2396,10 +2218,6 @@ msgctxt "@action" msgid "Machine Settings" msgstr "Paramètres de la machine" -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Action Paramètres de la machine" - msgctxt "@backuplist:label" msgid "Machines" msgstr "Machines" @@ -2416,10 +2234,6 @@ msgctxt "@item:inlistbox" msgid "Makerbot Printfile" msgstr "Fichier d'impression Makerbot" -msgctxt "name" -msgid "Makerbot Printfile Writer" -msgstr "Écrivain de fichier d'impression Makerbot" - msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "MakerbotWriter n'a pas pu sauvegarder dans le chemin désigné." @@ -2476,14 +2290,6 @@ msgctxt "@text" msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." msgstr "Gérez vos plug-ins Ultimaker Cura et vos profils matériaux ici. Assurez-vous de maintenir vos plug-ins à jour et de sauvegarder régulièrement votre configuration." -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "Gère les extensions de l'application et permet de parcourir les extensions à partir du site Web UltiMaker." - -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "Gère les connexions réseau vers les imprimantes UltiMaker en réseau." - msgctxt "@label" msgid "Manufacturer" msgstr "Fabricant" @@ -2496,10 +2302,6 @@ msgctxt "@label" msgid "Marketplace" msgstr "Marketplace" -msgctxt "name" -msgid "Marketplace" -msgstr "Marketplace" - msgctxt "@action:label" msgid "Material" msgstr "Matériau" @@ -2516,10 +2318,6 @@ msgctxt "@label:listbox" msgid "Material Color" msgstr "Couleur du matériau" -msgctxt "name" -msgid "Material Profiles" -msgstr "Profils matériels" - msgctxt "@label" msgid "Material Type" msgstr "Type de matériau" @@ -2564,10 +2362,6 @@ msgctxt "@action:label" msgid "Mode" msgstr "Mode" -msgctxt "name" -msgid "Model Checker" -msgstr "Contrôleur de modèle" - msgctxt "@info:title" msgid "Model Errors" msgstr "Erreurs du modèle" @@ -2584,10 +2378,6 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "Surveiller" -msgctxt "name" -msgid "Monitor Stage" -msgstr "Étape de surveillance" - msgctxt "@action:button" msgid "Monitor print" msgstr "Surveiller l'impression" @@ -2662,7 +2452,6 @@ msgctxt "@info:title" msgid "Network error" msgstr "Erreur de réseau" -#, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" msgstr "Nouveau %s firmware stable disponible" @@ -2675,7 +2464,6 @@ msgctxt "@label" msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." msgstr "Les nouvelles imprimantes UltiMaker peuvent être connectées à Digital Factory et contrôlées à distance." -#, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." msgstr "De nouvelles fonctionnalités ou des correctifs de bugs sont disponibles pour votre {machine_name} ! Si vous ne l'avez pas encore fait, il est recommandé de mettre à jour le micrologiciel de votre imprimante avec la version {latest_version}." @@ -2722,7 +2510,6 @@ msgctxt "@label" msgid "No cost estimation available" msgstr "Aucune estimation des coûts n'est disponible" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Aucun profil personnalisé à importer dans le fichier {0}" @@ -2761,7 +2548,7 @@ msgstr "Aucun résultat trouvé avec le filtre actuel" msgctxt "@label" msgid "No specific value has been set" -msgstr "" +msgstr "Aucune valeur spécifique n'a été définie" msgctxt "@label" msgid "No time estimation available" @@ -2859,14 +2646,13 @@ msgctxt "@label" msgid "Only Show Top Layers" msgstr "Afficher uniquement les couches supérieures" -#, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Un seul fichier G-Code peut être chargé à la fois. Importation de {0} sautée" msgctxt "@message" msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." -msgstr "" +msgstr "Oups ! Nous avons rencontré une erreur inattendue au cours de votre processus de découpage. Rassurez-vous, nous avons automatiquement reçu les journaux de plantage pour analyse, si vous n'avez pas désactivé le partage des données dans vos préférences. Pour nous aider davantage, envisagez de partager les détails de votre projet sur notre outil de suivi des problèmes." msgctxt "@action:button" msgid "Open" @@ -2898,11 +2684,11 @@ msgstr "Ouvrir un fichier de projet" msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Open Universal Cura Project (UCP)" -msgstr "" +msgstr "Ouverture du fichier Universal Cura Project (UCP)" msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Open Universal Cura Project (UCP) file" -msgstr "" +msgstr "Ouvrir un fichier Universal Cura Project (UCP)" msgctxt "@action:label" msgid "Open With" @@ -2910,7 +2696,7 @@ msgstr "Ouvrir avec" msgctxt "@action:button" msgid "Open as UCP" -msgstr "" +msgstr "Ouvrir en tant que UCP" msgctxt "@action:button" msgid "Open as project" @@ -3033,10 +2819,6 @@ msgctxt "@label" msgid "Per Model Settings" msgstr "Paramètres par modèle" -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Outil de paramètres par modèle" - msgid "Perspective" msgstr "Perspective" @@ -3073,15 +2855,10 @@ msgid "Please give the required permissions when authorizing this application." msgstr "Veuillez donner les permissions requises lors de l'autorisation de cette application." msgctxt "@info" -msgid "" -"Please make sure your printer has a connection:\n" -"- Check if the printer is turned on.\n" -"- Check if the printer is connected to the network.\n" -"- Check if you are signed in to discover cloud-connected printers." -msgstr "" -"Assurez-vous que votre imprimante est connectée:\n" -"- Vérifiez si l'imprimante est sous tension.\n" -"- Vérifiez si l'imprimante est connectée au réseau.\n" +msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." +msgstr "Assurez-vous que votre imprimante est connectée:" +"- Vérifiez si l'imprimante est sous tension." +"- Vérifiez si l'imprimante est connectée au réseau." "- Vérifiez si vous êtes connecté pour découvrir les imprimantes connectées au cloud." msgctxt "@text" @@ -3109,15 +2886,10 @@ msgid "Please remove the print" msgstr "Supprimez l'imprimante" msgctxt "@info:status" -msgid "" -"Please review settings and check if your models:\n" -"- Fit within the build volume\n" -"- Are assigned to an enabled extruder\n" -"- Are not all set as modifier meshes" -msgstr "" -"Veuillez vérifier les paramètres et si vos modèles:\n" -"- S'intègrent dans le volume de fabrication\n" -"- Sont affectés à un extrudeur activé\n" +msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" +msgstr "Veuillez vérifier les paramètres et si vos modèles:" +"- S'intègrent dans le volume de fabrication" +"- Sont affectés à une extrudeuse activée" "- N sont pas tous définis comme des mailles de modificateur" msgctxt "@label" @@ -3130,7 +2902,7 @@ msgstr "Veuillez vous connecter pour obtenir les plug-ins et matériaux vérifi msgctxt "@info:tooltip" msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." -msgstr "" +msgstr "Veuillez vous connecter à votre compte UltiMaker pour permettre l'envoi de données non anonymes." msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." @@ -3172,10 +2944,6 @@ msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Post-traitement" -msgctxt "name" -msgid "Post Processing" -msgstr "Post-traitement" - msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "Plugin de post-traitement" @@ -3192,10 +2960,6 @@ msgctxt "@item:inmenu" msgid "Prepare" msgstr "Préparer" -msgctxt "name" -msgid "Prepare Stage" -msgstr "Étape de préparation" - msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "Préparation..." @@ -3216,13 +2980,9 @@ msgctxt "@item:inmenu" msgid "Preview" msgstr "Aperçu" -msgctxt "name" -msgid "Preview Stage" -msgstr "Étape de prévisualisation" - msgctxt "@tooltip" msgid "Prime Tower" -msgstr "Tour primaire" +msgstr "Tour d'amorçage" msgctxt "@action:button" msgid "Print" @@ -3420,7 +3180,6 @@ msgctxt "@title:column" msgid "Profile settings" msgstr "Paramètres du profil" -#, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Le profil {0} est un type de fichier inconnu ou est corrompu." @@ -3445,22 +3204,18 @@ msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Langage de programmation" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "Le fichier projet {0} contient un type de machine inconnu {1}. Impossible d'importer la machine. Les modèles seront importés à la place." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "Le fichier de projet {0} est corrompu: {1}." -#, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." msgstr "Le fichier de projet {0} a été réalisé en utilisant des profils inconnus de cette version d'UltiMaker Cura." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "Le fichier de projet {0} est soudainement inaccessible: {1}." @@ -3469,147 +3224,42 @@ msgctxt "@label" msgid "Properties" msgstr "Propriétés" -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Fournit à une machine des actions permettant la mise à jour du firmware." - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Fournit une étape de surveillance dans Cura." +msgctxt "@label" +msgid "PyQt version" +msgstr "Version PyQt" -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Affiche une vue en maille solide normale." +msgctxt "@Label Description for application dependency" +msgid "Python Error tracking library" +msgstr "Bibliothèque de suivi des erreurs Python" -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Fournit une étape de préparation dans Cura." +msgctxt "@label Description for application dependency" +msgid "Python bindings for Clipper" +msgstr "Connexions avec Python pour Clipper" -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Fournit une étape de prévisualisation dans Cura." +msgctxt "@label Description for application component" +msgid "Python bindings for libnest2d" +msgstr "Liens en python pour libnest2d" -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Permet de modifier les paramètres de la machine (tels que volume d'impression, taille de buse, etc.)" +msgctxt "@label" +msgid "Qt version" +msgstr "Version Qt" -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Offre la possibilité de lire et d'écrire des profils matériels basés sur XML." +msgctxt "@info:status" +msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." +msgstr "Le type de qualité '{0}' n'est pas compatible avec la définition actuelle de la machine active '{1}'." -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Fournit les actions de la machine pour les machines UltiMaker (telles que l'assistant de calibration du plateau, sélection des mises à niveau, etc.)" +msgctxt "@info:title" +msgid "Queue Full" +msgstr "La file d'attente est pleine" -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Permet le branchement hot-plug et l'écriture sur lecteur amovible." - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Fournit la prise en charge de l'exportation de profils Cura." - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Fournit la prise en charge de l'importation de profils Cura." - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Fournit la prise en charge de l'importation de profils à partir de fichiers g-code." - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Fournit la prise en charge de l'importation de profils à partir de versions Cura antérieures." - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Fournit la prise en charge de la lecture de fichiers 3MF." - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Fournit la prise en charge de la lecture de fichiers AMF." - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Fournit un support pour la lecture des paquets de format UltiMaker." - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Fournit la prise en charge de la lecture de fichiers X3D." - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Fournit la prise en charge de la lecture de fichiers modèle 3D." - -msgctxt "description" -msgid "Provides support for writing 3MF and UCP files." -msgstr "" - -msgctxt "description" -msgid "Provides support for writing MakerBot Format Packages." -msgstr "Fournit un support pour l'écriture de paquets de format MakerBot." - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Permet l'écriture de fichiers UltiMaker Format Package." - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Fournit les paramètres par modèle." - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Permet la vue Rayon-X." - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Fournit le lien vers l'arrière du système de découpage CuraEngine." - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Fournit l'aperçu des données du slice." - -msgctxt "@label" -msgid "PyQt version" -msgstr "Version PyQt" - -msgctxt "@Label Description for application dependency" -msgid "Python Error tracking library" -msgstr "Bibliothèque de suivi des erreurs Python" - -msgctxt "@label Description for application dependency" -msgid "Python bindings for Clipper" -msgstr "Connexions avec Python pour Clipper" - -msgctxt "@label Description for application component" -msgid "Python bindings for libnest2d" -msgstr "Liens en python pour libnest2d" - -msgctxt "@label" -msgid "Qt version" -msgstr "Version Qt" - -#, python-brace-format -msgctxt "@info:status" -msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." -msgstr "Le type de qualité '{0}' n'est pas compatible avec la définition actuelle de la machine active '{1}'." - -msgctxt "@info:title" -msgid "Queue Full" -msgstr "La file d'attente est pleine" - -msgctxt "@label" -msgid "Queued" -msgstr "Mis en file d'attente" +msgctxt "@label" +msgid "Queued" +msgstr "Mis en file d'attente" msgctxt "@info:button, %1 is the application name" msgid "Quit %1" msgstr "Quitter %1" -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Lit le G-Code à partir d'une archive compressée." - msgctxt "@button" msgid "Recommended" msgstr "Recommandé" @@ -3662,10 +3312,6 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "Lecteur amovible" -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Plugin de périphérique de sortie sur disque amovible" - msgctxt "@action:button" msgid "Remove" msgstr "Supprimer" @@ -3788,11 +3434,11 @@ msgstr "Sauvegarder le projet Cura" msgctxt "@option" msgid "Save Cura project and .makerbot print file" -msgstr "" +msgstr "Sauvegarder le projet Cura et le fichier d'impression .makerbot" msgctxt "@option" msgid "Save Cura project and .ufp print file" -msgstr "" +msgstr "Enregistrer le projet Cura et le fichier d'impression .ufp" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3820,7 +3466,7 @@ msgstr "Enregistrer le nouveau profil" msgctxt "@action:button" msgid "Save project" -msgstr "" +msgstr "Enregistrer le projet" msgctxt "@text" msgid "Save the .umm file on a USB stick." @@ -3830,12 +3476,10 @@ msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "Enregistrer sur un lecteur amovible" -#, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "Enregistrer sur un lecteur amovible {0}" -#, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Enregistré sur le lecteur amovible {0} sous {1}" @@ -3844,7 +3488,6 @@ msgctxt "@info:title" msgid "Saving" msgstr "Enregistrement" -#, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Enregistrement sur le lecteur amovible {0}" @@ -3927,15 +3570,15 @@ msgstr "Envoyer le rapport de d'incident à UltiMaker" msgctxt "@info:tooltip" msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." -msgstr "" +msgstr "Envoyez des rapports de plantage avec votre nom de compte UltiMaker enregistré et le nom du projet à UltiMaker Sentry. Aucune donnée du modèle n'est envoyée." msgctxt "@info:tooltip" msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." -msgstr "" +msgstr "Envoyez à UltiMaker des rapports de plantage ne contenant pas d'informations personnelles identifiables ni de données sur les modèles." msgctxt "@option:check" msgid "Send engine crash reports" -msgstr "" +msgstr "Envoyer les rapports de plantage du moteur" msgctxt "@action:button" msgid "Send report" @@ -3949,17 +3592,13 @@ msgctxt "@info:title" msgid "Sending materials to printer" msgstr "Envoi de matériaux à l'imprimante" -msgctxt "name" -msgid "Sentry Logger" -msgstr "Journal d'événements dans Sentry" - msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Bibliothèque de communication série" msgctxt "@action:inmenu" msgid "Set as Active Extruder" -msgstr "Définir comme extrudeur actif" +msgstr "Définir comme extrudeuse active" msgctxt "@title:column" msgid "Setting" @@ -3991,7 +3630,7 @@ msgstr "Paramètres" msgctxt "@action:label" msgid "Settings Loaded from UCP file" -msgstr "" +msgstr "Paramètres chargés à partir du fichier UCP" msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" @@ -4063,7 +3702,7 @@ msgstr "L'ouverture de fichiers à partir du bureau ou d'applications externes d msgctxt "@info:tooltip" msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." -msgstr "" +msgstr "Les plantages de tranchage devraient-ils être automatiquement signalés à Ultimaker ? Notez qu'aucun modèle, adresse IP ou autre information personnellement identifiable n'est envoyé ou stocké, sauf si vous en donnez l'autorisation explicite." msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" @@ -4123,7 +3762,7 @@ msgstr "Afficher le rapport d'incident détaillé" msgctxt "@action:button" msgid "Show settings" -msgstr "" +msgstr "Afficher les paramètres" msgctxt "@option:check" msgid "Show summary dialog when saving project" @@ -4161,10 +3800,6 @@ msgctxt "@label" msgid "Sign in to the UltiMaker platform" msgstr "Connectez-vous à la plateforme UltiMaker" -msgctxt "name" -msgid "Simulation View" -msgstr "Vue simulation" - msgctxt "@tooltip" msgid "Skin" msgstr "Couche extérieure" @@ -4193,10 +3828,6 @@ msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Découper automatiquement si les paramètres sont modifiés." -msgctxt "name" -msgid "Slice info" -msgstr "Information sur le découpage" - msgctxt "@message:title" msgid "Slicing failed" msgstr "Échec de la découpe" @@ -4211,24 +3842,15 @@ msgstr "Lissage" msgctxt "@label" msgid "Solid" -msgstr "" - -msgctxt "name" -msgid "Solid View" -msgstr "Vue solide" +msgstr "Solide" msgctxt "@item:inmenu" msgid "Solid view" msgstr "Vue solide" msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "" -"Certains paramètres masqués utilisent des valeurs différentes de leur valeur normalement calculée.\n" -"\n" +msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." +msgstr "Certains paramètres masqués utilisent des valeurs différentes de leur valeur normalement calculée." "Cliquez pour rendre ces paramètres visibles." msgctxt "@info:status" @@ -4244,13 +3866,8 @@ msgid "Some setting-values defined in %1 were overridden." msgstr "Certaines valeurs de paramètres définies dans %1 ont été remplacées." msgctxt "@tooltip" -msgid "" -"Some setting/override values are different from the values stored in the profile.\n" -"\n" -"Click to open the profile manager." -msgstr "" -"Certaines valeurs de paramètre / forçage sont différentes des valeurs enregistrées dans le profil. \n" -"\n" +msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." +msgstr "Certaines valeurs de paramètre / forçage sont différentes des valeurs enregistrées dans le profil. " "Cliquez pour ouvrir le gestionnaire de profils." msgctxt "@action:label" @@ -4321,10 +3938,6 @@ msgctxt "@label" msgid "Strength" msgstr "Résistance" -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Envoie des informations anonymes sur le découpage. Peut être désactivé dans les préférences." - msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "Matériau exporté avec succès vers %1" @@ -4333,18 +3946,17 @@ msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "Matériau %1 importé avec succès" -#, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Importation du profil {0} réussie." msgctxt "@action:label" msgid "Suggested Material settings" -msgstr "" +msgstr "Paramètres suggérés pour les matériaux" msgctxt "@action:label" msgid "Suggested Profile settings" -msgstr "" +msgstr "Paramètres de profil suggérés" msgctxt "@action:title" msgid "Summary - Cura Project" @@ -4352,11 +3964,11 @@ msgstr "Résumé - Projet Cura" msgctxt "@action:title Don't translate 'Universal Cura Project'" msgid "Summary - Open Universal Cura Project (UCP)" -msgstr "" +msgstr "Résumé : Ouvrir Universal Cura Project (UCP)" msgctxt "@action:title Don't translate 'Universal Cura Project'" msgid "Summary - Universal Cura Project" -msgstr "" +msgstr "Résumé : Universal Cura Project" msgctxt "@label" msgid "Support" @@ -4370,10 +3982,6 @@ msgctxt "@label" msgid "Support Blocker" msgstr "Blocage des supports" -msgctxt "name" -msgid "Support Eraser" -msgstr "Effaceur de support" - msgctxt "@tooltip" msgid "Support Infill" msgstr "Remplissage du support" @@ -4506,11 +4114,11 @@ msgstr "L'imprimante cloud est hors ligne. Veuillez vérifier si l'imprimante es msgctxt "@tooltip" msgid "The colour of the material in this extruder." -msgstr "Couleur du matériau dans cet extrudeur." +msgstr "Couleur du matériau dans cet extrudeuse." msgctxt "@tooltip" msgid "The configuration of this extruder is not allowed, and prohibits slicing." -msgstr "La configuration de cet extrudeur n'est pas autorisée et interdit la découpe." +msgstr "La configuration de cet extrudeuse n'est pas autorisée et interdit la découpe." msgctxt "@label" msgid "The configurations are not available because the printer is disconnected." @@ -4540,7 +4148,6 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "Le chemin d'extrusion à utiliser pour l'impression du support. Cela est utilisé en multi-extrusion." -#, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "Le fichier {0} existe déjà. Êtes-vous sûr de vouloir le remplacer?" @@ -4585,7 +4192,7 @@ msgstr "Les zones surlignées indiquent que des surfaces manquent ou sont étran msgctxt "@tooltip" msgid "The material in this extruder." -msgstr "Matériau dans cet extrudeur." +msgstr "Matériau dans cet extrudeuse." msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate" msgid "The material package associated with the Cura project could not be found on the Ultimaker Marketplace. Use the partial material profile definition stored in the Cura project file at your own risk." @@ -4601,24 +4208,13 @@ msgstr "Le nouveau diamètre de filament est réglé sur %1 mm, ce qui n'est pa msgctxt "@tooltip" msgid "The nozzle inserted in this extruder." -msgstr "Buse insérée dans cet extrudeur." +msgstr "Buse insérée dans cet extrudeuse." msgctxt "@label" -msgid "" -"The pattern of the infill material of the print:\n" -"\n" -"For quick prints of non functional model choose line, zig zag or lightning infill.\n" -"\n" -"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" -"\n" -"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "" -"Motif de remplissage de la pièce :\n" -"\n" -"Pour l'impression rapide de modèles 3D non fonctionnels, choisissez un remplissage de type ligne, zigzag ou éclair.\n" -"\n" -"Pour les parties fonctionnelles soumises à de faibles contraintes, nous recommandons un remplissage de type grille, triangle ou trihexagonal.\n" -"\n" +msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "Motif de remplissage de la pièce :" +"Pour l'impression rapide de modèles 3D non fonctionnels, choisissez un remplissage de type ligne, zigzag ou éclair." +"Pour les parties fonctionnelles soumises à de faibles contraintes, nous recommandons un remplissage de type grille, triangle ou trihexagonal." "Pour les impressions 3D fonctionnelles qui nécessitent une résistance élevée dans plusieurs directions, utilisez un remplissage de type cubique, subdivision cubique, quart cubique, octaédrique ou gyroïde." msgctxt "@info:tooltip" @@ -4707,7 +4303,7 @@ msgstr "Il n'y a pas de travaux d'impression dans la file d'attente. Découpez e msgctxt "@tooltip" msgid "There are no profiles matching the configuration of this extruder." -msgstr "Aucun profil ne correspond à la configuration de cet extrudeur." +msgstr "Aucun profil ne correspond à la configuration de cet extrudeuse." msgctxt "@info:status" msgid "There is no active printer yet." @@ -4739,7 +4335,7 @@ msgstr "Cette configuration n'est pas disponible car %1 n'est pas reconnu. Veuil msgctxt "@text:window" msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" -msgstr "" +msgstr "Il s'agit d'un fichier de type Universal Cura Project. Souhaitez-vous l'ouvrir en tant que Universal Cura Project ou importer les modèles qu'il contient ?" msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" @@ -4775,7 +4371,6 @@ msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "Cette imprimante est l'hôte d'un groupe d'imprimantes %1." -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Le profil {0} contient des données incorrectes ; échec de l'importation." @@ -4789,13 +4384,8 @@ msgid "This project contains materials or plugins that are currently not install msgstr "Ce projet comporte des contenus ou des plugins qui ne sont pas installés dans Cura pour le moment.
                                      Installez les packages manquants et ouvrez à nouveau le projet." msgctxt "@label" -msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." -msgstr "" -"Ce paramètre possède une valeur qui est différente du profil.\n" -"\n" +msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." +msgstr "Ce paramètre possède une valeur qui est différente du profil." "Cliquez pour restaurer la valeur du profil." msgctxt "@item:tooltip" @@ -4813,13 +4403,8 @@ msgid "This setting is always shared between all extruders. Changing it here wil msgstr "Ce paramètre est toujours partagé par toutes les extrudeuses. Le modifier ici entraînera la modification de la valeur pour toutes les extrudeuses." msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "" -"Ce paramètre est normalement calculé mais il possède actuellement une valeur absolue définie.\n" -"\n" +msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." +msgstr "Ce paramètre est normalement calculé mais il possède actuellement une valeur absolue définie." "Cliquez pour restaurer la valeur calculée." msgctxt "@label" @@ -4828,15 +4413,15 @@ msgstr "Ce paramètre n'est pas utilisé car tous les paramètres qu'il influenc msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" -msgstr "Ce paramètre est résolu à partir de valeurs conflictuelles spécifiques à l'extrudeur :" +msgstr "Ce paramètre est résolu à partir de valeurs conflictuelles spécifiques à l'extrudeuse :" msgctxt "@tooltip Don't translate 'Universal Cura Project'" msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." -msgstr "" +msgstr "Ce paramètre peut ne pas fonctionner correctement lors de l'exportation vers Universal Cura. Les utilisateurs sont invités à l'ajouter à leurs propres risques." msgctxt "@tooltip Don't translate 'Universal Cura Project'" msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." -msgstr "" +msgstr "Ce paramètre peut ne pas fonctionner correctement lors de l'exportation vers un Universal Cura Project. Les utilisateurs sont invités à l'ajouter à leurs propres risques." msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" @@ -4854,7 +4439,6 @@ msgctxt "@text" msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." msgstr "Pour synchroniser automatiquement les profils de matériaux avec toutes vos imprimantes connectées à Digital Factory, vous devez être connecté à Cura." -#, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "Pour établir une connexion, veuillez visiter le site {website_link}" @@ -4867,7 +4451,6 @@ msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." msgstr "Pour imprimer directement sur votre imprimante via le réseau, assurez-vous que votre imprimante est connectée au réseau via un câble Ethernet ou en connectant votre imprimante à votre réseau Wi-Fi. Si vous ne connectez pas Cura avec votre imprimante, vous pouvez utiliser une clé USB pour transférer les fichiers g-code sur votre imprimante." -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "Pour supprimer {printer_name} définitivement, visitez le site {digital_factory_link}" @@ -4916,10 +4499,6 @@ msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "A essayé de restaurer une sauvegarde Cura sans disposer de données ou de métadonnées appropriées." -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Lecteur de Trimesh" - msgctxt "@button" msgid "Troubleshooting" msgstr "Dépannage" @@ -4940,22 +4519,10 @@ msgctxt "@label" msgid "Type" msgstr "Type" -msgctxt "name" -msgid "UFP Reader" -msgstr "Lecteur UFP" - -msgctxt "name" -msgid "UFP Writer" -msgstr "Générateur UFP" - msgctxt "@item:inmenu" msgid "USB printing" msgstr "Impression par USB" -msgctxt "name" -msgid "USB printing" -msgstr "Impression par USB" - msgctxt "@button" msgid "UltiMaker Account" msgstr "Compte UltiMaker" @@ -4972,10 +4539,6 @@ msgctxt "@item:inlistbox" msgid "UltiMaker Format Package" msgstr "UltiMaker Format Package" -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "Connexion réseau UltiMaker" - msgctxt "@info" msgid "UltiMaker Verified Package" msgstr "Package UltiMaker vérifié" @@ -4984,10 +4547,6 @@ msgctxt "@info" msgid "UltiMaker Verified Plug-in" msgstr "Plugin UltiMaker vérifié" -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "Actions de la machine UltiMaker" - msgctxt "@button" msgid "UltiMaker printer" msgstr "Imprimante UltiMaker" @@ -5000,10 +4559,6 @@ msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Impossible d'ajouter le profil." @@ -5012,18 +4567,13 @@ msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Impossible de trouver un emplacement dans le volume d'impression pour tous les objets" -#, python-brace-format msgctxt "@info:plugin_failed" msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" msgstr "L'exécutable du serveur EnginePlugin local est introuvable pour : {self._plugin_id}" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Unable to kill running EnginePlugin: {self._plugin_id}\n" -"Access is denied." -msgstr "" -"L'EnginePlugin en cours d'exécution ne peut pas être arrêté : {self._plugin_id}\n" +msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." +msgstr "L'EnginePlugin en cours d'exécution ne peut pas être arrêté : {self._plugin_id}" "L'accès est refusé." msgctxt "@info" @@ -5044,14 +4594,12 @@ msgstr "Impossible de découper" msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." -msgstr "Impossible de couper car la tour primaire ou la (les) position(s) d'amorçage ne sont pas valides." +msgstr "Impossible de découper car la tour d'amorçage ou la (les) position(s) d'amorçage ne sont pas valides." -#, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "Impossible de couper car il existe des objets associés à l'extrudeuse désactivée %s." -#, python-brace-format msgctxt "@info:status" msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" msgstr "Impossible de couper en raison de certains paramètres par modèle. Les paramètres suivants contiennent des erreurs sur un ou plusieurs modèles: {error_labels}" @@ -5060,7 +4608,6 @@ msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "Impossible de découper le matériau actuel, car celui-ci est incompatible avec la machine ou la configuration sélectionnée." -#, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "Impossible de couper avec les paramètres actuels. Les paramètres suivants contiennent des erreurs: {0}" @@ -5069,10 +4616,9 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Impossible de lancer une nouvelle procédure de connexion. Vérifiez si une autre tentative de connexion est toujours active." -#, python-brace-format msgctxt "@info:error" msgid "Unable to write to file: {0}" -msgstr "" +msgstr "Impossible d'écrire dans un fichier : {0}" msgctxt "@label:status" msgid "Unavailable" @@ -5096,11 +4642,11 @@ msgstr "Unité" msgctxt "@item:inlistbox" msgid "Universal Cura Project" -msgstr "" +msgstr "Universal Cura Project" msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." -msgstr "" +msgstr "Les fichiers Universal Cura Project peuvent être imprimés sur différentes imprimantes 3D tout en conservant les données de position et les paramètres sélectionnés. Lors de l'exportation, tous les modèles présents sur le plateau seront inclus avec leur position, leur orientation et leur échelle actuelles. Vous pouvez également sélectionner les paramètres par extrudeuse ou par modèle qui doivent être inclus pour garantir une impression correcte." msgctxt "@label Description for development tool" msgid "Universal build system configuration" @@ -5122,7 +4668,6 @@ msgctxt "@label:property" msgid "Unknown Package" msgstr "Dossier inconnu" -#, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Code d'erreur inconnu lors du téléchargement d'une tâche d'impression: {0}" @@ -5187,265 +4732,49 @@ msgctxt "@button" msgid "Updating..." msgstr "Mise à jour..." -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Configurations des mises à niveau de Cura 2.1 vers Cura 2.2." +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Charger le firmware personnalisé" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Configurations des mises à niveau de Cura 2.2 vers Cura 2.4." +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "Téléchargement de la tâche d'impression sur l'imprimante." -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Configurations des mises à niveau de Cura 2.5 vers Cura 2.6." +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "Téléchargement de votre sauvegarde..." -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Configurations des mises à niveau de Cura 2.6 vers Cura 2.7." +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "Utiliser une seule instance de Cura" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Met à niveau les configurations, de Cura 2.7 vers Cura 3.0." +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "Utiliser de la colle pour une meilleure adhérence avec cette combinaison de matériaux." -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Met à niveau les configurations, de Cura 3.0 vers Cura 3.1." +msgctxt "@label" +msgid "User Agreement" +msgstr "Accord utilisateur" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Configurations des mises à niveau de Cura 3.2 vers Cura 3.3." +msgctxt "@label Description for application dependency" +msgid "Utility functions, including an image loader" +msgstr "Fonctions utilitaires, y compris un chargeur d'images" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Configurations des mises à niveau de Cura 3.3 vers Cura 3.4." +msgctxt "@label Description for application dependency" +msgid "Utility library, including Voronoi generation" +msgstr "Bibliothèque d'utilitaires, y compris la génération d'un diagramme Voronoï" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Configurations des mises à niveau de Cura 3.4 vers Cura 3.5." +msgctxt "@title:column" +msgid "Value" +msgstr "Valeur" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Configurations des mises à niveau de Cura 3.5 vers Cura 4.0." +msgctxt "@button" +msgid "View printers in Digital Factory" +msgstr "Afficher les imprimantes dans Digital Factory" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Configurations des mises à niveau de Cura 4.0 vers Cura 4.1." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Configurations des mises à jour de Cura 4.1 vers Cura 4.2." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Mises à niveau des configurations de Cura 4.11 vers Cura 4.12." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Mises à niveau des configurations de Cura 4.13 vers Cura 5.0." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Configurations des mises à jour de Cura 4.2 vers Cura 4.3." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Configurations des mises à niveau de Cura 4.3 vers Cura 4.4." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Configurations des mises à niveau de Cura 4.4 vers Cura 4.5." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Mises à niveau des configurations de Cura 4.5 vers Cura 4.6." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Mises à niveau des configurations de Cura 4.6.0 vers Cura 4.6.2." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Mises à niveau des configurations de Cura 4.6.2 vers Cura 4.7." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Mises à niveau des configurations de Cura 4.7 vers Cura 4.8." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Mises à niveau des configurations de Cura 4.8 vers Cura 4.9." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Mises à niveau des configurations de Cura 4.9 vers Cura 4.10." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Mises à niveau des configurations de Cura 5.2 vers Cura 5.3." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Configurations des mises à niveau de Cura 5.3 vers Cura 5.4." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Configurations des mises à niveau de Cura 5.4 vers Cura 5.5." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." -msgstr "" - -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Charger le firmware personnalisé" - -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Téléchargement de la tâche d'impression sur l'imprimante." - -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Téléchargement de votre sauvegarde..." - -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Utiliser une seule instance de Cura" - -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "Utiliser de la colle pour une meilleure adhérence avec cette combinaison de matériaux." - -msgctxt "@label" -msgid "User Agreement" -msgstr "Accord utilisateur" - -msgctxt "@label Description for application dependency" -msgid "Utility functions, including an image loader" -msgstr "Fonctions utilitaires, y compris un chargeur d'images" - -msgctxt "@label Description for application dependency" -msgid "Utility library, including Voronoi generation" -msgstr "Bibliothèque d'utilitaires, y compris la génération d'un diagramme Voronoï" - -msgctxt "@title:column" -msgid "Value" -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Mise à niveau vers 2.1 vers 2.2" - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Mise à niveau de 2.2 vers 2.4" - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Mise à niveau de 2.5 vers 2.6" - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Mise à niveau de 2.6 vers 2.7" - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Mise à niveau de version, de 2.7 vers 3.0" - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Mise à niveau de version, de 3.0 vers 3.1" - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Mise à niveau de 3.2 vers 3.3" - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Mise à niveau de 3.3 vers 3.4" - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Mise à niveau de 3.4 vers 3.5" - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Mise à niveau de 3.5 vers 4.0" - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Mise à niveau de 4.0 vers 4.1" - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Mise à jour de 4.1 vers 4.2" - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Mise à niveau de la version 4.11 vers la version 4.12" - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Mise à niveau de la version 4.13 vers la version 5.0" - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Mise à jour de 4.2 vers 4.3" - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Mise à niveau de 4.3 vers 4.4" - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Mise à niveau de 4.4 vers 4.5" - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Mise à niveau de 4.5 vers 4.6" - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Mise à niveau de 4.6.0 vers 4.6.2" - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Mise à niveau de 4.6.2 vers 4.7" - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Mise à niveau de 4.7 vers 4.8" - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Mise à niveau de 4.8 vers 4.9" - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Mise à niveau de 4.9 vers 4.10" - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "Mise à niveau de 5.2 vers 5.3" - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "Mise à niveau de la version 5.3 vers 5.4" - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "Mise à niveau de la version 5.4 vers 5.5" - -msgctxt "name" -msgid "Version Upgrade 5.6 to 5.7" -msgstr "" - -msgctxt "@button" -msgid "View printers in Digital Factory" -msgstr "Afficher les imprimantes dans Digital Factory" - -msgctxt "@label" -msgid "View type" -msgstr "Type d'affichage" +msgctxt "@label" +msgid "View type" +msgstr "Type d'affichage" msgctxt "@label link to technical assistance" msgid "View user manuals online" @@ -5491,7 +4820,6 @@ msgctxt "@info:title" msgid "Warning" msgstr "Avertissement" -#, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Avertissement: le profil n'est pas visible car son type de qualité '{0}' n'est pas disponible pour la configuration actuelle. Passez à une combinaison matériau/buse qui peut utiliser ce type de qualité." @@ -5518,7 +4846,7 @@ msgstr "Quelle imprimante souhaitez-vous configurer?" msgctxt "@info:tooltip" msgid "What type of camera navigation should be used?" -msgstr "" +msgstr "Quel type de navigation par caméra faut-il utiliser ?" msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" @@ -5556,14 +4884,6 @@ msgctxt "@action:label" msgid "Width (mm)" msgstr "Largeur (mm)" -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Enregistre le G-Code dans une archive compressée." - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Enregistre le G-Code dans un fichier." - msgctxt "@label" msgid "X (Width)" msgstr "X (Largeur)" @@ -5576,10 +4896,6 @@ msgctxt "@label" msgid "X min" msgstr "X min" -msgctxt "name" -msgid "X-Ray View" -msgstr "Vue Rayon-X" - msgctxt "@item:inlistbox" msgid "X-Ray view" msgstr "Visualisation par rayons X" @@ -5592,10 +4908,6 @@ msgctxt "@item:inlistbox" msgid "X3D File" msgstr "Fichier X3D" -msgctxt "name" -msgid "X3D Reader" -msgstr "Lecteur X3D" - msgctxt "@label" msgid "Y (Depth)" msgstr "Y (Profondeur)" @@ -5613,33 +4925,20 @@ msgid "Yes" msgstr "Oui" msgctxt "@label" -msgid "" -"You are about to remove all printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr "" -"Vous êtes sur le point de supprimer toutes les imprimantes de Cura. Cette action est irréversible.\n" +msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgstr "Vous êtes sur le point de supprimer toutes les imprimantes de Cura. Cette action est irréversible." "Voulez-vous vraiment continuer?" -#, python-brace-format msgctxt "@label" -msgid "" -"You are about to remove {0} printer from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgid_plural "" -"You are about to remove {0} printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr[0] "" -"Vous êtes sur le point de supprimer {0} imprimante de Cura. Cette action est irréversible.\n" -"Voulez-vous vraiment continuer?" -msgstr[1] "" -"Vous êtes sur le point de supprimer {0} imprimantes de Cura. Cette action est irréversible.\n" -"Voulez-vous vraiment continuer?" +msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgstr[0] "Vous êtes sur le point de supprimer {0} imprimante de Cura. Cette action est irréversible.\nVoulez-vous vraiment continuer?" +msgstr[1] "Vous êtes sur le point de supprimer {0} imprimantes de Cura. Cette action est irréversible.\nVoulez-vous vraiment continuer?" msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "Vous tentez de vous connecter à une imprimante qui n'exécute pas UltiMaker Connect. Veuillez mettre à jour l'imprimante avec le dernier micrologiciel." -#, python-brace-format msgctxt "@info:status" msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." msgstr "Vous tentez de vous connecter à {0} mais ce n'est pas l'hôte de groupe. Vous pouvez visiter la page Web pour la configurer en tant qu'hôte de groupe." @@ -5650,9 +4949,8 @@ msgstr "Vous n'avez actuellement aucune sauvegarde. Utilisez le bouton « Sauve msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "" -"Vous avez personnalisé certains paramètres de profil.\n" -"Souhaitez-vous conserver ces paramètres modifiés après avoir changé de profil ?\n" +msgstr "Vous avez personnalisé certains paramètres de profil." +"Souhaitez-vous conserver ces paramètres modifiés après avoir changé de profil ?" "Vous pouvez également annuler les modifications pour charger les valeurs par défaut de '%1'." msgctxt "@label" @@ -5683,13 +4981,9 @@ msgctxt "@info" msgid "Your new printer will automatically appear in Cura" msgstr "Votre nouvelle imprimante apparaîtra automatiquement dans Cura" -#, python-brace-format msgctxt "@info:status" -msgid "" -"Your printer {printer_name} could be connected via cloud.\n" -" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "" -"Votre imprimante {printer_name} pourrait être connectée via le cloud.\n" +msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "Votre imprimante {printer_name} pourrait être connectée via le cloud." " Gérez votre file d'attente d'impression et surveillez vos impressions depuis n'importe où en connectant votre imprimante à Digital Factory" msgctxt "@label" @@ -5738,7 +5032,7 @@ msgstr "mm" msgctxt "@label" msgid "s" -msgstr "" +msgstr "s" msgctxt "@info:status" msgid "today" @@ -5752,7 +5046,6 @@ msgctxt "@label" msgid "version: %1" msgstr "version : %1" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "L'imprimante {printer_name} sera supprimée jusqu'à la prochaine synchronisation de compte." @@ -5761,21 +5054,553 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Échec de téléchargement des plugins {}" -#~ msgctxt "@label" -#~ msgid "Default" -#~ msgstr "Défaut" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Gère les connexions réseau aux imprimantes UltiMaker en réseau." + +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "Connexion réseau UltiMaker" -#~ msgid "Provides support for exporting Cura profiles." -#~ msgstr "Fournit une assistance pour l’exportation de profils Cura." +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Fournit la prise en charge de l'importation de profils à partir de fichiers g-code." -#~ msgctxt "description" -#~ msgid "Provides support for writing 3MF files." -#~ msgstr "Permet l'écriture de fichiers 3MF." +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "Lecteur de profil G-Code" -#~ msgctxt "@option" -#~ msgid "Save Cura project and print file" -#~ msgstr "Sauvegarder le projet Cura et imprimer le fichier" +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Affiche une vue en maille solide normale." -#~ msgctxt "@message" -#~ msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -#~ msgstr "Échec de la découpe avec une erreur inattendue. Signalez un bug sur notre outil de suivi des problèmes." +msgctxt "name" +msgid "Solid View" +msgstr "Vue solide" + +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "Plugin CuraEngine permettant de lisser progressivement le débit afin de limiter les sauts lorsque le débit est élevé" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Fournit la prise en charge de la lecture de fichiers 3MF." + +msgctxt "name" +msgid "3MF Reader" +msgstr "Lecteur 3MF" + +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Accepte les G-Code et les envoie à une imprimante. Ce plugin peut aussi mettre à jour le firmware." + +msgctxt "name" +msgid "USB printing" +msgstr "Impression par USB" + +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Vérifie les mises à jour du firmware." + +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Vérificateur des mises à jour du firmware" + +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Gère les extensions de l'application et permet de parcourir les extensions à partir du site Web UltiMaker." + +msgctxt "name" +msgid "Marketplace" +msgstr "Marketplace" + +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Sauvegardez et restaurez votre configuration." + +msgctxt "name" +msgid "Cura Backups" +msgstr "Sauvegardes Cura" + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Permet de modifier les paramètres de la machine (tels que volume d'impression, taille de buse, etc.)" + +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Action Paramètres de la machine" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Configurations des mises à niveau de Cura 2.5 vers Cura 2.6." + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Mise à niveau de 2.5 vers 2.6" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Mises à niveau des configurations de Cura 4.7 vers Cura 4.8." + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Mise à niveau de 4.7 vers 4.8" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Configurations des mises à niveau de Cura 4.4 vers Cura 4.5." + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Mise à niveau de 4.4 vers 4.5" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Met à niveau les configurations, de Cura 3.0 vers Cura 3.1." + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Mise à niveau de version, de 3.0 vers 3.1" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Mises à niveau des configurations de Cura 4.11 vers Cura 4.12." + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Mise à niveau de la version 4.11 vers la version 4.12" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Configurations des mises à jour de Cura 4.1 vers Cura 4.2." + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Mise à jour de 4.1 vers 4.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Configurations des mises à niveau de Cura 2.6 vers Cura 2.7." + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Mise à niveau de 2.6 vers 2.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Mises à niveau des configurations de Cura 4.6.0 vers Cura 4.6.2." + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Mise à niveau de 4.6.0 vers 4.6.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Configurations des mises à niveau de Cura 3.3 vers Cura 3.4." + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Mise à niveau de 3.3 vers 3.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Mises à niveau des configurations de Cura 4.8 vers Cura 4.9." + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Mise à niveau de 4.8 vers 4.9" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Mises à niveau des configurations de Cura 4.5 vers Cura 4.6." + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Mise à niveau de 4.5 vers 4.6" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Configurations des mises à jour de Cura 4.2 vers Cura 4.3." + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Mise à jour de 4.2 vers 4.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Configurations des mises à niveau de Cura 3.2 vers Cura 3.3." + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Mise à niveau de 3.2 vers 3.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Configurations des mises à niveau de Cura 4.3 vers Cura 4.4." + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Mise à niveau de 4.3 vers 4.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "Met à jour les configurations de Cura 5.6 à Cura 5.7." + +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "Mise à jour de la version 5.6 à 5.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Configurations des mises à niveau de Cura 2.1 vers Cura 2.2." + +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Mise à niveau vers 2.1 vers 2.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Configurations des mises à niveau de Cura 5.3 vers Cura 5.4." + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "Mise à niveau de la version 5.3 vers 5.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Mises à niveau des configurations de Cura 4.9 vers Cura 4.10." + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Mise à niveau de 4.9 vers 4.10" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Met à niveau les configurations, de Cura 2.7 vers Cura 3.0." + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Mise à niveau de version, de 2.7 vers 3.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Configurations des mises à niveau de Cura 3.5 vers Cura 4.0." + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Mise à niveau de 3.5 vers 4.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Mises à niveau des configurations de Cura 5.2 vers Cura 5.3." + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Mise à niveau de 5.2 vers 5.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Configurations des mises à niveau de Cura 4.0 vers Cura 4.1." + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Mise à niveau de 4.0 vers 4.1" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Mises à niveau des configurations de Cura 4.13 vers Cura 5.0." + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Mise à niveau de la version 4.13 vers la version 5.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Configurations des mises à niveau de Cura 3.4 vers Cura 3.5." + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Mise à niveau de 3.4 vers 3.5" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Configurations des mises à niveau de Cura 2.2 vers Cura 2.4." + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Mise à niveau de 2.2 vers 2.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Mises à niveau des configurations de Cura 4.6.2 vers Cura 4.7." + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Mise à niveau de 4.6.2 vers 4.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Configurations des mises à niveau de Cura 5.4 vers Cura 5.5." + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "Mise à niveau de la version 5.4 vers 5.5" + +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Permet le chargement et l'affichage de fichiers G-Code." + +msgctxt "name" +msgid "G-code Reader" +msgstr "Lecteur G-Code" + +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Envoie des informations anonymes sur le découpage. Peut être désactivé dans les préférences." + +msgctxt "name" +msgid "Slice info" +msgstr "Information sur le découpage" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Permet le branchement hot-plug et l'écriture sur lecteur amovible." + +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Plugin de périphérique de sortie sur disque amovible" + +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Crée un maillage effaceur pour bloquer l'impression du support en certains endroits" + +msgctxt "name" +msgid "Support Eraser" +msgstr "Effaceur de support" + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Vérifie les modèles et la configuration de l'impression pour déceler d'éventuels problèmes d'impression et donne des suggestions." + +msgctxt "name" +msgid "Model Checker" +msgstr "Contrôleur de modèle" + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Fournit une étape de préparation dans Cura." + +msgctxt "name" +msgid "Prepare Stage" +msgstr "Étape de préparation" + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Fournit l'aperçu des données du slice." + +msgctxt "name" +msgid "Simulation View" +msgstr "Vue simulation" + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Fournit la prise en charge de la lecture de fichiers AMF." + +msgctxt "name" +msgid "AMF Reader" +msgstr "Lecteur AMF" + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Permet la vue Rayon-X." + +msgctxt "name" +msgid "X-Ray View" +msgstr "Vue Rayon-X" + +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Fournit à une machine des actions permettant la mise à jour du firmware." + +msgctxt "name" +msgid "Firmware Updater" +msgstr "Programme de mise à jour du firmware" + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Fournit la prise en charge de l'importation de profils à partir de versions Cura antérieures." + +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Lecteur de profil Cura antérieur" + +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Extension qui permet le post-traitement des scripts créés par l'utilisateur" + +msgctxt "name" +msgid "Post Processing" +msgstr "Post-traitement" + +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Enregistre certains événements afin qu'ils puissent être utilisés par le rapporteur d'incident" + +msgctxt "name" +msgid "Sentry Logger" +msgstr "Journal d'événements dans Sentry" + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "Fournit un support pour l'écriture de paquets de format MakerBot." + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "Écrivain de fichier d'impression Makerbot" + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Fournit la prise en charge de l'importation de profils Cura." + +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Lecteur de profil Cura" + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Fournit un support pour la lecture des paquets de format UltiMaker." + +msgctxt "name" +msgid "UFP Reader" +msgstr "Lecteur UFP" + +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Permet de générer une géométrie imprimable à partir de fichiers d'image 2D." + +msgctxt "name" +msgid "Image Reader" +msgstr "Lecteur d'images" + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Fournit le lien vers l'arrière du système de découpage CuraEngine." + +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Système CuraEngine" + +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Enregistre le G-Code dans une archive compressée." + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Générateur de G-Code compressé" + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Fournit les actions de la machine pour les machines UltiMaker (telles que l'assistant de calibration du plateau, sélection des mises à niveau, etc.)" + +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Actions de la machine UltiMaker" + +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Lit le G-Code à partir d'une archive compressée." + +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Lecteur G-Code compressé" + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Fournit une étape de prévisualisation dans Cura." + +msgctxt "name" +msgid "Preview Stage" +msgstr "Étape de prévisualisation" + +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Se connecte à la Digital Library, permettant à Cura d'ouvrir des fichiers à partir de cette dernière et d'y enregistrer des fichiers." + +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Fournit la prise en charge de l'exportation de profils Cura." + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Générateur de profil Cura" + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Fournit la prise en charge de la lecture de fichiers X3D." + +msgctxt "name" +msgid "X3D Reader" +msgstr "Lecteur X3D" + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Fournit la prise en charge de la lecture de fichiers modèle 3D." + +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Lecteur de Trimesh" + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Fournit une étape de surveillance dans Cura." + +msgctxt "name" +msgid "Monitor Stage" +msgstr "Étape de surveillance" + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Fournit les paramètres par modèle." + +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Outil de paramètres par modèle" + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Offre la possibilité de lire et d'écrire des profils matériels basés sur XML." + +msgctxt "name" +msgid "Material Profiles" +msgstr "Profils matériels" + +msgctxt "description" +msgid "Provides support for writing 3MF and UCP files." +msgstr "Prise en charge de l'écriture des fichiers 3MF et UCP." + +msgctxt "name" +msgid "3MF Writer" +msgstr "Générateur 3MF" + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Permet l'écriture de fichiers UltiMaker Format Package." + +msgctxt "name" +msgid "UFP Writer" +msgstr "Générateur UFP" + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Enregistre le G-Code dans un fichier." + +msgctxt "name" +msgid "G-code Writer" +msgstr "Générateur de G-Code" diff --git a/resources/i18n/fr_FR/fdmextruder.def.json.po b/resources/i18n/fr_FR/fdmextruder.def.json.po index 79650f9b990..f0547e4ac74 100644 --- a/resources/i18n/fr_FR/fdmextruder.def.json.po +++ b/resources/i18n/fr_FR/fdmextruder.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,186 +12,114 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Adhérence" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Ajuste le diamètre du filament utilisé. Faites correspondre cette valeur au diamètre du filament utilisé." - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Adhérence du plateau" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diamètre" - -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "Fin du G-Code à exécuter lors de l'abandon de l'extrudeuse." - msgctxt "extruder_nr label" msgid "Extruder" msgstr "Extrudeuse" +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse utilisé pour l'impression. Cela est utilisé en multi-extrusion." + +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Ventilateur de refroidissement d'impression de l'extrudeuse" + +msgctxt "machine_extruder_cooling_fan_number description" +msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." +msgstr "Numéro du ventilateur de refroidissement d'impression associé à cette extrudeuse. Ne modifiez cette valeur par rapport à la valeur par défaut 0 que si vous utilisez un ventilateur de refroidissement d'impression différent pour chaque extrudeuse." + msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "Extrudeuse G-Code de fin" +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "Fin du G-Code à exécuter lors de l'abandon de l'extrudeuse." + msgctxt "machine_extruder_end_code_duration label" msgid "Extruder End G-Code Duration" -msgstr "" +msgstr "Durée du G-Code de fin d'extrudeuse" + +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "Temps nécessaire à l'exécution du G-Code de fin d'extrudeuse, lors de l'arrêt de cette extrudeuse." msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Extrudeuse Position de fin absolue" +msgctxt "machine_extruder_end_pos_abs description" +msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." +msgstr "Rendre la position de fin de l'extrudeuse absolue plutôt que relative à la dernière position connue de la tête." + msgctxt "machine_extruder_end_pos_x label" msgid "Extruder End Position X" msgstr "Extrudeuse Position de fin X" +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "Les coordonnées X de la position de fin lors de l'arrêt de l'extrudeuse." + msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Extrudeuse Position de fin Y" -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Extrudeuse Position d'amorçage X" - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Extrudeuse Position d'amorçage Y" - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Extrudeuse Position d'amorçage Z" - -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Ventilateur de refroidissement d'impression de l'extrudeuse" +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "Les coordonnées Y de la position de fin lors de l'arrêt de l'extrudeuse." msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "Extrudeuse G-Code de démarrage" +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "Démarrer le G-Code à exécuter lors du passage à cette extrudeuse." + msgctxt "machine_extruder_start_code_duration label" msgid "Extruder Start G-Code Duration" -msgstr "" +msgstr "Durée du G-Code de démarrage de l'extrudeuse" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "Le temps qu'il faut pour exécuter le g-code de démarrage, lorsque l'on passe à cette extrudeuse." msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Extrudeuse Position de départ absolue" +msgctxt "machine_extruder_start_pos_abs description" +msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." +msgstr "Rendre la position de départ de l'extrudeuse absolue plutôt que relative à la dernière position connue de la tête." + msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "Extrudeuse Position de départ X" +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "Les coordonnées X de la position de départ lors de la mise en marche de l'extrudeuse." + msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "Extrudeuse Position de départ Y" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Machine" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Paramètres spécifiques de la machine" - -msgctxt "machine_extruder_end_pos_abs description" -msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." -msgstr "Rendre la position de fin de l'extrudeuse absolue plutôt que relative à la dernière position connue de la tête." - -msgctxt "machine_extruder_start_pos_abs description" -msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." -msgstr "Rendre la position de départ de l'extrudeuse absolue plutôt que relative à la dernière position connue de la tête." - -msgctxt "material description" -msgid "Material" -msgstr "Matériau" - -msgctxt "material label" -msgid "Material" -msgstr "Matériau" - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diamètre de la buse" - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ID buse" +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "Les coordonnées Y de la position de départ lors de la mise en marche de l'extrudeuse." msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "Buse Décalage X" -msgctxt "machine_nozzle_offset_y label" -msgid "Nozzle Y Offset" -msgstr "Buse Décalage Y" - -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "Démarrer le G-Code à exécuter lors du passage à cette extrudeuse." - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Les coordonnées X de la position à laquelle la buse s'amorce au début de l'impression." - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Les coordonnées Y de la position à laquelle la buse s'amorce au début de l'impression." - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Les coordonnées Z de la position à laquelle la buse s'amorce au début de l'impression." - -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse utilisé pour l'impression. Cela est utilisé en multi-extrusion." - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Le diamètre intérieur de la buse. Modifiez ce paramètre si vous utilisez une taille de buse non standard." - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "ID buse pour un train d'extrudeuse, comme « AA 0.4 » et « BB 0.8 »." - -msgctxt "machine_extruder_cooling_fan_number description" -msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." -msgstr "Numéro du ventilateur de refroidissement d'impression associé à cette extrudeuse. Ne modifiez cette valeur par rapport à la valeur par défaut 0 que si vous utilisez un ventilateur de refroidissement d'impression différent pour chaque extrudeuse." - -msgctxt "machine_extruder_end_code_duration description" -msgid "The time it takes to execute the end g-code, when switching away from this extruder." -msgstr "" - -msgctxt "machine_extruder_start_code_duration description" -msgid "The time it'll take to execute the start g-code, when switching to this extruder." -msgstr "" - -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "Les coordonnées X de la position de fin lors de l'arrêt de l'extrudeuse." - msgctxt "machine_nozzle_offset_x description" msgid "The x-coordinate of the offset of the nozzle." msgstr "Les coordonnées X du décalage de la buse." -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "Les coordonnées X de la position de départ lors de la mise en marche de l'extrudeuse." - -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "Les coordonnées Y de la position de fin lors de l'arrêt de l'extrudeuse." +msgctxt "machine_nozzle_offset_y label" +msgid "Nozzle Y Offset" +msgstr "Buse Décalage Y" msgctxt "machine_nozzle_offset_y description" msgid "The y-coordinate of the offset of the nozzle." msgstr "Les coordonnées Y du décalage de la buse." - -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "Les coordonnées Y de la position de départ lors de la mise en marche de l'extrudeuse." diff --git a/resources/i18n/fr_FR/fdmprinter.def.json.po b/resources/i18n/fr_FR/fdmprinter.def.json.po index 07527684737..6be4e9bba12 100644 --- a/resources/i18n/fr_FR/fdmprinter.def.json.po +++ b/resources/i18n/fr_FR/fdmprinter.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-12 15:10+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,3079 +12,2728 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" -msgctxt "prime_tower_mode description" -msgid "How to generate the prime tower:
                                      • Normal: create a bucket in which secondary materials are primed
                                      • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
                                      " -msgstr "" - -msgctxt "brim_inside_margin description" -msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." -msgstr "" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Machine" -msgctxt "ironing_inset description" -msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." -msgstr "Distance à garder à partir des bords du modèle. Étirer jusqu'au bord de la maille peut entraîner l'apparition d'un bord denté sur votre impression." +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Paramètres spécifiques de la machine" -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "Un facteur indiquant la quantité de filament compressée entre le chargeur et la chambre de la buse ; utilisé pour déterminer jusqu'où faire avancer le matériau pour changer de filament." +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Type de machine" -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser lorsque les couches extérieures de la surface supérieure utilisent le motif en lignes ou en zig zag. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que les angles traditionnels par défaut seront utilisés (45 et 135 degrés)." +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "Le nom du modèle de votre imprimante 3D." -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser lorsque les couches du haut / bas utilisent le motif en lignes ou en zig zag. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que les angles traditionnels par défaut seront utilisés (45 et 135 degrés)." +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Afficher les variantes de la machine" -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que l'angle par défaut est utilisé (0 degré)." +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "Afficher ou non les différentes variantes de cette machine qui sont décrites dans des fichiers json séparés." -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que les angles par défaut sont utilisés (alternative entre 45 et 135 degrés si les interfaces sont assez épaisses ou 90 degrés)." +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "G-Code de démarrage" -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que les angles par défaut sont utilisés (alternative entre 45 et 135 degrés si les interfaces sont assez épaisses ou 90 degrés)." +msgctxt "machine_start_gcode description" +msgid "G-code commands to be executed at the very start - separated by \n." +msgstr "Commandes G-Code à exécuter au tout début, séparées par " +"." -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que les angles par défaut sont utilisés (alternative entre 45 et 135 degrés si les interfaces sont assez épaisses ou 90 degrés)." +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "G-Code de fin" -msgctxt "infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." -msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que les angles traditionnels par défaut seront utilisés (45 et 135 degrés pour les motifs en lignes et en zig zag et 45 degrés pour tout autre motif)." +msgctxt "machine_end_gcode description" +msgid "G-code commands to be executed at the very end - separated by \n." +msgstr "Commandes G-Code à exécuter tout à la fin, séparées par " +"." -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "Une liste de polygones comportant les zones dans lesquelles le bec n'a pas le droit de pénétrer." +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "GUID matériau" -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "Une liste de polygones comportant les zones dans lesquelles la tête d'impression n'a pas le droit de pénétrer." +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "GUID du matériau. Cela est configuré automatiquement." -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "Il s'agit de la distance recommandée à laquelle les branches peuvent s'éloigner des points qu'elles soutiennent. Les branches peuvent ne pas respecter cette valeur pour atteindre leur emplacement cible (plateau ou partie plate du modèle). L'abaissement de cette valeur rendra le support plus solide, mais le nombre de branches augmentera (tout comme la quantité de matériau utilisée et le temps d'impression)." +msgctxt "material_type label" +msgid "Material Type" +msgstr "Type de matériau" -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Position d'amorçage absolue de l'extrudeuse" +msgctxt "material_type description" +msgid "The type of material used." +msgstr "Le type de matériau utilisé." -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Variation maximale des couches adaptatives" +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "Marque du matériau" -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Taille de la topographie des couches adaptatives" +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "La marque du matériau utilisé." -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Taille des étapes de variation des couches adaptatives" +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diamètre" -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "Cette option calcule la hauteur des couches en fonction de la forme du modèle." +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Ajuste le diamètre du filament utilisé. Faites correspondre cette valeur au diamètre du filament utilisé." -msgctxt "infill_wall_line_count description" -msgid "" -"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" -"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "" -"Ajoutez des parois supplémentaires autour de la zone de remplissage. De telles parois peuvent réduire l'affaissement des lignes de couche extérieure supérieure / inférieure, réduisant le nombre de couches extérieures supérieures / inférieures nécessaires pour obtenir la même qualité, au prix d'un peu de matériau supplémentaire.\n" -"Configurée correctement, cette fonctionnalité peut être combinée avec « Relier les polygones de remplissage » pour relier tous les remplissages en un seul mouvement d'extrusion sans avoir besoin de déplacements ou de rétractions." +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Attendre le chauffage du plateau" -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Adhérence" +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "Insérer ou non une commande pour attendre que la température du plateau soit atteinte au démarrage." -msgctxt "material_adhesion_tendency label" -msgid "Adhesion Tendency" -msgstr "Tendance à l'adhérence" +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Attendre le chauffage de la buse" -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Ajuster le degré de chevauchement entre les parois et les (extrémités des) lignes centrales de la couche extérieure, en pourcentage de la largeur des lignes de la couche extérieure et de la paroi intérieure. Un chevauchement léger permet de relier fermement les parois à la couche extérieure. Notez que, si la largeur de la couche extérieure est égale à celle de la ligne de la paroi, un pourcentage supérieur à 50 % peut déjà faire dépasser la couche extérieure de la paroi, car dans ce cas la position de la buse de l'extrudeuse peut déjà atteindre le milieu de la paroi." +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "Attendre ou non que la température de la buse soit atteinte au démarrage." -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Ajuster le degré de chevauchement entre les parois et les (extrémités des) lignes centrales de la couche extérieure. Un chevauchement léger permet de relier fermement les parois à la couche extérieure. Notez que, si la largeur de la couche extérieure est égale à celle de la ligne de la paroi, une valeur supérieure à la moitié de la largeur de la paroi peut déjà faire dépasser la couche extérieure de la paroi, car dans ce cas la position de la buse de l'extrudeuse peut déjà atteindre le milieu de la paroi." +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Inclure les températures du matériau" -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Adapte la densité de remplissage de l'impression." +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "Inclure ou non les commandes de température de la buse au début du gcode. Si le gcode_démarrage contient déjà les commandes de température de la buse, l'interface Cura désactive automatiquement ce paramètre." -msgctxt "support_interface_density description" -msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Ajuste la densité des plafonds et bas de la structure de support. Une valeur plus élevée résulte en de meilleurs porte-à-faux, mais les supports sont plus difficiles à enlever." +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Inclure la température du plateau" -msgctxt "support_tree_top_rate description" -msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "Ce paramètre ajuste la densité de la structure de support utilisée pour générer les extrémités des branches. Une valeur plus élevée permet d'obtenir de meilleurs porte-à-faux, mais les supports seront plus difficiles à retirer. Utilisez un plafond de support en cas de valeurs très élevées ou veillez à ce que la densité du support soit tout aussi élevée aux extrémités." +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "Inclure ou non les commandes de température du plateau au début du gcode. Si le gcode_démarrage contient déjà les commandes de température du plateau, l'interface Cura désactive automatiquement ce paramètre." -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Ajuste la densité du support. Une valeur plus élevée résulte en de meilleurs porte-à-faux, mais les supports sont plus difficiles à enlever." +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Largeur de la machine" -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Ajuste le diamètre du filament utilisé. Faites correspondre cette valeur au diamètre du filament utilisé." +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "La largeur (sens X) de la zone imprimable." -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "Ajuste le positionnement des supports. Le positionnement peut être défini pour toucher le plateau ou n'importe où. Lorsqu'il est défini sur n'importe où, les supports seront également imprimés sur le modèle." +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Profondeur de la machine" -msgctxt "prime_tower_wipe_enabled description" -msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." -msgstr "Après l'impression de la tour d'amorçage à l'aide d'une buse, nettoyer le matériau qui suinte de l'autre buse sur la tour d'amorçage." +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "La profondeur (sens Y) de la zone imprimable." -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "Une fois que la machine est passée d'une extrudeuse à l'autre, le plateau s'abaisse pour créer un dégagement entre la buse et l'impression. Cela évite que la buse ne ressorte avec du matériau suintant sur l'extérieur d'une impression." +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Hauteur de la machine" -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Tout" +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "La hauteur (sens Z) de la zone imprimable." -msgctxt "print_sequence option all_at_once" -msgid "All at Once" -msgstr "Tout en même temps" +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Forme du plateau" -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "Tous les paramètres qui influent sur la résolution de l'impression. Ces paramètres ont un impact conséquent sur la qualité (et la durée d'impression)." +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "La forme du plateau sans prendre les zones non imprimables en compte." -msgctxt "user_defined_print_order_enabled description" -msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." -msgstr "" +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Rectangulaire" -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Alterner les parois supplémentaires" +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Elliptique" -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Alterner le retrait des maillages" +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Matériau du plateau" -msgctxt "material_alternate_walls label" -msgid "Alternate Wall Directions" -msgstr "Alterner les directions des parois" +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "Matériau du plateau installé sur l'imprimante." -msgctxt "material_alternate_walls description" -msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." -msgstr "Alternez les directions des parois, une couche et un insert sur deux. Utile pour les matériaux qui peuvent accumuler des contraintes, comme pour l'impression de métal." +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Verre" msgctxt "machine_buildplate_type option aluminum" msgid "Aluminum" msgstr "Aluminium" +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "A un plateau chauffé" + +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "Si la machine a un plateau chauffé présent." + +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "Est dotée de la stabilisation de la température du volume d'impression" + +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "Si la machine est capable de stabiliser la température du volume d'impression." + msgctxt "machine_always_write_active_tool label" msgid "Always Write Active Tool" msgstr "Toujours écrire l'outil actif" -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "Toujours rétracter lors du déplacement pour commencer une paroi externe." - -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "Le décalage appliqué à tous les polygones dans chaque couche. Une valeur positive peut compenser les trous trop gros ; une valeur négative peut compenser les trous trop petits." +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "Écrivez l'outil actif après avoir envoyé des commandes temporaires à l'outil inactif. Requis pour l'impression à double extrusion avec Smoothie ou un autre micrologiciel avec des commandes d'outils modaux." -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "Le décalage appliqué à tous les polygones dans la première couche. Une valeur négative peut compenser l'écrasement de la première couche, appelé « patte d'éléphant »." +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "Est l'origine du centre" -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "Le décalage appliqué à tous les polygones pour chaque couche. Une valeur positive peut lisser les zones de support et rendre le support plus solide." +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "Si les coordonnées X/Y de la position zéro de l'imprimante se situent au centre de la zone imprimable." -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "Quantité de décalage appliqué aux bas du support." +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Nombre d'extrudeuses" -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "Quantité de décalage appliqué aux plafonds du support." +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "Nombre de trains d'extrudeuse. Un train d'extrudeuse est la combinaison d'un chargeur, d'un tube bowden et d'une buse." -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "Quantité de décalage appliquée aux polygones de l'interface de support." +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Nombre d'extrudeuses activées" -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "La distance de rétraction du filament afin qu'il ne suinte pas pendant la séquence d'essuyage." +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "Nombre de trains d'extrusion activés ; automatiquement défini dans le logiciel" -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "Une addition au rayon à partir du centre de chaque cube pour vérifier la bordure du modèle, afin de décider si ce cube doit être subdivisé. Des valeurs plus importantes entraînent une coque plus épaisse de petits cubes à proximité de la bordure du modèle." +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Diamètre extérieur de la buse" -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Maillage anti-surplomb" +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "Le diamètre extérieur de la pointe de la buse." -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Position anti-suintage rétractée" +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Longueur de la buse" -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Vitesse de rétraction de l'anti-suintage" +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "La différence de hauteur entre la pointe de la buse et la partie la plus basse de la tête d'impression." -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "Appliquez le décalage de l'extrudeuse au système de coordonnées. Affecte toutes les extrudeuses." +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Angle de la buse" -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "Aux endroits où les modèles 3D se touchent, générez une structure d'attaches de connexion. Cette fonctionnalité améliore l'adhérence entre les modèles 3D, en particulier ceux imprimés avec des matériaux différents." +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "L'angle entre le plan horizontal et la partie conique juste au-dessus de la pointe de la buse." -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Éviter les pièces imprimées lors du déplacement" +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Longueur de la zone chauffée" -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Éviter les supports lors du déplacement" +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "Distance depuis la pointe du bec d'impression sur laquelle la chaleur du bec d'impression est transférée au filament." -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Arrière" +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Permettre le contrôle de la température de la buse" -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Arrière gauche" +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "Contrôler ou non la température depuis Cura. Désactivez cette option pour contrôler la température de la buse depuis une source autre que Cura." -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Arrière droit" +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Vitesse de chauffage" -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "La vitesse (°C/s) à laquelle la buse chauffe, sur une moyenne de la plage de températures d'impression normales et la température en veille." -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Les deux" +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Vitesse de refroidissement" -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "Chevauchement" +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "La vitesse (°C/s) à laquelle la buse refroidit, sur une moyenne de la plage de températures d'impression normales et la température en veille." -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Couches inférieures" +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Durée minimale température de veille" -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Couche initiale du motif du dessous" +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "La durée minimale pendant laquelle une extrudeuse doit être inactive avant que la buse ait refroidi. Ce n'est que si une extrudeuse n'est pas utilisée pendant une durée supérieure à celle-ci qu'elle pourra refroidir jusqu'à la température de veille." -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Distance d'expansion de la couche extérieure inférieure" +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "Parfum G-Code" -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Largeur de retrait de la couche extérieure inférieure" +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "Type de G-Code à générer." -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Épaisseur du dessous" +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "Densité des branches" +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volumétrique)" -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "Diamètre des branches" +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "Angle de diamètre des branches" +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Préparation de rupture Position rétractée" +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Vitesse de rétraction de préparation de rupture" +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Température de préparation de rupture" +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Position rétractée de rupture" +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Vitesse de rétraction de rupture" +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Température de rupture" +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Rétraction du firmware" -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Démantèlement du support en morceaux" +msgctxt "machine_firmware_retract description" +msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." +msgstr "S'il faut utiliser les commandes de rétraction du firmware (G10 / G11) au lieu d'utiliser la propriété E dans les commandes G1 pour rétracter le matériau." -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Vitesse du ventilateur du pont" +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Les extrudeuses partagent le chauffage" -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Le pont possède plusieurs couches" +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "Si les extrudeuses partagent un seul chauffage au lieu que chaque extrudeuse ait son propre chauffage." -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Densité de la deuxième couche extérieure du pont" +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Les extrudeuses partagent la buse" -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Vitesse du ventilateur de la deuxième couche extérieure du pont" +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "Lorsque les extrudeuses partagent une seule buse au lieu que chaque extrudeuse ait sa propre buse. Lorsqu'il est défini à true, le script gcode de démarrage de l'imprimante doit configurer correctement toutes les extrudeuses dans un état de rétraction initial connu et mutuellement compatible (zéro ou un filament non rétracté) ; dans ce cas, l'état de rétraction initial est décrit, par extrudeuse, par le paramètre 'machine_extruders_shared_nozzle_initial_retraction'." -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Débit de la deuxième couche extérieure du pont" +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Rétraction initiale de la buse partagée" -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Vitesse de la deuxième couche extérieure du pont" +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "La quantité de filament de chaque extrudeuse qui est supposée avoir été rétractée de l'extrémité de la buse partagée à la fin du script gcode de démarrage de l'imprimante ; la valeur doit être égale ou supérieure à la longueur de la partie commune des conduits de la buse." -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Densité de la couche extérieure du pont" +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Zones interdites" -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Débit de la couche extérieure du pont" +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "Une liste de polygones comportant les zones dans lesquelles la tête d'impression n'a pas le droit de pénétrer." -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Vitesse de la couche extérieure du pont" - -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Limite de support de la couche extérieure du pont" - -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Densité maximale du remplissage mince du pont" - -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Densité de la troisième couche extérieure du pont" - -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Vitesse du ventilateur de la troisième couche extérieure du pont" - -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Débit de la troisième couche extérieure du pont" - -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Vitesse de la troisième couche extérieure du pont" - -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Roue libre pour paroi du pont" - -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Débit de paroi du pont" - -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Vitesse de paroi du pont" - -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Bordure" - -msgctxt "brim_inside_margin label" -msgid "Brim Avoid Margin" -msgstr "" - -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Distance de la bordure" - -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Nombre de lignes de la bordure" - -msgctxt "brim_location label" -msgid "Brim Location" -msgstr "" - -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "La bordure remplace le support" - -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Largeur de la bordure" - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Adhérence du plateau" - -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Extrudeuse d'adhérence du plateau" - -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Type d'adhérence du plateau" - -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Matériau du plateau" - -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Forme du plateau" - -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Température du plateau" - -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Température du plateau couche initiale" - -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Température du volume d'impression" - -msgctxt "bv_temp_anomaly_limit label" -msgid "Build Volume temperature Limit" -msgstr "" - -msgctxt "bv_temp_warn_limit label" -msgid "Build Volume temperature Warning" -msgstr "" - -msgctxt "prime_tower_brim_enable description" -msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "En activant ce paramètre, votre tour d'amorçage aura un bord même si le modèle n'en a pas. Si vous souhaitez une base plus solide pour une tour élevée, vous pouvez augmenter la hauteur de la base." - -msgctxt "center_object label" -msgid "Center Object" -msgstr "Centrer l'objet" - -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "Change la géométrie du modèle imprimé de manière à nécessiter un support minimal. Les porte-à-faux abrupts deviendront des porte-à-faux minces. Les zones en porte-à-faux descendront pour devenir plus verticales." - -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "Choisit entre les techniques disponibles pour générer un support. Le support « Normal » créer une structure de support directement sous les pièces en porte-à-faux et fait descendre ces zones directement vers le bas. Le support « Arborescent » crée des branches vers les zones en porte-à-faux qui supportent le modèle à l'extrémité de ces branches et permet aux branches de ramper autour du modèle afin de les supporter le plus possible sur le plateau de fabrication." - -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Vitesse de roue libre" - -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Volume en roue libre" - -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "L'option « roue libre » remplace la dernière partie d'un mouvement d'extrusion par un mouvement de déplacement. Le matériau qui suinte de la buse est alors utilisé pour imprimer la dernière partie du tracé du mouvement d'extrusion, ce qui réduit le stringing." - -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Mode de détours" - -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "Les détours maintiennent la buse dans les zones déjà imprimées lors des déplacements. Cela résulte en des déplacements légèrement plus longs mais réduit le recours aux rétractions. Si les détours sont désactivés, le matériau se rétractera et la buse se déplacera en ligne droite jusqu'au point suivant. Il est également possible d'éviter les détours sur les zones de la couche du dessus / dessous ou d'effectuer les détours uniquement dans le remplissage." - -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Paramètres de ligne de commande" - -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Concentrique" - -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Concentrique" - -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Concentrique" - -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concentrique" - -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Concentrique" - -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Concentrique" - -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Concentrique" - -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concentrique" - -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Concentrique" - -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Angle des supports coniques" - -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Largeur minimale des supports coniques" - -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Relier les lignes de remplissage" - -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Relier les polygones de remplissage" - -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Relier les lignes de support" - -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Relier les zigzags de support" - -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Relier les polygones supérieurs / inférieurs" - -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "Relier les voies de remplissage lorsqu'elles sont côte à côte. Pour les motifs de remplissage composés de plusieurs polygones fermés, ce paramètre permet de réduire considérablement le temps de parcours." - -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "Relie les zigzags. Cela augmente la solidité des supports en zigzag." - -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "Relie les extrémités des lignes de support. L'activation de ce paramètre peut rendre votre support plus robuste et réduire la sous-extrusion, mais cela demandera d'utiliser plus de matériau." - -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "Relie les extrémités où le motif de remplissage touche la paroi interne, à l'aide d'une ligne épousant la forme de la paroi interne. Activer ce paramètre peut faire mieux coller le remplissage aux parois, et réduit les effets du remplissage sur la qualité des surfaces verticales. Désactiver ce paramètre diminue la quantité de matière utilisée." - -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "Relier les voies de couche extérieure supérieures / inférieures lorsqu'elles sont côte à côte. Pour le motif concentrique, ce paramètre réduit considérablement le temps de parcours, mais comme les liens peuvent se trouver à mi-chemin sur le remplissage, cette fonctionnalité peut réduire la qualité de la surface supérieure." - -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "Vérifie si les angles du contour du modèle influencent l'emplacement de la jointure. « Aucune » signifie que les angles n'ont aucune influence sur l'emplacement de la jointure. « Masquer la jointure » génère le positionnement de la jointure sur un angle intérieur. « Exposer la jointure » génère le positionnement de la jointure sur un angle extérieur. « Masquer ou exposer la jointure » génère le positionnement de la jointure sur un angle intérieur ou extérieur. « Jointure intelligente » autorise les angles intérieurs et extérieurs, mais choisit plus fréquemment les angles intérieurs, le cas échéant." - -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "Convertir chaque ligne de remplissage en ce nombre de lignes. Les lignes supplémentaires ne se croisent pas entre elles, mais s'évitent mutuellement. Cela rend le remplissage plus rigide, mais augmente le temps d'impression et la quantité de matériau utilisé." - -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Vitesse de refroidissement" - -msgctxt "cooling description" -msgid "Cooling" -msgstr "Refroidissement" - -msgctxt "cooling label" -msgid "Cooling" -msgstr "Refroidissement" - -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Entrecroisé" - -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Entrecroisé" - -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "Entrecroisé 3D" - -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Taille de poches entrecroisées 3D" - -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Image de densité du remplissage croisé pour le support" - -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Image de densité du remplissage croisé" - -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Matériau cristallin" - -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Cubique" - -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Subdivision cubique" - -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Coque de la subdivision cubique" - -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Maille de coupe" - -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "Données reliant le flux de matériau (en mm3 par seconde) à la température (degrés Celsius)." - -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Accélération par défaut" - -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Température du plateau par défaut" - -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Saccade par défaut du filament" - -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Température d’impression par défaut" - -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Saccade X-Y par défaut" - -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Saccade Z par défaut" - -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "Saccade par défaut pour le mouvement sur le plan horizontal." - -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "Saccade par défaut pour le moteur du sens Z." - -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "Saccade par défaut pour le moteur du filament." - -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "Détecter les ponts et modifier la vitesse d'impression, le débit et les paramètres du ventilateur pendant l'impression des ponts." - -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "Détermine l'ordre dans lequel les parois sont imprimées. L'impression des parois extérieures plus tôt permet une précision dimensionnelle car les défauts des parois intérieures ne peuvent pas se propager à l'extérieur. Cependant, le fait de les imprimer plus tard leur permet de mieux s'empiler lorsque les saillies sont imprimées. Lorsqu'il y a une quantité totale inégale de parois intérieures, la « dernière ligne centrale » est toujours imprimée en dernier." - -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "Détermine la priorité de cette maille lorsque plusieurs chevauchements de mailles de remplissage sont pris en considération. Les zones comportant plusieurs chevauchements de mailles de remplissage prendront en compte les paramètres du maillage ayant l'ordre le plus élevé. Une maille de remplissage possédant un ordre plus élevé modifiera le remplissage des mailles de remplissage ayant un ordre plus bas et des mailles normales." - -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "Détermine quand une couche de remplissage éclair doit soutenir tout ce qui se trouve au-dessus. Mesuré dans l'angle au vu de l'épaisseur d'une couche." - -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "Détermine quand une couche de remplissage éclair doit soutenir le modèle au-dessus. Mesuré dans l'angle au vu de l'épaisseur." - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diamètre" - -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "Augmentation du diamètre des branches rattachées au modèle" +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Zones interdites au bec d'impression" -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "Il s'agit du diamètre que chaque branche essaie d'atteindre au niveau du plateau. Ce paramètre améliore l'adhérence au plateau." +msgctxt "nozzle_disallowed_areas description" +msgid "A list of polygons with areas the nozzle is not allowed to enter." +msgstr "Une liste de polygones comportant les zones dans lesquelles le bec n'a pas le droit de pénétrer." -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "Différentes options qui permettent d'améliorer la préparation de votre extrusion et l'adhérence au plateau. La bordure ajoute une zone plate d'une seule couche autour de la base de votre modèle, afin de l'empêcher de se redresser. Le radeau ajoute une grille épaisse avec un toit sous le modèle. La jupe est une ligne imprimée autour du modèle mais qui n'est pas rattachée au modèle." +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Polygone de la tête de la machine et du ventilateur" -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Zones interdites" +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "La forme de la tête d'impression. Ce sont des coordonnées par rapport à la position de la tête d'impression, qui est généralement la position de sa premiere extrudeuse. Les dimensions à gauche et devant la tête d'impression doivent être des coordonnées négatives." -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "Distance entre les lignes de remplissage imprimées. Ce paramètre est calculé par la densité du remplissage et la largeur de ligne de remplissage." +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Hauteur du portique" -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "Distance entre les lignes de la structure de support de la couche initiale imprimée. Ce paramètre est calculé en fonction de la densité du support." +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "La différence de hauteur entre la pointe de la buse et le système de portique (axes X et Y)." -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "Distance entre les lignes du bas de support imprimées. Ce paramètre est calculé par la densité du bas de support mais peut également être défini séparément." +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID buse" -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "Distance entre les lignes du plafond de support imprimées. Ce paramètre est calculé par la densité du plafond de support mais peut également être défini séparément." +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "ID buse pour un train d'extrudeuse, comme « AA 0.4 » et « BB 0.8 »." -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "Distance entre les lignes de support imprimées. Ce paramètre est calculé par la densité du support." +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diamètre de la buse" -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." -msgstr "Distance de l'impression au bas du support. Notez que cela est arrondi à la hauteur de couche suivante." +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Le diamètre intérieur de la buse. Modifiez ce paramètre si vous utilisez une taille de buse non standard." -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "Distance entre l’impression et le haut des supports." +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Décalage avec extrudeuse" -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." -msgstr "Distance entre le haut/bas de la structure de support et l'impression. Cet écart permet de retirer les supports après l'impression du modèle. La couche de support la plus haute sous le modèle pourrait être une fraction des couches régulières." +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "Appliquez le décalage de l'extrudeuse au système de coordonnées. Affecte toutes les extrudeuses." -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "Distance de déplacement à insérer après chaque ligne de remplissage, pour s'assurer que le remplissage collera mieux aux parois externes. Cette option est similaire au chevauchement du remplissage, mais sans extrusion et seulement à l'une des deux extrémités de la ligne de remplissage." +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Extrudeuse Position d'amorçage Z" -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "Distance d'un déplacement inséré après la paroi extérieure, pour mieux masquer la jointure en Z." +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Les coordonnées Z de la position à laquelle la buse s'amorce au début de l'impression." -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "Distance entre la pièce et le bouclier dans les directions X et Y." +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "Position d'amorçage absolue de l'extrudeuse" -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "Distance entre le bouclier de suintage et l'impression dans les directions X/Y." +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "Rendre la position d'amorçage de l'extrudeuse absolue plutôt que relative à la dernière position connue de la tête." -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "Distance entre la structure de support et le porte-à-faux dans les directions X/Y." +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Vitesse maximale X" -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "Distance entre le support et l'impression dans les directions X/Y." +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "La vitesse maximale pour le moteur du sens X." -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Les points de distance sont décalés pour lisser le chemin" +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Vitesse maximale Y" -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Les points de distance sont décalés pour lisser le chemin" +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "La vitesse maximale pour le moteur du sens Y." -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "Ne pas générer de zones de remplissage plus petites que cela (utiliser plutôt une couche extérieure)" +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Vitesse maximale Z" -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Hauteur du bouclier" +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "La vitesse maximale pour le moteur du sens Z." -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Limite du bouclier" +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Vitesse maximale E" -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Distance X/Y du bouclier" +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "La vitesse maximale du filament." -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Maillage de support descendant" +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Accélération maximale X" -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Double extrusion" +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "Accélération maximale pour le moteur du sens X" -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Elliptique" +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Accélération maximale Y" -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Activer le contrôle d'accélération" +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Accélération maximale pour le moteur du sens Y." -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Activer les paramètres du pont" +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Accélération maximale Z" -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Activer la roue libre" +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Accélération maximale pour le moteur du sens Z." -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Activer les supports coniques" +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Accélération maximale du filament" -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Activer le bouclier" +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "Accélération maximale pour le moteur du filament." -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "Activer le mouvement fluide" +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Accélération par défaut" -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Activer l'étirage" +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "L'accélération par défaut du mouvement de la tête d'impression." -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Activer le contrôle de saccade" +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Saccade X-Y par défaut" -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Permettre le contrôle de la température de la buse" +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "Saccade par défaut pour le mouvement sur le plan horizontal." -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Activer le bouclier de suintage" +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Saccade Z par défaut" -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "Activer la goutte de préparation" +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "Saccade par défaut pour le moteur du sens Z." -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Activer la tour d'amorçage" +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Saccade par défaut du filament" -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Activer le refroidissement de l'impression" +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "Saccade par défaut pour le moteur du filament." -msgctxt "ppr_enable label" -msgid "Enable Print Process Reporting" -msgstr "" +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Pas par millimètre (X)" -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Activer la rétraction" +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "Nombre de pas du moteur pas à pas correspondant à un mouvement d'un millimètre dans la direction X." -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Activer la bordure du support" +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Pas par millimètre (Y)" -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Activer les bas de support" +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "Nombre de pas du moteur pas à pas correspondant à un mouvement d'un millimètre dans la direction Y." -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Activer l'interface de support" +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Pas par millimètre (Z)" -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Activer les plafonds de support" +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "Nombre de pas du moteur pas à pas correspondant à un mouvement d'un millimètre dans la direction Z." -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "Activer l'accélération des déplacements" +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Pas par millimètre (E)" -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "Activer les saccades de déplacement" +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "Nombre de pas des moteurs pas à pas correspondant au déplacement de la roue du chargeur d'un millimètre sur sa circonférence." -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "Activer le bouclier de suintage extérieur. Cela créera une coque autour du modèle qui est susceptible d'essuyer une deuxième buse si celle-ci est à la même hauteur que la première buse." +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "Butée X en sens positif" -msgctxt "ppr_enable description" -msgid "Enable print process reporting for setting threshold values for possible fault detection." -msgstr "" +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "Détermine si la butée de l'axe X est en sens positif (haute coordonnée X) ou négatif (basse coordonnée X)." -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "Permet aux petites zones (jusqu'à « Petite largeur Haut/Bas ») de la couche supérieure (exposée à l'air) d'être remplies avec des parois au lieu du motif par défaut." +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Butée Y en sens positif" -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "Active le réglage de la saccade de la tête d'impression lorsque la vitesse sur l'axe X ou Y change. Augmenter les saccades peut réduire la durée d'impression au détriment de la qualité d'impression." +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "Détermine si la butée de l'axe Y est en sens positif (haute coordonnée Y) ou négatif (basse coordonnée Y)." -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "Active le réglage de l'accélération de la tête d'impression. Augmenter les accélérations peut réduire la durée d'impression au détriment de la qualité d'impression." +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Butée Z en sens positif" -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "Active les ventilateurs de refroidissement de l'impression pendant l'impression. Les ventilateurs améliorent la qualité de l'impression sur les couches présentant des durées de couche courtes et des ponts / porte-à-faux." +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "Détermine si la butée de l'axe Z est en sens positif (haute coordonnée Z) ou négatif (basse coordonnée Z)." -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "G-Code de fin" +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Taux d'alimentation minimal" -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Longueur de purge de l'extrémité du filament" +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "La vitesse minimale de mouvement de la tête d'impression." -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Vitesse de purge de l'extrémité du filament" +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Diamètre de roue du chargeur" -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "Appliquer la bordure à imprimer autour du modèle même si cet espace aurait autrement dû être occupé par le support, en remplaçant certaines régions de la première couche de support par des régions de la bordure." +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "Diamètre de la roue qui entraîne le matériau dans le chargeur." -msgctxt "brim_location option everywhere" -msgid "Everywhere" -msgstr "" +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "Mise à l'échelle de la vitesse du ventilateur à 0-1" -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "Partout" +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "Mettez à l'échelle la vitesse du ventilateur de 0 à 1 au lieu de 0 à 256." -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Exclusif" +msgctxt "resolution label" +msgid "Quality" +msgstr "Qualité" -msgctxt "experimental label" -msgid "Experimental" -msgstr "Expérimental" +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "Tous les paramètres qui influent sur la résolution de l'impression. Ces paramètres ont un impact conséquent sur la qualité (et la durée d'impression)." -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Exposer jointure" +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Hauteur de la couche" -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Raccommodage" +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "La hauteur de chaque couche en mm. Des valeurs plus élevées créent des impressions plus rapides dans une résolution moindre, tandis que des valeurs plus basses entraînent des impressions plus lentes dans une résolution plus élevée." -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "Le raccommodage consiste en la suppression des trous dans le maillage en tentant de fermer le trou avec des intersections entre polygones existants. Cette option peut induire beaucoup de temps de calcul." +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Hauteur de la couche initiale" -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "Nombre de parois de remplissage supplémentaire" +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "La hauteur de la couche initiale en mm. Une couche initiale plus épaisse adhère plus facilement au plateau." -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Nombre supplémentaire de parois extérieures" +msgctxt "line_width label" +msgid "Line Width" +msgstr "Largeur de ligne" -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "Matériel supplémentaire à amorcer après le changement de buse." +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "Largeur d'une ligne. Généralement, la largeur de chaque ligne doit correspondre à la largeur de la buse. Toutefois, le fait de diminuer légèrement cette valeur peut fournir de meilleures impressions." -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Extrudeuse Position d'amorçage X" +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Largeur de ligne de la paroi" -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Extrudeuse Position d'amorçage Y" +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Largeur d'une seule ligne de la paroi." -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Extrudeuse Position d'amorçage Z" +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Largeur de ligne de la paroi externe" + +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "Largeur de la ligne la plus à l'extérieur de la paroi. Le fait de réduire cette valeur permet d'imprimer des niveaux plus élevés de détails." -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Les extrudeurs partagent le chauffage" +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Largeur de ligne de la (des) paroi(s) interne(s)" -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Les extrudeuses partagent la buse" +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "Largeur d'une seule ligne de la paroi pour toutes les lignes de paroi, à l’exception de la ligne la plus externe." -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Modificateur de vitesse de refroidissement de l'extrusion" +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Largeur de la ligne du dessus/dessous" -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "Facteur de correction de la largeur d'extrusion en fonction de la vitesse. À 0 %, la vitesse de mouvement reste constante à la vitesse d'impression. À 100 %, la vitesse de mouvement est ajustée de sorte que le débit (en mm³/s) reste constant, c'est-à-dire que les lignes à la moitié de la largeur de ligne normale sont imprimées deux fois plus vite et que les lignes à la moitié de la largeur sont imprimées aussi vite. Une valeur supérieure à 100 % peut aider à compenser la pression plus élevée requise pour extruder les lignes larges." +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Largeur d'une seule ligne du dessus/dessous." -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Vitesse du ventilateur" +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Largeur de ligne de remplissage" -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Annulation de la vitesse du ventilateur" +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Largeur d'une seule ligne de remplissage." -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "Les contours des structures dont le diamètre est inférieur à cette longueur seront imprimés en utilisant l'option Vitesse de petite structure." +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Largeur des lignes de jupe/bordure" -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Des fonctionnalités qui n'ont pas encore été complètement développées." +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "Largeur d'une seule ligne de jupe ou de bordure." -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Diamètre de roue du chargeur" +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Largeur de ligne de support" -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Température d’impression finale" +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Largeur d'une seule ligne de support." -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Rétraction du firmware" +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Largeur de ligne d'interface de support" -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Extrudeuse de support de la première couche" +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "Largeur d'une seule ligne de plafond ou de bas de support." -msgctxt "material_flow label" -msgid "Flow" -msgstr "Débit" +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Largeur de ligne de plafond de support" -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Rapport d'égalisation des débits" +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "Largeur d'une seule ligne de plafond de support." -msgctxt "flow_anomaly_limit label" -msgid "Flow Limit" -msgstr "" +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Largeur de ligne de bas de support" -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Facteur de compensation du débit" +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "Largeur d'une seule ligne de bas de support." -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Décalage d'extrusion max. pour compensation du débit" +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Largeur de ligne de la tour d'amorçage" -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Graphique de la température du flux" +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "Largeur d'une seule ligne de tour d'amorçage." -msgctxt "flow_warn_limit label" -msgid "Flow Warning" -msgstr "" +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Largeur de ligne couche initiale" -msgctxt "material_flow_layer_0 description" -msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." -msgstr "Compensation du débit pour la couche initiale : la quantité de matériau extrudée sur la couche initiale est multipliée par cette valeur." +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "Multiplicateur de la largeur de la ligne sur la première couche. Augmenter le multiplicateur peut améliorer l'adhésion au plateau." -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "Compensation de débit sur les lignes inférieures de la première couche" +msgctxt "shell label" +msgid "Walls" +msgstr "Parois" -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Compensation de débit sur les lignes de remplissage." +msgctxt "shell description" +msgid "Shell" +msgstr "Coque" -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "Compensation de débit sur les lignes de plafond ou de bas de support." +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Extrudeuse de paroi" -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "Compensation de débit sur les lignes des zones en haut de l'impression." +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse utilisé pour l'impression des parois. Cela est utilisé en multi-extrusion." -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Compensation de débit sur les lignes de la tour d'amorçage." +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Extrudeuse de paroi externe" -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Compensation de débit sur les lignes de jupe ou bordure." +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse utilisé pour l'impression des parois externes. Cela est utilisé en multi-extrusion." -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Compensation de débit sur les lignes de bas de support." +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Extrudeuse de paroi interne" -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Compensation de débit sur les lignes du plafond de support." +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse utilisé pour l'impression des parois internes. Cela est utilisé en multi-extrusion." -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Compensation de débit sur les lignes de support." +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Épaisseur de la paroi" -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "Compensation de débit sur la ligne de paroi la plus externe de la première couche." +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "Épaisseur des parois en sens horizontal. Cette valeur divisée par la largeur de la ligne de la paroi définit le nombre de parois." -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "Compensation de débit sur la ligne de la paroi la plus à l'extérieur." +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Nombre de lignes de la paroi" -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Compensation de flux sur la ligne de paroi la plus externe de la surface supérieure." +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "Le nombre de parois. Lorsqu'elle est calculée par l'épaisseur de la paroi, cette valeur est arrondie à un nombre entier." -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Compensation du flux sur les lignes de paroi de la surface supérieure pour toutes les lignes de paroi sauf la plus externe." +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Longueur de transition de la paroi" -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Compensation de débit sur les lignes du dessus/dessous." +msgctxt "wall_transition_length description" +msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." +msgstr "Lorsque l'on passe d'un nombre de parois à un autre, au fur et à mesure que la pièce s'amincit, un certain espace est alloué pour diviser ou joindre les lignes de parois." -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "Compensation de débit sur les lignes de paroi pour toutes les lignes de paroi, à l'exception de la ligne la plus plus externe, mais uniquement pour la première couche" +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Nombre de distributions des parois" -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "Compensation de débit sur les lignes de la paroi pour toutes les lignes de paroi, à l'exception de la ligne la plus externe." +msgctxt "wall_distribution_count description" +msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." +msgstr "Le nombre de parois, comptées à partir du centre, sur lesquelles la variation doit être répartie. Les valeurs inférieures signifient que les parois extérieures ne changent pas en termes de largeur." -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Compensation de débit sur les lignes de la paroi." +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Angle du seuil de transition de la paroi" -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "Compensation du débit : la quantité de matériau extrudée est multipliée par cette valeur." +msgctxt "wall_transition_angle description" +msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." +msgstr "Quand créer des transitions entre un nombre uniforme et impair de parois. Une forme de coin dont l'angle est supérieur à ce paramètre n'aura pas de transitions et aucune paroi ne sera imprimée au centre pour remplir l'espace restant. En réduisant ce paramètre, on réduit le nombre et la longueur de ces parois centrales, mais on risque de laisser des trous ou sur-extruder." -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "Angle de mouvement fluide" +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Distance du filtre de transition des parois" -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "Distance de décalage du mouvement fluide" +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "S'il s'agit d'une transition d'avant en arrière entre différents nombres de parois en succession rapide, ne faites pas du tout la transition. Supprimez les transitions si elles sont plus proches les unes des autres que cette distance." -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "Faible distance de décalage du mouvement fluide" +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Marge du filtre de transition des parois" -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Longueur de la purge d'insertion" +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "Empêchez la transition d'avant en arrière entre une paroi supplémentaire et une paroi en moins. Cette marge étend la gamme des largeurs de ligne qui suivent à [Largeur minimale de la ligne de paroi - marge, 2 * Largeur minimale de la ligne de paroi + marge]. L'augmentation de cette marge réduit le nombre de transitions, ce qui réduit le nombre de démarrages/arrêts d'extrusion et le temps de trajet. Cependant, une grande variation de la largeur de la ligne peut entraîner des problèmes de sous-extrusion ou de sur-extrusion." -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Vitesse de purge d'insertion" +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Distance d'essuyage paroi extérieure" -msgctxt "min_wall_line_width description" -msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." -msgstr "Pour les structures fines dont la taille correspond à une ou deux fois celle de la buse, il faut modifier la largeur des lignes pour respecter l'épaisseur du modèle. Ce paramètre contrôle la largeur de ligne minimale autorisée pour les parois. Les largeurs de lignes minimales déterminent également les largeurs de lignes maximales, puisque nous passons de N à N+1 parois à une certaine épaisseur géométrique où les N parois sont larges et les N+1 parois sont étroites. La ligne de paroi la plus large possible est égale à deux fois la largeur minimale de la ligne de paroi." +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "Distance d'un déplacement inséré après la paroi extérieure, pour mieux masquer la jointure en Z." -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Avant" +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Insert de paroi externe" -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Avant gauche" +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "Insert appliqué sur le passage de la paroi externe. Si la paroi externe est plus petite que la buse et imprimée après les parois intérieures, utiliser ce décalage pour que le trou dans la buse chevauche les parois internes et non l'extérieur du modèle." -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Avant droit" +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Optimiser l'ordre d'impression des parois" -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Pleine hauteur" +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "Optimiser l'ordre dans lequel des parois sont imprimées de manière à réduire le nombre de retraits et les distances parcourues. La plupart des pièces bénéficieront de cette possibilité, mais certaines peuvent en fait prendre plus de temps à l'impression ; veuillez dès lors comparer les estimations de durée d'impression avec et sans optimisation. La première couche n'est pas optimisée lorsque le type d'adhérence au plateau est défini sur bordure." -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Surfaces floues" +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Ordre des parois" -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Densité de la couche floue" +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "Détermine l'ordre dans lequel les parois sont imprimées. L'impression des parois extérieures plus tôt permet une précision dimensionnelle car les défauts des parois intérieures ne peuvent pas se propager à l'extérieur. Cependant, le fait de les imprimer plus tard leur permet de mieux s'empiler lorsque les saillies sont imprimées. Lorsqu'il y a une quantité totale inégale de parois intérieures, la « dernière ligne centrale » est toujours imprimée en dernier." -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Couche floue à l'extérieur uniquement" +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "De l'intérieur vers l'extérieur" -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Distance entre les points de la couche floue" +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "De l'extérieur vers l'intérieur" -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Épaisseur de la couche floue" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Alterner les parois supplémentaires" -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "Parfum G-Code" +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "Imprime une paroi supplémentaire une couche sur deux. Ainsi, le remplissage est pris entre ces parois supplémentaires pour créer des impressions plus solides." -msgctxt "machine_end_gcode description" -msgid "" -"G-code commands to be executed at the very end - separated by \n" -"." -msgstr "" -"Commandes G-Code à exécuter tout à la fin, séparées par \n" -"." +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Largeur minimale de la ligne de paroi" -msgctxt "machine_start_gcode description" -msgid "" -"G-code commands to be executed at the very start - separated by \n" -"." -msgstr "" -"Commandes G-Code à exécuter au tout début, séparées par \n" -"." +msgctxt "min_wall_line_width description" +msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." +msgstr "Pour les structures fines dont la taille correspond à une ou deux fois celle de la buse, il faut modifier la largeur des lignes pour respecter l'épaisseur du modèle. Ce paramètre contrôle la largeur de ligne minimale autorisée pour les parois. Les largeurs de lignes minimales déterminent également les largeurs de lignes maximales, puisque nous passons de N à N+1 parois à une certaine épaisseur géométrique où les N parois sont larges et les N+1 parois sont étroites. La ligne de paroi la plus large possible est égale à deux fois la largeur minimale de la ligne de paroi." -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "GUID du matériau. Cela est configuré automatiquement." +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Largeur minimale de la ligne de paroi uniforme" -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Hauteur du portique" +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "Largeur de ligne minimale pour les parois polygonales normales. Ce paramètre détermine à quelle épaisseur de modèle nous passons de l'impression d'une seule ligne de paroi fine à l'impression de deux lignes de paroi. Une largeur minimale de ligne de paroi paire plus élevée entraîne une largeur maximale de ligne de paroi impaire plus élevée. La largeur maximale de la ligne de paroi paire est calculée comme suit : largeur de la ligne de paroi extérieure + 0,5 * largeur minimale de la ligne de paroi impaire." -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "Générer une structure de connexion" +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Largeur minimale de la ligne de paroi impaire" -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Générer les supports" +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "Largeur de ligne minimale pour les parois de polyligne de remplissage de l'espace de ligne médiane. Ce paramètre détermine à partir de quelle épaisseur de modèle 3D nous passons de l'impression de deux lignes de parois à l'impression de deux parois extérieures et d'une seule paroi centrale au milieu. Une largeur de ligne de paroi impaire minimale plus élevée conduit à une largeur de ligne de paroi paire plus élevée. La largeur maximale de la ligne de paroi impaire représente 2 fois la largeur minimale de la ligne de paroi paire." -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "Générer un bord à l'intérieur des zones de remplissage du support de la première couche. Cette bordure est imprimée sous le support et non autour de celui-ci, ce qui augmente l'adhérence du support au plateau." +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Imprimer parois fines" -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "Générer une interface dense entre le modèle et le support. Cela créera une couche sur le dessus du support sur lequel le modèle est imprimé et sur le dessous du support sur lequel le modèle repose." +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "Imprimer les parties du modèle qui sont horizontalement plus fines que la taille de la buse." -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "Générer une plaque dense de matériau entre le bas du support et le modèle. Cela créera une couche extérieure entre le modèle et le support." +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Taille minimale des entités" -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "Générer une plaque dense de matériau entre le plafond du support et le modèle. Cela créera une couche extérieure entre le modèle et le support." +msgctxt "min_feature_size description" +msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." +msgstr "Épaisseur minimale des entités fines. Les entités de modèle qui sont plus fines que cette valeur ne seront pas imprimées, tandis que les entités plus épaisses que la taille d'entité minimale seront élargies à la largeur minimale de la ligne de paroi." -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "Générer des structures pour soutenir les parties du modèle qui possèdent des porte-à-faux. Sans ces structures, ces parties s'effondreront durant l'impression." +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Largeur minimale de la ligne de paroi fine" -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Verre" +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "La largeur de la paroi qui remplacera les entités fines (selon la taille minimale des entités) du modèle. Si la largeur minimale de la ligne de paroi est plus fine que l'épaisseur de l'entité, la paroi deviendra aussi épaisse que l'entité elle-même." -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "Allez au-dessus de la surface une fois supplémentaire, mais en extrudant très peu de matériau. Cela signifie de faire fondre le plastique en haut un peu plus, pour créer une surface lisse. La pression dans la chambre de la buse est maintenue élevée afin que les plis de la surface soient remplis de matériau." +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Expansion horizontale" -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Hauteur de l'étape de remplissage progressif" +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "Le décalage appliqué à tous les polygones dans chaque couche. Une valeur positive peut compenser les trous trop gros ; une valeur négative peut compenser les trous trop petits." -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Étapes de remplissage progressif" +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Expansion horizontale de la couche initiale" -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Hauteur d'étape de remplissage graduel du support" +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "Le décalage appliqué à tous les polygones dans la première couche. Une valeur négative peut compenser l'écrasement de la première couche, appelé « patte d'éléphant »." -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Étapes de remplissage graduel du support" +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Expansion horizontale des trous" -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "Réduisez progressivement à cette température lors de l'impression à des vitesses réduites en raison de la durée minimale d’une couche." +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "Lorsqu'elle est supérieure à zéro, l'expansion horizontale du trou correspond à la quantité de décalage appliquée à la totalité des trous de chaque couche. Les valeurs positives augmentent la taille des trous, les valeurs négatives réduisent la taille des trous. Lorsque ce paramètre est activé, il peut être ajusté davantage avec le diamètre maximum d'expansion horizontale du trou." -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Grille" +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "Diamètre maximal de l'expansion horizontale des trous" -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Grille" +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "Lorsque le diamètre est supérieur à zéro, l'expansion horizontale des trous est progressivement appliquée aux petits trous (ces derniers sont élargis). Lorsque le diamètre est défini sur zéro, l'expansion horizontale des trous est appliquée à tous les trous. Les trous dont le diamètre est supérieur au diamètre maximal défini pour l'expansion horizontale des trous ne sont pas élargis." -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Grille" +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Alignement de la jointure en Z" -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Grille" +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "Point de départ de chaque voie dans une couche. Quand les voies dans les couches consécutives démarrent au même endroit, une jointure verticale peut apparaître sur l'impression. En alignant les points de départ près d'un emplacement défini par l'utilisateur, la jointure sera plus facile à faire disparaître. Lorsqu'elles sont disposées de manière aléatoire, les imprécisions de départ des voies seront moins visibles. En choisissant la voie la plus courte, l'impression se fera plus rapidement." -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Grille" +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Utilisateur spécifié" -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Plus court" -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Regrouper les parois extérieures" +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Aléatoire" -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroïde" +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Angle le plus aigu" -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroïde" +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Position de la jointure en Z" -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "Est dotée de la stabilisation de la température du volume d'impression" +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "La position près de laquelle démarre l'impression de chaque partie dans une couche." -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "A un plateau chauffé" +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Arrière gauche" -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Vitesse de chauffage" +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Arrière" -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Longueur de la zone chauffée" +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Arrière droit" -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "Hauteur limite du bouclier. Au-delà de cette hauteur, aucun bouclier ne sera imprimé." +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Droite" -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Masquer jointure" +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Avant droit" -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Masquer ou exposer jointure" +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Avant" -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Expansion horizontale des trous" +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Avant gauche" -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "Diamètre maximal de l'expansion horizontale des trous" +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Gauche" -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "Les trous et les contours des pièces dont le diamètre est inférieur à celui-ci seront imprimés en utilisant l'option Vitesse de petite structure." +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "X Jointure en Z" -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Expansion horizontale" +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "Coordonnée X de la position près de laquelle démarrer l'impression de chaque partie dans une couche." -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Compensation du rétrécissement du facteur d'échelle horizontale" +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Y Jointure en Z" -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "Jusqu'où le filament peut être étiré avant qu'il ne se casse, pendant qu'il est chauffé." +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "Coordonnée Y de la position près de laquelle démarrer l'impression de chaque partie dans une couche." -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "Jusqu'où le matériau doit être rétracté avant qu'il cesse de suinter." +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Préférence de jointure d'angle" -msgctxt "flow_rate_extrusion_offset_factor description" -msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." -msgstr "La distance de déplacement du filament pour compenser les variations du débit, en pourcentage de la distance de déplacement du filament en une seconde d'extrusion." +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "Vérifie si les angles du contour du modèle influencent l'emplacement de la jointure. « Aucune » signifie que les angles n'ont aucune influence sur l'emplacement de la jointure. « Masquer la jointure » génère le positionnement de la jointure sur un angle intérieur. « Exposer la jointure » génère le positionnement de la jointure sur un angle extérieur. « Masquer ou exposer la jointure » génère le positionnement de la jointure sur un angle intérieur ou extérieur. « Jointure intelligente » autorise les angles intérieurs et extérieurs, mais choisit plus fréquemment les angles intérieurs, le cas échéant." -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "Jusqu'où rétracter le filament afin de le casser proprement." +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Aucun" -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "La vitesse à laquelle le filament doit être rétracté juste avant de le briser dans une rétraction." +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Masquer jointure" -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "À quelle vitesse le matériau doit-il être rétracté lors d'un changement de filament pour empêcher le suintage." +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Exposer jointure" -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "La vitesse d'amorçage du matériau après le remplacement d'une bobine vide par une nouvelle bobine du même matériau." +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Masquer ou exposer jointure" -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "La vitesse d'amorçage du matériau après le passage à un autre matériau." +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Masquage intelligent" -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "La durée pendant laquelle le matériau peut être conservé à l'abri de la sécheresse." +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Relatif à la jointure en Z" -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "Nombre de pas du moteur pas à pas correspondant à un mouvement d'un millimètre dans la direction X." +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "Si cette option est activée, les coordonnées de la jointure z sont relatives au centre de chaque partie. Si elle est désactivée, les coordonnées définissent une position absolue sur le plateau." -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "Nombre de pas du moteur pas à pas correspondant à un mouvement d'un millimètre dans la direction Y." +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Haut / bas" -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "Nombre de pas du moteur pas à pas correspondant à un mouvement d'un millimètre dans la direction Z." +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Haut / bas" -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "Nombre de pas des moteurs pas à pas correspondant au déplacement de la roue du chargeur d'un millimètre sur sa circonférence." +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Extrudeuse de couche extérieure de la surface supérieure" -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "La quantité de matériau à utiliser pour purger le matériau précédent de la buse (en longueur de filament) lors du remplacement d'une bobine vide par une nouvelle bobine du même matériau." +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse utilisé pour l'impression de la couche extérieure supérieure. Cela est utilisé en multi-extrusion." -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "La quantité de matériau à utiliser pour purger le matériau précédent de la buse (en longueur de filament) lors du passage à un autre matériau." +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Couches extérieures de la surface supérieure" -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "La quantité de filament de chaque extrudeuse qui est supposée avoir été rétractée de l'extrémité de la buse partagée à la fin du script gcode de démarrage de l'imprimante ; la valeur doit être égale ou supérieure à la longueur de la partie commune des conduits de la buse." +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "Nombre de couches extérieures supérieures. En général, une seule couche supérieure est suffisante pour générer des surfaces supérieures de qualité." -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "Ce paramètre détermine la façon dont l'interface de support et le support interagissent en cas de chevauchement. Il n'est actuellement disponible que pour le plafond de support." +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Largeur de ligne de couche extérieure de la surface supérieure" -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "Il s'agit de la hauteur minimale que doit atteindre une branche si elle est rattachée au modèle. Ce paramètre empêche la formation de petites gouttes de support. Il est ignoré lorsqu'une branche soutient un plafond de support." +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "Largeur d'une seule ligne de la zone en haut de l'impression." -msgctxt "bridge_skin_support_threshold description" -msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." -msgstr "Si une région de couche extérieure est supportée pour une valeur inférieure à ce pourcentage de sa surface, elle sera imprimée selon les paramètres du pont. Sinon, elle sera imprimée selon les paramètres normaux de la couche extérieure." +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Motif de couche extérieure de surface supérieure" -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "Si un segment du parcours d'outil s'écarte d'une valeur supérieure à cet angle par rapport au mouvement général, il est lissé." +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "Le motif des couches supérieures." -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "Si cette option est activée, les deuxième et troisième couches au-dessus de la zone d'air seront imprimées selon les paramètres suivants. Sinon, ces couches seront imprimées selon les paramètres normaux." +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Lignes" -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "S'il s'agit d'une transition d'avant en arrière entre différents nombres de parois en succession rapide, ne faites pas du tout la transition. Supprimez les transitions si elles sont plus proches les unes des autres que cette distance." +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Concentrique" -msgctxt "raft_base_margin description" -msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Si vous avez appliqué un radeau, alors il s’agit de l’espace de radeau supplémentaire autour du modèle qui dispose déjà d’un radeau. L’augmentation de cette marge va créer un radeau plus solide, mais requiert davantage de matériau et laisse moins de place pour votre impression." +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Ordre monotone de la surface supérieure" -msgctxt "raft_interface_margin description" -msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprimez les lignes de la surface supérieure dans un ordre tel qu'elles se chevauchent toujours avec les lignes adjacentes dans une seule direction. Cela prend un peu plus de temps à imprimer, mais les surfaces planes ont l'air plus cohérentes." -msgctxt "raft_surface_margin description" -msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Sens de lignes de couche extérieure de surface supérieure" -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "Ignorer la géométrie interne pouvant découler de volumes se chevauchant à l'intérieur d'un maillage et imprimer les volumes comme un seul. Cela peut entraîner la disparition des cavités internes accidentelles." +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser lorsque les couches extérieures de la surface supérieure utilisent le motif en lignes ou en zig zag. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que les angles traditionnels par défaut seront utilisés (45 et 135 degrés)." -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Inclure la température du plateau" +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Extrudeuse du dessus/dessous" -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Inclure les températures du matériau" +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse utilisé pour l'impression de la couche extérieure du haut et du bas. Cela est utilisé en multi-extrusion." -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Inclusif" +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Épaisseur du dessus/dessous" -msgctxt "infill description" -msgid "Infill" -msgstr "Remplissage" +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "L’épaisseur des couches du dessus/dessous dans l'impression. Cette valeur divisée par la hauteur de la couche définit le nombre de couches du dessus/dessous." -msgctxt "infill label" -msgid "Infill" -msgstr "Remplissage" +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Épaisseur du dessus" -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Accélération de remplissage" +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "L’épaisseur des couches du dessus dans l'impression. Cette valeur divisée par la hauteur de la couche définit le nombre de couches du dessus." -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Imprimer le remplissage avant les parois" +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Couches supérieures" + +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "Le nombre de couches supérieures. Lorsqu'elle est calculée par l'épaisseur du dessus, cette valeur est arrondie à un nombre entier." -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Densité du remplissage" +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Épaisseur du dessous" -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Extrudeuse de remplissage" +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "L’épaisseur des couches du dessous dans l'impression. Cette valeur divisée par la hauteur de la couche définit le nombre de couches du dessous." -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Débit de remplissage" +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Couches inférieures" -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Saccade de remplissage" +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "Le nombre de couches inférieures. Lorsqu'elle est calculée par l'épaisseur du dessous, cette valeur est arrondie à un nombre entier." -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Épaisseur de la couche de remplissage" +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "Couches inférieures initiales" -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "Sens de ligne de remplissage" +msgctxt "initial_bottom_layers description" +msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "Le nombre de couches inférieures initiales à partir du haut du plateau. Lorsqu'elle est calculée par l'épaisseur du dessous, cette valeur est arrondie à un nombre entier." -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Distance d'écartement de ligne de remplissage" +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Motif du dessus/dessous" -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "Multiplicateur de ligne de remplissage" +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Le motif des couches du dessus/dessous." -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Largeur de ligne de remplissage" +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Lignes" -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Maille de remplissage" +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concentrique" -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Angle de porte-à-faux de remplissage" +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Chevauchement du remplissage" +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Couche initiale du motif du dessous" -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "Pourcentage de chevauchement du remplissage" +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "Motif au bas de l'impression sur la première couche." -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Motif de remplissage" +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Lignes" -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Vitesse de remplissage" +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Concentrique" -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Support de remplissage" +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Optimisation du déplacement de remplissage" +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Relier les polygones supérieurs / inférieurs" -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "Distance de remplissage" +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "Relier les voies de couche extérieure supérieures / inférieures lorsqu'elles sont côte à côte. Pour le motif concentrique, ce paramètre réduit considérablement le temps de parcours, mais comme les liens peuvent se trouver à mi-chemin sur le remplissage, cette fonctionnalité peut réduire la qualité de la surface supérieure." -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "Remplissage Décalage X" +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Ordre monotone dessus / dessous" -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Remplissage Décalage Y" +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprimez les lignes supérieures et inférieures dans un ordre tel qu'elles se chevauchent toujours avec les lignes adjacentes dans une seule direction. Cela prend un peu plus de temps à imprimer, mais les surfaces planes ont l'air plus cohérentes." -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "Couches inférieures initiales" +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Sens de la ligne du dessus / dessous" -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Vitesse des ventilateurs initiale" +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser lorsque les couches du haut / bas utilisent le motif en lignes ou en zig zag. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que les angles traditionnels par défaut seront utilisés (45 et 135 degrés)." -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Accélération de la couche initiale" +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "Petite largeur du dessus/dessous" -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "Débit inférieur de la couche initiale" +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "Les petites zones haut/bas sont remplies avec des parois au lieu du motif haut/bas par défaut. Cela permet d'éviter les mouvements saccadés. Par défaut, l'option est désactivée pour la couche supérieure (exposée à l'air) (voir « Petit Haut/Bas sur la surface »)." -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "Diamètre de la couche initiale" +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "Petit Haut/Bas sur la surface" -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Débit de la couche initiale" +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "Permet aux petites zones (jusqu'à « Petite largeur Haut/Bas ») de la couche supérieure (exposée à l'air) d'être remplies avec des parois au lieu du motif par défaut." -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Hauteur de la couche initiale" +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Aucune couche dans les trous en Z" -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Expansion horizontale de la couche initiale" +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "Lorsque le modèle comporte de petits trous verticaux de quelques couches seulement, il doit normalement y avoir une couche autour de celles-ci dans l'espace étroit. Activez ce paramètre pour ne pas générer de couche si le trou vertical est très petit. Cela améliore le temps d'impression et le temps de découpage, mais laisse techniquement le remplissage exposé à l'air." -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "Débit de la paroi intérieure de la couche initiale" +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Nombre supplémentaire de parois extérieures" -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Saccade de la couche initiale" +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "Remplace la partie la plus externe du motif du dessus/dessous par un certain nombre de lignes concentriques. Le fait d'utiliser une ou deux lignes améliore les plafonds qui commencent sur du matériau de remplissage." -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Largeur de ligne couche initiale" +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Activer l'étirage" -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "Débit de la paroi extérieure de la couche initiale" +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "Allez au-dessus de la surface une fois supplémentaire, mais en extrudant très peu de matériau. Cela signifie de faire fondre le plastique en haut un peu plus, pour créer une surface lisse. La pression dans la chambre de la buse est maintenue élevée afin que les plis de la surface soient remplis de matériau." -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Accélération de l'impression de la couche initiale" +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "N'étirer que la couche supérieure" -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Saccade d’impression de la couche initiale" +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "N'exécute un étirage que sur l'ultime couche du maillage. Ceci économise du temps si les couches inférieures ne nécessitent pas de fini lisse de surface." -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Vitesse d’impression de la couche initiale" +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Motif d'étirage" -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Vitesse de la couche initiale" +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "Le motif à utiliser pour étirer les surfaces supérieures." -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "Distance d'écartement de ligne du support de la couche initiale" +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Concentrique" -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Accélération de déplacement de la couche initiale" +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Saccade de déplacement de la couche initiale" +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Ordre d'étirage monotone" -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Vitesse de déplacement de la couche initiale" +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprimez les lignes d'étirage dans un ordre tel qu'elles se chevauchent toujours avec les lignes adjacentes dans une seule direction. Cela prend un peu plus de temps à imprimer, mais les surfaces planes ont l'air plus cohérentes." -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Chevauchement Z de la couche initiale" +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Interligne de l'étirage" -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Température d’impression initiale" +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "La distance entre les lignes d'étirage." + +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Flux d'étirage" -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Accélération de la paroi intérieure" +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "La quantité de matériau, relative à une ligne de couche extérieure normale, à extruder pendant l'étirage. Le fait de garder la buse pleine aide à remplir certaines des crevasses de la surface supérieure ; mais si la quantité est trop importante, cela entraînera une surextrusion et l'apparition de coupures sur le côté de la surface." -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Extrudeuse de paroi interne" +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Insert d'étirage" -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Saccade de paroi intérieure" +msgctxt "ironing_inset description" +msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." +msgstr "Distance à garder à partir des bords du modèle. Étirer jusqu'au bord de la maille peut entraîner l'apparition d'un bord denté sur votre impression." -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Vitesse d'impression de la paroi interne" +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Vitesse d'étirage" -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Débit de paroi(s) interne(s)" +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "La vitesse à laquelle passer sur la surface supérieure." -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Largeur de ligne de la (des) paroi(s) interne(s)" +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Accélération d'étirage" -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "Insert appliqué sur le passage de la paroi externe. Si la paroi externe est plus petite que la buse et imprimée après les parois intérieures, utiliser ce décalage pour que le trou dans la buse chevauche les parois internes et non l'extérieur du modèle." +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "L'accélération selon laquelle l'étirage est effectué." -msgctxt "brim_location option inside" -msgid "Inside Only" -msgstr "" +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Saccade d'étirage" -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "De l'intérieur vers l'extérieur" +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "Le changement instantané maximal de vitesse lors de l'étirage." -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "Priorité aux lignes d'interface" +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Pourcentage de chevauchement de la couche extérieure" -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "Priorité à l'interface" +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Ajuster le degré de chevauchement entre les parois et les (extrémités des) lignes centrales de la couche extérieure, en pourcentage de la largeur des lignes de la couche extérieure et de la paroi intérieure. Un chevauchement léger permet de relier fermement les parois à la couche extérieure. Notez que, si la largeur de la couche extérieure est égale à celle de la ligne de la paroi, un pourcentage supérieur à 50 % peut déjà faire dépasser la couche extérieure de la paroi, car dans ce cas la position de la buse de l'extrudeuse peut déjà atteindre le milieu de la paroi." -msgctxt "prime_tower_mode option interleaved" -msgid "Interleaved" -msgstr "" +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Chevauchement de la couche extérieure" -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "Nombre de couches des attaches de connexion" +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Ajuster le degré de chevauchement entre les parois et les (extrémités des) lignes centrales de la couche extérieure. Un chevauchement léger permet de relier fermement les parois à la couche extérieure. Notez que, si la largeur de la couche extérieure est égale à celle de la ligne de la paroi, une valeur supérieure à la moitié de la largeur de la paroi peut déjà faire dépasser la couche extérieure de la paroi, car dans ce cas la position de la buse de l'extrudeuse peut déjà atteindre le milieu de la paroi." -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "Largeur des attaches de connexion" +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Largeur de retrait de la couche extérieure" -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "Distance limite de connexion" +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "La plus grande largeur des zones de la couche extérieure à faire disparaître. Toute zone de la couche extérieure plus étroite que cette valeur disparaîtra. Ceci peut aider à limiter le temps et la quantité de matière utilisés pour imprimer la couche extérieure supérieure/inférieure sur les surfaces obliques du modèle." -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "Profondeur de connexion" +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Largeur de retrait de la couche extérieure supérieure" -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "Orientation de la structure de connexion" +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "La plus grande largeur des zones de la couche extérieure supérieure à faire disparaître. Toute zone de la couche extérieure plus étroite que cette valeur disparaîtra. Ceci peut aider à limiter le temps et la quantité de matière utilisés pour imprimer la couche extérieure supérieure sur les surfaces obliques du modèle." -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "N'étirer que la couche supérieure" +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Largeur de retrait de la couche extérieure inférieure" -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Accélération d'étirage" +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "La plus grande largeur des zones de la couche extérieure inférieure à faire disparaître. Toute zone de la couche extérieure plus étroite que cette valeur disparaîtra. Ceci peut aider à limiter le temps et la quantité de matière utilisés pour imprimer la couche extérieure inférieure sur les surfaces obliques du modèle." -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Flux d'étirage" +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Distance d'expansion de la couche extérieure" -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Insert d'étirage" +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "La distance à laquelle les couches extérieures s'étendent à l'intérieur du remplissage. Des valeurs élevées lient mieux la couche extérieure au motif de remplissage et font mieux adhérer à cette couche les parois des couches voisines. Des valeurs faibles économisent la quantité de matériau utilisé." -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Saccade d'étirage" +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Distance d'expansion de la couche extérieure supérieure" -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Interligne de l'étirage" +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "La distance à laquelle les couches extérieures supérieures s'étendent à l'intérieur du remplissage. Des valeurs élevées lient mieux la couche extérieure au motif de remplissage et font mieux adhérer à cette couche les parois de la couche supérieure. Des valeurs faibles économisent la quantité de matériau utilisé." -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Motif d'étirage" +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Distance d'expansion de la couche extérieure inférieure" -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Vitesse d'étirage" +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "La distance à laquelle les couches extérieures inférieures s'étendent à l'intérieur du remplissage. Des valeurs élevées lient mieux la couche extérieure au motif de remplissage et font mieux adhérer à cette couche les parois de la couche inférieure. Des valeurs faibles économisent la quantité de matériau utilisé." -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "Est l'origine du centre" +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Angle maximum de la couche extérieure pour l'expansion" -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "Matériau de support" +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "Les couches extérieures supérieures / inférieures des surfaces supérieures et / ou inférieures de votre objet possédant un angle supérieur à ce paramètre ne seront pas étendues. Cela permet d'éviter d'étendre les zones de couche extérieure étroites qui sont créées lorsque la surface du modèle possède une pente proche de la verticale. Un angle de 0° est horizontal et évitera l'extension des couches ; un angle de 90° est vertical et entraînera l'extension de toutes les couches." -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "Ce matériau se casse-t-il proprement lorsqu'il est chauffé (cristallin) ou est-ce le type qui produit de longues chaînes polymères entrelacées (non cristallines) ?" +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Largeur minimum de la couche extérieure pour l'expansion" -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "Ce paramètre permet-il d'indiquer si un matériau est généralement utilisé comme matériau de support pendant l'impression." +msgctxt "min_skin_width_for_expansion description" +msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." +msgstr "Les zones de couche extérieure plus étroites que cette valeur ne seront pas étendues. Cela permet d'éviter d'étendre les zones de couche extérieure étroites qui sont créées lorsque la surface du modèle possède une pente proche de la verticale." -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "N'agitez que les contours des pièces et non les trous des pièces." +msgctxt "infill label" +msgid "Infill" +msgstr "Remplissage" -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Conserver les faces disjointes" +msgctxt "infill description" +msgid "Infill" +msgstr "Remplissage" -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Hauteur de la couche" +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Extrudeuse de remplissage" -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "X début couche" +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse utilisé pour l'impression du remplissage. Cela est utilisé en multi-extrusion." -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Y début couche" +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Densité du remplissage" -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "Épaisseur de la couche de base du radeau. Cette couche doit être épaisse et adhérer fermement au plateau." +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "Adapte la densité de remplissage de l'impression." -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "Épaisseur de la couche intermédiaire du radeau." +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Distance d'écartement de ligne de remplissage" -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Épaisseur des couches supérieures du radeau." +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "Distance entre les lignes de remplissage imprimées. Ce paramètre est calculé par la densité du remplissage et la largeur de ligne de remplissage." -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "Ignorer une connexion entre lignes du support tous les N millimètres, pour rendre la structure de support plus facile à casser." +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Motif de remplissage" -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Gauche" +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "Le motif du matériau de remplissage de l'impression. La ligne et le remplissage en zigzag changent de sens à chaque alternance de couche, réduisant ainsi les coûts matériels. Les motifs en grille, en triangle, tri-hexagonaux, cubiques, octaédriques, quart cubiques, entrecroisés et concentriques sont entièrement imprimés sur chaque couche. Les remplissages gyroïdes, cubiques, quart cubiques et octaédriques changent à chaque couche afin d'offrir une répartition plus égale de la solidité dans chaque direction. Le remplissage éclair tente de minimiser le remplissage, en ne supportant que le plafond de l'objet." -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Relever la tête" +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Grille" -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Éclair" +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Lignes" -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Angle de saillie du remplissage éclair" +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Triangles" + +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Trihexagonal" -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Angle d'élagage du remplissage éclair" +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Cubique" -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Angle de redressement du remplissage éclair" +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Subdivision cubique" -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Angle de support du remplissage éclair" +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Octaédrique" -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "Limitation de la portée des branches" +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Quart cubique" -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "Ce paramètre limite la distance parcourue par chaque branche à partir du point qu'elle soutient. Le support peut ainsi être plus solide, mais le nombre de branches augmentera (tout comme la quantité de matériau utilisée et le temps d'impression)" +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Concentrique" -msgctxt "bv_temp_warn_limit description" -msgid "Limit on Build Volume Temperature warning for detection." -msgstr "" +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" -msgctxt "bv_temp_anomaly_limit description" -msgid "Limit on Build Volume temperature Anomaly for detection." -msgstr "" +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Entrecroisé" -msgctxt "print_temp_anomaly_limit description" -msgid "Limit on Print Temperature anomaly for detection." -msgstr "" +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "Entrecroisé 3D" -msgctxt "print_temp_warn_limit description" -msgid "Limit on Print temperature warning for detection." -msgstr "" +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroïde" -msgctxt "flow_anomaly_limit description" -msgid "Limit on flow anomaly for detection." -msgstr "" +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Éclair" -msgctxt "flow_warn_limit description" -msgid "Limit on the flow warning for detection." -msgstr "" +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Relier les lignes de remplissage" -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "Limiter le volume de ce maillage à celui des autres maillages. Cette option permet de faire en sorte que certaines zones d'un maillage s'impriment avec des paramètres différents et avec une extrudeuse entièrement différente." +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "Relie les extrémités où le motif de remplissage touche la paroi interne, à l'aide d'une ligne épousant la forme de la paroi interne. Activer ce paramètre peut faire mieux coller le remplissage aux parois, et réduit les effets du remplissage sur la qualité des surfaces verticales. Désactiver ce paramètre diminue la quantité de matière utilisée." -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Limitée" +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Relier les polygones de remplissage" -msgctxt "line_width label" -msgid "Line Width" -msgstr "Largeur de ligne" +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "Relier les voies de remplissage lorsqu'elles sont côte à côte. Pour les motifs de remplissage composés de plusieurs polygones fermés, ce paramètre permet de réduire considérablement le temps de parcours." -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Lignes" +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Sens de ligne de remplissage" -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Lignes" +msgctxt "infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." +msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que les angles traditionnels par défaut seront utilisés (45 et 135 degrés pour les motifs en lignes et en zig zag et 45 degrés pour tout autre motif)." -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Lignes" +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "Remplissage Décalage X" -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Lignes" +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "Le motif de remplissage est décalé de cette distance sur l'axe X." -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Lignes" +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Remplissage Décalage Y" -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Lignes" +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "Le motif de remplissage est décalé de cette distance sur l'axe Y." -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Lignes" +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Randomiser le démarrage du remplissage" -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Lignes" +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "Randomisez la ligne de remplissage qui est imprimée en premier. Cela empêche un segment de devenir plus fort, mais cela se fait au prix d'un déplacement supplémentaire." -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "Multiplicateur de ligne de remplissage" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Machine" +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "Convertir chaque ligne de remplissage en ce nombre de lignes. Les lignes supplémentaires ne se croisent pas entre elles, mais s'évitent mutuellement. Cela rend le remplissage plus rigide, mais augmente le temps d'impression et la quantité de matériau utilisé." -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Profondeur de la machine" +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Nombre de parois de remplissage supplémentaire" -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Polygone de la tête de la machine et du ventilateur" +msgctxt "infill_wall_line_count description" +msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "Ajoutez des parois supplémentaires autour de la zone de remplissage. De telles parois peuvent réduire l'affaissement des lignes de couche extérieure supérieure / inférieure, réduisant le nombre de couches extérieures supérieures / inférieures nécessaires pour obtenir la même qualité, au prix d'un peu de matériau supplémentaire." +"Configurée correctement, cette fonctionnalité peut être combinée avec « Relier les polygones de remplissage » pour relier tous les remplissages en un seul mouvement d'extrusion sans avoir besoin de déplacements ou de rétractions." -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Hauteur de la machine" +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Coque de la subdivision cubique" -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Type de machine" +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "Une addition au rayon à partir du centre de chaque cube pour vérifier la bordure du modèle, afin de décider si ce cube doit être subdivisé. Des valeurs plus importantes entraînent une coque plus épaisse de petits cubes à proximité de la bordure du modèle." -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Largeur de la machine" +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "Pourcentage de chevauchement du remplissage" -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Paramètres spécifiques de la machine" +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Le degré de chevauchement entre le remplissage et les parois exprimé en pourcentage de la largeur de ligne de remplissage. Un chevauchement faible permet aux parois de se connecter fermement au remplissage." -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Rendre le porte-à-faux imprimable" +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Chevauchement du remplissage" -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "Faire de sorte que les maillages qui se touchent se chevauchent légèrement. Cela permet aux maillages de mieux adhérer les uns aux autres." +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Le degré de chevauchement entre le remplissage et les parois. Un léger chevauchement permet de lier fermement les parois au remplissage." -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "Rendre les aires de support plus petites en bas qu'au niveau du porte-à-faux à supporter." +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "Distance de remplissage" -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "Inclure du support à tout emplacement sous le maillage de support, de sorte à ce qu'il n'y ait pas de porte-à-faux dans le maillage de support." +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "Distance de déplacement à insérer après chaque ligne de remplissage, pour s'assurer que le remplissage collera mieux aux parois externes. Cette option est similaire au chevauchement du remplissage, mais sans extrusion et seulement à l'une des deux extrémités de la ligne de remplissage." -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "Rendre la position d'amorçage de l'extrudeuse absolue plutôt que relative à la dernière position connue de la tête." +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Épaisseur de la couche de remplissage" -msgctxt "layer_0_z_overlap description" -msgid "" -"Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" -"It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" -msgstr "" +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "L'épaisseur par couche de matériau de remplissage. Cette valeur doit toujours être un multiple de la hauteur de la couche et arrondie." -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Rendez les mailles plus adaptées à l'impression 3D." +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Étapes de remplissage progressif" -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "Nombre de fois pour réduire la densité de remplissage de moitié en poursuivant sous les surfaces du dessus. Les zones qui sont plus proches des surfaces du dessus possèdent une densité plus élevée, jusqu'à la Densité du remplissage." -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Hauteur de l'étape de remplissage progressif" -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volumétrique)" +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "La hauteur de remplissage d'une densité donnée avant de passer à la moitié de la densité." -msgctxt "material description" -msgid "Material" -msgstr "Matériau" +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Imprimer le remplissage avant les parois" -msgctxt "material label" -msgid "Material" -msgstr "Matériau" +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "Imprime le remplissage avant d'imprimer les parois. Imprimer les parois d'abord permet d'obtenir des parois plus précises, mais les porte-à-faux s'impriment plus mal. Imprimer le remplissage d'abord entraîne des parois plus résistantes, mais le motif de remplissage se verra parfois à travers la surface." + +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Zone de remplissage minimum" -msgctxt "material_brand label" -msgid "Material Brand" -msgstr "" +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "Ne pas générer de zones de remplissage plus petites que cela (utiliser plutôt une couche extérieure)" -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "GUID matériau" +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Support de remplissage" -msgctxt "material_type label" -msgid "Material Type" -msgstr "" +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "Imprimer les structures de remplissage uniquement là où le haut du modèle doit être supporté, ce qui permet de réduire le temps d'impression et l'utilisation de matériau, mais conduit à une résistance uniforme de l'objet." -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Volume de matériau entre les essuyages" +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Angle de porte-à-faux de remplissage" -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Distance de détour max. sans rétraction" +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "Angle minimal des porte-à-faux internes pour lesquels le remplissage est ajouté. À une valeur de 0°, les objets sont totalement remplis, 90° ne fournira aucun remplissage." -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Accélération maximale X" +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Épaisseur de soutien des bords de la couche" -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Accélération maximale Y" +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "L'épaisseur du remplissage supplémentaire qui soutient les bords de la couche." -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Accélération maximale Z" +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Couches de soutien des bords de la couche extérieure" -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "Angle maximal des branches" +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "Le nombre de couches de remplissage qui soutient les bords de la couche." -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Écart maximum" +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Angle de support du remplissage éclair" -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Écart maximal de la surface d'extrusion" +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Détermine quand une couche de remplissage éclair doit soutenir tout ce qui se trouve au-dessus. Mesuré dans l'angle au vu de l'épaisseur d'une couche." -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Vitesse maximale du ventilateur" +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Angle de saillie du remplissage éclair" -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Accélération maximale du filament" +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Détermine quand une couche de remplissage éclair doit soutenir le modèle au-dessus. Mesuré dans l'angle au vu de l'épaisseur." -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Angle maximal du modèle" +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Angle d'élagage du remplissage éclair" -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Surface maximale du trou en porte-à-faux" +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "Les extrémités des lignes de remplissage sont raccourcies pour économiser du matériau. Ce paramètre est l'angle de saillie des extrémités de ces lignes." -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Durée maximum du stationnement" +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Angle de redressement du remplissage éclair" -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Résolution maximum" +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "Les lignes de remplissage sont redressées pour gagner du temps d'impression. Il s'agit de l'angle maximal de saillie autorisé sur la longueur de la ligne de remplissage." -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Nombre maximal de rétractions" +msgctxt "material label" +msgid "Material" +msgstr "Matériau" -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Angle maximum de la couche extérieure pour l'expansion" +msgctxt "material description" +msgid "Material" +msgstr "Matériau" -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Vitesse maximale E" +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Température d’impression par défaut" -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Vitesse maximale X" +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "La température par défaut utilisée pour l'impression. Il doit s'agir de la température de « base » d'un matériau. Toutes les autres températures d'impression doivent utiliser des décalages basés sur cette valeur" -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Vitesse maximale Y" +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Température du volume d'impression" -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Vitesse maximale Z" +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "La température de l'environnement d'impression. Si cette valeur est 0, la température du volume d'impression ne sera pas ajustée." -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Diamètre maximal supporté par la tour" +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Température d’impression" -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Résolution de déplacement maximum" +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "Température utilisée pour l'impression." -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "Accélération maximale pour le moteur du sens X" +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Température d’impression couche initiale" -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Accélération maximale pour le moteur du sens Y." +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer." +msgstr "La température utilisée pour l'impression de la première couche." -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Accélération maximale pour le moteur du sens Z." +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Température d’impression initiale" -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "Accélération maximale pour le moteur du filament." +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "La température minimale pendant le chauffage jusqu'à la température d'impression à laquelle l'impression peut démarrer." -msgctxt "bridge_sparse_infill_max_density description" -msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." -msgstr "Densité maximale du remplissage considéré comme étant mince. La couche sur le remplissage mince est considérée comme non soutenue et peut donc être traitée comme une couche du pont." +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Température d’impression finale" -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "Le diamètre maximal sur les axes X/Y d’une petite zone qui doit être soutenue par une tour de soutien spéciale." +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "La température à laquelle le refroidissement commence juste avant la fin de l'impression." -msgctxt "max_extrusion_before_wipe description" -msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." -msgstr "Le volume maximum de matériau qui peut être extrudé avant qu'un autre essuyage de buse ne soit lancé. Si cette valeur est inférieure au volume de matériau nécessaire dans une couche, le paramètre n'a aucun effet dans cette couche, c'est-à-dire qu'il est limité à un essuyage par couche." +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Modificateur de vitesse de refroidissement de l'extrusion" -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Chevauchement des mailles fusionnées" +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "La vitesse supplémentaire à laquelle la buse refroidit pendant l'extrusion. La même valeur est utilisée pour indiquer la perte de vitesse de chauffage pendant l'extrusion." -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Corrections" +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Température du plateau par défaut" -msgctxt "mesh_position_x label" -msgid "Mesh Position X" -msgstr "Position X de la maille" +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "Température par défaut utilisée pour le plateau chauffant. Il doit s'agir de la température de « base » d'un plateau. Toutes les autres températures d'impression sont définies en fonction de cette valeur" -msgctxt "mesh_position_y label" -msgid "Mesh Position Y" -msgstr "Position Y de la maille" +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Température du plateau" -msgctxt "mesh_position_z label" -msgid "Mesh Position Z" -msgstr "Position Z de la maille" +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "Température utilisée pour le plateau de fabrication chauffé. Si elle est définie sur 0, le plateau de fabrication ne sera pas chauffé." -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Rang de traitement du maillage" +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Température du plateau couche initiale" -msgctxt "mesh_rotation_matrix label" -msgid "Mesh Rotation Matrix" -msgstr "Matrice de rotation de la maille" +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "Température utilisée pour le plateau de fabrication chauffé à la première couche. Si elle est définie sur 0, le plateau de fabrication ne sera pas chauffé lors de la première couche." -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Milieu" +msgctxt "material_adhesion_tendency label" +msgid "Adhesion Tendency" +msgstr "Tendance à l'adhérence" -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Largeur minimale de moule" +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "Tendance à l'adhérence de la surface." -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Durée minimale température de veille" +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Énergie de la surface" -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Longueur minimale de la paroi du pont" +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Énergie de la surface." -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Largeur minimale de la ligne de paroi uniforme" +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Mise à l'échelle du facteur de compensation de contraction" -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Intervalle de distance minimale d'extrusion" +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "Pour compenser la contraction du matériau lors de son refroidissement, le modèle est mis à l'échelle avec ce facteur." -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Taille minimale des entités" +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Compensation du rétrécissement du facteur d'échelle horizontale" -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Taux d'alimentation minimal" +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "Pour compenser le rétrécissement du matériau lors du refroidissement, le modèle sera mis à l'échelle avec ce facteur dans la direction XY (horizontalement)." -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "Hauteur minimale par rapport au modèle" +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Compensation du rétrécissement du facteur d'échelle verticale" -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Zone de remplissage minimum" +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "Pour compenser le rétrécissement du matériau lors du refroidissement, le modèle sera mis à l'échelle avec ce facteur dans la direction Z (verticalement)." -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Durée minimale d’une couche" +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Matériau cristallin" -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Largeur minimale de la ligne de paroi impaire" +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "Ce matériau se casse-t-il proprement lorsqu'il est chauffé (cristallin) ou est-ce le type qui produit de longues chaînes polymères entrelacées (non cristallines) ?" -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Circonférence minimale du polygone" +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Position anti-suintage rétractée" -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Largeur minimum de la couche extérieure pour l'expansion" +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "Jusqu'où le matériau doit être rétracté avant qu'il cesse de suinter." -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Vitesse minimale" +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Vitesse de rétraction de l'anti-suintage" -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Surface minimale de support" +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "À quelle vitesse le matériau doit-il être rétracté lors d'un changement de filament pour empêcher le suintage." -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Surface minimale du bas de support" +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Préparation de rupture Position rétractée" -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Surface minimale de l'interface de support" +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "Jusqu'où le filament peut être étiré avant qu'il ne se casse, pendant qu'il est chauffé." -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Surface minimale du plafond de support" +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Vitesse de rétraction de préparation de rupture" -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Distance X/Y minimale des supports" +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "La vitesse à laquelle le filament doit être rétracté juste avant de le briser dans une rétraction." -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Largeur minimale de la ligne de paroi fine" +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Température de préparation de rupture" -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Volume minimal avant roue libre" +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "La température utilisée pour purger le matériau devrait être à peu près égale à la température d'impression la plus élevée possible." -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Largeur minimale de la ligne de paroi" +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Position rétractée de rupture" -msgctxt "minimum_interface_area description" -msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Taille minimale de la surface des polygones d'interface de support. Les polygones dont la surface est inférieure à cette valeur ne seront pas imprimés comme support normal." +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "Jusqu'où rétracter le filament afin de le casser proprement." -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "Taille minimale de la surface des polygones de support : les polygones dont la surface est inférieure à cette valeur ne seront pas générés." +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Vitesse de rétraction de rupture" -msgctxt "minimum_bottom_area description" -msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Taille minimale de la surface des bas du support. Les polygones dont la surface est inférieure à cette valeur ne seront pas imprimés comme support normal." +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "La vitesse à laquelle rétracter le filament afin de le rompre proprement." -msgctxt "minimum_roof_area description" -msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Taille minimale de la surface des plafonds du support. Les polygones dont la surface est inférieure à cette valeur ne seront pas imprimés comme support normal." +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Température de rupture" -msgctxt "min_feature_size description" -msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." -msgstr "Épaisseur minimale des entités fines. Les entités de modèle qui sont plus fines que cette valeur ne seront pas imprimées, tandis que les entités plus épaisses que la taille d'entité minimale seront élargies à la largeur minimale de la ligne de paroi." +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "La température à laquelle le filament est cassé pour une rupture propre." -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "Largeur minimale à laquelle la base du support conique est réduite. Des largeurs étroites peuvent entraîner des supports instables." +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Vitesse de purge d'insertion" -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Moule" +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "La vitesse d'amorçage du matériau après le passage à un autre matériau." -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Angle du moule" +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Longueur de la purge d'insertion" -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Hauteur du plafond de moule" +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "La quantité de matériau à utiliser pour purger le matériau précédent de la buse (en longueur de filament) lors du passage à un autre matériau." -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Ordre d'étirage monotone" +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Vitesse de purge de l'extrémité du filament" -msgctxt "raft_surface_monotonic label" -msgid "Monotonic Raft Top Surface Order" -msgstr "" +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "La vitesse d'amorçage du matériau après le remplacement d'une bobine vide par une nouvelle bobine du même matériau." -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Ordre monotone de la surface supérieure" +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Longueur de purge de l'extrémité du filament" -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Ordre monotone dessus / dessous" +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "La quantité de matériau à utiliser pour purger le matériau précédent de la buse (en longueur de filament) lors du remplacement d'une bobine vide par une nouvelle bobine du même matériau." -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "Une jupe à plusieurs lignes vous aide à mieux préparer votre extrusion pour les petits modèles. Définissez celle valeur sur 0 pour désactiver la jupe." +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Durée maximum du stationnement" -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "Multiplicateur de la largeur de la ligne sur la première couche. Augmenter le multiplicateur peut améliorer l'adhésion au plateau." +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "La durée pendant laquelle le matériau peut être conservé à l'abri de la sécheresse." msgctxt "material_no_load_move_factor label" msgid "No Load Move Factor" msgstr "Facteur de déplacement sans chargement" -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Aucune couche dans les trous en Z" - -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Des moyens non traditionnels d'imprimer vos modèles." - -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Aucun" +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "Un facteur indiquant la quantité de filament compressée entre le chargeur et la chambre de la buse ; utilisé pour déterminer jusqu'où faire avancer le matériau pour changer de filament." -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Aucun" +msgctxt "material_flow label" +msgid "Flow" +msgstr "Débit" -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normal" +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "Compensation du débit : la quantité de matériau extrudée est multipliée par cette valeur." -msgctxt "prime_tower_mode option normal" -msgid "Normal" -msgstr "" +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Débit de paroi" -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Normal" +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Compensation de débit sur les lignes de la paroi." -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "Normalement, Cura essaye de raccommoder les petits trous dans le maillage et supprime les parties des couches contenant de gros trous. Activer cette option pousse Cura à garder les parties qui ne peuvent être raccommodées. Cette option doit être utilisée en dernier recours quand tout le reste échoue à produire un G-Code correct." +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Débit de paroi externe" -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Pas dans la couche extérieure" +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "Compensation de débit sur la ligne de la paroi la plus à l'extérieur." -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "Pas sur la surface extérieure" +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Débit de paroi(s) interne(s)" -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Angle de la buse" +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "Compensation de débit sur les lignes de la paroi pour toutes les lignes de paroi, à l'exception de la ligne la plus externe." -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diamètre de la buse" +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Débit de la paroi externe de la surface supérieure" -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Zones interdites au bec d'impression" +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Compensation de flux sur la ligne de paroi la plus externe de la surface supérieure." -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ID buse" +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Débit des parois internes de la surface supérieure" -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Longueur de la buse" +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Compensation du flux sur les lignes de paroi de la surface supérieure pour toutes les lignes de paroi sauf la plus externe." -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Montant de l'amorce supplémentaire lors d'un changement de buse" +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Débit du dessus/dessous" -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Vitesse d'amorçage de changement de buse" +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Compensation de débit sur les lignes du dessus/dessous." -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Vitesse de rétraction de changement de buse" +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Débit de la surface du dessus" -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Distance de rétraction de changement de buse" +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "Compensation de débit sur les lignes des zones en haut de l'impression." -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Vitesse de rétraction de changement de buse" +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Débit de remplissage" -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Nombre d'extrudeuses" +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Compensation de débit sur les lignes de remplissage." -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Nombre d'extrudeuses activées" +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Débit de la jupe/bordure" -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Nombre de couches plus lentes" +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Compensation de débit sur les lignes de jupe ou bordure." -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "Nombre de trains d'extrusion activés ; automatiquement défini dans le logiciel" +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Débit du support" -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "Nombre de trains d'extrudeuse. Un train d'extrudeuse est la combinaison d'un chargeur, d'un tube bowden et d'une buse." +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Compensation de débit sur les lignes de support." -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "Le nombre de déplacements de la buse à travers la brosse." +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Débit de l'interface de support" -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "Nombre de fois pour réduire la densité de remplissage de moitié en poursuivant sous les surfaces du dessus. Les zones qui sont plus proches des surfaces du dessus possèdent une densité plus élevée, jusqu'à la Densité du remplissage." +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "Compensation de débit sur les lignes de plafond ou de bas de support." -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "Nombre de fois pour réduire la densité de remplissage du support de moitié en poursuivant sous les surfaces du dessus. Les zones qui sont plus proches des surfaces du dessus possèdent une densité plus élevée, jusqu'à la Densité de remplissage du support." +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Débit du plafond de support" -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Octaédrique" +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Compensation de débit sur les lignes du plafond de support." -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Désactivé" +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Débit du bas de support" -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "Offset appliqué à l'objet dans la direction X." +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Compensation de débit sur les lignes de bas de support." -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "Offset appliqué à l'objet dans la direction Y." +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Débit de la tour d'amorçage" -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "Décalage appliqué à l'objet dans le sens z. Cela vous permet d'exécuter ce que l'on appelait « Affaissement de l'objet »." +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Compensation de débit sur les lignes de la tour d'amorçage." -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Décalage avec extrudeuse" +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Débit de la couche initiale" -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "Sur le plateau si possible" +msgctxt "material_flow_layer_0 description" +msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." +msgstr "Compensation du débit pour la couche initiale : la quantité de matériau extrudée sur la couche initiale est multipliée par cette valeur." -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "Sur le modèle si nécessaire" +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "Débit de la paroi intérieure de la couche initiale" -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "Un à la fois" +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "Compensation de débit sur les lignes de paroi pour toutes les lignes de paroi, à l'exception de la ligne la plus plus externe, mais uniquement pour la première couche" -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "Appliquer un décalage en Z uniquement lors du mouvement au-dessus de pièces imprimées qui ne peuvent être évitées par le mouvement horizontal, via Éviter les pièces imprimées lors du déplacement." +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "Débit de la paroi extérieure de la couche initiale" -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "N'exécute un étirage que sur l'ultime couche du maillage. Ceci économise du temps si les couches inférieures ne nécessitent pas de fini lisse de surface." +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "Compensation de débit sur la ligne de paroi la plus externe de la première couche." -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Angle du bouclier de suintage" +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "Débit inférieur de la couche initiale" -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Distance du bouclier de suintage" +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "Compensation de débit sur les lignes inférieures de la première couche" -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "Portée optimale des branches" +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Température de veille" -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Optimiser l'ordre d'impression des parois" +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "La température de la buse lorsqu'une autre buse est actuellement utilisée pour l'impression." -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "Optimiser l'ordre dans lequel des parois sont imprimées de manière à réduire le nombre de retraits et les distances parcourues. La plupart des pièces bénéficieront de cette possibilité, mais certaines peuvent en fait prendre plus de temps à l'impression ; veuillez dès lors comparer les estimations de durée d'impression avec et sans optimisation. La première couche n'est pas optimisée lorsque le type d'adhérence au plateau est défini sur bordure." +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "Matériau de support" -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Diamètre extérieur de la buse" +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "Ce paramètre permet-il d'indiquer si un matériau est généralement utilisé comme matériau de support pendant l'impression." -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Accélération de la paroi externe" +msgctxt "speed label" +msgid "Speed" +msgstr "Vitesse" -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Extrudeuse de paroi externe" +msgctxt "speed description" +msgid "Speed" +msgstr "Vitesse" -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Débit de paroi externe" +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Vitesse d’impression" -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Insert de paroi externe" +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "La vitesse à laquelle l'impression s'effectue." -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "Saccade de paroi externe" +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Vitesse de remplissage" -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Largeur de ligne de la paroi externe" +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "La vitesse à laquelle le remplissage est imprimé." + +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Vitesse d'impression de la paroi" + +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "La vitesse à laquelle les parois sont imprimées." msgctxt "speed_wall_0 label" msgid "Outer Wall Speed" msgstr "Vitesse d'impression de la paroi externe" -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Distance d'essuyage paroi extérieure" - -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Les parois extérieures de différentes îles de la même couche sont imprimées séquentiellement. Lorsque ce paramètre est activé, le nombre de changements de débit est limité car les parois sont imprimées une par une ; lorsqu'il est désactivé, le nombre de déplacements entre les îles est réduit car les parois des mêmes îles sont regroupées." - -msgctxt "brim_location option outside" -msgid "Outside Only" -msgstr "" +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "La vitesse à laquelle les parois externes sont imprimées. L’impression de la paroi externe à une vitesse inférieure améliore la qualité finale de la coque. Néanmoins, si la différence entre la vitesse de la paroi interne et la vitesse de la paroi externe est importante, la qualité finale sera réduite." -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "De l'extérieur vers l'intérieur" +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Vitesse d'impression de la paroi interne" -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Angle de parois en porte-à-faux" +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "La vitesse à laquelle toutes les parois internes seront imprimées. L’impression de la paroi interne à une vitesse supérieure réduira le temps d'impression global. Il est bon de définir cette vitesse entre celle de l'impression de la paroi externe et du remplissage." -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Vitesse de paroi en porte-à-faux" +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Vitesse d'impression de la paroi externe de la surface supérieure" -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "Les parois en porte-à-faux seront imprimées à ce pourcentage de leur vitesse d'impression normale." +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "La vitesse à laquelle la paroi externe de la surface supérieure est imprimée." -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Pause après l'irrétraction." +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Vitesse d'impression des parois internes de la surface supérieure" -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "Vitesse du ventilateur en pourcentage à utiliser pour l'impression des parois et de la couche extérieure du pont." +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "La vitesse à laquelle les parois internes de la surface supérieure sont imprimées." -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "Vitesse du ventilateur en pourcentage à utiliser pour l'impression de la deuxième couche extérieure du pont." +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Vitesse de la couche extérieure de la surface supérieure" -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "Pourcentage de la vitesse du ventilateur à utiliser lors de l'impression des zones de couche extérieure situées immédiatement au-dessus du support. Une vitesse de ventilateur élevée facilite le retrait du support." +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "La vitesse à laquelle les couches extérieures de la surface supérieure sont imprimées." -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "Vitesse du ventilateur en pourcentage à utiliser pour l'impression de la troisième couche extérieure du pont." +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Vitesse d'impression du dessus/dessous" -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "Les polygones en couches tranchées dont la circonférence est inférieure à cette valeur seront filtrés. Des valeurs élevées permettent d'obtenir un maillage de meilleure résolution mais augmentent le temps de découpe. Cette option est principalement destinée aux imprimantes SLA haute résolution et aux modèles 3D de très petite taille avec beaucoup de détails." +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "La vitesse à laquelle les couches du dessus/dessous sont imprimées." -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "Angle des branches souhaité" +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Vitesse d'impression des supports" -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "Empêchez la transition d'avant en arrière entre une paroi supplémentaire et une paroi en moins. Cette marge étend la gamme des largeurs de ligne qui suivent à [Largeur minimale de la ligne de paroi - marge, 2 * Largeur minimale de la ligne de paroi + marge]. L'augmentation de cette marge réduit le nombre de transitions, ce qui réduit le nombre de démarrages/arrêts d'extrusion et le temps de trajet. Cependant, une grande variation de la largeur de la ligne peut entraîner des problèmes de sous-extrusion ou de sur-extrusion." +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "La vitesse à laquelle les supports sont imprimés. Imprimer les supports à une vitesse supérieure peut fortement accélérer l’impression. Par ailleurs, la qualité de la structure des supports n’a généralement pas beaucoup d’importance du fait qu'elle est retirée après l'impression." -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Accélération de la tour d'amorçage" +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Vitesse d'impression du remplissage de support" -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Base" -msgstr "Base de la tour d'amorçage" +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "La vitesse à laquelle le remplissage de support est imprimé. L'impression du remplissage à une vitesse plus faible permet de renforcer la stabilité." -msgctxt "prime_tower_base_height label" -msgid "Prime Tower Base Height" -msgstr "Hauteur de la base de la tour d'amorçage" +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Vitesse d'impression de l'interface de support" -msgctxt "prime_tower_base_size label" -msgid "Prime Tower Base Size" -msgstr "Taille de la base de la tour d'amorçage" +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "La vitesse à laquelle les plafonds et bas de support sont imprimés. Les imprimer à de plus faibles vitesses améliore la qualité des porte-à-faux." -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Slope" -msgstr "Pente de la base de la tour d'amorçage" +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Vitesse d'impression des plafonds de support" -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Débit de la tour d'amorçage" +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "La vitesse à laquelle les plafonds de support sont imprimés. Les imprimer à de plus faibles vitesses améliore la qualité des porte-à-faux." -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "Saccade de la tour d'amorçage" +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Vitesse d'impression des bas de support" -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Largeur de ligne de la tour d'amorçage" +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "La vitesse à laquelle le bas de support est imprimé. L'impression à une vitesse plus faible permet de renforcer l'adhésion du support au-dessus de votre modèle." -msgctxt "prime_tower_max_bridging_distance label" -msgid "Prime Tower Maximum Bridging Distance" -msgstr "" +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Vitesse de la tour d'amorçage" -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Volume minimum de la tour d'amorçage" +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "La vitesse à laquelle la tour d'amorçage est imprimée. L'impression plus lente de la tour d'amorçage peut la rendre plus stable lorsque l'adhérence entre les différents filaments est sous-optimale." -msgctxt "prime_tower_raft_base_line_spacing label" -msgid "Prime Tower Raft Line Spacing" -msgstr "Espacement des lignes de radeau de la tour d'amorçage" +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Vitesse de déplacement" -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Taille de la tour d'amorçage" +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "La vitesse à laquelle les déplacements s'effectuent." -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Vitesse de la tour d'amorçage" +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Vitesse de la couche initiale" -msgctxt "prime_tower_mode label" -msgid "Prime Tower Type" -msgstr "" +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "La vitesse de la couche initiale. Une valeur plus faible est recommandée pour améliorer l'adhérence au plateau de fabrication. N'affecte pas les structures d'adhérence au plateau, comme la bordure et le radeau." -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "Position X de la tour d'amorçage" +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Vitesse d’impression de la couche initiale" -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Position Y de la tour d'amorçage" +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "La vitesse d'impression de la couche initiale. Une valeur plus faible est recommandée pour améliorer l'adhérence au plateau." -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Accélération de l'impression" +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Vitesse de déplacement de la couche initiale" -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Imprimer en saccade" +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "Vitesse des mouvements de déplacement dans la couche initiale. Une valeur plus faible est recommandée pour éviter que les pièces déjà imprimées ne s'écartent du plateau. La valeur de ce paramètre peut être calculée automatiquement à partir du ratio entre la vitesse des mouvements et la vitesse d'impression." -msgctxt "ppr label" -msgid "Print Process Reporting" -msgstr "" +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Vitesse d'impression de la jupe/bordure" -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Séquence d'impression" +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "La vitesse à laquelle la jupe et la bordure sont imprimées. Normalement, cette vitesse est celle de la couche initiale, mais il est parfois nécessaire d’imprimer la jupe ou la bordure à une vitesse différente." -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Vitesse d’impression" +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Vitesse du décalage en Z" -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Imprimer parois fines" +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "La vitesse à laquelle le mouvement vertical en Z est effectué pour des décalages en Z. Cette vitesse est généralement inférieure à la vitesse d'impression car le plateau ou le portique de la machine est plus difficile à déplacer." -msgctxt "brim_location description" -msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." -msgstr "" +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Nombre de couches plus lentes" -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "Imprimer une tour à côté de l'impression qui sert à amorcer le matériau après chaque changement de buse." +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "Les premières couches sont imprimées plus lentement que le reste du modèle afin d’obtenir une meilleure adhérence au plateau et d’améliorer le taux de réussite global des impressions. La vitesse augmente graduellement à chacune de ces couches." -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "Imprimer les structures de remplissage uniquement là où le haut du modèle doit être supporté, ce qui permet de réduire le temps d'impression et l'utilisation de matériau, mais conduit à une résistance uniforme de l'objet." +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Rapport d'égalisation des débits" -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprimez les lignes d'étirage dans un ordre tel qu'elles se chevauchent toujours avec les lignes adjacentes dans une seule direction. Cela prend un peu plus de temps à imprimer, mais les surfaces planes ont l'air plus cohérentes." +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "Facteur de correction de la largeur d'extrusion en fonction de la vitesse. À 0 %, la vitesse de mouvement reste constante à la vitesse d'impression. À 100 %, la vitesse de mouvement est ajustée de sorte que le débit (en mm³/s) reste constant, c'est-à-dire que les lignes à la moitié de la largeur de ligne normale sont imprimées deux fois plus vite et que les lignes à la moitié de la largeur sont imprimées aussi vite. Une valeur supérieure à 100 % peut aider à compenser la pression plus élevée requise pour extruder les lignes larges." -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "Imprimer les modèles comme moule, qui peut être coulé afin d'obtenir un modèle ressemblant à ceux présents sur le plateau." +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Activer le contrôle d'accélération" -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "Imprimer les parties du modèle qui sont horizontalement plus fines que la taille de la buse." +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "Active le réglage de l'accélération de la tête d'impression. Augmenter les accélérations peut réduire la durée d'impression au détriment de la qualité d'impression." -msgctxt "raft_surface_monotonic description" -msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." -msgstr "" +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Activer l'accélération des déplacements" -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "Vitesse d'impression à utiliser lors de l'impression de la deuxième couche extérieure du pont." +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "Utilisez un taux d'accélération distinct pour les déplacements. Si cette option est désactivée, les déplacements utiliseront la même accélération que celle de la ligne imprimée à l'emplacement cible." -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "Vitesse d'impression à utiliser lors de l'impression de la troisième couche extérieure du pont." +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Accélération de l'impression" -msgctxt "print_temp_anomaly_limit label" -msgid "Print temperature Limit" -msgstr "" +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "L'accélération selon laquelle l'impression s'effectue." -msgctxt "print_temp_warn_limit label" -msgid "Print temperature Warning" -msgstr "" +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Accélération de remplissage" -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "Imprime le remplissage avant d'imprimer les parois. Imprimer les parois d'abord permet d'obtenir des parois plus précises, mais les porte-à-faux s'impriment plus mal. Imprimer le remplissage d'abord entraîne des parois plus résistantes, mais le motif de remplissage se verra parfois à travers la surface." +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "L'accélération selon laquelle le remplissage est imprimé." -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprimez les lignes de la surface supérieure dans un ordre tel qu'elles se chevauchent toujours avec les lignes adjacentes dans une seule direction. Cela prend un peu plus de temps à imprimer, mais les surfaces planes ont l'air plus cohérentes." +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Accélération de la paroi" -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprimez les lignes supérieures et inférieures dans un ordre tel qu'elles se chevauchent toujours avec les lignes adjacentes dans une seule direction. Cela prend un peu plus de temps à imprimer, mais les surfaces planes ont l'air plus cohérentes." +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "L'accélération selon laquelle les parois sont imprimées." -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Température d’impression" +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Accélération de la paroi externe" -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Température d’impression couche initiale" +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "L'accélération selon laquelle les parois externes sont imprimées." -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "La jupe est plus facile à retirer lorsque sa ligne la plus intérieure est imprimée en plusieurs couches." +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Accélération de la paroi intérieure" -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "Imprime une paroi supplémentaire une couche sur deux. Ainsi, le remplissage est pris entre ces parois supplémentaires pour créer des impressions plus solides." +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "L'accélération selon laquelle toutes les parois intérieures sont imprimées." -msgctxt "resolution label" -msgid "Quality" -msgstr "Qualité" +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Accélération de la paroi externe de la surface supérieure" -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Quart cubique" +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "L'accélération avec laquelle la paroi externe de la surface supérieure est imprimée." -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Radeau" +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Accélération des parois internes de la surface supérieure" -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Lame d'air du radeau" +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "L'accélération avec laquelle les parois internes de la surface supérieure sont imprimées." -msgctxt "raft_base_margin label" -msgid "Raft Base Extra Margin" -msgstr "" +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Accélération de couche extérieure de surface supérieure" -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Extrudeur de la base du raft" +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "La vitesse à laquelle les couches extérieures de surface supérieure sont imprimées." -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Vitesse du ventilateur pour la base du radeau" +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Accélération du dessus/dessous" -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Espacement des lignes de base du radeau" +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "L'accélération selon laquelle les couches du dessus/dessous sont imprimées." -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Largeur de la ligne de base du radeau" +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Accélération du support" -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Accélération de l'impression de la base du radeau" +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "L'accélération selon laquelle la structure de support est imprimée." -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Saccade d’impression de la base du radeau" +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Accélération de remplissage du support" -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Vitesse d’impression de la base du radeau" +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "L'accélération selon laquelle le remplissage de support est imprimé." -msgctxt "raft_base_smoothing label" -msgid "Raft Base Smoothing" -msgstr "" +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Accélération de l'interface du support" -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Épaisseur de la base du radeau" +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "L'accélération selon laquelle les plafonds et bas de support sont imprimés. Les imprimer avec une accélération plus faible améliore la qualité des porte-à-faux." -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Nombre de parois à la base du radeau" +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Accélération des plafonds de support" -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Marge supplémentaire du radeau" +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "L'accélération selon laquelle les plafonds de support sont imprimés. Les imprimer avec une accélération plus faible améliore la qualité des porte-à-faux." -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Vitesse du ventilateur pendant le radeau" +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Accélération des bas de support" -msgctxt "raft_interface_margin label" -msgid "Raft Middle Extra Margin" -msgstr "" +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "L'accélération selon laquelle les bas de support sont imprimés. Les imprimer avec une accélération plus faible renforce l'adhésion du support au-dessus du modèle." -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Extrudeur du milieu du radeau" +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Accélération de la tour d'amorçage" -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Vitesse du ventilateur pour le milieu du radeau" +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "L'accélération selon laquelle la tour d'amorçage est imprimée." -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Couches du milieu du radeau" +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Accélération de déplacement" -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Largeur de la ligne intermédiaire du radeau" +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "L'accélération selon laquelle les déplacements s'effectuent." -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Accélération de l'impression du milieu du radeau" +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Accélération de la couche initiale" -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Saccade d’impression du milieu du radeau" +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "L'accélération pour la couche initiale." -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Vitesse d’impression du milieu du radeau" +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Accélération de l'impression de la couche initiale" -msgctxt "raft_interface_smoothing label" -msgid "Raft Middle Smoothing" -msgstr "" +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "L'accélération durant l'impression de la couche initiale." -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Interligne intermédiaire du radeau" +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Accélération de déplacement de la couche initiale" -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Épaisseur intermédiaire du radeau" +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "L'accélération pour les déplacements dans la couche initiale." -msgctxt "raft_interface_wall_count label" -msgid "Raft Middle Wall Count" -msgstr "" +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Accélération de la jupe/bordure" -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Accélération de l'impression du radeau" +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "L'accélération selon laquelle la jupe et la bordure sont imprimées. Normalement, cette accélération est celle de la couche initiale, mais il est parfois nécessaire d’imprimer la jupe ou la bordure à une accélération différente." -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Saccade d’impression du radeau" +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Activer le contrôle de saccade" -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Vitesse d’impression du radeau" +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "Active le réglage de la saccade de la tête d'impression lorsque la vitesse sur l'axe X ou Y change. Augmenter les saccades peut réduire la durée d'impression au détriment de la qualité d'impression." -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Lissage de radeau" +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Activer les saccades de déplacement" -msgctxt "raft_surface_margin label" -msgid "Raft Top Extra Margin" -msgstr "" +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "Utilisez un taux de saccades différent pour les déplacements. Si cette option est désactivée, les déplacements utiliseront les mêmes saccades que celles de la ligne imprimée à l'emplacement cible." -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Extrudeur du haut du radeau" +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Imprimer en saccade" -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Vitesse du ventilateur pour le dessus du radeau" +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "Le changement instantané maximal de vitesse de la tête d'impression." -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Épaisseur de la couche supérieure du radeau" +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Saccade de remplissage" -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Couches supérieures du radeau" +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "Le changement instantané maximal de vitesse selon lequel le remplissage est imprimé." -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Largeur de la ligne supérieure du radeau" +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Saccade de paroi" -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Accélération de l'impression du dessus du radeau" +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel les parois sont imprimées." -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Saccade d’impression du dessus du radeau" +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "Saccade de paroi externe" -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Vitesse d’impression du dessus du radeau" +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel les parois externes sont imprimées." -msgctxt "raft_surface_smoothing label" -msgid "Raft Top Smoothing" -msgstr "" +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Saccade de paroi intérieure" -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Interligne supérieur du radeau" +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel les parois intérieures sont imprimées." -msgctxt "raft_surface_wall_count label" -msgid "Raft Top Wall Count" -msgstr "" +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Saccade de la paroi externe de la surface supérieure" -msgctxt "raft_wall_count label" -msgid "Raft Wall Count" -msgstr "" +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel la paroi extérieure de la surface supérieure est imprimée." -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Aléatoire" +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Saccade des parois internes de la surface supérieure" -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "Randomiser le démarrage du remplissage" +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel les parois intérieures de la surface supérieure sont imprimées." -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "Randomisez la ligne de remplissage qui est imprimée en premier. Cela empêche un segment de devenir plus fort, mais cela se fait au prix d'un déplacement supplémentaire." +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Saccade de couches extérieures de la surface supérieure" -msgctxt "magic_fuzzy_skin_enabled description" -msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." -msgstr "Produit une agitation aléatoire lors de l'impression de la paroi extérieure, ce qui lui donne une apparence rugueuse et floue." +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel les couches extérieures de surface supérieure sont imprimées." -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Rectangulaire" +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Saccade du dessus/dessous" -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "Vitesse régulière du ventilateur" +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel les couches du dessus/dessous sont imprimées." -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Vitesse régulière du ventilateur à la hauteur" +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Saccade des supports" -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Vitesse régulière du ventilateur à la couche" +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "Le changement instantané maximal de vitesse selon lequel la structure de support est imprimée." -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "Limite de vitesse régulière/maximale du ventilateur" +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Saccade de remplissage du support" -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Extrusion relative" +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "Le changement instantané maximal de vitesse selon lequel le remplissage de support est imprimé." -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Supprimer tous les trous" +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Saccade de l'interface de support" -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Supprimer les premières couches vides" +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel les plafonds et bas sont imprimés." -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Supprimer l'intersection des mailles" +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Saccade des plafonds de support" -msgctxt "raft_base_remove_inside_corners label" -msgid "Remove Raft Base Inside Corners" -msgstr "" +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel les plafonds de support sont imprimés." -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Supprimer les coins intérieurs du radeau" +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Saccade des bas de support" -msgctxt "raft_interface_remove_inside_corners label" -msgid "Remove Raft Middle Inside Corners" -msgstr "" +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel les bas de support sont imprimés." -msgctxt "raft_surface_remove_inside_corners label" -msgid "Remove Raft Top Inside Corners" -msgstr "" +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "Saccade de la tour d'amorçage" -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "Supprime les zones sur lesquelles plusieurs mailles se chevauchent. Cette option peut être utilisée si des objets à matériau double fusionné se chevauchent." +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "Le changement instantané maximal de vitesse selon lequel la tour d'amorçage est imprimée." -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "Supprimer les couches vides sous la première couche imprimée si elles sont présentes. Le fait de désactiver ce paramètre peut entraîner l'apparition de premières couches vides si le paramètre Tolérance à la découpe est défini sur Exclusif ou Milieu." +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Saccade de déplacement" -msgctxt "raft_base_remove_inside_corners description" -msgid "Remove inside corners from the raft base, causing the raft to become convex." -msgstr "" +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "Le changement instantané maximal de vitesse selon lequel les déplacements s'effectuent." -msgctxt "raft_interface_remove_inside_corners description" -msgid "Remove inside corners from the raft middle part, causing the raft to become convex." -msgstr "" +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Saccade de la couche initiale" -msgctxt "raft_surface_remove_inside_corners description" -msgid "Remove inside corners from the raft top part, causing the raft to become convex." -msgstr "" +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "Le changement instantané maximal de vitesse pour la couche initiale." -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Supprimez les coins intérieurs du radeau afin de le rendre convexe." +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Saccade d’impression de la couche initiale" -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "Supprime les trous dans chacune des couches et conserve uniquement la forme extérieure. Tous les détails internes invisibles seront ignorés. Il en va de même pour les trous qui pourraient être visibles depuis le dessus ou le dessous de la pièce." +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "Le changement instantané maximal de vitesse durant l'impression de la couche initiale." -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Saccade de déplacement de la couche initiale" -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "L'accélération pour les déplacements dans la couche initiale." -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "Remplace la partie la plus externe du motif du dessus/dessous par un certain nombre de lignes concentriques. Le fait d'utiliser une ou deux lignes améliore les plafonds qui commencent sur du matériau de remplissage." +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Saccade de la jupe/bordure" -msgctxt "ppr description" -msgid "Reporting events that go out of set thresholds" -msgstr "" +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel la jupe et la bordure sont imprimées." -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "Préférence d'emplacement" +msgctxt "travel label" +msgid "Travel" +msgstr "Déplacement" -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Rétracter avant la paroi externe" +msgctxt "travel description" +msgid "travel" +msgstr "déplacement" -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Rétracter au changement de couche" +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Activer la rétraction" msgctxt "retraction_enable description" msgid "Retract the filament when the nozzle is moving over a non-printed area." msgstr "Rétracte le filament quand la buse se déplace vers une zone non imprimée." -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Rétracte le filament quand la buse se déplace vers une zone non imprimée." +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Rétracter au changement de couche" msgctxt "retract_at_layer_change description" msgid "Retract the filament when the nozzle is moving to the next layer." @@ -3094,2690 +2743,2951 @@ msgctxt "retraction_amount label" msgid "Retraction Distance" msgstr "Distance de rétraction" +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "La longueur de matériau rétracté pendant une rétraction." + +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Vitesse de rétraction" + +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "La vitesse à laquelle le filament est rétracté et préparé pendant une rétraction." + +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Vitesse de rétraction" + +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "La vitesse à laquelle le filament est rétracté pendant une rétraction." + +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Vitesse de rétraction d'amorçage" + +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "La vitesse à laquelle le filament est préparé pendant une rétraction." + msgctxt "retraction_extra_prime_amount label" msgid "Retraction Extra Prime Amount" msgstr "Volume supplémentaire à l'amorçage" +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "Du matériau peut suinter pendant un déplacement, ce qui peut être compensé ici." + msgctxt "retraction_min_travel label" msgid "Retraction Minimum Travel" msgstr "Déplacement minimal de rétraction" -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Vitesse de rétraction d'amorçage" +msgctxt "retraction_min_travel description" +msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." +msgstr "La distance minimale de déplacement nécessaire pour qu’une rétraction ait lieu. Cela permet d’éviter qu’un grand nombre de rétractions ne se produisent sur une petite portion." -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Vitesse de rétraction" +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Nombre maximal de rétractions" -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Vitesse de rétraction" +msgctxt "retraction_count_max description" +msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." +msgstr "Ce paramètre limite le nombre de rétractions dans l'intervalle de distance minimal d'extrusion. Les rétractions qui dépassent cette valeur seront ignorées. Cela évite les rétractions répétitives sur le même morceau de filament, car cela risque de l’aplatir et de générer des problèmes d’écrasement." -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Droite" +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Intervalle de distance minimale d'extrusion" -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "Mise à l'échelle de la vitesse du ventilateur à 0-1" +msgctxt "retraction_extrusion_window description" +msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." +msgstr "L'intervalle dans lequel le nombre maximal de rétractions est incrémenté. Cette valeur doit être du même ordre de grandeur que la distance de rétraction, limitant ainsi le nombre de mouvements de rétraction sur une même portion de matériau." -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "Mettez à l'échelle la vitesse du ventilateur de 0 à 1 au lieu de 0 à 256." +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Mode de détours" -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Mise à l'échelle du facteur de compensation de contraction" +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "Les détours maintiennent la buse dans les zones déjà imprimées lors des déplacements. Cela résulte en des déplacements légèrement plus longs mais réduit le recours aux rétractions. Si les détours sont désactivés, le matériau se rétractera et la buse se déplacera en ligne droite jusqu'au point suivant. Il est également possible d'éviter les détours sur les zones de la couche du dessus / dessous ou d'effectuer les détours uniquement dans le remplissage." -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "La scène comporte un maillage de support" +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Désactivé" -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Préférence de jointure d'angle" +msgctxt "retraction_combing option all" +msgid "All" +msgstr "Tout" -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "Définir la séquence d'impression manuellement" +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Pas sur la surface extérieure" -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "Définit la hauteur du bouclier. Choisissez d'imprimer le bouclier à la pleine hauteur du modèle ou à une hauteur limitée." +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Pas dans la couche extérieure" -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Paramètres utilisés pour imprimer avec plusieurs extrudeuses." +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "À l'intérieur du remplissage" -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "Paramètres qui sont utilisés uniquement si CuraEngine n'est pas invoqué depuis l'interface Cura." +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Distance de détour max. sans rétraction" -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Rétraction initiale de la buse partagée" +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "Lorsque cette distance est supérieure à zéro, les déplacements de détour qui sont plus longs que cette distance utiliseront la rétraction. Si elle est définie sur zéro, il n'y a pas de maximum et les mouvements de détour n'utiliseront pas la rétraction." -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Angle le plus aigu" +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Rétracter avant la paroi externe" -msgctxt "shell description" -msgid "Shell" -msgstr "Coque" +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "Toujours rétracter lors du déplacement pour commencer une paroi externe." -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Plus court" +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Éviter les pièces imprimées lors du déplacement" -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Afficher les variantes de la machine" +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "La buse contourne les pièces déjà imprimées lorsqu'elle se déplace. Cette option est disponible uniquement lorsque les détours sont activés." -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Couches de soutien des bords de la couche extérieure" +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Éviter les supports lors du déplacement" -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Épaisseur de soutien des bords de la couche" +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "La buse contourne les supports déjà imprimés lorsqu'elle se déplace. Cette option est disponible uniquement lorsque les détours sont activés." -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Distance d'expansion de la couche extérieure" +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Distance d'évitement du déplacement" -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Chevauchement de la couche extérieure" +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "La distance entre la buse et les pièces déjà imprimées lors du contournement pendant les déplacements." + +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "X début couche" + +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "Coordonnée X de la position près de laquelle trouver la partie pour démarrer l'impression de chaque couche." + +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Y début couche" + +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "Coordonnée Y de la position près de laquelle trouver la partie pour démarrer l'impression de chaque couche." + +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Décalage en Z lors d’une rétraction" + +msgctxt "retraction_hop_enabled description" +msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "À chaque rétraction, le plateau est abaissé pour créer un espace entre la buse et l'impression. Cela évite que la buse ne touche l'impression pendant les déplacements, réduisant ainsi le risque de heurter l'impression à partir du plateau." + +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Décalage en Z uniquement sur les pièces imprimées" + +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "Appliquer un décalage en Z uniquement lors du mouvement au-dessus de pièces imprimées qui ne peuvent être évitées par le mouvement horizontal, via Éviter les pièces imprimées lors du déplacement." + +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Hauteur du décalage en Z" + +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "La différence de hauteur lors de la réalisation d'un décalage en Z." + +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Décalage en Z après changement d'extrudeuse" + +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "Une fois que la machine est passée d'une extrudeuse à l'autre, le plateau s'abaisse pour créer un dégagement entre la buse et l'impression. Cela évite que la buse ne ressorte avec du matériau suintant sur l'extérieur d'une impression." + +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Décalage en Z après changement de hauteur d'extrudeuse" + +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "La différence de hauteur lors de la réalisation d'un décalage en Z après changement d'extrudeuse." + +msgctxt "cooling label" +msgid "Cooling" +msgstr "Refroidissement" + +msgctxt "cooling description" +msgid "Cooling" +msgstr "Refroidissement" + +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Activer le refroidissement de l'impression" -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Pourcentage de chevauchement de la couche extérieure" +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "Active les ventilateurs de refroidissement de l'impression pendant l'impression. Les ventilateurs améliorent la qualité de l'impression sur les couches présentant des durées de couche courtes et des ponts / porte-à-faux." -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Largeur de retrait de la couche extérieure" +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Vitesse du ventilateur" -msgctxt "min_skin_width_for_expansion description" -msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." -msgstr "Les zones de couche extérieure plus étroites que cette valeur ne seront pas étendues. Cela permet d'éviter d'étendre les zones de couche extérieure étroites qui sont créées lorsque la surface du modèle possède une pente proche de la verticale." +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "La vitesse à laquelle les ventilateurs de refroidissement de l'impression tournent." -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "Ignorer une ligne de connexion sur N pour rendre la structure de support plus facile à casser." +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "Vitesse régulière du ventilateur" -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "Ignorer certaines connexions de ligne du support pour rendre la structure de support plus facile à casser. Ce paramètre s'applique au motif de remplissage du support en zigzag." +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "La vitesse à laquelle les ventilateurs tournent avant d'atteindre la limite. Lorsqu'une couche s'imprime plus rapidement que la limite, la vitesse du ventilateur augmente progressivement jusqu'à atteindre la vitesse maximale." -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Jupe" +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Vitesse maximale du ventilateur" -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Distance de la jupe" +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "La vitesse à laquelle les ventilateurs tournent sur la durée minimale d'une couche. La vitesse du ventilateur augmente progressivement entre la vitesse régulière du ventilateur et la vitesse maximale lorsque la limite est atteinte." -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "Hauteur de la jupe" +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "Limite de vitesse régulière/maximale du ventilateur" -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Nombre de lignes de la jupe" +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "La durée de couche qui définit la limite entre la vitesse régulière et la vitesse maximale du ventilateur. Les couches qui s'impriment moins vite que cette durée utilisent la vitesse régulière du ventilateur. Pour les couches plus rapides, la vitesse du ventilateur augmente progressivement jusqu'à atteindre la vitesse maximale." -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Accélération de la jupe/bordure" +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Vitesse des ventilateurs initiale" -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Extrudeur de la jupe/bordure" +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "Vitesse à laquelle les ventilateurs tournent au début de l'impression. Pour les couches suivantes, la vitesse des ventilateurs augmente progressivement jusqu'à la couche qui correspond à la vitesse régulière des ventilateurs en hauteur." -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Débit de la jupe/bordure" +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Vitesse régulière du ventilateur à la hauteur" -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Saccade de la jupe/bordure" +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "Hauteur à laquelle les ventilateurs tournent à la vitesse régulière. Pour les couches situées en-dessous, la vitesse des ventilateurs augmente progressivement de la vitesse des ventilateurs initiale jusqu'à la vitesse régulière." -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Largeur des lignes de jupe/bordure" +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Vitesse régulière du ventilateur à la couche" -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Longueur minimale de la jupe/bordure" +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "La couche à laquelle les ventilateurs tournent à la vitesse régulière. Si la vitesse régulière du ventilateur à la hauteur est définie, cette valeur est calculée et arrondie à un nombre entier." -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Vitesse d'impression de la jupe/bordure" +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Durée minimale d’une couche" -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Tolérance à la découpe" +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "Temps minimum passé sur une couche. Cela force l'imprimante à ralentir afin de passer au minimum la durée définie ici sur une couche. Cela permet au matériau imprimé de refroidir correctement avant l'impression de la couche suivante. Les couches peuvent néanmoins prendre moins de temps que le temps de couche minimum si « Lift Head  » (Relever Tête) est désactivé et si la vitesse minimum serait autrement non respectée." -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Vitesse de la couche initiale de petite structure" +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Vitesse minimale" -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Longueur max de petite structure" +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "La vitesse minimale d'impression, malgré le ralentissement dû à la durée minimale d'une couche. Si l'imprimante devait trop ralentir, la pression au niveau de la buse serait trop faible, ce qui résulterait en une mauvaise qualité d'impression." -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Vitesse de petite structure" +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Relever la tête" -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Taille maximale des petits trous" +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "Lorsque la vitesse minimale est atteinte à cause de la durée minimale d'une couche, relève la tête de l'impression et attend que la durée supplémentaire jusqu'à la durée minimale d'une couche soit atteinte." msgctxt "cool_min_temperature label" msgid "Small Layer Printing Temperature" msgstr "Température d'impression en cas de petite couche" -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "Petit Haut/Bas sur la surface" +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "Réduisez progressivement à cette température lors de l'impression à des vitesses réduites en raison de la durée minimale d’une couche." -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "Petite largeur du dessus/dessous" +msgctxt "support label" +msgid "Support" +msgstr "Supports" -msgctxt "small_feature_speed_factor_0 description" -msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "Les petites structures sur la première couche seront imprimées à ce pourcentage de la vitesse d'impression normale. Une impression plus lente peut aider à l'adhésion et à la précision." +msgctxt "support description" +msgid "Support" +msgstr "Supports" -msgctxt "small_feature_speed_factor description" -msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "Les petites structures seront imprimées à ce pourcentage de la vitesse d'impression normale. Une impression plus lente peut aider à l'adhésion et à la précision." +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Générer les supports" -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "Les petites zones haut/bas sont remplies avec des parois au lieu du motif haut/bas par défaut. Cela permet d'éviter les mouvements saccadés. Par défaut, l'option est désactivée pour la couche supérieure (exposée à l'air) (voir « Petit Haut/Bas sur la surface »)." +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "Générer des structures pour soutenir les parties du modèle qui possèdent des porte-à-faux. Sans ces structures, ces parties s'effondreront durant l'impression." -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "Bordure intelligente" +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Extrudeuse de support" -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Masquage intelligent" +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse à utiliser pour l'impression du support. Cela est utilisé en multi-extrusion." -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Lisser les contours spiralisés" +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Extrudeuse de remplissage du support" -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "Lisser les contours spiralisés pour réduire la visibilité de la jointure en Z (la jointure en Z doit être à peine visible sur l'impression mais sera toujours visible dans la vue en couches). Veuillez remarquer que le lissage aura tendance à estomper les détails très fins de la surface." +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse à utiliser pour l'impression du remplissage du support. Cela est utilisé en multi-extrusion." -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "Du matériau peut suinter pendant un déplacement, ce qui peut être compensé ici." +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Extrudeuse de support de la première couche" -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "Du matériau peut suinter pendant un déplacement d'essuyage, ce qui peut être compensé ici." +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse à utiliser pour l'impression de la première couche de remplissage du support. Cela est utilisé en multi-extrusion." -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Modes spéciaux" +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Extrudeuse de l'interface du support" -msgctxt "speed description" -msgid "Speed" -msgstr "Vitesse" +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse à utiliser pour l'impression des plafonds et bas du support. Cela est utilisé en multi-extrusion." -msgctxt "speed label" -msgid "Speed" -msgstr "Vitesse" +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Extrudeuse des plafonds de support" -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "Vitesse de déplacement de l'axe Z pendant le décalage." +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse à utiliser pour l'impression des plafonds du support. Cela est utilisé en multi-extrusion." -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Spiraliser le contour extérieur" +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Extrudeuse des bas de support" -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "Cette fonction ajuste le déplacement en Z sur le bord extérieur. Cela va créer une augmentation stable de Z sur toute l’impression. Cette fonction transforme un modèle solide en une impression à paroi unique avec une base solide. Cette fonctionnalité doit être activée seulement lorsque chaque couche contient uniquement une seule partie." +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse à utiliser pour l'impression des bas du support. Cela est utilisé en multi-extrusion." -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Température de veille" +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Structure du support" + +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "Choisit entre les techniques disponibles pour générer un support. Le support « Normal » créer une structure de support directement sous les pièces en porte-à-faux et fait descendre ces zones directement vers le bas. Le support « Arborescent » crée des branches vers les zones en porte-à-faux qui supportent le modèle à l'extrémité de ces branches et permet aux branches de ramper autour du modèle afin de les supporter le plus possible sur le plateau de fabrication." + +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Normal" + +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Arborescence" + +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "Angle maximal des branches" + +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "Il s'agit de l'angle maximal des branches imprimées autour du modèle. Si vous utilisez un angle faible, les branches seront plus verticales et plus stables. Si vous utilisez un angle élevé, vous obtiendrez une plus grande portée." -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "G-Code de démarrage" +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "Diamètre des branches" -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "Point de départ de chaque voie dans une couche. Quand les voies dans les couches consécutives démarrent au même endroit, une jointure verticale peut apparaître sur l'impression. En alignant les points de départ près d'un emplacement défini par l'utilisateur, la jointure sera plus facile à faire disparaître. Lorsqu'elles sont disposées de manière aléatoire, les imprécisions de départ des voies seront moins visibles. En choisissant la voie la plus courte, l'impression se fera plus rapidement." +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "Diamètre des branches les plus minces du support arborescent. Plus les branches sont épaisses, plus elles sont robustes ; les branches proches de la base seront plus épaisses que cette valeur." -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Pas par millimètre (E)" +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "Diamètre du tronc" -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Pas par millimètre (X)" +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "Le diamètre des branches les plus larges du support arborescent. Un tronc plus épais est plus robuste ; un tronc plus fin prend moins de place sur le plateau de fabrication." -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Pas par millimètre (Y)" +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "Angle de diamètre des branches" -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Pas par millimètre (Z)" +msgctxt "support_tree_branch_diameter_angle description" +msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." +msgstr "Angle du diamètre des branches au fur et à mesure qu'elles s'épaississent lorsqu'elles sont proches du fond. Avec un angle de 0°, les branches auront une épaisseur uniforme sur toute leur longueur. Donner un peu d'angle permet d'augmenter la stabilité du support arborescent." -msgctxt "support description" -msgid "Support" -msgstr "Supports" +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Positionnement des supports" -msgctxt "support label" -msgid "Support" -msgstr "Supports" +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "En contact avec le plateau" -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Accélération du support" +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "Partout" -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Distance inférieure des supports" +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "Angle des branches souhaité" -msgctxt "support_bottom_wall_count label" -msgid "Support Bottom Wall Line Count" -msgstr "Nombre de lignes de parois inférieures du support" +msgctxt "support_tree_angle_slow description" +msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." +msgstr "Ce paramètre détermine l'angle souhaité pour les branches, lorsqu'elles n'ont pas à contourner le modèle. Si vous utilisez un angle faible, les branches seront plus verticales et plus stables. Si vous utilisez un angle élevé, les branches fusionneront plus rapidement." -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Nombre de lignes de la bordure du support" +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "Augmentation du diamètre des branches rattachées au modèle" -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Largeur de la bordure du support" +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "Le diamètre maximal d'une branche rattachée au modèle peut augmenter lorsqu'elle fusionne avec des branches pouvant atteindre le plateau. Le fait d'augmenter ce diamètre réduit le temps d'impression, mais agrandit la surface du support sur laquelle repose le modèle." -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Comptage des lignes de morceaux du support" +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "Hauteur minimale par rapport au modèle" -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Taille de morceaux du support" +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "Il s'agit de la hauteur minimale que doit atteindre une branche si elle est rattachée au modèle. Ce paramètre empêche la formation de petites gouttes de support. Il est ignoré lorsqu'une branche soutient un plafond de support." -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "Densité du support" +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "Diamètre de la couche initiale" -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Priorité de distance des supports" +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "Il s'agit du diamètre que chaque branche essaie d'atteindre au niveau du plateau. Ce paramètre améliore l'adhérence au plateau." -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Extrudeuse de support" +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "Densité des branches" -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Accélération des bas de support" +msgctxt "support_tree_top_rate description" +msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "Ce paramètre ajuste la densité de la structure de support utilisée pour générer les extrémités des branches. Une valeur plus élevée permet d'obtenir de meilleurs porte-à-faux, mais les supports seront plus difficiles à retirer. Utilisez un plafond de support en cas de valeurs très élevées ou veillez à ce que la densité du support soit tout aussi élevée aux extrémités." -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Densité du bas de support" +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "Diamètre des extrémités" -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Extrudeuse des bas de support" +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "Il s'agit du diamètre des extrémités des branches du support arborescent." -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Débit du bas de support" +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "Limitation de la portée des branches" -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Expansion horizontale du bas de support" +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "Ce paramètre limite la distance parcourue par chaque branche à partir du point qu'elle soutient. Le support peut ainsi être plus solide, mais le nombre de branches augmentera (tout comme la quantité de matériau utilisée et le temps d'impression)" -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Saccade des bas de support" +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "Portée optimale des branches" -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Direction de la ligne de bas de support" +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "Il s'agit de la distance recommandée à laquelle les branches peuvent s'éloigner des points qu'elles soutiennent. Les branches peuvent ne pas respecter cette valeur pour atteindre leur emplacement cible (plateau ou partie plate du modèle). L'abaissement de cette valeur rendra le support plus solide, mais le nombre de branches augmentera (tout comme la quantité de matériau utilisée et le temps d'impression)." -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Distance d'écartement de ligne de bas de support" +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "Préférence d'emplacement" -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Largeur de ligne de bas de support" +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "Il s'agit de l'emplacement souhaité pour les structures de support. Si les structures ne peuvent pas être placées à l'endroit souhaité, elles seront placées ailleurs, quitte à ce que ce soit sur le modèle." -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Motif du bas de support" +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "Sur le plateau si possible" -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Vitesse d'impression des bas de support" +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "Sur le modèle si nécessaire" -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Épaisseur du bas de support" +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Angle de porte-à-faux de support" -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Débit du support" +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "L'angle minimal des porte-à-faux pour lesquels un support est ajouté. À une valeur de 0 °, tous les porte-à-faux sont soutenus, tandis qu'à 90 °, aucun support ne sera créé." -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Expansion horizontale des supports" +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Motif du support" -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Accélération de remplissage du support" +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "Le motif des supports de l'impression. Les différentes options disponibles résultent en des supports difficiles ou faciles à retirer." -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Extrudeuse de remplissage du support" +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Lignes" -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Saccade de remplissage du support" +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Grille" -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Épaisseur de la couche de remplissage de support" +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Triangles" -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Direction de ligne de remplissage du support" +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Concentrique" -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Vitesse d'impression du remplissage de support" +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Accélération de l'interface du support" +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Entrecroisé" -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "Densité de l'interface de support" +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroïde" -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Extrudeuse de l'interface du support" +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Nombre de lignes de la paroi du support" -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Débit de l'interface de support" +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Nombre de parois qui entourent le remplissage de support. L'ajout d'une paroi peut rendre l'impression de support plus fiable et mieux supporter les porte-à-faux, mais augmente le temps d'impression et la quantité de matériau nécessaire." + +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Nombre de lignes de parois de l'interface du support" -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Expansion horizontale de l'interface de support" +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Nombre de parois avec lesquelles entourer la surface de support. L'ajout d'une paroi rend l'impression du support plus fiable et permet de mieux soutenir les saillies, mais augmente le temps d'impression et la quantité de matériau utilisé." -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Saccade de l'interface de support" +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Nombre de lignes de parois du toit du support" -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Direction de ligne d'interface du support" +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Nombre de parois avec lesquelles entourer le toit de l'interface du support. L'ajout d'une paroi rend l'impression du support plus fiable et permet de mieux soutenir les saillies, mais augmente le temps d'impression et la quantité de matériau utilisé." -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Largeur de ligne d'interface de support" +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "Nombre de lignes de parois inférieures du support" -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Motif de l'interface de support" +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Le nombre de parois avec lesquelles entourer la surface inférieure de l'interface du support. L'ajout d'une paroi rend l'impression du support plus fiable et permet de mieux soutenir les saillies, mais augmente le temps d'impression et la quantité de matériau utilisé." -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "Priorité de l'interface de support" +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Relier les lignes de support" -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Vitesse d'impression de l'interface de support" +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "Relie les extrémités des lignes de support. L'activation de ce paramètre peut rendre votre support plus robuste et réduire la sous-extrusion, mais cela demandera d'utiliser plus de matériau." -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Épaisseur de l'interface de support" +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Relier les zigzags de support" -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "Nombre de lignes de parois de l'interface du support" +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "Relie les zigzags. Cela augmente la solidité des supports en zigzag." -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Saccade des supports" +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "Densité du support" -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "Distance de jointement des supports" +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Ajuste la densité du support. Une valeur plus élevée résulte en de meilleurs porte-à-faux, mais les supports sont plus difficiles à enlever." msgctxt "support_line_distance label" msgid "Support Line Distance" msgstr "Distance d'écartement de ligne du support" -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Largeur de ligne de support" +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "Distance entre les lignes de support imprimées. Ce paramètre est calculé par la densité du support." -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Maillage de support" +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "Distance d'écartement de ligne du support de la couche initiale" -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Angle de porte-à-faux de support" +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "Distance entre les lignes de la structure de support de la couche initiale imprimée. Ce paramètre est calculé en fonction de la densité du support." -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Motif du support" +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Direction de ligne de remplissage du support" -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Positionnement des supports" +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que l'angle par défaut est utilisé (0 degré)." -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Accélération des plafonds de support" +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Activer la bordure du support" -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Densité du plafond de support" +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "Générer un bord à l'intérieur des zones de remplissage du support de la première couche. Cette bordure est imprimée sous le support et non autour de celui-ci, ce qui augmente l'adhérence du support au plateau." -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Extrudeuse des plafonds de support" +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Largeur de la bordure du support" -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Débit du plafond de support" +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "Largeur de la bordure à imprimer sous le support. Une plus grande bordure améliore l'adhérence au plateau, mais demande un peu de matériau supplémentaire." -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Expansion horizontale du plafond de support" +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Nombre de lignes de la bordure du support" -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Saccade des plafonds de support" +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "Nombre de lignes utilisées pour la bordure du support. L'augmentation du nombre de lignes de bordure améliore l'adhérence au plateau, mais demande un peu de matériau supplémentaire." -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Direction de la ligne de plafond de support" +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Distance Z des supports" -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Distance d'écartement de ligne du plafond de support" +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "Distance entre le haut/bas de la structure de support et l'impression. Cet écart permet de retirer les supports après l'impression du modèle. La couche de support la plus haute sous le modèle pourrait être une fraction des couches régulières." -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Largeur de ligne de plafond de support" +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Distance supérieure des supports" -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Motif du plafond de support" +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "Distance entre l’impression et le haut des supports." -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Vitesse d'impression des plafonds de support" +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Distance inférieure des supports" -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "Épaisseur du plafond de support" +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "Distance de l'impression au bas du support. Notez que cela est arrondi à la hauteur de couche suivante." -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "Nombre de lignes de parois du toit du support" +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "Distance X/Y des supports" -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Vitesse d'impression des supports" +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "Distance entre le support et l'impression dans les directions X/Y." + +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Priorité de distance des supports" + +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "Si la Distance X/Y des supports annule la Distance Z des supports ou inversement. Lorsque X/Y annule Z, la distance X/Y peut écarter le support du modèle, influençant ainsi la distance Z réelle par rapport au porte-à-faux. Nous pouvons désactiver cela en n'appliquant pas la distance X/Y autour des porte-à-faux." + +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y annule Z" + +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z annule X/Y" + +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Distance X/Y minimale des supports" + +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "Distance entre la structure de support et le porte-à-faux dans les directions X/Y." msgctxt "support_bottom_stair_step_height label" msgid "Support Stair Step Height" msgstr "Hauteur de la marche de support" +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "La hauteur de la marche du support en forme d'escalier reposant sur le modèle. Une valeur faible rend le support plus difficile à enlever, mais des valeurs trop élevées peuvent entraîner des supports instables. Définir la valeur sur zéro pour désactiver le comportement en forme d'escalier." + msgctxt "support_bottom_stair_step_width label" msgid "Support Stair Step Maximum Width" msgstr "Largeur maximale de la marche de support" +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "La largeur maximale de la marche du support en forme d'escalier reposant sur le modèle. Une valeur faible rend le support plus difficile à enlever, mais des valeurs trop élevées peuvent entraîner des supports instables." + msgctxt "support_bottom_stair_step_min_slope label" msgid "Support Stair Step Minimum Slope Angle" msgstr "Angle de pente minimum de la marche de support" -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Structure du support" +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "La pente minimum de la zone pour un effet de marche de support. Des valeurs basses devraient faciliter l'enlèvement du support sur les pentes peu superficielles ; des valeurs très basses peuvent donner des résultats vraiment contre-intuitifs sur d'autres pièces du modèle." + +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "Distance de jointement des supports" + +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "La distance maximale entre les supports dans les directions X/Y. Lorsque des modèle séparés sont plus rapprochés que cette valeur, ils fusionnent." + +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Expansion horizontale des supports" + +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "Le décalage appliqué à tous les polygones pour chaque couche. Une valeur positive peut lisser les zones de support et rendre le support plus solide." + +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Épaisseur de la couche de remplissage de support" + +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "L'épaisseur par couche de matériau de remplissage de support. Cette valeur doit toujours être un multiple de la hauteur de la couche et arrondie." + +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Étapes de remplissage graduel du support" + +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "Nombre de fois pour réduire la densité de remplissage du support de moitié en poursuivant sous les surfaces du dessus. Les zones qui sont plus proches des surfaces du dessus possèdent une densité plus élevée, jusqu'à la Densité de remplissage du support." + +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Hauteur d'étape de remplissage graduel du support" + +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "La hauteur de remplissage de support d'une densité donnée avant de passer à la moitié de la densité." + +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Surface minimale de support" -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Distance supérieure des supports" +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "Taille minimale de la surface des polygones de support : les polygones dont la surface est inférieure à cette valeur ne seront pas générés." -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Nombre de lignes de la paroi du support" +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Activer l'interface de support" -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "Distance X/Y des supports" +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "Générer une interface dense entre le modèle et le support. Cela créera une couche sur le dessus du support sur lequel le modèle est imprimé et sur le dessous du support sur lequel le modèle repose." -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Distance Z des supports" +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Activer les plafonds de support" -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "Priorité aux lignes de support" +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "Générer une plaque dense de matériau entre le plafond du support et le modèle. Cela créera une couche extérieure entre le modèle et le support." -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "Priorité au support" +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Activer les bas de support" -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Vitesse du ventilateur de couche extérieure supportée" +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "Générer une plaque dense de matériau entre le bas du support et le modèle. Cela créera une couche extérieure entre le modèle et le support." -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Surface" +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Épaisseur de l'interface de support" -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "Énergie de la surface" +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "L'épaisseur de l'interface du support à l'endroit auquel il touche le modèle, sur le dessous ou le dessus." -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Mode de surface" +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "Épaisseur du plafond de support" -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "Tendance à l'adhérence de la surface." +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "L'épaisseur des plafonds de support. Cela contrôle la quantité de couches denses sur le dessus du support sur lequel le modèle repose." -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Énergie de la surface." +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Épaisseur du bas de support" -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "Ce paramètre inverse l'ordre d'impression de la ligne de bordure la plus intérieure et de la deuxième ligne de bordure la plus intérieure. La bordure est ainsi plus facile à retirer." +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "L'épaisseur des bas de support. Cela contrôle le nombre de couches denses imprimées sur le dessus des endroits d'un modèle sur lequel le support repose." -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "Passe aux volumes d'intersection de maille qui appartiennent à chaque couche, de manière à ce que les mailles qui se chevauchent soient entrelacées. Si vous désactivez ce paramètre, l'une des mailles obtiendra tout le volume dans le chevauchement tandis qu'il est retiré des autres mailles." +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Densité de l'interface de support" -msgctxt "adaptive_layer_height_threshold description" -msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." -msgstr "Distance horizontale cible entre deux couches adjacentes. La réduction de ce paramètre entraîne l'utilisation de couches plus fines pour rapprocher les bords des couches." +msgctxt "support_interface_density description" +msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Ajuste la densité des plafonds et bas de la structure de support. Une valeur plus élevée résulte en de meilleurs porte-à-faux, mais les supports sont plus difficiles à enlever." -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "Coordonnée X de la position près de laquelle trouver la partie pour démarrer l'impression de chaque couche." +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Densité du plafond de support" -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "Coordonnée X de la position près de laquelle démarrer l'impression de chaque partie dans une couche." +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "La densité des plafonds de la structure de support. Une valeur plus élevée résulte en de meilleurs porte-à-faux, mais les supports sont plus difficiles à enlever." -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Les coordonnées X de la position à laquelle la buse s'amorce au début de l'impression." +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Distance d'écartement de ligne du plafond de support" -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "Coordonnée Y de la position près de laquelle trouver la partie pour démarrer l'impression de chaque couche." +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "Distance entre les lignes du plafond de support imprimées. Ce paramètre est calculé par la densité du plafond de support mais peut également être défini séparément." -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "Coordonnée Y de la position près de laquelle démarrer l'impression de chaque partie dans une couche." +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Densité du bas de support" -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Les coordonnées Y de la position à laquelle la buse s'amorce au début de l'impression." +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "La densité des bas de la structure de support. Une valeur plus élevée résulte en une meilleure adhésion du support au-dessus du modèle." -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Les coordonnées Z de la position à laquelle la buse s'amorce au début de l'impression." +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Distance d'écartement de ligne de bas de support" -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "L'accélération durant l'impression de la couche initiale." +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "Distance entre les lignes du bas de support imprimées. Ce paramètre est calculé par la densité du bas de support mais peut également être défini séparément." -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "L'accélération pour la couche initiale." +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Motif de l'interface de support" -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "L'accélération pour les déplacements dans la couche initiale." +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "Le motif selon lequel l'interface du support avec le modèle est imprimée." -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "L'accélération pour les déplacements dans la couche initiale." +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Lignes" -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "L'accélération selon laquelle toutes les parois intérieures sont imprimées." +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Grille" -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "L'accélération selon laquelle le remplissage est imprimé." +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Triangles" -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "L'accélération selon laquelle l'étirage est effectué." +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Concentrique" -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "L'accélération selon laquelle l'impression s'effectue." +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "L'accélération selon laquelle la couche de base du radeau est imprimée." +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Motif du plafond de support" -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "L'accélération selon laquelle les bas de support sont imprimés. Les imprimer avec une accélération plus faible renforce l'adhésion du support au-dessus du modèle." +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "Le motif d'impression pour les plafonds de support." -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "L'accélération selon laquelle le remplissage de support est imprimé." +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Lignes" -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "L'accélération selon laquelle la couche du milieu du radeau est imprimée." +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Grille" -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "L'accélération selon laquelle les parois externes sont imprimées." +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Triangles" -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "L'accélération selon laquelle la tour d'amorçage est imprimée." +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Concentrique" -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "L'accélération selon laquelle le radeau est imprimé." +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "L'accélération selon laquelle les plafonds et bas de support sont imprimés. Les imprimer avec une accélération plus faible améliore la qualité des porte-à-faux." +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Motif du bas de support" -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "L'accélération selon laquelle les plafonds de support sont imprimés. Les imprimer avec une accélération plus faible améliore la qualité des porte-à-faux." +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "Le motif d'impression pour les bas de support." -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "L'accélération selon laquelle la jupe et la bordure sont imprimées. Normalement, cette accélération est celle de la couche initiale, mais il est parfois nécessaire d’imprimer la jupe ou la bordure à une accélération différente." +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Lignes" -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "L'accélération selon laquelle la structure de support est imprimée." +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Grille" + +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Triangles" -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "L'accélération selon laquelle les couches du dessus du radeau sont imprimées." +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concentrique" -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "L'accélération avec laquelle les parois internes de la surface supérieure sont imprimées." +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "L'accélération avec laquelle la paroi externe de la surface supérieure est imprimée." +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Surface minimale de l'interface de support" -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "L'accélération selon laquelle les parois sont imprimées." +msgctxt "minimum_interface_area description" +msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Taille minimale de la surface des polygones d'interface de support. Les polygones dont la surface est inférieure à cette valeur ne seront pas imprimés comme support normal." -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "La vitesse à laquelle les couches extérieures de surface supérieure sont imprimées." +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Surface minimale du plafond de support" -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "L'accélération selon laquelle les couches du dessus/dessous sont imprimées." +msgctxt "minimum_roof_area description" +msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Taille minimale de la surface des plafonds du support. Les polygones dont la surface est inférieure à cette valeur ne seront pas imprimés comme support normal." -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "L'accélération selon laquelle les déplacements s'effectuent." +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Surface minimale du bas de support" -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "La quantité de matériau, relative à une ligne de couche extérieure normale, à extruder pendant l'étirage. Le fait de garder la buse pleine aide à remplir certaines des crevasses de la surface supérieure ; mais si la quantité est trop importante, cela entraînera une surextrusion et l'apparition de coupures sur le côté de la surface." +msgctxt "minimum_bottom_area description" +msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Taille minimale de la surface des bas du support. Les polygones dont la surface est inférieure à cette valeur ne seront pas imprimés comme support normal." -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "Le degré de chevauchement entre le remplissage et les parois exprimé en pourcentage de la largeur de ligne de remplissage. Un chevauchement faible permet aux parois de se connecter fermement au remplissage." +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Expansion horizontale de l'interface de support" -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "Le degré de chevauchement entre le remplissage et les parois. Un léger chevauchement permet de lier fermement les parois au remplissage." +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "Quantité de décalage appliquée aux polygones de l'interface de support." -msgctxt "switch_extruder_retraction_amount description" -msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." -msgstr "Degré de rétraction lors de la commutation d'extrudeuses. Une valeur de 0 signifie qu'il n'y aura aucune rétraction. En général, cette valeur doit être équivalente à la longueur de la zone de chauffe." +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Expansion horizontale du plafond de support" -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "L'angle entre le plan horizontal et la partie conique juste au-dessus de la pointe de la buse." +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "Quantité de décalage appliqué aux plafonds du support." -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "L'angle du toit d'une tour. Une valeur plus élevée entraîne des toits de tour pointus, tandis qu'une valeur plus basse résulte en des toits plats." +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Expansion horizontale du bas de support" -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "L'angle de porte-à-faux des parois externes créées pour le moule. La valeur 0° rendra la coque externe du moule verticale, alors que 90° fera que l'extérieur du modèle suive les contours du modèle." +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "Quantité de décalage appliqué aux bas du support." -msgctxt "support_tree_branch_diameter_angle description" -msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." -msgstr "Angle du diamètre des branches au fur et à mesure qu'elles s'épaississent lorsqu'elles sont proches du fond. Avec un angle de 0°, les branches auront une épaisseur uniforme sur toute leur longueur. Donner un peu d'angle permet d'augmenter la stabilité du support arborescent." +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "Priorité de l'interface de support" -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "Angle d'inclinaison des supports coniques. Un angle de 0 degré est vertical tandis qu'un angle de 90 degrés est horizontal. Les petits angles rendent le support plus solide mais utilisent plus de matière. Les angles négatifs rendent la base du support plus large que le sommet." +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "Ce paramètre détermine la façon dont l'interface de support et le support interagissent en cas de chevauchement. Il n'est actuellement disponible que pour le plafond de support." -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "Densité moyenne de points ajoutée à chaque polygone sur une couche. Notez que les points originaux du polygone ne seront plus pris en compte, une faible densité résultant alors en une diminution de la résolution." +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "Priorité au support" -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "Distance moyenne entre les points ajoutés aléatoirement sur chaque segment de ligne. Il faut noter que les points originaux du polygone ne sont plus pris en compte donc un fort lissage conduira à une diminution de la résolution. Cette valeur doit être supérieure à la moitié de l'épaisseur de la couche floue." +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "Priorité à l'interface" -msgctxt "material_brand description" -msgid "The brand of material used." -msgstr "" +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "Priorité aux lignes de support" -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "L'accélération par défaut du mouvement de la tête d'impression." +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "Priorité aux lignes d'interface" -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "La température par défaut utilisée pour l'impression. Il doit s'agir de la température de « base » d'un matériau. Toutes les autres températures d'impression doivent utiliser des décalages basés sur cette valeur" +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "Chevauchement" -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "Température par défaut utilisée pour le plateau chauffant. Il doit s'agir de la température de « base » d'un plateau. Toutes les autres températures d'impression sont définies en fonction de cette valeur" +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Direction de ligne d'interface du support" -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Densité de la couche extérieure du pont. Des valeurs inférieures à 100 augmenteront les écarts entre les lignes de la couche extérieure." +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que les angles par défaut sont utilisés (alternative entre 45 et 135 degrés si les interfaces sont assez épaisses ou 90 degrés)." -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "La densité des bas de la structure de support. Une valeur plus élevée résulte en une meilleure adhésion du support au-dessus du modèle." +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Direction de la ligne de plafond de support" -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "La densité des plafonds de la structure de support. Une valeur plus élevée résulte en de meilleurs porte-à-faux, mais les supports sont plus difficiles à enlever." +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que les angles par défaut sont utilisés (alternative entre 45 et 135 degrés si les interfaces sont assez épaisses ou 90 degrés)." -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Densité de la deuxième couche extérieure du pont. Des valeurs inférieures à 100 augmenteront les écarts entre les lignes de la couche extérieure." +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Direction de la ligne de bas de support" -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Densité de la troisième couche extérieure du pont. Des valeurs inférieures à 100 augmenteront les écarts entre les lignes de la couche extérieure." +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que les angles par défaut sont utilisés (alternative entre 45 et 135 degrés si les interfaces sont assez épaisses ou 90 degrés)." -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "La profondeur (sens Y) de la zone imprimable." +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Annulation de la vitesse du ventilateur" -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "Le diamètre d’une tour spéciale." +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "Lorsque cette fonction est activée, la vitesse du ventilateur de refroidissement de l'impression est modifiée pour les régions de la couche extérieure situées immédiatement au-dessus du support." -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "Diamètre des branches les plus minces du support arborescent. Plus les branches sont épaisses, plus elles sont robustes ; les branches proches de la base seront plus épaisses que cette valeur." +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Vitesse du ventilateur de couche extérieure supportée" -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "Il s'agit du diamètre des extrémités des branches du support arborescent." +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "Pourcentage de la vitesse du ventilateur à utiliser lors de l'impression des zones de couche extérieure situées immédiatement au-dessus du support. Une vitesse de ventilateur élevée facilite le retrait du support." -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "Diamètre de la roue qui entraîne le matériau dans le chargeur." +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Utilisation de tours" -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "Le diamètre des branches les plus larges du support arborescent. Un tronc plus épais est plus robuste ; un tronc plus fin prend moins de place sur le plateau de fabrication." +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "Utilise des tours spéciales pour soutenir de petites zones en porte-à-faux. Le diamètre de ces tours est plus large que la zone qu’elles soutiennent. Près du porte-à-faux, le diamètre des tours diminue pour former un toit." -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "Différence de hauteur de la couche suivante par rapport à la précédente." +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Diamètre de la tour" -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "La distance entre les lignes d'étirage." +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "Le diamètre d’une tour spéciale." -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "La distance entre la buse et les pièces déjà imprimées lors du contournement pendant les déplacements." +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Diamètre maximal supporté par la tour" -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "La distance entre les lignes du radeau pour la couche de base de celui-ci. Un interligne large facilite le retrait du radeau du plateau." +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "Le diamètre maximal sur les axes X/Y d’une petite zone qui doit être soutenue par une tour de soutien spéciale." -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "La distance entre les lignes du radeau pour la couche intermédiaire de celui-ci. L'espace intermédiaire doit être assez large et suffisamment dense pour supporter les couches supérieures du radeau." +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Angle du toit de la tour" -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "La distance entre les lignes du radeau pour les couches supérieures de celui-ci. Cet espace doit être égal à la largeur de ligne afin de créer une surface solide." +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "L'angle du toit d'une tour. Une valeur plus élevée entraîne des toits de tour pointus, tandis qu'une valeur plus basse résulte en des toits plats." -msgctxt "prime_tower_raft_base_line_spacing description" -msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "La distance entre les lignes de radeau pour la couche de radeau unique de la tour d'amorçage. Un espacement large permet un retrait facile du radeau du plateau" +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Maillage de support descendant" -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "Limite de distance entre les modèles 3D à partir de laquelle générer une structure de connexion, mesurée en cellules. Un nombre de cellules trop bas entraînera une mauvaise adhérence." +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "Inclure du support à tout emplacement sous le maillage de support, de sorte à ce qu'il n'y ait pas de porte-à-faux dans le maillage de support." -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "La distance entre le modèle et la ligne de bordure la plus à l'extérieur. Une bordure plus large renforce l'adhérence au plateau mais réduit également la zone d'impression réelle." +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "La scène comporte un maillage de support" -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "Distance depuis l'extérieur d'un modèle 3D à partir de laquelle les structures de connexion ne seront pas générées, mesurée en cellules." +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "Un maillage de support est présent sur la scène. Ce paramètre est contrôlé par Cura." -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "Distance depuis la pointe du bec d'impression sur laquelle la chaleur du bec d'impression est transférée au filament." +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Adhérence du plateau" -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "La distance à laquelle les couches extérieures inférieures s'étendent à l'intérieur du remplissage. Des valeurs élevées lient mieux la couche extérieure au motif de remplissage et font mieux adhérer à cette couche les parois de la couche inférieure. Des valeurs faibles économisent la quantité de matériau utilisé." +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Adhérence" -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "La distance à laquelle les couches extérieures s'étendent à l'intérieur du remplissage. Des valeurs élevées lient mieux la couche extérieure au motif de remplissage et font mieux adhérer à cette couche les parois des couches voisines. Des valeurs faibles économisent la quantité de matériau utilisé." +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "Activer la goutte de préparation" -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "La distance à laquelle les couches extérieures supérieures s'étendent à l'intérieur du remplissage. Des valeurs élevées lient mieux la couche extérieure au motif de remplissage et font mieux adhérer à cette couche les parois de la couche supérieure. Des valeurs faibles économisent la quantité de matériau utilisé." +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "Préparer les filaments avec une goutte avant l'impression. Ce paramètre permet d'assurer que l'extrudeuse disposera de matériau prêt au niveau de la buse avant l'impression. La jupe/bordure d'impression peut également servir de préparation, auquel cas le fait de laisser ce paramètre désactivé permet de gagner un peu de temps." -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "La distance de déplacement de la tête d'avant en arrière à travers la brosse." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Extrudeuse Position d'amorçage X" -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "Les extrémités des lignes de remplissage sont raccourcies pour économiser du matériau. Ce paramètre est l'angle de saillie des extrémités de ces lignes." +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Les coordonnées X de la position à laquelle la buse s'amorce au début de l'impression." -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "La vitesse supplémentaire à laquelle la buse refroidit pendant l'extrusion. La même valeur est utilisée pour indiquer la perte de vitesse de chauffage pendant l'extrusion." +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Extrudeuse Position d'amorçage Y" -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse à utiliser pour l'impression de la première couche de remplissage du support. Cela est utilisé en multi-extrusion." +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Les coordonnées Y de la position à laquelle la buse s'amorce au début de l'impression." -msgctxt "raft_base_extruder_nr description" -msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." -msgstr "Le train d'extrudeur à utiliser pour l'impression de la première couche du radeau. Cela est utilisé en multi-extrusion." +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Type d'adhérence du plateau" -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse à utiliser pour l'impression des bas du support. Cela est utilisé en multi-extrusion." +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "Différentes options qui permettent d'améliorer la préparation de votre extrusion et l'adhérence au plateau. La bordure ajoute une zone plate d'une seule couche autour de la base de votre modèle, afin de l'empêcher de se redresser. Le radeau ajoute une grille épaisse avec un toit sous le modèle. La jupe est une ligne imprimée autour du modèle mais qui n'est pas rattachée au modèle." -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse à utiliser pour l'impression du remplissage du support. Cela est utilisé en multi-extrusion." +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Jupe" -msgctxt "raft_interface_extruder_nr description" -msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." -msgstr "Le train d'extrudeur à utiliser pour imprimer la couche intermédiaire du radeau. Cela est utilisé en multi-extrusion." +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Bordure" -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse à utiliser pour l'impression des plafonds et bas du support. Cela est utilisé en multi-extrusion." +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Radeau" -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse à utiliser pour l'impression des plafonds du support. Cela est utilisé en multi-extrusion." +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Aucun" -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "Le train d'extrudeur à utiliser pour l'impression de la jupe ou de la bordure. Cela est utilisé en multi-extrusion." +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Extrudeuse d'adhérence du plateau" msgctxt "adhesion_extruder_nr description" msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." msgstr "Le train d'extrudeuse à utiliser pour l'impression de la jupe/la bordure/du radeau. Cela est utilisé en multi-extrusion." -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse à utiliser pour l'impression du support. Cela est utilisé en multi-extrusion." +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Extrudeuse de la jupe/bordure" -msgctxt "raft_surface_extruder_nr description" -msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." -msgstr "Le train d'extrudeur à utiliser pour imprimer la ou les couches du haut du radeau. Cela est utilisé en multi-extrusion." +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse à utiliser pour l'impression de la jupe ou de la bordure. Cela est utilisé en multi-extrusion." -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse utilisé pour l'impression du remplissage. Cela est utilisé en multi-extrusion." +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Extrudeuse de la base du raft" -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse utilisé pour l'impression des parois internes. Cela est utilisé en multi-extrusion." +msgctxt "raft_base_extruder_nr description" +msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse à utiliser pour l'impression de la première couche du radeau. Cela est utilisé en multi-extrusion." -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse utilisé pour l'impression des parois externes. Cela est utilisé en multi-extrusion." +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Extrudeuse du milieu du radeau" -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse utilisé pour l'impression de la couche extérieure du haut et du bas. Cela est utilisé en multi-extrusion." +msgctxt "raft_interface_extruder_nr description" +msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse à utiliser pour imprimer la couche intermédiaire du radeau. Cela est utilisé en multi-extrusion." -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse utilisé pour l'impression de la couche extérieure supérieure. Cela est utilisé en multi-extrusion." +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Extrudeuse du haut du radeau" -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse utilisé pour l'impression des parois. Cela est utilisé en multi-extrusion." +msgctxt "raft_surface_extruder_nr description" +msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse à utiliser pour imprimer la ou les couches du haut du radeau. Cela est utilisé en multi-extrusion." -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "La vitesse du ventilateur pour la couche de base du radeau." +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Nombre de lignes de la jupe" -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "La vitesse du ventilateur pour la couche du milieu du radeau." +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "Une jupe à plusieurs lignes vous aide à mieux préparer votre extrusion pour les petits modèles. Définissez celle valeur sur 0 pour désactiver la jupe." -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "La vitesse du ventilateur pour le radeau." +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "Hauteur de la jupe" -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "La vitesse du ventilateur pour les couches du dessus du radeau." +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "La jupe est plus facile à retirer lorsque sa ligne la plus intérieure est imprimée en plusieurs couches." -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "Emplacement du fichier d'une image dont les valeurs de luminosité déterminent la densité minimale à l'emplacement correspondant dans le remplissage de l'impression." +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Distance de la jupe" -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "Emplacement du fichier d'une image dont les valeurs de luminosité déterminent la densité minimale à l'emplacement correspondant dans le support." +msgctxt "skirt_gap description" +msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "La distance horizontale entre la jupe et la première couche de l’impression." +"Il s’agit de la distance minimale séparant la jupe de l’objet. Si la jupe a d’autres lignes, celles-ci s’étendront vers l’extérieur." -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "Les premières couches sont imprimées plus lentement que le reste du modèle afin d’obtenir une meilleure adhérence au plateau et d’améliorer le taux de réussite global des impressions. La vitesse augmente graduellement à chacune de ces couches." +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Longueur minimale de la jupe/bordure" -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "L’espace entre la dernière couche du radeau et la première couche du modèle. Seule la première couche est surélevée de cette quantité d’espace pour réduire l’adhérence entre la couche du radeau et le modèle. Cela facilite le décollage du radeau." +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "La longueur minimale de la jupe ou bordure. Si cette longueur n’est pas atteinte par toutes les lignes de jupe ou de bordure ensemble, d’autres lignes de jupe ou de bordure seront ajoutées afin d’atteindre la longueur minimale. Veuillez noter que si le nombre de lignes est défini sur 0, cette option est ignorée." -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "La hauteur (sens Z) de la zone imprimable." +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Largeur de la bordure" -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "La hauteur au-dessus des parties horizontales dans votre modèle pour laquelle imprimer le moule." +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "La distance entre le modèle et la ligne de bordure la plus à l'extérieur. Une bordure plus large renforce l'adhérence au plateau mais réduit également la zone d'impression réelle." -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "Hauteur à laquelle les ventilateurs tournent à la vitesse régulière. Pour les couches situées en-dessous, la vitesse des ventilateurs augmente progressivement de la vitesse des ventilateurs initiale jusqu'à la vitesse régulière." +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Nombre de lignes de la bordure" -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "La différence de hauteur entre la pointe de la buse et le système de portique (axes X et Y)." +msgctxt "brim_line_count description" +msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." +msgstr "Le nombre de lignes utilisées pour une bordure. Un plus grand nombre de lignes de bordure renforce l'adhérence au plateau mais réduit également la zone d'impression réelle." -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "La différence de hauteur entre la pointe de la buse et la partie la plus basse de la tête d'impression." +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Distance de la bordure" -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "La différence de hauteur lors de la réalisation d'un décalage en Z après changement d'extrudeuse." +msgctxt "brim_gap description" +msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." +msgstr "La distance horizontale entre la première ligne de bordure et le contour de la première couche de l'impression. Un petit trou peut faciliter l'enlèvement de la bordure tout en offrant des avantages thermiques." -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "La différence de hauteur lors de la réalisation d'un décalage en Z." +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "La bordure remplace le support" -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "La différence de hauteur lors de la réalisation d'un décalage en Z." +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "Appliquer la bordure à imprimer autour du modèle même si cet espace aurait autrement dû être occupé par le support, en remplaçant certaines régions de la première couche de support par des régions de la bordure." -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "La hauteur de chaque couche en mm. Des valeurs plus élevées créent des impressions plus rapides dans une résolution moindre, tandis que des valeurs plus basses entraînent des impressions plus lentes dans une résolution plus élevée." +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "Emplacement de la bordure" -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "La hauteur de remplissage d'une densité donnée avant de passer à la moitié de la densité." +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "Imprimez unr bordure à l'extérieur du modèle, à l'intérieur, ou les deux. En fonction du modèle, cette option permet de réduire la quantité de bordure que vous devez retirer par la suite, tout en garantissant une bonne adhérence au plateau." -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "La hauteur de remplissage de support d'une densité donnée avant de passer à la moitié de la densité." +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "À l'extérieur seulement" -msgctxt "interlocking_beam_layer_count description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "La hauteur des attaches de la structure de connexion, mesurée en nombre de couches. Des couches moins nombreuses seront plus solides, mais davantage sujettes à des imperfections." +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "À l'intérieur seulement" -msgctxt "interlocking_orientation description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "La hauteur des attaches de la structure de connexion, mesurée en nombre de couches. Des couches moins nombreuses seront plus solides, mais davantage sujettes à des imperfections." +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "Partout" -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "La hauteur de la couche initiale en mm. Une couche initiale plus épaisse adhère plus facilement au plateau." +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "Marge d'évitement de la bordure" + +msgctxt "brim_inside_margin description" +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "Une bordure autour d'un modèle peut toucher un autre modèle à un endroit où vous ne le souhaitez pas. Cette fonction supprime toutes les bordures à cette distance des modèles sans bordure." -msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "Augmenter cette valeur rendra la tour d'amorçage plus robuste car la base sera plus large. Si ce paramètre est trop bas, la tour d'amorçage n'aura pas une base solide." +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "Bordure intelligente" -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "La hauteur de la marche du support en forme d'escalier reposant sur le modèle. Une valeur faible rend le support plus difficile à enlever, mais des valeurs trop élevées peuvent entraîner des supports instables. Définir la valeur sur zéro pour désactiver le comportement en forme d'escalier." +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "Ce paramètre inverse l'ordre d'impression de la ligne de bordure la plus intérieure et de la deuxième ligne de bordure la plus intérieure. La bordure est ainsi plus facile à retirer." -msgctxt "brim_gap description" -msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." -msgstr "La distance horizontale entre la première ligne de bordure et le contour de la première couche de l'impression. Un petit trou peut faciliter l'enlèvement de la bordure tout en offrant des avantages thermiques." +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Marge supplémentaire du radeau" -msgctxt "skirt_gap description" -msgid "" -"The horizontal distance between the skirt and the first layer of the print.\n" -"This is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "" -"La distance horizontale entre la jupe et la première couche de l’impression.\n" -"Il s’agit de la distance minimale séparant la jupe de l’objet. Si la jupe a d’autres lignes, celles-ci s’étendront vers l’extérieur." +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Si vous avez appliqué un radeau, alors il s’agit de l’espace de radeau supplémentaire autour du modèle qui dispose déjà d’un radeau. L’augmentation de cette marge va créer un radeau plus solide, mais requiert davantage de matériau et laisse moins de place pour votre impression." -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "Les lignes de remplissage sont redressées pour gagner du temps d'impression. Il s'agit de l'angle maximal de saillie autorisé sur la longueur de la ligne de remplissage." +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "Marge supplémentaire de la base du radeau" -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "Le motif de remplissage est décalé de cette distance sur l'axe X." +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Si la base du radeau est activée, il s'agit de la zone de radeau supplémentaire autour du modèle qui reçoit également un radeau. En augmentant cette marge, vous créerez un radeau plus solide tout en utilisant plus de matériau et en laissant moins de surface pour votre impression." -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "Le motif de remplissage est décalé de cette distance sur l'axe Y." +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "Marge supplémentaire du milieu du radeau" -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Le diamètre intérieur de la buse. Modifiez ce paramètre si vous utilisez une taille de buse non standard." +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Si le milieu du radeau est activé, il s'agit de la zone de radeau supplémentaire autour du modèle qui reçoit également un radeau. En augmentant cette marge, vous créerez un radeau plus solide tout en utilisant plus de matériau et en laissant moins de surface pour votre impression." -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "La saccade selon laquelle la couche de base du radeau est imprimée." +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "Marge supplémentaire de la partie supérieure du radeau" -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "La saccade selon laquelle la couche du milieu du radeau est imprimée." +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Si la partie supérieure du radeau est activée, il s'agit de la zone de radeau supplémentaire autour du modèle qui se voit également attribuer un radeau. En augmentant cette marge, vous créerez un radeau plus solide tout en utilisant plus de matériau et en laissant moins de surface pour votre impression." -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "La saccade selon laquelle le radeau est imprimé." +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Supprimer les coins intérieurs du radeau" -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "La saccade selon laquelle les couches du dessus du radeau sont imprimées." +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Supprimez les coins intérieurs du radeau afin de le rendre convexe." -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "La plus grande largeur des zones de la couche extérieure inférieure à faire disparaître. Toute zone de la couche extérieure plus étroite que cette valeur disparaîtra. Ceci peut aider à limiter le temps et la quantité de matière utilisés pour imprimer la couche extérieure inférieure sur les surfaces obliques du modèle." +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "Enlever les coins intérieurs de la base du radeau" -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "La plus grande largeur des zones de la couche extérieure à faire disparaître. Toute zone de la couche extérieure plus étroite que cette valeur disparaîtra. Ceci peut aider à limiter le temps et la quantité de matière utilisés pour imprimer la couche extérieure supérieure/inférieure sur les surfaces obliques du modèle." +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "Enlevez les coins intérieurs de la base du radeau, ce qui donnera au radeau une forme convexe." -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "La plus grande largeur des zones de la couche extérieure supérieure à faire disparaître. Toute zone de la couche extérieure plus étroite que cette valeur disparaîtra. Ceci peut aider à limiter le temps et la quantité de matière utilisés pour imprimer la couche extérieure supérieure sur les surfaces obliques du modèle." +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "Enlever les coins intérieurs du milieu du radeau" -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "La couche à laquelle les ventilateurs tournent à la vitesse régulière. Si la vitesse régulière du ventilateur à la hauteur est définie, cette valeur est calculée et arrondie à un nombre entier." +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "Enlevez les coins intérieurs de la partie centrale du radeau, ce qui donnera une forme convexe au radeau." -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "La durée de couche qui définit la limite entre la vitesse régulière et la vitesse maximale du ventilateur. Les couches qui s'impriment moins vite que cette durée utilisent la vitesse régulière du ventilateur. Pour les couches plus rapides, la vitesse du ventilateur augmente progressivement jusqu'à atteindre la vitesse maximale." +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "Enlever les coins intérieurs de la partie supérieure du radeau" -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "La longueur de matériau rétracté pendant une rétraction." +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "Enlevez les coins intérieurs de la partie supérieure du radeau, ce qui donnera une forme convexe au radeau." -msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "Le facteur de magnitude utilisé pour la pente de la base de la tour d'amorçage. Si vous augmentez cette valeur, la base deviendra plus mince. Si vous la diminuez, la base deviendra plus épaisse." +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Lissage de radeau" -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "Matériau du plateau installé sur l'imprimante." +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Ce paramètre définit combien d'angles intérieurs sont arrondis dans le contour de radeau. Les angles internes sont arrondis en un demi-cercle avec un rayon égal à la valeur indiquée ici. Ce paramètre élimine également les cavités dans le contour de radeau qui sont d'une taille inférieure à ce cercle." -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "Hauteur maximale autorisée par rapport à la couche de base." +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "Lissage de la base du radeau" -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "L'angle maximal qu'une partie du bouclier de suintage peut adopter. Zéro degré est vertical et 90 degrés est horizontal. Un angle plus petit entraîne moins d'échecs au niveau des boucliers de suintage, mais utilise plus de matériaux." +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Ce paramètre détermine le degré d'arrondi des coins intérieurs du contour de la base du radeau. Les coins intérieurs sont arrondis à un demi-cercle dont le rayon est égal à la valeur donnée ici. Ce paramètre supprime également les trous dans le contour du radeau qui sont plus petits qu'un tel cercle." -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "L'angle maximal des porte-à-faux après qu'ils aient été rendus imprimables. À une valeur de 0°, tous les porte-à-faux sont remplacés par une pièce de modèle rattachée au plateau, tandis que 90° ne changera en rien le modèle." +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "Lissage du milieu du radeau" -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "Il s'agit de l'angle maximal des branches imprimées autour du modèle. Si vous utilisez un angle faible, les branches seront plus verticales et plus stables. Si vous utilisez un angle élevé, vous obtiendrez une plus grande portée." +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Ce paramètre détermine le degré d'arrondi des coins intérieurs du contour central du radeau. Les coins intérieurs sont arrondis à un demi-cercle dont le rayon est égal à la valeur donnée ici. Ce paramètre supprime également les trous dans le contour du radeau qui sont plus petits qu'un tel cercle." -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "Zone maximale d'un trou dans la base du modèle avant d'être retirée par l'outil Rendre le porte-à-faux imprimable. Les trous plus petits seront conservés. Une valeur de 0 mm² remplira tous les trous dans la base des modèles." +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "Lissage de la partie supérieure du radeau" -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "L'écart maximum autorisé lors de la réduction de la résolution pour le paramètre Résolution maximum. Si vous augmentez cette valeur, l'impression sera moins précise, mais le G-Code sera plus petit. L'écart maximum est une limite pour la résolution maximum. Donc si les deux entrent en conflit, l'Écart maximum restera valable." +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Ce paramètre détermine le degré d'arrondi des coins intérieurs du contour du radeau. Les coins intérieurs sont arrondis à un demi-cercle dont le rayon est égal à la valeur donnée ici. Ce paramètre supprime également les trous dans le contour du radeau qui sont plus petits qu'un tel cercle." -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "La distance maximale entre les supports dans les directions X/Y. Lorsque des modèle séparés sont plus rapprochés que cette valeur, ils fusionnent." +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Lame d'air du radeau" -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "La distance maximale en mm pour déplacer le filament afin de compenser les variations du débit." +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "L’espace entre la dernière couche du radeau et la première couche du modèle. Seule la première couche est surélevée de cette quantité d’espace pour réduire l’adhérence entre la couche du radeau et le modèle. Cela facilite le décollage du radeau." -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "L'écart maximal de la surface d'extrusion autorisé lors de la suppression des points intermédiaires d'une ligne droite. Un point intermédiaire peut servir de point de changement de largeur dans une longue ligne droite. Par conséquent, s'il est supprimé, la ligne aura une largeur uniforme et, par conséquent, cela engendrera la perte (ou le gain) d'un peu de surface d'extrusion. Si vous augmentez cette valeur, vous pourrez constater une légère sous-extrusion (ou sur-extrusion) entre les parois parallèles droites car davantage de points intermédiaires de changement de largeur pourront être supprimés. Votre impression sera moins précise, mais le G-code sera plus petit." +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Chevauchement Z de la couche initiale" -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "Le changement instantané maximal de vitesse durant l'impression de la couche initiale." +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "Faites en sorte que la première et la deuxième couche du modèle se chevauchent dans la direction Z pour compenser la perte de filament dans l'entrefer. Tous les modèles situés au-dessus de la première couche du modèle seront décalés vers le bas de cette valeur.\nOn peut noter que la deuxième couche est parfois imprimée en dessous de la couche initiale à cause de ce paramètre. Il s'agit d'un comportement voulu." -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "Le changement instantané maximal de vitesse de la tête d'impression." +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Épaisseur de la base du radeau" -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "Le changement instantané maximal de vitesse lors de l'étirage." +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "Épaisseur de la couche de base du radeau. Cette couche doit être épaisse et adhérer fermement au plateau." -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "Le changement instantané maximal de vitesse selon lequel les parois intérieures sont imprimées." +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Largeur de la ligne de base du radeau" -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "Le changement instantané maximal de vitesse selon lequel le remplissage est imprimé." +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "Largeur des lignes de la couche de base du radeau. Elles doivent être épaisses pour permettre l’adhérence au plateau." -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "Le changement instantané maximal de vitesse selon lequel les bas de support sont imprimés." +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Espacement des lignes de base du radeau" -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "Le changement instantané maximal de vitesse selon lequel le remplissage de support est imprimé." +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "La distance entre les lignes du radeau pour la couche de base de celui-ci. Un interligne large facilite le retrait du radeau du plateau." -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "Le changement instantané maximal de vitesse selon lequel les parois externes sont imprimées." +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Couches du milieu du radeau" -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "Le changement instantané maximal de vitesse selon lequel la tour d'amorçage est imprimée." +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "Nombre de couches entre la base et la surface du radeau. Elles comprennent l'épaisseur principale du radeau. En l'augmentant, on obtient un radeau plus épais et plus solide." -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "Le changement instantané maximal de vitesse selon lequel les plafonds et bas sont imprimés." +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Épaisseur intermédiaire du radeau" -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "Le changement instantané maximal de vitesse selon lequel les plafonds de support sont imprimés." +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "Épaisseur de la couche intermédiaire du radeau." -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "Le changement instantané maximal de vitesse selon lequel la jupe et la bordure sont imprimées." +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Largeur de la ligne intermédiaire du radeau" -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "Le changement instantané maximal de vitesse selon lequel la structure de support est imprimée." +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "Largeur des lignes de la couche intermédiaire du radeau. Une plus grande extrusion de la deuxième couche renforce l'adhérence des lignes au plateau." -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "Le changement instantané maximal de vitesse selon lequel les parois intérieures de la surface supérieure sont imprimées." +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Interligne intermédiaire du radeau" -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "Le changement instantané maximal de vitesse selon lequel la paroi extérieure de la surface supérieure est imprimée." +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "La distance entre les lignes du radeau pour la couche intermédiaire de celui-ci. L'espace intermédiaire doit être assez large et suffisamment dense pour supporter les couches supérieures du radeau." -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "Le changement instantané maximal de vitesse selon lequel les parois sont imprimées." +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Couches supérieures du radeau" + +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "Nombre de couches de surface au-dessus de la deuxième couche du radeau. Il s’agit des couches entièrement remplies sur lesquelles le modèle est posé. En général, deux couches offrent une surface plus lisse qu'une seule." -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "Le changement instantané maximal de vitesse selon lequel les couches extérieures de surface supérieure sont imprimées." +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Épaisseur de la couche supérieure du radeau" -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "Le changement instantané maximal de vitesse selon lequel les couches du dessus/dessous sont imprimées." +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Épaisseur des couches supérieures du radeau." -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "Le changement instantané maximal de vitesse selon lequel les déplacements s'effectuent." +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Largeur de la ligne supérieure du radeau" -msgctxt "prime_tower_max_bridging_distance description" -msgid "The maximum length of the branches which may be printed over the air." -msgstr "" +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "Largeur des lignes de la surface supérieure du radeau. Elles doivent être fines pour rendre le dessus du radeau lisse." -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "La vitesse maximale pour le moteur du sens X." +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Interligne supérieur du radeau" -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "La vitesse maximale pour le moteur du sens Y." +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "La distance entre les lignes du radeau pour les couches supérieures de celui-ci. Cet espace doit être égal à la largeur de ligne afin de créer une surface solide." -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "La vitesse maximale pour le moteur du sens Z." +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "Ordre monotone de la surface supérieure du radeau" -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "La vitesse maximale du filament." +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "Imprimez les lignes de la surface supérieure du radeau dans un ordre tel qu'elles se chevauchent toujours avec les lignes adjacentes dans une seule direction. Cette méthode prend un peu plus de temps à imprimer, mais donne à la surface un aspect plus homogène, ce qui est également visible sur la surface inférieure du modèle." -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "La largeur maximale de la marche du support en forme d'escalier reposant sur le modèle. Une valeur faible rend le support plus difficile à enlever, mais des valeurs trop élevées peuvent entraîner des supports instables." +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "Nombre de parois du radeau" -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "La distance minimale entre l'extérieur du moule et l'extérieur du modèle." +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "Nombre de contours à imprimer autour du motif linéaire du radeau." -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "La vitesse minimale de mouvement de la tête d'impression." +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Nombre de parois à la base du radeau" -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "La température minimale pendant le chauffage jusqu'à la température d'impression à laquelle l'impression peut démarrer." +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "Le nombre de contours à imprimer autour du motif linéaire dans la couche de base du radeau." -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "La durée minimale pendant laquelle une extrudeuse doit être inactive avant que la buse ait refroidi. Ce n'est que si une extrudeuse n'est pas utilisée pendant une durée supérieure à celle-ci qu'elle pourra refroidir jusqu'à la température de veille." +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "Nombre de parois du milieu du radeau" -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "Angle minimal des porte-à-faux internes pour lesquels le remplissage est ajouté. À une valeur de 0°, les objets sont totalement remplis, 90° ne fournira aucun remplissage." +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "Le nombre de contours à imprimer autour du motif linéaire dans les couches intermédiaires du radeau." -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "L'angle minimal des porte-à-faux pour lesquels un support est ajouté. À une valeur de 0 °, tous les porte-à-faux sont soutenus, tandis qu'à 90 °, aucun support ne sera créé." +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "Nombre de parois supérieures du radeau" -msgctxt "retraction_min_travel description" -msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." -msgstr "La distance minimale de déplacement nécessaire pour qu’une rétraction ait lieu. Cela permet d’éviter qu’un grand nombre de rétractions ne se produisent sur une petite portion." +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "Le nombre de contours à imprimer autour du motif linéaire dans les couches supérieures du radeau." -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "La longueur minimale de la jupe ou bordure. Si cette longueur n’est pas atteinte par toutes les lignes de jupe ou de bordure ensemble, d’autres lignes de jupe ou de bordure seront ajoutées afin d’atteindre la longueur minimale. Veuillez noter que si le nombre de lignes est défini sur 0, cette option est ignorée." +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Vitesse d’impression du radeau" -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "Largeur de ligne minimale pour les parois de polyligne de remplissage de l'espace de ligne médiane. Ce paramètre détermine à partir de quelle épaisseur de modèle 3D nous passons de l'impression de deux lignes de parois à l'impression de deux parois extérieures et d'une seule paroi centrale au milieu. Une largeur de ligne de paroi impaire minimale plus élevée conduit à une largeur de ligne de paroi paire plus élevée. La largeur maximale de la ligne de paroi impaire représente 2 fois la largeur minimale de la ligne de paroi paire." +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "La vitesse à laquelle le radeau est imprimé." -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "Largeur de ligne minimale pour les murs polygonaux normaux. Ce paramètre détermine à quelle épaisseur de modèle nous passons de l'impression d'une seule ligne de paroi fine à l'impression de deux lignes de paroi. Une largeur minimale de ligne de paroi paire plus élevée entraîne une largeur maximale de ligne de paroi impaire plus élevée. La largeur maximale de la ligne de paroi paire est calculée comme suit : largeur de la ligne de paroi extérieure + 0,5 * largeur minimale de la ligne de paroi impaire." +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Vitesse d’impression de la base du radeau" -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "La vitesse minimale d'impression, malgré le ralentissement dû à la durée minimale d'une couche. Si l'imprimante devait trop ralentir, la pression au niveau de la buse serait trop faible, ce qui résulterait en une mauvaise qualité d'impression." +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "La vitesse à laquelle la couche de base du radeau est imprimée. Cette couche doit être imprimée suffisamment lentement du fait que la quantité de matériau sortant de la buse est assez importante." -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "Taille minimum d'un segment de ligne après découpage. Si vous augmentez cette valeur, la maille aura une résolution plus faible. Cela peut permettre à l'imprimante de suivre la vitesse à laquelle elle doit traiter le G-Code et augmentera la vitesse de découpe en enlevant des détails de la maille que l'imprimante ne peut pas traiter de toute manière." +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Vitesse d’impression du milieu du radeau" -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "Taille minimale d'un segment de ligne de déplacement après la découpe. Si vous augmentez cette valeur, les mouvements de déplacement auront des coins moins lisses. Cela peut permettre à l'imprimante de suivre la vitesse à laquelle elle doit traiter le G-Code, mais cela peut réduire la précision de l'évitement du modèle." +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "La vitesse à laquelle la couche du milieu du radeau est imprimée. Cette couche doit être imprimée suffisamment lentement du fait que la quantité de matériau sortant de la buse est assez importante." -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "La pente minimum de la zone pour un effet de marche de support. Des valeurs basses devraient faciliter l'enlèvement du support sur les pentes peu superficielles ; des valeurs très basses peuvent donner des résultats vraiment contre-intuitifs sur d'autres pièces du modèle." +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Vitesse d’impression du dessus du radeau" -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "Temps minimum passé sur une couche. Cela force l'imprimante à ralentir afin de passer au minimum la durée définie ici sur une couche. Cela permet au matériau imprimé de refroidir correctement avant l'impression de la couche suivante. Les couches peuvent néanmoins prendre moins de temps que le temps de couche minimum si « Lift Head  » (Relever Tête) est désactivé et si la vitesse minimum serait autrement non respectée." +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "Vitesse à laquelle les couches du dessus du radeau sont imprimées. Elles doivent être imprimées légèrement plus lentement afin que la buse puisse lentement lisser les lignes de surface adjacentes." -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "Le volume minimum pour chaque touche de la tour d'amorçage afin de purger suffisamment de matériau." +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Accélération de l'impression du radeau" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "Le diamètre maximal d'une branche rattachée au modèle peut augmenter lorsqu'elle fusionne avec des branches pouvant atteindre le plateau. Le fait d'augmenter ce diamètre réduit le temps d'impression, mais agrandit la surface du support sur laquelle repose le modèle." +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "L'accélération selon laquelle le radeau est imprimé." -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "Le nom du modèle de votre imprimante 3D." +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Accélération de l'impression de la base du radeau" -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "ID buse pour un train d'extrudeuse, comme « AA 0.4 » et « BB 0.8 »." +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "L'accélération selon laquelle la couche de base du radeau est imprimée." -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "La buse contourne les pièces déjà imprimées lorsqu'elle se déplace. Cette option est disponible uniquement lorsque les détours sont activés." +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Accélération de l'impression du milieu du radeau" -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "La buse contourne les supports déjà imprimés lorsqu'elle se déplace. Cette option est disponible uniquement lorsque les détours sont activés." +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "L'accélération selon laquelle la couche du milieu du radeau est imprimée." -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "Le nombre de couches inférieures. Lorsqu'elle est calculée par l'épaisseur du dessous, cette valeur est arrondie à un nombre entier." +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Accélération de l'impression du dessus du radeau" -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "Le nombre de contours à imprimer autour du motif linéaire dans la couche de base du radeau." +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "L'accélération selon laquelle les couches du dessus du radeau sont imprimées." -msgctxt "raft_interface_wall_count description" -msgid "The number of contours to print around the linear pattern in the middle layers of the raft." -msgstr "" +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Saccade d’impression du radeau" -msgctxt "raft_surface_wall_count description" -msgid "The number of contours to print around the linear pattern in the top layers of the raft." -msgstr "" +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "La saccade selon laquelle le radeau est imprimé." -msgctxt "raft_wall_count description" -msgid "The number of contours to print around the linear pattern of the raft." -msgstr "" +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Saccade d’impression de la base du radeau" -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "Le nombre de couches de remplissage qui soutient les bords de la couche." +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "La saccade selon laquelle la couche de base du radeau est imprimée." -msgctxt "initial_bottom_layers description" -msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "Le nombre de couches inférieures initiales à partir du haut du plateau. Lorsqu'elle est calculée par l'épaisseur du dessous, cette valeur est arrondie à un nombre entier." +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Saccade d’impression du milieu du radeau" -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "Nombre de couches entre la base et la surface du radeau. Elles comprennent l'épaisseur principale du radeau. En l'augmentant, on obtient un radeau plus épais et plus solide." +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "La saccade selon laquelle la couche du milieu du radeau est imprimée." -msgctxt "brim_line_count description" -msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." -msgstr "Le nombre de lignes utilisées pour une bordure. Un plus grand nombre de lignes de bordure renforce l'adhérence au plateau mais réduit également la zone d'impression réelle." +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Saccade d’impression du dessus du radeau" -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "Nombre de lignes utilisées pour la bordure du support. L'augmentation du nombre de lignes de bordure améliore l'adhérence au plateau, mais demande un peu de matériau supplémentaire." +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "La saccade selon laquelle les couches du dessus du radeau sont imprimées." -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "Nombre de couches de surface au-dessus de la deuxième couche du radeau. Il s’agit des couches entièrement remplies sur lesquelles le modèle est posé. En général, deux couches offrent une surface plus lisse qu'une seule." +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Vitesse du ventilateur pendant le radeau" -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "Le nombre de couches supérieures. Lorsqu'elle est calculée par l'épaisseur du dessus, cette valeur est arrondie à un nombre entier." +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "La vitesse du ventilateur pour le radeau." -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "Nombre de couches extérieures supérieures. En général, une seule couche supérieure est suffisante pour générer des surfaces supérieures de qualité." +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Vitesse du ventilateur pour la base du radeau" -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Nombre de parois qui entourent le remplissage de support. L'ajout d'une paroi peut rendre l'impression de support plus fiable et mieux supporter les porte-à-faux, mais augmente le temps d'impression et la quantité de matériau nécessaire." +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "La vitesse du ventilateur pour la couche de base du radeau." + +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Vitesse du ventilateur pour le milieu du radeau" -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Le nombre de parois avec lesquelles entourer la surface inférieure de l'interface du support. L'ajout d'une paroi rend l'impression du support plus fiable et permet de mieux soutenir les saillies, mais augmente le temps d'impression et la quantité de matériau utilisé." +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "La vitesse du ventilateur pour la couche du milieu du radeau." -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Nombre de parois avec lesquelles entourer le toit de l'interface du support. L'ajout d'une paroi rend l'impression du support plus fiable et permet de mieux soutenir les saillies, mais augmente le temps d'impression et la quantité de matériau utilisé." +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Vitesse du ventilateur pour le dessus du radeau" -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Nombre de parois avec lesquelles entourer la surface de support. L'ajout d'une paroi rend l'impression du support plus fiable et permet de mieux soutenir les saillies, mais augmente le temps d'impression et la quantité de matériau utilisé." +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "La vitesse du ventilateur pour les couches du dessus du radeau." -msgctxt "wall_distribution_count description" -msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." -msgstr "Le nombre de parois, comptées à partir du centre, sur lesquelles la variation doit être répartie. Les valeurs inférieures signifient que les parois extérieures ne changent pas en termes de largeur." +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Double extrusion" -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "Le nombre de parois. Lorsqu'elle est calculée par l'épaisseur de la paroi, cette valeur est arrondie à un nombre entier." +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Paramètres utilisés pour imprimer avec plusieurs extrudeuses." -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "Le diamètre extérieur de la pointe de la buse." +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Activer la tour d'amorçage" -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "Le motif du matériau de remplissage de l'impression. La ligne et le remplissage en zigzag changent de sens à chaque alternance de couche, réduisant ainsi les coûts matériels. Les motifs en grille, en triangle, tri-hexagonaux, cubiques, octaédriques, quart cubiques, entrecroisés et concentriques sont entièrement imprimés sur chaque couche. Les remplissages gyroïdes, cubiques, quart cubiques et octaédriques changent à chaque couche afin d'offrir une répartition plus égale de la solidité dans chaque direction. Le remplissage éclair tente de minimiser le remplissage, en ne supportant que le plafond de l'objet." +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "Imprimer une tour à côté de l'impression qui sert à amorcer le matériau après chaque changement de buse." -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "Le motif des supports de l'impression. Les différentes options disponibles résultent en des supports difficiles ou faciles à retirer." +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "Type de tour d'amorçage" -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "Le motif des couches supérieures." +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
                                      • Normal: create a bucket in which secondary materials are primed
                                      • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
                                      " +msgstr "Comment générer la tour d'amorçage :
                                      • Normale : créer un pot dans lequel les matériaux secondaires sont amorcés
                                      • Entrelacée : créez une tour d'amorçage aussi peu dense que possible. Vous économiserez ainsi du temps et du filament, mais cette opération n'est possible que si les matériaux utilisés adhèrent les uns aux autres
                                      " -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Le motif des couches du dessus/dessous." +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "Normale" -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "Motif au bas de l'impression sur la première couche." +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "Entrelacée" -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "Le motif à utiliser pour étirer les surfaces supérieures." +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Taille de la tour d'amorçage" -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "Le motif d'impression pour les bas de support." +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "La largeur de la tour d'amorçage." -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "Le motif selon lequel l'interface du support avec le modèle est imprimée." +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Volume minimum de la tour d'amorçage" -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "Le motif d'impression pour les plafonds de support." +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "Le volume minimum pour chaque touche de la tour d'amorçage afin de purger suffisamment de matériau." -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "La position près de laquelle démarre l'impression de chaque partie dans une couche." +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "Distance maximale de porte-à-faux de la tour d'amorçage" -msgctxt "support_tree_angle_slow description" -msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." -msgstr "Ce paramètre détermine l'angle souhaité pour les branches, lorsqu'elles n'ont pas à contourner le modèle. Si vous utilisez un angle faible, les branches seront plus verticales et plus stables. Si vous utilisez un angle élevé, les branches fusionneront plus rapidement." +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "Longueur maximale des branches pouvant être imprimées dans le vide." -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "Il s'agit de l'emplacement souhaité pour les structures de support. Si les structures ne peuvent pas être placées à l'endroit souhaité, elles seront placées ailleurs, quitte à ce que ce soit sur le modèle." +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "Position X de la tour d'amorçage" -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "Le changement instantané maximal de vitesse pour la couche initiale." +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "Les coordonnées X de la position de la tour d'amorçage." -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "La forme du plateau sans prendre les zones non imprimables en compte." +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Position Y de la tour d'amorçage" -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "La forme de la tête d'impression. Ce sont des coordonnées par rapport à la position de la tête d'impression, qui est généralement la position de son premier extrudeur. Les dimensions à gauche et devant la tête d'impression doivent être des coordonnées négatives." +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "Les coordonnées Y de la position de la tour d'amorçage." -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "La taille de poches aux croisements à quatre branches dans le motif entrecroisé 3D, à des hauteurs où le motif se touche lui-même." +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Essuyer le bec d'impression inactif sur la tour d'amorçage" -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "Le plus petit volume qu'un mouvement d'extrusion doit entraîner avant d'autoriser la roue libre. Pour les petits mouvements d'extrusion, une pression moindre s'est formée dans le tube bowden, de sorte que le volume déposable en roue libre est alors réduit linéairement. Cette valeur doit toujours être supérieure au volume en roue libre." +msgctxt "prime_tower_wipe_enabled description" +msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." +msgstr "Après l'impression de la tour d'amorçage à l'aide d'une buse, nettoyer le matériau qui suinte de l'autre buse sur la tour d'amorçage." -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "La vitesse (°C/s) à laquelle la buse refroidit, sur une moyenne de la plage de températures d'impression normales et la température en veille." +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Base" +msgstr "Base de la tour d'amorçage" -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "La vitesse (°C/s) à laquelle la buse chauffe, sur une moyenne de la plage de températures d'impression normales et la température en veille." +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "En activant ce paramètre, votre tour d'amorçage aura un bord même si le modèle n'en a pas. Si vous souhaitez une base plus solide pour une tour élevée, vous pouvez augmenter la hauteur de la base." -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "La vitesse à laquelle toutes les parois internes seront imprimées. L’impression de la paroi interne à une vitesse supérieure réduira le temps d'impression global. Il est bon de définir cette vitesse entre celle de l'impression de la paroi externe et du remplissage." +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "Taille de la base de la tour d'amorçage" -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "Vitesse à laquelle les régions de la couche extérieure du pont sont imprimées." +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "La largeur du bord/de la base de la tour d'amorçage. Une base plus large améliore l'adhésion au plateau, mais réduit également la zone d'impression effective." -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "La vitesse à laquelle le remplissage est imprimé." +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "Hauteur de la base de la tour d'amorçage" -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "La vitesse à laquelle l'impression s'effectue." +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "Augmenter cette valeur rendra la tour d'amorçage plus robuste car la base sera plus large. Si ce paramètre est trop bas, la tour d'amorçage n'aura pas une base solide." -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "La vitesse à laquelle la couche de base du radeau est imprimée. Cette couche doit être imprimée suffisamment lentement du fait que la quantité de matériau sortant de la buse est assez importante." +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "Pente de la base de la tour d'amorçage" -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "Vitesse à laquelle les parois de pont sont imprimées." +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "Le facteur de magnitude utilisé pour la pente de la base de la tour d'amorçage. Si vous augmentez cette valeur, la base deviendra plus mince. Si vous la diminuez, la base deviendra plus épaisse." -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "Vitesse à laquelle les ventilateurs tournent au début de l'impression. Pour les couches suivantes, la vitesse des ventilateurs augmente progressivement jusqu'à la couche qui correspond à la vitesse régulière des ventilateurs en hauteur." +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "Espacement des lignes de radeau de la tour d'amorçage" -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "La vitesse à laquelle les ventilateurs tournent avant d'atteindre la limite. Lorsqu'une couche s'imprime plus rapidement que la limite, la vitesse du ventilateur augmente progressivement jusqu'à atteindre la vitesse maximale." +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "La distance entre les lignes de radeau pour la couche de radeau unique de la tour d'amorçage. Un espacement large permet un retrait facile du radeau du plateau" -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "La vitesse à laquelle les ventilateurs tournent sur la durée minimale d'une couche. La vitesse du ventilateur augmente progressivement entre la vitesse régulière du ventilateur et la vitesse maximale lorsque la limite est atteinte." +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Activer le bouclier de suintage" -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "La vitesse à laquelle le filament est préparé pendant une rétraction." +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "Activer le bouclier de suintage extérieur. Cela créera une coque autour du modèle qui est susceptible d'essuyer une deuxième buse si celle-ci est à la même hauteur que la première buse." -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "La vitesse à laquelle le filament est préparé pendant un déplacement de rétraction d'essuyage." +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Angle du bouclier de suintage" -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "La vitesse à laquelle le filament est poussé vers l'arrière après une rétraction de changement de buse." +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "L'angle maximal qu'une partie du bouclier de suintage peut adopter. Zéro degré est vertical et 90 degrés est horizontal. Un angle plus petit entraîne moins d'échecs au niveau des boucliers de suintage, mais utilise plus de matériaux." -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "La vitesse à laquelle le filament est rétracté et préparé pendant une rétraction." +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Distance du bouclier de suintage" -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "La vitesse à laquelle le filament est rétracté et préparé pendant un déplacement de rétraction d'essuyage." +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "Distance entre le bouclier de suintage et l'impression dans les directions X/Y." -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "La vitesse à laquelle le filament est rétracté pendant une rétraction de changement de buse." +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Distance de rétraction de changement de buse" -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "La vitesse à laquelle le filament est rétracté pendant une rétraction." +msgctxt "switch_extruder_retraction_amount description" +msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." +msgstr "Degré de rétraction lors de la commutation d'extrudeuses. Une valeur de 0 signifie qu'il n'y aura aucune rétraction. En général, cette valeur doit être équivalente à la longueur de la zone de chauffe." -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "La vitesse à laquelle le filament est rétracté pendant un déplacement de rétraction d'essuyage." +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Vitesse de rétraction de changement de buse" msgctxt "switch_extruder_retraction_speeds description" msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." msgstr "La vitesse à laquelle le filament est rétracté. Une vitesse de rétraction plus élevée fonctionne mieux, mais une vitesse de rétraction très élevée peut causer l'écrasement du filament." -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "La vitesse à laquelle le bas de support est imprimé. L'impression à une vitesse plus faible permet de renforcer l'adhésion du support au-dessus de votre modèle." - -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "La vitesse à laquelle le remplissage de support est imprimé. L'impression du remplissage à une vitesse plus faible permet de renforcer la stabilité." - -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "La vitesse à laquelle la couche du milieu du radeau est imprimée. Cette couche doit être imprimée suffisamment lentement du fait que la quantité de matériau sortant de la buse est assez importante." +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Vitesse de rétraction de changement de buse" -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "La vitesse à laquelle les parois externes sont imprimées. L’impression de la paroi externe à une vitesse inférieure améliore la qualité finale de la coque. Néanmoins, si la différence entre la vitesse de la paroi interne et la vitesse de la paroi externe est importante, la qualité finale sera réduite." +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "La vitesse à laquelle le filament est rétracté pendant une rétraction de changement de buse." -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "La vitesse à laquelle la tour d'amorçage est imprimée. L'impression plus lente de la tour d'amorçage peut la rendre plus stable lorsque l'adhérence entre les différents filaments est sous-optimale." +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Vitesse d'amorçage de changement de buse" -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "La vitesse à laquelle les ventilateurs de refroidissement de l'impression tournent." +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "La vitesse à laquelle le filament est poussé vers l'arrière après une rétraction de changement de buse." -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "La vitesse à laquelle le radeau est imprimé." +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Montant de l'amorce supplémentaire lors d'un changement de buse" -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "La vitesse à laquelle les plafonds et bas de support sont imprimés. Les imprimer à de plus faibles vitesses améliore la qualité des porte-à-faux." +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "Matériel supplémentaire à amorcer après le changement de buse." -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "La vitesse à laquelle les plafonds de support sont imprimés. Les imprimer à de plus faibles vitesses améliore la qualité des porte-à-faux." +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Corrections" -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "La vitesse à laquelle la jupe et la bordure sont imprimées. Normalement, cette vitesse est celle de la couche initiale, mais il est parfois nécessaire d’imprimer la jupe ou la bordure à une vitesse différente." +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Rendez les mailles plus adaptées à l'impression 3D." -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "La vitesse à laquelle les supports sont imprimés. Imprimer les supports à une vitesse supérieure peut fortement accélérer l’impression. Par ailleurs, la qualité de la structure des supports n’a généralement pas beaucoup d’importance du fait qu'elle est retirée après l'impression." +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Joindre les volumes se chevauchant" -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "Vitesse à laquelle les couches du dessus du radeau sont imprimées. Elles doivent être imprimées légèrement plus lentement afin que la buse puisse lentement lisser les lignes de surface adjacentes." +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "Ignorer la géométrie interne pouvant découler de volumes se chevauchant à l'intérieur d'un maillage et imprimer les volumes comme un seul. Cela peut entraîner la disparition des cavités internes accidentelles." -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "La vitesse à laquelle les parois internes de la surface supérieure sont imprimées." +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Supprimer tous les trous" -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "La vitesse à laquelle la paroi externe de la surface supérieure est imprimée." +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "Supprime les trous dans chacune des couches et conserve uniquement la forme extérieure. Tous les détails internes invisibles seront ignorés. Il en va de même pour les trous qui pourraient être visibles depuis le dessus ou le dessous de la pièce." -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "La vitesse à laquelle le mouvement vertical en Z est effectué pour des décalages en Z. Cette vitesse est généralement inférieure à la vitesse d'impression car le plateau ou le portique de la machine est plus difficile à déplacer." +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Raccommodage" -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "La vitesse à laquelle les parois sont imprimées." +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "Le raccommodage consiste en la suppression des trous dans le maillage en tentant de fermer le trou avec des intersections entre polygones existants. Cette option peut induire beaucoup de temps de calcul." -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "La vitesse à laquelle passer sur la surface supérieure." +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Conserver les faces disjointes" -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "La vitesse à laquelle rétracter le filament afin de le rompre proprement." +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "Normalement, Cura essaye de raccommoder les petits trous dans le maillage et supprime les parties des couches contenant de gros trous. Activer cette option pousse Cura à garder les parties qui ne peuvent être raccommodées. Cette option doit être utilisée en dernier recours quand tout le reste échoue à produire un G-Code correct." -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "La vitesse à laquelle les couches extérieures de la surface supérieure sont imprimées." +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Chevauchement des mailles fusionnées" -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "La vitesse à laquelle les couches du dessus/dessous sont imprimées." +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "Faire de sorte que les maillages qui se touchent se chevauchent légèrement. Cela permet aux maillages de mieux adhérer les uns aux autres." -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "La vitesse à laquelle les déplacements s'effectuent." +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Supprimer l'intersection des mailles" -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "Vitesse de déplacement pendant une roue libre, par rapport à la vitesse de déplacement pendant l'extrusion. Une valeur légèrement inférieure à 100 % est conseillée car, lors du mouvement en roue libre, la pression dans le tube bowden chute." +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "Supprime les zones sur lesquelles plusieurs mailles se chevauchent. Cette option peut être utilisée si des objets à matériau double fusionné se chevauchent." -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "La vitesse de la couche initiale. Une valeur plus faible est recommandée pour améliorer l'adhérence au plateau de fabrication. N'affecte pas les structures d'adhérence au plateau, comme la bordure et le radeau." +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "Alterner le retrait des maillages" -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "La vitesse d'impression de la couche initiale. Une valeur plus faible est recommandée pour améliorer l'adhérence au plateau." +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "Passe aux volumes d'intersection de maille qui appartiennent à chaque couche, de manière à ce que les mailles qui se chevauchent soient entrelacées. Si vous désactivez ce paramètre, l'une des mailles obtiendra tout le volume dans le chevauchement tandis qu'il est retiré des autres mailles." -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "Vitesse des mouvements de déplacement dans la couche initiale. Une valeur plus faible est recommandée pour éviter que les pièces déjà imprimées ne s'écartent du plateau. La valeur de ce paramètre peut être calculée automatiquement à partir du ratio entre la vitesse des mouvements et la vitesse d'impression." +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Supprimer les premières couches vides" -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "La température à laquelle le filament est cassé pour une rupture propre." +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "Supprimer les couches vides sous la première couche imprimée si elles sont présentes. Le fait de désactiver ce paramètre peut entraîner l'apparition de premières couches vides si le paramètre Tolérance à la découpe est défini sur Exclusif ou Milieu." -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "La température de l'environnement d'impression. Si cette valeur est 0, la température du volume d'impression ne sera pas ajustée." +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Résolution maximum" -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "La température de la buse lorsqu'une autre buse est actuellement utilisée pour l'impression." +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "Taille minimum d'un segment de ligne après découpage. Si vous augmentez cette valeur, la maille aura une résolution plus faible. Cela peut permettre à l'imprimante de suivre la vitesse à laquelle elle doit traiter le G-Code et augmentera la vitesse de découpe en enlevant des détails de la maille que l'imprimante ne peut pas traiter de toute manière." -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "La température à laquelle le refroidissement commence juste avant la fin de l'impression." +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Résolution de déplacement maximum" -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer." -msgstr "La température utilisée pour l'impression de la première couche." +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "Taille minimale d'un segment de ligne de déplacement après la découpe. Si vous augmentez cette valeur, les mouvements de déplacement auront des coins moins lisses. Cela peut permettre à l'imprimante de suivre la vitesse à laquelle elle doit traiter le G-Code, mais cela peut réduire la précision de l'évitement du modèle." -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "Température utilisée pour l'impression." +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Écart maximum" -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "Température utilisée pour le plateau de fabrication chauffé à la première couche. Si elle est définie sur 0, le plateau de fabrication ne sera pas chauffé lors de la première couche." +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "L'écart maximum autorisé lors de la réduction de la résolution pour le paramètre Résolution maximum. Si vous augmentez cette valeur, l'impression sera moins précise, mais le G-Code sera plus petit. L'écart maximum est une limite pour la résolution maximum. Donc si les deux entrent en conflit, l'Écart maximum restera valable." -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "Température utilisée pour le plateau de fabrication chauffé. Si elle est définie sur 0, le plateau de fabrication ne sera pas chauffé." +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Écart maximal de la surface d'extrusion" -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "La température utilisée pour purger le matériau devrait être à peu près égale à la température d'impression la plus élevée possible." +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "L'écart maximal de la surface d'extrusion autorisé lors de la suppression des points intermédiaires d'une ligne droite. Un point intermédiaire peut servir de point de changement de largeur dans une longue ligne droite. Par conséquent, s'il est supprimé, la ligne aura une largeur uniforme et, par conséquent, cela engendrera la perte (ou le gain) d'un peu de surface d'extrusion. Si vous augmentez cette valeur, vous pourrez constater une légère sous-extrusion (ou sur-extrusion) entre les parois parallèles droites car davantage de points intermédiaires de changement de largeur pourront être supprimés. Votre impression sera moins précise, mais le G-code sera plus petit." -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "L’épaisseur des couches du dessous dans l'impression. Cette valeur divisée par la hauteur de la couche définit le nombre de couches du dessous." +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "Activer le mouvement fluide" -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "L'épaisseur du remplissage supplémentaire qui soutient les bords de la couche." +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "Lorsqu'ils sont activés, les parcours d'outils sont corrigés pour les imprimantes dotées de planificateurs de mouvements fluides. Les petits mouvements qui s'écartent de la direction générale de la trajectoire de l'outil sont lissés pour optimiser la fluidité des mouvements." -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "L'épaisseur de l'interface du support à l'endroit auquel il touche le modèle, sur le dessous ou le dessus." +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "Distance de décalage du mouvement fluide" -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "L'épaisseur des bas de support. Cela contrôle le nombre de couches denses imprimées sur le dessus des endroits d'un modèle sur lequel le support repose." +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Les points de distance sont décalés pour lisser le chemin" -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "L'épaisseur des plafonds de support. Cela contrôle la quantité de couches denses sur le dessus du support sur lequel le modèle repose." +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "Faible distance de décalage du mouvement fluide" -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "L’épaisseur des couches du dessus dans l'impression. Cette valeur divisée par la hauteur de la couche définit le nombre de couches du dessus." +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Les points de distance sont décalés pour lisser le chemin" -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "L’épaisseur des couches du dessus/dessous dans l'impression. Cette valeur divisée par la hauteur de la couche définit le nombre de couches du dessus/dessous." +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "Angle de mouvement fluide" -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "Épaisseur des parois en sens horizontal. Cette valeur divisée par la largeur de la ligne de la paroi définit le nombre de parois." +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "Si un segment du parcours d'outil s'écarte d'une valeur supérieure à cet angle par rapport au mouvement général, il est lissé." -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "L'épaisseur par couche de matériau de remplissage. Cette valeur doit toujours être un multiple de la hauteur de la couche et arrondie." +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Modes spéciaux" -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "L'épaisseur par couche de matériau de remplissage de support. Cette valeur doit toujours être un multiple de la hauteur de la couche et arrondie." +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Des moyens non traditionnels d'imprimer vos modèles." + +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Séquence d'impression" -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "Type de G-Code à générer." +msgctxt "print_sequence description" +msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." +msgstr "Imprime tous les modèles en même temps, couche par couche, ou attend la fin d'un modèle pour en commencer un autre. Le mode « Un modèle à la fois » est disponible seulement si a) une seule extrudeuse est activée et si b) tous les modèles sont suffisamment éloignés pour que la tête puisse passer entre eux et qu'ils sont tous inférieurs à la distance entre la buse et les axes X/Y." -msgctxt "material_type description" -msgid "The type of material used." -msgstr "" +msgctxt "print_sequence option all_at_once" +msgid "All at Once" +msgstr "Tout en même temps" -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "Volume de matière qui devrait suinter de la buse. Cette valeur doit généralement rester proche du diamètre de la buse au cube." +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "Un à la fois" -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "La largeur (sens X) de la zone imprimable." +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Définir la séquence d'impression manuellement" -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "Largeur de la bordure à imprimer sous le support. Une plus grande bordure améliore l'adhérence au plateau, mais demande un peu de matériau supplémentaire." +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "Permet d'ordonner la liste d'objets pour définir manuellement la séquence d'impression. Le premier objet de la liste sera imprimé en premier." -msgctxt "interlocking_beam_width description" -msgid "The width of the interlocking structure beams." -msgstr "La largeur des attaches de la structure de connexion." +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Maille de remplissage" -msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "La largeur du bord/de la base de la tour d'amorçage. Une base plus large améliore l'adhésion au plateau, mais réduit également la zone d'impression effective." +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "Utiliser cette maille pour modifier le remplissage d'autres mailles qu'elle chevauche. Remplace les régions de remplissage d'autres mailles par des régions de cette maille. Il est conseillé d'imprimer uniquement une Paroi et pas de Couche du dessus/dessous pour cette maille." -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "La largeur de la tour d'amorçage." +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "Rang de traitement du maillage" -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "Largeur autorisée pour l'agitation aléatoire. Il est conseillé de garder cette valeur inférieure à l'épaisseur de la paroi extérieure, ainsi, les parois intérieures ne seront pas altérées." +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "Détermine la priorité de cette maille lorsque plusieurs chevauchements de mailles de remplissage sont pris en considération. Les zones comportant plusieurs chevauchements de mailles de remplissage prendront en compte les paramètres du maillage ayant l'ordre le plus élevé. Une maille de remplissage possédant un ordre plus élevé modifiera le remplissage des mailles de remplissage ayant un ordre plus bas et des mailles normales." -msgctxt "retraction_extrusion_window description" -msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." -msgstr "L'intervalle dans lequel le nombre maximal de rétractions est incrémenté. Cette valeur doit être du même ordre de grandeur que la distance de rétraction, limitant ainsi le nombre de mouvements de rétraction sur une même portion de matériau." +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Maille de coupe" -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "Les coordonnées X de la position de la tour d'amorçage." +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "Limiter le volume de ce maillage à celui des autres maillages. Cette option permet de faire en sorte que certaines zones d'un maillage s'impriment avec des paramètres différents et avec une extrudeuse entièrement différente." -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "Les coordonnées Y de la position de la tour d'amorçage." +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Moule" -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "Un maillage de support est présent sur la scène. Ce paramètre est contrôlé par Cura." +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "Imprimer les modèles comme moule, qui peut être coulé afin d'obtenir un modèle ressemblant à ceux présents sur le plateau." -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "Ce paramètre contrôle la distance que l'extrudeuse doit parcourir en roue libre immédiatement avant le début d'une paroi de pont. L'utilisation de la roue libre avant le début du pont permet de réduire la pression à l'intérieur de la buse et d'obtenir un pont plus plat." +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Largeur minimale de moule" -msgctxt "raft_base_smoothing description" -msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "La distance minimale entre l'extérieur du moule et l'extérieur du modèle." -msgctxt "raft_interface_smoothing description" -msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Hauteur du plafond de moule" -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Ce paramètre définit combien d'angles intérieurs sont arrondis dans le contour de radeau. Les angles internes sont arrondis en un demi-cercle avec un rayon égal à la valeur indiquée ici. Ce paramètre élimine également les cavités dans le contour de radeau qui sont d'une taille inférieure à ce cercle." +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "La hauteur au-dessus des parties horizontales dans votre modèle pour laquelle imprimer le moule." -msgctxt "raft_surface_smoothing description" -msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Angle du moule" -msgctxt "retraction_count_max description" -msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." -msgstr "Ce paramètre limite le nombre de rétractions dans l'intervalle de distance minimal d'extrusion. Les rétractions qui dépassent cette valeur seront ignorées. Cela évite les rétractions répétitives sur le même morceau de filament, car cela risque de l’aplatir et de générer des problèmes d’écrasement." +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "L'angle de porte-à-faux des parois externes créées pour le moule. La valeur 0° rendra la coque externe du moule verticale, alors que 90° fera que l'extérieur du modèle suive les contours du modèle." -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "Cela créera une paroi autour du modèle qui retient l'air (chaud) et protège contre les courants d'air. Particulièrement utile pour les matériaux qui se soulèvent facilement." +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Maillage de support" -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "Diamètre des extrémités" +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "Utiliser ce maillage pour spécifier des zones de support. Cela peut être utilisé pour générer une structure de support." -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "Pour compenser le rétrécissement du matériau lors du refroidissement, le modèle sera mis à l'échelle avec ce facteur dans la direction XY (horizontalement)." +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Maillage anti-surplomb" -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "Pour compenser le rétrécissement du matériau lors du refroidissement, le modèle sera mis à l'échelle avec ce facteur dans la direction Z (verticalement)." +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "Utiliser cette maille pour préciser à quel endroit aucune partie du modèle doit être détectée comme porte-à-faux. Cette option peut être utilisée pour supprimer la structure de support non souhaitée." -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "Pour compenser la contraction du matériau lors de son refroidissement, le modèle est mis à l'échelle avec ce facteur." +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Mode de surface" -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Couches supérieures" +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "Traite le modèle comme surface seule, un volume ou des volumes avec des surfaces seules. Le mode d'impression normal imprime uniquement des volumes fermés. « Surface » imprime une paroi seule autour de la surface de la maille, sans remplissage ni couche du dessus/dessous. « Les deux » imprime des volumes fermés comme en mode normal et les polygones restants comme surfaces." -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Distance d'expansion de la couche extérieure supérieure" +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Normal" -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Largeur de retrait de la couche extérieure supérieure" +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Surface" -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Accélération des parois internes de la surface supérieure" +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Les deux" -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Saccade des parois internes de la surface supérieure" +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Spiraliser le contour extérieur" -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Vitesse d'impression des parois internes de la surface supérieure" +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "Cette fonction ajuste le déplacement en Z sur le bord extérieur. Cela va créer une augmentation stable de Z sur toute l’impression. Cette fonction transforme un modèle solide en une impression à paroi unique avec une base solide. Cette fonctionnalité doit être activée seulement lorsque chaque couche contient uniquement une seule partie." -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Débit des parois internes de la surface supérieure" +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Lisser les contours spiralisés" -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Accélération de la paroi externe de la surface supérieure" +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "Lisser les contours spiralisés pour réduire la visibilité de la jointure en Z (la jointure en Z doit être à peine visible sur l'impression mais sera toujours visible dans la vue en couches). Veuillez remarquer que le lissage aura tendance à estomper les détails très fins de la surface." -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Débit de la paroi externe de la surface supérieure" +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Extrusion relative" -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Saccade de la paroi externe de la surface supérieure" +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "Utiliser l'extrusion relative au lieu de l'extrusion absolue. L'utilisation de pas E relatifs facilite le post-traitement du G-Code. Toutefois, cela n'est pas pris en charge par toutes les imprimantes et peut occasionner de très légers écarts dans la quantité de matériau déposé, par rapport à l'utilisation des pas E absolus. Indépendamment de ce paramètre, le mode d'extrusion sera défini par défaut comme absolu avant qu'un quelconque script de G-Code soit produit." -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Vitesse d'impression de la paroi externe de la surface supérieure" +msgctxt "experimental label" +msgid "Experimental" +msgstr "Expérimental" -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Accélération de couche extérieure de surface supérieure" +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Des fonctionnalités qui n'ont pas encore été complètement développées." -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Extrudeuse de couche extérieure de la surface supérieure" +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Tolérance à la découpe" -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Débit de la surface du dessus" +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "Tolérance verticale dans les couches découpées. Les contours d'une couche sont normalement générés en faisant passer les sections entrecroisées au milieu de chaque épaisseur de couche (Milieu). Alternativement, chaque couche peut posséder des zones situées à l'intérieur du volume à travers toute l'épaisseur de la couche (Exclusif) ou une couche peut avoir des zones situées à l'intérieur à tout endroit dans la couche (Inclusif). L'option Inclusif permet de conserver le plus de détails ; l'option Exclusif permet d'obtenir une adaptation optimale ; l'option Milieu permet de rester proche de la surface d'origine." -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Saccade de couches extérieures de la surface supérieure" +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Milieu" -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Couches extérieures de la surface supérieure" +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Exclusif" -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Sens de lignes de couche extérieure de surface supérieure" +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Inclusif" -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Largeur de ligne de couche extérieure de la surface supérieure" +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Optimisation du déplacement de remplissage" -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Motif de couche extérieure de surface supérieure" +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "Lorsque cette option est activée, l'ordre dans lequel les lignes de remplissage sont imprimées est optimisé pour réduire la distance parcourue. La réduction du temps de parcours dépend en grande partie du modèle à découper, du type de remplissage, de la densité, etc. Remarque : pour certains modèles possédant beaucoup de petites zones de remplissage, le temps de découpe du modèle peut en être considérablement augmenté." -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Vitesse de la couche extérieure de la surface supérieure" +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Graphique de la température du flux" -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Épaisseur du dessus" +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "Données reliant le flux de matériau (en mm3 par seconde) à la température (degrés Celsius)." -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "Les couches extérieures supérieures / inférieures des surfaces supérieures et / ou inférieures de votre objet possédant un angle supérieur à ce paramètre ne seront pas étendues. Cela permet d'éviter d'étendre les zones de couche extérieure étroites qui sont créées lorsque la surface du modèle possède une pente proche de la verticale. Un angle de 0° est horizontal et évitera l'extension des couches ; un angle de 90° est vertical et entraînera l'extension de toutes les couches." +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Circonférence minimale du polygone" -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Haut / bas" +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "Les polygones en couches tranchées dont la circonférence est inférieure à cette valeur seront filtrés. Des valeurs élevées permettent d'obtenir un maillage de meilleure résolution mais augmentent le temps de découpe. Cette option est principalement destinée aux imprimantes SLA haute résolution et aux modèles 3D de très petite taille avec beaucoup de détails." -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Haut / bas" +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "Générer une structure de connexion" -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Accélération du dessus/dessous" +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "Aux endroits où les modèles 3D se touchent, générez une structure d'attaches de connexion. Cette fonctionnalité améliore l'adhérence entre les modèles 3D, en particulier ceux imprimés avec des matériaux différents." -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Extrudeuse du dessus/dessous" +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "Largeur des attaches de connexion" -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Débit du dessus/dessous" +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "La largeur des attaches de la structure de connexion." -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Saccade du dessus/dessous" +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "Orientation de la structure de connexion" -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Sens de la ligne du dessus / dessous" +msgctxt "interlocking_orientation description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "La hauteur des attaches de la structure de connexion, mesurée en nombre de couches. Des couches moins nombreuses seront plus solides, mais davantage sujettes à des imperfections." -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Largeur de la ligne du dessus/dessous" +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "Nombre de couches des attaches de connexion" -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Motif du dessus/dessous" +msgctxt "interlocking_beam_layer_count description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "La hauteur des attaches de la structure de connexion, mesurée en nombre de couches. Des couches moins nombreuses seront plus solides, mais davantage sujettes à des imperfections." -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Vitesse d'impression du dessus/dessous" +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "Profondeur de connexion" -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Épaisseur du dessus/dessous" +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "Limite de distance entre les modèles 3D à partir de laquelle générer une structure de connexion, mesurée en cellules. Un nombre de cellules trop bas entraînera une mauvaise adhérence." -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "En contact avec le plateau" +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "Distance limite de connexion" -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Diamètre de la tour" +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "Distance depuis l'extérieur d'un modèle 3D à partir de laquelle les structures de connexion ne seront pas générées, mesurée en cellules." -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Angle du toit de la tour" +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Démantèlement du support en morceaux" -msgctxt "mesh_rotation_matrix description" -msgid "Transformation matrix to be applied to the model when loading it from file." -msgstr "Matrice de transformation à appliquer au modèle lors de son chargement depuis le fichier." +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "Ignorer certaines connexions de ligne du support pour rendre la structure de support plus facile à casser. Ce paramètre s'applique au motif de remplissage du support en zigzag." -msgctxt "travel label" -msgid "Travel" -msgstr "Déplacement" +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Taille de morceaux du support" -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Accélération de déplacement" +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "Ignorer une connexion entre lignes du support tous les N millimètres, pour rendre la structure de support plus facile à casser." -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Distance d'évitement du déplacement" +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Comptage des lignes de morceaux du support" -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Saccade de déplacement" +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "Ignorer une ligne de connexion sur N pour rendre la structure de support plus facile à casser." -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Vitesse de déplacement" +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Activer le bouclier" -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "Traite le modèle comme surface seule, un volume ou des volumes avec des surfaces seules. Le mode d'impression normal imprime uniquement des volumes fermés. « Surface » imprime une paroi seule autour de la surface de la maille, sans remplissage ni couche du dessus/dessous. « Les deux » imprime des volumes fermés comme en mode normal et les polygones restants comme surfaces." +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "Cela créera une paroi autour du modèle qui retient l'air (chaud) et protège contre les courants d'air. Particulièrement utile pour les matériaux qui se soulèvent facilement." -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Arborescence" +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Distance X/Y du bouclier" -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Trihexagonal" +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "Distance entre la pièce et le bouclier dans les directions X et Y." -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Triangles" +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Limite du bouclier" -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Triangles" +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "Définit la hauteur du bouclier. Choisissez d'imprimer le bouclier à la pleine hauteur du modèle ou à une hauteur limitée." -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Triangles" +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Pleine hauteur" -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Triangles" +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Limitée" -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Triangles" +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Hauteur du bouclier" -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "Diamètre du tronc" +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "Hauteur limite du bouclier. Au-delà de cette hauteur, aucun bouclier ne sera imprimé." -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Rendre le porte-à-faux imprimable" -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Joindre les volumes se chevauchant" +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "Change la géométrie du modèle imprimé de manière à nécessiter un support minimal. Les porte-à-faux abrupts deviendront des porte-à-faux minces. Les zones en porte-à-faux descendront pour devenir plus verticales." -msgctxt "bridge_wall_min_length description" -msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." -msgstr "Les parois non supportées dont la longueur est inférieure à cette valeur seront imprimées selon les paramètres de parois normaux, tandis que celles dont la longueur est supérieure à cette valeur seront imprimées selon les paramètres de parois du pont." +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Angle maximal du modèle" -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Utiliser des couches adaptatives" +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "L'angle maximal des porte-à-faux après qu'ils aient été rendus imprimables. À une valeur de 0°, tous les porte-à-faux sont remplacés par une pièce de modèle rattachée au plateau, tandis que 90° ne changera en rien le modèle." -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Utilisation de tours" +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Surface maximale du trou en porte-à-faux" -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "Utilisez un taux d'accélération distinct pour les déplacements. Si cette option est désactivée, les déplacements utiliseront la même accélération que celle de la ligne imprimée à l'emplacement cible." +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "Zone maximale d'un trou dans la base du modèle avant d'être retirée par l'outil Rendre le porte-à-faux imprimable. Les trous plus petits seront conservés. Une valeur de 0 mm² remplira tous les trous dans la base des modèles." -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "Utilisez un taux de saccades différent pour les déplacements. Si cette option est désactivée, les déplacements utiliseront les mêmes saccades que celles de la ligne imprimée à l'emplacement cible." +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Activer la roue libre" -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "Utiliser l'extrusion relative au lieu de l'extrusion absolue. L'utilisation de pas E relatifs facilite le post-traitement du G-Code. Toutefois, cela n'est pas pris en charge par toutes les imprimantes et peut occasionner de très légers écarts dans la quantité de matériau déposé, par rapport à l'utilisation des pas E absolus. Indépendamment de ce paramètre, le mode d'extrusion sera défini par défaut comme absolu avant qu'un quelconque script de G-Code soit produit." +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "L'option « roue libre » remplace la dernière partie d'un mouvement d'extrusion par un mouvement de déplacement. Le matériau qui suinte de la buse est alors utilisé pour imprimer la dernière partie du tracé du mouvement d'extrusion, ce qui réduit le stringing." -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "Utilise des tours spéciales pour soutenir de petites zones en porte-à-faux. Le diamètre de ces tours est plus large que la zone qu’elles soutiennent. Près du porte-à-faux, le diamètre des tours diminue pour former un toit." +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Volume en roue libre" -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "Utiliser cette maille pour modifier le remplissage d'autres mailles qu'elle chevauche. Remplace les régions de remplissage d'autres mailles par des régions de cette maille. Il est conseillé d'imprimer uniquement une Paroi et pas de Couche du dessus/dessous pour cette maille." +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "Volume de matière qui devrait suinter de la buse. Cette valeur doit généralement rester proche du diamètre de la buse au cube." + +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Volume minimal avant roue libre" -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "Utiliser ce maillage pour spécifier des zones de support. Cela peut être utilisé pour générer une structure de support." +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "Le plus petit volume qu'un mouvement d'extrusion doit entraîner avant d'autoriser la roue libre. Pour les petits mouvements d'extrusion, une pression moindre s'est formée dans le tube bowden, de sorte que le volume déposable en roue libre est alors réduit linéairement. Cette valeur doit toujours être supérieure au volume en roue libre." -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "Utiliser cette maille pour préciser à quel endroit aucune partie du modèle doit être détectée comme porte-à-faux. Cette option peut être utilisée pour supprimer la structure de support non souhaitée." +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Vitesse de roue libre" -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Utilisateur spécifié" +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "Vitesse de déplacement pendant une roue libre, par rapport à la vitesse de déplacement pendant l'extrusion. Une valeur légèrement inférieure à 100 % est conseillée car, lors du mouvement en roue libre, la pression dans le tube bowden chute." -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Compensation du rétrécissement du facteur d'échelle verticale" +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Taille de poches entrecroisées 3D" -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "Tolérance verticale dans les couches découpées. Les contours d'une couche sont normalement générés en faisant passer les sections entrecroisées au milieu de chaque épaisseur de couche (Milieu). Alternativement, chaque couche peut posséder des zones situées à l'intérieur du volume à travers toute l'épaisseur de la couche (Exclusif) ou une couche peut avoir des zones situées à l'intérieur à tout endroit dans la couche (Inclusif). L'option Inclusif permet de conserver le plus de détails ; l'option Exclusif permet d'obtenir une adaptation optimale ; l'option Milieu permet de rester proche de la surface d'origine." +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "La taille de poches aux croisements à quatre branches dans le motif entrecroisé 3D, à des hauteurs où le motif se touche lui-même." -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Attendre le chauffage du plateau" +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Image de densité du remplissage croisé" -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Attendre le chauffage de la buse" +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "Emplacement du fichier d'une image dont les valeurs de luminosité déterminent la densité minimale à l'emplacement correspondant dans le remplissage de l'impression." -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Accélération de la paroi" +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Image de densité du remplissage croisé pour le support" -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Nombre de distributions des parois" +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "Emplacement du fichier d'une image dont les valeurs de luminosité déterminent la densité minimale à l'emplacement correspondant dans le support." -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Extrudeuse de paroi" +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Activer les supports coniques" -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Débit de paroi" +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "Rendre les aires de support plus petites en bas qu'au niveau du porte-à-faux à supporter." -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Saccade de paroi" +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Angle des supports coniques" -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Nombre de lignes de la paroi" +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "Angle d'inclinaison des supports coniques. Un angle de 0 degré est vertical tandis qu'un angle de 90 degrés est horizontal. Les petits angles rendent le support plus solide mais utilisent plus de matière. Les angles négatifs rendent la base du support plus large que le sommet." -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Largeur de ligne de la paroi" +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Largeur minimale des supports coniques" -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Ordre des parois" +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "Largeur minimale à laquelle la base du support conique est réduite. Des largeurs étroites peuvent entraîner des supports instables." -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Vitesse d'impression de la paroi" +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Surfaces floues" -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Épaisseur de la paroi" +msgctxt "magic_fuzzy_skin_enabled description" +msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." +msgstr "Produit une agitation aléatoire lors de l'impression de la paroi extérieure, ce qui lui donne une apparence rugueuse et floue." -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Longueur de transition de la paroi" +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Couche floue à l'extérieur uniquement" -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Distance du filtre de transition des parois" +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "N'agitez que les contours des pièces et non les trous des pièces." -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Marge du filtre de transition des parois" +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Épaisseur de la couche floue" -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Angle du seuil de transition de la paroi" +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "Largeur autorisée pour l'agitation aléatoire. Il est conseillé de garder cette valeur inférieure à l'épaisseur de la paroi extérieure, ainsi, les parois intérieures ne seront pas altérées." -msgctxt "shell label" -msgid "Walls" -msgstr "Parois" +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Densité de la couche floue" -msgctxt "wall_overhang_angle description" -msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." -msgstr "Les parois ayant un angle supérieur à cette valeur seront imprimées en utilisant les paramètres de parois en porte-à-faux. Si la valeur est 90, aucune paroi ne sera considérée comme étant en porte-à-faux. La saillie soutenue par le support ne sera pas non plus considérée comme étant en porte-à-faux." +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "Densité moyenne de points ajoutée à chaque polygone sur une couche. Notez que les points originaux du polygone ne seront plus pris en compte, une faible densité résultant alors en une diminution de la résolution." -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "Lorsqu'ils sont activés, les parcours d'outils sont corrigés pour les imprimantes dotées de planificateurs de mouvements fluides. Les petits mouvements qui s'écartent de la direction générale de la trajectoire de l'outil sont lissés pour optimiser la fluidité des mouvements." +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Distance entre les points de la couche floue" -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "Lorsque cette option est activée, l'ordre dans lequel les lignes de remplissage sont imprimées est optimisé pour réduire la distance parcourue. La réduction du temps de parcours dépend en grande partie du modèle à découper, du type de remplissage, de la densité, etc. Remarque : pour certains modèles possédant beaucoup de petites zones de remplissage, le temps de découpe du modèle peut en être considérablement augmenté." +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "Distance moyenne entre les points ajoutés aléatoirement sur chaque segment de ligne. Il faut noter que les points originaux du polygone ne sont plus pris en compte donc un fort lissage conduira à une diminution de la résolution. Cette valeur doit être supérieure à la moitié de l'épaisseur de la couche floue." -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "Lorsque cette fonction est activée, la vitesse du ventilateur de refroidissement de l'impression est modifiée pour les régions de la couche extérieure situées immédiatement au-dessus du support." +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Décalage d'extrusion max. pour compensation du débit" -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "Si cette option est activée, les coordonnées de la jointure z sont relatives au centre de chaque partie. Si elle est désactivée, les coordonnées définissent une position absolue sur le plateau." +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "La distance maximale en mm pour déplacer le filament afin de compenser les variations du débit." -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "Lorsque cette distance est supérieure à zéro, les déplacements de détour qui sont plus longs que cette distance utiliseront la rétraction. Si elle est définie sur zéro, il n'y a pas de maximum et les mouvements de détour n'utiliseront pas la rétraction." +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Facteur de compensation du débit" -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "Lorsque le diamètre est supérieur à zéro, l'expansion horizontale des trous est progressivement appliquée aux petits trous (ces derniers sont élargis). Lorsque le diamètre est défini sur zéro, l'expansion horizontale des trous est appliquée à tous les trous. Les trous dont le diamètre est supérieur au diamètre maximal défini pour l'expansion horizontale des trous ne sont pas élargis." +msgctxt "flow_rate_extrusion_offset_factor description" +msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." +msgstr "La distance de déplacement du filament pour compenser les variations du débit, en pourcentage de la distance de déplacement du filament en une seconde d'extrusion." -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "Lorsqu'elle est supérieure à zéro, l'expansion horizontale du trou correspond à la quantité de décalage appliquée à la totalité des trous de chaque couche. Les valeurs positives augmentent la taille des trous, les valeurs négatives réduisent la taille des trous. Lorsque ce paramètre est activé, il peut être ajusté davantage avec le diamètre maximum d'expansion horizontale du trou." +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Utiliser des couches adaptatives" -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "Lors de l'impression des régions de la couche extérieure du pont, la quantité de matériau extrudé est multipliée par cette valeur." +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "Cette option calcule la hauteur des couches en fonction de la forme du modèle." -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "Lors de l'impression des parois de pont, la quantité de matériau extrudé est multipliée par cette valeur." +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "Variation maximale des couches adaptatives" -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Lors de l'impression de la deuxième couche extérieure du pont, la quantité de matériau extrudé est multipliée par cette valeur." +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "Hauteur maximale autorisée par rapport à la couche de base." -msgctxt "bridge_skin_material_flow_3 description" -msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Lors de l'impression de la troisième couche extérieure du pont, la quantité de matériau extrudé est multipliée par cette valeur." +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "Taille des étapes de variation des couches adaptatives" -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "Lorsque la vitesse minimale est atteinte à cause de la durée minimale d'une couche, relève la tête de l'impression et attend que la durée supplémentaire jusqu'à la durée minimale d'une couche soit atteinte." +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "Différence de hauteur de la couche suivante par rapport à la précédente." -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "Lorsque le modèle comporte de petits trous verticaux de quelques couches seulement, il doit normalement y avoir une couche autour de celles-ci dans l'espace étroit. Activez ce paramètre pour ne pas générer de couche si le trou vertical est très petit. Cela améliore le temps d'impression et le temps de découpage, mais laisse techniquement le remplissage exposé à l'air." +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "Taille de la topographie des couches adaptatives" -msgctxt "wall_transition_angle description" -msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." -msgstr "Quand créer des transitions entre un nombre uniforme et impair de parois. Une forme de coin dont l'angle est supérieur à ce paramètre n'aura pas de transitions et aucune paroi ne sera imprimée au centre pour remplir l'espace restant. En réduisant ce paramètre, on réduit le nombre et la longueur de ces parois centrales, mais on risque de laisser des trous ou sur-extruder." +msgctxt "adaptive_layer_height_threshold description" +msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." +msgstr "Distance horizontale cible entre deux couches adjacentes. La réduction de ce paramètre entraîne l'utilisation de couches plus fines pour rapprocher les bords des couches." -msgctxt "wall_transition_length description" -msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." -msgstr "Lorsque l'on passe d'un nombre de parois à un autre, au fur et à mesure que la pièce s'amincit, un certain espace est alloué pour diviser ou joindre les lignes de parois." +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Angle de parois en porte-à-faux" -msgctxt "wipe_hop_enable description" -msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "Lors de l'essuyage, le plateau de fabrication est abaissé pour créer un espace entre la buse et l'impression. Cela évite que la buse ne touche l'impression pendant les déplacements, réduisant ainsi le risque de heurter l'impression à partir du plateau de fabrication." +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." +msgstr "Les parois ayant un angle supérieur à cette valeur seront imprimées en utilisant les paramètres de parois en porte-à-faux. Si la valeur est 90, aucune paroi ne sera considérée comme étant en porte-à-faux. La saillie soutenue par le support ne sera pas non plus considérée comme étant en porte-à-faux." -msgctxt "retraction_hop_enabled description" -msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "À chaque rétraction, le plateau est abaissé pour créer un espace entre la buse et l'impression. Cela évite que la buse ne touche l'impression pendant les déplacements, réduisant ainsi le risque de heurter l'impression à partir du plateau." +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Vitesse de paroi en porte-à-faux" -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "Si la Distance X/Y des supports annule la Distance Z des supports ou inversement. Lorsque X/Y annule Z, la distance X/Y peut écarter le support du modèle, influençant ainsi la distance Z réelle par rapport au porte-à-faux. Nous pouvons désactiver cela en n'appliquant pas la distance X/Y autour des porte-à-faux." +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "Les parois en porte-à-faux seront imprimées à ce pourcentage de leur vitesse d'impression normale." -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "Si les coordonnées X/Y de la position zéro de l'imprimante se situent au centre de la zone imprimable." +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Activer les paramètres du pont" -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "Détermine si la butée de l'axe X est en sens positif (haute coordonnée X) ou négatif (basse coordonnée X)." +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "Détecter les ponts et modifier la vitesse d'impression, le débit et les paramètres du ventilateur pendant l'impression des ponts." -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "Détermine si la butée de l'axe Y est en sens positif (haute coordonnée Y) ou négatif (basse coordonnée Y)." +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Longueur minimale de la paroi du pont" -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "Détermine si la butée de l'axe Z est en sens positif (haute coordonnée Z) ou négatif (basse coordonnée Z)." +msgctxt "bridge_wall_min_length description" +msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." +msgstr "Les parois non supportées dont la longueur est inférieure à cette valeur seront imprimées selon les paramètres de parois normaux, tandis que celles dont la longueur est supérieure à cette valeur seront imprimées selon les paramètres de parois du pont." -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "Si les extrudeurs partagent un seul chauffage au lieu que chaque extrudeur ait son propre chauffage." +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Limite de support de la couche extérieure du pont" -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "Lorsque les extrudeuses partagent une seule buse au lieu que chaque extrudeuse ait sa propre buse. Lorsqu'il est défini à true, le script gcode de démarrage de l'imprimante doit configurer correctement toutes les extrudeuses dans un état de rétraction initial connu et mutuellement compatible (zéro ou un filament non rétracté) ; dans ce cas, l'état de rétraction initial est décrit, par extrudeuse, par le paramètre 'machine_extruders_shared_nozzle_initial_retraction'." +msgctxt "bridge_skin_support_threshold description" +msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." +msgstr "Si une région de couche extérieure est supportée pour une valeur inférieure à ce pourcentage de sa surface, elle sera imprimée selon les paramètres du pont. Sinon, elle sera imprimée selon les paramètres normaux de la couche extérieure." -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "Si la machine a un plateau chauffé présent." +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Densité maximale du remplissage mince du pont" -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "Si la machine est capable de stabiliser la température du volume d'impression." +msgctxt "bridge_sparse_infill_max_density description" +msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." +msgstr "Densité maximale du remplissage considéré comme étant mince. La couche sur le remplissage mince est considérée comme non soutenue et peut donc être traitée comme une couche du pont." -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "S'il faut centrer l'objet au milieu du plateau d'impression (0,0) au lieu d'utiliser le système de coordonnées dans lequel l'objet a été enregistré." +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Roue libre pour paroi du pont" -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "Contrôler ou non la température depuis Cura. Désactivez cette option pour contrôler la température de la buse depuis une source autre que Cura." +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "Ce paramètre contrôle la distance que l'extrudeuse doit parcourir en roue libre immédiatement avant le début d'une paroi de pont. L'utilisation de la roue libre avant le début du pont permet de réduire la pression à l'intérieur de la buse et d'obtenir un pont plus plat." -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "Inclure ou non les commandes de température du plateau au début du gcode. Si le gcode_démarrage contient déjà les commandes de température du plateau, l'interface Cura désactive automatiquement ce paramètre." +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Vitesse de paroi du pont" -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "Inclure ou non les commandes de température de la buse au début du gcode. Si le gcode_démarrage contient déjà les commandes de température de la buse, l'interface Cura désactive automatiquement ce paramètre." +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "Vitesse à laquelle les parois de pont sont imprimées." -msgctxt "clean_between_layers description" -msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." -msgstr "Inclure ou non le G-Code d'essuyage de la buse entre les couches (maximum 1 par couche). L'activation de ce paramètre peut influencer le comportement de la rétraction lors du changement de couche. Veuillez utiliser les paramètres de rétraction d'essuyage pour contrôler la rétraction aux couches où le script d'essuyage sera exécuté." +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Débit de paroi du pont" -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "Insérer ou non une commande pour attendre que la température du plateau soit atteinte au démarrage." +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "Lors de l'impression des parois de pont, la quantité de matériau extrudé est multipliée par cette valeur." -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "Préparer les filaments avec une goutte avant l'impression. Ce paramètre permet d'assurer que l'extrudeuse disposera de matériau prêt au niveau de la buse avant l'impression. La jupe/bordure d'impression peut également servir de préparation, auquel cas le fait de laisser ce paramètre désactivé permet de gagner un peu de temps." +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Vitesse de la couche extérieure du pont" -msgctxt "print_sequence description" -msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -msgstr "Imprime tous les modèles en même temps, couche par couche, ou attend la fin d'un modèle pour en commencer un autre. Le mode « Un modèle à la fois » est disponible seulement si a) un seul extrudeur est activé et si b) tous les modèles sont suffisamment éloignés pour que la tête puisse passer entre eux et qu'ils sont tous inférieurs à la distance entre la buse et les axes X/Y." +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "Vitesse à laquelle les régions de la couche extérieure du pont sont imprimées." -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "Afficher ou non les différentes variantes de cette machine qui sont décrites dans des fichiers json séparés." +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Débit de la couche extérieure du pont" -msgctxt "machine_firmware_retract description" -msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." -msgstr "S'il faut utiliser les commandes de rétraction du firmware (G10 / G11) au lieu d'utiliser la propriété E dans les commandes G1 pour rétracter le matériau." +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "Lors de l'impression des régions de la couche extérieure du pont, la quantité de matériau extrudé est multipliée par cette valeur." -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "Attendre ou non que la température de la buse soit atteinte au démarrage." +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Densité de la couche extérieure du pont" -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Largeur d'une seule ligne de remplissage." +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Densité de la couche extérieure du pont. Des valeurs inférieures à 100 augmenteront les écarts entre les lignes de la couche extérieure." -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "Largeur d'une seule ligne de plafond ou de bas de support." +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Vitesse du ventilateur du pont" -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "Largeur d'une seule ligne de la zone en haut de l'impression." +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "Vitesse du ventilateur en pourcentage à utiliser pour l'impression des parois et de la couche extérieure du pont." -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "Largeur d'une ligne. Généralement, la largeur de chaque ligne doit correspondre à la largeur de la buse. Toutefois, le fait de diminuer légèrement cette valeur peut fournir de meilleures impressions." +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Le pont possède plusieurs couches" -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "Largeur d'une seule ligne de tour d'amorçage." +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "Si cette option est activée, les deuxième et troisième couches au-dessus de la zone d'air seront imprimées selon les paramètres suivants. Sinon, ces couches seront imprimées selon les paramètres normaux." -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "Largeur d'une seule ligne de jupe ou de bordure." +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Vitesse de la deuxième couche extérieure du pont" -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "Largeur d'une seule ligne de bas de support." +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "Vitesse d'impression à utiliser lors de l'impression de la deuxième couche extérieure du pont." -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "Largeur d'une seule ligne de plafond de support." +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Débit de la deuxième couche extérieure du pont" -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Largeur d'une seule ligne de support." +msgctxt "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Lors de l'impression de la deuxième couche extérieure du pont, la quantité de matériau extrudé est multipliée par cette valeur." -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Largeur d'une seule ligne du dessus/dessous." +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Densité de la deuxième couche extérieure du pont" -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "Largeur d'une seule ligne de la paroi pour toutes les lignes de paroi, à l’exception de la ligne la plus externe." +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Densité de la deuxième couche extérieure du pont. Des valeurs inférieures à 100 augmenteront les écarts entre les lignes de la couche extérieure." -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Largeur d'une seule ligne de la paroi." +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Vitesse du ventilateur de la deuxième couche extérieure du pont" -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "Largeur des lignes de la couche de base du radeau. Elles doivent être épaisses pour permettre l’adhérence au plateau." +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "Vitesse du ventilateur en pourcentage à utiliser pour l'impression de la deuxième couche extérieure du pont." -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "Largeur des lignes de la couche intermédiaire du radeau. Une plus grande extrusion de la deuxième couche renforce l'adhérence des lignes au plateau." +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Vitesse de la troisième couche extérieure du pont" -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "Largeur des lignes de la surface supérieure du radeau. Elles doivent être fines pour rendre le dessus du radeau lisse." +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "Vitesse d'impression à utiliser lors de l'impression de la troisième couche extérieure du pont." -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "Largeur de la ligne la plus à l'extérieur de la paroi. Le fait de réduire cette valeur permet d'imprimer des niveaux plus élevés de détails." +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Débit de la troisième couche extérieure du pont" -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "La largeur de la paroi qui remplacera les entités fines (selon la taille minimale des entités) du modèle. Si la largeur minimale de la ligne de paroi est plus fine que l'épaisseur de l'entité, la paroi deviendra aussi épaisse que l'entité elle-même." +msgctxt "bridge_skin_material_flow_3 description" +msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Lors de l'impression de la troisième couche extérieure du pont, la quantité de matériau extrudé est multipliée par cette valeur." -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "Position X de la brosse d'essuyage" +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Densité de la troisième couche extérieure du pont" -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Vitesse du décalage d'essuyage" +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Densité de la troisième couche extérieure du pont. Des valeurs inférieures à 100 augmenteront les écarts entre les lignes de la couche extérieure." -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "Essuyer le bec d'impression inactif sur la tour d'amorçage" +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Vitesse du ventilateur de la troisième couche extérieure du pont" -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Distance de déplacement d'essuyage" +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "Vitesse du ventilateur en pourcentage à utiliser pour l'impression de la troisième couche extérieure du pont." msgctxt "clean_between_layers label" msgid "Wipe Nozzle Between Layers" msgstr "Essuyer la buse entre les couches" -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Pause d'essuyage" +msgctxt "clean_between_layers description" +msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." +msgstr "Inclure ou non le G-Code d'essuyage de la buse entre les couches (maximum 1 par couche). L'activation de ce paramètre peut influencer le comportement de la rétraction lors du changement de couche. Veuillez utiliser les paramètres de rétraction d'essuyage pour contrôler la rétraction aux couches où le script d'essuyage sera exécuté." -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Nombre de répétitions d'essuyage" +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Volume de matériau entre les essuyages" -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Distance de rétraction d'essuyage" +msgctxt "max_extrusion_before_wipe description" +msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." +msgstr "Le volume maximum de matériau qui peut être extrudé avant qu'un autre essuyage de buse ne soit lancé. Si cette valeur est inférieure au volume de matériau nécessaire dans une couche, le paramètre n'a aucun effet dans cette couche, c'est-à-dire qu'il est limité à un essuyage par couche." msgctxt "wipe_retraction_enable label" msgid "Wipe Retraction Enable" msgstr "Activation de la rétraction d'essuyage" +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Rétracte le filament quand la buse se déplace vers une zone non imprimée." + +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Distance de rétraction d'essuyage" + +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "La distance de rétraction du filament afin qu'il ne suinte pas pendant la séquence d'essuyage." + msgctxt "wipe_retraction_extra_prime_amount label" msgid "Wipe Retraction Extra Prime Amount" msgstr "Degré supplémentaire de rétraction d'essuyage d'amorçage" -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Vitesse primaire de rétraction d'essuyage" +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "Du matériau peut suinter pendant un déplacement d'essuyage, ce qui peut être compensé ici." + +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Vitesse de rétraction d'essuyage" + +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "La vitesse à laquelle le filament est rétracté et préparé pendant un déplacement de rétraction d'essuyage." msgctxt "wipe_retraction_retract_speed label" msgid "Wipe Retraction Retract Speed" msgstr "Vitesse de rétraction d'essuyage" -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Vitesse de rétraction d'essuyage" +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "La vitesse à laquelle le filament est rétracté pendant un déplacement de rétraction d'essuyage." + +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Vitesse primaire de rétraction d'essuyage" + +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "La vitesse à laquelle le filament est préparé pendant un déplacement de rétraction d'essuyage." + +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Pause d'essuyage" + +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Pause après l'irrétraction." msgctxt "wipe_hop_enable label" msgid "Wipe Z Hop" msgstr "Décalage en Z de l'essuyage" +msgctxt "wipe_hop_enable description" +msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "Lors de l'essuyage, le plateau de fabrication est abaissé pour créer un espace entre la buse et l'impression. Cela évite que la buse ne touche l'impression pendant les déplacements, réduisant ainsi le risque de heurter l'impression à partir du plateau de fabrication." + msgctxt "wipe_hop_amount label" msgid "Wipe Z Hop Height" msgstr "Hauteur du décalage en Z d'essuyage" -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "À l'intérieur du remplissage" +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "La différence de hauteur lors de la réalisation d'un décalage en Z." -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "Écrivez l'outil actif après avoir envoyé des commandes temporaires à l'outil inactif. Requis pour l'impression à double extrusion avec Smoothie ou un autre micrologiciel avec des commandes d'outils modaux." +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Vitesse du décalage d'essuyage" -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "Butée X en sens positif" +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "Vitesse de déplacement de l'axe Z pendant le décalage." + +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "Position X de la brosse d'essuyage" msgctxt "wipe_brush_pos_x description" msgid "X location where wipe script will start." msgstr "Emplacement X où le script d'essuyage démarrera." -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y annule Z" +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Nombre de répétitions d'essuyage" -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Butée Y en sens positif" +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "Le nombre de déplacements de la buse à travers la brosse." -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Butée Z en sens positif" +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Distance de déplacement d'essuyage" -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Décalage en Z après changement d'extrudeuse" +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "La distance de déplacement de la tête d'avant en arrière à travers la brosse." -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Décalage en Z après changement de hauteur d'extrudeuse" +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Taille maximale des petits trous" -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Hauteur du décalage en Z" +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "Les trous et les contours des pièces dont le diamètre est inférieur à celui-ci seront imprimés en utilisant l'option Vitesse de petite structure." -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Décalage en Z uniquement sur les pièces imprimées" +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Longueur max de petite structure" -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Vitesse du décalage en Z" +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "Les contours des structures dont le diamètre est inférieur à cette longueur seront imprimés en utilisant l'option Vitesse de petite structure." -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Décalage en Z lors d’une rétraction" +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Vitesse de petite structure" -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Alignement de la jointure en Z" +msgctxt "small_feature_speed_factor description" +msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "Les petites structures seront imprimées à ce pourcentage de la vitesse d'impression normale. Une impression plus lente peut aider à l'adhésion et à la précision." -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Position de la jointure en Z" +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Vitesse de la couche initiale de petite structure" -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Relatif à la jointure en Z" +msgctxt "small_feature_speed_factor_0 description" +msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "Les petites structures sur la première couche seront imprimées à ce pourcentage de la vitesse d'impression normale. Une impression plus lente peut aider à l'adhésion et à la précision." -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "X Jointure en Z" +msgctxt "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "Alterner les directions des parois" -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Y Jointure en Z" +msgctxt "material_alternate_walls description" +msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." +msgstr "Alternez les directions des parois, une couche et un insert sur deux. Utile pour les matériaux qui peuvent accumuler des contraintes, comme pour l'impression de métal." -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z annule X/Y" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Regrouper les parois extérieures" -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Les parois extérieures de différentes îles de la même couche sont imprimées séquentiellement. Lorsque ce paramètre est activé, le nombre de changements de débit est limité car les parois sont imprimées une par une ; lorsqu'il est désactivé, le nombre de déplacements entre les îles est réduit car les parois des mêmes îles sont regroupées." -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "Rapport sur le processus d'impression" -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "Rapport sur les événements qui dépassent les seuils fixés" -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "Activer le rapport sur le processus d'impression" -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "Activez le rapport sur le processus d'impression pour définir des valeurs seuils en vue d'une éventuelle détection d'erreur." -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "Avertissement de débit" -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "Limite de l'avertissement de débit pour la détection." -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "Limite de débit" -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "Limite de l'anomalie de débit pour la détection." -msgctxt "travel description" -msgid "travel" -msgstr "déplacement" +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "Avertissement de température d'impression" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "Limite de l'avertissement de température d'impression pour la détection." -#~ msgctxt "brim_inside_margin description" -#~ msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -#~ msgstr "Une pièce entièrement contenue à l'intérieur d'une autre peut générer une bordure extérieure qui vient en contact avec l'intérieur de la pièce extérieure. Cette fonction supprime à cette distance toutes les bordures situées dans des vides intérieurs." +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "Limite de la température d'impression" -#~ msgctxt "user_defined_print_order_enabled description" -#~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." -#~ msgstr "Permet de classer la liste des objets pour définir manuellement la séquence d'impression. Le premier objet de la liste sera imprimé en premier." +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "Limite de l'anomalie de la température d'impression pour la détection." -#~ msgctxt "brim_inside_margin label" -#~ msgid "Brim Inside Avoid Margin" -#~ msgstr "Marge d'évitement de la bordure intérieure" +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "Avertissement de la température du volume de construction" -#~ msgctxt "brim_outside_only label" -#~ msgid "Brim Only on Outside" -#~ msgstr "Bordure uniquement sur l'extérieur" +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "Limite de l'avertissement de la température du volume de construction pour la détection." -#~ msgctxt "gradual_flow_discretisation_step_size description" -#~ msgid "Duration of each step in the gradual flow change" -#~ msgstr "Durée de chaque étape du changement progressif de débit" +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "Limite de la température du volume de construction" -#~ msgctxt "gradual_flow_enabled description" -#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -#~ msgstr "Permettre des changements de débit progressifs. Lorsque cette option est activée, le débit est progressivement augmenté/diminué jusqu'au débit cible. Cette option est utile pour les imprimantes équipées d'un tube Bowden avec lesquelles le débit n'est pas immédiatement modifié lorsque le moteur de l'extrudeuse démarre/s'arrête." +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "Anomalie de détection de la limite de température du volume de construction." -#~ msgctxt "reset_flow_duration description" -#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -#~ msgstr "Pour tout déplacement plus long que cette valeur, le débit de matière est réinitialisé au débit cible du parcours" +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Paramètres de ligne de commande" -#~ msgctxt "gradual_flow_discretisation_step_size label" -#~ msgid "Gradual flow discretisation step size" -#~ msgstr "Taille du pas de discrétisation du débit progressif" +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "Paramètres qui sont utilisés uniquement si CuraEngine n'est pas invoqué depuis l'interface Cura." -#~ msgctxt "gradual_flow_enabled label" -#~ msgid "Gradual flow enabled" -#~ msgstr "Débit progressif activé" +msgctxt "center_object label" +msgid "Center Object" +msgstr "Centrer l'objet" -#~ msgctxt "max_flow_acceleration label" -#~ msgid "Gradual flow max acceleration" -#~ msgstr "Accélération maximale du débit progressif" +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "S'il faut centrer l'objet au milieu du plateau d'impression (0,0) au lieu d'utiliser le système de coordonnées dans lequel l'objet a été enregistré." -#~ msgctxt "layer_0_max_flow_acceleration label" -#~ msgid "Initial layer max flow acceleration" -#~ msgstr "Accélération maximale du débit de la couche initiale" +msgctxt "mesh_position_x label" +msgid "Mesh Position X" +msgstr "Position X de la maille" -#~ msgctxt "layer_0_z_overlap description" -#~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -#~ msgstr "La première et la deuxième couche du modèle se chevauchent dans la direction Z pour compenser le filament perdu dans l'entrefer. Toutes les couches au-dessus de la première couche du modèle seront décalées de ce montant." +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "Offset appliqué à l'objet dans la direction X." -#~ msgctxt "max_flow_acceleration description" -#~ msgid "Maximum acceleration for gradual flow changes" -#~ msgstr "Accélération maximale des changements de débit progressifs" +msgctxt "mesh_position_y label" +msgid "Mesh Position Y" +msgstr "Position Y de la maille" -#~ msgctxt "layer_0_max_flow_acceleration description" -#~ msgid "Minimum speed for gradual flow changes for the first layer" -#~ msgstr "Vitesse minimale des changements de débit progressifs pour la première couche" +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "Offset appliqué à l'objet dans la direction Y." -#~ msgctxt "brim_outside_only description" -#~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -#~ msgstr "Imprimer uniquement la bordure sur l'extérieur du modèle. Cela réduit la quantité de bordure que vous devez retirer par la suite, sans toutefois véritablement réduire l'adhérence au plateau." +msgctxt "mesh_position_z label" +msgid "Mesh Position Z" +msgstr "Position Z de la maille" -#~ msgctxt "reset_flow_duration label" -#~ msgid "Reset flow duration" -#~ msgstr "Réinitialiser la durée du débit" +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "Décalage appliqué à l'objet dans le sens z. Cela vous permet d'exécuter ce que l'on appelait « Affaissement de l'objet »." -#~ msgctxt "support_interface_skip_height label" -#~ msgid "Support Interface Resolution" -#~ msgstr "Résolution de l'interface du support" +msgctxt "mesh_rotation_matrix label" +msgid "Mesh Rotation Matrix" +msgstr "Matrice de rotation de la maille" -#~ msgctxt "support_interface_skip_height description" -#~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -#~ msgstr "Lors de la vérification de l'emplacement d'un modèle au-dessus et en-dessous du support, effectuer des étapes de la hauteur définie. Des valeurs plus faibles découperont plus lentement, tandis que des valeurs plus élevées peuvent causer l'impression d'un support normal à des endroits où il devrait y avoir une interface de support." +msgctxt "mesh_rotation_matrix description" +msgid "Transformation matrix to be applied to the model when loading it from file." +msgstr "Matrice de transformation à appliquer au modèle lors de son chargement depuis le fichier." diff --git a/resources/i18n/fr_FR/gradual_flow_settings.def.json.po b/resources/i18n/fr_FR/gradual_flow_settings.def.json.po index 363b0994aa1..a0c76be033f 100644 --- a/resources/i18n/fr_FR/gradual_flow_settings.def.json.po +++ b/resources/i18n/fr_FR/gradual_flow_settings.def.json.po @@ -1,54 +1,53 @@ -# msgid "" msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: 2024-03-11 11:28+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: en\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr_FR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n>1;\n" -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" - msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" msgstr "Gradual flow max acceleration" -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" - msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" msgstr "Maximum acceleration for gradual flow changes" +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" msgstr "Minimum speed for gradual flow changes for the first layer" +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + msgctxt "reset_flow_duration label" msgid "Reset flow duration" msgstr "Reset flow duration" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" diff --git a/resources/i18n/it_IT/cura.po b/resources/i18n/it_IT/cura.po index 15a7a1c88f4..1c6127a1fe8 100644 --- a/resources/i18n/it_IT/cura.po +++ b/resources/i18n/it_IT/cura.po @@ -12,7 +12,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" msgstr "%(width).1f x %(depth).1f x %(height).1f mm" @@ -119,7 +118,7 @@ msgstr "&Salva progetto..." msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" msgid "&Save Universal Cura Project..." -msgstr "" +msgstr "e salvare il progetto universale Cura..." msgctxt "@title:menu menubar:toplevel" msgid "&Settings" @@ -142,13 +141,9 @@ msgid "*You will need to restart the application for these changes to have effec msgstr "*Per rendere effettive le modifiche è necessario riavviare l'applicazione." msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "" -"- Aggiungi profili materiale e plugin dal Marketplace\n" -"- Esegui il backup e la sincronizzazione dei profili materiale e dei plugin\n" +msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgstr "- Aggiungi profili materiale e plugin dal Marketplace" +"- Esegui il backup e la sincronizzazione dei profili materiale e dei plugin" "- Condividi idee e ottieni supporto da più di 48.000 utenti nella community di Ultimaker" msgctxt "@heading" @@ -175,14 +170,6 @@ msgctxt "@item:inlistbox" msgid "3MF File" msgstr "File 3MF" -msgctxt "name" -msgid "3MF Reader" -msgstr "Lettore 3MF" - -msgctxt "name" -msgid "3MF Writer" -msgstr "Writer 3MF" - msgctxt "@error:zip" msgid "3MF Writer plug-in is corrupt." msgstr "Plug-in Writer 3MF danneggiato." @@ -203,56 +190,37 @@ msgctxt "@label %i will be replaced with a profile name" msgid "Only user changed settings will be saved in the custom profile.
                                      For materials that support it, the new custom profile will inherit properties from %1." msgstr "Solo le impostazioni modificate dall'utente verranno salvate nel profilo personalizzato.
                                      Per i materiali che lo supportano, il nuovo profilo personalizzato erediterà le proprietà da %1." -#, python-brace-format msgctxt "@label OpenGL renderer" msgid "
                                    • OpenGL Renderer: {renderer}
                                    • " msgstr "
                                    • Renderer OpenGL: {renderer}
                                    • " -#, python-brace-format msgctxt "@label OpenGL vendor" msgid "
                                    • OpenGL Vendor: {vendor}
                                    • " msgstr "
                                    • Fornitore OpenGL: {vendor}
                                    • " -#, python-brace-format msgctxt "@label OpenGL version" msgid "
                                    • OpenGL Version: {version}
                                    • " msgstr "
                                    • Versione OpenGL: {version}
                                    • " msgctxt "@label crash message" -msgid "" -"

                                      A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

                                      \n" -"

                                      Please use the \"Send report\" button to post a bug report automatically to our servers

                                      \n" -" " -msgstr "" -"

                                      Si è verificato un errore fatale in Cura. Si prega di inviare questo Rapporto su crash per correggere il problema

                                      \n" -"

                                      Usare il pulsante “Invia report" per inviare automaticamente una segnalazione errore ai nostri server

                                      \n" +msgid "

                                      A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

                                      \n

                                      Please use the \"Send report\" button to post a bug report automatically to our servers

                                      \n " +msgstr "

                                      Si è verificato un errore fatale in Cura. Si prega di inviare questo Rapporto su crash per correggere il problema

                                      " +"

                                      Usare il pulsante “Invia report" per inviare automaticamente una segnalazione errore ai nostri server

                                      " " " msgctxt "@label crash message" -msgid "" -"

                                      Oops, UltiMaker Cura has encountered something that doesn't seem right.

                                      \n" -"

                                      We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

                                      \n" -"

                                      Backups can be found in the configuration folder.

                                      \n" -"

                                      Please send us this Crash Report to fix the problem.

                                      \n" -" " -msgstr "" -"

                                      Oops, UltiMaker Cura ha rilevato qualcosa che non sembra corretto.

                                      \n" -"

                                      Abbiamo riscontrato un errore irrecuperabile durante l’avvio. È stato probabilmente causato da alcuni file di configurazione errati. Suggeriamo di effettuare il backup e ripristinare la configurazione.

                                      \n" -"

                                      I backup sono contenuti nella cartella configurazione.

                                      \n" -"

                                      Si prega di inviare questo Rapporto su crash per correggere il problema.

                                      \n" +msgid "

                                      Oops, UltiMaker Cura has encountered something that doesn't seem right.

                                      \n

                                      We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

                                      \n

                                      Backups can be found in the configuration folder.

                                      \n

                                      Please send us this Crash Report to fix the problem.

                                      \n " +msgstr "

                                      Oops, UltiMaker Cura ha rilevato qualcosa che non sembra corretto.

                                      " +"

                                      Abbiamo riscontrato un errore irrecuperabile durante l’avvio. È stato probabilmente causato da alcuni file di configurazione errati. Suggeriamo di effettuare il backup e ripristinare la configurazione.

                                      " +"

                                      I backup sono contenuti nella cartella configurazione.

                                      " +"

                                      Si prega di inviare questo Rapporto su crash per correggere il problema.

                                      " " " -#, python-brace-format msgctxt "@info:status" -msgid "" -"

                                      One or more 3D models may not print optimally due to the model size and material configuration:

                                      \n" -"

                                      {model_names}

                                      \n" -"

                                      Find out how to ensure the best possible print quality and reliability.

                                      \n" -"

                                      View print quality guide

                                      " -msgstr "" -"

                                      La stampa di uno o più modelli 3D può non avvenire in modo ottimale a causa della dimensioni modello e della configurazione materiale:

                                      \n" -"

                                      {model_names}

                                      \n" -"

                                      Scopri come garantire la migliore qualità ed affidabilità di stampa.

                                      \n" +msgid "

                                      One or more 3D models may not print optimally due to the model size and material configuration:

                                      \n

                                      {model_names}

                                      \n

                                      Find out how to ensure the best possible print quality and reliability.

                                      \n

                                      View print quality guide

                                      " +msgstr "

                                      La stampa di uno o più modelli 3D può non avvenire in modo ottimale a causa della dimensioni modello e della configurazione materiale:

                                      " +"

                                      {model_names}

                                      " +"

                                      Scopri come garantire la migliore qualità ed affidabilità di stampa.

                                      " "

                                      Visualizza la guida alla qualità di stampa

                                      " msgctxt "@label" @@ -267,7 +235,7 @@ msgstr[1] "Non è disponibile una connessione cloud per alcune stampanti" msgctxt "@text" msgid "A highly dense and strong part but at a slower print time. Great for functional parts." -msgstr "" +msgstr "Una parte molto densa e resistente, ma con un tempo di stampa più lento. Ottimo per le parti funzionali." msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." @@ -277,10 +245,6 @@ msgctxt "@item:inlistbox" msgid "AMF File" msgstr "File AMF" -msgctxt "name" -msgid "AMF Reader" -msgstr "Lettore 3MF" - msgctxt "@label" msgid "Abort" msgstr "Interrompi" @@ -317,10 +281,6 @@ msgctxt "@button" msgid "Accept" msgstr "Accetto" -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Accetta i G-Code e li invia ad una stampante. I plugin possono anche aggiornare il firmware." - msgctxt "@label" msgid "Account synced" msgstr "Account sincronizzato" @@ -413,7 +373,6 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Aggiungere la stampante manualmente" -#, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "Aggiunta della stampante {name} ({model}) dall'account" @@ -454,7 +413,6 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Tutti i file (*)" -#, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "Tutti i tipi supportati ({0})" @@ -463,10 +421,6 @@ msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "Consenti l'invio di dati anonimi" -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Consente il caricamento e la visualizzazione dei file codice G." - msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Chiedi sempre" @@ -505,7 +459,7 @@ msgstr "Anonimo" msgctxt "@option:radio" msgid "Anonymous crash reports" -msgstr "" +msgstr "Segnalazioni anonime degli arresti anomali" msgctxt "@label Description for application component" msgid "Application framework" @@ -513,7 +467,7 @@ msgstr "Struttura applicazione" msgctxt "@title:column" msgid "Applies on" -msgstr "" +msgstr "Si applica a" msgctxt "@label" msgid "Apply Extruder offsets to GCode" @@ -547,7 +501,6 @@ msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to move %1 to the top of the queue?" msgstr "Sei sicuro di voler spostare %1 all’inizio della coda?" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "Rimuovere temporaneamente {printer_name}?" @@ -560,7 +513,6 @@ msgctxt "@label (%1 is object name)" msgid "Are you sure you wish to remove %1? This cannot be undone!" msgstr "Sei sicuro di voler rimuovere %1? Questa operazione non può essere annullata!" -#, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "Rimuovere {0}? Questa operazione non può essere annullata!" @@ -625,10 +577,6 @@ msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Backup e reset configurazione" -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Effettua il backup o ripristina la configurazione." - msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "Esegui il backup e la sincronizzazione delle impostazioni materiale e dei plugin" @@ -703,7 +651,7 @@ msgstr "Calcolato" msgctxt "@window:text" msgid "Camera navigation:" -msgstr "" +msgstr "Navigazione della fotocamera:" msgctxt "@window:text" msgid "Camera rendering:" @@ -725,12 +673,10 @@ msgctxt "@label" msgid "Can't connect to your UltiMaker printer?" msgstr "Non è possibile effettuare la connessione alla stampante UltiMaker?" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "Impossibile importare il profilo da {0} prima di aggiungere una stampante." -#, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "Impossibile aprire altri file durante il caricamento del codice G. Importazione saltata {0}" @@ -803,21 +749,8 @@ msgctxt "@label" msgid "Checking..." msgstr "Verifica in corso..." -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Controlla disponibilità di aggiornamenti firmware." - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Controlla i modelli e la configurazione di stampa per eventuali problematiche di stampa e suggerimenti." - msgctxt "@label" -msgid "" -"Chooses between the techniques available to generate support. \n" -"\n" -"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" -"\n" -"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "Scegliere tra le tecniche disponibili per generare il supporto. Il supporto \"normale\" crea una struttura di supporto direttamente sotto le parti di sbalzo e rilascia tali aree direttamente al di sotto. La struttura \"ad albero\" crea delle ramificazioni verso le aree di sbalzo che supportano il modello sulle punte di tali ramificazioni consentendo a queste ultime di avanzare intorno al modello per supportarlo il più possibile dal piano di stampa." msgctxt "@action:inmenu menubar:edit" @@ -896,14 +829,6 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "File G-Code compresso" -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Lettore codice G compresso" - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Writer codice G compresso" - msgctxt "@title:window" msgid "Configuration Changes" msgstr "Modifiche configurazione" @@ -976,10 +901,6 @@ msgctxt "@info:status" msgid "Connected via cloud" msgstr "Collegato tramite cloud" -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Si collega alla Digital Library, consentendo a Cura di aprire file e salvare file in Digital Library." - msgctxt "@tooltip:button" msgid "Consult the UltiMaker Community." msgstr "Consulta la community di UltiMaker." @@ -1020,7 +941,6 @@ msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "Impossibile creare un archivio dalla directory dei dati utente: {}" -#, python-brace-format msgctxt "@info:status Don't translate the tag {device}!" msgid "Could not find a file name when trying to write to {device}." msgstr "Impossibile trovare un nome file durante il tentativo di scrittura su {device}." @@ -1049,12 +969,10 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Impossibile salvare archivio materiali in {}:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "Impossibile salvare {0}: {1}" -#, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Impossibile salvare su unità rimovibile {0}: {1}" @@ -1063,31 +981,19 @@ msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "Impossibile caricare i dati sulla stampante." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"No permission to execute process." -msgstr "" -"Impossibile avviare EnginePlugin: {self._plugin_id}\n" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." +msgstr "Impossibile avviare EnginePlugin: {self._plugin_id}" "Autorizzazione mancante per eseguire il processo." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Operating system is blocking it (antivirus?)" -msgstr "" -"Impossibile avviare EnginePlugin: {self._plugin_id}\n" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" +msgstr "Impossibile avviare EnginePlugin: {self._plugin_id}" "Il sistema operativo lo sta bloccando (antivirus?)" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Resource is temporarily unavailable" -msgstr "" -"Impossibile avviare EnginePlugin: {self._plugin_id}\n" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" +msgstr "Impossibile avviare EnginePlugin: {self._plugin_id}" "La risorsa non è temporaneamente disponibile" msgctxt "@title:window" @@ -1130,10 +1036,6 @@ msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Crea progetti di stampa in Digital Library." -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Crea una maglia di cancellazione per bloccare la stampa del supporto in alcune posizioni" - msgctxt "@info:backup_status" msgid "Creating your backup..." msgstr "Creazione del backup in corso..." @@ -1146,22 +1048,10 @@ msgctxt "@title:window" msgid "Cura Backups" msgstr "Backup Cura" -msgctxt "name" -msgid "Cura Backups" -msgstr "Backup Cura" - msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Profilo Cura" -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Lettore profilo Cura" - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Writer profilo Cura" - msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "File 3MF Progetto Cura" @@ -1174,17 +1064,13 @@ msgctxt "@title:window" msgid "Cura can't start" msgstr "Impossibile avviare Cura" -#, python-brace-format msgctxt "@info:status" msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." msgstr "Cura ha rilevato dei profili di materiale non ancora installati sulla stampante host del gruppo {0}." msgctxt "@info:credit" -msgid "" -"Cura is developed by UltiMaker in cooperation with the community.\n" -"Cura proudly uses the following open source projects:" -msgstr "" -"Cura è stato sviluppato da UltiMaker in cooperazione con la comunità.\n" +msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" +msgstr "Cura è stato sviluppato da UltiMaker in cooperazione con la comunità." "Cura è orgogliosa di utilizzare i seguenti progetti open source:" msgctxt "@label" @@ -1195,18 +1081,6 @@ msgctxt "@label Cura version number" msgid "Cura version" msgstr "Versione Cura" -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Back-end CuraEngine" - -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "Plugin CuraEngine per risistemare gradualmente il flusso e limitare balzi a flusso elevato" - -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - msgctxt "@label" msgid "Currency:" msgstr "Valuta:" @@ -1437,7 +1311,7 @@ msgstr "Bozza" msgctxt "@action:inmenu menubar:edit" msgid "Drop All Models to buildplate" -msgstr "" +msgstr "Rilasciare tutti i modelli sulla piastra di costruzione" msgctxt "@action:button" msgid "Duplicate" @@ -1463,12 +1337,10 @@ msgctxt "@action:button" msgid "Eject" msgstr "Rimuovi" -#, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "Rimuovi il dispositivo rimovibile {0}" -#, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "Espulso {0}. È ora possibile rimuovere in modo sicuro l'unità." @@ -1493,10 +1365,6 @@ msgctxt "@label" msgid "Enabled" msgstr "Abilitato" -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Abilita la possibilità di generare geometria stampabile da file immagine 2D." - msgctxt "@title:label" msgid "End G-code" msgstr "Codice G fine" @@ -1567,7 +1435,7 @@ msgstr "Esporta selezione..." msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Export Universal Cura Project" -msgstr "" +msgstr "Esportare il progetto universale Cura" msgctxt "@button" msgid "Export material archive" @@ -1577,7 +1445,6 @@ msgctxt "@info:title" msgid "Export succeeded" msgstr "Esportazione riuscita" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Profilo esportato su {0}" @@ -1586,10 +1453,6 @@ msgctxt "@tooltip:button" msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "Estendi UltiMaker Cura con plugin e profili del materiale." -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Estensione che consente la post-elaborazione degli script creati da utente" - msgctxt "@label" msgid "Extruder" msgstr "Estrusore" @@ -1604,7 +1467,7 @@ msgstr "Codice G fine estrusore" msgctxt "@label" msgid "Extruder End G-code duration" -msgstr "" +msgstr "Durata del G-code di fine dell'estrusore" msgctxt "@title:label" msgid "Extruder Start G-code" @@ -1612,12 +1475,11 @@ msgstr "Codice G avvio estrusore" msgctxt "@label" msgid "Extruder Start G-code duration" -msgstr "" +msgstr "Durata del G-code di inizio dell'estrusore" -#, python-brace-format msgctxt "@label" msgid "Extruder {0}" -msgstr "" +msgstr "Estrusore {0}" msgctxt "@info:title" msgid "Extruder(s) Disabled" @@ -1639,7 +1501,6 @@ msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "Impossibile creare archivio di materiali da sincronizzare con le stampanti." -#, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "Espulsione non riuscita {0}. È possibile che un altro programma stia utilizzando l’unità." @@ -1648,27 +1509,22 @@ msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "Impossibile esportare il materiale su %1: %2" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Impossibile esportare il profilo su {0}: {1}" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Impossibile esportare il profilo su {0}: Rilevata anomalia durante scrittura plugin." -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Impossibile importare il profilo da {0}:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Impossibile importare il profilo da {0}:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Impossibile importare il profilo da {0}: {1}" @@ -1685,10 +1541,9 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Impossibile salvare archivio materiali" -#, python-brace-format msgctxt "@info:status" msgid "Failed writing to specific cloud printer: {0} not in remote clusters." -msgstr "" +msgstr "Scrittura non riuscita sulla stampante cloud specifica: {0} non è presente nei cluster remoti." msgctxt "@label:category menu label" msgid "Favorites" @@ -1714,7 +1569,6 @@ msgctxt "@info:title" msgid "File Saved" msgstr "File salvato" -#, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Il file {0} non contiene nessun profilo valido." @@ -1747,14 +1601,6 @@ msgctxt "@title:window" msgid "Firmware Update" msgstr "Aggiornamento del firmware" -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Controllo aggiornamento firmware" - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Aggiornamento firmware" - msgctxt "@label" msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." msgstr "Impossibile aggiornare il firmware: il collegamento con la stampante non supporta l’aggiornamento del firmware." @@ -1832,7 +1678,7 @@ msgid "Force layer view compatibility mode (restart required)" msgstr "Forzare la modalità di compatibilità visualizzazione strato (riavvio necessario)" msgid "FreeCAD trackpad" -msgstr "" +msgstr "Trackpad di FreeCAD" msgctxt "@action:inmenu menubar:view" msgid "Front View" @@ -1854,18 +1700,6 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "File G-Code" -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Lettore profilo codice G" - -msgctxt "name" -msgid "G-code Reader" -msgstr "Lettore codice G" - -msgctxt "name" -msgid "G-code Writer" -msgstr "Writer codice G" - msgctxt "@label" msgid "G-code flavor" msgstr "Versione codice G" @@ -1924,7 +1758,7 @@ msgstr "Per iniziare" msgctxt "@label" msgid "Global" -msgstr "" +msgstr "Globale" msgctxt "@title:tab" msgid "Global Settings" @@ -1938,7 +1772,6 @@ msgctxt "@label" msgid "Grid Placement" msgstr "Posizionamento nella griglia" -#, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "Gruppo #{group_nr}" @@ -1977,7 +1810,7 @@ msgstr "Nascondi tutte le stampanti collegate" msgctxt "@action:button" msgid "Hide settings" -msgstr "" +msgstr "Nascondere le impostazioni" msgctxt "@action:menu" msgid "Hide this setting" @@ -2015,10 +1848,6 @@ msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "Se la stampante non è nell’elenco, leggere la guida alla risoluzione dei problemi per la stampa in rete" -msgctxt "name" -msgid "Image Reader" -msgstr "Lettore di immagine" - msgctxt "@action:button" msgid "Import" msgstr "Importa" @@ -2057,7 +1886,7 @@ msgstr "Per utilizzare il pacchetto è necessario riavviare Cura" msgctxt "@option:radio" msgid "Include UltiMaker account name" -msgstr "" +msgstr "Includere il nome dell'account UltiMaker" msgctxt "@label" msgid "Infill" @@ -2303,10 +2132,6 @@ msgctxt "@info:tooltip" msgid "Left View" msgstr "Vista sinistra" -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Lettore legacy profilo Cura" - msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "Informa gli sviluppatori che si è verificato un errore." @@ -2387,10 +2212,6 @@ msgctxt "@title:groupbox" msgid "Logs" msgstr "Registri" -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Registra determinati eventi in modo che possano essere utilizzati dal segnalatore dei crash" - msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Persa connessione con la stampante" @@ -2399,10 +2220,6 @@ msgctxt "@action" msgid "Machine Settings" msgstr "Impostazioni macchina" -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Azione Impostazioni macchina" - msgctxt "@backuplist:label" msgid "Machines" msgstr "Macchine" @@ -2419,10 +2236,6 @@ msgctxt "@item:inlistbox" msgid "Makerbot Printfile" msgstr "File di Stampa Makerbot" -msgctxt "name" -msgid "Makerbot Printfile Writer" -msgstr "Scrittore di File di Stampa Makerbot" - msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "MakerbotWriter non è riuscito a salvare nel percorso designato." @@ -2479,14 +2292,6 @@ msgctxt "@text" msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." msgstr "Gestisci i plugin UltiMaker Cura e i profili del materiale qui. Accertarsi di mantenere i plugin aggiornati e di eseguire regolarmente il backup dell'impostazione." -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "Gestisce le estensioni per l'applicazione e consente di ricercare le estensioni nel sito Web UltiMaker." - -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "Gestisce le connessioni di rete alle stampanti UltiMaker in rete." - msgctxt "@label" msgid "Manufacturer" msgstr "Produttore" @@ -2499,10 +2304,6 @@ msgctxt "@label" msgid "Marketplace" msgstr "Mercato" -msgctxt "name" -msgid "Marketplace" -msgstr "Mercato" - msgctxt "@action:label" msgid "Material" msgstr "Materiale" @@ -2519,10 +2320,6 @@ msgctxt "@label:listbox" msgid "Material Color" msgstr "Colore materiale" -msgctxt "name" -msgid "Material Profiles" -msgstr "Profili del materiale" - msgctxt "@label" msgid "Material Type" msgstr "Tipo di materiale" @@ -2567,10 +2364,6 @@ msgctxt "@action:label" msgid "Mode" msgstr "Modalità" -msgctxt "name" -msgid "Model Checker" -msgstr "Controllo modello" - msgctxt "@info:title" msgid "Model Errors" msgstr "Errori modello" @@ -2587,10 +2380,6 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "Controlla" -msgctxt "name" -msgid "Monitor Stage" -msgstr "Fase di controllo" - msgctxt "@action:button" msgid "Monitor print" msgstr "Monitora stampa" @@ -2665,7 +2454,6 @@ msgctxt "@info:title" msgid "Network error" msgstr "Errore di rete" -#, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" msgstr "Nuovo firmware %s stabile disponibile" @@ -2678,7 +2466,6 @@ msgctxt "@label" msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." msgstr "Le nuove stampanti UltiMaker possono essere connesse a Digital Factory e monitorate da remoto." -#, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." msgstr "Nuove funzionalità o bug fix potrebbero essere disponibili per {machine_name}. Se non è già stato fatto in precedenza, si consiglia di aggiornare il firmware della stampante alla versione {latest_version}." @@ -2725,7 +2512,6 @@ msgctxt "@label" msgid "No cost estimation available" msgstr "Nessuna stima di costo disponibile" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Nessun profilo personalizzato da importare nel file {0}" @@ -2764,7 +2550,7 @@ msgstr "Nessun risultato trovato con il filtro corrente" msgctxt "@label" msgid "No specific value has been set" -msgstr "" +msgstr "Non è stato impostato alcun valore specifico" msgctxt "@label" msgid "No time estimation available" @@ -2840,7 +2626,7 @@ msgstr "Numero di estrusori" msgctxt "@action:button" msgid "OK" -msgstr "" +msgstr "OK" msgctxt "@label" msgid "OS language" @@ -2862,14 +2648,13 @@ msgctxt "@label" msgid "Only Show Top Layers" msgstr "Mostra solo strati superiori" -#, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "È possibile caricare un solo file codice G per volta. Importazione saltata {0}" msgctxt "@message" msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." -msgstr "" +msgstr "Ops! Si è verificato un errore imprevisto durante il processo di slicing. Anche se non è stata disabilitata la condivisione dei dati nelle preferenze, abbiamo ricevuto automaticamente i log degli arresti anomali per l'analisi. Per aiutarci ulteriormente, prendere in considerazione la possibilità di condividere i dettagli del progetto nella nostra tracciatura delle problematiche." msgctxt "@action:button" msgid "Open" @@ -2901,11 +2686,11 @@ msgstr "Apri file progetto" msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Open Universal Cura Project (UCP)" -msgstr "" +msgstr "Aprire il progetto universale Cura (UCP)" msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Open Universal Cura Project (UCP) file" -msgstr "" +msgstr "Aprire il file del progetto universale Cura (UCP)" msgctxt "@action:label" msgid "Open With" @@ -2913,7 +2698,7 @@ msgstr "Apri con" msgctxt "@action:button" msgid "Open as UCP" -msgstr "" +msgstr "Aprire come UCP" msgctxt "@action:button" msgid "Open as project" @@ -3036,10 +2821,6 @@ msgctxt "@label" msgid "Per Model Settings" msgstr "Impostazioni per modello" -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Utilità impostazioni per modello" - msgid "Perspective" msgstr "Prospettiva" @@ -3076,15 +2857,10 @@ msgid "Please give the required permissions when authorizing this application." msgstr "Fornire i permessi necessari al momento dell'autorizzazione di questa applicazione." msgctxt "@info" -msgid "" -"Please make sure your printer has a connection:\n" -"- Check if the printer is turned on.\n" -"- Check if the printer is connected to the network.\n" -"- Check if you are signed in to discover cloud-connected printers." -msgstr "" -"Accertarsi che la stampante sia collegata:\n" -"- Controllare se la stampante è accesa.\n" -"- Controllare se la stampante è collegata alla rete.\n" +msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." +msgstr "Accertarsi che la stampante sia collegata:" +"- Controllare se la stampante è accesa." +"- Controllare se la stampante è collegata alla rete." "- Controllare se è stato effettuato l'accesso per rilevare le stampanti collegate al cloud." msgctxt "@text" @@ -3112,15 +2888,10 @@ msgid "Please remove the print" msgstr "Rimuovere la stampa" msgctxt "@info:status" -msgid "" -"Please review settings and check if your models:\n" -"- Fit within the build volume\n" -"- Are assigned to an enabled extruder\n" -"- Are not all set as modifier meshes" -msgstr "" -"Verificare le impostazioni e controllare se i modelli:\n" -"- Rientrano nel volume di stampa\n" -"- Sono assegnati a un estrusore abilitato\n" +msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" +msgstr "Verificare le impostazioni e controllare se i modelli:" +"- Rientrano nel volume di stampa" +"- Sono assegnati a un estrusore abilitato" "- Non sono tutti impostati come maglie modificatore" msgctxt "@label" @@ -3133,7 +2904,7 @@ msgstr "Accedere per ottenere i plugin e i materiali verificati per UltiMaker Cu msgctxt "@info:tooltip" msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." -msgstr "" +msgstr "Accedere al proprio account UltiMaker per consentire l'invio di dati non anonimi." msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." @@ -3175,10 +2946,6 @@ msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Post-elaborazione" -msgctxt "name" -msgid "Post Processing" -msgstr "Post-elaborazione" - msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "Plug-in di post-elaborazione" @@ -3195,10 +2962,6 @@ msgctxt "@item:inmenu" msgid "Prepare" msgstr "Prepara" -msgctxt "name" -msgid "Prepare Stage" -msgstr "Fase di preparazione" - msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "Preparazione in corso..." @@ -3219,10 +2982,6 @@ msgctxt "@item:inmenu" msgid "Preview" msgstr "Anteprima" -msgctxt "name" -msgid "Preview Stage" -msgstr "Fase di anteprima" - msgctxt "@tooltip" msgid "Prime Tower" msgstr "Torre di innesco" @@ -3423,7 +3182,6 @@ msgctxt "@title:column" msgid "Profile settings" msgstr "Impostazioni profilo" -#, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Il profilo {0} ha un tipo di file sconosciuto o corrotto." @@ -3448,22 +3206,18 @@ msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Lingua di programmazione" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "Il file di progetto {0} contiene un tipo di macchina sconosciuto {1}. Impossibile importare la macchina. Verranno invece importati i modelli." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "Il file di progetto {0} è danneggiato: {1}." -#, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." msgstr "Il file di progetto {0} è realizzato con profili sconosciuti a questa versione di UltiMaker Cura." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "Il file di progetto {0} è diventato improvvisamente inaccessibile: {1}." @@ -3472,147 +3226,42 @@ msgctxt "@label" msgid "Properties" msgstr "Proprietà" -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Fornisce azioni macchina per l’aggiornamento del firmware." - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Fornisce una fase di controllo in Cura." +msgctxt "@label" +msgid "PyQt version" +msgstr "Versione PyQt" -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Fornisce una normale visualizzazione a griglia compatta." +msgctxt "@Label Description for application dependency" +msgid "Python Error tracking library" +msgstr "Libreria per la traccia degli errori Python" -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Fornisce una fase di preparazione in Cura." +msgctxt "@label Description for application dependency" +msgid "Python bindings for Clipper" +msgstr "Vincoli Python per Clipper" -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Fornisce una fase di anteprima in Cura." +msgctxt "@label Description for application component" +msgid "Python bindings for libnest2d" +msgstr "Vincoli Python per libnest2d" -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Fornisce un modo per modificare le impostazioni della macchina (come il volume di stampa, la dimensione ugello, ecc.)" +msgctxt "@label" +msgid "Qt version" +msgstr "Versione Qt" -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Offre la possibilità di leggere e scrivere profili di materiali basati su XML." +msgctxt "@info:status" +msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." +msgstr "Il tipo di qualità '{0}' non è compatibile con la definizione di macchina attiva corrente '{1}'." -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Fornisce azioni macchina per le macchine UltiMaker (come la procedura guidata di livellamento del piano di stampa, la selezione degli aggiornamenti, ecc.)" +msgctxt "@info:title" +msgid "Queue Full" +msgstr "Coda piena" -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Fornisce il collegamento a caldo dell'unità rimovibile e il supporto per la scrittura." - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Fornisce supporto per l'esportazione dei profili Cura." - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Fornisce supporto per l'importazione dei profili Cura." - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Fornisce supporto per l'importazione di profili da file G-Code." - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Fornisce supporto per l'importazione di profili dalle versioni legacy Cura." - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Fornisce il supporto per la lettura di file 3MF." - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Fornisce il supporto per la lettura di file 3MF." - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Fornisce il supporto per la lettura di pacchetti formato UltiMaker." - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Fornisce il supporto per la lettura di file X3D." - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Fornisce supporto per la lettura dei file modello." - -msgctxt "description" -msgid "Provides support for writing 3MF and UCP files." -msgstr "" - -msgctxt "description" -msgid "Provides support for writing MakerBot Format Packages." -msgstr "Fornisce supporto per la scrittura di pacchetti nel formato MakerBot." - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Fornisce il supporto per la scrittura di pacchetti formato UltiMaker." - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Fornisce le impostazioni per modello." - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Fornisce la vista a raggi X." - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Fornisce il collegamento al back-end di sezionamento CuraEngine." - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Fornisce l'anteprima dei dati dei livelli suddivisi in sezioni." - -msgctxt "@label" -msgid "PyQt version" -msgstr "Versione PyQt" - -msgctxt "@Label Description for application dependency" -msgid "Python Error tracking library" -msgstr "Libreria per la traccia degli errori Python" - -msgctxt "@label Description for application dependency" -msgid "Python bindings for Clipper" -msgstr "Vincoli Python per Clipper" - -msgctxt "@label Description for application component" -msgid "Python bindings for libnest2d" -msgstr "Vincoli Python per libnest2d" - -msgctxt "@label" -msgid "Qt version" -msgstr "Versione Qt" - -#, python-brace-format -msgctxt "@info:status" -msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." -msgstr "Il tipo di qualità '{0}' non è compatibile con la definizione di macchina attiva corrente '{1}'." - -msgctxt "@info:title" -msgid "Queue Full" -msgstr "Coda piena" - -msgctxt "@label" -msgid "Queued" -msgstr "Coda di stampa" +msgctxt "@label" +msgid "Queued" +msgstr "Coda di stampa" msgctxt "@info:button, %1 is the application name" msgid "Quit %1" msgstr "Chiudere %1" -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Legge il codice G da un archivio compresso." - msgctxt "@button" msgid "Recommended" msgstr "Consigliata" @@ -3665,10 +3314,6 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "Unità rimovibile" -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Plugin dispositivo di output unità rimovibile" - msgctxt "@action:button" msgid "Remove" msgstr "Rimuovi" @@ -3791,11 +3436,11 @@ msgstr "Salva progetto Cura" msgctxt "@option" msgid "Save Cura project and .makerbot print file" -msgstr "" +msgstr "Salvare il progetto Cura e il file di stampa .makerbot" msgctxt "@option" msgid "Save Cura project and .ufp print file" -msgstr "" +msgstr "Salvare il progetto Cura e il file di stampa .ufp" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3823,7 +3468,7 @@ msgstr "Salva nuovo profilo" msgctxt "@action:button" msgid "Save project" -msgstr "" +msgstr "Salvare il progetto" msgctxt "@text" msgid "Save the .umm file on a USB stick." @@ -3833,12 +3478,10 @@ msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "Salva su unità rimovibile" -#, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "Salva su unità rimovibile {0}" -#, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Salvato su unità rimovibile {0} come {1}" @@ -3847,7 +3490,6 @@ msgctxt "@info:title" msgid "Saving" msgstr "Salvataggio in corso" -#, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Salvataggio su unità rimovibile {0}" @@ -3930,15 +3572,15 @@ msgstr "Inviare il rapporto su crash a UltiMaker" msgctxt "@info:tooltip" msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." -msgstr "" +msgstr "Inviare le segnalazioni degli arresti anomali con il nome dell'account UltiMaker registrato e il nome del progetto a UltiMaker Sentry. Non saranno inviati i dati effettivi del modello." msgctxt "@info:tooltip" msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." -msgstr "" +msgstr "Inviare le segnalazioni degli arresti anomali senza le informazioni di identificazione personale o i dati dei modelli a UltiMaker." msgctxt "@option:check" msgid "Send engine crash reports" -msgstr "" +msgstr "Inviare le segnalazioni degli arresti anomali del motore" msgctxt "@action:button" msgid "Send report" @@ -3952,10 +3594,6 @@ msgctxt "@info:title" msgid "Sending materials to printer" msgstr "Invio dei materiali alla stampante" -msgctxt "name" -msgid "Sentry Logger" -msgstr "Logger sentinella" - msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Libreria di comunicazione seriale" @@ -3994,7 +3632,7 @@ msgstr "Impostazioni" msgctxt "@action:label" msgid "Settings Loaded from UCP file" -msgstr "" +msgstr "Impostazioni caricate dal file UCP" msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" @@ -4066,7 +3704,7 @@ msgstr "L'apertura dei file dal desktop o da applicazioni esterne deve essere es msgctxt "@info:tooltip" msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." -msgstr "" +msgstr "Le segnalazioni degli arresti anomali di slicing devono essere segnalati automaticamente a Ultimaker? Nota: non vengono inviati o memorizzati i modelli, gli indirizzi IP o le altre informazioni di identificazione personale, a meno che non si fornisca un'autorizzazione esplicita." msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" @@ -4126,7 +3764,7 @@ msgstr "Mostra il rapporto su crash dettagliato" msgctxt "@action:button" msgid "Show settings" -msgstr "" +msgstr "Mostra le impostazioni" msgctxt "@option:check" msgid "Show summary dialog when saving project" @@ -4164,10 +3802,6 @@ msgctxt "@label" msgid "Sign in to the UltiMaker platform" msgstr "Accedi alla piattaforma UltiMaker" -msgctxt "name" -msgid "Simulation View" -msgstr "Vista simulazione" - msgctxt "@tooltip" msgid "Skin" msgstr "Rivestimento esterno" @@ -4196,10 +3830,6 @@ msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Seziona automaticamente alla modifica delle impostazioni." -msgctxt "name" -msgid "Slice info" -msgstr "Informazioni su sezionamento" - msgctxt "@message:title" msgid "Slicing failed" msgstr "Sezionamento non riuscito" @@ -4214,24 +3844,15 @@ msgstr "Sistemazione" msgctxt "@label" msgid "Solid" -msgstr "" - -msgctxt "name" -msgid "Solid View" -msgstr "Visualizzazione compatta" +msgstr "Solido" msgctxt "@item:inmenu" msgid "Solid view" msgstr "Visualizzazione compatta" msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "" -"Alcune impostazioni nascoste utilizzano valori diversi dal proprio valore normale calcolato.\n" -"\n" +msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." +msgstr "Alcune impostazioni nascoste utilizzano valori diversi dal proprio valore normale calcolato." "Fare clic per rendere visibili queste impostazioni." msgctxt "@info:status" @@ -4247,13 +3868,8 @@ msgid "Some setting-values defined in %1 were overridden." msgstr "Alcuni valori delle impostazioni definiti in %1 sono stati sovrascritti." msgctxt "@tooltip" -msgid "" -"Some setting/override values are different from the values stored in the profile.\n" -"\n" -"Click to open the profile manager." -msgstr "" -"Alcuni valori di impostazione/esclusione sono diversi dai valori memorizzati nel profilo.\n" -"\n" +msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." +msgstr "Alcuni valori di impostazione/esclusione sono diversi dai valori memorizzati nel profilo." "Fare clic per aprire la gestione profili." msgctxt "@action:label" @@ -4324,10 +3940,6 @@ msgctxt "@label" msgid "Strength" msgstr "Resistenza" -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Invia informazioni su sezionamento anonime Può essere disabilitato tramite le preferenze." - msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "Materiale esportato correttamente su %1" @@ -4336,18 +3948,17 @@ msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "Materiale importato correttamente %1" -#, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Profilo {0} importato correttamente." msgctxt "@action:label" msgid "Suggested Material settings" -msgstr "" +msgstr "Impostazioni del materiale consigliate" msgctxt "@action:label" msgid "Suggested Profile settings" -msgstr "" +msgstr "Impostazioni del profilo consigliate" msgctxt "@action:title" msgid "Summary - Cura Project" @@ -4355,11 +3966,11 @@ msgstr "Riepilogo - Progetto Cura" msgctxt "@action:title Don't translate 'Universal Cura Project'" msgid "Summary - Open Universal Cura Project (UCP)" -msgstr "" +msgstr "Riepilogo - Aprire il progetto universale Cura (UCP)" msgctxt "@action:title Don't translate 'Universal Cura Project'" msgid "Summary - Universal Cura Project" -msgstr "" +msgstr "Riepilogo - Progetto universale Cura" msgctxt "@label" msgid "Support" @@ -4373,10 +3984,6 @@ msgctxt "@label" msgid "Support Blocker" msgstr "Blocco supporto" -msgctxt "name" -msgid "Support Eraser" -msgstr "Cancellazione supporto" - msgctxt "@tooltip" msgid "Support Infill" msgstr "Riempimento del supporto" @@ -4543,7 +4150,6 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "Il treno estrusore utilizzato per la stampa del supporto. Utilizzato nell’estrusione multipla." -#, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "Il file {0} esiste già. Sei sicuro di volerlo sovrascrivere?" @@ -4607,21 +4213,10 @@ msgid "The nozzle inserted in this extruder." msgstr "L’ugello inserito in questo estrusore." msgctxt "@label" -msgid "" -"The pattern of the infill material of the print:\n" -"\n" -"For quick prints of non functional model choose line, zig zag or lightning infill.\n" -"\n" -"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" -"\n" -"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "" -"La configurazione del materiale di riempimento della stampa:\n" -"\n" -"Per stampe rapide di modelli non funzionali scegli linea, zig zag o riempimento fulmine.\n" -"\n" -"Per le parti funzionali non soggette a forti sollecitazioni, si consiglia griglia o triangolo o tri-esagonale.\n" -"\n" +msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "La configurazione del materiale di riempimento della stampa:" +"Per stampe rapide di modelli non funzionali scegli linea, zig zag o riempimento fulmine." +"Per le parti funzionali non soggette a forti sollecitazioni, si consiglia griglia o triangolo o tri-esagonale." "Per le stampe 3D funzionali che richiedono un'elevata resistenza in più direzioni utilizzare cubico, suddivisione cubica, quarto cubico, ottetto e giroide." msgctxt "@info:tooltip" @@ -4742,7 +4337,7 @@ msgstr "Questa configurazione non è disponibile perché %1 non viene riconosciu msgctxt "@text:window" msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" -msgstr "" +msgstr "Questo è un file del progetto universale Cura. Si desidera aprirlo come progetto Cura o progetto universale Cura o importare i modelli da esso?" msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" @@ -4778,7 +4373,6 @@ msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "Questa stampante comanda un gruppo di %1 stampanti." -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Questo profilo {0} contiene dati errati, impossibile importarlo." @@ -4792,13 +4386,8 @@ msgid "This project contains materials or plugins that are currently not install msgstr "Questo progetto contiene materiali o plugin attualmente non installati in Cura.
                                      Installa i pacchetti mancanti e riapri il progetto." msgctxt "@label" -msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." -msgstr "" -"Questa impostazione ha un valore diverso dal profilo.\n" -"\n" +msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." +msgstr "Questa impostazione ha un valore diverso dal profilo." "Fare clic per ripristinare il valore del profilo." msgctxt "@item:tooltip" @@ -4816,13 +4405,8 @@ msgid "This setting is always shared between all extruders. Changing it here wil msgstr "Questa impostazione è sempre condivisa tra tutti gli estrusori. La sua modifica varierà il valore per tutti gli estrusori." msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "" -"Questa impostazione normalmente viene calcolata, ma attualmente ha impostato un valore assoluto.\n" -"\n" +msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." +msgstr "Questa impostazione normalmente viene calcolata, ma attualmente ha impostato un valore assoluto." "Fare clic per ripristinare il valore calcolato." msgctxt "@label" @@ -4835,11 +4419,11 @@ msgstr "Questa impostazione viene risolta dai valori in conflitto specifici dell msgctxt "@tooltip Don't translate 'Universal Cura Project'" msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." -msgstr "" +msgstr "Questa impostazione potrebbe non funzionare bene durante l'esportazione nel progetto universale Cura. Gli utenti sono invitati ad aggiungerla a proprio rischio." msgctxt "@tooltip Don't translate 'Universal Cura Project'" msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." -msgstr "" +msgstr "Quest'impostazione potrebbe non funzionare bene durante l'esportazione nel progetto universale Cura. Gli utenti sono invitati ad aggiungerla a proprio rischio." msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" @@ -4857,7 +4441,6 @@ msgctxt "@text" msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." msgstr "Per sincronizzare automaticamente i profili del materiale con tutte le stampanti collegate a Digital Factory è necessario aver effettuato l'accesso a Cura." -#, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "Per stabilire una connessione, visitare {website_link}" @@ -4870,7 +4453,6 @@ msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." msgstr "Per stampare direttamente sulla stampante in rete, verificare che la stampante desiderata sia collegata alla rete mediante un cavo di rete o mediante collegamento alla rete WIFI. Se non si esegue il collegamento di Cura alla stampante, è comunque possibile utilizzare una chiavetta USB per trasferire i file codice G alla stampante." -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "Per rimuovere definitivamente {printer_name}, visitare {digital_factory_link}" @@ -4919,10 +4501,6 @@ msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "Tentativo di ripristinare un backup di Cura senza dati o metadati appropriati." -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh Reader" - msgctxt "@button" msgid "Troubleshooting" msgstr "Ricerca e riparazione dei guasti" @@ -4943,22 +4521,10 @@ msgctxt "@label" msgid "Type" msgstr "Tipo" -msgctxt "name" -msgid "UFP Reader" -msgstr "Lettore UFP" - -msgctxt "name" -msgid "UFP Writer" -msgstr "Writer UFP" - msgctxt "@item:inmenu" msgid "USB printing" msgstr "Stampa USB" -msgctxt "name" -msgid "USB printing" -msgstr "Stampa USB" - msgctxt "@button" msgid "UltiMaker Account" msgstr "Account UltiMaker" @@ -4975,10 +4541,6 @@ msgctxt "@item:inlistbox" msgid "UltiMaker Format Package" msgstr "Pacchetto formato UltiMaker" -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "Connessione di rete UltiMaker" - msgctxt "@info" msgid "UltiMaker Verified Package" msgstr "Pacchetto verificato UltiMaker" @@ -4987,10 +4549,6 @@ msgctxt "@info" msgid "UltiMaker Verified Plug-in" msgstr "Plug-in verificato UltiMaker" -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "Azioni della macchina UltiMaker" - msgctxt "@button" msgid "UltiMaker printer" msgstr "Stampante UltiMaker" @@ -5003,10 +4561,6 @@ msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Impossibile aggiungere il profilo." @@ -5015,18 +4569,13 @@ msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Impossibile individuare una posizione nel volume di stampa per tutti gli oggetti" -#, python-brace-format msgctxt "@info:plugin_failed" msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" msgstr "Impossibile trovare il server EnginePlugin locale eseguibile per: {self._plugin_id}" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Unable to kill running EnginePlugin: {self._plugin_id}\n" -"Access is denied." -msgstr "" -"Impossibile interrompere l'esecuzione di EnginePlugin: {self._plugin_id}\n" +msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." +msgstr "Impossibile interrompere l'esecuzione di EnginePlugin: {self._plugin_id}" "Accesso negato." msgctxt "@info" @@ -5049,12 +4598,10 @@ msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "Impossibile eseguire il sezionamento perché la torre di innesco o la posizione di innesco non sono valide." -#, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "Impossibile effettuare il sezionamento in quanto vi sono oggetti associati a Extruder %s disabilitato." -#, python-brace-format msgctxt "@info:status" msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" msgstr "Impossibile eseguire il sezionamento a causa di alcune impostazioni per modello. Le seguenti impostazioni presentano errori su uno o più modelli: {error_labels}" @@ -5063,7 +4610,6 @@ msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "Impossibile eseguire il sezionamento con il materiale corrente in quanto incompatibile con la macchina o la configurazione selezionata." -#, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "Impossibile eseguire il sezionamento con le impostazioni attuali. Le seguenti impostazioni presentano errori: {0}" @@ -5072,10 +4618,9 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Impossibile avviare un nuovo processo di accesso. Verificare se è ancora attivo un altro tentativo di accesso." -#, python-brace-format msgctxt "@info:error" msgid "Unable to write to file: {0}" -msgstr "" +msgstr "Non è possibile scrivere sul file: {0}" msgctxt "@label:status" msgid "Unavailable" @@ -5099,11 +4644,11 @@ msgstr "Unità" msgctxt "@item:inlistbox" msgid "Universal Cura Project" -msgstr "" +msgstr "Progetto universale Cura" msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." -msgstr "" +msgstr "I file del progetto universale Cura possono essere riprodotti su diverse stampanti 3D, mantenendo i dati di posizione e le impostazioni selezionate. Quando vengono esportati, tutti i modelli presenti sulla piastra di costruzione saranno inclusi con la posizione, l'orientamento e la scala attuali. È inoltre possibile selezionare che le impostazioni per estrusore o per modello siano incluse per garantire una stampa corretta." msgctxt "@label Description for development tool" msgid "Universal build system configuration" @@ -5125,7 +4670,6 @@ msgctxt "@label:property" msgid "Unknown Package" msgstr "Pacchetto sconosciuto" -#, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Codice di errore sconosciuto durante il caricamento del processo di stampa: {0}" @@ -5190,265 +4734,49 @@ msgctxt "@button" msgid "Updating..." msgstr "Aggiornamento in corso..." -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Aggiorna le configurazioni da Cura 2.1 a Cura 2.2." +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Carica il firmware personalizzato" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Aggiorna le configurazioni da Cura 2.2 a Cura 2.4." +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "Caricamento del processo di stampa sulla stampante." -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Aggiorna le configurazioni da Cura 2.5 a Cura 2.6." +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "Caricamento backup in corso..." -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Aggiorna le configurazioni da Cura 2.6 a Cura 2.7." +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "Utilizzare una singola istanza di Cura" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Aggiorna le configurazioni da Cura 2.7 a Cura 3.0." +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "Utilizzare la colla per una migliore adesione con questa combinazione di materiali." -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Aggiorna le configurazioni da Cura 3.0 a Cura 3.1." +msgctxt "@label" +msgid "User Agreement" +msgstr "Contratto di licenza" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Aggiorna le configurazioni da Cura 3.2 a Cura 3.3." +msgctxt "@label Description for application dependency" +msgid "Utility functions, including an image loader" +msgstr "Funzioni di utilità, tra cui un caricatore di immagini" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Aggiorna le configurazioni da Cura 3.3 a Cura 3.4." +msgctxt "@label Description for application dependency" +msgid "Utility library, including Voronoi generation" +msgstr "Libreria utilità, tra cui generazione diagramma Voronoi" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Aggiorna le configurazioni da Cura 3.4 a Cura 3.5." +msgctxt "@title:column" +msgid "Value" +msgstr "Valore" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Aggiorna le configurazioni da Cura 3.5 a Cura 4.0." +msgctxt "@button" +msgid "View printers in Digital Factory" +msgstr "Visualizza le stampanti in Digital Factory" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Aggiorna le configurazioni da Cura 4.0 a Cura 4.1." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Aggiorna le configurazioni da Cura 4.1 a Cura 4.2." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Aggiorna le configurazioni da Cura 4.11 a Cura 4.12." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Aggiorna le configurazioni da Cura 4.3 a Cura 5.0." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Aggiorna le configurazioni da Cura 4.2 a Cura 4.3." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Aggiorna le configurazioni da Cura 4.3 a Cura 4.4." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Aggiorna le configurazioni da Cura 4.4 a Cura 4.5." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Aggiorna le configurazioni da Cura 4.5 a Cura 4.6." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Aggiorna le configurazioni da Cura 4.6.0 a Cura 4.6.2." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Aggiorna le configurazioni da Cura 4.6.2 a Cura 4.7." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Aggiorna le configurazioni da Cura 4.7 a Cura 4.8." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Aggiorna le configurazioni da Cura 4.8 a Cura 4.9." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Aggiorna le configurazioni da Cura 4.9 a Cura 4.10." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Aggiorna le configurazioni da Cura 5.2 a Cura 5.3." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Configurazioni aggiornamenti da Cura 5.3 a Cura 5.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Configurazioni aggiornamenti da Cura 5.4 a Cura 5.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." -msgstr "" - -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Carica il firmware personalizzato" - -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Caricamento del processo di stampa sulla stampante." - -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Caricamento backup in corso..." - -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Utilizzare una singola istanza di Cura" - -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "Utilizzare la colla per una migliore adesione con questa combinazione di materiali." - -msgctxt "@label" -msgid "User Agreement" -msgstr "Contratto di licenza" - -msgctxt "@label Description for application dependency" -msgid "Utility functions, including an image loader" -msgstr "Funzioni di utilità, tra cui un caricatore di immagini" - -msgctxt "@label Description for application dependency" -msgid "Utility library, including Voronoi generation" -msgstr "Libreria utilità, tra cui generazione diagramma Voronoi" - -msgctxt "@title:column" -msgid "Value" -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Aggiornamento della versione da 2.1 a 2.2" - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Aggiornamento della versione da 2.2 a 2.4" - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Aggiornamento della versione da 2.5 a 2.6" - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Aggiornamento della versione da 2.6 a 2.7" - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Aggiornamento della versione da 2.7 a 3.0" - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Aggiornamento della versione da 3.0 a 3.1" - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Aggiornamento della versione da 3.2 a 3.3" - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Aggiornamento della versione da 3.3 a 3.4" - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Aggiornamento della versione da 3.4 a 3.5" - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Aggiornamento della versione da 3.5 a 4.0" - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Aggiornamento della versione da 4.0 a 4.1" - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Aggiornamento della versione da 4.1 a 4.2" - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Aggiornamento della versione da 4.11 a 4.12" - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Aggiornamento della versione da 4.13 a 5.0" - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Aggiornamento della versione da 4.2 a 4.3" - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Aggiornamento della versione da 4.3 a 4.4" - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Aggiornamento della versione da 4.4 a 4.5" - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Aggiornamento della versione da 4.5 a 4.6" - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Aggiornamento versione da 4.6.0 a 4.6.2" - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Aggiornamento versione da 4.6.2 a 4.7" - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Aggiornamento della versione da 4.7 a 4.8" - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Aggiornamento della versione da 4.8 a 4.9" - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Aggiornamento della versione da 4.9 a 4.10" - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "Aggiornamento della versione da 5.2 a 5.3" - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "Aggiornamento versione da 5.3 a 5.4" - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "Aggiornamento versione da 5.4 a 5.5" - -msgctxt "name" -msgid "Version Upgrade 5.6 to 5.7" -msgstr "" - -msgctxt "@button" -msgid "View printers in Digital Factory" -msgstr "Visualizza le stampanti in Digital Factory" - -msgctxt "@label" -msgid "View type" -msgstr "Visualizza tipo" +msgctxt "@label" +msgid "View type" +msgstr "Visualizza tipo" msgctxt "@label link to technical assistance" msgid "View user manuals online" @@ -5494,7 +4822,6 @@ msgctxt "@info:title" msgid "Warning" msgstr "Avvertenza" -#, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Avvertenza: il profilo non è visibile in quanto il tipo di qualità '{0}' non è disponibile per la configurazione corrente. Passare alla combinazione materiale/ugello che consente di utilizzare questo tipo di qualità." @@ -5521,7 +4848,7 @@ msgstr "Quale stampante si desidera configurare?" msgctxt "@info:tooltip" msgid "What type of camera navigation should be used?" -msgstr "" +msgstr "Quale tipo di navigazione della fotocamera deve essere utilizzata?" msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" @@ -5559,14 +4886,6 @@ msgctxt "@action:label" msgid "Width (mm)" msgstr "Larghezza (mm)" -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Scrive il codice G in un archivio compresso." - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Scrive il codice G in un file." - msgctxt "@label" msgid "X (Width)" msgstr "X (Larghezza)" @@ -5579,10 +4898,6 @@ msgctxt "@label" msgid "X min" msgstr "X min" -msgctxt "name" -msgid "X-Ray View" -msgstr "Vista ai raggi X" - msgctxt "@item:inlistbox" msgid "X-Ray view" msgstr "Vista ai raggi X" @@ -5595,10 +4910,6 @@ msgctxt "@item:inlistbox" msgid "X3D File" msgstr "File X3D" -msgctxt "name" -msgid "X3D Reader" -msgstr "Lettore X3D" - msgctxt "@label" msgid "Y (Depth)" msgstr "Y (Profondità)" @@ -5616,33 +4927,20 @@ msgid "Yes" msgstr "Sì" msgctxt "@label" -msgid "" -"You are about to remove all printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr "" -"Si stanno per rimuovere tutte le stampanti da Cura. Questa azione non può essere annullata. \n" +msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgstr "Si stanno per rimuovere tutte le stampanti da Cura. Questa azione non può essere annullata. " "Continuare?" -#, python-brace-format msgctxt "@label" -msgid "" -"You are about to remove {0} printer from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgid_plural "" -"You are about to remove {0} printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr[0] "" -"Si sta per rimuovere {0} stampante da Cura. Questa azione non può essere annullata.\n" -"Continuare?" -msgstr[1] "" -"Si stanno per rimuovere {0} stampanti da Cura. Questa azione non può essere annullata.\n" -"Continuare?" +msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgstr[0] "Si sta per rimuovere {0} stampante da Cura. Questa azione non può essere annullata.\nContinuare?" +msgstr[1] "Si stanno per rimuovere {0} stampanti da Cura. Questa azione non può essere annullata.\nContinuare?" msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "Si sta tentando di connettersi a una stampante che non esegue Ultimaker Connect. Aggiornare la stampante con il firmware più recente." -#, python-brace-format msgctxt "@info:status" msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." msgstr "Tentativo di connessione a {0} in corso, che non è l'host di un gruppo. È possibile visitare la pagina web per configurarla come host del gruppo." @@ -5653,9 +4951,8 @@ msgstr "Nessun backup. Usare il pulsante ‘Esegui backup adesso’ per crearne msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "" -"Alcune impostazioni di profilo sono state personalizzate.\n" -"Mantenere queste impostazioni modificate dopo il cambio dei profili?\n" +msgstr "Alcune impostazioni di profilo sono state personalizzate." +"Mantenere queste impostazioni modificate dopo il cambio dei profili?" "In alternativa, è possibile eliminare le modifiche per caricare i valori predefiniti da '%1'." msgctxt "@label" @@ -5686,13 +4983,9 @@ msgctxt "@info" msgid "Your new printer will automatically appear in Cura" msgstr "La nuova stampante apparirà automaticamente in Cura" -#, python-brace-format msgctxt "@info:status" -msgid "" -"Your printer {printer_name} could be connected via cloud.\n" -" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "" -"Impossibile connettere la stampante {printer_name} tramite cloud.\n" +msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "Impossibile connettere la stampante {printer_name} tramite cloud." " Gestisci la coda di stampa e monitora le stampe da qualsiasi posizione collegando la stampante a Digital Factory" msgctxt "@label" @@ -5741,7 +5034,7 @@ msgstr "mm" msgctxt "@label" msgid "s" -msgstr "" +msgstr "s" msgctxt "@info:status" msgid "today" @@ -5755,7 +5048,6 @@ msgctxt "@label" msgid "version: %1" msgstr "versione: %1" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "{printer_name} sarà rimossa fino alla prossima sincronizzazione account." @@ -5764,21 +5056,553 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Impossibile scaricare i plugin {}" -#~ msgctxt "@label" -#~ msgid "Default" -#~ msgstr "Impostazione predefinita" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Gestisce le connessioni di rete per le stampanti interconnesse UltiMaker." + +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "Connessione di rete UltiMaker" -#~ msgid "Provides support for exporting Cura profiles." -#~ msgstr "Fornisce assistenza per l'esportazione di profili Cura." +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Fornisce supporto per l'importazione di profili da file G-Code." -#~ msgctxt "description" -#~ msgid "Provides support for writing 3MF files." -#~ msgstr "Fornisce il supporto per la scrittura di file 3MF." +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "Lettore profilo codice G" -#~ msgctxt "@option" -#~ msgid "Save Cura project and print file" -#~ msgstr "Salva progetto Cura e stampa file" +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Fornisce una normale visualizzazione a griglia compatta." -#~ msgctxt "@message" -#~ msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -#~ msgstr "Sezionamento non riuscito con un errore imprevisto. Valutare se segnalare un bug nel registro problemi." +msgctxt "name" +msgid "Solid View" +msgstr "Visualizzazione compatta" + +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "Plugin CuraEngine per risistemare gradualmente il flusso e limitare balzi a flusso elevato" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Fornisce il supporto per la lettura di file 3MF." + +msgctxt "name" +msgid "3MF Reader" +msgstr "Lettore 3MF" + +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Accetta i G-Code e li invia ad una stampante. I plugin possono anche aggiornare il firmware." + +msgctxt "name" +msgid "USB printing" +msgstr "Stampa USB" + +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Controlla disponibilità di aggiornamenti firmware." + +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Controllo aggiornamento firmware" + +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Gestisce le estensioni per l'applicazione e consente di ricercare le estensioni nel sito Web UltiMaker." + +msgctxt "name" +msgid "Marketplace" +msgstr "Mercato" + +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Effettua il backup o ripristina la configurazione." + +msgctxt "name" +msgid "Cura Backups" +msgstr "Backup Cura" + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Fornisce un modo per modificare le impostazioni della macchina (come il volume di stampa, la dimensione ugello, ecc.)" + +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Azione Impostazioni macchina" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Aggiorna le configurazioni da Cura 2.5 a Cura 2.6." + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Aggiornamento della versione da 2.5 a 2.6" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Aggiorna le configurazioni da Cura 4.7 a Cura 4.8." + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Aggiornamento della versione da 4.7 a 4.8" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Aggiorna le configurazioni da Cura 4.4 a Cura 4.5." + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Aggiornamento della versione da 4.4 a 4.5" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Aggiorna le configurazioni da Cura 3.0 a Cura 3.1." + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Aggiornamento della versione da 3.0 a 3.1" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Aggiorna le configurazioni da Cura 4.11 a Cura 4.12." + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Aggiornamento della versione da 4.11 a 4.12" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Aggiorna le configurazioni da Cura 4.1 a Cura 4.2." + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Aggiornamento della versione da 4.1 a 4.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Aggiorna le configurazioni da Cura 2.6 a Cura 2.7." + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Aggiornamento della versione da 2.6 a 2.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Aggiorna le configurazioni da Cura 4.6.0 a Cura 4.6.2." + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Aggiornamento versione da 4.6.0 a 4.6.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Aggiorna le configurazioni da Cura 3.3 a Cura 3.4." + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Aggiornamento della versione da 3.3 a 3.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Aggiorna le configurazioni da Cura 4.8 a Cura 4.9." + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Aggiornamento della versione da 4.8 a 4.9" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Aggiorna le configurazioni da Cura 4.5 a Cura 4.6." + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Aggiornamento della versione da 4.5 a 4.6" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Aggiorna le configurazioni da Cura 4.2 a Cura 4.3." + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Aggiornamento della versione da 4.2 a 4.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Aggiorna le configurazioni da Cura 3.2 a Cura 3.3." + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Aggiornamento della versione da 3.2 a 3.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Aggiorna le configurazioni da Cura 4.3 a Cura 4.4." + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Aggiornamento della versione da 4.3 a 4.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "Aggiorna le configurazioni da Cura 5.6 a Cura 5.7." + +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "Aggiornamento della versione 5.6 a 5.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Aggiorna le configurazioni da Cura 2.1 a Cura 2.2." + +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Aggiornamento della versione da 2.1 a 2.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Configurazioni aggiornamenti da Cura 5.3 a Cura 5.4" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "Aggiornamento versione da 5.3 a 5.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Aggiorna le configurazioni da Cura 4.9 a Cura 4.10." + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Aggiornamento della versione da 4.9 a 4.10" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Aggiorna le configurazioni da Cura 2.7 a Cura 3.0." + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Aggiornamento della versione da 2.7 a 3.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Aggiorna le configurazioni da Cura 3.5 a Cura 4.0." + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Aggiornamento della versione da 3.5 a 4.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Aggiorna le configurazioni da Cura 5.2 a Cura 5.3." + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Aggiornamento della versione da 5.2 a 5.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Aggiorna le configurazioni da Cura 4.0 a Cura 4.1." + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Aggiornamento della versione da 4.0 a 4.1" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Aggiorna le configurazioni da Cura 4.3 a Cura 5.0." + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Aggiornamento della versione da 4.13 a 5.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Aggiorna le configurazioni da Cura 3.4 a Cura 3.5." + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Aggiornamento della versione da 3.4 a 3.5" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Aggiorna le configurazioni da Cura 2.2 a Cura 2.4." + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Aggiornamento della versione da 2.2 a 2.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Aggiorna le configurazioni da Cura 4.6.2 a Cura 4.7." + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Aggiornamento versione da 4.6.2 a 4.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Configurazioni aggiornamenti da Cura 5.4 a Cura 5.5" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "Aggiornamento versione da 5.4 a 5.5" + +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Consente il caricamento e la visualizzazione dei file codice G." + +msgctxt "name" +msgid "G-code Reader" +msgstr "Lettore codice G" + +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Invia informazioni su sezionamento anonime Può essere disabilitato tramite le preferenze." + +msgctxt "name" +msgid "Slice info" +msgstr "Informazioni su sezionamento" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Fornisce il collegamento a caldo dell'unità rimovibile e il supporto per la scrittura." + +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Plugin dispositivo di output unità rimovibile" + +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Crea una maglia di cancellazione per bloccare la stampa del supporto in alcune posizioni" + +msgctxt "name" +msgid "Support Eraser" +msgstr "Cancellazione supporto" + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Controlla i modelli e la configurazione di stampa per eventuali problematiche di stampa e suggerimenti." + +msgctxt "name" +msgid "Model Checker" +msgstr "Controllo modello" + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Fornisce una fase di preparazione in Cura." + +msgctxt "name" +msgid "Prepare Stage" +msgstr "Fase di preparazione" + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Fornisce l'anteprima dei dati dei livelli suddivisi in sezioni." + +msgctxt "name" +msgid "Simulation View" +msgstr "Vista simulazione" + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Fornisce il supporto per la lettura di file 3MF." + +msgctxt "name" +msgid "AMF Reader" +msgstr "Lettore 3MF" + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Fornisce la vista a raggi X." + +msgctxt "name" +msgid "X-Ray View" +msgstr "Vista ai raggi X" + +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Fornisce azioni macchina per l’aggiornamento del firmware." + +msgctxt "name" +msgid "Firmware Updater" +msgstr "Aggiornamento firmware" + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Fornisce supporto per l'importazione di profili dalle versioni legacy Cura." + +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Lettore legacy profilo Cura" + +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Estensione che consente la post-elaborazione degli script creati da utente" + +msgctxt "name" +msgid "Post Processing" +msgstr "Post-elaborazione" + +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Registra determinati eventi in modo che possano essere utilizzati dal segnalatore dei crash" + +msgctxt "name" +msgid "Sentry Logger" +msgstr "Logger sentinella" + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "Fornisce supporto per la scrittura di pacchetti nel formato MakerBot." + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "Scrittore di File di Stampa Makerbot" + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Fornisce supporto per l'importazione dei profili Cura." + +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Lettore profilo Cura" + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Fornisce il supporto per la lettura di pacchetti formato UltiMaker." + +msgctxt "name" +msgid "UFP Reader" +msgstr "Lettore UFP" + +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Abilita la possibilità di generare geometria stampabile da file immagine 2D." + +msgctxt "name" +msgid "Image Reader" +msgstr "Lettore di immagine" + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Fornisce il collegamento al back-end di sezionamento CuraEngine." + +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Back-end CuraEngine" + +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Scrive il codice G in un archivio compresso." + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Writer codice G compresso" + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Fornisce azioni macchina per le macchine UltiMaker (come la procedura guidata di livellamento del piano di stampa, la selezione degli aggiornamenti, ecc.)" + +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Azioni della macchina UltiMaker" + +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Legge il codice G da un archivio compresso." + +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Lettore codice G compresso" + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Fornisce una fase di anteprima in Cura." + +msgctxt "name" +msgid "Preview Stage" +msgstr "Fase di anteprima" + +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Si collega alla Digital Library, consentendo a Cura di aprire file e salvare file in Digital Library." + +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Fornisce supporto per l'esportazione dei profili Cura." + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Writer profilo Cura" + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Fornisce il supporto per la lettura di file X3D." + +msgctxt "name" +msgid "X3D Reader" +msgstr "Lettore X3D" + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Fornisce supporto per la lettura dei file modello." + +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh Reader" + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Fornisce una fase di controllo in Cura." + +msgctxt "name" +msgid "Monitor Stage" +msgstr "Fase di controllo" + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Fornisce le impostazioni per modello." + +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Utilità impostazioni per modello" + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Offre la possibilità di leggere e scrivere profili di materiali basati su XML." + +msgctxt "name" +msgid "Material Profiles" +msgstr "Profili del materiale" + +msgctxt "description" +msgid "Provides support for writing 3MF and UCP files." +msgstr "Fornisce il supporto per la scrittura di file 3MF e UCP." + +msgctxt "name" +msgid "3MF Writer" +msgstr "Writer 3MF" + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Fornisce il supporto per la scrittura di pacchetti formato UltiMaker." + +msgctxt "name" +msgid "UFP Writer" +msgstr "Writer UFP" + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Scrive il codice G in un file." + +msgctxt "name" +msgid "G-code Writer" +msgstr "Writer codice G" diff --git a/resources/i18n/it_IT/fdmextruder.def.json.po b/resources/i18n/it_IT/fdmextruder.def.json.po index 686cd9ea289..cc952da5318 100644 --- a/resources/i18n/it_IT/fdmextruder.def.json.po +++ b/resources/i18n/it_IT/fdmextruder.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,186 +12,114 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Adesione" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Regolare il diametro del filamento utilizzato. Abbinare questo valore al diametro del filamento utilizzato." - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Adesione piano di stampa" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diametro" - -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "Fine codice G da eseguire quando si passa a questo estrusore." - msgctxt "extruder_nr label" msgid "Extruder" msgstr "Estrusore" +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "Treno estrusore utilizzato per la stampa. Utilizzato nell’estrusione multipla." + +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Ventola di raffreddamento stampa estrusore" + +msgctxt "machine_extruder_cooling_fan_number description" +msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." +msgstr "Il numero di ventole di raffreddamento stampa abbinate a questo estrusore. Modificarlo dal valore predefinito 0 solo quando si ha una ventola di raffreddamento diversa per ciascun estrusore." + msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "Codice G fine estrusore" +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "Fine codice G da eseguire quando si passa a questo estrusore." + msgctxt "machine_extruder_end_code_duration label" msgid "Extruder End G-Code Duration" -msgstr "" +msgstr "Durata del G-code di fine dell'estrusore" + +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "Il tempo necessario per eseguire il G-code di fine, quando ci si allontana da questo estrusore." msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Assoluto posizione fine estrusore" +msgctxt "machine_extruder_end_pos_abs description" +msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." +msgstr "Rende la posizione di fine estrusore assoluta anziché relativa rispetto all’ultima posizione nota della testina." + msgctxt "machine_extruder_end_pos_x label" msgid "Extruder End Position X" msgstr "Posizione X fine estrusore" +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "La coordinata x della posizione di fine allo spegnimento dell’estrusore." + msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Posizione Y fine estrusore" -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Posizione X innesco estrusore" - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Posizione Y innesco estrusore" - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Posizione Z innesco estrusore" - -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Ventola di raffreddamento stampa estrusore" +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "La coordinata y della posizione di fine allo spegnimento dell’estrusore." msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "Codice G avvio estrusore" +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "Inizio codice G da eseguire quando si passa a questo estrusore." + msgctxt "machine_extruder_start_code_duration label" msgid "Extruder Start G-Code Duration" -msgstr "" +msgstr "Durata del G-code di inizio dell'estrusore" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "Il tempo necessario per eseguire il G-code di inizio, quando si passa a questo estrusore." msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Assoluto posizione avvio estrusore" +msgctxt "machine_extruder_start_pos_abs description" +msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." +msgstr "Rende la posizione di partenza estrusore assoluta anziché relativa rispetto all’ultima posizione nota della testina." + msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "X posizione avvio estrusore" +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "La coordinata x della posizione di partenza all’accensione dell’estrusore." + msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "Y posizione avvio estrusore" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Macchina" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Impostazioni macchina specifiche" - -msgctxt "machine_extruder_end_pos_abs description" -msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." -msgstr "Rende la posizione di fine estrusore assoluta anziché relativa rispetto all’ultima posizione nota della testina." - -msgctxt "machine_extruder_start_pos_abs description" -msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." -msgstr "Rende la posizione di partenza estrusore assoluta anziché relativa rispetto all’ultima posizione nota della testina." - -msgctxt "material description" -msgid "Material" -msgstr "Materiale" - -msgctxt "material label" -msgid "Material" -msgstr "Materiale" - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diametro ugello" - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ID ugello" +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "La coordinata y della posizione di partenza all’accensione dell’estrusore." msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "Offset X ugello" -msgctxt "machine_nozzle_offset_y label" -msgid "Nozzle Y Offset" -msgstr "Offset Y ugello" - -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "Inizio codice G da eseguire quando si passa a questo estrusore." - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "La coordinata X della posizione in cui l’ugello si innesca all’avvio della stampa." - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "La coordinata Y della posizione in cui l’ugello si innesca all’avvio della stampa." - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Indica la coordinata Z della posizione in cui l’ugello si innesca all’avvio della stampa." - -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "Treno estrusore utilizzato per la stampa. Utilizzato nell’estrusione multipla." - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Il diametro interno dell’ugello. Modificare questa impostazione quando si utilizza una dimensione ugello non standard." - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "ID ugello per un treno estrusore, come \"AA 0.4\" e \"BB 0.8\"." - -msgctxt "machine_extruder_cooling_fan_number description" -msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." -msgstr "Il numero di ventole di raffreddamento stampa abbinate a questo estrusore. Modificarlo dal valore predefinito 0 solo quando si ha una ventola di raffreddamento diversa per ciascun estrusore." - -msgctxt "machine_extruder_end_code_duration description" -msgid "The time it takes to execute the end g-code, when switching away from this extruder." -msgstr "" - -msgctxt "machine_extruder_start_code_duration description" -msgid "The time it'll take to execute the start g-code, when switching to this extruder." -msgstr "" - -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "La coordinata x della posizione di fine allo spegnimento dell’estrusore." - msgctxt "machine_nozzle_offset_x description" msgid "The x-coordinate of the offset of the nozzle." msgstr "La coordinata y dell’offset dell’ugello." -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "La coordinata x della posizione di partenza all’accensione dell’estrusore." - -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "La coordinata y della posizione di fine allo spegnimento dell’estrusore." +msgctxt "machine_nozzle_offset_y label" +msgid "Nozzle Y Offset" +msgstr "Offset Y ugello" msgctxt "machine_nozzle_offset_y description" msgid "The y-coordinate of the offset of the nozzle." msgstr "La coordinata y dell’offset dell’ugello." - -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "La coordinata y della posizione di partenza all’accensione dell’estrusore." diff --git a/resources/i18n/it_IT/fdmprinter.def.json.po b/resources/i18n/it_IT/fdmprinter.def.json.po index b09b7acc0d0..427c464b282 100644 --- a/resources/i18n/it_IT/fdmprinter.def.json.po +++ b/resources/i18n/it_IT/fdmprinter.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-12 15:10+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,5772 +12,5682 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "prime_tower_mode description" -msgid "How to generate the prime tower:
                                      • Normal: create a bucket in which secondary materials are primed
                                      • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
                                      " -msgstr "" - -msgctxt "brim_inside_margin description" -msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." -msgstr "" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Macchina" -msgctxt "ironing_inset description" -msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." -msgstr "Distanza da mantenere dai bordi del modello. La stiratura fino in fondo sino al bordo del reticolo può causare la formazione di un bordo frastagliato nella stampa." +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Impostazioni macchina specifiche" -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "Fattore indicante la quantità di filamento che viene compressa tra l'alimentatore e la camera dell'ugello, usato per stabilire a quale distanza spostare il materiale per un cambio di filamento." +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Tipo di macchina" -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Un elenco di direzioni linee intere da usare quando gli strati rivestimento superficie superiore utilizzano le linee o la configurazione zig zag. Gli elementi dall’elenco sono utilizzati in sequenza con il progredire degli strati e, al raggiungimento della fine dell’elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l’intero elenco è racchiuso tra parentesi quadre. L’elenco predefinito è vuoto, vale a dire che utilizza i valori angolari predefiniti (45 e 135 gradi)." +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "Il nome del modello della stampante 3D in uso." -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Un elenco di direzioni linee intere da usare quando gli strati superiori/inferiori utilizzano le linee o la configurazione zig zag. Gli elementi dall’elenco sono utilizzati in sequenza con il progredire degli strati e, al raggiungimento della fine dell’elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l’intero elenco è racchiuso tra parentesi quadre. L’elenco predefinito è vuoto, vale a dire che utilizza i valori angolari predefiniti (45 e 135 gradi)." +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Mostra varianti macchina" -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "Elenco di direzioni linee intere da utilizzare. Gli elementi dall'elenco sono utilizzati in sequenza con il progredire dei layers e, al raggiungimento della fine dell'elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l'intero elenco è racchiuso tra parentesi quadre. L’elenco predefinito è vuoto, vale a dire che utilizza l'angolo predefinito di 0 gradi." +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "Sceglie se mostrare le diverse varianti di questa macchina, descritte in file json a parte." -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Elenco di direzioni linee intere da utilizzare. Gli elementi dall'elenco sono utilizzati in sequenza con il progredire dei layers e, al raggiungimento della fine dell'elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l'intero elenco è racchiuso tra parentesi quadre. L'elenco predefinito è vuoto, vale a dire che utilizza gli angoli predefiniti (alterna tra 45 e 135 gradi se le interfacce sono abbastanza spesse oppure 90 gradi)." +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "Codice G avvio" -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Elenco di direzioni linee intere da utilizzare. Gli elementi dall'elenco sono utilizzati in sequenza con il progredire dei layers e, al raggiungimento della fine dell'elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l'intero elenco è racchiuso tra parentesi quadre. L'elenco predefinito è vuoto, vale a dire che utilizza gli angoli predefiniti (alterna tra 45 e 135 gradi se le interfacce sono abbastanza spesse oppure 90 gradi)." +msgctxt "machine_start_gcode description" +msgid "G-code commands to be executed at the very start - separated by \n." +msgstr "I comandi codice G da eseguire all’avvio, separati da " +"." -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Elenco di direzioni linee intere da utilizzare. Gli elementi dall'elenco sono utilizzati in sequenza con il progredire dei layers e, al raggiungimento della fine dell'elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l'intero elenco è racchiuso tra parentesi quadre. L'elenco predefinito è vuoto, vale a dire che utilizza gli angoli predefiniti (alterna tra 45 e 135 gradi se le interfacce sono abbastanza spesse oppure 90 gradi)." +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "Codice G fine" -msgctxt "infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." -msgstr "Un elenco di direzioni linee intere. Gli elementi dall’elenco sono utilizzati in sequenza con il progredire degli strati e, al raggiungimento della fine dell’elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l’intero elenco è racchiuso tra parentesi quadre. L’elenco predefinito è vuoto, vale a dire che utilizza i valori angolari predefiniti (45 e 135 gradi per le linee e la configurazione zig zag e 45 gradi per tutte le altre configurazioni)." +msgctxt "machine_end_gcode description" +msgid "G-code commands to be executed at the very end - separated by \n." +msgstr "I comandi codice G da eseguire alla fine, separati da " +"." -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "Un elenco di poligoni con aree alle quali l’ugello non può accedere." +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "GUID materiale" -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "Un elenco di poligoni con aree alle quali la testina di stampa non può accedere." +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "Il GUID del materiale. È impostato automaticamente." -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "Raccomandazione sull'entità della possibile distanza dei rami dai punti che supportano. I rami possono violare questo valore per raggiungere la loro destinazione (piano di stampa o parte piatta del modello). Ridurre questo valore può rendere il supporto più robusto, ma incrementa la quantità di rami (e, di conseguenza, la quantità di materiale/il tempo di stampa)" +msgctxt "material_type label" +msgid "Material Type" +msgstr "Tipo di materiale" -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Posizione assoluta di innesco estrusore" +msgctxt "material_type description" +msgid "The type of material used." +msgstr "Il tipo di materiale utilizzato." -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Variazione massima strati adattivi" +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "Marca del materiale" -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Dimensione della topografia dei layer adattivi" +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "La marca del materiale utilizzato." -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Dimensione variazione strati adattivi" +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diametro" -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "Gli strati adattivi calcolano l’altezza degli strati in base alla forma del modello." +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Regolare il diametro del filamento utilizzato. Abbinare questo valore al diametro del filamento utilizzato." -msgctxt "infill_wall_line_count description" -msgid "" -"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" -"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "" -"Aggiunge pareti supplementari intorno alla zona di riempimento. Queste pareti possono ridurre l’abbassamento delle linee del rivestimento esterno superiore/inferiore, pertanto saranno necessari meno strati di rivestimento esterno superiore/inferiore per ottenere la stessa qualità al costo del materiale supplementare.\n" -"Questa funzione può essere abbinata a Collega poligoni riempimento per collegare tutto il riempimento in un unico percorso di estrusione senza necessità di avanzamenti o arretramenti, se configurata correttamente." +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Attendi il riscaldamento del piano di stampa" -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Adesione" +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "Sceglie se inserire un comando per attendere finché la temperatura del piano di stampa non viene raggiunta all’avvio." -msgctxt "material_adhesion_tendency label" -msgid "Adhesion Tendency" -msgstr "Tendenza di adesione" +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Attendi il riscaldamento dell’ugello" -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Regolare l’entità della sovrapposizione tra le pareti e (i punti finali delle) linee centrali del rivestimento esterno espressa in percentuale delle larghezze delle linee del rivestimento esterno. Una leggera sovrapposizione consente alle pareti di essere saldamente collegate al rivestimento. Si noti che, data una larghezza uguale del rivestimento esterno e della linea perimetrale, qualsiasi percentuale superiore al 50% può già causare il superamento della parete da parte del rivestimento esterno in quanto, in quel punto, la posizione dell’ugello dell’estrusore del rivestimento esterno può già avere superato la parte centrale della parete." +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "Sceglie se attendere finché la temperatura dell’ugello non viene raggiunta all’avvio." -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Regolare l’entità della sovrapposizione tra le pareti e (i punti finali delle) linee centrali del rivestimento esterno. Una leggera sovrapposizione consente alle pareti di essere saldamente collegate al rivestimento. Si noti che, data una larghezza uguale del rivestimento esterno e della linea perimetrale, qualsiasi percentuale superiore alla metà della parete può già causare il superamento della parete da parte del rivestimento esterno in quanto, in quel punto, la posizione dell’ugello dell’estrusore del rivestimento esterno può già aver superato la parte centrale della parete." +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Includi le temperature del materiale" -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Regola la densità del riempimento della stampa." +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "Sceglie se includere comandi temperatura ugello all’avvio del codice G. Quando start_gcode contiene già comandi temperatura ugello la parte anteriore di Cura disabilita automaticamente questa impostazione." -msgctxt "support_interface_density description" -msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Regola la densità delle parti superiori e inferiori della struttura di supporto. Un valore superiore genera sbalzi migliori, ma i supporti sono più difficili da rimuovere." +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Includi temperatura piano di stampa" -msgctxt "support_tree_top_rate description" -msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "Consente di regolare la densità della struttura di supporto utilizzata per generare le punte dei rami. Un valore più alto si traduce in sbalzi migliori, ma i supporti saranno più difficili da rimuovere. Usa il tetto del supporto per valori molto alti o assicurati che la densità di supporto sia altrettanto alta nella parte superiore." +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "Sceglie se includere comandi temperatura piano di stampa all’avvio del codice G. Quando start_gcode contiene già comandi temperatura piano di stampa la parte anteriore di Cura disabilita automaticamente questa impostazione." -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Regola la densità della struttura di supporto. Un valore superiore genera sbalzi migliori, ma i supporti sono più difficili da rimuovere." +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Larghezza macchina" -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Regolare il diametro del filamento utilizzato. Abbinare questo valore al diametro del filamento utilizzato." +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "La larghezza (direzione X) dell’area stampabile." -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "Regola il posizionamento delle strutture di supporto. Il posizionamento può essere impostato su contatto con il piano di stampa o in tutti i possibili punti. Quando impostato su tutti i possibili punti, le strutture di supporto verranno anche stampate sul modello." +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Profondità macchina" -msgctxt "prime_tower_wipe_enabled description" -msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." -msgstr "Dopo la stampa della torre di innesco con un ugello, pulisce il materiale fuoriuscito dall’altro ugello sulla torre di innesco." +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "La profondità (direzione Y) dell’area stampabile." -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "Dopo il passaggio della macchina da un estrusore all’altro, il piano di stampa viene abbassato per creare uno spazio tra l’ugello e la stampa. In tal modo si previene il rilascio di materiale fuoriuscito dall’ugello sull’esterno di una stampa." +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Altezza macchina" -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Tutto" +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "L’altezza (direzione Z) dell’area stampabile." -msgctxt "print_sequence option all_at_once" -msgid "All at Once" -msgstr "Tutti contemporaneamente" +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Forma del piano di stampa" -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "Indica tutte le impostazioni che influiscono sulla risoluzione della stampa. Queste impostazioni hanno un elevato impatto sulla qualità (e il tempo di stampa)" +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "La forma del piano di stampa senza tenere conto delle aree non stampabili." -msgctxt "user_defined_print_order_enabled description" -msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." -msgstr "" +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Rettangolare" -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Parete supplementare alternativa" +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Ellittica" -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Rimozione maglie alternate" +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Materiale piano di stampa" -msgctxt "material_alternate_walls label" -msgid "Alternate Wall Directions" -msgstr "Alterna direzioni parete" +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "Il materiale del piano di stampa installato sulla stampante." -msgctxt "material_alternate_walls description" -msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." -msgstr "Consente di alternare direzioni parete ogni altro strato o inserto. Utile per materiali che possono accumulare stress, come per la stampa su metallo." +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Cristallo" msgctxt "machine_buildplate_type option aluminum" msgid "Aluminum" msgstr "Alluminio" +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Piano di stampa riscaldato" + +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "Indica se la macchina ha un piano di stampa riscaldato." + +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "È dotato della stabilizzazione della temperatura del volume di stampa" + +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "Se la macchina è in grado di stabilizzare la temperatura del volume di stampa." + msgctxt "machine_always_write_active_tool label" msgid "Always Write Active Tool" msgstr "Tenere sempre nota dello strumento attivo" -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "Arretra sempre quando si sposta per iniziare una parete esterna." - -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "Determina l'entità di offset (o estensione dello strato) applicata a tutti i poligoni su ciascuno strato. I valori positivi possono compensare fori troppo estesi; i valori negativi possono compensare fori troppo piccoli." +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "Tenere nota dello strumento attivo dopo l'invio di comandi temporanei allo strumento non attivo. Richiesto per la stampa con doppio estrusore con Smoothie o altro firmware con comandi modali dello strumento." -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "È l'entità di offset (estensione dello strato) applicata a tutti i poligoni di supporto in ciascuno strato. Un valore negativo può compensare lo schiacciamento del primo strato noto come \"zampa di elefante\"." - -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "È l'entità di offset (estensione dello strato) applicato a tutti i poligoni di supporto in ciascuno strato. I valori positivi possono appianare le aree di supporto, accrescendone la robustezza." - -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "Entità di offset applicato alle parti inferiori del supporto." - -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "Entità di offset applicato alle parti superiori del supporto." - -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "Entità di offset applicato ai poligoni di interfaccia del supporto." - -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "L'entità di retrazione del filamento in modo che non fuoriesca durante la sequenza di pulitura." - -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "Un aggiunta al raggio dal centro di ciascun cubo per controllare il contorno del modello, per decidere se questo cubo deve essere suddiviso. Valori maggiori comportano un guscio più spesso di cubi piccoli vicino al contorno del modello." - -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Maglia anti-sovrapposizione" - -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Posizione retratta anti fuoriuscita di materiale" - -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Velocità di retrazione anti fuoriuscita del materiale" - -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "Applica l’offset estrusore al sistema coordinate. Influisce su tutti gli estrusori." - -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "Nei punti in cui i modelli si toccano, viene generata una struttura del fascio ad incastro. Questo migliora l'adesione tra i modelli, soprattutto quelli stampati in materiali diversi." - -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Aggiramento delle parti stampate durante gli spostamenti" - -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Aggiramento dei supporti durante gli spostamenti" - -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Indietro" - -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Indietro a sinistra" - -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Indietro a destra" - -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Entrambi" - -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "Entrambi si sovrappongono" - -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Strati inferiori" - -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Strato iniziale configurazione inferiore" - -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Distanza prolunga rivestimento inferiore" - -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Larghezza rimozione rivestimento inferiore" - -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Spessore degli strati inferiori" - -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "Densità del ramo" - -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "Diametro del ramo" - -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "Angolo del diametro del ramo" - -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Posizione di retrazione prima della rottura" - -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Velocità di retrazione prima della rottura" - -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Temperatura di preparazione alla rottura" - -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Posizione di retrazione per la rottura" - -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Velocità di retrazione per la rottura" - -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Temperatura di rottura" - -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Rottura del supporto in pezzi di grandi dimensioni" - -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Velocità della ventola ponte" - -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Ponte a strati multipli" - -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Densità del secondo rivestimento esterno ponte" - -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Velocità della ventola per il secondo rivestimento esterno ponte" - -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Flusso del secondo rivestimento esterno ponte" - -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Velocità di stampa del secondo rivestimento esterno ponte" - -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Densità del rivestimento esterno ponte" - -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Flusso del rivestimento esterno ponte" - -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Velocità di stampa del rivestimento esterno ponte" - -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Soglia di supporto rivestimento esterno ponte" - -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Densità massima del riempimento rado del Bridge" - -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Densità del terzo rivestimento esterno ponte" - -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Velocità della ventola del terzo rivestimento esterno ponte" - -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Flusso del terzo rivestimento esterno ponte" - -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Velocità di stampa del terzo rivestimento esterno ponte" - -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Coasting parete ponte" - -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Flusso della parete ponte" - -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Velocità di stampa della parete ponte" - -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Brim" - -msgctxt "brim_inside_margin label" -msgid "Brim Avoid Margin" -msgstr "" - -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Distanza del Brim" - -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Numero di linee del brim" - -msgctxt "brim_location label" -msgid "Brim Location" -msgstr "" - -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Brim in sostituzione del supporto" - -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Larghezza del brim" - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Adesione piano di stampa" - -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Estrusore adesione piano di stampa" - -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Tipo di adesione piano di stampa" - -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Materiale piano di stampa" - -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Forma del piano di stampa" - -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Temperatura piano di stampa" - -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Temperatura piano di stampa Strato iniziale" - -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Temperatura volume di stampa" - -msgctxt "bv_temp_anomaly_limit label" -msgid "Build Volume temperature Limit" -msgstr "" - -msgctxt "bv_temp_warn_limit label" -msgid "Build Volume temperature Warning" -msgstr "" - -msgctxt "prime_tower_brim_enable description" -msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "Attivando questa impostazione, la tua torre di primerizzazione avrà un bordo, anche se il modello non lo prevede. Se desideri una base più robusta per una torre alta, puoi aumentare l'altezza della base." - -msgctxt "center_object label" -msgid "Center Object" -msgstr "Centra oggetto" - -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "Cambia la geometria del modello stampato in modo da richiedere un supporto minimo. Sbalzi molto inclinati diventeranno sbalzi poco profondi. Le aree di sbalzo scendono per diventare più verticali." - -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "Scegliere tra le tecniche disponibili per generare il supporto. Il supporto \"normale\" crea una struttura di supporto direttamente sotto le parti di sbalzo e rilascia tali aree direttamente al di sotto. La struttura \"ad albero\" crea delle ramificazioni verso le aree di sbalzo che supportano il modello sulle punte di tali ramificazioni consentendo a queste ultime di avanzare intorno al modello per supportarlo il più possibile dal piano di stampa." - -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Velocità di Coasting" - -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Volume di Coasting" - -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "Il Coasting sostituisce l'ultima parte di un percorso di estrusione con un percorso di spostamento. Il materiale fuoriuscito viene utilizzato per stampare l'ultimo tratto del percorso di estrusione al fine di ridurre i filamenti." - -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Modalità Combing" - -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "La funzione Combing tiene l’ugello all’interno delle aree già stampate durante lo spostamento. In tal modo le corse di spostamento sono leggermente più lunghe ma si riduce l’esigenza di effettuare retrazioni. Se questa funzione viene disabilitata, il materiale viene retratto e l’ugello si sposta in linea retta al punto successivo. È anche possibile evitare il combing sopra le aree del rivestimento esterno superiore/inferiore o effettuare il combing solo nel riempimento." - -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Impostazioni riga di comando" - -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Concentriche" - -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Concentrica" +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "Origine del centro" -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Concentrica" +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "Indica se le coordinate X/Y della posizione zero della stampante sono al centro dell’area stampabile." -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concentriche" +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Numero di estrusori" -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Concentriche" +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "Il numero di treni di estrusori. Un treno di estrusori è la combinazione di un alimentatore, un tubo bowden e un ugello." -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Concentriche" +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Numero di estrusori abilitati" -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Concentriche" +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "Numero di treni di estrusori abilitati; impostato automaticamente nel software" -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concentriche" +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Diametro esterno ugello" -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Concentriche" +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "Il diametro esterno della punta dell'ugello." -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Angolo del supporto conico" +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Lunghezza ugello" -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Larghezza minima del supporto conico" +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "La differenza di altezza tra la punta dell’ugello e la parte inferiore della testina di stampa." -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Collegamento delle linee di riempimento" +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Angolo ugello" -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Collega poligoni di riempimento" +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "L’angolo tra il piano orizzontale e la parte conica esattamente sopra la punta dell’ugello." -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Collegamento linee supporto" +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Lunghezza della zona di riscaldamento" -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Collegamento Zig Zag supporto" +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "La distanza dalla punta dell’ugello in cui il calore dall’ugello viene trasferito al filamento." -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Collega poligoni superiori/inferiori" +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Abilita controllo temperatura ugello" -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "Collega i percorsi di riempimento quando corrono uno accanto all’altro. Per le configurazioni di riempimento composte da più poligoni chiusi, l’abilitazione di questa impostazione riduce notevolmente il tempo di spostamento." +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "Per controllare la temperatura da Cura. Disattivare per controllare la temperatura ugello dall’esterno di Cura." -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "Collega i ZigZag. Questo aumenta la forza della struttura di supporto a zig zag." +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Velocità di riscaldamento" -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "Collega le estremità delle linee del supporto. L’abilitazione di questa impostazione consente di ottenere un supporto più robusto e ridurre la sottoestrusione, ma si utilizza più materiale." +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "La velocità (°C/s) alla quale l’ugello si riscalda calcolando la media sulla gamma di temperature di stampa normale e la temperatura di attesa." -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "Collegare le estremità nel punto in cui il riempimento incontra la parete interna utilizzando una linea che segue la forma della parete interna. L'abilitazione di questa impostazione può far meglio aderire il riempimento alle pareti riducendo nel contempo gli effetti del riempimento sulla qualità delle superfici verticali. La disabilitazione di questa impostazione consente di ridurre la quantità di materiale utilizzato." +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Velocità di raffreddamento" -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "Collega i percorsi del rivestimento esterno superiore/inferiore quando corrono uno accanto all’altro. Per le configurazioni concentriche, l’abilitazione di questa impostazione riduce notevolmente il tempo di spostamento, tuttavia poiché i collegamenti possono aver luogo a metà del riempimento, con questa funzione la qualità della superficie superiore potrebbe risultare inferiore." +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "La velocità (°C/s) alla quale l’ugello si raffredda calcolando la media sulla gamma di temperature di stampa normale e la temperatura di attesa." -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "Controlla se gli angoli sul profilo del modello influenzano la posizione della giunzione. Nessuno significa che gli angoli non hanno alcuna influenza sulla posizione della giunzione. Nascondi giunzione favorisce la presenza della giunzione su un angolo interno. Esponi giunzione favorisce la presenza della giunzione su un angolo esterno. Nascondi o esponi giunzione favorisce la presenza della giunzione su un angolo interno o esterno. Smart Hiding consente sia gli angoli interni che quelli esterni ma sceglie con maggiore frequenza gli angoli interni, se opportuno." +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Tempo minimo temperatura di standby" -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "Converte ogni linea di riempimento in questo numero di linee. Le linee supplementari non si incrociano tra loro, ma si evitano. In tal modo il riempimento risulta più rigido, ma il tempo di stampa e la quantità di materiale aumentano." +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "Il tempo minimo in cui un estrusore deve essere inattivo prima che l’ugello si raffreddi. Solo quando un estrusore non è utilizzato per un periodo superiore a questo tempo potrà raffreddarsi alla temperatura di standby." -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Velocità di raffreddamento" +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "Versione codice G" -msgctxt "cooling description" -msgid "Cooling" -msgstr "Raffreddamento" +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "Il tipo di codice G da generare." -msgctxt "cooling label" -msgid "Cooling" -msgstr "Raffreddamento" +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Incrociata" +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (volumetrica)" -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Incrociata" +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "Incrociata 3D" +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Dimensioni cavità 3D incrociata" +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Immagine di densità del riempimento incrociato per il supporto" +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Immagine di densità del riempimento incrociato" +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Materiale cristallino" +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Cubo" +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Suddivisione in cubi" +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Retrazione firmware" -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Guscio suddivisione in cubi" +msgctxt "machine_firmware_retract description" +msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." +msgstr "Specifica se usare comandi di retrazione firmware (G10/G11) anziché utilizzare la proprietà E nei comandi G1 per retrarre il materiale." -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Ritaglio maglia" +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Condivisione del riscaldatore da parte degli estrusori" -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "Collegamento dei dati di flusso del materiale (in mm3 al secondo) alla temperatura (in °C)." +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "Indica se gli estrusori condividono un singolo riscaldatore piuttosto che avere ognuno il proprio." -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Accelerazione predefinita" +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Estrusori condividono ugello" -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Temperatura piano di stampa preimpostata" +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "Indica se gli estrusori condividono un singolo ugello piuttosto che avere ognuno il proprio. Se impostato su true, si prevede che lo script gcode di avvio della stampante imposti tutti gli estrusori su uno stato di retrazione iniziale noto e mutuamente compatibile (nessuno o un solo filamento non retratto); in questo caso lo stato di retrazione iniziale è descritto, per estrusore, dal parametro 'machine_extruders_shared_nozzle_initial_retraction'." -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Jerk filamento predefinito" +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Retrazione iniziale ugello condivisa" -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Temperatura di stampa preimpostata" +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "La quantità di filamento di ogni estrusore che si presume sia stata retratta dalla punta dell'ugello condiviso al termine dello script gcode di avvio stampante; il valore deve essere uguale o maggiore della lunghezza della parte comune dei condotti dell'ugello." -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Jerk X-Y predefinito" +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Aree non consentite" -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Jerk Z predefinito" +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "Un elenco di poligoni con aree alle quali la testina di stampa non può accedere." -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "Indica il jerk predefinito per lo spostamento sul piano orizzontale." +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Aree ugello non consentite" -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "Indica il jerk predefinito del motore per la direzione Z." +msgctxt "nozzle_disallowed_areas description" +msgid "A list of polygons with areas the nozzle is not allowed to enter." +msgstr "Un elenco di poligoni con aree alle quali l’ugello non può accedere." -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "Indica il jerk predefinito del motore del filamento." +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Poligono testina macchina e ventola" -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "Rileva i ponti e modifica la velocità di stampa, il flusso e le impostazioni ventola durante la stampa dei ponti." +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "La forma della testina di stampa. Queste sono le coordinate relative alla posizione della testina di stampa. Questa coincide in genere con la posizione del primo estrusore. Le posizioni a sinistra e davanti alla testina di stampa devono essere coordinate negative." -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "Determina l'ordine di stampa delle pareti. La stampa anticipata delle pareti esterne migliora la precisione dimensionale poiché i guasti dalle pareti interne non possono propagarsi all'esterno. Se si esegue la stampa in un momento successivo, tuttavia, è possibile impilarle meglio quando vengono stampati gli sbalzi. Quando c'è una quantità irregolare di pareti interne totali, l'ultima riga centrale viene sempre stampata per ultima." +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Altezza gantry" -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "Determina la priorità di questa mesh quando si considera la sovrapposizione multipla delle mesh di riempimento. Per le aree con la sovrapposizione di più mesh di riempimento verranno utilizzate le impostazioni della mesh con la classificazione più alta. Una mesh di riempimento con una classificazione più alta modificherà il riempimento delle mesh di riempimento con una classificazione inferiore e delle mesh normali." +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "La differenza di altezza tra la punta dell’ugello e il sistema gantry (assy X e Y)." -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "Determina quando uno strato di riempimento fulmine deve supportare il materiale sopra di esso. Misurato nell'angolo dato lo stesso di uno strato." +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID ugello" -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "Determina quando uno strato di riempimento fulmine deve supportare il modello sopra di esso. Misurato nell'angolo dato lo spessore." +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "ID ugello per un treno estrusore, come \"AA 0.4\" e \"BB 0.8\"." -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diametro" +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diametro ugello" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "Aumento del diametro sul modello" +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Il diametro interno dell’ugello. Modificare questa impostazione quando si utilizza una dimensione ugello non standard." -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "Diametro che ogni ramo cerca di ottenere quando raggiunge la piastra di costruzione. Migliora l'adesione al piano." +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Offset con estrusore" -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "Sono previste diverse opzioni che consentono di migliorare l'applicazione dello strato iniziale dell’estrusione e migliorano l’adesione. Il brim aggiunge un'area piana a singolo strato attorno alla base del modello, per evitare deformazioni. Il raft aggiunge un fitto reticolato con un tetto al di sotto del modello. Lo skirt è una linea stampata attorno al modello, ma non collegata al modello." +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "Applica l’offset estrusore al sistema coordinate. Influisce su tutti gli estrusori." -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Aree non consentite" +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posizione Z innesco estrusore" -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "Indica la distanza tra le linee di riempimento stampate. Questa impostazione viene calcolata mediante la densità del riempimento e la larghezza della linea di riempimento." +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Indica la coordinata Z della posizione in cui l’ugello si innesca all’avvio della stampa." -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "Indica la distanza tra le linee della struttura di supporto dello strato iniziale stampato. Questa impostazione viene calcolata mediante la densità del supporto." +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "Posizione assoluta di innesco estrusore" -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "Distanza tra le linee della parte inferiore del supporto stampate. Questa impostazione viene calcolata dalla densità della parte inferiore del supporto, ma può essere regolata separatamente." +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "Rende la posizione di innesco estrusore assoluta anziché relativa rispetto all’ultima posizione nota della testina." -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "Distanza tra le linee della parte superiore del supporto stampate. Questa impostazione viene calcolata dalla densità della parte superiore del supporto, ma può essere regolata separatamente." +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Velocità massima X" -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "Indica la distanza tra le linee della struttura di supporto stampata. Questa impostazione viene calcolata mediante la densità del supporto." +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "Indica la velocità massima del motore per la direzione X." -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." -msgstr "Distanza dalla stampa alla base del supporto. Notare che viene arrotondata all'altezza del layer successivo." +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Velocità massima Y" -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "È la distanza tra la parte superiore del supporto e la stampa." +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "Indica la velocità massima del motore per la direzione Y." -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." -msgstr "Distanza dalla parte superiore/inferiore della struttura di supporto alla stampa. Questo spazio permette di rimuovere i supporti dopo la stampa del modello. L'ultimo strato di supporto sotto il modello potrebbe essere una frazione degli strati regolari." +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Velocità massima Z" -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "Indica la distanza di uno spostamento inserito dopo ogni linea di riempimento, per determinare una migliore adesione del riempimento alle pareti. Questa opzione è simile alla sovrapposizione del riempimento, ma senza estrusione e solo su una estremità della linea di riempimento." +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "Indica la velocità massima del motore per la direzione Z." -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "Distanza di spostamento inserita dopo la parete esterna per nascondere meglio la giunzione Z." +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Velocità massima E" -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "Indica la distanza del riparo paravento dalla stampa, nelle direzioni X/Y." +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "Indica la velocità massima del filamento." -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "Indica la distanza del riparo materiale fuoriuscito dalla stampa, nelle direzioni X/Y." +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Accelerazione massima X" -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "Indica la distanza della struttura di supporto dallo sbalzo, nelle direzioni X/Y." +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "Indica l’accelerazione massima del motore per la direzione X" -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "Indica la distanza della struttura di supporto dalla stampa, nelle direzioni X/Y." +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Accelerazione massima Y" -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "I punti di distanza vengono spostati per risistemare il percorso" +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Indica l’accelerazione massima del motore per la direzione Y." -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "I punti di distanza vengono spostati per risistemare il percorso" +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Accelerazione massima Z" -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "Non generare aree di riempimento inferiori a questa (piuttosto usare il rivestimento esterno)." +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Indica l’accelerazione massima del motore per la direzione Z." -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Altezza del riparo paravento" +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Accelerazione massima filamento" -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Limitazione del riparo paravento" +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "Indica l’accelerazione massima del motore del filamento." -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Distanza X/Y del riparo paravento" +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Accelerazione predefinita" -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Maglia supporto di discesa" +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "Indica l’accelerazione predefinita del movimento della testina di stampa." -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Doppia estrusione" +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Jerk X-Y predefinito" -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Ellittica" +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "Indica il jerk predefinito per lo spostamento sul piano orizzontale." -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Abilita controllo accelerazione" +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Jerk Z predefinito" -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Abilita impostazioni ponte" +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "Indica il jerk predefinito del motore per la direzione Z." -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Abilitazione della funzione di Coasting" +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Jerk filamento predefinito" + +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "Indica il jerk predefinito del motore del filamento." -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Abilitazione del supporto conico" +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Passi per millimetro (X)" -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Abilitazione del riparo paravento" +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "I passi del motore passo-passo in un millimetro di spostamento nella direzione X." -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "Abilita movimento fluido" +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Passi per millimetro (Y)" -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Abilita stiratura" +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "I passi del motore passo-passo in un millimetro di spostamento nella direzione Y." -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Abilita controllo jerk" +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Passi per millimetro (Z)" -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Abilita controllo temperatura ugello" +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "I passi del motore passo-passo in un millimetro di spostamento nella direzione Z." -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Abilitazione del riparo materiale fuoriuscito" +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Passi per millimetro (E)" -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "Abilitazione blob di innesco" +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "Quanti passi dei motori passo-passo causano lo spostamento della ruota del tirafilo di un millimetro attorno alla sua circonferenza." -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Abilitazione torre di innesco" +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "Endstop X in direzione positiva" -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Abilitazione raffreddamento stampa" +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "Se l’endstop dell’asse X è in direzione positiva (coordinata X alta) o negativa (coordinata X bassa)." -msgctxt "ppr_enable label" -msgid "Enable Print Process Reporting" -msgstr "" +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Endstop Y in direzione positiva" -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Abilitazione della retrazione" +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "Se l’endstop dell’asse Y è in direzione positiva (coordinata Y alta) o negativa (coordinata Y bassa)." -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Abilitazione brim del supporto" +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Endstop Z in direzione positiva" -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Abilitazione parte inferiore supporto" +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "Se l’endstop dell’asse Z è in direzione positiva (coordinata Z alta) o negativa (coordinata Z bassa)." -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Abilitazione interfaccia supporto" +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Velocità di alimentazione minima" -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Abilitazione irrobustimento parte superiore (tetto) del supporto" +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "Indica la velocità di spostamento minima della testina di stampa." -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "Abilita l'accelerazione spostamenti" +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Diametro ruota del tirafilo" -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "Abilita jerk spostamenti" +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "Il diametro della ruota che guida il materiale nel tirafilo." -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "Abilita il riparo esterno del materiale fuoriuscito. Questo crea un guscio intorno al modello per pulitura con un secondo ugello, se è alla stessa altezza del primo ugello." +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "Scala la velocità della ventola a 0-1" -msgctxt "ppr_enable description" -msgid "Enable print process reporting for setting threshold values for possible fault detection." -msgstr "" +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "Scalare la velocità della ventola in modo che sia compresa tra 0 e 1 anziché tra 0 e 256." -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "Abilita piccole (fino a \"piccola larghezza superiore/inferiore) aree sul livello più alto (esposto all'aria) per il riempimento con muri invece che con il modello predefinito." +msgctxt "resolution label" +msgid "Quality" +msgstr "Qualità" -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "Abilita la regolazione del jerk della testina di stampa quando la velocità nell’asse X o Y cambia. Aumentando il jerk il tempo di stampa si riduce a discapito della qualità di stampa." +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "Indica tutte le impostazioni che influiscono sulla risoluzione della stampa. Queste impostazioni hanno un elevato impatto sulla qualità (e il tempo di stampa)" -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "Abilita la regolazione dell’accelerazione della testina di stampa. Aumentando le accelerazioni il tempo di stampa si riduce a discapito della qualità di stampa." +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Altezza dello strato" -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "Abilita le ventole di raffreddamento durante la stampa. Le ventole migliorano la qualità di stampa sugli strati con tempi per strato più brevi e ponti/sbalzi." +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "Indica l’altezza di ciascuno strato in mm. Valori più elevati generano stampe più rapide con risoluzione inferiore, valori più bassi generano stampe più lente con risoluzione superiore." -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "Codice G fine" +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Altezza dello strato iniziale" -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Lunghezza di svuotamento di fine filamento" +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "Indica l’altezza dello strato iniziale in mm. Uno strato iniziale più spesso facilita l’adesione al piano di stampa." -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Velocità di svuotamento di fine filamento" +msgctxt "line_width label" +msgid "Line Width" +msgstr "Larghezza della linea" -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "Abilita la stampa del brim intorno al modello anche se quello spazio dovrebbe essere occupato dal supporto. Sostituisce alcune zone del primo strato del supporto con zone del brim." +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "Indica la larghezza di una linea singola. In generale, la larghezza di ciascuna linea deve corrispondere alla larghezza dell’ugello. Tuttavia, una lieve riduzione di questo valore potrebbe generare stampe migliori." -msgctxt "brim_location option everywhere" -msgid "Everywhere" -msgstr "" +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Larghezza delle linee perimetrali" -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "In Tutti i Possibili Punti" +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Indica la larghezza di una singola linea perimetrale." -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Esclusiva" +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Larghezza delle linee della parete esterna" -msgctxt "experimental label" -msgid "Experimental" -msgstr "Sperimentale" +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "Indica la larghezza della linea della parete esterna. Riducendo questo valore, è possibile stampare livelli di dettaglio più elevati." -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Esponi giunzione" +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Larghezza delle linee della parete interna" -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Ricucitura completa dei fori" +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "Indica la larghezza di una singola linea della parete per tutte le linee della parete tranne quella più esterna." -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "Questa funzione tenta di 'ricucire' i fori aperti nella maglia chiudendo il foro con poligoni a contatto. Questa opzione può richiedere lunghi tempi di elaborazione." +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Larghezza delle linee superiore/inferiore" -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "Conteggio pareti di riempimento supplementari" +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Indica la larghezza di una singola linea superiore/inferiore." -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Numero di pareti di rivestimento esterno supplementari" +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Larghezza delle linee di riempimento" -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "Materiale extra per l'innesco dopo il cambio dell'ugello." +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Indica la larghezza di una singola linea di riempimento." -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Posizione X innesco estrusore" +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Larghezza delle linee dello skirt/brim" -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Posizione Y innesco estrusore" +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "Indica la larghezza di una singola linea dello skirt o del brim." -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Posizione Z innesco estrusore" +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Larghezza delle linee di supporto" -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Condivisione del riscaldatore da parte degli estrusori" +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Indica la larghezza di una singola linea di supporto." + +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Larghezza della linea dell’interfaccia di supporto" -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Estrusori condividono ugello" +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "Indica la larghezza di una singola linea di supporto superiore o inferiore." -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Modificatore della velocità di raffreddamento estrusione" +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Larghezza delle linee di supporto superiori" -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "Fattore di correzione della velocità basato sulla larghezza di estrusione. A 0% la velocità di movimento viene mantenuta costante alla velocità di stampa. Al 100% la velocità di movimento viene regolata in modo da mantenere costante il flusso (in mm³/s), ovvero le linee la cui larghezza è metà di quella normale vengono stampate due volte più velocemente e le linee larghe il doppio vengono stampate a metà della velocità. Un valore maggiore di 100% può aiutare a compensare la pressione più alta richiesta per estrudere linee larghe." +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "Indica la larghezza di una singola linea di supporto superiore." -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Velocità della ventola" +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Larghezza della linea di supporto inferiore" -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Override velocità della ventola" +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "Indica la larghezza di una singola linea di supporto inferiore." -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "Profili di dettagli inferiori a questa lunghezza saranno stampati utilizzando Velocità Dettagli di piccole dimensioni." +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Larghezza della linea della torre di innesco" -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Funzionalità che non sono state ancora precisate completamente." +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "Indica la larghezza di una singola linea della torre di innesco." -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Diametro ruota del tirafilo" +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Larghezza linea strato iniziale" -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Temperatura di stampa finale" +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "Moltiplicatore della larghezza della linea del primo strato Il suo aumento potrebbe migliorare l'adesione al piano." -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Retrazione firmware" +msgctxt "shell label" +msgid "Walls" +msgstr "Pareti" -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Estrusore del supporto primo strato" +msgctxt "shell description" +msgid "Shell" +msgstr "Guscio" -msgctxt "material_flow label" -msgid "Flow" -msgstr "Flusso" +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Estrusore pareti" -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Rapporto di equalizzazione del flusso" +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "Treno estrusore utilizzato per stampare le pareti. Si utilizza nell'estrusione multipla." -msgctxt "flow_anomaly_limit label" -msgid "Flow Limit" -msgstr "" +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Estrusore parete esterna" -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Fattore di compensazione del flusso" +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "Treno estrusore utilizzato per stampare la parete esterna. Si utilizza nell'estrusione multipla." -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Offset massimo dell'estrusione di compensazione del flusso" +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Estrusore parete interna" -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Grafico della temperatura del flusso" +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "Treno estrusore utilizzato per stampare le pareti interne. Si utilizza nell'estrusione multipla." -msgctxt "flow_warn_limit label" -msgid "Flow Warning" -msgstr "" +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Spessore delle pareti" -msgctxt "material_flow_layer_0 description" -msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." -msgstr "Determina la compensazione del flusso per il primo strato: la quantità di materiale estruso sullo strato iniziale viene moltiplicata per questo valore." +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "Spessore delle pareti in direzione orizzontale. Questo valore diviso per la larghezza della linea della parete definisce il numero di pareti." -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "Compensazione del flusso sulle linee inferiori del primo strato" +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Numero delle linee perimetrali" -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Compensazione del flusso sulle linee di riempimento." +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "Indica il numero delle pareti. Quando calcolato mediante lo spessore della parete, il valore viene arrotondato a numero intero." -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "Compensazione del flusso sulle linee di supporto superiore o inferiore." +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Lunghezza transizione parete" -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "Compensazione del flusso sulle linee delle aree nella parte superiore della stampa." +msgctxt "wall_transition_length description" +msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." +msgstr "Quando si esegue la transizione tra numeri di parete diversi poiché la parte diventa più sottile, viene allocata una determinata quantità di spazio per dividere o unire le linee perimetrali." -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Compensazione del flusso sulle linee della torre di innesco." +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Conteggio distribuzione parete" -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Compensazione del flusso sulle linee dello skirt o del brim." +msgctxt "wall_distribution_count description" +msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." +msgstr "Il numero di pareti, conteggiate dal centro, su cui occorre distribuire la variazione. Valori più bassi indicano che la larghezza delle pareti esterne non cambia." -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Compensazione del flusso sulle linee di supporto inferiore." +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Angolo di soglia di transizione parete" -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Compensazione del flusso sulle linee di supporto superiore." +msgctxt "wall_transition_angle description" +msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." +msgstr "Quando creare transizioni tra numeri di parete pari e dispari. Una forma a cuneo con un angolo maggiore di questa impostazione non presenta transazioni e nessuna parete verrà stampata al centro per riempire lo spazio rimanente. Riducendo questa impostazione si riduce il numero e la lunghezza di queste pareti centrali, ma potrebbe lasciare spazi vuoti o sovraestrusione." -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Compensazione del flusso sulle linee di supporto." +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Distanza di filtro transizione parete" -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "Compensazione del flusso sulla linea a parete più esterna del primo strato." +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "Se si pensa di eseguire la transizione avanti e indietro tra numeri di pareti differenti in rapida successione, non eseguire alcuna transizione. Rimuovere le transizioni se sono più vicine di questa distanza." -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "Compensazione del flusso sulla linea perimetrale più esterna." +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Margine filtro di transizione parete" -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Compensazione del flusso sulla linea della parete esterna più esterna della superficie superiore." +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "Impedisce la transizione avanti e indietro tra una parete aggiuntiva e una di meno. Questo margine estende l'intervallo di larghezze linea che segue a [Larghezza minima della linea perimetrale - Margine, 2 * Larghezza minima della linea perimetrale + Margine]. Incrementando questo margine si riduce il numero di transizioni, che riduce il numero di avvii/interruzioni estrusione e durata dello spostamento. Tuttavia, variazioni ampie della larghezza della linea possono portare a problemi di sottoestrusione o sovraestrusione." -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Compensazione del flusso sulle linee delle pareti della superficie superiore per tutte le linee delle pareti tranne quella più esterna." +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Distanza del riempimento parete esterna" -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Compensazione del flusso sulle linee superiore/inferiore." +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "Distanza di spostamento inserita dopo la parete esterna per nascondere meglio la giunzione Z." -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "Compensazione del flusso sulle linee di parete per tutte le linee di parete tranne quella più esterna, ma solo per il primo strato" +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Inserto parete esterna" -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "Compensazione del flusso sulle linee perimetrali per tutte le linee perimetrali tranne quella più esterna." +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "Inserto applicato al percorso della parete esterna. Se la parete esterna è di dimensioni inferiori all’ugello e stampata dopo le pareti interne, utilizzare questo offset per fare in modo che il foro dell’ugello si sovrapponga alle pareti interne anziché all’esterno del modello." -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Compensazione del flusso sulle linee perimetrali." +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Ottimizzazione sequenza di stampa pareti" -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "Determina la compensazione del flusso: la quantità di materiale estruso viene moltiplicata per questo valore." +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "Ottimizzare la sequenza di stampa delle pareti in modo da ridurre il numero di retrazioni e la distanza percorsa. L'abilitazione di questa funzione porta vantaggi per la maggior parte dei pezzi; alcuni possono richiedere un maggior tempo di esecuzione; si consiglia di confrontare i tempi di stampa stimati con e senza ottimizzazione. Scegliendo la funzione brim come tipo di adesione del piano di stampa, il primo strato non viene ottimizzato." -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "Angolo di movimento del fluido" +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Ordinamento parete" -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "Distanza di spostamento del movimento del fluido" +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "Determina l'ordine di stampa delle pareti. La stampa anticipata delle pareti esterne migliora la precisione dimensionale poiché i guasti dalle pareti interne non possono propagarsi all'esterno. Se si esegue la stampa in un momento successivo, tuttavia, è possibile impilarle meglio quando vengono stampati gli sbalzi. Quando c'è una quantità irregolare di pareti interne totali, l'ultima riga centrale viene sempre stampata per ultima." -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "Breve distanza di movimento del fluido" +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "Dall'interno all'esterno" -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Lunghezza di svuotamento dello scarico" +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "Dall'esterno all'interno" -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Velocità di svuotamento dello scarico" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Parete supplementare alternativa" + +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "Stampa una parete supplementare ogni due strati. In questo modo il riempimento rimane catturato tra queste pareti supplementari, creando stampe più resistenti." + +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Larghezza minima della linea perimetrale" msgctxt "min_wall_line_width description" msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgstr "Per strutture sottili, circa una o due volte la dimensione dell'ugello, le larghezze delle linee devono essere modificate per rispettare lo spessore del modello. Questa impostazione controlla la larghezza minima della linea consentita per le pareti. Le larghezze minime delle linee determinano intrinsecamente anche le larghezze massime delle linee, poiché si esegue la transizione da N a N+1 pareti ad uno spessore geometrico in cui le pareti N sono larghe e le pareti N+1 sono strette. La linea perimetrale più larga possible è due volte la larghezza minima della linea perimetrale." -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Avanti" - -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Avanti a sinistra" - -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Avanti a destra" +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Larghezza minima della linea perimetrale pari" -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Piena altezza" +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "La larghezza minima della linea per normali pareti poligonali. Questa impostazione determina lo spessore modello in corrispondenza del quale si passa dalla stampa di una singola linea perimetrale sottile alla stampa di due linee perimetrali. Una larghezza minima della linea perimetrale pari più elevata porta a una larghezza massima della linea perimetrale dispari più elevata. La larghezza massima della linea perimetrale pari viene calcolata come Larghezza della linea perimetrale esterna + 0,5 * Larghezza minima della linea perimetrale dispari." -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Rivestimento esterno incoerente (fuzzy)" +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Larghezza minima della linea perimetrale dispari" -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Densità del rivestimento esterno incoerente (fuzzy)" +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "La larghezza minima della linea per pareti polilinea di riempimento interstizi linea intermedia. Questa impostazione determina lo spessore modello in corrispondenza del quale si passa dalla stampa di due linee perimetrali alla stampa di due pareti esterne e di una singola parete centrale al centro. Una larghezza minima della linea perimetrale pari più elevata porta a una larghezza massima della linea perimetrale dispari più elevata. La larghezza massima della linea di parete dispari viene calcolata come 2 * Larghezza minima della linea di parete pari." -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Fuzzy Skin solo all'esterno" +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Stampa pareti sottili" -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Distanza dei punti del rivestimento incoerente (fuzzy)" +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "Stampa parti del modello orizzontalmente più sottili delle dimensioni dell'ugello." -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Spessore del rivestimento esterno incoerente (fuzzy)" +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Dimensioni minime della feature" -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "Versione codice G" +msgctxt "min_feature_size description" +msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." +msgstr "Spessore minimo di feature sottili. Le feature modello che sono più sottili di questo valore non verranno stampate, mentre le feature più spesse delle dimensioni minime della feature verranno ampliate fino alla larghezza minima della linea perimetrale." -msgctxt "machine_end_gcode description" -msgid "" -"G-code commands to be executed at the very end - separated by \n" -"." -msgstr "" -"I comandi codice G da eseguire alla fine, separati da \n" -"." +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Larghezza minima della linea perimetrale sottile" -msgctxt "machine_start_gcode description" -msgid "" -"G-code commands to be executed at the very start - separated by \n" -"." -msgstr "" -"I comandi codice G da eseguire all’avvio, separati da \n" -"." +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "Larghezza della parete che sostituirà feature sottili (in base alle dimensioni minime della feature) del modello. Se la larghezza minima della linea perimetrale è più sottile dello spessore della feature, la parete diventerà spessa come la feature stessa." -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "Il GUID del materiale. È impostato automaticamente." +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Espansione orizzontale" -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Altezza gantry" +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "Determina l'entità di offset (o estensione dello strato) applicata a tutti i poligoni su ciascuno strato. I valori positivi possono compensare fori troppo estesi; i valori negativi possono compensare fori troppo piccoli." -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "Generazione della struttura a incastro" +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Espansione orizzontale dello strato iniziale" -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Generazione supporto" +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "È l'entità di offset (estensione dello strato) applicata a tutti i poligoni di supporto in ciascuno strato. Un valore negativo può compensare lo schiacciamento del primo strato noto come \"zampa di elefante\"." -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "Genera un brim entro le zone di riempimento del supporto del primo strato. Questo brim viene stampato al di sotto del supporto, non intorno ad esso. L’abilitazione di questa impostazione aumenta l’adesione del supporto al piano di stampa." +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Espansione orizzontale dei fori" -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "Genera un’interfaccia densa tra il modello e il supporto. Questo crea un rivestimento esterno sulla sommità del supporto su cui viene stampato il modello e al fondo del supporto, dove appoggia sul modello." +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "Se maggiore di zero, l'espansione orizzontale del foro è la quantità di offset applicata a tutti i fori in ciascun livello. I valori positivi aumentano la dimensione dei fori, i valori negativi riducono la dimensione dei fori. Se questa impostazione è abilitata, può essere ulteriormente regolata con l'opzione del diametro max dell'espansione orizzontale del foro." -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "Genera una spessa lastra di materiale tra la parte inferiore del supporto e il modello. Questo crea un rivestimento tra modello e supporto." +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "Diametro massimo di espansione orizzontale dei fori" -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "Genera una spessa lastra di materiale tra la parte superiore del supporto e il modello. Questo crea un rivestimento tra modello e supporto." +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "Quando è maggiore di zero, l'Espansione orizzontale dei fori viene applicata gradualmente sui fori piccoli (i fori piccoli vengono espansi maggiormente). Quando l'opzione è impostata su zero, l'espansione orizzontale sarà applicata a tutti i fori. I fori più grandi del diametro massimo di espansione orizzontale non saranno espansi." -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "Genera strutture per supportare le parti del modello a sbalzo. Senza queste strutture, queste parti collasserebbero durante la stampa." +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Allineamento delle giunzioni a Z" -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Cristallo" +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "Punto di partenza di ogni percorso nell'ambito di uno strato. Quando i percorsi in strati consecutivi iniziano nello stesso punto, sulla stampa può apparire una linea di giunzione verticale. Se si allineano in prossimità di una posizione specificata dall’utente, la linea di giunzione può essere rimossa più facilmente. Se disposti in modo casuale, le imprecisioni in corrispondenza dell'inizio del percorso saranno meno evidenti. Prendendo il percorso più breve la stampa sarà più veloce." -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "Andare ancora una volta sulla superficie superiore, questa volta estrudendo una piccolissima quantità di materiale. Lo scopo è quello di sciogliere ulteriormente la plastica sulla parte superiore, creando una superficie più liscia. La pressione nella camera dell'ugello viene mantenuta elevata, in modo che le grinze nella superficie siano riempite con il materiale." +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Specificato dall’utente" -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Altezza fasi di riempimento graduale" +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Il più breve" -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Fasi di riempimento graduale" +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Casuale" -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Altezza fasi di riempimento graduale del supporto" +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Angolo più acuto" -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Fasi di riempimento graduale del supporto" +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Posizione della cucitura in Z" -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "Riduci gradualmente questa temperatura quando si stampa a velocità ridotte a causa del tempo di strato minimo." +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "La posizione accanto al punto in cui avviare la stampa di ciascuna parte in uno layer." -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Griglia" +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Indietro a sinistra" -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Griglia" +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Indietro" -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Griglia" +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Indietro a destra" -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Griglia" +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Destra" -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Griglia" +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Avanti a destra" -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Avanti" -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Raggruppa le pareti esterne" +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Avanti a sinistra" -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Sinistra" -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "Giunzione Z X" -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "È dotato della stabilizzazione della temperatura del volume di stampa" +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "La coordinata X della posizione in prossimità della quale si innesca all’avvio della stampa di ciascuna parte in uno strato." -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Piano di stampa riscaldato" +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Giunzione Z Y" -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Velocità di riscaldamento" +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "La coordinata Y della posizione in prossimità della quale si innesca all’avvio della stampa di ciascuna parte in uno strato." -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Lunghezza della zona di riscaldamento" +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Preferenze angolo giunzione" -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "Indica la limitazione in altezza del riparo paravento. Al di sopra di tale altezza non sarà stampato alcun riparo." +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "Controlla se gli angoli sul profilo del modello influenzano la posizione della giunzione. Nessuno significa che gli angoli non hanno alcuna influenza sulla posizione della giunzione. Nascondi giunzione favorisce la presenza della giunzione su un angolo interno. Esponi giunzione favorisce la presenza della giunzione su un angolo esterno. Nascondi o esponi giunzione favorisce la presenza della giunzione su un angolo interno o esterno. Smart Hiding consente sia gli angoli interni che quelli esterni ma sceglie con maggiore frequenza gli angoli interni, se opportuno." + +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Nessuno" msgctxt "z_seam_corner option z_seam_corner_inner" msgid "Hide Seam" msgstr "Nascondi giunzione" +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Esponi giunzione" + msgctxt "z_seam_corner option z_seam_corner_any" msgid "Hide or Expose Seam" msgstr "Nascondi o esponi giunzione" -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Espansione orizzontale dei fori" +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Occultamento intelligente" -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "Diametro massimo di espansione orizzontale dei fori" +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Riferimento giunzione Z" -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "I fori e i profili delle parti con un diametro inferiore a quello indicato verranno stampati utilizzando Velocità Dettagli di piccole dimensioni." +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "Se abilitato, le coordinate della giunzione Z sono riferite al centro di ogni parte. Se disabilitato, le coordinate definiscono una posizione assoluta sul piano di stampa." -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Espansione orizzontale" +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Superiore / Inferiore" -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Fattore di scala orizzontale per la compensazione della contrazione" +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Superiore / Inferiore" -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "La lunghezza massima di estensione del filamento prima che si rompa durante il riscaldamento." +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Estrusore rivestimento superficie superiore" -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "La distanza alla quale deve essere retratto il materiale prima che smetta di fuoriuscire." +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "Treno estrusore utilizzato per stampare il rivestimento più in alto. Si utilizza nell'estrusione multipla." -msgctxt "flow_rate_extrusion_offset_factor description" -msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." -msgstr "Distanza di spostamento del filamento al fine di compensare le modifiche nella velocità di flusso, come percentuale della distanza di spostamento del filamento in un secondo di estrusione." +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Strati di rivestimento superficie superiore" -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "La distanza di retrazione del filamento al fine di consentirne la rottura netta." +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "Numero degli strati di rivestimento superiori. Solitamente è sufficiente un unico strato di sommità per ottenere superfici superiori di qualità elevata." -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "La velocità massima di retrazione del filamento prima che si rompa durante questa operazione." +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Larghezza linea rivestimento superficie superiore" -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "La velocità a cui deve essere retratto il materiale durante un cambio di filamento per evitare la fuoriuscita di materiale." +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "Larghezza di un singola linea delle aree nella parte superiore della stampa." -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "Velocità di adescamento del materiale dopo la sostituzione di una bobina vuota con una nuova dello stesso materiale." +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Configurazione del rivestimento superficie superiore" -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "Velocità di adescamento del materiale dopo il passaggio a un materiale diverso." +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "Configurazione degli strati superiori." -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "Tempo per il quale è possibile mantenere il materiale all'esterno di un luogo di conservazione asciutto in sicurezza." +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Linee" -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "I passi del motore passo-passo in un millimetro di spostamento nella direzione X." +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Concentrica" -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "I passi del motore passo-passo in un millimetro di spostamento nella direzione Y." +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "I passi del motore passo-passo in un millimetro di spostamento nella direzione Z." +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Ordine superficie superiore monotonico" -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "Quanti passi dei motori passo-passo causano lo spostamento della ruota del tirafilo di un millimetro attorno alla sua circonferenza." +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Stampa linee superficie superiori in un ordine che ne causa sempre la sovrapposizione con le linee adiacenti in un singola direzione. Questa operazione richiede un tempo di stampa leggermente superiore ma rende l'aspetto delle superfici piane più uniforme." -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "Quantità di materiale da utilizzare per svuotare il materiale precedente dall'ugello (in lunghezza del filamento) durante la sostituzione di una bobina vuota con una nuova dello stesso materiale." +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Direzioni linea rivestimento superficie superiore" -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "Quantità di materiale da utilizzare per svuotare il materiale precedente dall'ugello (in lunghezza del filamento) quando si passa a un materiale diverso." +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Un elenco di direzioni linee intere da usare quando gli strati rivestimento superficie superiore utilizzano le linee o la configurazione zig zag. Gli elementi dall’elenco sono utilizzati in sequenza con il progredire degli strati e, al raggiungimento della fine dell’elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l’intero elenco è racchiuso tra parentesi quadre. L’elenco predefinito è vuoto, vale a dire che utilizza i valori angolari predefiniti (45 e 135 gradi)." -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "La quantità di filamento di ogni estrusore che si presume sia stata retratta dalla punta dell'ugello condiviso al termine dello script gcode di avvio stampante; il valore deve essere uguale o maggiore della lunghezza della parte comune dei condotti dell'ugello." +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Estrusore superiore/inferiore" -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "Come interagiranno l'interfaccia di supporto e il supporto quando si sovrappongono. Attualmente implementato solo per il tetto di supporto." +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "Treno estrusore utilizzato per stampare il rivestimento superiore e quello inferiore. Si utilizza nell'estrusione multipla." -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "Entità dell'altezza di un ramo se è posizionato sul modello. Previene piccoli blob di supporto. Questa impostazione viene ignorata quando un ramo supporta un tetto di supporto." +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Spessore dello strato superiore/inferiore" -msgctxt "bridge_skin_support_threshold description" -msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." -msgstr "Se una zona di rivestimento esterno è supportata per meno di questa percentuale della sua area, effettuare la stampa utilizzando le impostazioni ponte. In caso contrario viene stampata utilizzando le normali impostazioni rivestimento esterno." +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "Indica lo spessore degli strati superiore/inferiore nella stampa. Questo valore diviso per la l’altezza dello strato definisce il numero degli strati superiori/inferiori." -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "Se un segmento del percorso utensile devia più di questo angolo dal movimento generale, viene risistemato." +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Spessore dello strato superiore" -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "Se abilitata, il secondo e il terzo strato sopra l’aria vengono stampati utilizzando le seguenti impostazioni. In caso contrario, questi strati vengono stampati utilizzando le impostazioni normali." +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "Indica lo spessore degli strati superiori nella stampa. Questo valore diviso per la l’altezza dello strato definisce il numero degli strati superiori." -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "Se si pensa di eseguire la transizione avanti e indietro tra numeri di pareti differenti in rapida successione, non eseguire alcuna transizione. Rimuovere le transizioni se sono più vicine di questa distanza." +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Strati superiori" -msgctxt "raft_base_margin description" -msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "Indica il numero degli strati superiori. Quando calcolato mediante lo spessore dello strato superiore, il valore viene arrotondato a numero intero." -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Se è abilitata la funzione raft, questo valore indica di quanto il raft fuoriesce rispetto al perimetro esterno del modello. Aumentando questo margine si creerà un raft più robusto, utilizzando però più materiale e lasciando meno spazio per la stampa." +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Spessore degli strati inferiori" -msgctxt "raft_interface_margin description" -msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "Indica lo spessore degli strati inferiori nella stampa. Questo valore diviso per la l’altezza dello strato definisce il numero degli strati inferiori." -msgctxt "raft_surface_margin description" -msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Strati inferiori" -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "Questa funzione ignora la geometria interna derivante da volumi in sovrapposizione all’interno di una maglia, stampandoli come un unico volume. Questo può comportare la scomparsa di cavità interne." +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "Indica il numero degli strati inferiori. Quando calcolato mediante lo spessore dello strato inferiore, il valore viene arrotondato a numero intero." -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Includi temperatura piano di stampa" +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "Layer inferiori iniziali" -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Includi le temperature del materiale" +msgctxt "initial_bottom_layers description" +msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "Il numero di layer inferiori iniziali, dal piano di stampa verso l'alto. Quando viene calcolato mediante lo spessore inferiore, questo valore viene arrotondato a un numero intero." -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Inclusiva" +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Configurazione dello strato superiore/inferiore" -msgctxt "infill description" -msgid "Infill" -msgstr "Riempimento" +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Indica la configurazione degli strati superiori/inferiori." + +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Linee" + +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concentriche" + +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Strato iniziale configurazione inferiore" + +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "La configurazione al fondo della stampa sul primo strato." + +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Linee" + +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Concentriche" + +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" -msgctxt "infill label" -msgid "Infill" -msgstr "Riempimento" +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Collega poligoni superiori/inferiori" -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Accelerazione riempimento" +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "Collega i percorsi del rivestimento esterno superiore/inferiore quando corrono uno accanto all’altro. Per le configurazioni concentriche, l’abilitazione di questa impostazione riduce notevolmente il tempo di spostamento, tuttavia poiché i collegamenti possono aver luogo a metà del riempimento, con questa funzione la qualità della superficie superiore potrebbe risultare inferiore." -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Riempimento prima delle pareti" +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Ordine superiore/inferiore monotonico" -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Densità del riempimento" +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Stampa linee superiori/inferiori in un ordine che ne causa sempre la sovrapposizione con le linee adiacenti in un singola direzione. Questa operazione richiede un tempo di stampa leggermente superiore ma rende l'aspetto delle superfici piane più uniforme." -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Estrusore riempimento" +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Direzioni delle linee superiori/inferiori" -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Flusso di riempimento" +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Un elenco di direzioni linee intere da usare quando gli strati superiori/inferiori utilizzano le linee o la configurazione zig zag. Gli elementi dall’elenco sono utilizzati in sequenza con il progredire degli strati e, al raggiungimento della fine dell’elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l’intero elenco è racchiuso tra parentesi quadre. L’elenco predefinito è vuoto, vale a dire che utilizza i valori angolari predefiniti (45 e 135 gradi)." -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Jerk riempimento" +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "Larghezza superiore e inferiore delle regioni più piccole" -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Spessore dello strato di riempimento" +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "Le piccole aree superiori/inferiori vengono riempite con muri invece che con il modello superiore/inferiore predefinito. Questo aiuta a evitare movimenti a singhiozzo. Per impostazione predefinita, questa opzione è disattivata per il livello più alto (esposto all'aria) (vedere \"Piccola area inferiore/superiore sulla superficie\")." -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "Direzioni delle linee di riempimento" +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "Piccola area inferiore/superiore sulla superficie" -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Distanza tra le linee di riempimento" +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "Abilita piccole (fino a \"piccola larghezza superiore/inferiore) aree sul livello più alto (esposto all'aria) per il riempimento con muri invece che con il modello predefinito." -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "Moltiplicatore delle linee di riempimento" +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Nessun rivest. est. negli interstizi a Z" -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Larghezza delle linee di riempimento" +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "Quando il modello presenta piccoli spazi vuoti verticali composti da un numero ridotto di strati, intorno a questi strati di norma dovrebbe essere presente un rivestimento esterno nell'interstizio. Abilitare questa impostazione per non generare il rivestimento esterno se l'interstizio verticale è molto piccolo. Ciò consente di migliorare il tempo di stampa e il tempo di sezionamento, ma dal punto di vista tecnico lascia il riempimento esposto all'aria." -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Maglia di riempimento" +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Numero di pareti di rivestimento esterno supplementari" -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Angolo di sbalzo del riempimento" +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "Sostituisce la parte più esterna della configurazione degli strati superiori/inferiori con una serie di linee concentriche. L’utilizzo di una o due linee migliora le parti superiori (tetti) che iniziano sul materiale di riempimento." -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Sovrapposizione del riempimento" +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Abilita stiratura" -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "Percentuale di sovrapposizione del riempimento" +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "Andare ancora una volta sulla superficie superiore, questa volta estrudendo una piccolissima quantità di materiale. Lo scopo è quello di sciogliere ulteriormente la plastica sulla parte superiore, creando una superficie più liscia. La pressione nella camera dell'ugello viene mantenuta elevata, in modo che le grinze nella superficie siano riempite con il materiale." -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Configurazione di riempimento" +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Stiramento del solo strato più elevato" -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Velocità di riempimento" +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "Effettua lo stiramento solo dell'ultimissimo strato della maglia. È possibile quindi risparmiare tempo se gli strati inferiori non richiedono una finitura con superficie liscia." -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Supporto riempimento" +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Configurazione di stiratura" -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Ottimizzazione spostamenti riempimento" +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "Configurazione utilizzata per la stiratura della superficie superiore." -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "Distanza del riempimento" +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Concentrica" -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "Offset X riempimento" +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Offset Y riempimento" +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Ordine di stiratura monotonico" -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "Layer inferiori iniziali" +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Stampa linee di stiratura in un ordine che ne causa sempre la sovrapposizione con le linee adiacenti in un singola direzione. Questa operazione richiede un tempo di stampa leggermente superiore ma rende l'aspetto delle superfici piane più uniforme." -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Velocità iniziale della ventola" +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Spaziatura delle linee di stiratura" -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Accelerazione dello strato iniziale" +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "Distanza tra le linee di stiratura." -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "Flusso inferiore dello strato iniziale" +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Flusso di stiratura" -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "Diametro dello strato iniziale" +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "Quantità di materiale, relativo ad una normale linea del rivestimento, da estrudere durante la stiratura. Mantenere l'ugello pieno aiuta a riempire alcune delle fessure presenti sulla superficie superiore, ma una quantità eccessiva comporta un'estrusione eccessiva con conseguente puntinatura sui lati della superficie." -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Flusso dello strato iniziale" +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Inserto di stiratura" -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Altezza dello strato iniziale" +msgctxt "ironing_inset description" +msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." +msgstr "Distanza da mantenere dai bordi del modello. La stiratura fino in fondo sino al bordo del reticolo può causare la formazione di un bordo frastagliato nella stampa." -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Espansione orizzontale dello strato iniziale" +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Velocità di stiratura" -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "Flusso della parete interna dello strato iniziale" +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "Velocità alla quale passare sopra la superficie superiore." -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Jerk dello strato iniziale" +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Accelerazione di stiratura" -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Larghezza linea strato iniziale" +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "L’accelerazione con cui viene effettuata la stiratura." -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "Flusso della parete esterna dello strato iniziale" +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Jerk stiratura" -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Accelerazione di stampa strato iniziale" +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "Indica la variazione della velocità istantanea massima durante la stiratura." -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Jerk di stampa strato iniziale" +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Percentuale di sovrapposizione del rivestimento esterno" -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Velocità di stampa strato iniziale" +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Regolare l’entità della sovrapposizione tra le pareti e (i punti finali delle) linee centrali del rivestimento esterno espressa in percentuale delle larghezze delle linee del rivestimento esterno. Una leggera sovrapposizione consente alle pareti di essere saldamente collegate al rivestimento. Si noti che, data una larghezza uguale del rivestimento esterno e della linea perimetrale, qualsiasi percentuale superiore al 50% può già causare il superamento della parete da parte del rivestimento esterno in quanto, in quel punto, la posizione dell’ugello dell’estrusore del rivestimento esterno può già avere superato la parte centrale della parete." -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Velocità di stampa dello strato iniziale" +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Sovrapposizione del rivestimento esterno" -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "Distanza tra le linee del supporto dello strato iniziale" +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Regolare l’entità della sovrapposizione tra le pareti e (i punti finali delle) linee centrali del rivestimento esterno. Una leggera sovrapposizione consente alle pareti di essere saldamente collegate al rivestimento. Si noti che, data una larghezza uguale del rivestimento esterno e della linea perimetrale, qualsiasi percentuale superiore alla metà della parete può già causare il superamento della parete da parte del rivestimento esterno in quanto, in quel punto, la posizione dell’ugello dell’estrusore del rivestimento esterno può già aver superato la parte centrale della parete." -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Accelerazione spostamenti dello strato iniziale" +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Larghezza rimozione rivestimento" -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Jerk spostamenti dello strato iniziale" +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "Larghezza massima delle aree di rivestimento che è possibile rimuovere. Ogni area di rivestimento più piccola di questo valore verrà eliminata. Questo può aiutare a limitare il tempo e il materiale necessari per la stampa del rivestimento superiore/inferiore sulle superfici inclinate del modello." + +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Larghezza rimozione rivestimento superiore" -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Velocità di spostamento dello strato iniziale" +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "Larghezza massima delle aree di rivestimento superiore che è possibile rimuovere. Ogni area di rivestimento più piccola di questo valore verrà eliminata. Questo può aiutare a limitare il tempo e il materiale necessari per la stampa del rivestimento superiore sulle superfici inclinate del modello." -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Z Sovrapposizione Primo Strato" +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Larghezza rimozione rivestimento inferiore" -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Temperatura di stampa iniziale" +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "Larghezza massima delle aree di rivestimento inferiore che è possibile rimuovere. Ogni area di rivestimento più piccola di questo valore verrà eliminata. Questo può aiutare a limitare il tempo e il materiale necessari per la stampa del rivestimento inferiore sulle superfici inclinate del modello." -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Accelerazione parete interna" +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Distanza prolunga rivestimento esterno" -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Estrusore parete interna" +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "Distanza per cui i rivestimenti si estendono nel riempimento. Valori maggiori migliorano l'aderenza del rivestimento al riempimento e consentono una migliore aderenza al rivestimento delle pareti degli strati adiacenti. Valori minori consentono di risparmiare sul materiale utilizzato." -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Jerk parete interna" +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Distanza prolunga rivestimento superiore" -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Velocità di stampa della parete interna" +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "Distanza per cui i rivestimenti superiori si estendono nel riempimento. Valori maggiori migliorano l'aderenza del rivestimento al riempimento e consentono una migliore aderenza al rivestimento delle pareti dello strato superiore. Valori minori consentono di risparmiare sul materiale utilizzato." -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Flusso pareti interne" +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Distanza prolunga rivestimento inferiore" -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Larghezza delle linee della parete interna" +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "Distanza per cui i rivestimenti inferiori si estendono nel riempimento. Valori maggiori migliorano l'aderenza del rivestimento al riempimento e consentono una migliore aderenza al rivestimento delle pareti dello strato inferiore. Valori minori consentono di risparmiare sul materiale utilizzato." -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "Inserto applicato al percorso della parete esterna. Se la parete esterna è di dimensioni inferiori all’ugello e stampata dopo le pareti interne, utilizzare questo offset per fare in modo che il foro dell’ugello si sovrapponga alle pareti interne anziché all’esterno del modello." +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Angolo massimo rivestimento esterno per prolunga" -msgctxt "brim_location option inside" -msgid "Inside Only" -msgstr "" +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "Nelle superfici superiore e/o inferiore dell'oggetto con un angolo più grande di questa impostazione, il rivestimento esterno non sarà prolungato. Questo evita il prolungamento delle aree del rivestimento esterno strette che vengono create quando la pendenza della superficie del modello è quasi verticale. Un angolo di 0° è orizzontale e non causa il prolungamento di alcun rivestimento esterno, mentre un angolo di 90° è verticale e causa il prolungamento di tutto il rivestimento esterno." -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "Dall'interno all'esterno" +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Larghezza minima rivestimento esterno per prolunga" -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "Linee di interfaccia preferite" +msgctxt "min_skin_width_for_expansion description" +msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." +msgstr "Le aree del rivestimento esterno inferiori a questa non vengono prolungate. In tal modo si evita di prolungare le aree del rivestimento esterno strette che vengono create quando la superficie del modello presenta un’inclinazione quasi verticale." -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "Interfaccia preferita" +msgctxt "infill label" +msgid "Infill" +msgstr "Riempimento" -msgctxt "prime_tower_mode option interleaved" -msgid "Interleaved" -msgstr "" +msgctxt "infill description" +msgid "Infill" +msgstr "Riempimento" -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "Conteggio degli strati delle travi ad incastro" +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Estrusore riempimento" -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "Larghezza della trave a incastro" +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "Treno estrusore utilizzato per stampare il riempimento. Si utilizza nell'estrusione multipla." -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "Prevenzione incastro dei bordi" +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Densità del riempimento" -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "Profondità di incastro" +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "Regola la densità del riempimento della stampa." -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "Orientamento della struttura ad incastro" +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Distanza tra le linee di riempimento" -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Stiramento del solo strato più elevato" +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "Indica la distanza tra le linee di riempimento stampate. Questa impostazione viene calcolata mediante la densità del riempimento e la larghezza della linea di riempimento." -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Accelerazione di stiratura" +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Configurazione di riempimento" -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Flusso di stiratura" +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "Configurazione del materiale di riempimento della stampa. Il riempimento a linea e a zig zag cambia direzione su strati alternati, riducendo il costo del materiale. Le configurazioni a griglia, a triangolo, tri-esagonali, cubiche, ottagonali, a quarto di cubo, incrociate e concentriche sono stampate completamente su ogni strato. Le configurazioni gyroid, cubiche, a quarto di cubo e ottagonali variano per ciascuno strato per garantire una più uniforme distribuzione della forza in ogni direzione. Il riempimento fulmine cerca di minimizzare il riempimento, supportando solo la parte superiore dell'oggetto." -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Inserto di stiratura" +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Griglia" -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Jerk stiratura" +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Linee" -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Spaziatura delle linee di stiratura" +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Triangoli" -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Configurazione di stiratura" +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Tri-esagonale" -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Velocità di stiratura" +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Cubo" -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "Origine del centro" +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Suddivisione in cubi" -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "È un materiale di supporto" +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Ottagonale" -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "Questo tipo di materiale è quello che si stacca in modo netto quando viene riscaldato (cristallino) oppure è il tipo che produce lunghe catene di polimeri intrecciati (non cristallino)?" +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Quarto di cubo" -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "Questo materiale viene normalmente utilizzato come materiale di supporto durante la stampa." +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Concentriche" -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "Distorce solo i profili delle parti, non i fori di queste." +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Mantenimento delle superfici scollegate" +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Incrociata" -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Altezza dello strato" +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "Incrociata 3D" -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "Avvio strato X" +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Avvio strato Y" +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Fulmine" -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "Indica lo spessore dello strato di base del raft. Questo strato deve essere spesso per aderire saldamente al piano di stampa." +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Collegamento delle linee di riempimento" -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "È lo spessore dello strato intermedio del raft." +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "Collegare le estremità nel punto in cui il riempimento incontra la parete interna utilizzando una linea che segue la forma della parete interna. L'abilitazione di questa impostazione può far meglio aderire il riempimento alle pareti riducendo nel contempo gli effetti del riempimento sulla qualità delle superfici verticali. La disabilitazione di questa impostazione consente di ridurre la quantità di materiale utilizzato." -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "È lo spessore degli strati superiori del raft." +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Collega poligoni di riempimento" -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "Lasciare un collegamento tra le linee del supporto ogni N millimetri per facilitare la rottura del supporto stesso." +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "Collega i percorsi di riempimento quando corrono uno accanto all’altro. Per le configurazioni di riempimento composte da più poligoni chiusi, l’abilitazione di questa impostazione riduce notevolmente il tempo di spostamento." -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Sinistra" +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Direzioni delle linee di riempimento" + +msgctxt "infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." +msgstr "Un elenco di direzioni linee intere. Gli elementi dall’elenco sono utilizzati in sequenza con il progredire degli strati e, al raggiungimento della fine dell’elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l’intero elenco è racchiuso tra parentesi quadre. L’elenco predefinito è vuoto, vale a dire che utilizza i valori angolari predefiniti (45 e 135 gradi per le linee e la configurazione zig zag e 45 gradi per tutte le altre configurazioni)." -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Sollevamento della testina" +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "Offset X riempimento" -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Fulmine" +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "Il riempimento si sposta di questa distanza lungo l'asse X." -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Angolo di sbalzo riempimento fulmine" +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Offset Y riempimento" -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Angolo eliminazione riempimento fulmine" +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "Il riempimento si sposta di questa distanza lungo l'asse Y." -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Angolo di raddrizzatura riempimento fulmine" +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Avvio con riempimento casuale" -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Angolo di supporto riempimento fulmine" +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "Decidere in modo casuale quale sarà la linea di riempimento ad essere stampata per prima. In tal modo si evita che un segmento diventi il più resistente sebbene si esegua uno spostamento aggiuntivo." -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "Limite di portata dei rami" +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "Moltiplicatore delle linee di riempimento" -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "Limita la distanza di ogni ramo dal punto che supporta. Questo può rendere il supporto più robusto, ma aumenta la quantità di rami (e, di conseguenza, la quantità di materiale/il tempo di stampa)" +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "Converte ogni linea di riempimento in questo numero di linee. Le linee supplementari non si incrociano tra loro, ma si evitano. In tal modo il riempimento risulta più rigido, ma il tempo di stampa e la quantità di materiale aumentano." -msgctxt "bv_temp_warn_limit description" -msgid "Limit on Build Volume Temperature warning for detection." -msgstr "" +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Conteggio pareti di riempimento supplementari" -msgctxt "bv_temp_anomaly_limit description" -msgid "Limit on Build Volume temperature Anomaly for detection." -msgstr "" +msgctxt "infill_wall_line_count description" +msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "Aggiunge pareti supplementari intorno alla zona di riempimento. Queste pareti possono ridurre l’abbassamento delle linee del rivestimento esterno superiore/inferiore, pertanto saranno necessari meno strati di rivestimento esterno superiore/inferiore per ottenere la stessa qualità al costo del materiale supplementare." +"Questa funzione può essere abbinata a Collega poligoni riempimento per collegare tutto il riempimento in un unico percorso di estrusione senza necessità di avanzamenti o arretramenti, se configurata correttamente." -msgctxt "print_temp_anomaly_limit description" -msgid "Limit on Print Temperature anomaly for detection." -msgstr "" +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Guscio suddivisione in cubi" -msgctxt "print_temp_warn_limit description" -msgid "Limit on Print temperature warning for detection." -msgstr "" +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "Un aggiunta al raggio dal centro di ciascun cubo per controllare il contorno del modello, per decidere se questo cubo deve essere suddiviso. Valori maggiori comportano un guscio più spesso di cubi piccoli vicino al contorno del modello." -msgctxt "flow_anomaly_limit description" -msgid "Limit on flow anomaly for detection." -msgstr "" +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "Percentuale di sovrapposizione del riempimento" -msgctxt "flow_warn_limit description" -msgid "Limit on the flow warning for detection." -msgstr "" +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Indica la quantità di sovrapposizione tra il riempimento e le pareti come percentuale della larghezza della linea di riempimento. Una leggera sovrapposizione consente il saldo collegamento delle pareti al riempimento." -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "Limita il volume di questa maglia all'interno di altre maglie. Questo può essere utilizzato per stampare talune aree di una maglia con impostazioni diverse e con un diverso estrusore." +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Sovrapposizione del riempimento" -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Limitazione in altezza" +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Indica la quantità di sovrapposizione tra il riempimento e le pareti. Una leggera sovrapposizione consente il saldo collegamento delle pareti al riempimento." -msgctxt "line_width label" -msgid "Line Width" -msgstr "Larghezza della linea" +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "Distanza del riempimento" -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Linee" +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "Indica la distanza di uno spostamento inserito dopo ogni linea di riempimento, per determinare una migliore adesione del riempimento alle pareti. Questa opzione è simile alla sovrapposizione del riempimento, ma senza estrusione e solo su una estremità della linea di riempimento." -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Linee" +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Spessore dello strato di riempimento" -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Linee" +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "Indica lo spessore per strato di materiale di riempimento. Questo valore deve sempre essere un multiplo dell’altezza dello strato e in caso contrario viene arrotondato." -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Linee" +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Fasi di riempimento graduale" -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Linee" +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "Indica il numero di volte per dimezzare la densità del riempimento quando si va al di sotto degli strati superiori. Le aree più vicine agli strati superiori avranno una densità maggiore, fino alla densità del riempimento." -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Linee" +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Altezza fasi di riempimento graduale" -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Linee" +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "Indica l’altezza di riempimento di una data densità prima di passare a metà densità." -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Linee" +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Riempimento prima delle pareti" -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "Stampa il riempimento prima delle pareti. La stampa preliminare delle pareti può avere come risultato pareti più precise, ma sbalzi di stampa peggiori. La stampa preliminare del riempimento produce pareti più robuste, anche se a volte la configurazione (o pattern) di riempimento potrebbe risultare visibile attraverso la superficie." -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Macchina" +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Area minima riempimento" -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Profondità macchina" +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "Non generare aree di riempimento inferiori a questa (piuttosto usare il rivestimento esterno)." -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Poligono testina macchina e ventola" +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Supporto riempimento" -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Altezza macchina" +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "Stampare le strutture di riempimento solo laddove è necessario supportare le sommità del modello. L'abilitazione di questa funzione riduce il tempo di stampa e l'utilizzo del materiale, ma comporta una disuniforme resistenza dell'oggetto." -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Tipo di macchina" +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Angolo di sbalzo del riempimento" -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Larghezza macchina" +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "L'angolo minimo degli sbalzi interni per il quale viene aggiunto il riempimento. Per un valore corrispondente a 0°, gli oggetti sono completamente riempiti di materiale, per un valore corrispondente a 90° non è previsto riempimento." -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Impostazioni macchina specifiche" +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Spessore del supporto del bordo del rivestimento" -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Rendi stampabile lo sbalzo" +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "Spessore del riempimento supplementare che supporta i bordi del rivestimento." -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "Fa sovrapporre leggermente le maglie a contatto tra loro. In tal modo ne migliora l’adesione." +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Layer di supporto del bordo del rivestimento" -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "Realizza aree di supporto più piccole nella parte inferiore che in corrispondenza dello sbalzo." +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "Numero di layer di riempimento che supportano i bordi del rivestimento." -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "Rappresenta il supporto ovunque sotto la maglia di supporto, in modo che in questa non vi siano punti a sbalzo." +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Angolo di supporto riempimento fulmine" -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "Rende la posizione di innesco estrusore assoluta anziché relativa rispetto all’ultima posizione nota della testina." +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Determina quando uno strato di riempimento fulmine deve supportare il materiale sopra di esso. Misurato nell'angolo dato lo stesso di uno strato." -msgctxt "layer_0_z_overlap description" -msgid "" -"Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" -"It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" -msgstr "" +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Angolo di sbalzo riempimento fulmine" -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Rendere le maglie più indicate alla stampa 3D." +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Determina quando uno strato di riempimento fulmine deve supportare il modello sopra di esso. Misurato nell'angolo dato lo spessore." -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Angolo eliminazione riempimento fulmine" -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "I punti finali delle linee di riempimento vengono accorciati per risparmiare sul materiale. Questa impostazione è l'angolo di sbalzo dei punti finali di queste linee." -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (volumetrica)" +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Angolo di raddrizzatura riempimento fulmine" -msgctxt "material description" +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "Le linee di riempimento vengono raddrizzate per risparmiare sul tempo di stampa. Questo è l'angolo di sbalzo massimo consentito sulla lunghezza della linea di riempimento." + +msgctxt "material label" msgid "Material" msgstr "Materiale" -msgctxt "material label" +msgctxt "material description" msgid "Material" msgstr "Materiale" -msgctxt "material_brand label" -msgid "Material Brand" -msgstr "" +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Temperatura di stampa preimpostata" -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "GUID materiale" +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "La temperatura preimpostata utilizzata per la stampa. Deve essere la temperatura “base” di un materiale. Tutte le altre temperature di stampa devono usare scostamenti basati su questo valore" -msgctxt "material_type label" -msgid "Material Type" -msgstr "" +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Temperatura volume di stampa" -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Volume di materiale tra le operazioni di pulitura" +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "La temperatura dell'ambiente in cui stampare. Se il valore è 0, la temperatura del volume di stampa non verrà regolata." -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Massima distanza di combing senza retrazione" +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Temperatura di stampa" -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Accelerazione massima X" +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "Indica la temperatura usata per la stampa." -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Accelerazione massima Y" +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Temperatura di stampa Strato iniziale" -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Accelerazione massima Z" +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer." +msgstr "La temperatura utilizzata per la stampa del primo strato." -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "Angolo massimo dei rami" +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Temperatura di stampa iniziale" -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Deviazione massima" +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "La temperatura minima durante il riscaldamento fino alla temperatura alla quale può già iniziare la stampa." -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Deviazione massima dell'area di estrusione" +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Temperatura di stampa finale" -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Velocità massima della ventola" +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "La temperatura alla quale può già iniziare il raffreddamento prima della fine della stampa." -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Accelerazione massima filamento" +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Modificatore della velocità di raffreddamento estrusione" -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Massimo angolo modello" +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "Indica l'incremento di velocità di raffreddamento dell'ugello in fase di estrusione. Lo stesso valore viene usato per indicare la perdita di velocità di riscaldamento durante il riscaldamento in fase di estrusione." -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Area foro di sbalzo massima" +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Temperatura piano di stampa preimpostata" -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Durata di posizionamento massima" +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "La temperatura preimpostata utilizzata per il piano di stampa. Deve essere la temperatura “base” di un piano di stampa. Tutte le altre temperature di stampa devono usare scostamenti basati su questo valore" -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Risoluzione massima" +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Temperatura piano di stampa" -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Numero massimo di retrazioni" +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "Indica la temperatura utilizzata per il piano di stampa riscaldato. Se questo valore è 0, il piano di stampa viene lasciato non riscaldato." -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Angolo massimo rivestimento esterno per prolunga" +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Temperatura piano di stampa Strato iniziale" -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Velocità massima E" +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "Indica la temperatura usata per il piano di stampa riscaldato per il primo strato. Se questo valore è 0, il piano di stampa viene lasciato non riscaldato per il primo strato." -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Velocità massima X" +msgctxt "material_adhesion_tendency label" +msgid "Adhesion Tendency" +msgstr "Tendenza di adesione" -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Velocità massima Y" +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "Tendenza di adesione superficiale." -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Velocità massima Z" +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Energia superficiale" -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Diametro supportato dalla torre" +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Energia superficiale." -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Risoluzione massima di spostamento" +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Fattore di scala per la compensazione della contrazione" -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "Indica l’accelerazione massima del motore per la direzione X" +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "Per compensare la contrazione del materiale durante il raffreddamento, il modello sarà scalato con questo fattore." -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Indica l’accelerazione massima del motore per la direzione Y." +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Fattore di scala orizzontale per la compensazione della contrazione" -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Indica l’accelerazione massima del motore per la direzione Z." +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "Per compensare la contrazione del materiale durante il raffreddamento, il modello sarà scalato con questo fattore nella direzione XY (orizzontalmente)." -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "Indica l’accelerazione massima del motore del filamento." +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Fattore di scala verticale per la compensazione della contrazione" -msgctxt "bridge_sparse_infill_max_density description" -msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." -msgstr "Densità massima del riempimento considerato rado. Il rivestimento esterno sul riempimento rado è considerato non supportato; pertanto potrebbe essere trattato come rivestimento esterno ponte." +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "Per compensare la contrazione del materiale durante il raffreddamento, il modello sarà scalato con questo fattore nella direzione Z (verticalmente)." -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "È il diametro massimo nelle direzioni X/Y di una piccola area, che deve essere sostenuta da una torre speciale." +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Materiale cristallino" -msgctxt "max_extrusion_before_wipe description" -msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." -msgstr "Il massimo volume di materiale che può essere estruso prima di iniziare un'altra operazione di pulitura ugello. Se questo valore è inferiore al volume del materiale richiesto in un layer, l'impostazione non ha effetto in questo layer, vale a dire che si limita a una pulitura per layer." +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "Questo tipo di materiale è quello che si stacca in modo netto quando viene riscaldato (cristallino) oppure è il tipo che produce lunghe catene di polimeri intrecciati (non cristallino)?" -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Sovrapposizione maglie" +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Posizione retratta anti fuoriuscita di materiale" -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Correzioni delle maglie" +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "La distanza alla quale deve essere retratto il materiale prima che smetta di fuoriuscire." -msgctxt "mesh_position_x label" -msgid "Mesh Position X" -msgstr "Posizione maglia X" +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Velocità di retrazione anti fuoriuscita del materiale" -msgctxt "mesh_position_y label" -msgid "Mesh Position Y" -msgstr "Posizione maglia Y" +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "La velocità a cui deve essere retratto il materiale durante un cambio di filamento per evitare la fuoriuscita di materiale." -msgctxt "mesh_position_z label" -msgid "Mesh Position Z" -msgstr "Posizione maglia Z" +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Posizione di retrazione prima della rottura" -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Classificazione dell'elaborazione delle maglie" +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "La lunghezza massima di estensione del filamento prima che si rompa durante il riscaldamento." + +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Velocità di retrazione prima della rottura" + +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "La velocità massima di retrazione del filamento prima che si rompa durante questa operazione." + +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Temperatura di preparazione alla rottura" + +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "La temperatura utilizzata per scaricare il materiale. deve essere più o meno uguale alla massima temperatura di stampa possibile." + +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Posizione di retrazione per la rottura" -msgctxt "mesh_rotation_matrix label" -msgid "Mesh Rotation Matrix" -msgstr "Matrice rotazione maglia" +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "La distanza di retrazione del filamento al fine di consentirne la rottura netta." -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Intermedia" +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Velocità di retrazione per la rottura" -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Larghezza minimo dello stampo" +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "La velocità alla quale retrarre il filamento al fine di romperlo in modo netto." -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Tempo minimo temperatura di standby" +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Temperatura di rottura" -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Lunghezza minima parete ponte" +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "La temperatura a cui il filamento viene rotto, con una rottura netta." -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Larghezza minima della linea perimetrale pari" +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Velocità di svuotamento dello scarico" -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Finestra di minima distanza di estrusione" +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "Velocità di adescamento del materiale dopo il passaggio a un materiale diverso." -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Dimensioni minime della feature" +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Lunghezza di svuotamento dello scarico" -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Velocità di alimentazione minima" +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "Quantità di materiale da utilizzare per svuotare il materiale precedente dall'ugello (in lunghezza del filamento) quando si passa a un materiale diverso." -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "Altezza minima rispetto al modello" +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Velocità di svuotamento di fine filamento" -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Area minima riempimento" +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "Velocità di adescamento del materiale dopo la sostituzione di una bobina vuota con una nuova dello stesso materiale." -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Tempo minimo per strato" +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Lunghezza di svuotamento di fine filamento" -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Larghezza minima della linea perimetrale dispari" +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "Quantità di materiale da utilizzare per svuotare il materiale precedente dall'ugello (in lunghezza del filamento) durante la sostituzione di una bobina vuota con una nuova dello stesso materiale." -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Circonferenza minima dei poligoni" +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Durata di posizionamento massima" -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Larghezza minima rivestimento esterno per prolunga" +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "Tempo per il quale è possibile mantenere il materiale all'esterno di un luogo di conservazione asciutto in sicurezza." -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Velocità minima" +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Fattore di spostamento senza carico" -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Area minima supporto" +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "Fattore indicante la quantità di filamento che viene compressa tra l'alimentatore e la camera dell'ugello, usato per stabilire a quale distanza spostare il materiale per un cambio di filamento." -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Area minima parti inferiori supporto" +msgctxt "material_flow label" +msgid "Flow" +msgstr "Flusso" -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Area minima interfaccia supporto" +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "Determina la compensazione del flusso: la quantità di materiale estruso viene moltiplicata per questo valore." -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Area minima parti superiori supporto" +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Flusso della parete" -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Distanza X/Y supporto minima" +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Compensazione del flusso sulle linee perimetrali." -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Larghezza minima della linea perimetrale sottile" +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Flusso della parete esterna" -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Volume minimo prima del Coasting" +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "Compensazione del flusso sulla linea perimetrale più esterna." -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Larghezza minima della linea perimetrale" +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Flusso pareti interne" -msgctxt "minimum_interface_area description" -msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Dimensione minima dell'area per i poligoni dell'interfaccia di supporto. I poligoni con un'area più piccola rispetto a questo valore saranno stampati come supporto normale." +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "Compensazione del flusso sulle linee perimetrali per tutte le linee perimetrali tranne quella più esterna." -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "Dimensioni minime area per i poligoni del supporto. I poligoni con un’area inferiore a questo valore non verranno generati." +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Flusso della parete esterna della superficie superiore" -msgctxt "minimum_bottom_area description" -msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Dimensione minima dell'area per le parti inferiori del supporto. I poligoni con un'area più piccola rispetto a questo valore saranno stampati come supporto normale." +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Compensazione del flusso sulla linea della parete esterna più esterna della superficie superiore." -msgctxt "minimum_roof_area description" -msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Dimensione minima dell'area per le parti superiori del supporto. I poligoni con un'area più piccola rispetto a questo valore saranno stampati come supporto normale." +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Flusso della parete interna della superficie superiore" -msgctxt "min_feature_size description" -msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." -msgstr "Spessore minimo di feature sottili. Le feature modello che sono più sottili di questo valore non verranno stampate, mentre le feature più spesse delle dimensioni minime della feature verranno ampliate fino alla larghezza minima della linea perimetrale." +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Compensazione del flusso sulle linee delle pareti della superficie superiore per tutte le linee delle pareti tranne quella più esterna." -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "Indica la larghezza minima alla quale viene ridotta la base dell’area del supporto conico. Larghezze minori possono comportare strutture di supporto instabili." +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Flusso superiore/inferiore" -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Stampo" +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Compensazione del flusso sulle linee superiore/inferiore." -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Angolo stampo" +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Flusso rivestimento esterno superficie superiore" -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Altezza parte superiore dello stampo" +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "Compensazione del flusso sulle linee delle aree nella parte superiore della stampa." -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Ordine di stiratura monotonico" +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Flusso di riempimento" -msgctxt "raft_surface_monotonic label" -msgid "Monotonic Raft Top Surface Order" -msgstr "" +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Compensazione del flusso sulle linee di riempimento." -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Ordine superficie superiore monotonico" +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Flusso dello skirt/brim" -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Ordine superiore/inferiore monotonico" +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Compensazione del flusso sulle linee dello skirt o del brim." -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "Più linee di skirt contribuiscono a migliorare l'avvio dell'estrusione per modelli di piccole dimensioni. L'impostazione di questo valore a 0 disattiverà la funzione skirt." +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Flusso del supporto" -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "Moltiplicatore della larghezza della linea del primo strato Il suo aumento potrebbe migliorare l'adesione al piano." +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Compensazione del flusso sulle linee di supporto." -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Fattore di spostamento senza carico" +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Flusso interfaccia di supporto" -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Nessun rivest. est. negli interstizi a Z" +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "Compensazione del flusso sulle linee di supporto superiore o inferiore." -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Modi non tradizionali di stampare i modelli." +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Flusso supporto superiore" + +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Compensazione del flusso sulle linee di supporto superiore." -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Nessuno" +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Flusso supporto inferiore" -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Nessuno" +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Compensazione del flusso sulle linee di supporto inferiore." -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normale" +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Flusso torre di innesco" -msgctxt "prime_tower_mode option normal" -msgid "Normal" -msgstr "" +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Compensazione del flusso sulle linee della torre di innesco." -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Normale" +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Flusso dello strato iniziale" -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "Di norma Cura cerca di \"ricucire\" piccoli fori nella maglia e di rimuovere le parti di uno strato che presentano grossi fori. Abilitando questa opzione, Cura mantiene quelle parti che non possono essere 'ricucite'. Questa opzione deve essere utilizzata come ultima risorsa quando non sia stato possibile produrre un corretto codice G in nessun altro modo." +msgctxt "material_flow_layer_0 description" +msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." +msgstr "Determina la compensazione del flusso per il primo strato: la quantità di materiale estruso sullo strato iniziale viene moltiplicata per questo valore." -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Non nel rivestimento" +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "Flusso della parete interna dello strato iniziale" -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "Non su superficie esterna" +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "Compensazione del flusso sulle linee di parete per tutte le linee di parete tranne quella più esterna, ma solo per il primo strato" -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Angolo ugello" +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "Flusso della parete esterna dello strato iniziale" -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diametro ugello" +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "Compensazione del flusso sulla linea a parete più esterna del primo strato." -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Aree ugello non consentite" +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "Flusso inferiore dello strato iniziale" -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ID ugello" +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "Compensazione del flusso sulle linee inferiori del primo strato" -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Lunghezza ugello" +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Temperatura di Standby" -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Quantità di materiale extra della Prime Tower, al cambio ugello" +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "Indica la temperatura dell'ugello quando un altro ugello è attualmente in uso per la stampa." -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Velocità innesco cambio ugello" +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "È un materiale di supporto" -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Velocità di retrazione cambio ugello" +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "Questo materiale viene normalmente utilizzato come materiale di supporto durante la stampa." -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Distanza di retrazione cambio ugello" +msgctxt "speed label" +msgid "Speed" +msgstr "Velocità" -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Velocità di retrazione cambio ugello" +msgctxt "speed description" +msgid "Speed" +msgstr "Velocità" -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Numero di estrusori" +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Velocità di stampa" -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Numero di estrusori abilitati" +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "Indica la velocità alla quale viene effettuata la stampa." -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Numero di strati stampati a velocità inferiore" +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Velocità di riempimento" -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "Numero di treni di estrusori abilitati; impostato automaticamente nel software" +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "Indica la velocità alla quale viene stampato il riempimento." -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "Il numero di treni di estrusori. Un treno di estrusori è la combinazione di un alimentatore, un tubo bowden e un ugello." +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Velocità di stampa della parete" -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "Numero di passaggi dell'ugello attraverso lo spazzolino." +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "Indica la velocità alla quale vengono stampate le pareti." -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "Indica il numero di volte per dimezzare la densità del riempimento quando si va al di sotto degli strati superiori. Le aree più vicine agli strati superiori avranno una densità maggiore, fino alla densità del riempimento." +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Velocità di stampa della parete esterna" -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "Indica il numero di volte per dimezzare la densità del riempimento quando si va al di sotto delle superfici superiori. Le aree più vicine alle superfici superiori avranno una densità maggiore, fino alla densità del riempimento." +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "Indica la velocità alla quale vengono stampate le pareti più esterne. La stampa della parete esterna ad una velocità inferiore migliora la qualità finale del rivestimento. Tuttavia, una grande differenza tra la velocità di stampa della parete interna e quella della parete esterna avrà effetti negativi sulla qualità." -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Ottagonale" +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Velocità di stampa della parete interna" -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Disinserita" +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "Indica la velocità alla quale vengono stampate tutte le pareti interne. La stampa della parete interna eseguita più velocemente di quella della parete esterna consentirà di ridurre il tempo di stampa. Si consiglia di impostare questo parametro ad un valore intermedio tra la velocità della parete esterna e quella di riempimento." -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "Offset applicato all’oggetto per la direzione X." +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Velocità di stampa della parete esterna della superficie superiore" -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "Offset applicato all’oggetto per la direzione Y." +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "La velocità con cui vengono stampate le pareti più esterne della superficie superiore." -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "Offset applicato all’oggetto in direzione z. Con questo potrai effettuare quello che veniva denominato 'Object Sink’." +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Velocità di stampa della parete interna della superficie superiore" -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Offset con estrusore" +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "La velocità con cui vengono stampate le pareti interne della superficie superiore." -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "Sul piano di stampa, quando possibile" +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Velocità del rivestimento superficie" -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "Sul modello, se necessario" +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "Indica la velocità di stampa degli strati superiori." -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "Uno alla volta" +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Velocità di stampa delle parti superiore/inferiore" -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "Esegue solo uno Z Hop quando si sposta sopra le parti stampate che non possono essere evitate mediante uno spostamento orizzontale con Aggiramento delle parti stampate durante lo spostamento." +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "Indica la velocità alla quale vengono stampati gli strati superiore/inferiore." -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "Effettua lo stiramento solo dell'ultimissimo strato della maglia. È possibile quindi risparmiare tempo se gli strati inferiori non richiedono una finitura con superficie liscia." +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Velocità di stampa del supporto" -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Angolo del riparo materiale fuoriuscito" +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "Indica la velocità alla quale viene stampata la struttura di supporto. La stampa della struttura di supporto a velocità elevate può ridurre considerevolmente i tempi di stampa. La qualità superficiale della struttura di supporto di norma non riveste grande importanza in quanto viene rimossa dopo la stampa." -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Distanza del riparo materiale fuoriuscito" +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Velocità di riempimento del supporto" -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "Intervallo ottimale dei rami" +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "Indica la velocità alla quale viene stampato il riempimento del supporto. La stampa del riempimento a velocità inferiori migliora la stabilità." -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Ottimizzazione sequenza di stampa pareti" +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Velocità interfaccia supporto" -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "Ottimizzare la sequenza di stampa delle pareti in modo da ridurre il numero di retrazioni e la distanza percorsa. L'abilitazione di questa funzione porta vantaggi per la maggior parte dei pezzi; alcuni possono richiedere un maggior tempo di esecuzione; si consiglia di confrontare i tempi di stampa stimati con e senza ottimizzazione. Scegliendo la funzione brim come tipo di adesione del piano di stampa, il primo strato non viene ottimizzato." +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "Velocità alla quale vengono stampate le parti superiori e inferiori del supporto. La loro stampa a velocità inferiori può migliorare la qualità dello sbalzo." + +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Velocità di stampa della parte superiore (tetto) del supporto" -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Diametro esterno ugello" +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "Velocità alla quale vengono stampate le parti superiori del supporto. La loro stampa a velocità inferiori può migliorare la qualità dello sbalzo." -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Accelerazione parete esterna" +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Velocità di stampa della parte inferiore del supporto" -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Estrusore parete esterna" +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "Velocità alla quale viene stampata la parte inferiore del supporto. La stampa ad una velocità inferiore può migliorare l'adesione del supporto nella parte superiore del modello." -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Flusso della parete esterna" +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Velocità della torre di innesco" -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Inserto parete esterna" +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "Indica la velocità alla quale è stampata la torre di innesco. La stampa della torre di innesco a una velocità inferiore può renderla maggiormente stabile quando l’adesione tra i diversi filamenti non è ottimale." -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "Jerk parete esterna" +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Velocità degli spostamenti" -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Larghezza delle linee della parete esterna" +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "Indica la velocità alla quale vengono effettuati gli spostamenti." -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Velocità di stampa della parete esterna" +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Velocità di stampa dello strato iniziale" -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Distanza del riempimento parete esterna" +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "La velocità dello strato iniziale. È consigliabile un valore inferiore per migliorare l'adesione al piano di stampa. Non influisce sulle strutture di adesione del piano di stampa stesse, come brim e raft." -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Le pareti esterne di diverse isole nello stesso strato vengono stampate in sequenza. Quando abilitata, la quantità di variazione del flusso è limitata perché le pareti vengono stampate un tipo alla volta; quando disabilitata, si riduce il numero di spostamenti tra le isole perché le pareti nello stesso isola sono raggruppate." +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Velocità di stampa strato iniziale" -msgctxt "brim_location option outside" -msgid "Outside Only" -msgstr "" +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "Indica la velocità di stampa per lo strato iniziale. Un valore inferiore è consigliabile per migliorare l’adesione al piano di stampa." -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "Dall'esterno all'interno" +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Velocità di spostamento dello strato iniziale" -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Angolo parete di sbalzo" +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "Indica la velocità di spostamento per lo strato iniziale. Un valore inferiore è consigliabile per evitare di rimuovere le parti precedentemente stampate dal piano di stampa. Il valore di questa impostazione può essere calcolato automaticamente dal rapporto tra la velocità di spostamento e la velocità di stampa." -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Velocità parete di sbalzo" +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Velocità dello skirt/brim" -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "Le pareti di sbalzo verranno stampate a questa percentuale della loro normale velocità di stampa." +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "Indica la velocità a cui sono stampati lo skirt ed il brim. Normalmente questa operazione viene svolta alla velocità di stampa dello strato iniziale, ma a volte è possibile che si desideri stampare lo skirt o il brim ad una velocità diversa." -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Pausa dopo ripristino." +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Velocità di sollevamento Z" -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "La velocità della ventola in percentuale da usare durante la stampa delle pareti e del rivestimento esterno ponte." +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "Velocità alla quale viene eseguito il movimento Z verticale per i sollevamenti in Z. In genere è inferiore alla velocità di stampa, dal momento che il piano o il corpo di stampa della macchina sono più difficili da spostare." -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "La velocità delle ventola in percentuale da usare per stampare il secondo strato del rivestimento esterno ponte." +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Numero di strati stampati a velocità inferiore" -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "Percentuale della velocità della ventola da usare quando si stampano le zone del rivestimento esterno subito sopra il supporto. L’uso di una velocità ventola elevata può facilitare la rimozione del supporto." +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "I primi strati vengono stampati più lentamente rispetto al resto del modello, per ottenere una migliore adesione al piano di stampa ed ottimizzare nel complesso la percentuale di successo delle stampe. La velocità aumenta gradualmente nel corso di esecuzione degli strati successivi." -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "La velocità della ventola in percentuale da usare per stampare il terzo strato del rivestimento esterno ponte." +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Rapporto di equalizzazione del flusso" -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "I poligoni in strati sezionati con una circonferenza inferiore a questo valore verranno scartati. I valori inferiori generano una maglia con risoluzione superiore al costo del tempo di sezionamento. È dedicata in particolare alle stampanti SLA ad alta risoluzione e a modelli 3D molto piccoli, ricchi di dettagli." +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "Fattore di correzione della velocità basato sulla larghezza di estrusione. A 0% la velocità di movimento viene mantenuta costante alla velocità di stampa. Al 100% la velocità di movimento viene regolata in modo da mantenere costante il flusso (in mm³/s), ovvero le linee la cui larghezza è metà di quella normale vengono stampate due volte più velocemente e le linee larghe il doppio vengono stampate a metà della velocità. Un valore maggiore di 100% può aiutare a compensare la pressione più alta richiesta per estrudere linee larghe." -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "Angolo dei rami preferito" +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Abilita controllo accelerazione" -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "Impedisce la transizione avanti e indietro tra una parete aggiuntiva e una di meno. Questo margine estende l'intervallo di larghezze linea che segue a [Larghezza minima della linea perimetrale - Margine, 2 * Larghezza minima della linea perimetrale + Margine]. Incrementando questo margine si riduce il numero di transizioni, che riduce il numero di avvii/interruzioni estrusione e durata dello spostamento. Tuttavia, variazioni ampie della larghezza della linea possono portare a problemi di sottoestrusione o sovraestrusione." +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "Abilita la regolazione dell’accelerazione della testina di stampa. Aumentando le accelerazioni il tempo di stampa si riduce a discapito della qualità di stampa." -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Accelerazione della torre di innesco" +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Abilita l'accelerazione spostamenti" -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Base" -msgstr "Base della Torre di Primerizzazione" +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "Usa una velocità di accelerazione separata per i movimenti di spostamento. Se disabilitato, i movimenti di spostamento utilizzeranno il valore di accelerazione della linea stampata alla destinazione." -msgctxt "prime_tower_base_height label" -msgid "Prime Tower Base Height" -msgstr "Altezza della Base della Torre di Primerizzazione" +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Accelerazione di stampa" -msgctxt "prime_tower_base_size label" -msgid "Prime Tower Base Size" -msgstr "Dimensione della Base della Torre di Primerizzazione" +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "L’accelerazione con cui avviene la stampa." -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Slope" -msgstr "Pendenza della Base della Torre di Primerizzazione" +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Accelerazione riempimento" -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Flusso torre di innesco" +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "L’accelerazione con cui viene stampato il riempimento." -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "Jerk della torre di innesco" +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Accelerazione parete" -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Larghezza della linea della torre di innesco" +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "Indica l’accelerazione alla quale vengono stampate le pareti." -msgctxt "prime_tower_max_bridging_distance label" -msgid "Prime Tower Maximum Bridging Distance" -msgstr "" +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Accelerazione parete esterna" -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Volume minimo torre di innesco" +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "Indica l’accelerazione alla quale vengono stampate le pareti più esterne." -msgctxt "prime_tower_raft_base_line_spacing label" -msgid "Prime Tower Raft Line Spacing" -msgstr "Interlinea del Radeau della Torre di Primerizzazione" +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Accelerazione parete interna" -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Dimensioni torre di innesco" +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "Indica l’accelerazione alla quale vengono stampate tutte le pareti interne." -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Velocità della torre di innesco" +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Accelerazione della parete esterna della superficie superiore" -msgctxt "prime_tower_mode label" -msgid "Prime Tower Type" -msgstr "" +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "L'accelerazione con cui vengono stampate le pareti più esterne della superficie superiore." -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "Posizione X torre di innesco" +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Accelerazione della parete interna della superficie superiore" -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Posizione Y torre di innesco" +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "L'accelerazione con cui vengono stampate le pareti interne della superficie superiore." -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Accelerazione di stampa" +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Accelerazione del rivestimento superficie superiore" -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Jerk stampa" +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "Indica l'accelerazione alla quale vengono stampati gli strati rivestimento superficie superiore." -msgctxt "ppr label" -msgid "Print Process Reporting" -msgstr "" +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Accelerazione strato superiore/inferiore" + +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "Indica l’accelerazione alla quale vengono stampati gli strati superiore/inferiore." -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Sequenza di stampa" +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Accelerazione supporto" -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Velocità di stampa" +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "Indica l’accelerazione con cui viene stampata la struttura di supporto." -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Stampa pareti sottili" +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Accelerazione riempimento supporto" -msgctxt "brim_location description" -msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." -msgstr "" +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "Indica l’accelerazione con cui viene stampato il riempimento del supporto." -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "Stampa una torre accanto alla stampa che serve per innescare il materiale dopo ogni cambio ugello." +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Accelerazione interfaccia supporto" -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "Stampare le strutture di riempimento solo laddove è necessario supportare le sommità del modello. L'abilitazione di questa funzione riduce il tempo di stampa e l'utilizzo del materiale, ma comporta una disuniforme resistenza dell'oggetto." +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "Accelerazione alla quale vengono stampate le parti superiori e inferiori del supporto. La loro stampa ad un'accelerazione inferiore può migliorare la qualità dello sbalzo." -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Stampa linee di stiratura in un ordine che ne causa sempre la sovrapposizione con le linee adiacenti in un singola direzione. Questa operazione richiede un tempo di stampa leggermente superiore ma rende l'aspetto delle superfici piane più uniforme." +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Accelerazione parte superiore del supporto" -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "Stampa i modelli come uno stampo, che può essere fuso per ottenere un modello che assomigli ai modelli sul piano di stampa." +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "Accelerazione alla quale vengono stampate le parti superiori del supporto. La loro stampa ad un'accelerazione inferiore può migliorare la qualità dello sbalzo." -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "Stampa parti del modello orizzontalmente più sottili delle dimensioni dell'ugello." +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Accelerazione parte inferiore del supporto" -msgctxt "raft_surface_monotonic description" -msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." -msgstr "" +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "Accelerazione alla quale vengono stampate le parti inferiori del supporto. La stampa ad una accelerazione inferiore può migliorare l'adesione del supporto nella parte superiore del modello." -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "La velocità di stampa da usare per stampare il secondo strato del rivestimento esterno ponte." +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Accelerazione della torre di innesco" -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "La velocità di stampa da usare per stampare il terzo strato del rivestimento esterno ponte." +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "Indica l’accelerazione con cui viene stampata la torre di innesco." -msgctxt "print_temp_anomaly_limit label" -msgid "Print temperature Limit" -msgstr "" +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Accelerazione spostamenti" -msgctxt "print_temp_warn_limit label" -msgid "Print temperature Warning" -msgstr "" +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "Indica l’accelerazione alla quale vengono effettuati gli spostamenti." -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "Stampa il riempimento prima delle pareti. La stampa preliminare delle pareti può avere come risultato pareti più precise, ma sbalzi di stampa peggiori. La stampa preliminare del riempimento produce pareti più robuste, anche se a volte la configurazione (o pattern) di riempimento potrebbe risultare visibile attraverso la superficie." +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Accelerazione dello strato iniziale" -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Stampa linee superficie superiori in un ordine che ne causa sempre la sovrapposizione con le linee adiacenti in un singola direzione. Questa operazione richiede un tempo di stampa leggermente superiore ma rende l'aspetto delle superfici piane più uniforme." +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "Indica l’accelerazione dello strato iniziale." -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Stampa linee superiori/inferiori in un ordine che ne causa sempre la sovrapposizione con le linee adiacenti in un singola direzione. Questa operazione richiede un tempo di stampa leggermente superiore ma rende l'aspetto delle superfici piane più uniforme." +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Accelerazione di stampa strato iniziale" -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Temperatura di stampa" +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "Indica l’accelerazione durante la stampa dello strato iniziale." -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Temperatura di stampa Strato iniziale" +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Accelerazione spostamenti dello strato iniziale" -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "Stampare la linea più interna dello skirt con più strati facilita la rimozione dello skirt stesso." +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Indica l’accelerazione degli spostamenti dello strato iniziale." -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "Stampa una parete supplementare ogni due strati. In questo modo il riempimento rimane catturato tra queste pareti supplementari, creando stampe più resistenti." +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Accelerazione skirt/brim" -msgctxt "resolution label" -msgid "Quality" -msgstr "Qualità" +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "Indica l’accelerazione alla quale sono stampati lo skirt ed il brim. Normalmente questa operazione viene svolta all’accelerazione dello strato iniziale, ma a volte è possibile che si desideri stampare lo skirt o il brim ad un’accelerazione diversa." -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Quarto di cubo" +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Abilita controllo jerk" -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Raft" +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "Abilita la regolazione del jerk della testina di stampa quando la velocità nell’asse X o Y cambia. Aumentando il jerk il tempo di stampa si riduce a discapito della qualità di stampa." -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Traferro del raft" +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Abilita jerk spostamenti" -msgctxt "raft_base_margin label" -msgid "Raft Base Extra Margin" -msgstr "" +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "Usa un tasso di jerk separato per i movimenti di spostamento. Se disabilitata, i movimenti di spostamento utilizzeranno il valore di jerk della linea stampata alla destinazione." -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Estrusore della base del raft" +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Jerk stampa" -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Velocità della ventola per la base del raft" +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "Indica il cambio della velocità istantanea massima della testina di stampa." -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Spaziatura delle linee dello strato di base del raft" +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Jerk riempimento" -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Larghezza delle linee dello strato di base del raft" +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "Indica il cambio della velocità istantanea massima con cui viene stampato il riempimento." -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Accelerazione di stampa della base del raft" +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Jerk parete" -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Jerk di stampa della base del raft" +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampate le pareti." -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Velocità di stampa della base del raft" +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "Jerk parete esterna" -msgctxt "raft_base_smoothing label" -msgid "Raft Base Smoothing" -msgstr "" +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampate le pareti più esterne." -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Spessore della base del raft" +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Jerk parete interna" -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Conteggio parete base del raft" +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampate tutte le pareti interne." -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Margine extra del raft" +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Jerk parete interna della superficie superiore" -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Velocità della ventola per il raft" +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "La massima variazione istantanea di velocità con cui vengono stampate le pareti interne della superficie superiore." -msgctxt "raft_interface_margin label" -msgid "Raft Middle Extra Margin" -msgstr "" +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Jerk parete esterna della superficie superiore" -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Estrusore intermedio del raft" +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "La massima variazione istantanea di velocità con cui vengono stampate le pareti più esterne della superficie superiore." -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Velocità della ventola per il raft intermedio" +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Jerk del rivestimento superficie superiore" -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Strati intermedi del raft" +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "Indica la variazione di velocità istantanea massima con cui vengono stampati gli strati rivestimento superficie superiore." + +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Jerk strato superiore/inferiore" -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Larghezza delle linee dello strato intermedio del raft" +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampati gli strati superiore/inferiore." -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Accelerazione di stampa raft intermedio" +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Jerk supporto" -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Jerk di stampa raft intermedio" +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "Indica il cambio della velocità istantanea massima con cui viene stampata la struttura del supporto." -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Velocità di stampa raft intermedio" +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Jerk riempimento supporto" -msgctxt "raft_interface_smoothing label" -msgid "Raft Middle Smoothing" -msgstr "" +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "Indica il cambio della velocità istantanea massima con cui viene stampato il riempimento del supporto." -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Spaziatura dello strato intermedio del raft" +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Jerk interfaccia supporto" -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Spessore dello strato intermedio del raft" +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "Indica la variazione della velocità istantanea massima con cui vengono stampate le parti superiori e inferiori." -msgctxt "raft_interface_wall_count label" -msgid "Raft Middle Wall Count" -msgstr "" +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Jerk parte superiore del supporto" -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Accelerazione di stampa del raft" +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "Indica la variazione della velocità istantanea massima con cui vengono stampate le parti superiori." -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Jerk stampa del raft" +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Jerk parte inferiore del supporto" -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Velocità di stampa del raft" +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "Indica la variazione della velocità istantanea massima con cui vengono stampate le parti inferiori." -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Smoothing raft" +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "Jerk della torre di innesco" -msgctxt "raft_surface_margin label" -msgid "Raft Top Extra Margin" -msgstr "" +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "Indica il cambio della velocità istantanea massima con cui viene stampata la torre di innesco del supporto." -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Estrusore superiore del raft" +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Jerk spostamenti" -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Velocità della ventola per la parte superiore del raft" +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "Indica il cambio della velocità istantanea massima con cui vengono effettuati gli spostamenti." -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Spessore dello strato superiore del raft" +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Jerk dello strato iniziale" -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Strati superiori del raft" +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "Indica il cambio della velocità istantanea massima dello strato iniziale." -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Larghezza delle linee superiori del raft" +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Jerk di stampa strato iniziale" -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Accelerazione di stampa parte superiore del raft" +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "Indica il cambio della velocità istantanea massima durante la stampa dello strato iniziale." -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Jerk di stampa parte superiore del raft" +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Jerk spostamenti dello strato iniziale" -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Velocità di stampa parte superiore del raft" +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Indica l’accelerazione degli spostamenti dello strato iniziale." -msgctxt "raft_surface_smoothing label" -msgid "Raft Top Smoothing" -msgstr "" +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Jerk dello skirt/brim" -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Spaziatura superiore del raft" +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampati lo skirt e il brim." -msgctxt "raft_surface_wall_count label" -msgid "Raft Top Wall Count" -msgstr "" +msgctxt "travel label" +msgid "Travel" +msgstr "Spostamenti" -msgctxt "raft_wall_count label" -msgid "Raft Wall Count" -msgstr "" +msgctxt "travel description" +msgid "travel" +msgstr "spostamenti" -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Casuale" +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Abilitazione della retrazione" -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "Avvio con riempimento casuale" +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Ritrae il filamento quando l'ugello si sta muovendo su un'area non stampata." -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "Decidere in modo casuale quale sarà la linea di riempimento ad essere stampata per prima. In tal modo si evita che un segmento diventi il più resistente sebbene si esegua uno spostamento aggiuntivo." +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Retrazione al cambio strato" -msgctxt "magic_fuzzy_skin_enabled description" -msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." -msgstr "Distorsione (jitter) casuale durante la stampa della parete esterna, così che la superficie assume un aspetto ruvido ed incoerente (fuzzy)." +msgctxt "retract_at_layer_change description" +msgid "Retract the filament when the nozzle is moving to the next layer." +msgstr "Ritrae il filamento quando l'ugello si sta muovendo allo strato successivo." -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Rettangolare" +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Distanza di retrazione" -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "Velocità regolare della ventola" +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "La lunghezza del materiale retratto durante il movimento di retrazione." -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Velocità regolare della ventola in altezza" +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Velocità di retrazione" -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Velocità regolare della ventola in corrispondenza dello strato" +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "Indica la velocità alla quale il filamento viene retratto e preparato durante un movimento di retrazione." -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "Soglia velocità regolare/massima della ventola" +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Velocità di retrazione" -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Estrusione relativa" +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "Indica la velocità alla quale il filamento viene retratto durante un movimento di retrazione." -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Rimozione di tutti i fori" +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Velocità di innesco dopo la retrazione" -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Rimuovere i primi strati vuoti" +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "Indica la velocità alla quale il filamento viene preparato durante un movimento di retrazione." -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Rimuovi intersezione maglie" +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Entità di innesco supplementare dopo la retrazione" -msgctxt "raft_base_remove_inside_corners label" -msgid "Remove Raft Base Inside Corners" -msgstr "" +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "Qui è possibile compensare l’eventuale trafilamento di materiale che può verificarsi durante uno spostamento." -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Rimuovi angoli interni raft" +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Distanza minima di retrazione" -msgctxt "raft_interface_remove_inside_corners label" -msgid "Remove Raft Middle Inside Corners" -msgstr "" +msgctxt "retraction_min_travel description" +msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." +msgstr "Determina la distanza minima necessaria affinché avvenga una retrazione. Questo consente di avere un minor numero di retrazioni in piccole aree." -msgctxt "raft_surface_remove_inside_corners label" -msgid "Remove Raft Top Inside Corners" -msgstr "" +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Numero massimo di retrazioni" -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "Rimuove le aree in cui maglie multiple si sovrappongono tra loro. Questo può essere usato se oggetti di due materiali uniti si sovrappongono tra loro." +msgctxt "retraction_count_max description" +msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." +msgstr "Questa impostazione limita il numero di retrazioni previste all'interno della finestra di minima distanza di estrusione. Ulteriori retrazioni nell'ambito di questa finestra saranno ignorate. Questo evita di eseguire ripetute retrazioni sullo stesso pezzo di filamento, onde evitarne l'appiattimento e conseguenti problemi di deformazione." -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "Rimuovere gli strati vuoti sotto il primo strato stampato, se presenti. La disabilitazione di questa impostazione può provocare la presenza di primi strati vuoti, se l'impostazione di Tolleranza di sezionamento è impostata su Esclusiva o Intermedia." +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Finestra di minima distanza di estrusione" -msgctxt "raft_base_remove_inside_corners description" -msgid "Remove inside corners from the raft base, causing the raft to become convex." -msgstr "" +msgctxt "retraction_extrusion_window description" +msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." +msgstr "La finestra in cui è impostato il massimo numero di retrazioni. Questo valore deve corrispondere all'incirca alla distanza di retrazione, in modo da limitare effettivamente il numero di volte che una retrazione interessa lo stesso spezzone di materiale." -msgctxt "raft_interface_remove_inside_corners description" -msgid "Remove inside corners from the raft middle part, causing the raft to become convex." -msgstr "" +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Modalità Combing" -msgctxt "raft_surface_remove_inside_corners description" -msgid "Remove inside corners from the raft top part, causing the raft to become convex." -msgstr "" +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "La funzione Combing tiene l’ugello all’interno delle aree già stampate durante lo spostamento. In tal modo le corse di spostamento sono leggermente più lunghe ma si riduce l’esigenza di effettuare retrazioni. Se questa funzione viene disabilitata, il materiale viene retratto e l’ugello si sposta in linea retta al punto successivo. È anche possibile evitare il combing sopra le aree del rivestimento esterno superiore/inferiore o effettuare il combing solo nel riempimento." -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Consente di rimuovere angoli interni dal raft, facendolo diventare convesso." +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Disinserita" -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "Rimuove i fori presenti su ciascuno strato e mantiene soltanto la forma esterna. Questa funzione ignora qualsiasi invisibile geometria interna. Tuttavia, essa ignora allo stesso modo i fori degli strati visibili da sopra o da sotto." +msgctxt "retraction_combing option all" +msgid "All" +msgstr "Tutto" -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Non su superficie esterna" -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Non nel rivestimento" -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "Sostituisce la parte più esterna della configurazione degli strati superiori/inferiori con una serie di linee concentriche. L’utilizzo di una o due linee migliora le parti superiori (tetti) che iniziano sul materiale di riempimento." +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "Nel riempimento" -msgctxt "ppr description" -msgid "Reporting events that go out of set thresholds" -msgstr "" +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Massima distanza di combing senza retrazione" -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "Preferenza di appoggio" +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "Per un valore superiore a zero, le corse di spostamento in modalità combing superiori a tale distanza utilizzeranno la retrazione. Se il valore impostato è zero, non è presente un valore massimo e le corse in modalità combing non utilizzeranno la retrazione." msgctxt "travel_retract_before_outer_wall label" msgid "Retract Before Outer Wall" msgstr "Retrazione prima della parete esterna" -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Retrazione al cambio strato" - -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Ritrae il filamento quando l'ugello si sta muovendo su un'area non stampata." - -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Ritrae il filamento quando l'ugello si sta muovendo su un'area non stampata." - -msgctxt "retract_at_layer_change description" -msgid "Retract the filament when the nozzle is moving to the next layer." -msgstr "Ritrae il filamento quando l'ugello si sta muovendo allo strato successivo." - -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Distanza di retrazione" - -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Entità di innesco supplementare dopo la retrazione" +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "Arretra sempre quando si sposta per iniziare una parete esterna." -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Distanza minima di retrazione" +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Aggiramento delle parti stampate durante gli spostamenti" -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Velocità di innesco dopo la retrazione" +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "Durante lo spostamento l’ugello evita le parti già stampate. Questa opzione è disponibile solo quando è abilitata la funzione Combing." -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Velocità di retrazione" +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Aggiramento dei supporti durante gli spostamenti" -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Velocità di retrazione" +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "Durante lo spostamento l'ugello evita i supporti già stampati. Questa opzione è disponibile solo quando è abilitata la funzione combing." -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Destra" +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Distanza di aggiramento durante gli spostamenti" -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "Scala la velocità della ventola a 0-1" +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "La distanza tra l’ugello e le parti già stampate quando si effettua lo spostamento con aggiramento." -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "Scalare la velocità della ventola in modo che sia compresa tra 0 e 1 anziché tra 0 e 256." +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "Avvio strato X" -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Fattore di scala per la compensazione della contrazione" +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "La coordinata X della posizione in prossimità della quale si trova la parte per avviare la stampa di ciascuno strato." -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "La scena è dotata di maglie di supporto" +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Avvio strato Y" -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Preferenze angolo giunzione" +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "La coordinata Y della posizione in prossimità della quale si trova la parte per avviare la stampa di ciascuno strato." -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "Imposta manualmente la sequenza di stampa" +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Z Hop durante la retrazione" -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "Imposta l’altezza del riparo paravento. Scegliere di stampare il riparo paravento all’altezza totale del modello o a un’altezza limitata." +msgctxt "retraction_hop_enabled description" +msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "Ogniqualvolta avviene una retrazione, il piano di stampa viene abbassato per creare uno spazio tra l’ugello e la stampa. Previene l’urto dell’ugello sulla stampa durante gli spostamenti riducendo la possibilità di far cadere la stampa dal piano." -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Indica le impostazioni utilizzate per la stampa con estrusori multipli." +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Z Hop solo su parti stampate" -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "Impostazioni utilizzate solo se CuraEngine non è chiamato dalla parte anteriore di Cura." +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "Esegue solo uno Z Hop quando si sposta sopra le parti stampate che non possono essere evitate mediante uno spostamento orizzontale con Aggiramento delle parti stampate durante lo spostamento." -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Retrazione iniziale ugello condivisa" +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Altezza Z Hop" -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Angolo più acuto" +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "La differenza di altezza durante l’esecuzione di uno Z Hop." -msgctxt "shell description" -msgid "Shell" -msgstr "Guscio" +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Z Hop dopo cambio estrusore" -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Il più breve" +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "Dopo il passaggio della macchina da un estrusore all’altro, il piano di stampa viene abbassato per creare uno spazio tra l’ugello e la stampa. In tal modo si previene il rilascio di materiale fuoriuscito dall’ugello sull’esterno di una stampa." -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Mostra varianti macchina" +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Z Hop dopo cambio altezza estrusore" -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Layer di supporto del bordo del rivestimento" +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "La differenza di altezza durante l'esecuzione di uno Z Hop dopo il cambio dell'estrusore." -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Spessore del supporto del bordo del rivestimento" +msgctxt "cooling label" +msgid "Cooling" +msgstr "Raffreddamento" -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Distanza prolunga rivestimento esterno" +msgctxt "cooling description" +msgid "Cooling" +msgstr "Raffreddamento" -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Sovrapposizione del rivestimento esterno" +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Abilitazione raffreddamento stampa" -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Percentuale di sovrapposizione del rivestimento esterno" +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "Abilita le ventole di raffreddamento durante la stampa. Le ventole migliorano la qualità di stampa sugli strati con tempi per strato più brevi e ponti/sbalzi." -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Larghezza rimozione rivestimento" +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Velocità della ventola" -msgctxt "min_skin_width_for_expansion description" -msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." -msgstr "Le aree del rivestimento esterno inferiori a questa non vengono prolungate. In tal modo si evita di prolungare le aree del rivestimento esterno strette che vengono create quando la superficie del modello presenta un’inclinazione quasi verticale." +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "Indica la velocità di rotazione delle ventole di raffreddamento stampa." -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "Salto di una ogni N linee di collegamento per rendere la struttura del supporto più facile da rompere." +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "Velocità regolare della ventola" -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "Salto di alcuni collegamenti per rendere la struttura del supporto più facile da rompere. Questa impostazione è applicabile alla configurazione a zig-zag del riempimento del supporto." +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "Indica la velocità alla quale ruotano le ventole prima di raggiungere la soglia. Quando uno strato viene stampato a una velocità superiore alla soglia, la velocità della ventola tende gradualmente verso la velocità massima della ventola." -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Skirt" +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Velocità massima della ventola" -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Distanza dello skirt" +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "Indica la velocità di rotazione della ventola al tempo minimo per strato. La velocità della ventola aumenta gradualmente tra la velocità regolare della ventola e la velocità massima della ventola quando viene raggiunta la soglia." -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "Altezza dello skirt" +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "Soglia velocità regolare/massima della ventola" -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Numero di linee dello skirt" +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "Indica il tempo per strato che definisce la soglia tra la velocità regolare e quella massima della ventola. Gli strati che vengono stampati a una velocità inferiore a questo valore utilizzano una velocità regolare della ventola. Per gli strati stampati più velocemente la velocità della ventola aumenta gradualmente verso la velocità massima della ventola." -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Accelerazione skirt/brim" +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Velocità iniziale della ventola" -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Estrusore skirt/brim" +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "La velocità di rotazione della ventola all’inizio della stampa. Negli strati successivi la velocità della ventola aumenta gradualmente da zero fino allo strato corrispondente alla velocità regolare in altezza." -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Flusso dello skirt/brim" +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Velocità regolare della ventola in altezza" -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Jerk dello skirt/brim" +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "Indica l’altezza alla quale la ventola ruota alla velocità regolare. Agli strati stampati a velocità inferiore la velocità della ventola aumenta gradualmente dalla velocità iniziale a quella regolare." -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Larghezza delle linee dello skirt/brim" +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Velocità regolare della ventola in corrispondenza dello strato" -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Lunghezza minima dello skirt/brim" +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "Indica lo strato in corrispondenza del quale la ventola ruota alla velocità regolare. Se è impostata la velocità regolare in altezza, questo valore viene calcolato e arrotondato a un numero intero." -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Velocità dello skirt/brim" +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Tempo minimo per strato" -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Tolleranza di sezionamento" +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "Indica il tempo minimo dedicato a uno strato. Questo forza la stampante a rallentare, per impiegare almeno il tempo impostato qui per uno strato. Questo consente il corretto raffreddamento del materiale stampato prima di procedere alla stampa dello strato successivo. La stampa degli strati potrebbe richiedere un tempo inferiore al minimo se la funzione Sollevamento della testina è disabilitata e se la velocità minima non viene rispettata." -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Velocità layer iniziale per dettagli di piccole dimensioni" +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Velocità minima" -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Lunghezza massima dettagli di piccole dimensioni" +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "Indica la velocità minima di stampa, a prescindere dal rallentamento per il tempo minimo per strato. Quando la stampante rallenta eccessivamente, la pressione nell’ugello risulta insufficiente con conseguente scarsa qualità di stampa." -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Velocità dettagli piccole dimensioni" +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Sollevamento della testina" -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Dimensione massima foro piccolo" +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "Quando viene raggiunta la velocità minima per il tempo minimo per strato, sollevare la testina dalla stampa e attendere il tempo supplementare fino al raggiungimento del valore per tempo minimo per strato." msgctxt "cool_min_temperature label" msgid "Small Layer Printing Temperature" msgstr "Temperatura di stampa per piccoli strati" -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "Piccola area inferiore/superiore sulla superficie" +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "Riduci gradualmente questa temperatura quando si stampa a velocità ridotte a causa del tempo di strato minimo." -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "Larghezza superiore e inferiore delle regioni più piccole" +msgctxt "support label" +msgid "Support" +msgstr "Supporto" -msgctxt "small_feature_speed_factor_0 description" -msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "I dettagli di piccole dimensioni sul primo layer saranno stampati a questa percentuale della velocità di stampa normale. Una stampa più lenta può aiutare in termini di adesione e precisione." +msgctxt "support description" +msgid "Support" +msgstr "Supporto" -msgctxt "small_feature_speed_factor description" -msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "I dettagli di piccole dimensioni verranno stampati a questa percentuale della velocità di stampa normale. Una stampa più lenta può aiutare in termini di adesione e precisione." +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Generazione supporto" -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "Le piccole aree superiori/inferiori vengono riempite con muri invece che con il modello superiore/inferiore predefinito. Questo aiuta a evitare movimenti a singhiozzo. Per impostazione predefinita, questa opzione è disattivata per il livello più alto (esposto all'aria) (vedere \"Piccola area inferiore/superiore sulla superficie\")." +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "Genera strutture per supportare le parti del modello a sbalzo. Senza queste strutture, queste parti collasserebbero durante la stampa." -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "Brim smart" +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Estrusore del supporto" -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Occultamento intelligente" +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "Il treno estrusore utilizzato per la stampa del supporto. Utilizzato nell’estrusione multipla." -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Levigazione dei profili con movimento spiraliforme" +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Estrusore riempimento del supporto" -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "Leviga i profili con movimento spiraliforme per ridurre la visibilità della giunzione Z (la giunzione Z dovrebbe essere appena visibile sulla stampa, ma rimane visibile nella visualizzazione a strati). Notare che la levigatura tende a rimuovere le bavature fini della superficie." +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "Il treno estrusore utilizzato per la stampa del riempimento del supporto. Utilizzato nell’estrusione multipla." -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "Qui è possibile compensare l’eventuale trafilamento di materiale che può verificarsi durante uno spostamento." +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Estrusore del supporto primo strato" -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "Qui è possibile compensare l’eventuale trafilamento di materiale che può verificarsi nel corso della pulitura durante il movimento." +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "Il treno estrusore utilizzato per la stampa del primo strato del riempimento del supporto. Utilizzato nell’estrusione multipla." -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Modalità speciali" +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Estrusore interfaccia del supporto" -msgctxt "speed description" -msgid "Speed" -msgstr "Velocità" +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "Treno estrusore utilizzato per la stampa delle parti superiori e inferiori del supporto. Utilizzato nell’estrusione multipla." -msgctxt "speed label" -msgid "Speed" -msgstr "Velocità" +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Estrusore parte superiore del supporto" -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "Velocità di spostamento dell'asse z durante il sollevamento (Hop)." +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "Treno estrusore utilizzato per la stampa delle parti superiori del supporto. Utilizzato nell’estrusione multipla." -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Stampa del contorno esterno con movimento spiraliforme" +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Estrusore parte inferiore del supporto" -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "Appiattisce il contorno esterno attorno all'asse Z con movimento spiraliforme. Questo crea un aumento costante lungo l'asse Z durante tutto il processo di stampa. Questa caratteristica consente di ottenere un modello pieno in una singola stampata con fondo solido. Questa caratteristica deve essere abilitata solo quando ciascuno strato contiene solo una singola parte." +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "Treno estrusore utilizzato per la stampa delle parti inferiori del supporto. Utilizzato nell’estrusione multipla." -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Temperatura di Standby" +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Struttura di supporto" -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "Codice G avvio" +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "Scegliere tra le tecniche disponibili per generare il supporto. Il supporto \"normale\" crea una struttura di supporto direttamente sotto le parti di sbalzo e rilascia tali aree direttamente al di sotto. La struttura \"ad albero\" crea delle ramificazioni verso le aree di sbalzo che supportano il modello sulle punte di tali ramificazioni consentendo a queste ultime di avanzare intorno al modello per supportarlo il più possibile dal piano di stampa." -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "Punto di partenza di ogni percorso nell'ambito di uno strato. Quando i percorsi in strati consecutivi iniziano nello stesso punto, sulla stampa può apparire una linea di giunzione verticale. Se si allineano in prossimità di una posizione specificata dall’utente, la linea di giunzione può essere rimossa più facilmente. Se disposti in modo casuale, le imprecisioni in corrispondenza dell'inizio del percorso saranno meno evidenti. Prendendo il percorso più breve la stampa sarà più veloce." +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Normale" -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Passi per millimetro (E)" +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Albero" -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Passi per millimetro (X)" +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "Angolo massimo dei rami" -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Passi per millimetro (Y)" +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "Angolo massimo dei rami mentre crescono intorno al modello. Usa un angolo inferiore per renderli più verticali e più stabili. Usa un angolo più alto per ottenere una portata maggiore." + +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "Diametro del ramo" + +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "Il diametro dei rami più sottili del supporto. I rami più spessi sono più resistenti. I rami verso la base avranno spessore maggiore." + +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "Diametro del tronco" + +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "Il diametro dei rami più larghi del supporto dell'albero. Un tronco più spesso è più robusto; un tronco più sottile occupa meno spazio sul piano di stampa." -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Passi per millimetro (Z)" +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "Angolo del diametro del ramo" -msgctxt "support description" -msgid "Support" -msgstr "Supporto" +msgctxt "support_tree_branch_diameter_angle description" +msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." +msgstr "L’angolo del diametro dei rami con il graduale ispessimento verso il fondo. Un angolo pari a 0 genera rami con spessore uniforme sull’intera lunghezza. Un angolo minimo può aumentare la stabilità del supporto ad albero." -msgctxt "support label" -msgid "Support" -msgstr "Supporto" +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Posizionamento supporto" -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Accelerazione supporto" +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "Contatto con il Piano di Stampa" -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Distanza inferiore supporto" +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "In Tutti i Possibili Punti" -msgctxt "support_bottom_wall_count label" -msgid "Support Bottom Wall Line Count" -msgstr "Numero delle linee perimetrali inferiori di supporto" +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "Angolo dei rami preferito" -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Numero di linee del brim del supporto" +msgctxt "support_tree_angle_slow description" +msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." +msgstr "L'angolo dei rami preferito, quando questi non devono evitare il modello. Usa un angolo inferiore per renderli più verticali e più stabili. Usa un angolo più alto per unire più velocemente i rami." -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Larghezza del brim del supporto" +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "Aumento del diametro sul modello" -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Conteggio linee di rottura supporto" +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "Il diametro massimo di un ramo che deve collegarsi al modello può aumentare unendosi ai rami che potrebbero raggiungere il piano di stampa. L'aumento riduce il tempo di stampa, ma aumenta l'area di supporto che poggia sul modello" -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Dimensioni frammento supporto" +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "Altezza minima rispetto al modello" -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "Densità del supporto" +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "Entità dell'altezza di un ramo se è posizionato sul modello. Previene piccoli blob di supporto. Questa impostazione viene ignorata quando un ramo supporta un tetto di supporto." -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Priorità distanza supporto" +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "Diametro dello strato iniziale" -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Estrusore del supporto" +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "Diametro che ogni ramo cerca di ottenere quando raggiunge la piastra di costruzione. Migliora l'adesione al piano." -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Accelerazione parte inferiore del supporto" +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "Densità del ramo" -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Densità parte inferiore del supporto" +msgctxt "support_tree_top_rate description" +msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "Consente di regolare la densità della struttura di supporto utilizzata per generare le punte dei rami. Un valore più alto si traduce in sbalzi migliori, ma i supporti saranno più difficili da rimuovere. Usa il tetto del supporto per valori molto alti o assicurati che la densità di supporto sia altrettanto alta nella parte superiore." -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Estrusore parte inferiore del supporto" +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "Diametro della punta" -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Flusso supporto inferiore" +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "Il diametro della parte superiore della punta dei rami dell'albero di supporto." -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Espansione orizzontale parti inferiori supporto" +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "Limite di portata dei rami" -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Jerk parte inferiore del supporto" +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "Limita la distanza di ogni ramo dal punto che supporta. Questo può rendere il supporto più robusto, ma aumenta la quantità di rami (e, di conseguenza, la quantità di materiale/il tempo di stampa)" -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Direzioni della larghezza della linea di supporto inferiore" +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "Intervallo ottimale dei rami" -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Distanza della linea di supporto inferiore" +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "Raccomandazione sull'entità della possibile distanza dei rami dai punti che supportano. I rami possono violare questo valore per raggiungere la loro destinazione (piano di stampa o parte piatta del modello). Ridurre questo valore può rendere il supporto più robusto, ma incrementa la quantità di rami (e, di conseguenza, la quantità di materiale/il tempo di stampa)" -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Larghezza della linea di supporto inferiore" +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "Preferenza di appoggio" -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Configurazione della parte inferiore del supporto" +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "Il posizionamento preferito delle strutture di supporto. Se le strutture non si possono collocare nella posizione preferita, saranno collocate altrove, anche se ciò significherà posizionarle sul modello." -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Velocità di stampa della parte inferiore del supporto" +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "Sul piano di stampa, quando possibile" -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Spessore parte inferiore del supporto" +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "Sul modello, se necessario" -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Flusso del supporto" +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Angolo di sbalzo del supporto" -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Espansione orizzontale supporto" +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "Indica l’angolo minimo degli sbalzi per i quali viene aggiunto il supporto. A un valore di 0 ° tutti gli sbalzi vengono supportati, con un valore di 90 ° non sarà fornito alcun supporto." -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Accelerazione riempimento supporto" +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Configurazione del supporto" -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Estrusore riempimento del supporto" +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "Indica la configurazione delle strutture di supporto della stampa. Le diverse opzioni disponibili generano un supporto robusto o facile da rimuovere." -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Jerk riempimento supporto" +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Linee" -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Spessore dello strato di riempimento di supporto" +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Griglia" -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Direzione delle linee di riempimento supporto" +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Triangoli" -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Velocità di riempimento del supporto" +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Concentriche" -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Accelerazione interfaccia supporto" +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "Densità interfaccia supporto" +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Incrociata" -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Estrusore interfaccia del supporto" +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Flusso interfaccia di supporto" +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Numero delle linee perimetrali supporto" -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Espansione orizzontale interfaccia supporto" +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Il numero di pareti circostanti il riempimento di supporto. L'aggiunta di una parete può rendere la stampa del supporto più affidabile ed in grado di supportare meglio gli sbalzi, ma aumenta il tempo di stampa ed il materiale utilizzato." -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Jerk interfaccia supporto" +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Numero delle linee perimetrali dell'interfaccia di supporto" -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Direzioni della linea dell'interfaccia di supporto" +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Il numero di pareti con cui circondare l'interfaccia di supporto. L'aggiunta di una parete può rendere la stampa di supporto più affidabile e può supportare meglio gli sbalzi, ma aumenta il tempo di stampa e il materiale utilizzato." -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Larghezza della linea dell’interfaccia di supporto" +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Numero delle linee perimetrali del tetto di supporto" -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Configurazione interfaccia supporto" +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Il numero di pareti con cui circondare il tetto dell'interfaccia di supporto. L'aggiunta di una parete può rendere la stampa di supporto più affidabile e può supportare meglio gli sbalzi, ma aumenta il tempo di stampa e il materiale utilizzato." + +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "Numero delle linee perimetrali inferiori di supporto" -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "Priorità interfaccia di supporto" +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Il numero di pareti con cui circondare il pavimento dell'interfaccia di supporto. L'aggiunta di una parete può rendere la stampa di supporto più affidabile e può supportare meglio gli sbalzi, ma aumenta il tempo di stampa e il materiale utilizzato." -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Velocità interfaccia supporto" +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Collegamento linee supporto" -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Spessore interfaccia supporto" +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "Collega le estremità delle linee del supporto. L’abilitazione di questa impostazione consente di ottenere un supporto più robusto e ridurre la sottoestrusione, ma si utilizza più materiale." -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "Numero delle linee perimetrali dell'interfaccia di supporto" +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Collegamento Zig Zag supporto" -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Jerk supporto" +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "Collega i ZigZag. Questo aumenta la forza della struttura di supporto a zig zag." -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "Distanza giunzione supporto" +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "Densità del supporto" + +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Regola la densità della struttura di supporto. Un valore superiore genera sbalzi migliori, ma i supporti sono più difficili da rimuovere." msgctxt "support_line_distance label" msgid "Support Line Distance" msgstr "Distanza tra le linee del supporto" -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Larghezza delle linee di supporto" +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "Indica la distanza tra le linee della struttura di supporto stampata. Questa impostazione viene calcolata mediante la densità del supporto." -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Supporto maglia" +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "Distanza tra le linee del supporto dello strato iniziale" -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Angolo di sbalzo del supporto" +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "Indica la distanza tra le linee della struttura di supporto dello strato iniziale stampato. Questa impostazione viene calcolata mediante la densità del supporto." -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Configurazione del supporto" +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Direzione delle linee di riempimento supporto" -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Posizionamento supporto" +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "Elenco di direzioni linee intere da utilizzare. Gli elementi dall'elenco sono utilizzati in sequenza con il progredire dei layers e, al raggiungimento della fine dell'elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l'intero elenco è racchiuso tra parentesi quadre. L’elenco predefinito è vuoto, vale a dire che utilizza l'angolo predefinito di 0 gradi." -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Accelerazione parte superiore del supporto" +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Abilitazione brim del supporto" -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Densità parte superiore (tetto) del supporto" +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "Genera un brim entro le zone di riempimento del supporto del primo strato. Questo brim viene stampato al di sotto del supporto, non intorno ad esso. L’abilitazione di questa impostazione aumenta l’adesione del supporto al piano di stampa." -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Estrusore parte superiore del supporto" +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Larghezza del brim del supporto" -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Flusso supporto superiore" +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "Corrisponde alla larghezza del brim da stampare al di sotto del supporto. Un brim più largo migliora l’adesione al piano di stampa, ma utilizza una maggiore quantità di materiale." -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Espansione orizzontale parti superiori supporto" +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Numero di linee del brim del supporto" -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Jerk parte superiore del supporto" +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "Corrisponde al numero di linee utilizzate per il brim del supporto. Più linee brim migliorano l’adesione al piano di stampa, ma utilizzano una maggiore quantità di materiale." -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Direzioni delle linee di supporto superiori" +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Distanza Z supporto" -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Distanza tra le linee della parte superiore (tetto) del supporto" +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "Distanza dalla parte superiore/inferiore della struttura di supporto alla stampa. Questo spazio permette di rimuovere i supporti dopo la stampa del modello. L'ultimo strato di supporto sotto il modello potrebbe essere una frazione degli strati regolari." -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Larghezza delle linee di supporto superiori" +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Distanza superiore supporto" -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Configurazione della parte superiore (tetto) del supporto" +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "È la distanza tra la parte superiore del supporto e la stampa." -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Velocità di stampa della parte superiore (tetto) del supporto" +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Distanza inferiore supporto" -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "Spessore parte superiore (tetto) del supporto" +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "Distanza dalla stampa alla base del supporto. Notare che viene arrotondata all'altezza del layer successivo." -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "Numero delle linee perimetrali del tetto di supporto" +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "Distanza X/Y supporto" -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Velocità di stampa del supporto" +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "Indica la distanza della struttura di supporto dalla stampa, nelle direzioni X/Y." + +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Priorità distanza supporto" + +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "Indica se la distanza X/Y del supporto esclude la distanza Z del supporto o viceversa. Quando X/Y esclude Z, la distanza X/Y può allontanare il supporto dal modello, influenzando l’effettiva distanza Z allo sbalzo. È possibile disabilitare questa funzione non applicando la distanza X/Y intorno agli sbalzi." + +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y esclude Z" + +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z esclude X/Y" + +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Distanza X/Y supporto minima" + +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "Indica la distanza della struttura di supporto dallo sbalzo, nelle direzioni X/Y." msgctxt "support_bottom_stair_step_height label" msgid "Support Stair Step Height" msgstr "Altezza gradini supporto" +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "Altezza dei gradini della parte inferiore del supporto a scala che appoggia sul modello. Un valore inferiore rende il supporto più difficile da rimuovere, ma valori troppo elevati possono rendere instabili le strutture di supporto. Impostare a zero per disabilitare il profilo a scala." + msgctxt "support_bottom_stair_step_width label" msgid "Support Stair Step Maximum Width" msgstr "Larghezza massima gradino supporto" +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "Larghezza massima dei gradini della parte inferiore del supporto a scala che appoggia sul modello. Un valore inferiore rende il supporto più difficile da rimuovere, ma valori troppo elevati possono rendere instabili le strutture di supporto." + msgctxt "support_bottom_stair_step_min_slope label" msgid "Support Stair Step Minimum Slope Angle" msgstr "Angolo di pendenza minimo gradini supporto" -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Struttura di supporto" +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "La pendenza minima dell'area alla quale ha effetto la creazione dei gradini. Valori bassi dovrebbero semplificare la rimozione del supporto sulle pendenze meno profonde, ma in realtà dei valori bassi possono generare risultati molto irrazionali sulle altre parti del modello." -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Distanza superiore supporto" +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "Distanza giunzione supporto" -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Numero delle linee perimetrali supporto" +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "La distanza massima tra le strutture di supporto nelle direzioni X/Y. Quando la distanza tra le strutture è inferiore al valore indicato, le strutture convergono in una unica." -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "Distanza X/Y supporto" +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Espansione orizzontale supporto" -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Distanza Z supporto" +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "È l'entità di offset (estensione dello strato) applicato a tutti i poligoni di supporto in ciascuno strato. I valori positivi possono appianare le aree di supporto, accrescendone la robustezza." + +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Spessore dello strato di riempimento di supporto" + +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "Indica lo spessore per strato del materiale di riempimento del supporto. Questo valore deve sempre essere un multiplo dell’altezza dello strato e in caso contrario viene arrotondato." + +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Fasi di riempimento graduale del supporto" + +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "Indica il numero di volte per dimezzare la densità del riempimento quando si va al di sotto delle superfici superiori. Le aree più vicine alle superfici superiori avranno una densità maggiore, fino alla densità del riempimento." + +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Altezza fasi di riempimento graduale del supporto" + +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "Indica l’altezza di riempimento del supporto di una data densità prima di passare a metà densità." + +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Area minima supporto" + +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "Dimensioni minime area per i poligoni del supporto. I poligoni con un’area inferiore a questo valore non verranno generati." + +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Abilitazione interfaccia supporto" + +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "Genera un’interfaccia densa tra il modello e il supporto. Questo crea un rivestimento esterno sulla sommità del supporto su cui viene stampato il modello e al fondo del supporto, dove appoggia sul modello." -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "Linee di supporto preferite" +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Abilitazione irrobustimento parte superiore (tetto) del supporto" -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "Supporto preferito" +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "Genera una spessa lastra di materiale tra la parte superiore del supporto e il modello. Questo crea un rivestimento tra modello e supporto." -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Velocità della ventola del rivestimento esterno supportato" +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Abilitazione parte inferiore supporto" -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Superficie" +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "Genera una spessa lastra di materiale tra la parte inferiore del supporto e il modello. Questo crea un rivestimento tra modello e supporto." -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "Energia superficiale" +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Spessore interfaccia supporto" -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Modalità superficie" +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "Indica lo spessore dell’interfaccia del supporto dove tocca il modello nella parte inferiore o in quella superiore." -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "Tendenza di adesione superficiale." +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "Spessore parte superiore (tetto) del supporto" -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Energia superficiale." +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "Lo spessore delle parti superiori del supporto. Questo controlla la quantità di strati fitti alla sommità del supporto su cui appoggia il modello." -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "Scambia l'ordine di stampa della prima e seconda linea più interna del brim per agevolarne la rimozione." +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Spessore parte inferiore del supporto" -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "Selezionare quali volumi di intersezione maglie appartengono a ciascuno strato, in modo che le maglie sovrapposte diventino interconnesse. Disattivando questa funzione una delle maglie ottiene tutto il volume della sovrapposizione, che viene rimosso dalle altre maglie." +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "Indica lo spessore delle parti inferiori del supporto. Questo controlla il numero di strati fitti stampati sulla sommità dei punti di un modello su cui appoggia un supporto." -msgctxt "adaptive_layer_height_threshold description" -msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." -msgstr "Distanza orizzontale target tra due layer adiacenti. Riducendo questa impostazione, i layer più sottili verranno utilizzati per avvicinare i margini dei layer." +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Densità interfaccia supporto" -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "La coordinata X della posizione in prossimità della quale si trova la parte per avviare la stampa di ciascuno strato." +msgctxt "support_interface_density description" +msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Regola la densità delle parti superiori e inferiori della struttura di supporto. Un valore superiore genera sbalzi migliori, ma i supporti sono più difficili da rimuovere." -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "La coordinata X della posizione in prossimità della quale si innesca all’avvio della stampa di ciascuna parte in uno strato." +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Densità parte superiore (tetto) del supporto" -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "La coordinata X della posizione in cui l’ugello si innesca all’avvio della stampa." +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Densità delle parti superiori della struttura di supporto. Un valore superiore genera sbalzi migliori, ma i supporti sono più difficili da rimuovere." -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "La coordinata Y della posizione in prossimità della quale si trova la parte per avviare la stampa di ciascuno strato." +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Distanza tra le linee della parte superiore (tetto) del supporto" -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "La coordinata Y della posizione in prossimità della quale si innesca all’avvio della stampa di ciascuna parte in uno strato." +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "Distanza tra le linee della parte superiore del supporto stampate. Questa impostazione viene calcolata dalla densità della parte superiore del supporto, ma può essere regolata separatamente." -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "La coordinata Y della posizione in cui l’ugello si innesca all’avvio della stampa." +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Densità parte inferiore del supporto" -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Indica la coordinata Z della posizione in cui l’ugello si innesca all’avvio della stampa." +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "Densità delle parti inferiori della struttura di supporto. Un valore più alto comporta una migliore adesione del supporto alla parte superiore del modello." -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "Indica l’accelerazione durante la stampa dello strato iniziale." +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Distanza della linea di supporto inferiore" -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "Indica l’accelerazione dello strato iniziale." +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "Distanza tra le linee della parte inferiore del supporto stampate. Questa impostazione viene calcolata dalla densità della parte inferiore del supporto, ma può essere regolata separatamente." -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Indica l’accelerazione degli spostamenti dello strato iniziale." +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Configurazione interfaccia supporto" -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Indica l’accelerazione degli spostamenti dello strato iniziale." +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "È la configurazione (o pattern) con cui viene stampata l’interfaccia del supporto con il modello." -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "Indica l’accelerazione alla quale vengono stampate tutte le pareti interne." +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Linee" -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "L’accelerazione con cui viene stampato il riempimento." +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Griglia" -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "L’accelerazione con cui viene effettuata la stiratura." +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Triangoli" -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "L’accelerazione con cui avviene la stampa." +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Concentriche" -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "Indica l’accelerazione con cui viene stampato lo strato di base del raft." +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "Accelerazione alla quale vengono stampate le parti inferiori del supporto. La stampa ad una accelerazione inferiore può migliorare l'adesione del supporto nella parte superiore del modello." +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Configurazione della parte superiore (tetto) del supporto" -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "Indica l’accelerazione con cui viene stampato il riempimento del supporto." +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "È la configurazione (o pattern) con cui vengono stampate le parti superiori del supporto." -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "Indica l’accelerazione con cui viene stampato lo strato intermedio del raft." +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Linee" -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "Indica l’accelerazione alla quale vengono stampate le pareti più esterne." +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Griglia" -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "Indica l’accelerazione con cui viene stampata la torre di innesco." +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Triangoli" -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "Indica l’accelerazione con cui viene stampato il raft." +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Concentriche" -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "Accelerazione alla quale vengono stampate le parti superiori e inferiori del supporto. La loro stampa ad un'accelerazione inferiore può migliorare la qualità dello sbalzo." +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "Accelerazione alla quale vengono stampate le parti superiori del supporto. La loro stampa ad un'accelerazione inferiore può migliorare la qualità dello sbalzo." +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Configurazione della parte inferiore del supporto" -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "Indica l’accelerazione alla quale sono stampati lo skirt ed il brim. Normalmente questa operazione viene svolta all’accelerazione dello strato iniziale, ma a volte è possibile che si desideri stampare lo skirt o il brim ad un’accelerazione diversa." +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "È la configurazione (o pattern) con cui vengono stampate le parti inferiori del supporto." -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "Indica l’accelerazione con cui viene stampata la struttura di supporto." +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Linee" -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "Indica l’accelerazione alla quale vengono stampati gli strati superiori del raft." +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Griglia" -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "L'accelerazione con cui vengono stampate le pareti interne della superficie superiore." +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Triangoli" -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "L'accelerazione con cui vengono stampate le pareti più esterne della superficie superiore." +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concentriche" -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "Indica l’accelerazione alla quale vengono stampate le pareti." +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "Indica l'accelerazione alla quale vengono stampati gli strati rivestimento superficie superiore." +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Area minima interfaccia supporto" + +msgctxt "minimum_interface_area description" +msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Dimensione minima dell'area per i poligoni dell'interfaccia di supporto. I poligoni con un'area più piccola rispetto a questo valore saranno stampati come supporto normale." -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "Indica l’accelerazione alla quale vengono stampati gli strati superiore/inferiore." +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Area minima parti superiori supporto" -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "Indica l’accelerazione alla quale vengono effettuati gli spostamenti." +msgctxt "minimum_roof_area description" +msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Dimensione minima dell'area per le parti superiori del supporto. I poligoni con un'area più piccola rispetto a questo valore saranno stampati come supporto normale." -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "Quantità di materiale, relativo ad una normale linea del rivestimento, da estrudere durante la stiratura. Mantenere l'ugello pieno aiuta a riempire alcune delle fessure presenti sulla superficie superiore, ma una quantità eccessiva comporta un'estrusione eccessiva con conseguente puntinatura sui lati della superficie." +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Area minima parti inferiori supporto" -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "Indica la quantità di sovrapposizione tra il riempimento e le pareti come percentuale della larghezza della linea di riempimento. Una leggera sovrapposizione consente il saldo collegamento delle pareti al riempimento." +msgctxt "minimum_bottom_area description" +msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Dimensione minima dell'area per le parti inferiori del supporto. I poligoni con un'area più piccola rispetto a questo valore saranno stampati come supporto normale." -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "Indica la quantità di sovrapposizione tra il riempimento e le pareti. Una leggera sovrapposizione consente il saldo collegamento delle pareti al riempimento." +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Espansione orizzontale interfaccia supporto" -msgctxt "switch_extruder_retraction_amount description" -msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." -msgstr "Indica il valore di retrazione alla commutazione degli estrusori. Impostato a 0 per nessuna retrazione. Questo valore generalmente dovrebbe essere lo stesso della lunghezza della zona di riscaldamento." +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "Entità di offset applicato ai poligoni di interfaccia del supporto." -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "L’angolo tra il piano orizzontale e la parte conica esattamente sopra la punta dell’ugello." +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Espansione orizzontale parti superiori supporto" -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "L’angolo della parte superiore di una torre. Un valore superiore genera parti superiori appuntite, un valore inferiore, parti superiori piatte." +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "Entità di offset applicato alle parti superiori del supporto." -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "Angolo dello sbalzo delle pareti esterne creato per il modello. 0° rende il guscio esterno dello stampo verticale, mentre 90° fa in modo che il guscio esterno dello stampo segua il profilo del modello." +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Espansione orizzontale parti inferiori supporto" -msgctxt "support_tree_branch_diameter_angle description" -msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." -msgstr "L’angolo del diametro dei rami con il graduale ispessimento verso il fondo. Un angolo pari a 0 genera rami con spessore uniforme sull’intera lunghezza. Un angolo minimo può aumentare la stabilità del supporto ad albero." +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "Entità di offset applicato alle parti inferiori del supporto." -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "È l'angolo di inclinazione del supporto conico. Con 0 gradi verticale e 90 gradi orizzontale. Angoli inferiori rendono il supporto più robusto, ma richiedono una maggiore quantità di materiale. Angoli negativi rendono la base del supporto più larga rispetto alla parte superiore." +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "Priorità interfaccia di supporto" -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "Indica la densità media dei punti introdotti su ciascun poligono in uno strato. Si noti che i punti originali del poligono vengono scartati, perciò una bassa densità si traduce in una riduzione della risoluzione." +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "Come interagiranno l'interfaccia di supporto e il supporto quando si sovrappongono. Attualmente implementato solo per il tetto di supporto." -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "Indica la distanza media tra i punti casuali introdotti su ciascun segmento di linea. Si noti che i punti originali del poligono vengono scartati, perciò un elevato livello di regolarità si traduce in una riduzione della risoluzione. Questo valore deve essere superiore alla metà dello spessore del rivestimento incoerente (fuzzy)." +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "Supporto preferito" -msgctxt "material_brand description" -msgid "The brand of material used." -msgstr "" +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "Interfaccia preferita" -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "Indica l’accelerazione predefinita del movimento della testina di stampa." +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "Linee di supporto preferite" -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "La temperatura preimpostata utilizzata per la stampa. Deve essere la temperatura “base” di un materiale. Tutte le altre temperature di stampa devono usare scostamenti basati su questo valore" +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "Linee di interfaccia preferite" -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "La temperatura preimpostata utilizzata per il piano di stampa. Deve essere la temperatura “base” di un piano di stampa. Tutte le altre temperature di stampa devono usare scostamenti basati su questo valore" +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "Entrambi si sovrappongono" -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "La densità dello strato del rivestimento esterno ponte. I valori inferiori a 100 aumentano la distanza tra le linee del rivestimento esterno." +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Direzioni della linea dell'interfaccia di supporto" -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "Densità delle parti inferiori della struttura di supporto. Un valore più alto comporta una migliore adesione del supporto alla parte superiore del modello." +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Elenco di direzioni linee intere da utilizzare. Gli elementi dall'elenco sono utilizzati in sequenza con il progredire dei layers e, al raggiungimento della fine dell'elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l'intero elenco è racchiuso tra parentesi quadre. L'elenco predefinito è vuoto, vale a dire che utilizza gli angoli predefiniti (alterna tra 45 e 135 gradi se le interfacce sono abbastanza spesse oppure 90 gradi)." -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Densità delle parti superiori della struttura di supporto. Un valore superiore genera sbalzi migliori, ma i supporti sono più difficili da rimuovere." +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Direzioni delle linee di supporto superiori" -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "La densità del secondo strato del rivestimento esterno ponte. I valori inferiori a 100 aumentano la distanza tra le linee del rivestimento esterno." +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Elenco di direzioni linee intere da utilizzare. Gli elementi dall'elenco sono utilizzati in sequenza con il progredire dei layers e, al raggiungimento della fine dell'elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l'intero elenco è racchiuso tra parentesi quadre. L'elenco predefinito è vuoto, vale a dire che utilizza gli angoli predefiniti (alterna tra 45 e 135 gradi se le interfacce sono abbastanza spesse oppure 90 gradi)." -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "La densità del terzo strato del rivestimento esterno ponte. I valori inferiori a 100 aumentano la distanza tra le linee del rivestimento esterno." +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Direzioni della larghezza della linea di supporto inferiore" -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "La profondità (direzione Y) dell’area stampabile." +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Elenco di direzioni linee intere da utilizzare. Gli elementi dall'elenco sono utilizzati in sequenza con il progredire dei layers e, al raggiungimento della fine dell'elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l'intero elenco è racchiuso tra parentesi quadre. L'elenco predefinito è vuoto, vale a dire che utilizza gli angoli predefiniti (alterna tra 45 e 135 gradi se le interfacce sono abbastanza spesse oppure 90 gradi)." -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "Corrisponde al diametro di una torre speciale." +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Override velocità della ventola" -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "Il diametro dei rami più sottili del supporto. I rami più spessi sono più resistenti. I rami verso la base avranno spessore maggiore." +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "Quando abilitata, la velocità della ventola di raffreddamento stampa viene modificata per le zone del rivestimento esterno subito sopra il supporto." -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "Il diametro della parte superiore della punta dei rami dell'albero di supporto." +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Velocità della ventola del rivestimento esterno supportato" -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "Il diametro della ruota che guida il materiale nel tirafilo." +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "Percentuale della velocità della ventola da usare quando si stampano le zone del rivestimento esterno subito sopra il supporto. L’uso di una velocità ventola elevata può facilitare la rimozione del supporto." -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "Il diametro dei rami più larghi del supporto dell'albero. Un tronco più spesso è più robusto; un tronco più sottile occupa meno spazio sul piano di stampa." +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Utilizzo delle torri" -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "La differenza in altezza dello strato successivo rispetto al precedente." +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "Utilizza speciali torri per il supporto di piccolissime aree di sbalzo. Queste torri hanno un diametro maggiore rispetto a quello dell'area che supportano. In prossimità dello sbalzo il diametro delle torri diminuisce, formando un 'tetto'." -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "Distanza tra le linee di stiratura." +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Diametro della torre" -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "La distanza tra l’ugello e le parti già stampate quando si effettua lo spostamento con aggiramento." +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "Corrisponde al diametro di una torre speciale." -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "Indica la distanza tra le linee che costituiscono lo strato di base del raft. Un'ampia spaziatura favorisce la rimozione del raft dal piano di stampa." +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Diametro supportato dalla torre" -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "Indica la distanza fra le linee dello strato intermedio del raft. La spaziatura dello strato intermedio deve essere abbastanza ampia, ma al tempo stesso sufficientemente fitta da sostenere gli strati superiori del raft." +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "È il diametro massimo nelle direzioni X/Y di una piccola area, che deve essere sostenuta da una torre speciale." -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "Indica la distanza tra le linee che costituiscono la maglia superiore del raft. La distanza deve essere uguale alla larghezza delle linee, in modo tale da ottenere una superficie solida." +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Angolazione della parte superiore (tetto) della torre" -msgctxt "prime_tower_raft_base_line_spacing description" -msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "La distanza tra le linee del radeau per l'unico strato di radeau della torre di primerizzazione. Un ampio interlinea facilita la rimozione del radeau dalla piastra di costruzione." +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "L’angolo della parte superiore di una torre. Un valore superiore genera parti superiori appuntite, un valore inferiore, parti superiori piatte." -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "La distanza dal confine tra i modelli per generare una struttura a incastro, misurata in celle. Un numero troppo basso di celle determina una scarsa adesione." +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Maglia supporto di discesa" -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "Indica la distanza tra il modello e la linea di estremità del brim. Un brim di maggiore dimensione aderirà meglio al piano di stampa, ma con riduzione dell'area di stampa." +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "Rappresenta il supporto ovunque sotto la maglia di supporto, in modo che in questa non vi siano punti a sbalzo." -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "La distanza dall'esterno di un modello in cui non verranno generate strutture a incastro, misurate in celle." +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "La scena è dotata di maglie di supporto" -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "La distanza dalla punta dell’ugello in cui il calore dall’ugello viene trasferito al filamento." +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "Nella scena sono presenti maglie di supporto. Questa impostazione è controllata da Cura." -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "Distanza per cui i rivestimenti inferiori si estendono nel riempimento. Valori maggiori migliorano l'aderenza del rivestimento al riempimento e consentono una migliore aderenza al rivestimento delle pareti dello strato inferiore. Valori minori consentono di risparmiare sul materiale utilizzato." +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Adesione piano di stampa" -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "Distanza per cui i rivestimenti si estendono nel riempimento. Valori maggiori migliorano l'aderenza del rivestimento al riempimento e consentono una migliore aderenza al rivestimento delle pareti degli strati adiacenti. Valori minori consentono di risparmiare sul materiale utilizzato." +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Adesione" -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "Distanza per cui i rivestimenti superiori si estendono nel riempimento. Valori maggiori migliorano l'aderenza del rivestimento al riempimento e consentono una migliore aderenza al rivestimento delle pareti dello strato superiore. Valori minori consentono di risparmiare sul materiale utilizzato." +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "Abilitazione blob di innesco" + +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "Eventuale innesco del filamento con un blob prima della stampa. L'attivazione di questa impostazione garantisce che l'estrusore avrà il materiale pronto all'ugello prima della stampa. Anche la stampa Brim o Skirt può funzionare da innesco, nel qual caso la disabilitazione di questa impostazione consente di risparmiare tempo." -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "La distanza dello spostamento longitudinale eseguito dalla testina attraverso lo spazzolino." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posizione X innesco estrusore" -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "I punti finali delle linee di riempimento vengono accorciati per risparmiare sul materiale. Questa impostazione è l'angolo di sbalzo dei punti finali di queste linee." +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "La coordinata X della posizione in cui l’ugello si innesca all’avvio della stampa." -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "Indica l'incremento di velocità di raffreddamento dell'ugello in fase di estrusione. Lo stesso valore viene usato per indicare la perdita di velocità di riscaldamento durante il riscaldamento in fase di estrusione." +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posizione Y innesco estrusore" -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "Il treno estrusore utilizzato per la stampa del primo strato del riempimento del supporto. Utilizzato nell’estrusione multipla." +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "La coordinata Y della posizione in cui l’ugello si innesca all’avvio della stampa." -msgctxt "raft_base_extruder_nr description" -msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." -msgstr "Il treno estrusore utilizzato per la stampa del primo strato del raft. Utilizzato nell’estrusione multipla." +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Tipo di adesione piano di stampa" -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "Treno estrusore utilizzato per la stampa delle parti inferiori del supporto. Utilizzato nell’estrusione multipla." +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "Sono previste diverse opzioni che consentono di migliorare l'applicazione dello strato iniziale dell’estrusione e migliorano l’adesione. Il brim aggiunge un'area piana a singolo strato attorno alla base del modello, per evitare deformazioni. Il raft aggiunge un fitto reticolato con un tetto al di sotto del modello. Lo skirt è una linea stampata attorno al modello, ma non collegata al modello." -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "Il treno estrusore utilizzato per la stampa del riempimento del supporto. Utilizzato nell’estrusione multipla." +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Skirt" -msgctxt "raft_interface_extruder_nr description" -msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." -msgstr "Il treno estrusore utilizzato per la stampa dello strato intermedio del raft. Utilizzato nell’estrusione multipla." +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Brim" -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "Treno estrusore utilizzato per la stampa delle parti superiori e inferiori del supporto. Utilizzato nell’estrusione multipla." +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Raft" -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "Treno estrusore utilizzato per la stampa delle parti superiori del supporto. Utilizzato nell’estrusione multipla." +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Nessuno" -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "Il treno estrusore utilizzato per la stampa dello skirt o del brim. Utilizzato nell’estrusione multipla." +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Estrusore adesione piano di stampa" msgctxt "adhesion_extruder_nr description" msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." msgstr "Il treno estrusore utilizzato per la stampa dello skirt/brim/raft. Utilizzato nell’estrusione multipla." -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "Il treno estrusore utilizzato per la stampa del supporto. Utilizzato nell’estrusione multipla." - -msgctxt "raft_surface_extruder_nr description" -msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." -msgstr "Il treno estrusore utilizzato per la stampa degli strati superiori del raft. Utilizzato nell’estrusione multipla." - -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "Treno estrusore utilizzato per stampare il riempimento. Si utilizza nell'estrusione multipla." - -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "Treno estrusore utilizzato per stampare le pareti interne. Si utilizza nell'estrusione multipla." +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Estrusore skirt/brim" -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "Treno estrusore utilizzato per stampare la parete esterna. Si utilizza nell'estrusione multipla." +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "Il treno estrusore utilizzato per la stampa dello skirt o del brim. Utilizzato nell’estrusione multipla." -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "Treno estrusore utilizzato per stampare il rivestimento superiore e quello inferiore. Si utilizza nell'estrusione multipla." +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Estrusore della base del raft" -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "Treno estrusore utilizzato per stampare il rivestimento più in alto. Si utilizza nell'estrusione multipla." +msgctxt "raft_base_extruder_nr description" +msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." +msgstr "Il treno estrusore utilizzato per la stampa del primo strato del raft. Utilizzato nell’estrusione multipla." -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "Treno estrusore utilizzato per stampare le pareti. Si utilizza nell'estrusione multipla." +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Estrusore intermedio del raft" -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "Indica la velocità di rotazione della ventola per lo strato di base del raft." +msgctxt "raft_interface_extruder_nr description" +msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." +msgstr "Il treno estrusore utilizzato per la stampa dello strato intermedio del raft. Utilizzato nell’estrusione multipla." -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "Indica la velocità di rotazione della ventola per gli strati intermedi del raft." +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Estrusore superiore del raft" -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "Indica la velocità di rotazione della ventola per il raft." +msgctxt "raft_surface_extruder_nr description" +msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." +msgstr "Il treno estrusore utilizzato per la stampa degli strati superiori del raft. Utilizzato nell’estrusione multipla." -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "Indica la velocità di rotazione della ventola per gli strati superiori del raft." +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Numero di linee dello skirt" -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "La posizione del file di un'immagine i cui i valori di luminosità determinano la densità minima nella posizione corrispondente nel riempimento della stampa." +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "Più linee di skirt contribuiscono a migliorare l'avvio dell'estrusione per modelli di piccole dimensioni. L'impostazione di questo valore a 0 disattiverà la funzione skirt." -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "La posizione del file di un'immagine i cui i valori di luminosità determinano la densità minima nella posizione corrispondente nel supporto." +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "Altezza dello skirt" -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "I primi strati vengono stampati più lentamente rispetto al resto del modello, per ottenere una migliore adesione al piano di stampa ed ottimizzare nel complesso la percentuale di successo delle stampe. La velocità aumenta gradualmente nel corso di esecuzione degli strati successivi." +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "Stampare la linea più interna dello skirt con più strati facilita la rimozione dello skirt stesso." -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "È l'interstizio tra lo strato di raft finale ed il primo strato del modello. Solo il primo strato viene sollevato di questo valore per ridurre l'adesione fra lo strato di raft e il modello. Ciò rende più facile rimuovere il raft." +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Distanza dello skirt" -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "L’altezza (direzione Z) dell’area stampabile." +msgctxt "skirt_gap description" +msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "Indica la distanza orizzontale tra lo skirt ed il primo strato della stampa." +"Questa è la distanza minima. Più linee di skirt aumenteranno tale distanza." -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "Altezza sopra le parti orizzontali del modello che stampano lo stampo." +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Lunghezza minima dello skirt/brim" -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "Indica l’altezza alla quale la ventola ruota alla velocità regolare. Agli strati stampati a velocità inferiore la velocità della ventola aumenta gradualmente dalla velocità iniziale a quella regolare." +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "Indica la lunghezza minima dello skirt o del brim. Se tale lunghezza minima non viene raggiunta da tutte le linee skirt o brim insieme, saranno aggiunte più linee di skirt o brim fino a raggiungere la lunghezza minima. Nota: se il valore è impostato a 0, questa funzione viene ignorata." -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "La differenza di altezza tra la punta dell’ugello e il sistema gantry (assy X e Y)." +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Larghezza del brim" -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "La differenza di altezza tra la punta dell’ugello e la parte inferiore della testina di stampa." +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "Indica la distanza tra il modello e la linea di estremità del brim. Un brim di maggiore dimensione aderirà meglio al piano di stampa, ma con riduzione dell'area di stampa." -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "La differenza di altezza durante l'esecuzione di uno Z Hop dopo il cambio dell'estrusore." +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Numero di linee del brim" -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "La differenza di altezza durante l’esecuzione di uno Z Hop." +msgctxt "brim_line_count description" +msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." +msgstr "Corrisponde al numero di linee utilizzate per un brim. Più linee brim migliorano l’adesione al piano di stampa, ma con riduzione dell'area di stampa." -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "La differenza di altezza durante l’esecuzione di uno Z Hop." +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Distanza del Brim" -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "Indica l’altezza di ciascuno strato in mm. Valori più elevati generano stampe più rapide con risoluzione inferiore, valori più bassi generano stampe più lente con risoluzione superiore." +msgctxt "brim_gap description" +msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." +msgstr "Distanza orizzontale tra la linea del primo brim e il profilo del primo layer della stampa. Un piccolo interstizio può semplificare la rimozione del brim e allo stesso tempo fornire dei vantaggi termici." -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "Indica l’altezza di riempimento di una data densità prima di passare a metà densità." +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Brim in sostituzione del supporto" -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "Indica l’altezza di riempimento del supporto di una data densità prima di passare a metà densità." +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "Abilita la stampa del brim intorno al modello anche se quello spazio dovrebbe essere occupato dal supporto. Sostituisce alcune zone del primo strato del supporto con zone del brim." -msgctxt "interlocking_beam_layer_count description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "L'altezza delle travi della struttura a incastro, misurata in numero di strati. Un numero minore di strati è più forte, ma più soggetto a difetti." +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "Posizione del brim" -msgctxt "interlocking_orientation description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "L'altezza delle travi della struttura a incastro, misurata in numero di strati. Un numero minore di strati è più forte, ma più soggetto a difetti." +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "Stampa un brim all'esterno, all'interno o in entrambi i punti del modello. A seconda di quest'ultimo, tale scelta consente di ridurre la quantità di brim da rimuovere in seguito, garantendo al contempo una corretta adesione al piano di stampa." -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "Indica l’altezza dello strato iniziale in mm. Uno strato iniziale più spesso facilita l’adesione al piano di stampa." +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "Solo all'esterno" -msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "L'altezza della base della torre di primerizzazione. Aumentando questo valore si otterrà una torre di primerizzazione più robusta perché la base sarà più ampia. Se questa impostazione è troppo bassa, la torre di primerizzazione non avrà una base solida." +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "Solo all'interno" -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "Altezza dei gradini della parte inferiore del supporto a scala che appoggia sul modello. Un valore inferiore rende il supporto più difficile da rimuovere, ma valori troppo elevati possono rendere instabili le strutture di supporto. Impostare a zero per disabilitare il profilo a scala." +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "Ovunque" -msgctxt "brim_gap description" -msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." -msgstr "Distanza orizzontale tra la linea del primo brim e il profilo del primo layer della stampa. Un piccolo interstizio può semplificare la rimozione del brim e allo stesso tempo fornire dei vantaggi termici." +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "Margine per evitare il brim" -msgctxt "skirt_gap description" -msgid "" -"The horizontal distance between the skirt and the first layer of the print.\n" -"This is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "" -"Indica la distanza orizzontale tra lo skirt ed il primo strato della stampa.\n" -"Questa è la distanza minima. Più linee di skirt aumenteranno tale distanza." +msgctxt "brim_inside_margin description" +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "Un brim intorno a un modello potrebbe toccarne un altro in un punto non desiderato. Ciò rimuove tutto il brim entro questa distanza dai modelli che ne sono sprovvisti." -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "Le linee di riempimento vengono raddrizzate per risparmiare sul tempo di stampa. Questo è l'angolo di sbalzo massimo consentito sulla lunghezza della linea di riempimento." +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "Brim smart" -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "Il riempimento si sposta di questa distanza lungo l'asse X." +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "Scambia l'ordine di stampa della prima e seconda linea più interna del brim per agevolarne la rimozione." -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "Il riempimento si sposta di questa distanza lungo l'asse Y." +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Margine extra del raft" -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Il diametro interno dell’ugello. Modificare questa impostazione quando si utilizza una dimensione ugello non standard." +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Se è abilitata la funzione raft, questo valore indica di quanto il raft fuoriesce rispetto al perimetro esterno del modello. Aumentando questo margine si creerà un raft più robusto, utilizzando però più materiale e lasciando meno spazio per la stampa." -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "Indica il jerk con cui viene stampato lo strato di base del raft." +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "Margine extra della base del raft" -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "Indica il jerk con cui viene stampato lo strato intermedio del raft." +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Se la base del raft è abilitata, questa è l'area extra attorno al modello a cui viene assegnato un raft. Se si aumenta questo margine si crea un raft più robusto, utilizzando più materiale e lasciando meno spazio per la stampa." -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "Indica il jerk con cui viene stampato il raft." +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "Margine extra della parte centrale del raft" -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "Indica il jerk al quale vengono stampati gli strati superiori del raft." +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Se la parte centrale del raft è abilitata, questa è l'area extra attorno al modello a cui viene assegnato un raft. Se si aumenta questo margine si crea un raft più robusto, utilizzando più materiale e lasciando meno area per la stampa." -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "Larghezza massima delle aree di rivestimento inferiore che è possibile rimuovere. Ogni area di rivestimento più piccola di questo valore verrà eliminata. Questo può aiutare a limitare il tempo e il materiale necessari per la stampa del rivestimento inferiore sulle superfici inclinate del modello." +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "Margine extra della parte superiore del raft" -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "Larghezza massima delle aree di rivestimento che è possibile rimuovere. Ogni area di rivestimento più piccola di questo valore verrà eliminata. Questo può aiutare a limitare il tempo e il materiale necessari per la stampa del rivestimento superiore/inferiore sulle superfici inclinate del modello." +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Se la parte superiore del raft è abilitata, questa è l'area extra attorno al modello a cui viene assegnato un raft. Se si aumenta questo margine si crea un raft più robusto, utilizzando più materiale e lasciando meno area per la stampa." -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "Larghezza massima delle aree di rivestimento superiore che è possibile rimuovere. Ogni area di rivestimento più piccola di questo valore verrà eliminata. Questo può aiutare a limitare il tempo e il materiale necessari per la stampa del rivestimento superiore sulle superfici inclinate del modello." +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Rimuovi angoli interni raft" -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "Indica lo strato in corrispondenza del quale la ventola ruota alla velocità regolare. Se è impostata la velocità regolare in altezza, questo valore viene calcolato e arrotondato a un numero intero." +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Consente di rimuovere angoli interni dal raft, facendolo diventare convesso." -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "Indica il tempo per strato che definisce la soglia tra la velocità regolare e quella massima della ventola. Gli strati che vengono stampati a una velocità inferiore a questo valore utilizzano una velocità regolare della ventola. Per gli strati stampati più velocemente la velocità della ventola aumenta gradualmente verso la velocità massima della ventola." +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "Rimuovere gli angoli interni dalla base del raft" -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "La lunghezza del materiale retratto durante il movimento di retrazione." +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "Rimuovere gli angoli interni dalla base del raft, facendolo diventare convesso." -msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "Il fattore di magnitudo usato per la pendenza della base della torre di primerizzazione. Aumentando questo valore, la base diventerà più sottile. Diminuendolo, la base diventerà più spessa." +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "Rimuovere gli angoli interni dalla parte centrale del raft" -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "Il materiale del piano di stampa installato sulla stampante." +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "Rimuovere gli angoli interni dalla parte centrale del raft, facendolo diventare convesso." -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "La differenza di altezza massima rispetto all’altezza dello strato di base." +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "Rimuovere gli angoli interni dalla parte superiore del raft" -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "È l'angolazione massima ammessa delle parti nel riparo. Con 0 gradi verticale e 90 gradi orizzontale. Un angolo più piccolo comporta minori ripari non riusciti, ma maggiore materiale." +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "Rimuove gli angoli interni dalla parte superiore del raft, facendolo diventare convesso." -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "L’angolo massimo degli sbalzi dopo essere stati resi stampabili. A un valore di 0° tutti gli sbalzi sono sostituiti da un pezzo del modello collegato al piano di stampa, 90° non cambia il modello in alcun modo." +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Smoothing raft" -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "Angolo massimo dei rami mentre crescono intorno al modello. Usa un angolo inferiore per renderli più verticali e più stabili. Usa un angolo più alto per ottenere una portata maggiore." +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Questa impostazione controlla l'entità dell'arrotondamento degli angoli interni sul profilo raft. Gli angoli interni vengono arrotondati a semicerchio con un raggio pari al valore indicato. Questa impostazione elimina inoltre i fori sul profilo raft più piccoli di tale cerchio." -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "L'area massima di un foro nella base del modello prima che venga rimossa da Rendi stampabile lo sbalzo. I fori più piccoli di questo verranno mantenuti. Un valore di 0 mm² riempirà i fori nella base del modello." +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "Levigatura della base del raft" -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "La deviazione massima consentita quando si riduce la risoluzione per l'impostazione Risoluzione massima. Se si aumenta questo parametro, la stampa sarà meno precisa, ma il g-code sarà più piccolo. Deviazione massima rappresenta il limite per Risoluzione massima; pertanto se le due impostazioni sono in conflitto, verrà considerata vera l'impostazione Deviazione massima." +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Questa impostazione controlla la quantità di arrotondamento degli angoli interni nel contorno della base del raft. Gli angoli interni sono arrotondati a semicerchio con un raggio pari al valore indicato. Questa impostazione rimuove anche i buchi nel contorno del raft che sono più piccoli di tale cerchio." -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "La distanza massima tra le strutture di supporto nelle direzioni X/Y. Quando la distanza tra le strutture è inferiore al valore indicato, le strutture convergono in una unica." +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "Levigatura della parte centrale del raft" -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "Distanza massima in mm di spostamento del filamento per compensare le modifiche nella velocità di flusso." +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Questa impostazione controlla la quantità di arrotondamento degli angoli interni del contorno della parte centrale del raft. Gli angoli interni sono arrotondati a semicerchio con un raggio pari al valore indicato. Questa impostazione rimuove anche i buchi nel contorno del raft che sono più piccoli di tale cerchio." -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "La deviazione massima dell'area di estrusione consentita durante la rimozione di punti intermedi da una linea retta. Un punto intermedio può fungere da punto di modifica larghezza in una lunga linea retta. Pertanto, se viene rimosso, la linea avrà una larghezza uniforme e, come risultato, perderà (o guadagnerà) area di estrusione. In caso di incremento si può notare una leggera sotto (o sovra) estrusione tra pareti parallele rette, poiché sarà possibile rimuovere più punti di variazione della larghezza intermedi. La stampa sarà meno precisa, ma il G-Code sarà più piccolo." +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "Levigatura della parte superiore del raft" -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "Indica il cambio della velocità istantanea massima durante la stampa dello strato iniziale." +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Questa impostazione controlla la quantità di arrotondamento degli angoli interni del contorno della parte superiore del raft. Gli angoli interni sono arrotondati a semicerchio con un raggio pari al valore indicato. Questa impostazione rimuove anche i buchi nel contorno del raft che sono più piccoli di tale cerchio." -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "Indica il cambio della velocità istantanea massima della testina di stampa." +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Traferro del raft" -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "Indica la variazione della velocità istantanea massima durante la stiratura." +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "È l'interstizio tra lo strato di raft finale ed il primo strato del modello. Solo il primo strato viene sollevato di questo valore per ridurre l'adesione fra lo strato di raft e il modello. Ciò rende più facile rimuovere il raft." -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampate tutte le pareti interne." +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Z Sovrapposizione Primo Strato" -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "Indica il cambio della velocità istantanea massima con cui viene stampato il riempimento." +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "Il primo e il secondo strato del modello vanno sovrapposti nella direzione Z per compensare il filamento perso nello spazio vuoto. Tutti i modelli al di sopra del primo strato saranno spostati verso il basso da questa quantità.\nSi può notare che a volte il secondo strato viene stampato al di sotto dello strato iniziale a causa di questa impostazione. Si tratta di un comportamento previsto." -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "Indica la variazione della velocità istantanea massima con cui vengono stampate le parti inferiori." +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Spessore della base del raft" -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "Indica il cambio della velocità istantanea massima con cui viene stampato il riempimento del supporto." +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "Indica lo spessore dello strato di base del raft. Questo strato deve essere spesso per aderire saldamente al piano di stampa." -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampate le pareti più esterne." +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Larghezza delle linee dello strato di base del raft" -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "Indica il cambio della velocità istantanea massima con cui viene stampata la torre di innesco del supporto." +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "Indica la larghezza delle linee dello strato di base del raft. Le linee di questo strato devono essere spesse per favorire l'adesione al piano di stampa." -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "Indica la variazione della velocità istantanea massima con cui vengono stampate le parti superiori e inferiori." +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Spaziatura delle linee dello strato di base del raft" -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "Indica la variazione della velocità istantanea massima con cui vengono stampate le parti superiori." +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "Indica la distanza tra le linee che costituiscono lo strato di base del raft. Un'ampia spaziatura favorisce la rimozione del raft dal piano di stampa." -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampati lo skirt e il brim." +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Strati intermedi del raft" -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "Indica il cambio della velocità istantanea massima con cui viene stampata la struttura del supporto." +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "Il numero di strati tra la base e la superficie del raft. Questi costituiscono lo spessore principale del raft. L'incremento di questo numero crea un raft più spesso e robusto." -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "La massima variazione istantanea di velocità con cui vengono stampate le pareti più esterne della superficie superiore." +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Spessore dello strato intermedio del raft" -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "La massima variazione istantanea di velocità con cui vengono stampate le pareti interne della superficie superiore." +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "È lo spessore dello strato intermedio del raft." -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampate le pareti." +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Larghezza delle linee dello strato intermedio del raft" -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "Indica la variazione di velocità istantanea massima con cui vengono stampati gli strati rivestimento superficie superiore." +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "Indica la larghezza delle linee dello strato intermedio del raft. Una maggiore estrusione del secondo strato provoca l'incollamento delle linee al piano di stampa." -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampati gli strati superiore/inferiore." +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Spaziatura dello strato intermedio del raft" -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "Indica il cambio della velocità istantanea massima con cui vengono effettuati gli spostamenti." +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "Indica la distanza fra le linee dello strato intermedio del raft. La spaziatura dello strato intermedio deve essere abbastanza ampia, ma al tempo stesso sufficientemente fitta da sostenere gli strati superiori del raft." -msgctxt "prime_tower_max_bridging_distance description" -msgid "The maximum length of the branches which may be printed over the air." -msgstr "" +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Strati superiori del raft" + +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "Numero di strati sulla parte superiore del secondo strato del raft. Si tratta di strati completamente riempiti su cui poggia il modello. 2 strati danno come risultato una superficie superiore più levigata rispetto ad 1 solo strato." -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "Indica la velocità massima del motore per la direzione X." +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Spessore dello strato superiore del raft" -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "Indica la velocità massima del motore per la direzione Y." +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "È lo spessore degli strati superiori del raft." -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "Indica la velocità massima del motore per la direzione Z." +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Larghezza delle linee superiori del raft" -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "Indica la velocità massima del filamento." +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "Indica la larghezza delle linee della superficie superiore del raft. Queste possono essere linee sottili atte a levigare la parte superiore del raft." -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "Larghezza massima dei gradini della parte inferiore del supporto a scala che appoggia sul modello. Un valore inferiore rende il supporto più difficile da rimuovere, ma valori troppo elevati possono rendere instabili le strutture di supporto." +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Spaziatura superiore del raft" -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "Distanza minima tra l'esterno dello stampo e l'esterno del modello." +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "Indica la distanza tra le linee che costituiscono la maglia superiore del raft. La distanza deve essere uguale alla larghezza delle linee, in modo tale da ottenere una superficie solida." -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "Indica la velocità di spostamento minima della testina di stampa." +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "Ordine monotono della superficie della parte superiore del raft" -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "La temperatura minima durante il riscaldamento fino alla temperatura alla quale può già iniziare la stampa." +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "Stampare le linee della superficie della parte superiore del raft in un ordine che fa sì che si sovrappongano sempre alle linee adiacenti in un'unica direzione. Ciò richiede un tempo di stampa leggermente superiore, ma conferisce alla superficie un aspetto più consistente, visibile anche sulla superficie inferiore del modello." -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "Il tempo minimo in cui un estrusore deve essere inattivo prima che l’ugello si raffreddi. Solo quando un estrusore non è utilizzato per un periodo superiore a questo tempo potrà raffreddarsi alla temperatura di standby." +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "Conteggio delle pareti del raft" -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "L'angolo minimo degli sbalzi interni per il quale viene aggiunto il riempimento. Per un valore corrispondente a 0°, gli oggetti sono completamente riempiti di materiale, per un valore corrispondente a 90° non è previsto riempimento." +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "Il numero di contorni da stampare intorno al modello lineare del raft." -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "Indica l’angolo minimo degli sbalzi per i quali viene aggiunto il supporto. A un valore di 0 ° tutti gli sbalzi vengono supportati, con un valore di 90 ° non sarà fornito alcun supporto." +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Conteggio parete base del raft" -msgctxt "retraction_min_travel description" -msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." -msgstr "Determina la distanza minima necessaria affinché avvenga una retrazione. Questo consente di avere un minor numero di retrazioni in piccole aree." +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "Il numero di contorni da stampare intorno alla configurazione lineare nello strato di base del raft." -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "Indica la lunghezza minima dello skirt o del brim. Se tale lunghezza minima non viene raggiunta da tutte le linee skirt o brim insieme, saranno aggiunte più linee di skirt o brim fino a raggiungere la lunghezza minima. Nota: se il valore è impostato a 0, questa funzione viene ignorata." +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "Conteggio delle pareti della parte centrale del raft" -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "La larghezza minima della linea per pareti polilinea di riempimento interstizi linea intermedia. Questa impostazione determina lo spessore modello in corrispondenza del quale si passa dalla stampa di due linee perimetrali alla stampa di due pareti esterne e di una singola parete centrale al centro. Una larghezza minima della linea perimetrale pari più elevata porta a una larghezza massima della linea perimetrale dispari più elevata. La larghezza massima della linea di parete dispari viene calcolata come 2 * Larghezza minima della linea di parete pari." +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "Il numero di contorni da stampare intorno al modello lineare negli strati centrali del raft." -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "La larghezza minima della linea per normali pareti poligonali. Questa impostazione determina lo spessore modello in corrispondenza del quale si passa dalla stampa di una singola linea perimetrale sottile alla stampa di due linee perimetrali. Una larghezza minima della linea perimetrale pari più elevata porta a una larghezza massima della linea perimetrale dispari più elevata. La larghezza massima della linea perimetrale pari viene calcolata come Larghezza della linea perimetrale esterna + 0,5 * Larghezza minima della linea perimetrale dispari." +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "Conteggio delle parete della parte superiore del raft" -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "Indica la velocità minima di stampa, a prescindere dal rallentamento per il tempo minimo per strato. Quando la stampante rallenta eccessivamente, la pressione nell’ugello risulta insufficiente con conseguente scarsa qualità di stampa." +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "Il numero di contorni da stampare intorno al modello lineare negli strati superiori del raft." -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "La dimensione minima di un segmento di linea dopo il sezionamento. Se tale dimensione aumenta, la maglia avrà una risoluzione inferiore. Questo può consentire alla stampante di mantenere la velocità per processare il g-code ed aumenterà la velocità di sezionamento eliminando i dettagli della maglia che non è comunque in grado di processare." +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Velocità di stampa del raft" -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "La dimensione minima di un segmento lineare di spostamento dopo il sezionamento. Aumentando tale dimensione, le corse di spostamento avranno meno angoli arrotondati. La stampante può così mantenere la velocità per processare il g-code, ma si può verificare una riduzione della precisione di aggiramento del modello." +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "Indica la velocità alla quale il raft è stampato." -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "La pendenza minima dell'area alla quale ha effetto la creazione dei gradini. Valori bassi dovrebbero semplificare la rimozione del supporto sulle pendenze meno profonde, ma in realtà dei valori bassi possono generare risultati molto irrazionali sulle altre parti del modello." +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Velocità di stampa della base del raft" -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "Indica il tempo minimo dedicato a uno strato. Questo forza la stampante a rallentare, per impiegare almeno il tempo impostato qui per uno strato. Questo consente il corretto raffreddamento del materiale stampato prima di procedere alla stampa dello strato successivo. La stampa degli strati potrebbe richiedere un tempo inferiore al minimo se la funzione Sollevamento della testina è disabilitata e se la velocità minima non viene rispettata." +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "Indica la velocità alla quale viene stampata la base del raft. La sua stampa deve avvenire molto lentamente, considerato che il volume di materiale che fuoriesce dall'ugello è piuttosto elevato." -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "Il volume minimo per ciascuno strato della torre di innesco per scaricare materiale a sufficienza." +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Velocità di stampa raft intermedio" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "Il diametro massimo di un ramo che deve collegarsi al modello può aumentare unendosi ai rami che potrebbero raggiungere il piano di stampa. L'aumento riduce il tempo di stampa, ma aumenta l'area di supporto che poggia sul modello" +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "Indica la velocità alla quale viene stampato lo strato intermedio del raft. La sua stampa deve avvenire molto lentamente, considerato che il volume di materiale che fuoriesce dall'ugello è piuttosto elevato." -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "Il nome del modello della stampante 3D in uso." +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Velocità di stampa parte superiore del raft" -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "ID ugello per un treno estrusore, come \"AA 0.4\" e \"BB 0.8\"." +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "Indica la velocità alla quale sono stampati gli strati superiori del raft. La stampa di questi strati deve avvenire un po' più lentamente, in modo da consentire all'ugello di levigare lentamente le linee superficiali adiacenti." -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "Durante lo spostamento l’ugello evita le parti già stampate. Questa opzione è disponibile solo quando è abilitata la funzione Combing." +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Accelerazione di stampa del raft" -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "Durante lo spostamento l'ugello evita i supporti già stampati. Questa opzione è disponibile solo quando è abilitata la funzione combing." +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "Indica l’accelerazione con cui viene stampato il raft." -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "Indica il numero degli strati inferiori. Quando calcolato mediante lo spessore dello strato inferiore, il valore viene arrotondato a numero intero." +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Accelerazione di stampa della base del raft" -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "Il numero di contorni da stampare intorno alla configurazione lineare nello strato di base del raft." +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "Indica l’accelerazione con cui viene stampato lo strato di base del raft." -msgctxt "raft_interface_wall_count description" -msgid "The number of contours to print around the linear pattern in the middle layers of the raft." -msgstr "" +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Accelerazione di stampa raft intermedio" -msgctxt "raft_surface_wall_count description" -msgid "The number of contours to print around the linear pattern in the top layers of the raft." -msgstr "" +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "Indica l’accelerazione con cui viene stampato lo strato intermedio del raft." -msgctxt "raft_wall_count description" -msgid "The number of contours to print around the linear pattern of the raft." -msgstr "" +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Accelerazione di stampa parte superiore del raft" -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "Numero di layer di riempimento che supportano i bordi del rivestimento." +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "Indica l’accelerazione alla quale vengono stampati gli strati superiori del raft." -msgctxt "initial_bottom_layers description" -msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "Il numero di layer inferiori iniziali, dal piano di stampa verso l'alto. Quando viene calcolato mediante lo spessore inferiore, questo valore viene arrotondato a un numero intero." +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Jerk stampa del raft" -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "Il numero di strati tra la base e la superficie del raft. Questi costituiscono lo spessore principale del raft. L'incremento di questo numero crea un raft più spesso e robusto." +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "Indica il jerk con cui viene stampato il raft." -msgctxt "brim_line_count description" -msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." -msgstr "Corrisponde al numero di linee utilizzate per un brim. Più linee brim migliorano l’adesione al piano di stampa, ma con riduzione dell'area di stampa." +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Jerk di stampa della base del raft" -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "Corrisponde al numero di linee utilizzate per il brim del supporto. Più linee brim migliorano l’adesione al piano di stampa, ma utilizzano una maggiore quantità di materiale." +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "Indica il jerk con cui viene stampato lo strato di base del raft." -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "Numero di strati sulla parte superiore del secondo strato del raft. Si tratta di strati completamente riempiti su cui poggia il modello. 2 strati danno come risultato una superficie superiore più levigata rispetto ad 1 solo strato." +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Jerk di stampa raft intermedio" -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "Indica il numero degli strati superiori. Quando calcolato mediante lo spessore dello strato superiore, il valore viene arrotondato a numero intero." +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "Indica il jerk con cui viene stampato lo strato intermedio del raft." -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "Numero degli strati di rivestimento superiori. Solitamente è sufficiente un unico strato di sommità per ottenere superfici superiori di qualità elevata." +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Jerk di stampa parte superiore del raft" -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Il numero di pareti circostanti il riempimento di supporto. L'aggiunta di una parete può rendere la stampa del supporto più affidabile ed in grado di supportare meglio gli sbalzi, ma aumenta il tempo di stampa ed il materiale utilizzato." +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "Indica il jerk al quale vengono stampati gli strati superiori del raft." -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Il numero di pareti con cui circondare il pavimento dell'interfaccia di supporto. L'aggiunta di una parete può rendere la stampa di supporto più affidabile e può supportare meglio gli sbalzi, ma aumenta il tempo di stampa e il materiale utilizzato." +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Velocità della ventola per il raft" -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Il numero di pareti con cui circondare il tetto dell'interfaccia di supporto. L'aggiunta di una parete può rendere la stampa di supporto più affidabile e può supportare meglio gli sbalzi, ma aumenta il tempo di stampa e il materiale utilizzato." +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "Indica la velocità di rotazione della ventola per il raft." -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Il numero di pareti con cui circondare l'interfaccia di supporto. L'aggiunta di una parete può rendere la stampa di supporto più affidabile e può supportare meglio gli sbalzi, ma aumenta il tempo di stampa e il materiale utilizzato." +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Velocità della ventola per la base del raft" -msgctxt "wall_distribution_count description" -msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." -msgstr "Il numero di pareti, conteggiate dal centro, su cui occorre distribuire la variazione. Valori più bassi indicano che la larghezza delle pareti esterne non cambia." +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "Indica la velocità di rotazione della ventola per lo strato di base del raft." -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "Indica il numero delle pareti. Quando calcolato mediante lo spessore della parete, il valore viene arrotondato a numero intero." +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Velocità della ventola per il raft intermedio" -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "Il diametro esterno della punta dell'ugello." +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "Indica la velocità di rotazione della ventola per gli strati intermedi del raft." -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "Configurazione del materiale di riempimento della stampa. Il riempimento a linea e a zig zag cambia direzione su strati alternati, riducendo il costo del materiale. Le configurazioni a griglia, a triangolo, tri-esagonali, cubiche, ottagonali, a quarto di cubo, incrociate e concentriche sono stampate completamente su ogni strato. Le configurazioni gyroid, cubiche, a quarto di cubo e ottagonali variano per ciascuno strato per garantire una più uniforme distribuzione della forza in ogni direzione. Il riempimento fulmine cerca di minimizzare il riempimento, supportando solo la parte superiore dell'oggetto." +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Velocità della ventola per la parte superiore del raft" -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "Indica la configurazione delle strutture di supporto della stampa. Le diverse opzioni disponibili generano un supporto robusto o facile da rimuovere." +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "Indica la velocità di rotazione della ventola per gli strati superiori del raft." -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "Configurazione degli strati superiori." +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Doppia estrusione" -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Indica la configurazione degli strati superiori/inferiori." +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Indica le impostazioni utilizzate per la stampa con estrusori multipli." -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "La configurazione al fondo della stampa sul primo strato." +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Abilitazione torre di innesco" -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "Configurazione utilizzata per la stiratura della superficie superiore." +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "Stampa una torre accanto alla stampa che serve per innescare il materiale dopo ogni cambio ugello." -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "È la configurazione (o pattern) con cui vengono stampate le parti inferiori del supporto." +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "Tipi di prime tower" -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "È la configurazione (o pattern) con cui viene stampata l’interfaccia del supporto con il modello." +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
                                      • Normal: create a bucket in which secondary materials are primed
                                      • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
                                      " +msgstr "Come generare la prime tower:
                                      • Normale: creare un contenitore in cui vengono preparati i materiali secondari
                                      • Impilata: creare una prime tower più intervallata possibile. Ciò farà risparmiare tempo e filamento, ma è possibile solo se i materiali utilizzati aderiscono tra loro
                                      " -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "È la configurazione (o pattern) con cui vengono stampate le parti superiori del supporto." +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "Normale" -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "La posizione accanto al punto in cui avviare la stampa di ciascuna parte in uno layer." +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "Impilata" -msgctxt "support_tree_angle_slow description" -msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." -msgstr "L'angolo dei rami preferito, quando questi non devono evitare il modello. Usa un angolo inferiore per renderli più verticali e più stabili. Usa un angolo più alto per unire più velocemente i rami." +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Dimensioni torre di innesco" -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "Il posizionamento preferito delle strutture di supporto. Se le strutture non si possono collocare nella posizione preferita, saranno collocate altrove, anche se ciò significherà posizionarle sul modello." +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "Indica la larghezza della torre di innesco." -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "Indica il cambio della velocità istantanea massima dello strato iniziale." +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Volume minimo torre di innesco" -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "La forma del piano di stampa senza tenere conto delle aree non stampabili." +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "Il volume minimo per ciascuno strato della torre di innesco per scaricare materiale a sufficienza." -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "La forma della testina di stampa. Queste sono le coordinate relative alla posizione della testina di stampa. Questa coincide in genere con la posizione del primo estrusore. Le posizioni a sinistra e davanti alla testina di stampa devono essere coordinate negative." +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "Distanza massima tra i rami della prime tower" -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "Dimensioni delle cavità negli incroci a quattro vie nella configurazione 3D incrociata alle altezze a cui la configurazione tocca se stessa." +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "La lunghezza massima dei rami stampabili a mezz'aria." -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "È il volume minimo di un percorso di estrusione prima di consentire il coasting. Per percorsi di estrusione inferiori, nel tubo Bowden si è accumulata una pressione inferiore, quindi il volume rilasciato si riduce in modo lineare. Questo valore dovrebbe essere sempre maggiore del volume di Coasting." +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "Posizione X torre di innesco" -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "La velocità (°C/s) alla quale l’ugello si raffredda calcolando la media sulla gamma di temperature di stampa normale e la temperatura di attesa." +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "Indica la coordinata X della posizione della torre di innesco." -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "La velocità (°C/s) alla quale l’ugello si riscalda calcolando la media sulla gamma di temperature di stampa normale e la temperatura di attesa." +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Posizione Y torre di innesco" -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "Indica la velocità alla quale vengono stampate tutte le pareti interne. La stampa della parete interna eseguita più velocemente di quella della parete esterna consentirà di ridurre il tempo di stampa. Si consiglia di impostare questo parametro ad un valore intermedio tra la velocità della parete esterna e quella di riempimento." +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "Indica la coordinata Y della posizione della torre di innesco." -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "Indica la velocità alla quale vengono stampate le zone di rivestimento esterno del ponte." +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Ugello pulitura inattiva sulla torre di innesco" -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "Indica la velocità alla quale viene stampato il riempimento." +msgctxt "prime_tower_wipe_enabled description" +msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." +msgstr "Dopo la stampa della torre di innesco con un ugello, pulisce il materiale fuoriuscito dall’altro ugello sulla torre di innesco." -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "Indica la velocità alla quale viene effettuata la stampa." +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Base" +msgstr "Base della Torre di Primerizzazione" -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "Indica la velocità alla quale viene stampata la base del raft. La sua stampa deve avvenire molto lentamente, considerato che il volume di materiale che fuoriesce dall'ugello è piuttosto elevato." +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "Attivando questa impostazione, la tua torre di primerizzazione avrà un bordo, anche se il modello non lo prevede. Se desideri una base più robusta per una torre alta, puoi aumentare l'altezza della base." -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "Indica la velocità alla quale vengono stampate le pareti ponte." +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "Dimensione della Base della Torre di Primerizzazione" -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "La velocità di rotazione della ventola all’inizio della stampa. Negli strati successivi la velocità della ventola aumenta gradualmente da zero fino allo strato corrispondente alla velocità regolare in altezza." +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "La larghezza del bordo/base della torre di primerizzazione. Una base più ampia migliora l'aderenza alla piastra di costruzione, ma riduce anche l'area di stampa effettiva." -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "Indica la velocità alla quale ruotano le ventole prima di raggiungere la soglia. Quando uno strato viene stampato a una velocità superiore alla soglia, la velocità della ventola tende gradualmente verso la velocità massima della ventola." +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "Altezza della Base della Torre di Primerizzazione" -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "Indica la velocità di rotazione della ventola al tempo minimo per strato. La velocità della ventola aumenta gradualmente tra la velocità regolare della ventola e la velocità massima della ventola quando viene raggiunta la soglia." +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "L'altezza della base della torre di primerizzazione. Aumentando questo valore si otterrà una torre di primerizzazione più robusta perché la base sarà più ampia. Se questa impostazione è troppo bassa, la torre di primerizzazione non avrà una base solida." -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "Indica la velocità alla quale il filamento viene preparato durante un movimento di retrazione." +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "Pendenza della Base della Torre di Primerizzazione" -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "Indica la velocità alla quale il filamento viene preparato durante un movimento di retrazione per pulitura." +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "Il fattore di magnitudo usato per la pendenza della base della torre di primerizzazione. Aumentando questo valore, la base diventerà più sottile. Diminuendolo, la base diventerà più spessa." -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "Indica la velocità alla quale il filamento viene sospinto indietro dopo la retrazione per cambio ugello." +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "Interlinea del Radeau della Torre di Primerizzazione" -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "Indica la velocità alla quale il filamento viene retratto e preparato durante un movimento di retrazione." +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "La distanza tra le linee del radeau per l'unico strato di radeau della torre di primerizzazione. Un ampio interlinea facilita la rimozione del radeau dalla piastra di costruzione." -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "Indica la velocità alla quale il filamento viene retratto e preparato durante un movimento di retrazione per pulitura." +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Abilitazione del riparo materiale fuoriuscito" -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "Indica la velocità alla quale il filamento viene retratto durante una retrazione per cambio ugello." +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "Abilita il riparo esterno del materiale fuoriuscito. Questo crea un guscio intorno al modello per pulitura con un secondo ugello, se è alla stessa altezza del primo ugello." -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "Indica la velocità alla quale il filamento viene retratto durante un movimento di retrazione." +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Angolo del riparo materiale fuoriuscito" -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "Indica la velocità alla quale il filamento viene retratto durante un movimento di retrazione per pulitura." +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "È l'angolazione massima ammessa delle parti nel riparo. Con 0 gradi verticale e 90 gradi orizzontale. Un angolo più piccolo comporta minori ripari non riusciti, ma maggiore materiale." -msgctxt "switch_extruder_retraction_speeds description" -msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." -msgstr "Indica la velocità di retrazione del filamento. Una maggiore velocità di retrazione funziona bene, ma una velocità di retrazione eccessiva può portare alla deformazione del filamento." +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Distanza del riparo materiale fuoriuscito" -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "Velocità alla quale viene stampata la parte inferiore del supporto. La stampa ad una velocità inferiore può migliorare l'adesione del supporto nella parte superiore del modello." +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "Indica la distanza del riparo materiale fuoriuscito dalla stampa, nelle direzioni X/Y." -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "Indica la velocità alla quale viene stampato il riempimento del supporto. La stampa del riempimento a velocità inferiori migliora la stabilità." +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Distanza di retrazione cambio ugello" -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "Indica la velocità alla quale viene stampato lo strato intermedio del raft. La sua stampa deve avvenire molto lentamente, considerato che il volume di materiale che fuoriesce dall'ugello è piuttosto elevato." +msgctxt "switch_extruder_retraction_amount description" +msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." +msgstr "Indica il valore di retrazione alla commutazione degli estrusori. Impostato a 0 per nessuna retrazione. Questo valore generalmente dovrebbe essere lo stesso della lunghezza della zona di riscaldamento." -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "Indica la velocità alla quale vengono stampate le pareti più esterne. La stampa della parete esterna ad una velocità inferiore migliora la qualità finale del rivestimento. Tuttavia, una grande differenza tra la velocità di stampa della parete interna e quella della parete esterna avrà effetti negativi sulla qualità." +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Velocità di retrazione cambio ugello" + +msgctxt "switch_extruder_retraction_speeds description" +msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." +msgstr "Indica la velocità di retrazione del filamento. Una maggiore velocità di retrazione funziona bene, ma una velocità di retrazione eccessiva può portare alla deformazione del filamento." -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "Indica la velocità alla quale è stampata la torre di innesco. La stampa della torre di innesco a una velocità inferiore può renderla maggiormente stabile quando l’adesione tra i diversi filamenti non è ottimale." +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Velocità di retrazione cambio ugello" -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "Indica la velocità di rotazione delle ventole di raffreddamento stampa." +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "Indica la velocità alla quale il filamento viene retratto durante una retrazione per cambio ugello." -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "Indica la velocità alla quale il raft è stampato." +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Velocità innesco cambio ugello" -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "Velocità alla quale vengono stampate le parti superiori e inferiori del supporto. La loro stampa a velocità inferiori può migliorare la qualità dello sbalzo." +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "Indica la velocità alla quale il filamento viene sospinto indietro dopo la retrazione per cambio ugello." -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "Velocità alla quale vengono stampate le parti superiori del supporto. La loro stampa a velocità inferiori può migliorare la qualità dello sbalzo." +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Quantità di materiale extra della Prime Tower, al cambio ugello" -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "Indica la velocità a cui sono stampati lo skirt ed il brim. Normalmente questa operazione viene svolta alla velocità di stampa dello strato iniziale, ma a volte è possibile che si desideri stampare lo skirt o il brim ad una velocità diversa." +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "Materiale extra per l'innesco dopo il cambio dell'ugello." -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "Indica la velocità alla quale viene stampata la struttura di supporto. La stampa della struttura di supporto a velocità elevate può ridurre considerevolmente i tempi di stampa. La qualità superficiale della struttura di supporto di norma non riveste grande importanza in quanto viene rimossa dopo la stampa." +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Correzioni delle maglie" -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "Indica la velocità alla quale sono stampati gli strati superiori del raft. La stampa di questi strati deve avvenire un po' più lentamente, in modo da consentire all'ugello di levigare lentamente le linee superficiali adiacenti." +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Rendere le maglie più indicate alla stampa 3D." -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "La velocità con cui vengono stampate le pareti interne della superficie superiore." +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Unione dei volumi in sovrapposizione" -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "La velocità con cui vengono stampate le pareti più esterne della superficie superiore." +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "Questa funzione ignora la geometria interna derivante da volumi in sovrapposizione all’interno di una maglia, stampandoli come un unico volume. Questo può comportare la scomparsa di cavità interne." -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "Velocità alla quale viene eseguito il movimento Z verticale per i sollevamenti in Z. In genere è inferiore alla velocità di stampa, dal momento che il piano o il corpo di stampa della macchina sono più difficili da spostare." +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Rimozione di tutti i fori" -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "Indica la velocità alla quale vengono stampate le pareti." +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "Rimuove i fori presenti su ciascuno strato e mantiene soltanto la forma esterna. Questa funzione ignora qualsiasi invisibile geometria interna. Tuttavia, essa ignora allo stesso modo i fori degli strati visibili da sopra o da sotto." -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "Velocità alla quale passare sopra la superficie superiore." +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Ricucitura completa dei fori" -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "La velocità alla quale retrarre il filamento al fine di romperlo in modo netto." +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "Questa funzione tenta di 'ricucire' i fori aperti nella maglia chiudendo il foro con poligoni a contatto. Questa opzione può richiedere lunghi tempi di elaborazione." -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "Indica la velocità di stampa degli strati superiori." +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Mantenimento delle superfici scollegate" -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "Indica la velocità alla quale vengono stampati gli strati superiore/inferiore." +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "Di norma Cura cerca di \"ricucire\" piccoli fori nella maglia e di rimuovere le parti di uno strato che presentano grossi fori. Abilitando questa opzione, Cura mantiene quelle parti che non possono essere 'ricucite'. Questa opzione deve essere utilizzata come ultima risorsa quando non sia stato possibile produrre un corretto codice G in nessun altro modo." -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "Indica la velocità alla quale vengono effettuati gli spostamenti." +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Sovrapposizione maglie" -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "È la velocità a cui eseguire lo spostamento durante il Coasting, rispetto alla velocità del percorso di estrusione. Si consiglia di impostare un valore leggermente al di sotto del 100%, poiché durante il Coasting la pressione nel tubo Bowden scende." +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "Fa sovrapporre leggermente le maglie a contatto tra loro. In tal modo ne migliora l’adesione." -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "La velocità dello strato iniziale. È consigliabile un valore inferiore per migliorare l'adesione al piano di stampa. Non influisce sulle strutture di adesione del piano di stampa stesse, come brim e raft." +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Rimuovi intersezione maglie" -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "Indica la velocità di stampa per lo strato iniziale. Un valore inferiore è consigliabile per migliorare l’adesione al piano di stampa." +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "Rimuove le aree in cui maglie multiple si sovrappongono tra loro. Questo può essere usato se oggetti di due materiali uniti si sovrappongono tra loro." -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "Indica la velocità di spostamento per lo strato iniziale. Un valore inferiore è consigliabile per evitare di rimuovere le parti precedentemente stampate dal piano di stampa. Il valore di questa impostazione può essere calcolato automaticamente dal rapporto tra la velocità di spostamento e la velocità di stampa." +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "Rimozione maglie alternate" -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "La temperatura a cui il filamento viene rotto, con una rottura netta." +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "Selezionare quali volumi di intersezione maglie appartengono a ciascuno strato, in modo che le maglie sovrapposte diventino interconnesse. Disattivando questa funzione una delle maglie ottiene tutto il volume della sovrapposizione, che viene rimosso dalle altre maglie." -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "La temperatura dell'ambiente in cui stampare. Se il valore è 0, la temperatura del volume di stampa non verrà regolata." +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Rimuovere i primi strati vuoti" -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "Indica la temperatura dell'ugello quando un altro ugello è attualmente in uso per la stampa." +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "Rimuovere gli strati vuoti sotto il primo strato stampato, se presenti. La disabilitazione di questa impostazione può provocare la presenza di primi strati vuoti, se l'impostazione di Tolleranza di sezionamento è impostata su Esclusiva o Intermedia." -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "La temperatura alla quale può già iniziare il raffreddamento prima della fine della stampa." +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Risoluzione massima" -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer." -msgstr "La temperatura utilizzata per la stampa del primo strato." +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "La dimensione minima di un segmento di linea dopo il sezionamento. Se tale dimensione aumenta, la maglia avrà una risoluzione inferiore. Questo può consentire alla stampante di mantenere la velocità per processare il g-code ed aumenterà la velocità di sezionamento eliminando i dettagli della maglia che non è comunque in grado di processare." -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "Indica la temperatura usata per la stampa." +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Risoluzione massima di spostamento" -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "Indica la temperatura usata per il piano di stampa riscaldato per il primo strato. Se questo valore è 0, il piano di stampa viene lasciato non riscaldato per il primo strato." +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "La dimensione minima di un segmento lineare di spostamento dopo il sezionamento. Aumentando tale dimensione, le corse di spostamento avranno meno angoli arrotondati. La stampante può così mantenere la velocità per processare il g-code, ma si può verificare una riduzione della precisione di aggiramento del modello." -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "Indica la temperatura utilizzata per il piano di stampa riscaldato. Se questo valore è 0, il piano di stampa viene lasciato non riscaldato." +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Deviazione massima" -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "La temperatura utilizzata per scaricare il materiale. deve essere più o meno uguale alla massima temperatura di stampa possibile." +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "La deviazione massima consentita quando si riduce la risoluzione per l'impostazione Risoluzione massima. Se si aumenta questo parametro, la stampa sarà meno precisa, ma il g-code sarà più piccolo. Deviazione massima rappresenta il limite per Risoluzione massima; pertanto se le due impostazioni sono in conflitto, verrà considerata vera l'impostazione Deviazione massima." -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "Indica lo spessore degli strati inferiori nella stampa. Questo valore diviso per la l’altezza dello strato definisce il numero degli strati inferiori." +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Deviazione massima dell'area di estrusione" -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "Spessore del riempimento supplementare che supporta i bordi del rivestimento." +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "La deviazione massima dell'area di estrusione consentita durante la rimozione di punti intermedi da una linea retta. Un punto intermedio può fungere da punto di modifica larghezza in una lunga linea retta. Pertanto, se viene rimosso, la linea avrà una larghezza uniforme e, come risultato, perderà (o guadagnerà) area di estrusione. In caso di incremento si può notare una leggera sotto (o sovra) estrusione tra pareti parallele rette, poiché sarà possibile rimuovere più punti di variazione della larghezza intermedi. La stampa sarà meno precisa, ma il G-Code sarà più piccolo." -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "Indica lo spessore dell’interfaccia del supporto dove tocca il modello nella parte inferiore o in quella superiore." +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "Abilita movimento fluido" -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "Indica lo spessore delle parti inferiori del supporto. Questo controlla il numero di strati fitti stampati sulla sommità dei punti di un modello su cui appoggia un supporto." +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "Se questa opzione è abilitata, i percorsi utensile vengono corretti per le stampanti con pianificatori del movimento regolare. I piccoli movimenti che deviano dalla direzione del percorso utensile generale vengono risistemati per migliorare i movimenti del fluido." -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "Lo spessore delle parti superiori del supporto. Questo controlla la quantità di strati fitti alla sommità del supporto su cui appoggia il modello." +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "Distanza di spostamento del movimento del fluido" -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "Indica lo spessore degli strati superiori nella stampa. Questo valore diviso per la l’altezza dello strato definisce il numero degli strati superiori." +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "I punti di distanza vengono spostati per risistemare il percorso" -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "Indica lo spessore degli strati superiore/inferiore nella stampa. Questo valore diviso per la l’altezza dello strato definisce il numero degli strati superiori/inferiori." +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "Breve distanza di movimento del fluido" -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "Spessore delle pareti in direzione orizzontale. Questo valore diviso per la larghezza della linea della parete definisce il numero di pareti." +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "I punti di distanza vengono spostati per risistemare il percorso" -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "Indica lo spessore per strato di materiale di riempimento. Questo valore deve sempre essere un multiplo dell’altezza dello strato e in caso contrario viene arrotondato." +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "Angolo di movimento del fluido" -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "Indica lo spessore per strato del materiale di riempimento del supporto. Questo valore deve sempre essere un multiplo dell’altezza dello strato e in caso contrario viene arrotondato." +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "Se un segmento del percorso utensile devia più di questo angolo dal movimento generale, viene risistemato." -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "Il tipo di codice G da generare." +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Modalità speciali" -msgctxt "material_type description" -msgid "The type of material used." -msgstr "" +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Modi non tradizionali di stampare i modelli." + +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Sequenza di stampa" -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "È il volume di materiale fuoriuscito. Questo valore deve di norma essere prossimo al diametro dell'ugello al cubo." +msgctxt "print_sequence description" +msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." +msgstr "Indica se stampare tutti i modelli un layer alla volta o se attendere di terminare un modello prima di passare al successivo. La modalità \"uno per volta\" è possibile solo se a) è abilitato solo un estrusore b) tutti i modelli sono separati in modo tale che l'intera testina di stampa possa muoversi tra di essi e che tutti i modelli siano più bassi della distanza tra l'ugello e gli assi X/Y." -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "La larghezza (direzione X) dell’area stampabile." +msgctxt "print_sequence option all_at_once" +msgid "All at Once" +msgstr "Tutti contemporaneamente" -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "Corrisponde alla larghezza del brim da stampare al di sotto del supporto. Un brim più largo migliora l’adesione al piano di stampa, ma utilizza una maggiore quantità di materiale." +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "Uno alla volta" -msgctxt "interlocking_beam_width description" -msgid "The width of the interlocking structure beams." -msgstr "La larghezza delle travi della struttura ad incastro." +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Imposta manualmente la sequenza di stampa" -msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "La larghezza del bordo/base della torre di primerizzazione. Una base più ampia migliora l'aderenza alla piastra di costruzione, ma riduce anche l'area di stampa effettiva." +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "Consente di ordinare l'elenco degli oggetti per impostare manualmente la sequenza di stampa. Il primo oggetto dell'elenco verrà stampato per primo." -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "Indica la larghezza della torre di innesco." +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Maglia di riempimento" -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "Indica la larghezza entro cui è ammessa la distorsione (jitter). Si consiglia di impostare questo valore ad un livello inferiore rispetto alla larghezza della parete esterna, poiché le pareti interne rimangono inalterate." +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "Utilizzare questa maglia per modificare il riempimento di altre maglie a cui è sovrapposta. Sostituisce le regioni di riempimento di altre maglie con le regioni di questa maglia. Si consiglia di stampare solo una parete e non il rivestimento esterno superiore/inferiore per questa maglia." -msgctxt "retraction_extrusion_window description" -msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." -msgstr "La finestra in cui è impostato il massimo numero di retrazioni. Questo valore deve corrispondere all'incirca alla distanza di retrazione, in modo da limitare effettivamente il numero di volte che una retrazione interessa lo stesso spezzone di materiale." +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "Classificazione dell'elaborazione delle maglie" -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "Indica la coordinata X della posizione della torre di innesco." +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "Determina la priorità di questa mesh quando si considera la sovrapposizione multipla delle mesh di riempimento. Per le aree con la sovrapposizione di più mesh di riempimento verranno utilizzate le impostazioni della mesh con la classificazione più alta. Una mesh di riempimento con una classificazione più alta modificherà il riempimento delle mesh di riempimento con una classificazione inferiore e delle mesh normali." -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "Indica la coordinata Y della posizione della torre di innesco." +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Ritaglio maglia" -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "Nella scena sono presenti maglie di supporto. Questa impostazione è controllata da Cura." +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "Limita il volume di questa maglia all'interno di altre maglie. Questo può essere utilizzato per stampare talune aree di una maglia con impostazioni diverse e con un diverso estrusore." -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "Questo comanda la distanza che l’estrusore deve percorrere in coasting immediatamente dopo l’inizio di una parete ponte. Il coasting prima dell’inizio del ponte può ridurre la pressione nell’ugello e generare un ponte più piatto." +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Stampo" -msgctxt "raft_base_smoothing description" -msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "Stampa i modelli come uno stampo, che può essere fuso per ottenere un modello che assomigli ai modelli sul piano di stampa." -msgctxt "raft_interface_smoothing description" -msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Larghezza minimo dello stampo" -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Questa impostazione controlla l'entità dell'arrotondamento degli angoli interni sul profilo raft. Gli angoli interni vengono arrotondati a semicerchio con un raggio pari al valore indicato. Questa impostazione elimina inoltre i fori sul profilo raft più piccoli di tale cerchio." +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "Distanza minima tra l'esterno dello stampo e l'esterno del modello." -msgctxt "raft_surface_smoothing description" -msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Altezza parte superiore dello stampo" -msgctxt "retraction_count_max description" -msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." -msgstr "Questa impostazione limita il numero di retrazioni previste all'interno della finestra di minima distanza di estrusione. Ulteriori retrazioni nell'ambito di questa finestra saranno ignorate. Questo evita di eseguire ripetute retrazioni sullo stesso pezzo di filamento, onde evitarne l'appiattimento e conseguenti problemi di deformazione." +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "Altezza sopra le parti orizzontali del modello che stampano lo stampo." -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "In tal modo si creerà una protezione attorno al modello che intrappola l'aria (calda) e lo protegge da flussi d’aria esterna. Particolarmente utile per i materiali soggetti a deformazione." +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Angolo stampo" -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "Diametro della punta" +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "Angolo dello sbalzo delle pareti esterne creato per il modello. 0° rende il guscio esterno dello stampo verticale, mentre 90° fa in modo che il guscio esterno dello stampo segua il profilo del modello." -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "Per compensare la contrazione del materiale durante il raffreddamento, il modello sarà scalato con questo fattore nella direzione XY (orizzontalmente)." +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Supporto maglia" -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "Per compensare la contrazione del materiale durante il raffreddamento, il modello sarà scalato con questo fattore nella direzione Z (verticalmente)." +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "Utilizzare questa maglia per specificare le aree di supporto. Può essere usata per generare una struttura di supporto." -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "Per compensare la contrazione del materiale durante il raffreddamento, il modello sarà scalato con questo fattore." +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Maglia anti-sovrapposizione" -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Strati superiori" +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "Utilizzare questa maglia per specificare dove nessuna parte del modello deve essere rilevata come in sovrapposizione. Può essere usato per rimuovere struttura di supporto indesiderata." -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Distanza prolunga rivestimento superiore" +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Modalità superficie" -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Larghezza rimozione rivestimento superiore" +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "Trattare il modello solo come una superficie, un volume o volumi con superfici libere. Il modo di stampa normale stampa solo volumi delimitati. “Superficie” stampa una parete singola tracciando la superficie della maglia senza riempimento e senza rivestimento esterno superiore/inferiore. “Entrambi” stampa i volumi delimitati come normali ed eventuali poligoni rimanenti come superfici." -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Accelerazione della parete interna della superficie superiore" +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Normale" -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Jerk parete esterna della superficie superiore" +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Superficie" -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Velocità di stampa della parete interna della superficie superiore" +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Entrambi" -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Flusso della parete interna della superficie superiore" +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Stampa del contorno esterno con movimento spiraliforme" -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Accelerazione della parete esterna della superficie superiore" +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "Appiattisce il contorno esterno attorno all'asse Z con movimento spiraliforme. Questo crea un aumento costante lungo l'asse Z durante tutto il processo di stampa. Questa caratteristica consente di ottenere un modello pieno in una singola stampata con fondo solido. Questa caratteristica deve essere abilitata solo quando ciascuno strato contiene solo una singola parte." -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Flusso della parete esterna della superficie superiore" +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Levigazione dei profili con movimento spiraliforme" -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Jerk parete interna della superficie superiore" +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "Leviga i profili con movimento spiraliforme per ridurre la visibilità della giunzione Z (la giunzione Z dovrebbe essere appena visibile sulla stampa, ma rimane visibile nella visualizzazione a strati). Notare che la levigatura tende a rimuovere le bavature fini della superficie." -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Velocità di stampa della parete esterna della superficie superiore" +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Estrusione relativa" -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Accelerazione del rivestimento superficie superiore" +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "Utilizza l'estrusione relativa invece di quella assoluta. L'utilizzo di fasi E relative facilita la post-elaborazione del codice G. Tuttavia, questa impostazione non è supportata da tutte le stampanti e può causare deviazioni molto piccole nella quantità di materiale depositato rispetto alle fasi E assolute. Indipendentemente da questa impostazione, la modalità estrusione sarà sempre impostata su assoluta prima che venga generato uno script in codice G." -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Estrusore rivestimento superficie superiore" +msgctxt "experimental label" +msgid "Experimental" +msgstr "Sperimentale" -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Flusso rivestimento esterno superficie superiore" +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Funzionalità che non sono state ancora precisate completamente." -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Jerk del rivestimento superficie superiore" +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Tolleranza di sezionamento" -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Strati di rivestimento superficie superiore" +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "Tolleranza verticale negli strati sezionati. Di norma i contorni di uno strato vengono generati prendendo le sezioni incrociate fino al centro dello spessore di ciascun livello (intermedie). In alternativa, ogni strato può avere le aree che cadono all'interno del volume per tutto lo spessore dello strato (esclusive) oppure uno strato presenta le aree che rientrano all'interno di qualsiasi punto dello strato (inclusive). Le aree inclusive conservano la maggior parte dei dettagli; le esclusive generano la soluzione migliore, mentre le intermedie restano più vicine alla superficie originale." -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Direzioni linea rivestimento superficie superiore" +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Intermedia" -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Larghezza linea rivestimento superficie superiore" +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Esclusiva" -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Configurazione del rivestimento superficie superiore" +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Inclusiva" -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Velocità del rivestimento superficie" +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Ottimizzazione spostamenti riempimento" + +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "Quando abilitato, l’ordine di stampa delle linee di riempimento viene ottimizzato per ridurre la distanza percorsa. La riduzione del tempo di spostamento ottenuta dipende in particolare dal modello sezionato, dalla configurazione di riempimento, dalla densità, ecc. Si noti che, per alcuni modelli che hanno piccole aree di riempimento, il tempo di sezionamento del modello può aumentare notevolmente." -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Spessore dello strato superiore" +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Grafico della temperatura del flusso" -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "Nelle superfici superiore e/o inferiore dell'oggetto con un angolo più grande di questa impostazione, il rivestimento esterno non sarà prolungato. Questo evita il prolungamento delle aree del rivestimento esterno strette che vengono create quando la pendenza della superficie del modello è quasi verticale. Un angolo di 0° è orizzontale e non causa il prolungamento di alcun rivestimento esterno, mentre un angolo di 90° è verticale e causa il prolungamento di tutto il rivestimento esterno." +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "Collegamento dei dati di flusso del materiale (in mm3 al secondo) alla temperatura (in °C)." -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Superiore / Inferiore" +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Circonferenza minima dei poligoni" -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Superiore / Inferiore" +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "I poligoni in strati sezionati con una circonferenza inferiore a questo valore verranno scartati. I valori inferiori generano una maglia con risoluzione superiore al costo del tempo di sezionamento. È dedicata in particolare alle stampanti SLA ad alta risoluzione e a modelli 3D molto piccoli, ricchi di dettagli." -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Accelerazione strato superiore/inferiore" +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "Generazione della struttura a incastro" -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Estrusore superiore/inferiore" +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "Nei punti in cui i modelli si toccano, viene generata una struttura del fascio ad incastro. Questo migliora l'adesione tra i modelli, soprattutto quelli stampati in materiali diversi." -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Flusso superiore/inferiore" +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "Larghezza della trave a incastro" -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Jerk strato superiore/inferiore" +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "La larghezza delle travi della struttura ad incastro." -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Direzioni delle linee superiori/inferiori" +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "Orientamento della struttura ad incastro" -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Larghezza delle linee superiore/inferiore" +msgctxt "interlocking_orientation description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "L'altezza delle travi della struttura a incastro, misurata in numero di strati. Un numero minore di strati è più forte, ma più soggetto a difetti." -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Configurazione dello strato superiore/inferiore" +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "Conteggio degli strati delle travi ad incastro" -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Velocità di stampa delle parti superiore/inferiore" +msgctxt "interlocking_beam_layer_count description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "L'altezza delle travi della struttura a incastro, misurata in numero di strati. Un numero minore di strati è più forte, ma più soggetto a difetti." -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Spessore dello strato superiore/inferiore" +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "Profondità di incastro" -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "Contatto con il Piano di Stampa" +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "La distanza dal confine tra i modelli per generare una struttura a incastro, misurata in celle. Un numero troppo basso di celle determina una scarsa adesione." -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Diametro della torre" +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "Prevenzione incastro dei bordi" -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Angolazione della parte superiore (tetto) della torre" +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "La distanza dall'esterno di un modello in cui non verranno generate strutture a incastro, misurate in celle." -msgctxt "mesh_rotation_matrix description" -msgid "Transformation matrix to be applied to the model when loading it from file." -msgstr "Matrice di rotazione da applicare al modello quando caricato dal file." +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Rottura del supporto in pezzi di grandi dimensioni" -msgctxt "travel label" -msgid "Travel" -msgstr "Spostamenti" +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "Salto di alcuni collegamenti per rendere la struttura del supporto più facile da rompere. Questa impostazione è applicabile alla configurazione a zig-zag del riempimento del supporto." -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Accelerazione spostamenti" +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Dimensioni frammento supporto" -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Distanza di aggiramento durante gli spostamenti" +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "Lasciare un collegamento tra le linee del supporto ogni N millimetri per facilitare la rottura del supporto stesso." -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Jerk spostamenti" +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Conteggio linee di rottura supporto" -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Velocità degli spostamenti" +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "Salto di una ogni N linee di collegamento per rendere la struttura del supporto più facile da rompere." -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "Trattare il modello solo come una superficie, un volume o volumi con superfici libere. Il modo di stampa normale stampa solo volumi delimitati. “Superficie” stampa una parete singola tracciando la superficie della maglia senza riempimento e senza rivestimento esterno superiore/inferiore. “Entrambi” stampa i volumi delimitati come normali ed eventuali poligoni rimanenti come superfici." +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Abilitazione del riparo paravento" -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Albero" +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "In tal modo si creerà una protezione attorno al modello che intrappola l'aria (calda) e lo protegge da flussi d’aria esterna. Particolarmente utile per i materiali soggetti a deformazione." -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Tri-esagonale" +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Distanza X/Y del riparo paravento" -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Triangoli" +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "Indica la distanza del riparo paravento dalla stampa, nelle direzioni X/Y." -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Triangoli" +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Limitazione del riparo paravento" -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Triangoli" +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "Imposta l’altezza del riparo paravento. Scegliere di stampare il riparo paravento all’altezza totale del modello o a un’altezza limitata." -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Triangoli" +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Piena altezza" -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Triangoli" +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Limitazione in altezza" -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "Diametro del tronco" +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Altezza del riparo paravento" -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "Indica la limitazione in altezza del riparo paravento. Al di sopra di tale altezza non sarà stampato alcun riparo." -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Unione dei volumi in sovrapposizione" +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Rendi stampabile lo sbalzo" -msgctxt "bridge_wall_min_length description" -msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." -msgstr "Le pareti non supportate di lunghezza inferiore a questo valore verranno stampate utilizzando le normali impostazioni parete. Le pareti non supportate di lunghezza superiore verranno stampate utilizzando le impostazioni parete ponte." +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "Cambia la geometria del modello stampato in modo da richiedere un supporto minimo. Sbalzi molto inclinati diventeranno sbalzi poco profondi. Le aree di sbalzo scendono per diventare più verticali." -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Uso di strati adattivi" +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Massimo angolo modello" -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Utilizzo delle torri" +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "L’angolo massimo degli sbalzi dopo essere stati resi stampabili. A un valore di 0° tutti gli sbalzi sono sostituiti da un pezzo del modello collegato al piano di stampa, 90° non cambia il modello in alcun modo." -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "Usa una velocità di accelerazione separata per i movimenti di spostamento. Se disabilitato, i movimenti di spostamento utilizzeranno il valore di accelerazione della linea stampata alla destinazione." +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Area foro di sbalzo massima" -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "Usa un tasso di jerk separato per i movimenti di spostamento. Se disabilitata, i movimenti di spostamento utilizzeranno il valore di jerk della linea stampata alla destinazione." +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "L'area massima di un foro nella base del modello prima che venga rimossa da Rendi stampabile lo sbalzo. I fori più piccoli di questo verranno mantenuti. Un valore di 0 mm² riempirà i fori nella base del modello." -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "Utilizza l'estrusione relativa invece di quella assoluta. L'utilizzo di fasi E relative facilita la post-elaborazione del codice G. Tuttavia, questa impostazione non è supportata da tutte le stampanti e può causare deviazioni molto piccole nella quantità di materiale depositato rispetto alle fasi E assolute. Indipendentemente da questa impostazione, la modalità estrusione sarà sempre impostata su assoluta prima che venga generato uno script in codice G." +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Abilitazione della funzione di Coasting" -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "Utilizza speciali torri per il supporto di piccolissime aree di sbalzo. Queste torri hanno un diametro maggiore rispetto a quello dell'area che supportano. In prossimità dello sbalzo il diametro delle torri diminuisce, formando un 'tetto'." +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "Il Coasting sostituisce l'ultima parte di un percorso di estrusione con un percorso di spostamento. Il materiale fuoriuscito viene utilizzato per stampare l'ultimo tratto del percorso di estrusione al fine di ridurre i filamenti." -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "Utilizzare questa maglia per modificare il riempimento di altre maglie a cui è sovrapposta. Sostituisce le regioni di riempimento di altre maglie con le regioni di questa maglia. Si consiglia di stampare solo una parete e non il rivestimento esterno superiore/inferiore per questa maglia." +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Volume di Coasting" -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "Utilizzare questa maglia per specificare le aree di supporto. Può essere usata per generare una struttura di supporto." +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "È il volume di materiale fuoriuscito. Questo valore deve di norma essere prossimo al diametro dell'ugello al cubo." + +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Volume minimo prima del Coasting" -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "Utilizzare questa maglia per specificare dove nessuna parte del modello deve essere rilevata come in sovrapposizione. Può essere usato per rimuovere struttura di supporto indesiderata." +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "È il volume minimo di un percorso di estrusione prima di consentire il coasting. Per percorsi di estrusione inferiori, nel tubo Bowden si è accumulata una pressione inferiore, quindi il volume rilasciato si riduce in modo lineare. Questo valore dovrebbe essere sempre maggiore del volume di Coasting." -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Specificato dall’utente" +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Velocità di Coasting" -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Fattore di scala verticale per la compensazione della contrazione" +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "È la velocità a cui eseguire lo spostamento durante il Coasting, rispetto alla velocità del percorso di estrusione. Si consiglia di impostare un valore leggermente al di sotto del 100%, poiché durante il Coasting la pressione nel tubo Bowden scende." -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "Tolleranza verticale negli strati sezionati. Di norma i contorni di uno strato vengono generati prendendo le sezioni incrociate fino al centro dello spessore di ciascun livello (intermedie). In alternativa, ogni strato può avere le aree che cadono all'interno del volume per tutto lo spessore dello strato (esclusive) oppure uno strato presenta le aree che rientrano all'interno di qualsiasi punto dello strato (inclusive). Le aree inclusive conservano la maggior parte dei dettagli; le esclusive generano la soluzione migliore, mentre le intermedie restano più vicine alla superficie originale." +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Dimensioni cavità 3D incrociata" -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Attendi il riscaldamento del piano di stampa" +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "Dimensioni delle cavità negli incroci a quattro vie nella configurazione 3D incrociata alle altezze a cui la configurazione tocca se stessa." -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Attendi il riscaldamento dell’ugello" +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Immagine di densità del riempimento incrociato" -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Accelerazione parete" +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "La posizione del file di un'immagine i cui i valori di luminosità determinano la densità minima nella posizione corrispondente nel riempimento della stampa." -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Conteggio distribuzione parete" +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Immagine di densità del riempimento incrociato per il supporto" -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Estrusore pareti" +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "La posizione del file di un'immagine i cui i valori di luminosità determinano la densità minima nella posizione corrispondente nel supporto." -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Flusso della parete" +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Abilitazione del supporto conico" -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Jerk parete" +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "Realizza aree di supporto più piccole nella parte inferiore che in corrispondenza dello sbalzo." -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Numero delle linee perimetrali" +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Angolo del supporto conico" -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Larghezza delle linee perimetrali" +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "È l'angolo di inclinazione del supporto conico. Con 0 gradi verticale e 90 gradi orizzontale. Angoli inferiori rendono il supporto più robusto, ma richiedono una maggiore quantità di materiale. Angoli negativi rendono la base del supporto più larga rispetto alla parte superiore." -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Ordinamento parete" +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Larghezza minima del supporto conico" -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Velocità di stampa della parete" +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "Indica la larghezza minima alla quale viene ridotta la base dell’area del supporto conico. Larghezze minori possono comportare strutture di supporto instabili." -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Spessore delle pareti" +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Rivestimento esterno incoerente (fuzzy)" -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Lunghezza transizione parete" +msgctxt "magic_fuzzy_skin_enabled description" +msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." +msgstr "Distorsione (jitter) casuale durante la stampa della parete esterna, così che la superficie assume un aspetto ruvido ed incoerente (fuzzy)." -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Distanza di filtro transizione parete" +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Fuzzy Skin solo all'esterno" -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Margine filtro di transizione parete" +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "Distorce solo i profili delle parti, non i fori di queste." -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Angolo di soglia di transizione parete" +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Spessore del rivestimento esterno incoerente (fuzzy)" -msgctxt "shell label" -msgid "Walls" -msgstr "Pareti" +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "Indica la larghezza entro cui è ammessa la distorsione (jitter). Si consiglia di impostare questo valore ad un livello inferiore rispetto alla larghezza della parete esterna, poiché le pareti interne rimangono inalterate." -msgctxt "wall_overhang_angle description" -msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." -msgstr "Le pareti con uno sbalzo superiore a quest'angolo saranno stampate con le impostazioni per le pareti a sbalzo. Se il valore è 90, nessuna parete sarà trattata come parete a sbalzo. Nemmeno lo sbalzo supportato dal supporto sarà trattato come tale." +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Densità del rivestimento esterno incoerente (fuzzy)" -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "Se questa opzione è abilitata, i percorsi utensile vengono corretti per le stampanti con pianificatori del movimento regolare. I piccoli movimenti che deviano dalla direzione del percorso utensile generale vengono risistemati per migliorare i movimenti del fluido." +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "Indica la densità media dei punti introdotti su ciascun poligono in uno strato. Si noti che i punti originali del poligono vengono scartati, perciò una bassa densità si traduce in una riduzione della risoluzione." -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "Quando abilitato, l’ordine di stampa delle linee di riempimento viene ottimizzato per ridurre la distanza percorsa. La riduzione del tempo di spostamento ottenuta dipende in particolare dal modello sezionato, dalla configurazione di riempimento, dalla densità, ecc. Si noti che, per alcuni modelli che hanno piccole aree di riempimento, il tempo di sezionamento del modello può aumentare notevolmente." +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Distanza dei punti del rivestimento incoerente (fuzzy)" -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "Quando abilitata, la velocità della ventola di raffreddamento stampa viene modificata per le zone del rivestimento esterno subito sopra il supporto." +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "Indica la distanza media tra i punti casuali introdotti su ciascun segmento di linea. Si noti che i punti originali del poligono vengono scartati, perciò un elevato livello di regolarità si traduce in una riduzione della risoluzione. Questo valore deve essere superiore alla metà dello spessore del rivestimento incoerente (fuzzy)." -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "Se abilitato, le coordinate della giunzione Z sono riferite al centro di ogni parte. Se disabilitato, le coordinate definiscono una posizione assoluta sul piano di stampa." +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Offset massimo dell'estrusione di compensazione del flusso" -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "Per un valore superiore a zero, le corse di spostamento in modalità combing superiori a tale distanza utilizzeranno la retrazione. Se il valore impostato è zero, non è presente un valore massimo e le corse in modalità combing non utilizzeranno la retrazione." +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "Distanza massima in mm di spostamento del filamento per compensare le modifiche nella velocità di flusso." -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "Quando è maggiore di zero, l'Espansione orizzontale dei fori viene applicata gradualmente sui fori piccoli (i fori piccoli vengono espansi maggiormente). Quando l'opzione è impostata su zero, l'espansione orizzontale sarà applicata a tutti i fori. I fori più grandi del diametro massimo di espansione orizzontale non saranno espansi." +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Fattore di compensazione del flusso" -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "Se maggiore di zero, l'espansione orizzontale del foro è la quantità di offset applicata a tutti i fori in ciascun livello. I valori positivi aumentano la dimensione dei fori, i valori negativi riducono la dimensione dei fori. Se questa impostazione è abilitata, può essere ulteriormente regolata con l'opzione del diametro max dell'espansione orizzontale del foro." +msgctxt "flow_rate_extrusion_offset_factor description" +msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." +msgstr "Distanza di spostamento del filamento al fine di compensare le modifiche nella velocità di flusso, come percentuale della distanza di spostamento del filamento in un secondo di estrusione." -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "Quando si stampano le zone di rivestimento esterno ponte, la quantità di materiale estruso viene moltiplicata per questo valore." +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Uso di strati adattivi" -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "Quando si stampano le pareti ponte, la quantità di materiale estruso viene moltiplicata per questo valore." +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "Gli strati adattivi calcolano l’altezza degli strati in base alla forma del modello." -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Quando si stampa il secondo strato del rivestimento esterno ponte, la quantità di materiale estruso viene moltiplicata per questo valore." +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "Variazione massima strati adattivi" -msgctxt "bridge_skin_material_flow_3 description" -msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Quando si stampa il terzo strato del rivestimento esterno ponte, la quantità di materiale estruso viene moltiplicata per questo valore." +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "La differenza di altezza massima rispetto all’altezza dello strato di base." -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "Quando viene raggiunta la velocità minima per il tempo minimo per strato, sollevare la testina dalla stampa e attendere il tempo supplementare fino al raggiungimento del valore per tempo minimo per strato." +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "Dimensione variazione strati adattivi" -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "Quando il modello presenta piccoli spazi vuoti verticali composti da un numero ridotto di strati, intorno a questi strati di norma dovrebbe essere presente un rivestimento esterno nell'interstizio. Abilitare questa impostazione per non generare il rivestimento esterno se l'interstizio verticale è molto piccolo. Ciò consente di migliorare il tempo di stampa e il tempo di sezionamento, ma dal punto di vista tecnico lascia il riempimento esposto all'aria." +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "La differenza in altezza dello strato successivo rispetto al precedente." -msgctxt "wall_transition_angle description" -msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." -msgstr "Quando creare transizioni tra numeri di parete pari e dispari. Una forma a cuneo con un angolo maggiore di questa impostazione non presenta transazioni e nessuna parete verrà stampata al centro per riempire lo spazio rimanente. Riducendo questa impostazione si riduce il numero e la lunghezza di queste pareti centrali, ma potrebbe lasciare spazi vuoti o sovraestrusione." +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "Dimensione della topografia dei layer adattivi" -msgctxt "wall_transition_length description" -msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." -msgstr "Quando si esegue la transizione tra numeri di parete diversi poiché la parte diventa più sottile, viene allocata una determinata quantità di spazio per dividere o unire le linee perimetrali." +msgctxt "adaptive_layer_height_threshold description" +msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." +msgstr "Distanza orizzontale target tra due layer adiacenti. Riducendo questa impostazione, i layer più sottili verranno utilizzati per avvicinare i margini dei layer." -msgctxt "wipe_hop_enable description" -msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "Durante la pulizia, il piano di stampa viene abbassato per creare uno spazio tra l'ugello e la stampa. Questo impedisce l'urto dell'ugello sulla stampa durante gli spostamenti, riducendo la possibilità di far cadere la stampa dal piano." +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Angolo parete di sbalzo" -msgctxt "retraction_hop_enabled description" -msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "Ogniqualvolta avviene una retrazione, il piano di stampa viene abbassato per creare uno spazio tra l’ugello e la stampa. Previene l’urto dell’ugello sulla stampa durante gli spostamenti riducendo la possibilità di far cadere la stampa dal piano." +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." +msgstr "Le pareti con uno sbalzo superiore a quest'angolo saranno stampate con le impostazioni per le pareti a sbalzo. Se il valore è 90, nessuna parete sarà trattata come parete a sbalzo. Nemmeno lo sbalzo supportato dal supporto sarà trattato come tale." -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "Indica se la distanza X/Y del supporto esclude la distanza Z del supporto o viceversa. Quando X/Y esclude Z, la distanza X/Y può allontanare il supporto dal modello, influenzando l’effettiva distanza Z allo sbalzo. È possibile disabilitare questa funzione non applicando la distanza X/Y intorno agli sbalzi." +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Velocità parete di sbalzo" -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "Indica se le coordinate X/Y della posizione zero della stampante sono al centro dell’area stampabile." +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "Le pareti di sbalzo verranno stampate a questa percentuale della loro normale velocità di stampa." -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "Se l’endstop dell’asse X è in direzione positiva (coordinata X alta) o negativa (coordinata X bassa)." +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Abilita impostazioni ponte" + +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "Rileva i ponti e modifica la velocità di stampa, il flusso e le impostazioni ventola durante la stampa dei ponti." -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "Se l’endstop dell’asse Y è in direzione positiva (coordinata Y alta) o negativa (coordinata Y bassa)." +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Lunghezza minima parete ponte" -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "Se l’endstop dell’asse Z è in direzione positiva (coordinata Z alta) o negativa (coordinata Z bassa)." +msgctxt "bridge_wall_min_length description" +msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." +msgstr "Le pareti non supportate di lunghezza inferiore a questo valore verranno stampate utilizzando le normali impostazioni parete. Le pareti non supportate di lunghezza superiore verranno stampate utilizzando le impostazioni parete ponte." -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "Indica se gli estrusori condividono un singolo riscaldatore piuttosto che avere ognuno il proprio." +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Soglia di supporto rivestimento esterno ponte" -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "Indica se gli estrusori condividono un singolo ugello piuttosto che avere ognuno il proprio. Se impostato su true, si prevede che lo script gcode di avvio della stampante imposti tutti gli estrusori su uno stato di retrazione iniziale noto e mutuamente compatibile (nessuno o un solo filamento non retratto); in questo caso lo stato di retrazione iniziale è descritto, per estrusore, dal parametro 'machine_extruders_shared_nozzle_initial_retraction'." +msgctxt "bridge_skin_support_threshold description" +msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." +msgstr "Se una zona di rivestimento esterno è supportata per meno di questa percentuale della sua area, effettuare la stampa utilizzando le impostazioni ponte. In caso contrario viene stampata utilizzando le normali impostazioni rivestimento esterno." -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "Indica se la macchina ha un piano di stampa riscaldato." +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Densità massima del riempimento rado del Bridge" -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "Se la macchina è in grado di stabilizzare la temperatura del volume di stampa." +msgctxt "bridge_sparse_infill_max_density description" +msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." +msgstr "Densità massima del riempimento considerato rado. Il rivestimento esterno sul riempimento rado è considerato non supportato; pertanto potrebbe essere trattato come rivestimento esterno ponte." -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "Per centrare l’oggetto al centro del piano di stampa (0,0) anziché utilizzare il sistema di coordinate in cui l’oggetto è stato salvato." +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Coasting parete ponte" -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "Per controllare la temperatura da Cura. Disattivare per controllare la temperatura ugello dall’esterno di Cura." +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "Questo comanda la distanza che l’estrusore deve percorrere in coasting immediatamente dopo l’inizio di una parete ponte. Il coasting prima dell’inizio del ponte può ridurre la pressione nell’ugello e generare un ponte più piatto." -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "Sceglie se includere comandi temperatura piano di stampa all’avvio del codice G. Quando start_gcode contiene già comandi temperatura piano di stampa la parte anteriore di Cura disabilita automaticamente questa impostazione." +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Velocità di stampa della parete ponte" -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "Sceglie se includere comandi temperatura ugello all’avvio del codice G. Quando start_gcode contiene già comandi temperatura ugello la parte anteriore di Cura disabilita automaticamente questa impostazione." +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "Indica la velocità alla quale vengono stampate le pareti ponte." -msgctxt "clean_between_layers description" -msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." -msgstr "Indica se includere nel G-Code la pulitura ugello tra i layer (massimo 1 per layer). L'attivazione di questa impostazione potrebbe influenzare il comportamento della retrazione al cambio layer. Utilizzare le impostazioni di retrazione per pulitura per controllare la retrazione in corrispondenza dei layer in cui sarà in funzione lo script di pulitura." +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Flusso della parete ponte" -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "Sceglie se inserire un comando per attendere finché la temperatura del piano di stampa non viene raggiunta all’avvio." +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "Quando si stampano le pareti ponte, la quantità di materiale estruso viene moltiplicata per questo valore." -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "Eventuale innesco del filamento con un blob prima della stampa. L'attivazione di questa impostazione garantisce che l'estrusore avrà il materiale pronto all'ugello prima della stampa. Anche la stampa Brim o Skirt può funzionare da innesco, nel qual caso la disabilitazione di questa impostazione consente di risparmiare tempo." +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Velocità di stampa del rivestimento esterno ponte" -msgctxt "print_sequence description" -msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -msgstr "Indica se stampare tutti i modelli un layer alla volta o se attendere di terminare un modello prima di passare al successivo. La modalità \"uno per volta\" è possibile solo se a) è abilitato solo un estrusore b) tutti i modelli sono separati in modo tale che l'intera testina di stampa possa muoversi tra di essi e che tutti i modelli siano più bassi della distanza tra l'ugello e gli assi X/Y." +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "Indica la velocità alla quale vengono stampate le zone di rivestimento esterno del ponte." -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "Sceglie se mostrare le diverse varianti di questa macchina, descritte in file json a parte." +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Flusso del rivestimento esterno ponte" -msgctxt "machine_firmware_retract description" -msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." -msgstr "Specifica se usare comandi di retrazione firmware (G10/G11) anziché utilizzare la proprietà E nei comandi G1 per retrarre il materiale." +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "Quando si stampano le zone di rivestimento esterno ponte, la quantità di materiale estruso viene moltiplicata per questo valore." -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "Sceglie se attendere finché la temperatura dell’ugello non viene raggiunta all’avvio." +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Densità del rivestimento esterno ponte" -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Indica la larghezza di una singola linea di riempimento." +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "La densità dello strato del rivestimento esterno ponte. I valori inferiori a 100 aumentano la distanza tra le linee del rivestimento esterno." -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "Indica la larghezza di una singola linea di supporto superiore o inferiore." +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Velocità della ventola ponte" -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "Larghezza di un singola linea delle aree nella parte superiore della stampa." +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "La velocità della ventola in percentuale da usare durante la stampa delle pareti e del rivestimento esterno ponte." -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "Indica la larghezza di una linea singola. In generale, la larghezza di ciascuna linea deve corrispondere alla larghezza dell’ugello. Tuttavia, una lieve riduzione di questo valore potrebbe generare stampe migliori." +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Ponte a strati multipli" -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "Indica la larghezza di una singola linea della torre di innesco." +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "Se abilitata, il secondo e il terzo strato sopra l’aria vengono stampati utilizzando le seguenti impostazioni. In caso contrario, questi strati vengono stampati utilizzando le impostazioni normali." -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "Indica la larghezza di una singola linea dello skirt o del brim." +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Velocità di stampa del secondo rivestimento esterno ponte" -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "Indica la larghezza di una singola linea di supporto inferiore." +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "La velocità di stampa da usare per stampare il secondo strato del rivestimento esterno ponte." -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "Indica la larghezza di una singola linea di supporto superiore." +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Flusso del secondo rivestimento esterno ponte" -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Indica la larghezza di una singola linea di supporto." +msgctxt "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Quando si stampa il secondo strato del rivestimento esterno ponte, la quantità di materiale estruso viene moltiplicata per questo valore." -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Indica la larghezza di una singola linea superiore/inferiore." +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Densità del secondo rivestimento esterno ponte" -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "Indica la larghezza di una singola linea della parete per tutte le linee della parete tranne quella più esterna." +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "La densità del secondo strato del rivestimento esterno ponte. I valori inferiori a 100 aumentano la distanza tra le linee del rivestimento esterno." -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Indica la larghezza di una singola linea perimetrale." +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Velocità della ventola per il secondo rivestimento esterno ponte" -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "Indica la larghezza delle linee dello strato di base del raft. Le linee di questo strato devono essere spesse per favorire l'adesione al piano di stampa." +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "La velocità delle ventola in percentuale da usare per stampare il secondo strato del rivestimento esterno ponte." -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "Indica la larghezza delle linee dello strato intermedio del raft. Una maggiore estrusione del secondo strato provoca l'incollamento delle linee al piano di stampa." +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Velocità di stampa del terzo rivestimento esterno ponte" -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "Indica la larghezza delle linee della superficie superiore del raft. Queste possono essere linee sottili atte a levigare la parte superiore del raft." +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "La velocità di stampa da usare per stampare il terzo strato del rivestimento esterno ponte." -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "Indica la larghezza della linea della parete esterna. Riducendo questo valore, è possibile stampare livelli di dettaglio più elevati." +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Flusso del terzo rivestimento esterno ponte" -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "Larghezza della parete che sostituirà feature sottili (in base alle dimensioni minime della feature) del modello. Se la larghezza minima della linea perimetrale è più sottile dello spessore della feature, la parete diventerà spessa come la feature stessa." +msgctxt "bridge_skin_material_flow_3 description" +msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Quando si stampa il terzo strato del rivestimento esterno ponte, la quantità di materiale estruso viene moltiplicata per questo valore." -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "Posizione X spazzolino di pulitura" +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Densità del terzo rivestimento esterno ponte" -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Velocità di sollevamento (Hop) per pulitura" +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "La densità del terzo strato del rivestimento esterno ponte. I valori inferiori a 100 aumentano la distanza tra le linee del rivestimento esterno." -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "Ugello pulitura inattiva sulla torre di innesco" +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Velocità della ventola del terzo rivestimento esterno ponte" -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Distanza spostamento longitudinale di pulitura" +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "La velocità della ventola in percentuale da usare per stampare il terzo strato del rivestimento esterno ponte." msgctxt "clean_between_layers label" msgid "Wipe Nozzle Between Layers" msgstr "Pulitura ugello tra gli strati" -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Pausa pulitura" +msgctxt "clean_between_layers description" +msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." +msgstr "Indica se includere nel G-Code la pulitura ugello tra i layer (massimo 1 per layer). L'attivazione di questa impostazione potrebbe influenzare il comportamento della retrazione al cambio layer. Utilizzare le impostazioni di retrazione per pulitura per controllare la retrazione in corrispondenza dei layer in cui sarà in funzione lo script di pulitura." -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Conteggio ripetizioni operazioni di pulitura" +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Volume di materiale tra le operazioni di pulitura" -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Distanza di retrazione per pulitura" +msgctxt "max_extrusion_before_wipe description" +msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." +msgstr "Il massimo volume di materiale che può essere estruso prima di iniziare un'altra operazione di pulitura ugello. Se questo valore è inferiore al volume del materiale richiesto in un layer, l'impostazione non ha effetto in questo layer, vale a dire che si limita a una pulitura per layer." msgctxt "wipe_retraction_enable label" msgid "Wipe Retraction Enable" msgstr "Retrazione per pulitura abilitata" +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Ritrae il filamento quando l'ugello si sta muovendo su un'area non stampata." + +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Distanza di retrazione per pulitura" + +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "L'entità di retrazione del filamento in modo che non fuoriesca durante la sequenza di pulitura." + msgctxt "wipe_retraction_extra_prime_amount label" msgid "Wipe Retraction Extra Prime Amount" msgstr "Entità di innesco supplementare dopo retrazione per pulitura" -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Velocità di pulitura retrazione" +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "Qui è possibile compensare l’eventuale trafilamento di materiale che può verificarsi nel corso della pulitura durante il movimento." + +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Velocità di retrazione per pulitura" + +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "Indica la velocità alla quale il filamento viene retratto e preparato durante un movimento di retrazione per pulitura." msgctxt "wipe_retraction_retract_speed label" msgid "Wipe Retraction Retract Speed" msgstr "Velocità di retrazione per pulitura" -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Velocità di retrazione per pulitura" +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "Indica la velocità alla quale il filamento viene retratto durante un movimento di retrazione per pulitura." + +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Velocità di pulitura retrazione" + +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "Indica la velocità alla quale il filamento viene preparato durante un movimento di retrazione per pulitura." + +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Pausa pulitura" + +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Pausa dopo ripristino." msgctxt "wipe_hop_enable label" msgid "Wipe Z Hop" msgstr "Pulitura Z Hop" +msgctxt "wipe_hop_enable description" +msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "Durante la pulizia, il piano di stampa viene abbassato per creare uno spazio tra l'ugello e la stampa. Questo impedisce l'urto dell'ugello sulla stampa durante gli spostamenti, riducendo la possibilità di far cadere la stampa dal piano." + msgctxt "wipe_hop_amount label" msgid "Wipe Z Hop Height" msgstr "Altezza Z Hop pulitura" -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "Nel riempimento" +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "La differenza di altezza durante l’esecuzione di uno Z Hop." -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "Tenere nota dello strumento attivo dopo l'invio di comandi temporanei allo strumento non attivo. Richiesto per la stampa con doppio estrusore con Smoothie o altro firmware con comandi modali dello strumento." +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Velocità di sollevamento (Hop) per pulitura" -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "Endstop X in direzione positiva" +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "Velocità di spostamento dell'asse z durante il sollevamento (Hop)." + +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "Posizione X spazzolino di pulitura" msgctxt "wipe_brush_pos_x description" msgid "X location where wipe script will start." msgstr "Posizione X in cui verrà avviato lo script di pulitura." -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y esclude Z" +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Conteggio ripetizioni operazioni di pulitura" -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Endstop Y in direzione positiva" +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "Numero di passaggi dell'ugello attraverso lo spazzolino." -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Endstop Z in direzione positiva" +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Distanza spostamento longitudinale di pulitura" -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Z Hop dopo cambio estrusore" +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "La distanza dello spostamento longitudinale eseguito dalla testina attraverso lo spazzolino." -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Z Hop dopo cambio altezza estrusore" +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Dimensione massima foro piccolo" -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Altezza Z Hop" +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "I fori e i profili delle parti con un diametro inferiore a quello indicato verranno stampati utilizzando Velocità Dettagli di piccole dimensioni." -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Z Hop solo su parti stampate" +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Lunghezza massima dettagli di piccole dimensioni" -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Velocità di sollevamento Z" +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "Profili di dettagli inferiori a questa lunghezza saranno stampati utilizzando Velocità Dettagli di piccole dimensioni." -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Z Hop durante la retrazione" +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Velocità dettagli piccole dimensioni" -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Allineamento delle giunzioni a Z" +msgctxt "small_feature_speed_factor description" +msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "I dettagli di piccole dimensioni verranno stampati a questa percentuale della velocità di stampa normale. Una stampa più lenta può aiutare in termini di adesione e precisione." -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Posizione della cucitura in Z" +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Velocità layer iniziale per dettagli di piccole dimensioni" -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Riferimento giunzione Z" +msgctxt "small_feature_speed_factor_0 description" +msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "I dettagli di piccole dimensioni sul primo layer saranno stampati a questa percentuale della velocità di stampa normale. Una stampa più lenta può aiutare in termini di adesione e precisione." -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "Giunzione Z X" +msgctxt "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "Alterna direzioni parete" -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Giunzione Z Y" +msgctxt "material_alternate_walls description" +msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." +msgstr "Consente di alternare direzioni parete ogni altro strato o inserto. Utile per materiali che possono accumulare stress, come per la stampa su metallo." -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z esclude X/Y" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Raggruppa le pareti esterne" -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Le pareti esterne di diverse isole nello stesso strato vengono stampate in sequenza. Quando abilitata, la quantità di variazione del flusso è limitata perché le pareti vengono stampate un tipo alla volta; quando disabilitata, si riduce il numero di spostamenti tra le isole perché le pareti nello stesso isola sono raggruppate." -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "Resoconto del processo di stampa" -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "Resoconto degli eventi che superano le soglie impostate" -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "Abilita il resoconto del processo di stampa" -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "Abilita il resoconto del processo di stampa per impostare i valori di soglia per il rilevamento di eventuali errori." -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "Avviso sul flusso" -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "Limite per attivare l'avviso sul flusso." -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "Limite per il flusso" -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "Limite per il rilevamento dell'anomalia del flusso." -msgctxt "travel description" -msgid "travel" -msgstr "spostamenti" +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "Avviso sulla temperatura di stampa" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "Limite per attivare l'avviso sulla temperatura di stampa." -#~ msgctxt "brim_inside_margin description" -#~ msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -#~ msgstr "Una parte completamente racchiusa all'interno di un'altra parte può generare un brim esterno che tocca l'interno dell'altra parte. Questo rimuove tutti i brim entro questa distanza dai fori interni." +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "Limite per la temperatura di stampa" -#~ msgctxt "user_defined_print_order_enabled description" -#~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." -#~ msgstr "Consente di ordinare l'elenco degli oggetti per impostare manualmente la sequenza di stampa. Il primo oggetto dell'elenco sarà stampato per primo." +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "Limite per il rilevamento dell'anomalia della temperatura di stampa." -#~ msgctxt "brim_inside_margin label" -#~ msgid "Brim Inside Avoid Margin" -#~ msgstr "Margine di aggiramento interno del brim" +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "Avviso sulla temperatura del volume di costruzione" -#~ msgctxt "brim_outside_only label" -#~ msgid "Brim Only on Outside" -#~ msgstr "Brim solo sull’esterno" +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "Limite per attivare l'avviso sulla temperatura del volume di costruzione." -#~ msgctxt "gradual_flow_discretisation_step_size description" -#~ msgid "Duration of each step in the gradual flow change" -#~ msgstr "Durata di ciascuna fase nella modifica del flusso graduale" +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "Limite per la temperatura del volume di costruzione" -#~ msgctxt "gradual_flow_enabled description" -#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -#~ msgstr "Abilita le modifiche del flusso graduale. Se abilitate, il flusso viene gradualmente aumentato/diminuito rispetto al flusso target. Questa impostazione è utile per le stampanti con un tubo bowden in cui il flusso non viene immediatamente modificato all'avvio/all'arresto del motore dell'estrusore." +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "Limite per il rilevamento dell'anomalia della temperatura del volume di costruzione." -#~ msgctxt "reset_flow_duration description" -#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -#~ msgstr "Per ogni corsa più lunga di questo valore, il flusso di materiale viene reimpostato al flusso target dei percorsi" +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Impostazioni riga di comando" -#~ msgctxt "gradual_flow_discretisation_step_size label" -#~ msgid "Gradual flow discretisation step size" -#~ msgstr "Dimensione della fase di discretizzazione del flusso graduale" +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "Impostazioni utilizzate solo se CuraEngine non è chiamato dalla parte anteriore di Cura." -#~ msgctxt "gradual_flow_enabled label" -#~ msgid "Gradual flow enabled" -#~ msgstr "Flusso graduale abilitato" +msgctxt "center_object label" +msgid "Center Object" +msgstr "Centra oggetto" -#~ msgctxt "max_flow_acceleration label" -#~ msgid "Gradual flow max acceleration" -#~ msgstr "Accelerazione max del flusso graduale" +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "Per centrare l’oggetto al centro del piano di stampa (0,0) anziché utilizzare il sistema di coordinate in cui l’oggetto è stato salvato." -#~ msgctxt "layer_0_max_flow_acceleration label" -#~ msgid "Initial layer max flow acceleration" -#~ msgstr "Accelerazione del flusso max del livello iniziale" +msgctxt "mesh_position_x label" +msgid "Mesh Position X" +msgstr "Posizione maglia X" -#~ msgctxt "layer_0_z_overlap description" -#~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -#~ msgstr "Effettua il primo e secondo strato di sovrapposizione modello nella direzione Z per compensare il filamento perso nel traferro. Tutti i modelli sopra il primo strato del modello saranno spostati verso il basso di questa quantità." +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "Offset applicato all’oggetto per la direzione X." -#~ msgctxt "max_flow_acceleration description" -#~ msgid "Maximum acceleration for gradual flow changes" -#~ msgstr "Accelerazione massima per modifiche di flusso graduale" +msgctxt "mesh_position_y label" +msgid "Mesh Position Y" +msgstr "Posizione maglia Y" -#~ msgctxt "layer_0_max_flow_acceleration description" -#~ msgid "Minimum speed for gradual flow changes for the first layer" -#~ msgstr "Velocità minima per le modifiche del flusso graduale per il primo livello" +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "Offset applicato all’oggetto per la direzione Y." -#~ msgctxt "brim_outside_only description" -#~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -#~ msgstr "Stampa il brim solo sull’esterno del modello. Questo riduce la quantità del brim che si deve rimuovere in seguito, mentre non riduce particolarmente l’adesione al piano." +msgctxt "mesh_position_z label" +msgid "Mesh Position Z" +msgstr "Posizione maglia Z" -#~ msgctxt "reset_flow_duration label" -#~ msgid "Reset flow duration" -#~ msgstr "Reimposta durata flusso" +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "Offset applicato all’oggetto in direzione z. Con questo potrai effettuare quello che veniva denominato 'Object Sink’." -#~ msgctxt "support_interface_skip_height label" -#~ msgid "Support Interface Resolution" -#~ msgstr "Risoluzione interfaccia supporto" +msgctxt "mesh_rotation_matrix label" +msgid "Mesh Rotation Matrix" +msgstr "Matrice rotazione maglia" -#~ msgctxt "support_interface_skip_height description" -#~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -#~ msgstr "Quando si controlla dove si trova il modello sopra e sotto il supporto, procedere ad intervalli di altezza prestabilita. Valori inferiori causeranno un sezionamento più lento, mentre valori più alti potrebbero causare la stampa del supporto normale in alcuni punti in cui dovrebbe esserci un'interfaccia di supporto." +msgctxt "mesh_rotation_matrix description" +msgid "Transformation matrix to be applied to the model when loading it from file." +msgstr "Matrice di rotazione da applicare al modello quando caricato dal file." diff --git a/resources/i18n/it_IT/gradual_flow_settings.def.json.po b/resources/i18n/it_IT/gradual_flow_settings.def.json.po index 363b0994aa1..d028eedb585 100644 --- a/resources/i18n/it_IT/gradual_flow_settings.def.json.po +++ b/resources/i18n/it_IT/gradual_flow_settings.def.json.po @@ -1,54 +1,53 @@ -# msgid "" msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: 2024-03-11 11:28+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: en\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it_IT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" - msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" msgstr "Gradual flow max acceleration" -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" - msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" msgstr "Maximum acceleration for gradual flow changes" +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" msgstr "Minimum speed for gradual flow changes for the first layer" +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + msgctxt "reset_flow_duration label" msgid "Reset flow duration" msgstr "Reset flow duration" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" diff --git a/resources/i18n/ja_JP/cura.po b/resources/i18n/ja_JP/cura.po index c9e40dee259..b34e409e878 100644 --- a/resources/i18n/ja_JP/cura.po +++ b/resources/i18n/ja_JP/cura.po @@ -12,7 +12,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" msgstr "%(width).1f x %(depth).1f x %(height).1f mm" @@ -117,7 +116,7 @@ msgstr "プロジェクトを保存... (&S)" msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" msgid "&Save Universal Cura Project..." -msgstr "" +msgstr "Universal Cura Projectを保存..." msgctxt "@title:menu menubar:toplevel" msgid "&Settings" @@ -140,13 +139,9 @@ msgid "*You will need to restart the application for these changes to have effec msgstr "*これらの変更を有効にするには、アプリケーションを再始動する必要があります。" msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "" -"- マーケットプレースから材料プロファイルとプラグインを追加\n" -"- 材料プロファイルとプラグインのバックアップと同期\n" +msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgstr "- マーケットプレースから材料プロファイルとプラグインを追加" +"- 材料プロファイルとプラグインのバックアップと同期" "- UltiMakerコミュニティで48,000人以上のユーザーとアイデアを共有してアドバイスをもらう" msgctxt "@heading" @@ -173,14 +168,6 @@ msgctxt "@item:inlistbox" msgid "3MF File" msgstr "3MF ファイル" -msgctxt "name" -msgid "3MF Reader" -msgstr "3MFリーダー" - -msgctxt "name" -msgid "3MF Writer" -msgstr "3MFリーダー" - msgctxt "@error:zip" msgid "3MF Writer plug-in is corrupt." msgstr "3MFリーダーのプラグインが破損しています。" @@ -201,56 +188,37 @@ msgctxt "@label %i will be replaced with a profile name" msgid "Only user changed settings will be saved in the custom profile.
                                      For materials that support it, the new custom profile will inherit properties from %1." msgstr "ユーザーが変更した設定のみがカスタムプロファイルに保存されます。
                                      その設定に対応する材料の場合、新しいカスタムプロファイルは %1からプロパティを継承します。" -#, python-brace-format msgctxt "@label OpenGL renderer" msgid "
                                    • OpenGL Renderer: {renderer}
                                    • " msgstr "
                                    • OpenGLレンダラー: {renderer}
                                    • " -#, python-brace-format msgctxt "@label OpenGL vendor" msgid "
                                    • OpenGL Vendor: {vendor}
                                    • " msgstr "
                                    • OpenGLベンダー: {vendor}
                                    • " -#, python-brace-format msgctxt "@label OpenGL version" msgid "
                                    • OpenGL Version: {version}
                                    • " msgstr "
                                    • OpenGLバージョン: {version}
                                    • " msgctxt "@label crash message" -msgid "" -"

                                      A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

                                      \n" -"

                                      Please use the \"Send report\" button to post a bug report automatically to our servers

                                      \n" -" " -msgstr "" -"

                                      致命的なエラーが発生しました。問題解決のためこのクラッシュレポートを送信してください

                                      \n" -"

                                      「レポート送信」ボタンを使用してバグレポートが自動的に当社サーバーに送られるようにしてください

                                      \n" +msgid "

                                      A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

                                      \n

                                      Please use the \"Send report\" button to post a bug report automatically to our servers

                                      \n " +msgstr "

                                      致命的なエラーが発生しました。問題解決のためこのクラッシュレポートを送信してください

                                      " +"

                                      「レポート送信」ボタンを使用してバグレポートが自動的に当社サーバーに送られるようにしてください

                                      " " " msgctxt "@label crash message" -msgid "" -"

                                      Oops, UltiMaker Cura has encountered something that doesn't seem right.

                                      \n" -"

                                      We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

                                      \n" -"

                                      Backups can be found in the configuration folder.

                                      \n" -"

                                      Please send us this Crash Report to fix the problem.

                                      \n" -" " -msgstr "" -"

                                      申し訳ありません。UltiMaker Cura で何らかの不具合が生じています。

                                      \n" -"

                                      開始時に回復不能のエラーが発生しました。不適切なファイル設定が原因の可能性があります。バックアップを実行してからリセットしてください。

                                      \n" -"

                                      バックアップは、設定フォルダに保存されます。

                                      \n" -"

                                      問題解決のために、このクラッシュ報告をお送りください。

                                      \n" +msgid "

                                      Oops, UltiMaker Cura has encountered something that doesn't seem right.

                                      \n

                                      We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

                                      \n

                                      Backups can be found in the configuration folder.

                                      \n

                                      Please send us this Crash Report to fix the problem.

                                      \n " +msgstr "

                                      申し訳ありません。UltiMaker Cura で何らかの不具合が生じています。

                                      " +"

                                      開始時に回復不能のエラーが発生しました。不適切なファイル設定が原因の可能性があります。バックアップを実行してからリセットしてください。

                                      " +"

                                      バックアップは、設定フォルダに保存されます。

                                      " +"

                                      問題解決のために、このクラッシュ報告をお送りください。

                                      " " " -#, python-brace-format msgctxt "@info:status" -msgid "" -"

                                      One or more 3D models may not print optimally due to the model size and material configuration:

                                      \n" -"

                                      {model_names}

                                      \n" -"

                                      Find out how to ensure the best possible print quality and reliability.

                                      \n" -"

                                      View print quality guide

                                      " -msgstr "" -"

                                      モデルのサイズまたは材料の設定によっては、適切に印刷しない3Dモデルがあります。:

                                      \n" -"

                                      {model_names}

                                      \n" -"

                                      可能な限り最高の品質および信頼性を得る方法をご覧ください。

                                      \n" +msgid "

                                      One or more 3D models may not print optimally due to the model size and material configuration:

                                      \n

                                      {model_names}

                                      \n

                                      Find out how to ensure the best possible print quality and reliability.

                                      \n

                                      View print quality guide

                                      " +msgstr "

                                      モデルのサイズまたは材料の設定によっては、適切に印刷しない3Dモデルがあります。:

                                      " +"

                                      {model_names}

                                      " +"

                                      可能な限り最高の品質および信頼性を得る方法をご覧ください。

                                      " "

                                      印字品質ガイドを見る

                                      " msgctxt "@label" @@ -264,7 +232,7 @@ msgstr[0] "一部のプリンターではクラウド接続は利用できませ msgctxt "@text" msgid "A highly dense and strong part but at a slower print time. Great for functional parts." -msgstr "" +msgstr "密度の高い強力な部品ですが,印刷時間は遅くなります。機能部品に最適です。" msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." @@ -274,10 +242,6 @@ msgctxt "@item:inlistbox" msgid "AMF File" msgstr "AMF ファイル" -msgctxt "name" -msgid "AMF Reader" -msgstr "AMFリーダー" - msgctxt "@label" msgid "Abort" msgstr "中止" @@ -314,10 +278,6 @@ msgctxt "@button" msgid "Accept" msgstr "承認する" -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "G-codeを承認し、プリンターに送信する。またプラグインはファームウェアをアップデートできます。" - msgctxt "@label" msgid "Account synced" msgstr "アカウント同期" @@ -410,7 +370,6 @@ msgctxt "@button" msgid "Add printer manually" msgstr "プリンタを手動で追加する" -#, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "アカウントからプリンター{name}({model})を追加しています" @@ -451,7 +410,6 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "全てのファイル" -#, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "すべてのサポートのタイプ ({0})" @@ -460,10 +418,6 @@ msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "匿名データの送信を許可する" -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "G-codeファイルの読み込み、表示を許可する。" - msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "毎回確認する" @@ -502,7 +456,7 @@ msgstr "匿名" msgctxt "@option:radio" msgid "Anonymous crash reports" -msgstr "" +msgstr "匿名のクラッシュレポート" msgctxt "@label Description for application component" msgid "Application framework" @@ -510,7 +464,7 @@ msgstr "アプリケーションフレームワーク" msgctxt "@title:column" msgid "Applies on" -msgstr "" +msgstr "適用:" msgctxt "@label" msgid "Apply Extruder offsets to GCode" @@ -544,7 +498,6 @@ msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to move %1 to the top of the queue?" msgstr "%1 をキューの最上位に移動しますか?" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "{printer_name}を一時的に削除してもよろしいですか?" @@ -557,7 +510,6 @@ msgctxt "@label (%1 is object name)" msgid "Are you sure you wish to remove %1? This cannot be undone!" msgstr "%1を取り外しますか?この作業はやり直しが効きません!" -#, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "{0}を取り除いてもよろしいですか?この操作は元に戻せません。" @@ -622,10 +574,6 @@ msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "バックアップとリセットの設定" -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "構成をバックアップしてリストアします。" - msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "材料設定とプラグインのバックアップと同期" @@ -700,7 +648,7 @@ msgstr "計算された" msgctxt "@window:text" msgid "Camera navigation:" -msgstr "" +msgstr "カメラナビゲーション:" msgctxt "@window:text" msgid "Camera rendering:" @@ -722,12 +670,10 @@ msgctxt "@label" msgid "Can't connect to your UltiMaker printer?" msgstr "UltiMakerプリンターに接続できませんか?" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "プリンタを追加する前に、{0}からプロファイルの取り込はできません。" -#, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "G-codeを読み込み中は他のファイルを開くことができません。{0}の取り込みをスキップしました。" @@ -800,21 +746,8 @@ msgctxt "@label" msgid "Checking..." msgstr "確認しています..." -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "ファームウェアアップデートをチェックする。" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "プリント問題の可能性のあるモデルをプリント構成を確認し、解決案を提示してください。" - msgctxt "@label" -msgid "" -"Chooses between the techniques available to generate support. \n" -"\n" -"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" -"\n" -"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "サポートを生成するために利用できる技術を選択します。「標準」のサポート構造はオーバーハング部品のすぐ下に作成し、そのエリアを真下に生成します。「ツリー」サポートはオーバーハングエリアに向かって枝を作成し、モデルを枝の先端で支えます。枝をモデルのまわりにはわせて、できる限りビルドプレートから支えます。" msgctxt "@action:inmenu menubar:edit" @@ -893,14 +826,6 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "圧縮G-codeファイル" -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "圧縮G-codeリーダー" - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "圧縮G-codeライター" - msgctxt "@title:window" msgid "Configuration Changes" msgstr "構成の変更" @@ -973,10 +898,6 @@ msgctxt "@info:status" msgid "Connected via cloud" msgstr "クラウド経由で接続" -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Digital Libraryに接続し、CuraでDigital Libraryからファイルを開いたりDigital Libraryにファイルを保存したりできるようにします。" - msgctxt "@tooltip:button" msgid "Consult the UltiMaker Community." msgstr "UltiMaker Communityをご参照ください。" @@ -1017,7 +938,6 @@ msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "ユーザーデータディレクトリからアーカイブを作成できません: {}" -#, python-brace-format msgctxt "@info:status Don't translate the tag {device}!" msgid "Could not find a file name when trying to write to {device}." msgstr "デバイス{device}に書き出すためのファイル名が見つかりませんでした。" @@ -1046,12 +966,10 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "材料アーカイブを{}に保存できませんでした:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "{0}を保存できませんでした: {1}" -#, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "リムーバブルドライブ{0}に保存することができませんでした: {1}" @@ -1060,31 +978,19 @@ msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "データをプリンタにアップロードできませんでした。" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"No permission to execute process." -msgstr "" -"EnginePluginを開始できませんでした:{self._plugin_id}\n" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." +msgstr "EnginePluginを開始できませんでした:{self._plugin_id}" "処理を実行する権限がありません。" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Operating system is blocking it (antivirus?)" -msgstr "" -"EnginePluginを開始できませんでした:{self._plugin_id}\n" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" +msgstr "EnginePluginを開始できませんでした:{self._plugin_id}" "OSによりブロックされています(ウイルス対策?)" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Resource is temporarily unavailable" -msgstr "" -"EnginePluginを開始できませんでした:{self._plugin_id}\n" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" +msgstr "EnginePluginを開始できませんでした:{self._plugin_id}" "リソースは一時的に利用できません" msgctxt "@title:window" @@ -1127,10 +1033,6 @@ msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Digital Libraryでプリントプロジェクトを作成します。" -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "特定箇所のサポートを印刷するブロックを消去するメッシュを作成する" - msgctxt "@info:backup_status" msgid "Creating your backup..." msgstr "バックアップを作成しています..." @@ -1143,22 +1045,10 @@ msgctxt "@title:window" msgid "Cura Backups" msgstr "Cura バックアップ" -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura バックアップ" - msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Curaプロファイル" -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Curaプロファイルリーダー" - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Curaプロファイルライター" - msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Curaが3MF fileを算出します" @@ -1171,17 +1061,13 @@ msgctxt "@title:window" msgid "Cura can't start" msgstr "Curaを開始できません" -#, python-brace-format msgctxt "@info:status" msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." msgstr "Curaはグループ{0}のホストプリンターにまだインストールされていない材料プロフィールを検出しました。" msgctxt "@info:credit" -msgid "" -"Cura is developed by UltiMaker in cooperation with the community.\n" -"Cura proudly uses the following open source projects:" -msgstr "" -"CuraはUltiMakerのコミュニティの協力によって開発され、\n" +msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" +msgstr "CuraはUltiMakerのコミュニティの協力によって開発され、" "Curaはオープンソースで使えることを誇りに思います:" msgctxt "@label" @@ -1192,18 +1078,6 @@ msgctxt "@label Cura version number" msgid "Cura version" msgstr "Curaバージョン" -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Curaエンジンバックエンド" - -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "フローを段階的に滑らかにして高フローのジャンプを制限するためのCuraEngineプラグイン" - -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - msgctxt "@label" msgid "Currency:" msgstr "通貨:" @@ -1434,7 +1308,7 @@ msgstr "ドラフト" msgctxt "@action:inmenu menubar:edit" msgid "Drop All Models to buildplate" -msgstr "" +msgstr "すべてのモデルをビルドプレートにドロップ" msgctxt "@action:button" msgid "Duplicate" @@ -1460,12 +1334,10 @@ msgctxt "@action:button" msgid "Eject" msgstr "取り出す" -#, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "リムーバブルデバイス{0}を取り出す" -#, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "{0}取り出し完了。デバイスを安全に取り外せます。" @@ -1490,10 +1362,6 @@ msgctxt "@label" msgid "Enabled" msgstr "有効" -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "2Dの画像ファイルからプリント可能なジオメトリーを生成を可能にする。" - msgctxt "@title:label" msgid "End G-code" msgstr "G-codeの終了" @@ -1564,7 +1432,7 @@ msgstr "選択エクスポート..." msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Export Universal Cura Project" -msgstr "" +msgstr "Universal Cura Projectのエクスポート" msgctxt "@button" msgid "Export material archive" @@ -1574,7 +1442,6 @@ msgctxt "@info:title" msgid "Export succeeded" msgstr "書き出し完了" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "{0}にプロファイルを書き出しました" @@ -1583,10 +1450,6 @@ msgctxt "@tooltip:button" msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "UltiMaker Curaをプラグインと材料プロファイルで拡張します。" -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "後処理のためにユーザーが作成したスクリプト用拡張子" - msgctxt "@label" msgid "Extruder" msgstr "エクストルーダー" @@ -1601,7 +1464,7 @@ msgstr "エクストルーダーがG-Codeを終了する" msgctxt "@label" msgid "Extruder End G-code duration" -msgstr "" +msgstr "エクストルーダー終了Gコードの時間" msgctxt "@title:label" msgid "Extruder Start G-code" @@ -1609,12 +1472,11 @@ msgstr "エクストルーダーがG-Codeを開始する" msgctxt "@label" msgid "Extruder Start G-code duration" -msgstr "" +msgstr "エクストルーダー開始Gコードの時間" -#, python-brace-format msgctxt "@label" msgid "Extruder {0}" -msgstr "" +msgstr "エクストルーダー {0}" msgctxt "@info:title" msgid "Extruder(s) Disabled" @@ -1636,7 +1498,6 @@ msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "材料のアーカイブを作成してプリンターと同期するのに失敗しました。" -#, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "{0}取り出し失敗。他のプログラムがデバイスを使用しているため。" @@ -1645,27 +1506,22 @@ msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "フィラメントの書き出しに失敗しました %1: %2" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "{0}にプロファイルを書き出すのに失敗しました: {1}" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "{0}にプロファイルを書き出すことに失敗しました。:ライタープラグイン失敗の報告。" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "{0}からプロファイルの取り込みに失敗しました:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "{0}からプロファイルの取り込に失敗しました:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "{0}からプロファイルの取り込に失敗しました:{1}" @@ -1682,10 +1538,9 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "材料アーカイブの保存に失敗しました" -#, python-brace-format msgctxt "@info:status" msgid "Failed writing to specific cloud printer: {0} not in remote clusters." -msgstr "" +msgstr "特定のクラウドプリンタへの書き込みに失敗しました:{0} はリモートクラスタにありません。" msgctxt "@label:category menu label" msgid "Favorites" @@ -1711,7 +1566,6 @@ msgctxt "@info:title" msgid "File Saved" msgstr "ファイル保存" -#, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "ファイル{0}には、正しいプロファイルが含まれていません。" @@ -1744,14 +1598,6 @@ msgctxt "@title:window" msgid "Firmware Update" msgstr "ファームウェアアップデート" -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "ファームウェアアップデートチェッカー" - -msgctxt "name" -msgid "Firmware Updater" -msgstr "ファームウェアアップデーター" - msgctxt "@label" msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." msgstr "プリンターとの接続はファームウェアのアップデートをサポートしていないため、ファームウェアをアップデートできません。" @@ -1829,7 +1675,7 @@ msgid "Force layer view compatibility mode (restart required)" msgstr "レイヤービューコンパティビリティモードを強制する。(再起動が必要)" msgid "FreeCAD trackpad" -msgstr "" +msgstr "FreeCADトラックパッド" msgctxt "@action:inmenu menubar:view" msgid "Front View" @@ -1851,18 +1697,6 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "G-codeファイル" -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "G-codeプロファイルリーダー" - -msgctxt "name" -msgid "G-code Reader" -msgstr "G-codeリーダー" - -msgctxt "name" -msgid "G-code Writer" -msgstr "G-codeライター" - msgctxt "@label" msgid "G-code flavor" msgstr "G-codeフレーバー" @@ -1921,7 +1755,7 @@ msgstr "はじめに" msgctxt "@label" msgid "Global" -msgstr "" +msgstr "グローバル" msgctxt "@title:tab" msgid "Global Settings" @@ -1935,7 +1769,6 @@ msgctxt "@label" msgid "Grid Placement" msgstr "グリッドの配置" -#, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "グループ #{group_nr}" @@ -1974,7 +1807,7 @@ msgstr "接続されているすべてのプリンターを非表示にする" msgctxt "@action:button" msgid "Hide settings" -msgstr "" +msgstr "設定を非表示にする" msgctxt "@action:menu" msgid "Hide this setting" @@ -2012,10 +1845,6 @@ msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "お持ちのプリンターがリストにない場合、ネットワーク・プリンティング・トラブルシューティング・ガイドを読んでください" -msgctxt "name" -msgid "Image Reader" -msgstr "画像リーダー" - msgctxt "@action:button" msgid "Import" msgstr "取り込む" @@ -2054,7 +1883,7 @@ msgstr "このパッケージを使用するには、Curaを再始動する必 msgctxt "@option:radio" msgid "Include UltiMaker account name" -msgstr "" +msgstr "UltiMakerアカウント名を含める" msgctxt "@label" msgid "Infill" @@ -2300,10 +2129,6 @@ msgctxt "@info:tooltip" msgid "Left View" msgstr "左ビュー" -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "レガシーCuraプロファイルリーダー" - msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "問題が発生していることを開発者にお知らせください。" @@ -2384,10 +2209,6 @@ msgctxt "@title:groupbox" msgid "Logs" msgstr "ログ" -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "クラッシュレポーターで使用できるように、特定のイベントをログに記録します" - msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "プリンターへの接続が切断されました" @@ -2396,10 +2217,6 @@ msgctxt "@action" msgid "Machine Settings" msgstr "プリンターの設定" -msgctxt "name" -msgid "Machine Settings Action" -msgstr "プリンターの設定アクション" - msgctxt "@backuplist:label" msgid "Machines" msgstr "プリンタ" @@ -2416,10 +2233,6 @@ msgctxt "@item:inlistbox" msgid "Makerbot Printfile" msgstr "Makerbotプリントファイル" -msgctxt "name" -msgid "Makerbot Printfile Writer" -msgstr "Makerbotプリントファイルライター" - msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "MakerbotWriterが指定されたパスに保存できませんでした。" @@ -2476,14 +2289,6 @@ msgctxt "@text" msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." msgstr "UltiMaker Curaのプラグインと材料プロファイルはここで管理します。プラグインを常に最新の状態に保ち、セットアップのバックアップを定期的に取るようにしてください。" -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "アプリケーションの拡張機能を管理し、UltiMakerウェブサイトから拡張機能を参照できるようにします。" - -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "Ultimakerのネットワーク接属できるプリンターのネットワーク接続を管理します。" - msgctxt "@label" msgid "Manufacturer" msgstr "製造元" @@ -2496,10 +2301,6 @@ msgctxt "@label" msgid "Marketplace" msgstr "マーケットプレース" -msgctxt "name" -msgid "Marketplace" -msgstr "マーケットプレース" - msgctxt "@action:label" msgid "Material" msgstr "材料" @@ -2516,10 +2317,6 @@ msgctxt "@label:listbox" msgid "Material Color" msgstr "フィラメントの色" -msgctxt "name" -msgid "Material Profiles" -msgstr "フィラメントプロファイル" - msgctxt "@label" msgid "Material Type" msgstr "フィラメントタイプ" @@ -2564,10 +2361,6 @@ msgctxt "@action:label" msgid "Mode" msgstr "モード" -msgctxt "name" -msgid "Model Checker" -msgstr "モデルチェッカー" - msgctxt "@info:title" msgid "Model Errors" msgstr "モデルエラー" @@ -2584,10 +2377,6 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "モニター" -msgctxt "name" -msgid "Monitor Stage" -msgstr "モニターステージ" - msgctxt "@action:button" msgid "Monitor print" msgstr "プリントをモニタリング" @@ -2661,7 +2450,6 @@ msgctxt "@info:title" msgid "Network error" msgstr "ネットワークエラー" -#, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" msgstr "%sの新しい安定版ファームウェアが利用可能です" @@ -2674,7 +2462,6 @@ msgctxt "@label" msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." msgstr "新しいUltiMakerプリンターは、Digital Factoryに接続してリモートで監視できます。" -#, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." msgstr "お使いの{machine_name}について新機能またはバグ修正が利用できる可能性があります。まだ最新のバージョンでない場合は、プリンターのファームウェアをバージョン{latest_version}に更新することを推奨します。" @@ -2720,7 +2507,6 @@ msgctxt "@label" msgid "No cost estimation available" msgstr "コスト予測がありません" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "ファイル{0}にはカスタムプロファイルがインポートされていません" @@ -2759,7 +2545,7 @@ msgstr "現在のフィルターでは、結果が見つかりません" msgctxt "@label" msgid "No specific value has been set" -msgstr "" +msgstr "具体的な値は設定されていません" msgctxt "@label" msgid "No time estimation available" @@ -2835,7 +2621,7 @@ msgstr "エクストルーダーの数" msgctxt "@action:button" msgid "OK" -msgstr "" +msgstr "OK" msgctxt "@label" msgid "OS language" @@ -2857,14 +2643,13 @@ msgctxt "@label" msgid "Only Show Top Layers" msgstr "トップのレイヤーを表示する" -#, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "一度に一つのG-codeしか読み取れません。{0}の取り込みをスキップしました。" msgctxt "@message" msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." -msgstr "" +msgstr "おっと!スライス処理中に予期しないエラーが発生しました。設定でデータ共有を無効にしていない場合は,分析用にクラッシュログを自動的に受信しますのでご安心ください。さらに支援を行うために,問題トラッカーでプロジェクトの詳細を共有することを検討してください。" msgctxt "@action:button" msgid "Open" @@ -2896,11 +2681,11 @@ msgstr "プロジェクトファイルを開く" msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Open Universal Cura Project (UCP)" -msgstr "" +msgstr "Universal Cura Project(UCP)を開く" msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Open Universal Cura Project (UCP) file" -msgstr "" +msgstr "Universal Cura Project(UCP)ファイルを開く" msgctxt "@action:label" msgid "Open With" @@ -2908,7 +2693,7 @@ msgstr "開く" msgctxt "@action:button" msgid "Open as UCP" -msgstr "" +msgstr "UCPとして開く" msgctxt "@action:button" msgid "Open as project" @@ -3030,10 +2815,6 @@ msgctxt "@label" msgid "Per Model Settings" msgstr "各モデル設定" -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "各モデル設定ツール" - msgid "Perspective" msgstr "パースペクティブ表示" @@ -3070,14 +2851,9 @@ msgid "Please give the required permissions when authorizing this application." msgstr "このアプリケーションの許可において必要な権限を与えてください。" msgctxt "@info" -msgid "" -"Please make sure your printer has a connection:\n" -"- Check if the printer is turned on.\n" -"- Check if the printer is connected to the network.\n" -"- Check if you are signed in to discover cloud-connected printers." -msgstr "" -"プリンタが接続されているか確認し、以下を行います。\n" -"- プリンタの電源が入っているか確認します。\n" +msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." +msgstr "プリンタが接続されているか確認し、以下を行います。" +"- プリンタの電源が入っているか確認します。" "- プリンタがネットワークに接続されているかどうかを確認します。- クラウドに接続されたプリンタを検出するためにサインインしているかどうかを確認します。" msgctxt "@text" @@ -3105,15 +2881,10 @@ msgid "Please remove the print" msgstr "造形物を取り出してください" msgctxt "@info:status" -msgid "" -"Please review settings and check if your models:\n" -"- Fit within the build volume\n" -"- Are assigned to an enabled extruder\n" -"- Are not all set as modifier meshes" -msgstr "" -"設定を見直し、モデルが次の状態かどうかを確認してください。\n" -"- 造形サイズに合っている\n" -"- 有効なエクストルーダーに割り当てられている\n" +msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" +msgstr "設定を見直し、モデルが次の状態かどうかを確認してください。" +"- 造形サイズに合っている" +"- 有効なエクストルーダーに割り当てられている" "- すべてが修飾子メッシュとして設定されているわけではない" msgctxt "@label" @@ -3126,7 +2897,7 @@ msgstr "検証済みのUltiMaker Cura Enterprise用プラグインおよび材 msgctxt "@info:tooltip" msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." -msgstr "" +msgstr "匿名でないデータの送信を許可するには,UltiMakerアカウントにサインインしてください。" msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." @@ -3168,10 +2939,6 @@ msgctxt "@item:inmenu" msgid "Post Processing" msgstr "後処理" -msgctxt "name" -msgid "Post Processing" -msgstr "後処理" - msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "プラグイン処理後" @@ -3188,10 +2955,6 @@ msgctxt "@item:inmenu" msgid "Prepare" msgstr "準備する" -msgctxt "name" -msgid "Prepare Stage" -msgstr "ステージの準備" - msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "準備中..." @@ -3212,10 +2975,6 @@ msgctxt "@item:inmenu" msgid "Preview" msgstr "プレビュー" -msgctxt "name" -msgid "Preview Stage" -msgstr "プレビューステージ" - msgctxt "@tooltip" msgid "Prime Tower" msgstr "プライムタワー" @@ -3414,7 +3173,6 @@ msgctxt "@title:column" msgid "Profile settings" msgstr "プロファイル設定" -#, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "プロファイル{0}は不特定なファイルまたは破損があります。" @@ -3439,22 +3197,18 @@ msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "プログラミング用語" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "プロジェクトファイル {0} に不明なマシンタイプ {1} があります。マシンをインポートできません。代わりにモデルをインポートします。" -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "プロジェクトファイル{0}は破損しています:{1}。" -#, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." msgstr "プロジェクトファイル{0}はこのバージョンのUltiMaker Curaでは認識できないプロファイルを使用して作成されています。" -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "プロジェクトファイル{0}が突然アクセスできなくなりました:{1}。" @@ -3463,147 +3217,42 @@ msgctxt "@label" msgid "Properties" msgstr "プロパティ" -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "ファームウェアアップデートのためのマシン操作を提供します。" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Curaでモニターステージを提供します。" +msgctxt "@label" +msgid "PyQt version" +msgstr "PyQtバージョン" -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "ノーマルなソリットメッシュビューを供給する。" +msgctxt "@Label Description for application dependency" +msgid "Python Error tracking library" +msgstr "Pythonエラー追跡ライブラリー" -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Curaで準備ステージを提供します。" +msgctxt "@label Description for application dependency" +msgid "Python bindings for Clipper" +msgstr "ClipperのPythonバインディング" -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Curaでプレビューステージを提供します。" +msgctxt "@label Description for application component" +msgid "Python bindings for libnest2d" +msgstr "libnest2dのPythonバインディング" -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "プリンターの設定を変更(印刷ボリューム、ノズルサイズ、その他)" +msgctxt "@label" +msgid "Qt version" +msgstr "Qtバージョン" -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "XMLベースフィラメントのプロファイルを読み書きするための機能を供給する。" +msgctxt "@info:status" +msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." +msgstr "クオリティータイプ「{0}」は、現在アクティブなプリンター定義「{1}」と互換性がありません。" -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "UltiMakerのプリンターのアクションを供給する(ベッドレベリングウィザード、アップグレードの選択、他)" +msgctxt "@info:title" +msgid "Queue Full" +msgstr "キューがいっぱい" -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "取り外し可能なドライブホットプラギング及びサポートの書き出しの供給。" - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Curaプロファイルを書き出すためのサポートを供給する。" - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Curaプロファイルを取り込むためのサポートを供給する。" - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "g-codeファイルからプロファイルを読み込むサポートを供給する。" - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "レガシーCura Versionsからプロファイルを取り込むためのサポートを供給する。" - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "3MFファイルを読むこむためのサポートを供給する。" - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "AMFファイルの読込みをサポートしています。" - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Ultimakerフォーマットパッケージの読み込みをサポートします。" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "X3Dファイルを読むこむためのサポートを供給する。" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "モデルファイルを読み込むためのサポートを供給します。" - -msgctxt "description" -msgid "Provides support for writing 3MF and UCP files." -msgstr "" - -msgctxt "description" -msgid "Provides support for writing MakerBot Format Packages." -msgstr "MakerBotフォーマットパッケージを書き込むためのサポートを提供します。" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Ultimakerフォーマットパッケージへの書き込みをサポートします。" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "各モデル設定を与える。" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "透視ビューイング。" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "CuraEngineスライシングバックエンドにリンクを供給する。" - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "スライスされたレイヤーデータのプレビューを提供します。" - -msgctxt "@label" -msgid "PyQt version" -msgstr "PyQtバージョン" - -msgctxt "@Label Description for application dependency" -msgid "Python Error tracking library" -msgstr "Pythonエラー追跡ライブラリー" - -msgctxt "@label Description for application dependency" -msgid "Python bindings for Clipper" -msgstr "ClipperのPythonバインディング" - -msgctxt "@label Description for application component" -msgid "Python bindings for libnest2d" -msgstr "libnest2dのPythonバインディング" - -msgctxt "@label" -msgid "Qt version" -msgstr "Qtバージョン" - -#, python-brace-format -msgctxt "@info:status" -msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." -msgstr "クオリティータイプ「{0}」は、現在アクティブなプリンター定義「{1}」と互換性がありません。" - -msgctxt "@info:title" -msgid "Queue Full" -msgstr "キューがいっぱい" - -msgctxt "@label" -msgid "Queued" -msgstr "順番を待つ" +msgctxt "@label" +msgid "Queued" +msgstr "順番を待つ" msgctxt "@info:button, %1 is the application name" msgid "Quit %1" msgstr "%1を終了する" -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "圧縮ファイルからG-codeを読み取ります。" - msgctxt "@button" msgid "Recommended" msgstr "推奨" @@ -3656,10 +3305,6 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "リムーバブルドライブ" -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "取り外し可能なドライブアウトプットデバイスプラグイン" - msgctxt "@action:button" msgid "Remove" msgstr "取り除く" @@ -3782,11 +3427,11 @@ msgstr "Curaプロジェクトを保存する" msgctxt "@option" msgid "Save Cura project and .makerbot print file" -msgstr "" +msgstr "Cura Projectと.makerbot印刷ファイルを保存する" msgctxt "@option" msgid "Save Cura project and .ufp print file" -msgstr "" +msgstr " Cura Projectと.ufp印刷ファイルを保存する" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3814,7 +3459,7 @@ msgstr "新しいプロファイルを保存" msgctxt "@action:button" msgid "Save project" -msgstr "" +msgstr "プロジェクトの保存" msgctxt "@text" msgid "Save the .umm file on a USB stick." @@ -3824,12 +3469,10 @@ msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "リムーバブルドライブに保存" -#, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "リムーバブルドライブ{0}に保存" -#, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "リムーバブルドライブ{0}に {1}として保存" @@ -3838,7 +3481,6 @@ msgctxt "@info:title" msgid "Saving" msgstr "保存中" -#, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "リムーバブルドライブ{0}に保存中" @@ -3921,15 +3563,15 @@ msgstr "クラッシュ報告をUltiMakerに送信する" msgctxt "@info:tooltip" msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." -msgstr "" +msgstr "登録したUltiMakerアカウント名とプロジェクト名を含むクラッシュレポートを,UltiMaker Sentryに送信します。実際のモデルデータは送信されません。" msgctxt "@info:tooltip" msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." -msgstr "" +msgstr "個人を特定できる情報やモデルデータを含まないクラッシュレポートを,UltiMakerに送信します。" msgctxt "@option:check" msgid "Send engine crash reports" -msgstr "" +msgstr "エンジンクラッシュレポートを送信" msgctxt "@action:button" msgid "Send report" @@ -3943,10 +3585,6 @@ msgctxt "@info:title" msgid "Sending materials to printer" msgstr "プリンターに材料を送信しています" -msgctxt "name" -msgid "Sentry Logger" -msgstr "監視ロガー" - msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "シリアルコミュニケーションライブラリー" @@ -3985,7 +3623,7 @@ msgstr "設定" msgctxt "@action:label" msgid "Settings Loaded from UCP file" -msgstr "" +msgstr "UCPファイルからロードされた設定" msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" @@ -4057,7 +3695,7 @@ msgstr "デスクトップまたは外部アプリケーションから開いた msgctxt "@info:tooltip" msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." -msgstr "" +msgstr "スライスのクラッシュは自動的にUltimakerに報告されますか?明示的な許可がない限り,モデル,IPアドレス,その他の個人を特定できる情報が送信または保存されることはありません。" msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" @@ -4117,7 +3755,7 @@ msgstr "詳しいクラッシュ報告を表示する" msgctxt "@action:button" msgid "Show settings" -msgstr "" +msgstr "設定を表示" msgctxt "@option:check" msgid "Show summary dialog when saving project" @@ -4155,10 +3793,6 @@ msgctxt "@label" msgid "Sign in to the UltiMaker platform" msgstr "UltiMakerのプラットフォームにサインイン" -msgctxt "name" -msgid "Simulation View" -msgstr "シミュレーションビュー" - msgctxt "@tooltip" msgid "Skin" msgstr "スキン" @@ -4187,10 +3821,6 @@ msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "セッティングを変更すると自動にスライスします。" -msgctxt "name" -msgid "Slice info" -msgstr "スライスインフォメーション" - msgctxt "@message:title" msgid "Slicing failed" msgstr "スライスに失敗しました" @@ -4205,23 +3835,15 @@ msgstr "スムージング" msgctxt "@label" msgid "Solid" -msgstr "" - -msgctxt "name" -msgid "Solid View" -msgstr "ソリッドビュー" +msgstr "固体" msgctxt "@item:inmenu" msgid "Solid view" msgstr "ソリッドビュー" msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "" -"いくらかの非表示設定は通常の計算された値と異なる値を使用します。\n" +msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." +msgstr "いくらかの非表示設定は通常の計算された値と異なる値を使用します。" "表示されるようにクリックしてください。" msgctxt "@info:status" @@ -4237,12 +3859,8 @@ msgid "Some setting-values defined in %1 were overridden." msgstr "%1で定義された一部の設定値が上書きされました。" msgctxt "@tooltip" -msgid "" -"Some setting/override values are different from the values stored in the profile.\n" -"\n" -"Click to open the profile manager." -msgstr "" -"いくらかの設定プロファイルにある値とことなる場合無効にします。\n" +msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." +msgstr "いくらかの設定プロファイルにある値とことなる場合無効にします。" "プロファイルマネージャーをクリックして開いてください。" msgctxt "@action:label" @@ -4313,10 +3931,6 @@ msgctxt "@label" msgid "Strength" msgstr "強度" -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "不特定なスライス情報を提出。プレファレンスの中で無効になる可能性もある。" - msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "フィラメントの%1への書き出しが完了ました" @@ -4325,18 +3939,17 @@ msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "フィラメント%1の取り込みに成功しました" -#, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "プロファイル{0}の取り込みが完了しました。" msgctxt "@action:label" msgid "Suggested Material settings" -msgstr "" +msgstr "推奨される材料の設定" msgctxt "@action:label" msgid "Suggested Profile settings" -msgstr "" +msgstr "推奨されるプロフィールの設定" msgctxt "@action:title" msgid "Summary - Cura Project" @@ -4344,11 +3957,11 @@ msgstr "サマリーCuraプロジェクト" msgctxt "@action:title Don't translate 'Universal Cura Project'" msgid "Summary - Open Universal Cura Project (UCP)" -msgstr "" +msgstr "概要 - Universal Cura Project(UCP)を開く" msgctxt "@action:title Don't translate 'Universal Cura Project'" msgid "Summary - Universal Cura Project" -msgstr "" +msgstr "概要 - Universal Cura Project" msgctxt "@label" msgid "Support" @@ -4362,10 +3975,6 @@ msgctxt "@label" msgid "Support Blocker" msgstr "サポートブロッカー" -msgctxt "name" -msgid "Support Eraser" -msgstr "サポート消去機能" - msgctxt "@tooltip" msgid "Support Infill" msgstr "サポートイルフィル" @@ -4531,7 +4140,6 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "サポート材を印刷するためのエクストルーダー。複数のエクストルーダーがある場合に使用されます。" -#, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "{0} は既に存在します。ファイルを上書きしますか?" @@ -4594,21 +4202,10 @@ msgid "The nozzle inserted in this extruder." msgstr "ノズルが入ったエクストルーダー。" msgctxt "@label" -msgid "" -"The pattern of the infill material of the print:\n" -"\n" -"For quick prints of non functional model choose line, zig zag or lightning infill.\n" -"\n" -"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" -"\n" -"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "" -"プリントのインフィル材料のパターン:\n" -"\n" -"非機能モデルをクイックプリントする場合は、ライン、ジグザグ、ライトニングインフィルから選択します。 \n" -"\n" -"応力があまりかからない機能部品の場合は、グリッド、トライアングル、トライヘキサゴンをお勧めします。\n" -"\n" +msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "プリントのインフィル材料のパターン:" +"非機能モデルをクイックプリントする場合は、ライン、ジグザグ、ライトニングインフィルから選択します。 " +"応力があまりかからない機能部品の場合は、グリッド、トライアングル、トライヘキサゴンをお勧めします。" "複数の方向に高い強度を必要とする機能的な3Dプリントの場合は、キュービック、キュービックサブディビジョン、クォーターキュービック、オクテット、ジャイロイドを使用します。" msgctxt "@info:tooltip" @@ -4729,7 +4326,7 @@ msgstr "%1 が認識されていないためこの構成は利用できません msgctxt "@text:window" msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" -msgstr "" +msgstr "これはCura Universalのプロジェクトファイルです。Cura Project,またはCura Universal Projectとして開きますか?それともそこからモデルをインポートしますか?" msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" @@ -4764,7 +4361,6 @@ msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "このプリンターは %1 プリンターのループのホストプリンターです。" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "このプロファイル{0}には、正しくないデータが含まれているため、インポートできません。" @@ -4778,12 +4374,8 @@ msgid "This project contains materials or plugins that are currently not install msgstr "このプロジェクトには、現在Curaにインストールされていない素材またはプラグインが含まれています。
                                      不足しているパッケージをインストールすると、プロジェクトが再度開きます。" msgctxt "@label" -msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." -msgstr "" -"この設定にプロファイルと異なった値があります。\n" +msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." +msgstr "この設定にプロファイルと異なった値があります。" "プロファイルの値を戻すためにクリックしてください。" msgctxt "@item:tooltip" @@ -4800,12 +4392,8 @@ msgid "This setting is always shared between all extruders. Changing it here wil msgstr "この設定は常に全てのエクストルーダーに共有されています。ここですべてのエクストルーダーの数値を変更できます。" msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "" -"このセッティングは通常計算されます、今は絶対値に固定されています。\n" +msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." +msgstr "このセッティングは通常計算されます、今は絶対値に固定されています。" "計算された値に変更するためにクリックを押してください。" msgctxt "@label" @@ -4818,11 +4406,11 @@ msgstr "この設定はエクストルーダー固有の競合する値から取 msgctxt "@tooltip Don't translate 'Universal Cura Project'" msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." -msgstr "" +msgstr "この設定は,Universal Cura Projectへのエクスポート中に適切に機能しない可能性があります。ユーザーは自己責任で追加するように求められます。" msgctxt "@tooltip Don't translate 'Universal Cura Project'" msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." -msgstr "" +msgstr "この設定は,Universal Cura Projectへのエクスポート中に適切に機能しない可能性があります。ユーザーは自己責任で追加するように求められます。" msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" @@ -4840,7 +4428,6 @@ msgctxt "@text" msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." msgstr "材料プロファイルをDigital Factoryに接続されているすべてのプリンターと自動的に同期するには、Curaにサインインしている必要があります。" -#, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "接続を確立するには、{website_link}にアクセスしてください" @@ -4853,7 +4440,6 @@ msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." msgstr "印刷ジョブをネットワークを介してプリンターに直接送信するには、ネットワークケーブルを使用してプリンターを確実にネットワークに接続するか、プリンターを WIFI ネットワークに接続します。Cura をプリンタに接続していない場合でも、USB ドライブを使用して g コードファイルをプリンターに転送することはできます。" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "{printer_name}を完全に削除するには、{digital_factory_link}にアクセスしてください" @@ -4902,10 +4488,6 @@ msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "適切なデータまたはメタデータがないのにCuraバックアップをリストアしようとしました。" -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimeshリーダー" - msgctxt "@button" msgid "Troubleshooting" msgstr "トラブルシューティング" @@ -4926,22 +4508,10 @@ msgctxt "@label" msgid "Type" msgstr "タイプ" -msgctxt "name" -msgid "UFP Reader" -msgstr "UFP リーダー" - -msgctxt "name" -msgid "UFP Writer" -msgstr "UFPライター" - msgctxt "@item:inmenu" msgid "USB printing" msgstr "USBプリンティング" -msgctxt "name" -msgid "USB printing" -msgstr "USBプリンティング" - msgctxt "@button" msgid "UltiMaker Account" msgstr "UltiMakerアカウント" @@ -4958,10 +4528,6 @@ msgctxt "@item:inlistbox" msgid "UltiMaker Format Package" msgstr "UltiMakerフォーマットパッケージ" -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "Ultimakerネットワーク接続" - msgctxt "@info" msgid "UltiMaker Verified Package" msgstr "UltiMaker検証済みパッケージ" @@ -4970,10 +4536,6 @@ msgctxt "@info" msgid "UltiMaker Verified Plug-in" msgstr "UltiMaker検証済みプラグイン" -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "UltiMakerプリンターのアクション" - msgctxt "@button" msgid "UltiMaker printer" msgstr "UltiMakerプリンター" @@ -4986,10 +4548,6 @@ msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - msgctxt "@info:status" msgid "Unable to add the profile." msgstr "プロファイルを追加できません。" @@ -4998,18 +4556,13 @@ msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "全ての造形物の造形サイズに対し、適切な位置が確認できません" -#, python-brace-format msgctxt "@info:plugin_failed" msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" msgstr "以下のローカルEnginePluginサーバーの実行可能ファイルが見つかりません:{self._plugin_id}" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Unable to kill running EnginePlugin: {self._plugin_id}\n" -"Access is denied." -msgstr "" -"実行中のEnginePluginを強制終了できません:{self._plugin_id}\n" +msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." +msgstr "実行中のEnginePluginを強制終了できません:{self._plugin_id}" "アクセスが拒否されました。" msgctxt "@info" @@ -5032,12 +4585,10 @@ msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "プライムタワーまたはプライム位置が無効なためスライスできません。" -#, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "無効な Extruder %s に関連付けられている造形物があるため、スライスできません。" -#, python-brace-format msgctxt "@info:status" msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" msgstr "モデル別の設定があるためスライスできません。1つまたは複数のモデルで以下の設定にエラーが発生しました:{error_labels}" @@ -5046,7 +4597,6 @@ msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "選ばれたプリンターまたは選ばれたプリント構成が異なるため進行中の材料にてスライスを完了できません。" -#, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "現在の設定でスライスが完了できません。以下の設定にエラーがあります: {0}" @@ -5055,10 +4605,9 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "新しいサインインプロセスを開始できません。別のサインインの試行がアクティブなままになっていないか確認します。" -#, python-brace-format msgctxt "@info:error" msgid "Unable to write to file: {0}" -msgstr "" +msgstr "ファイルに書き込めません:{0}" msgctxt "@label:status" msgid "Unavailable" @@ -5082,11 +4631,11 @@ msgstr "ユニット" msgctxt "@item:inlistbox" msgid "Universal Cura Project" -msgstr "" +msgstr "Universal Cura Project" msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." -msgstr "" +msgstr "Universal Cura Projectファイルは,位置データと選択した設定を保持したまま,さまざまな3Dプリンタで印刷することができます。エクスポートすると,ビルドプレート上に存在するすべてのモデルが,現在の位置,方向,スケールとともに含まれます。適切な印刷を保証するために,エクストルーダーごとまたはモデルごとにどの設定を含めるかを選択することもできます。" msgctxt "@label Description for development tool" msgid "Universal build system configuration" @@ -5108,7 +4657,6 @@ msgctxt "@label:property" msgid "Unknown Package" msgstr "不明なパッケージ" -#, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "プリントジョブのアップロード時の不明なエラーコード:{0}" @@ -5173,265 +4721,49 @@ msgctxt "@button" msgid "Updating..." msgstr "更新中..." -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Cura 2.1 からCura 2.2のコンフィグレーションアップグレート。" +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "カスタムファームウェアをアップロードする" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Cura 2.2 からCura 2.4のコンフィグレーションアップグレート。" +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "プリントジョブをプリンターにアップロードしています。" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Cura 2.5 からCura 2.6のコンフィグレーションアップグレート。" +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "バックアップをアップロードしています..." -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Cura 2.6 からCura 2.7のコンフィグレーションアップグレート。" +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "Curaの単一インスタンスを使用" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Cura 2.7からCura 3.0のコンフィグレーションアップグレート。" +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "この材料の組み合わせの接着に接着材を使用する。" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Cura 3.0からCura 3.1のコンフィグレーションアップグレート。" +msgctxt "@label" +msgid "User Agreement" +msgstr "ユーザー用使用許諾契約" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Cura 3.2からCura 3.3のコンフィグレーションアップグレート。" +msgctxt "@label Description for application dependency" +msgid "Utility functions, including an image loader" +msgstr "画像ローダーなどを含むユーティリティ機能" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Cura 3.3からCura 3.4のコンフィグレーションアップグレート。" +msgctxt "@label Description for application dependency" +msgid "Utility library, including Voronoi generation" +msgstr "ボロノイ図生成を含むユーティリティライブラリ" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Cura 3.4 から Cura 3.5 のコンフィグレーションアップグレート。" +msgctxt "@title:column" +msgid "Value" +msgstr "値" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Cura 3.5 から Cura 4.0 のコンフィグレーションアップグレート。" +msgctxt "@button" +msgid "View printers in Digital Factory" +msgstr "Digital Factoryでプリンターを表示する" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Cura 4.0 から Cura 4.1 のコンフィグレーションアップグレート。" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "コンフィギュレーションを Cura 4.1 から Cura 4.2 にアップグレートする。" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Cura 4.11からCura 4.12に設定をアップグレードします。" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Cura 4.13からCura 5.0に設定をアップグレードします。" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Cura 4.2からCura 4.3の設定をアップグレードします。" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Cura 4.3からCura 4.4へのコンフィグレーションアップグレート。" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Cura 4.4からCura 4.5に設定をアップグレードします。" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Cura 4.5からCura 4.6に設定をアップグレードします。" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "構成をCura 4.6.0からCura 4.6.2に更新します。" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "構成をCura 4.6.2からCura 4.7に更新します。" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Cura 4.7からCura 4.8に設定をアップグレードします。" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Cura 4.8からCura 4.9に設定をアップグレードします。" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Cura 4.9からCura 4.10に設定をアップグレードします。" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Cura 5.2からCura 5.3のコンフィグレーションアップグレート。" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "構成をCura 5.3からCura 5.4にアップグレードします。" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "構成をCura 5.4からCura 5.5にアップグレードします。" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." -msgstr "" - -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "カスタムファームウェアをアップロードする" - -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "プリントジョブをプリンターにアップロードしています。" - -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "バックアップをアップロードしています..." - -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Curaの単一インスタンスを使用" - -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "この材料の組み合わせの接着に接着材を使用する。" - -msgctxt "@label" -msgid "User Agreement" -msgstr "ユーザー用使用許諾契約" - -msgctxt "@label Description for application dependency" -msgid "Utility functions, including an image loader" -msgstr "画像ローダーなどを含むユーティリティ機能" - -msgctxt "@label Description for application dependency" -msgid "Utility library, including Voronoi generation" -msgstr "ボロノイ図生成を含むユーティリティライブラリ" - -msgctxt "@title:column" -msgid "Value" -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "2.1 から2.2にバージョンアップグレート" - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "2.2 から2.4にバージョンアップグレート" - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "2.5から2.6にバージョンアップグレート" - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "2.6から2.7にバージョンアップグレート" - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "2.7から3.0にバージョンアップグレート" - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "3.0から3.1にバージョンアップグレート" - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "3.2から3.3にバージョンアップグレート" - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "3.3から3.4にバージョンアップグレート" - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "3.4 から 3.5 にバージョンアップグレート" - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "3.5 から 4.0 にバージョンアップグレート" - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "4.0 から 4.1 にバージョンアップグレート" - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "4.0 から 4.1 にバージョンアップグレート" - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "バージョン4.11から4.12へのアップグレード" - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "バージョン4.13から5.0へのアップグレード" - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "4.2から4.3にバージョンをアップグレート" - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "4.3から4.4にバージョンアップグレート" - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "4.4から4.5にバージョンアップグレート" - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "バージョン4.5から4.6へのアップグレード" - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "4.6.0から4.6.2へのバージョン更新" - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "4.6.2から4.7へのバージョン更新" - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "バージョン4.7から4.8へのアップグレード" - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "バージョン4.8から4.9へのアップグレード" - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "バージョン4.9から4.10へのアップグレード" - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "5.2から5.3にバージョンアップグレート" - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "5.3から5.4へのバージョンアップ" - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "5.4から5.5へのバージョンアップ" - -msgctxt "name" -msgid "Version Upgrade 5.6 to 5.7" -msgstr "" - -msgctxt "@button" -msgid "View printers in Digital Factory" -msgstr "Digital Factoryでプリンターを表示する" - -msgctxt "@label" -msgid "View type" -msgstr "タイプ表示" +msgctxt "@label" +msgid "View type" +msgstr "タイプ表示" msgctxt "@label link to technical assistance" msgid "View user manuals online" @@ -5477,7 +4809,6 @@ msgctxt "@info:title" msgid "Warning" msgstr "警告" -#, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "警告:現在の構成ではクオリティータイプ「{0}」を使用できないため、プロファイルは表示されません。このクオリティータイプを使用できる材料/ノズルの組み合わせに切り替えてください。" @@ -5504,7 +4835,7 @@ msgstr "どのプリンターをセットアップしますか?" msgctxt "@info:tooltip" msgid "What type of camera navigation should be used?" -msgstr "" +msgstr "どのタイプのカメラナビゲーションを使用する必要がありますか?" msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" @@ -5542,14 +4873,6 @@ msgctxt "@action:label" msgid "Width (mm)" msgstr "幅(mm)" -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "圧縮ファイルにG-codeを書き込みます。" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "ファイルにG-codeを書き込みます。" - msgctxt "@label" msgid "X (Width)" msgstr "X(幅)" @@ -5562,10 +4885,6 @@ msgctxt "@label" msgid "X min" msgstr "X分" -msgctxt "name" -msgid "X-Ray View" -msgstr "透視ビュー" - msgctxt "@item:inlistbox" msgid "X-Ray view" msgstr "透視ビューイング" @@ -5578,10 +4897,6 @@ msgctxt "@item:inlistbox" msgid "X3D File" msgstr "X3Dファイル" -msgctxt "name" -msgid "X3D Reader" -msgstr "X3Dリーダー" - msgctxt "@label" msgid "Y (Depth)" msgstr "Y (奥行き)" @@ -5599,30 +4914,19 @@ msgid "Yes" msgstr "はい" msgctxt "@label" -msgid "" -"You are about to remove all printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr "" -"Curaからすべてのプリンターを削除しようとしています。この操作は元に戻せません。\n" +msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgstr "Curaからすべてのプリンターを削除しようとしています。この操作は元に戻せません。" "続行してもよろしいですか?" -#, python-brace-format msgctxt "@label" -msgid "" -"You are about to remove {0} printer from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgid_plural "" -"You are about to remove {0} printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr[0] "" -"Curaから{0}台のプリンターを削除しようとしています。この操作は元に戻せません。\n" -"続行してもよろしいですか?" +msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgstr[0] "Curaから{0}台のプリンターを削除しようとしています。この操作は元に戻せません。\n続行してもよろしいですか?" msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "Ultimaker Connectを実行していないプリンターに接続しようとしています。プリンターを最新のファームウェアに更新してください。" -#, python-brace-format msgctxt "@info:status" msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." msgstr "{0}に接続を試みていますが、これはグループのホストではありません。グループホストとして設定するには、ウェブページを参照してください。" @@ -5633,9 +4937,8 @@ msgstr "現在バックアップは存在しません。[今すぐバックア msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "" -"一部のプロファイル設定がカスタマイズされています。\n" -"これらの変更された設定をプロファイルの切り替え後も維持しますか?\n" +msgstr "一部のプロファイル設定がカスタマイズされています。" +"これらの変更された設定をプロファイルの切り替え後も維持しますか?" "変更を破棄して'%1'からデフォルトの設定を読み込むこともできます。" msgctxt "@label" @@ -5666,13 +4969,9 @@ msgctxt "@info" msgid "Your new printer will automatically appear in Cura" msgstr "新しいプリンターがUltiMaker Curaに自動的に表示されます" -#, python-brace-format msgctxt "@info:status" -msgid "" -"Your printer {printer_name} could be connected via cloud.\n" -" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "" -"Your printer {printer_name} could be connected via cloud.\n" +msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "Your printer {printer_name} could be connected via cloud." " Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" msgctxt "@label" @@ -5721,7 +5020,7 @@ msgstr "mm" msgctxt "@label" msgid "s" -msgstr "" +msgstr "秒" msgctxt "@info:status" msgid "today" @@ -5735,7 +5034,6 @@ msgctxt "@label" msgid "version: %1" msgstr "バージョン: %1" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "次回のアカウントの同期までに{printer_name}は削除されます。" @@ -5744,21 +5042,553 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "{}プラグインのダウンロードに失敗しました" -#~ msgctxt "@label" -#~ msgid "Default" -#~ msgstr "デフォルト" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "UltiMakerネットワークプリンタへのネットワーク接続を管理します。" + +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "Ultimakerネットワーク接続" -#~ msgid "Provides support for exporting Cura profiles." -#~ msgstr "Curaプロファイルのエクスポートをサポートします。" +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "g-codeファイルからプロファイルを読み込むサポートを供給する。" -#~ msgctxt "description" -#~ msgid "Provides support for writing 3MF files." -#~ msgstr "3MFファイルを読むこむためのサポートを供給する。" +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "G-codeプロファイルリーダー" -#~ msgctxt "@option" -#~ msgid "Save Cura project and print file" -#~ msgstr "Curaプロジェクトとプリントファイルを保存する" +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "ノーマルなソリットメッシュビューを供給する。" -#~ msgctxt "@message" -#~ msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -#~ msgstr "予期しないエラーが発生し、スライスに失敗しました。問題追跡ツールでのバグ報告をご検討ください。" +msgctxt "name" +msgid "Solid View" +msgstr "ソリッドビュー" + +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "フローを段階的に滑らかにして高フローのジャンプを制限するためのCuraEngineプラグイン" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "3MFファイルを読むこむためのサポートを供給する。" + +msgctxt "name" +msgid "3MF Reader" +msgstr "3MFリーダー" + +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "G-codeを承認し、プリンターに送信する。またプラグインはファームウェアをアップデートできます。" + +msgctxt "name" +msgid "USB printing" +msgstr "USBプリンティング" + +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "ファームウェアアップデートをチェックする。" + +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "ファームウェアアップデートチェッカー" + +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "アプリケーションの拡張機能を管理し、UltiMakerウェブサイトから拡張機能を参照できるようにします。" + +msgctxt "name" +msgid "Marketplace" +msgstr "マーケットプレース" + +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "構成をバックアップしてリストアします。" + +msgctxt "name" +msgid "Cura Backups" +msgstr "Cura バックアップ" + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "プリンターの設定を変更(印刷ボリューム、ノズルサイズ、その他)" + +msgctxt "name" +msgid "Machine Settings Action" +msgstr "プリンターの設定アクション" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Cura 2.5 からCura 2.6のコンフィグレーションアップグレート。" + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "2.5から2.6にバージョンアップグレート" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Cura 4.7からCura 4.8に設定をアップグレードします。" + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "バージョン4.7から4.8へのアップグレード" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Cura 4.4からCura 4.5に設定をアップグレードします。" + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "4.4から4.5にバージョンアップグレート" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Cura 3.0からCura 3.1のコンフィグレーションアップグレート。" + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "3.0から3.1にバージョンアップグレート" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Cura 4.11からCura 4.12に設定をアップグレードします。" + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "バージョン4.11から4.12へのアップグレード" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "コンフィギュレーションを Cura 4.1 から Cura 4.2 にアップグレートする。" + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "4.0 から 4.1 にバージョンアップグレート" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Cura 2.6 からCura 2.7のコンフィグレーションアップグレート。" + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "2.6から2.7にバージョンアップグレート" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "構成をCura 4.6.0からCura 4.6.2に更新します。" + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "4.6.0から4.6.2へのバージョン更新" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Cura 3.3からCura 3.4のコンフィグレーションアップグレート。" + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "3.3から3.4にバージョンアップグレート" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Cura 4.8からCura 4.9に設定をアップグレードします。" + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "バージョン4.8から4.9へのアップグレード" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Cura 4.5からCura 4.6に設定をアップグレードします。" + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "バージョン4.5から4.6へのアップグレード" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Cura 4.2からCura 4.3の設定をアップグレードします。" + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "4.2から4.3にバージョンをアップグレート" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Cura 3.2からCura 3.3のコンフィグレーションアップグレート。" + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "3.2から3.3にバージョンアップグレート" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Cura 4.3からCura 4.4へのコンフィグレーションアップグレート。" + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "4.3から4.4にバージョンアップグレート" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "構成をCura 5.6からCura 5.7にアップグレードします。" + +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "5.6から5.7へのバージョンアップ" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Cura 2.1 からCura 2.2のコンフィグレーションアップグレート。" + +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "2.1 から2.2にバージョンアップグレート" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "構成をCura 5.3からCura 5.4にアップグレードします。" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "5.3から5.4へのバージョンアップ" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Cura 4.9からCura 4.10に設定をアップグレードします。" + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "バージョン4.9から4.10へのアップグレード" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Cura 2.7からCura 3.0のコンフィグレーションアップグレート。" + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "2.7から3.0にバージョンアップグレート" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Cura 3.5 から Cura 4.0 のコンフィグレーションアップグレート。" + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "3.5 から 4.0 にバージョンアップグレート" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Cura 5.2からCura 5.3のコンフィグレーションアップグレート。" + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "5.2から5.3にバージョンアップグレート" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Cura 4.0 から Cura 4.1 のコンフィグレーションアップグレート。" + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "4.0 から 4.1 にバージョンアップグレート" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Cura 4.13からCura 5.0に設定をアップグレードします。" + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "バージョン4.13から5.0へのアップグレード" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Cura 3.4 から Cura 3.5 のコンフィグレーションアップグレート。" + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "3.4 から 3.5 にバージョンアップグレート" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Cura 2.2 からCura 2.4のコンフィグレーションアップグレート。" + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "2.2 から2.4にバージョンアップグレート" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "構成をCura 4.6.2からCura 4.7に更新します。" + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "4.6.2から4.7へのバージョン更新" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "構成をCura 5.4からCura 5.5にアップグレードします。" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "5.4から5.5へのバージョンアップ" + +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "G-codeファイルの読み込み、表示を許可する。" + +msgctxt "name" +msgid "G-code Reader" +msgstr "G-codeリーダー" + +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "不特定なスライス情報を提出。プレファレンスの中で無効になる可能性もある。" + +msgctxt "name" +msgid "Slice info" +msgstr "スライスインフォメーション" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "取り外し可能なドライブホットプラギング及びサポートの書き出しの供給。" + +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "取り外し可能なドライブアウトプットデバイスプラグイン" + +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "特定箇所のサポートを印刷するブロックを消去するメッシュを作成する" + +msgctxt "name" +msgid "Support Eraser" +msgstr "サポート消去機能" + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "プリント問題の可能性のあるモデルをプリント構成を確認し、解決案を提示してください。" + +msgctxt "name" +msgid "Model Checker" +msgstr "モデルチェッカー" + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Curaで準備ステージを提供します。" + +msgctxt "name" +msgid "Prepare Stage" +msgstr "ステージの準備" + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "スライスされたレイヤーデータのプレビューを提供します。" + +msgctxt "name" +msgid "Simulation View" +msgstr "シミュレーションビュー" + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "AMFファイルの読込みをサポートしています。" + +msgctxt "name" +msgid "AMF Reader" +msgstr "AMFリーダー" + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "透視ビューイング。" + +msgctxt "name" +msgid "X-Ray View" +msgstr "透視ビュー" + +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "ファームウェアアップデートのためのマシン操作を提供します。" + +msgctxt "name" +msgid "Firmware Updater" +msgstr "ファームウェアアップデーター" + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "レガシーCura Versionsからプロファイルを取り込むためのサポートを供給する。" + +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "レガシーCuraプロファイルリーダー" + +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "後処理のためにユーザーが作成したスクリプト用拡張子" + +msgctxt "name" +msgid "Post Processing" +msgstr "後処理" + +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "クラッシュレポーターで使用できるように、特定のイベントをログに記録します" + +msgctxt "name" +msgid "Sentry Logger" +msgstr "監視ロガー" + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "MakerBotフォーマットパッケージを書き込むためのサポートを提供します。" + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "Makerbotプリントファイルライター" + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Curaプロファイルを取り込むためのサポートを供給する。" + +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Curaプロファイルリーダー" + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Ultimakerフォーマットパッケージの読み込みをサポートします。" + +msgctxt "name" +msgid "UFP Reader" +msgstr "UFP リーダー" + +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "2Dの画像ファイルからプリント可能なジオメトリーを生成を可能にする。" + +msgctxt "name" +msgid "Image Reader" +msgstr "画像リーダー" + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "CuraEngineスライシングバックエンドにリンクを供給する。" + +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Curaエンジンバックエンド" + +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "圧縮ファイルにG-codeを書き込みます。" + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "圧縮G-codeライター" + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "UltiMakerのプリンターのアクションを供給する(ベッドレベリングウィザード、アップグレードの選択、他)" + +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "UltiMakerプリンターのアクション" + +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "圧縮ファイルからG-codeを読み取ります。" + +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "圧縮G-codeリーダー" + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Curaでプレビューステージを提供します。" + +msgctxt "name" +msgid "Preview Stage" +msgstr "プレビューステージ" + +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Digital Libraryに接続し、CuraでDigital Libraryからファイルを開いたりDigital Libraryにファイルを保存したりできるようにします。" + +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Curaプロファイルを書き出すためのサポートを供給する。" + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Curaプロファイルライター" + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "X3Dファイルを読むこむためのサポートを供給する。" + +msgctxt "name" +msgid "X3D Reader" +msgstr "X3Dリーダー" + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "モデルファイルを読み込むためのサポートを供給します。" + +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimeshリーダー" + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Curaでモニターステージを提供します。" + +msgctxt "name" +msgid "Monitor Stage" +msgstr "モニターステージ" + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "各モデル設定を与える。" + +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "各モデル設定ツール" + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "XMLベースフィラメントのプロファイルを読み書きするための機能を供給する。" + +msgctxt "name" +msgid "Material Profiles" +msgstr "フィラメントプロファイル" + +msgctxt "description" +msgid "Provides support for writing 3MF and UCP files." +msgstr "3MFおよびUCPファイルの書き込みのサポートを提供します。" + +msgctxt "name" +msgid "3MF Writer" +msgstr "3MFリーダー" + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Ultimakerフォーマットパッケージへの書き込みをサポートします。" + +msgctxt "name" +msgid "UFP Writer" +msgstr "UFPライター" + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "ファイルにG-codeを書き込みます。" + +msgctxt "name" +msgid "G-code Writer" +msgstr "G-codeライター" diff --git a/resources/i18n/ja_JP/fdmextruder.def.json.po b/resources/i18n/ja_JP/fdmextruder.def.json.po index ec40ad4d2ec..514cbc8b98d 100644 --- a/resources/i18n/ja_JP/fdmextruder.def.json.po +++ b/resources/i18n/ja_JP/fdmextruder.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,186 +12,114 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "密着性" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "使用するフィラメントの太さの調整 この値を使用するフィラメントの太さと一致させてください。" - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "ビルドプレート密着性" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "直径" - -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "このエクストルーダーから切り替えた時に G-Code の終了を実行します。" - msgctxt "extruder_nr label" msgid "Extruder" msgstr "エクストルーダー" +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "エクストルーダーの列。デュアルノズル印刷時に使用。" + +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "エクストルーダープリント冷却ファン" + +msgctxt "machine_extruder_cooling_fan_number description" +msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." +msgstr "このエクストルーダーに関連付けられているプリント冷却ファンの数です。デフォルト値は0(ゼロ)です。各エクストルーダーに対してプリント冷却ファンが異なる場合にのみ変更します。" + msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "エクストルーダーがG-Codeを終了する" +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "このエクストルーダーから切り替えた時に G-Code の終了を実行します。" + msgctxt "machine_extruder_end_code_duration label" msgid "Extruder End G-Code Duration" -msgstr "" +msgstr "エクストルーダー終了Gコードの時間" + +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "このエクストルーダーから切り替えるときに,終了Gコードを実行するのにかかる時間。" msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "エクストルーダーのエンドポジションの絶対値" +msgctxt "machine_extruder_end_pos_abs description" +msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." +msgstr "ヘッドの既存の認識位置よりもエクストルーダーの最終位置を絶対位置とする。" + msgctxt "machine_extruder_end_pos_x label" msgid "Extruder End Position X" msgstr "エクストルーダーエンド位置X" +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "エクストルーダーを切った際のX座標の最終位置。" + msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "エクストルーダーエンド位置Y" -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "エクストルーダープライムX位置" - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "エクストルーダープライムY位置" - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "エクストルーダーのZ座標" - -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "エクストルーダープリント冷却ファン" +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "エクストルーダーを切った際のY座標の最終位置。" msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "エクストルーダーがG-Codeを開始する" +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "このエクストルーダーに切り替えた時に G-Code の開始を実行します。" + msgctxt "machine_extruder_start_code_duration label" msgid "Extruder Start G-Code Duration" -msgstr "" +msgstr "エクストルーダー開始Gコードの時間" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "このエクストルーダーに切り替えるときに,開始Gコードを実行するのにかかる時間。" msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "エクストルーダーのスタート位置の絶対値" +msgctxt "machine_extruder_start_pos_abs description" +msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." +msgstr "ヘッドの最後の既知位置からではなく、エクストルーダーのスタート位置を絶対位置にします。" + msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "エクストルーダー スタート位置X" +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "エクストルーダーのX座標のスタート位置。" + msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "エクストルーダースタート位置Y" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "プリンター" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "プリンター詳細設定" - -msgctxt "machine_extruder_end_pos_abs description" -msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." -msgstr "ヘッドの既存の認識位置よりもエクストルーダーの最終位置を絶対位置とする。" - -msgctxt "machine_extruder_start_pos_abs description" -msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." -msgstr "ヘッドの最後の既知位置からではなく、エクストルーダーのスタート位置を絶対位置にします。" - -msgctxt "material description" -msgid "Material" -msgstr "マテリアル" - -msgctxt "material label" -msgid "Material" -msgstr "マテリアル" - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "ノズル内径" - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ノズルID" +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "エクストルーダーのY座標のスタート位置。" msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "Xノズルオフセット" -msgctxt "machine_nozzle_offset_y label" -msgid "Nozzle Y Offset" -msgstr "Yノズルオフセット" - -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "このエクストルーダーに切り替えた時に G-Code の開始を実行します。" - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "プリント開始時のノズルの位置を表すX座標。" - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "プリント開始時にノズル位置を表すY座標。" - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "印刷開始時にノズルがポジションを確認するZ座標。" - -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "エクストルーダーの列。デュアルノズル印刷時に使用。" - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "ノズルの内径。標準以外のノズルを使用する場合は、この設定を変更してください。" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "\"AA 0.4\"や\"BB 0.8\"などのノズルID。" - -msgctxt "machine_extruder_cooling_fan_number description" -msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." -msgstr "このエクストルーダーに関連付けられているプリント冷却ファンの数です。デフォルト値は0(ゼロ)です。各エクストルーダーに対してプリント冷却ファンが異なる場合にのみ変更します。" - -msgctxt "machine_extruder_end_code_duration description" -msgid "The time it takes to execute the end g-code, when switching away from this extruder." -msgstr "" - -msgctxt "machine_extruder_start_code_duration description" -msgid "The time it'll take to execute the start g-code, when switching to this extruder." -msgstr "" - -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "エクストルーダーを切った際のX座標の最終位置。" - msgctxt "machine_nozzle_offset_x description" msgid "The x-coordinate of the offset of the nozzle." msgstr "ノズルのX軸のオフセット。" -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "エクストルーダーのX座標のスタート位置。" - -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "エクストルーダーを切った際のY座標の最終位置。" +msgctxt "machine_nozzle_offset_y label" +msgid "Nozzle Y Offset" +msgstr "Yノズルオフセット" msgctxt "machine_nozzle_offset_y description" msgid "The y-coordinate of the offset of the nozzle." msgstr "ノズルのY軸のオフセット。" - -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "エクストルーダーのY座標のスタート位置。" diff --git a/resources/i18n/ja_JP/fdmprinter.def.json.po b/resources/i18n/ja_JP/fdmprinter.def.json.po index 17b5651ac2e..c26da533832 100644 --- a/resources/i18n/ja_JP/fdmprinter.def.json.po +++ b/resources/i18n/ja_JP/fdmprinter.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-12 15:10+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,1177 +12,999 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -msgctxt "prime_tower_mode description" -msgid "How to generate the prime tower:
                                      • Normal: create a bucket in which secondary materials are primed
                                      • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
                                      " -msgstr "" - -msgctxt "brim_inside_margin description" -msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." -msgstr "" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "プリンター" -msgctxt "ironing_inset description" -msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." -msgstr "モデルの端からの距離。端までアイロンをすると、端が荒れる場合があります。" +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "プリンター詳細設定" -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "フィーダーとノズルチャンバーの間でフィラメントが圧縮される量を示す係数。フィラメントスイッチの材料を移動する距離を決めるために使用されます。" +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "プリンターのタイプ" -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "トップ表面層に縦かジグザグパターンを利用する時に使用する整数の行方向のリスト。リスト内から順番に使われていき、リストの最後に達するとまた最初の設定値に戻ります。リストアイテムはカンマで区切られ、全体はカッコで括られています。デフォルトでは何も入っておらず、設定角度は (45 度と 135 度)になっています。" +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "3Dプリンターの機種名。" -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "上/下のレイヤーが線またはジグザグパターンを使う際の整数線の方向のリスト。リストの要素は、層が進行するにつれて順番に使用され、リストの終わりに達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは、従来のデフォルト角度(45度と135度)を使用する空のリストです。" +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "プリンターのバリエーションの表示" -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "使用する整数線の方向のリスト。リストの要素は、層が進行するにつれて順番に使用され、リストの終わりに達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストであり、デフォルト角度の0度を使用します。" +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "このプリンターのバリエーションを表示するかどうかは、別のjsonファイルに記述されています。" -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストとなり、デフォルトの角度を使用します(面がかなり厚い場合には45度と135度を交互に使用、それ以外では90度を使用)。" +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "G-Codeの開始" -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストとなり、デフォルトの角度を使用します(面がかなり厚い場合には45度と135度を交互に使用、それ以外では90度を使用)。" +msgctxt "machine_start_gcode description" +msgid "G-code commands to be executed at the very start - separated by \n." +msgstr "最初に実行するG-codeコマンドは、" +"で区切ります。" -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストとなり、デフォルトの角度を使用します(面がかなり厚い場合には45度と135度を交互に使用、それ以外では90度を使用)。" +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "G-codeの終了" -msgctxt "infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." -msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストです。これは、従来のデフォルト角度(線とジグザグのパターンでは45と135度、他のすべてのパターンでは45度)を使用することを意味します。" +msgctxt "machine_end_gcode description" +msgid "G-code commands to be executed at the very end - separated by \n." +msgstr "最後に実行するG-codeコマンドは、" +"で区切ります。" -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "ノズルが入ることができない領域を持つポリゴンのリスト。" +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "マテリアルGUID" -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "プリントヘッドの領域を持つポリゴンのリストは入力できません。" +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "マテリアルのGUID。これは自動的に設定されます。" -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "枝がサポートポイントからどれくらい移動できるかについての推奨値。枝は、目的地(ビルドプレートまたはモデルの平らな部分)に到達するためであればこの値に違反することができます。この値を小さくすることで、サポートをより頑丈にすることができますが、枝の量が増加します(材料の使用量やプリント時間も増加します)。" +msgctxt "material_type label" +msgid "Material Type" +msgstr "材料の種類" -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "エクストルーダーの絶対位置" +msgctxt "material_type description" +msgid "The type of material used." +msgstr "使用される材料の種類。" -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "適応レイヤー最大差分" +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "材料のブランド" -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "適応レイヤーのトポグラフィーサイズ" +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "使用されている材料のブランドです。" -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "適応レイヤー差分ステップサイズ" +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "直径" -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "適応レイヤーは、レイヤーの高さをモデルの形状に合わせて計算します。" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "使用するフィラメントの太さの調整 この値を使用するフィラメントの太さと一致させてください。" -msgctxt "infill_wall_line_count description" -msgid "" -"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" -"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "" -"インフィルエリア周辺に外壁を追加します。このような壁は、上層/底層ラインにたるみを作ります。つまり、一部の外壁材料の費用で同じ品質を実現するためには、必要な上層/底層スキンが少ないことを意味します。\n" -"この機能は、インフィルポリゴン接合と組み合わせて、構成が正しい場合、移動または引き戻しが必要なく、すべてのインフィルを1つの押出経路に接続することができます。" +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "ビルドプレート加熱待ち時間" -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "密着性" +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "開始時にビルドプレートが温度に達するまで待つコマンドを挿入するかどうか。" -msgctxt "material_adhesion_tendency label" -msgid "Adhesion Tendency" -msgstr "接着傾向" +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "ノズル加熱待ち時間" -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "壁とスキンの中央ライン(のエンドポイント)が交差する量(スキンラインのライン幅と壁の最内部に対する割合)を調整します。わずかな交差によって、壁がスキンにしっかりつながります。スキンと壁のライン幅が同じで、割合が50%を超えると、スキンが壁を通過している可能性があります。これは、その時点で、スキン押出機のノズルの位置が、すでに壁の真ん中を過ぎている可能性があるためです。" +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "開始時にノズルの温度が達するまで待つかどうか。" -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "壁とスキンの中央ライン(のエンドポイント)が交差する量を調整します。わずかな交差によって、壁がスキンにしっかりつながります。スキンと壁のライン幅が同じで、壁の幅が半分以上の値になると、スキンが壁を通過している可能性があります。これは、その時点で、スキン押出機のノズルの位置が、すでに壁の真ん中を過ぎている可能性があるためです。" +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "マテリアル温度を含む" -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "プリントのインフィルの密度を調整します。" +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "GCodeの開始時にノズル温度設定を含めるかどうか。 既に最初のGCodeにノズル温度設定が含まれている場合、Curaフロントエンドは自動的にこの設定を無効にします。" -msgctxt "support_interface_density description" -msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "サポート材のルーフとフロアの密度を調整します 大きな値ではオーバーハングでの成功率があがりますが、サポート材が除去しにくくなります。" +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "ビルドプレート温度を含む" -msgctxt "support_tree_top_rate description" -msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "枝の先端を生成するために使用されるサポート構造の密度を調整します。大きな値ではオーバーハングが良くなりますが、サポート材が除去しにくくなります。非常に大きな値を指定するにはサポートルーフを使用するか、上部のサポート密度が同様に高くなるようにしてください。" +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "GCodeの開始時にビルドプレート温度設定を含めるかどうか。 既に最初のGCodeにビルドプレート温度設定が含まれている場合、Curaフロントエンドは自動的にこの設定を無効にします。" -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "サポート材の密度を調整します。大きな値ではオーバーハングが良くなりますが、サポート材が除去しにくくなります。" +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "プリンターの幅" -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "使用するフィラメントの太さの調整 この値を使用するフィラメントの太さと一致させてください。" +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "造形可能領域の幅(X方向)。" -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "サポート材の配置を調整します。配置はTouching BuildplateまたはEveryWhereに設定することができます。EveryWhereに設定した場合、サポート材がモデルの上にもプリントされます。" +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "プリンターの奥行" -msgctxt "prime_tower_wipe_enabled description" -msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." -msgstr "1本のノズルでプライムタワーを印刷した後、もう片方のノズルから滲み出した材料をプライムタワーが拭き取ります。" +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "造形可能領域の幅(Y方向)。" -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "マシーンが1つのエクストルーダーからもう一つのエクストルーダーに切り替えられた際、ビルドプレートが下降して、ノズルと印刷物との間に隙間が形成される。これによりノズルが造形物の外側にはみ出たマテリアルを残さないためである。" +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "プリンターの高さ" -msgctxt "retraction_combing option all" -msgid "All" -msgstr "すべて" +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "造形可能領域の幅(Z方向)。" -msgctxt "print_sequence option all_at_once" -msgid "All at Once" -msgstr "一度にすべて" +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "ビルドプレートの形状" -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "プリントの解像度に影響を与えるすべての設定。これらの設定は、品質(および印刷時間)に大きな影響を与えます。" +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "造形不可領域を考慮しないビルドプレートの形状。" -msgctxt "user_defined_print_order_enabled description" -msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." -msgstr "" +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "長方形" -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "代替予備壁" +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "楕円形" -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "代替メッシュの削除" +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "ビルドプレートの材料" -msgctxt "material_alternate_walls label" -msgid "Alternate Wall Directions" -msgstr "ウォールの代替の向き" +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "プリンターに取り付けられているビルドプレートの材料です。" -msgctxt "material_alternate_walls description" -msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." -msgstr "レイヤーやインセットについて1つおきに適用されるウォールの代替の向き。金属プリンティングの場合など、応力が蓄積される可能性がある材料に有用です。" +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "ガラス" msgctxt "machine_buildplate_type option aluminum" msgid "Aluminum" msgstr "アルミニウム" +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "加熱式ビルドプレートあり" + +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "プリンターに加熱式ビルドプレートが付属しているかどうか。" + +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "造形温度安定化処理有り" + +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "機器が造形温度を安定化処理できるかどうかです。" + msgctxt "machine_always_write_active_tool label" msgid "Always Write Active Tool" msgstr "常にアクティブなツールを書き込む" -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "移動して外側のウォールをプリントする際、毎回引き戻しをします。" - -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "各レイヤーのすべてのポリゴンに適用されるオフセットの量。正の値は大きすぎる穴を補うことができます。負の値は小さすぎる穴を補うことができます。" +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "非アクティブなツールに一時コマンドを送信した後にアクティブなツールを書き込みます。Smoothieまたはその他のモーダルツールコマンドを使用するファームウェアを使用したデュアルエクストルーダープリントに必要です。" -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "最初のレイヤーのポリゴンに適用されるオフセットの値。マイナスの値はelephant's footと呼ばれる第一層が潰れるを現象を軽減させます。" - -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "各レイヤーのサポート用ポリゴンに適用されるオフセットの量。正の値はサポート領域を円滑にし、より丈夫なサポートにつながります。" - -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "サポートのフロアに適用されるオフセット量。" - -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "サポートのルーフに適用されるオフセット量。" - -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "サポートインターフェイスポリゴンに適用されるオフセット量。" - -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "拭き取りシーケンス中に出ないように押し戻すフィラメントの量。" - -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "この立方体を細分するかどうかを決定するために、各立方体の中心から半径に加えてモデルの境界を調べます。値を大きくすると、モデルの境界付近に小さな立方体のより厚いシェルができます。" - -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "メッシュオーバーハング例外" - -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "滲出防止引戻し位置" - -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "滲出防止引戻し速度" - -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "エクストルーダーのオフセットを座標システムに適用します。すべてのエクストルーダーが影響を受けます。" - -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "モデルが接触する箇所に、インターロックビーム構造を生成します。その結果、モデル、特に異なる材料でプリントされたモデル間の密着性が向上します。" - -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "移動は印刷したパーツを回避する" - -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "移動はサポートを回避する" - -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "戻る" - -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "後方左" - -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "後方右" - -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "両方" - -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "両方重ねる" - -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "底面レイヤー" - -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "底層初期レイヤー" - -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "底面展開距離" - -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "底面除去幅" - -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "底面厚さ" - -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "枝密度" - -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "枝直径" - -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "枝直径角度" - -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "フィラメントの引き出し準備引戻し位置" - -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "フィラメント引き出し準備引戻し速度" - -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "フィラメント引き出し準備温度" - -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "フィラメント引き出しの引戻し位置" - -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "フィラメント引き出しの引戻し速度" - -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "フィラメント引き出し温度" - -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "接続部分のサポート分割" - -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "ブリッジファン速度" - -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "ブリッジを構成する多重レイヤー" - -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "ブリッジセカンドスキンの密度" - -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "ブリッジセカンドスキンのファン速度" - -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "ブリッジセカンドスキンのフロー" - -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "ブリッジセカンドスキンの速度" - -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "ブリッジスキンの密度" - -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "ブリッジスキンフロー" - -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "ブリッジスキン速度" +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "中心位置" -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "ブリッジスキンサポートのしきい値" +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "プリンタのゼロポジションのX / Y座標が印刷可能領域の中心にあるかどうか。" -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "ブリッジスパースインフィル最大密度" +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "エクストルーダーの数" -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "ブリッジサードスキンの密度" +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "エクストルーダーの数。エクストルーダーの単位は、フィーダー、ボーデンチューブ、およびノズルを組合せたもの。" -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "ブリッジサードスキンのファン速度" +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "有効なエクストルーダーの数" -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "ブリッジサードスキンのフロー" +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "有効なエクストルーダートレインの数(ソフトウェアが自動設定)" -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "ブリッジサードスキンの速度" +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "ノズル外径" -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "ブリッジ壁コースティング" +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "ノズルの外径。" -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "ブリッジ壁フロー" +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "ノズル長さ" -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "ブリッジ壁速度" +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "ノズル先端とプリントヘッドの最下部との高さの差。" -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "ブリム" +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "ノズル角度" -msgctxt "brim_inside_margin label" -msgid "Brim Avoid Margin" -msgstr "" +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "水平面とノズル直上の円錐部分との間の角度。" -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "ブリム距離" +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "ノズル加熱長さ" -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "ブリムライン数" +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "ノズルからの熱がフィラメントに伝達される距離。" -msgctxt "brim_location label" -msgid "Brim Location" -msgstr "" +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "ノズルの温度管理を有効にする" -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "ブリム交換サポート" +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "Curaから温度を制御するかどうか。これをオフにして、Cura外からノズル温度を制御することで無効化。" -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "ブリム幅" +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "加熱速度" -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "ビルドプレート密着性" +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "ノズルが加熱する速度(℃/ s)は、通常の印刷時温度とスタンバイ時温度にて平均化されています。" -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "ビルドプレート接着エクストルーダー" +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "冷却速度" -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "ビルドプレート接着タイプ" +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "ノズルが冷却される速度(℃/ s)は、通常の印刷温度とスタンバイ温度のウィンドウにわたって平均化されています。" -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "ビルドプレートの材料" +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "スタンバイ温度までの最短時間" -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "ビルドプレートの形状" +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "ノズルが冷却される前にエクストルーダーが静止しなければならない最短時間。この時間より長時間エクストルーダーを使用しない場合にのみ、スタンバイ温度に冷却することができます。" -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "ビルドプレート温度" +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "G-codeフレーバー" -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "初期レイヤーのビルドプレート温度" +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "生成するG-codeの種類です。" -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "造形温度" +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" -msgctxt "bv_temp_anomaly_limit label" -msgid "Build Volume temperature Limit" -msgstr "" +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volumetric)" -msgctxt "bv_temp_warn_limit label" -msgid "Build Volume temperature Warning" -msgstr "" +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" -msgctxt "prime_tower_brim_enable description" -msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "この設定を有効にすると、モデルにはない場合でもプライムタワーにブリムが付きます。高いタワーのためにより頑丈なベースが必要な場合は、ベースの高さを増やすことができます。" +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" -msgctxt "center_object label" -msgid "Center Object" -msgstr "オブジェクト中心配置" +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "最小限のサポートが必要となるように印刷モデルのジオメトリを変更します。急なオーバーハングは浅いオーバーハングになります。オーバーハングした領域は、より垂直になるように下がります。" +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "サポートを生成するために利用できる技術を選択します。「標準」のサポート構造はオーバーハング部品のすぐ下に作成し、そのエリアを真下に生成します。「ツリー」サポートはオーバーハングエリアに向かって枝を作成し、モデルを枝の先端で支えます。枝をモデルのまわりにはわせて、できる限りビルドプレートから支えます。" +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "コースティング速度" +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "コースティングのボリューム" +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "コースティングは、それぞれの造形ラインの最後の部分をトラベルパスで置き換えます。はみ出た材料は、糸引きを減らすために造形ライン最後の部分を印刷するために使用される。" +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "ファームウェア引き戻し" -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "コーミングモード" +msgctxt "machine_firmware_retract description" +msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." +msgstr "材料を引き戻すためにG1コマンドのEプロパティーを使用する代わりにファームウェア引き戻しコマンド (G10/G11) を使用するかどうか。" -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "コーミングは、走行時にすでに印刷された領域内にノズルを保ちます。その結果、移動距離はわずかに長くなりますが、引き込みの必要性は減ります。コーミングがオフの場合、フィラメントの引き戻しを行い、ノズルは次のポイントまで直線移動します。また、インフィルのみにてコーミングすることにより、トップとボトムのスキン領域上での櫛通りを回避できます。" +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "エクストルーダーのヒーター共有" -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "コマンドライン設定" +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "各エクストルーダーが独自のヒーターを持つのではなく、単一のヒーターを共有するかどうか。" -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "同心円" +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "エクストルーダーの共有ノズル" -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "同心円" +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "各エクストルーダーが独自のノズルを持つのではなく、単一のノズルを共有するかどうか。初期設定した場合、プリンター起動gcodeスクリプトにより、すべてのエクストルーダーが初期の引き戻し状態が互換性のあるように設定されます(引き戻されていない状態のフィラメントが0個または1個のいずれか)。この場合、初期引き戻しステータスは「machine_extruders_shared_nozzle_initial_retraction」パラメーターによってエクストルーダーごとに規定されます。" -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "同心円" +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "共有ノズルの初期引き戻し" -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "同心円" +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "プリンタ起動gcodeスクリプト完了時に、各エクストルーダーのフィラメントが共有ノズルの先端部分から引き戻されていると想定される量。この値は、ノズルのダクトの共通部分の長さ以上にする必要があります。" -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "同心円" +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "拒否エリア" -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "同心円" +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "プリントヘッドの領域を持つポリゴンのリストは入力できません。" -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "同心円" +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "ノズル拒否エリア" -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "同心円" +msgctxt "nozzle_disallowed_areas description" +msgid "A list of polygons with areas the nozzle is not allowed to enter." +msgstr "ノズルが入ることができない領域を持つポリゴンのリスト。" -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "同心円" +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "プリントヘッドとファンポリゴン" -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "円錐サポートの角度" +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "プリントヘッドの形状。これらはプリントヘッドの位置を基準とした座標です。プリントヘッドの位置は通常、その最初のエクストルーダーの位置です。プリントヘッドの左側と手前側の寸法は、負の座標である必要があります。" -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "円錐サポートの最大幅" +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "ガントリーの高さ" -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "インフィルライン接合" +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "ノズルの先端とガントリーシステムの高さの差(X軸とY軸)。" -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "インフィルポリゴン接合" +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ノズルID" -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "サポートライン接続" +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "\"AA 0.4\"や\"BB 0.8\"などのノズルID。" -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "サポートジグザグ接続" +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "ノズル内径" -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "上層/底層ポリゴンに接合" +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "ノズルの内径。標準以外のノズルを使用する場合は、この設定を変更してください。" -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "互いに次に実行するインフィルパスに接合します。いくつかの閉じられたポリゴンを含むインフィルパターンの場合、この設定を有効にすることにより、移動時間が大幅に短縮されます。" +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "エクストルーダーのオフセット" -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "ジグザグを接続します。ジグザグ形のサポート材の強度が上がります。" +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "エクストルーダーのオフセットを座標システムに適用します。すべてのエクストルーダーが影響を受けます。" -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "サポートライン両端を接続します。この設定を有効にすると、より確実なサポートで抽出不足を解消しますが、材料の費用がかさみます。" +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "エクストルーダーのZ座標" -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "内壁の形状に沿ったラインを使用してインフィルパターンと内壁が合うところで接合します。この設定を有効にすると、インフィルが壁により密着するようになり、垂直面の品質に対するインフィルの影響が軽減します。この設定を無効にすると、材料の使用量が減ります。" +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "印刷開始時にノズルがポジションを確認するZ座標。" -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "互いに次に実行する上層/底層スキンパスに接合します。同心円のパターンの場合、この設定を有効にすることにより、移動時間が短縮されますが、インフィルまでの途中で接合があるため、この機能で上層面の品質が損なわれることがあります。" +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "エクストルーダーの絶対位置" -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "モデル輪郭の角がシームの位置に影響を及ぼすかどうかを制御します。[なし] は、角がシームの位置に影響を及ぼさないことを意味します。シームを隠すにすると、シームが内側の角に生じる可能性が高くなります。シームを外側にすると、シームが外側の角に生じる可能性が高くなります。シームを隠す/外側に出すは、シームが内側または外側の角に生じる可能性が高くなります。スマート・シームを使用すると、内外両側の角を使用できますが、適切な場合には内側の角が選択される頻度が高まります。" +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "最後のヘッドの既知位置からではなく、エクストルーダー現在位置を絶対位置にします。" -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "各インフィルラインをこの多重ラインに変換します。余分なラインが互いに交差せず、互いを避け合います。これによりインフィルが硬くなり、印刷時間と材料使用量が増えます。" +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "最大速度X" -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "冷却速度" +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "X方向のモーターの最大速度。" -msgctxt "cooling description" -msgid "Cooling" -msgstr "冷却" +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "最大速度Y" -msgctxt "cooling label" -msgid "Cooling" -msgstr "冷却" +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "Y方向のモーターの最大速度。" -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "クロス" +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "最大速度Z" -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "クロス" +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "Z方向のモーターの最大速度。" -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "3Dクロス" +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "最大速度E" -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "3Dクロスポケットのサイズ" +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "フィラメントの最大速度。" -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "サポート用クロス画像のインフィル密度" +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "最大加速度X" -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "クロス画像のインフィル密度" +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "X方向のモーターの最大速度" -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "結晶性材料" +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "最大加速度Y" -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "キュービック" +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Y方向のモーターの最大加速度。" -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "キュービックサブディビジョン" +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "最大加速度Z" -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "キュービックサブディビジョンシェル" +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Z方向のモーターの最大加速度。" -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "メッシュ切断" +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "フィラメント最大加速度" -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "マテリアルフロー(毎秒 3mm) と温度 (° c) をリンクします。" +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "フィラメントのモーターの最大加速度。" msgctxt "machine_acceleration label" msgid "Default Acceleration" msgstr "デフォルト加速度" -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "ビルドプレートのデフォルト温度" - -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "フィラメントデフォルトジャーク" - -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "デフォルト印刷温度" +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "プリントヘッド移動のデフォルトの加速度。" msgctxt "machine_max_jerk_xy label" msgid "Default X-Y Jerk" msgstr "X-Yデフォルトジャーク" -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Zデフォルトジャーク" - msgctxt "machine_max_jerk_xy description" msgid "Default jerk for movement in the horizontal plane." msgstr "水平面内での移動のデフォルトジャーク。" +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Zデフォルトジャーク" + msgctxt "machine_max_jerk_z description" msgid "Default jerk for the motor of the Z-direction." msgstr "Z方向のモーターのデフォルトジャーク。" +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "フィラメントデフォルトジャーク" + msgctxt "machine_max_jerk_e description" msgid "Default jerk for the motor of the filament." msgstr "フィラメントのモーターのデフォルトジャーク。" -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "ブリッジを検出し、ブリッジを印刷しながらて印刷速度、フロー、ファンの設定を変更します。" - -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "ウォールをプリントする順序を決定します。アウターウォールを先にプリントすると、インナーウォールの不具合が外側に影響しないため、寸法精度が向上します。一方、アウターウォールを後からプリントすると、オーバーハングをプリントする際にうまく積み重ねることができます。インナーウォールの合計が奇数の場合、「中央の最後のライン」は必ず最後にプリントされます。" - -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "インフィルメッシュの重なりが複数生じた場合のこのメッシュの優先度を決定します。複数のインフィルメッシュの重なりがあるエリアでは、最もランクが高いメッシュの設定になります。ランクが高いインフィルメッシュは、ランクが低いインフィルメッシュのインフィルと通常のメッシュを変更します。" - -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "ライトニングインフィルレイヤーがその上の物を支える必要がある場合を決定します。レイヤーの厚さを考慮して角度で指定されます。" +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "ミリメートルあたりのステップ (X)" -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "ライトニングインフィルレイヤーがその上のモデルを支える必要がある場合を決定します。厚さを考慮して角度で指定されます。" +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "X 方向に 1 ミリメートルの移動でステップモーターが行うステップの数を示します。" -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "直径" +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "ミリメートルあたりのステップ (Y)" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "モデルと接続される枝の直径増加" +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "Y 方向に 1 ミリメートルの移動でステップモーターが行うステップの数を示します。" -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "ビルドプレートに到達したときに、すべての枝が達成しようとする直径。ベッドの接着性が向上します。" +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "ミリメートルあたりのステップ (Z)" -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "エクストルーダーとビルドプレートへの接着両方を改善するのに役立つさまざまなオプション。 Brimは、モデルのベースの周りに単一レイヤーを平面的に追加して、ワーピングを防止します。 Raftは、モデルの下に太いグリッドを追加します。スカートはモデルの周りに印刷されたラインですが、モデルには接続されていません。" +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "Z 方向に 1 ミリメートルの移動でステップモーターが行うステップの数を示します。" -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "拒否エリア" +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "ミリメートルあたりのステップ (E)" -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "造形されたインフィルラインの距離。この設定は、インフィル密度およびライン幅によって計算される。" +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "フィーダーホイールを円周上で1ミリメートル移動させるのに、ステップモーターが行うステップの数を示します。" -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "印刷した初期層間の距離が構造ライをサポートします。この設定は、対応濃度で算出されます。" +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "プラス方向の X エンドストップ" -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "印刷されたサポートのフロアのライン間の距離。この設定は、密度によって計算されますが、個別に調整することもできます。" +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "X 軸のエンドストップがプラス方向(高い X 座標)またはマイナス方向(低い X 座標)のいずれかを示します。" -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "印刷されたサポートルーフ線間の距離。この設定は、サポート密度によって計算されますが、個別に調整することもできます。" +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "プラス方向の Y エンドストップ" -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "印刷されたサポート材の間隔。この設定は、サポート材の密度によって算出されます。" +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "Y 軸のエンドストップがプラス方向(高い Y 座標)またはマイナス方向(低い Y 座標)のいずれかを示します。" -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." -msgstr "プリントからサポートの底までの距離。これは次のレイヤーの高さに切り上げられることに注意してください。" +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "プラス方向の Z エンドストップ" -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "サポートの上部から印刷物までの距離。" +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "Z 軸のエンドストップがプラス方向(高い Z 座標)またはマイナス方向(低い Z 座標)のいずれかを示します。" -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." -msgstr "サポート構造の上部/下部からプリントまでの距離です。このギャップは、モデル印刷後にサポートを取り除くためのクリアランスを提供します。モデルの下にある最上層のサポート層は、通常のレイヤーの一部分かもしれません。" +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "最小送り速度" -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "インフィルラインごとに挿入された移動距離は壁のインフィルへの接着をより良くします。このオプションは、インフィルオーバーラップに似ていますが、押出なく、インフィルラインの片側にのみあります。" +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "プリントヘッドの最小移動速度。" -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "外壁の後に挿入された移動の距離はZシームをよりよく隠します。" +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "フィーダーホイール直径" -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "ドラフトシールドと造形物のX / Y方向の距離。" +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "材料をフィーダーに送るホイールの直径。" -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "壁(ooze shield)の造形物からの距離。" +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "ファン速度を0~1にスケール" -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "X/Y方向におけるオーバーハングからサポートまでの距離。" +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "ファン速度は0〜256ではなく、0〜1になるようスケールします。" -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "印刷物からX/Y方向へのサポート材との距離。" +msgctxt "resolution label" +msgid "Quality" +msgstr "品質" -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "パスを滑らかにするため、距離点が移動されます" +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "プリントの解像度に影響を与えるすべての設定。これらの設定は、品質(および印刷時間)に大きな影響を与えます。" -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "パスを滑らかにするため、距離点が移動されます" +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "レイヤー高さ" -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "これより小さいインフィルの領域を生成しないでください (代わりにスキンを使用してください)。" +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "各レイヤーの高さ(mm)。値を大きくすると早く印刷しますが荒くなり、小さくすると印刷が遅くなりますが造形が綺麗になります。" -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "ドラフトシールドの高さ" +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "初期レイヤー高さ" -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "ドラフトシールドの制限" +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "初期レイヤーの高さ(mm)。厚い初期層はビルドプレートへの接着を容易にする。" -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "ドラフトシールドとX/Yの距離" +msgctxt "line_width label" +msgid "Line Width" +msgstr "ライン幅" -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "サポートメッシュの下処理" +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "1ラインの幅。一般に、各ラインの幅は、ノズルの幅に対応する必要があります。ただし、この値を少し小さくすると、より良い造形が得られます。" -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "デュアルエクストルーダー" +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "ウォールライン幅" -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "楕円形" +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "ウォールラインの幅。" -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "加速度制御を有効にする" +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "外側ウォールライン幅" -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "ブリッジ設定を有効にする" +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "最も外側のウォールラインの幅。この値を下げると、より詳細な印刷できます。" -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "コースティングを有効にする" +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "内側ウォールライン幅" -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "円錐サポートを有効にする" +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "一番外側のウォールラインを除くすべてのウォールラインのラインの幅。" -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "ドラフトシールドを有効にする" +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "上下面ライン幅" -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "フルイドモーションを有効にする" +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "上辺/底辺線のライン幅。" -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "アイロン有効" +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "インフィルラインの幅" -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "ジャーク制御を有効にする" +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "インフィル線の幅。" -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "ノズルの温度管理を有効にする" +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "スカート/ブリムラインの幅" -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Ooze Shieldを有効にする" +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "単一のスカートまたはブリムラインの幅。" -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "プライムボルブを有効にする" +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "サポートライン幅" -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "プライムタワーを有効にする" +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "単一のサポート構造のライン幅。" -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "印刷中の冷却を有効にする" +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "サポート面のライン幅" -msgctxt "ppr_enable label" -msgid "Enable Print Process Reporting" -msgstr "" +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "サポートのルーフ、フロアのライン幅。" -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "引き戻し有効" +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "サポートルーフのライン幅" -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "サポートブリムを有効にする" +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "サポートルーフのライン一幅。" -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "サポートフロアを有効にする" +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "サポートフロアのライン幅" -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "サポートインタフェースを有効にする" +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "サポートのフロアのラインの一幅。" -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "サポートルーフを有効にする" +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "プライムタワーのライン幅" -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "プリントヘッド加速(トラベルアクセラレーション)を有効にする" +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "単一のプライムタワーラインの幅。" -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "トラベルジャークを有効にする" +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "初期レイヤーのライン幅" -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "モデルの周りに壁(ooze shield)を作る。これを生成することで、一つ目のノズルの高さと2つ目のノズルが同じ高さであったとき、2つ目のノズルを綺麗にします。" +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "最初のレイヤーに線幅の乗数です。この値を増やすと、ベッドの接着性が向上します。" -msgctxt "ppr_enable description" -msgid "Enable print process reporting for setting threshold values for possible fault detection." -msgstr "" +msgctxt "shell label" +msgid "Walls" +msgstr "ウォール" -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "最上位のスキンレイヤー(空気にさらされている)上の小さな(最大「小さな上部/下部幅」)領域を、デフォルトパターンの代わりに壁で埋められるようにします。" +msgctxt "shell description" +msgid "Shell" +msgstr "外郭" -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "X または Y 軸の速度が変更する際、プリントヘッドのジャークを調整することができます。ジャークを増やすことは、印刷時間を短縮できますがプリントの質を損ねます。" +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "ウォールエクストルーダー" -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "プリントヘッドのスピード調整の有効化 加速度の増加は印刷時間を短縮しますが印刷の質を損ねます。" +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "壁造形用のエクストルーダー。デュアルノズル印刷時に使用。" -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "印刷中の冷却ファンを有効にします。ファンは、短いレイヤープリントやブリッジ/オーバーハングのレイヤーがある印刷物の品質を向上させます。" +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "外壁用エクストルーダー" -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "G-codeの終了" +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "外壁印刷用のエクストルーダー。デュアルノズル印刷時に使用。" -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "フィラメントパージ長さの後" +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "内壁用エクストルーダー" -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "フィラメントパージ速度の後" +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "内壁印刷用のエクストルーダー。デュアルノズル印刷時に使用。" + +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "壁の厚さ" -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "スペースがサポートで埋まっている場合でも、モデルの周辺にブリムを印刷します。これにより、サポートの最初の層の一部のエリアがブリムになります。" +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "壁の厚さ。この値をラインの幅で割ることで壁の数が決まります。" -msgctxt "brim_location option everywhere" -msgid "Everywhere" -msgstr "" +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "ウォールライン数" -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "全対象" +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "ウォールの数。厚さから計算された場合、この値は整数になります。" -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "排他" +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "ウォール移行長さ" -msgctxt "experimental label" -msgid "Experimental" -msgstr "実験" +msgctxt "wall_transition_length description" +msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." +msgstr "部品が薄くなるにつれて異なる数のウォール間を移行する場合に、ウォールラインを分割または結合するために一定のスペースが割り当てられます。" -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "シーム表示" +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "ウォール分配数" -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "強めのスティッチング" +msgctxt "wall_distribution_count description" +msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." +msgstr "中心から数えて、変化を広げる必要のあるウォールの数。値が小さいほど、アウターウォールの幅が変化しないことを意味します。" -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "強めのスティッチングは、穴をメッシュで塞いでデータを作成します。このオプションは、長い処理時間が必要となります。" +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "ウォール移行しきい値角度" -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "外側インフィル壁の数" +msgctxt "wall_transition_angle description" +msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." +msgstr "偶数個と奇数個のウォールの間で移行を行うタイミング。この設定より大きい角度のくさび形状では移行が行われず、残りのスペースを埋めるために中心にウォールがプリントされることはありません。この設定を小さくすると、これらの中心にあるウォールの数と長さが減りますが、隙間ができたり、押し出されすぎたりすることがあります。" -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "外側表面の数" +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "ウォール移行フィルター距離" -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "ノズル切替え後のプライムに必要な余剰材料。" +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "異なる数のウォール間を相次いで行き来する場合は、まったく移行しないようにします。移行同士がこの距離よりも近い場合は、それらの移行を削除します。" -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "エクストルーダープライムX位置" +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "ウォール移行フィルターマージン" -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "エクストルーダープライムY位置" +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "1つ外側のウォールと1つ内側のウォールの間を行き来することを防止します。このマージンは、続くライン幅の範囲を[最小ウォールライン幅 - マージン, 2 * 最小ウォールライン幅 + マージン]に拡張します。このマージンを増やすと移行の回数が減り、押出の開始/停止回数が減少し、移動時間が短縮されます。ただし、ライン幅の変化が大きいと、押出不足や押出過多の問題が発生することがあります。" -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "エクストルーダーのZ座標" +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "外壁移動距離" -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "エクストルーダーのヒーター共有" +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "外壁の後に挿入された移動の距離はZシームをよりよく隠します。" -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "エクストルーダーの共有ノズル" +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "外壁はめ込み" -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "押出クールダウン速度修飾子" +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "外壁の経路にはめ込む。外壁がノズルよりも小さく、内壁の後に造形されている場合は、オフセットを使用して、ノズルの穴をモデルの外側ではなく内壁と重なるようにします。" -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "押出幅に基づく速度の補正係数。0%では、移動速度が一定のプリント速度に保たれます。100%では、フロー(mm³/s単位)が一定になるように移動速度が調整されます。つまり、通常のライン幅の半分のラインは2倍の速さでプリントされ、幅が2倍のラインは半分の速さでプリントされます。100%より大きな値を設定すると、幅広のラインを押し出すのに必要な高い圧力を補うことができます。" +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "壁印刷順序の最適化" -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "ファン速度" +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "撤回と移動距離を減らすために、壁のプリント順序を最適化します。ほとんどの部品がこの設定を有効にしている方が良い印刷結果につながりますが、実際には時間がかかることがありますので、最適化の有無に関わらず印刷時間を比較してください。ビルドプレートの接着タイプにブリムを選択すると最初のレイヤーは最適化されません。" -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "ファン速度上書き" +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "ウォール順序" -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "この長さより短い輪郭の形体は、Small Feature Speedを使用して印刷されます。" +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "ウォールをプリントする順序を決定します。アウターウォールを先にプリントすると、インナーウォールの不具合が外側に影響しないため、寸法精度が向上します。一方、アウターウォールを後からプリントすると、オーバーハングをプリントする際にうまく積み重ねることができます。インナーウォールの合計が奇数の場合、「中央の最後のライン」は必ず最後にプリントされます。" -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "これからもっと充実させていく機能です。" +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "内側から外側へ" -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "フィーダーホイール直径" +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "外側から内側へ" -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "最終印刷温度" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "代替予備壁" -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "ファームウェア引き戻し" +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "すべてのレイヤーごとに予備の壁を印刷します。このようにして、インフィルは余分な壁の間に挟まれ、より強い印刷物が得られる。" -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "最初のレイヤー用サポートエクストルーダー" +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "最小ウォールライン幅" -msgctxt "material_flow label" -msgid "Flow" -msgstr "フロー" +msgctxt "min_wall_line_width description" +msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." +msgstr "ノズルサイズの1~2倍程度の薄い構造の場合、モデルの厚さに合わせてライン幅を変更する必要があります。この設定は、ウォールに許容される最小ライン幅を制御します。ジオメトリーの厚さが、Nのウォールが幅広く、N+1のウォールが狭い場所で、NからN+1のウォールに移行するため、最小ライン幅は本質的に最大ライン幅も決定します。ウォールラインの許容最大幅は、最小ウォールライン幅の2倍です。" -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "フロー均一化率" +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "最小偶数ウォールライン幅" -msgctxt "flow_anomaly_limit label" -msgid "Flow Limit" -msgstr "" +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "通常の多角形ウォールの最小ライン幅。この設定は、1本の薄いウォールラインのプリントから、2本のウォールラインのプリントに切り替わるモデルの厚さを決定します。最小偶数ウォールライン幅を大きくすると、最大奇数ウォールライン幅も大きくなります。最大偶数ウォールライン幅は、アウターウォールライン幅 + 0.5 * 最小奇数ウォールライン幅として計算されます。" -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "流量補正要因" +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "最小奇数ウォールライン幅" -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "流量補正時の最大抽出オフセット" +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "中央ラインギャップフィラーのポリラインウォールの最小ライン幅。この設定は、2本のウォールラインのプリントから、2個のアウターウォールと中央の1個の中心ウォールのプリントに切り替わるモデルの厚さを決定します。最小奇数ウォールライン幅を大きくすると、最大偶数ウォールライン幅も大きくなります。最大奇数ウォールライン幅は、2×最小偶数ウォールライン幅として計算されます。" -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "フロー温度グラフ" +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "薄壁印刷" -msgctxt "flow_warn_limit label" -msgid "Flow Warning" -msgstr "" +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "ノズルサイズよりも細い壁を作ります。" -msgctxt "material_flow_layer_0 description" -msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." -msgstr "初期レイヤーの流量補修:初期レイヤーの マテリアル吐出量はこの値の乗算で計算されます。" +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "最小フィーチャーサイズ" -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "最初のレイヤーの底面ラインのフロー補正" +msgctxt "min_feature_size description" +msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." +msgstr "薄いフィーチャーの最小厚さ。この値より薄いモデルフィーチャーはプリントされず、最小フィーチャーサイズより厚いフィーチャーは最小ウォールライン幅に広げられます。" -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "インフィルのフロー補正。" +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "最小薄肉ウォールライン幅" -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "支持材の天井面または床面のフロー補正。" +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "モデルの薄いフィーチャーを(最小フィーチャーサイズに従って)置き換えるウォールの幅。最小ウォールライン幅がフィーチャーの厚さより薄い場合、ウォールの厚さはフィーチャー自体の厚さと同じになります。" -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "印刷物の上部表面のフロー補正。" +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "水平展開" -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "プライムタワーのフロー補正。" +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "各レイヤーのすべてのポリゴンに適用されるオフセットの量。正の値は大きすぎる穴を補うことができます。負の値は小さすぎる穴を補うことができます。" -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "スカートまたはブリムのフロー補正。" +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "初期層水平展開" -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "支持材床面のフロー補正。" +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "最初のレイヤーのポリゴンに適用されるオフセットの値。マイナスの値はelephant's footと呼ばれる第一層が潰れるを現象を軽減させます。" -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "支持材天井面のフロー補正。" +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "穴の水平展開" -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "支持材のフロー補正。" +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "ゼロより大きい場合、穴の水平方向の拡張は、レイヤーごとにすべての穴に適用されるオフセットの量になります。プラスの値を指定すると穴のサイズが大きくなり、マイナスの値を指定すると穴のサイズが小さくなります。この設定を有効にすると、さらに穴の水平方向の拡張最大直径で微調整できます。" -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "最初のレイヤーの最も外側のウォールライン上のフロー補正。" +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "穴の水平展開の最大直径" -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "最外壁のフロー補正。" +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "0より大きい場合、穴の水平展開が小さい穴に対して徐々に適用されます(小さい穴はさらに展開されます)。0に設定すると、すべての穴に穴の水平展開が適用されます。穴の水平展開の最大直径より大きい穴は展開されません。" -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "最外の壁ラインにおける流量補正。" +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Zシーム合わせ" -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "最外のラインを除く、全ての壁ラインにおけるトップサーフェス壁ラインのフロー補正" +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "レイヤーの経路始点。連続するレイヤー経路が同じポイントで開始すると、縦のシームが印刷に表示されることがあります。ユーザーが指定した場所の近くでこれらを整列させる場合、継ぎ目は最も簡単に取り除くことができます。無作為に配置すると、経路開始時の粗さが目立たなくなります。最短経路をとると、印刷が速くなります。" -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "上面/下面のフロー補正。" +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "ユーザー指定" -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "最も外側のウォールラインを除くすべてのウォールラインのフロー補正(ただし、最初のレイヤーのみ)" +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "最短" -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "最外壁以外の壁のフロー補正。" +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "ランダム" -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "壁のフロー補正。" +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "鋭い角" -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "流れの補修: 押出されるマテリアルの量は、この値から乗算されます。" +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Zシーム位置" -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "フローモーション角度" +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "レイヤー内の各パーツの印刷を開始する場所付近の位置。" -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "フルイドモーション(移動距離)" +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "後方左" -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "フルイドモーション(近距離)" +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "戻る" -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "フラッシュパージ長さ" +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "後方右" -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "フラッシュパージ速度" +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "右" -msgctxt "min_wall_line_width description" -msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." -msgstr "ノズルサイズの1~2倍程度の薄い構造の場合、モデルの厚さに合わせてライン幅を変更する必要があります。この設定は、ウォールに許容される最小ライン幅を制御します。ジオメトリーの厚さが、Nのウォールが幅広く、N+1のウォールが狭い場所で、NからN+1のウォールに移行するため、最小ライン幅は本質的に最大ライン幅も決定します。ウォールラインの許容最大幅は、最小ウォールライン幅の2倍です。" +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "前方右" msgctxt "z_seam_position option front" msgid "Front" @@ -1192,4596 +1014,4682 @@ msgctxt "z_seam_position option frontleft" msgid "Front Left" msgstr "前左" -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "前方右" +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "左" -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "制限なし" +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "ZシームX" -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "ファジースキン" +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "レイヤー内の各印刷を開始するX座" +"標の位置。" -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "ファジースキンの密度" +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "ZシームY" -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "ファジースキン外のみ" +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "レイヤー内の各パーツの印刷を開始する場所の近くのY座標。" -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "ファジースキン点間距離" +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "シームコーナー設定" -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "ファジースキンの厚さ" +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "モデル輪郭の角がシームの位置に影響を及ぼすかどうかを制御します。[なし] は、角がシームの位置に影響を及ぼさないことを意味します。シームを隠すにすると、シームが内側の角に生じる可能性が高くなります。シームを外側にすると、シームが外側の角に生じる可能性が高くなります。シームを隠す/外側に出すは、シームが内側または外側の角に生じる可能性が高くなります。スマート・シームを使用すると、内外両側の角を使用できますが、適切な場合には内側の角が選択される頻度が高まります。" -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "G-codeフレーバー" +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "なし" -msgctxt "machine_end_gcode description" -msgid "" -"G-code commands to be executed at the very end - separated by \n" -"." -msgstr "" -"最後に実行するG-codeコマンドは、\n" -"で区切ります。" +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "シーム非表示" -msgctxt "machine_start_gcode description" -msgid "" -"G-code commands to be executed at the very start - separated by \n" -"." -msgstr "" -"最初に実行するG-codeコマンドは、\n" -"で区切ります。" +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "シーム表示" -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "マテリアルのGUID。これは自動的に設定されます。" +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "シーム表示/非表示" -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "ガントリーの高さ" +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "スマート・シーム" -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "インターロック構造の生成" +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "相対Zシーム" -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "サポート開始" +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "有効時は、Zシームは各パーツの真ん中に設定されます。無効時はプラットフォームのサイズによって設定されます。" -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "最初の層のインフィルエリア内ブリムを生成します。このブリムは、サポートの周囲ではなく、サポートの下に印刷されます。この設定を有効にすると、サポートのビルドプレートへの吸着性が高まります。" +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "トップ/ボトム" -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "モデルとサポートの間に密なインターフェースを生成します。これにより、モデルが印刷されているサポートの上部、モデル上のサポートの下部にスキンが作成されます。" +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "トップ/ボトム" -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "サポートの上部とモデルの間に高密度の厚板を形成します。モデルとサポート材の間にスキンが作成されます。" +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "上部表面用エクストルーダー" -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "サポートの上部とモデルの間に高密度の厚板を形成します。モデルとサポート材の間にスキンが作成されます。" +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "上部の表面印刷用のエクストルーダー。デュアルノズル印刷時に使用。" -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "オーバーハングするモデルのサポートパーツの構造を形成します。これらのサポートがなければ、印刷は失敗します。" +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "上部表面レイヤー" + +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "上部表面のレイヤー数。通常一層で綺麗に出来上がります。" + +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "最上面のライン幅" + +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "プリントの上部の 線の幅。" + +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "上部表面パターン" + +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "上層のパターン。" + +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "直線" + +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "同心円" + +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" + +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "上面方向一貫性" + +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "上面のラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。" + +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "最上面のラインの向き" + +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "トップ表面層に縦かジグザグパターンを利用する時に使用する整数の行方向のリスト。リスト内から順番に使われていき、リストの最後に達するとまた最初の設定値に戻ります。リストアイテムはカンマで区切られ、全体はカッコで括られています。デフォルトでは何も入っておらず、設定角度は (45 度と 135 度)になっています。" -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "ガラス" +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "上部/底面エクストルーダー" -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "微量の材料のみを吐出して、再度上部表面を動きます。これにより上部のプラスティックが溶かされ、よりスムースな表面になります。ノズルチャンバーには高い圧力が保たれるため、表面上のしわが材料で埋められます。" +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "上部と下部の表面を印刷する時に使われるエクストルーダー。デュアルノズル印刷時に使用。" -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "インフィル半減高さ" +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "上部/底面の厚さ" -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "インフィル半減回数" +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "プリント時の最上面、最底面の厚み。これを積層ピッチで割った値で最上面、最低面のレイヤーの数を定義します。" -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "サポートインフィル半減前の高さ" +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "上部厚さ" -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "サポートインフィル半減回数" +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "プリント時の最上面の厚み。これを積層ピッチで割った値で最上面のレイヤーの数を定義します。" -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "レイヤー時間が最小であるため、速度を落としてプリントする場合は、この温度まで徐々に下げてください。" +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "上部レイヤー" -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "グリッド" +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "最上面のレイヤー数。トップの厚さを計算する場合、この値は整数になります。" -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "グリッド" +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "底面厚さ" -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "グリッド" +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "プリント時の最底面の厚み。これを積層ピッチで割った値で最低面のレイヤーの数を定義します。" -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "グリッド" +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "底面レイヤー" -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "グリッド" +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "最底面のレイヤー数。下の厚さで計算すると、この値は整数に変換されます。" -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "初期底面レイヤー" -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "外壁をグループ化" +msgctxt "initial_bottom_layers description" +msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "ビルドプレートから上にある初期底面レイヤーの数。下の厚さで計算すると、この値は整数に変換されます。" -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "ジャイロイド" +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "上層/底層パターン" -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "ジャイロイド" +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "上層/底層のパターン。" -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "造形温度安定化処理有り" +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "直線" -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "加熱式ビルドプレートあり" +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "同心円" -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "加熱速度" +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "ノズル加熱長さ" +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "底層初期レイヤー" -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "ドラフトシールドの高さ制限。この高さを超えるとドラフトシールドが印刷されません。" +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "第1層のプリントの底部のパターン。" -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "シーム非表示" +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "直線" -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "シーム表示/非表示" +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "同心円" -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "穴の水平展開" +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "穴の水平展開の最大直径" +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "上層/底層ポリゴンに接合" -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "これより直径が小さな輪郭の穴とパーツは、Small Feature Speedを使用して印刷されます。" +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "互いに次に実行する上層/底層スキンパスに接合します。同心円のパターンの場合、この設定を有効にすることにより、移動時間が短縮されますが、インフィルまでの途中で接合があるため、この機能で上層面の品質が損なわれることがあります。" -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "水平展開" +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "上面/底面の方向一貫性" -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "水平スケールファクタ収縮補正" +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "上面/底面のラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。" -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "加熱中にフィラメントの引き出しが生じる距離。" +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "上層/底層ラインの向き" -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "滲出を止めるには材料をどこまで引き戻す必要があるか。" +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "上/下のレイヤーが線またはジグザグパターンを使う際の整数線の方向のリスト。リストの要素は、層が進行するにつれて順番に使用され、リストの終わりに達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは、従来のデフォルト角度(45度と135度)を使用する空のリストです。" -msgctxt "flow_rate_extrusion_offset_factor description" -msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." -msgstr "流量の変化を補正するためにフィラメントを移動する距離。フィラメントが1秒の押出で移動する距離の割合として指定します。" +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "小さい上下幅" -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "フィラメントをきれいに引き出すにはフィラメントをどこまで引き戻すか。" +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "小さな上部/下部領域は、デフォルトの上部/下部パターンの代わりに壁で埋められます。これにより、ぎくしゃくした動きを防げます。デフォルトでは最上位の(空気にさらされている)レイヤーはオフになっています(「表面の小さな上部/下部」を参照)。" -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "フィラメントの引き出しが起こるための引き戻しの距離。" +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "表面の小さな上部/下部" -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "滲出を防止するにはフィラメントスイッチ中に材料をどの程度速く引き戻す必要があるか。" +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "最上位のスキンレイヤー(空気にさらされている)上の小さな(最大「小さな上部/下部幅」)領域を、デフォルトパターンの代わりに壁で埋められるようにします。" -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "空のスプールを同じ材料の新しいスプールに交換した後に、材料の下準備をする速度。" +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Z 軸ギャップにスキンなし" -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "材料を切り替えた後に、材料の下準備をする速度。" +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "モデルの垂直方向に少数層のみの小さなギャップがある場合、通常は、その狭いスペース内にある層の周囲にスキンが存在する必要があります。垂直方向のギャップが非常に小さい場合は、この設定を有効にしてスキンが生成されないようにします。これにより、印刷時間とスライス時間が向上しますが、技術的には空気にさらされたインフィルを残します。" -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "材料を乾燥保管容器の外に置くことができる期間。" +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "外側表面の数" -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "X 方向に 1 ミリメートルの移動でステップモーターが行うステップの数を示します。" +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "上部/下部パターンの最も外側の部分を同心円の線で置き換えます。 1つまたは2つの線を使用すると、トップ部分の造形が改善されます。" -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "Y 方向に 1 ミリメートルの移動でステップモーターが行うステップの数を示します。" +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "アイロン有効" -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "Z 方向に 1 ミリメートルの移動でステップモーターが行うステップの数を示します。" +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "微量の材料のみを吐出して、再度上部表面を動きます。これにより上部のプラスティックが溶かされ、よりスムースな表面になります。ノズルチャンバーには高い圧力が保たれるため、表面上のしわが材料で埋められます。" -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "フィーダーホイールを円周上で1ミリメートル移動させるのに、ステップモーターが行うステップの数を示します。" +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "最上層のみアイロン" -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "空のスプールを同じ材料の新しいスプールに交換したときに、ノズルから前の材料をパージするために使用する材料の量(フィラメントの長さ)。" +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "メッシュの最後のレイヤーでのみアイロンをかけます。下層にて滑らかな表面仕上げを必要としない場合、時間を節約します。" + +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "アイロンパターン" -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "材料を切り替えたときに、ノズルから前の材料をパージするために使用する材料の量(フィラメントの長さ)。" +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "アイロンのパターン。" -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "プリンタ起動gcodeスクリプト完了時に、各エクストルーダーのフィラメントが共有ノズルの先端部分から引き戻されていると想定される量。この値は、ノズルのダクトの共通部分の長さ以上にする必要があります。" +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "同心円" -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "サポートインターフェイスとサポートが重なる場合にどのように相互作用するかを示します。現在、サポートルーフにのみ実装されています。" +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "モデル上に枝を配置する場合、どれくらいの高さが必要かを示します。サポート材が小さな塊になることを防止します。枝がサポートルーフを支えている場合、この設定は無視されます。" +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "アイロン方向一貫性" -msgctxt "bridge_skin_support_threshold description" -msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." -msgstr "対象領域に対してこのパーセンテージ未満のスキン領域がサポートされている場合、ブリッジ設定で印刷します。それ以外の場合は、通常のスキン設定で印刷します。" +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "アイロンラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。" -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "ツールパスセグメントが一般的な動きからこの角度よりも大きく逸脱している場合、セグメントは平滑化されます。" +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "アイロン線のスペース" -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "有効な場合、空気上部の第二および第三レイヤーは以下の設定で印刷されます。それ以外の場合は、それらのレイヤーは通常の設定で印刷されます。" +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "アイロンライン同士の距離。" -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "異なる数のウォール間を相次いで行き来する場合は、まったく移行しないようにします。移行同士がこの距離よりも近い場合は、それらの移行を削除します。" +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "アイロンフロー" -msgctxt "raft_base_margin description" -msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "アイロン時にノズルから出しておくフィラメントの量。多少出しておくと裂け目を綺麗にします。ただ出し過ぎると吐出過多になり、端が荒れます。" -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "ラフトが有効になっている場合、モデルの周りに余分なラフト領域ができます。値を大きくするとより強力なラフトができますが、多くの材料を使用し、造形範囲は少なくなります。" +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "アイロンインセット" -msgctxt "raft_interface_margin description" -msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgctxt "ironing_inset description" +msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." +msgstr "モデルの端からの距離。端までアイロンをすると、端が荒れる場合があります。" -msgctxt "raft_surface_margin description" -msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "アイロン速度" -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "メッシュ内の重なり合うボリュームから生じる内部ジオメトリを無視し、ボリュームを1つとして印刷します。これにより、意図しない内部空洞が消えることがあります。" +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "上部表面通過時の速度。" -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "ビルドプレート温度を含む" +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "アイロン加速度" -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "マテリアル温度を含む" +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "アイロン時の加速度。" -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "包括" +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "アイロンジャーク" -msgctxt "infill description" -msgid "Infill" -msgstr "インフィル" +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "アイロン時の最大加速度。" -msgctxt "infill label" -msgid "Infill" -msgstr "インフィル" +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "表面公差量" -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "インフィル加速度" +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "壁とスキンの中央ライン(のエンドポイント)が交差する量(スキンラインのライン幅と壁の最内部に対する割合)を調整します。わずかな交差によって、壁がスキンにしっかりつながります。スキンと壁のライン幅が同じで、割合が50%を超えると、スキンが壁を通過している可能性があります。これは、その時点で、スキン押出機のノズルの位置が、すでに壁の真ん中を過ぎている可能性があるためです。" -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "インフィル優先" +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "表面公差" -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "インフィル密度" +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "壁とスキンの中央ライン(のエンドポイント)が交差する量を調整します。わずかな交差によって、壁がスキンにしっかりつながります。スキンと壁のライン幅が同じで、壁の幅が半分以上の値になると、スキンが壁を通過している可能性があります。これは、その時点で、スキン押出機のノズルの位置が、すでに壁の真ん中を過ぎている可能性があるためです。" -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "インフィルエクストルーダー" +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "表面除去幅" -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "インフィルフロー" +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "取り除くスキンエリアの最大幅。この値より小さいすべてのスキンエリアは消えます。これは、モデルの傾斜表面の上部/下部スキンに費やした時間のや材料の量を制限することができます。" -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "インフィルジャーク" +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "上面除去幅" -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "インフィル層の厚さ" +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "取り除くスキンエリアの最大幅。この値より小さいすべてのスキンエリアは消えます。これは、モデルの傾斜表面の上部/下部スキンに費やした時間のや材料の量を制限することができます。" -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "インフィルラインの向き" +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "底面除去幅" -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "インフィルライン距離" +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "取り除くスキンエリアの最大幅。この値より小さいすべてのスキンエリアは消えます。これは、モデルの傾斜表面の上部/下部スキンに費やした時間のや材料の量を制限することができます。" -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "インフィルライン乗算" +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "表面展開距離" -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "インフィルラインの幅" +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "スキンがインフィルまで到達する距離です。高い数値の場合、スキンはインフィルのパターンに隣接しやすく、近接する壁のレイヤーもスキンに密着しやすくなります。低値の場合、材料の使用量を節約します。" -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "インフィルメッシュ" +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "上面展開距離" -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "インフィルオーバーハング角度" +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "スキンがインフィルまで到達する距離です。高い数値の場合、スキンはインフィルのパターンに隣接しやすく、近接する壁のレイヤーもスキンに密着しやすくなります。低値の場合、材料の使用量を節約します。" -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "インフィル公差" +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "底面展開距離" -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "インフィル公差量" +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "スキンがインフィルまで到達する距離です。高い数値の場合、スキンはインフィルのパターンに隣接しやすく、近接する壁のレイヤーもスキンに密着しやすくなります。低値の場合、材料の使用量を節約します。" -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "インフィルパターン" +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "表面展開最大角" -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "インフィル速度" +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "この設定より大きい角を持つオブジェクトの上部または底部の表面は、その表面のスキンを拡大しません。これにより、モデルの表面に垂直に近い斜面がある場合に作成される狭いスキン領域の拡大を回避します。0°の角度は水平方向で、スキンは拡大しません。90°の角度は垂直方向で、すべてのスキンが拡大します。" -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "インフィルサポート" +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "表面展開最小角" -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "インフィル移動最適化" +msgctxt "min_skin_width_for_expansion description" +msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." +msgstr "これより狭いスキン領域は展開されません。モデル表面に、垂直に近い斜面がある場合に作成される狭いスキン領域の拡大を回避するためです。" -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "インフィル移動距離" +msgctxt "infill label" +msgid "Infill" +msgstr "インフィル" -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "インフィルXオフセット" +msgctxt "infill description" +msgid "Infill" +msgstr "インフィル" -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "インフィルYオフセット" +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "インフィルエクストルーダー" -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "初期底面レイヤー" +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "インフィル造形時に使われるExtruder。デュアルノズルの場合に利用します。" -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "初期ファン速度" +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "インフィル密度" + +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "プリントのインフィルの密度を調整します。" -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "初期レイヤー加速度" +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "インフィルライン距離" -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "初期レイヤーの底面フロー" +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "造形されたインフィルラインの距離。この設定は、インフィル密度およびライン幅によって計算される。" -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "初期レイヤー直径" +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "インフィルパターン" -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "初期レイヤーフロー" +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "プリントのインフィル材料のパターンラインおよびジグザグインフィルはレイヤーごとに方向を入れ替え、材料コストを削減します。グリッド、トライアングル、トライヘキサゴン、キュービック、オクテット、クォーターキュービック、クロスおよび同心円パターンはレイヤーごとに完全にプリントされます。ジャイロイド、キュービック、クォーターキュービックおよびオクテットインフィルはレイヤーごとに変化し、各方向にかけてより均一な強度分布を実現します。ライトニングインフィルは造形物の天井のみを支えることで、インフィルを最低限にするよう試みます。" -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "初期レイヤー高さ" +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "グリッド" -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "初期層水平展開" +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "ライン" -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "初期レイヤーインナーウォールのフロー" +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "トライアングル" -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "初期レイヤージャーク" +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "トライヘキサゴン" -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "初期レイヤーのライン幅" +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "キュービック" -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "初期レイヤーアウターウォールのフロー" +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "キュービックサブディビジョン" -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "初期レイヤー印刷加速度" +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "オクテット" -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "初期レイヤー印刷ジャーク" +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "クォーターキュービック" -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "初期レイヤー印刷速度" +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "同心円" -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "初期レイヤー速度" +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "初期層サポートラインの距離" +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "クロス" -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "初期レイヤー移動加速度" +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "3Dクロス" -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "初期レイヤー移動ジャーク" +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "ジャイロイド" -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "初期レイヤー移動速度" +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "ライトニング" -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "初期レイヤーZのオーバーラップ" +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "インフィルライン接合" -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "初期印刷温度" +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "内壁の形状に沿ったラインを使用してインフィルパターンと内壁が合うところで接合します。この設定を有効にすると、インフィルが壁により密着するようになり、垂直面の品質に対するインフィルの影響が軽減します。この設定を無効にすると、材料の使用量が減ります。" -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "内壁加速度" +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "インフィルポリゴン接合" -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "内壁用エクストルーダー" +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "互いに次に実行するインフィルパスに接合します。いくつかの閉じられたポリゴンを含むインフィルパターンの場合、この設定を有効にすることにより、移動時間が大幅に短縮されます。" -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "内壁ジャーク" +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "インフィルラインの向き" -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "内壁速度" +msgctxt "infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." +msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストです。これは、従来のデフォルト角度(線とジグザグのパターンでは45と135度、他のすべてのパターンでは45度)を使用することを意味します。" -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "内壁のフロー" +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "インフィルXオフセット" -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "内側ウォールライン幅" +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "インフィルパターンはX軸に沿ってこの距離を移動します。" -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "外壁の経路にはめ込む。外壁がノズルよりも小さく、内壁の後に造形されている場合は、オフセットを使用して、ノズルの穴をモデルの外側ではなく内壁と重なるようにします。" +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "インフィルYオフセット" -msgctxt "brim_location option inside" -msgid "Inside Only" -msgstr "" +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "インフィルパターンはY軸に沿ってこの距離を移動します。" -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "内側から外側へ" +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "インフィル開始のランダム化" -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "インターフェイスラインを優先" +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "どのインフィルラインが最初に印刷されるかをランダム化します。これによって1つのセグメントが強くなることを回避しますが、追加の移動距離が必要となります。" -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "インターフェイスを優先" +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "インフィルライン乗算" -msgctxt "prime_tower_mode option interleaved" -msgid "Interleaved" -msgstr "" +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "各インフィルラインをこの多重ラインに変換します。余分なラインが互いに交差せず、互いを避け合います。これによりインフィルが硬くなり、印刷時間と材料使用量が増えます。" -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "インターロックビームレイヤー数" +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "外側インフィル壁の数" -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "インターロックビーム幅" +msgctxt "infill_wall_line_count description" +msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "インフィルエリア周辺に外壁を追加します。このような壁は、上層/底層ラインにたるみを作ります。つまり、一部の外壁材料の費用で同じ品質を実現するためには、必要な上層/底層スキンが少ないことを意味します。" +"この機能は、インフィルポリゴン接合と組み合わせて、構成が正しい場合、移動または引き戻しが必要なく、すべてのインフィルを1つの押出経路に接続することができます。" -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "インターロック境界回避" +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "キュービックサブディビジョンシェル" -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "インターロックの奥行" +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "この立方体を細分するかどうかを決定するために、各立方体の中心から半径に加えてモデルの境界を調べます。値を大きくすると、モデルの境界付近に小さな立方体のより厚いシェルができます。" -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "インターロック構造の向き" +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "インフィル公差量" -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "最上層のみアイロン" +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "インフィルと壁のオーバーラップ量 (インフィルライン幅に対する%)。少しのオーバーラップによって壁がインフィルにしっかりつながります。" -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "アイロン加速度" +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "インフィル公差" -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "アイロンフロー" +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "インフィルと壁が交差する量、わずかな交差によって壁がインフィルにしっかりつながります。" -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "アイロンインセット" +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "インフィル移動距離" -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "アイロンジャーク" +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "インフィルラインごとに挿入された移動距離は壁のインフィルへの接着をより良くします。このオプションは、インフィルオーバーラップに似ていますが、押出なく、インフィルラインの片側にのみあります。" + +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "インフィル層の厚さ" -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "アイロン線のスペース" +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "インフィルマテリアルの層ごとの厚さ。この値は常にレイヤーの高さの倍数でなければなりません。" -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "アイロンパターン" +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "インフィル半減回数" -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "アイロン速度" +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "天井面の表面に近づく際にインフィル密度が半減する回数。天井面に近い領域ほど高い密度となり、インフィル密度まで達します。" -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "中心位置" +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "インフィル半減高さ" -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "サポート材かどうか" +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "密度が半分に切り替わる前の所定のインフィルの高さ。" -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "この材料は加熱時にきれいに分解するタイプ (結晶性) または長く絡み合ったポリマー鎖 (非結晶) を作り出すタイプのいずれですか?" +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "インフィル優先" -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "この素材が一般的にプリント時のサポート材として使用されるかどうかを示します。" +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "壁より前にインフィルをプリントします はじめに壁をプリントするとより精密な壁になりますが、オーバーハングのプリントは悪化します" +"はじめにインフィルをプリントすると丈夫な壁になりますが、インフィルの模様が時折表面から透けて表れます。" -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "部品の輪郭のみに振動が起こり、部品の穴には起こりません。" +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "最小インフィル領域" -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "スティッチできない部分を保持" +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "これより小さいインフィルの領域を生成しないでください (代わりにスキンを使用してください)。" -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "レイヤー高さ" +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "インフィルサポート" -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "レイヤー始点X" +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "面材構造を印刷するには、モデルの上部がサポートされている必要があります。これを有効にすると、印刷時間と材料の使用量が減少しますが、オブジェクトの強度が不均一になります。" -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "レイヤー始点Y" +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "インフィルオーバーハング角度" -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "ベースラフト層の層厚さ。プリンタのビルドプレートにしっかりと固着する厚い層でなければなりません。" +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "インフィルが追加される内部オーバーハングの最小角度。0° のとき、対象物は完全にインフィルが充填され、90° ではインフィルが提供されません。" -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "中間のラフト層の層の厚さ。" +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "スキンエッジサポートの厚さ" -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "トップラフト層の層厚。" +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "スキンエッジをサポートする追加のインフィルの厚さ。" -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "サポート毎行Nミリ時に、サポートの接続をわざと外し、後のサポート材の構造をもろくし、壊れやすくする。" +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "スキンエッジサポートレイヤー" -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "左" +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "スキンエッジをサポートするインフィルレイヤーの数。" -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "ヘッド持ち上げ" +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "ライトニングインフィルサポート角度" -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "ライトニング" +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "ライトニングインフィルレイヤーがその上の物を支える必要がある場合を決定します。レイヤーの厚さを考慮して角度で指定されます。" msgctxt "lightning_infill_overhang_angle label" msgid "Lightning Infill Overhang Angle" msgstr "ライトニングインフィルオーバーハング角度" +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "ライトニングインフィルレイヤーがその上のモデルを支える必要がある場合を決定します。厚さを考慮して角度で指定されます。" + msgctxt "lightning_infill_prune_angle label" msgid "Lightning Infill Prune Angle" msgstr "ライトニングインフィル刈り込み角度" +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "インフィルラインのエンドポイントは短縮され、材料が節約されます。この設定は、これらのラインのエンドポイントにおけるオーバーハングの角度です。" + msgctxt "lightning_infill_straightening_angle label" msgid "Lightning Infill Straightening Angle" msgstr "ライトニングインフィル矯正角度" -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "ライトニングインフィルサポート角度" - -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "枝到達距離制限" - -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "各枝がサポートポイントからどれくらい移動するかを制限します。これにより、サポートをより頑丈にすることができますが、枝の量が増加します(材料の使用量やプリント時間も増加します)。" - -msgctxt "bv_temp_warn_limit description" -msgid "Limit on Build Volume Temperature warning for detection." -msgstr "" - -msgctxt "bv_temp_anomaly_limit description" -msgid "Limit on Build Volume temperature Anomaly for detection." -msgstr "" - -msgctxt "print_temp_anomaly_limit description" -msgid "Limit on Print Temperature anomaly for detection." -msgstr "" - -msgctxt "print_temp_warn_limit description" -msgid "Limit on Print temperature warning for detection." -msgstr "" - -msgctxt "flow_anomaly_limit description" -msgid "Limit on flow anomaly for detection." -msgstr "" - -msgctxt "flow_warn_limit description" -msgid "Limit on the flow warning for detection." -msgstr "" - -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "このメッシュの大きさをを他のメッシュ内に制限します。この設定を使用することで、1つの特定のメッシュ領域の設定を、、全く別のエクストルーダーで作成することができます。" - -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "制限あり" - -msgctxt "line_width label" -msgid "Line Width" -msgstr "ライン幅" - -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "ライン" - -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "直線" - -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "ライン" +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "インフィルラインは矯正され、プリント時間が節約されます。これは、インフィルラインの全長にわたって許可されるオーバーハングの最大角度です。" -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "ライン" +msgctxt "material label" +msgid "Material" +msgstr "マテリアル" -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "ライン" +msgctxt "material description" +msgid "Material" +msgstr "マテリアル" -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "ライン" +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "デフォルト印刷温度" -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "直線" +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "印刷中のデフォルトの温度。これはマテリアルの基本温度となります。他のすべての造形温度はこの値に基づいてオフセットする必要があります" -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "直線" +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "造形温度" -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "印刷するプリンタ内の温度。これがゼロ (0) の場合、造形温度は調整できません。" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "プリンター" +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "印刷温度" -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "プリンターの奥行" +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "印刷中の温度。" -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "プリントヘッドとファンポリゴン" +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "初期レイヤー印刷温度" -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "プリンターの高さ" +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer." +msgstr "最初の層を印刷するために使用される温度です。" -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "プリンターのタイプ" +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "初期印刷温度" -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "プリンターの幅" +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "加熱中、印刷を開始することができる最低の温度。" -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "プリンター詳細設定" +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "最終印刷温度" -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "オーバーハング印刷可能" +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "印刷終了直前に冷却を開始する温度。" -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "触れているメッシュを少し重ねてください。これによって、より良い接着をします。" +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "押出クールダウン速度修飾子" -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "オーバーハング部分よりも底面の支持領域を小さくする。" +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "印刷中にノズルが冷える際の速度。同じ値が、加熱する際の加熱速度に割当られます。" -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "サポートメッシュの下のサポート材を全箇所に作ります、これはサポートメッシュ下にてオーバーハングしないようにするためです。" +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "ビルドプレートのデフォルト温度" -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "最後のヘッドの既知位置からではなく、エクストルーダー現在位置を絶対位置にします。" +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "加熱式ビルドプレートのデフォルト温度。これはビルドプレートの「基本」温度でます。他のすべての印刷温度はこの値に基づいてオフセットする必要があります" -msgctxt "layer_0_z_overlap description" -msgid "" -"Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" -"It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" -msgstr "" +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "ビルドプレート温度" -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "3Dプリンティングにさらに適したメッシュを作成します。" +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "加熱式ビルドプレートの温度。これが0の場合、ビルドプレートは加熱されないままになります。" -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "初期レイヤーのビルドプレート温度" -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "最初のレイヤー印刷時の加熱式ビルドプレートの温度。これが0の場合、最初のレイヤー印刷時のビルドプレートは加熱されないままになります。" -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volumetric)" +msgctxt "material_adhesion_tendency label" +msgid "Adhesion Tendency" +msgstr "接着傾向" -msgctxt "material description" -msgid "Material" -msgstr "マテリアル" +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "表面の接着傾向。" -msgctxt "material label" -msgid "Material" -msgstr "マテリアル" +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "表面エネルギー" -msgctxt "material_brand label" -msgid "Material Brand" -msgstr "" +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "表面エネルギー。" -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "マテリアルGUID" +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "スケールファクタ収縮補正" -msgctxt "material_type label" -msgid "Material Type" -msgstr "" +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "材料の冷却時の収縮を補正するために、モデルはこのスケールファクタでスケールされます。" -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "ワイプ間の材料の量" +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "水平スケールファクタ収縮補正" -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "引き戻しのない最大コム距離" +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "材料の冷却時の収縮を補正するために、モデルはXY(水平)方向にこのファクタでスケールされます。" -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "最大加速度X" +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "垂直スケールファクタ収縮補正" -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "最大加速度Y" +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "材料の冷却時の収縮を補正するために、モデルはZ(垂直)方向にこのファクタでスケールされます。" -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "最大加速度Z" +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "結晶性材料" -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "最大枝角度" +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "この材料は加熱時にきれいに分解するタイプ (結晶性) または長く絡み合ったポリマー鎖 (非結晶) を作り出すタイプのいずれですか?" -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "最大偏差" +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "滲出防止引戻し位置" -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "最大押出領域偏差" +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "滲出を止めるには材料をどこまで引き戻す必要があるか。" -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "最大ファン速度" +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "滲出防止引戻し速度" -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "フィラメント最大加速度" +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "滲出を防止するにはフィラメントスイッチ中に材料をどの程度速く引き戻す必要があるか。" -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "最大モデル角度" +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "フィラメントの引き出し準備引戻し位置" -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "オーバーハングした穴の最大領域" +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "加熱中にフィラメントの引き出しが生じる距離。" -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "最大留め期間" +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "フィラメント引き出し準備引戻し速度" -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "最大解像度" +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "フィラメントの引き出しが起こるための引き戻しの距離。" -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "最大引き戻し回数" +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "フィラメント引き出し準備温度" -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "表面展開最大角" +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "材料のパージに使用する温度は、許容最高プリンティング温度とほぼ等しくなければなりません。" -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "最大速度E" +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "フィラメント引き出しの引戻し位置" -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "最大速度X" +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "フィラメントをきれいに引き出すにはフィラメントをどこまで引き戻すか。" -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "最大速度Y" +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "フィラメント引き出しの引戻し速度" -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "最大速度Z" +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "フィラメントをきれいに引き出すために維持すべきフィラメントの引戻し速度。" -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "最大タワーサポート直径" +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "フィラメント引き出し温度" -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "最大移動解像度" +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "フィラメントがきれいに引き出される温度。" -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "X方向のモーターの最大速度" +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "フラッシュパージ速度" -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Y方向のモーターの最大加速度。" +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "材料を切り替えた後に、材料の下準備をする速度。" -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Z方向のモーターの最大加速度。" +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "フラッシュパージ長さ" -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "フィラメントのモーターの最大加速度。" +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "材料を切り替えたときに、ノズルから前の材料をパージするために使用する材料の量(フィラメントの長さ)。" + +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "フィラメントパージ速度の後" -msgctxt "bridge_sparse_infill_max_density description" -msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." -msgstr "スパース(疎)であると見なされるインフィルの最大密度。スパースインフィル上のスキンは、サポートされていないと見なされるため、ブリッジスキンとして扱われる可能性があります。" +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "空のスプールを同じ材料の新しいスプールに交換した後に、材料の下準備をする速度。" -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "特殊なサポートタワーにより支持される小さな領域のX / Y方向の最小直径。" +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "フィラメントパージ長さの後" -msgctxt "max_extrusion_before_wipe description" -msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." -msgstr "別のノズル拭き取りを行う前に押し出せる材料の最大量。この値がレイヤーに必要な材料の量よりも小さい場合、この設定はこのレイヤーには影響しません。つまり、レイヤーごとに1つの拭き取りに制限されます。" +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "空のスプールを同じ材料の新しいスプールに交換したときに、ノズルから前の材料をパージするために使用する材料の量(フィラメントの長さ)。" -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "重複メッシュのマージ" +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "最大留め期間" -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "メッシュ修正" +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "材料を乾燥保管容器の外に置くことができる期間。" -msgctxt "mesh_position_x label" -msgid "Mesh Position X" -msgstr "メッシュ位置X" +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "無負荷移動係数" -msgctxt "mesh_position_y label" -msgid "Mesh Position Y" -msgstr "メッシュ位置Y" +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "フィーダーとノズルチャンバーの間でフィラメントが圧縮される量を示す係数。フィラメントスイッチの材料を移動する距離を決めるために使用されます。" -msgctxt "mesh_position_z label" -msgid "Mesh Position Z" -msgstr "メッシュ位置Z" +msgctxt "material_flow label" +msgid "Flow" +msgstr "フロー" -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "メッシュ処理ランク" +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "流れの補修: 押出されるマテリアルの量は、この値から乗算されます。" -msgctxt "mesh_rotation_matrix label" -msgid "Mesh Rotation Matrix" -msgstr "メッシュ回転マトリックス" +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "壁のフロー" -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "中間" +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "壁のフロー補正。" -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "最小型幅" +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "外壁のフロー" -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "スタンバイ温度までの最短時間" +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "最外壁のフロー補正。" -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "ブリッジ壁の最小長さ" +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "内壁のフロー" -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "最小偶数ウォールライン幅" +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "最外壁以外の壁のフロー補正。" -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "最小抽出距離範囲" +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "上面最外壁の流れ" -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "最小フィーチャーサイズ" +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "最外の壁ラインにおける流量補正。" -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "最小送り速度" +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "上面内壁の流れ" -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "モデルに対する最小高さ" +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "最外のラインを除く、全ての壁ラインにおけるトップサーフェス壁ラインのフロー補正" -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "最小インフィル領域" +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "上面/下面フロー" -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "最小レイヤー時間" +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "上面/下面のフロー補正。" -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "最小奇数ウォールライン幅" +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "上部表面スキンフロー" -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "最小ポリゴン円周" +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "印刷物の上部表面のフロー補正。" -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "表面展開最小角" +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "インフィルフロー" -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "最低速度" +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "インフィルのフロー補正。" -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "最小サポート領域" +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "スカート/ブリムのフロー" -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "最小サポートフロア領域" +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "スカートまたはブリムのフロー補正。" -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "最小サポートインターフェイス領域" +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "支持材のフロー" -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "最小サポートルーフ領域" +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "支持材のフロー補正。" -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "最小サポートX/Y距離" +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "支持材界面フロー" -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "最小薄肉ウォールライン幅" +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "支持材の天井面または床面のフロー補正。" -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "コースティング前の最小ボリューム" +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "支持材天井面フロー" -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "最小ウォールライン幅" +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "支持材天井面のフロー補正。" -msgctxt "minimum_interface_area description" -msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "サポートインターフェイスポリゴンの最小領域サイズ。この値より小さい領域のポリゴンは通常のサポートとしてプリントされます。" +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "支持材床面フロー" -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "ポリゴンをサポートする最小領域サイズ。この領域よりポリゴンが小さい場合は生成されません。" +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "支持材床面のフロー補正。" -msgctxt "minimum_bottom_area description" -msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "サポートのフロアの最小領域サイズ。この値より小さい領域のポリゴンは通常のサポートとしてプリントされます。" +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "プライムタワーのフロー" -msgctxt "minimum_roof_area description" -msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "サポートのルーフの最小領域サイズ。この値より小さい領域のポリゴンは通常のサポートとしてプリントされます。" +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "プライムタワーのフロー補正。" -msgctxt "min_feature_size description" -msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." -msgstr "薄いフィーチャーの最小厚さ。この値より薄いモデルフィーチャーはプリントされず、最小フィーチャーサイズより厚いフィーチャーは最小ウォールライン幅に広げられます。" +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "初期レイヤーフロー" -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "円錐形のサポート領域のベースが縮小される最小幅。幅が狭いと、サポートが不安定になる可能性があります。" +msgctxt "material_flow_layer_0 description" +msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." +msgstr "初期レイヤーの流量補修:初期レイヤーの マテリアル吐出量はこの値の乗算で計算されます。" -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "型" +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "初期レイヤーインナーウォールのフロー" -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "型角度" +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "最も外側のウォールラインを除くすべてのウォールラインのフロー補正(ただし、最初のレイヤーのみ)" -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "型ルーフ高さ" +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "初期レイヤーアウターウォールのフロー" + +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "最初のレイヤーの最も外側のウォールライン上のフロー補正。" -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "アイロン方向一貫性" +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "初期レイヤーの底面フロー" -msgctxt "raft_surface_monotonic label" -msgid "Monotonic Raft Top Surface Order" -msgstr "" +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "最初のレイヤーの底面ラインのフロー補正" -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "上面方向一貫性" +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "スタンバイ温度" -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "上面/底面の方向一貫性" +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "印刷していないノズルの温度(もう一方のノズルが印刷中)" -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "複数のスカートラインを使用すると、小さなモデル形成時の射出をより良く行うことができます。これを0に設定するとスカートが無効になります。" +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "サポート材かどうか" -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "最初のレイヤーに線幅の乗数です。この値を増やすと、ベッドの接着性が向上します。" +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "この素材が一般的にプリント時のサポート材として使用されるかどうかを示します。" -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "無負荷移動係数" +msgctxt "speed label" +msgid "Speed" +msgstr "スピード" -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Z 軸ギャップにスキンなし" +msgctxt "speed description" +msgid "Speed" +msgstr "スピード" -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "これまでにないモデルの印刷方法です。" +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "印刷速度" -msgctxt "adhesion_type option none" -msgid "None" -msgstr "なし" +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "印刷スピード。" -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "なし" +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "インフィル速度" -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "標準" +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "インフィルを印刷する速度。" -msgctxt "prime_tower_mode option normal" -msgid "Normal" -msgstr "" +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "ウォール速度" -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "標準" +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "ウォールを印刷する速度。" -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "通常、Curaはメッシュ内の小さな穴をスティッチし、大きな穴のあるレイヤーの部分を削除しようとします。このオプションを有効にすると、スティッチできない部分が保持されます。このオプションは、他のすべてが適切なG-codeを生成できない場合の最後の手段として使用する必要があります。" +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "外壁速度" -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "スキン内にない" +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "最も外側のウォールをプリントする速度。外側の壁を低速でプリントすると表面の質が改善しますが、内壁と外壁のプリント速度の差が大きすぎると、印刷の質が悪化します。" -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "外側表面には適用しない" +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "内壁速度" -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "ノズル角度" +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "内側のウォールをプリントする速度 外壁より内壁を高速でプリントすると、印刷時間の短縮になります。外壁のプリント速度とインフィルのプリント速度の中間に設定するのが適切です。" -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "ノズル内径" +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "上面の最外壁速度" -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "ノズル拒否エリア" +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "上面の最外壁が印刷される速度" -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ノズルID" +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "上面内壁速度" -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "ノズル長さ" +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "上面内壁が印刷される速度" -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "ノズル切替え後のプライムに必要な余剰量" +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "最上面速度" -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "ノズルスイッチ押し戻し速度" +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "上部表面プリント時の速度。" -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "ノズルスイッチ引き込み速度" +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "上面/底面速度" -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "ノズルスイッチ引き戻し距離" +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "トップ/ボトムのレイヤーのプリント速度。" -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "ノズルスイッチ引き戻し速度" +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "サポート速度" -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "エクストルーダーの数" +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "サポート材をプリントする速度です。高速でサポートをプリントすると、印刷時間を大幅に短縮できます。サポート材は印刷後に削除されますので、サポート構造の品質はそれほど重要ではありません。" -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "有効なエクストルーダーの数" +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "サポートインフィル速度" -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "遅いレイヤーの数" +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "サポート材のインフィルをプリントする速度 低速でプリントすると安定性が向上します。" -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "有効なエクストルーダートレインの数(ソフトウェアが自動設定)" +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "サポートインタフェース速度" -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "エクストルーダーの数。エクストルーダーの単位は、フィーダー、ボーデンチューブ、およびノズルを組合せたもの。" +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "ルーフとフロアのサポート材をプリントする速度。低速でプリントするとオーバーハングの品質を向上できます。" -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "ブラシ全体をノズルが移動する回数。" +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "サポートルーフ速度" -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "天井面の表面に近づく際にインフィル密度が半減する回数。天井面に近い領域ほど高い密度となり、インフィル密度まで達します。" +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "ルーフとフロアのサポート材をプリントする速度 これらを低速でプリントするとオーバーハングの品質を向上できます。" -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "天井面より下に遠ざかる際にサポートのインフィル密度が半減する回数 天井面に近い領域ほど高い密度となり、サポートのインフィル密度になります。" +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "サポートフロア速度" -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "オクテット" +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "フロアのサポートがプリントされる速度。低速で印刷することで、サポートの接着性を向上させることができます。" -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "オフ" +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "プライムタワー印刷速度" -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "オブジェクトの X 方向に適用されたオフセット。" +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "プライムタワーをプリントする速度です。異なるフィラメントの印刷で密着性が最適ではない場合、低速にてプライム タワーをプリントすることでより安定させることができます。" -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "オブジェクトのY 方向適用されたオフセット。" +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "移動速度" -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "オブジェクトの Z 方向に適用されたオフセット。この 'オブジェクト シンク' と呼ばれていたものを再現できます。" +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "移動中のスピード。" -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "エクストルーダーのオフセット" +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "初期レイヤー速度" -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "可能な場合はビルドプレート上に配置" +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "初期レイヤーでの速度。ビルドプレートへの接着を改善するため低速を推奨します。ブリムやラフトなどのビルドプレート接着構造自体には影響しません。" + +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "初期レイヤー印刷速度" -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "必要に応じてモデル上に配置" +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "一層目をプリントする速度 ビルトプレートへの接着を向上するため低速を推奨します。" -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "1つずつ" +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "初期レイヤー移動速度" -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "走行時に印刷部品への衝突を避けるため、水平移動で回避できない造形物上を移動するときは、Zホップを実行します。" +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "最初のレイヤーを印刷する際のトラベルスピード。低速の方が、ビルドプレート剥がれるリスクを軽減することができます。この設定の値は、移動速度と印刷速度の比から自動的に計算されます。" -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "メッシュの最後のレイヤーでのみアイロンをかけます。下層にて滑らかな表面仕上げを必要としない場合、時間を節約します。" +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "スカート/ブリム速度" -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Ooze Shield角度" +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "スカートとブリムのプリント速度 通常は一層目のスピードと同じですが、異なる速度でスカートやブリムをプリントしたい場合に設定してください。" -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Ooze Shield距離" +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Z 軸ホップ速度" -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "最適な枝範囲" +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "Z 軸ホップに対して垂直 Z 軸方向の動きが行われる速度。これは通常、ビルドプレートまたはマシンのガントリーが動きにくいため、印刷速度よりも低くなります。" -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "壁印刷順序の最適化" +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "遅いレイヤーの数" -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "撤回と移動距離を減らすために、壁のプリント順序を最適化します。ほとんどの部品がこの設定を有効にしている方が良い印刷結果につながりますが、実際には時間がかかることがありますので、最適化の有無に関わらず印刷時間を比較してください。ビルドプレートの接着タイプにブリムを選択すると最初のレイヤーは最適化されません。" +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "最初の数層は印刷失敗の可能性を軽減させるために、設定した印刷スピードよりも遅く印刷されます。" -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "ノズル外径" +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "フロー均一化率" -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "外壁加速度" +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "押出幅に基づく速度の補正係数。0%では、移動速度が一定のプリント速度に保たれます。100%では、フロー(mm³/s単位)が一定になるように移動速度が調整されます。つまり、通常のライン幅の半分のラインは2倍の速さでプリントされ、幅が2倍のラインは半分の速さでプリントされます。100%より大きな値を設定すると、幅広のラインを押し出すのに必要な高い圧力を補うことができます。" -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "外壁用エクストルーダー" +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "加速度制御を有効にする" -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "外壁のフロー" +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "プリントヘッドのスピード調整の有効化 加速度の増加は印刷時間を短縮しますが印刷の質を損ねます。" -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "外壁はめ込み" +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "プリントヘッド加速(トラベルアクセラレーション)を有効にする" -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "外壁ジャーク" +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "プリントヘッド移動に異なる加速度レートを使用します。これを無効にすると、プリントヘッドの移動速度は印刷範囲で加速されずに同じ速度が使用されます。" -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "外側ウォールライン幅" +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "印刷加速度" -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "外壁速度" +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "印刷の加速スピードです。" -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "外壁移動距離" +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "インフィル加速度" -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "同じレイヤー内の異なる島の外壁は順次印刷されます。有効にすると、壁は1つの種類ずつ印刷されるため、フローの変化量が制限されます。無効にすると、同じ島の壁がグループ化されるため、島間の移動回数が減少します。" +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "インフィルの印刷の加速スピード。" -msgctxt "brim_location option outside" -msgid "Outside Only" -msgstr "" +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "ウォール加速度" -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "外側から内側へ" +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "ウォールをプリントする際の加速度。" -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "張り出し壁アングル" +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "外壁加速度" -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "張り出し壁速度" +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "最も外側の壁をプリントする際の加速度。" -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "張り出し壁は、この割合で通常の印刷速度で印刷されます。" +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "内壁加速度" -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "引き戻し前に一時停止します。" +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "内側のウォールがが出力される際のスピード。" -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "ブリッジ壁とスキンを印刷する際に使用するファン速度の割合。" +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "上面外壁加速度" -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "セカンドブリッジのスキンレイヤーを印刷する際に使用するファン速度の割合。" +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "上面の最外壁が印刷される際の加速度" -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "サポートを超えた直後にスキン領域に印字するときに使用するファン速度を割合で示します。高速ファンを使用すると、サポートが取り外しやすくなります。" +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "上面内壁加速度" -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "サードブリッジのスキンレイヤーを印刷する際に使用するファン速度の割合。" +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "上面内壁が印刷される際の加速度" -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "この量よりも小さい円周を持つスライスレイヤーのポリゴンは、除外されます。値を小さくすると、スライス時間のコストで、メッシュの解像度が高くなります。つまり、ほとんどが高解像 SLA プリンター、極小多機能 3D モデルです。" +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "最上面加速度" -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "希望枝角度" +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "上部表面プリント時の加速度。" -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "1つ外側のウォールと1つ内側のウォールの間を行き来することを防止します。このマージンは、続くライン幅の範囲を[最小ウォールライン幅 - マージン, 2 * 最小ウォールライン幅 + マージン]に拡張します。このマージンを増やすと移行の回数が減り、押出の開始/停止回数が減少し、移動時間が短縮されます。ただし、ライン幅の変化が大きいと、押出不足や押出過多の問題が発生することがあります。" +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "上面/底面加速度" -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "プライムタワー加速度" +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "トップとボトムのレイヤーの印刷加速度。" -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Base" -msgstr "プライムタワーベース" +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "サポート加速度" -msgctxt "prime_tower_base_height label" -msgid "Prime Tower Base Height" -msgstr "プライムタワーベースの高さ" +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "サポート材プリント時の加速スピード。" -msgctxt "prime_tower_base_size label" -msgid "Prime Tower Base Size" -msgstr "プライムタワーベースのサイズ" +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "サポートインフィル加速度" -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Slope" -msgstr "プライムタワーベースの傾斜" +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "インフィルのサポート材のプリント時の加速度。" -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "プライムタワーのフロー" +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "サポートインタフェース加速度" -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "プライムタワージャーク" +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "サポートの上面と下面が印刷される加速度。低加速度で印刷するとオーバーハングの品質が向上します。" -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "プライムタワーのライン幅" +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "サポートルーフ加速度" -msgctxt "prime_tower_max_bridging_distance label" -msgid "Prime Tower Maximum Bridging Distance" -msgstr "" +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "サポートの上面がプリントされる加速度、低加速度で印刷するとオーバーハングの品質が向上します。" -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "プライムタワー最小容積" +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "サポートフロア加速度" + +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "サポートのフロアが印刷される加速度。より低い加速度で印刷すると、モデル上のサポートの接着性を向上させることができます。" -msgctxt "prime_tower_raft_base_line_spacing label" -msgid "Prime Tower Raft Line Spacing" -msgstr "プライムタワーラフトライン間隔" +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "プライムタワー加速度" -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "プライムタワーのサイズ" +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "プライムタワーの印刷時のスピード。" -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "プライムタワー印刷速度" +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "移動か速度" -msgctxt "prime_tower_mode label" -msgid "Prime Tower Type" -msgstr "" +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "移動中の加速度。" -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "プライムタワーX位置" +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "初期レイヤー加速度" -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "プライムタワーY位置" +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "初期レイヤーの加速度。" -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "印刷加速度" +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "初期レイヤー印刷加速度" -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "印刷ジャーク" +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "初期レイヤーの印刷中の加速度。" -msgctxt "ppr label" -msgid "Print Process Reporting" -msgstr "" +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "初期レイヤー移動加速度" -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "印刷頻度" +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "最初のレイヤー時の加速度。" -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "印刷速度" +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "スカート/ブリム加速度" -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "薄壁印刷" +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "スカートとブリム印刷時の加速度。通常、初期レイヤーの印刷スピードにて適用されるが、異なる速度でスカートやブリムを印刷したい場合使用できる。" -msgctxt "brim_location description" -msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." -msgstr "" +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "ジャーク制御を有効にする" -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "印刷物の横にタワーを造形して、ノズル交換後にフィラメントの調整をします。" +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "X または Y 軸の速度が変更する際、プリントヘッドのジャークを調整することができます。ジャークを増やすことは、印刷時間を短縮できますがプリントの質を損ねます。" -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "面材構造を印刷するには、モデルの上部がサポートされている必要があります。これを有効にすると、印刷時間と材料の使用量が減少しますが、オブジェクトの強度が不均一になります。" +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "トラベルジャークを有効にする" -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "アイロンラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。" +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "プリントヘッドの移動に異なるジャーク値を使用します。これを無効にすると、印刷範囲で設定されたジャーク値を使用します。" -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "型を取るため印刷し、ビルドプレート上の同じようなモデルを得るためにキャスト用の印刷をします。" +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "印刷ジャーク" -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "ノズルサイズよりも細い壁を作ります。" +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "プリントヘッドの最大瞬間速度の変更。" -msgctxt "raft_surface_monotonic description" -msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." -msgstr "" +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "インフィルジャーク" -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "セカンドブリッジのスキンレイヤーを印刷する際に使用する印刷速度。" +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "インフィルの印刷時の瞬間速度の変更。" -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "サードブリッジのスキンレイヤーを印刷する際に使用する印刷速度。" +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "ウォールジャーク" -msgctxt "print_temp_anomaly_limit label" -msgid "Print temperature Limit" -msgstr "" +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "ウォールのプリント時の最大瞬間速度を変更。" -msgctxt "print_temp_warn_limit label" -msgid "Print temperature Warning" -msgstr "" +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "外壁ジャーク" -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "" -"壁より前にインフィルをプリントします はじめに壁をプリントするとより精密な壁になりますが、オーバーハングのプリントは悪化します\n" -"はじめにインフィルをプリントすると丈夫な壁になりますが、インフィルの模様が時折表面から透けて表れます。" +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "外側のウォールが出力される際の最大瞬間速度の変更。" -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "上面のラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。" +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "内壁ジャーク" -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "上面/底面のラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。" +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "内側のウォールがプリントされれう際の最大瞬間速度の変更。" -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "印刷温度" +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "上面内壁の最大瞬間速度変化" -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "初期レイヤー印刷温度" +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "上面内壁が印刷される際の最大瞬間速度変化。" -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "最も内側のスカートラインを複数のレイヤーに分けてプリントすることで、スカートを取り外しやすくします。" +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "上面最外壁の最大瞬間速度変化" -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "すべてのレイヤーごとに予備の壁を印刷します。このようにして、インフィルは余分な壁の間に挟まれ、より強い印刷物が得られる。" +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "上面最外壁が印刷される際の最大瞬間速度変化。" -msgctxt "resolution label" -msgid "Quality" -msgstr "品質" +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "最上面ジャーク" -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "クォーターキュービック" +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "上部表面プリント時の最大加速度。" -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "ラフト" +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "上面/下面ジャーク" -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "ラフト間のラップ" +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "トップとボトムのレイヤーを印刷する際の最大瞬間速度の変更。" -msgctxt "raft_base_margin label" -msgid "Raft Base Extra Margin" -msgstr "" +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "サポートジャーク" -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "ラフトベースエクストルーダー" +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "サポート材の印刷時の最大瞬間速度の変更。" -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "ラフトベースファン速度" +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "サポートインフィルジャーク" -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "ラフトベースラインスペース" +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "サポート材の印刷時、最大瞬間速度の変更。" -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "ラフトベースライン幅" +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "サポートインタフェースジャーク" -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "ラフトベース印刷加速度" +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "どのルーフとフロアのサポート部分を印刷するかによって最大瞬間速度は変化します。" -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "ラフトベース印刷ジャーク" +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "サポートルーフジャーク" -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "ラフトベース印刷速度" +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "どのサポートのルーフ部分を印刷するかによって最大瞬間速度は変化します。" + +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "サポートフロアジャーク" -msgctxt "raft_base_smoothing label" -msgid "Raft Base Smoothing" -msgstr "" +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "どのサポートのフロア部分を印刷するかによって最大瞬間速度は変化します。" -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "ラフトベース厚さ" +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "プライムタワージャーク" -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "ラフトベースウォール数" +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "プライムタワーがプリントされる際の最大瞬間速度を変更します。" -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "ラフトの余分なマージン" +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "移動ジャーク" -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "ラフトファン速度" +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "移動する際の最大瞬時速度の変更。" -msgctxt "raft_interface_margin label" -msgid "Raft Middle Extra Margin" -msgstr "" +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "初期レイヤージャーク" -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "ラフト中間エクストルーダー" +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "初期レイヤーの最大瞬時速度の変更。" -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "ラフト中間層ファン速度" +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "初期レイヤー印刷ジャーク" -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "ラフト中間レイヤー" +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "初期レイヤー印刷中の最大瞬時速度の変化。" -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "ラフト中央ライン幅" +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "初期レイヤー移動ジャーク" -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "ラフト中間層印刷加速度" +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "移動加速度は最初のレイヤーに適用されます。" -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "ラフト中間層印刷ジャーク" +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "スカート/ブリムジャーク" -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "ラフト中間印刷速度" +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "スカートとブリムがプリントされる最大瞬時速度の変更。" -msgctxt "raft_interface_smoothing label" -msgid "Raft Middle Smoothing" -msgstr "" +msgctxt "travel label" +msgid "Travel" +msgstr "移動" -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "ラフト中間スペース" +msgctxt "travel description" +msgid "travel" +msgstr "移動" -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "ラフト中央厚さ" +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "引き戻し有効" -msgctxt "raft_interface_wall_count label" -msgid "Raft Middle Wall Count" -msgstr "" +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "ノズルが印刷しないで良い領域を移動する際にフィラメントを引き戻す。" -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "ラフト印刷加速度" +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "レイヤー変更時に引き戻す" -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "ラフト印刷ジャーク" +msgctxt "retract_at_layer_change description" +msgid "Retract the filament when the nozzle is moving to the next layer." +msgstr "ノズルは次の層に移動するときフィラメントを引き戻します。" -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "ラフト印刷速度" +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "引き戻し距離" -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "ラフト補整" +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "引き戻されるマテリアルの長さ。" -msgctxt "raft_surface_margin label" -msgid "Raft Top Extra Margin" -msgstr "" +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "引き戻し速度" -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "ラフトトップエクストルーダー" +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "フィラメントが引き戻される時のスピード。" -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "ラフト上層ファン速度" +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "引き戻し速度の取り消し" -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "ラフト最上層厚さ" +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "フィラメントが引き戻される時のスピード。" -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "ラフト最上層" +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "押し戻し速度の取り消し" -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "ラフト最上ライン幅" +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "フィラメントが引き戻される時のスピード。" -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "ラフト上層層印刷加速度" +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "余分な押し戻し量の引き戻し" -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "ラフト上層印刷ジャーク" +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "マテリアルによっては、移動中に滲み出てきてしまうときがあり、ここで調整することができます。" -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "ラフト上層印刷速度" +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "引き戻し最小移動距離" -msgctxt "raft_surface_smoothing label" -msgid "Raft Top Smoothing" -msgstr "" +msgctxt "retraction_min_travel description" +msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." +msgstr "フィラメントを引き戻す際に必要な最小移動距離。これは、短い距離内での引き戻しの回数を減らすために役立ちます。" -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "ラフト最上面スペース" +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "最大引き戻し回数" -msgctxt "raft_surface_wall_count label" -msgid "Raft Top Wall Count" -msgstr "" +msgctxt "retraction_count_max description" +msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." +msgstr "この設定は、決められた距離の中で起こる引き戻しの回数を制限します。制限数以上の引き戻しは無視されます。これによりフィーダーでフィラメントを誤って削ってしまう問題を軽減させます。" -msgctxt "raft_wall_count label" -msgid "Raft Wall Count" -msgstr "" +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "最小抽出距離範囲" -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "ランダム" +msgctxt "retraction_extrusion_window description" +msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." +msgstr "最大の引き戻し回数。この値は引き戻す距離と同じであることで、引き戻しが効果的に行われます。" -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "インフィル開始のランダム化" +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "コーミングモード" -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "どのインフィルラインが最初に印刷されるかをランダム化します。これによって1つのセグメントが強くなることを回避しますが、追加の移動距離が必要となります。" +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "コーミングは、走行時にすでに印刷された領域内にノズルを保ちます。その結果、移動距離はわずかに長くなりますが、引き込みの必要性は減ります。コーミングがオフの場合、フィラメントの引き戻しを行い、ノズルは次のポイントまで直線移動します。また、インフィルのみにてコーミングすることにより、トップとボトムのスキン領域上での櫛通りを回避できます。" -msgctxt "magic_fuzzy_skin_enabled description" -msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." -msgstr "外壁を印刷する際に振動が起こり、表面が粗くてぼやける。" +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "オフ" -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "長方形" +msgctxt "retraction_combing option all" +msgid "All" +msgstr "すべて" -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "標準ファン速度" +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "外側表面には適用しない" -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "標準ファン速度時の高さ" +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "スキン内にない" -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "標準ファン速度時のレイヤー" +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "インフィル内" + +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "引き戻しのない最大コム距離" -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "標準/最大ファン速度のしきい値" +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "ゼロを超える場合、この距離より長い移動量をコーミングすると、引き戻しが使用されます。ゼロに設定した場合、最大値はなく、コーミング移動では引き戻しを使用しません。" -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "相対押出" +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "外壁の前に引き戻す" -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "全穴除去" +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "移動して外側のウォールをプリントする際、毎回引き戻しをします。" -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "空の最初のメッシュの削除" +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "移動は印刷したパーツを回避する" -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "重複メッシュの削除" +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "ノズルは、移動時に既に印刷されたパーツを避けます。このオプションは、コーミングが有効な場合にのみ使用できます。" -msgctxt "raft_base_remove_inside_corners label" -msgid "Remove Raft Base Inside Corners" -msgstr "" +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "移動はサポートを回避する" -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "ラフト内側コーナーの削除" +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "ノズルは、移動時に既に印刷されたサポートを避けます。このオプションは、コーミングが有効な場合にのみ使用できます。" -msgctxt "raft_interface_remove_inside_corners label" -msgid "Remove Raft Middle Inside Corners" -msgstr "" +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "移動回避距離" -msgctxt "raft_surface_remove_inside_corners label" -msgid "Remove Raft Top Inside Corners" -msgstr "" +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "ノズルが既に印刷された部分を移動する際の間隔。" -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "複数のメッシュが重なっている領域を削除します。これは、結合された2つのマテリアルのオブジェクトが互いに重なっている場合に使用されます。" +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "レイヤー始点X" -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "最初に印刷したレイヤーの下に空のレイヤーがある場合は取り除きます。この設定を無効にすると、スライストレランスが「排他」または「中間」に設定されている場合に最初のレイヤーが空になる原因になります。" +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "各レイヤーのプリントを開始する部分をしめすX座標。" -msgctxt "raft_base_remove_inside_corners description" -msgid "Remove inside corners from the raft base, causing the raft to become convex." -msgstr "" +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "レイヤー始点Y" -msgctxt "raft_interface_remove_inside_corners description" -msgid "Remove inside corners from the raft middle part, causing the raft to become convex." -msgstr "" +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "各レイヤーのプリントを開始する部分をしめすY座標。" -msgctxt "raft_surface_remove_inside_corners description" -msgid "Remove inside corners from the raft top part, causing the raft to become convex." -msgstr "" +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "引き戻し時のZホップ" -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "ラフトから内側コーナーを削除し、ラフトが凸になるようにします。" +msgctxt "retraction_hop_enabled description" +msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "引き戻しが完了すると、ビルドプレートが下降してノズルとプリントの間に隙間ができます。ノズルの走行中に造形物に当たるのを防ぎ、造形物をビルドプレートから剥がしてしまう現象を減らします。" -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "各レイヤーの穴を消し、外形のみを保持します。これにより、見えない部分の不要な部分が無視されますが、表面上にある穴も全て造形されなくなります。" +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "印刷パーツに対するZホップ" -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "走行時に印刷部品への衝突を避けるため、水平移動で回避できない造形物上を移動するときは、Zホップを実行します。" -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Zホップ高さ" -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "上部/下部パターンの最も外側の部分を同心円の線で置き換えます。 1つまたは2つの線を使用すると、トップ部分の造形が改善されます。" +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Zホップを実行するときの高さ。" -msgctxt "ppr description" -msgid "Reporting events that go out of set thresholds" -msgstr "" +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "エクストルーダースイッチ後のZホップ" -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "希望配置" +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "マシーンが1つのエクストルーダーからもう一つのエクストルーダーに切り替えられた際、ビルドプレートが下降して、ノズルと印刷物との間に隙間が形成される。これによりノズルが造形物の外側にはみ出たマテリアルを残さないためである。" -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "外壁の前に引き戻す" +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "エクストルーダースイッチ高さ後のZホップ" -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "レイヤー変更時に引き戻す" +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "エクストルーダースイッチ後のZホップを実行するときの高さの違い。" -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "ノズルが印刷しないで良い領域を移動する際にフィラメントを引き戻す。" +msgctxt "cooling label" +msgid "Cooling" +msgstr "冷却" -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "ノズルが印刷しないで良い領域を移動する際にフィラメントを引き戻す。" +msgctxt "cooling description" +msgid "Cooling" +msgstr "冷却" -msgctxt "retract_at_layer_change description" -msgid "Retract the filament when the nozzle is moving to the next layer." -msgstr "ノズルは次の層に移動するときフィラメントを引き戻します。" +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "印刷中の冷却を有効にする" -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "引き戻し距離" +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "印刷中の冷却ファンを有効にします。ファンは、短いレイヤープリントやブリッジ/オーバーハングのレイヤーがある印刷物の品質を向上させます。" -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "余分な押し戻し量の引き戻し" +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "ファン速度" -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "引き戻し最小移動距離" +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "冷却ファンが回転する速度。" -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "押し戻し速度の取り消し" +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "標準ファン速度" -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "引き戻し速度の取り消し" +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "しきい値に達する前のファンの回転スピード。プリント速度がしきい値より速くなると、ファンの速度は上がっていきます。" -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "引き戻し速度" +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "最大ファン速度" -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "右" +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "最小積層時間でファンが回転する速度。しきい値に達すると、通常のファンの速度と最速の間でファン速度が徐々に加速しはじめます。" -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "ファン速度を0~1にスケール" +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "標準/最大ファン速度のしきい値" -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "ファン速度は0〜256ではなく、0〜1になるようスケールします。" +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "通常速度と最速の間でしきい値を設定する積層時間。この時間よりも遅く印刷する積層は、通常速度を使用します。より速い層の場合、ファンは最高速度に向かって徐々に加速します。" -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "スケールファクタ収縮補正" +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "初期ファン速度" -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "シーンにサポートメッシュがある" +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "プリント開始時にファンが回転する速度。後続のレイヤーでは、ファン速度は、高さに応じて早くなります。" -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "シームコーナー設定" +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "標準ファン速度時の高さ" -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "手動で印刷順序を設定する" +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "通常速度でファンが回転するときの高さ。ここより下層レイヤーでは初期ファンのスピードから通常の速度まで徐々に増加します。" -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "ドラフトシールドの高さを設定します。ドラフトシールドは、モデルの全高、または限られた高さで印刷するように選択します。" +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "標準ファン速度時のレイヤー" -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "デュアルエクストルーダーで印刷するための設定。" +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "ファンが通常の速度で回転する時のレイヤー。通常速度のファンの高さが設定されている場合、この値が計算され、整数に変換されます。" -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "CuraエンジンがCuraフロントエンドから呼び出されない場合のみ使用される設定。" +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "最小レイヤー時間" + +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "一つのレイヤーに最低限費やす時間。1つの層に必ず設定された時間を費やすため、場合によってはプリントに遅れが生じます。しかしこれにより、次の層をプリントする前に造形物を適切に冷却することができます。 Lift Headが無効になっていて、最小速度を下回った場合、最小レイヤー時間よりも短くなる場合があります。" -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "共有ノズルの初期引き戻し" +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "最低速度" -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "鋭い角" +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "最遅印刷速度。印刷の速度が遅すぎると、ノズル内の圧力が低すぎて印刷品質が低下します。" -msgctxt "shell description" -msgid "Shell" -msgstr "外郭" +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "ヘッド持ち上げ" -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "最短" +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "レイヤーの最小プリント時間より早く印刷が終わった場合、ヘッド部分を持ち上げてレイヤーの最小プリント時間に到達するまで待機します。" -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "プリンターのバリエーションの表示" +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "小さいレイヤーのプリント温度" -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "スキンエッジサポートレイヤー" +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "レイヤー時間が最小であるため、速度を落としてプリントする場合は、この温度まで徐々に下げてください。" -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "スキンエッジサポートの厚さ" +msgctxt "support label" +msgid "Support" +msgstr "サポート" -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "表面展開距離" +msgctxt "support description" +msgid "Support" +msgstr "サポート" -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "表面公差" +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "サポート開始" -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "表面公差量" +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "オーバーハングするモデルのサポートパーツの構造を形成します。これらのサポートがなければ、印刷は失敗します。" -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "表面除去幅" +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "サポート用エクストルーダー" -msgctxt "min_skin_width_for_expansion description" -msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." -msgstr "これより狭いスキン領域は展開されません。モデル表面に、垂直に近い斜面がある場合に作成される狭いスキン領域の拡大を回避するためです。" +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "サポート材を印刷するためのエクストルーダー。複数のエクストルーダーがある場合に使用されます。" -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "毎行Nミリ時に、サポートの接続をわざとスキップし、後のサポート材の構造をもろくし、壊れやすくする。" +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "サポート用インフィルエクストルーダー" -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "サポートラインの接続部分をスキップし、サポート材部分を壊れやすくします。この設定はジグザクのサポートインフィル材のパターンにて適用できます。" +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "サポート材のインフィルを印刷に使用するためのエクストルーダー。複数のエクストルーダーがある場合に使用されます。" -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "スカート" +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "最初のレイヤー用サポートエクストルーダー" -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "スカート距離" +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "サポートのインフィルの最初の層を印刷に使用するエクストルーダー。複数のエクストルーダーがある場合に使用されます。" -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "スカート高さ" +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "サポートインタフェースエクストルーダー" -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "スカートライン数" +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "サポートのルーフおよび底面を印刷するために使用するエクストルーダーの列。デュアルノズル時に使用されます。" -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "スカート/ブリム加速度" +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "サポートルーフエクストルーダー" -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "スカート/ブリムエクストルーダー" +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "サポートのルーフ面をプリントする際のエクストルーダー列。デュアルノズル時に使用します。" -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "スカート/ブリムのフロー" +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "サポートフロアエクストルーダー" -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "スカート/ブリムジャーク" +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "サポートのフロア面をプリントする際に使用するエクストルーダーの列。デュアルノズル時に使用します。" -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "スカート/ブリムラインの幅" +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "サポート構造" -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "スカート/ブリム最小長さ" +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "サポートを生成するために利用できる技術を選択します。「標準」のサポート構造はオーバーハング部品のすぐ下に作成し、そのエリアを真下に生成します。「ツリー」サポートはオーバーハングエリアに向かって枝を作成し、モデルを枝の先端で支えます。枝をモデルのまわりにはわせて、できる限りビルドプレートから支えます。" -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "スカート/ブリム速度" +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "標準" -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "スライス公差" +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "ツリー" -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "小型形体の初期レイヤー速度" +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "最大枝角度" -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "小型形体の最大長さ" +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "モデルを中心に枝を伸ばす際の枝の最大角度。枝を垂直で安定したものにするためには小さい角度を使用します。高さを得るためには大きい角度を使用します。" -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "小さな機能の速度" +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "枝直径" -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "小さい穴の最大サイズ" +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "ツリーサポートの最も細い枝の直径。枝は太いほど丈夫です。基部に近いところでは、枝はこれよりも太くなります。" -msgctxt "cool_min_temperature label" -msgid "Small Layer Printing Temperature" -msgstr "小さいレイヤーのプリント温度" +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "本体直径" -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "表面の小さな上部/下部" +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "ツリーサポートの最も広い枝の直径。本体が太いほど丈夫です。本体が細いほど、ビルドプレートを占有するスペースが少なくなります。" -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "小さい上下幅" +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "枝直径角度" -msgctxt "small_feature_speed_factor_0 description" -msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "最初のレイヤーの小型形体は通常のプリント速度に対してこの割合でプリントされます。低速でプリントすると、接着と精度が向上します。" +msgctxt "support_tree_branch_diameter_angle description" +msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." +msgstr "基部に向かって徐々に太くなる枝の直径の角度。角度が0の場合、枝の太さは全長にわたって同じになります。少し角度を付けると、ツリーサポートの安定性が高まります。" -msgctxt "small_feature_speed_factor description" -msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "小型形体は通常のプリント速度に対してこの割合でプリントされます。低速でプリントすると、接着と精度が向上します。" +msgctxt "support_type label" +msgid "Support Placement" +msgstr "サポート配置" -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "小さな上部/下部領域は、デフォルトの上部/下部パターンの代わりに壁で埋められます。これにより、ぎくしゃくした動きを防げます。デフォルトでは最上位の(空気にさらされている)レイヤーはオフになっています(「表面の小さな上部/下部」を参照)。" +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "ビルドプレートにタッチ" -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "スマートブリム" +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "全対象" -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "スマート・シーム" +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "希望枝角度" -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "滑らかな輪郭" +msgctxt "support_tree_angle_slow description" +msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." +msgstr "モデルを回避する必要がない場合の枝の希望角度。枝を垂直で安定したものにするためには小さい角度を使用します。迅速にマージするには枝の角度を大きくします。" -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "らせん状の輪郭を滑らかにしてZシームの視認性を低下させます (Zシームは印刷物上でほとんどみえませんが、層ビューでは確認できます)。スムージングは、細かい表面の詳細をぼかす傾向があることに注意してください。" +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "モデルと接続される枝の直径増加" -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "マテリアルによっては、移動中に滲み出てきてしまうときがあり、ここで調整することができます。" +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "モデルに接続する必要がある枝の直径は、ビルドプレートに到達する可能性のある枝とマージされて大きくなる可能性があります。この値を大きくするとプリント時間は短縮されますが、モデル上のサポート領域が大きくなります。" -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "いくつかの材料は、ワイプ移動中ににじみ出るためここで補償することができます。" +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "モデルに対する最小高さ" + +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "モデル上に枝を配置する場合、どれくらいの高さが必要かを示します。サポート材が小さな塊になることを防止します。枝がサポートルーフを支えている場合、この設定は無視されます。" -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "特別モード" +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "初期レイヤー直径" -msgctxt "speed description" -msgid "Speed" -msgstr "スピード" +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "ビルドプレートに到達したときに、すべての枝が達成しようとする直径。ベッドの接着性が向上します。" -msgctxt "speed label" -msgid "Speed" -msgstr "スピード" +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "枝密度" -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "ホップ中に z 軸を移動する速度。" +msgctxt "support_tree_top_rate description" +msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "枝の先端を生成するために使用されるサポート構造の密度を調整します。大きな値ではオーバーハングが良くなりますが、サポート材が除去しにくくなります。非常に大きな値を指定するにはサポートルーフを使用するか、上部のサポート密度が同様に高くなるようにしてください。" -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "滑らかな外側輪郭" +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "先端直径" -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "Z軸の外側のエッジの動きを滑らかにします。全体の印刷に安定したZの動きを促し、この機能によりソリッドのモデルを固定した底辺と単一のウォールの印刷にします。この機能は各レイヤーが単一の部品を含んでいる場合のみに有効です。" +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "ツリーサポートの枝の上部先端の直径。" -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "スタンバイ温度" +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "枝到達距離制限" -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "G-Codeの開始" +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "各枝がサポートポイントからどれくらい移動するかを制限します。これにより、サポートをより頑丈にすることができますが、枝の量が増加します(材料の使用量やプリント時間も増加します)。" -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "レイヤーの経路始点。連続するレイヤー経路が同じポイントで開始すると、縦のシームが印刷に表示されることがあります。ユーザーが指定した場所の近くでこれらを整列させる場合、継ぎ目は最も簡単に取り除くことができます。無作為に配置すると、経路開始時の粗さが目立たなくなります。最短経路をとると、印刷が速くなります。" +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "最適な枝範囲" -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "ミリメートルあたりのステップ (E)" +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "枝がサポートポイントからどれくらい移動できるかについての推奨値。枝は、目的地(ビルドプレートまたはモデルの平らな部分)に到達するためであればこの値に違反することができます。この値を小さくすることで、サポートをより頑丈にすることができますが、枝の量が増加します(材料の使用量やプリント時間も増加します)。" -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "ミリメートルあたりのステップ (X)" +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "希望配置" -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "ミリメートルあたりのステップ (Y)" +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "サポート構造の配置希望場所。構造物を希望の場所に配置できない場合は、別の場所に配置されます(モデル上に配置することになったとしても)。" -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "ミリメートルあたりのステップ (Z)" +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "可能な場合はビルドプレート上に配置" -msgctxt "support description" -msgid "Support" -msgstr "サポート" +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "必要に応じてモデル上に配置" -msgctxt "support label" -msgid "Support" -msgstr "サポート" +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "サポートオーバーハング角度" -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "サポート加速度" +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "サポート材がつくオーバーハングの最小角度。0° のときはすべてのオーバーハングにサポートが生成され、90° ではサポートが生成されません。" -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "サポート底部距離" +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "サポートパターン" -msgctxt "support_bottom_wall_count label" -msgid "Support Bottom Wall Line Count" -msgstr "サポート底面ウォールライン数" +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "サポート材の形。サポート材の除去の方法を頑丈または容易にする設定が可能です。" -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "サポートブリムのライン数" +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "ライン" -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "サポートブリムの幅" +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "グリッド" -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "サポート分割ライン数" +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "トライアングル" -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "サポート分割サイズ" +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "同心円" -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "サポート密度" +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "サポート距離優先順位" +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "クロス" -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "サポート用エクストルーダー" +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "ジャイロイド" -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "サポートフロア加速度" +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "サポートウォールライン数" -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "サポートフロア密度" +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "サポートインフィルを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。" -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "サポートフロアエクストルーダー" +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "サポートインターフェースのウォールライン数" -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "支持材床面フロー" +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "サポートインターフェースを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。" -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "サポートフロア水平展開" +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "サポートルーフウォールライン数" -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "サポートフロアジャーク" +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "サポートインターフェースルーフを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。" -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "サポートフロアライン方向" +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "サポート底面ウォールライン数" -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "サポートフロアライン距離" +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "サポートインターフェースフロアを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。" -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "サポートフロアのライン幅" +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "サポートライン接続" -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "サポートフロアパターン" +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "サポートライン両端を接続します。この設定を有効にすると、より確実なサポートで抽出不足を解消しますが、材料の費用がかさみます。" -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "サポートフロア速度" +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "サポートジグザグ接続" -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "サポートフロア厚さ" +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "ジグザグを接続します。ジグザグ形のサポート材の強度が上がります。" -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "支持材のフロー" +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "サポート密度" -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "サポート水平展開" +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "サポート材の密度を調整します。大きな値ではオーバーハングが良くなりますが、サポート材が除去しにくくなります。" -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "サポートインフィル加速度" +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "サポートライン距離" -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "サポート用インフィルエクストルーダー" +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "印刷されたサポート材の間隔。この設定は、サポート材の密度によって算出されます。" -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "サポートインフィルジャーク" +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "初期層サポートラインの距離" -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "サポートインフィルレイヤー厚さ" +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "印刷した初期層間の距離が構造ライをサポートします。この設定は、対応濃度で算出されます。" msgctxt "support_infill_angles label" msgid "Support Infill Line Directions" msgstr "サポートインフィルラインの向き" -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "サポートインフィル速度" +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "使用する整数線の方向のリスト。リストの要素は、層が進行するにつれて順番に使用され、リストの終わりに達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストであり、デフォルト角度の0度を使用します。" -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "サポートインタフェース加速度" +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "サポートブリムを有効にする" -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "サポートインタフェース密度" +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "最初の層のインフィルエリア内ブリムを生成します。このブリムは、サポートの周囲ではなく、サポートの下に印刷されます。この設定を有効にすると、サポートのビルドプレートへの吸着性が高まります。" -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "サポートインタフェースエクストルーダー" +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "サポートブリムの幅" -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "支持材界面フロー" +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "サポートの下に印刷されるブリムの幅。ブリムが大きいほど、追加材料の費用でビルドプレートへの接着性が強化されます。" -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "サポートインターフェイス水平展開" +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "サポートブリムのライン数" -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "サポートインタフェースジャーク" +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "サポートブリムに使用される線の数。ブリムの線数を増やすと、追加材料の費用でビルドプレートへの接着性が強化されます。" -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "サポート面のライン方向" +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "サポートZ距離" -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "サポート面のライン幅" +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "サポート構造の上部/下部からプリントまでの距離です。このギャップは、モデル印刷後にサポートを取り除くためのクリアランスを提供します。モデルの下にある最上層のサポート層は、通常のレイヤーの一部分かもしれません。" -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "サポートインタフェースパターン" +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "サポート上部距離" -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "サポートインターフェイスの優先順位" +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "サポートの上部から印刷物までの距離。" -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "サポートインタフェース速度" +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "サポート底部距離" -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "サポートインタフェース厚さ" +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "プリントからサポートの底までの距離。これは次のレイヤーの高さに切り上げられることに注意してください。" -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "サポートインターフェースのウォールライン数" +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "サポートX/Y距離" -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "サポートジャーク" +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "印刷物からX/Y方向へのサポート材との距離。" -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "サポート接合距離" +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "サポート距離優先順位" -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "サポートライン距離" +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "X /Y方向のサポートの距離がZ方向のサポートの距離を上書きしようとする時やまたその逆も同様。X または Y がZを上書きする際、X Y 方向の距離は印刷物からオーバーハングする Z 方向の距離に影響を及ぼしながらサポートを押しのけようとします。オーバー ハング周りのX Yの距離を無効にすることで、無効にできる。" -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "サポートライン幅" +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/YがZを上書き" -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "サポートメッシュ" +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "ZがX/Yを上書き" -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "サポートオーバーハング角度" +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "最小サポートX/Y距離" -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "サポートパターン" +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "X/Y方向におけるオーバーハングからサポートまでの距離。" -msgctxt "support_type label" -msgid "Support Placement" -msgstr "サポート配置" +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "サポート階段高さ" -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "サポートルーフ加速度" +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "モデルにのっている階段状のサポートの底のステップの高さ。値を小さくするとサポートを除去するのが困難になりますが、値が大きすぎるとサポートの構造が不安定になる可能性があります。ゼロに設定すると、階段状の動作をオフにします。" -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "サポートルーフ密度" +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "サポート階段最大幅" -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "サポートルーフエクストルーダー" +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "モデルにのっている階段のような下部のサポートのステップの最大幅。低い値にするサポートの除去が困難になり、高すぎる値は不安定なサポート構造につながります。" -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "支持材天井面フロー" +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "サポートステアステップ最小傾斜角度" -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "サポートルーフ水平展開" +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "ステアステップ効果を発揮するための、エリアの最小スロープです。小さい値を指定すると勾配が緩くなりサポートを取り除きやすくなりますが、値が非常に小さいと、モデルの他の部品に直感的に非常にわかりにくい結果が表れる場合があります。" -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "サポートルーフジャーク" +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "サポート接合距離" -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "サポートルーフライン方向" +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "支持材間における X/Y 軸方向の最大距離。個別の支持材間の距離がこの値よりも近い場合、支持材は 1 つにマージされます。" -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "サポートルーフライン距離" +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "サポート水平展開" -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "サポートルーフのライン幅" +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "各レイヤーのサポート用ポリゴンに適用されるオフセットの量。正の値はサポート領域を円滑にし、より丈夫なサポートにつながります。" -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "サポートルーフパターン" +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "サポートインフィルレイヤー厚さ" -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "サポートルーフ速度" +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "サポートのインフィルの厚さ。この値はレイヤーの倍数にする必要があり、違う場合は倍数に近い値に設定されます。" -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "サポートルーフ厚さ" +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "サポートインフィル半減回数" -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "サポートルーフウォールライン数" +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "天井面より下に遠ざかる際にサポートのインフィル密度が半減する回数 天井面に近い領域ほど高い密度となり、サポートのインフィル密度になります。" -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "サポート速度" +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "サポートインフィル半減前の高さ" -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "サポート階段高さ" +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "密度が半分に切り替える前の所定のサポートのインフィルの高さ。" -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "サポート階段最大幅" +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "最小サポート領域" -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "サポートステアステップ最小傾斜角度" +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "ポリゴンをサポートする最小領域サイズ。この領域よりポリゴンが小さい場合は生成されません。" -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "サポート構造" +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "サポートインタフェースを有効にする" + +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "モデルとサポートの間に密なインターフェースを生成します。これにより、モデルが印刷されているサポートの上部、モデル上のサポートの下部にスキンが作成されます。" + +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "サポートルーフを有効にする" + +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "サポートの上部とモデルの間に高密度の厚板を形成します。モデルとサポート材の間にスキンが作成されます。" + +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "サポートフロアを有効にする" -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "サポート上部距離" +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "サポートの上部とモデルの間に高密度の厚板を形成します。モデルとサポート材の間にスキンが作成されます。" -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "サポートウォールライン数" +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "サポートインタフェース厚さ" -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "サポートX/Y距離" +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "底面または上部のモデルと接触するサポートのインターフェイスの厚さ。" -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "サポートZ距離" +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "サポートルーフ厚さ" -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "サポートラインを優先" +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "サポートのルーフの厚さ。これは、モデルの下につくサポートの上部にある密度の量を制御します。" -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "サポートを優先" +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "サポートフロア厚さ" -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "サポート対象スキンファン速度" +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "サポート材の底部の厚さ。これは、サポートが置かれるモデル上の積層密度を制御します。" -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "表面" +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "サポートインタフェース密度" -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "表面エネルギー" +msgctxt "support_interface_density description" +msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "サポート材のルーフとフロアの密度を調整します 大きな値ではオーバーハングでの成功率があがりますが、サポート材が除去しにくくなります。" -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "表面モード" +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "サポートルーフ密度" -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "表面の接着傾向。" +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "サポート材のルーフの部分の密度を調整します 大きな値ではオーバーハングの成功率があがりますが、サポート材が除去しにくくなります。" -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "表面エネルギー。" +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "サポートルーフライン距離" -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "最も内側のブリムラインと2番目に内側のブリムラインのプリント順序を入れ替えます。これにより、ブリムを取り外しやすくします。" +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "印刷されたサポートルーフ線間の距離。この設定は、サポート密度によって計算されますが、個別に調整することもできます。" -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "交差するメッシュがどのレイヤーに属しているかを切り替えることで、オーバーラップしているメッシュを絡み合うようにします。この設定をオフにすると、一方のメッシュはオーバーラップ内のすべてのボリュームを取得し、他方のメッシュは他から削除されます。" +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "サポートフロア密度" -msgctxt "adaptive_layer_height_threshold description" -msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." -msgstr "隣接する2つのレイヤー間の目標水平距離。この設定を小さくすると、レイヤーのエッジが近づくように薄いレイヤーが使用されます。" +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "サポート構造のフロアの密度です。高い値は、サポートのよりよい接着を促します。" -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "各レイヤーのプリントを開始する部分をしめすX座標。" +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "サポートフロアライン距離" -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "" -"レイヤー内の各印刷を開始するX座\n" -"標の位置。" +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "印刷されたサポートのフロアのライン間の距離。この設定は、密度によって計算されますが、個別に調整することもできます。" -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "プリント開始時のノズルの位置を表すX座標。" +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "サポートインタフェースパターン" -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "各レイヤーのプリントを開始する部分をしめすY座標。" +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "モデルとサポートのインタフェースが印刷されるパターン。" -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "レイヤー内の各パーツの印刷を開始する場所の近くのY座標。" +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "ライン" -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "プリント開始時にノズル位置を表すY座標。" +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "グリッド" -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "印刷開始時にノズルがポジションを確認するZ座標。" +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "トライアングル" -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "初期レイヤーの印刷中の加速度。" +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "同心円" -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "初期レイヤーの加速度。" +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "最初のレイヤー時の加速度。" +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "サポートルーフパターン" -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "移動加速度は最初のレイヤーに適用されます。" +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "サポートのルーフが印刷されるパターン。" -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "内側のウォールがが出力される際のスピード。" +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "ライン" -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "インフィルの印刷の加速スピード。" +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "グリッド" -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "アイロン時の加速度。" +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "トライアングル" -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "印刷の加速スピードです。" +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "同心円" -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "ラフトの底面印刷時の加速度。" +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "サポートのフロアが印刷される加速度。より低い加速度で印刷すると、モデル上のサポートの接着性を向上させることができます。" +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "サポートフロアパターン" -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "インフィルのサポート材のプリント時の加速度。" +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "サポートのフロアが印刷されるパターン。" -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "ラフトの中間層印刷時の加速度。" +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "ライン" -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "最も外側の壁をプリントする際の加速度。" +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "グリッド" -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "プライムタワーの印刷時のスピード。" +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "トライアングル" -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "ラフト印刷時の加速度。" +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "同心円" -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "サポートの上面と下面が印刷される加速度。低加速度で印刷するとオーバーハングの品質が向上します。" +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "サポートの上面がプリントされる加速度、低加速度で印刷するとオーバーハングの品質が向上します。" +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "最小サポートインターフェイス領域" -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "スカートとブリム印刷時の加速度。通常、初期レイヤーの印刷スピードにて適用されるが、異なる速度でスカートやブリムを印刷したい場合使用できる。" +msgctxt "minimum_interface_area description" +msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "サポートインターフェイスポリゴンの最小領域サイズ。この値より小さい領域のポリゴンは通常のサポートとしてプリントされます。" -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "サポート材プリント時の加速スピード。" +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "最小サポートルーフ領域" -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "ラフトのトップ印刷時の加速度。" +msgctxt "minimum_roof_area description" +msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "サポートのルーフの最小領域サイズ。この値より小さい領域のポリゴンは通常のサポートとしてプリントされます。" -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "上面内壁が印刷される際の加速度" +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "最小サポートフロア領域" -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "上面の最外壁が印刷される際の加速度" +msgctxt "minimum_bottom_area description" +msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "サポートのフロアの最小領域サイズ。この値より小さい領域のポリゴンは通常のサポートとしてプリントされます。" -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "ウォールをプリントする際の加速度。" +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "サポートインターフェイス水平展開" -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "上部表面プリント時の加速度。" +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "サポートインターフェイスポリゴンに適用されるオフセット量。" -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "トップとボトムのレイヤーの印刷加速度。" +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "サポートルーフ水平展開" -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "移動中の加速度。" +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "サポートのルーフに適用されるオフセット量。" -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "アイロン時にノズルから出しておくフィラメントの量。多少出しておくと裂け目を綺麗にします。ただ出し過ぎると吐出過多になり、端が荒れます。" +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "サポートフロア水平展開" -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "インフィルと壁のオーバーラップ量 (インフィルライン幅に対する%)。少しのオーバーラップによって壁がインフィルにしっかりつながります。" +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "サポートのフロアに適用されるオフセット量。" -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "インフィルと壁が交差する量、わずかな交差によって壁がインフィルにしっかりつながります。" +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "サポートインターフェイスの優先順位" -msgctxt "switch_extruder_retraction_amount description" -msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." -msgstr "エクストルーダー切り替え時の引き込み量。引き込みを行わない場合は0に設定します。これは通常、ヒートゾーンの長さと同じに設定します。" +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "サポートインターフェイスとサポートが重なる場合にどのように相互作用するかを示します。現在、サポートルーフにのみ実装されています。" -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "水平面とノズル直上の円錐部分との間の角度。" +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "サポートを優先" -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "タワーの屋上の角度。値が高いほど尖った屋根が得られ、値が低いほど屋根が平らになります。" +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "インターフェイスを優先" -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "型の外側の壁のオーバーハングの角度です。0度にすると垂直の外殻をつくります。 90度は輪郭に従いモデルの外側の外殻をつくります。" +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "サポートラインを優先" -msgctxt "support_tree_branch_diameter_angle description" -msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." -msgstr "基部に向かって徐々に太くなる枝の直径の角度。角度が0の場合、枝の太さは全長にわたって同じになります。少し角度を付けると、ツリーサポートの安定性が高まります。" +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "インターフェイスラインを優先" -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "円錐形のサポートの傾きの角度。 0度は垂直であり、90度は水平である。角度が小さいと、サポートはより頑丈になりますが、より多くのマテリアルが必要になります。負の角度は、サポートのベースがトップよりも広くなります。" +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "両方重ねる" -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "レイヤー内の各ポリゴンに導入されたポイントの平均密度。ポリゴンの元の点は破棄されるため、密度が低いと解像度が低下します。" +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "サポート面のライン方向" -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "各線分に導入されたランダム点間の平均距離。ポリゴンの元の点は破棄されるので、積層の値を低くすることで、なめらかな仕上がりになります。この値は、ファジースキンの厚さの半分よりも大きくなければなりません。" +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストとなり、デフォルトの角度を使用します(面がかなり厚い場合には45度と135度を交互に使用、それ以外では90度を使用)。" -msgctxt "material_brand description" -msgid "The brand of material used." -msgstr "" +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "サポートルーフライン方向" -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "プリントヘッド移動のデフォルトの加速度。" +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストとなり、デフォルトの角度を使用します(面がかなり厚い場合には45度と135度を交互に使用、それ以外では90度を使用)。" -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "印刷中のデフォルトの温度。これはマテリアルの基本温度となります。他のすべての造形温度はこの値に基づいてオフセットする必要があります" +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "サポートフロアライン方向" -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "加熱式ビルドプレートのデフォルト温度。これはビルドプレートの「基本」温度でます。他のすべての印刷温度はこの値に基づいてオフセットする必要があります" +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストとなり、デフォルトの角度を使用します(面がかなり厚い場合には45度と135度を交互に使用、それ以外では90度を使用)。" -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "ブリッジスキンレイヤーの密度。100 以下の場合は、スキンライン間のギャップを増やします。" +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "ファン速度上書き" -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "サポート構造のフロアの密度です。高い値は、サポートのよりよい接着を促します。" +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "有効にすると、サポートを超えた直後に印刷冷却ファンの速度がスキン領域に対して変更されます。" -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "サポート材のルーフの部分の密度を調整します 大きな値ではオーバーハングの成功率があがりますが、サポート材が除去しにくくなります。" +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "サポート対象スキンファン速度" -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "セカンドブリッジスキンレイヤーの密度。100 以下の場合は、スキンライン間のギャップを増やします。" +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "サポートを超えた直後にスキン領域に印字するときに使用するファン速度を割合で示します。高速ファンを使用すると、サポートが取り外しやすくなります。" -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "サードブリッジスキンレイヤーの密度。100 以下の場合は、スキンライン間のギャップを増やします。" +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "使用タワー" -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "造形可能領域の幅(Y方向)。" +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "特殊なタワーを使用して、小さなオーバーハングしているエリアをサポートします。これらの塔は、サポートできる領域より大きな直径を支えれます。オーバーハング付近では塔の直径が減少し、ルーフを形成します。" + +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "タワー直径" msgctxt "support_tower_diameter description" msgid "The diameter of a special tower." msgstr "特別な塔の直径。" -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "ツリーサポートの最も細い枝の直径。枝は太いほど丈夫です。基部に近いところでは、枝はこれよりも太くなります。" +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "最大タワーサポート直径" -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "ツリーサポートの枝の上部先端の直径。" +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "特殊なサポートタワーにより支持される小さな領域のX / Y方向の最小直径。" -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "材料をフィーダーに送るホイールの直径。" +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "タワールーフ角度" -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "ツリーサポートの最も広い枝の直径。本体が太いほど丈夫です。本体が細いほど、ビルドプレートを占有するスペースが少なくなります。" +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "タワーの屋上の角度。値が高いほど尖った屋根が得られ、値が低いほど屋根が平らになります。" -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "次のレイヤーの高さを前のレイヤーの高さと比べた差。" +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "サポートメッシュの下処理" -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "アイロンライン同士の距離。" +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "サポートメッシュの下のサポート材を全箇所に作ります、これはサポートメッシュ下にてオーバーハングしないようにするためです。" -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "ノズルが既に印刷された部分を移動する際の間隔。" +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "シーンにサポートメッシュがある" -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "ベースラフト層のラフトライン間の距離。広い間隔は、ブルドプレートからのラフトの除去を容易にする。" +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "シーンにはサポートメッシュがあります。この設定はCuraで制御されます。" -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "中間ラフト層とラフト線の間の距離。中央の間隔はかなり広くなければならず、トップラフト層を支えるために十分な密度でなければならない。" +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "ビルドプレート密着性" -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "上のラフト層とラフト線の間の距離。間隔は線の幅と同じにして、サーフェスがソリッドになるようにします。" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "密着性" -msgctxt "prime_tower_raft_base_line_spacing description" -msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "プライムタワーラフト層の独自のラフトライン間の距離です。間隔が広いと、ラフトをビルドプレートから簡単に取り除くことができます。" +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "プライムボルブを有効にする" -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "インターロック構造を生成するモデル間の境界からの距離(セル単位)。セルが少なすぎると密着性が低下します。" +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "印刷する前にフィラメントの小さな塊を作るかどうか。この設定をオンにすると、エクストルーダーがノズルにおいて印刷予定のマテリアルの下準備をします。印刷後ブリムまたはスカートも、上記と同じような意味を持ちます。この設定をオフにすると時間の節約にはなります。" + +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "エクストルーダープライムX位置" + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "プリント開始時のノズルの位置を表すX座標。" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "エクストルーダープライムY位置" + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "プリント開始時にノズル位置を表すY座標。" + +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "ビルドプレート接着タイプ" -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "モデルから最外線のブリムまでの距離。大きなブリムは、ビルドプレートへの接着を高めますが、有効な印刷面積も減少させます。" +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "エクストルーダーとビルドプレートへの接着両方を改善するのに役立つさまざまなオプション。 Brimは、モデルのベースの周りに単一レイヤーを平面的に追加して、ワーピングを防止します。 Raftは、モデルの下に太いグリッドを追加します。スカートはモデルの周りに印刷されたラインですが、モデルには接続されていません。" -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "インターロック構造が生成されないモデルの外側からの距離(セル単位で測定)。" +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "スカート" -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "ノズルからの熱がフィラメントに伝達される距離。" +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "ブリム" -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "スキンがインフィルまで到達する距離です。高い数値の場合、スキンはインフィルのパターンに隣接しやすく、近接する壁のレイヤーもスキンに密着しやすくなります。低値の場合、材料の使用量を節約します。" +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "ラフト" -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "スキンがインフィルまで到達する距離です。高い数値の場合、スキンはインフィルのパターンに隣接しやすく、近接する壁のレイヤーもスキンに密着しやすくなります。低値の場合、材料の使用量を節約します。" +msgctxt "adhesion_type option none" +msgid "None" +msgstr "なし" -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "スキンがインフィルまで到達する距離です。高い数値の場合、スキンはインフィルのパターンに隣接しやすく、近接する壁のレイヤーもスキンに密着しやすくなります。低値の場合、材料の使用量を節約します。" +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "ビルドプレート接着エクストルーダー" -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "ブラシ全体でヘッド前後に動かす距離。" +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "スカート/ブリム/ラフトをプリントする際のエクストルーダー。これはマルチエクストルージョン時に使用されます。" -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "インフィルラインのエンドポイントは短縮され、材料が節約されます。この設定は、これらのラインのエンドポイントにおけるオーバーハングの角度です。" +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "スカート/ブリムエクストルーダー" -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "印刷中にノズルが冷える際の速度。同じ値が、加熱する際の加熱速度に割当られます。" +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "スカートまたはブリムをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。" -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "サポートのインフィルの最初の層を印刷に使用するエクストルーダー。複数のエクストルーダーがある場合に使用されます。" +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "ラフトベースエクストルーダー" msgctxt "raft_base_extruder_nr description" msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." msgstr "ラフトの最初のレイヤーをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。" -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "サポートのフロア面をプリントする際に使用するエクストルーダーの列。デュアルノズル時に使用します。" - -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "サポート材のインフィルを印刷に使用するためのエクストルーダー。複数のエクストルーダーがある場合に使用されます。" +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "ラフト中間エクストルーダー" msgctxt "raft_interface_extruder_nr description" msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." msgstr "ラフトの中間レイヤーをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。" -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "サポートのルーフおよび底面を印刷するために使用するエクストルーダーの列。デュアルノズル時に使用されます。" - -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "サポートのルーフ面をプリントする際のエクストルーダー列。デュアルノズル時に使用します。" - -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "スカートまたはブリムをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。" - -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "スカート/ブリム/ラフトをプリントする際のエクストルーダー。これはマルチエクストルージョン時に使用されます。" - -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "サポート材を印刷するためのエクストルーダー。複数のエクストルーダーがある場合に使用されます。" +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "ラフトトップエクストルーダー" msgctxt "raft_surface_extruder_nr description" msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." msgstr "ラフトのトップレイヤーをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。" -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "インフィル造形時に使われるExtruder。デュアルノズルの場合に利用します。" - -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "内壁印刷用のエクストルーダー。デュアルノズル印刷時に使用。" - -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "外壁印刷用のエクストルーダー。デュアルノズル印刷時に使用。" - -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "上部と下部の表面を印刷する時に使われるエクストルーダー。デュアルノズル印刷時に使用。" - -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "上部の表面印刷用のエクストルーダー。デュアルノズル印刷時に使用。" - -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "壁造形用のエクストルーダー。デュアルノズル印刷時に使用。" - -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "ベースラフト層印刷時のファン速度。" - -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "ミドルラフト印刷時のファンの速度。" - -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "ラフト印刷時のファンの速度。" +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "スカートライン数" -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "トップラフト印刷時のファンの速度。" +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "複数のスカートラインを使用すると、小さなモデル形成時の射出をより良く行うことができます。これを0に設定するとスカートが無効になります。" -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "画像ファイルの位置。この画像の輝度値で印刷のインフィル内の対象箇所における最小密度が決まります。" +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "スカート高さ" -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "画像ファイルの位置。この画像の輝度値でサポートの対象箇所における最小密度が決まります。" +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "最も内側のスカートラインを複数のレイヤーに分けてプリントすることで、スカートを取り外しやすくします。" -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "最初の数層は印刷失敗の可能性を軽減させるために、設定した印刷スピードよりも遅く印刷されます。" +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "スカート距離" -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "モデルの第一層のラフトと最終ラフト層の隙間。この値で第1層のみを上げることで、ラフトとモデルとの間の結合を低下させる。結果ラフトを剥がしやすくします。" +msgctxt "skirt_gap description" +msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "スカートと印刷の最初の層の間の水平距離。" +"これは最小距離です。複数のスカートラインがこの距離から外側に展開されます。" -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "造形可能領域の幅(Z方向)。" +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "スカート/ブリム最小長さ" -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "型を印刷するためのモデルの水平部分上の高さ。" +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "スカートまたはブリム最短の長さ。この長さにすべてのスカートまたはブリムが達していない場合は、最小限の長さに達するまで、スカートまたはブリムラインが追加されます。注:行数が0に設定されている場合、これは無視されます。" -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "通常速度でファンが回転するときの高さ。ここより下層レイヤーでは初期ファンのスピードから通常の速度まで徐々に増加します。" +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "ブリム幅" -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "ノズルの先端とガントリーシステムの高さの差(X軸とY軸)。" +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "モデルから最外線のブリムまでの距離。大きなブリムは、ビルドプレートへの接着を高めますが、有効な印刷面積も減少させます。" -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "ノズル先端とプリントヘッドの最下部との高さの差。" +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "ブリムライン数" -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "エクストルーダースイッチ後のZホップを実行するときの高さの違い。" +msgctxt "brim_line_count description" +msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." +msgstr "ブリムに使用される線数。ブリムの線数は、ビルドプレートへの接着性を向上させるだけでなく、有効な印刷面積を減少させる。" -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Zホップを実行するときの高さ。" +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "ブリム距離" -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "Zホップを実行するときの高さ。" +msgctxt "brim_gap description" +msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." +msgstr "最初のブリムラインとプリントの最初のレイヤーの輪郭との間の水平距離。小さなギャップがあると、ブリムの取り外しが容易になり、断熱性の面でもメリットがあります。" -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "各レイヤーの高さ(mm)。値を大きくすると早く印刷しますが荒くなり、小さくすると印刷が遅くなりますが造形が綺麗になります。" +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "ブリム交換サポート" -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "密度が半分に切り替わる前の所定のインフィルの高さ。" +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "スペースがサポートで埋まっている場合でも、モデルの周辺にブリムを印刷します。これにより、サポートの最初の層の一部のエリアがブリムになります。" -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "密度が半分に切り替える前の所定のサポートのインフィルの高さ。" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "ブリムの位置" -msgctxt "interlocking_beam_layer_count description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "インターロック構造のビームの高さ(レイヤー数単位)。レイヤーが少ないほど強度は高くなりますが、欠陥が発生しやすくなります。" +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "モデルの外側,内側,またはその両方にブリムを印刷します。モデルによっては,これによりベッドの適切な接着を確保しながら,後で取り外す必要があるブリムの量を減らすことができます。" -msgctxt "interlocking_orientation description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "インターロック構造のビームの高さ(レイヤー数単位)。レイヤーが少ないほど強度は高くなりますが、欠陥が発生しやすくなります。" +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "外側のみ" -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "初期レイヤーの高さ(mm)。厚い初期層はビルドプレートへの接着を容易にする。" +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "内側のみ" -msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "プライムタワーベースの高さです。この値を増やすと、ベースが広くなるためプライムタワーがより頑丈になります。この設定が低すぎると、プライムタワーは頑丈なベースを持たなくなります。" +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "どこにでも" -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "モデルにのっている階段状のサポートの底のステップの高さ。値を小さくするとサポートを除去するのが困難になりますが、値が大きすぎるとサポートの構造が不安定になる可能性があります。ゼロに設定すると、階段状の動作をオフにします。" +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "ブリムを避けるためのマージン" -msgctxt "brim_gap description" -msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." -msgstr "最初のブリムラインとプリントの最初のレイヤーの輪郭との間の水平距離。小さなギャップがあると、ブリムの取り外しが容易になり、断熱性の面でもメリットがあります。" +msgctxt "brim_inside_margin description" +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "モデルの周囲のブリムが,他のモデルの望ましくない場所に接触する可能性があります。これにより,この距離内のすべてのブリムがブリムのないモデルから削除されます。" -msgctxt "skirt_gap description" -msgid "" -"The horizontal distance between the skirt and the first layer of the print.\n" -"This is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "" -"スカートと印刷の最初の層の間の水平距離。\n" -"これは最小距離です。複数のスカートラインがこの距離から外側に展開されます。" +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "スマートブリム" -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "インフィルラインは矯正され、プリント時間が節約されます。これは、インフィルラインの全長にわたって許可されるオーバーハングの最大角度です。" +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "最も内側のブリムラインと2番目に内側のブリムラインのプリント順序を入れ替えます。これにより、ブリムを取り外しやすくします。" -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "インフィルパターンはX軸に沿ってこの距離を移動します。" +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "ラフトの余分なマージン" -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "インフィルパターンはY軸に沿ってこの距離を移動します。" +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "ラフトが有効になっている場合、モデルの周りに余分なラフト領域ができます。値を大きくするとより強力なラフトができますが、多くの材料を使用し、造形範囲は少なくなります。" -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "ノズルの内径。標準以外のノズルを使用する場合は、この設定を変更してください。" +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "ラフトベースの追加マージン" -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "ベースラフト層印刷時のジャーク。" +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "ラフトベースが有効になっている場合,これはモデルの周囲の追加のラフト領域であり,ラフトも与えられます。このマージンを増やすとより強いラフトを作ることができますが,より多くの材料を使用し,プリントのために残される領域は少なくなります。" -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "ミドルラフト層印刷時のジャーク。" +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "ラフトの中央の追加マージン" -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "ラフトが印刷時のジャーク。" +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "ラフトの中央が有効になっている場合,これはモデルの周囲の追加のラフト領域であり,ラフトも与えられます。このマージンを増やすとより強いラフトを作ることができますが,より多くの材料を使用し,プリントのために残される領域は少なくなります。" -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "トップラフト層印刷時のジャーク。" +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "ラフト上部の追加マージン" -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "取り除くスキンエリアの最大幅。この値より小さいすべてのスキンエリアは消えます。これは、モデルの傾斜表面の上部/下部スキンに費やした時間のや材料の量を制限することができます。" +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "ラフトの上部が有効になっている場合,これはモデルの周囲の追加のラフト領域であり,ラフトも与えられます。このマージンを増やすとより強いラフトを作ることができますが,より多くの材料を使用し,プリントのために残される領域は少なくなります。" -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "取り除くスキンエリアの最大幅。この値より小さいすべてのスキンエリアは消えます。これは、モデルの傾斜表面の上部/下部スキンに費やした時間のや材料の量を制限することができます。" +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "ラフト内側コーナーの削除" -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "取り除くスキンエリアの最大幅。この値より小さいすべてのスキンエリアは消えます。これは、モデルの傾斜表面の上部/下部スキンに費やした時間のや材料の量を制限することができます。" +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "ラフトから内側コーナーを削除し、ラフトが凸になるようにします。" -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "ファンが通常の速度で回転する時のレイヤー。通常速度のファンの高さが設定されている場合、この値が計算され、整数に変換されます。" +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "ラフトベースの内側の角を削除" -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "通常速度と最速の間でしきい値を設定する積層時間。この時間よりも遅く印刷する積層は、通常速度を使用します。より速い層の場合、ファンは最高速度に向かって徐々に加速します。" +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "ラフトベースから内側の角を取り除き,ラフトを凸状にします。" -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "引き戻されるマテリアルの長さ。" +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "ラフト中央の内側の角を削除" -msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "プライムタワーベースの傾斜に使用される倍率係数です。この値を増やすと、ベースが細くなります。減らすと、ベースが厚くなります。" +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "ラフトの中央から内側の角を取り除き,ラフトを凸状にします。" -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "プリンターに取り付けられているビルドプレートの材料です。" +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "ラフト上部の内側の角を削除" -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "基準レイヤー高さと比較して許容される最大の高さ。" +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "ラフトの上部から内側の角を取り除き,ラフトを凸状にします。" -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "壁(ooze shield)作成時の最大の角度。 0度は垂直であり、90度は水平である。角度を小さくすると、壁が少なくなりますが、より多くの材料が使用されます。" +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "ラフト補整" -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "印刷可能になったオーバーハングの最大角度。 0°の値では、すべてのオーバーハングがビルドプレートに接続されたモデルの一部に置き換えられます。90°では、モデルは決して変更されません。" +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "この設定は、ラフトの輪郭の内側の角がどの程度丸められるかを制御します。内側の角は、ここで指定した値と等しい半径の半円に丸められます。この設定は、そのような円よりも小さいラフトの輪郭の穴を削除します。" -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "モデルを中心に枝を伸ばす際の枝の最大角度。枝を垂直で安定したものにするためには小さい角度を使用します。高さを得るためには大きい角度を使用します。" +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "ラフトベースのスムージング" -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "モデル底部にある穴の最大領域(「オーバーハング印刷可能」で削除する前の値)。これより小さい穴は保持されます。値が0 mm²の場合、モデル底部にあるすべての穴は充填されます。" +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "この設定は,ラフトベースのアウトラインの内側の角をどの程度丸くするかを制御します。内側の角は,ここで指定した値と等しい半径の半円に丸められます。この設定では,ラフトの輪郭にある円より小さい穴も削除されます。" -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "最大解像度設定の解像度を下げるときに許容される最大偏差です。これを大きくすると印刷の精度は低くなりますが、g-codeは小さくなります。最大偏差は最大解像度の限度であるため、最大偏差でこの2つが競合する場合には常にtrueとなります。" +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "ラフト中央のスムージング" -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "支持材間における X/Y 軸方向の最大距離。個別の支持材間の距離がこの値よりも近い場合、支持材は 1 つにマージされます。" +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "この設定は,ラフトの中央のアウトラインの内側の角をどの程度丸くするかを制御します。内側の角は,ここで指定した値と等しい半径の半円に丸められます。この設定では,ラフトの輪郭にある円より小さい穴も削除されます。" -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "流量の変化を補正するためにフィラメントを移動する最大距離(mm)。" +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "ラフト上部のスムージング" -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "直線から中間点を削除する際に許容される、押出領域の最大偏差。長い直線では中間点が幅の変化点の役割を果たすこともあります。そのため、中間点を削除すると、ラインの幅が均一になり、結果として押出領域が少し減る(または増える)ことになります。この値を大きくすると、削除が許容される幅の変化点となる中間点が増えるため、真っ直ぐで平行なウォールの間で多少の押出不足(または過多)が発生することがあります。プリントの精度は落ちますが、G-codeは小さくなります。" +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "この設定は,ラフト上部の輪郭の内側の角をどの程度丸くするかを制御します。内側の角は,ここで指定した値と等しい半径の半円に丸められます。この設定では,ラフトの輪郭にある円より小さい穴も削除されます。" -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "初期レイヤー印刷中の最大瞬時速度の変化。" +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "ラフト間のラップ" -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "プリントヘッドの最大瞬間速度の変更。" +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "モデルの第一層のラフトと最終ラフト層の隙間。この値で第1層のみを上げることで、ラフトとモデルとの間の結合を低下させる。結果ラフトを剥がしやすくします。" -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "アイロン時の最大加速度。" +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "初期レイヤーZのオーバーラップ" -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "内側のウォールがプリントされれう際の最大瞬間速度の変更。" +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "エアギャップで失われたフィラメントを補うために,モデルの1つ目と2つ目の層をZ方向にオーバーラップさせます。最初のモデルレイヤーより上のすべてのモデルは,この量だけ下にシフトされます。\nこの設定により,2つ目のレイヤーが最初のレイヤーの下に印刷される場合があることに注意してください。これは意図された動作です。" -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "インフィルの印刷時の瞬間速度の変更。" +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "ラフトベース厚さ" -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "どのサポートのフロア部分を印刷するかによって最大瞬間速度は変化します。" +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "ベースラフト層の層厚さ。プリンタのビルドプレートにしっかりと固着する厚い層でなければなりません。" -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "サポート材の印刷時、最大瞬間速度の変更。" +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "ラフトベースライン幅" -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "外側のウォールが出力される際の最大瞬間速度の変更。" +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "ベースラフト層の線幅。ビルドプレートの接着のため太い線でなければなりません。" -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "プライムタワーがプリントされる際の最大瞬間速度を変更します。" +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "ラフトベースラインスペース" -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "どのルーフとフロアのサポート部分を印刷するかによって最大瞬間速度は変化します。" +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "ベースラフト層のラフトライン間の距離。広い間隔は、ブルドプレートからのラフトの除去を容易にする。" -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "どのサポートのルーフ部分を印刷するかによって最大瞬間速度は変化します。" +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "ラフト中間レイヤー" -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "スカートとブリムがプリントされる最大瞬時速度の変更。" +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "ラフトのベースと表面の間にあるレイヤーの数。これらのレイヤーがラフトの厚さの主要部分を占めています。この値を増やすと、より厚さのある丈夫なラフトになります。" -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "サポート材の印刷時の最大瞬間速度の変更。" +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "ラフト中央厚さ" -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "上面最外壁が印刷される際の最大瞬間速度変化。" +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "中間のラフト層の層の厚さ。" -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "上面内壁が印刷される際の最大瞬間速度変化。" +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "ラフト中央ライン幅" -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "ウォールのプリント時の最大瞬間速度を変更。" +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "中間ラフト層の線の幅。第2層をより押し出すと、ラインがビルドプレートに固着します。" -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "上部表面プリント時の最大加速度。" +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "ラフト中間スペース" -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "トップとボトムのレイヤーを印刷する際の最大瞬間速度の変更。" +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "中間ラフト層とラフト線の間の距離。中央の間隔はかなり広くなければならず、トップラフト層を支えるために十分な密度でなければならない。" -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "移動する際の最大瞬時速度の変更。" +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "ラフト最上層" -msgctxt "prime_tower_max_bridging_distance description" -msgid "The maximum length of the branches which may be printed over the air." -msgstr "" +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "第2ラフト層の上の最上層の数。これらは、モデルが置かれる完全に塗りつぶされた積層です。 2つの層は、1よりも滑らかな上面をもたらす。" -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "X方向のモーターの最大速度。" +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "ラフト最上層厚さ" -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "Y方向のモーターの最大速度。" +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "トップラフト層の層厚。" -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "Z方向のモーターの最大速度。" +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "ラフト最上ライン幅" -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "フィラメントの最大速度。" +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "ラフトの上面の線の幅。これらは細い線で、ラフトの頂部が滑らかになります。" -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "モデルにのっている階段のような下部のサポートのステップの最大幅。低い値にするサポートの除去が困難になり、高すぎる値は不安定なサポート構造につながります。" +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "ラフト最上面スペース" -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "型の外側とモデルの外側との間の最小距離です。" +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "上のラフト層とラフト線の間の距離。間隔は線の幅と同じにして、サーフェスがソリッドになるようにします。" -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "プリントヘッドの最小移動速度。" +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "単一のラフト上面の表面の順序" -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "加熱中、印刷を開始することができる最低の温度。" +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "ラフト上面のラインを,常に単一方向の隣接するラインと重なる順序で印刷します。これにより,印刷に少し時間がかかりますが,表面の見た目がより均一になり,これはモデルの底面にも表示されます。" -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "ノズルが冷却される前にエクストルーダーが静止しなければならない最短時間。この時間より長時間エクストルーダーを使用しない場合にのみ、スタンバイ温度に冷却することができます。" +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "ラフトの壁の数" -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "インフィルが追加される内部オーバーハングの最小角度。0° のとき、対象物は完全にインフィルが充填され、90° ではインフィルが提供されません。" +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "ラフトの線形パターンの周囲に印刷する輪郭の数。" -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "サポート材がつくオーバーハングの最小角度。0° のときはすべてのオーバーハングにサポートが生成され、90° ではサポートが生成されません。" +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "ラフトベースウォール数" -msgctxt "retraction_min_travel description" -msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." -msgstr "フィラメントを引き戻す際に必要な最小移動距離。これは、短い距離内での引き戻しの回数を減らすために役立ちます。" +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "ラフトのベースレイヤーにある線状パターンの周囲にプリントする輪郭の数。" -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "スカートまたはブリム最短の長さ。この長さにすべてのスカートまたはブリムが達していない場合は、最小限の長さに達するまで、スカートまたはブリムラインが追加されます。注:行数が0に設定されている場合、これは無視されます。" +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "ラフト中央の壁の数" -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "中央ラインギャップフィラーのポリラインウォールの最小ライン幅。この設定は、2本のウォールラインのプリントから、2個のアウターウォールと中央の1個の中心ウォールのプリントに切り替わるモデルの厚さを決定します。最小奇数ウォールライン幅を大きくすると、最大偶数ウォールライン幅も大きくなります。最大奇数ウォールライン幅は、2×最小偶数ウォールライン幅として計算されます。" +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "ラフトの中間層の線形パターンの周囲に印刷する輪郭の数。" -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "通常の多角形ウォールの最小ライン幅。この設定は、1本の薄いウォールラインのプリントから、2本のウォールラインのプリントに切り替わるモデルの厚さを決定します。最小偶数ウォールライン幅を大きくすると、最大奇数ウォールライン幅も大きくなります。最大偶数ウォールライン幅は、アウターウォールライン幅 + 0.5 * 最小奇数ウォールライン幅として計算されます。" +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "ラフト上部の壁の数" -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "最遅印刷速度。印刷の速度が遅すぎると、ノズル内の圧力が低すぎて印刷品質が低下します。" +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "ラフトの最上層の線形パターンの周囲に印刷する輪郭の数。" -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "スライス後の線分の最小サイズ。これを増やすと、メッシュの解像度が低くなります。これにより、プリンタが g コードの処理速度に追いつくことができ、処理できないメッシュの詳細を取り除いてスライス速度を速めます。" +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "ラフト印刷速度" -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "スライス後の移動線分の最小サイズ。これを増やすと、移動の跡が滑らかでなくなります。これにより、プリンタが g コードの処理速度に追いつくことができますが、精度が低下します。" +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "ラフトが印刷される速度。" -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "ステアステップ効果を発揮するための、エリアの最小スロープです。小さい値を指定すると勾配が緩くなりサポートを取り除きやすくなりますが、値が非常に小さいと、モデルの他の部品に直感的に非常にわかりにくい結果が表れる場合があります。" +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "ラフトベース印刷速度" -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "一つのレイヤーに最低限費やす時間。1つの層に必ず設定された時間を費やすため、場合によってはプリントに遅れが生じます。しかしこれにより、次の層をプリントする前に造形物を適切に冷却することができます。 Lift Headが無効になっていて、最小速度を下回った場合、最小レイヤー時間よりも短くなる場合があります。" +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "ベースラフト層が印刷される速度。これは、ノズルから出てくるマテリアルの量がかなり多いので、ゆっくりと印刷されるべきである。" -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "プライムタワーの各層の最小容積。" +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "ラフト中間印刷速度" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "モデルに接続する必要がある枝の直径は、ビルドプレートに到達する可能性のある枝とマージされて大きくなる可能性があります。この値を大きくするとプリント時間は短縮されますが、モデル上のサポート領域が大きくなります。" +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "ミドルラフト層が印刷される速度。ノズルから出てくるマテリアルの量がかなり多いので、ゆっくりと印刷されるべきである。" -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "3Dプリンターの機種名。" +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "ラフト上層印刷速度" -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "\"AA 0.4\"や\"BB 0.8\"などのノズルID。" +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "トップラフト層が印刷される速度。この値はノズルが隣接するサーフェスラインをゆっくりと滑らかにするために、少し遅く印刷する必要があります。" -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "ノズルは、移動時に既に印刷されたパーツを避けます。このオプションは、コーミングが有効な場合にのみ使用できます。" +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "ラフト印刷加速度" -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "ノズルは、移動時に既に印刷されたサポートを避けます。このオプションは、コーミングが有効な場合にのみ使用できます。" +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "ラフト印刷時の加速度。" -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "最底面のレイヤー数。下の厚さで計算すると、この値は整数に変換されます。" +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "ラフトベース印刷加速度" -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "ラフトのベースレイヤーにある線状パターンの周囲にプリントする輪郭の数。" +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "ラフトの底面印刷時の加速度。" -msgctxt "raft_interface_wall_count description" -msgid "The number of contours to print around the linear pattern in the middle layers of the raft." -msgstr "" +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "ラフト中間層印刷加速度" -msgctxt "raft_surface_wall_count description" -msgid "The number of contours to print around the linear pattern in the top layers of the raft." -msgstr "" +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "ラフトの中間層印刷時の加速度。" -msgctxt "raft_wall_count description" -msgid "The number of contours to print around the linear pattern of the raft." -msgstr "" +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "ラフト上層層印刷加速度" -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "スキンエッジをサポートするインフィルレイヤーの数。" +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "ラフトのトップ印刷時の加速度。" -msgctxt "initial_bottom_layers description" -msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "ビルドプレートから上にある初期底面レイヤーの数。下の厚さで計算すると、この値は整数に変換されます。" +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "ラフト印刷ジャーク" -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "ラフトのベースと表面の間にあるレイヤーの数。これらのレイヤーがラフトの厚さの主要部分を占めています。この値を増やすと、より厚さのある丈夫なラフトになります。" +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "ラフトが印刷時のジャーク。" -msgctxt "brim_line_count description" -msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." -msgstr "ブリムに使用される線数。ブリムの線数は、ビルドプレートへの接着性を向上させるだけでなく、有効な印刷面積を減少させる。" +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "ラフトベース印刷ジャーク" -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "サポートブリムに使用される線の数。ブリムの線数を増やすと、追加材料の費用でビルドプレートへの接着性が強化されます。" +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "ベースラフト層印刷時のジャーク。" -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "第2ラフト層の上の最上層の数。これらは、モデルが置かれる完全に塗りつぶされた積層です。 2つの層は、1よりも滑らかな上面をもたらす。" +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "ラフト中間層印刷ジャーク" -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "最上面のレイヤー数。トップの厚さを計算する場合、この値は整数になります。" +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "ミドルラフト層印刷時のジャーク。" -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "上部表面のレイヤー数。通常一層で綺麗に出来上がります。" +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "ラフト上層印刷ジャーク" -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "サポートインフィルを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。" +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "トップラフト層印刷時のジャーク。" -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "サポートインターフェースフロアを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。" +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "ラフトファン速度" -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "サポートインターフェースルーフを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。" +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "ラフト印刷時のファンの速度。" -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "サポートインターフェースを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。" +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "ラフトベースファン速度" -msgctxt "wall_distribution_count description" -msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." -msgstr "中心から数えて、変化を広げる必要のあるウォールの数。値が小さいほど、アウターウォールの幅が変化しないことを意味します。" +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "ベースラフト層印刷時のファン速度。" -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "ウォールの数。厚さから計算された場合、この値は整数になります。" +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "ラフト中間層ファン速度" -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "ノズルの外径。" +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "ミドルラフト印刷時のファンの速度。" -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "プリントのインフィル材料のパターンラインおよびジグザグインフィルはレイヤーごとに方向を入れ替え、材料コストを削減します。グリッド、トライアングル、トライヘキサゴン、キュービック、オクテット、クォーターキュービック、クロスおよび同心円パターンはレイヤーごとに完全にプリントされます。ジャイロイド、キュービック、クォーターキュービックおよびオクテットインフィルはレイヤーごとに変化し、各方向にかけてより均一な強度分布を実現します。ライトニングインフィルは造形物の天井のみを支えることで、インフィルを最低限にするよう試みます。" +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "ラフト上層ファン速度" -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "サポート材の形。サポート材の除去の方法を頑丈または容易にする設定が可能です。" +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "トップラフト印刷時のファンの速度。" -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "上層のパターン。" +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "デュアルエクストルーダー" -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "上層/底層のパターン。" +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "デュアルエクストルーダーで印刷するための設定。" -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "第1層のプリントの底部のパターン。" +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "プライムタワーを有効にする" -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "アイロンのパターン。" +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "印刷物の横にタワーを造形して、ノズル交換後にフィラメントの調整をします。" -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "サポートのフロアが印刷されるパターン。" +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "プライムタワーのタイプ" -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "モデルとサポートのインタフェースが印刷されるパターン。" +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
                                      • Normal: create a bucket in which secondary materials are primed
                                      • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
                                      " +msgstr "プライムタワーの生成方法:
                                      • 通常:二次材料が,プライミングされるバケットを作成します
                                      • インターリーブド:プライムタワーをできるだけまばらに作成します。これにより時間とフィラメントが節約されますが,使用できる材料が互いに接着している場合にのみ可能です。
                                      " -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "サポートのルーフが印刷されるパターン。" +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "通常" -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "レイヤー内の各パーツの印刷を開始する場所付近の位置。" +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "インターリーブド" -msgctxt "support_tree_angle_slow description" -msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." -msgstr "モデルを回避する必要がない場合の枝の希望角度。枝を垂直で安定したものにするためには小さい角度を使用します。迅速にマージするには枝の角度を大きくします。" +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "プライムタワーのサイズ" -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "サポート構造の配置希望場所。構造物を希望の場所に配置できない場合は、別の場所に配置されます(モデル上に配置することになったとしても)。" +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "プライムタワーの幅。" -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "初期レイヤーの最大瞬時速度の変更。" +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "プライムタワー最小容積" -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "造形不可領域を考慮しないビルドプレートの形状。" +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "プライムタワーの各層の最小容積。" -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "プリントヘッドの形状。これらはプリントヘッドの位置を基準とした座標です。プリントヘッドの位置は通常、その最初のエクストルーダーの位置です。プリントヘッドの左側と手前側の寸法は、負の座標である必要があります。" +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "プライムタワーの最大ブリッジ距離" -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "四方でクロス3Dパターンが交差するポケットの大きさはそのパターンが触れている高さ。" +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "空中で印刷できるブランチの最大長。" -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "コースティングに必要な最小の容積。より小さい押出経路の場合、ボーデンチューブにはより少ない圧力しか蓄積されないので、コースティングの容積は比例する。この値は、常に、コースティングのボリュームよりも大きな必要があります。" +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "プライムタワーX位置" -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "ノズルが冷却される速度(℃/ s)は、通常の印刷温度とスタンバイ温度のウィンドウにわたって平均化されています。" +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "プライムタワーの位置のx座標。" -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "ノズルが加熱する速度(℃/ s)は、通常の印刷時温度とスタンバイ時温度にて平均化されています。" +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "プライムタワーY位置" -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "内側のウォールをプリントする速度 外壁より内壁を高速でプリントすると、印刷時間の短縮になります。外壁のプリント速度とインフィルのプリント速度の中間に設定するのが適切です。" +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "プライムタワーの位置のy座標。" -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "ブリッジスキン領域が印刷される速度。" +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "プライムタワーノズル拭き取り" -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "インフィルを印刷する速度。" +msgctxt "prime_tower_wipe_enabled description" +msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." +msgstr "1本のノズルでプライムタワーを印刷した後、もう片方のノズルから滲み出した材料をプライムタワーが拭き取ります。" -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "印刷スピード。" +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Base" +msgstr "プライムタワーベース" -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "ベースラフト層が印刷される速度。これは、ノズルから出てくるマテリアルの量がかなり多いので、ゆっくりと印刷されるべきである。" +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "この設定を有効にすると、モデルにはない場合でもプライムタワーにブリムが付きます。高いタワーのためにより頑丈なベースが必要な場合は、ベースの高さを増やすことができます。" -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "ブリッジ壁を印刷する速度。" +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "プライムタワーベースのサイズ" -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "プリント開始時にファンが回転する速度。後続のレイヤーでは、ファン速度は、高さに応じて早くなります。" +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "プライムタワーブリム/ベースの幅。ベースを大きくするとビルドプレートへの接着が強化されますが、有効な印刷エリアも減少します。" -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "しきい値に達する前のファンの回転スピード。プリント速度がしきい値より速くなると、ファンの速度は上がっていきます。" +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "プライムタワーベースの高さ" -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "最小積層時間でファンが回転する速度。しきい値に達すると、通常のファンの速度と最速の間でファン速度が徐々に加速しはじめます。" +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "プライムタワーベースの高さです。この値を増やすと、ベースが広くなるためプライムタワーがより頑丈になります。この設定が低すぎると、プライムタワーは頑丈なベースを持たなくなります。" -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "フィラメントが引き戻される時のスピード。" +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "プライムタワーベースの傾斜" -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "ワイプ引き戻し移動時にフィラメントが押し戻されるスピード。" +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "プライムタワーベースの傾斜に使用される倍率係数です。この値を増やすと、ベースが細くなります。減らすと、ベースが厚くなります。" -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "ノズル スイッチ後にフィラメントが押し戻される速度。" +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "プライムタワーラフトライン間隔" -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "フィラメントが引き戻される時のスピード。" +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "プライムタワーラフト層の独自のラフトライン間の距離です。間隔が広いと、ラフトをビルドプレートから簡単に取り除くことができます。" -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "ワイプ引き戻し中にフィラメントが引き戻される時の速度。" +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Ooze Shieldを有効にする" -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "ノズル切り替え中のフィラメントの引き込み速度。" +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "モデルの周りに壁(ooze shield)を作る。これを生成することで、一つ目のノズルの高さと2つ目のノズルが同じ高さであったとき、2つ目のノズルを綺麗にします。" -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "フィラメントが引き戻される時のスピード。" +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Ooze Shield角度" -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "ワイプ引き戻し移動時にフィラメントが引き戻される速度。" +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "壁(ooze shield)作成時の最大の角度。 0度は垂直であり、90度は水平である。角度を小さくすると、壁が少なくなりますが、より多くの材料が使用されます。" -msgctxt "switch_extruder_retraction_speeds description" -msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." -msgstr "フィラメントを引き戻す速度。速度が早い程良いが早すぎるとフィラメントを削ってしまう可能性があります。" +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Ooze Shield距離" -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "フロアのサポートがプリントされる速度。低速で印刷することで、サポートの接着性を向上させることができます。" +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "壁(ooze shield)の造形物からの距離。" -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "サポート材のインフィルをプリントする速度 低速でプリントすると安定性が向上します。" +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "ノズルスイッチ引き戻し距離" -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "ミドルラフト層が印刷される速度。ノズルから出てくるマテリアルの量がかなり多いので、ゆっくりと印刷されるべきである。" +msgctxt "switch_extruder_retraction_amount description" +msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." +msgstr "エクストルーダー切り替え時の引き込み量。引き込みを行わない場合は0に設定します。これは通常、ヒートゾーンの長さと同じに設定します。" -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "最も外側のウォールをプリントする速度。外側の壁を低速でプリントすると表面の質が改善しますが、内壁と外壁のプリント速度の差が大きすぎると、印刷の質が悪化します。" +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "ノズルスイッチ引き戻し速度" + +msgctxt "switch_extruder_retraction_speeds description" +msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." +msgstr "フィラメントを引き戻す速度。速度が早い程良いが早すぎるとフィラメントを削ってしまう可能性があります。" -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "プライムタワーをプリントする速度です。異なるフィラメントの印刷で密着性が最適ではない場合、低速にてプライム タワーをプリントすることでより安定させることができます。" +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "ノズルスイッチ引き込み速度" -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "冷却ファンが回転する速度。" +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "ノズル切り替え中のフィラメントの引き込み速度。" -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "ラフトが印刷される速度。" +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "ノズルスイッチ押し戻し速度" -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "ルーフとフロアのサポート材をプリントする速度。低速でプリントするとオーバーハングの品質を向上できます。" +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "ノズル スイッチ後にフィラメントが押し戻される速度。" -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "ルーフとフロアのサポート材をプリントする速度 これらを低速でプリントするとオーバーハングの品質を向上できます。" +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "ノズル切替え後のプライムに必要な余剰量" -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "スカートとブリムのプリント速度 通常は一層目のスピードと同じですが、異なる速度でスカートやブリムをプリントしたい場合に設定してください。" +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "ノズル切替え後のプライムに必要な余剰材料。" -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "サポート材をプリントする速度です。高速でサポートをプリントすると、印刷時間を大幅に短縮できます。サポート材は印刷後に削除されますので、サポート構造の品質はそれほど重要ではありません。" +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "メッシュ修正" -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "トップラフト層が印刷される速度。この値はノズルが隣接するサーフェスラインをゆっくりと滑らかにするために、少し遅く印刷する必要があります。" +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "3Dプリンティングにさらに適したメッシュを作成します。" -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "上面内壁が印刷される速度" +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "重複量" -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "上面の最外壁が印刷される速度" +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "メッシュ内の重なり合うボリュームから生じる内部ジオメトリを無視し、ボリュームを1つとして印刷します。これにより、意図しない内部空洞が消えることがあります。" -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "Z 軸ホップに対して垂直 Z 軸方向の動きが行われる速度。これは通常、ビルドプレートまたはマシンのガントリーが動きにくいため、印刷速度よりも低くなります。" +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "全穴除去" -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "ウォールを印刷する速度。" +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "各レイヤーの穴を消し、外形のみを保持します。これにより、見えない部分の不要な部分が無視されますが、表面上にある穴も全て造形されなくなります。" -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "上部表面通過時の速度。" +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "強めのスティッチング" -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "フィラメントをきれいに引き出すために維持すべきフィラメントの引戻し速度。" +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "強めのスティッチングは、穴をメッシュで塞いでデータを作成します。このオプションは、長い処理時間が必要となります。" -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "上部表面プリント時の速度。" +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "スティッチできない部分を保持" -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "トップ/ボトムのレイヤーのプリント速度。" +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "通常、Curaはメッシュ内の小さな穴をスティッチし、大きな穴のあるレイヤーの部分を削除しようとします。このオプションを有効にすると、スティッチできない部分が保持されます。このオプションは、他のすべてが適切なG-codeを生成できない場合の最後の手段として使用する必要があります。" -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "移動中のスピード。" +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "重複メッシュのマージ" -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "コースティング中の移動速度。印刷時の経路の速度設定に比例します。ボーデンチューブの圧力が低下するので、100%よりわずかに低い値が推奨される。" +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "触れているメッシュを少し重ねてください。これによって、より良い接着をします。" -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "初期レイヤーでの速度。ビルドプレートへの接着を改善するため低速を推奨します。ブリムやラフトなどのビルドプレート接着構造自体には影響しません。" +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "重複メッシュの削除" -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "一層目をプリントする速度 ビルトプレートへの接着を向上するため低速を推奨します。" +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "複数のメッシュが重なっている領域を削除します。これは、結合された2つのマテリアルのオブジェクトが互いに重なっている場合に使用されます。" -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "最初のレイヤーを印刷する際のトラベルスピード。低速の方が、ビルドプレート剥がれるリスクを軽減することができます。この設定の値は、移動速度と印刷速度の比から自動的に計算されます。" +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "代替メッシュの削除" -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "フィラメントがきれいに引き出される温度。" +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "交差するメッシュがどのレイヤーに属しているかを切り替えることで、オーバーラップしているメッシュを絡み合うようにします。この設定をオフにすると、一方のメッシュはオーバーラップ内のすべてのボリュームを取得し、他方のメッシュは他から削除されます。" -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "印刷するプリンタ内の温度。これがゼロ (0) の場合、造形温度は調整できません。" +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "空の最初のメッシュの削除" -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "印刷していないノズルの温度(もう一方のノズルが印刷中)" +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "最初に印刷したレイヤーの下に空のレイヤーがある場合は取り除きます。この設定を無効にすると、スライストレランスが「排他」または「中間」に設定されている場合に最初のレイヤーが空になる原因になります。" -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "印刷終了直前に冷却を開始する温度。" +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "最大解像度" -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer." -msgstr "最初の層を印刷するために使用される温度です。" +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "スライス後の線分の最小サイズ。これを増やすと、メッシュの解像度が低くなります。これにより、プリンタが g コードの処理速度に追いつくことができ、処理できないメッシュの詳細を取り除いてスライス速度を速めます。" -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "印刷中の温度。" +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "最大移動解像度" -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "最初のレイヤー印刷時の加熱式ビルドプレートの温度。これが0の場合、最初のレイヤー印刷時のビルドプレートは加熱されないままになります。" +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "スライス後の移動線分の最小サイズ。これを増やすと、移動の跡が滑らかでなくなります。これにより、プリンタが g コードの処理速度に追いつくことができますが、精度が低下します。" -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "加熱式ビルドプレートの温度。これが0の場合、ビルドプレートは加熱されないままになります。" +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "最大偏差" -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "材料のパージに使用する温度は、許容最高プリンティング温度とほぼ等しくなければなりません。" +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "最大解像度設定の解像度を下げるときに許容される最大偏差です。これを大きくすると印刷の精度は低くなりますが、g-codeは小さくなります。最大偏差は最大解像度の限度であるため、最大偏差でこの2つが競合する場合には常にtrueとなります。" -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "プリント時の最底面の厚み。これを積層ピッチで割った値で最低面のレイヤーの数を定義します。" +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "最大押出領域偏差" -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "スキンエッジをサポートする追加のインフィルの厚さ。" +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "直線から中間点を削除する際に許容される、押出領域の最大偏差。長い直線では中間点が幅の変化点の役割を果たすこともあります。そのため、中間点を削除すると、ラインの幅が均一になり、結果として押出領域が少し減る(または増える)ことになります。この値を大きくすると、削除が許容される幅の変化点となる中間点が増えるため、真っ直ぐで平行なウォールの間で多少の押出不足(または過多)が発生することがあります。プリントの精度は落ちますが、G-codeは小さくなります。" -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "底面または上部のモデルと接触するサポートのインターフェイスの厚さ。" +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "フルイドモーションを有効にする" -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "サポート材の底部の厚さ。これは、サポートが置かれるモデル上の積層密度を制御します。" +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "有効にすると、スムーズモーションプランナーを備えたプリンターのツールパスが補正されます。一般的なツールパスの方向から逸脱する小さな動きが滑らかになり、フルイドモーションが改善されます。" -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "サポートのルーフの厚さ。これは、モデルの下につくサポートの上部にある密度の量を制御します。" +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "フルイドモーション(移動距離)" -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "プリント時の最上面の厚み。これを積層ピッチで割った値で最上面のレイヤーの数を定義します。" +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "パスを滑らかにするため、距離点が移動されます" -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "プリント時の最上面、最底面の厚み。これを積層ピッチで割った値で最上面、最低面のレイヤーの数を定義します。" +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "フルイドモーション(近距離)" -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "壁の厚さ。この値をラインの幅で割ることで壁の数が決まります。" +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "パスを滑らかにするため、距離点が移動されます" -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "インフィルマテリアルの層ごとの厚さ。この値は常にレイヤーの高さの倍数でなければなりません。" +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "フローモーション角度" -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "サポートのインフィルの厚さ。この値はレイヤーの倍数にする必要があり、違う場合は倍数に近い値に設定されます。" +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "ツールパスセグメントが一般的な動きからこの角度よりも大きく逸脱している場合、セグメントは平滑化されます。" -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "生成するG-codeの種類です。" +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "特別モード" -msgctxt "material_type description" -msgid "The type of material used." -msgstr "" +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "これまでにないモデルの印刷方法です。" + +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "印刷頻度" -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "はみ出るフィラメントのボリューム。この値は、一般に、ノズル直径の3乗に近い値でなければならない。" +msgctxt "print_sequence description" +msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." +msgstr "すべてのモデルをレイヤーごとに印刷するか、1つのモデルがプリント完了するのを待ち次のモデルに移動するかどうか。a)エクストルーダーが1つだけ有効であり、b)プリントヘッド全体がモデル間を通ることができるようにすべてのモデルが離れていて、すべてのモデルがノズルとX/Y軸間の距離よりも小さい場合、1つずつ印刷する事ができます。" -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "造形可能領域の幅(X方向)。" +msgctxt "print_sequence option all_at_once" +msgid "All at Once" +msgstr "一度にすべて" -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "サポートの下に印刷されるブリムの幅。ブリムが大きいほど、追加材料の費用でビルドプレートへの接着性が強化されます。" +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "1つずつ" -msgctxt "interlocking_beam_width description" -msgid "The width of the interlocking structure beams." -msgstr "インターロック構造ビームの幅。" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "手動で印刷順序を設定する" -msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "プライムタワーブリム/ベースの幅。ベースを大きくするとビルドプレートへの接着が強化されますが、有効な印刷エリアも減少します。" +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "オブジェクトリストを並べ替えて,印刷順序を手動で設定できます。リストの最初のオブジェクトが最初に印刷されます。" -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "プライムタワーの幅。" +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "インフィルメッシュ" -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "振動が起こる幅。内壁は変更されていないので、これを外壁の幅より小さく設定することをお勧めします。" +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "このメッシュを使用して、重なる他のメッシュのインフィルを変更します。他のメッシュのインフィル領域を改なメッシュに置き換えます。これを利用する場合、1つのWallだけを印刷しTop / Bottom Skinは使用しないことをお勧めします。" -msgctxt "retraction_extrusion_window description" -msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." -msgstr "最大の引き戻し回数。この値は引き戻す距離と同じであることで、引き戻しが効果的に行われます。" +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "メッシュ処理ランク" -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "プライムタワーの位置のx座標。" +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "インフィルメッシュの重なりが複数生じた場合のこのメッシュの優先度を決定します。複数のインフィルメッシュの重なりがあるエリアでは、最もランクが高いメッシュの設定になります。ランクが高いインフィルメッシュは、ランクが低いインフィルメッシュのインフィルと通常のメッシュを変更します。" -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "プライムタワーの位置のy座標。" +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "メッシュ切断" -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "シーンにはサポートメッシュがあります。この設定はCuraで制御されます。" +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "このメッシュの大きさをを他のメッシュ内に制限します。この設定を使用することで、1つの特定のメッシュ領域の設定を、、全く別のエクストルーダーで作成することができます。" -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "この設定は、ブリッジ壁が始まる直前に、エクストルーダーを動かす距離を制御します。ブリッジが始まる前にコースティングすることにより、ノズル内が減圧され、ブリッジがより平らになります。" +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "型" -msgctxt "raft_base_smoothing description" -msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "型を取るため印刷し、ビルドプレート上の同じようなモデルを得るためにキャスト用の印刷をします。" -msgctxt "raft_interface_smoothing description" -msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "最小型幅" -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "この設定は、ラフトの輪郭の内側の角がどの程度丸められるかを制御します。内側の角は、ここで指定した値と等しい半径の半円に丸められます。この設定は、そのような円よりも小さいラフトの輪郭の穴を削除します。" +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "型の外側とモデルの外側との間の最小距離です。" -msgctxt "raft_surface_smoothing description" -msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "型ルーフ高さ" -msgctxt "retraction_count_max description" -msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." -msgstr "この設定は、決められた距離の中で起こる引き戻しの回数を制限します。制限数以上の引き戻しは無視されます。これによりフィーダーでフィラメントを誤って削ってしまう問題を軽減させます。" +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "型を印刷するためのモデルの水平部分上の高さ。" -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "これにより、モデルの周囲に壁ができ、熱を閉じ込め、外気の流れを遮蔽します。特に反りやすい材料に有効です。" +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "型角度" -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "先端直径" +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "型の外側の壁のオーバーハングの角度です。0度にすると垂直の外殻をつくります。 90度は輪郭に従いモデルの外側の外殻をつくります。" -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "材料の冷却時の収縮を補正するために、モデルはXY(水平)方向にこのファクタでスケールされます。" +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "サポートメッシュ" -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "材料の冷却時の収縮を補正するために、モデルはZ(垂直)方向にこのファクタでスケールされます。" +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "このメッシュを使用してサポート領域を指定します。これは、サポート構造を生成するために使用できます。" -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "材料の冷却時の収縮を補正するために、モデルはこのスケールファクタでスケールされます。" +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "メッシュオーバーハング例外" -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "上部レイヤー" +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "このメッシュを使用して、モデルのどの部分をオーバーハングとして検出する必要がないかを指定します。これは、不要なサポート構造を削除するために使用できます。" -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "上面展開距離" +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "表面モード" -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "上面除去幅" +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "モデルを表面のみ、ボリューム、または緩い表面のボリュームとして扱います。通常の印刷モードでは、囲まれた内部が印刷されます。 「Surface」は表面のみ印刷をして、インフィルもトップもボトムも印刷しません。 \"Both\"は通常と同様に囲まれた内部を印刷し残りのポリゴンをサーフェスとして印刷します。" -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "上面内壁加速度" +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "標準" -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "上面最外壁の最大瞬間速度変化" +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "表面" -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "上面内壁速度" +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "両方" -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "上面内壁の流れ" +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "滑らかな外側輪郭" -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "上面外壁加速度" +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "Z軸の外側のエッジの動きを滑らかにします。全体の印刷に安定したZの動きを促し、この機能によりソリッドのモデルを固定した底辺と単一のウォールの印刷にします。この機能は各レイヤーが単一の部品を含んでいる場合のみに有効です。" -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "上面最外壁の流れ" +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "滑らかな輪郭" -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "上面内壁の最大瞬間速度変化" +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "らせん状の輪郭を滑らかにしてZシームの視認性を低下させます (Zシームは印刷物上でほとんどみえませんが、層ビューでは確認できます)。スムージングは、細かい表面の詳細をぼかす傾向があることに注意してください。" -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "上面の最外壁速度" +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "相対押出" -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "最上面加速度" +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "絶対押出ではなく、相対押出を使用します。相対Eステップを使用すると、G-codeの後処理が容易になります。ただし、すべてのプリンタでサポートされているわけではありません。絶対的Eステップと比較して、材料の量にごくわずかな偏差が生じることがあります。この設定に関係なく、G-codeスクリプトが出力される前にエクストルーダーのモードは常に絶対値にて設定されています。" -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "上部表面用エクストルーダー" +msgctxt "experimental label" +msgid "Experimental" +msgstr "実験" -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "上部表面スキンフロー" +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "これからもっと充実させていく機能です。" -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "最上面ジャーク" +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "スライス公差" -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "上部表面レイヤー" +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "スライスされたレイヤーにおける垂直方向の公差です。レイヤーの輪郭は通常、各レイヤーの厚さの中間を通る断面で生成されます(中間)。代わりに、レイヤーごとに、ボリューム内にレイヤーの厚さの分だけ入り込んだエリアにしたり(排他)、レイヤー内の任意の位置まで入り込んだエリアにしたりする(包括)こともできます。排他は最も細かく、包括は最もフィットし、中間は元の表面に最も近くなります。" -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "最上面のラインの向き" +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "中間" -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "最上面のライン幅" +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "排他" -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "上部表面パターン" +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "包括" -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "最上面速度" +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "インフィル移動最適化" + +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "有効化すると、移動距離が減少するようにインフィルラインをプリントする順序が最適化されます。移動時間の削減は、スライスするモデル、インフィルパターン、密度などに大きく依存します。特に、インフィルを行う小さなエリアが多数あるモデルの場合、モデルをスライスする時間が大きく増えることがあります。" -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "上部厚さ" +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "フロー温度グラフ" -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "この設定より大きい角を持つオブジェクトの上部または底部の表面は、その表面のスキンを拡大しません。これにより、モデルの表面に垂直に近い斜面がある場合に作成される狭いスキン領域の拡大を回避します。0°の角度は水平方向で、スキンは拡大しません。90°の角度は垂直方向で、すべてのスキンが拡大します。" +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "マテリアルフロー(毎秒 3mm) と温度 (° c) をリンクします。" -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "トップ/ボトム" +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "最小ポリゴン円周" -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "トップ/ボトム" +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "この量よりも小さい円周を持つスライスレイヤーのポリゴンは、除外されます。値を小さくすると、スライス時間のコストで、メッシュの解像度が高くなります。つまり、ほとんどが高解像 SLA プリンター、極小多機能 3D モデルです。" -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "上面/底面加速度" +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "インターロック構造の生成" -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "上部/底面エクストルーダー" +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "モデルが接触する箇所に、インターロックビーム構造を生成します。その結果、モデル、特に異なる材料でプリントされたモデル間の密着性が向上します。" -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "上面/下面フロー" +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "インターロックビーム幅" -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "上面/下面ジャーク" +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "インターロック構造ビームの幅。" -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "上層/底層ラインの向き" +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "インターロック構造の向き" -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "上下面ライン幅" +msgctxt "interlocking_orientation description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "インターロック構造のビームの高さ(レイヤー数単位)。レイヤーが少ないほど強度は高くなりますが、欠陥が発生しやすくなります。" -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "上層/底層パターン" +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "インターロックビームレイヤー数" -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "上面/底面速度" +msgctxt "interlocking_beam_layer_count description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "インターロック構造のビームの高さ(レイヤー数単位)。レイヤーが少ないほど強度は高くなりますが、欠陥が発生しやすくなります。" -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "上部/底面の厚さ" +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "インターロックの奥行" -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "ビルドプレートにタッチ" +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "インターロック構造を生成するモデル間の境界からの距離(セル単位)。セルが少なすぎると密着性が低下します。" -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "タワー直径" +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "インターロック境界回避" -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "タワールーフ角度" +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "インターロック構造が生成されないモデルの外側からの距離(セル単位で測定)。" -msgctxt "mesh_rotation_matrix description" -msgid "Transformation matrix to be applied to the model when loading it from file." -msgstr "ファイルから読み込むときに、モデルに適用するトランスフォーメーションマトリックス。" +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "接続部分のサポート分割" -msgctxt "travel label" -msgid "Travel" -msgstr "移動" +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "サポートラインの接続部分をスキップし、サポート材部分を壊れやすくします。この設定はジグザクのサポートインフィル材のパターンにて適用できます。" -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "移動か速度" +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "サポート分割サイズ" -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "移動回避距離" +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "サポート毎行Nミリ時に、サポートの接続をわざと外し、後のサポート材の構造をもろくし、壊れやすくする。" -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "移動ジャーク" +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "サポート分割ライン数" -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "移動速度" +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "毎行Nミリ時に、サポートの接続をわざとスキップし、後のサポート材の構造をもろくし、壊れやすくする。" -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "モデルを表面のみ、ボリューム、または緩い表面のボリュームとして扱います。通常の印刷モードでは、囲まれた内部が印刷されます。 「Surface」は表面のみ印刷をして、インフィルもトップもボトムも印刷しません。 \"Both\"は通常と同様に囲まれた内部を印刷し残りのポリゴンをサーフェスとして印刷します。" +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "ドラフトシールドを有効にする" -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "ツリー" +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "これにより、モデルの周囲に壁ができ、熱を閉じ込め、外気の流れを遮蔽します。特に反りやすい材料に有効です。" -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "トライヘキサゴン" +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "ドラフトシールドとX/Yの距離" -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "トライアングル" +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "ドラフトシールドと造形物のX / Y方向の距離。" -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "トライアングル" +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "ドラフトシールドの制限" -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "トライアングル" +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "ドラフトシールドの高さを設定します。ドラフトシールドは、モデルの全高、または限られた高さで印刷するように選択します。" -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "トライアングル" +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "制限なし" -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "トライアングル" +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "制限あり" -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "本体直径" +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "ドラフトシールドの高さ" -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "ドラフトシールドの高さ制限。この高さを超えるとドラフトシールドが印刷されません。" -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "重複量" +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "オーバーハング印刷可能" -msgctxt "bridge_wall_min_length description" -msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." -msgstr "この値より短いサポートされていない壁が通常の壁設定で印刷されます。長いサポートされていない壁は、ブリッジ壁設定で印刷されます。" +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "最小限のサポートが必要となるように印刷モデルのジオメトリを変更します。急なオーバーハングは浅いオーバーハングになります。オーバーハングした領域は、より垂直になるように下がります。" -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "適応レイヤーの使用" +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "最大モデル角度" -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "使用タワー" +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "印刷可能になったオーバーハングの最大角度。 0°の値では、すべてのオーバーハングがビルドプレートに接続されたモデルの一部に置き換えられます。90°では、モデルは決して変更されません。" -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "プリントヘッド移動に異なる加速度レートを使用します。これを無効にすると、プリントヘッドの移動速度は印刷範囲で加速されずに同じ速度が使用されます。" +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "オーバーハングした穴の最大領域" -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "プリントヘッドの移動に異なるジャーク値を使用します。これを無効にすると、印刷範囲で設定されたジャーク値を使用します。" +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "モデル底部にある穴の最大領域(「オーバーハング印刷可能」で削除する前の値)。これより小さい穴は保持されます。値が0 mm²の場合、モデル底部にあるすべての穴は充填されます。" -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "絶対押出ではなく、相対押出を使用します。相対Eステップを使用すると、G-codeの後処理が容易になります。ただし、すべてのプリンタでサポートされているわけではありません。絶対的Eステップと比較して、材料の量にごくわずかな偏差が生じることがあります。この設定に関係なく、G-codeスクリプトが出力される前にエクストルーダーのモードは常に絶対値にて設定されています。" +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "コースティングを有効にする" -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "特殊なタワーを使用して、小さなオーバーハングしているエリアをサポートします。これらの塔は、サポートできる領域より大きな直径を支えれます。オーバーハング付近では塔の直径が減少し、ルーフを形成します。" +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "コースティングは、それぞれの造形ラインの最後の部分をトラベルパスで置き換えます。はみ出た材料は、糸引きを減らすために造形ライン最後の部分を印刷するために使用される。" -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "このメッシュを使用して、重なる他のメッシュのインフィルを変更します。他のメッシュのインフィル領域を改なメッシュに置き換えます。これを利用する場合、1つのWallだけを印刷しTop / Bottom Skinは使用しないことをお勧めします。" +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "コースティングのボリューム" -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "このメッシュを使用してサポート領域を指定します。これは、サポート構造を生成するために使用できます。" +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "はみ出るフィラメントのボリューム。この値は、一般に、ノズル直径の3乗に近い値でなければならない。" + +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "コースティング前の最小ボリューム" -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "このメッシュを使用して、モデルのどの部分をオーバーハングとして検出する必要がないかを指定します。これは、不要なサポート構造を削除するために使用できます。" +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "コースティングに必要な最小の容積。より小さい押出経路の場合、ボーデンチューブにはより少ない圧力しか蓄積されないので、コースティングの容積は比例する。この値は、常に、コースティングのボリュームよりも大きな必要があります。" -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "ユーザー指定" +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "コースティング速度" -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "垂直スケールファクタ収縮補正" +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "コースティング中の移動速度。印刷時の経路の速度設定に比例します。ボーデンチューブの圧力が低下するので、100%よりわずかに低い値が推奨される。" -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "スライスされたレイヤーにおける垂直方向の公差です。レイヤーの輪郭は通常、各レイヤーの厚さの中間を通る断面で生成されます(中間)。代わりに、レイヤーごとに、ボリューム内にレイヤーの厚さの分だけ入り込んだエリアにしたり(排他)、レイヤー内の任意の位置まで入り込んだエリアにしたりする(包括)こともできます。排他は最も細かく、包括は最もフィットし、中間は元の表面に最も近くなります。" +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "3Dクロスポケットのサイズ" -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "ビルドプレート加熱待ち時間" +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "四方でクロス3Dパターンが交差するポケットの大きさはそのパターンが触れている高さ。" -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "ノズル加熱待ち時間" +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "クロス画像のインフィル密度" -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "ウォール加速度" +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "画像ファイルの位置。この画像の輝度値で印刷のインフィル内の対象箇所における最小密度が決まります。" -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "ウォール分配数" +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "サポート用クロス画像のインフィル密度" -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "ウォールエクストルーダー" +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "画像ファイルの位置。この画像の輝度値でサポートの対象箇所における最小密度が決まります。" -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "壁のフロー" +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "円錐サポートを有効にする" -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "ウォールジャーク" +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "オーバーハング部分よりも底面の支持領域を小さくする。" -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "ウォールライン数" +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "円錐サポートの角度" -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "ウォールライン幅" +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "円錐形のサポートの傾きの角度。 0度は垂直であり、90度は水平である。角度が小さいと、サポートはより頑丈になりますが、より多くのマテリアルが必要になります。負の角度は、サポートのベースがトップよりも広くなります。" -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "ウォール順序" +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "円錐サポートの最大幅" -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "ウォール速度" +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "円錐形のサポート領域のベースが縮小される最小幅。幅が狭いと、サポートが不安定になる可能性があります。" -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "壁の厚さ" +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "ファジースキン" -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "ウォール移行長さ" +msgctxt "magic_fuzzy_skin_enabled description" +msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." +msgstr "外壁を印刷する際に振動が起こり、表面が粗くてぼやける。" -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "ウォール移行フィルター距離" +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "ファジースキン外のみ" -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "ウォール移行フィルターマージン" +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "部品の輪郭のみに振動が起こり、部品の穴には起こりません。" -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "ウォール移行しきい値角度" +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "ファジースキンの厚さ" -msgctxt "shell label" -msgid "Walls" -msgstr "ウォール" +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "振動が起こる幅。内壁は変更されていないので、これを外壁の幅より小さく設定することをお勧めします。" -msgctxt "wall_overhang_angle description" -msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." -msgstr "この角度以上に張り出した壁は、オーバーハング壁設定を使用してプリントされます。値が90の場合は、オーバーハング壁として処理されません。サポートによってサポートされているオーバーハングも、オーバーハングとして処理されません。" +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "ファジースキンの密度" -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "有効にすると、スムーズモーションプランナーを備えたプリンターのツールパスが補正されます。一般的なツールパスの方向から逸脱する小さな動きが滑らかになり、フルイドモーションが改善されます。" +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "レイヤー内の各ポリゴンに導入されたポイントの平均密度。ポリゴンの元の点は破棄されるため、密度が低いと解像度が低下します。" -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "有効化すると、移動距離が減少するようにインフィルラインをプリントする順序が最適化されます。移動時間の削減は、スライスするモデル、インフィルパターン、密度などに大きく依存します。特に、インフィルを行う小さなエリアが多数あるモデルの場合、モデルをスライスする時間が大きく増えることがあります。" +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "ファジースキン点間距離" -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "有効にすると、サポートを超えた直後に印刷冷却ファンの速度がスキン領域に対して変更されます。" +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "各線分に導入されたランダム点間の平均距離。ポリゴンの元の点は破棄されるので、積層の値を低くすることで、なめらかな仕上がりになります。この値は、ファジースキンの厚さの半分よりも大きくなければなりません。" -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "有効時は、Zシームは各パーツの真ん中に設定されます。無効時はプラットフォームのサイズによって設定されます。" +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "流量補正時の最大抽出オフセット" -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "ゼロを超える場合、この距離より長い移動量をコーミングすると、引き戻しが使用されます。ゼロに設定した場合、最大値はなく、コーミング移動では引き戻しを使用しません。" +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "流量の変化を補正するためにフィラメントを移動する最大距離(mm)。" -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "0より大きい場合、穴の水平展開が小さい穴に対して徐々に適用されます(小さい穴はさらに展開されます)。0に設定すると、すべての穴に穴の水平展開が適用されます。穴の水平展開の最大直径より大きい穴は展開されません。" +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "流量補正要因" -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "ゼロより大きい場合、穴の水平方向の拡張は、レイヤーごとにすべての穴に適用されるオフセットの量になります。プラスの値を指定すると穴のサイズが大きくなり、マイナスの値を指定すると穴のサイズが小さくなります。この設定を有効にすると、さらに穴の水平方向の拡張最大直径で微調整できます。" +msgctxt "flow_rate_extrusion_offset_factor description" +msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." +msgstr "流量の変化を補正するためにフィラメントを移動する距離。フィラメントが1秒の押出で移動する距離の割合として指定します。" -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "ブリッジスキン領域を印刷するときは、材料の吐出量をこの値で乗算します。" +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "適応レイヤーの使用" -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "ブリッジ壁を印刷するときは、材料の吐出量をこの値で乗算します。" +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "適応レイヤーは、レイヤーの高さをモデルの形状に合わせて計算します。" -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "セカンドブリッジスキンレイヤーを印刷するときは、材料の吐出量をこの値で乗算します。" +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "適応レイヤー最大差分" -msgctxt "bridge_skin_material_flow_3 description" -msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "サードブリッジスキンレイヤーを印刷するときは、材料の吐出量をこの値で乗算します。" +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "基準レイヤー高さと比較して許容される最大の高さ。" -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "レイヤーの最小プリント時間より早く印刷が終わった場合、ヘッド部分を持ち上げてレイヤーの最小プリント時間に到達するまで待機します。" +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "適応レイヤー差分ステップサイズ" -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "モデルの垂直方向に少数層のみの小さなギャップがある場合、通常は、その狭いスペース内にある層の周囲にスキンが存在する必要があります。垂直方向のギャップが非常に小さい場合は、この設定を有効にしてスキンが生成されないようにします。これにより、印刷時間とスライス時間が向上しますが、技術的には空気にさらされたインフィルを残します。" +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "次のレイヤーの高さを前のレイヤーの高さと比べた差。" -msgctxt "wall_transition_angle description" -msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." -msgstr "偶数個と奇数個のウォールの間で移行を行うタイミング。この設定より大きい角度のくさび形状では移行が行われず、残りのスペースを埋めるために中心にウォールがプリントされることはありません。この設定を小さくすると、これらの中心にあるウォールの数と長さが減りますが、隙間ができたり、押し出されすぎたりすることがあります。" +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "適応レイヤーのトポグラフィーサイズ" -msgctxt "wall_transition_length description" -msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." -msgstr "部品が薄くなるにつれて異なる数のウォール間を移行する場合に、ウォールラインを分割または結合するために一定のスペースが割り当てられます。" +msgctxt "adaptive_layer_height_threshold description" +msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." +msgstr "隣接する2つのレイヤー間の目標水平距離。この設定を小さくすると、レイヤーのエッジが近づくように薄いレイヤーが使用されます。" -msgctxt "wipe_hop_enable description" -msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "拭き取りの際、ビルドプレートが下降してノズルとプリントの間に隙間ができます。これは、ノズルの走行中にプリントに当たるのを防ぎ、プリントをビルドプレートから剥がしてしまう可能性を減らします。" +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "張り出し壁アングル" -msgctxt "retraction_hop_enabled description" -msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "引き戻しが完了すると、ビルドプレートが下降してノズルとプリントの間に隙間ができます。ノズルの走行中に造形物に当たるのを防ぎ、造形物をビルドプレートから剥がしてしまう現象を減らします。" +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." +msgstr "この角度以上に張り出した壁は、オーバーハング壁設定を使用してプリントされます。値が90の場合は、オーバーハング壁として処理されません。サポートによってサポートされているオーバーハングも、オーバーハングとして処理されません。" -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "X /Y方向のサポートの距離がZ方向のサポートの距離を上書きしようとする時やまたその逆も同様。X または Y がZを上書きする際、X Y 方向の距離は印刷物からオーバーハングする Z 方向の距離に影響を及ぼしながらサポートを押しのけようとします。オーバー ハング周りのX Yの距離を無効にすることで、無効にできる。" +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "張り出し壁速度" -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "プリンタのゼロポジションのX / Y座標が印刷可能領域の中心にあるかどうか。" +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "張り出し壁は、この割合で通常の印刷速度で印刷されます。" -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "X 軸のエンドストップがプラス方向(高い X 座標)またはマイナス方向(低い X 座標)のいずれかを示します。" +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "ブリッジ設定を有効にする" + +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "ブリッジを検出し、ブリッジを印刷しながらて印刷速度、フロー、ファンの設定を変更します。" -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "Y 軸のエンドストップがプラス方向(高い Y 座標)またはマイナス方向(低い Y 座標)のいずれかを示します。" +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "ブリッジ壁の最小長さ" -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "Z 軸のエンドストップがプラス方向(高い Z 座標)またはマイナス方向(低い Z 座標)のいずれかを示します。" +msgctxt "bridge_wall_min_length description" +msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." +msgstr "この値より短いサポートされていない壁が通常の壁設定で印刷されます。長いサポートされていない壁は、ブリッジ壁設定で印刷されます。" -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "各エクストルーダーが独自のヒーターを持つのではなく、単一のヒーターを共有するかどうか。" +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "ブリッジスキンサポートのしきい値" -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "各エクストルーダーが独自のノズルを持つのではなく、単一のノズルを共有するかどうか。初期設定した場合、プリンター起動gcodeスクリプトにより、すべてのエクストルーダーが初期の引き戻し状態が互換性のあるように設定されます(引き戻されていない状態のフィラメントが0個または1個のいずれか)。この場合、初期引き戻しステータスは「machine_extruders_shared_nozzle_initial_retraction」パラメーターによってエクストルーダーごとに規定されます。" +msgctxt "bridge_skin_support_threshold description" +msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." +msgstr "対象領域に対してこのパーセンテージ未満のスキン領域がサポートされている場合、ブリッジ設定で印刷します。それ以外の場合は、通常のスキン設定で印刷します。" -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "プリンターに加熱式ビルドプレートが付属しているかどうか。" +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "ブリッジスパースインフィル最大密度" -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "機器が造形温度を安定化処理できるかどうかです。" +msgctxt "bridge_sparse_infill_max_density description" +msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." +msgstr "スパース(疎)であると見なされるインフィルの最大密度。スパースインフィル上のスキンは、サポートされていないと見なされるため、ブリッジスキンとして扱われる可能性があります。" -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "オブジェクトが保存された座標系を使用する代わりにビルドプラットフォームの中間(0,0)にオブジェクトを配置するかどうか。" +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "ブリッジ壁コースティング" -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "Curaから温度を制御するかどうか。これをオフにして、Cura外からノズル温度を制御することで無効化。" +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "この設定は、ブリッジ壁が始まる直前に、エクストルーダーを動かす距離を制御します。ブリッジが始まる前にコースティングすることにより、ノズル内が減圧され、ブリッジがより平らになります。" -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "GCodeの開始時にビルドプレート温度設定を含めるかどうか。 既に最初のGCodeにビルドプレート温度設定が含まれている場合、Curaフロントエンドは自動的にこの設定を無効にします。" +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "ブリッジ壁速度" -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "GCodeの開始時にノズル温度設定を含めるかどうか。 既に最初のGCodeにノズル温度設定が含まれている場合、Curaフロントエンドは自動的にこの設定を無効にします。" +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "ブリッジ壁を印刷する速度。" -msgctxt "clean_between_layers description" -msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." -msgstr "レイヤー間にノズル拭き取りG-Codeを含むかどうか(レイヤーごとに最大1つ)。この設定を有効にすると、レイヤー変更時の引き戻し動作に影響する可能性があります。拭き取りスクリプトが動作するレイヤーでの押し戻しを制御するには、ワイプ引き戻し設定を使用してください。" +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "ブリッジ壁フロー" -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "開始時にビルドプレートが温度に達するまで待つコマンドを挿入するかどうか。" +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "ブリッジ壁を印刷するときは、材料の吐出量をこの値で乗算します。" -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "印刷する前にフィラメントの小さな塊を作るかどうか。この設定をオンにすると、エクストルーダーがノズルにおいて印刷予定のマテリアルの下準備をします。印刷後ブリムまたはスカートも、上記と同じような意味を持ちます。この設定をオフにすると時間の節約にはなります。" +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "ブリッジスキン速度" -msgctxt "print_sequence description" -msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -msgstr "すべてのモデルをレイヤーごとに印刷するか、1つのモデルがプリント完了するのを待ち次のモデルに移動するかどうか。a)エクストルーダーが1つだけ有効であり、b)プリントヘッド全体がモデル間を通ることができるようにすべてのモデルが離れていて、すべてのモデルがノズルとX/Y軸間の距離よりも小さい場合、1つずつ印刷する事ができます。" +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "ブリッジスキン領域が印刷される速度。" -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "このプリンターのバリエーションを表示するかどうかは、別のjsonファイルに記述されています。" +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "ブリッジスキンフロー" -msgctxt "machine_firmware_retract description" -msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." -msgstr "材料を引き戻すためにG1コマンドのEプロパティーを使用する代わりにファームウェア引き戻しコマンド (G10/G11) を使用するかどうか。" +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "ブリッジスキン領域を印刷するときは、材料の吐出量をこの値で乗算します。" -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "開始時にノズルの温度が達するまで待つかどうか。" +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "ブリッジスキンの密度" -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "インフィル線の幅。" +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "ブリッジスキンレイヤーの密度。100 以下の場合は、スキンライン間のギャップを増やします。" -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "サポートのルーフ、フロアのライン幅。" +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "ブリッジファン速度" -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "プリントの上部の 線の幅。" +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "ブリッジ壁とスキンを印刷する際に使用するファン速度の割合。" -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "1ラインの幅。一般に、各ラインの幅は、ノズルの幅に対応する必要があります。ただし、この値を少し小さくすると、より良い造形が得られます。" +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "ブリッジを構成する多重レイヤー" -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "単一のプライムタワーラインの幅。" +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "有効な場合、空気上部の第二および第三レイヤーは以下の設定で印刷されます。それ以外の場合は、それらのレイヤーは通常の設定で印刷されます。" -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "単一のスカートまたはブリムラインの幅。" +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "ブリッジセカンドスキンの速度" -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "サポートのフロアのラインの一幅。" +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "セカンドブリッジのスキンレイヤーを印刷する際に使用する印刷速度。" -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "サポートルーフのライン一幅。" +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "ブリッジセカンドスキンのフロー" -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "単一のサポート構造のライン幅。" +msgctxt "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "セカンドブリッジスキンレイヤーを印刷するときは、材料の吐出量をこの値で乗算します。" -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "上辺/底辺線のライン幅。" +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "ブリッジセカンドスキンの密度" -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "一番外側のウォールラインを除くすべてのウォールラインのラインの幅。" +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "セカンドブリッジスキンレイヤーの密度。100 以下の場合は、スキンライン間のギャップを増やします。" -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "ウォールラインの幅。" +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "ブリッジセカンドスキンのファン速度" -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "ベースラフト層の線幅。ビルドプレートの接着のため太い線でなければなりません。" +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "セカンドブリッジのスキンレイヤーを印刷する際に使用するファン速度の割合。" -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "中間ラフト層の線の幅。第2層をより押し出すと、ラインがビルドプレートに固着します。" +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "ブリッジサードスキンの速度" -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "ラフトの上面の線の幅。これらは細い線で、ラフトの頂部が滑らかになります。" +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "サードブリッジのスキンレイヤーを印刷する際に使用する印刷速度。" -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "最も外側のウォールラインの幅。この値を下げると、より詳細な印刷できます。" +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "ブリッジサードスキンのフロー" -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "モデルの薄いフィーチャーを(最小フィーチャーサイズに従って)置き換えるウォールの幅。最小ウォールライン幅がフィーチャーの厚さより薄い場合、ウォールの厚さはフィーチャー自体の厚さと同じになります。" +msgctxt "bridge_skin_material_flow_3 description" +msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "サードブリッジスキンレイヤーを印刷するときは、材料の吐出量をこの値で乗算します。" -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "ワイプブラシXの位置" +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "ブリッジサードスキンの密度" -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "ワイプホップ速度" +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "サードブリッジスキンレイヤーの密度。100 以下の場合は、スキンライン間のギャップを増やします。" -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "プライムタワーノズル拭き取り" +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "ブリッジサードスキンのファン速度" -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "ワイプ移動距離" +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "サードブリッジのスキンレイヤーを印刷する際に使用するファン速度の割合。" msgctxt "clean_between_layers label" msgid "Wipe Nozzle Between Layers" msgstr "レイヤー間のノズル拭き取り" -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "ワイプ一時停止" +msgctxt "clean_between_layers description" +msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." +msgstr "レイヤー間にノズル拭き取りG-Codeを含むかどうか(レイヤーごとに最大1つ)。この設定を有効にすると、レイヤー変更時の引き戻し動作に影響する可能性があります。拭き取りスクリプトが動作するレイヤーでの押し戻しを制御するには、ワイプ引き戻し設定を使用してください。" -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "ワイプ繰り返し回数" +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "ワイプ間の材料の量" -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "ワイプリトラクト無効" +msgctxt "max_extrusion_before_wipe description" +msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." +msgstr "別のノズル拭き取りを行う前に押し出せる材料の最大量。この値がレイヤーに必要な材料の量よりも小さい場合、この設定はこのレイヤーには影響しません。つまり、レイヤーごとに1つの拭き取りに制限されます。" msgctxt "wipe_retraction_enable label" msgid "Wipe Retraction Enable" msgstr "ワイプリトラクト有効" +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "ノズルが印刷しないで良い領域を移動する際にフィラメントを引き戻す。" + +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "ワイプリトラクト無効" + +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "拭き取りシーケンス中に出ないように押し戻すフィラメントの量。" + msgctxt "wipe_retraction_extra_prime_amount label" msgid "Wipe Retraction Extra Prime Amount" msgstr "ワイプ引き戻し時の余分押し戻し量" -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "ワイプ引き戻し下準備速度" +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "いくつかの材料は、ワイプ移動中ににじみ出るためここで補償することができます。" + +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "ワイプリトラクト速度" + +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "ワイプ引き戻し中にフィラメントが引き戻される時の速度。" msgctxt "wipe_retraction_retract_speed label" msgid "Wipe Retraction Retract Speed" msgstr "ワイプ引き戻し速度" -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "ワイプリトラクト速度" +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "ワイプ引き戻し移動時にフィラメントが引き戻される速度。" + +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "ワイプ引き戻し下準備速度" + +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "ワイプ引き戻し移動時にフィラメントが押し戻されるスピード。" + +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "ワイプ一時停止" + +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "引き戻し前に一時停止します。" msgctxt "wipe_hop_enable label" msgid "Wipe Z Hop" msgstr "ワイプZホップ" +msgctxt "wipe_hop_enable description" +msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "拭き取りの際、ビルドプレートが下降してノズルとプリントの間に隙間ができます。これは、ノズルの走行中にプリントに当たるのを防ぎ、プリントをビルドプレートから剥がしてしまう可能性を減らします。" + msgctxt "wipe_hop_amount label" msgid "Wipe Z Hop Height" msgstr "ワイプZホップ高さ" -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "インフィル内" +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "Zホップを実行するときの高さ。" -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "非アクティブなツールに一時コマンドを送信した後にアクティブなツールを書き込みます。Smoothieまたはその他のモーダルツールコマンドを使用するファームウェアを使用したデュアルエクストルーダープリントに必要です。" +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "ワイプホップ速度" -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "プラス方向の X エンドストップ" +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "ホップ中に z 軸を移動する速度。" + +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "ワイプブラシXの位置" msgctxt "wipe_brush_pos_x description" msgid "X location where wipe script will start." msgstr "ワイプスクリプトを開始するX位置。" -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/YがZを上書き" +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "ワイプ繰り返し回数" -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "プラス方向の Y エンドストップ" +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "ブラシ全体をノズルが移動する回数。" -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "プラス方向の Z エンドストップ" +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "ワイプ移動距離" -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "エクストルーダースイッチ後のZホップ" +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "ブラシ全体でヘッド前後に動かす距離。" -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "エクストルーダースイッチ高さ後のZホップ" +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "小さい穴の最大サイズ" -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Zホップ高さ" +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "これより直径が小さな輪郭の穴とパーツは、Small Feature Speedを使用して印刷されます。" -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "印刷パーツに対するZホップ" +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "小型形体の最大長さ" -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Z 軸ホップ速度" +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "この長さより短い輪郭の形体は、Small Feature Speedを使用して印刷されます。" -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "引き戻し時のZホップ" +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "小さな機能の速度" -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Zシーム合わせ" +msgctxt "small_feature_speed_factor description" +msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "小型形体は通常のプリント速度に対してこの割合でプリントされます。低速でプリントすると、接着と精度が向上します。" -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Zシーム位置" +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "小型形体の初期レイヤー速度" -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "相対Zシーム" +msgctxt "small_feature_speed_factor_0 description" +msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "最初のレイヤーの小型形体は通常のプリント速度に対してこの割合でプリントされます。低速でプリントすると、接着と精度が向上します。" -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "ZシームX" +msgctxt "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "ウォールの代替の向き" -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "ZシームY" +msgctxt "material_alternate_walls description" +msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." +msgstr "レイヤーやインセットについて1つおきに適用されるウォールの代替の向き。金属プリンティングの場合など、応力が蓄積される可能性がある材料に有用です。" -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "ZがX/Yを上書き" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "外壁をグループ化" -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "同じレイヤー内の異なる島の外壁は順次印刷されます。有効にすると、壁は1つの種類ずつ印刷されるため、フローの変化量が制限されます。無効にすると、同じ島の壁がグループ化されるため、島間の移動回数が減少します。" -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "印刷プロセスレポート" -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "設定されたしきい値を超えたイベントのレポート" -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "印刷プロセスレポートを有効にする" -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "印刷プロセスのレポートを有効にして,問題の検出の可能性があるしきい値を設定します。" -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "フロー警告" -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "検出するフロー警告の制限。" -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "フロー制限" -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "検出するフロー異常の制限。" -msgctxt "travel description" -msgid "travel" -msgstr "移動" +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "印刷温度警告" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "検出するプリント温度警告の制限。" -#~ msgctxt "brim_inside_margin description" -#~ msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -#~ msgstr "別の部品内に完全に囲まれた部品は、別の部品の内側に接触する外側縁ができることがあります。この設定によって、内部の穴からこの間隔内のすべての縁が除去されます。" +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "印刷温度制限" -#~ msgctxt "user_defined_print_order_enabled description" -#~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." -#~ msgstr "オブジェクトリストを並べ替えて、手動で印刷順序を設定することができます。リストの最初のオブジェクトが最初に印刷されます。" +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "検出する印刷温度異常の制限。" -#~ msgctxt "brim_inside_margin label" -#~ msgid "Brim Inside Avoid Margin" -#~ msgstr "内側縁がマージンに接触しないようにする" +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "ビルドボリューム温度警告" -#~ msgctxt "brim_outside_only label" -#~ msgid "Brim Only on Outside" -#~ msgstr "外側にブリムのみ印刷" +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "検出するビルドボリューム温度の制限警告。" -#~ msgctxt "gradual_flow_discretisation_step_size description" -#~ msgid "Duration of each step in the gradual flow change" -#~ msgstr "段階的なフローの変化におけるステップごとの時間" +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "ビルドボリューム温度制限" -#~ msgctxt "gradual_flow_enabled description" -#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -#~ msgstr "段階的なフローの変化を有効にできます。有効にすると、フローは目標フローまで段階的に増減します。これは、押し出しモーターの始動/停止時にフローがすぐに変化しないボーデンチューブを備えたプリンターに便利です。" +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "検出するビルドボリューム温度の異常の制限。" -#~ msgctxt "reset_flow_duration description" -#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -#~ msgstr "この値より長い移動の場合、素材フローは目標フローにリセットされます。" +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "コマンドライン設定" -#~ msgctxt "gradual_flow_discretisation_step_size label" -#~ msgid "Gradual flow discretisation step size" -#~ msgstr "段階的なフローの離散化ステップのサイズ" +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "CuraエンジンがCuraフロントエンドから呼び出されない場合のみ使用される設定。" -#~ msgctxt "gradual_flow_enabled label" -#~ msgid "Gradual flow enabled" -#~ msgstr "段階的なフローが有効" +msgctxt "center_object label" +msgid "Center Object" +msgstr "オブジェクト中心配置" -#~ msgctxt "max_flow_acceleration label" -#~ msgid "Gradual flow max acceleration" -#~ msgstr "段階的なフローの最大加速度" +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "オブジェクトが保存された座標系を使用する代わりにビルドプラットフォームの中間(0,0)にオブジェクトを配置するかどうか。" -#~ msgctxt "layer_0_max_flow_acceleration label" -#~ msgid "Initial layer max flow acceleration" -#~ msgstr "初期層の最大フロー加速度" +msgctxt "mesh_position_x label" +msgid "Mesh Position X" +msgstr "メッシュ位置X" -#~ msgctxt "layer_0_z_overlap description" -#~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -#~ msgstr "エアギャップ内で失われたフィラメントを補うために、モデルの第1層と第2層をZ方向にオーバーラップさせます。この値によって、最初のモデルレイヤーがシフトダウンされます。" +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "オブジェクトの X 方向に適用されたオフセット。" -#~ msgctxt "max_flow_acceleration description" -#~ msgid "Maximum acceleration for gradual flow changes" -#~ msgstr "フローを段階的に変化させるための最大加速度" +msgctxt "mesh_position_y label" +msgid "Mesh Position Y" +msgstr "メッシュ位置Y" -#~ msgctxt "layer_0_max_flow_acceleration description" -#~ msgid "Minimum speed for gradual flow changes for the first layer" -#~ msgstr "第1層のフローを段階的に変化させるための最低速度" +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "オブジェクトのY 方向適用されたオフセット。" -#~ msgctxt "brim_outside_only description" -#~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -#~ msgstr "モデルの外側のみにブリムを印刷します。これにより、後で取り除くブリムの量が減少します。またプレートへの接着力はそれほど低下しません。" +msgctxt "mesh_position_z label" +msgid "Mesh Position Z" +msgstr "メッシュ位置Z" -#~ msgctxt "reset_flow_duration label" -#~ msgid "Reset flow duration" -#~ msgstr "フロー期間をリセット" +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "オブジェクトの Z 方向に適用されたオフセット。この 'オブジェクト シンク' と呼ばれていたものを再現できます。" -#~ msgctxt "support_interface_skip_height label" -#~ msgid "Support Interface Resolution" -#~ msgstr "サポートインタフェース解像度" +msgctxt "mesh_rotation_matrix label" +msgid "Mesh Rotation Matrix" +msgstr "メッシュ回転マトリックス" -#~ msgctxt "support_interface_skip_height description" -#~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -#~ msgstr "サポートの上下にモデルがあるかどうか確認するには、特定のサポートの高さを見ます。低い値はスライスに時間がかかり、高い値にするとサポートのインターフェイスがある場所に通常のサポートを印刷する可能性があります。" +msgctxt "mesh_rotation_matrix description" +msgid "Transformation matrix to be applied to the model when loading it from file." +msgstr "ファイルから読み込むときに、モデルに適用するトランスフォーメーションマトリックス。" diff --git a/resources/i18n/ja_JP/gradual_flow_settings.def.json.po b/resources/i18n/ja_JP/gradual_flow_settings.def.json.po index 363b0994aa1..19a5836b839 100644 --- a/resources/i18n/ja_JP/gradual_flow_settings.def.json.po +++ b/resources/i18n/ja_JP/gradual_flow_settings.def.json.po @@ -1,54 +1,53 @@ -# msgid "" msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: 2024-03-11 11:28+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: en\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja_JP\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=1; plural=0;\n" -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" - msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" msgstr "Gradual flow max acceleration" -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" - msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" msgstr "Maximum acceleration for gradual flow changes" +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" msgstr "Minimum speed for gradual flow changes for the first layer" +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + msgctxt "reset_flow_duration label" msgid "Reset flow duration" msgstr "Reset flow duration" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" diff --git a/resources/i18n/ko_KR/cura.po b/resources/i18n/ko_KR/cura.po index 21641fa7ea0..c9e85a6c71a 100644 --- a/resources/i18n/ko_KR/cura.po +++ b/resources/i18n/ko_KR/cura.po @@ -12,7 +12,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" msgstr "%(width).1f x %(depth).1f x %(height).1f mm" @@ -117,7 +116,7 @@ msgstr "프로젝트 저장(&S)..." msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" msgid "&Save Universal Cura Project..." -msgstr "" +msgstr "&범용 Cura 프로젝트 저장..." msgctxt "@title:menu menubar:toplevel" msgid "&Settings" @@ -140,13 +139,9 @@ msgid "*You will need to restart the application for these changes to have effec msgstr "*이러한 변경 사항을 적용하려면 응용 프로그램을 재시작해야 합니다." msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "" -"- 재료 설정 및 Marketplace 플러그인 추가\n" -"- 재료 설정과 플러그인 백업 및 동기화\n" +msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgstr "- 재료 설정 및 Marketplace 플러그인 추가" +"- 재료 설정과 플러그인 백업 및 동기화" "- UltiMaker 커뮤니티에서 48,000명 이상의 사용자와 아이디어를 공유하고 도움 받기" msgctxt "@heading" @@ -173,14 +168,6 @@ msgctxt "@item:inlistbox" msgid "3MF File" msgstr "3MF 파일" -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF 리더" - -msgctxt "name" -msgid "3MF Writer" -msgstr "3MF 기록기" - msgctxt "@error:zip" msgid "3MF Writer plug-in is corrupt." msgstr "3MF 기록기 플러그인이 손상되었습니다." @@ -201,56 +188,37 @@ msgctxt "@label %i will be replaced with a profile name" msgid "Only user changed settings will be saved in the custom profile.
                                      For materials that support it, the new custom profile will inherit properties from %1." msgstr "사용자 지정 프로필에는 사용자가 변경한 설정만 저장됩니다.
                                      이를 지원하는 재료의 경우 새 사용자 지정 프로필은 %1의 속성을 상속합니다." -#, python-brace-format msgctxt "@label OpenGL renderer" msgid "
                                    • OpenGL Renderer: {renderer}
                                    • " msgstr "
                                    • OpenGL Renderer: {renderer}
                                    • " -#, python-brace-format msgctxt "@label OpenGL vendor" msgid "
                                    • OpenGL Vendor: {vendor}
                                    • " msgstr "
                                    • OpenGL 공급업체: {vendor}
                                    • " -#, python-brace-format msgctxt "@label OpenGL version" msgid "
                                    • OpenGL Version: {version}
                                    • " msgstr "
                                    • OpenGL 버전: {version}
                                    • " msgctxt "@label crash message" -msgid "" -"

                                      A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

                                      \n" -"

                                      Please use the \"Send report\" button to post a bug report automatically to our servers

                                      \n" -" " -msgstr "" -"

                                      치명적인 오류가 발생했습니다. 문제를 해결할 수 있도록 이 충돌 보고서를 보내주십시오

                                      \n" -"

                                      "보고서 전송" 버튼을 사용하면 버그 보고서가 서버에 자동으로 전달됩니다

                                      \n" +msgid "

                                      A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

                                      \n

                                      Please use the \"Send report\" button to post a bug report automatically to our servers

                                      \n " +msgstr "

                                      치명적인 오류가 발생했습니다. 문제를 해결할 수 있도록 이 충돌 보고서를 보내주십시오

                                      " +"

                                      "보고서 전송" 버튼을 사용하면 버그 보고서가 서버에 자동으로 전달됩니다

                                      " " " msgctxt "@label crash message" -msgid "" -"

                                      Oops, UltiMaker Cura has encountered something that doesn't seem right.

                                      \n" -"

                                      We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

                                      \n" -"

                                      Backups can be found in the configuration folder.

                                      \n" -"

                                      Please send us this Crash Report to fix the problem.

                                      \n" -" " -msgstr "" -"

                                      죄송합니다, UltiMaker Cura가 정상적이지 않습니다. </ p> </ b>\n" -"                    

                                      시작할 때 복구 할 수없는 오류가 발생했습니다. 이 오류는 잘못된 구성 파일로 인해 발생할 수 있습니다. 설정을 백업하고 재설정하는 것이 좋습니다. </ p>\n" -"                    

                                      백업은 설정 폴더에서 찾을 수 있습니다. </ p>\n" -"                    

                                      문제를 해결하기 위해이 오류 보고서를 보내주십시오. </ p>\n" +msgid "

                                      Oops, UltiMaker Cura has encountered something that doesn't seem right.

                                      \n

                                      We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

                                      \n

                                      Backups can be found in the configuration folder.

                                      \n

                                      Please send us this Crash Report to fix the problem.

                                      \n " +msgstr "

                                      죄송합니다, UltiMaker Cura가 정상적이지 않습니다. </ p> </ b>" +"                    

                                      시작할 때 복구 할 수없는 오류가 발생했습니다. 이 오류는 잘못된 구성 파일로 인해 발생할 수 있습니다. 설정을 백업하고 재설정하는 것이 좋습니다. </ p>" +"                    

                                      백업은 설정 폴더에서 찾을 수 있습니다. </ p>" +"                    

                                      문제를 해결하기 위해이 오류 보고서를 보내주십시오. </ p>" " " -#, python-brace-format msgctxt "@info:status" -msgid "" -"

                                      One or more 3D models may not print optimally due to the model size and material configuration:

                                      \n" -"

                                      {model_names}

                                      \n" -"

                                      Find out how to ensure the best possible print quality and reliability.

                                      \n" -"

                                      View print quality guide

                                      " -msgstr "" -"

                                      하나 이상의 3D 모델이 모델 크기 및 재료 구성으로 인해 최적의 상태로 인쇄되지 않을 수 있습니다.

                                      \n" -"

                                      {model_names}

                                      \n" -"

                                      인쇄 품질 및 안정성을 최고로 높이는 방법을 알아보십시오.

                                      \n" +msgid "

                                      One or more 3D models may not print optimally due to the model size and material configuration:

                                      \n

                                      {model_names}

                                      \n

                                      Find out how to ensure the best possible print quality and reliability.

                                      \n

                                      View print quality guide

                                      " +msgstr "

                                      하나 이상의 3D 모델이 모델 크기 및 재료 구성으로 인해 최적의 상태로 인쇄되지 않을 수 있습니다.

                                      " +"

                                      {model_names}

                                      " +"

                                      인쇄 품질 및 안정성을 최고로 높이는 방법을 알아보십시오.

                                      " "

                                      인쇄 품질 가이드 보기

                                      " msgctxt "@label" @@ -264,7 +232,7 @@ msgstr[0] "A cloud connection is not available for some printers" msgctxt "@text" msgid "A highly dense and strong part but at a slower print time. Great for functional parts." -msgstr "" +msgstr "밀도가 높고 견고한 부품이지만 출력 시간이 더 느립니다. 기능적인 부품에 적합합니다." msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." @@ -274,10 +242,6 @@ msgctxt "@item:inlistbox" msgid "AMF File" msgstr "AMF 파일" -msgctxt "name" -msgid "AMF Reader" -msgstr "AMF 리더" - msgctxt "@label" msgid "Abort" msgstr "중단" @@ -314,10 +278,6 @@ msgctxt "@button" msgid "Accept" msgstr "동의" -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "G-코드를 수신하고 프린터로 보냅니다. 플러그인은 또한 펌웨어를 업데이트 할 수 있습니다." - msgctxt "@label" msgid "Account synced" msgstr "계정 동기화됨" @@ -410,7 +370,6 @@ msgctxt "@button" msgid "Add printer manually" msgstr "수동으로 프린터 추가" -#, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "사용자 계정에서 프린터 {name}({model}) 추가" @@ -451,7 +410,6 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "모든 파일 (*)" -#, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "지원되는 모든 유형 ({0})" @@ -460,10 +418,6 @@ msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "익명 데이터 전송 허용" -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "G-코드 파일을 로드하고 표시 할 수 있습니다." - msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "항상 묻기" @@ -502,7 +456,7 @@ msgstr "익명" msgctxt "@option:radio" msgid "Anonymous crash reports" -msgstr "" +msgstr "익명 충돌 보고" msgctxt "@label Description for application component" msgid "Application framework" @@ -510,7 +464,7 @@ msgstr "애플리케이션 프레임 워크" msgctxt "@title:column" msgid "Applies on" -msgstr "" +msgstr "적용 대상:" msgctxt "@label" msgid "Apply Extruder offsets to GCode" @@ -544,7 +498,6 @@ msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to move %1 to the top of the queue?" msgstr "%1(을)를 대기열의 맨 위로 이동하시겠습니까?" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "일시적으로 {printer_name}을(를) 제거하시겠습니까?" @@ -557,7 +510,6 @@ msgctxt "@label (%1 is object name)" msgid "Are you sure you wish to remove %1? This cannot be undone!" msgstr "%1을 제거 하시겠습니까? 이것은 취소 할 수 없습니다!" -#, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "정말로 {0}을(를) 제거하시겠습니까? 이 작업을 실행 취소할 수 없습니다." @@ -622,10 +574,6 @@ msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "백업 및 리셋 설정" -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "구성을 백업하고 복원합니다." - msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "재료 설정과 플러그인 백업 및 동기화" @@ -700,7 +648,7 @@ msgstr "계산된" msgctxt "@window:text" msgid "Camera navigation:" -msgstr "" +msgstr "카메라 탐색:" msgctxt "@window:text" msgid "Camera rendering:" @@ -722,12 +670,10 @@ msgctxt "@label" msgid "Can't connect to your UltiMaker printer?" msgstr "UltiMaker 프린터로 연결할 수 없습니까?" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "프린터가 추가되기 전 {0}에서 프로파일을 가져올 수 없습니다." -#, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "G-코드가 로드되어 있으면 다른 파일을 열 수 없습니다. {0} 가져 오기를 건너 뛰었습니다." @@ -800,21 +746,8 @@ msgctxt "@label" msgid "Checking..." msgstr "확인 중..." -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "펌웨어 업데이트를 확인합니다." - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "가능한 프린팅 문제를 위해 모델 및 인쇄 구성을 확인하고 제안합니다." - msgctxt "@label" -msgid "" -"Chooses between the techniques available to generate support. \n" -"\n" -"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" -"\n" -"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "서포트를 생성하는 데 사용할 수 있는 기술 중 하나를 선택합니다. '표준' 서포트는 오버행(경사면) 파트 바로 아래에 서포트 구조물을 생성하고 해당 영역을 바로 아래로 떨어뜨립니다. '트리' 서포트는 모델을 지지하는 브랜치 끝에서 오버행(경사면) 영역을 향해 브랜치를 만들고 빌드 플레이트에서 모델을 지지할 수 있도록 모델을 브랜치로 최대한 감쌉니다." msgctxt "@action:inmenu menubar:edit" @@ -893,14 +826,6 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "압축된 G-code 파일" -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "압축 된 G 코드 리더기" - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "압축 된 G 코드 작성기" - msgctxt "@title:window" msgid "Configuration Changes" msgstr "구성 변경" @@ -973,10 +898,6 @@ msgctxt "@info:status" msgid "Connected via cloud" msgstr "Cloud를 통해 연결됨" -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "디지털 라이브러리와 연결하여 Cura에서 디지털 라이브러리를 통해 파일을 열고 저장할 수 있도록 합니다." - msgctxt "@tooltip:button" msgid "Consult the UltiMaker Community." msgstr "UltiMaker 커뮤니티에 문의하십시오." @@ -1017,7 +938,6 @@ msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "사용자 데이터 디렉터리에서 압축 파일을 만들 수 없습니다: {}" -#, python-brace-format msgctxt "@info:status Don't translate the tag {device}!" msgid "Could not find a file name when trying to write to {device}." msgstr "{device} 장치에 쓸 때 파일 이름을 찾을 수 없습니다." @@ -1046,12 +966,10 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "재료 아카이브를 {}에 저장할 수 없음:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "{0}: {1} 에 저장할 수 없습니다" -#, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "이동식 드라이브 {0}: {1} 에 저장할 수 없습니다 :" @@ -1060,31 +978,19 @@ msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "데이터를 프린터로 업로드할 수 없음." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"No permission to execute process." -msgstr "" -"EnginePlugin을 시작할 수 없습니다: {self._plugin_id}\n" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." +msgstr "EnginePlugin을 시작할 수 없습니다: {self._plugin_id}" "프로세스를 실행할 권한이 없습니다." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Operating system is blocking it (antivirus?)" -msgstr "" -"EnginePlugin을 시작할 수 없습니다: {self._plugin_id}\n" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" +msgstr "EnginePlugin을 시작할 수 없습니다: {self._plugin_id}" "운영 체제가 이를 차단하고 있습니다(바이러스 백신?)" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Resource is temporarily unavailable" -msgstr "" -"EnginePlugin을 시작할 수 없습니다: {self._plugin_id}\n" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" +msgstr "EnginePlugin을 시작할 수 없습니다: {self._plugin_id}" "리소스를 일시적으로 사용할 수 없습니다" msgctxt "@title:window" @@ -1127,10 +1033,6 @@ msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Digital Library에서 프린트 프로젝트를 생성하십시오." -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "특정 장소에서 서포트 프린팅을 막는 지우개 메쉬(eraser mesh)를 만듭니다" - msgctxt "@info:backup_status" msgid "Creating your backup..." msgstr "백업 생성 중..." @@ -1143,22 +1045,10 @@ msgctxt "@title:window" msgid "Cura Backups" msgstr "Cura 백업" -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura 백업" - msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Cura 프로파일" -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura 프로파일 리더" - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura 프로파일 작성자" - msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Cura 프로젝트 3MF 파일" @@ -1171,17 +1061,13 @@ msgctxt "@title:window" msgid "Cura can't start" msgstr "큐라를 시작할 수 없습니다" -#, python-brace-format msgctxt "@info:status" msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." msgstr "Cura가 {0} 그룹의 호스트 프린터에 설치되지 않은 재료 프로파일을 감지했습니다." msgctxt "@info:credit" -msgid "" -"Cura is developed by UltiMaker in cooperation with the community.\n" -"Cura proudly uses the following open source projects:" -msgstr "" -"Cura는 커뮤니티와 공동으로 UltiMaker 에 의해 개발되었습니다.\n" +msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" +msgstr "Cura는 커뮤니티와 공동으로 UltiMaker 에 의해 개발되었습니다." "Cura는 다음의 오픈 소스 프로젝트를 사용합니다:" msgctxt "@label" @@ -1192,18 +1078,6 @@ msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura 버전" -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine 백엔드" - -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "점진적으로 흐름을 평활화하여 높은 흐름 점프를 제한하는 CuraEngine 플러그인" - -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - msgctxt "@label" msgid "Currency:" msgstr "통화:" @@ -1434,7 +1308,7 @@ msgstr "초안" msgctxt "@action:inmenu menubar:edit" msgid "Drop All Models to buildplate" -msgstr "" +msgstr "모든 모델을 빌드 플레이트에 놓기" msgctxt "@action:button" msgid "Duplicate" @@ -1460,12 +1334,10 @@ msgctxt "@action:button" msgid "Eject" msgstr "꺼내기" -#, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "이동식 장치 {0} 꺼내기" -#, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "{0}가 배출됐습니다. 이제 드라이브를 안전하게 제거 할 수 있습니다." @@ -1490,10 +1362,6 @@ msgctxt "@label" msgid "Enabled" msgstr "실행됨" -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "2D 이미지 파일에서 프린팅 가능한 지오메트리를 생성 할 수 있습니다." - msgctxt "@title:label" msgid "End G-code" msgstr "End GCode" @@ -1564,7 +1432,7 @@ msgstr "내보내기 선택..." msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Export Universal Cura Project" -msgstr "" +msgstr "범용 Cura 프로젝트 내보내기" msgctxt "@button" msgid "Export material archive" @@ -1574,7 +1442,6 @@ msgctxt "@info:title" msgid "Export succeeded" msgstr "내보내기 완료" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "프로파일을 {0} 에 내보냅니다" @@ -1583,10 +1450,6 @@ msgctxt "@tooltip:button" msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "플러그인 및 재료 프로파일을 사용하여 UltiMaker Cura를 확장하십시오." -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "후처리를 위해 사용자가 만든 스크립트를 허용하는 확장 프로그램" - msgctxt "@label" msgid "Extruder" msgstr "익스트루더" @@ -1601,7 +1464,7 @@ msgstr "익스트루더 종료 Gcode" msgctxt "@label" msgid "Extruder End G-code duration" -msgstr "" +msgstr "압출기 종료 G-코드 지속 시간" msgctxt "@title:label" msgid "Extruder Start G-code" @@ -1609,12 +1472,11 @@ msgstr "익스트루더 시작 Gcode" msgctxt "@label" msgid "Extruder Start G-code duration" -msgstr "" +msgstr "압출기 시작 G-코드 지속 시간" -#, python-brace-format msgctxt "@label" msgid "Extruder {0}" -msgstr "" +msgstr "압출기 {0}" msgctxt "@info:title" msgid "Extruder(s) Disabled" @@ -1636,7 +1498,6 @@ msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "프린터와 동기화할 재료의 아카이브 저장에 실패했습니다." -#, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "{0}를 배출하지 못했습니다. 다른 프로그램이 드라이브를 사용 중일 수 있습니다." @@ -1645,27 +1506,22 @@ msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "재료를 내보내는데 실패했습니다" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "프로파일을 {0}: {1}로 내보내는데 실패했습니다" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "프로파일을 {0}로 내보내지 못했습니다. Writer 플러그인이 오류를 보고했습니다." -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "{0}에서 프로파일을 가져오지 못했습니다:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "{0}에서 프로파일을 가져오지 못했습니다:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "{0}에서 프로파일을 가져오지 못했습니다 {1}" @@ -1682,10 +1538,9 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "재료 아카이브를 저장하는 데 실패함" -#, python-brace-format msgctxt "@info:status" msgid "Failed writing to specific cloud printer: {0} not in remote clusters." -msgstr "" +msgstr "특정 클라우드 프린터에 쓰기 실패: {0}이(가) 원격 클러스터에 없음" msgctxt "@label:category menu label" msgid "Favorites" @@ -1711,7 +1566,6 @@ msgctxt "@info:title" msgid "File Saved" msgstr "파일이 저장됨" -#, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "파일 {0}에 유효한 프로파일이 포함되어 있지 않습니다." @@ -1744,14 +1598,6 @@ msgctxt "@title:window" msgid "Firmware Update" msgstr "펌웨어 업데이트" -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "펌웨어 업데이트 검사기" - -msgctxt "name" -msgid "Firmware Updater" -msgstr "펌웨어 업데이터" - msgctxt "@label" msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." msgstr "프린터와 연결이 펌웨어 업그레이드를 지원하지 않아 펌웨어를 업데이트할 수 없습니다." @@ -1829,7 +1675,7 @@ msgid "Force layer view compatibility mode (restart required)" msgstr "레이어 뷰 호환성 모드로 전환 (다시 시작해야 함)" msgid "FreeCAD trackpad" -msgstr "" +msgstr "FreeCAD 트랙패드" msgctxt "@action:inmenu menubar:view" msgid "Front View" @@ -1851,18 +1697,6 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "G-code 파일" -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "GCode 프로파일 리더기" - -msgctxt "name" -msgid "G-code Reader" -msgstr "G-코드 리더" - -msgctxt "name" -msgid "G-code Writer" -msgstr "GCode 작성자" - msgctxt "@label" msgid "G-code flavor" msgstr "Gcode 유형" @@ -1921,7 +1755,7 @@ msgstr "시작하기" msgctxt "@label" msgid "Global" -msgstr "" +msgstr "전체" msgctxt "@title:tab" msgid "Global Settings" @@ -1935,7 +1769,6 @@ msgctxt "@label" msgid "Grid Placement" msgstr "그리드 배치" -#, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "그룹 #{group_nr}" @@ -1974,7 +1807,7 @@ msgstr "연결된 프린터 모두 숨기기" msgctxt "@action:button" msgid "Hide settings" -msgstr "" +msgstr "설정 숨기기" msgctxt "@action:menu" msgid "Hide this setting" @@ -2012,10 +1845,6 @@ msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "프린터가 목록에 없으면 네트워크 프린팅 문제 해결 가이드를 읽어보십시오" -msgctxt "name" -msgid "Image Reader" -msgstr "이미지 리더" - msgctxt "@action:button" msgid "Import" msgstr "가져오기" @@ -2054,7 +1883,7 @@ msgstr "패키지를 사용하려면 Cura를 재시작해야 합니다." msgctxt "@option:radio" msgid "Include UltiMaker account name" -msgstr "" +msgstr "UltiMaker 계정 이름 포함" msgctxt "@label" msgid "Infill" @@ -2300,10 +2129,6 @@ msgctxt "@info:tooltip" msgid "Left View" msgstr "왼쪽 보기" -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "레거시 Cura 프로파일 리더" - msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "개발자에게 문제를 알려주십시오." @@ -2384,10 +2209,6 @@ msgctxt "@title:groupbox" msgid "Logs" msgstr "로그" -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "충돌을 보고하는 리포터가 사용할 수 있도록 특정 이벤트를 기록합니다" - msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "프린터와의 연결이 끊어졌습니다" @@ -2396,10 +2217,6 @@ msgctxt "@action" msgid "Machine Settings" msgstr "기기 설정" -msgctxt "name" -msgid "Machine Settings Action" -msgstr "컴퓨터 설정 작업" - msgctxt "@backuplist:label" msgid "Machines" msgstr "기기" @@ -2416,10 +2233,6 @@ msgctxt "@item:inlistbox" msgid "Makerbot Printfile" msgstr "Makerbot 프린트파일" -msgctxt "name" -msgid "Makerbot Printfile Writer" -msgstr "Makerbot 프린트파일 작성기" - msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "MakerbotWriter가 지정된 경로에 저장할 수 없습니다." @@ -2476,14 +2289,6 @@ msgctxt "@text" msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." msgstr "여기서 UltiMaker Cura 플러그인 및 재료 프로파일을 관리하십시오. 플러그인을 최신 상태로 유지하고 설정을 정기적으로 백업하십시오." -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "응용 프로그램의 확장을 관리하고 UltiMaker 웹 사이트에서 확장을 검색할 수 있습니다." - -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "UltiMaker 네트워크 연결 프린터에 대한 네트워크 연결을 관리합니다." - msgctxt "@label" msgid "Manufacturer" msgstr "제조업체" @@ -2496,10 +2301,6 @@ msgctxt "@label" msgid "Marketplace" msgstr "시장" -msgctxt "name" -msgid "Marketplace" -msgstr "마켓플레이스" - msgctxt "@action:label" msgid "Material" msgstr "재료" @@ -2516,10 +2317,6 @@ msgctxt "@label:listbox" msgid "Material Color" msgstr "재료 색상" -msgctxt "name" -msgid "Material Profiles" -msgstr "재료 프로파일" - msgctxt "@label" msgid "Material Type" msgstr "재료 유형" @@ -2564,10 +2361,6 @@ msgctxt "@action:label" msgid "Mode" msgstr "종류" -msgctxt "name" -msgid "Model Checker" -msgstr "모델 검사기" - msgctxt "@info:title" msgid "Model Errors" msgstr "모델 에러" @@ -2584,10 +2377,6 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "모니터" -msgctxt "name" -msgid "Monitor Stage" -msgstr "모니터 단계" - msgctxt "@action:button" msgid "Monitor print" msgstr "프린트 모니터링" @@ -2661,7 +2450,6 @@ msgctxt "@info:title" msgid "Network error" msgstr "네트워크 오류" -#, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" msgstr "안정적인 신규 %s 펌웨어를 사용할 수 있습니다" @@ -2674,7 +2462,6 @@ msgctxt "@label" msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." msgstr "새 UltiMaker 프린터를 Digital Factory에 연결하여 원격으로 모니터링할 수 있습니다." -#, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." msgstr "사용자의 {machine_name}에서 새로운 기능 또는 버그 수정 사항을 사용할 수 있습니다! 완료하지 않은 경우 프린터의 펌웨어를 버전 {latest_version}으로 업데이트하는 것이 좋습니다." @@ -2720,7 +2507,6 @@ msgctxt "@label" msgid "No cost estimation available" msgstr "비용 추산 이용 불가" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "{0}(으)로 가져올 사용자 정의 프로파일이 없습니다" @@ -2759,7 +2545,7 @@ msgstr "현재 필터로는 결과를 찾을 수 없음" msgctxt "@label" msgid "No specific value has been set" -msgstr "" +msgstr "특정 값이 설정되지 않았습니다" msgctxt "@label" msgid "No time estimation available" @@ -2857,14 +2643,13 @@ msgctxt "@label" msgid "Only Show Top Layers" msgstr "상단 레이어 만 표시" -#, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "한 번에 하나의 G-코드 파일만 로드 할 수 있습니다. {0} 가져 오기를 건너 뛰었습니다." msgctxt "@message" msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." -msgstr "" +msgstr "죄송합니다. 슬라이싱 과정 도중 예상치 못한 오류가 발생했습니다. 다만, 기본 설정에서 데이터 공유를 비활성화하지 않았다면 분석을 위한 충돌 로그가 자동으로 수신되니 안심하세요. 도움을 주시려면 문제 추적기에 프로젝트 세부 정보를 공유해 주세요." msgctxt "@action:button" msgid "Open" @@ -2896,11 +2681,11 @@ msgstr "프로젝트 파일 열기" msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Open Universal Cura Project (UCP)" -msgstr "" +msgstr "범용 Cura 프로젝트(UCP) 열기" msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Open Universal Cura Project (UCP) file" -msgstr "" +msgstr "범용 Cura 프로젝트(UCP) 파일 열기" msgctxt "@action:label" msgid "Open With" @@ -2908,7 +2693,7 @@ msgstr "다음으로 열기" msgctxt "@action:button" msgid "Open as UCP" -msgstr "" +msgstr "UCP로 열기" msgctxt "@action:button" msgid "Open as project" @@ -3030,10 +2815,6 @@ msgctxt "@label" msgid "Per Model Settings" msgstr "모델 별 설정" -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "모델 별 설정 도구" - msgid "Perspective" msgstr "원근" @@ -3070,13 +2851,8 @@ msgid "Please give the required permissions when authorizing this application." msgstr "이 응용 프로그램을 인증할 때 필요한 권한을 제공하십시오." msgctxt "@info" -msgid "" -"Please make sure your printer has a connection:\n" -"- Check if the printer is turned on.\n" -"- Check if the printer is connected to the network.\n" -"- Check if you are signed in to discover cloud-connected printers." -msgstr "" -"프린터에 연결이 있는지 확인하십시오.⏎- 프린터가 켜져 있는지 확인하십시오.\n" +msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." +msgstr "프린터에 연결이 있는지 확인하십시오.⏎- 프린터가 켜져 있는지 확인하십시오." "- 프린터가 네트워크에 연결되어 있는지 확인하십시오.⏎- 클라우드로 연결된 프린터를 탐색할 수 있도록 로그인되어 있는지 확인하십시오." msgctxt "@text" @@ -3104,15 +2880,10 @@ msgid "Please remove the print" msgstr "프린트물을 제거하십시오" msgctxt "@info:status" -msgid "" -"Please review settings and check if your models:\n" -"- Fit within the build volume\n" -"- Are assigned to an enabled extruder\n" -"- Are not all set as modifier meshes" -msgstr "" -"설정을 검토하고 모델이 다음 사항에 해당하는지 확인하십시오.\n" -"- 출력 사이즈 내에 맞춤화됨\n" -"- 활성화된 익스트루더로 할당됨\n" +msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" +msgstr "설정을 검토하고 모델이 다음 사항에 해당하는지 확인하십시오." +"- 출력 사이즈 내에 맞춤화됨" +"- 활성화된 익스트루더로 할당됨" "- 수정자 메쉬로 전체 설정되지 않음" msgctxt "@label" @@ -3125,7 +2896,7 @@ msgstr "UltiMaker Cura Enterprise용으로 검증된 플러그인 및 재료를 msgctxt "@info:tooltip" msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." -msgstr "" +msgstr "비익명 데이터 전송을 허용하려면 UltiMaker 계정에 로그인해 주세요." msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." @@ -3167,10 +2938,6 @@ msgctxt "@item:inmenu" msgid "Post Processing" msgstr "후 처리" -msgctxt "name" -msgid "Post Processing" -msgstr "후처리" - msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "후처리 플러그인" @@ -3187,10 +2954,6 @@ msgctxt "@item:inmenu" msgid "Prepare" msgstr "준비" -msgctxt "name" -msgid "Prepare Stage" -msgstr "준비 단계" - msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "준비 중..." @@ -3211,10 +2974,6 @@ msgctxt "@item:inmenu" msgid "Preview" msgstr "미리 보기" -msgctxt "name" -msgid "Preview Stage" -msgstr "미리 보기 단계" - msgctxt "@tooltip" msgid "Prime Tower" msgstr "프라임 타워" @@ -3413,7 +3172,6 @@ msgctxt "@title:column" msgid "Profile settings" msgstr "프로파일 설정" -#, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "프로파일 {0}에 알 수 없는 파일 유형이 있거나 손상되었습니다." @@ -3438,22 +3196,18 @@ msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "프로그래밍 언어" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "프로젝트 파일 {0}에 알 수 없는 기기 유형 {1}이(가) 포함되어 있습니다. 기기를 가져올 수 없습니다. 대신 모델을 가져옵니다." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "프로젝트 파일 {0}이 손상됨: {1}." -#, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." msgstr "프로젝트 파일 {0}이(가) 이 버전의 UltiMaker Cura에서 확인할 수 없는 프로파일을 사용하였습니다." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "프로젝트 파일 {0}에 갑자기 접근할 수 없습니다: {1}." @@ -3462,147 +3216,42 @@ msgctxt "@label" msgid "Properties" msgstr "속성" -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "펌웨어 업데이트를 위한 기계 동작을 제공합니다." - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Cura에서 모니터 단계 제공." +msgctxt "@label" +msgid "PyQt version" +msgstr "PyQt 버전" -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "일반 솔리드 메쉬보기를 제공합니다." +msgctxt "@Label Description for application dependency" +msgid "Python Error tracking library" +msgstr "Python 오류 추적 라이브러리" -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Cura에서 준비 단계 제공." +msgctxt "@label Description for application dependency" +msgid "Python bindings for Clipper" +msgstr "Clipper용 Python 바인딩" -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Cura에서 미리 보기 단계를 제공합니다." +msgctxt "@label Description for application component" +msgid "Python bindings for libnest2d" +msgstr "libnest2d용 Python 바인딩" -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "기계 설정 (예 : 빌드 볼륨, 노즐 크기 등)을 변경하는 방법을 제공합니다." +msgctxt "@label" +msgid "Qt version" +msgstr "Qt 버전" -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "XML 기반 재료 프로파일을 읽고 쓸 수있는 기능을 제공합니다." +msgctxt "@info:status" +msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." +msgstr "'{0}' 품질 타입은 현재 활성 기기 정의 '{1}'와(과) 호환되지 않습니다." -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Ultimaker 기계에 대한 기계 작동 제공(예 : 침대 수평 조정 마법사, 업그레이드 선택 등)" +msgctxt "@info:title" +msgid "Queue Full" +msgstr "대기열 가득 참" -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "이동식 드라이브를 제공합니다." - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Cura 프로파일 내보내기 지원을 제공합니다." - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Cura 프로파일 가져 오기 지원을 제공합니다." - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "G-코드 파일에서 프로파일 가져 오기를 지원합니다." - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "레거시 Cura 버전에서 프로파일 가져 오기를 지원합니다." - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "3MF 파일 읽기 지원." - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "AMF 파일 읽기가 지원됩니다." - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Ultimaker 포맷 패키지 읽기를 지원합니다." - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "X3D 파일을 읽을 수 있도록 지원합니다." - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "모델 파일 읽기 기능을 제공합니다." - -msgctxt "description" -msgid "Provides support for writing 3MF and UCP files." -msgstr "" - -msgctxt "description" -msgid "Provides support for writing MakerBot Format Packages." -msgstr "MakerBot 포맷 패키지 작성을 지원합니다." - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Ultimaker 포맷 패키지 작성을 지원합니다." - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "모델 별 설정을 제공합니다." - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "엑스레이 뷰를 제공합니다." - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "CuraEngine 슬라이스 백엔드 링크를 제공합니다." - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "슬라이스된 레이어 데이터의 미리보기를 제공합니다." - -msgctxt "@label" -msgid "PyQt version" -msgstr "PyQt 버전" - -msgctxt "@Label Description for application dependency" -msgid "Python Error tracking library" -msgstr "Python 오류 추적 라이브러리" - -msgctxt "@label Description for application dependency" -msgid "Python bindings for Clipper" -msgstr "Clipper용 Python 바인딩" - -msgctxt "@label Description for application component" -msgid "Python bindings for libnest2d" -msgstr "libnest2d용 Python 바인딩" - -msgctxt "@label" -msgid "Qt version" -msgstr "Qt 버전" - -#, python-brace-format -msgctxt "@info:status" -msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." -msgstr "'{0}' 품질 타입은 현재 활성 기기 정의 '{1}'와(과) 호환되지 않습니다." - -msgctxt "@info:title" -msgid "Queue Full" -msgstr "대기열 가득 참" - -msgctxt "@label" -msgid "Queued" -msgstr "대기 중" +msgctxt "@label" +msgid "Queued" +msgstr "대기 중" msgctxt "@info:button, %1 is the application name" msgid "Quit %1" msgstr "%1 종료" -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "압축 된 아카이브로 부터 g-code를 읽습니다." - msgctxt "@button" msgid "Recommended" msgstr "추천" @@ -3655,10 +3304,6 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "이동식 드라이브" -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "이동식 드라이브 출력 장치 플러그인" - msgctxt "@action:button" msgid "Remove" msgstr "제거" @@ -3781,11 +3426,11 @@ msgstr "Cura 프로젝트 저장하기" msgctxt "@option" msgid "Save Cura project and .makerbot print file" -msgstr "" +msgstr "Cura 프로젝트 및 .makerbot 출력 파일 저장" msgctxt "@option" msgid "Save Cura project and .ufp print file" -msgstr "" +msgstr "Cura 프로젝트 및 .ufp 출력 파일 저장" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3813,7 +3458,7 @@ msgstr "새 프로필 저장" msgctxt "@action:button" msgid "Save project" -msgstr "" +msgstr "프로젝트 저장" msgctxt "@text" msgid "Save the .umm file on a USB stick." @@ -3823,12 +3468,10 @@ msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "이동식 드라이브에 저장" -#, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "이동식 드라이브 {0}에 저장" -#, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "이동식 드라이브 {0}에 {1}로 저장되었습니다." @@ -3837,7 +3480,6 @@ msgctxt "@info:title" msgid "Saving" msgstr "저장" -#, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "이동식 드라이브 {0}에 저장" @@ -3920,15 +3562,15 @@ msgstr "충돌 보고서를 UltiMaker에 보내기" msgctxt "@info:tooltip" msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." -msgstr "" +msgstr "등록된 UltiMaker 계정 이름 및 프로젝트 이름을 포함한 충돌 보고를 UltiMaker Sentry에 전송합니다. 실제 모델 데이터는 전송되지 않습니다." msgctxt "@info:tooltip" msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." -msgstr "" +msgstr "개인 식별 정보 또는 모델 데이터를 제외한 충돌 보고를 UltiMaker에 전송합니다." msgctxt "@option:check" msgid "Send engine crash reports" -msgstr "" +msgstr "엔진 충돌 보고 전송" msgctxt "@action:button" msgid "Send report" @@ -3942,10 +3584,6 @@ msgctxt "@info:title" msgid "Sending materials to printer" msgstr "재료를 프린터로 전송 중" -msgctxt "name" -msgid "Sentry Logger" -msgstr "보초 로거" - msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "직렬 통신 라이브러리" @@ -3984,7 +3622,7 @@ msgstr "설정" msgctxt "@action:label" msgid "Settings Loaded from UCP file" -msgstr "" +msgstr "UCP 파일에서 불러온 설정" msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" @@ -4056,7 +3694,7 @@ msgstr "데스크톱 또는 외부 애플리케이션의 파일을 동일한 Cur msgctxt "@info:tooltip" msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." -msgstr "" +msgstr "슬라이싱 충돌이 발생하면 Ultimaker에 자동으로 보고해야 하나요? 사용자가 명시적으로 권한을 부여하지 않는 한 모델, IP 주소 또는 기타 개인 식별 정보는 전송되거나 저장되지 않습니다." msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" @@ -4116,7 +3754,7 @@ msgstr "충돌 리포트 보기" msgctxt "@action:button" msgid "Show settings" -msgstr "" +msgstr "설정 표시" msgctxt "@option:check" msgid "Show summary dialog when saving project" @@ -4154,10 +3792,6 @@ msgctxt "@label" msgid "Sign in to the UltiMaker platform" msgstr "UltiMaker 플랫폼에 로그인" -msgctxt "name" -msgid "Simulation View" -msgstr "시뮬레이션 뷰" - msgctxt "@tooltip" msgid "Skin" msgstr "스킨" @@ -4186,10 +3820,6 @@ msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "설정이 변경되면 자동으로 슬라이싱 합니다." -msgctxt "name" -msgid "Slice info" -msgstr "슬라이스 정보" - msgctxt "@message:title" msgid "Slicing failed" msgstr "슬라이싱 실패" @@ -4204,24 +3834,15 @@ msgstr "스무딩(smoothing)" msgctxt "@label" msgid "Solid" -msgstr "" - -msgctxt "name" -msgid "Solid View" -msgstr "솔리드 뷰" +msgstr "솔리드" msgctxt "@item:inmenu" msgid "Solid view" msgstr "솔리드 뷰" msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "" -"일부 숨겨진 설정은 일반적인 계산 값과 다른 값을 사용합니다.\n" -"\n" +msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." +msgstr "일부 숨겨진 설정은 일반적인 계산 값과 다른 값을 사용합니다." "이 설정을 표시하려면 클릭하십시오." msgctxt "@info:status" @@ -4237,13 +3858,8 @@ msgid "Some setting-values defined in %1 were overridden." msgstr "%1에 정의된 일부 설정 값이 재정의되었습니다." msgctxt "@tooltip" -msgid "" -"Some setting/override values are different from the values stored in the profile.\n" -"\n" -"Click to open the profile manager." -msgstr "" -"일부 설정/대체 값은 프로파일에 저장된 값과 다릅니다.\n" -"\n" +msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." +msgstr "일부 설정/대체 값은 프로파일에 저장된 값과 다릅니다." "프로파일 매니저를 열려면 클릭하십시오." msgctxt "@action:label" @@ -4314,10 +3930,6 @@ msgctxt "@label" msgid "Strength" msgstr "강도" -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "익명의 슬라이스 정보를 제출하십시오. 환경 설정을 통해 비활성화 할 수 있습니다." - msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "재료를 성공적으로 내보냈습니다" @@ -4326,18 +3938,17 @@ msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "재료를 성공적으로 가져왔습니다" -#, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "프로파일 {0}을(를) 성공적으로 가져왔습니다." msgctxt "@action:label" msgid "Suggested Material settings" -msgstr "" +msgstr "추천 재료 설정" msgctxt "@action:label" msgid "Suggested Profile settings" -msgstr "" +msgstr "추천 프로필 설정" msgctxt "@action:title" msgid "Summary - Cura Project" @@ -4345,11 +3956,11 @@ msgstr "요약 - Cura 프로젝트" msgctxt "@action:title Don't translate 'Universal Cura Project'" msgid "Summary - Open Universal Cura Project (UCP)" -msgstr "" +msgstr "요약 - 범용 Cura 프로젝트(UCP) 열기" msgctxt "@action:title Don't translate 'Universal Cura Project'" msgid "Summary - Universal Cura Project" -msgstr "" +msgstr "요약 - 범용 Cura 프로젝트" msgctxt "@label" msgid "Support" @@ -4363,10 +3974,6 @@ msgctxt "@label" msgid "Support Blocker" msgstr "서포트 차단기" -msgctxt "name" -msgid "Support Eraser" -msgstr "서포트 지우개" - msgctxt "@tooltip" msgid "Support Infill" msgstr "내부채움 서포트" @@ -4532,7 +4139,6 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "서포트 프린팅에 사용할 익스트루더. 이것은 다중 압출에 사용됩니다." -#, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "파일 {0}이 이미 있습니다. 덮어 쓰시겠습니까?" @@ -4595,21 +4201,10 @@ msgid "The nozzle inserted in this extruder." msgstr "이 익스트루더에 삽입 된 노즐." msgctxt "@label" -msgid "" -"The pattern of the infill material of the print:\n" -"\n" -"For quick prints of non functional model choose line, zig zag or lightning infill.\n" -"\n" -"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" -"\n" -"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "" -"프린트의 인필 재료 패턴:\n" -"\n" -"비기능성 모델을 빠르게 프린트하려면 선, 지그재그 또는 라이트닝 인필을 선택합니다.\n" -"\n" -"많은 응력을 받지 않는 기능성 부품의 경우 그리드 또는 삼각형 또는 삼-육각형을 사용하는 것이 좋습니다.\n" -"\n" +msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "프린트의 인필 재료 패턴:" +"비기능성 모델을 빠르게 프린트하려면 선, 지그재그 또는 라이트닝 인필을 선택합니다." +"많은 응력을 받지 않는 기능성 부품의 경우 그리드 또는 삼각형 또는 삼-육각형을 사용하는 것이 좋습니다." "여러 방향에서 높은 강도를 요구하는 기능성 3D 객체의 경우에는 큐빅, 세분된 큐빅, 쿼터 큐빅, 옥텟 및 자이로이드를 사용합니다." msgctxt "@info:tooltip" @@ -4730,7 +4325,7 @@ msgstr "%1이(가) 인식되지 않기 때문에 이 구성을 사용할 수 없 msgctxt "@text:window" msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" -msgstr "" +msgstr "Cura 범용 프로젝트 파일입니다. Cura 프로젝트 또는 Cura 범용 프로젝트로 열거나 파일에서 모델을 가져오시겠습니까?" msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" @@ -4765,7 +4360,6 @@ msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "이 프린터는 %1개 프린터 그룹의 호스트입니다." -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "프로파일 {0}에는 정확하지 않은 데이터가 포함되어 있으므로, 불러올 수 없습니다." @@ -4779,13 +4373,8 @@ msgid "This project contains materials or plugins that are currently not install msgstr "이 프로젝트에는 현재 Cura에 설치되지 않은 재료 또는 플러그인이 포함되어 있습니다.
                                      누락된 패키지를 설치하고 프로젝트를 다시 엽니다." msgctxt "@label" -msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." -msgstr "" -"이 설정에는 프로파일과 다른 값이 있습니다.\n" -"\n" +msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." +msgstr "이 설정에는 프로파일과 다른 값이 있습니다." "프로파일 값을 복원하려면 클릭하십시오." msgctxt "@item:tooltip" @@ -4802,13 +4391,8 @@ msgid "This setting is always shared between all extruders. Changing it here wil msgstr "이 설정은 항상 모든 익스트루더 사이에 공유됩니다. 여기서 변경하면 모든 익스트루더에 대한 값이 변경됩니다." msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "" -"이 설정은 일반적으로 계산되지만 현재는 절대 값이 설정되어 있습니다.\n" -"\n" +msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." +msgstr "이 설정은 일반적으로 계산되지만 현재는 절대 값이 설정되어 있습니다." "계산 된 값을 복원하려면 클릭하십시오." msgctxt "@label" @@ -4821,11 +4405,11 @@ msgstr "이 설정은 충돌하는 압출기별 값으로 결정됩니다:" msgctxt "@tooltip Don't translate 'Universal Cura Project'" msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." -msgstr "" +msgstr "이 설정은 범용 Cura 프로젝트로 내보내는 동안 제대로 작동하지 않을 수 있으며, 사용자 책임하에 추가해야 합니다." msgctxt "@tooltip Don't translate 'Universal Cura Project'" msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." -msgstr "" +msgstr "이 설정은 범용 Cura 프로젝트로 내보내는 동안 제대로 작동하지 않을 수 있으며, 사용자 책임하에 추가해야 합니다." msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" @@ -4843,7 +4427,6 @@ msgctxt "@text" msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." msgstr "Digital Factory에 연결된 모든 프린터와 자동으로 재료 프로파일을 동기화하려면 Cura에 가입되어 있어야 합니다." -#, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "연결을 설정하려면 {website_link}에 방문하십시오." @@ -4856,7 +4439,6 @@ msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." msgstr "네트워크를 통해 프린터로 직접 프린팅하려면 네트워크 케이블을 사용하거나 프린터를 WIFI 네트워크에 연결하여 프린터가 네트워크에 연결되어 있는지 확인하십시오. Cura를 프린터에 연결하지 않은 경우에도 USB 드라이브를 사용하여 g-코드 파일을 프린터로 전송할 수 있습니다." -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "{printer_name}을(를) 영구적으로 제거하려면 {digital_factory_link}을(를) 방문하십시오." @@ -4905,10 +4487,6 @@ msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "적절한 데이터 또는 메타 데이터 없이 Cura 백업을 복원하려고 시도했습니다." -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh 리더" - msgctxt "@button" msgid "Troubleshooting" msgstr "문제 해결" @@ -4929,22 +4507,10 @@ msgctxt "@label" msgid "Type" msgstr "유형" -msgctxt "name" -msgid "UFP Reader" -msgstr "UFP 리더기" - -msgctxt "name" -msgid "UFP Writer" -msgstr "UFP 작성자" - msgctxt "@item:inmenu" msgid "USB printing" msgstr "USB 프린팅" -msgctxt "name" -msgid "USB printing" -msgstr "USB 프린팅" - msgctxt "@button" msgid "UltiMaker Account" msgstr "UltiMaker 계정" @@ -4961,10 +4527,6 @@ msgctxt "@item:inlistbox" msgid "UltiMaker Format Package" msgstr "UltiMaker 포맷 패키지" -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "UltiMaker 네트워크 연결" - msgctxt "@info" msgid "UltiMaker Verified Package" msgstr "UltiMaker 검증된 패키지" @@ -4973,10 +4535,6 @@ msgctxt "@info" msgid "UltiMaker Verified Plug-in" msgstr "UltiMaker 검증된 플러그인" -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "UltiMaker 기기 동작" - msgctxt "@button" msgid "UltiMaker printer" msgstr "UltiMaker 프린터" @@ -4989,10 +4547,6 @@ msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "UltiMaker 디지털 라이브러리" - msgctxt "@info:status" msgid "Unable to add the profile." msgstr "프로파일을 추가할 수 없습니다." @@ -5001,18 +4555,13 @@ msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "모든 개체가 출력할 수 있는 최대 사이즈 내에 위치할 수 없습니다" -#, python-brace-format msgctxt "@info:plugin_failed" msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" msgstr "{self._plugin_id}에 대한 로컬 EnginePlugin 서버 실행 파일을 찾을 수 없습니다." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Unable to kill running EnginePlugin: {self._plugin_id}\n" -"Access is denied." -msgstr "" -"실행 중인 EnginePlugin을 종료할 수 없습니다. {self._plugin_id}\n" +msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." +msgstr "실행 중인 EnginePlugin을 종료할 수 없습니다. {self._plugin_id}" "접속이 거부되었습니다." msgctxt "@info" @@ -5035,12 +4584,10 @@ msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "프라임 타워 또는 위치가 유효하지 않아 슬라이스 할 수 없습니다." -#, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "비활성화된 익스트루더 %s(와)과 연결된 개체가 있기 때문에 슬라이스할 수 없습니다." -#, python-brace-format msgctxt "@info:status" msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" msgstr "일부 모델별 설정으로 인해 슬라이스할 수 없습니다. 하나 이상의 모델에서 다음 설정에 오류가 있습니다. {error_labels}" @@ -5049,7 +4596,6 @@ msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "선택한 소재 또는 구성과 호환되지 않기 때문에 현재 소재로 슬라이스 할 수 없습니다." -#, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "현재 설정으로 슬라이스 할 수 없습니다. 다음 설정에는 오류가 있습니다 : {0}" @@ -5058,10 +4604,9 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "새 로그인 작업을 시작할 수 없습니다. 다른 로그인 작업이 진행 중인지 확인하십시오." -#, python-brace-format msgctxt "@info:error" msgid "Unable to write to file: {0}" -msgstr "" +msgstr "파일에 쓰기 불가: {0}" msgctxt "@label:status" msgid "Unavailable" @@ -5085,11 +4630,11 @@ msgstr "단위" msgctxt "@item:inlistbox" msgid "Universal Cura Project" -msgstr "" +msgstr "범용 Cura 프로젝트" msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." -msgstr "" +msgstr "범용 Cura 프로젝트 파일은 위치 데이터 및 선택된 설정을 유지한 채 여러 3D 프린터에서 출력할 수 있습니다. 파일을 내보낼 때 빌드 플레이트의 모든 모델이 현재 위치, 방향, 크기와 함께 포함됩니다. 적절한 출력을 위해 포함할 압출기별 또는 모델별 설정을 선택할 수도 있습니다." msgctxt "@label Description for development tool" msgid "Universal build system configuration" @@ -5111,7 +4656,6 @@ msgctxt "@label:property" msgid "Unknown Package" msgstr "알 수 없는 패키지" -#, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "프린트 작업 업로드 시 알 수 없는 오류 코드: {0}" @@ -5176,265 +4720,49 @@ msgctxt "@button" msgid "Updating..." msgstr "업데이트 중" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Cura 2.1에서 Cura 2.2로 구성을 업그레이드합니다." +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "사용자 정의 펌웨어 업로드" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Cura 2.2에서 Cura 2.4로 구성을 업그레이드합니다." +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "프린트 작업을 프린터로 업로드하고 있습니다." -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Cura 2.5에서 Cura 2.6으로 구성을 업그레이드합니다." +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "백업 업로드 중..." -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Cura 2.6에서 Cura 2.7로 구성을 업그레이드합니다." +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "Cura의 단일 인스턴스 사용" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Cura 2.7에서 Cura 3.0으로 구성을 업그레이드합니다." +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "더 나은 접착력을 위해 이 재료 조합과 함께 접착제를 사용하십시오.." -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Cura 3.0에서 Cura 3.1로 구성을 업그레이드합니다." +msgctxt "@label" +msgid "User Agreement" +msgstr "사용자 계약" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Cura 3.2에서 Cura 3.3으로 구성을 업그레이드합니다." +msgctxt "@label Description for application dependency" +msgid "Utility functions, including an image loader" +msgstr "이미지 로더를 포함한 유틸리티 기능" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Cura 3.3에서 Cura 3.4로 구성을 업그레이드합니다." +msgctxt "@label Description for application dependency" +msgid "Utility library, including Voronoi generation" +msgstr "Voronoi 세대를 포함한 유틸리티 라이브러리" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Cura 3.4에서 Cura 3.5로 구성을 업그레이드합니다." +msgctxt "@title:column" +msgid "Value" +msgstr "값" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Cura 3.5에서 Cura 4.0으로 구성을 업그레이드합니다." +msgctxt "@button" +msgid "View printers in Digital Factory" +msgstr "Digital Factory에서 프린터 보기" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Cura 4.0에서 Cura 4.1로 구성을 업그레이드합니다." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Cura 4.1에서 Cura 4.2로 구성을 업그레이드합니다." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Cura 4.11에서 Cura 4.12로 구성을 업그레이드합니다." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Cura 4.13에서 Cura 5.0으로 구성을 업그레이드합니다." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Cura 4.2에서 Cura 4.3으로 구성을 업그레이드합니다." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Cura 4.3에서 Cura 4.4로 구성을 업그레이드합니다." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Cura 4.4에서 Cura 4.5로 구성을 업그레이드합니다." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Cura 4.5에서 Cura 4.6으로 구성을 업그레이드합니다." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Cura 4.6.0에서 Cura 4.6.2로 구성을 업그레이드합니다." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Cura 4.6.2에서 Cura 4.7로 구성을 업그레이드합니다." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Cura 4.7에서 Cura 4.8로 구성을 업그레이드합니다." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Cura 4.8에서 Cura 4.9로 구성을 업그레이드합니다." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Cura 4.9에서 Cura 4.10으로 구성을 업그레이드합니다." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Cura 5.2에서 Cura 5.3으로 구성을 업그레이드합니다." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Cura 5.3에서 Cura 5.4로 구성을 업그레이드합니다." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Cura 5.4에서 Cura 5.5로 구성을 업그레이드합니다." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." -msgstr "" - -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "사용자 정의 펌웨어 업로드" - -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "프린트 작업을 프린터로 업로드하고 있습니다." - -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "백업 업로드 중..." - -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Cura의 단일 인스턴스 사용" - -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "더 나은 접착력을 위해 이 재료 조합과 함께 접착제를 사용하십시오.." - -msgctxt "@label" -msgid "User Agreement" -msgstr "사용자 계약" - -msgctxt "@label Description for application dependency" -msgid "Utility functions, including an image loader" -msgstr "이미지 로더를 포함한 유틸리티 기능" - -msgctxt "@label Description for application dependency" -msgid "Utility library, including Voronoi generation" -msgstr "Voronoi 세대를 포함한 유틸리티 라이브러리" - -msgctxt "@title:column" -msgid "Value" -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "2.1에서 2.2로 버전 업그레이드" - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "2.2에서 2.4로 버전 업그레이드" - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "2.5에서 2.6으로 버전 업그레이드" - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "2.6에서 2.7으로 버전 업그레이드" - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "2.7에서 3.0으로 버전 업그레이드" - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "3.0에서 3.1로 버전 업그레이드" - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "3.2에서 3.3으로 버전 업그레이드" - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "버전 업그레이드 3.3에서 3.4" - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "3.4에서 3.5로 버전 업그레이드" - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "버전 업그레이드 3.5에서 4.0" - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "버전 업그레이드 4.0에서 4.1" - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "4.1에서 4.2로 버전 업그레이드" - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "4.11에서 4.12로 버전 업그레이드" - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "4.13에서 5.0으로 버전 업그레이드" - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "4.2에서 4.3로 버전 업그레이드" - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "4.3에서 4.4로 버전 업그레이드" - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "4.4에서 4.5로 버전 업그레이드" - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "4.5에서 4.6으로 버전 업그레이드" - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "4.6.0에서 4.6.2로 버전 업그레이드" - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "4.6.2에서 4.7로 버전 업그레이드" - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "4.7에서 4.8로 버전 업그레이드" - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "4.8에서 4.9로 버전 업그레이드" - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "4.9에서 4.10으로 버전 업그레이드" - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "5.2에서 5.3으로 버전 업그레이드" - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "5.3에서 5.4로 버전 업그레이드" - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "5.4에서 5.5로 버전 업그레이드" - -msgctxt "name" -msgid "Version Upgrade 5.6 to 5.7" -msgstr "" - -msgctxt "@button" -msgid "View printers in Digital Factory" -msgstr "Digital Factory에서 프린터 보기" - -msgctxt "@label" -msgid "View type" -msgstr "유형 보기" +msgctxt "@label" +msgid "View type" +msgstr "유형 보기" msgctxt "@label link to technical assistance" msgid "View user manuals online" @@ -5480,7 +4808,6 @@ msgctxt "@info:title" msgid "Warning" msgstr "경고" -#, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "경고: 프로파일은 '{0}' 품질 타입을 현재 구성에 이용할 수 없기 때문에 찾을 수 없습니다. 이 품질 타입을 사용할 수 있는 재료/노즐 조합으로 전환하십시오." @@ -5507,7 +4834,7 @@ msgstr "어떤 프린터를 설정하시겠습니까?" msgctxt "@info:tooltip" msgid "What type of camera navigation should be used?" -msgstr "" +msgstr "어떤 유형의 카메라 탐색을 사용해야 하나요?" msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" @@ -5545,14 +4872,6 @@ msgctxt "@action:label" msgid "Width (mm)" msgstr "너비 (mm)" -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "압축 된 아카이브에 g-code를 씁니다." - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "G Code를 파일에 씁니다." - msgctxt "@label" msgid "X (Width)" msgstr "X (너비)" @@ -5565,10 +4884,6 @@ msgctxt "@label" msgid "X min" msgstr "X 최소값" -msgctxt "name" -msgid "X-Ray View" -msgstr "엑스레이 뷰" - msgctxt "@item:inlistbox" msgid "X-Ray view" msgstr "엑스레이 뷰" @@ -5581,10 +4896,6 @@ msgctxt "@item:inlistbox" msgid "X3D File" msgstr "X3D 파일" -msgctxt "name" -msgid "X3D Reader" -msgstr "X3D 리더" - msgctxt "@label" msgid "Y (Depth)" msgstr "Y (깊이)" @@ -5602,30 +4913,19 @@ msgid "Yes" msgstr "예" msgctxt "@label" -msgid "" -"You are about to remove all printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr "" -"Cura에서 모든 프린터를 제거하려고 합니다. 이 작업은 실행 취소할 수 없습니다. \n" +msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgstr "Cura에서 모든 프린터를 제거하려고 합니다. 이 작업은 실행 취소할 수 없습니다. " "정말로 계속하시겠습니까?" -#, python-brace-format msgctxt "@label" -msgid "" -"You are about to remove {0} printer from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgid_plural "" -"You are about to remove {0} printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr[0] "" -"Cura에서 {0} 프린터를 제거하려고 합니다. 이 작업은 실행 취소할 수 없습니다. \n" -"정말로 계속하시겠습니까?" +msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgstr[0] "Cura에서 {0} 프린터를 제거하려고 합니다. 이 작업은 실행 취소할 수 없습니다. \n정말로 계속하시겠습니까?" msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "UltiMaker Connect를 실행하지 않는 프린터에 연결하려 합니다. 프린터를 최신 펌웨어로 업데이트해 주십시오." -#, python-brace-format msgctxt "@info:status" msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." msgstr "연결 시도 중인 {0}이(가) 그룹의 호스트가 아닙니다. 웹 페이지에서 그룹 호스트로 설정할 수 있습니다." @@ -5636,9 +4936,8 @@ msgstr "현재 백업이 없습니다. ‘지금 백업’ 버튼을 사용하 msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "" -"일부 프로파일 설정을 사용자 정의했습니다.\n" -"프로파일 전환 후에도 변경된 설정을 유지하시겠습니까?\n" +msgstr "일부 프로파일 설정을 사용자 정의했습니다." +"프로파일 전환 후에도 변경된 설정을 유지하시겠습니까?" "또는 변경 사항을 버리고 '%1'에서 기본값을 로드할 수 있습니다." msgctxt "@label" @@ -5669,13 +4968,9 @@ msgctxt "@info" msgid "Your new printer will automatically appear in Cura" msgstr "새 프린터가 Cura에 자동으로 나타납니다." -#, python-brace-format msgctxt "@info:status" -msgid "" -"Your printer {printer_name} could be connected via cloud.\n" -" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "" -"Your printer {printer_name} could be connected via cloud.\n" +msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "Your printer {printer_name} could be connected via cloud." " Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" msgctxt "@label" @@ -5724,7 +5019,7 @@ msgstr "mm" msgctxt "@label" msgid "s" -msgstr "" +msgstr "s" msgctxt "@info:status" msgid "today" @@ -5738,7 +5033,6 @@ msgctxt "@label" msgid "version: %1" msgstr "버전: %1" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "다음 계정 동기화 시까지 {printer_name}이(가) 제거됩니다." @@ -5747,21 +5041,553 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "{}개의 플러그인을 다운로드하지 못했습니다" -#~ msgctxt "@label" -#~ msgid "Default" -#~ msgstr "기본값" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "UltiMaker 네트워크 프린터에 대한 네트워크 연결을 관리합니다." + +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "UltiMaker 네트워크 연결" -#~ msgid "Provides support for exporting Cura profiles." -#~ msgstr "Cura 프로필 내보내기를 지원합니다." +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "G-코드 파일에서 프로파일 가져 오기를 지원합니다." -#~ msgctxt "description" -#~ msgid "Provides support for writing 3MF files." -#~ msgstr "3MF 파일 작성 지원을 제공합니다." +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "GCode 프로파일 리더기" -#~ msgctxt "@option" -#~ msgid "Save Cura project and print file" -#~ msgstr "Cura 프로젝트 저장하고 파일 프린팅하기" +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "일반 솔리드 메쉬보기를 제공합니다." -#~ msgctxt "@message" -#~ msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -#~ msgstr "예기치 않은 오류로 인해 슬라이싱에 실패했습니다. 이슈 트래커에 버그를 보고하는 것을 고려하십시오." +msgctxt "name" +msgid "Solid View" +msgstr "솔리드 뷰" + +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "점진적으로 흐름을 평활화하여 높은 흐름 점프를 제한하는 CuraEngine 플러그인" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "3MF 파일 읽기 지원." + +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF 리더" + +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "G-코드를 수신하고 프린터로 보냅니다. 플러그인은 또한 펌웨어를 업데이트 할 수 있습니다." + +msgctxt "name" +msgid "USB printing" +msgstr "USB 프린팅" + +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "펌웨어 업데이트를 확인합니다." + +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "펌웨어 업데이트 검사기" + +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "응용 프로그램의 확장을 관리하고 UltiMaker 웹 사이트에서 확장을 검색할 수 있습니다." + +msgctxt "name" +msgid "Marketplace" +msgstr "마켓플레이스" + +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "구성을 백업하고 복원합니다." + +msgctxt "name" +msgid "Cura Backups" +msgstr "Cura 백업" + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "기계 설정 (예 : 빌드 볼륨, 노즐 크기 등)을 변경하는 방법을 제공합니다." + +msgctxt "name" +msgid "Machine Settings Action" +msgstr "컴퓨터 설정 작업" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Cura 2.5에서 Cura 2.6으로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "2.5에서 2.6으로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Cura 4.7에서 Cura 4.8로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "4.7에서 4.8로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Cura 4.4에서 Cura 4.5로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "4.4에서 4.5로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Cura 3.0에서 Cura 3.1로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "3.0에서 3.1로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Cura 4.11에서 Cura 4.12로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "4.11에서 4.12로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Cura 4.1에서 Cura 4.2로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "4.1에서 4.2로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Cura 2.6에서 Cura 2.7로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "2.6에서 2.7으로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Cura 4.6.0에서 Cura 4.6.2로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "4.6.0에서 4.6.2로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Cura 3.3에서 Cura 3.4로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "버전 업그레이드 3.3에서 3.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Cura 4.8에서 Cura 4.9로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "4.8에서 4.9로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Cura 4.5에서 Cura 4.6으로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "4.5에서 4.6으로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Cura 4.2에서 Cura 4.3으로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "4.2에서 4.3로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Cura 3.2에서 Cura 3.3으로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "3.2에서 3.3으로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Cura 4.3에서 Cura 4.4로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "4.3에서 4.4로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "Cura 5.6에서 Cura 5.7로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "5.6에서 5.7로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Cura 2.1에서 Cura 2.2로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "2.1에서 2.2로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Cura 5.3에서 Cura 5.4로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "5.3에서 5.4로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Cura 4.9에서 Cura 4.10으로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "4.9에서 4.10으로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Cura 2.7에서 Cura 3.0으로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "2.7에서 3.0으로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Cura 3.5에서 Cura 4.0으로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "버전 업그레이드 3.5에서 4.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Cura 5.2에서 Cura 5.3으로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "5.2에서 5.3으로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Cura 4.0에서 Cura 4.1로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "버전 업그레이드 4.0에서 4.1" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Cura 4.13에서 Cura 5.0으로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "4.13에서 5.0으로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Cura 3.4에서 Cura 3.5로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "3.4에서 3.5로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Cura 2.2에서 Cura 2.4로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "2.2에서 2.4로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Cura 4.6.2에서 Cura 4.7로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "4.6.2에서 4.7로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Cura 5.4에서 Cura 5.5로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "5.4에서 5.5로 버전 업그레이드" + +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "G-코드 파일을 로드하고 표시 할 수 있습니다." + +msgctxt "name" +msgid "G-code Reader" +msgstr "G-코드 리더" + +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "익명의 슬라이스 정보를 제출하십시오. 환경 설정을 통해 비활성화 할 수 있습니다." + +msgctxt "name" +msgid "Slice info" +msgstr "슬라이스 정보" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "이동식 드라이브를 제공합니다." + +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "이동식 드라이브 출력 장치 플러그인" + +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "특정 장소에서 서포트 프린팅을 막는 지우개 메쉬(eraser mesh)를 만듭니다" + +msgctxt "name" +msgid "Support Eraser" +msgstr "서포트 지우개" + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "가능한 프린팅 문제를 위해 모델 및 인쇄 구성을 확인하고 제안합니다." + +msgctxt "name" +msgid "Model Checker" +msgstr "모델 검사기" + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Cura에서 준비 단계 제공." + +msgctxt "name" +msgid "Prepare Stage" +msgstr "준비 단계" + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "슬라이스된 레이어 데이터의 미리보기를 제공합니다." + +msgctxt "name" +msgid "Simulation View" +msgstr "시뮬레이션 뷰" + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "AMF 파일 읽기가 지원됩니다." + +msgctxt "name" +msgid "AMF Reader" +msgstr "AMF 리더" + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "엑스레이 뷰를 제공합니다." + +msgctxt "name" +msgid "X-Ray View" +msgstr "엑스레이 뷰" + +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "펌웨어 업데이트를 위한 기계 동작을 제공합니다." + +msgctxt "name" +msgid "Firmware Updater" +msgstr "펌웨어 업데이터" + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "레거시 Cura 버전에서 프로파일 가져 오기를 지원합니다." + +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "레거시 Cura 프로파일 리더" + +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "후처리를 위해 사용자가 만든 스크립트를 허용하는 확장 프로그램" + +msgctxt "name" +msgid "Post Processing" +msgstr "후처리" + +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "충돌을 보고하는 리포터가 사용할 수 있도록 특정 이벤트를 기록합니다" + +msgctxt "name" +msgid "Sentry Logger" +msgstr "보초 로거" + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "MakerBot 포맷 패키지 작성을 지원합니다." + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "Makerbot 프린트파일 작성기" + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Cura 프로파일 가져 오기 지원을 제공합니다." + +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Cura 프로파일 리더" + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Ultimaker 포맷 패키지 읽기를 지원합니다." + +msgctxt "name" +msgid "UFP Reader" +msgstr "UFP 리더기" + +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "2D 이미지 파일에서 프린팅 가능한 지오메트리를 생성 할 수 있습니다." + +msgctxt "name" +msgid "Image Reader" +msgstr "이미지 리더" + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "CuraEngine 슬라이스 백엔드 링크를 제공합니다." + +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine 백엔드" + +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "압축 된 아카이브에 g-code를 씁니다." + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "압축 된 G 코드 작성기" + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Ultimaker 기계에 대한 기계 작동 제공(예 : 침대 수평 조정 마법사, 업그레이드 선택 등)" + +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "UltiMaker 기기 동작" + +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "압축 된 아카이브로 부터 g-code를 읽습니다." + +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "압축 된 G 코드 리더기" + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Cura에서 미리 보기 단계를 제공합니다." + +msgctxt "name" +msgid "Preview Stage" +msgstr "미리 보기 단계" + +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "디지털 라이브러리와 연결하여 Cura에서 디지털 라이브러리를 통해 파일을 열고 저장할 수 있도록 합니다." + +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "UltiMaker 디지털 라이브러리" + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Cura 프로파일 내보내기 지원을 제공합니다." + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura 프로파일 작성자" + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "X3D 파일을 읽을 수 있도록 지원합니다." + +msgctxt "name" +msgid "X3D Reader" +msgstr "X3D 리더" + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "모델 파일 읽기 기능을 제공합니다." + +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh 리더" + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Cura에서 모니터 단계 제공." + +msgctxt "name" +msgid "Monitor Stage" +msgstr "모니터 단계" + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "모델 별 설정을 제공합니다." + +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "모델 별 설정 도구" + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "XML 기반 재료 프로파일을 읽고 쓸 수있는 기능을 제공합니다." + +msgctxt "name" +msgid "Material Profiles" +msgstr "재료 프로파일" + +msgctxt "description" +msgid "Provides support for writing 3MF and UCP files." +msgstr "3MF 및 UCP 파일 쓰기를 지원합니다." + +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF 기록기" + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Ultimaker 포맷 패키지 작성을 지원합니다." + +msgctxt "name" +msgid "UFP Writer" +msgstr "UFP 작성자" + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "G Code를 파일에 씁니다." + +msgctxt "name" +msgid "G-code Writer" +msgstr "GCode 작성자" diff --git a/resources/i18n/ko_KR/fdmextruder.def.json.po b/resources/i18n/ko_KR/fdmextruder.def.json.po index 346df6b0133..c0b23fc49e4 100644 --- a/resources/i18n/ko_KR/fdmextruder.def.json.po +++ b/resources/i18n/ko_KR/fdmextruder.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,186 +12,114 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "고정" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "사용 된 필라멘트의 직경을 조정합니다. 이 값을 사용 필라멘트의 직경과 일치시킵니다." - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "빌드 플레이트 고정" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "직경" - -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "이 익스트루더에서 전환 시 실행할 G 코드를 종료하십시오." - msgctxt "extruder_nr label" msgid "Extruder" msgstr "익스트루더" +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." + +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "익스트루더 프린팅 냉각 팬" + +msgctxt "machine_extruder_cooling_fan_number description" +msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." +msgstr "이 익스트루더와 관련된 프린팅 냉각 팬의 개수. 각 익스트루더마다 다른 프린팅 냉각 팬이 있을 때만 기본값 0에서 변경하십시오." + msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "익스트루더 엔드 G 코드" +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "이 익스트루더에서 전환 시 실행할 G 코드를 종료하십시오." + msgctxt "machine_extruder_end_code_duration label" msgid "Extruder End G-Code Duration" -msgstr "" +msgstr "압출기 종료 G-코드 지속 시간" + +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "이 압출기에서 전환할 때 종료 G-코드를 실행하는 데 걸리는 시간입니다." msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "익스트루더 끝 절대 위치" +msgctxt "machine_extruder_end_pos_abs description" +msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." +msgstr "익스트루더가 헤드의 마지막으로 알려진 위치에 상대값이 아닌 절대 위치로 끝나도록 하십시오." + msgctxt "machine_extruder_end_pos_x label" msgid "Extruder End Position X" msgstr "익스트루더 끝 X 위치" +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "익스트루더를 끌 때 끝 위치의 x 좌표." + msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "익스트루더 끝 Y 위치" -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "익스트루더 프라임 X 위치" - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "익스트루더 프라임 Y 위치" - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "익스트루더 프라임 Z 위치" - -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "익스트루더 프린팅 냉각 팬" +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "익스트루더를 끌 때 종료 위치의 y 좌표." msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "익스트루더 스타트 G 코드" +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "이 익스트루더로 전환 시 실행할 G 코드를 시작하십시오." + msgctxt "machine_extruder_start_code_duration label" msgid "Extruder Start G-Code Duration" -msgstr "" +msgstr "압출기 시작 G-코드 지속 시간" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "이 압출기로 전환할 때 시작 G-코드를 실행하는 데 걸리는 시간입니다." msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "익스트루더 시작 위치의 절대 값" +msgctxt "machine_extruder_start_pos_abs description" +msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." +msgstr "익스트루더 시작 위치를 헤드의 마지막으로 알려진 위치에 상대적이 아닌 절대 위치로 만듭니다." + msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "익스트루더 시작 X의 위치" +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "익스트루더를 켤 때 시작 위치의 x 좌표." + msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "익스트루더 시작 위치 Y" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "기기" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "기기 세부 설정" - -msgctxt "machine_extruder_end_pos_abs description" -msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." -msgstr "익스트루더가 헤드의 마지막으로 알려진 위치에 상대값이 아닌 절대 위치로 끝나도록 하십시오." - -msgctxt "machine_extruder_start_pos_abs description" -msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." -msgstr "익스트루더 시작 위치를 헤드의 마지막으로 알려진 위치에 상대적이 아닌 절대 위치로 만듭니다." - -msgctxt "material description" -msgid "Material" -msgstr "재료" - -msgctxt "material label" -msgid "Material" -msgstr "재료" - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "노즐 직경" - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "노즐 ID" +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "익스트루더를 켤 때 시작 위치의 y 좌표." msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "노즐 X 오프셋" -msgctxt "machine_nozzle_offset_y label" -msgid "Nozzle Y Offset" -msgstr "노즐 Y 오프셋" - -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "이 익스트루더로 전환 시 실행할 G 코드를 시작하십시오." - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 X 좌표." - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 Y 좌표." - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 Z 좌표입니다." - -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "노즐의 내경. 비표준 노즐 크기를 사용할 때, 이 설정을 변경하십시오." - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "\"AA 0.4\"및 \"BB 0.8\"과 같은 익스트루더 트레인의 노즐 ID." - -msgctxt "machine_extruder_cooling_fan_number description" -msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." -msgstr "이 익스트루더와 관련된 프린팅 냉각 팬의 개수. 각 익스트루더마다 다른 프린팅 냉각 팬이 있을 때만 기본값 0에서 변경하십시오." - -msgctxt "machine_extruder_end_code_duration description" -msgid "The time it takes to execute the end g-code, when switching away from this extruder." -msgstr "" - -msgctxt "machine_extruder_start_code_duration description" -msgid "The time it'll take to execute the start g-code, when switching to this extruder." -msgstr "" - -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "익스트루더를 끌 때 끝 위치의 x 좌표." - msgctxt "machine_nozzle_offset_x description" msgid "The x-coordinate of the offset of the nozzle." msgstr "노즐 오프셋의 x 좌표." -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "익스트루더를 켤 때 시작 위치의 x 좌표." - -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "익스트루더를 끌 때 종료 위치의 y 좌표." +msgctxt "machine_nozzle_offset_y label" +msgid "Nozzle Y Offset" +msgstr "노즐 Y 오프셋" msgctxt "machine_nozzle_offset_y description" msgid "The y-coordinate of the offset of the nozzle." msgstr "노즐 오프셋의 y 좌표." - -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "익스트루더를 켤 때 시작 위치의 y 좌표." diff --git a/resources/i18n/ko_KR/fdmprinter.def.json.po b/resources/i18n/ko_KR/fdmprinter.def.json.po index ac5bd603dcd..9d84b463091 100644 --- a/resources/i18n/ko_KR/fdmprinter.def.json.po +++ b/resources/i18n/ko_KR/fdmprinter.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-12 15:10+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,5772 +12,5682 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -msgctxt "prime_tower_mode description" -msgid "How to generate the prime tower:
                                      • Normal: create a bucket in which secondary materials are primed
                                      • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
                                      " -msgstr "" - -msgctxt "brim_inside_margin description" -msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." -msgstr "" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "기기" -msgctxt "ironing_inset description" -msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." -msgstr "모델 브림에서 떨어서포트 않는 거리. 메쉬 브림까지 다림질하면 출력물의 브림가 고르지 않을 수 있습니다." +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "기기 세부 설정" -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "피더와 노즐 챔버 사이에 필라멘트가 압축되는 양을 나타내는 요소, 필라멘트 전환을 위해 재료를 움직이는 범위를 결정하는 데 사용됨." +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "기기 유형" -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "상단 표면 스킨 층이 선 또는 지그재그 패턴을 사용할 때 사용할 정수선 방향 리스트. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트은 대괄호로 묶여 있습니다. 기본값은 전통적인 기본 각도 (45도 및 135도)를 사용하는 빈 리스트입니다." +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "3D 프린터 모델의 이름." -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "상단/하단 레이어가 선 또는 지그재그 패턴을 사용할 때 사용할 방향 리스트입니다. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트는 대괄호 안에 들어 있습니다. 기본값은 빈 목록이고, 기본 각도(45도 및 135도)를 사용합니다." +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "기기 세부 설정 표시" -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "사용할 정수 선 방향 리스트입니다. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트는 대괄호 안에 들어 있습니다. 기본값은 빈 목록입니다. 즉 기본 각도인 0도를 사용합니다." +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "별도의 json 파일에 설명된 기기의 다양한 세부 설정을 표시할지 여부." -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "사용할 정수 선 방향 리스트입니다. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트는 대괄호 안에 들어 있습니다. 기본값은 빈 목록입니다. 즉 기본 각도인 0도를 사용합니다(인터페이스가 상당히 두껍거나 90도라면 45도와 135도를 번갈아 사용)." +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "시작 GCode" -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "사용할 정수 선 방향 리스트입니다. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트는 대괄호 안에 들어 있습니다. 기본값은 빈 목록입니다. 즉 기본 각도인 0도를 사용합니다(인터페이스가 상당히 두껍거나 90도라면 45도와 135도를 번갈아 사용)." +msgctxt "machine_start_gcode description" +msgid "G-code commands to be executed at the very start - separated by \n." +msgstr "시작과 동시에형실행될 G 코드 명령어 " +"." -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "사용할 정수 선 방향 리스트입니다. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트는 대괄호 안에 들어 있습니다. 기본값은 빈 목록입니다. 즉 기본 각도인 0도를 사용합니다(인터페이스가 상당히 두껍거나 90도라면 45도와 135도를 번갈아 사용)." +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "End GCode" -msgctxt "infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." -msgstr "사용할 라인 방향 리스트. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트은 대괄호 안에 들어 있습니다. 기본값은 기본 각도 (선 및 지그재그 패턴의 경우 45 및 135도, 다른 모든 패턴의 경우 45도)를 사용하는 빈 리스트입니다." +msgctxt "machine_end_gcode description" +msgid "G-code commands to be executed at the very end - separated by \n." +msgstr "맨 마지막에 실행될 G 코드 명령 " +"." -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "노즐이 위치할 수 없는 구역의 목록입니다." +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "재료 GUID" -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "프린팅 헤드가 위치할 수 없는 구역의 목록입니다." +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "재료의 GUID. 자동으로 설정됩니다." -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "브랜치가 서포트하는 지점에서 뻗어 나가는 거리에 대한 권장 사항입니다. 브랜치는 목적지(빌드 플레이트 또는 모델의 평평한 부분)에 도달하기 위해 이 값을 초과할 수 있습니다. 이 값을 낮추면 서포트가 더 견고해지지만, 브랜치의 양이 늘어나므로 재료 사용량/프린트 시간이 늘어납니다." +msgctxt "material_type label" +msgid "Material Type" +msgstr "재료 유형" -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "독립 익스트루더 프라임 포지션" +msgctxt "material_type description" +msgid "The type of material used." +msgstr "사용된 재료의 유형입니다." -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "어댑티브 레이어 최대 변화" +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "재료 브랜드" -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "어댑티브 레이어 지형 크기" +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "사용된 재료의 브랜드입니다." -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "어댑티브 레이어 변화 단계 크기" +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "직경" -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "어댑티브 레이어는 모델의 모양에 따라 레이어의 높이를 계산합니다." +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "사용 된 필라멘트의 직경을 조정합니다. 이 값을 사용 필라멘트의 직경과 일치시킵니다." -msgctxt "infill_wall_line_count description" -msgid "" -"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" -"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "" -"내부채움 영역 주변에 여분의 벽을 추가합니다. 이러한 벽은 상단/하단 스킨 라인이 늘어지는 것을 줄여줄 수 있습니다. 일부 여분 재료를 사용해도 같은 품질을 유지하는 데 필요한 필요한 상단/하단 스킨 층이 감소한다는 의미입니다.\n" -"이 기능을 올바르게 구성하는 경우 내부채움 다각형 연결과 함께 사용해 이동 또는 리트랙션없이 모든 내부채움을 단일 돌출 경로에 연결할 수 있습니다." +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "빌드 플레이트가 가열될 때까지 기다리십시오" -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "부착" +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "시작 시, 빌드 플레이트가 가열될 때까지 대기하라는 명령을 삽입할지 여부." -msgctxt "material_adhesion_tendency label" -msgid "Adhesion Tendency" -msgstr "점착 성항" +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "노즐이 가열될 때까지 기다리기" -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "벽과 스킨-센터라인(종점) 사이의 겹침 양을 스킨 라인과 가장 안쪽 벽의 라인 폭 비율로 조정하십시오. 약간의 겹침으로 벽이 스킨에 확실하게 연결될 수 있습니다. 동일한 스킨 및 벽 라인-폭을 고려할 때 비율이 50%가 넘는다면, 그 지점에서 스킨-익스트루더의 노즐 위치가 이미 벽 중앙을 지나 도달할 수 있기 때문에 이미 스킨이 벽을 지나치고 있을 수 있습니다." +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "시작 시, 노즐이 가열될 때까지 대기할지 여부." -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "벽과 스킨-센터라인(종점) 사이의 겹침 양을 조정하십시오. 약간의 겹침으로 벽이 스킨에 확실하게 연결될 수 있습니다. 동일한 스킨 및 벽 라인-폭을 고려할 때 값이 벽 폭의 절반을 넘는다면, 그 지점에서 스킨-익스트루더의 노즐 위치가 이미 벽 중앙을 지나 도달할 수 있기 때문에 이미 스킨이 벽을 지나치고 있을 수 있습니다." +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "재료의 온도 포함하기" -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "출력물의 내부채움을 조절합니다." +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "gcode의 시작 부분에 노즐 온도 명령을 포함할지 여부. start_gcode에 이미 노즐 온도 명령이 포함되어있을 때 Cura는 이 설정을 자동으로 비활성화 합니다." -msgctxt "support_interface_density description" -msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "서포트의 지붕 및 바닥 밀도를 조정합니다. 값이 높을수록 오버행에서 좋지만 서포트를 제거하기가 더 어렵습니다." +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "빌드 플레이트 온도 포함" -msgctxt "support_tree_top_rate description" -msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "브랜치의 팁을 생성하는 데 사용되는 서포트 구조의 밀도를 조정합니다. 값이 클수록 오버행은 개선되지만 서포트를 제거하기가 어려워집니다. 매우 큰 값을 위해서는 서포트 지붕을 사용하거나 상단의 서포트 밀도가 비슷하게 높은지 확인합니다." +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "gcode가 시작될 때 빌드 플레이트 온도 명령을 포함할지 여부. start_gcode에 빌드 플레이트 온도 명령이 이미 있으면 Cura는 이 설정을 자동으로 비활성화 합니다." -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "서포트 구조의 밀도를 조정합니다. 값이 높을수록 오버행이 좋아 서포트만 서포트를 제거하기가 더 어렵습니다." +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "기기 너비" -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "사용 된 필라멘트의 직경을 조정합니다. 이 값을 사용될 필라멘트의 직경과 일치시킵니다." +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "프린팅 가능 영역의 폭 (X 방향)." -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "서포트 구조의 배치를 조정합니다. 배치는 빌드 플레이트 또는 모든 곳을 터치하도록 설정할 수 있습니다. 모든 곳에 설정하면 모델에 서포트 구조가 프린팅됩니다." +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "기기 깊이" -msgctxt "prime_tower_wipe_enabled description" -msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." -msgstr "하나의 노즐로 프라임 타워를 프린팅 한 후, 다른 타워의 이물질을 프라임 타워에서 닦아냅니다." +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "프린팅 가능 영역의 깊이 (Y 방향)" -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "기기가 하나의 익스트루더에서 다른 익스트루더로 전환 된 후, 빌드 플레이트가 내려가 노즐과 출력물 사이에 간격이 생깁니다. 이렇게 하면 프린트 물 바깥쪽에서 노즐로 부터 필라멘트가 흐르는 것을 방지합니다." +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "기기 높이" -msgctxt "retraction_combing option all" -msgid "All" -msgstr "모두" +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "프린팅 가능 영역의 높이 (Z 방향)입니다." -msgctxt "print_sequence option all_at_once" -msgid "All at Once" -msgstr "모두 한꺼번에" +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "빌드 플레이트 모양" -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "출력물의 해상도에 영향을 미치는 모든 설정. 이러한 설정은 품질 (및 프린팅 시간)에 큰 영향을 미칩니다." +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "프린팅 할 수 없는 영역을 고려하지 않은 빌드 플레이트의 모양." -msgctxt "user_defined_print_order_enabled description" -msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." -msgstr "" +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "직사각형" -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "대체 여분 벽" +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "타원" -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "대체 메쉬 제거" +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "빌드 플레이트 재질" -msgctxt "material_alternate_walls label" -msgid "Alternate Wall Directions" -msgstr "벽 방향 대체" +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "프린터에 설치된 빌드 플레이트의 재질." -msgctxt "material_alternate_walls description" -msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." -msgstr "다른 레이어마다 벽 방향을 대체하고 삽입합니다. 금속 프린팅의 경우와 같이 응력을 증강시킬 수 있는 재료에 유용." +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "유리" msgctxt "machine_buildplate_type option aluminum" msgid "Aluminum" msgstr "알루미늄" +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "히팅 빌드 플레이트가 있음" + +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "기기에 히팅 빌드 플레이트가 있는지 여부." + +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "빌드 볼륨 온도 안정화" + +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "기기의 빌드 볼륨 온도 안정화 지원 여부입니다." + msgctxt "machine_always_write_active_tool label" msgid "Always Write Active Tool" msgstr "항상 활성 도구 쓰기" -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "외벽을 프린팅하기 위해 이동할 때 항상 리트렉션합니다." +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "임시 명령을 비활성 도구로 전송한 후 활성 도구를 작성하십시오. Smoothie 또는 모달 도구 명령어를 사용하는 다른 펌웨어를 사용해 프린팅하는 듀얼 압출기용 프린팅에 필요합니다." -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "각 레이어의 모든 다각형에 적용된 오프셋의 양입니다. 양수 값은 아주 큰 구멍을 보완 할 수 있습니다. 음수 값은 아주 작은 구멍을 보완 할 수 있습니다." +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "센터 원점" -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "첫 번째 레이어의 모든 다각형에 적용된 오프셋의 양입니다. 음수 값은 \"elephant's foot\"이라고 알려진 현상을 보완 할 수 있습니다." +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "프린터의 0 위치의 X/Y 좌표가 프린팅 가능 영역의 중앙에 있는지 여부." -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "각 레이어의 모든 서포트 다각형에 적용된 오프셋의 양입니다. 양수 값을 사용하면 서포트 영역이 원활 해지며 보다 견고한 서포트가 됩니다." +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "익스트루더의 수" -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "서포트 바닥에 적용되는 오프셋 양." +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "익스트루더의 수. 익스트루더는 피더, 보우 덴 튜브 및 노즐의 조합입니다." -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "서포트 지붕에 적용되는 오프셋 양." +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "활성화된 익스트루더의 수" -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "서포트 인터페이스 영역에 적용되는 오프셋 양." +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "사용 가능한 익스트루더 수; 소프트웨어로 자동 설정" -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "필라멘트를 리트렉션하는 양으로 와이프 순서 동안 새어 나오지 않습니다." +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "외부 노즐의 외경" -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "모델의 경계를 확인하기 위해 각 큐브의 중심에서 반경을 더하여 이 큐브를 세분화할지 여부를 결정합니다. 값이 클수록 모델의 경계 근처에 작은 큐브가 더 두껍게 나옵니다." +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "노즐 끝의 외경." -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "안티 오버행 메쉬" +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "노즐 길이" -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "흐름 방지 리트랙션 위치" +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "노즐의 끝과 프린트 헤드의 가장 낮은 부분 사이의 높이 차이입니다." -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "흐름 방지 리트랙션 속도" +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "노즐 각도" -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "익스트루더 오프셋을 좌표계에 적용하십시오. 모든 익스트루더에 적용됩니다." +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "노즐 끝 바로 위의 수평면과 원뿔 부분 사이의 각도입니다." -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "모델이 닿는 위치에 연동 빔 구조를 생성합니다. 이렇게 하면 모델, 특히 다른 재료로 프린트된 모델 간의 접착력이 개선됩니다." +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "가열 영역 길이" -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "움직일 때 프린팅한 부분을 피하기" +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "노즐의 열이 필라멘트로 전달되는 노즐의 끝에서부터의 거리." -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "이동하는 경우 지지대 피함" +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "노즐 온도 조절 활성화" -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "뒤로" +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "Cura에서 온도를 제어할지 여부. Cura 외부에서 노즐 온도를 제어하려면 이 기능을 끄십시오." -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "후면 왼쪽" +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "가열 속도" -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "후면 오른쪽" +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "노즐이 가열되는 속도 (°C/s)는 일반적인 프린팅 온도와 대기 온도에서 평균을 냅니다." -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "냉각 속도" -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "모두" +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "노즐이 냉각되는 속도 (°C/s)는 일반적인 프린팅 온도 및 대기 온도에서 평균을 냅니다." -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "둘 다 겹침" +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "최소 대기 시간" -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "하단 레이어" +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "노즐이 냉각되기 전에 익스트루더가 비활성이어야하는 최소 시간. 이 시간보다 오래 익스트루더를 사용하지 않을 경우에만 대기 온도로 냉각시킬 수 있습니다." -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "하단 패턴 초기 레이어" +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "Gcode 유형" -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "밑면 스킨 확장 거리" +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "생성 될 gcode의 유형." -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "밑면 스킨 제거 폭" +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "바닥 두께" +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (부피 측정법)" -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "브랜치 밀도" +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "브랜치 직경" +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "브랜치 직경 각도" +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "파단 준비 리트랙션 위치" +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "파단 준비 리트랙션 속도" +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "준비 온도 파단" +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "파단 리트랙션 위치" +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "파단 리트랙션 속도" +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "펌웨어 리트렉션" -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "파단 온도" +msgctxt "machine_firmware_retract description" +msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." +msgstr "재료를 리트렉션하는 G1 명령어에서 E 속성을 사용하는 대신 펌웨어 리트렉션 명령어(G10/G11)를 사용할 지 여부." -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Chunk에서 서포트 중단" +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "압출기의 히터 공유" -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "브릿지 팬 속도" +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "압출기가 자체 히터를 가지고 있지 않고 단일 히터를 공유하는지에 대한 여부." -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "여러 개의 레이어가있는 브릿지" +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "익스트루더의 노즐 공유" -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "브리지 두 번째 스킨 밀도" +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "익스트루더가 자체 노즐을 가지고 있지 않고 단일 노즐을 공유하는지에 대한 여부. True로 설정하면 프린터 시동 gcode 스크립트가 알려진 상호 호환 가능한 초기 수축 상태(0 또는 1개의 필라멘트가 수축되지 않음)에서 모든 익스트루더를 적절하게 설정해야 합니다. 이 경우 초기 수축 상태는 'machine_extruders_shared_nozzle_initial_retraction' 매개 변수에 의해 익스트루더마다 표시됩니다." -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "브릿지 두번째 스킨 팬 속도" +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "공유된 노즐 초기 수축" -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "브리지 두 번째 스킨 압출량" +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "프린터 시작 gcode 스크립트가 완료될 때 공유된 노즐 끝에서 각 익스트루더의 필라멘트가 수축된 것으로 가정하는 정도입니다. 이 값은 노즐 덕트의 공통 부분의 길이와 같거나 커야 합니다." -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "브릿지 두번째 스킨 속도" +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "허용되지 않는 지역" -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "브릿지 스킨 밀도" +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "프린팅 헤드가 위치할 수 없는 구역의 목록입니다." -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "브리지 스킨 압출량" +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "노즐이 위치할 수 없는 구역" -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "브릿지 스킨 속도" - -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "브릿지 스킨 서포트 임계값" +msgctxt "nozzle_disallowed_areas description" +msgid "A list of polygons with areas the nozzle is not allowed to enter." +msgstr "노즐이 위치할 수 없는 구역의 목록입니다." -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "브리지의 희박한 내부채움 최대 밀도" +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "머신 헤드 및 팬 폴리곤" -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "브릿지 세번째 스킨 밀도" +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "프린트 헤드의 모양. 일반적으로 첫 번째 압출기의 위치인 프린트 헤드의 위치와 관련된 좌표입니다. 프린트 헤드의 왼쪽 및 앞쪽 치수는 음수 좌표여야 합니다." -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "브릿지 세번째 스킨 팬 속도" +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "갠트리 높이" -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "브리지 세 번째 스킨 압출량" +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "노즐 끝과 갠트리 시스템 사이의 높이 차이 (X 및 Y 축)." -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "브릿지 세번째 스킨 속도" +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "노즐 ID" -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "브릿지 벽 코스팅(Coasting)" +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "\"AA 0.4\"및 \"BB 0.8\"과 같은 익스트루더 트레인의 노즐 ID." -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "브리지 벽 압출량" +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "노즐 직경" -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "브릿지 벽 속도" +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "노즐의 내경. 비표준 노즐 크기를 사용할 때, 이 설정을 변경하십시오." -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "브림" +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "익스트루더로 오프셋" -msgctxt "brim_inside_margin label" -msgid "Brim Avoid Margin" -msgstr "" +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "익스트루더 오프셋을 좌표계에 적용하십시오. 모든 익스트루더에 적용됩니다." -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "브림 거리" +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "익스트루더 프라임 Z 위치" -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "브림 선 수" +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 Z 좌표입니다." -msgctxt "brim_location label" -msgid "Brim Location" -msgstr "" +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "독립 익스트루더 프라임 포지션" -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "브림이 서포트를 대체" +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "익스투루더의 위치를 헤드의 마지막으로 알려진 위치에 상대위치가 아닌 절대 위치로 만듭니다." -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "브림 너비" +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "X 방향 최대 속도" -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "빌드 플레이트 부착" +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "X 방향의 모터 최대 속도입니다." -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "빌드 플레이트 고정 익스트루더" +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Y 방향 최대 속도" -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "빌드 플레이트 고정 유형" +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "Y 방향 모터의 최대 속도입니다." -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "빌드 플레이트 재질" +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Z 방향 최대 속도" -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "빌드 플레이트 모양" +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "Z 방향의 모터 최대 속도입니다." -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "빌드 플레이트 온도" +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "최대 속도 E" -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "초기 레이어의 빌드 플레이트 온도" +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "필라멘트의 최대 속도." -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "빌드 볼륨 온도" +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "최대 가속도 X" -msgctxt "bv_temp_anomaly_limit label" -msgid "Build Volume temperature Limit" -msgstr "" +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "X 방향 모터의 최대 가속도" -msgctxt "bv_temp_warn_limit label" -msgid "Build Volume temperature Warning" -msgstr "" +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Y 방향 최대 가속도" -msgctxt "prime_tower_brim_enable description" -msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "이 설정을 활성화하면 모델에 브림이 없더라도 프라임 타워에는 브림이 생성됩니다. 높은 타워의 튼튼한 베이스가 필요하다면 베이스 높이를 늘릴 수 있습니다." +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Y 방향 모터의 최대 가속도." -msgctxt "center_object label" -msgid "Center Object" -msgstr "가운데 객체" +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Z 방향 최대 가속도" -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "최소한의 서포트가 필요하도록 프린팅 된 모델의 형상을 변경합니다. 가파른 오버행은 얕은 오버행이됩니다. 오버행 영역이 더 수직으로 떨어집니다." +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Z 방향 모터의 최대 가속도." -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "서포트를 생성하는 데 사용할 수 있는 기술 중 하나를 선택합니다. '표준' 서포트는 오버행(경사면) 파트 바로 아래에 서포트 구조물을 생성하고 해당 영역을 바로 아래로 떨어뜨립니다. '트리' 서포트는 모델을 지지하는 브랜치 끝에서 오버행(경사면) 영역을 향해 브랜치를 만들고 빌드 플레이트에서 모델을 지지할 수 있도록 모델을 브랜치로 최대한 감쌉니다." +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "최대 필라멘트 가속도" -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "코스팅(Coasting) 속도" +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "필라멘트를 구동하는 모터의 최대 가속도." -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "코스팅(Coasting) 양" +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "기본 가속도" -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "코스팅(Coasting)은 압출 경로의 마지막 부분을 이동 경로로 바꿉니다. 누출된 재료는 스트링을 줄이기 위해 압출 경로의 마지막 부분을 프린팅하는 데 사용됩니다." +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "프린트 헤드 이동시 기본 가속도." -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Combing 모드" +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "기본 X-Y Jerk" -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "Combing은 이동할 때 이미 인쇄 된 영역 내에 노즐을 유지합니다. 이로 인해 이동이 약간 더 길어 지지만 리트렉션의 필요성은 줄어듭니다. Combing이 꺼져 있으면 재료가 후퇴하고 노즐이 직선으로 다음 점으로 이동합니다. 또한 상단/하단 스킨 영역을 Combing하거나 내부채움 내에서만 빗질하는 것을 피할 수 있습니다." +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "수평면에서의 이동을 위한 기본 Jerk." -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "커맨드 라인 설정" +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "기본 Z Jerk" -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "동심원" +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "Z 방향 모터의 기본 Jerk." -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "동심원" +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "기본 필라멘트 Jerk" -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "동심원의" +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "필라멘트를 구동하는 모터의 기본 Jerk." -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "동심원의" +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "밀리미터 당 스텝 수 (X)" -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "동심원의" +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "X 방향으로 1 밀리미터를 압출에 필요한 스텝 모터의 스텝 수." -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "동심원의" +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "밀리미터 당 스텝 수 (Y)" -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "동심원의" +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "Y 방향으로 1 밀리미터를 압출에 필요한 스텝 모터의 스텝 수." -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "동심원 형태" - -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "동심원의" - -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "원추서포트 각" - -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "원뿔형 서포트 최소 너비" - -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "내부채움 선 연결" - -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "내부채움 다각형 연결" - -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "서포트 선 연결" - -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "ZigZags 서포트 연결" - -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "상단/하단 다각형 연결" - -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "스킨 경로가 나란히 이어지는 내부채움 경로를 연결합니다. 여러 개의 폐다각형으로 구성되는 내부채움 패턴의 경우 이 설정을 사용하면 이동 시간이 크게 감소합니다." - -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "지그재그를 연결하십시오. 이것은 지그재그 서포트 구조의 강도를 증가시킵니다." - -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "서포트의 끝을 서로 연결하십시오. 이 설정을 사용하면 서포트가 보다 견고해지지만 더 많은 재료가 소모됩니다." - -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "내벽의 형태를 따라가는 선을 사용하여 내부채움 패턴과 내벽이 만나는 끝을 연결합니다. 이 설정을 사용하면 내부채움이 벽에 더 잘 붙게되어 내부채움이 수직면의 품질에 미치는 영향을 줄일 수 있습니다. 이 설정을 해제하면 사용되는 재료의 양이 줄어듭니다." - -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "스킨 경로가 나란히 이어지는 상단/하단 스킨 경로를 연결합니다. 동심원 패턴의 경우 이 설정을 사용하면 이동 시간이 크게 감소하지만, 내부채움의 중간에 연결될 수 있기 때문에 이 기능은 상단 표면 품질을 저하시킬 수 있습니다." - -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "모델 외곽선의 모서리가 이음선의 위치에 영향을 주는지 여부를 제어합니다. 이것은 모서리가 이음선 위치에 영향을 미치지 않는다는 것을 의미하지 않습니다. 이음선 숨김은 이음선이 안쪽 모서리에서 발생할 가능성을 높입니다. 이음선 노출은 이음선이 외부 모서리에서 발생할 가능성을 높입니다. 이음선 숨김 또는 노출은 이음선이 내부나 외부 모서리에서 발생할 가능성을 높입니다. 스마트 숨김은 내외부 모서리 모두 가능하지만, 적절하다면 내부 모서리를 더욱 빈번하게 선택합니다." - -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "각 내부채움 선을 여러 개의 선으로 변환합니다. 추가되는 선은 다른 선을 교차하지 않고, 다른 선을 피해 변환됩니다. 내부채움을 빽빽하게 만들지만, 인쇄 및 재료 사용이 증가합니다." - -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "냉각 속도" - -msgctxt "cooling description" -msgid "Cooling" -msgstr "냉각" - -msgctxt "cooling label" -msgid "Cooling" -msgstr "냉각" - -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "십자형" - -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "십자" - -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "십자형 3D" - -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "크로스 3D 포켓 크기" - -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "지지대에 대한 교차 충진 밀도 이미지" - -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "교차 충진 밀도 이미지" - -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "결정형 소재" - -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "입방체" - -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "입방체 세분" - -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "입방 세분 쉘" - -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "커팅 메쉬" - -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "재료 공급 데이터 (mm3 / 초) - 온도 (섭씨)." - -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "기본 가속도" - -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "기본 빌드 플레이트 온도" - -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "기본 필라멘트 Jerk" - -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "기본 프린팅 온도" +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "밀리미터 당 스텝 수 (Z)" -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "기본 X-Y Jerk" +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "Z 방향으로 1 밀리미터를 압출에 필요한 스텝 모터의 스텝 수." -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "기본 Z Jerk" +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "밀리미터 당 스텝 수 (E)" -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "수평면에서의 이동을 위한 기본 Jerk." +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "둘레를 따라 1밀리미터씩 피더 휠을 움직이는 스텝 모터의 스텝 수." -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "Z 방향 모터의 기본 Jerk." +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "양의 방향 X 엔드 스톱" -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "필라멘트를 구동하는 모터의 기본 Jerk." +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "X 축의 엔드 스톱이 양의 방향 (높은 X 좌표) 또는 음의 (낮은 X 좌표)인지 여부." -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "브릿지가 출력되는 중에 브리지를 감지하고 인쇄 속도, 흐름 및 팬 설정을 수정합니다." +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "양의 방향 Y 엔드 스톱" -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "벽이 프린팅되는 순서를 정의합니다. 외벽을 먼저 프린팅하면 내벽의 오류가 외부로 전파될 수 없으므로 치수 정확도가 향상됩니다. 그러나 나중에 프린팅하면 오버행(경사면)이 프린트팅 될 때 더 잘 쌓일 수 있습니다. 전체 내벽의 총량이 불균일할 경우, '가운데 마지막 선'이 항상 마지막에 인쇄됩니다." +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "Y 축의 엔드 스톱이 양의 방향 (높은 Y 좌표) 또는 음의 (낮은 Y 좌표)인지 여부." -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "여러 내부채움 매쉬 오버랩을 고려할 때 메쉬의 우선 순위를 결정합니다. 여러 내부채움 메쉬가 오버랩하는 영역은 최고 랭크의 메쉬 설정에 착수하게 됩니다. 높은 내부채움 메쉬는 낮은 내부채움 메쉬와 표준 메쉬의 내부채움을 수정합니다." +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "양의 방향 Z 엔드 스톱" -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "라이트닝 내부채움 레이어가 그 위에 있는 것을 서포트해야 할 부분을 결정합니다. 레이어 두께가 주어진 각도로 측정됩니다." +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "Z 축의 엔드 스톱이 양의 방향 (높은 Z 좌표) 또는 음의 (낮은 Z 좌표)인지 여부." -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "라이트닝 내부채움 레이어가 레이어 위에 있는 모델을 서포트해야 할 부분을 결정합니다. 두께가 주어진 각도로 측정됩니다." +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "최소 이송 속도" -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "직경" +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "프린트 헤드의 최소 이동 속도." -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "모델에 대한 직경 증가" +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "피더 휠 지름" -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "모든 브랜치가 빌드 플레이트에 도달할 때 달성하려고 하는 직경입니다. 이에 따라 베드 접착력이 개선됩니다." +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "피더에서 재료를 구동시키는 휠의 지름." -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "빌드 플레이트에 대한 접착력을 향상시키는 데 도움이되는 다양한 옵션. 브림은 뒤틀림을 방지하기 위해 모델 바닥 주위에 단층 평면 영역을 추가합니다. 래프트는 모델 아래에 지붕이있는 두꺼운 격자를 추가합니다. 스커트는 모델 주변에 프린팅 된 선이지만 모델에는 연결되어 있지 않습니다." +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "팬 속도를 0-1로 조정" -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "허용되지 않는 지역" +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "팬 속도를 0 ~ 256이 아니라 0 ~ 1로 조정합니다." -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "프린팅 된 내부채움 선 사이의 거리. 이 설정은 내부채움 밀도 및 내부채움 선 너비로 계산됩니다." +msgctxt "resolution label" +msgid "Quality" +msgstr "품질" -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "인쇄된 초기 레이어 서포트 구조 선 사이의 거리. 이 설정은 서포트 밀도로 계산됩니다." +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "출력물의 해상도에 영향을 미치는 모든 설정. 이러한 설정은 품질 (및 프린팅 시간)에 큰 영향을 미칩니다." -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "프린팅 된 서포트 플로어 사이의 거리. 이 설정은 서포트 바닥 밀도로 계산되지만 별도로 조정할 수 있습니다." +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "층 높이" -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "프린팅 된 지붕 루프 사이의 거리. 이 설정은 서포트 지붕 밀도에 의해 계산되지만 별도로 조정할 수 있습니다." +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "각 층의 높이 (mm)입니다. 값이 클수록 해상도가 낮고 프린팅 속도가 빨라지며, 값이 작을수록 해상도가 높고 프린팅 속도가 느려집니다." -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "프린팅 된 서포트 구조 선 사이의 거리. 이 설정은 서포트 밀도로 계산됩니다." +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "첫번째 레이어 높이" -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." -msgstr "프린트에서 서포트 바닥까지의 거리입니다. 이는 다음 레이어 높이로 반올림됩니다." +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "첫번째 레이어의 높이 (mm)입니다. 첫번째 레이어를 두껍게하면 빌드 플레이트에 쉽게 부착됩니다." -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "서포트 상단에서 프린팅까지의 거리." +msgctxt "line_width label" +msgid "Line Width" +msgstr "선의 두께" -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." -msgstr "서포트 구조물의 상단/하단에서 프린트까지의 거리입니다. 이 공간은 모델이 인쇄된 후 서포트를 제거할 수 있도록 여유를 제공합니다. 모델 아래 최상위 서포트 레이어는 정규 레이어의 일부일 수 있습니다." +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "한 줄의 두께. 일반적으로 각 라인의 너비는 노즐 폭과 일치해야합니다. 그러나 이 값을 약간 줄이면 더 나은 인쇄를 할 수 있습니다." -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "각 내부채움 라인 다음에 삽입 된 이동 거리. 내부채움 스틱을 벽에 더 잘 붙게 합니다. 이 옵션은 내부채움 겹침과 유사하지만 압출이 없고 충전 선의 한쪽 끝에서만 사용됩니다." +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "벽 선 너비" -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "Z 층의 경계면을 더 잘 가리기 위해 바깥쪽 벽 뒤에 삽입되어 이동한 거리." +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "단일 벽 선의 너비입니다." -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "X/Y 방향으로 프린트와 드래프트 쉴드까지의 거리입니다." +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "바깥 선 선폭" -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "X/Y 방향으로 출력물에서 Ooze 쉴드까지의 거리." +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "가장 바깥 쪽 벽 선의 너비. 이 값을 낮춤으로써 높은 수준의 디테일을 프린팅 할 수 있습니다." -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "X/Y 방향에서 오버행으로부터 서포트까지의 거리." +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "내부 벽 선 너비" -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "X/Y 방향에서 출력물로과 서포트까지의 거리." +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "가장 바깥 쪽 벽 선을 제외한 모든 벽 선에 대해 단일 벽 선의 폭입니다." -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "경로를 평활화하기 위해 거리 지점이 이동됩니다" +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "상단/하단 라인 폭" -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "경로를 평활화하기 위해 거리 지점이 이동됩니다" +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "한 라인의 단일 위쪽/아래쪽 선의 너비입니다." -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "이보다 작은 내부채움 영역을 생성하지 마십시오 (대신 스킨 사용)." +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "내부채움 선 폭" -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "드래프트 쉴드 높이" +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "단일 내부채움 라인의 너비." -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "드래프트 쉴드 제한" +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "스커트/브림 선 너비" -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "드래프트 쉴드 X/Y 거리" +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "단일 스커트 또는 브림의 너비." -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "드롭 다운 서포트 메쉬" +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "서포트의 폭" -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "이중 압출" +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "단일 서포트 구조 선의 폭입니다." -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "타원" +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "서포트 인터페이스의 폭" -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "가속 제어 활성화" +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "서포트의 지붕, 바닥의 폭." -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "브릿지 설정 사용" +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "서포트 루프 라인 폭" -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "코스팅(Coasting) 사용" +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "단일 서포트 지붕 라인 폭." -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "원추형 서포트 사용" +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "서포트 바닥 라인 폭" -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "드래프트 쉴드 사용" +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "단일 서포트 플로어 라인의 폭." -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "플루이드 모션 활성화" +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "프라임 타워 라인 폭" -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "다림질 사용" +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "단일 주요 타워 라인의 폭." -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Jerk 컨트롤 사용" +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "초기 레이어 라인 폭" -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "노즐 온도 조절 활성화" +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "첫 번째 레이어의 라인 폭 승수입니다. 이것을 늘리면 베드 접착력을 향상시킬 수 있습니다." -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Ooze 쉴드 사용" +msgctxt "shell label" +msgid "Walls" +msgstr "벽" -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "프라임 블롭 활성화" +msgctxt "shell description" +msgid "Shell" +msgstr "외곽" -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "프라임 타워 사용" +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "벽 익스트루더" -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "프린팅 냉각 사용" +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "벽을 프린팅하는 데 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." -msgctxt "ppr_enable label" -msgid "Enable Print Process Reporting" -msgstr "" +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "외벽 익스트루더" -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "리트렉션 활성화" +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "외벽 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "서포트 브림 사용" +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "내벽 익스트루더" -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "서포트 바닥 사용" +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "내벽 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "서포트 인터페이스 사용" +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "벽 두께" -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "서포트 지붕 사용" +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "가로 방향의 벽 두께입니다. 이 값을 벽 선 너비로 나눈 값은 벽의 수 입니다." -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "이동 가속 활성화" +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "벽 라인의 수" -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "이동 저크 활성화" +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "벽의 수. 벽 두께로 계산할 때 이 값은 반올림됩니다." -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "Ooze 쉴드를 활성화. 이렇게하면 첫 번째 노즐과 동일한 높이에 두 번째 노즐을 닦을 가능성이 있는 모델 주위에 쉘이 생깁니다." +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "벽 전환 길이" -msgctxt "ppr_enable description" -msgid "Enable print process reporting for setting threshold values for possible fault detection." -msgstr "" +msgctxt "wall_transition_length description" +msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." +msgstr "부품이 얇아지면서 서로 다른 수의 벽 사이에서 전환될 때 벽 선을 분할하거나 결합하기 위해 일정 양의 공간이 할당됩니다." -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "맨 위 스킨 레이어(공기에 노출됨)의 작은(최대 '작은 상단/하단 너비') 영역을 기본 패턴 대신 벽으로 채울 수 있습니다." +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "벽 배포 개수" -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "X 또는 Y 축의 속도가 변경 될 때 프린트 헤드의 속도를 조정할 수 있습니다. Jerk를 높이면 프린팅 품질을 저하시키면서 프린팅 시간을 줄일 수 있습니다." +msgctxt "wall_distribution_count description" +msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." +msgstr "중앙에서부터 계산되는 벽의 수로, 이를 통해 오차가 분산되어야 합니다. 값이 작다고 해서 외벽의 너비가 변경되지 않는 것은 아닙니다." -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "프린트 헤드 가속도를 활성화 합니다. 가속도를 높이면 프린팅 품질을 저하시키지만 프린팅 시간을 줄일 수 있습니다." +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "벽 전환 임계각" -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "프린팅 중에 프린팅 냉각 팬을 활성화합니다. 팬은 짧은 레이어 시간 및 브리징 / 오버행으로 레이어의 프린팅 품질을 향상시킵니다." +msgctxt "wall_transition_angle description" +msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." +msgstr "짝수 벽과 홀수 벽 사이에 전환을 생성할 때입니다. 이 설정보다 더 큰 각도의 웨지 모양은 전환이 없으며 나머지 공간을 채우기 위해 벽이 중앙에 프린트되지는 않습니다. 이 설정을 줄이면 이러한 중앙 벽의 수와 길이가 줄어들지만, 간격이 생기거나 과잉 압출될 수 있습니다." -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "End GCode" +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "벽 전환 필터 거리" -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "필라멘트 끝의 퍼지 길이" +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "서로 다른 수의 벽들 사이를 빠르게 연속적으로 왔다 갔다 하며 전환되는 경우에는 전환하지 마십시오. 이 거리보다 서로 더 가까운 경우에는 전환을 제거하십시오." -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "필라멘트 끝의 퍼지 속도" +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "벽 전환 필터 여백" -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "서포트가 차지할 공간이더라도 모델 주변에 브림이 인쇄되도록 합니다. 이렇게 하면 서포트의 첫 번째 레이어 영역 일부가 브림 영역으로 대체됩니다." +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "하나의 여분 벽과 하나 더 적은 벽 사이를 왔다 갔다 하는 전환을 방지하십시오. 이 여백은 [최소 벽 선 너비 - 여백, 2 * 최소 벽 선 너비 + 여백]을 따르는 선 너비의 범위를 확장합니다. 이 여백을 늘리면 전환 횟수가 줄어들어, 압출 시작/중지 및 이동 시간이 줄어듭니다. 그러나 선 너비 변동이 크면 압출 미달 또는 과잉 문제가 발생할 수 있습니다." -msgctxt "brim_location option everywhere" -msgid "Everywhere" -msgstr "" +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "외벽 이동 거리" -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "어디에나" +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "Z 층의 경계면을 더 잘 가리기 위해 바깥쪽 벽 뒤에 삽입되어 이동한 거리." -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "배타적" +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "외벽 삽입" -msgctxt "experimental label" -msgid "Experimental" -msgstr "실험적인" +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "외벽의 경로에 삽입이 적용됩니다. 외벽이 노즐보다 작고 내벽 다음에 프린팅 된 경우 이 옵셋을 사용하여 노즐의 구멍이 모델 외부가 아닌 내벽과 겹치도록하십시오." -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "솔기 노출" +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "벽면 프린팅 순서 명령 최적화" -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "광범위한 스티칭" +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "수축 및 이동 거리를 줄이도록 벽이 인쇄되는 순서를 최적화합니다. 대부분의 부품은 이 기능을 사용하면 도움이 되지만 실제로는 시간이 오래 걸릴 수 있으므로, 최적화 여부와 관계없이 인쇄 시간을 비교하십시오. 빌드 플레이트 접착 유형을 Brim으로 선택하는 경우 첫 번째 층이 최적화되지 않습니다." -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "광범위한 스티칭은 다각형을 만지면서 구멍을 닫음으로써 메쉬의 열린 구멍을 꿰매려합니다. 이 옵션은 많은 처리 시간을 초래할 수 있습니다." +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "벽 순서 지정" -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "여분의 내부채움 벽 수" +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "벽이 프린팅되는 순서를 정의합니다. 외벽을 먼저 프린팅하면 내벽의 오류가 외부로 전파될 수 없으므로 치수 정확도가 향상됩니다. 그러나 나중에 프린팅하면 오버행(경사면)이 프린트팅 될 때 더 잘 쌓일 수 있습니다. 전체 내벽의 총량이 불균일할 경우, '가운데 마지막 선'이 항상 마지막에 인쇄됩니다." -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "여분의 스킨 벽 수" +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "내부에서 외부로" -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "노즐 스위치 후 프라이밍하는 추가 소재의 양입니다." +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "외부에서 내부로" -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "익스트루더 프라임 X 위치" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "대체 여분 벽" -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "익스트루더 프라임 Y 위치" +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "다른 모든 레이어에 여분의 벽을 프린팅합니다. 이렇게하면 내부채움이 여분의 벽 사이에 끼어 더 강하게 프린팅됩니다." -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "익스트루더 프라임 Z 포지션" +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "최소 벽 선 너비" -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "압출기의 히터 공유" +msgctxt "min_wall_line_width description" +msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." +msgstr "노즐 크기의 1~2배 정도의 얇은 구조물의 경우 모델의 두께에 맞게 선 너비를 변경해야 합니다. 이 설정은 벽에 허용되는 최소 선 너비를 제어합니다. N개의 벽이 넓고 N+1개의 벽이 좁은 일부 형상 두께에서는 N개의 벽에서 N+1개의 벽으로 전환하기 때문에, 최소 선 너비가 내재적으로 최대 선 너비를 결정합니다. 가장 넓을 가능성이 있는 벽 선은 최소 벽 선 너비의 두 배입니다." -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "익스트루더의 노즐 공유" +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "최소 짝수 벽 선 너비" -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "압출 냉각 속도 조절기" +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "일반 다각형 벽의 최소 선 너비 이 설정은 단일의 얇은 벽 선 프린팅에서 두 개의 벽 선 프린팅으로 전환하는 모델 두께를 결정합니다. 최소 짝수 벽 선 너비가 더 높을수록 최대 홀수 벽 선 너비가 높아집니다. 최대 짝수 벽 선 너비는 외벽 선 너비 + 0.5 * 최소 홀수 벽 선 너비로 계산됩니다." -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "속도에 대한 압출 너비 기준 보정 계수. 0%에서는 이동 속도가 프린팅 속도로 일정하게 유지됩니다. 100%에서는 흐름(단위: mm³/s)이 일정하게 유지되도록 이동 속도가 조정됩니다. 즉 일반적인 선 너비의 절반인 선은 두 배로 빠르게 프린팅되고 너비가 두 배인 선은 절반 속도로 프린팅됩니다. 100%보다 큰 값은 넓은 선을 압출하기 위해 요구되는 더 높은 압력을 보정하는 데 도움이 될 수 있습니다." +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "최소 홀수 벽 선 너비" -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "팬 속도" +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "중간 선 간격 충전재 폴리라인 벽의 최소 선 너비. 이 설정은 두 개의 벽 선을 프린팅 하는 것에서 두 개의 외벽 및 가운데의 단일 중앙 벽 프린팅으로 전환하는 모델 두께를 결정합니다. 최소 짝수 벽 선 너비가 더 높을수록 최대 홀수 벽 선 너비가 높아집니다. 최대 홀수 벽 너비는 2 * 최소 짝수 벽 선 너비로 계산됩니다." -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "팬 속도 무시" +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "얇은 벽 프린팅" -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "이 수치보다 길이가 짧은 피처 윤곽은 소형 피처 속도 기능을 이용해 프린트합니다." +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "노즐 크기보다 수평으로 더 얇은 모델 조각을 프린팅하십시오." -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "아직 구체화되지 않은 기능들." +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "최소 피처 크기" -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "피더 휠 지름" +msgctxt "min_feature_size description" +msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." +msgstr "얇은 피처의 최소 두께 이 값보다 더 얇은 모델 피처는 프린트되지 않으며, 최소 피처 크기보다 더 두꺼운 피처는 최소 벽 선 너비로 넓어집니다." -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "최종 프린팅 온도" +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "얇은 벽 선 최소 너비" -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "펌웨어 리트렉션" +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "모델의 (최소 피처 크기에 따라) 얇은 피처를 대체할 벽의 너비 최소 벽 선 너비가 피처의 두께보다 더 얇다면 벽은 피처 자체만큼 두꺼워집니다." -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "첫 번째 레이어 서포트 익스트루더" +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "수평 확장" -msgctxt "material_flow label" -msgid "Flow" -msgstr "공급량" +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "각 레이어의 모든 다각형에 적용된 오프셋의 양입니다. 양수 값은 아주 큰 구멍을 보완 할 수 있습니다. 음수 값은 아주 작은 구멍을 보완 할 수 있습니다." -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "흐름 균일화 비율" +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "첫번째 레이어 수평 확장" -msgctxt "flow_anomaly_limit label" -msgid "Flow Limit" -msgstr "" +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "첫 번째 레이어의 모든 다각형에 적용된 오프셋의 양입니다. 음수 값은 \"elephant's foot\"이라고 알려진 현상을 보완 할 수 있습니다." -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "압출 속도 보상 배율" +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "구멍 수평 확장" -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "압출 속도 보상 최대 압출 오프셋" +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "0보다 크면 홀 수평 확장은 각 레이어의 모든 홀에 적용되는 오프셋의 양입니다. 양수 값은 홀의 크기를 늘리고 음수 값은 홀의 크기를 줄입니다. 이 설정을 활성화하면 홀 수평 확장 최대 직경을 사용하여 추가로 조정할 수 있습니다." -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "재료 공급 온도 그래프" +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "구멍 수평 확장 최대 직경" -msgctxt "flow_warn_limit label" -msgid "Flow Warning" -msgstr "" +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "0보다 큰 값으로 설정하면 구멍 수평 확장이 작은 구멍에 점진적으로 적용되고(작은 구멍이 더 확장됨), 0으로 설정하면 구멍 수평 확장이 모든 구멍에 적용됩니다. 구멍 수평 확장 최대 직경보다 큰 구멍은 확장되지 않습니다." -msgctxt "material_flow_layer_0 description" -msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." -msgstr "첫번째 레이어에 대한 압출량 보상: 압출 된 재료의 양에 이 값을 곱합니다." +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Z 솔기 정렬" + +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "레이어의 각 패스의 시작점입니다. 연속 레이어의 패스가 같은 지점에서 시작되면 세로 솔기가 출력물에 표시 될 수 있습니다. 사용자가 지정한 위치 근처에서 이들을 정렬 할 때 이음선을 제거하는 것이 가장 쉽습니다. 무작위로 배치 될 때 경로의 시작점은 눈에 잘 띄지 않습니다. 최단 경로를 취할 때 프린팅이 빨라집니다." -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "첫 번째 레이어 하단 라인의 압출 보상" +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "사용자 지정" -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "내부채움 라인의 압출 보상입니다." +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "최단경로" -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "지지대 지붕 또는 바닥 라인의 압출 보상입니다." +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "랜덤" -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "프린트 상단 부분 라인의 압출 보상입니다." +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "날카로운 모서리" -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "프라임 타워 라인의 압출 보상입니다." +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Z 경계 위치" -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "스커트 또는 브림 라인의 압출 보상입니다." +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "레이어에서 각 부품의 프린팅이 시작할 위치 근처입니다." -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "지지대 바닥 라인의 압출 보상입니다." +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "후면 왼쪽" -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "지지대 지붕 라인의 압출 보상입니다." +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "뒤로" -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "지지대 구조 라인의 압출 보상입니다." +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "후면 오른쪽" -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "첫 번째 레이어의 가장 외측 벽 라인의 압출 보상입니다." +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "오른쪽" -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "가장 외측 벽 라인의 압출 보상입니다." +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "전면 오른쪽" -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "상면 가장 바깥쪽 벽 라인의 유량 보정" +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "전면" -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "가장 바깥쪽 라인을 제외한 모든 벽 라인에 대한 상면 벽 라인의 유량 보정" +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "전면 왼쪽" -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "상단/하단 라인의 압출 보상입니다." +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "왼쪽" -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "가장 외측 벽을 제외한 모든 벽 라인의 압출 보상입니다(단, 첫 번째 레이어에 한정)." +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "Z 솔기 X" -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "가장 외측 벽을 제외한 모든 벽 라인의 압출 보상입니다." +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "레이어에서 프린팅이 시작할 위치 근처의 X 좌표입니다." -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "벽 라인의 압출 보상입니다." +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Z 솔기 Y" -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "압출량 보상: 압출 된 재료의 양에 이 값을 곱합니다." +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "레이어에서 프린팅이 시작할 위치 근처의 Y 좌표입니다." -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "플루이드 모션 각도" +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "솔기 코너 환경 설정" -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "플루이드 모션 이동 거리" +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "모델 외곽선의 모서리가 이음선의 위치에 영향을 주는지 여부를 제어합니다. 이것은 모서리가 이음선 위치에 영향을 미치지 않는다는 것을 의미하지 않습니다. 이음선 숨김은 이음선이 안쪽 모서리에서 발생할 가능성을 높입니다. 이음선 노출은 이음선이 외부 모서리에서 발생할 가능성을 높입니다. 이음선 숨김 또는 노출은 이음선이 내부나 외부 모서리에서 발생할 가능성을 높입니다. 스마트 숨김은 내외부 모서리 모두 가능하지만, 적절하다면 내부 모서리를 더욱 빈번하게 선택합니다." -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "플루이드 모션 가까운 거리" +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "없음" -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "수평 퍼지 길이" +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "솔기 숨기기" -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "수평 퍼지 속도" +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "솔기 노출" -msgctxt "min_wall_line_width description" -msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." -msgstr "노즐 크기의 1~2배 정도의 얇은 구조물의 경우 모델의 두께에 맞게 선 너비를 변경해야 합니다. 이 설정은 벽에 허용되는 최소 선 너비를 제어합니다. N개의 벽이 넓고 N+1개의 벽이 좁은 일부 형상 두께에서는 N개의 벽에서 N+1개의 벽으로 전환하기 때문에, 최소 선 너비가 내재적으로 최대 선 너비를 결정합니다. 가장 넓을 가능성이 있는 벽 선은 최소 벽 선 너비의 두 배입니다." +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "솔기 숨기기 또는 노출" -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "전면" +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "스마트 숨김" -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "전면 왼쪽" +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "상대적 Z 솔기" -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "전면 오른쪽" +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "활성화 된 경우 z 솔기 좌표는 각 부품의 중심을 기준으로합니다. 비활성화 된 경우 좌표는 빌드 플레이트의 절대 위치를 정의합니다." -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "가득찬" +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "위 / 아래" -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "퍼지 스킨" +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "위 / 아래" -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "퍼지 스킨 밀도" +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "상단 표면 익스트루더" -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "부용 퍼지 스킨" +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "익스트루더는 최상층을 프린팅하는 데 사용됩니다. 이것은 다중 압출에 사용됩니다." -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "퍼지 스킨 포인트 거리" +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "상단 표면 스킨 레이어" -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "퍼지 스킨 두께" +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "최상층의 스킨 층의 수. 일반적으로 고품질의 표면을 생성하기 위해 맨위의 레이어 하나만 있으면 충분합니다." -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "Gcode 유형" +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "상단 표면 스킨 선 너비" -msgctxt "machine_end_gcode description" -msgid "" -"G-code commands to be executed at the very end - separated by \n" -"." -msgstr "" -"맨 마지막에 실행될 G 코드 명령 \n" -"." +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "프린팅 상단 부분의 한 줄 너비." -msgctxt "machine_start_gcode description" -msgid "" -"G-code commands to be executed at the very start - separated by \n" -"." -msgstr "" -"시작과 동시에형실행될 G 코드 명령어 \n" -"." +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "탑 표면 스킨 패턴" -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "재료의 GUID. 자동으로 설정됩니다." +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "최상위 레이어의 패턴." -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "갠트리 높이" +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "윤곽" -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "연동 구조 생성" +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "동심원의" -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "서포트 생성" +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "지그재그" -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "첫 번째 레이어의 서포트 내부채움 영역 내에서 브림을 생성합니다. 이 브림은 서포트 주변이 아니라 아래에 인쇄됩니다. 이 설정을 사용하면 빌드 플레이트에 대한 서포트력이 향상됩니다." +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "단면 상단 표면 순서" -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "모델과 서포트 사이에 조밀 한 인터페이스를 생성합니다. 이렇게 하면 모델이 프린팅 된 서포트 맨 위의 스킨과 모델의 위에있는 서포트 맨 아래에 스킨이 만들어집니다." +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "한 방향으로 주변 라인들과 항상 겹치게 하기 위해 상단 표면 라인들을 배치하여 프린트하십시오. 이는 프린트하는 데 더 많은 시간이 소모되지만 평평한 면이 보다 일관적으로 보이게 합니다." -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "서포트 바닥과 모델 사이에 조밀 한 슬래브를 생성하십시오. 그러면 모델과 지원 사이에 스킨이 만들어집니다." +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "상단 표면 스킨 라인 방향" -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "서포트 상단과 모델 사이에 조밀 한 슬래브를 생성하십시오. 그러면 모델과 서포트 사이에 스킨이 만들어집니다." +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "상단 표면 스킨 층이 선 또는 지그재그 패턴을 사용할 때 사용할 정수선 방향 리스트. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트은 대괄호로 묶여 있습니다. 기본값은 전통적인 기본 각도 (45도 및 135도)를 사용하는 빈 리스트입니다." -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "오버행이 있는 모델 부분을 서포트하는 구조를 생성합니다. 이러한 구조가 없으면 이런 부분이 프린팅 중에 붕괴됩니다." +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "상단/하단 익스트루더" -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "유리" +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "상단 및 하단 스킨 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "상단 표면을 한 번 더 이동하지만 재료를 아주 약간만 압출 성형합니다. 따라서 맨 위의 플라스틱이 녹아 부드러운 표면을 만듭니다. 노즐 챔버 내의 압력이 고압으로 유지되므로 표면상의 주름이 재료로 채워집니다." +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "상단/하단 두께" -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "점진적인 내부채움 단계 높이" +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "출력물의 상단/하단 레이어의 두께. 이 값을 레이어 높이로 나눈 값은 위쪽/아래쪽 레이어의 수 입니다." -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "점진적인 내부채움 단계" +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "상단 두께" -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "점진적 서포트 내부채움 단계 높이" +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "출력물의 상단 레이어의 두께. 이 값을 레이어 높이로 나눈 값이 최상위 레이어 수 입니다." -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "점진적 서포트 내부채움 단계" +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "상단 레이어" -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "최소 레이어 시간 때문에 늦춰진 속도로 프린트하는 경우 점차 이 온도로 낮춥니다." +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "출력물의 상단 레이어의 수. 상단 두깨로 계산을 할때 이 값은 벽 두께로 계산할 때 이 값은 반올림됩니다." -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "그리드" +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "바닥 두께" -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "그리드" +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "출력물의 아래쪽 레이어의 두께. 이 값을 레이어 높이로 나눈 값은 맨 아래 레이어의 수 입니다." -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "그리드" +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "하단 레이어" -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "격자" +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "아래층의 수. 바닥 두께로 계산을 할때 이 값은 벽 두께로 계산할 때 이 값은 반올림됩니다." -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "그리드" +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "초기 하단 레이어" -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" +msgctxt "initial_bottom_layers description" +msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "빌드 플레이트에서 위를 향하는 초기 하단 레이어 수. 하단 두께로 계산할 경우, 이 값이 전체 값으로 반올림됩니다." -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "외벽 그룹화" +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "상단/하단 패턴" -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "자이로이드" +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "상단/하단 레이어의 패턴." -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "자이로이드" +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "라인" -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "빌드 볼륨 온도 안정화" +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "동심원 형태" -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "히팅 빌드 플레이트가 있음" +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "지그재그" -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "가열 속도" +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "하단 패턴 초기 레이어" -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "가열 영역 길이" +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "첫 번째 레이어의 프린팅 아래쪽에 있는 패턴입니다." -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "드래프트 쉴드의 높이 제한. 이 높이 이상에서는 드래프트 쉴드가 프린팅되지 않습니다." +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "윤곽" -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "솔기 숨기기" +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "동심원의" -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "솔기 숨기기 또는 노출" +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "지그재그" -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "구멍 수평 확장" +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "상단/하단 다각형 연결" -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "구멍 수평 확장 최대 직경" +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "스킨 경로가 나란히 이어지는 상단/하단 스킨 경로를 연결합니다. 동심원 패턴의 경우 이 설정을 사용하면 이동 시간이 크게 감소하지만, 내부채움의 중간에 연결될 수 있기 때문에 이 기능은 상단 표면 품질을 저하시킬 수 있습니다." -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "이 수치보다 직경이 작은 구멍 및 부품 윤곽은 소형 피처 속도 기능을 이용해 프린트합니다." +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "단면 상단/하단 순서" -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "수평 확장" +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "한 방향으로 주변 라인들과 항상 겹치게 하기 위해 상단/하단 라인들을 배치하여 프린트하십시오. 이는 프린트하는 데 더 많은 시간이 소모되지만 평평한 면이 보다 일관적으로 보이게 합니다." -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "수평 확장 배율 수축 보정" +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "상단/하단 라인 길 방향" -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "가열 시 파단되기 전까지 필라멘트가 늘어날 수 있는 거리입니다." +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "상단/하단 레이어가 선 또는 지그재그 패턴을 사용할 때 사용할 방향 리스트입니다. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트는 대괄호 안에 들어 있습니다. 기본값은 빈 목록이고, 기본 각도(45도 및 135도)를 사용합니다." -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "흐름이 멈추기 전에 소재가 후퇴해야 하는 거리입니다." +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "작은 상단/하단 너비" -msgctxt "flow_rate_extrusion_offset_factor description" -msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." -msgstr "압출 속도 변화를 보상하기 위해 필라멘트를 이동하는 거리(1초 압출 시 필라멘트가 이동할 수 있는 거리의 백분율)." +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "작은 상단/하단 영역은 기본 상단/하단 패턴 대신 벽으로 채워집니다. 이렇게 하면 갑작스러운 모션을 방지하는 데 도움이 됩니다. 기본적으로 최상단(공기에 노출된) 레이어는 꺼져 있습니다('표면의 작은 상단/하단' 참조)." -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "필라멘트가 깔끔하게 파단되기 위해 후퇴해야 하는 거리입니다." +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "표면의 작은 상단/하단" -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "리트랙션 시 파단되기 직전까지 필라멘트가 후퇴해야 하는 속도입니다." +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "맨 위 스킨 레이어(공기에 노출됨)의 작은(최대 '작은 상단/하단 너비') 영역을 기본 패턴 대신 벽으로 채울 수 있습니다." -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "흐름을 방지하기 위해 필라멘트 스위치 중 소재가 후퇴해야 하는 속도입니다." +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Z 간격에 스킨 없음" -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "빈 스풀을 동일한 재료의 새로운 스풀로 교체한 후 재료를 압출하는 속도." +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "모델의 몇 가지 레이어에만 수직 간격이 작을 경우 보통 좁은 공간의 본 레이어 주위에도 스킨이 있어야 합니다. 수직 간격이 매우 작을 경우 스킨을 생성하지 않도록 이 설정을 활성화합니다. 이렇게 하면 프린팅 시간과 슬라이싱 시간은 개선되지만 기술적으로 내부채움이 공기 중에 노출된 상태로 남게 됩니다." -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "다른 재료로 전환 후 재료를 압출하는 속도." +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "여분의 스킨 벽 수" -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "재료를 안전하게 건식 보관함에 보관할 수 있는 기간." +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "위쪽/아래쪽 패턴의 가장 바깥 쪽 부분을 여러 동심 선으로 바꿉니다. 하나 또는 두 개의 선을 사용하면 내부채움 재료로 시작하는 지붕면이 향상됩니다." -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "X 방향으로 1 밀리미터를 압출에 필요한 스텝 모터의 스텝 수." +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "다림질 사용" -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "Y 방향으로 1 밀리미터를 압출에 필요한 스텝 모터의 스텝 수." +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "상단 표면을 한 번 더 이동하지만 재료를 아주 약간만 압출 성형합니다. 따라서 맨 위의 플라스틱이 녹아 부드러운 표면을 만듭니다. 노즐 챔버 내의 압력이 고압으로 유지되므로 표면상의 주름이 재료로 채워집니다." + +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "최상위 레이어에 다림질" -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "Z 방향으로 1 밀리미터를 압출에 필요한 스텝 모터의 스텝 수." +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "메쉬의 마지막 레이어에서만 다림질을 수행합니다. 이것은 낮은 레이어에서 매끄러운 표면 처리가 필요하지 않은 경우 시간을 절약 할 수 있습니다." -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "둘레를 따라 1밀리미터씩 피더 휠을 움직이는 스텝 모터의 스텝 수." +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "다림질 패턴" -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "빈 스풀을 동일한 재료의 새로운 스풀로 교체할 때 (필라멘트를 지나며) 노즐에서 이전 재료를 퍼지하기 위해 사용하는 재료 양." +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "윗면을 다림질 할 때 사용하는 패턴." -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "다른 재료로 전환할 때 (필라멘트를 지나며) 노즐에서 이전 재료를 퍼지하기 위해 사용하는 재료 양." +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "동심원" -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "프린터 시작 gcode 스크립트가 완료될 때 공유된 노즐 끝에서 각 익스트루더의 필라멘트가 수축된 것으로 가정하는 정도입니다. 이 값은 노즐 덕트의 공통 부분의 길이와 같거나 커야 합니다." +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "지그재그" -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "서포트 인터페이스와 서포트가 겹칠 때 상호 작용하는 방식으로, 현재 서포트 지붕에만 구현되어 있습니다." +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "단면 다림질 순서" -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "모델에 브랜치를 배치할 때 브랜치의 높이를 설정합니다. 이에 따라 서포트의 작은 얼룩이 방지됩니다. 브랜치가 서포트 지붕을 서포트하는 경우 이 설정은 무시됩니다." +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "한 방향으로 주변 라인들과 항상 겹치게 하기 위해 다림질 라인들을 배치하여 프린트하십시오. 이는 프린트하는 데 더 많은 시간이 소모되지만 평평한 면이 보다 일관적으로 보이게 합니다." -msgctxt "bridge_skin_support_threshold description" -msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." -msgstr "스킨 영역이 해당 영역의 비율 미만으로 생성되면 브릿지 설정을 사용하여 인쇄하십시오. 그렇지 않으면 일반 스킨 설정을 사용하여 인쇄됩니다." +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "다림질 라인 간격" -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "도구 경로 세그먼트가 일반적인 모션에서 이 각도보다 더 많이 벗어나면 평활화됩니다." +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "다림질 라인 사이의 거리." -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "이 옵션을 사용하면 다음 설정을 사용하여 에어 위의 두 번째 및 세 번째 레이어가 인쇄됩니다. 그렇지 않으면 해당 레이어는 일반 설정을 사용하여 인쇄됩니다." +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "다림질 압출량" -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "서로 다른 수의 벽들 사이를 빠르게 연속적으로 왔다 갔다 하며 전환되는 경우에는 전환하지 마십시오. 이 거리보다 서로 더 가까운 경우에는 전환을 제거하십시오." +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "다림질하는 동안 기본 스킨 라인을 기준으로 한 재료의 압출량. 노즐을 가득 채우면 윗면의 틈새를 채울 수 있지만 표면에 과도한 압출과 필라멘트 덩어리가 생길 수 있습니다." -msgctxt "raft_base_margin description" -msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "다림질 삽입" -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "래프트가 활성화 된 경우 래프트가 주어진 모델 주변의 추가 래프트 지역입니다. 이 여백을 늘리면 재료를 더 많이 사용하고 출력물을 적게 차지하면서 더 강력한 래프트가 만들어집니다." +msgctxt "ironing_inset description" +msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." +msgstr "모델 브림에서 떨어서포트 않는 거리. 메쉬 브림까지 다림질하면 출력물의 브림가 고르지 않을 수 있습니다." -msgctxt "raft_interface_margin description" -msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "다림질 속도" -msgctxt "raft_surface_margin description" -msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "상단 표면을 통과하는 속도." -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "메쉬 내의 겹치는 볼륨으로 인해 발생하는 내부 지오메트리를 무시하고 볼륨을 하나로 프린팅합니다. 이로 인해 의도하지 않은 내부 공동이 사라질 수 있습니다." +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "다림질 가속" -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "빌드 플레이트 온도 포함" +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "다림질이 수행되는 가속도." -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "재료의 온도 포함하기" +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "다림질 저크(Jerk)" -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "중복" +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "다림질을하는 동안 최대 순간 속도 변화." -msgctxt "infill description" -msgid "Infill" -msgstr "내부채움" +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "스킨 겹침 비율" -msgctxt "infill label" -msgid "Infill" -msgstr "내부채움" +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "벽과 스킨-센터라인(종점) 사이의 겹침 양을 스킨 라인과 가장 안쪽 벽의 라인 폭 비율로 조정하십시오. 약간의 겹침으로 벽이 스킨에 확실하게 연결될 수 있습니다. 동일한 스킨 및 벽 라인-폭을 고려할 때 비율이 50%가 넘는다면, 그 지점에서 스킨-익스트루더의 노즐 위치가 이미 벽 중앙을 지나 도달할 수 있기 때문에 이미 스킨이 벽을 지나치고 있을 수 있습니다." -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "내부채움 가속도" +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "스킨 겹침" -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "벽 앞에 내부채움" +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "벽과 스킨-센터라인(종점) 사이의 겹침 양을 조정하십시오. 약간의 겹침으로 벽이 스킨에 확실하게 연결될 수 있습니다. 동일한 스킨 및 벽 라인-폭을 고려할 때 값이 벽 폭의 절반을 넘는다면, 그 지점에서 스킨-익스트루더의 노즐 위치가 이미 벽 중앙을 지나 도달할 수 있기 때문에 이미 스킨이 벽을 지나치고 있을 수 있습니다." -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "내부채움 밀도" +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "스킨 제거 폭" -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "내부채움 익스트루더" +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "제거 할 외부스킨 영역의 가장 큰 너비. 이 값보다 작은 모든 스킨 영역은 사라집니다. 이렇게하면 모델의 경사면에서 위쪽 / 아래쪽 스킨을 프린팅하는 데 소요되는 시간과 재료의 양을 제한하는 데 도움이 됩니다." -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "내부채움 압출량" +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "상단 스킨 제거 폭" -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Jerk 내부채움" +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "제거 할 상단 스킨 영역의 가장 큰 너비. 이 값보다 작은 모든 스킨 영역은 사라집니다. 이렇게 하면 모델의 경사면에서 상단 스킨을 프린팅하는 데 소요되는 시간과 재료의 양을 제한하는 데 도움이됩니다." -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "내부채움 층 두께" +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "밑면 스킨 제거 폭" -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "내부채움 선 방향" +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "제거 할 바닥 스킨 영역의 최대 너비. 이 값보다 작은 모든 스킨 영역은 사라집니다. 이렇게하면 모델의 경사면에서 밑면 스킨을 프린팅하는 데 소요되는 시간과 재료의 양을 제한하는 데 도움이됩니다." -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "내부채움 선간 거리" +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "스킨 확장 거리" -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "내부채움 선 승수" +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "스킨이 내부채움으로 확장되는 거리입니다. 값이 높을수록 스킨이 내부채움 패턴에 더 잘 부착되고 인접 레이어의 벽이 스킨에 잘 밀착됩니다. 값이 낮을수록 사용 될 재료의 양이 절약됩니다." -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "내부채움 선 폭" +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "윗면 스킨 확장 거리" -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "메쉬 내부채움" +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "상단 스킨의 거리가 내부채움으로 확장됩니다. 값이 높을수록 스킨이 내부채움 패턴에 더 잘 부착되며 위 레이어의 벽이 스킨에 잘 밀착됩니다. 값이 낮을수록 사용 된 재료의 양이 절약됩니다." -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "충진물 오버행 각도" +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "밑면 스킨 확장 거리" -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "내부채움 오버랩" +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "바닥 스킨의 거리가 내부채움으로 확장됩니다. 값이 높을수록 스킨가 내부채움 패턴에 더 잘 붙어 스킨가 아래 층의 벽에 잘 밀착됩니다. 값이 낮을수록 사용 된 재료의 양이 절약됩니다." -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "내부채움 오버랩 비율" +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "확장을 위한 최대 스킨 각" -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "내부채움 패턴" +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "이 설정보다 큰 각도로 객체의 상단 및 또는 하단 표면은 위쪽/아래쪽 스킨이 확장되지 않습니다. 이렇게하면 모델 표면이 수직 경사가 거의 없을 때 생성되는 좁은 스킨 영역을 확장하지 않아도됩니다. 0도의 각도는 수평이며 스킨의 확장을 유발하지 않고, 90도의 각도는 수직이며 모든 스킨의 확장을 유발합니다." -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "내부채움 속도" +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "확장을 위한 최소 스킨 폭" -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "충진물 지지대" +msgctxt "min_skin_width_for_expansion description" +msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." +msgstr "이보다 좁은 스킨 영역은 확장되지 않습니다. 이렇게하면 모델 표면이 수직에 가까운 기울기를 가질 때 생성되는 좁은 스킨 영역을 확장하지 않아도됩니다." -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "내부채움재 이동 최적화" +msgctxt "infill label" +msgid "Infill" +msgstr "내부채움" -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "내부채움 거리" +msgctxt "infill description" +msgid "Infill" +msgstr "내부채움" -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "내부채움 X 오프셋" +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "내부채움 익스트루더" + +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "내부채움용 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "내부채움 Y 오프셋" +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "내부채움 밀도" -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "초기 하단 레이어" +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "출력물의 내부채움을 조절합니다." -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "초기 팬 속도" +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "내부채움 선간 거리" -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "초기 레이어 가속" +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "프린팅 된 내부채움 선 사이의 거리. 이 설정은 내부채움 밀도 및 내부채움 선 너비로 계산됩니다." -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "첫 번째 레이어 하단 압출량" +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "내부채움 패턴" -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "초기 레이어 직경" +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "프린트 내부채움 재료의 패턴입니다. 선형과 지그재그형 내부채움이 서로 다른 레이어에서 방향을 바꾸므로 재료비가 절감됩니다. 격자, 삼각형, 트라이 헥사곤 (tri-hexagon), 큐빅, 옥텟 (octet), 쿼터 큐빅, 크로스, 동심원 패턴이 레이어마다 완전히 프린트됩니다. 자이로이드 (Gyroid), 큐빅, 쿼터 큐빅, 옥텟 (octet) 내부채움이 레이어마다 변경되므로 각 방향으로 힘이 더 균등하게 분산됩니다. 라이트닝 내부채움이 객체의 천장만 서포트하여 내부채움을 최소화합니다." -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "첫번째 레이어 압출량" +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "그리드" -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "첫번째 레이어 높이" +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "라인" -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "첫번째 레이어 수평 확장" +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "삼각형" -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "첫 번째 레이어 내벽 압출량" +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "삼-육각형" -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "초기 레이어 Jerk" +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "입방체" -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "초기 레이어 라인 폭" +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "입방체 세분" -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "첫 번째 레이어 외벽 압출량" +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "옥텟" -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "초기 레이어 프린팅 가속" +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "쿼터 큐빅" -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "초기 레이어 프린팅 Jerk" +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "동심원" -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "초기 레이어 프린팅 속도" +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "지그재그" -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "초기 레이어 속도" +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "십자형" -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "초기 레이어 서포트 선 거리" +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "십자형 3D" -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "초기 레이어 이동 가속도" +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "자이로이드" -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "초기 레이어 이동 Jerk" +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "라이트닝" -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "초기 레이어 이동 속도" +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "내부채움 선 연결" -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "초기 레이어 Z 겹침" +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "내벽의 형태를 따라가는 선을 사용하여 내부채움 패턴과 내벽이 만나는 끝을 연결합니다. 이 설정을 사용하면 내부채움이 벽에 더 잘 붙게되어 내부채움이 수직면의 품질에 미치는 영향을 줄일 수 있습니다. 이 설정을 해제하면 사용되는 재료의 양이 줄어듭니다." -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "초기 프린팅 온도" +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "내부채움 다각형 연결" -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "내벽 가속도" +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "스킨 경로가 나란히 이어지는 내부채움 경로를 연결합니다. 여러 개의 폐다각형으로 구성되는 내부채움 패턴의 경우 이 설정을 사용하면 이동 시간이 크게 감소합니다." -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "내벽 익스트루더" +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "내부채움 선 방향" -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "내벽 Jerk" +msgctxt "infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." +msgstr "사용할 라인 방향 리스트. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트은 대괄호 안에 들어 있습니다. 기본값은 기본 각도 (선 및 지그재그 패턴의 경우 45 및 135도, 다른 모든 패턴의 경우 45도)를 사용하는 빈 리스트입니다." -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "내벽 속도" +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "내부채움 X 오프셋" -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "내벽 압출량" +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "내부채움 패턴이 X축을 따라 이 거리만큼 이동합니다." -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "내부 벽 선 너비" +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "내부채움 Y 오프셋" -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "외벽의 경로에 삽입이 적용됩니다. 외벽이 노즐보다 작고 내벽 다음에 프린팅 된 경우 이 옵셋을 사용하여 노즐의 구멍이 모델 외부가 아닌 내벽과 겹치도록하십시오." +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "내부채움 패턴이 Y축을 따라 이 거리만큼 이동합니다." -msgctxt "brim_location option inside" -msgid "Inside Only" -msgstr "" +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "무작위 충전 시작" -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "내부에서 외부로" +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "가장 먼저 프린트되는 충전 선을 무작위로 결정합니다. 이렇게 하면 특정 세그먼트가 가장 강한 세그먼트가 되는 일이 없지만, 추가 이동이 발생하지 않게 됩니다." -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "인터페이스 라인 우선" +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "내부채움 선 승수" -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "인터페이스 우선" +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "각 내부채움 선을 여러 개의 선으로 변환합니다. 추가되는 선은 다른 선을 교차하지 않고, 다른 선을 피해 변환됩니다. 내부채움을 빽빽하게 만들지만, 인쇄 및 재료 사용이 증가합니다." -msgctxt "prime_tower_mode option interleaved" -msgid "Interleaved" -msgstr "" +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "여분의 내부채움 벽 수" -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "연동 빔 레이어 수" +msgctxt "infill_wall_line_count description" +msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "내부채움 영역 주변에 여분의 벽을 추가합니다. 이러한 벽은 상단/하단 스킨 라인이 늘어지는 것을 줄여줄 수 있습니다. 일부 여분 재료를 사용해도 같은 품질을 유지하는 데 필요한 필요한 상단/하단 스킨 층이 감소한다는 의미입니다." +"이 기능을 올바르게 구성하는 경우 내부채움 다각형 연결과 함께 사용해 이동 또는 리트랙션없이 모든 내부채움을 단일 돌출 경로에 연결할 수 있습니다." -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "연동 빔 너비" +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "입방 세분 쉘" -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "연동 경계 회피" +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "모델의 경계를 확인하기 위해 각 큐브의 중심에서 반경을 더하여 이 큐브를 세분화할지 여부를 결정합니다. 값이 클수록 모델의 경계 근처에 작은 큐브가 더 두껍게 나옵니다." -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "연동 깊이" +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "내부채움 오버랩 비율" -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "연동 구조 방향" +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "내부채움 라인 폭의 비율로 나타낸 내부채움재와 벽 사이의 오버랩 양. 약간의 오버랩으로 벽이 내부채움과 확실하게 연결됩니다." -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "최상위 레이어에 다림질" +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "내부채움 오버랩" -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "다림질 가속" +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "내부채움과 벽 사이의 겹침 정도. 약간 겹치면 벽이 내부채움에 단단히 연결됩니다." -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "다림질 압출량" +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "내부채움 거리" -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "다림질 삽입" +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "각 내부채움 라인 다음에 삽입 된 이동 거리. 내부채움 스틱을 벽에 더 잘 붙게 합니다. 이 옵션은 내부채움 겹침과 유사하지만 압출이 없고 충전 선의 한쪽 끝에서만 사용됩니다." -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "다림질 저크(Jerk)" +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "내부채움 층 두께" -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "다림질 라인 간격" +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "내부채움물 층의 두께. 이 값은 항상 레이어 높이의 배수이어야 하며 반올림됩니다." -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "다림질 패턴" +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "점진적인 내부채움 단계" -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "다림질 속도" +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "상단면 아래로 갈 때 내부채움 밀도를 반으로 줄이는 횟수입니다. 상단면에 더 가까운 영역은 내부채움율 농도가 더 높은 밀도를 갖습니다." -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "센터 원점" +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "점진적인 내부채움 단계 높이" -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "서포트 재료임" +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "밀도의 절반으로 전환하기 전에 주어진 밀도에서 내부채움의 높이." -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "이 소재는 가열 시 깔끔하게 분리되는 유형(결정형)입니까? 아니면 길게 얽힌 폴리머 체인을 생성하는 유형(비결정형)입니까?" +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "벽 앞에 내부채움" -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "이 재료는 일반적으로 프린팅 중에 서포트 재료로 사용됩니다." +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "벽을 프린팅하기 전에 내부채움물을 프린팅하기. 벽을 먼저 프린팅하면 벽이 더 정확해질 수 있지만 겹침으로 프린팅이 매끄럽지 않습니다. 내부채움을 먼저 프린팅하면 더 튼튼한 벽이 생기지만 내부채움 패턴이 때로 표면을 통해 보일 수 있습니다." -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "부품의 윤곽만 지터하고 부품의 구멍은 지터하지 않습니다." +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "최소 내부채움 지역" -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "끊긴 면 유지" +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "이보다 작은 내부채움 영역을 생성하지 마십시오 (대신 스킨 사용)." -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "층 높이" +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "충진물 지지대" -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "레이어 시작 X" +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "모델 상단이 지지가 되어야 하는 경우에만 충진물 구조를 인쇄합니다. 이 기능을 사용하면 인쇄 시간 및 재료 사용이 감소하지만, 개체 강도가 균일하지 않습니다." -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "레이어 시작 Y" +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "충진물 오버행 각도" -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "기본 래프트 레이어의 레이어 두께. 이것은 프린터 빌드 플레이트에 단단히 붙어있는 두꺼운 층이어야합니다." +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "충진물이 추가되는 내부 오버행의 최소 각도. 0°에서는 개체가 충진물로 완전히 채워지지만, 90°에서는 충진물이 공급되지 않습니다." -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "중간 래프트 층의 층 두께." +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "스킨 에지의 두께 지원" -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "상단 래프트 레이어의 레이어 두께." +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "스킨 에지를 지원하는 추가 내부채움의 두께." -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "서포트 구조를 쉽게 분리 할 수 있도록 N 밀리미터마다 서포트선 사이를 연결합니다." +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "스킨 에지의 레이어 지원" -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "왼쪽" +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "스킨 에지를 지원하는 내부채움 레이어의 수." -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "리프트 헤드" +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "라이트닝 내부채움 서포트 각도" -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "라이트닝" +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "라이트닝 내부채움 레이어가 그 위에 있는 것을 서포트해야 할 부분을 결정합니다. 레이어 두께가 주어진 각도로 측정됩니다." msgctxt "lightning_infill_overhang_angle label" msgid "Lightning Infill Overhang Angle" msgstr "라이트닝 내부채움 오버행 각도" +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "라이트닝 내부채움 레이어가 레이어 위에 있는 모델을 서포트해야 할 부분을 결정합니다. 두께가 주어진 각도로 측정됩니다." + msgctxt "lightning_infill_prune_angle label" msgid "Lightning Infill Prune Angle" msgstr "라이트닝 내부채움 가지치기 각도" +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "내부채움 선의 종점이 재료를 절약하기 위해 단축됩니다. 이 설정은 해당 선의 종점에 대한 오버행(경사면)의 각도입니다." + msgctxt "lightning_infill_straightening_angle label" msgid "Lightning Infill Straightening Angle" msgstr "라이트닝 내부채움 정리 각도" -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "라이트닝 내부채움 서포트 각도" - -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "브랜치 도달 거리 제한" - -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "각 브랜치가 서포트하는 지점에서 뻗어 나가는 거리를 제한합니다. 이렇게 하면 서포트가 더 견고해질 수 있지만, 브랜치의 양이 늘어나므로 재료 사용량/프린트 시간이 늘어납니다." - -msgctxt "bv_temp_warn_limit description" -msgid "Limit on Build Volume Temperature warning for detection." -msgstr "" - -msgctxt "bv_temp_anomaly_limit description" -msgid "Limit on Build Volume temperature Anomaly for detection." -msgstr "" - -msgctxt "print_temp_anomaly_limit description" -msgid "Limit on Print Temperature anomaly for detection." -msgstr "" - -msgctxt "print_temp_warn_limit description" -msgid "Limit on Print temperature warning for detection." -msgstr "" - -msgctxt "flow_anomaly_limit description" -msgid "Limit on flow anomaly for detection." -msgstr "" - -msgctxt "flow_warn_limit description" -msgid "Limit on the flow warning for detection." -msgstr "" - -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "이 메쉬의 볼륨을 다른 메쉬 내로 제한합니다. 이 기능을 사용하면 다른 설정과 전체 익스트루더로 하나의 메쉬 프린팅 영역을 만들 수 있습니다." - -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "제한된" - -msgctxt "line_width label" -msgid "Line Width" -msgstr "선의 두께" - -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "라인" - -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "윤곽" - -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "라인" +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "내부채움 선이 인쇄 시간을 절약하기 위해 정리됩니다. 이는 내부채움 선 길이 전체에 허용되는 오버행(경사면)의 최대 각도입니다." -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "라인" +msgctxt "material label" +msgid "Material" +msgstr "재료" -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "라인" +msgctxt "material description" +msgid "Material" +msgstr "재료" -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "라인" +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "기본 프린팅 온도" -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "라인" +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "프린팅에 사용되는 기본 온도입니다. 이것은 재료의 \"기본\"온도 이여야 합니다. 다른 모든 프린팅 온도는 이 값을 기준으로 오프셋을 사용해야합니다" -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "윤곽" +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "빌드 볼륨 온도" -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "프린팅되는 환경의 온도입니다. 이 값이 0인 경우 빌드 볼륨 온도는 조정되지 않습니다." -msgctxt "machine_settings label" -msgid "Machine" -msgstr "기기" +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "프린팅 온도" -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "기기 깊이" +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "프린팅에 사용되는 온도." -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "머신 헤드 및 팬 폴리곤" +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "첫번째 레이어의 프린팅 온도" -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "기기 높이" +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer." +msgstr "첫 레이어 인쇄에 사용되는 온도입니다." -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "기기 유형" +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "초기 프린팅 온도" -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "기기 너비" +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "프린팅이 시작될 수 있는 프린팅 온도까지 가열하는 동안의 최소 온도." -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "" +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "최종 프린팅 온도" -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "오버행이 프린팅되도록 설정" +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "프린팅 종료 직전에 냉각이 시작될 온도입니다." -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "서로 닿는 메쉬가 조금 겹치게 만듭니다. 이것은 그들을 더 잘 묶는 것입니다." +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "압출 냉각 속도 조절기" -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "오버행보다 하단에서 지지대 영역을 작게 만듭니다." +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "압출하는 동안 노즐이 냉각되는 추가적인 속도. 압출하는 동안 가열 될 때 상실되는 열 상승 속도를 나타 내기 위해 동일한 값이 사용됩니다." -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "서포트 메쉬 아래의 모든 부분을 지원하여서 서포트 메쉬에 오버행이 없습니다." +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "기본 빌드 플레이트 온도" -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "익스투루더의 위치를 헤드의 마지막으로 알려진 위치에 상대위치가 아닌 절대 위치로 만듭니다." +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "히팅 빌드 플레이트에 사용되는 기본 온도입니다. 이것은 재료의 \"기본\"온도입니다. 다른 모든 프린팅 온도는 이 값을 기준으로 오프셋을 사용해야합니다" -msgctxt "layer_0_z_overlap description" -msgid "" -"Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" -"It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" -msgstr "" +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "빌드 플레이트 온도" -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "메쉬를 3D 프린팅에 보다 맞춤화시킵니다." +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "내열 빌드 플레이트용으로 사용된 온도 0인 경우 빌드 플레이트가 가열되지 않습니다." -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "초기 레이어의 빌드 플레이트 온도" -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "첫 번째 레이어에서 내열 빌드 플레이트에 사용되는 온도. 0인 경우, 빌드 플레이트가 첫 번째 레이어에서 가열되지 않습니다." -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (부피 측정법)" +msgctxt "material_adhesion_tendency label" +msgid "Adhesion Tendency" +msgstr "점착 성항" -msgctxt "material description" -msgid "Material" -msgstr "재료" +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "표면에 점착되는 성항입니다." -msgctxt "material label" -msgid "Material" -msgstr "재료" +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "서피스 에너지" -msgctxt "material_brand label" -msgid "Material Brand" -msgstr "" +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "표면의 에너지입니다." -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "재료 GUID" +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "확장 배율 수축 보상" -msgctxt "material_type label" -msgid "Material Type" -msgstr "" +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "냉각됨에 따라 재료 수축을 보상하기 위해 모델이 이 배율로 확장됩니다." -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "와이프 사이의 재료 볼륨" +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "수평 확장 배율 수축 보정" -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "수축이 없을 때 최대 빗질 거리" +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "냉각됨에 따라 재료의 수축을 보정하기 위해 모델이 이 배율로 XY 방향으로(수평으로) 확장됩니다." -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "최대 가속도 X" +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "수직 확장 배율 수축 보정" -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Y 방향 최대 가속도" +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "냉각됨에 따라 재료 수축을 보정하기 위해 모델이 이 배율로 Z 방향으로(수직으로) 확장됩니다." -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Z 방향 최대 가속도" +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "결정형 소재" -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "최대 브랜치 각도" +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "이 소재는 가열 시 깔끔하게 분리되는 유형(결정형)입니까? 아니면 길게 얽힌 폴리머 체인을 생성하는 유형(비결정형)입니까?" -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "최대 편차" +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "흐름 방지 리트랙션 위치" -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "최대 압출 영역 편차" +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "흐름이 멈추기 전에 소재가 후퇴해야 하는 거리입니다." -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "최대 팬 속도" +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "흐름 방지 리트랙션 속도" -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "최대 필라멘트 가속도" +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "흐름을 방지하기 위해 필라멘트 스위치 중 소재가 후퇴해야 하는 속도입니다." -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "최대 모델 각도" +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "파단 준비 리트랙션 위치" -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "최대 오버행 홀 영역" +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "가열 시 파단되기 전까지 필라멘트가 늘어날 수 있는 거리입니다." -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "최대 파크 기간" +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "파단 준비 리트랙션 속도" -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "최대 해상도" +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "리트랙션 시 파단되기 직전까지 필라멘트가 후퇴해야 하는 속도입니다." -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "최대 리트렉션 수" +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "준비 온도 파단" -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "확장을 위한 최대 스킨 각" +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "재료를 퍼지하는 데 사용하는 온도는 가능한 한 가장 높은 프린팅 온도와 대략 같아야 합니다." -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "최대 속도 E" +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "파단 리트랙션 위치" -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "X 방향 최대 속도" +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "필라멘트가 깔끔하게 파단되기 위해 후퇴해야 하는 거리입니다." -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Y 방향 최대 속도" +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "파단 리트랙션 속도" -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Z 방향 최대 속도" +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "필라멘트가 깔끔하게 파단되기 위해 후퇴해야 하는 속도입니다." -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "최대 타워 지지 직경" +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "파단 온도" -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "최대 이동 해상도" +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "필라멘트가 깔끔하게 파단되는 온도입니다." -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "X 방향 모터의 최대 가속도" +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "수평 퍼지 속도" -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Y 방향 모터의 최대 가속도." +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "다른 재료로 전환 후 재료를 압출하는 속도." + +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "수평 퍼지 길이" -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Z 방향 모터의 최대 가속도." +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "다른 재료로 전환할 때 (필라멘트를 지나며) 노즐에서 이전 재료를 퍼지하기 위해 사용하는 재료 양." -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "필라멘트를 구동하는 모터의 최대 가속도." +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "필라멘트 끝의 퍼지 속도" -msgctxt "bridge_sparse_infill_max_density description" -msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." -msgstr "희박하다고 여겨지는 내부채움의 최대 밀도 희박한 내부채움의 스킨은 지원되지 않는 것으로 간주되므로 브릿지 스킨으로 취급할 수 있습니다." +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "빈 스풀을 동일한 재료의 새로운 스풀로 교체한 후 재료를 압출하는 속도." -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "특수 지지대 타워에 의해서 지지될 작은 영역의 X/Y 방향의 최대 직경입니다." +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "필라멘트 끝의 퍼지 길이" -msgctxt "max_extrusion_before_wipe description" -msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." -msgstr "다른 노즐 와이프를 시작하기 전에 압출 성형할 수 있는 최대 재료입니다. 이 값이 레이어에 필요한 재료의 양보다 작으면 이 레이어에서는 아무런 효과가 없습니다. 즉, 레이어당 한번 와이프하는 것으로 제한됩니다." +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "빈 스풀을 동일한 재료의 새로운 스풀로 교체할 때 (필라멘트를 지나며) 노즐에서 이전 재료를 퍼지하기 위해 사용하는 재료 양." -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "중복된 메쉬 합치기" +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "최대 파크 기간" -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "메쉬 수정" +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "재료를 안전하게 건식 보관함에 보관할 수 있는 기간." -msgctxt "mesh_position_x label" -msgid "Mesh Position X" -msgstr "메쉬 위치 X" +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "로드 이동 요인 없음" -msgctxt "mesh_position_y label" -msgid "Mesh Position Y" -msgstr "메쉬 위치 Y" +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "피더와 노즐 챔버 사이에 필라멘트가 압축되는 양을 나타내는 요소, 필라멘트 전환을 위해 재료를 움직이는 범위를 결정하는 데 사용됨." -msgctxt "mesh_position_z label" -msgid "Mesh Position Z" -msgstr "메쉬 위치 Z" +msgctxt "material_flow label" +msgid "Flow" +msgstr "공급량" -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "메쉬 처리 랭크" +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "압출량 보상: 압출 된 재료의 양에 이 값을 곱합니다." -msgctxt "mesh_rotation_matrix label" -msgid "Mesh Rotation Matrix" -msgstr "메쉬 회전 행렬" +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "벽 압출량" -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "중간" +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "벽 라인의 압출 보상입니다." -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "최소 몰드 너비" +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "외벽 압출량" -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "최소 대기 시간" +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "가장 외측 벽 라인의 압출 보상입니다." -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "최소 브리지 벽 길이" +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "내벽 압출량" -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "최소 짝수 벽 선 너비" +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "가장 외측 벽을 제외한 모든 벽 라인의 압출 보상입니다." -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "최소 압출 영역" +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "상면 가장 바깥 벽의 유량" -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "최소 피처 크기" +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "상면 가장 바깥쪽 벽 라인의 유량 보정" -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "최소 이송 속도" +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "상면 내벽 흐름" -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "모델에 대한 최소 높이" +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "가장 바깥쪽 라인을 제외한 모든 벽 라인에 대한 상면 벽 라인의 유량 보정" -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "최소 내부채움 지역" +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "상단/하단 압출량" -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "최소 레이어 시간" +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "상단/하단 라인의 압출 보상입니다." -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "최소 홀수 벽 선 너비" +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "상단 표면 스킨 압출량" -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "최소 다각형 둘레" +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "프린트 상단 부분 라인의 압출 보상입니다." -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "확장을 위한 최소 스킨 폭" +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "내부채움 압출량" -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "최저 속도" +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "내부채움 라인의 압출 보상입니다." -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "최소 서포트 지역" +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "스커트/브림 압출량" -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "최소 서포트 바닥 지역" +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "스커트 또는 브림 라인의 압출 보상입니다." -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "최소 서포트 인터페이스 지역" +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "지지대 압출량" -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "최소 서포트 지붕 지역" +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "지지대 구조 라인의 압출 보상입니다." -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "최소 서포트 X/Y 거리" +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "지지대 인터페이스 압출량" -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "얇은 벽 선 최소 너비" +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "지지대 지붕 또는 바닥 라인의 압출 보상입니다." -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "코스팅(Coasting) 최소 양" +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "지지대 지붕 압출량" -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "최소 벽 선 너비" +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "지지대 지붕 라인의 압출 보상입니다." -msgctxt "minimum_interface_area description" -msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "지원 인터페이스 다각형의 최소 영역 크기입니다. 이 값보다 작은 영역을 갖는 다각형은 정상적인 지원으로 인쇄됩니다." +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "지지대 바닥 압출량" -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "서포트 영역에 대한 최소 지역 크기. 이 값보다 작은 지역을 갖는 영역은 생성되지 않습니다." +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "지지대 바닥 라인의 압출 보상입니다." -msgctxt "minimum_bottom_area description" -msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "지원 바닥의 최소 면적 크기입니다. 이 값보다 작은 영역을 갖는 다각형은 정상적인 지원으로 인쇄됩니다." +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "프라임 타워 압출량" -msgctxt "minimum_roof_area description" -msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "서포트 지붕에 대한 최소 면적 크기입니다. 이 값보다 작은 영역을 갖는 다각형은 정상적인 지원으로 인쇄됩니다." +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "프라임 타워 라인의 압출 보상입니다." -msgctxt "min_feature_size description" -msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." -msgstr "얇은 피처의 최소 두께 이 값보다 더 얇은 모델 피처는 프린트되지 않으며, 최소 피처 크기보다 더 두꺼운 피처는 최소 벽 선 너비로 넓어집니다." +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "첫번째 레이어 압출량" -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "원추형서포트 영역의 베이스가 축소되는 최소 너비. 폭이 좁으면 불안정한 서포트 구조가 생길 수 있습니다." +msgctxt "material_flow_layer_0 description" +msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." +msgstr "첫번째 레이어에 대한 압출량 보상: 압출 된 재료의 양에 이 값을 곱합니다." -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "몰드" +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "첫 번째 레이어 내벽 압출량" + +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "가장 외측 벽을 제외한 모든 벽 라인의 압출 보상입니다(단, 첫 번째 레이어에 한정)." -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "몰드 각도" +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "첫 번째 레이어 외벽 압출량" -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "몰드 지붕 높이" +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "첫 번째 레이어의 가장 외측 벽 라인의 압출 보상입니다." -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "단면 다림질 순서" +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "첫 번째 레이어 하단 압출량" -msgctxt "raft_surface_monotonic label" -msgid "Monotonic Raft Top Surface Order" -msgstr "" +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "첫 번째 레이어 하단 라인의 압출 보상" -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "단면 상단 표면 순서" +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "대기 온도" -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "단면 상단/하단 순서" +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "다른 노즐이 현재 프린팅에 사용될 경우 노즐 온도." -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "여러 개의 스커트 라인을 사용하여 작은 모델에 더 잘 압출 성형 할 수 있습니다. 이것을 0으로 설정하면 스커트가 비활성화됩니다." +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "서포트 재료임" -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "첫 번째 레이어의 라인 폭 승수입니다. 이것을 늘리면 베드 접착력을 향상시킬 수 있습니다." +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "이 재료는 일반적으로 프린팅 중에 서포트 재료로 사용됩니다." -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "로드 이동 요인 없음" +msgctxt "speed label" +msgid "Speed" +msgstr "속도" -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Z 간격에 스킨 없음" +msgctxt "speed description" +msgid "Speed" +msgstr "속도" -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "모델을 프린팅하는 새로운 방법들." +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "프린팅 속도" -msgctxt "adhesion_type option none" -msgid "None" -msgstr "None" +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "프린팅 속도." -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "없음" +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "내부채움 속도" -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "표준" +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "내부채움이 프린팅되는 속도." -msgctxt "prime_tower_mode option normal" -msgid "Normal" -msgstr "" +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "벽 속도" -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "표준" +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "벽이 프린팅되는 속도입니다." -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "일반적으로 큐라(Cura)는 메쉬의 작은 구멍을 꿰매 붙이고 큰 구멍이있는 레이어의 부분을 제거하려고합니다. 이 옵션을 활성화하면 스티칭 할 수 없는 파트가 유지됩니다. 이 옵션은 다른 모든 설정으로 올바른 GCode를 생성하지 못할 때 최후의 수단으로 사용해야 합니다." +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "외벽 속도" -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "스킨에 없음" +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "가장 바깥 쪽 벽이 프린팅되는 속도입니다. 외벽을 더 낮은 속도로 프린팅하면 최종 스킨 품질이 향상됩니다. 그러나 내벽 속도와 외벽 속도 사이에 큰 차이가있을 경우 부정적인 방식으로 품질에 영향을 미칩니다." -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "외부 표면에 없음" +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "내벽 속도" -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "노즐 각도" +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "모든 내부 벽이 프린팅되는 속도입니다. 내벽을 외벽보다 빠르게 프린팅하면 프린팅 시간이 단축됩니다. 외벽 속도와 충전 속도 사이에서 이것을 설정하는 것이 효과적입니다." -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "노즐 지름" +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "상면 외벽 속도" -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "노즐이 위치할 수 없는 구역" +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "상면의 가장 바깥 벽이 인쇄되는 속도" -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "노즐 ID" +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "상면 내벽 속도" -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "노즐 길이" +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "상면 내벽이 인쇄되는 속도" -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "노즐 스위치 엑스트라 프라임 양" +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "상단 표면 스킨 속도" -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "노즐 스위치 프라임 속도" +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "상단 표면 스킨 층이 프린팅되는 속도." -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "노즐 스위치 후퇴 속도" +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "상단/하단 속도" -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "노즐 스위치 리트렉션 거리" +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "위쪽/아래쪽 레이어가 프린팅되는 속도입니다." -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "노즐 스위치 리트렉션 속도" +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "서포트 속도" -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "익스트루더의 수" +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "서포트 구조가 프린팅되는 속도입니다. 서포트를 고속으로 프린팅하면 프린팅 시간을 크게 단축시킵니다. 서포트 구조체의 표면 품질은 프린팅 후에 제거되므로 중요하지 않습니다." -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "활성화된 익스트루더의 수" +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "서포트 내부채움 속도" -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "느리게 프린팅할 레이어의 수" +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "서포트의 내부채움이 프린팅되는 속도. 내부채움을 저속으로 프린팅하면 안정성이 향상됩니다." -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "사용 가능한 익스트루더 수; 소프트웨어로 자동 설정" +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "서포트 인터페이스 속도" -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "익스트루더의 수. 익스트루더는 피더, 보우 덴 튜브 및 노즐의 조합입니다." +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "서포트의 지붕과 바닥이 프린팅되는 속도. 프린팅 속도를 느리게하면 오버행 품질이 향상 될 수 있습니다." -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "브러시 전체에 노즐을 이동하는 횟수입니다." +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "서포트 상단 속도" -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "상단면 아래로 갈 때 내부채움 밀도를 반으로 줄이는 횟수입니다. 상단면에 더 가까운 영역은 내부채움율 농도가 더 높은 밀도를 갖습니다." +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "서포트의 지붕이 프린팅되는 속도입니다. 프린팅 속도를 느리게하면 오버행 품질이 향상 될 수 있습니다." -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "상단 표면 아래로 올라갈 때 서포트 채움 밀도를 반으로 줄이는 횟수입니다. 상단 표면에 더 가까운 영역은 서포트 채움 밀도까지 더 높은 밀도를 갖습니다." +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "서포트 바닥 속도" -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "옥텟" +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "서포트 바닥 프린팅 속도. 더 낮은 속도로 프린팅하면 모델 상단의 서포트력이 향상됩니다." -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "끔" +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "프라임 타워 속도" -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "x 방향으로 객체에 적용된 오프셋입니다." +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "프라임 타워가 프린팅되는 속도. 프라임 타워를 더 천천히 프린팅하면 다른 필라멘트 사이의 접착을 더 안정적으로 만들 수 있습니다." -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "y 방향으로 객체에 적용된 오프셋입니다." +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "이동 속도" -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "z 방향으로 객체에 적용된 오프셋입니다. 이것을 사용하여 '오프젝 싱크(Object Sink)'라고 불렀던 것을 수행 할 수 있습니다." +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "움직일때의 이동 속도." + +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "초기 레이어 속도" -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "익스트루더로 오프셋" +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "초기 레이어의 속도입니다. 빌드 플레이트에 대한 접착력을 향상시키려면 낮은 값을 권장합니다. 브림과 래프트 같은 빌드 플레이트 접착 구조 자체에 영향을 미치지 않습니다." -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "가능한 경우 빌드 플레이트에" +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "초기 레이어 프린팅 속도" -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "필요한 경우 모델에" +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "초기 레이어의 프린팅 속도입니다. 빌드 플레이트에 대한 접착력을 향상 시키려면 낮은 값을 권합니다." -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "한번에 하나씩" +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "초기 레이어 이동 속도" -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "이동 시, 수평 이동으로 피할 수없는 출력물 위로 이동할 때만 Z 홉을 수행하십시오." +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "이동 속도는 초기 레이어에서 이동합니다. 이전에 프린팅 된 부품을 빌드 플레이트에서 떨어지는 것을 방지하려면 더 낮은 값을 권합니다. 이 설정의 값은 이동 속도와 프린팅 속도 사이의 비율로부터 자동으로 계산 될 수 있습니다." -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "메쉬의 마지막 레이어에서만 다림질을 수행합니다. 이것은 낮은 레이어에서 매끄러운 표면 처리가 필요하지 않은 경우 시간을 절약 할 수 있습니다." +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "스커트/브림 속도" -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Ooze 쉴드 각" +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "스커트와 브림이 프린팅되는 속도입니다. 일반적으로 이것은 초기 레이어 속도에서 수행되지만 때로는 스커트나 브림을 다른 속도로 프린팅하려고 할 수 있습니다." -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Ooze 쉴드 거리" +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Z 홉 속도" -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "최적 브랜치 범위" +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "Z 홉을 위해 수직 Z 이동이 이루어지는 속도입니다. 빌드 플레이트 또는 기기의 갠트리를 움직이기가 더 어렵기 때문에 프린트 속도보다 낮은 것이 일반적입니다." -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "벽면 프린팅 순서 명령 최적화" +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "느리게 프린팅할 레이어의 수" -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "수축 및 이동 거리를 줄이도록 벽이 인쇄되는 순서를 최적화합니다. 대부분의 부품은 이 기능을 사용하면 도움이 되지만 실제로는 시간이 오래 걸릴 수 있으므로, 최적화 여부와 관계없이 인쇄 시간을 비교하십시오. 빌드 플레이트 접착 유형을 Brim으로 선택하는 경우 첫 번째 층이 최적화되지 않습니다." +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "처음 몇 개의 레이어는 모델의 나머지 부분보다 느리게 프린팅되어 빌드 플레이트에 대한보다 나은 접착력을 얻고 출력물의 전체 성공률을 향상시킵니다. 속도는 이 층 위로 점진적으로 증가합니다." -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "외부 노즐의 외경" +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "흐름 균일화 비율" -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "외벽 가속도" +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "속도에 대한 압출 너비 기준 보정 계수. 0%에서는 이동 속도가 프린팅 속도로 일정하게 유지됩니다. 100%에서는 흐름(단위: mm³/s)이 일정하게 유지되도록 이동 속도가 조정됩니다. 즉 일반적인 선 너비의 절반인 선은 두 배로 빠르게 프린팅되고 너비가 두 배인 선은 절반 속도로 프린팅됩니다. 100%보다 큰 값은 넓은 선을 압출하기 위해 요구되는 더 높은 압력을 보정하는 데 도움이 될 수 있습니다." -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "외벽 익스트루더" +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "가속 제어 활성화" -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "외벽 압출량" +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "프린트 헤드 가속도를 활성화 합니다. 가속도를 높이면 프린팅 품질을 저하시키지만 프린팅 시간을 줄일 수 있습니다." -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "외벽 삽입" +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "이동 가속 활성화" -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "외벽 Jerk" +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "이동할 때 별도의 가속도를 사용합니다. 비활성화된 경우 이동 시 프린팅된 라인의 목적지 기준 가속도 값을 사용합니다." -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "바깥 선 선폭" +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "프린팅 가속도" -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "외벽 속도" +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "프린팅 속도가 빨라집니다." -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "외벽 이동 거리" +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "내부채움 가속도" -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "동일한 레이어의 서로 다른 섬의 외벽이 순차적으로 인쇄됩니다. 활성화되면 벽 종류별로 하나씩 인쇄되므로 유량 변화량이 제한되며 비활성화되면 동일한 섬의 벽이 그룹화되어 섬 간 이동 수가 감소합니다." +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "내부채움물이 프린팅되는 가속도." -msgctxt "brim_location option outside" -msgid "Outside Only" -msgstr "" +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "벽 가속도" -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "외부에서 내부로" +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "벽이 프린팅되는 가속도." -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "오버행된 벽 각도" +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "외벽 가속도" -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "오버행된 벽 속도" +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "가장 바깥 쪽 벽이 프린팅되는 가속도입니다." -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "오버행된 벽은 정상적인 인쇄 속도의 이 비율로 인쇄됩니다." +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "내벽 가속도" -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "리트랙트를 실행 취소한 후 일시 정지합니다." +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "모든 내부 벽이 프린팅되는 가속도입니다." -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "브리지 벽과 스킨을 인쇄 할 때 사용하는 팬 속도 백분율." +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "상면 외벽 가속도" -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "두번째 브리지 벽과 스킨을 인쇄 할 때 사용하는 팬 속도 백분율." +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "상면의 가장 바깥 벽이 인쇄되는 가속도" -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "서포트 바로 위의 스킨 영역을 인쇄할 때 사용할 팬 속도 백분율 빠른 팬 속도를 사용하면 서포트를 더 쉽게 제거할 수 있습니다." +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "상면 내벽 가속도" -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "세번째 브리지 벽과 스킨을 인쇄 할 때 사용하는 팬 속도 백분율." +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "상면 내벽이 인쇄되는 가속도" -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "레이어가 슬라이스 된, 이 값보다 둘레가 작은 다각형은 필터링됩니다. 값을 낮을수록 슬라이스가 느려지지만, 해상도 메쉬가 높아집니다. 주로 고해상도 SLA 프린터 및 세부 사항이 많은 매우 작은 3D 모델에 적합합니다." +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "상단 표면 스킨 가속도" -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "기본 브랜치 각도" +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "상단 표면 스킨 층이 프린팅되는 가속도." -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "하나의 여분 벽과 하나 더 적은 벽 사이를 왔다 갔다 하는 전환을 방지하십시오. 이 여백은 [최소 벽 선 너비 - 여백, 2 * 최소 벽 선 너비 + 여백]을 따르는 선 너비의 범위를 확장합니다. 이 여백을 늘리면 전환 횟수가 줄어들어, 압출 시작/중지 및 이동 시간이 줄어듭니다. 그러나 선 너비 변동이 크면 압출 미달 또는 과잉 문제가 발생할 수 있습니다." +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "상단/하단 가속도" -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "프라임 타워 가속" +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "위쪽/아래쪽 레이어가 프린팅되는 가속도입니다." -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Base" -msgstr "프라임 타워 베이스" +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "서포트 가속도" -msgctxt "prime_tower_base_height label" -msgid "Prime Tower Base Height" -msgstr "프라임 타워 베이스 높이" +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "서포트 구조가 프린팅되는 가속도." -msgctxt "prime_tower_base_size label" -msgid "Prime Tower Base Size" -msgstr "프라임 타워 베이스 크기" +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "서포트 내부채움 가속도" -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Slope" -msgstr "프라임 타워 베이스 경사" +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "서포트의 내부채움이 프린팅되는 가속도." -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "프라임 타워 압출량" +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "서포트 인터페이스 가속도" -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "프라임 타워 Jerk" +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "서포트의 지붕과 바닥이 프린팅되는 가속도. 낮은 가속도로 프린팅하면 오버행 품질이 향상 될 수 있습니다." -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "프라임 타워 라인 폭" +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "서포트 상단 가속도" + +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "서포트의 지붕이 프린팅되는 가속도. 낮은 가속도로 프린팅하면 오버행 품질이 향상 될 수 있습니다." -msgctxt "prime_tower_max_bridging_distance label" -msgid "Prime Tower Maximum Bridging Distance" -msgstr "" +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "서포트 바닥 가속도" -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "프라임 타워 최소 볼륨" +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "지면의 가속도가 프린팅됩니다. 보다 낮은 가속도로 프린팅하면 모델 상단에 서포트력을 향상시킬 수 있습니다." -msgctxt "prime_tower_raft_base_line_spacing label" -msgid "Prime Tower Raft Line Spacing" -msgstr "프라임 타워 래프트 선 간격" +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "프라임 타워 가속" -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "프라임 타워 사이즈" +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "프라임 타워가 프린팅되는 가속도." -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "프라임 타워 속도" +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "이동 가속" -msgctxt "prime_tower_mode label" -msgid "Prime Tower Type" -msgstr "" +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "헤드가 움직일때의 가속도." -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "프라임 타워 X 위치" +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "초기 레이어 가속" -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "프라임 타워 Y 위치" +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "초기 레이어의 가속도입니다." -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "프린팅 가속도" +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "초기 레이어 프린팅 가속" -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Jerk 프린팅" +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "초기 레이어 프린팅 중 가속도." -msgctxt "ppr label" -msgid "Print Process Reporting" -msgstr "" +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "초기 레이어 이동 가속도" -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "프린팅 순서" +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "헤드가 초기 레이어에서 이동할 때의 가속도." -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "프린팅 속도" +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Skirt/Brim 가속도" -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "얇은 벽 프린팅" +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "스커트와 브림이 프린팅되는 가속도. 일반적으로 이것은 초기 레이어 가속으로 이루어 서포트만 때로는 스커트나 브림을 다른 가속으로 프린팅 할 수 있습니다." -msgctxt "brim_location description" -msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." -msgstr "" +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Jerk 컨트롤 사용" -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "각 노즐을 교체 한 후에 재료를 프라이밍(Priming)하는 프린팅 옆에 타워를 프린팅하십시오." +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "X 또는 Y 축의 속도가 변경 될 때 프린트 헤드의 속도를 조정할 수 있습니다. Jerk를 높이면 프린팅 품질을 저하시키면서 프린팅 시간을 줄일 수 있습니다." -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "모델 상단이 지지가 되어야 하는 경우에만 충진물 구조를 인쇄합니다. 이 기능을 사용하면 인쇄 시간 및 재료 사용이 감소하지만, 개체 강도가 균일하지 않습니다." +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "이동 저크 활성화" -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "한 방향으로 주변 라인들과 항상 겹치게 하기 위해 다림질 라인들을 배치하여 프린트하십시오. 이는 프린트하는 데 더 많은 시간이 소모되지만 평평한 면이 보다 일관적으로 보이게 합니다." +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "이동할 때 별도의 저크 속도를 사용합니다. 비활성화된 경우 이동 시 프린팅된 라인의 목적지 기준 저크 값을 사용합니다." -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "모형을 몰드으로 프린팅하여 모형에 몰드과 유사한 모형을 만들 수 있습니다." +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Jerk 프린팅" -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "노즐 크기보다 수평으로 더 얇은 모델 조각을 프린팅하십시오." +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "프린트 헤드의 최대 순간 속도 변화." -msgctxt "raft_surface_monotonic description" -msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." -msgstr "" +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Jerk 내부채움" -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "두번째 브릿지 스킨 레이어를 인쇄 할 때 사용할 인쇄 속도." +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "내부채움이 프린팅되는 최대 순간 속도 변화." -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "세번째 브릿지 스킨 레이어를 인쇄 할 때 사용할 인쇄 속도." +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "벽 Jerk" -msgctxt "print_temp_anomaly_limit label" -msgid "Print temperature Limit" -msgstr "" +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "벽이 프린팅되는 최대 순간 속도 변화." -msgctxt "print_temp_warn_limit label" -msgid "Print temperature Warning" -msgstr "" +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "외벽 Jerk" -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "벽을 프린팅하기 전에 내부채움물을 프린팅하기. 벽을 먼저 프린팅하면 벽이 더 정확해질 수 있지만 겹침으로 프린팅이 매끄럽지 않습니다. 내부채움을 먼저 프린팅하면 더 튼튼한 벽이 생기지만 내부채움 패턴이 때로 표면을 통해 보일 수 있습니다." +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "가장 바깥 쪽 벽이 프린팅되는 최대 순간 속도 변화." -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "한 방향으로 주변 라인들과 항상 겹치게 하기 위해 상단 표면 라인들을 배치하여 프린트하십시오. 이는 프린트하는 데 더 많은 시간이 소모되지만 평평한 면이 보다 일관적으로 보이게 합니다." +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "내벽 Jerk" -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "한 방향으로 주변 라인들과 항상 겹치게 하기 위해 상단/하단 라인들을 배치하여 프린트하십시오. 이는 프린트하는 데 더 많은 시간이 소모되지만 평평한 면이 보다 일관적으로 보이게 합니다." +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "모든 내부 벽이 프린팅되는 최대 순간 속도 변화." -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "프린팅 온도" +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "상면 내벽의 최대 순간 속도 변화" -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "첫번째 레이어의 프린팅 온도" +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "상면 내부 벽이 인쇄되는 최대 순간 속도 변화" -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "가장 안쪽의 스커트 라인을 여러 겹으로 프린트하면 스커트를 쉽게 제거할 수 있습니다." +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "상면 가장 바깥 벽의 최대 순간 속도 변화" -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "다른 모든 레이어에 여분의 벽을 프린팅합니다. 이렇게하면 내부채움이 여분의 벽 사이에 끼어 더 강하게 프린팅됩니다." +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "상면 바깥 벽이 인쇄되는 최대 순간 속도 변화" -msgctxt "resolution label" -msgid "Quality" -msgstr "품질" +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "스킨 표면 Jerk" -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "쿼터 큐빅" +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "상단 표면 스킨 층이 프린팅되는 최대 순간 속도 변화." -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "래프트" +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "위/아래 Jerk" -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "래프트 에어 갭" +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "상단 / 하단 레이어가 프린팅되는 최대 순간 속도 변화." -msgctxt "raft_base_margin label" -msgid "Raft Base Extra Margin" -msgstr "" +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "서포트 Jerk" -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "래프트 베이스 익스트루더" +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "서포트 구조가 프린팅되는 최대 순간 속도 변화." -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "래프트 기본 팬 속도" +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "서포트 내부채움 Jerk" -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "래프트 기준 선 간격" +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "서포트가 채워지는 최대 순간 속도 변화." -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "래프트 기준 선 너비" +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "서포트 인터페이스 Jerk" -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "래프트 기본 프린팅 가속도" +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "서포트의 지붕과 바닥이 프린팅되는 최대 순간 속도 변화." + +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "서포트 위 Jerk" -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "래프트 기본 프린팅 Jerk" +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "서포트의 지붕이 프린팅되는 최대 순간 속도 변화." -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "래프트 기본 프린팅 속도" +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "서포트 바닥 Jerk" -msgctxt "raft_base_smoothing label" -msgid "Raft Base Smoothing" -msgstr "" +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "서포트의 바닥이 프린팅되는 최대 순간 속도 변화." -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "래프트 기준 두께" +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "프라임 타워 Jerk" -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "래프트 베이스 벽 개수" +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "프라임 타워가 프린팅되는 최대 순간 속도 변화." -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "래프트 추가 여백" +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "이동 Jerk" -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "래프트 팬 속도" +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "헤드가 이동하는 최대 순간 속도 변화." -msgctxt "raft_interface_margin label" -msgid "Raft Middle Extra Margin" -msgstr "" +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "초기 레이어 Jerk" -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "래프트 중간 익스트루더" +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "초기 레이어의 프린팅 최대 순간 속도 변화." -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "래프트 중앙 팬 속도" +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "초기 레이어 프린팅 Jerk" -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "래프트 중간 레이어" +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "초기 층의 프린팅 중 최대 순간 속도 변화." -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "래프트 중간 선 너비" +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "초기 레이어 이동 Jerk" -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "래프트 중앙 프린팅 가속도" +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "헤드가 초기 레이어에서 이동할 때의 가속도." -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "래프트 중앙 프린팅 Jerk" +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Skirt/Brim Jerk" -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "래프트 중앙 프린팅 속도" +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "스커트와 브림이 프린팅되는 최대 순간 속도 변화." -msgctxt "raft_interface_smoothing label" -msgid "Raft Middle Smoothing" -msgstr "" +msgctxt "travel label" +msgid "Travel" +msgstr "이동" -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "래프트 중간 간격" +msgctxt "travel description" +msgid "travel" +msgstr "이동" -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "래프트 중간 두께" +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "리트렉션 활성화" -msgctxt "raft_interface_wall_count label" -msgid "Raft Middle Wall Count" -msgstr "" +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "노즐이 프린팅되지 않은 영역 위로 움직일 때 필라멘트를 리트렉션합니다." -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "래프트 프린팅 가속도" +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "레이어 변경시 리트렉션" -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "래프트 프린팅 Jerk" +msgctxt "retract_at_layer_change description" +msgid "Retract the filament when the nozzle is moving to the next layer." +msgstr "노즐이 다음 층으로 이동할 때 필라멘트를 리트렉션 시킵니다." -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "래프트 프린팅 속도" +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "리트렉션 거리" -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "래프트 부드럽게하기" +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "리트렉션 이동 중에 수축 된 재료의 길이입니다." -msgctxt "raft_surface_margin label" -msgid "Raft Top Extra Margin" -msgstr "" +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "리트렉션 속도" -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "래프트 상단 익스트루더" +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "리트렉션 속도입니다." -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "래프트 상단 팬 속도" +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "리트렉션 속도" -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "래프트 상단 레이어 두께" +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "리트렉션 속도입니다." -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "래프트 탑 레이어" +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "리트렉션 초기 속도" -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "래프트 상단 선 너비" +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "리트렉션 이동 중에 필라멘트가 프라이밍되는 속도입니다." -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "래프트 상단 프린팅 가속도" +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "추가적인 리트렉션 정도" -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "래프트 상단 프린팅 Jerk" +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "이동중에 재료가 새어나올 수 있습니다. 이 재료는 여기에서 보상될 수 있습니다." -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "래프트 상단 프린팅 속도" +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "리트렉션 최소 이동" -msgctxt "raft_surface_smoothing label" -msgid "Raft Top Smoothing" -msgstr "" +msgctxt "retraction_min_travel description" +msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." +msgstr "리트렉션이 가능하기 위해 필요한 최소한의 이동 거리. 작은 영역에서 더 적은 리트렉션이 가능합니다." -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "래프트 상단 간격" +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "최대 리트렉션 수" -msgctxt "raft_surface_wall_count label" -msgid "Raft Top Wall Count" -msgstr "" +msgctxt "retraction_count_max description" +msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." +msgstr "이 설정은 최소 압출 거리에서 발생하는 리트렉션 수를 제한합니다. 이 거리내에서 더 이상의 리트렉션은 무시됩니다. 이렇게 하면 필라멘트를 평평하게하고 갈리는 문제를 일으킬 수 있으므로 동일한 필라멘트에서 반복적으로 리트렉션하지 않습니다." -msgctxt "raft_wall_count label" -msgid "Raft Wall Count" -msgstr "" +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "최소 압출 영역" -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "랜덤" +msgctxt "retraction_extrusion_window description" +msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." +msgstr "최대 리트렉션 횟수가 시행되는 영역 입니다. 이 값은 수축 거리와 거의 같아야 하므로 같은 수축 패치가 통과하는 횟수가 효과적으로 제한됩니다." -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "무작위 충전 시작" +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Combing 모드" -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "가장 먼저 프린트되는 충전 선을 무작위로 결정합니다. 이렇게 하면 특정 세그먼트가 가장 강한 세그먼트가 되는 일이 없지만, 추가 이동이 발생하지 않게 됩니다." +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "Combing은 이동할 때 이미 인쇄 된 영역 내에 노즐을 유지합니다. 이로 인해 이동이 약간 더 길어 지지만 리트렉션의 필요성은 줄어듭니다. Combing이 꺼져 있으면 재료가 후퇴하고 노즐이 직선으로 다음 점으로 이동합니다. 또한 상단/하단 스킨 영역을 Combing하거나 내부채움 내에서만 빗질하는 것을 피할 수 있습니다." -msgctxt "magic_fuzzy_skin_enabled description" -msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." -msgstr "외벽을 프린팅하는 동안 무작위로 지터가 발생하여 표면이 거칠고 흐릿해 보입니다." +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "끔" -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "직사각형" +msgctxt "retraction_combing option all" +msgid "All" +msgstr "모두" -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "표준 팬 속도" +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "외부 표면에 없음" + +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "스킨에 없음" -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "표준 팬 속도시의 높이" +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "내부채움 내" -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "표준 팬 속도시의 레이어" +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "수축이 없을 때 최대 빗질 거리" -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "표준/최대 팬 속도 임계 값" +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "0보다 큰 경우 이 거리보다 긴 combing travel은 retraction을 사용합니다. 0으로 설정한 경우 최댓값이 없으며 combing travel은 retraction을 사용하지 않습니다." -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "상대적 압출" +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "외벽 전에 리트렉션" -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "모든 구멍 제거" +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "외벽을 프린팅하기 위해 이동할 때 항상 리트렉션합니다." -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "비어 있는 첫 번째 레이어 제거" +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "움직일 때 프린팅한 부분을 피하기" -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "교차된 메쉬 제거" +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "노즐은 이동 할 때 이미 프린팅 된 부분을 피합니다. 이 옵션은 combing이 활성화 된 경우에만 사용할 수 있습니다." -msgctxt "raft_base_remove_inside_corners label" -msgid "Remove Raft Base Inside Corners" -msgstr "" +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "이동하는 경우 지지대 피함" -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "래프트 내부 모서리 제거" +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "노즐은 이동하는 경우 이미 인쇄된 지지대를 피합니다. 빗질을 사용하는 경우에만 사용할 수 있는 옵션입니다." -msgctxt "raft_interface_remove_inside_corners label" -msgid "Remove Raft Middle Inside Corners" -msgstr "" +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "이동중 피하는 거리" -msgctxt "raft_surface_remove_inside_corners label" -msgid "Remove Raft Top Inside Corners" -msgstr "" +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "이동 중 출력물을 피할 때 노즐과 이미 프린팅 된 부분 사이의 거리." -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "여러 메시가 서로 겹치는 영역을 제거합니다. 병합 된 2개의 재료가 서로 중첩되는 경우 사용될 수 있습니다." +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "레이어 시작 X" -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "첫 번째로 프린팅된 레이어 바로 아래의 비어 있는 레이어를 제거합니다. 이 설정을 해제하면 슬라이싱 허용 오차 설정을 배타 또는 중간으로 설정할 경우 첫 번째 레이어가 비어 있게 될 수 있습니다." +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "각 레이어의 프린팅를 시작할 부분을 찾을 위치 근처의 X 좌표입니다." -msgctxt "raft_base_remove_inside_corners description" -msgid "Remove inside corners from the raft base, causing the raft to become convex." -msgstr "" +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "레이어 시작 Y" -msgctxt "raft_interface_remove_inside_corners description" -msgid "Remove inside corners from the raft middle part, causing the raft to become convex." -msgstr "" +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "각 레이어 프린팅를 시작할 부분을 찾을 위치 근처의 위치에 대한 Y 좌표입니다." -msgctxt "raft_surface_remove_inside_corners description" -msgid "Remove inside corners from the raft top part, causing the raft to become convex." -msgstr "" +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "리트렉션했을 때의 Z Hop" -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "래프트가 볼록해지도록 래프트에서 내부 모서리를 제거합니다." +msgctxt "retraction_hop_enabled description" +msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "리트렉션이 일어날 때마다 빌드 플레이트가 낮아져 노즐과 출력물 사이에 여유 공간이 생깁니다. 이동 중에 노즐이 출력물에 부딪치지 않도록 합니다." -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "각 레이어의 구멍을 제거하고 바깥 쪽 모양 만 유지합니다. 이것은 보이지 않는 내부 지오메트리를 무시합니다. 그러나 위 또는 아래에서 볼 수있는 레이어 구멍도 무시합니다." +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "프린팅 된 부분에만 Z Hop" -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "이동 시, 수평 이동으로 피할 수없는 출력물 위로 이동할 때만 Z 홉을 수행하십시오." -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Z 홉 높이" -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "위쪽/아래쪽 패턴의 가장 바깥 쪽 부분을 여러 동심 선으로 바꿉니다. 하나 또는 두 개의 선을 사용하면 내부채움 재료로 시작하는 지붕면이 향상됩니다." +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Z 홉을 수행 할 때의 높이 차이." -msgctxt "ppr description" -msgid "Reporting events that go out of set thresholds" -msgstr "" +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "익스트루더 스위치 후 Z 홉" -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "배치 기본 설정" +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "기기가 하나의 익스트루더에서 다른 익스트루더로 전환 된 후, 빌드 플레이트가 내려가 노즐과 출력물 사이에 간격이 생깁니다. 이렇게 하면 프린트 물 바깥쪽에서 노즐로 부터 필라멘트가 흐르는 것을 방지합니다." -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "외벽 전에 리트렉션" +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "익스트루더 스위치 높이 후 Z 홉" -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "레이어 변경시 리트렉션" +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "익스트루더 스위치 후 Z 홉을 수행할 때의 높이 차이." -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "노즐이 프린팅되지 않은 영역 위로 움직일 때 필라멘트를 리트렉션합니다." +msgctxt "cooling label" +msgid "Cooling" +msgstr "냉각" -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "노즐이 프린팅되지 않은 영역 위로 움직일 때 필라멘트를 리트렉션합니다." +msgctxt "cooling description" +msgid "Cooling" +msgstr "냉각" -msgctxt "retract_at_layer_change description" -msgid "Retract the filament when the nozzle is moving to the next layer." -msgstr "노즐이 다음 층으로 이동할 때 필라멘트를 리트렉션 시킵니다." +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "프린팅 냉각 사용" -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "리트렉션 거리" +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "프린팅 중에 프린팅 냉각 팬을 활성화합니다. 팬은 짧은 레이어 시간 및 브리징 / 오버행으로 레이어의 프린팅 품질을 향상시킵니다." -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "추가적인 리트렉션 정도" +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "팬 속도" -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "리트렉션 최소 이동" +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "프린팅 냉각 팬이 회전하는 속도입니다." -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "리트렉션 초기 속도" +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "표준 팬 속도" -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "리트렉션 속도" +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "팬이 임계 값에 도달하기 전에 회전하는 속도입니다. 레이어가 임계값보다 빠르게 프린팅되면 팬 속도가 최대 팬 속도쪽으로 점차 기울어집니다." -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "리트렉션 속도" +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "최대 팬 속도" -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "오른쪽" +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "최소 레이어 시간에 팬이 회전하는 속도입니다. 임계 값에 도달하면 표준 팬 속도와 최대 팬 속도 사이에서 팬 속도가 서서히 증가합니다." -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "팬 속도를 0-1로 조정" +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "표준/최대 팬 속도 임계 값" -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "팬 속도를 0 ~ 256이 아니라 0 ~ 1로 조정합니다." +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "표준 팬 속도와 최대 팬 속도 사이의 임계 값을 설정하는 레이어 시간입니다. 이 시간보다 느리게 프린팅되는 레이어는 표준 팬 속도를 사용합니다. 빠른 레이어의 경우 팬 속도가 최대 팬 속도쪽으로 점차 증가합니다." -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "확장 배율 수축 보상" +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "초기 팬 속도" -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "장면에 서포트 메쉬가 있습니다" +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "프린팅 시작시 팬이 회전하는 속도입니다. 후속 레이어에서는 팬 속도가 높이의 표준 팬 속도에 해당하는 레이어까지 점차 증가합니다." -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "솔기 코너 환경 설정" +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "표준 팬 속도시의 높이" -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "수동으로 인쇄 순서 설정" +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "표준 팬 속도로 팬이 회전하는 높이입니다. 이 높이의 아래 레이어에서 팬 속도는 초기 팬 속도에서 표준 팬 속도로 점차 증가합니다." -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "드래프트 쉴드의 높이를 설정합니다. 모델의 전체 높이 또는 제한된 높이에서 드래프트 쉴드를 프린팅하도록 선택합니다." +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "표준 팬 속도시의 레이어" + +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "팬이 표준 팬 속도로 회전하는 레이어입니다. 표준 팬 속도시의 높이가 설정이 되어있으면, 이 값이 계산되고 정수로 반올림됩니다." -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "여러 익스트루더로 프린팅 할 때 사용되는 설정입니다." +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "최소 레이어 시간" -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "큐라(Cura) 프론트 엔드에서 큐라엔진(CuraEngine)이 호출되지 않은 경우에만 사용되는 설정입니다." +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "레이어에 소요 된 최소 시간입니다. 이렇게 하면 프린터가 한 레이어에서 여기에 설정된 시간을 소비하게됩니다. 이렇게하면 다음 레이어를 프린팅하기 전에 출력물을 적절히 냉각시킬 수 있습니다. 리프트 헤드가 비활성화되고 최소 속도가 위반되는 경우 레이어가 최소 레이어 시간보다 짧게 걸릴 수 있습니다." -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "공유된 노즐 초기 수축" +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "최저 속도" -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "날카로운 모서리" +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "최소 프린팅 속도. 프린터의 속도가 너무 느려지면 노즐의 압력이 너무 낮아 프린팅 품질이 나빠질 수 있습니다." -msgctxt "shell description" -msgid "Shell" -msgstr "외곽" +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "리프트 헤드" -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "최단경로" +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "최소 레이어 시간으로 인해 최소 속도에 도달하면 헤드를 출력물에서 들어 올려 최소 레이어 시간에 도달 할 때까지 시간을 기다립니다." -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "기기 세부 설정 표시" +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "소형 레이어 프린팅 온도" -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "스킨 에지의 레이어 지원" +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "최소 레이어 시간 때문에 늦춰진 속도로 프린트하는 경우 점차 이 온도로 낮춥니다." -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "스킨 에지의 두께 지원" +msgctxt "support label" +msgid "Support" +msgstr "서포트" -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "스킨 확장 거리" +msgctxt "support description" +msgid "Support" +msgstr "서포트" -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "스킨 겹침" +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "서포트 생성" -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "스킨 겹침 비율" +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "오버행이 있는 모델 부분을 서포트하는 구조를 생성합니다. 이러한 구조가 없으면 이런 부분이 프린팅 중에 붕괴됩니다." -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "스킨 제거 폭" +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "서포트 익스트루더" -msgctxt "min_skin_width_for_expansion description" -msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." -msgstr "이보다 좁은 스킨 영역은 확장되지 않습니다. 이렇게하면 모델 표면이 수직에 가까운 기울기를 가질 때 생성되는 좁은 스킨 영역을 확장하지 않아도됩니다." +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "서포트 프린팅에 사용할 익스트루더. 이것은 다중 압출에 사용됩니다." -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "서포트 구조를 쉽게 분리할 수 있도록 모든 N 개의 연결 라인을 건너 뜁니다." +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "서포트 내부채움 익스트루더" -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "서포트 구조가 쉽게 끊어 지도록 서포트 라인 연결을 건너 뜁니다. 이 설정은 지그재그 서포트 충전 패턴에 적용됩니다." +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "서포트의 내부채움을 프린팅하는 데 사용할 익스트루더. 이것은 다중 압출에 사용됩니다." -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "스커트" +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "첫 번째 레이어 서포트 익스트루더" -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "스커트 거리" +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "첫번째 층의 서포트 채움에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "스커트 높이" +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "서포트 인터페이스 익스트루더" -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "스커트 선 수" +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "서포트의 지붕과 바닥을 프린팅 할 때 사용하는 익스트루더. 이것은 다중 압출에 사용됩니다." -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Skirt/Brim 가속도" +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "서포트 지붕 익스트루더" -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "스커트/브림 익스트루더" +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "서포트의 지붕을 프린팅 할 때 사용하는 익스트루더. 이것은 다중 압출에 사용됩니다." -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "스커트/브림 압출량" +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "서포트 바닥 익스트루더" -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Skirt/Brim Jerk" +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "서포트의 바닥을 프린팅하는 데 사용할 익스트루더. 이것은 다중 압출에 사용됩니다." -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "스커트/브림 선 너비" +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "서포트 구조" -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "스커트/브림 최소 길이" +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "서포트를 생성하는 데 사용할 수 있는 기술 중 하나를 선택합니다. '표준' 서포트는 오버행(경사면) 파트 바로 아래에 서포트 구조물을 생성하고 해당 영역을 바로 아래로 떨어뜨립니다. '트리' 서포트는 모델을 지지하는 브랜치 끝에서 오버행(경사면) 영역을 향해 브랜치를 만들고 빌드 플레이트에서 모델을 지지할 수 있도록 모델을 브랜치로 최대한 감쌉니다." -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "스커트/브림 속도" +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "표준" -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "슬라이싱 허용 오차" +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "트리" -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "소형 피처 초기 레이어 속도" +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "최대 브랜치 각도" -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "소형 피처 최대 길이" +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "모델 주위로 브랜치가 자랄 때 브랜치의 최대 각도입니다. 브랜치가 수직에 가깝게 안정적이 되도록 만들려면 더 낮은 각도를 사용하고, 브랜치의 도달 거리를 늘리려면 더 높은 각도를 사용하십시오." -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "소형 피처 속도" +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "브랜치 직경" -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "소형 구멍 최대 크기" +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "트리 서포트의 가장 얇은 브랜치의 직경. 브랜치가 두꺼울수록 더 견고해집니다. 바닥을 향한 브랜치는 이보다 더 두꺼워집니다." -msgctxt "cool_min_temperature label" -msgid "Small Layer Printing Temperature" -msgstr "소형 레이어 프린팅 온도" +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "트렁크 직경" -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "표면의 작은 상단/하단" +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "트리 서포트의 가장 굵은 브랜치의 직경. 트렁크가 두꺼울수록 더 견고해집니다. 얇은 트렁크는 빌드 플레이트에서 차지하는 공간이 보다 적습니다." -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "작은 상단/하단 너비" +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "브랜치 직경 각도" -msgctxt "small_feature_speed_factor_0 description" -msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "첫 번째 레이어의 소형 피처는 정상적인 프린트 속도의 이 비율로 프린팅됩니다. 프린트 속도가 느리면 부착과 정확도가 개선됩니다." +msgctxt "support_tree_branch_diameter_angle description" +msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." +msgstr "바닥면을 향할수록 점점 더 두꺼워짐에 따른 브랜치의 직경 각도. 이 각도가 0이면 브랜치는 길이 전체에 균일한 두께를 갖게 됩니다. 약간의 각도가 있으면 트리 서포트의 안정성을 높여 줍니다." -msgctxt "small_feature_speed_factor description" -msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "소형 피처는 정상적인 프린트 속도의 이 비율로 프린팅됩니다. 프린트 속도가 느리면 부착과 정확도가 개선됩니다." +msgctxt "support_type label" +msgid "Support Placement" +msgstr "서포트 배치" -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "작은 상단/하단 영역은 기본 상단/하단 패턴 대신 벽으로 채워집니다. 이렇게 하면 갑작스러운 모션을 방지하는 데 도움이 됩니다. 기본적으로 최상단(공기에 노출된) 레이어는 꺼져 있습니다('표면의 작은 상단/하단' 참조)." +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "빌드 플레이트 위" -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "스마트 브림" +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "어디에나" -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "스마트 숨김" +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "기본 브랜치 각도" -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "부드러운 나선형 윤곽" +msgctxt "support_tree_angle_slow description" +msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." +msgstr "모델을 피할 필요가 없을 때 브랜치의 기본 각도입니다. 브랜치가 수직에 가깝게 안정적이 되도록 만들려면 더 낮은 각도를 사용하고, 브랜치가 빨리 합쳐지도록 하려면 더 높은 각도를 사용하십시오." -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "나선형 윤곽선을 부드럽게 하여 Z 이음선이 잘 보이지 않도록 합니다(Z- 이음선은 출력물에서는 거의 보이지 않지만 레이어 뷰에서는 여전히 보임). 매끄러움은 표면의 세부 묘사를 흐릿하게 만드는 경향이 있습니다." +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "모델에 대한 직경 증가" + +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "모델에 연결해야 하는 브랜치의 직경은 빌드 플레이트에 도달할 수 있는 브랜치와 병합하여 최대로 늘릴 수 있습니다. 이를 늘리면 프린트 시간이 단축되지만 모델에 닿는 서포트 영역이 증가합니다." -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "이동중에 재료가 새어나올 수 있습니다. 이 재료는 여기에서 보상될 수 있습니다." +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "모델에 대한 최소 높이" -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "와이프 이동 중에 재료가 새어 나올 수 있습니다. 이 재료는 여기에서 보상받을 수 있습니다." +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "모델에 브랜치를 배치할 때 브랜치의 높이를 설정합니다. 이에 따라 서포트의 작은 얼룩이 방지됩니다. 브랜치가 서포트 지붕을 서포트하는 경우 이 설정은 무시됩니다." -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "특수 모드" +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "초기 레이어 직경" -msgctxt "speed description" -msgid "Speed" -msgstr "속도" +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "모든 브랜치가 빌드 플레이트에 도달할 때 달성하려고 하는 직경입니다. 이에 따라 베드 접착력이 개선됩니다." -msgctxt "speed label" -msgid "Speed" -msgstr "속도" +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "브랜치 밀도" -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "홉 중에 z축을 이동하는 속도입니다." +msgctxt "support_tree_top_rate description" +msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "브랜치의 팁을 생성하는 데 사용되는 서포트 구조의 밀도를 조정합니다. 값이 클수록 오버행은 개선되지만 서포트를 제거하기가 어려워집니다. 매우 큰 값을 위해서는 서포트 지붕을 사용하거나 상단의 서포트 밀도가 비슷하게 높은지 확인합니다." -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "외부 윤곽선을 나선형으로 만듦" +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "팁 직경" -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "바깥 쪽 브림의 Z 이동을 부드럽게합니다. 이렇게 하면 출력물 전체에 걸쳐 꾸준히 Z가 증가합니다. 이 기능은 솔리드 모델을 단단한 바닥이있는 단일 벽으로 프린팅합니다. 이 기능은 각 레이어에 단일 부품 만 포함되어 있을 때만 활성화 해야 합니다." +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "트리 서포트 브랜치 팁의 상단 직경입니다." -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "대기 온도" +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "브랜치 도달 거리 제한" -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "시작 GCode" +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "각 브랜치가 서포트하는 지점에서 뻗어 나가는 거리를 제한합니다. 이렇게 하면 서포트가 더 견고해질 수 있지만, 브랜치의 양이 늘어나므로 재료 사용량/프린트 시간이 늘어납니다." -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "레이어의 각 패스의 시작점입니다. 연속 레이어의 패스가 같은 지점에서 시작되면 세로 솔기가 출력물에 표시 될 수 있습니다. 사용자가 지정한 위치 근처에서 이들을 정렬 할 때 이음선을 제거하는 것이 가장 쉽습니다. 무작위로 배치 될 때 경로의 시작점은 눈에 잘 띄지 않습니다. 최단 경로를 취할 때 프린팅이 빨라집니다." +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "최적 브랜치 범위" -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "밀리미터 당 스텝 수 (E)" +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "브랜치가 서포트하는 지점에서 뻗어 나가는 거리에 대한 권장 사항입니다. 브랜치는 목적지(빌드 플레이트 또는 모델의 평평한 부분)에 도달하기 위해 이 값을 초과할 수 있습니다. 이 값을 낮추면 서포트가 더 견고해지지만, 브랜치의 양이 늘어나므로 재료 사용량/프린트 시간이 늘어납니다." -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "밀리미터 당 스텝 수 (X)" +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "배치 기본 설정" -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "밀리미터 당 스텝 수 (Y)" +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "서포트 구조물의 기본 배치입니다. 구조물을 원하는 위치에 배치할 수 없는 경우 구조물을 모델 위에 놓더라도 다른 곳에 배치합니다." -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "밀리미터 당 스텝 수 (Z)" +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "가능한 경우 빌드 플레이트에" -msgctxt "support description" -msgid "Support" -msgstr "서포트" +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "필요한 경우 모델에" -msgctxt "support label" -msgid "Support" -msgstr "서포트" +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "오버행 각도" -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "서포트 가속도" +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "서포트가 추가 된 오버행 각도의 최소값입니다. 0 °의 값에서 모든 돌출부가 서포트가 생성되며 90 °는 지원하지 않습니다." -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "서포트 바닥 거리" +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "서포트 패턴" -msgctxt "support_bottom_wall_count label" -msgid "Support Bottom Wall Line Count" -msgstr "지지대 하단 벽 라인 수" +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "서포트 구조의 패턴. 사용 가능한 여러 가지 옵션을 사용하면 튼튼하고 쉽게 제거 할 수 있습니다." -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "서포트 브림 라인 수" +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "라인" -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "서포트 브림 폭" +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "격자" -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Chunk 라인 카운트 서포트" +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "삼각형" -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "서포트 Chunk 크기" +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "동심원의" -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "서포트 밀도" +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "지그재그" -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "서포트 거리 우선 순위" +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "십자" -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "서포트 익스트루더" +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "자이로이드" -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "서포트 바닥 가속도" +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "지지대 벽 라인 카운트" -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "서포트 바닥 밀도" +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "지지대 충진물을 둘러싸는 벽의 개수. 벽을 추가하면 지지물 인쇄 안정성을 높일 수 있고 오버행 지지를 개선할 수 있지만, 인쇄 시간과 사용되는 재료가 늘어납니다." -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "서포트 바닥 익스트루더" +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "지지대 인터페이스 벽 라인 수" -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "지지대 바닥 압출량" +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "지지대 인터페이스를 둘러쌀 벽의 수입니다. 벽을 추가하면 지지대 프린트를 더 안정적으로 만들고 오버행(경사면)을 더 잘 지원할 수 있지만, 프린트 시간과 사용되는 재료가 늘어납니다." -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "서포트 바닥 수평 확장" +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "지지대 지붕 벽 라인 수" -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "서포트 바닥 Jerk" +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "지지대 인터페이스 지붕을 둘러쌀 벽의 수입니다. 벽을 추가하면 지지대 프린트를 더 안정적으로 만들고 오버행(경사면)을 더 잘 지원할 수 있지만, 프린트 시간과 사용되는 재료가 늘어납니다." -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "바닥 지붕 선 방향" +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "지지대 하단 벽 라인 수" -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "서포트 바닥 선 거리" +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "지지대 인터페이스 바닥을 둘러쌀 벽의 수입니다. 벽을 추가하면 지지대 프린트를 더 안정적으로 만들고 오버행(경사면)을 더 잘 지원할 수 있지만, 프린트 시간과 사용되는 재료가 늘어납니다." -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "서포트 바닥 라인 폭" +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "서포트 선 연결" -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "서포트 바닥 패턴" +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "서포트의 끝을 서로 연결하십시오. 이 설정을 사용하면 서포트가 보다 견고해지지만 더 많은 재료가 소모됩니다." -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "서포트 바닥 속도" +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "ZigZags 서포트 연결" -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "서포트 바닥 두께" +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "지그재그를 연결하십시오. 이것은 지그재그 서포트 구조의 강도를 증가시킵니다." -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "지지대 압출량" +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "서포트 밀도" -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "수평 확장 서포트" +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "서포트 구조의 밀도를 조정합니다. 값이 높을수록 오버행이 좋아 서포트만 서포트를 제거하기가 더 어렵습니다." -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "서포트 내부채움 가속도" +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "서포트 선 거리" -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "서포트 내부채움 익스트루더" +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "프린팅 된 서포트 구조 선 사이의 거리. 이 설정은 서포트 밀도로 계산됩니다." -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "서포트 내부채움 Jerk" +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "초기 레이어 서포트 선 거리" -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "서포트 내부채움 레이어 두께" +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "인쇄된 초기 레이어 서포트 구조 선 사이의 거리. 이 설정은 서포트 밀도로 계산됩니다." msgctxt "support_infill_angles label" msgid "Support Infill Line Directions" msgstr "서포트 내부채움 선 방향" -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "서포트 내부채움 속도" - -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "서포트 인터페이스 가속도" +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "사용할 정수 선 방향 리스트입니다. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트는 대괄호 안에 들어 있습니다. 기본값은 빈 목록입니다. 즉 기본 각도인 0도를 사용합니다." -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "서포트 인터페이스 밀도" +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "서포트 브림 사용" -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "서포트 인터페이스 익스트루더" +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "첫 번째 레이어의 서포트 내부채움 영역 내에서 브림을 생성합니다. 이 브림은 서포트 주변이 아니라 아래에 인쇄됩니다. 이 설정을 사용하면 빌드 플레이트에 대한 서포트력이 향상됩니다." -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "지지대 인터페이스 압출량" +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "서포트 브림 폭" -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "서포트 인터페이스 수평 확장" +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "서포트 아래를 인쇄하기 위한 브림 폭. 브림이 커질수록 추가 재료가 소요되지만 빌드 플레이트에 대한 접착력이 향상됩니다." -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "서포트 인터페이스 Jerk" +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "서포트 브림 라인 수" -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "서포트 인터페이스 선 방향" +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "서포트 브림에 사용되는 라인의 수. 브림 라인이 많아질수록 추가 재료가 소요되지만 빌드 플레이트에 대한 접착력이 향상됩니다." -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "서포트 인터페이스의 폭" +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "서포트 Z 거리" -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "서포트 인터페이스 패턴" +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "서포트 구조물의 상단/하단에서 프린트까지의 거리입니다. 이 공간은 모델이 인쇄된 후 서포트를 제거할 수 있도록 여유를 제공합니다. 모델 아래 최상위 서포트 레이어는 정규 레이어의 일부일 수 있습니다." -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "서포트 인터페이스 우선순위" +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "서포트 상단 거리" -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "서포트 인터페이스 속도" +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "서포트 상단에서 프린팅까지의 거리." -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "서포트 인터페이스 두께" +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "서포트 바닥 거리" -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "지지대 인터페이스 벽 라인 수" +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "프린트에서 서포트 바닥까지의 거리입니다. 이는 다음 레이어 높이로 반올림됩니다." -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "서포트 Jerk" +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "X/Y 서포트 거리" -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "서포트 Join 거리" +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "X/Y 방향에서 출력물로과 서포트까지의 거리." -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "서포트 선 거리" +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "서포트 거리 우선 순위" -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "서포트의 폭" +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "서포트 X/Y 거리가 서포트 Z 거리를 무시하는지 여부를 나타냅니다. X/Y가 Z를 오버라이드하면 X/Y 거리는 모델에서 서포트점을 밀어내어 돌출부까지의 실제 Z 거리에 영향을 줄 수 있습니다. 오버행 주위에 X/Y 거리를 적용하지 않음으로써이 기능을 비활성화 할 수 있습니다." -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "서포트 메쉬" +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y가 Z를 무시합니다" -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "오버행 각도" +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z가 X/Y를 무시합니다" -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "서포트 패턴" +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "최소 서포트 X/Y 거리" -msgctxt "support_type label" -msgid "Support Placement" -msgstr "서포트 배치" +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "X/Y 방향에서 오버행으로부터 서포트까지의 거리." -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "서포트 상단 가속도" +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "계단 Step Height 서포트" -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "서포트 지붕 밀도" +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "모델에있는 서포트의 계단 모양 바닥의 계단 높이. 값이 낮으면 서포트를 제거하기가 어려워 서포트만 값이 너무 높으면 불안정한 서포트 구조가 생길 수 있습니다. 계단 모양의 동작을 해제하려면 0으로 설정하십시오." -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "서포트 지붕 익스트루더" +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "서포트 계단 스텝 최대 폭" -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "지지대 지붕 압출량" +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "모델에있는 서포트의 계단 모양 바닥의 최대 폭. 값이 낮으면 서포트을 제거하기가 어려워 서포트만 값이 너무 높으면 불안정한 서포트 구조가 생길 수 있습니다." -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "서포트 지붕 수평 확장" +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "서포트 계단 스텝 최소 경사 각도" -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "서포트 위 Jerk" +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "계단 스텝이 적용되는 영역의 최소 경사입니다. 값이 낮을수록 낮은 각도 서포트 제거가 쉬워지지만 값을 너무 낮게 지정하면 모델의 다른 부분에서 적절하지 않은 결과가 발생할 수 있습니다." -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "서포트 지붕 선 방향" +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "서포트 Join 거리" -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "서포트 지붕 선 거리" +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "X/Y 방향으로 지지대 구조물 사이의 최대 거리입니다. 별도의 구조가 이 값보다 가깝게 있으면 구조가 하나로 합쳐집니다." -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "서포트 루프 라인 폭" +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "수평 확장 서포트" -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "서포트 지붕 패턴" +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "각 레이어의 모든 서포트 다각형에 적용된 오프셋의 양입니다. 양수 값을 사용하면 서포트 영역이 원활 해지며 보다 견고한 서포트가 됩니다." -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "서포트 상단 속도" +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "서포트 내부채움 레이어 두께" -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "서포트 지붕 두께" +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "서포트 내부채의 레이어당 두께. 이 값은 항상 레이어 높이의 배수이 어야하며 그렇지 않으면 반올림됩니다." -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "지지대 지붕 벽 라인 수" +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "점진적 서포트 내부채움 단계" -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "서포트 속도" +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "상단 표면 아래로 올라갈 때 서포트 채움 밀도를 반으로 줄이는 횟수입니다. 상단 표면에 더 가까운 영역은 서포트 채움 밀도까지 더 높은 밀도를 갖습니다." -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "계단 Step Height 서포트" +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "점진적 서포트 내부채움 단계 높이" -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "서포트 계단 스텝 최대 폭" +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "밀도의 절반으로 전환하기 전에 주어진 밀도의 서포트 채움 높이." -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "서포트 계단 스텝 최소 경사 각도" +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "최소 서포트 지역" -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "서포트 구조" +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "서포트 영역에 대한 최소 지역 크기. 이 값보다 작은 지역을 갖는 영역은 생성되지 않습니다." -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "서포트 상단 거리" +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "서포트 인터페이스 사용" -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "지지대 벽 라인 카운트" +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "모델과 서포트 사이에 조밀 한 인터페이스를 생성합니다. 이렇게 하면 모델이 프린팅 된 서포트 맨 위의 스킨과 모델의 위에있는 서포트 맨 아래에 스킨이 만들어집니다." -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "X/Y 서포트 거리" +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "서포트 지붕 사용" -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "서포트 Z 거리" +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "서포트 상단과 모델 사이에 조밀 한 슬래브를 생성하십시오. 그러면 모델과 서포트 사이에 스킨이 만들어집니다." -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "서포트 라인 우선" +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "서포트 바닥 사용" -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "서포트 우선" +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "서포트 바닥과 모델 사이에 조밀 한 슬래브를 생성하십시오. 그러면 모델과 지원 사이에 스킨이 만들어집니다." -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "지원되는 스킨 팬 속도" +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "서포트 인터페이스 두께" -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "표면" +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "밑면 또는 상단의 모델과 접촉하는 서포트 인터페이스 두께입니다." -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "서피스 에너지" +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "서포트 지붕 두께" -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "표면 모드" +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "받침 지붕의 두께. 이것은 모델이 놓이는 받침대 상단의 조밀 한 층의 양을 제어합니다." -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "표면에 점착되는 성항입니다." +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "서포트 바닥 두께" -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "표면의 에너지입니다." +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "서포트 바닥의 두께. 이것은 서포트가 놓여있는 모델의 상단에 프린팅되는 조밀 한 층의 수를 제어합니다." -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "가장 안쪽의 브림 라인과 그다음으로 안쪽에 있는 브림 라인의 프린트 순서를 바꿉니다. 이렇게 하면 브림이 잘 제거됩니다." +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "서포트 인터페이스 밀도" -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "교차하는 메쉬로 교차하는 볼륨으로 전환하면 겹치는 메쉬가 서로 얽히게됩니다. 이 설정을 해제하면 메시 중 하나가 다른 메시에서 제거되는 동안 오버랩의 모든 볼륨을 가져옵니다." +msgctxt "support_interface_density description" +msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "서포트의 지붕 및 바닥 밀도를 조정합니다. 값이 높을수록 오버행에서 좋지만 서포트를 제거하기가 더 어렵습니다." -msgctxt "adaptive_layer_height_threshold description" -msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." -msgstr "두 개의 인접 레이어 사이의 대상 수평 거리. 이러한 설정을 줄이면 레이어들의 가장자리를 더 가깝게 하도록 보다 얇은 레이어들을 사용하게 됩니다." +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "서포트 지붕 밀도" -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "각 레이어의 프린팅를 시작할 부분을 찾을 위치 근처의 X 좌표입니다." +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "서포트의 지붕의 밀도. 값이 높을수록 오버행에서 좋지만 서포트를 제거하기가 더 어렵습니다." -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "레이어에서 프린팅이 시작할 위치 근처의 X 좌표입니다." +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "서포트 지붕 선 거리" -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "프린팅이 시작될 때 노즐의 X 좌표입니다." +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "프린팅 된 지붕 루프 사이의 거리. 이 설정은 서포트 지붕 밀도에 의해 계산되지만 별도로 조정할 수 있습니다." -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "각 레이어 프린팅를 시작할 부분을 찾을 위치 근처의 위치에 대한 Y 좌표입니다." +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "서포트 바닥 밀도" -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "레이어에서 프린팅이 시작할 위치 근처의 Y 좌표입니다." +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "서포트 구조체의 바닥 밀도. 값이 높을수록 서포트가 모델 위에 더 잘 접착됩니다." -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "프린팅이 시작될 때 노즐의 Y 좌표입니다." +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "서포트 바닥 선 거리" -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "프린팅가 시작될 때 노즐 위치의 Z 좌표입니다." +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "프린팅 된 서포트 플로어 사이의 거리. 이 설정은 서포트 바닥 밀도로 계산되지만 별도로 조정할 수 있습니다." -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "초기 레이어 프린팅 중 가속도." +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "서포트 인터페이스 패턴" -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "초기 레이어의 가속도입니다." +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "모델과 서포트 인터페이스를 프린팅하는 패턴입니다." -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "헤드가 초기 레이어에서 이동할 때의 가속도." +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "라인" -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "헤드가 초기 레이어에서 이동할 때의 가속도." +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "그리드" -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "모든 내부 벽이 프린팅되는 가속도입니다." +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "삼각형" -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "내부채움물이 프린팅되는 가속도." +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "동심원의" -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "다림질이 수행되는 가속도." +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "지그재그" -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "프린팅 속도가 빨라집니다." +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "서포트 지붕 패턴" -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "기본 래프트 레이어가 프린팅되는 가속도입니다." +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "서포트의 지붕이 프린팅되는 패턴." -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "지면의 가속도가 프린팅됩니다. 보다 낮은 가속도로 프린팅하면 모델 상단에 서포트력을 향상시킬 수 있습니다." +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "라인" -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "서포트의 내부채움이 프린팅되는 가속도." +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "그리드" -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "중간 래프트 층이 프린팅되는 가속도." +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "삼각형" -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "가장 바깥 쪽 벽이 프린팅되는 가속도입니다." +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "동심원의" -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "프라임 타워가 프린팅되는 가속도." +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "지그재그" -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "래프트가 프린팅되는 가속도." +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "서포트 바닥 패턴" -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "서포트의 지붕과 바닥이 프린팅되는 가속도. 낮은 가속도로 프린팅하면 오버행 품질이 향상 될 수 있습니다." +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "서포트의 바닥이 프린팅되는 패턴." -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "서포트의 지붕이 프린팅되는 가속도. 낮은 가속도로 프린팅하면 오버행 품질이 향상 될 수 있습니다." +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "라인" -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "스커트와 브림이 프린팅되는 가속도. 일반적으로 이것은 초기 레이어 가속으로 이루어 서포트만 때로는 스커트나 브림을 다른 가속으로 프린팅 할 수 있습니다." +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "그리드" -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "서포트 구조가 프린팅되는 가속도." +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "삼각형" -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "상단 래프트 레이어가 프린팅되는 가속도입니다." +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "동심원의" -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "상면 내벽이 인쇄되는 가속도" +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "지그재그" -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "상면의 가장 바깥 벽이 인쇄되는 가속도" +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "최소 서포트 인터페이스 지역" -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "벽이 프린팅되는 가속도." +msgctxt "minimum_interface_area description" +msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "지원 인터페이스 다각형의 최소 영역 크기입니다. 이 값보다 작은 영역을 갖는 다각형은 정상적인 지원으로 인쇄됩니다." -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "상단 표면 스킨 층이 프린팅되는 가속도." +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "최소 서포트 지붕 지역" -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "위쪽/아래쪽 레이어가 프린팅되는 가속도입니다." +msgctxt "minimum_roof_area description" +msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "서포트 지붕에 대한 최소 면적 크기입니다. 이 값보다 작은 영역을 갖는 다각형은 정상적인 지원으로 인쇄됩니다." -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "헤드가 움직일때의 가속도." +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "최소 서포트 바닥 지역" -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "다림질하는 동안 기본 스킨 라인을 기준으로 한 재료의 압출량. 노즐을 가득 채우면 윗면의 틈새를 채울 수 있지만 표면에 과도한 압출과 필라멘트 덩어리가 생길 수 있습니다." +msgctxt "minimum_bottom_area description" +msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "지원 바닥의 최소 면적 크기입니다. 이 값보다 작은 영역을 갖는 다각형은 정상적인 지원으로 인쇄됩니다." -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "내부채움 라인 폭의 비율로 나타낸 내부채움재와 벽 사이의 오버랩 양. 약간의 오버랩으로 벽이 내부채움과 확실하게 연결됩니다." +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "서포트 인터페이스 수평 확장" -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "내부채움과 벽 사이의 겹침 정도. 약간 겹치면 벽이 내부채움에 단단히 연결됩니다." +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "서포트 인터페이스 영역에 적용되는 오프셋 양." -msgctxt "switch_extruder_retraction_amount description" -msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." -msgstr "익스트루더 전환 시 리트렉션 양. 리트렉션이 전혀 없는 경우 0으로 설정하십시오. 이는 일반적으로 열 영역의 길이와 같아야 합니다." +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "서포트 지붕 수평 확장" -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "노즐 끝 바로 위의 수평면과 원뿔 부분 사이의 각도입니다." +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "서포트 지붕에 적용되는 오프셋 양." -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "타워 옥상의 각도. 높은 값을 지정하면 뾰족한 타워 지붕이되고, 값이 낮을수록 평평한 타워 지붕이됩니다." +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "서포트 바닥 수평 확장" -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "몰드에 대해 생성 된 외벽의 오버행 각도입니다. 0도의 각은 금형의 외각을 수직으로 만들고 90도의 각은 모형의 외형을 모델의 외형으로 만듭니다." +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "서포트 바닥에 적용되는 오프셋 양." -msgctxt "support_tree_branch_diameter_angle description" -msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." -msgstr "바닥면을 향할수록 점점 더 두꺼워짐에 따른 브랜치의 직경 각도. 이 각도가 0이면 브랜치는 길이 전체에 균일한 두께를 갖게 됩니다. 약간의 각도가 있으면 트리 서포트의 안정성을 높여 줍니다." +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "서포트 인터페이스 우선순위" -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "원추형 서포트점의 기울기 각도입니다. 0도가 수직이고 90도가 수평입니다. 각도가 작 으면 서포트가 더 튼튼하지만 더 많은 재료로 구성됩니다. 음수 각도는 서포트의 받침대가 상단보다 넓게 만듭니다." +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "서포트 인터페이스와 서포트가 겹칠 때 상호 작용하는 방식으로, 현재 서포트 지붕에만 구현되어 있습니다." -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "레이어의 각 다각형에 있는 점의 평균 밀도입니다. 다각형의 원래 점은 버려지므로 밀도가 낮으면 해상도가 감소합니다." +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "서포트 우선" -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "각 선분에 있는 임의의 점 사이의 평균 거리입니다. 다각형의 원래 점은 버려지므로 해상도가 감소합니다. 이 값은 퍼지 스킨 두께의 절반보다 커야합니다." +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "인터페이스 우선" -msgctxt "material_brand description" -msgid "The brand of material used." -msgstr "" +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "서포트 라인 우선" -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "프린트 헤드 이동시 기본 가속도." +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "인터페이스 라인 우선" -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "프린팅에 사용되는 기본 온도입니다. 이것은 재료의 \"기본\"온도 이여야 합니다. 다른 모든 프린팅 온도는 이 값을 기준으로 오프셋을 사용해야합니다" +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "둘 다 겹침" -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "히팅 빌드 플레이트에 사용되는 기본 온도입니다. 이것은 재료의 \"기본\"온도입니다. 다른 모든 프린팅 온도는 이 값을 기준으로 오프셋을 사용해야합니다" +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "서포트 인터페이스 선 방향" -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "브릿지 스킨 층의 밀도입니다. 값이 100보다 작으면 스킨 라인 사이의 간격이 증가합니다." +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "사용할 정수 선 방향 리스트입니다. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트는 대괄호 안에 들어 있습니다. 기본값은 빈 목록입니다. 즉 기본 각도인 0도를 사용합니다(인터페이스가 상당히 두껍거나 90도라면 45도와 135도를 번갈아 사용)." -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "서포트 구조체의 바닥 밀도. 값이 높을수록 서포트가 모델 위에 더 잘 접착됩니다." +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "서포트 지붕 선 방향" -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "서포트의 지붕의 밀도. 값이 높을수록 오버행에서 좋지만 서포트를 제거하기가 더 어렵습니다." +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "사용할 정수 선 방향 리스트입니다. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트는 대괄호 안에 들어 있습니다. 기본값은 빈 목록입니다. 즉 기본 각도인 0도를 사용합니다(인터페이스가 상당히 두껍거나 90도라면 45도와 135도를 번갈아 사용)." -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "두번째 브릿지 스킨 층의 밀도입니다. 값이 100보다 작으면 스킨 라인 사이의 간격이 증가합니다." +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "바닥 지붕 선 방향" -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "세번째 브릿지 스킨 층의 밀도입니다. 값이 100보다 작으면 스킨 라인 사이의 간격이 증가합니다." +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "사용할 정수 선 방향 리스트입니다. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트는 대괄호 안에 들어 있습니다. 기본값은 빈 목록입니다. 즉 기본 각도인 0도를 사용합니다(인터페이스가 상당히 두껍거나 90도라면 45도와 135도를 번갈아 사용)." -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "프린팅 가능 영역의 깊이 (Y 방향)" +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "팬 속도 무시" -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "특수 타워의 지름." +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "활성화되면 서포트 바로 위의 스킨 영역에 대한 프린팅 냉각 팬 속도가 변경됩니다." -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "트리 서포트의 가장 얇은 브랜치의 직경. 브랜치가 두꺼울수록 더 견고해집니다. 바닥을 향한 브랜치는 이보다 더 두꺼워집니다." +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "지원되는 스킨 팬 속도" -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "트리 서포트 브랜치 팁의 상단 직경입니다." +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "서포트 바로 위의 스킨 영역을 인쇄할 때 사용할 팬 속도 백분율 빠른 팬 속도를 사용하면 서포트를 더 쉽게 제거할 수 있습니다." -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "피더에서 재료를 구동시키는 휠의 지름." +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "타워 사용" -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "트리 서포트의 가장 굵은 브랜치의 직경. 트렁크가 두꺼울수록 더 견고해집니다. 얇은 트렁크는 빌드 플레이트에서 차지하는 공간이 보다 적습니다." +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "작은 오버행에 서포트를 생성하기 위해 특수한 타워를 사용. 이 타워들은 그들이 서포트하는 지역보다 더 큰 지름을 가지고 있습니다. 오버행 부근에서 타워의 직경이 감소하여 지붕을 형성합니다." -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "이전 높이와 비교되는 다음 레이어 높이의 차이." +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "타워 지름" -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "다림질 라인 사이의 거리." +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "특수 타워의 지름." -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "이동 중 출력물을 피할 때 노즐과 이미 프린팅 된 부분 사이의 거리." +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "최대 타워 지지 직경" -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "기본 래프트 층에 대한 래프트 사이의 거리. 넓은 간격으로 빌드 플레이트에서 래프트를 쉽게 제거 할 수 있습니다." +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "특수 지지대 타워에 의해서 지지될 작은 영역의 X/Y 방향의 최대 직경입니다." -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "중간 래프트 층에 대한 래프트 사이의 거리. 중간 틈새는 매우 넓어야하며 래프트 상부 층을서포트 할만큼 충분히 촘촘해야합니다." +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "타워 지붕 각도" -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "상단 래프트 레이어에 대한 래프트 사이의 거리. 간격은 선 너비와 동일해야 표면이 단색입니다." +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "타워 옥상의 각도. 높은 값을 지정하면 뾰족한 타워 지붕이되고, 값이 낮을수록 평평한 타워 지붕이됩니다." -msgctxt "prime_tower_raft_base_line_spacing description" -msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "독특한 프라임 타워 래프트 레이어를 위한 래프트 라인 간 거리입니다. 간격이 넓을수록 빌드 플레이트에서 래프트를 쉽게 제거할 수 있습니다." +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "드롭 다운 서포트 메쉬" -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "연동 구조를 생성하기 위한 모델 간 경계로부터의 거리로, 셀 단위로 측정됩니다. 셀 수가 너무 적으면 접착력이 떨어집니다." +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "서포트 메쉬 아래의 모든 부분을 지원하여서 서포트 메쉬에 오버행이 없습니다." -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "모델에서 가장 바깥 쪽 브림까지의 거리. 큰 테두리는 빌드 플레이트에 대한 접착력을 향상 시키지만 효과적인 프린팅 영역도 감소시킵니다." +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "장면에 서포트 메쉬가 있습니다" -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "연동 구조가 생성되지 않는 모델 외부로부터의 거리로, 셀 단위로 측정됩니다." +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "장면에 서포트 메쉬가 있습니다. 이 설정은 Cura가 제어합니다." -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "노즐의 열이 필라멘트로 전달되는 노즐의 끝에서부터의 거리." +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "빌드 플레이트 고정" -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "바닥 스킨의 거리가 내부채움으로 확장됩니다. 값이 높을수록 스킨가 내부채움 패턴에 더 잘 붙어 스킨가 아래 층의 벽에 잘 밀착됩니다. 값이 낮을수록 사용 된 재료의 양이 절약됩니다." +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "고정" -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "스킨이 내부채움으로 확장되는 거리입니다. 값이 높을수록 스킨이 내부채움 패턴에 더 잘 부착되고 인접 레이어의 벽이 스킨에 잘 밀착됩니다. 값이 낮을수록 사용 될 재료의 양이 절약됩니다." +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "프라임 블롭 활성화" -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "상단 스킨의 거리가 내부채움으로 확장됩니다. 값이 높을수록 스킨이 내부채움 패턴에 더 잘 부착되며 위 레이어의 벽이 스킨에 잘 밀착됩니다. 값이 낮을수록 사용 된 재료의 양이 절약됩니다." +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "프린팅하기 전에 프라이밍할지 여부. 이 설정을 켜면 프린팅하기 전에 익스트루더가 노즐에서 재료를 준비 할 수 있습니다. 브림 또는 스커트 프린팅는 프라이밍처럼 작동 할 수 있습니다.이 경우이 설정을 해제하면 시간이 절약됩니다." -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "브러시 전체에 헤드를 앞뒤로 이동하는 거리입니다." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "익스트루더 프라임 X 위치" -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "내부채움 선의 종점이 재료를 절약하기 위해 단축됩니다. 이 설정은 해당 선의 종점에 대한 오버행(경사면)의 각도입니다." +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 X 좌표." -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "압출하는 동안 노즐이 냉각되는 추가적인 속도. 압출하는 동안 가열 될 때 상실되는 열 상승 속도를 나타 내기 위해 동일한 값이 사용됩니다." +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "익스트루더 프라임 Y 위치" -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "첫번째 층의 서포트 채움에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 Y 좌표." -msgctxt "raft_base_extruder_nr description" -msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." -msgstr "스커트 또는 브림 프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "빌드 플레이트 고정 유형" -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "서포트의 바닥을 프린팅하는 데 사용할 익스트루더. 이것은 다중 압출에 사용됩니다." +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "빌드 플레이트에 대한 접착력을 향상시키는 데 도움이되는 다양한 옵션. 브림은 뒤틀림을 방지하기 위해 모델 바닥 주위에 단층 평면 영역을 추가합니다. 래프트는 모델 아래에 지붕이있는 두꺼운 격자를 추가합니다. 스커트는 모델 주변에 프린팅 된 선이지만 모델에는 연결되어 있지 않습니다." -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "서포트의 내부채움을 프린팅하는 데 사용할 익스트루더. 이것은 다중 압출에 사용됩니다." +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "스커트" -msgctxt "raft_interface_extruder_nr description" -msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." -msgstr "래프트의 중간 레이어 프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "브림" -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "서포트의 지붕과 바닥을 프린팅 할 때 사용하는 익스트루더. 이것은 다중 압출에 사용됩니다." +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "래프트" -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "서포트의 지붕을 프린팅 할 때 사용하는 익스트루더. 이것은 다중 압출에 사용됩니다." +msgctxt "adhesion_type option none" +msgid "None" +msgstr "None" -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "스커트 또는 브림 프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "빌드 플레이트 고정 익스트루더" msgctxt "adhesion_extruder_nr description" msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." msgstr "스커트 / 브림 / 래프트 프린팅에 사용하는 익스트루더. 이것은 다중 압출에 사용됩니다." -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "서포트 프린팅에 사용할 익스트루더. 이것은 다중 압출에 사용됩니다." - -msgctxt "raft_surface_extruder_nr description" -msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." -msgstr "래프트의 상단 레이어 프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." - -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "내부채움용 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "스커트/브림 익스트루더" -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "내벽 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "스커트 또는 브림 프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "외벽 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "래프트 베이스 익스트루더" -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "상단 및 하단 스킨 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." +msgctxt "raft_base_extruder_nr description" +msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." +msgstr "스커트 또는 브림 프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "익스트루더는 최상층을 프린팅하는 데 사용됩니다. 이것은 다중 압출에 사용됩니다." +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "래프트 중간 익스트루더" -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "벽을 프린팅하는 데 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." +msgctxt "raft_interface_extruder_nr description" +msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." +msgstr "래프트의 중간 레이어 프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "기본 래프트 레이어의 팬 속도입니다." +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "래프트 상단 익스트루더" -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "중간 래프트 레이어의 팬 속도입니다." +msgctxt "raft_surface_extruder_nr description" +msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." +msgstr "래프트의 상단 레이어 프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "래프트의 팬 속도." +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "스커트 선 수" -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "상단 래프트 레이어의 팬 속도입니다." +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "여러 개의 스커트 라인을 사용하여 작은 모델에 더 잘 압출 성형 할 수 있습니다. 이것을 0으로 설정하면 스커트가 비활성화됩니다." -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "인쇄 충진물의 해당 위치에서 밝기 값으로 최소 밀도를 결정하는 이미지의 파일 위치." +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "스커트 높이" -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "지지대의 해당 위치에서 밝기 값으로 최소 밀도를 결정하는 이미지의 파일 위치." +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "가장 안쪽의 스커트 라인을 여러 겹으로 프린트하면 스커트를 쉽게 제거할 수 있습니다." -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "처음 몇 개의 레이어는 모델의 나머지 부분보다 느리게 프린팅되어 빌드 플레이트에 대한보다 나은 접착력을 얻고 출력물의 전체 성공률을 향상시킵니다. 속도는 이 층 위로 점진적으로 증가합니다." +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "스커트 거리" -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "최종 래프트 층과 모델의 첫 번째 층 사이의 틈새. 래프트 층과 모델 사이의 결합을 낮추기 위해 이 양만큼 첫 번째 층만 올립니다. 래프트를 쉽게 떼어 낼 수 있습니다." +msgctxt "skirt_gap description" +msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "프린트의 스커트와 첫 번째 레이어 사이의 수평 거리입니다." +"이것은 최소 거리입니다. 여러 개의 스커트 선이 이 거리에서 바깥쪽으로 연장됩니다." -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "프린팅 가능 영역의 높이 (Z 방향)입니다." +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "스커트/브림 최소 길이" -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "모델의 수평 부분 위의 높이로 몰드를 프린팅합니다." +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "스커트 또는 브림의 최소 길이. 이 길이에 모든 스커트 또는 브림 선이 모두 도달하지 않으면 최소 길이에 도달 할 때까지 더 많은 스커트 또는 브림 선이 추가됩니다. 참고 : 0으로 설정하면 무시됩니다." -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "표준 팬 속도로 팬이 회전하는 높이입니다. 이 높이의 아래 레이어에서 팬 속도는 초기 팬 속도에서 표준 팬 속도로 점차 증가합니다." +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "브림 너비" -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "노즐 끝과 갠트리 시스템 사이의 높이 차이 (X 및 Y 축)." +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "모델에서 가장 바깥 쪽 브림까지의 거리. 큰 테두리는 빌드 플레이트에 대한 접착력을 향상 시키지만 효과적인 프린팅 영역도 감소시킵니다." -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "노즐의 끝과 프린트 헤드의 가장 낮은 부분 사이의 높이 차이입니다." +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "브림 선 수" -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "익스트루더 스위치 후 Z 홉을 수행할 때의 높이 차이." +msgctxt "brim_line_count description" +msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." +msgstr "브림에 사용되는 선의 수입니다. 더 많은 브림 선이 빌드 플레이트에 대한 접착력을 향상 시키지만 유효 프린트 영역도 감소시킵니다." -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Z 홉을 수행 할 때의 높이 차이." +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "브림 거리" -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "Z 홉을 수행할 때의 높이 차이." +msgctxt "brim_gap description" +msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." +msgstr "첫 번째 브림 선과 첫 번째 레이어 프린팅의 윤곽 사이의 수평 거리입니다. 작은 간격은 브림을 제거하기 쉽도록 하면서 내열성의 이점을 제공할 수 있습니다." -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "각 층의 높이 (mm)입니다. 값이 클수록 해상도가 낮고 프린팅 속도가 빨라지며, 값이 작을수록 해상도가 높고 프린팅 속도가 느려집니다." +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "브림이 서포트를 대체" -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "밀도의 절반으로 전환하기 전에 주어진 밀도에서 내부채움의 높이." +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "서포트가 차지할 공간이더라도 모델 주변에 브림이 인쇄되도록 합니다. 이렇게 하면 서포트의 첫 번째 레이어 영역 일부가 브림 영역으로 대체됩니다." -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "밀도의 절반으로 전환하기 전에 주어진 밀도의 서포트 채움 높이." +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "브림 위치" -msgctxt "interlocking_beam_layer_count description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "연동 구조의 빔 높이로, 레이어 수로 측정됩니다. 레이어가 적을수록 강하지만 결함이 발생하기 쉽습니다." +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "모델 외부, 내부 또는 양쪽 모두에 브림을 출력합니다. 모델에 따라 나중에 제거해야 하는 브림의 양을 줄이는 데 도움이 될 수 있으며, 베드에 적절하게 밀착시킬 수 있습니다." -msgctxt "interlocking_orientation description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "연동 구조의 빔 높이로, 레이어 수로 측정됩니다. 레이어가 적을수록 강하지만 결함이 발생하기 쉽습니다." +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "외부만" -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "첫번째 레이어의 높이 (mm)입니다. 첫번째 레이어를 두껍게하면 빌드 플레이트에 쉽게 부착됩니다." +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "내부만" -msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "프라임 타워 베이스의 높이입니다. 이 값을 늘리면 베이스가 넓어져 프라임 타워가 더 튼튼해집니다. 이 설정이 너무 낮으면 프라임 타워에 튼튼한 베이스가 형성되지 않습니다." +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "모두" -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "모델에있는 서포트의 계단 모양 바닥의 계단 높이. 값이 낮으면 서포트를 제거하기가 어려워 서포트만 값이 너무 높으면 불안정한 서포트 구조가 생길 수 있습니다. 계단 모양의 동작을 해제하려면 0으로 설정하십시오." +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "브림의 여백 회피" -msgctxt "brim_gap description" -msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." -msgstr "첫 번째 브림 선과 첫 번째 레이어 프린팅의 윤곽 사이의 수평 거리입니다. 작은 간격은 브림을 제거하기 쉽도록 하면서 내열성의 이점을 제공할 수 있습니다." +msgctxt "brim_inside_margin description" +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "모델 주위의 브림은 원하지 않는 다른 모델에 닿을 수 있습니다. 이 설정은 브림이 없는 모델에서 이 거리 내의 모든 브림을 제거합니다." -msgctxt "skirt_gap description" -msgid "" -"The horizontal distance between the skirt and the first layer of the print.\n" -"This is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "" -"프린트의 스커트와 첫 번째 레이어 사이의 수평 거리입니다.\n" -"이것은 최소 거리입니다. 여러 개의 스커트 선이 이 거리에서 바깥쪽으로 연장됩니다." +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "스마트 브림" -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "내부채움 선이 인쇄 시간을 절약하기 위해 정리됩니다. 이는 내부채움 선 길이 전체에 허용되는 오버행(경사면)의 최대 각도입니다." +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "가장 안쪽의 브림 라인과 그다음으로 안쪽에 있는 브림 라인의 프린트 순서를 바꿉니다. 이렇게 하면 브림이 잘 제거됩니다." -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "내부채움 패턴이 X축을 따라 이 거리만큼 이동합니다." +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "래프트 추가 여백" -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "내부채움 패턴이 Y축을 따라 이 거리만큼 이동합니다." +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "래프트가 활성화 된 경우 래프트가 주어진 모델 주변의 추가 래프트 지역입니다. 이 여백을 늘리면 재료를 더 많이 사용하고 출력물을 적게 차지하면서 더 강력한 래프트가 만들어집니다." -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "노즐의 내경. 비표준 노즐 크기를 사용할 때 이 설정을 변경하십시오." +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "래프트 베이스 추가 여백" -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "기본 래프트 레이어가 프린팅 될 때의 Jerk입니다." +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "래프트 베이스가 활성화된 경우, 래프트가 주어진 모델 주위의 추가 래프트 영역입니다. 이 여백을 늘리면 재료를 더 사용하고 출력 영역을 적게 차지하면서 더 강한 래프트를 만들 수 있습니다." -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "중간 래프트 층이 프린팅 될 때의 Jerk입니다." +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "래프트 중간 추가 여백" -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "래프트가 프린팅 될 때의 Jerk입니다." +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "래프트 중간이 활성화된 경우, 래프트가 주어진 모델 주위의 추가 래프트 영역입니다. 이 여백을 늘리면 재료를 더 사용하고 출력 영역을 적게 차지하면서 더 강한 래프트를 만들 수 있습니다." -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "상단 래프트 레이어가 프린팅 될 때의 Jerk입니다." +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "래프트 상단 추가 여백" -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "제거 할 바닥 스킨 영역의 최대 너비. 이 값보다 작은 모든 스킨 영역은 사라집니다. 이렇게하면 모델의 경사면에서 밑면 스킨을 프린팅하는 데 소요되는 시간과 재료의 양을 제한하는 데 도움이됩니다." +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "래프트 상단이 활성화된 경우, 래프트가 주어진 모델 주위의 추가 래프트 영역입니다. 이 여백을 늘리면 재료를 더 사용하고 출력 영역을 적게 차지하면서 더 강한 래프트를 만들 수 있습니다." -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "제거 할 외부스킨 영역의 가장 큰 너비. 이 값보다 작은 모든 스킨 영역은 사라집니다. 이렇게하면 모델의 경사면에서 위쪽 / 아래쪽 스킨을 프린팅하는 데 소요되는 시간과 재료의 양을 제한하는 데 도움이 됩니다." +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "래프트 내부 모서리 제거" -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "제거 할 상단 스킨 영역의 가장 큰 너비. 이 값보다 작은 모든 스킨 영역은 사라집니다. 이렇게 하면 모델의 경사면에서 상단 스킨을 프린팅하는 데 소요되는 시간과 재료의 양을 제한하는 데 도움이됩니다." +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "래프트가 볼록해지도록 래프트에서 내부 모서리를 제거합니다." -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "팬이 표준 팬 속도로 회전하는 레이어입니다. 표준 팬 속도시의 높이가 설정이 되어있으면, 이 값이 계산되고 정수로 반올림됩니다." +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "래프트 베이스 내부 모서리 제거" -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "표준 팬 속도와 최대 팬 속도 사이의 임계 값을 설정하는 레이어 시간입니다. 이 시간보다 느리게 프린팅되는 레이어는 표준 팬 속도를 사용합니다. 빠른 레이어의 경우 팬 속도가 최대 팬 속도쪽으로 점차 증가합니다." +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "래프트가 볼록해지도록 래프트 베이스에서 내부 모서리를 제거합니다." -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "리트렉션 이동 중에 수축 된 재료의 길이입니다." +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "래프트 중간 내부 모서리 제거" -msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "프라임 타워 베이스의 경사에 사용되는 크기 계수입니다. 이 값을 늘리면 베이스가 더 얇아집니다. 줄이면 베이스가 더 두꺼워집니다." +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "래프트가 볼록해지도록 래프트 중간 부분에서 내부 모서리를 제거합니다." -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "프린터에 설치된 빌드 플레이트의 재질." +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "래프트 상단 내부 모서리 제거" -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "기본 레이어 높이와 다른 최대 허용 높이." +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "래프트가 볼록해지도록 래프트 상단 부분에서 내부 모서리를 제거합니다." -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "Ooze 쉴드가 가질 최대 각도. 0도가 수직이고 90도가 수평입니다. 각도가 작으면 Ooze 쉴드가 덜 파손되지만 재료는 더 많이 소모됩니다." +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "래프트 부드럽게하기" -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "프린팅 가능하게 된 후 오버행의 최대 각도. 0도의 값에서 모든 오버행은 빌드 플레이트에 연결된 모델로 대체됩니다. 90도는 모델을 변경하지 않습니다." +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "이 설정은 래프트 윤곽의 안쪽 구석의 곡률을 제어합니다. 안쪽 구석이 여기에 지정된 값과 동일한 반경으로 반원 모양으로 휘어집니다. 또한 이 설정을 사용하면 래프트 윤곽에서 그러한 원보다 작은 구멍이 제거됩니다." -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "모델 주위로 브랜치가 자랄 때 브랜치의 최대 각도입니다. 브랜치가 수직에 가깝게 안정적이 되도록 만들려면 더 낮은 각도를 사용하고, 브랜치의 도달 거리를 늘리려면 더 높은 각도를 사용하십시오." +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "래프트 베이스 부드럽게 하기" -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "오버행 프린팅 설정에 의해 제거되기 전 모델의 베이스에 있는 구멍의 최대 영역입니다. 이보다 작은 홀은 유지됩니다. 0mm² 값은 모델 베이스의 모든 홀을 채웁니다." +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "이 설정은 래프트 베이스의 내부 모서리를 얼마나 둥글게 할지 제어합니다. 내부 모서리는 여기에 지정된 값과 동일한 반경을 가진 반원 모양으로 둥글게 다듬어집니다. 이 설정은 래프트 윤곽선에 있는 이러한 원보다 작은 구멍도 제거합니다." -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "최대 해상도 설정에 대한 해상도를 낮추면 최대 편차를 사용할 수 있습니다. 최대 편차를 높이면 프린트의 정확도는 감소하지만, G 코드도 감소합니다. 최대 편차는 최대 해상도의 한계이며, 따라서 두 항목이 충돌하면 항상 최대 편차가 우선합니다." +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "래프트 중간 부드럽게 하기" -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "X/Y 방향으로 지지대 구조물 사이의 최대 거리입니다. 별도의 구조가 이 값보다 가깝게 있으면 구조가 하나로 합쳐집니다." +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "이 설정은 래프트 중간의 내부 모서리를 얼마나 둥글게 할지 제어합니다. 내부 모서리는 여기에 지정된 값과 동일한 반경을 가진 반원 모양으로 둥글게 다듬어집니다. 이 설정은 래프트 윤곽선에 있는 이러한 원보다 작은 구멍도 제거합니다." -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "압출 속도를 보상하기 위해 필라멘트를 이동하는 최대 거리(mm)." +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "래프트 상단 부드럽게 하기" -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "직선에서 중간 점을 제거할 때 허용되는 최대 압출 영역 편차. 중간 점은 긴 직선에서 너비가 바뀌는 점의 역할을 할 수 있습니다. 따라서 중간 점이 제거되면 선의 너비가 균일해지고 그 결과, 약간의 압출 영역을 잃거나 얻게 됩니다. 이 값을 증가시키면 중간의 너비가 바뀌는 점이 더 많이 제거될 수 있으므로, 직선의 평행한 벽들 사이에 약간의 미달(또는 과잉) 압출이 발생할 수 있습니다. 프린트의 정확도는 감소하지만, G 코드도 감소합니다." +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "이 설정은 래프트 상단의 내부 모서리를 얼마나 둥글게 할지 제어합니다. 내부 모서리는 여기에 지정된 값과 동일한 반경을 가진 반원 모양으로 둥글게 다듬어집니다. 이 설정은 래프트 윤곽선에 있는 이러한 원보다 작은 구멍도 제거합니다." -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "초기 층의 프린팅 중 최대 순간 속도 변화." +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "래프트 에어 갭" -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "프린트 헤드의 최대 순간 속도 변화." +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "최종 래프트 층과 모델의 첫 번째 층 사이의 틈새. 래프트 층과 모델 사이의 결합을 낮추기 위해 이 양만큼 첫 번째 층만 올립니다. 래프트를 쉽게 떼어 낼 수 있습니다." -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "다림질을하는 동안 최대 순간 속도 변화." +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "초기 레이어 Z 겹침" -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "모든 내부 벽이 프린팅되는 최대 순간 속도 변화." +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "모델의 첫 번째 및 두 번째 레이어를 Z 방향으로 겹쳐서 에어 갭에서 손실된 필라멘트를 보완합니다. 첫 번째 모델 레이어 위의 모든 모델은 이 값만큼 아래로 이동합니다.\n이 설정으로 인해 두 번째 레이어가 초기 레이어 아래에 출력되는 경우가 있습니다. 이는 의도된 동작입니다." -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "내부채움이 프린팅되는 최대 순간 속도 변화." +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "래프트 기준 두께" -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "서포트의 바닥이 프린팅되는 최대 순간 속도 변화." +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "기본 래프트 레이어의 레이어 두께. 이것은 프린터 빌드 플레이트에 단단히 붙어있는 두꺼운 층이어야합니다." -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "서포트가 채워지는 최대 순간 속도 변화." +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "래프트 기준 선 너비" -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "가장 바깥 쪽 벽이 프린팅되는 최대 순간 속도 변화." +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "기본 래프트 층에있는 선의 너비. 이것은 빌드 플레이트 접착을 돕기 위해 두꺼운 선 이어야 합니다." -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "프라임 타워가 프린팅되는 최대 순간 속도 변화." +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "래프트 기준 선 간격" -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "서포트의 지붕과 바닥이 프린팅되는 최대 순간 속도 변화." +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "기본 래프트 층에 대한 래프트 사이의 거리. 넓은 간격으로 빌드 플레이트에서 래프트를 쉽게 제거 할 수 있습니다." -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "서포트의 지붕이 프린팅되는 최대 순간 속도 변화." +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "래프트 중간 레이어" -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "스커트와 브림이 프린팅되는 최대 순간 속도 변화." +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "래프트의 베이스와 표면 사이에 있는 레이어의 수. 이 수가 래프트의 주요 두께를 구성합니다. 이 수가 증가하면 래프트가 더 두껍고 튼튼해집니다." -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "서포트 구조가 프린팅되는 최대 순간 속도 변화." +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "래프트 중간 두께" -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "상면 바깥 벽이 인쇄되는 최대 순간 속도 변화" +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "중간 래프트 층의 층 두께." -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "상면 내부 벽이 인쇄되는 최대 순간 속도 변화" +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "래프트 중간 선 너비" -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "벽이 프린팅되는 최대 순간 속도 변화." +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "중간 래프트 층의 선폭. 두 번째 레이어를 더 돌출 시키면 선이 빌드 플레이트에 달라 붙습니다." -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "상단 표면 스킨 층이 프린팅되는 최대 순간 속도 변화." +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "래프트 중간 간격" -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "상단 / 하단 레이어가 프린팅되는 최대 순간 속도 변화." +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "중간 래프트 층에 대한 래프트 사이의 거리. 중간 틈새는 매우 넓어야하며 래프트 상부 층을서포트 할만큼 충분히 촘촘해야합니다." -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "헤드가 이동하는 최대 순간 속도 변화." +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "래프트 탑 레이어" -msgctxt "prime_tower_max_bridging_distance description" -msgid "The maximum length of the branches which may be printed over the air." -msgstr "" +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "두 번째 래프트 레이어 맨 위에있는 최상위 레이어의 수입니다. 이것들은 모델이 위치하는 완전히 채워진 레이어입니다. 2층은 1보다 부드러운 표면을 만듭니다." -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "X 방향의 모터 최대 속도입니다." +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "래프트 상단 레이어 두께" -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "Y 방향 모터의 최대 속도입니다." +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "상단 래프트 레이어의 레이어 두께." -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "Z 방향의 모터 최대 속도입니다." +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "래프트 상단 선 너비" -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "필라멘트의 최대 속도." +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "래프트의 윗면에 있는 선의 폭. 래프트의 상단이 매끄럽도록 얇은 선으로 구성 될 수 있습니다." -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "모델에있는 서포트의 계단 모양 바닥의 최대 폭. 값이 낮으면 서포트을 제거하기가 어려워 서포트만 값이 너무 높으면 불안정한 서포트 구조가 생길 수 있습니다." +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "래프트 상단 간격" -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "몰드의 바깥쪽과 모델의 바깥쪽 사이의 최소 거리입니다." +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "상단 래프트 레이어에 대한 래프트 사이의 거리. 간격은 선 너비와 동일해야 표면이 단색입니다." -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "프린트 헤드의 최소 이동 속도." +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "단면 래프트 상단 표면 순서" -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "프린팅이 시작될 수 있는 프린팅 온도까지 가열하는 동안의 최소 온도." +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "래프트 상단 표면 선이 항상 한 방향으로 인접한 선과 겹치도록 순서대로 출력합니다. 출력 시간은 약간 더 소요되지만, 모델 하단 표면에서도 보이는 표면을 더 일관적으로 보이게 만들 수 있습니다." -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "노즐이 냉각되기 전에 익스트루더가 비활성이어야하는 최소 시간. 이 시간보다 오래 익스트루더를 사용하지 않을 경우에만 대기 온도로 냉각시킬 수 있습니다." +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "래프트 벽 수" -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "충진물이 추가되는 내부 오버행의 최소 각도. 0°에서는 개체가 충진물로 완전히 채워지지만, 90°에서는 충진물이 공급되지 않습니다." +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "래프트의 선형 패턴 주위에 출력할 윤곽선 수입니다." -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "서포트가 추가 된 오버행 각도의 최소값입니다. 0 °의 값에서 모든 돌출부가 서포트가 생성되며 90 °는 지원하지 않습니다." +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "래프트 베이스 벽 개수" -msgctxt "retraction_min_travel description" -msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." -msgstr "리트렉션이 가능하기 위해 필요한 최소한의 이동 거리. 작은 영역에서 더 적은 리트렉션이 가능합니다." +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "래프트의 베이스 레이어에 있는 선형 패턴 주위에 프린팅 할 윤곽의 수." -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "스커트 또는 브림의 최소 길이. 이 길이에 모든 스커트 또는 브림 선이 모두 도달하지 않으면 최소 길이에 도달 할 때까지 더 많은 스커트 또는 브림 선이 추가됩니다. 참고 : 0으로 설정하면 무시됩니다." +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "래프트 중간 벽 수" -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "중간 선 간격 충전재 폴리라인 벽의 최소 선 너비. 이 설정은 두 개의 벽 선을 프린팅 하는 것에서 두 개의 외벽 및 가운데의 단일 중앙 벽 프린팅으로 전환하는 모델 두께를 결정합니다. 최소 짝수 벽 선 너비가 더 높을수록 최대 홀수 벽 선 너비가 높아집니다. 최대 홀수 벽 너비는 2 * 최소 짝수 벽 선 너비로 계산됩니다." +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "래프트의 중간 레이어에 있는 선형 패턴 주위에 출력할 윤곽선 수입니다." -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "일반 다각형 벽의 최소 선 너비 이 설정은 단일의 얇은 벽 선 프린팅에서 두 개의 벽 선 프린팅으로 전환하는 모델 두께를 결정합니다. 최소 짝수 벽 선 너비가 더 높을수록 최대 홀수 벽 선 너비가 높아집니다. 최대 짝수 벽 선 너비는 외벽 선 너비 + 0.5 * 최소 홀수 벽 선 너비로 계산됩니다." +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "래프트 상단 벽 수" -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "최소 프린팅 속도. 프린터의 속도가 너무 느려지면 노즐의 압력이 너무 낮아 프린팅 품질이 나빠질 수 있습니다." +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "래프트의 상단 레이어에 있는 선형 패턴 주위에 출력할 윤곽선 수입니다." -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "슬라이딩 후의 선분의 최소 크기입니다. 이 값을 높이면 메쉬의 해상도가 낮아집니다. 그러면 프린터가 G 코드를 처리하는 데 필요한 속도를 유지할 수 있으며 처리할 수 없는 메쉬의 디테일이 제거되므로 슬라이드 속도가 높아집니다." +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "래프트 프린팅 속도" -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "슬라이딩 후의 이동 선분의 최소 크기입니다. 이 값을 높이면 코너에서 매끄럽게 이동하는 정도가 감소합니다. 프린터가 G 코드를 처리하는 데 필요한 속도를 유지할 수 있지만, 모델을 피하기 때문에 정확도가 감소합니다." +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "래프트가 프린팅되는 속도." -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "계단 스텝이 적용되는 영역의 최소 경사입니다. 값이 낮을수록 낮은 각도 서포트 제거가 쉬워지지만 값을 너무 낮게 지정하면 모델의 다른 부분에서 적절하지 않은 결과가 발생할 수 있습니다." +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "래프트 기본 프린팅 속도" -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "레이어에 소요 된 최소 시간입니다. 이렇게 하면 프린터가 한 레이어에서 여기에 설정된 시간을 소비하게됩니다. 이렇게하면 다음 레이어를 프린팅하기 전에 출력물을 적절히 냉각시킬 수 있습니다. 리프트 헤드가 비활성화되고 최소 속도가 위반되는 경우 레이어가 최소 레이어 시간보다 짧게 걸릴 수 있습니다." +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "기본 래프트 레이어가 프린팅되는 속도입니다. 이것은 노즐에서 나오는 재료의 양이 상당히 많기 때문에 아주 천천히 프린팅되어야 합니다." -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "충분한 재료를 퍼지하기 위해 프라임 타워 각 층의 최소 부피." +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "래프트 중앙 프린팅 속도" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "모델에 연결해야 하는 브랜치의 직경은 빌드 플레이트에 도달할 수 있는 브랜치와 병합하여 최대로 늘릴 수 있습니다. 이를 늘리면 프린트 시간이 단축되지만 모델에 닿는 서포트 영역이 증가합니다." +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "중간 래프트 층이 프린팅되는 속도. 이것은 노즐에서 나오는 재료의 양이 상당히 많기 때문에 아주 천천히 프린팅되어야합니다." -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "3D 프린터 모델의 이름." +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "래프트 상단 프린팅 속도" -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "\"AA 0.4\"및 \"BB 0.8\"과 같은 익스트루더의 노즐 ID." +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "상단 래프트 레이어가 프린팅되는 속도입니다. 이 노즐은 조금 더 느리게 프린팅해야 노즐이 인접한 표면 선을 천천히 부드럽게 할 수 있습니다." -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "노즐은 이동 할 때 이미 프린팅 된 부분을 피합니다. 이 옵션은 combing이 활성화 된 경우에만 사용할 수 있습니다." +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "래프트 프린팅 가속도" -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "노즐은 이동하는 경우 이미 인쇄된 지지대를 피합니다. 빗질을 사용하는 경우에만 사용할 수 있는 옵션입니다." +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "래프트가 프린팅되는 가속도." -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "아래층의 수. 바닥 두께로 계산을 할때 이 값은 벽 두께로 계산할 때 이 값은 반올림됩니다." +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "래프트 기본 프린팅 가속도" -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "래프트의 베이스 레이어에 있는 선형 패턴 주위에 프린팅 할 윤곽의 수." +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "기본 래프트 레이어가 프린팅되는 가속도입니다." -msgctxt "raft_interface_wall_count description" -msgid "The number of contours to print around the linear pattern in the middle layers of the raft." -msgstr "" +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "래프트 중앙 프린팅 가속도" -msgctxt "raft_surface_wall_count description" -msgid "The number of contours to print around the linear pattern in the top layers of the raft." -msgstr "" +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "중간 래프트 층이 프린팅되는 가속도." -msgctxt "raft_wall_count description" -msgid "The number of contours to print around the linear pattern of the raft." -msgstr "" +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "래프트 상단 프린팅 가속도" -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "스킨 에지를 지원하는 내부채움 레이어의 수." +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "상단 래프트 레이어가 프린팅되는 가속도입니다." -msgctxt "initial_bottom_layers description" -msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "빌드 플레이트에서 위를 향하는 초기 하단 레이어 수. 하단 두께로 계산할 경우, 이 값이 전체 값으로 반올림됩니다." +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "래프트 프린팅 Jerk" -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "래프트의 베이스와 표면 사이에 있는 레이어의 수. 이 수가 래프트의 주요 두께를 구성합니다. 이 수가 증가하면 래프트가 더 두껍고 튼튼해집니다." +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "래프트가 프린팅 될 때의 Jerk입니다." -msgctxt "brim_line_count description" -msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." -msgstr "브림에 사용되는 선의 수입니다. 더 많은 브림 선이 빌드 플레이트에 대한 접착력을 향상 시키지만 유효 프린트 영역도 감소시킵니다." +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "래프트 기본 프린팅 Jerk" -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "서포트 브림에 사용되는 라인의 수. 브림 라인이 많아질수록 추가 재료가 소요되지만 빌드 플레이트에 대한 접착력이 향상됩니다." +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "기본 래프트 레이어가 프린팅 될 때의 Jerk입니다." -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "두 번째 래프트 레이어 맨 위에있는 최상위 레이어의 수입니다. 이것들은 모델이 위치하는 완전히 채워진 레이어입니다. 2층은 1보다 부드러운 표면을 만듭니다." +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "래프트 중앙 프린팅 Jerk" -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "출력물의 상단 레이어의 수. 상단 두깨로 계산을 할때 이 값은 벽 두께로 계산할 때 이 값은 반올림됩니다." +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "중간 래프트 층이 프린팅 될 때의 Jerk입니다." -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "최상층의 스킨 층의 수. 일반적으로 고품질의 표면을 생성하기 위해 맨위의 레이어 하나만 있으면 충분합니다." +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "래프트 상단 프린팅 Jerk" -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "지지대 충진물을 둘러싸는 벽의 개수. 벽을 추가하면 지지물 인쇄 안정성을 높일 수 있고 오버행 지지를 개선할 수 있지만, 인쇄 시간과 사용되는 재료가 늘어납니다." +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "상단 래프트 레이어가 프린팅 될 때의 Jerk입니다." -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "지지대 인터페이스 바닥을 둘러쌀 벽의 수입니다. 벽을 추가하면 지지대 프린트를 더 안정적으로 만들고 오버행(경사면)을 더 잘 지원할 수 있지만, 프린트 시간과 사용되는 재료가 늘어납니다." +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "래프트 팬 속도" -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "지지대 인터페이스 지붕을 둘러쌀 벽의 수입니다. 벽을 추가하면 지지대 프린트를 더 안정적으로 만들고 오버행(경사면)을 더 잘 지원할 수 있지만, 프린트 시간과 사용되는 재료가 늘어납니다." +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "래프트의 팬 속도." -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "지지대 인터페이스를 둘러쌀 벽의 수입니다. 벽을 추가하면 지지대 프린트를 더 안정적으로 만들고 오버행(경사면)을 더 잘 지원할 수 있지만, 프린트 시간과 사용되는 재료가 늘어납니다." +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "래프트 기본 팬 속도" -msgctxt "wall_distribution_count description" -msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." -msgstr "중앙에서부터 계산되는 벽의 수로, 이를 통해 오차가 분산되어야 합니다. 값이 작다고 해서 외벽의 너비가 변경되지 않는 것은 아닙니다." +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "기본 래프트 레이어의 팬 속도입니다." -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "벽의 수. 벽 두께로 계산할 때 이 값은 반올림됩니다." +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "래프트 중앙 팬 속도" -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "노즐 끝의 외경." +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "중간 래프트 레이어의 팬 속도입니다." -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "프린트 내부채움 재료의 패턴입니다. 선형과 지그재그형 내부채움이 서로 다른 레이어에서 방향을 바꾸므로 재료비가 절감됩니다. 격자, 삼각형, 트라이 헥사곤 (tri-hexagon), 큐빅, 옥텟 (octet), 쿼터 큐빅, 크로스, 동심원 패턴이 레이어마다 완전히 프린트됩니다. 자이로이드 (Gyroid), 큐빅, 쿼터 큐빅, 옥텟 (octet) 내부채움이 레이어마다 변경되므로 각 방향으로 힘이 더 균등하게 분산됩니다. 라이트닝 내부채움이 객체의 천장만 서포트하여 내부채움을 최소화합니다." +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "래프트 상단 팬 속도" -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "서포트 구조의 패턴. 사용 가능한 여러 가지 옵션을 사용하면 튼튼하고 쉽게 제거 할 수 있습니다." +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "상단 래프트 레이어의 팬 속도입니다." -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "최상위 레이어의 패턴." +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "이중 압출" -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "상단/하단 레이어의 패턴." +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "여러 익스트루더로 프린팅 할 때 사용되는 설정입니다." -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "첫 번째 레이어의 프린팅 아래쪽에 있는 패턴입니다." +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "프라임 타워 사용" -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "윗면을 다림질 할 때 사용하는 패턴." +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "각 노즐을 교체 한 후에 재료를 프라이밍(Priming)하는 프린팅 옆에 타워를 프린팅하십시오." -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "서포트의 바닥이 프린팅되는 패턴." +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "프라임 타워 유형" -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "모델과 서포트 인터페이스를 프린팅하는 패턴입니다." +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
                                      • Normal: create a bucket in which secondary materials are primed
                                      • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
                                      " +msgstr "프라임 타워 생성 방법:
                                      • 일반: 보조 재료가 프라이밍되는 버킷을 생성합니다.
                                      • 중간 삽입: 프라임 타워를 최대한 희박하게 생성합니다. 시간과 필라멘트를 절약하지만, 사용된 재료가 서로 밀착되는 경우에만 가능합니다.
                                      " -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "서포트의 지붕이 프린팅되는 패턴." +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "일반" -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "레이어에서 각 부품의 프린팅이 시작할 위치 근처입니다." +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "중간 삽입" -msgctxt "support_tree_angle_slow description" -msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." -msgstr "모델을 피할 필요가 없을 때 브랜치의 기본 각도입니다. 브랜치가 수직에 가깝게 안정적이 되도록 만들려면 더 낮은 각도를 사용하고, 브랜치가 빨리 합쳐지도록 하려면 더 높은 각도를 사용하십시오." +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "프라임 타워 사이즈" -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "서포트 구조물의 기본 배치입니다. 구조물을 원하는 위치에 배치할 수 없는 경우 구조물을 모델 위에 놓더라도 다른 곳에 배치합니다." +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "프라임 타워의 너비." -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "초기 레이어의 프린팅 최대 순간 속도 변화." +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "프라임 타워 최소 볼륨" -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "프린팅 할 수 없는 영역을 고려하지 않은 빌드 플레이트의 모양." +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "충분한 재료를 퍼지하기 위해 프라임 타워 각 층의 최소 부피." -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "프린트 헤드의 모양. 일반적으로 첫 번째 압출기의 위치인 프린트 헤드의 위치와 관련된 좌표입니다. 프린트 헤드의 왼쪽 및 앞쪽 치수는 음수 좌표여야 합니다." +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "프라임 타워 최대 브리징 거리" -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "패턴이 접촉되는 높이에서 크로스 3D 패턴의 4 방향 교차점에있는 포켓의 크기입니다." +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "공중에서 출력될 수 있는 브랜치의 최대 길이입니다." -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "코스팅(Coasting)을 허용하기 전에 압출 경로에 있어야하는 최소 양. 작은 압출 경로의 경우 보우덴 튜브에 가해지는 압력이 적기 때문에 코스팅(Coasting) 부피가 선형 적으로 조정됩니다. 이 값은 항상 코스팅(Coasting) 양보다 커야합니다." +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "프라임 타워 X 위치" -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "노즐이 냉각되는 속도 (°C/s)는 일반적인 프린팅 온도 및 대기 온도에서 평균을 냅니다." +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "프라임 타워 위치의 x 좌표입니다." -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "노즐이 가열되는 속도 (°C/s)는 일반적인 프린팅 온도와 대기 온도에서 평균을 냅니다." +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "프라임 타워 Y 위치" -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "모든 내부 벽이 프린팅되는 속도입니다. 내벽을 외벽보다 빠르게 프린팅하면 프린팅 시간이 단축됩니다. 외벽 속도와 충전 속도 사이에서 이것을 설정하는 것이 효과적입니다." +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "프라임 타워 위치의 y 좌표입니다." -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "브릿지 스킨 층이 프린팅되는 속도." +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "프라임 타워에서 비활성 노즐 닦기" -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "내부채움이 프린팅되는 속도." +msgctxt "prime_tower_wipe_enabled description" +msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." +msgstr "하나의 노즐로 프라임 타워를 프린팅 한 후, 다른 타워의 이물질을 프라임 타워에서 닦아냅니다." -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "프린팅 속도." +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Base" +msgstr "프라임 타워 베이스" -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "기본 래프트 레이어가 프린팅되는 속도입니다. 이것은 노즐에서 나오는 재료의 양이 상당히 많기 때문에 아주 천천히 프린팅되어야 합니다." +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "이 설정을 활성화하면 모델에 브림이 없더라도 프라임 타워에는 브림이 생성됩니다. 높은 타워의 튼튼한 베이스가 필요하다면 베이스 높이를 늘릴 수 있습니다." -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "브릿지 벽이 프린팅되는 속도." +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "프라임 타워 베이스 크기" -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "프린팅 시작시 팬이 회전하는 속도입니다. 후속 레이어에서는 팬 속도가 높이의 표준 팬 속도에 해당하는 레이어까지 점차 증가합니다." +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "프라임 타워 브림/베이스의 폭입니다. 베이스가 크면 빌드 플레이트에 대한 접착력이 향상되지만, 실제 인쇄 영역은 줄어듭니다." -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "팬이 임계 값에 도달하기 전에 회전하는 속도입니다. 레이어가 임계값보다 빠르게 프린팅되면 팬 속도가 최대 팬 속도쪽으로 점차 기울어집니다." +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "프라임 타워 베이스 높이" -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "최소 레이어 시간에 팬이 회전하는 속도입니다. 임계 값에 도달하면 표준 팬 속도와 최대 팬 속도 사이에서 팬 속도가 서서히 증가합니다." +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "프라임 타워 베이스의 높이입니다. 이 값을 늘리면 베이스가 넓어져 프라임 타워가 더 튼튼해집니다. 이 설정이 너무 낮으면 프라임 타워에 튼튼한 베이스가 형성되지 않습니다." -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "리트렉션 이동 중에 필라멘트가 프라이밍되는 속도입니다." +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "프라임 타워 베이스 경사" -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "와이프 리트랙션 이동 중에 필라멘트가 초기화되는 속도입니다." +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "프라임 타워 베이스의 경사에 사용되는 크기 계수입니다. 이 값을 늘리면 베이스가 더 얇아집니다. 줄이면 베이스가 더 두꺼워집니다." -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "노즐 스위치 리트렉션 후 필라멘트가 뒤로 밀리는 속도." +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "프라임 타워 래프트 선 간격" -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "리트렉션 속도입니다." +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "독특한 프라임 타워 래프트 레이어를 위한 래프트 라인 간 거리입니다. 간격이 넓을수록 빌드 플레이트에서 래프트를 쉽게 제거할 수 있습니다." -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "와이프 리트랙션 이동 중에 필라멘트가 리트렉션 및 준비되는 속도입니다." +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Ooze 쉴드 사용" -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "노즐 스위치 리트렉션시 필라멘트가 리트렉션하는 속도." +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "Ooze 쉴드를 활성화. 이렇게하면 첫 번째 노즐과 동일한 높이에 두 번째 노즐을 닦을 가능성이 있는 모델 주위에 쉘이 생깁니다." -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "리트렉션 속도입니다." +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Ooze 쉴드 각" -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "와이프 리트랙션 이동 중에 필라멘트가 리트렉트되는 속도입니다." +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "Ooze 쉴드가 가질 최대 각도. 0도가 수직이고 90도가 수평입니다. 각도가 작으면 Ooze 쉴드가 덜 파손되지만 재료는 더 많이 소모됩니다." -msgctxt "switch_extruder_retraction_speeds description" -msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." -msgstr "필라멘트가 리트렉션 되는 속도입니다. 리트렉션 속도가 빠르면 좋지만 리트렉션 속도가 높으면 필라멘트가 갈릴 수 있습니다." +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Ooze 쉴드 거리" -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "서포트 바닥 프린팅 속도. 더 낮은 속도로 프린팅하면 모델 상단의 서포트력이 향상됩니다." +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "X/Y 방향으로 출력물에서 Ooze 쉴드까지의 거리." -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "서포트의 내부채움이 프린팅되는 속도. 내부채움을 저속으로 프린팅하면 안정성이 향상됩니다." +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "노즐 스위치 리트렉션 거리" -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "중간 래프트 층이 프린팅되는 속도. 이것은 노즐에서 나오는 재료의 양이 상당히 많기 때문에 아주 천천히 프린팅되어야합니다." +msgctxt "switch_extruder_retraction_amount description" +msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." +msgstr "익스트루더 전환 시 리트렉션 양. 리트렉션이 전혀 없는 경우 0으로 설정하십시오. 이는 일반적으로 열 영역의 길이와 같아야 합니다." -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "가장 바깥 쪽 벽이 프린팅되는 속도입니다. 외벽을 더 낮은 속도로 프린팅하면 최종 스킨 품질이 향상됩니다. 그러나 내벽 속도와 외벽 속도 사이에 큰 차이가있을 경우 부정적인 방식으로 품질에 영향을 미칩니다." +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "노즐 스위치 리트렉션 속도" + +msgctxt "switch_extruder_retraction_speeds description" +msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." +msgstr "필라멘트가 리트렉션 되는 속도입니다. 리트렉션 속도가 빠르면 좋지만 리트렉션 속도가 높으면 필라멘트가 갈릴 수 있습니다." -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "프라임 타워가 프린팅되는 속도. 프라임 타워를 더 천천히 프린팅하면 다른 필라멘트 사이의 접착을 더 안정적으로 만들 수 있습니다." +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "노즐 스위치 후퇴 속도" -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "프린팅 냉각 팬이 회전하는 속도입니다." +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "노즐 스위치 리트렉션시 필라멘트가 리트렉션하는 속도." -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "래프트가 프린팅되는 속도." +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "노즐 스위치 프라임 속도" -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "서포트의 지붕과 바닥이 프린팅되는 속도. 프린팅 속도를 느리게하면 오버행 품질이 향상 될 수 있습니다." +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "노즐 스위치 리트렉션 후 필라멘트가 뒤로 밀리는 속도." -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "서포트의 지붕이 프린팅되는 속도입니다. 프린팅 속도를 느리게하면 오버행 품질이 향상 될 수 있습니다." +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "노즐 스위치 엑스트라 프라임 양" -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "스커트와 브림이 프린팅되는 속도입니다. 일반적으로 이것은 초기 레이어 속도에서 수행되지만 때로는 스커트나 브림을 다른 속도로 프린팅하려고 할 수 있습니다." +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "노즐 스위치 후 프라이밍하는 추가 소재의 양입니다." -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "서포트 구조가 프린팅되는 속도입니다. 서포트를 고속으로 프린팅하면 프린팅 시간을 크게 단축시킵니다. 서포트 구조체의 표면 품질은 프린팅 후에 제거되므로 중요하지 않습니다." +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "메쉬 수정" -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "상단 래프트 레이어가 프린팅되는 속도입니다. 이 노즐은 조금 더 느리게 프린팅해야 노즐이 인접한 표면 선을 천천히 부드럽게 할 수 있습니다." +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "메쉬를 3D 프린팅에 보다 맞춤화시킵니다." -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "상면 내벽이 인쇄되는 속도" +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "유니언 오버랩 볼륨" -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "상면의 가장 바깥 벽이 인쇄되는 속도" +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "메쉬 내의 겹치는 볼륨으로 인해 발생하는 내부 지오메트리를 무시하고 볼륨을 하나로 프린팅합니다. 이로 인해 의도하지 않은 내부 공동이 사라질 수 있습니다." -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "Z 홉을 위해 수직 Z 이동이 이루어지는 속도입니다. 빌드 플레이트 또는 기기의 갠트리를 움직이기가 더 어렵기 때문에 프린트 속도보다 낮은 것이 일반적입니다." +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "모든 구멍 제거" -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "벽이 프린팅되는 속도입니다." +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "각 레이어의 구멍을 제거하고 바깥 쪽 모양 만 유지합니다. 이것은 보이지 않는 내부 지오메트리를 무시합니다. 그러나 위 또는 아래에서 볼 수있는 레이어 구멍도 무시합니다." -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "상단 표면을 통과하는 속도." +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "광범위한 스티칭" -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "필라멘트가 깔끔하게 파단되기 위해 후퇴해야 하는 속도입니다." +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "광범위한 스티칭은 다각형을 만지면서 구멍을 닫음으로써 메쉬의 열린 구멍을 꿰매려합니다. 이 옵션은 많은 처리 시간을 초래할 수 있습니다." -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "상단 표면 스킨 층이 프린팅되는 속도." +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "끊긴 면 유지" -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "위쪽/아래쪽 레이어가 프린팅되는 속도입니다." +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "일반적으로 큐라(Cura)는 메쉬의 작은 구멍을 꿰매 붙이고 큰 구멍이있는 레이어의 부분을 제거하려고합니다. 이 옵션을 활성화하면 스티칭 할 수 없는 파트가 유지됩니다. 이 옵션은 다른 모든 설정으로 올바른 GCode를 생성하지 못할 때 최후의 수단으로 사용해야 합니다." -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "움직일때의 이동 속도." +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "중복된 메쉬 합치기" -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "코스팅(Coasting)시 이동 속도. 압출 경로의 속도에 상대적입니다. 코스팅(Coasting) 이동 중에 보우 덴 튜브의 압력이 떨어지기 때문에 100% 보다 약간 작은 값을 권합니다." +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "서로 닿는 메쉬가 조금 겹치게 만듭니다. 이것은 그들을 더 잘 묶는 것입니다." -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "초기 레이어의 속도입니다. 빌드 플레이트에 대한 접착력을 향상시키려면 낮은 값을 권장합니다. 브림과 래프트 같은 빌드 플레이트 접착 구조 자체에 영향을 미치지 않습니다." +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "교차된 메쉬 제거" -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "초기 레이어의 프린팅 속도입니다. 빌드 플레이트에 대한 접착력을 향상 시키려면 낮은 값을 권합니다." +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "여러 메시가 서로 겹치는 영역을 제거합니다. 병합 된 2개의 재료가 서로 중첩되는 경우 사용될 수 있습니다." -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "이동 속도는 초기 레이어에서 이동합니다. 이전에 프린팅 된 부품을 빌드 플레이트에서 떨어지는 것을 방지하려면 더 낮은 값을 권합니다. 이 설정의 값은 이동 속도와 프린팅 속도 사이의 비율로부터 자동으로 계산 될 수 있습니다." +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "대체 메쉬 제거" -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "필라멘트가 깔끔하게 파단되는 온도입니다." +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "교차하는 메쉬로 교차하는 볼륨으로 전환하면 겹치는 메쉬가 서로 얽히게됩니다. 이 설정을 해제하면 메시 중 하나가 다른 메시에서 제거되는 동안 오버랩의 모든 볼륨을 가져옵니다." -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "프린팅되는 환경의 온도입니다. 이 값이 0인 경우 빌드 볼륨 온도는 조정되지 않습니다." +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "비어 있는 첫 번째 레이어 제거" -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "다른 노즐이 현재 프린팅에 사용될 경우 노즐 온도." +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "첫 번째로 프린팅된 레이어 바로 아래의 비어 있는 레이어를 제거합니다. 이 설정을 해제하면 슬라이싱 허용 오차 설정을 배타 또는 중간으로 설정할 경우 첫 번째 레이어가 비어 있게 될 수 있습니다." -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "프린팅 종료 직전에 냉각이 시작될 온도입니다." +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "최대 해상도" -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer." -msgstr "첫 레이어 인쇄에 사용되는 온도입니다." +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "슬라이딩 후의 선분의 최소 크기입니다. 이 값을 높이면 메쉬의 해상도가 낮아집니다. 그러면 프린터가 G 코드를 처리하는 데 필요한 속도를 유지할 수 있으며 처리할 수 없는 메쉬의 디테일이 제거되므로 슬라이드 속도가 높아집니다." -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "프린팅에 사용되는 온도." +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "최대 이동 해상도" -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "첫 번째 레이어에서 내열 빌드 플레이트에 사용되는 온도. 0인 경우, 빌드 플레이트가 첫 번째 레이어에서 가열되지 않습니다." +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "슬라이딩 후의 이동 선분의 최소 크기입니다. 이 값을 높이면 코너에서 매끄럽게 이동하는 정도가 감소합니다. 프린터가 G 코드를 처리하는 데 필요한 속도를 유지할 수 있지만, 모델을 피하기 때문에 정확도가 감소합니다." -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "내열 빌드 플레이트용으로 사용된 온도 0인 경우 빌드 플레이트가 가열되지 않습니다." +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "최대 편차" -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "재료를 퍼지하는 데 사용하는 온도는 가능한 한 가장 높은 프린팅 온도와 대략 같아야 합니다." +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "최대 해상도 설정에 대한 해상도를 낮추면 최대 편차를 사용할 수 있습니다. 최대 편차를 높이면 프린트의 정확도는 감소하지만, G 코드도 감소합니다. 최대 편차는 최대 해상도의 한계이며, 따라서 두 항목이 충돌하면 항상 최대 편차가 우선합니다." -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "출력물의 아래쪽 레이어의 두께. 이 값을 레이어 높이로 나눈 값은 맨 아래 레이어의 수 입니다." +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "최대 압출 영역 편차" -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "스킨 에지를 지원하는 추가 내부채움의 두께." +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "직선에서 중간 점을 제거할 때 허용되는 최대 압출 영역 편차. 중간 점은 긴 직선에서 너비가 바뀌는 점의 역할을 할 수 있습니다. 따라서 중간 점이 제거되면 선의 너비가 균일해지고 그 결과, 약간의 압출 영역을 잃거나 얻게 됩니다. 이 값을 증가시키면 중간의 너비가 바뀌는 점이 더 많이 제거될 수 있으므로, 직선의 평행한 벽들 사이에 약간의 미달(또는 과잉) 압출이 발생할 수 있습니다. 프린트의 정확도는 감소하지만, G 코드도 감소합니다." -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "밑면 또는 상단의 모델과 접촉하는 서포트 인터페이스 두께입니다." +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "플루이드 모션 활성화" -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "서포트 바닥의 두께. 이것은 서포트가 놓여있는 모델의 상단에 프린팅되는 조밀 한 층의 수를 제어합니다." +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "활성화하면 부드러운 모션 플래너가 있는 프린터의 도구 경로가 수정됩니다. 일반적인 도구 경로 방향에서 벗어나는 작은 움직임이 평활화되어 플루이드 모션이 개선됩니다." -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "받침 지붕의 두께. 이것은 모델이 놓이는 받침대 상단의 조밀 한 층의 양을 제어합니다." +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "플루이드 모션 이동 거리" -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "출력물의 상단 레이어의 두께. 이 값을 레이어 높이로 나눈 값이 최상위 레이어 수 입니다." +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "경로를 평활화하기 위해 거리 지점이 이동됩니다" -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "출력물의 상단/하단 레이어의 두께. 이 값을 레이어 높이로 나눈 값은 위쪽/아래쪽 레이어의 수 입니다." +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "플루이드 모션 가까운 거리" -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "가로 방향의 벽 두께입니다. 이 값을 벽 선 너비로 나눈 값은 벽의 수 입니다." +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "경로를 평활화하기 위해 거리 지점이 이동됩니다" -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "내부채움물 층의 두께. 이 값은 항상 레이어 높이의 배수이어야 하며 반올림됩니다." +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "플루이드 모션 각도" -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "서포트 내부채의 레이어당 두께. 이 값은 항상 레이어 높이의 배수이 어야하며 그렇지 않으면 반올림됩니다." +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "도구 경로 세그먼트가 일반적인 모션에서 이 각도보다 더 많이 벗어나면 평활화됩니다." -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "생성 될 gcode의 유형." +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "특수 모드" -msgctxt "material_type description" -msgid "The type of material used." -msgstr "" +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "모델을 프린팅하는 새로운 방법들." + +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "프린팅 순서" -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "그렇지 않으면 볼륨이 흘러 나옵니다. 이 값은 일반적으로 노즐 직경 입방체에 가깝습니다." +msgctxt "print_sequence description" +msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." +msgstr "모든 모델을 한 번에 한 레이어씩 프린팅할 것인지, 아니면 한 모델이 완료될 때까지 기다릴 것인지, 다음 단계로 넘어가기 전에 대한 여부 a) 한 번에 하나의 압출기만 활성화하고 b) 모든 모델은 전체 프린트 헤드가 이동할 수 있는 방식으로 분리되며 모든 모델은 노즐과 X/Y 축 사이의 거리보다 낮습니다." -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "프린팅 가능 영역의 폭 (X 방향)." +msgctxt "print_sequence option all_at_once" +msgid "All at Once" +msgstr "모두 한꺼번에" -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "서포트 아래를 인쇄하기 위한 브림 폭. 브림이 커질수록 추가 재료가 소요되지만 빌드 플레이트에 대한 접착력이 향상됩니다." +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "한번에 하나씩" -msgctxt "interlocking_beam_width description" -msgid "The width of the interlocking structure beams." -msgstr "연동 구조 빔의 너비입니다." +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "수동으로 인쇄 순서 설정" -msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "프라임 타워 브림/베이스의 폭입니다. 베이스가 크면 빌드 플레이트에 대한 접착력이 향상되지만, 실제 인쇄 영역은 줄어듭니다." +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "객체 목록의 순서를 지정하여 출력 순서를 수동으로 설정할 수 있도록 허용합니다. 목록의 첫 번째 객체가 먼저 출력됩니다." -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "프라임 타워의 너비." +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "메쉬 내부채움" -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "지터가 발생할 너비. 내벽이 변경되지 않으므로 외벽 너비 아래로 유지하는 것이 좋습니다." +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "겹치는 다른 메쉬의 내부채움율을 수정합니다. 다른 메쉬의 내부채움 영역을 이 메쉬의 영역으로 대체합니다. 하나의 벽과 상단/바닥 스킨만을 프린팅하는 것이 추천합니다." -msgctxt "retraction_extrusion_window description" -msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." -msgstr "최대 리트렉션 횟수가 시행되는 영역 입니다. 이 값은 수축 거리와 거의 같아야 하므로 같은 수축 패치가 통과하는 횟수가 효과적으로 제한됩니다." +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "메쉬 처리 랭크" -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "프라임 타워 위치의 x 좌표입니다." +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "여러 내부채움 매쉬 오버랩을 고려할 때 메쉬의 우선 순위를 결정합니다. 여러 내부채움 메쉬가 오버랩하는 영역은 최고 랭크의 메쉬 설정에 착수하게 됩니다. 높은 내부채움 메쉬는 낮은 내부채움 메쉬와 표준 메쉬의 내부채움을 수정합니다." -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "프라임 타워 위치의 y 좌표입니다." +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "커팅 메쉬" -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "장면에 서포트 메쉬가 있습니다. 이 설정은 Cura가 제어합니다." +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "이 메쉬의 볼륨을 다른 메쉬 내로 제한합니다. 이 기능을 사용하면 다른 설정과 전체 익스트루더로 하나의 메쉬 프린팅 영역을 만들 수 있습니다." -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "이것은 브릿지 벽이 시작되기 직전에 익스트루더가 있어야하는 거리를 제어합니다. 브릿지가 시작되기 전에 코스팅(coasting)을 하면 노즐의 압력을 낮추고 보다 평평한 브릿지를 만들 수 있습니다." +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "몰드" -msgctxt "raft_base_smoothing description" -msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "모형을 몰드으로 프린팅하여 모형에 몰드과 유사한 모형을 만들 수 있습니다." -msgctxt "raft_interface_smoothing description" -msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "최소 몰드 너비" -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "이 설정은 래프트 윤곽의 안쪽 구석의 곡률을 제어합니다. 안쪽 구석이 여기에 지정된 값과 동일한 반경으로 반원 모양으로 휘어집니다. 또한 이 설정을 사용하면 래프트 윤곽에서 그러한 원보다 작은 구멍이 제거됩니다." +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "몰드의 바깥쪽과 모델의 바깥쪽 사이의 최소 거리입니다." -msgctxt "raft_surface_smoothing description" -msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "몰드 지붕 높이" -msgctxt "retraction_count_max description" -msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." -msgstr "이 설정은 최소 압출 거리에서 발생하는 리트렉션 수를 제한합니다. 이 거리내에서 더 이상의 리트렉션은 무시됩니다. 이렇게 하면 필라멘트를 평평하게하고 갈리는 문제를 일으킬 수 있으므로 동일한 필라멘트에서 반복적으로 리트렉션하지 않습니다." +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "모델의 수평 부분 위의 높이로 몰드를 프린팅합니다." -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "모델 주위에 벽이 생겨 외부 공기 흐름을 막아 (뜨거운) 공기를 막을 수 있습니다. 왜곡이 쉬운 소재에 특히 유용합니다." +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "몰드 각도" -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "팁 직경" +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "몰드에 대해 생성 된 외벽의 오버행 각도입니다. 0도의 각은 금형의 외각을 수직으로 만들고 90도의 각은 모형의 외형을 모델의 외형으로 만듭니다." -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "냉각됨에 따라 재료의 수축을 보정하기 위해 모델이 이 배율로 XY 방향으로(수평으로) 확장됩니다." +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "서포트 메쉬" -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "냉각됨에 따라 재료 수축을 보정하기 위해 모델이 이 배율로 Z 방향으로(수직으로) 확장됩니다." +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "본 메시를 사용하여 서포트 영역을 지정하십시오. 이것은 서포트 구조를 생성하는 데 사용할 수 있습니다." -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "냉각됨에 따라 재료 수축을 보상하기 위해 모델이 이 배율로 확장됩니다." +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "안티 오버행 메쉬" -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "상단 레이어" +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "본 메쉬를 사용하여 모델에서 오버행부로 감지되지 않을 부분을 지정합니다. 이것은 원하지 않는 서포트 구조를 제거하는 데 사용될 수 있습니다." -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "윗면 스킨 확장 거리" +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "표면 모드" -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "상단 스킨 제거 폭" +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "모델을 표면만, 볼륨 또는 느슨한 표면이있는 볼륨으로 취급합니다. 일반 프린팅 모드는 볼륨만 프린팅합니다. \"표면\"은 아무런 내부채움없이 상단 / 하단 스킨없이 메쉬 표면을 추적하는 단일 벽을 프린팅합니다. \"둘 다\"는 정상 및 나머지 폴리곤과 같은 닫힌 볼륨을 서피스로 프린팅합니다." -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "상면 내벽 가속도" +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "표준" -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "상면 가장 바깥 벽의 최대 순간 속도 변화" +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "표면" -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "상면 내벽 속도" +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "모두" -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "상면 내벽 흐름" +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "외부 윤곽선을 나선형으로 만듦" -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "상면 외벽 가속도" +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "바깥 쪽 브림의 Z 이동을 부드럽게합니다. 이렇게 하면 출력물 전체에 걸쳐 꾸준히 Z가 증가합니다. 이 기능은 솔리드 모델을 단단한 바닥이있는 단일 벽으로 프린팅합니다. 이 기능은 각 레이어에 단일 부품 만 포함되어 있을 때만 활성화 해야 합니다." -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "상면 가장 바깥 벽의 유량" +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "부드러운 나선형 윤곽" -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "상면 내벽의 최대 순간 속도 변화" +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "나선형 윤곽선을 부드럽게 하여 Z 이음선이 잘 보이지 않도록 합니다(Z- 이음선은 출력물에서는 거의 보이지 않지만 레이어 뷰에서는 여전히 보임). 매끄러움은 표면의 세부 묘사를 흐릿하게 만드는 경향이 있습니다." -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "상면 외벽 속도" +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "상대적 압출" -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "상단 표면 스킨 가속도" +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "절대 돌출보다는 상대적 돌출을 사용합니다. 상대적인 E-steps을 사용하면 Gcode를 보다 쉽게 후 처리 할 수 있습니다. 그러나 모든 프린터에서 지원되는 것은 아니며 절대 E 단계와 비교할 때 출력된 재료의 양이 매우 약간 다를 수 있습니다. 이 설정과 관계없이 압출 모드는 Gcode 스크립트가 출력되기 전에 항상 절대 값으로 설정됩니다." -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "상단 표면 익스트루더" +msgctxt "experimental label" +msgid "Experimental" +msgstr "실험적인" -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "상단 표면 스킨 압출량" +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "아직 구체화되지 않은 기능들." -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "스킨 표면 Jerk" +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "슬라이싱 허용 오차" -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "상단 표면 스킨 레이어" +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "슬라이스 레이어의 수직 허용 오차입니다. 레이어의 윤곽선은 일반적으로 각 레이어의 두께 중간(중간)을 교차하는 부분을 기준으로 생성됩니다. 또는 각 레이어가 레이어의 높이 전체의 볼륨에 들어가는 영역(포함하지 않음)이 있거나 레이어 안의 어느 지점에 들어가는 영역(포함)이 있을 수 있습니다. 포함된 영역에서 가장 많은 디테일이 포함되고 포함되지 않은 영역을 통해 가장 맞게 만들 수 있으며 중간을 통해 원래 표면과 가장 유사하게 만들어냅니다." -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "상단 표면 스킨 라인 방향" +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "중간" -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "상단 표면 스킨 선 너비" +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "배타적" -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "탑 표면 스킨 패턴" +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "중복" -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "상단 표면 스킨 속도" +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "내부채움재 이동 최적화" + +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "활성화되면, 내부채움 라인 프린팅 순서가 최적화되어 이동 거리를 줄입니다. 이동 시간의 감소는 슬라이스되는 모델, 내부채움 패턴, 밀도 등에 따라 달라집니다. 작은 내부채움 영역이 많은 일부 모델의 경우, 모델을 슬라이스하는 시간이 상당히 늘어납니다." -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "상단 두께" +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "재료 공급 온도 그래프" -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "이 설정보다 큰 각도로 객체의 상단 및 또는 하단 표면은 위쪽/아래쪽 스킨이 확장되지 않습니다. 이렇게하면 모델 표면이 수직 경사가 거의 없을 때 생성되는 좁은 스킨 영역을 확장하지 않아도됩니다. 0도의 각도는 수평이며 스킨의 확장을 유발하지 않고, 90도의 각도는 수직이며 모든 스킨의 확장을 유발합니다." +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "재료 공급 데이터 (mm3 / 초) - 온도 (섭씨)." -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "위 / 아래" +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "최소 다각형 둘레" -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "위 / 아래" +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "레이어가 슬라이스 된, 이 값보다 둘레가 작은 다각형은 필터링됩니다. 값을 낮을수록 슬라이스가 느려지지만, 해상도 메쉬가 높아집니다. 주로 고해상도 SLA 프린터 및 세부 사항이 많은 매우 작은 3D 모델에 적합합니다." -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "상단/하단 가속도" +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "연동 구조 생성" -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "상단/하단 익스트루더" +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "모델이 닿는 위치에 연동 빔 구조를 생성합니다. 이렇게 하면 모델, 특히 다른 재료로 프린트된 모델 간의 접착력이 개선됩니다." -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "상단/하단 압출량" +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "연동 빔 너비" -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "위/아래 Jerk" +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "연동 구조 빔의 너비입니다." -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "상단/하단 라인 길 방향" +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "연동 구조 방향" -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "상단/하단 라인 폭" +msgctxt "interlocking_orientation description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "연동 구조의 빔 높이로, 레이어 수로 측정됩니다. 레이어가 적을수록 강하지만 결함이 발생하기 쉽습니다." -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "상단/하단 패턴" +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "연동 빔 레이어 수" -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "상단/하단 속도" +msgctxt "interlocking_beam_layer_count description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "연동 구조의 빔 높이로, 레이어 수로 측정됩니다. 레이어가 적을수록 강하지만 결함이 발생하기 쉽습니다." -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "상단/하단 두께" +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "연동 깊이" -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "빌드 플레이트 위" +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "연동 구조를 생성하기 위한 모델 간 경계로부터의 거리로, 셀 단위로 측정됩니다. 셀 수가 너무 적으면 접착력이 떨어집니다." -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "타워 지름" +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "연동 경계 회피" -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "타워 지붕 각도" +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "연동 구조가 생성되지 않는 모델 외부로부터의 거리로, 셀 단위로 측정됩니다." -msgctxt "mesh_rotation_matrix description" -msgid "Transformation matrix to be applied to the model when loading it from file." -msgstr "파일로부터 로드 하는 경유, 모델에 적용될 변환 행렬입니다." +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Chunk에서 서포트 중단" -msgctxt "travel label" -msgid "Travel" -msgstr "이동" +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "서포트 구조가 쉽게 끊어 지도록 서포트 라인 연결을 건너 뜁니다. 이 설정은 지그재그 서포트 충전 패턴에 적용됩니다." -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "이동 가속" +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "서포트 Chunk 크기" -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "이동중 피하는 거리" +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "서포트 구조를 쉽게 분리 할 수 있도록 N 밀리미터마다 서포트선 사이를 연결합니다." -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "이동 Jerk" +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Chunk 라인 카운트 서포트" -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "이동 속도" +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "서포트 구조를 쉽게 분리할 수 있도록 모든 N 개의 연결 라인을 건너 뜁니다." -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "모델을 표면만, 볼륨 또는 느슨한 표면이있는 볼륨으로 취급합니다. 일반 프린팅 모드는 볼륨만 프린팅합니다. \"표면\"은 아무런 내부채움없이 상단 / 하단 스킨없이 메쉬 표면을 추적하는 단일 벽을 프린팅합니다. \"둘 다\"는 정상 및 나머지 폴리곤과 같은 닫힌 볼륨을 서피스로 프린팅합니다." +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "드래프트 쉴드 사용" -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "트리" +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "모델 주위에 벽이 생겨 외부 공기 흐름을 막아 (뜨거운) 공기를 막을 수 있습니다. 왜곡이 쉬운 소재에 특히 유용합니다." -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "삼-육각형" +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "드래프트 쉴드 X/Y 거리" -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "삼각형" +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "X/Y 방향으로 프린트와 드래프트 쉴드까지의 거리입니다." -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "삼각형" +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "드래프트 쉴드 제한" -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "삼각형" +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "드래프트 쉴드의 높이를 설정합니다. 모델의 전체 높이 또는 제한된 높이에서 드래프트 쉴드를 프린팅하도록 선택합니다." -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "삼각형" +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "가득찬" -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "삼각형" +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "제한된" -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "트렁크 직경" +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "드래프트 쉴드 높이" -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "드래프트 쉴드의 높이 제한. 이 높이 이상에서는 드래프트 쉴드가 프린팅되지 않습니다." -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "유니언 오버랩 볼륨" +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "오버행이 프린팅되도록 설정" -msgctxt "bridge_wall_min_length description" -msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." -msgstr "이보다 짧은 벽은 일반 벽 설정을 사용하여 인쇄됩니다. 더 이상 지원되지 않는 벽은 브리지 벽 설정을 사용하여 인쇄됩니다." +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "최소한의 서포트가 필요하도록 프린팅 된 모델의 형상을 변경합니다. 가파른 오버행은 얕은 오버행이됩니다. 오버행 영역이 더 수직으로 떨어집니다." -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "어댑티브 레이어 사용" +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "최대 모델 각도" -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "타워 사용" +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "프린팅 가능하게 된 후 오버행의 최대 각도. 0도의 값에서 모든 오버행은 빌드 플레이트에 연결된 모델로 대체됩니다. 90도는 모델을 변경하지 않습니다." -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "이동할 때 별도의 가속도를 사용합니다. 비활성화된 경우 이동 시 프린팅된 라인의 목적지 기준 가속도 값을 사용합니다." +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "최대 오버행 홀 영역" -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "이동할 때 별도의 저크 속도를 사용합니다. 비활성화된 경우 이동 시 프린팅된 라인의 목적지 기준 저크 값을 사용합니다." +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "오버행 프린팅 설정에 의해 제거되기 전 모델의 베이스에 있는 구멍의 최대 영역입니다. 이보다 작은 홀은 유지됩니다. 0mm² 값은 모델 베이스의 모든 홀을 채웁니다." -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "절대 돌출보다는 상대적 돌출을 사용합니다. 상대적인 E-steps을 사용하면 Gcode를 보다 쉽게 후 처리 할 수 있습니다. 그러나 모든 프린터에서 지원되는 것은 아니며 절대 E 단계와 비교할 때 출력된 재료의 양이 매우 약간 다를 수 있습니다. 이 설정과 관계없이 압출 모드는 Gcode 스크립트가 출력되기 전에 항상 절대 값으로 설정됩니다." +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "코스팅(Coasting) 사용" -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "작은 오버행에 서포트를 생성하기 위해 특수한 타워를 사용. 이 타워들은 그들이 서포트하는 지역보다 더 큰 지름을 가지고 있습니다. 오버행 부근에서 타워의 직경이 감소하여 지붕을 형성합니다." +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "코스팅(Coasting)은 압출 경로의 마지막 부분을 이동 경로로 바꿉니다. 누출된 재료는 스트링을 줄이기 위해 압출 경로의 마지막 부분을 프린팅하는 데 사용됩니다." -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "겹치는 다른 메쉬의 내부채움율을 수정합니다. 다른 메쉬의 내부채움 영역을 이 메쉬의 영역으로 대체합니다. 하나의 벽과 상단/바닥 스킨만을 프린팅하는 것이 추천합니다." +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "코스팅(Coasting) 양" -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "본 메시를 사용하여 서포트 영역을 지정하십시오. 이것은 서포트 구조를 생성하는 데 사용할 수 있습니다." +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "그렇지 않으면 볼륨이 흘러 나옵니다. 이 값은 일반적으로 노즐 직경 입방체에 가깝습니다." + +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "코스팅(Coasting) 최소 양" -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "본 메쉬를 사용하여 모델에서 오버행부로 감지되지 않을 부분을 지정합니다. 이것은 원하지 않는 서포트 구조를 제거하는 데 사용될 수 있습니다." +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "코스팅(Coasting)을 허용하기 전에 압출 경로에 있어야하는 최소 양. 작은 압출 경로의 경우 보우덴 튜브에 가해지는 압력이 적기 때문에 코스팅(Coasting) 부피가 선형 적으로 조정됩니다. 이 값은 항상 코스팅(Coasting) 양보다 커야합니다." -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "사용자 지정" +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "코스팅(Coasting) 속도" -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "수직 확장 배율 수축 보정" +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "코스팅(Coasting)시 이동 속도. 압출 경로의 속도에 상대적입니다. 코스팅(Coasting) 이동 중에 보우 덴 튜브의 압력이 떨어지기 때문에 100% 보다 약간 작은 값을 권합니다." -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "슬라이스 레이어의 수직 허용 오차입니다. 레이어의 윤곽선은 일반적으로 각 레이어의 두께 중간(중간)을 교차하는 부분을 기준으로 생성됩니다. 또는 각 레이어가 레이어의 높이 전체의 볼륨에 들어가는 영역(포함하지 않음)이 있거나 레이어 안의 어느 지점에 들어가는 영역(포함)이 있을 수 있습니다. 포함된 영역에서 가장 많은 디테일이 포함되고 포함되지 않은 영역을 통해 가장 맞게 만들 수 있으며 중간을 통해 원래 표면과 가장 유사하게 만들어냅니다." +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "크로스 3D 포켓 크기" -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "빌드 플레이트가 가열될 때까지 기다리십시오" +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "패턴이 접촉되는 높이에서 크로스 3D 패턴의 4 방향 교차점에있는 포켓의 크기입니다." -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "노즐이 가열될 때까지 기다리기" +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "교차 충진 밀도 이미지" -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "벽 가속도" +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "인쇄 충진물의 해당 위치에서 밝기 값으로 최소 밀도를 결정하는 이미지의 파일 위치." -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "벽 배포 개수" +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "지지대에 대한 교차 충진 밀도 이미지" -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "벽 익스트루더" +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "지지대의 해당 위치에서 밝기 값으로 최소 밀도를 결정하는 이미지의 파일 위치." -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "벽 압출량" +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "원추형 서포트 사용" -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "벽 Jerk" +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "오버행보다 하단에서 지지대 영역을 작게 만듭니다." -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "벽 라인의 수" +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "원추서포트 각" -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "벽 선 너비" +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "원추형 서포트점의 기울기 각도입니다. 0도가 수직이고 90도가 수평입니다. 각도가 작 으면 서포트가 더 튼튼하지만 더 많은 재료로 구성됩니다. 음수 각도는 서포트의 받침대가 상단보다 넓게 만듭니다." -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "벽 순서 지정" +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "원뿔형 서포트 최소 너비" -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "벽 속도" +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "원추형서포트 영역의 베이스가 축소되는 최소 너비. 폭이 좁으면 불안정한 서포트 구조가 생길 수 있습니다." -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "벽 두께" +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "퍼지 스킨" -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "벽 전환 길이" +msgctxt "magic_fuzzy_skin_enabled description" +msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." +msgstr "외벽을 프린팅하는 동안 무작위로 지터가 발생하여 표면이 거칠고 흐릿해 보입니다." -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "벽 전환 필터 거리" +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "부용 퍼지 스킨" -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "벽 전환 필터 여백" +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "부품의 윤곽만 지터하고 부품의 구멍은 지터하지 않습니다." -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "벽 전환 임계각" +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "퍼지 스킨 두께" -msgctxt "shell label" -msgid "Walls" -msgstr "벽" +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "지터가 발생할 너비. 내벽이 변경되지 않으므로 외벽 너비 아래로 유지하는 것이 좋습니다." -msgctxt "wall_overhang_angle description" -msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." -msgstr "이 각도보다 놓은 오버행(경사면)의 벽은 오버행 벽 설정을 사용해 인쇄됩니다. 값이 90이면 오버행(경사면)으로 처리되는 벽이 없습니다. 서포트로 지지되는 오버행(경사면)도 오버행(경사면)으로 처리되지 않습니다." +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "퍼지 스킨 밀도" -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "활성화하면 부드러운 모션 플래너가 있는 프린터의 도구 경로가 수정됩니다. 일반적인 도구 경로 방향에서 벗어나는 작은 움직임이 평활화되어 플루이드 모션이 개선됩니다." +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "레이어의 각 다각형에 있는 점의 평균 밀도입니다. 다각형의 원래 점은 버려지므로 밀도가 낮으면 해상도가 감소합니다." -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "활성화되면, 내부채움 라인 프린팅 순서가 최적화되어 이동 거리를 줄입니다. 이동 시간의 감소는 슬라이스되는 모델, 내부채움 패턴, 밀도 등에 따라 달라집니다. 작은 내부채움 영역이 많은 일부 모델의 경우, 모델을 슬라이스하는 시간이 상당히 늘어납니다." +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "퍼지 스킨 포인트 거리" -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "활성화되면 서포트 바로 위의 스킨 영역에 대한 프린팅 냉각 팬 속도가 변경됩니다." +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "각 선분에 있는 임의의 점 사이의 평균 거리입니다. 다각형의 원래 점은 버려지므로 해상도가 감소합니다. 이 값은 퍼지 스킨 두께의 절반보다 커야합니다." -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "활성화 된 경우 z 솔기 좌표는 각 부품의 중심을 기준으로합니다. 비활성화 된 경우 좌표는 빌드 플레이트의 절대 위치를 정의합니다." +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "압출 속도 보상 최대 압출 오프셋" -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "0보다 큰 경우 이 거리보다 긴 combing travel은 retraction을 사용합니다. 0으로 설정한 경우 최댓값이 없으며 combing travel은 retraction을 사용하지 않습니다." +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "압출 속도를 보상하기 위해 필라멘트를 이동하는 최대 거리(mm)." -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "0보다 큰 값으로 설정하면 구멍 수평 확장이 작은 구멍에 점진적으로 적용되고(작은 구멍이 더 확장됨), 0으로 설정하면 구멍 수평 확장이 모든 구멍에 적용됩니다. 구멍 수평 확장 최대 직경보다 큰 구멍은 확장되지 않습니다." +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "압출 속도 보상 배율" -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "0보다 크면 홀 수평 확장은 각 레이어의 모든 홀에 적용되는 오프셋의 양입니다. 양수 값은 홀의 크기를 늘리고 음수 값은 홀의 크기를 줄입니다. 이 설정을 활성화하면 홀 수평 확장 최대 직경을 사용하여 추가로 조정할 수 있습니다." +msgctxt "flow_rate_extrusion_offset_factor description" +msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." +msgstr "압출 속도 변화를 보상하기 위해 필라멘트를 이동하는 거리(1초 압출 시 필라멘트가 이동할 수 있는 거리의 백분율)." -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "브릿지 스킨 영역을 프린팅할 때 압출 된 재료의 양에 이 값을 곱합니다." +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "어댑티브 레이어 사용" -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "브릿지 스킨 벽 영역을 프린팅할 때 압출 된 재료의 양에 이 값을 곱합니다." +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "어댑티브 레이어는 모델의 모양에 따라 레이어의 높이를 계산합니다." -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "두번째 브릿지 스킨 영역을 프린팅할 때 압출 된 재료의 양에 이 값을 곱합니다." +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "어댑티브 레이어 최대 변화" -msgctxt "bridge_skin_material_flow_3 description" -msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "세번째 브릿지 스킨 영역을 프린팅할 때 압출 된 재료의 양에 이 값을 곱합니다." +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "기본 레이어 높이와 다른 최대 허용 높이." -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "최소 레이어 시간으로 인해 최소 속도에 도달하면 헤드를 출력물에서 들어 올려 최소 레이어 시간에 도달 할 때까지 시간을 기다립니다." +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "어댑티브 레이어 변화 단계 크기" -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "모델의 몇 가지 레이어에만 수직 간격이 작을 경우 보통 좁은 공간의 본 레이어 주위에도 스킨이 있어야 합니다. 수직 간격이 매우 작을 경우 스킨을 생성하지 않도록 이 설정을 활성화합니다. 이렇게 하면 프린팅 시간과 슬라이싱 시간은 개선되지만 기술적으로 내부채움이 공기 중에 노출된 상태로 남게 됩니다." +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "이전 높이와 비교되는 다음 레이어 높이의 차이." -msgctxt "wall_transition_angle description" -msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." -msgstr "짝수 벽과 홀수 벽 사이에 전환을 생성할 때입니다. 이 설정보다 더 큰 각도의 웨지 모양은 전환이 없으며 나머지 공간을 채우기 위해 벽이 중앙에 프린트되지는 않습니다. 이 설정을 줄이면 이러한 중앙 벽의 수와 길이가 줄어들지만, 간격이 생기거나 과잉 압출될 수 있습니다." +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "어댑티브 레이어 지형 크기" -msgctxt "wall_transition_length description" -msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." -msgstr "부품이 얇아지면서 서로 다른 수의 벽 사이에서 전환될 때 벽 선을 분할하거나 결합하기 위해 일정 양의 공간이 할당됩니다." +msgctxt "adaptive_layer_height_threshold description" +msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." +msgstr "두 개의 인접 레이어 사이의 대상 수평 거리. 이러한 설정을 줄이면 레이어들의 가장자리를 더 가깝게 하도록 보다 얇은 레이어들을 사용하게 됩니다." -msgctxt "wipe_hop_enable description" -msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "와이프할 때, 노즐과 출력물 사이에 간격이 생기도록 빌드 플레이트를 내립니다. 이동 중에 노즐이 출력물에 부딪히는 것을 방지하여 제조판에서 출력물을 칠 가능성을 줄입니다." +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "오버행된 벽 각도" -msgctxt "retraction_hop_enabled description" -msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "리트렉션이 일어날 때마다 빌드 플레이트가 낮아져 노즐과 출력물 사이에 여유 공간이 생깁니다. 이동 중에 노즐이 출력물에 부딪치지 않도록 합니다." +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." +msgstr "이 각도보다 놓은 오버행(경사면)의 벽은 오버행 벽 설정을 사용해 인쇄됩니다. 값이 90이면 오버행(경사면)으로 처리되는 벽이 없습니다. 서포트로 지지되는 오버행(경사면)도 오버행(경사면)으로 처리되지 않습니다." -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "서포트 X/Y 거리가 서포트 Z 거리를 무시하는지 여부를 나타냅니다. X/Y가 Z를 오버라이드하면 X/Y 거리는 모델에서 서포트점을 밀어내어 돌출부까지의 실제 Z 거리에 영향을 줄 수 있습니다. 오버행 주위에 X/Y 거리를 적용하지 않음으로써이 기능을 비활성화 할 수 있습니다." +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "오버행된 벽 속도" -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "프린터의 0 위치의 X/Y 좌표가 프린팅 가능 영역의 중앙에 있는지 여부." +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "오버행된 벽은 정상적인 인쇄 속도의 이 비율로 인쇄됩니다." -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "X 축의 엔드 스톱이 양의 방향 (높은 X 좌표) 또는 음의 (낮은 X 좌표)인지 여부." +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "브릿지 설정 사용" + +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "브릿지가 출력되는 중에 브리지를 감지하고 인쇄 속도, 흐름 및 팬 설정을 수정합니다." -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "Y 축의 엔드 스톱이 양의 방향 (높은 Y 좌표) 또는 음의 (낮은 Y 좌표)인지 여부." +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "최소 브리지 벽 길이" -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "Z 축의 엔드 스톱이 양의 방향 (높은 Z 좌표) 또는 음의 (낮은 Z 좌표)인지 여부." +msgctxt "bridge_wall_min_length description" +msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." +msgstr "이보다 짧은 벽은 일반 벽 설정을 사용하여 인쇄됩니다. 더 이상 지원되지 않는 벽은 브리지 벽 설정을 사용하여 인쇄됩니다." -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "압출기가 자체 히터를 가지고 있지 않고 단일 히터를 공유하는지에 대한 여부." +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "브릿지 스킨 서포트 임계값" -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "익스트루더가 자체 노즐을 가지고 있지 않고 단일 노즐을 공유하는지에 대한 여부. True로 설정하면 프린터 시동 gcode 스크립트가 알려진 상호 호환 가능한 초기 수축 상태(0 또는 1개의 필라멘트가 수축되지 않음)에서 모든 익스트루더를 적절하게 설정해야 합니다. 이 경우 초기 수축 상태는 'machine_extruders_shared_nozzle_initial_retraction' 매개 변수에 의해 익스트루더마다 표시됩니다." +msgctxt "bridge_skin_support_threshold description" +msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." +msgstr "스킨 영역이 해당 영역의 비율 미만으로 생성되면 브릿지 설정을 사용하여 인쇄하십시오. 그렇지 않으면 일반 스킨 설정을 사용하여 인쇄됩니다." -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "기기에 히팅 빌드 플레이트가 있는지 여부." +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "브리지의 희박한 내부채움 최대 밀도" -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "기기의 빌드 볼륨 온도 안정화 지원 여부입니다." +msgctxt "bridge_sparse_infill_max_density description" +msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." +msgstr "희박하다고 여겨지는 내부채움의 최대 밀도 희박한 내부채움의 스킨은 지원되지 않는 것으로 간주되므로 브릿지 스킨으로 취급할 수 있습니다." -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "객체가 저장된 좌표계를 사용하는 대신 빌드 플랫폼 중간 (0,0)를 중심으로 할지 여부." +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "브릿지 벽 코스팅(Coasting)" -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "Cura에서 온도를 제어할지 여부. Cura 외부에서 노즐 온도를 제어하려면 이 기능을 끄십시오." +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "이것은 브릿지 벽이 시작되기 직전에 익스트루더가 있어야하는 거리를 제어합니다. 브릿지가 시작되기 전에 코스팅(coasting)을 하면 노즐의 압력을 낮추고 보다 평평한 브릿지를 만들 수 있습니다." -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "gcode가 시작될 때 빌드 플레이트 온도 명령을 포함할지 여부. start_gcode에 빌드 플레이트 온도 명령이 이미 있으면 Cura는 이 설정을 자동으로 비활성화 합니다." +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "브릿지 벽 속도" -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "gcode의 시작 부분에 노즐 온도 명령을 포함할지 여부. start_gcode에 이미 노즐 온도 명령이 포함되어있을 때 Cura는 이 설정을 자동으로 비활성화 합니다." +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "브릿지 벽이 프린팅되는 속도." -msgctxt "clean_between_layers description" -msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." -msgstr "노즐 와이퍼 작동 G-코드를 레이어 사이에 포함할지 여부(레이어당 최대 1개) 이 설정을 활성화하면 레이어 변경 시 리트렉트 동작에 영향을 미칠 수 있습니다. 와이프 스크립트가 작동할 레이어의 감속을 제어하려면 와이프 리트랙션 설정을 사용하십시오." +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "브리지 벽 압출량" -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "시작 시, 빌드 플레이트가 가열될 때까지 대기하라는 명령을 삽입할지 여부." +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "브릿지 스킨 벽 영역을 프린팅할 때 압출 된 재료의 양에 이 값을 곱합니다." -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "프린팅하기 전에 프라이밍할지 여부. 이 설정을 켜면 프린팅하기 전에 익스트루더가 노즐에서 재료를 준비 할 수 있습니다. 브림 또는 스커트 프린팅는 프라이밍처럼 작동 할 수 있습니다.이 경우이 설정을 해제하면 시간이 절약됩니다." +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "브릿지 스킨 속도" -msgctxt "print_sequence description" -msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -msgstr "모든 모델을 한 번에 한 레이어씩 프린팅할 것인지, 아니면 한 모델이 완료될 때까지 기다릴 것인지, 다음 단계로 넘어가기 전에 대한 여부 a) 한 번에 하나의 압출기만 활성화하고 b) 모든 모델은 전체 프린트 헤드가 이동할 수 있는 방식으로 분리되며 모든 모델은 노즐과 X/Y 축 사이의 거리보다 낮습니다." +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "브릿지 스킨 층이 프린팅되는 속도." -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "별도의 json 파일에 설명된 기기의 다양한 세부 설정을 표시할지 여부." +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "브리지 스킨 압출량" -msgctxt "machine_firmware_retract description" -msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." -msgstr "재료를 리트렉션하는 G1 명령어에서 E 속성을 사용하는 대신 펌웨어 리트렉션 명령어(G10/G11)를 사용할 지 여부." +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "브릿지 스킨 영역을 프린팅할 때 압출 된 재료의 양에 이 값을 곱합니다." -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "시작 시, 노즐이 가열될 때까지 대기할지 여부." +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "브릿지 스킨 밀도" -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "단일 내부채움 라인의 너비." +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "브릿지 스킨 층의 밀도입니다. 값이 100보다 작으면 스킨 라인 사이의 간격이 증가합니다." -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "서포트의 지붕, 바닥의 폭." +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "브릿지 팬 속도" -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "프린팅 상단 부분의 한 줄 너비." +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "브리지 벽과 스킨을 인쇄 할 때 사용하는 팬 속도 백분율." -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "한 줄의 두께. 일반적으로 각 라인의 너비는 노즐 폭과 일치해야합니다. 그러나 이 값을 약간 줄이면 더 나은 인쇄를 할 수 있습니다." +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "여러 개의 레이어가있는 브릿지" -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "단일 주요 타워 라인의 폭." +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "이 옵션을 사용하면 다음 설정을 사용하여 에어 위의 두 번째 및 세 번째 레이어가 인쇄됩니다. 그렇지 않으면 해당 레이어는 일반 설정을 사용하여 인쇄됩니다." -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "단일 스커트 또는 브림의 너비." +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "브릿지 두번째 스킨 속도" -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "단일 서포트 플로어 라인의 폭." +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "두번째 브릿지 스킨 레이어를 인쇄 할 때 사용할 인쇄 속도." -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "단일 서포트 지붕 라인 폭." +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "브리지 두 번째 스킨 압출량" -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "단일 서포트 구조 선의 폭입니다." +msgctxt "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "두번째 브릿지 스킨 영역을 프린팅할 때 압출 된 재료의 양에 이 값을 곱합니다." -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "한 라인의 단일 위쪽/아래쪽 선의 너비입니다." +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "브리지 두 번째 스킨 밀도" -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "가장 바깥 쪽 벽 선을 제외한 모든 벽 선에 대해 단일 벽 선의 폭입니다." +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "두번째 브릿지 스킨 층의 밀도입니다. 값이 100보다 작으면 스킨 라인 사이의 간격이 증가합니다." -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "단일 벽 선의 너비입니다." +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "브릿지 두번째 스킨 팬 속도" -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "기본 래프트 층에있는 선의 너비. 이것은 빌드 플레이트 접착을 돕기 위해 두꺼운 선 이어야 합니다." +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "두번째 브리지 벽과 스킨을 인쇄 할 때 사용하는 팬 속도 백분율." -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "중간 래프트 층의 선폭. 두 번째 레이어를 더 돌출 시키면 선이 빌드 플레이트에 달라 붙습니다." +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "브릿지 세번째 스킨 속도" -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "래프트의 윗면에 있는 선의 폭. 래프트의 상단이 매끄럽도록 얇은 선으로 구성 될 수 있습니다." +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "세번째 브릿지 스킨 레이어를 인쇄 할 때 사용할 인쇄 속도." -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "가장 바깥 쪽 벽 선의 너비. 이 값을 낮춤으로써 높은 수준의 디테일을 프린팅 할 수 있습니다." +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "브리지 세 번째 스킨 압출량" -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "모델의 (최소 피처 크기에 따라) 얇은 피처를 대체할 벽의 너비 최소 벽 선 너비가 피처의 두께보다 더 얇다면 벽은 피처 자체만큼 두꺼워집니다." +msgctxt "bridge_skin_material_flow_3 description" +msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "세번째 브릿지 스킨 영역을 프린팅할 때 압출 된 재료의 양에 이 값을 곱합니다." -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "와이프 브러시 X 위치" +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "브릿지 세번째 스킨 밀도" -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "와이프 홉 속도" +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "세번째 브릿지 스킨 층의 밀도입니다. 값이 100보다 작으면 스킨 라인 사이의 간격이 증가합니다." -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "프라임 타워에서 비활성 노즐 닦기" +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "브릿지 세번째 스킨 팬 속도" -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "와이프 이동 거리" +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "세번째 브리지 벽과 스킨을 인쇄 할 때 사용하는 팬 속도 백분율." msgctxt "clean_between_layers label" msgid "Wipe Nozzle Between Layers" msgstr "레이어 사이의 와이프 노즐" -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "와이프 일시 정지" +msgctxt "clean_between_layers description" +msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." +msgstr "노즐 와이퍼 작동 G-코드를 레이어 사이에 포함할지 여부(레이어당 최대 1개) 이 설정을 활성화하면 레이어 변경 시 리트렉트 동작에 영향을 미칠 수 있습니다. 와이프 스크립트가 작동할 레이어의 감속을 제어하려면 와이프 리트랙션 설정을 사용하십시오." -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "와이프 반복 횟수" +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "와이프 사이의 재료 볼륨" -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "와이프 리트랙션 거리" +msgctxt "max_extrusion_before_wipe description" +msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." +msgstr "다른 노즐 와이프를 시작하기 전에 압출 성형할 수 있는 최대 재료입니다. 이 값이 레이어에 필요한 재료의 양보다 작으면 이 레이어에서는 아무런 효과가 없습니다. 즉, 레이어당 한번 와이프하는 것으로 제한됩니다." msgctxt "wipe_retraction_enable label" msgid "Wipe Retraction Enable" msgstr "와이프 리트랙션 활성화" +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "노즐이 프린팅되지 않은 영역 위로 움직일 때 필라멘트를 리트렉션합니다." + +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "와이프 리트랙션 거리" + +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "필라멘트를 리트렉션하는 양으로 와이프 순서 동안 새어 나오지 않습니다." + msgctxt "wipe_retraction_extra_prime_amount label" msgid "Wipe Retraction Extra Prime Amount" msgstr "와이프 리트랙션 추가 초기 양" -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "와이프 리트렉션 초기 속도" +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "와이프 이동 중에 재료가 새어 나올 수 있습니다. 이 재료는 여기에서 보상받을 수 있습니다." + +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "와이프 리트랙션 속도" + +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "와이프 리트랙션 이동 중에 필라멘트가 리트렉션 및 준비되는 속도입니다." msgctxt "wipe_retraction_retract_speed label" msgid "Wipe Retraction Retract Speed" msgstr "와이프 리트랙션 리트렉트 속도" -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "와이프 리트랙션 속도" +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "와이프 리트랙션 이동 중에 필라멘트가 리트렉트되는 속도입니다." + +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "와이프 리트렉션 초기 속도" + +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "와이프 리트랙션 이동 중에 필라멘트가 초기화되는 속도입니다." + +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "와이프 일시 정지" + +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "리트랙트를 실행 취소한 후 일시 정지합니다." msgctxt "wipe_hop_enable label" msgid "Wipe Z Hop" msgstr "와이프 Z 홉" +msgctxt "wipe_hop_enable description" +msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "와이프할 때, 노즐과 출력물 사이에 간격이 생기도록 빌드 플레이트를 내립니다. 이동 중에 노즐이 출력물에 부딪히는 것을 방지하여 제조판에서 출력물을 칠 가능성을 줄입니다." + msgctxt "wipe_hop_amount label" msgid "Wipe Z Hop Height" msgstr "화이프 Z 홉 높이" -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "내부채움 내" +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "Z 홉을 수행할 때의 높이 차이." -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "임시 명령을 비활성 도구로 전송한 후 활성 도구를 작성하십시오. Smoothie 또는 모달 도구 명령어를 사용하는 다른 펌웨어를 사용해 프린팅하는 듀얼 압출기용 프린팅에 필요합니다." +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "와이프 홉 속도" -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "양의 방향 X 엔드 스톱" +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "홉 중에 z축을 이동하는 속도입니다." + +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "와이프 브러시 X 위치" msgctxt "wipe_brush_pos_x description" msgid "X location where wipe script will start." msgstr "와이프 스크립트가 시작되는 X 위치입니다." -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y가 Z를 무시합니다" +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "와이프 반복 횟수" -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "양의 방향 Y 엔드 스톱" +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "브러시 전체에 노즐을 이동하는 횟수입니다." -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "양의 방향 Z 엔드 스톱" +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "와이프 이동 거리" -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "익스트루더 스위치 후 Z 홉" +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "브러시 전체에 헤드를 앞뒤로 이동하는 거리입니다." -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "익스트루더 스위치 높이 후 Z 홉" +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "소형 구멍 최대 크기" -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Z 홉 높이" +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "이 수치보다 직경이 작은 구멍 및 부품 윤곽은 소형 피처 속도 기능을 이용해 프린트합니다." -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "프린팅 된 부분에만 Z Hop" +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "소형 피처 최대 길이" -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Z 홉 속도" +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "이 수치보다 길이가 짧은 피처 윤곽은 소형 피처 속도 기능을 이용해 프린트합니다." -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "리트렉션했을 때의 Z Hop" +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "소형 피처 속도" -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Z 솔기 정렬" +msgctxt "small_feature_speed_factor description" +msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "소형 피처는 정상적인 프린트 속도의 이 비율로 프린팅됩니다. 프린트 속도가 느리면 부착과 정확도가 개선됩니다." -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Z 경계 위치" +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "소형 피처 초기 레이어 속도" -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "상대적 Z 솔기" +msgctxt "small_feature_speed_factor_0 description" +msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "첫 번째 레이어의 소형 피처는 정상적인 프린트 속도의 이 비율로 프린팅됩니다. 프린트 속도가 느리면 부착과 정확도가 개선됩니다." -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "Z 솔기 X" +msgctxt "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "벽 방향 대체" -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Z 솔기 Y" +msgctxt "material_alternate_walls description" +msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." +msgstr "다른 레이어마다 벽 방향을 대체하고 삽입합니다. 금속 프린팅의 경우와 같이 응력을 증강시킬 수 있는 재료에 유용." -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z가 X/Y를 무시합니다" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "외벽 그룹화" -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "지그재그" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "동일한 레이어의 서로 다른 섬의 외벽이 순차적으로 인쇄됩니다. 활성화되면 벽 종류별로 하나씩 인쇄되므로 유량 변화량이 제한되며 비활성화되면 동일한 섬의 벽이 그룹화되어 섬 간 이동 수가 감소합니다." -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "지그재그" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "출력 과정 보고" -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "지그재그" +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "설정된 임곗값을 벗어난 이벤트 보고" -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "지그재그" +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "출력 과정 보고 활성화" -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "지그재그" +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "발생할 수 있는 오류를 감지하도록 임곗값 설정을 위한 출력 과정 보고를 활성화합니다." -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "지그재그" +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "유량 경고" -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "지그재그" +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "감지 시의 유량 제한 경고입니다." -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "지그재그" +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "유량 제한" -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "지그재그" +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "감지 시의 비정상적인 유량 제한입니다." -msgctxt "travel description" -msgid "travel" -msgstr "이동" +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "출력 온도 경고" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "감지 시의 출력 온도 제한 경고입니다." -#~ msgctxt "brim_inside_margin description" -#~ msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -#~ msgstr "다른 부품 내부에 완전히 둘러싸인 부품은 다른 부품의 내부에 닿는 외부 브림을 생성할 수 있습니다. 이렇게 하면 내부 구멍에서 이 거리 내에 있는 모든 브림이 제거됩니다." +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "출력 온도 제한" -#~ msgctxt "user_defined_print_order_enabled description" -#~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." -#~ msgstr "객체 목록을 정렬하여 수동으로 인쇄 순서를 설정할 수 있습니다. 목록의 첫 번째 객체가 먼저 인쇄됩니다." +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "감지 시의 비정상적인 출력 온도 제한입니다." -#~ msgctxt "brim_inside_margin label" -#~ msgid "Brim Inside Avoid Margin" -#~ msgstr "내부 브림의 여백 회피" +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "빌드 볼륨 온도 경고" -#~ msgctxt "brim_outside_only label" -#~ msgid "Brim Only on Outside" -#~ msgstr "밖에서만 브림 생성" +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "감지 시의 빌드 볼륨 온도 제한 경고입니다." -#~ msgctxt "gradual_flow_discretisation_step_size description" -#~ msgid "Duration of each step in the gradual flow change" -#~ msgstr "점진적 흐름 변화의 각 단계 지속 시간" +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "빌드 볼륨 온도 제한" -#~ msgctxt "gradual_flow_enabled description" -#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -#~ msgstr "점진적 흐름 변경을 활성화합니다. 활성화하면 흐름이 목표 흐름까지 점진적으로 증가/감소됩니다. 이는 압출기 모터가 시작/정지될 때 흐름이 즉시 변경되지 않는 보우덴 튜브가 있는 프린터에 유용합니다." +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "감지 시의 비정상적인 빌드 볼륨 온도 제한입니다. " -#~ msgctxt "reset_flow_duration description" -#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -#~ msgstr "이 값보다 긴 이동에 대해서는 재료 흐름이 경로 목표 흐름으로 재설정됩니다" +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "커맨드 라인 설정" -#~ msgctxt "gradual_flow_discretisation_step_size label" -#~ msgid "Gradual flow discretisation step size" -#~ msgstr "점진적 흐름 이산화 단계 크기" +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "큐라(Cura) 프론트 엔드에서 큐라엔진(CuraEngine)이 호출되지 않은 경우에만 사용되는 설정입니다." -#~ msgctxt "gradual_flow_enabled label" -#~ msgid "Gradual flow enabled" -#~ msgstr "점진적 흐름 활성화" +msgctxt "center_object label" +msgid "Center Object" +msgstr "가운데 객체" -#~ msgctxt "max_flow_acceleration label" -#~ msgid "Gradual flow max acceleration" -#~ msgstr "점진적 흐름 최대 가속도" +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "객체가 저장된 좌표계를 사용하는 대신 빌드 플랫폼 중간 (0,0)를 중심으로 할지 여부." -#~ msgctxt "layer_0_max_flow_acceleration label" -#~ msgid "Initial layer max flow acceleration" -#~ msgstr "초기 레이어 최대 흐름 가속도" +msgctxt "mesh_position_x label" +msgid "Mesh Position X" +msgstr "메쉬 위치 X" -#~ msgctxt "layer_0_z_overlap description" -#~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -#~ msgstr "에어 갭에서 손실 된 필라멘트를 보완하기 위해 Z 방향으로 모델의 첫 번째와 두 번째 레이어가 중첩되도록 합니다. 첫 번째 모델 레이어 위의 모든 모델은이 양만큼 아래로 이동합니다." +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "x 방향으로 객체에 적용된 오프셋입니다." -#~ msgctxt "max_flow_acceleration description" -#~ msgid "Maximum acceleration for gradual flow changes" -#~ msgstr "점진적 흐름 변경에 대한 최대 가속도" +msgctxt "mesh_position_y label" +msgid "Mesh Position Y" +msgstr "메쉬 위치 Y" -#~ msgctxt "layer_0_max_flow_acceleration description" -#~ msgid "Minimum speed for gradual flow changes for the first layer" -#~ msgstr "첫 번째 레이어의 점진적인 흐름 변화를 위한 최소 속도" +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "y 방향으로 객체에 적용된 오프셋입니다." -#~ msgctxt "brim_outside_only description" -#~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -#~ msgstr "모델 바깥 쪽 브림에만 프린팅합니다. 나중에 제거해야하는 브림의 양이 줄어들지만 베드 접착력은 그렇게 많이 줄어들지 않습니다." +msgctxt "mesh_position_z label" +msgid "Mesh Position Z" +msgstr "메쉬 위치 Z" -#~ msgctxt "reset_flow_duration label" -#~ msgid "Reset flow duration" -#~ msgstr "흐름 지속 시간 재설정" +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "z 방향으로 객체에 적용된 오프셋입니다. 이것을 사용하여 '오프젝 싱크(Object Sink)'라고 불렀던 것을 수행 할 수 있습니다." -#~ msgctxt "support_interface_skip_height label" -#~ msgid "Support Interface Resolution" -#~ msgstr "서포트 인터페이스 해상도" +msgctxt "mesh_rotation_matrix label" +msgid "Mesh Rotation Matrix" +msgstr "메쉬 회전 행렬" -#~ msgctxt "support_interface_skip_height description" -#~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -#~ msgstr "서포트가 모델의 위와 아래에 있는지 확인하려면 주어진 높이의 단계를 수행하십시오. 값이 낮을수록 슬라이스가 느려지고, 값이 높을수록 서포트 인터페이스가 있어야하는 곳에서는 정상적인 서포트다 프린팅 될 수 있습니다." +msgctxt "mesh_rotation_matrix description" +msgid "Transformation matrix to be applied to the model when loading it from file." +msgstr "파일로부터 로드 하는 경유, 모델에 적용될 변환 행렬입니다." diff --git a/resources/i18n/ko_KR/gradual_flow_settings.def.json.po b/resources/i18n/ko_KR/gradual_flow_settings.def.json.po index 363b0994aa1..37db148315f 100644 --- a/resources/i18n/ko_KR/gradual_flow_settings.def.json.po +++ b/resources/i18n/ko_KR/gradual_flow_settings.def.json.po @@ -1,54 +1,53 @@ -# msgid "" msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: 2024-03-11 11:28+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: en\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ko_KR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=1; plural=0;\n" -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" - msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" msgstr "Gradual flow max acceleration" -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" - msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" msgstr "Maximum acceleration for gradual flow changes" +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" msgstr "Minimum speed for gradual flow changes for the first layer" +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + msgctxt "reset_flow_duration label" msgid "Reset flow duration" msgstr "Reset flow duration" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" diff --git a/resources/i18n/nl_NL/cura.po b/resources/i18n/nl_NL/cura.po index c046657690c..41b6f47dabf 100644 --- a/resources/i18n/nl_NL/cura.po +++ b/resources/i18n/nl_NL/cura.po @@ -12,7 +12,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" msgstr "%(width).1f x %(depth).1f x %(height).1f mm" @@ -119,7 +118,7 @@ msgstr "&Project opslaan..." msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" msgid "&Save Universal Cura Project..." -msgstr "" +msgstr "& Universal Cura Project opslaan..." msgctxt "@title:menu menubar:toplevel" msgid "&Settings" @@ -142,13 +141,9 @@ msgid "*You will need to restart the application for these changes to have effec msgstr "*U moet de toepassing opnieuw starten voordat deze wijzigingen van kracht worden." msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "" -"- Voeg materiaalprofielen en plug-ins toe uit de Marktplaats\n" -"- Maak back-ups van uw materiaalprofielen en plug-ins en synchroniseer deze\n" +msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgstr "- Voeg materiaalprofielen en plug-ins toe uit de Marktplaats" +"- Maak back-ups van uw materiaalprofielen en plug-ins en synchroniseer deze" "- Deel ideeën met 48.000+ gebruikers in de Ultimaker-community of vraag hen om ondersteuning" msgctxt "@heading" @@ -175,14 +170,6 @@ msgctxt "@item:inlistbox" msgid "3MF File" msgstr "3MF-bestand" -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF-lezer" - -msgctxt "name" -msgid "3MF Writer" -msgstr "3MF-schrijver" - msgctxt "@error:zip" msgid "3MF Writer plug-in is corrupt." msgstr "3MF-schrijverplug-in is beschadigd." @@ -203,56 +190,37 @@ msgctxt "@label %i will be replaced with a profile name" msgid "Only user changed settings will be saved in the custom profile.
                                      For materials that support it, the new custom profile will inherit properties from %1." msgstr "Alleen door de gebruiker gewijzigde instellingen worden opgeslagen in het aangepast profiel.
                                      Voor materialen die dit ondersteunen, neemt het nieuwe aangepaste profiel eigenschappen over van %1 ." -#, python-brace-format msgctxt "@label OpenGL renderer" msgid "
                                    • OpenGL Renderer: {renderer}
                                    • " msgstr "
                                    • OpenGL-renderer: {renderer}
                                    • " -#, python-brace-format msgctxt "@label OpenGL vendor" msgid "
                                    • OpenGL Vendor: {vendor}
                                    • " msgstr "
                                    • OpenGL-leverancier: {vendor}
                                    • " -#, python-brace-format msgctxt "@label OpenGL version" msgid "
                                    • OpenGL Version: {version}
                                    • " msgstr "
                                    • OpenGL-versie: {version}
                                    • " msgctxt "@label crash message" -msgid "" -"

                                      A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

                                      \n" -"

                                      Please use the \"Send report\" button to post a bug report automatically to our servers

                                      \n" -" " -msgstr "" -"

                                      Er is een fatale fout opgetreden in Cura. Stuur ons het crashrapport om het probleem op te lossen

                                      \n" -"

                                      Druk op de knop "Rapport verzenden" om het foutenrapport automatisch naar onze servers te verzenden

                                      \n" +msgid "

                                      A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

                                      \n

                                      Please use the \"Send report\" button to post a bug report automatically to our servers

                                      \n " +msgstr "

                                      Er is een fatale fout opgetreden in Cura. Stuur ons het crashrapport om het probleem op te lossen

                                      " +"

                                      Druk op de knop "Rapport verzenden" om het foutenrapport automatisch naar onze servers te verzenden

                                      " " " msgctxt "@label crash message" -msgid "" -"

                                      Oops, UltiMaker Cura has encountered something that doesn't seem right.

                                      \n" -"

                                      We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

                                      \n" -"

                                      Backups can be found in the configuration folder.

                                      \n" -"

                                      Please send us this Crash Report to fix the problem.

                                      \n" -" " -msgstr "" -"

                                      Oeps, UltiMaker Cura heeft een probleem gedetecteerd.

                                      \n" -"

                                      Tijdens het opstarten is een onherstelbare fout opgetreden. Deze fout is mogelijk veroorzaakt door enkele onjuiste configuratiebestanden. Het wordt aanbevolen een back-up te maken en de standaardinstelling van uw configuratie te herstellen.

                                      \n" -"

                                      Back-ups bevinden zich in de configuratiemap.

                                      \n" -"

                                      Stuur ons dit crashrapport om het probleem op te lossen.

                                      \n" +msgid "

                                      Oops, UltiMaker Cura has encountered something that doesn't seem right.

                                      \n

                                      We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

                                      \n

                                      Backups can be found in the configuration folder.

                                      \n

                                      Please send us this Crash Report to fix the problem.

                                      \n " +msgstr "

                                      Oeps, UltiMaker Cura heeft een probleem gedetecteerd.

                                      " +"

                                      Tijdens het opstarten is een onherstelbare fout opgetreden. Deze fout is mogelijk veroorzaakt door enkele onjuiste configuratiebestanden. Het wordt aanbevolen een back-up te maken en de standaardinstelling van uw configuratie te herstellen.

                                      " +"

                                      Back-ups bevinden zich in de configuratiemap.

                                      " +"

                                      Stuur ons dit crashrapport om het probleem op te lossen.

                                      " " " -#, python-brace-format msgctxt "@info:status" -msgid "" -"

                                      One or more 3D models may not print optimally due to the model size and material configuration:

                                      \n" -"

                                      {model_names}

                                      \n" -"

                                      Find out how to ensure the best possible print quality and reliability.

                                      \n" -"

                                      View print quality guide

                                      " -msgstr "" -"

                                      Een of meer 3D-modellen worden mogelijk niet optimaal geprint vanwege het modelformaat en de materiaalconfiguratie:

                                      \n" -"

                                      {model_names}

                                      \n" -"

                                      Ontdek hoe u de best mogelijke printkwaliteit en betrouwbaarheid verkrijgt.

                                      \n" +msgid "

                                      One or more 3D models may not print optimally due to the model size and material configuration:

                                      \n

                                      {model_names}

                                      \n

                                      Find out how to ensure the best possible print quality and reliability.

                                      \n

                                      View print quality guide

                                      " +msgstr "

                                      Een of meer 3D-modellen worden mogelijk niet optimaal geprint vanwege het modelformaat en de materiaalconfiguratie:

                                      " +"

                                      {model_names}

                                      " +"

                                      Ontdek hoe u de best mogelijke printkwaliteit en betrouwbaarheid verkrijgt.

                                      " "

                                      Handleiding printkwaliteit bekijken

                                      " msgctxt "@label" @@ -267,7 +235,7 @@ msgstr[1] "Een cloudverbinding is niet beschikbaar voor meerdere printers" msgctxt "@text" msgid "A highly dense and strong part but at a slower print time. Great for functional parts." -msgstr "" +msgstr "Een zeer dicht en sterk onderdeel, maar met een langere printtijd. Zeer geschikt voor functionele onderdelen." msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." @@ -277,10 +245,6 @@ msgctxt "@item:inlistbox" msgid "AMF File" msgstr "AMF-bestand" -msgctxt "name" -msgid "AMF Reader" -msgstr "AMF-lezer" - msgctxt "@label" msgid "Abort" msgstr "Afbreken" @@ -317,10 +281,6 @@ msgctxt "@button" msgid "Accept" msgstr "Ja, ik ga akkoord" -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Hiermee accepteert u G-code en verzendt u deze code naar een printer. Via de plug-in kan tevens de firmware worden bijgewerkt." - msgctxt "@label" msgid "Account synced" msgstr "Account gesynchroniseerd" @@ -413,7 +373,6 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Printer handmatig toevoegen" -#, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "Printer {name} ({model}) toevoegen vanaf uw account" @@ -454,7 +413,6 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Alle Bestanden (*)" -#, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "Alle Ondersteunde Typen ({0})" @@ -463,10 +421,6 @@ msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "Verzenden van anonieme gegevens toestaan" -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Hiermee kunt u G-code-bestanden laden en weergeven." - msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Altijd vragen" @@ -505,7 +459,7 @@ msgstr "Anoniem" msgctxt "@option:radio" msgid "Anonymous crash reports" -msgstr "" +msgstr "Anonieme crashrapporten" msgctxt "@label Description for application component" msgid "Application framework" @@ -513,7 +467,7 @@ msgstr "Toepassingskader" msgctxt "@title:column" msgid "Applies on" -msgstr "" +msgstr "Van toepassing op" msgctxt "@label" msgid "Apply Extruder offsets to GCode" @@ -547,7 +501,6 @@ msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to move %1 to the top of the queue?" msgstr "Weet u zeker dat u %1 bovenaan de wachtrij wilt plaatsen?" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "Weet u zeker dat u {printer_name} tijdelijk wilt verwijderen?" @@ -560,7 +513,6 @@ msgctxt "@label (%1 is object name)" msgid "Are you sure you wish to remove %1? This cannot be undone!" msgstr "Weet u zeker dat u %1 wilt verwijderen? Deze bewerking kan niet ongedaan worden gemaakt!" -#, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "Weet u zeker dat u {0} wilt verwijderen? Deze bewerking kan niet ongedaan worden gemaakt!" @@ -625,10 +577,6 @@ msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Back-up maken en herstellen van configuratie" -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Een back-up maken van uw configuratie en deze herstellen." - msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "Maak een back-up van uw materiaalinstellingen en plug-ins en synchroniseer deze" @@ -703,7 +651,7 @@ msgstr "Berekend" msgctxt "@window:text" msgid "Camera navigation:" -msgstr "" +msgstr "Cameranavigatie" msgctxt "@window:text" msgid "Camera rendering:" @@ -725,12 +673,10 @@ msgctxt "@label" msgid "Can't connect to your UltiMaker printer?" msgstr "Kunt u geen verbinding maken met uw UltiMaker-printer?" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "Kan het profiel niet importeren uit {0} voordat een printer toegevoegd is." -#, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "Kan geen ander bestand openen als G-code wordt geladen. Het importeren van {0} is overgeslagen" @@ -803,21 +749,8 @@ msgctxt "@label" msgid "Checking..." msgstr "Aan het controleren..." -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Controleert op firmware-updates." - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Via deze optie controleert u de modellen en de printconfiguratie op mogelijke printproblemen en ontvangt u suggesties." - msgctxt "@label" -msgid "" -"Chooses between the techniques available to generate support. \n" -"\n" -"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" -"\n" -"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "Kiest tussen de beschikbare technieken om support te genereren. \"Normale\" support creert een supportstructuur direct onder de overhangende delen en laat die gebieden recht naar beneden vallen. \"Boom\"-support creert takken naar de overhangende gebieden die het model op de toppen van die takken ondersteunen, en laat de takken rond het model kruipen om het zoveel mogelijk vanaf het platform te ondersteunen." msgctxt "@action:inmenu menubar:edit" @@ -896,14 +829,6 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Gecomprimeerd G-code-bestand" -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Lezer voor gecomprimeerde G-code" - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Schrijver voor gecomprimeerde G-code" - msgctxt "@title:window" msgid "Configuration Changes" msgstr "Configuratiewijzigingen" @@ -976,10 +901,6 @@ msgctxt "@info:status" msgid "Connected via cloud" msgstr "Verbonden via Cloud" -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Maakt verbinding met de digitale bibliotheek, zodat Cura bestanden kan openen vanuit, en bestanden kan opslaan in, de digitale bibliotheek." - msgctxt "@tooltip:button" msgid "Consult the UltiMaker Community." msgstr "Consulteer de UltiMaker Community." @@ -1020,7 +941,6 @@ msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "Kan geen archief maken van gegevensmap van gebruiker: {}" -#, python-brace-format msgctxt "@info:status Don't translate the tag {device}!" msgid "Could not find a file name when trying to write to {device}." msgstr "Kan geen bestandsnaam vinden tijdens het schrijven naar {device}." @@ -1049,12 +969,10 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Kan materiaalarchief niet opslaan op {}:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "Kan niet opslaan als {0}: {1}" -#, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Kan niet opslaan op verwisselbaar station {0}: {1}" @@ -1063,27 +981,17 @@ msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "Kan de gegevens niet uploaden naar de printer." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"No permission to execute process." +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." msgstr "EnginePlugin kon niet gestart worden: {self._plugin_id}}Geen toestemming om proces uit te voeren." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Operating system is blocking it (antivirus?)" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" msgstr "EnginePlugin kon niet gestart worden: {self._plugin_id}}Het wordt door het besturingssysteem geblokkeerd (antivirus?)" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Resource is temporarily unavailable" -msgstr "" -"EnginePlugin kon niet gestart worden: {self._plugin_id}\n" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" +msgstr "EnginePlugin kon niet gestart worden: {self._plugin_id}" "Resource is tijdelijk niet beschikbaar" msgctxt "@title:window" @@ -1126,10 +1034,6 @@ msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Maak printprojecten aan in Digital Library." -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Hiermee maakt u een wisraster om het printen van een supportstructuur op bepaalde plekken te blokkeren" - msgctxt "@info:backup_status" msgid "Creating your backup..." msgstr "Uw back-up maken..." @@ -1142,22 +1046,10 @@ msgctxt "@title:window" msgid "Cura Backups" msgstr "Cura-back-ups" -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura-back-ups" - msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Cura-profiel" -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura-profiellezer" - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura-profielschrijver" - msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Cura-project 3MF-bestand" @@ -1170,17 +1062,13 @@ msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura kan niet worden gestart" -#, python-brace-format msgctxt "@info:status" msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." msgstr "Cura heeft materiaalprofielen gedetecteerd die nog niet op de hostprinter van groep {0} zijn geïnstalleerd." msgctxt "@info:credit" -msgid "" -"Cura is developed by UltiMaker in cooperation with the community.\n" -"Cura proudly uses the following open source projects:" -msgstr "" -"Cura is ontwikkeld door UltiMaker in samenwerking met de community.\n" +msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" +msgstr "Cura is ontwikkeld door UltiMaker in samenwerking met de community." "Cura maakt met trots gebruik van de volgende opensourceprojecten:" msgctxt "@label" @@ -1191,18 +1079,6 @@ msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura-versie" -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine-back-end" - -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "CuraEngine-plugin voor het geleidelijk afvlakken van de flow om grote sprongen in de flow te beperken" - -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - msgctxt "@label" msgid "Currency:" msgstr "Valuta:" @@ -1433,7 +1309,7 @@ msgstr "Ontwerp" msgctxt "@action:inmenu menubar:edit" msgid "Drop All Models to buildplate" -msgstr "" +msgstr "Alle modellen laten vallen op bouwplaat" msgctxt "@action:button" msgid "Duplicate" @@ -1459,12 +1335,10 @@ msgctxt "@action:button" msgid "Eject" msgstr "Uitwerpen" -#, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "Verwisselbaar station {0} uitwerpen" -#, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "{0} is uitgeworpen. U kunt het station nu veilig verwijderen." @@ -1489,10 +1363,6 @@ msgctxt "@label" msgid "Enabled" msgstr "Ingeschakeld" -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Hiermee wordt het genereren van printbare geometrie van 2D-afbeeldingsbestanden mogelijk." - msgctxt "@title:label" msgid "End G-code" msgstr "Eind G-code" @@ -1563,7 +1433,7 @@ msgstr "Selectie Exporteren..." msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Export Universal Cura Project" -msgstr "" +msgstr "Universal Cura Project exporteren" msgctxt "@button" msgid "Export material archive" @@ -1573,7 +1443,6 @@ msgctxt "@info:title" msgid "Export succeeded" msgstr "De export is voltooid" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Het profiel is geëxporteerd als {0}" @@ -1582,10 +1451,6 @@ msgctxt "@tooltip:button" msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "Breid UltiMaker Cura uit met plug-ins en materiaalprofielen." -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Uitbreiding waarmee door de gebruiker gemaakte scripts voor nabewerking kunnen worden gebruikt" - msgctxt "@label" msgid "Extruder" msgstr "Extruder" @@ -1600,7 +1465,7 @@ msgstr "Eind-G-code van extruder" msgctxt "@label" msgid "Extruder End G-code duration" -msgstr "" +msgstr "Duur einde G-code extruder" msgctxt "@title:label" msgid "Extruder Start G-code" @@ -1608,12 +1473,11 @@ msgstr "Start-G-code van extruder" msgctxt "@label" msgid "Extruder Start G-code duration" -msgstr "" +msgstr "Duur start G-code extruder" -#, python-brace-format msgctxt "@label" msgid "Extruder {0}" -msgstr "" +msgstr "Extruder {0}" msgctxt "@info:title" msgid "Extruder(s) Disabled" @@ -1635,7 +1499,6 @@ msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "Kan geen materiaalarchief maken voor synchronisatie met printers." -#, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "Uitwerpen van {0} is niet gelukt. Mogelijk wordt het station door een ander programma gebruikt." @@ -1644,27 +1507,22 @@ msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "Exporteren van materiaal naar %1 is mislukt: %2" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Kan het profiel niet exporteren als {0}: {1}" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Kan het profiel niet exporteren als {0}: Plug-in voor de schrijver heeft een fout gerapporteerd." -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Kan het profiel niet importeren uit {0}:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Kan het profiel niet importeren uit {0}:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Kan het profiel niet importeren uit {0}: {1}" @@ -1681,10 +1539,9 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Opslaan materiaalarchief mislukt" -#, python-brace-format msgctxt "@info:status" msgid "Failed writing to specific cloud printer: {0} not in remote clusters." -msgstr "" +msgstr "Schrijven naar specifieke cloudprinter mislukt: {0} niet in clusters op afstand." msgctxt "@label:category menu label" msgid "Favorites" @@ -1710,7 +1567,6 @@ msgctxt "@info:title" msgid "File Saved" msgstr "Bestand opgeslagen" -#, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Het bestand {0} bevat geen geldig profiel." @@ -1743,14 +1599,6 @@ msgctxt "@title:window" msgid "Firmware Update" msgstr "Firmware-update" -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Firmware-updatecontrole" - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Firmware-updater" - msgctxt "@label" msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." msgstr "Kan de firmware niet bijwerken omdat de verbinding met de printer geen ondersteuning biedt voor het uitvoeren van een firmware-upgrade." @@ -1828,7 +1676,7 @@ msgid "Force layer view compatibility mode (restart required)" msgstr "Compatibiliteitsmodus voor laagweergave forceren (opnieuw opstarten vereist)" msgid "FreeCAD trackpad" -msgstr "" +msgstr "FreeCAD-trackpad" msgctxt "@action:inmenu menubar:view" msgid "Front View" @@ -1850,18 +1698,6 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "G-code-bestand" -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "G-code-profiellezer" - -msgctxt "name" -msgid "G-code Reader" -msgstr "G-code-lezer" - -msgctxt "name" -msgid "G-code Writer" -msgstr "G-code-schrijver" - msgctxt "@label" msgid "G-code flavor" msgstr "Versie G-code" @@ -1920,7 +1756,7 @@ msgstr "Aan de slag" msgctxt "@label" msgid "Global" -msgstr "" +msgstr "Globaal" msgctxt "@title:tab" msgid "Global Settings" @@ -1934,7 +1770,6 @@ msgctxt "@label" msgid "Grid Placement" msgstr "Rasterplaatsing" -#, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "Groepsnummer #{group_nr}" @@ -1973,7 +1808,7 @@ msgstr "Alle aangesloten printers verbergen" msgctxt "@action:button" msgid "Hide settings" -msgstr "" +msgstr "Instellingen verbergen" msgctxt "@action:menu" msgid "Hide this setting" @@ -2011,10 +1846,6 @@ msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "Raadpleeg de handleiding voor probleemoplossing bij printen via het netwerk als uw printer niet in de lijst wordt vermeld" -msgctxt "name" -msgid "Image Reader" -msgstr "Afbeeldinglezer" - msgctxt "@action:button" msgid "Import" msgstr "Importeren" @@ -2053,7 +1884,7 @@ msgstr "Om het pakket te gebruiken moet u Cura opnieuw opstarten" msgctxt "@option:radio" msgid "Include UltiMaker account name" -msgstr "" +msgstr "UltiMaker-accountnaam toevoegen" msgctxt "@label" msgid "Infill" @@ -2299,10 +2130,6 @@ msgctxt "@info:tooltip" msgid "Left View" msgstr "Linkeraanzicht" -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Lezer voor Profielen van oudere Cura-versies" - msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "Laat ontwikkelaars weten dat er iets misgaat." @@ -2383,10 +2210,6 @@ msgctxt "@title:groupbox" msgid "Logs" msgstr "Logboeken" -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Hiermee worden bepaalde gebeurtenissen geregistreerd, zodat deze door de crashrapportage kunnen worden gebruikt" - msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Verbinding met de printer is verbroken" @@ -2395,10 +2218,6 @@ msgctxt "@action" msgid "Machine Settings" msgstr "Machine-instellingen" -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Actie machine-instellingen" - msgctxt "@backuplist:label" msgid "Machines" msgstr "Machines" @@ -2415,10 +2234,6 @@ msgctxt "@item:inlistbox" msgid "Makerbot Printfile" msgstr "Makerbot Printbestand" -msgctxt "name" -msgid "Makerbot Printfile Writer" -msgstr "Makerbot Printbestandschrijver" - msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "MakerbotWriter kon niet opslaan op het aangegeven pad." @@ -2475,14 +2290,6 @@ msgctxt "@text" msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." msgstr "Beheer hier uw UltiMaker Cura-plug-ins en materiaalprofielen. Zorg ervoor dat uw plug-ins up-to-date blijven en maak regelmatig een back-up van uw instellingen." -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "Beheert extensies voor de toepassing en staat browsingextensies toe van de UltiMaker-website." - -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "Hiermee beheert u netwerkverbindingen naar UltiMaker-netwerkprinters." - msgctxt "@label" msgid "Manufacturer" msgstr "Fabrikant" @@ -2495,10 +2302,6 @@ msgctxt "@label" msgid "Marketplace" msgstr "Marktplaats" -msgctxt "name" -msgid "Marketplace" -msgstr "Marktplaats" - msgctxt "@action:label" msgid "Material" msgstr "Materiaal" @@ -2515,10 +2318,6 @@ msgctxt "@label:listbox" msgid "Material Color" msgstr "Materiaalkleur" -msgctxt "name" -msgid "Material Profiles" -msgstr "Materiaalprofielen" - msgctxt "@label" msgid "Material Type" msgstr "Type Materiaal" @@ -2563,10 +2362,6 @@ msgctxt "@action:label" msgid "Mode" msgstr "Modus" -msgctxt "name" -msgid "Model Checker" -msgstr "Modelcontrole" - msgctxt "@info:title" msgid "Model Errors" msgstr "Modelfouten" @@ -2583,10 +2378,6 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "Controleren" -msgctxt "name" -msgid "Monitor Stage" -msgstr "Controlestadium" - msgctxt "@action:button" msgid "Monitor print" msgstr "Printen in de gaten houden" @@ -2661,7 +2452,6 @@ msgctxt "@info:title" msgid "Network error" msgstr "Netwerkfout" -#, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" msgstr "Nieuwe stabiele firmware voor %s beschikbaar" @@ -2674,7 +2464,6 @@ msgctxt "@label" msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." msgstr "Nieuwe UltiMaker printers kunnen toegevoegd worden aan Digital Factory om van afstand beheerd te worden" -#, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." msgstr "Er zijn mogelijk nieuwe functies of foutoplossingen beschikbaar voor uw {machine_name}. Als u dit nog niet hebt gedaan, is het raadzaam om de firmware op uw printer bij te werken naar versie {latest_version}." @@ -2721,7 +2510,6 @@ msgctxt "@label" msgid "No cost estimation available" msgstr "Geen kostenraming beschikbaar" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Er is geen aangepast profiel om in het bestand {0} te importeren" @@ -2760,7 +2548,7 @@ msgstr "Geen resultaten gevonden met huidige filter" msgctxt "@label" msgid "No specific value has been set" -msgstr "" +msgstr "Er is geen specifieke waarde ingesteld" msgctxt "@label" msgid "No time estimation available" @@ -2858,14 +2646,13 @@ msgctxt "@label" msgid "Only Show Top Layers" msgstr "Alleen bovenlagen weergegeven" -#, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Er kan slechts één G-code-bestand tegelijkertijd worden geladen. Het importeren van {0} is overgeslagen" msgctxt "@message" msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." -msgstr "" +msgstr "Oeps! We zijn een onverwachte fout tegengekomen tijdens uw snijproces. Geen zorgen, we hebben automatisch de crashlogs ontvangen voor analyse als u het delen van gegevens niet heeft uitgeschakeld in uw voorkeuren. Om ons verder te helpen, kunt u overwegen uw projectgegevens te delen op onze issue-tracker." msgctxt "@action:button" msgid "Open" @@ -2897,11 +2684,11 @@ msgstr "Projectbestand Openen" msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Open Universal Cura Project (UCP)" -msgstr "" +msgstr "Universal Cura Project (UCP) openen" msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Open Universal Cura Project (UCP) file" -msgstr "" +msgstr "Bestand van Universal Cura Project (UCP) openen" msgctxt "@action:label" msgid "Open With" @@ -2909,7 +2696,7 @@ msgstr "Openen" msgctxt "@action:button" msgid "Open as UCP" -msgstr "" +msgstr "Openen als UCP" msgctxt "@action:button" msgid "Open as project" @@ -3032,10 +2819,6 @@ msgctxt "@label" msgid "Per Model Settings" msgstr "Instellingen per Model" -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Gereedschap voor Instellingen per Model" - msgid "Perspective" msgstr "Perspectief" @@ -3072,15 +2855,10 @@ msgid "Please give the required permissions when authorizing this application." msgstr "Verleen de vereiste toestemmingen toe bij het autoriseren van deze toepassing." msgctxt "@info" -msgid "" -"Please make sure your printer has a connection:\n" -"- Check if the printer is turned on.\n" -"- Check if the printer is connected to the network.\n" -"- Check if you are signed in to discover cloud-connected printers." -msgstr "" -"Controleer of de printer verbonden is:\n" -"- Controleer of de printer ingeschakeld is.\n" -"- Controleer of de printer verbonden is met het netwerk.\n" +msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." +msgstr "Controleer of de printer verbonden is:" +"- Controleer of de printer ingeschakeld is." +"- Controleer of de printer verbonden is met het netwerk." "- Controleer of u bent aangemeld om met de cloud verbonden printers te detecteren." msgctxt "@text" @@ -3108,15 +2886,10 @@ msgid "Please remove the print" msgstr "Verwijder de print" msgctxt "@info:status" -msgid "" -"Please review settings and check if your models:\n" -"- Fit within the build volume\n" -"- Are assigned to an enabled extruder\n" -"- Are not all set as modifier meshes" -msgstr "" -"Controleer de instellingen en zorg ervoor dat uw modellen:\n" -"- binnen het werkvolume passen\n" -"- zijn toegewezen aan een ingeschakelde extruder\n" +msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" +msgstr "Controleer de instellingen en zorg ervoor dat uw modellen:" +"- binnen het werkvolume passen" +"- zijn toegewezen aan een ingeschakelde extruder" "- niet allemaal zijn ingesteld als modificatierasters" msgctxt "@label" @@ -3129,7 +2902,7 @@ msgstr "Meld u aan voor geverifieerde plug-ins en materialen voor UltiMaker Cura msgctxt "@info:tooltip" msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." -msgstr "" +msgstr "Meld u aan bij uw UltiMaker-account om het verzenden van niet-anonieme gegevens mogelijk te maken." msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." @@ -3171,10 +2944,6 @@ msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Nabewerking" -msgctxt "name" -msgid "Post Processing" -msgstr "Nabewerking" - msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "Plug-in voor Nabewerking" @@ -3191,10 +2960,6 @@ msgctxt "@item:inmenu" msgid "Prepare" msgstr "Voorbereiden" -msgctxt "name" -msgid "Prepare Stage" -msgstr "Stadium voorbereiden" - msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "Voorbereiden..." @@ -3215,10 +2980,6 @@ msgctxt "@item:inmenu" msgid "Preview" msgstr "Voorbeeld" -msgctxt "name" -msgid "Preview Stage" -msgstr "Voorbeeldstadium" - msgctxt "@tooltip" msgid "Prime Tower" msgstr "Primepijler" @@ -3419,7 +3180,6 @@ msgctxt "@title:column" msgid "Profile settings" msgstr "Profielinstellingen" -#, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Het profiel {0} heeft een onbekend bestandstype of is beschadigd." @@ -3444,22 +3204,18 @@ msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Programmeertaal" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "Projectbestand {0} bevat een onbekend type machine {1}. Kan de machine niet importeren. In plaats daarvan worden er modellen geïmporteerd." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "Projectbestand {0} is corrupt: {1}." -#, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." msgstr "Projectbestand {0} wordt gemaakt met behulp van profielen die onbekend zijn bij deze versie van UltiMaker Cura." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "Projectbestand {0} is plotseling ontoegankelijk: {1}." @@ -3468,146 +3224,41 @@ msgctxt "@label" msgid "Properties" msgstr "Eigenschappen" -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Biedt machineacties voor het bijwerken van de firmware." +msgctxt "@label" +msgid "PyQt version" +msgstr "PyQt version" -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Deze optie biedt een controlestadium in Cura." +msgctxt "@Label Description for application dependency" +msgid "Python Error tracking library" +msgstr "Python fouttraceringsbibliotheek" -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Biedt een normale, solide rasterweergave." +msgctxt "@label Description for application dependency" +msgid "Python bindings for Clipper" +msgstr "Pythonbindingen voor Clipper" -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Deze optie biedt een voorbereidingsstadium in Cura." +msgctxt "@label Description for application component" +msgid "Python bindings for libnest2d" +msgstr "Pythonbindingen voor libnest2d" -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Deze optie biedt een voorbeeldstadium in Cura." +msgctxt "@label" +msgid "Qt version" +msgstr "Qt version" -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Biedt een manier om de machine-instellingen (zoals bouwvolume, maat nozzle, enz.) te wijzigen." +msgctxt "@info:status" +msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." +msgstr "Kwaliteitstype '{0}' is niet compatibel met de huidige actieve machinedefinitie '{1}'." -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Biedt mogelijkheden om materiaalprofielen op XML-basis te lezen en te schrijven." +msgctxt "@info:title" +msgid "Queue Full" +msgstr "Wachtrij vol" -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Biedt machineacties voor UltiMaker-machines (zoals wizard voor bedkalibratie, selecteren van upgrades, enz.)" +msgctxt "@label" +msgid "Queued" +msgstr "In wachtrij" -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Biedt hotplug- en schrijfondersteuning voor verwisselbare stations." - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Biedt ondersteuning voor het exporteren van Cura-profielen." - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Biedt ondersteuning bij het importeren van Cura-profielen." - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Biedt ondersteuning voor het importeren van profielen uit G-code-bestanden." - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Biedt ondersteuning voor het importeren van profielen uit oudere Cura-versies." - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Biedt ondersteuning voor het lezen van 3MF-bestanden." - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Biedt ondersteuning voor het lezen van AMF-bestanden." - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Deze optie biedt ondersteuning voor het lezen van UltiMaker Format Packages." - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Deze optie biedt ondersteuning voor het lezen van X3D-bestanden." - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Biedt ondersteuning voor het lezen van modelbestanden." - -msgctxt "description" -msgid "Provides support for writing 3MF and UCP files." -msgstr "" - -msgctxt "description" -msgid "Provides support for writing MakerBot Format Packages." -msgstr "Biedt ondersteuning voor het schrijven van MakerBot-formaatpakketten." - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Deze optie biedt ondersteuning voor het schrijven van UltiMaker Format Packages." - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Biedt de Instellingen per Model." - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Biedt de röntgenweergave." - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Voorziet in de koppeling naar het slicing-back-end van de CuraEngine." - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Biedt voorbeeld van geslicete laaggegevens." - -msgctxt "@label" -msgid "PyQt version" -msgstr "PyQt version" - -msgctxt "@Label Description for application dependency" -msgid "Python Error tracking library" -msgstr "Python fouttraceringsbibliotheek" - -msgctxt "@label Description for application dependency" -msgid "Python bindings for Clipper" -msgstr "Pythonbindingen voor Clipper" - -msgctxt "@label Description for application component" -msgid "Python bindings for libnest2d" -msgstr "Pythonbindingen voor libnest2d" - -msgctxt "@label" -msgid "Qt version" -msgstr "Qt version" - -#, python-brace-format -msgctxt "@info:status" -msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." -msgstr "Kwaliteitstype '{0}' is niet compatibel met de huidige actieve machinedefinitie '{1}'." - -msgctxt "@info:title" -msgid "Queue Full" -msgstr "Wachtrij vol" - -msgctxt "@label" -msgid "Queued" -msgstr "In wachtrij" - -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "Sluit %1" - -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Hiermee leest u G-code uit een gecomprimeerd archief." +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "Sluit %1" msgctxt "@button" msgid "Recommended" @@ -3661,10 +3312,6 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "Verwisselbaar Station" -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Plug-in voor Verwijderbaar Uitvoerapparaat" - msgctxt "@action:button" msgid "Remove" msgstr "Verwijderen" @@ -3787,11 +3434,11 @@ msgstr "Cura-project opslaan" msgctxt "@option" msgid "Save Cura project and .makerbot print file" -msgstr "" +msgstr "Cura-project en .makerbot-printbestand opslaan" msgctxt "@option" msgid "Save Cura project and .ufp print file" -msgstr "" +msgstr "Cura-project en .ufp-printbestand opslaan" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3819,7 +3466,7 @@ msgstr "Bewaar nieuw profiel" msgctxt "@action:button" msgid "Save project" -msgstr "" +msgstr "Project opslaan" msgctxt "@text" msgid "Save the .umm file on a USB stick." @@ -3829,12 +3476,10 @@ msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "Opslaan op verwisselbaar station" -#, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "Opslaan op Verwisselbaar Station {0}" -#, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Opgeslagen op Verwisselbaar Station {0} als {1}" @@ -3843,7 +3488,6 @@ msgctxt "@info:title" msgid "Saving" msgstr "Opslaan" -#, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Opslaan op Verwisselbaar Station {0}" @@ -3926,15 +3570,15 @@ msgstr "Het crashrapport naar UltiMaker verzenden" msgctxt "@info:tooltip" msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." -msgstr "" +msgstr "Verzend crashrapporten met uw geregistreerde UltiMaker-accountnaam en de projectnaam naar UltiMaker Sentry. Er worden geen daadwerkelijke modelgegevens verzonden." msgctxt "@info:tooltip" msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." -msgstr "" +msgstr "Verzend crashrapporten zonder enige persoonlijk identificeerbare informatie of modelgegevens naar UltiMaker." msgctxt "@option:check" msgid "Send engine crash reports" -msgstr "" +msgstr "Verzend engine-crashrapporten" msgctxt "@action:button" msgid "Send report" @@ -3948,10 +3592,6 @@ msgctxt "@info:title" msgid "Sending materials to printer" msgstr "De materialen worden naar de printer verzonden" -msgctxt "name" -msgid "Sentry Logger" -msgstr "Sentrylogger" - msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Seriële-communicatiebibliotheek" @@ -3990,7 +3630,7 @@ msgstr "Instellingen" msgctxt "@action:label" msgid "Settings Loaded from UCP file" -msgstr "" +msgstr "Instellingen geladen uit UCP-bestand" msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" @@ -4062,7 +3702,7 @@ msgstr "Wilt u dat bestanden vanaf de desktop of externe toepassingen in dezelfd msgctxt "@info:tooltip" msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." -msgstr "" +msgstr "Moeten slicing-crashes automatisch gemeld worden aan Ultimaker? Let erop dat er geen modellen, IP-adressen of andere persoonlijk identificeerbare gegevens worden verzonden of opgeslagen, tenzij u hier expliciet toestemming voor geeft." msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" @@ -4122,7 +3762,7 @@ msgstr "Gedetailleerd crashrapport weergeven" msgctxt "@action:button" msgid "Show settings" -msgstr "" +msgstr "Instellingen weergeven" msgctxt "@option:check" msgid "Show summary dialog when saving project" @@ -4160,10 +3800,6 @@ msgctxt "@label" msgid "Sign in to the UltiMaker platform" msgstr "Meld u aan op het UltiMaker-platform" -msgctxt "name" -msgid "Simulation View" -msgstr "Simulatieweergave" - msgctxt "@tooltip" msgid "Skin" msgstr "Huid" @@ -4192,10 +3828,6 @@ msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Automatisch slicen bij wijzigen van instellingen." -msgctxt "name" -msgid "Slice info" -msgstr "Slice-informatie" - msgctxt "@message:title" msgid "Slicing failed" msgstr "Slicen mislukt" @@ -4210,24 +3842,15 @@ msgstr "Effenen" msgctxt "@label" msgid "Solid" -msgstr "" - -msgctxt "name" -msgid "Solid View" -msgstr "Solide weergave" +msgstr "Massief" msgctxt "@item:inmenu" msgid "Solid view" msgstr "Solide weergave" msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "" -"Een aantal verborgen instellingen gebruiken andere waarden dan hun normale berekende waarde.\n" -"\n" +msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." +msgstr "Een aantal verborgen instellingen gebruiken andere waarden dan hun normale berekende waarde." "Klik om deze instellingen zichtbaar te maken." msgctxt "@info:status" @@ -4243,13 +3866,8 @@ msgid "Some setting-values defined in %1 were overridden." msgstr "Sommige instelwaarden gedefinieerd in %1 zijn overschreven." msgctxt "@tooltip" -msgid "" -"Some setting/override values are different from the values stored in the profile.\n" -"\n" -"Click to open the profile manager." -msgstr "" -"Sommige waarden of aanpassingen van instellingen zijn anders dan de waarden die in het profiel zijn opgeslagen.\n" -"\n" +msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." +msgstr "Sommige waarden of aanpassingen van instellingen zijn anders dan de waarden die in het profiel zijn opgeslagen." "Klik om het profielbeheer te openen." msgctxt "@action:label" @@ -4320,10 +3938,6 @@ msgctxt "@label" msgid "Strength" msgstr "Kracht" -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Verzendt anonieme slice-informatie. Dit kan bij de voorkeuren worden uitgeschakeld." - msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "Materiaal is geëxporteerd naar %1" @@ -4332,18 +3946,17 @@ msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "Materiaal %1 is geïmporteerd" -#, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Het profiel {0} is geïmporteerd." msgctxt "@action:label" msgid "Suggested Material settings" -msgstr "" +msgstr "Gesuggereerde materiaalinstellingen" msgctxt "@action:label" msgid "Suggested Profile settings" -msgstr "" +msgstr "Gesuggereerde profielinstellingen" msgctxt "@action:title" msgid "Summary - Cura Project" @@ -4351,11 +3964,11 @@ msgstr "Samenvatting - Cura-project" msgctxt "@action:title Don't translate 'Universal Cura Project'" msgid "Summary - Open Universal Cura Project (UCP)" -msgstr "" +msgstr "Samenvatting - Open Universal Cura Project (UCP)" msgctxt "@action:title Don't translate 'Universal Cura Project'" msgid "Summary - Universal Cura Project" -msgstr "" +msgstr "Samenvatting - Universal Cura Project" msgctxt "@label" msgid "Support" @@ -4369,10 +3982,6 @@ msgctxt "@label" msgid "Support Blocker" msgstr "Supportblokkering" -msgctxt "name" -msgid "Support Eraser" -msgstr "Supportwisser" - msgctxt "@tooltip" msgid "Support Infill" msgstr "Supportvulling" @@ -4539,7 +4148,6 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "De extruder train die wordt gebruikt voor het printen van de supportstructuur. Deze optie wordt gebruikt in meervoudige doorvoer." -#, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "Het bestand {0} bestaat al. Weet u zeker dat u dit bestand wilt overschrijven?" @@ -4603,21 +4211,10 @@ msgid "The nozzle inserted in this extruder." msgstr "De nozzle die in deze extruder geplaatst is." msgctxt "@label" -msgid "" -"The pattern of the infill material of the print:\n" -"\n" -"For quick prints of non functional model choose line, zig zag or lightning infill.\n" -"\n" -"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" -"\n" -"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "" -"Het patroon van het invulmateriaal van de print:\n" -"\n" -"Voor snelle prints van een niet-functioneel model kiest u een lijn-, zigzag- of lichtvulling.\n" -"\n" -"Voor functionele onderdelen die niet aan veel spanning worden blootgesteld, raden we raster of driehoek of tri-zeshoek aan.\n" -"\n" +msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "Het patroon van het invulmateriaal van de print:" +"Voor snelle prints van een niet-functioneel model kiest u een lijn-, zigzag- of lichtvulling." +"Voor functionele onderdelen die niet aan veel spanning worden blootgesteld, raden we raster of driehoek of tri-zeshoek aan." "Gebruik kubieke, kubieke onderverdeling, kwartkubiek, octet en gyrod voor functionele 3D-prints die in meerdere richtingen een hoge sterkte vereisen." msgctxt "@info:tooltip" @@ -4738,7 +4335,7 @@ msgstr "Deze configuratie is niet beschikbaar omdat %1 niet wordt herkend. Ga na msgctxt "@text:window" msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" -msgstr "" +msgstr "Dit is een Cura Universal Projectbestand. Wilt u het als Cura project of Cura Universal Project openen of de modellen ervan importeren?" msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" @@ -4774,7 +4371,6 @@ msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "Deze printer is de host voor een groep van %1 printers." -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Dit profiel {0} bevat incorrecte gegevens. Kan het profiel niet importeren." @@ -4788,13 +4384,8 @@ msgid "This project contains materials or plugins that are currently not install msgstr "Dit project bevat materialen of plugins die momenteel niet geïnstalleerd zijn in Cura.
                                      Installeer de ontbrekende pakketten en open het project opnieuw." msgctxt "@label" -msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." -msgstr "" -"Deze instelling heeft een andere waarde dan in het profiel.\n" -"\n" +msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." +msgstr "Deze instelling heeft een andere waarde dan in het profiel." "Klik om de waarde van het profiel te herstellen." msgctxt "@item:tooltip" @@ -4812,13 +4403,8 @@ msgid "This setting is always shared between all extruders. Changing it here wil msgstr "Deze instelling wordt altijd door alle extruders gedeeld. Als u hier de instelling wijzigt, wordt de waarde voor alle extruders gewijzigd." msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "" -"Deze instelling wordt normaliter berekend, maar is nu ingesteld op een absolute waarde.\n" -"\n" +msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." +msgstr "Deze instelling wordt normaliter berekend, maar is nu ingesteld op een absolute waarde." "Klik om de berekende waarde te herstellen." msgctxt "@label" @@ -4831,11 +4417,11 @@ msgstr "Deze instelling wordt afgeleid van strijdige extruderspecifieke waarden: msgctxt "@tooltip Don't translate 'Universal Cura Project'" msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." -msgstr "" +msgstr "Deze instelling werkt mogelijk niet goed tijdens het exporteren naar Universal Cura Project. Gebruikers wordt gevraagd deze instelling op eigen risico toe te voegen." msgctxt "@tooltip Don't translate 'Universal Cura Project'" msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." -msgstr "" +msgstr "Deze instelling werkt mogelijk niet goed tijdens het exporteren naar Universal Cura Project. Gebruikers wordt gevraagd deze op eigen risico toe te voegen." msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" @@ -4853,7 +4439,6 @@ msgctxt "@text" msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." msgstr "Om de materiaalprofielen automatisch te synchroniseren met alle printers die op Digital Factory zijn aangesloten, moet u zich aanmelden bij Cura." -#, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "Ga naar {website_link} om een verbinding tot stand te brengen" @@ -4866,7 +4451,6 @@ msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." msgstr "Als u rechtstreeks via het netwerk wilt printen naar de printer, moet u ervoor zorgen dat de printer met een netwerkkabel is verbonden met het netwerk of moet u verbinding maken met de printer via het wifi-netwerk. Als u geen verbinding maakt tussen Cura en de printer, kunt u een USB-station gebruiken om G-code-bestanden naar de printer over te zetten." -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "Bezoek {digital_factory_link} om {printer_name} permanent te verwijderen" @@ -4915,10 +4499,6 @@ msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "Geprobeerd een Cura-back-up te herstellen zonder correcte gegevens of metadata." -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh-lezer" - msgctxt "@button" msgid "Troubleshooting" msgstr "Probleemoplossing" @@ -4939,22 +4519,10 @@ msgctxt "@label" msgid "Type" msgstr "Type" -msgctxt "name" -msgid "UFP Reader" -msgstr "UFP-lezer" - -msgctxt "name" -msgid "UFP Writer" -msgstr "UFP-schrijver" - msgctxt "@item:inmenu" msgid "USB printing" msgstr "USB-printen" -msgctxt "name" -msgid "USB printing" -msgstr "USB-printen" - msgctxt "@button" msgid "UltiMaker Account" msgstr "UltiMaker-account" @@ -4971,10 +4539,6 @@ msgctxt "@item:inlistbox" msgid "UltiMaker Format Package" msgstr "UltiMaker Format Package" -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "UltiMaker-netwerkverbinding" - msgctxt "@info" msgid "UltiMaker Verified Package" msgstr "Geverifieerd UltiMaker-pakket" @@ -4983,10 +4547,6 @@ msgctxt "@info" msgid "UltiMaker Verified Plug-in" msgstr "Geverifieerde UltiMaker-plug-in" -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "Acties UltiMaker-machines" - msgctxt "@button" msgid "UltiMaker printer" msgstr "UltiMaker printer" @@ -4999,10 +4559,6 @@ msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Kan het profiel niet toevoegen." @@ -5011,16 +4567,12 @@ msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Kan binnen het werkvolume niet voor alle objecten een locatie vinden" -#, python-brace-format msgctxt "@info:plugin_failed" msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" msgstr "Kan lokaal EnginePlugin-serveruitvoerbestand niet vinden voor: {self._plugin_id}" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Unable to kill running EnginePlugin: {self._plugin_id}\n" -"Access is denied." +msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." msgstr "Kan lopende EnginePlugin niet stoppen: {self._plugin_id}}Toegang is geweigerd." msgctxt "@info" @@ -5043,12 +4595,10 @@ msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "Slicen is niet mogelijk omdat de terugduwpijler of terugduwpositie(s) ongeldig zijn." -#, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "Slicen is niet mogelijk omdat er objecten gekoppeld zijn aan uitgeschakelde Extruder %s." -#, python-brace-format msgctxt "@info:status" msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" msgstr "Slicing is niet mogelijk vanwege enkele instellingen per model. De volgende instellingen bevatten fouten voor een of meer modellen: {error_labels}" @@ -5057,7 +4607,6 @@ msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "Met het huidige materiaal is slicen niet mogelijk, omdat het materiaal niet compatibel is met de geselecteerde machine of configuratie." -#, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "Met de huidige instellingen is slicing niet mogelijk. De volgende instellingen bevatten fouten: {0}" @@ -5066,10 +4615,9 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Er kan geen nieuw aanmeldingsproces worden gestart. Controleer of een andere aanmeldingspoging nog actief is." -#, python-brace-format msgctxt "@info:error" msgid "Unable to write to file: {0}" -msgstr "" +msgstr "Er kan niet worden geschreven naar bestand: {0}" msgctxt "@label:status" msgid "Unavailable" @@ -5093,11 +4641,11 @@ msgstr "Eenheid" msgctxt "@item:inlistbox" msgid "Universal Cura Project" -msgstr "" +msgstr "Universal Cura Project" msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." -msgstr "" +msgstr "Universal Cura Project-bestanden kunnen worden geprint op verschillende 3D printers met behoud van positiegegevens en geselecteerde instellingen. Bij het exporteren worden alle modellen die aanwezig zijn op de bouwplaat meegenomen, samen met hun huidige positie, oriëntatie en schaal. U kunt ook selecteren welke instellingen per extruder of per model moeten worden meegenomen om er zeker van te zijn dat de print correct wordt uitgevoerd." msgctxt "@label Description for development tool" msgid "Universal build system configuration" @@ -5119,7 +4667,6 @@ msgctxt "@label:property" msgid "Unknown Package" msgstr "Onbekend pakket" -#, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Onbekende foutcode bij uploaden printtaak: {0}" @@ -5184,265 +4731,49 @@ msgctxt "@button" msgid "Updating..." msgstr "Updaten..." -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.1 naar Cura 2.2." +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Aangepaste Firmware Uploaden" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.2 naar Cura 2.4." +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "Printtaak naar printer aan het uploaden." -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.5 naar Cura 2.6." +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "Uw back-up wordt geüpload..." -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.6 naar Cura 2.7." +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "Gebruik één instantie van Cura" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.7 naar Cura 3.0." +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "Gebruik lijm bij deze combinatie van materialen voor een betere hechting." -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.0 naar Cura 3.1." +msgctxt "@label" +msgid "User Agreement" +msgstr "Gebruikersovereenkomst" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.2 naar Cura 3.3." +msgctxt "@label Description for application dependency" +msgid "Utility functions, including an image loader" +msgstr "Gebruiksfuncties, waaronder een afbeeldinglader" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.3 naar Cura 3.4." +msgctxt "@label Description for application dependency" +msgid "Utility library, including Voronoi generation" +msgstr "Gebruiksbibliotheek, waaronder Voronoi-generatie" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.4 naar Cura 3.5." +msgctxt "@title:column" +msgid "Value" +msgstr "Waarde" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.5 naar Cura 4.0." +msgctxt "@button" +msgid "View printers in Digital Factory" +msgstr "Printers weergeven in Digital Factory" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.0 naar Cura 4.1." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.1 naar Cura 4.2." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.11 naar Cura 4.12." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.13 naar Cura 5.0." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.2 naar Cura 4.3." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.3 naar Cura 4.4." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.4 naar Cura 4.5." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.5 naar Cura 4.6." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.6.0 naar Cura 4.6.2." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.6.2 naar Cura 4.7." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.7 naar Cura 4.8." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.7 naar Cura 4.9." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.9 naar Cura 4.10." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 5.2 naar Cura 5.3." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Werkt configuraties bij van Cura 5.3 naar Cura 5.4." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Werkt configuraties bij van Cura 5.4 naar Cura 5.5." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." -msgstr "" - -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Aangepaste Firmware Uploaden" - -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Printtaak naar printer aan het uploaden." - -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Uw back-up wordt geüpload..." - -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Gebruik één instantie van Cura" - -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "Gebruik lijm bij deze combinatie van materialen voor een betere hechting." - -msgctxt "@label" -msgid "User Agreement" -msgstr "Gebruikersovereenkomst" - -msgctxt "@label Description for application dependency" -msgid "Utility functions, including an image loader" -msgstr "Gebruiksfuncties, waaronder een afbeeldinglader" - -msgctxt "@label Description for application dependency" -msgid "Utility library, including Voronoi generation" -msgstr "Gebruiksbibliotheek, waaronder Voronoi-generatie" - -msgctxt "@title:column" -msgid "Value" -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Versie-upgrade van 2.1 naar 2.2" - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Versie-upgrade van 2.2 naar 2.4" - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Versie-upgrade van 2.5 naar 2.6" - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Versie-upgrade van 2.6 naar 2.7" - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Versie-upgrade van 2.7 naar 3.0" - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Versie-upgrade van 3.0 naar 3.1" - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Versie-upgrade van 3.2 naar 3.3" - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Versie-upgrade van 3.3 naar 3.4" - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Versie-upgrade van 3.4 naar 3.5" - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Versie-upgrade van 3.5 naar 4.0" - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Versie-upgrade van 4.0 naar 4.1" - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Versie-upgrade van 4.1 naar 4.2" - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Versie-upgrade van 4.11 naar 4.12" - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Versie-upgrade 4.13 naar 5.0" - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Versie-upgrade van 4.2 naar 4.3" - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Versie-upgrade van 4.3 naar 4.4" - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Versie-upgrade van 4.4 naar 4.5" - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Versie-upgrade van 4.5 naar 4.6" - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Versie-upgrade van 4.6.0 naar 4.6.2" - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Versie-upgrade van 4.6.2 naar 4.7" - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Versie-upgrade van 4.7 naar 4.8" - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Versie-upgrade van 4.8 naar 4.9" - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Versie-upgrade 4.9 naar 4.10" - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "Versie-upgrade van 5.2 naar 5.3" - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "Versie-upgrade 5.3 naar 5.4" - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "Versie-upgrade 5.4 naar 5.5" - -msgctxt "name" -msgid "Version Upgrade 5.6 to 5.7" -msgstr "" - -msgctxt "@button" -msgid "View printers in Digital Factory" -msgstr "Printers weergeven in Digital Factory" - -msgctxt "@label" -msgid "View type" -msgstr "Type weergeven" +msgctxt "@label" +msgid "View type" +msgstr "Type weergeven" msgctxt "@label link to technical assistance" msgid "View user manuals online" @@ -5488,7 +4819,6 @@ msgctxt "@info:title" msgid "Warning" msgstr "Waarschuwing" -#, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Waarschuwing: het profiel is niet zichtbaar omdat het kwaliteitstype '{0}' van het profiel niet beschikbaar is voor de huidige configuratie. Schakel naar een materiaal-nozzle-combinatie waarvoor dit kwaliteitstype geschikt is." @@ -5515,7 +4845,7 @@ msgstr "Welke printer wilt u instellen?" msgctxt "@info:tooltip" msgid "What type of camera navigation should be used?" -msgstr "" +msgstr "Welk type cameranavigatie moet worden gebruikt?" msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" @@ -5553,14 +4883,6 @@ msgctxt "@action:label" msgid "Width (mm)" msgstr "Breedte (mm)" -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Met deze optie schrijft u G-code naar een gecomprimeerd archief." - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Met deze optie schrijft u G-code naar een bestand." - msgctxt "@label" msgid "X (Width)" msgstr "X (Breedte)" @@ -5573,10 +4895,6 @@ msgctxt "@label" msgid "X min" msgstr "X min" -msgctxt "name" -msgid "X-Ray View" -msgstr "Röntgenweergave" - msgctxt "@item:inlistbox" msgid "X-Ray view" msgstr "Röntgenweergave" @@ -5589,10 +4907,6 @@ msgctxt "@item:inlistbox" msgid "X3D File" msgstr "X3D-bestand" -msgctxt "name" -msgid "X3D Reader" -msgstr "X3D-lezer" - msgctxt "@label" msgid "Y (Depth)" msgstr "Y (Diepte)" @@ -5610,33 +4924,20 @@ msgid "Yes" msgstr "Ja" msgctxt "@label" -msgid "" -"You are about to remove all printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr "" -"U staat op het punt om alle printers uit Cura te verwijderen. Deze actie kan niet ongedaan worden gemaakt.\n" +msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgstr "U staat op het punt om alle printers uit Cura te verwijderen. Deze actie kan niet ongedaan worden gemaakt." "Weet u zeker dat u door wilt gaan?" -#, python-brace-format msgctxt "@label" -msgid "" -"You are about to remove {0} printer from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgid_plural "" -"You are about to remove {0} printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr[0] "" -"U staat op het punt om {0} printer uit Cura te verwijderen. Deze actie kan niet ongedaan worden gemaakt.\n" -"Weet u zeker dat u door wilt gaan?" -msgstr[1] "" -"U staat op het punt om {0} printers uit Cura te verwijderen. Deze actie kan niet ongedaan worden gemaakt.\n" -"Weet u zeker dat u door wilt gaan?" +msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgstr[0] "U staat op het punt om {0} printer uit Cura te verwijderen. Deze actie kan niet ongedaan worden gemaakt.\nWeet u zeker dat u door wilt gaan?" +msgstr[1] "U staat op het punt om {0} printers uit Cura te verwijderen. Deze actie kan niet ongedaan worden gemaakt.\nWeet u zeker dat u door wilt gaan?" msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "U probeert verbinding te maken met een printer waarop UltiMaker Connect niet wordt uitgevoerd. Werk de printer bij naar de nieuwste firmware." -#, python-brace-format msgctxt "@info:status" msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." msgstr "U probeert verbinding te maken met {0}, maar deze is niet de host van een groep. U kunt de webpagina bezoeken om deze als groephost te configureren." @@ -5647,9 +4948,8 @@ msgstr "U hebt momenteel geen back-ups. Gebruik de knop 'Nu back-up maken' om ee msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "" -"U hebt enkele profielinstellingen aangepast.\n" -"Wilt u deze gewijzigde instellingen behouden na het verwisselen van profielen?\n" +msgstr "U hebt enkele profielinstellingen aangepast." +"Wilt u deze gewijzigde instellingen behouden na het verwisselen van profielen?" "U kunt de wijzigingen ook verwijderen om de standaardinstellingen van '%1' te laden." msgctxt "@label" @@ -5680,13 +4980,9 @@ msgctxt "@info" msgid "Your new printer will automatically appear in Cura" msgstr "Uw nieuwe printer wordt automatisch weergegeven in Cura" -#, python-brace-format msgctxt "@info:status" -msgid "" -"Your printer {printer_name} could be connected via cloud.\n" -" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "" -"U kunt uw printer {printer_name} via de cloud verbinden.\n" +msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "U kunt uw printer {printer_name} via de cloud verbinden." " Beheer uw printerwachtrij en controleer uw prints vanaf elke plek door uw printer te verbinden met Digital Factory" msgctxt "@label" @@ -5735,7 +5031,7 @@ msgstr "mm" msgctxt "@label" msgid "s" -msgstr "" +msgstr "s" msgctxt "@info:status" msgid "today" @@ -5749,7 +5045,6 @@ msgctxt "@label" msgid "version: %1" msgstr "versie: %1" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "{printer_name} wordt verwijderd tot de volgende accountsynchronisatie." @@ -5758,21 +5053,553 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "{} plug-ins zijn niet gedownload" -#~ msgctxt "@label" -#~ msgid "Default" -#~ msgstr "Default" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Beheert netwerkverbindingen naar UltiMaker-netwerkprinters." + +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "UltiMaker-netwerkverbinding" -#~ msgid "Provides support for exporting Cura profiles." -#~ msgstr "Biedt ondersteuning voor het exporteren van Cura-profielen." +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Biedt ondersteuning voor het importeren van profielen uit G-code-bestanden." -#~ msgctxt "description" -#~ msgid "Provides support for writing 3MF files." -#~ msgstr "Biedt ondersteuning voor het schrijven van 3MF-bestanden." +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "G-code-profiellezer" -#~ msgctxt "@option" -#~ msgid "Save Cura project and print file" -#~ msgstr "Cura-project opslaan en bestand printen" +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Biedt een normale, solide rasterweergave." -#~ msgctxt "@message" -#~ msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -#~ msgstr "Slicen is mislukt door een onverwachte fout. Overweeg om de fout te melden via onze issue tracker." +msgctxt "name" +msgid "Solid View" +msgstr "Solide weergave" + +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "CuraEngine-plugin voor het geleidelijk afvlakken van de flow om grote sprongen in de flow te beperken" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Biedt ondersteuning voor het lezen van 3MF-bestanden." + +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF-lezer" + +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Hiermee accepteert u G-code en verzendt u deze code naar een printer. Via de plug-in kan tevens de firmware worden bijgewerkt." + +msgctxt "name" +msgid "USB printing" +msgstr "USB-printen" + +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Controleert op firmware-updates." + +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Firmware-updatecontrole" + +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Beheert extensies voor de toepassing en staat browsingextensies toe van de UltiMaker-website." + +msgctxt "name" +msgid "Marketplace" +msgstr "Marktplaats" + +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Een back-up maken van uw configuratie en deze herstellen." + +msgctxt "name" +msgid "Cura Backups" +msgstr "Cura-back-ups" + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Biedt een manier om de machine-instellingen (zoals bouwvolume, maat nozzle, enz.) te wijzigen." + +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Actie machine-instellingen" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.5 naar Cura 2.6." + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Versie-upgrade van 2.5 naar 2.6" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.7 naar Cura 4.8." + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Versie-upgrade van 4.7 naar 4.8" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.4 naar Cura 4.5." + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Versie-upgrade van 4.4 naar 4.5" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.0 naar Cura 3.1." + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Versie-upgrade van 3.0 naar 3.1" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.11 naar Cura 4.12." + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Versie-upgrade van 4.11 naar 4.12" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.1 naar Cura 4.2." + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Versie-upgrade van 4.1 naar 4.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.6 naar Cura 2.7." + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Versie-upgrade van 2.6 naar 2.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.6.0 naar Cura 4.6.2." + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Versie-upgrade van 4.6.0 naar 4.6.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.3 naar Cura 3.4." + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Versie-upgrade van 3.3 naar 3.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.7 naar Cura 4.9." + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Versie-upgrade van 4.8 naar 4.9" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.5 naar Cura 4.6." + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Versie-upgrade van 4.5 naar 4.6" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.2 naar Cura 4.3." + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Versie-upgrade van 4.2 naar 4.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.2 naar Cura 3.3." + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Versie-upgrade van 3.2 naar 3.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.3 naar Cura 4.4." + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Versie-upgrade van 4.3 naar 4.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "Upgrades van configuraties van Cura 5.6 naar Cura 5.7." + +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "Versie-upgrade van 5.6 naar 5.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.1 naar Cura 2.2." + +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Versie-upgrade van 2.1 naar 2.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Werkt configuraties bij van Cura 5.3 naar Cura 5.4." + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "Versie-upgrade 5.3 naar 5.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.9 naar Cura 4.10." + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Versie-upgrade 4.9 naar 4.10" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.7 naar Cura 3.0." + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Versie-upgrade van 2.7 naar 3.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.5 naar Cura 4.0." + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Versie-upgrade van 3.5 naar 4.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 5.2 naar Cura 5.3." + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Versie-upgrade van 5.2 naar 5.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.0 naar Cura 4.1." + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Versie-upgrade van 4.0 naar 4.1" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.13 naar Cura 5.0." + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Versie-upgrade 4.13 naar 5.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.4 naar Cura 3.5." + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Versie-upgrade van 3.4 naar 3.5" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.2 naar Cura 2.4." + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Versie-upgrade van 2.2 naar 2.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.6.2 naar Cura 4.7." + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Versie-upgrade van 4.6.2 naar 4.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Werkt configuraties bij van Cura 5.4 naar Cura 5.5." + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "Versie-upgrade 5.4 naar 5.5" + +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Hiermee kunt u G-code-bestanden laden en weergeven." + +msgctxt "name" +msgid "G-code Reader" +msgstr "G-code-lezer" + +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Verzendt anonieme slice-informatie. Dit kan bij de voorkeuren worden uitgeschakeld." + +msgctxt "name" +msgid "Slice info" +msgstr "Slice-informatie" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Biedt hotplug- en schrijfondersteuning voor verwisselbare stations." + +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Plug-in voor Verwijderbaar Uitvoerapparaat" + +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Hiermee maakt u een wisraster om het printen van een supportstructuur op bepaalde plekken te blokkeren" + +msgctxt "name" +msgid "Support Eraser" +msgstr "Supportwisser" + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Via deze optie controleert u de modellen en de printconfiguratie op mogelijke printproblemen en ontvangt u suggesties." + +msgctxt "name" +msgid "Model Checker" +msgstr "Modelcontrole" + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Deze optie biedt een voorbereidingsstadium in Cura." + +msgctxt "name" +msgid "Prepare Stage" +msgstr "Stadium voorbereiden" + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Biedt voorbeeld van geslicete laaggegevens." + +msgctxt "name" +msgid "Simulation View" +msgstr "Simulatieweergave" + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Biedt ondersteuning voor het lezen van AMF-bestanden." + +msgctxt "name" +msgid "AMF Reader" +msgstr "AMF-lezer" + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Biedt de röntgenweergave." + +msgctxt "name" +msgid "X-Ray View" +msgstr "Röntgenweergave" + +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Biedt machineacties voor het bijwerken van de firmware." + +msgctxt "name" +msgid "Firmware Updater" +msgstr "Firmware-updater" + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Biedt ondersteuning voor het importeren van profielen uit oudere Cura-versies." + +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Lezer voor Profielen van oudere Cura-versies" + +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Uitbreiding waarmee door de gebruiker gemaakte scripts voor nabewerking kunnen worden gebruikt" + +msgctxt "name" +msgid "Post Processing" +msgstr "Nabewerking" + +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Hiermee worden bepaalde gebeurtenissen geregistreerd, zodat deze door de crashrapportage kunnen worden gebruikt" + +msgctxt "name" +msgid "Sentry Logger" +msgstr "Sentrylogger" + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "Biedt ondersteuning voor het schrijven van MakerBot-formaatpakketten." + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "Makerbot Printbestandschrijver" + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Biedt ondersteuning bij het importeren van Cura-profielen." + +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Cura-profiellezer" + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Deze optie biedt ondersteuning voor het lezen van UltiMaker Format Packages." + +msgctxt "name" +msgid "UFP Reader" +msgstr "UFP-lezer" + +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Hiermee wordt het genereren van printbare geometrie van 2D-afbeeldingsbestanden mogelijk." + +msgctxt "name" +msgid "Image Reader" +msgstr "Afbeeldinglezer" + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Voorziet in de koppeling naar het slicing-back-end van de CuraEngine." + +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine-back-end" + +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Met deze optie schrijft u G-code naar een gecomprimeerd archief." + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Schrijver voor gecomprimeerde G-code" + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Biedt machineacties voor UltiMaker-machines (zoals wizard voor bedkalibratie, selecteren van upgrades, enz.)" + +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Acties UltiMaker-machines" + +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Hiermee leest u G-code uit een gecomprimeerd archief." + +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Lezer voor gecomprimeerde G-code" + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Deze optie biedt een voorbeeldstadium in Cura." + +msgctxt "name" +msgid "Preview Stage" +msgstr "Voorbeeldstadium" + +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Maakt verbinding met de digitale bibliotheek, zodat Cura bestanden kan openen vanuit, en bestanden kan opslaan in, de digitale bibliotheek." + +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Biedt ondersteuning voor het exporteren van Cura-profielen." + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura-profielschrijver" + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Deze optie biedt ondersteuning voor het lezen van X3D-bestanden." + +msgctxt "name" +msgid "X3D Reader" +msgstr "X3D-lezer" + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Biedt ondersteuning voor het lezen van modelbestanden." + +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh-lezer" + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Deze optie biedt een controlestadium in Cura." + +msgctxt "name" +msgid "Monitor Stage" +msgstr "Controlestadium" + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Biedt de Instellingen per Model." + +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Gereedschap voor Instellingen per Model" + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Biedt mogelijkheden om materiaalprofielen op XML-basis te lezen en te schrijven." + +msgctxt "name" +msgid "Material Profiles" +msgstr "Materiaalprofielen" + +msgctxt "description" +msgid "Provides support for writing 3MF and UCP files." +msgstr "Biedt ondersteuning voor het schrijven van 3MF- en UCP-bestanden." + +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF-schrijver" + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Deze optie biedt ondersteuning voor het schrijven van UltiMaker Format Packages." + +msgctxt "name" +msgid "UFP Writer" +msgstr "UFP-schrijver" + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Met deze optie schrijft u G-code naar een bestand." + +msgctxt "name" +msgid "G-code Writer" +msgstr "G-code-schrijver" diff --git a/resources/i18n/nl_NL/fdmextruder.def.json.po b/resources/i18n/nl_NL/fdmextruder.def.json.po index bc7be33e4d2..a4e01cd1541 100644 --- a/resources/i18n/nl_NL/fdmextruder.def.json.po +++ b/resources/i18n/nl_NL/fdmextruder.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,186 +12,114 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Hechting" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Bepaalt de diameter van het gebruikte filament. Pas deze waarde aan de diameter van het gebruikte filament aan." - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Hechting aan Platform" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diameter" - -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "Eind-g-code die wordt uitgevoerd wanneer naar een andere extruder wordt gewisseld." - msgctxt "extruder_nr label" msgid "Extruder" msgstr "Extruder" +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "De extruder train die voor het printen wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." + +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Printkoelventilator van extruder" + +msgctxt "machine_extruder_cooling_fan_number description" +msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." +msgstr "Het nummer van de bij deze extruder behorende printkoelventilator. Verander de standaardwaarde 0 alleen als u voor elke extruder een andere printkoelventilator hebt." + msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "Eind-G-code van Extruder" +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "Eind-g-code die wordt uitgevoerd wanneer naar een andere extruder wordt gewisseld." + msgctxt "machine_extruder_end_code_duration label" msgid "Extruder End G-Code Duration" -msgstr "" +msgstr "Duur einde G-Code extruder" + +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "De tijd die nodig is om de g-code aan het einde uit te voeren, wanneer er overgeschakeld wordt van deze extruder." msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Absolute Eindpositie Extruder" +msgctxt "machine_extruder_end_pos_abs description" +msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." +msgstr "Maak van de eindpositie van de extruder de absolute eindpositie, in plaats van de relatieve eindpositie ten opzichte van de laatst bekende locatie van de printkop." + msgctxt "machine_extruder_end_pos_x label" msgid "Extruder End Position X" msgstr "X-eindpositie Extruder" +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "De X-coördinaat van de eindpositie wanneer de extruder wordt uitgeschakeld." + msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Y-eindpositie Extruder" -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "X-positie voor Primen Extruder" - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Y-positie voor Primen Extruder" - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Z-positie voor Primen Extruder" - -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Printkoelventilator van extruder" +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "De Y-coördinaat van de eindpositie wanneer de extruder wordt uitgeschakeld." msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "Start-G-code van Extruder" +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "Start-g-code die wordt uitgevoerd wanneer naar deze extruder wordt gewisseld." + msgctxt "machine_extruder_start_code_duration label" msgid "Extruder Start G-Code Duration" -msgstr "" +msgstr "Duur start G-Code extruder" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "De tijd die nodig is om de start g-code uit te voeren, wanneer er wordt overgeschakeld naar deze extruder." msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Absolute Startpositie Extruder" +msgctxt "machine_extruder_start_pos_abs description" +msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." +msgstr "Maak van de startpositie van de extruder de absolute startpositie, in plaats van de relatieve startpositie ten opzichte van de laatst bekende locatie van de printkop." + msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "X-startpositie Extruder" +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "De X-coördinaat van de startpositie wanneer de extruder wordt ingeschakeld." + msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "Y-startpositie Extruder" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Machine" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Instellingen van de machine" - -msgctxt "machine_extruder_end_pos_abs description" -msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." -msgstr "Maak van de eindpositie van de extruder de absolute eindpositie, in plaats van de relatieve eindpositie ten opzichte van de laatst bekende locatie van de printkop." - -msgctxt "machine_extruder_start_pos_abs description" -msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." -msgstr "Maak van de startpositie van de extruder de absolute startpositie, in plaats van de relatieve startpositie ten opzichte van de laatst bekende locatie van de printkop." - -msgctxt "material description" -msgid "Material" -msgstr "Materiaal" - -msgctxt "material label" -msgid "Material" -msgstr "Materiaal" - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Nozzlediameter" - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Nozzle-ID" +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "De Y-coördinaat van de startpositie wanneer de extruder wordt ingeschakeld." msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "X-Offset Nozzle" -msgctxt "machine_nozzle_offset_y label" -msgid "Nozzle Y Offset" -msgstr "Y-Offset Nozzle" - -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "Start-g-code die wordt uitgevoerd wanneer naar deze extruder wordt gewisseld." - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "De X-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen." - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "De Y-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen." - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "De Z-coördinaat van de positie waar filament in de nozzle wordt teruggeduwd aan het begin van het printen." - -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "De extruder train die voor het printen wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "De binnendiameter van de nozzle. Verander deze instelling wanneer u een nozzle gebruikt die geen standaard formaat heeft." - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "De nozzle-ID voor een extruder train, bijvoorbeeld \"AA 0.4\" en \"BB 0.8\"." - -msgctxt "machine_extruder_cooling_fan_number description" -msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." -msgstr "Het nummer van de bij deze extruder behorende printkoelventilator. Verander de standaardwaarde 0 alleen als u voor elke extruder een andere printkoelventilator hebt." - -msgctxt "machine_extruder_end_code_duration description" -msgid "The time it takes to execute the end g-code, when switching away from this extruder." -msgstr "" - -msgctxt "machine_extruder_start_code_duration description" -msgid "The time it'll take to execute the start g-code, when switching to this extruder." -msgstr "" - -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "De X-coördinaat van de eindpositie wanneer de extruder wordt uitgeschakeld." - msgctxt "machine_nozzle_offset_x description" msgid "The x-coordinate of the offset of the nozzle." msgstr "De X-coördinaat van de offset van de nozzle." -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "De X-coördinaat van de startpositie wanneer de extruder wordt ingeschakeld." - -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "De Y-coördinaat van de eindpositie wanneer de extruder wordt uitgeschakeld." +msgctxt "machine_nozzle_offset_y label" +msgid "Nozzle Y Offset" +msgstr "Y-Offset Nozzle" msgctxt "machine_nozzle_offset_y description" msgid "The y-coordinate of the offset of the nozzle." msgstr "De Y-coördinaat van de offset van de nozzle." - -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "De Y-coördinaat van de startpositie wanneer de extruder wordt ingeschakeld." diff --git a/resources/i18n/nl_NL/fdmprinter.def.json.po b/resources/i18n/nl_NL/fdmprinter.def.json.po index fc48cceed67..26aebbe9ae5 100644 --- a/resources/i18n/nl_NL/fdmprinter.def.json.po +++ b/resources/i18n/nl_NL/fdmprinter.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-12 15:10+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,5772 +12,5682 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "prime_tower_mode description" -msgid "How to generate the prime tower:
                                      • Normal: create a bucket in which secondary materials are primed
                                      • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
                                      " -msgstr "" - -msgctxt "brim_inside_margin description" -msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." -msgstr "" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Machine" -msgctxt "ironing_inset description" -msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." -msgstr "De afstand die moet worden aangehouden tot de randen van het model. Strijken tot de rand van het raster kan leiden tot een gerafelde rand van de print." +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Instellingen van de machine" -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "Een factor die aangeeft hoeveel het filament wordt samengedrukt tussen de feeder en de nozzlekamer, om te bepalen hoe ver het materiaal moet worden verplaatst voor het verwisselen van filament." +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Type Machine" -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt wanneer voor de bovenste skinlagen een lijn- of zigzagpatroon wordt gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst is bereikt, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de traditionele standaardhoeken (45 en 135 graden) worden gebruikt." +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "De naam van uw 3D-printermodel." -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt wanneer voor de boven-/onderlagen een lijn- of zigzagpatroon wordt gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst bereikt is, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de traditionele standaardhoeken (45 en 135 graden) worden gebruikt." +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Machinevarianten tonen" -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst bereikt is, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de standaardhoek van 0 graden wordt gebruikt." +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "Hiermee bepaalt u of verschillende varianten van deze machine worden getoond. Deze worden beschreven in afzonderlijke json-bestanden." -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst bereikt is, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de standaardhoeken (variërend tussen 45 en 135 graden als interfaces vrij dik of 90 graden zijn) worden gebruikt." +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "Start G-code" -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst bereikt is, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de standaardhoeken (variërend tussen 45 en 135 graden als interfaces vrij dik of 90 graden zijn) worden gebruikt." +msgctxt "machine_start_gcode description" +msgid "G-code commands to be executed at the very start - separated by \n." +msgstr "G-code-opdrachten die aan het begin worden uitgevoerd, gescheiden door " +"." -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst bereikt is, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de standaardhoeken (variërend tussen 45 en 135 graden als interfaces vrij dik of 90 graden zijn) worden gebruikt." +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "Eind G-code" -msgctxt "infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." -msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst bereikt is, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de traditionele standaardhoeken (45 en 135 graden voor het lijn- en zigzagpatroon en 45 voor alle andere patronen) worden gebruikt." +msgctxt "machine_end_gcode description" +msgid "G-code commands to be executed at the very end - separated by \n." +msgstr "G-code-opdrachten die aan het eind worden uitgevoerd, gescheiden door " +"." -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "Een lijst polygonen met gebieden waarin de nozzle niet mag komen." +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "Materiaal-GUID" -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "Een lijst polygonen met gebieden waarin de printkop niet mag komen." +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "GUID van het materiaal. Deze optie wordt automatisch ingesteld." -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "Een aanbeveling over hoe ver takken kunnen bewegen van de punten die ze ondersteunen. Takken kunnen deze waarde overschrijden om hun bestemming te bereiken (bouwplaat of een plat deel van het model). Als u deze waarde verlaagt, wordt de ondersteuning steviger, maar neemt het aantal takken toe (en daardoor materiaalgebruik/printtijd)." +msgctxt "material_type label" +msgid "Material Type" +msgstr "Materiaaltype" -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Absolute Positie voor Primen Extruder" +msgctxt "material_type description" +msgid "The type of material used." +msgstr "Het type materiaal dat gebruikt wordt." -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Maximale variatie adaptieve lagen" +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "Materiaalmerk" -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Topografieformaat aanpasbare lagen" +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "Het merk van het materiaal dat gebruikt wordt." -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Stapgrootte variatie adaptieve lagen" +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diameter" -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "Met adaptieve lagen berekent u de laaghoogte afhankelijk van de vorm van het model." +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Bepaalt de diameter van het gebruikte filament. Pas deze waarde aan de diameter van het gebruikte filament aan." -msgctxt "infill_wall_line_count description" -msgid "" -"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" -"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "" -"Voeg extra wanden toe rondom de vulling. Deze wanden kunnen ervoor zorgen dat de skin aan de boven-/onderkant minder doorzakt. Dit betekent dat u met alleen wat extra materiaal voor dezelfde kwaliteit minder skinlagen aan de boven-/onderkant nodig hebt.\n" -"Deze optie kan in combinatie met de optie 'Polygonen voor de vulling verbinden' worden gebruikt om alle vulling in één doorvoerpad te verbinden zonder extra bewegingen of intrekkingen, mits correct ingesteld." +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Wachten op verwarmen van platform" -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Hechting" +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "Hiermee bepaalt u of de opdracht moet worden ingevoegd dat bij aanvang moet worden gewacht totdat het platform op temperatuur is." -msgctxt "material_adhesion_tendency label" -msgid "Adhesion Tendency" -msgstr "Hechtingsgevoeligheid" +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Wachten op verwarmen van nozzle" -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Pas de mate van overlap tussen de wanden en (de eindpunten van) de skin-middellijnen aan, als percentage van de lijnbreedtes van de skin-lijnen en de binnenste wand. Met een lichte overlap kunnen de wanden goed hechten aan de skin. Houd er rekening mee dat met een gelijke lijnbreedte voor skin en wand, skin buiten de wand kan treden bij een percentage hoger dan 50%, omdat de nozzle van de skin-extruder op deze positie al voorbij het midden van de wand kan zijn." +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "Hiermee bepaalt u of bij aanvang moet worden gewacht totdat de nozzle op temperatuur is." -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Pas de mate van overlap tussen de wanden en (de eindpunten van) de skin-middellijnen aan. Met een lichte overlap kunnen de wanden goed hechten aan de skin. Houd er rekening mee dat met een gelijke lijnbreedte voor skin en wand, skin buiten de wand kan treden bij een waarde groter dan de halve wandbreedte, omdat de nozzle van de skin-extruder op deze positie het midden van de wand al kan hebben bereikt." +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Materiaaltemperatuur invoegen" -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Past de vuldichtheid van de print aan." +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "Hiermee bepaalt u of aan het begin van de G-code opdrachten voor de nozzletemperatuur moeten worden ingevoegd. Wanneer de start-g-code al opdrachten voor de nozzletemperatuur bevat, wordt deze instelling automatisch uitgeschakeld door de Cura-frontend." -msgctxt "support_interface_density description" -msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Past de dichtheid van de daken en vloeren van de supportstructuur aan. Met een hogere waarde krijgt u een betere overhang, maar is de supportstructuur moeilijker te verwijderen." +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Platformtemperatuur invoegen" -msgctxt "support_tree_top_rate description" -msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "Hiermee past u de dichtheid aan van de ondersteunende structuur die wordt gebruikt om de tips van de takken te genereren. Een hogere waarde resulteert in een betere overhang, maar de ondersteuning is moeilijker te verwijderen. Gebruik ondersteunend dak voor zeer hoge waarden of zorg ervoor dat de ondersteuningsdichtheid aan de bovenkant even hoog is." +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "Hiermee bepaalt u of aan het begin van de G-code opdrachten voor de platformtemperatuur moeten worden ingevoegd. Wanneer de start-g-code al opdrachten voor de platformtemperatuur bevat, wordt deze instelling automatisch uitgeschakeld door de Cura-frontend." -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Past de dichtheid van de supportstructuur aan. Met een hogere waarde krijgt u een betere overhang, maar is de supportstructuur moeilijker te verwijderen." +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Machinebreedte" -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Bepaalt de diameter van het gebruikte filament. Pas deze waarde aan de diameter van het gebruikte filament aan." +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "De breedte (X-richting) van het printbare gebied." -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "Past de plaatsing van de supportstructuur aan. De plaatsing kan worden ingesteld op Platform aanraken of Overal. Wanneer deze optie ingesteld is op Overal, worden de supportstructuren ook op het model geprint." +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Machinediepte" -msgctxt "prime_tower_wipe_enabled description" -msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." -msgstr "Veeg na het printen van de primepijler met één nozzle het doorgevoerde materiaal van de andere nozzle af aan de primepijler." +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "De diepte (Y-richting) van het printbare gebied." -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "Nadat de machine van de ene extruder naar de andere is gewisseld, wordt het platform omlaag gebracht om ruimte te creëren tussen de nozzle en de print. Hiermee wordt voorkomen dat de nozzle doorgevoerd materiaal achterlaat op de buitenzijde van een print." +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Machinehoogte" -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Alles" +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "De hoogte (Z-richting) van het printbare gebied." -msgctxt "print_sequence option all_at_once" -msgid "All at Once" -msgstr "Alles Tegelijk" +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Vorm van het platform" -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "Alle instellingen die invloed hebben op de resolutie van de print. Deze instellingen hebben een grote invloed op de kwaliteit (en printtijd)." +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "De vorm van het platform zonder rekening te houden met niet-printbare gebieden." -msgctxt "user_defined_print_order_enabled description" -msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." -msgstr "" +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Rechthoekig" -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Afwisselend Extra Wand" +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Ovaal" -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Verwijderen van afwisselend raster" +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Materiaal van het platform" -msgctxt "material_alternate_walls label" -msgid "Alternate Wall Directions" -msgstr "Alternerende wandrichtingen" +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "Het materiaal van het platform dat in de printer geïnstalleerd is." -msgctxt "material_alternate_walls description" -msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." -msgstr "Alternerende wandrichtingen na elke laag en instroming. Nuttig voor materialen die spanning op kunnen bouwen, bijvoorbeeld voor het printen van metaal." +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Glas" msgctxt "machine_buildplate_type option aluminum" msgid "Aluminum" msgstr "Aluminium" +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Heeft verwarmd platform" + +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "Hiermee geeft u aan of een verwarmd platform aanwezig is." + +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "Heeft temperatuurstabilisatie van werkvolume" + +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "Of de machine in staat is de temperatuur van het werkvolume te stabiliseren." + msgctxt "machine_always_write_active_tool label" msgid "Always Write Active Tool" msgstr "Tool voor altijd actief schrijven" -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "Altijd intrekken voordat wordt bewogen om met een buitenwand te beginnen." - -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "De mate van offset die wordt toegepast op alle polygonen in elke laag. Met positieve waarden compenseert u te grote gaten, met negatieve waarden compenseert u te kleine gaten." +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "Tool voor actief schrijven na het verzenden van tijdelijke opdrachten naar inactieve tool. Vereist voor afdrukken met dubbele extruder met Smoothie of andere firmware met modale toolopdrachten." -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "De mate van offset die wordt toegepast op alle polygonen in de eerste laag. Met negatieve waarden compenseert u het samenpersen van de eerste laag, ook wel 'olifantenpoot' genoemd." - -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "De mate van offset die wordt toegepast op alle steunpolygonen in elke laag. Met positieve waarden kunt u de draagvlakken effenen en krijgt u een stevigere supportstructuur." - -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "De mate van offset die wordt toegepast op de supportvloeren." - -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "De mate van offset die wordt toegepast op de supportdaken." - -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "De mate van offset die wordt toegepast op de verbindingspolygonen." - -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "Volume filament dat moet worden ingetrokken om te voorkomen dat filament verloren gaat tijdens het afvegen." - -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "Een aanvulling op de straal vanuit het midden van elk blok om de rand van het model te detecteren, om te bepalen of het blok moet worden onderverdeeld. Een hogere waarde leidt tot een dikkere shell voor kleine blokken bij de rand van het model." - -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Raster tegen overhang" - -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Intrekpositie voor niet-uitlopen" - -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Intreksnelheid voor niet-uitlopen" - -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "Pas de extruderoffset toe op het coördinatensysteem. Van toepassing op alle extruders." - -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "Genereer op de plaatsen waar modellen elkaar raken een in elkaar grijpende balkstructuur. Dit verbetert de hechting tussen modellen, vooral modellen die in verschillende materialen zijn geprint." - -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Geprinte delen mijden tijdens bewegingen" - -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Supportstructuren mijden tijdens bewegingen" - -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Achter" - -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Linksachter" - -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Rechtsachter" - -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Beide" - -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "Beide overlappen" - -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Bodemlagen" - -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Eerste laag patroon onderkant" - -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Uitbreidingsafstand van onderste skinlaag" - -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Verwijderingsbreedte onderste skinlaag" - -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Bodemdikte" - -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "Takdichtheid" - -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "Takdiameter" - -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "Hoek takdiameter" - -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Intrekpositie voor voorbereiding van afbreken" - -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Intreksnelheid voor voorbereiding van afbreken" - -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Temperatuur voor voorbereiding van afbreken" - -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Intrekpositie voor afbreken" - -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Intreksnelheid voor afbreken" - -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Temperatuur voor afbreken" - -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Supportstructuur in Stukken Breken" - -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Ventilatorsnelheid brug" - -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Brug heeft meerdere lagen" - -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Dichtheid tweede brugskin" - -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Ventilatorsnelheid tweede brugskin" - -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Doorvoer tweede brugskin" - -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Snelheid tweede brugskin" - -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Dichtheid brugskin" - -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Doorvoer brugskin" - -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Snelheid brugskin" - -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Drempelwaarde voor brugskinsupport" - -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Maximale dichtheid van dunne vulling brugskin" - -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Dichtheid derde brugskin" - -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Ventilatorsnelheid derde brugskin" - -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Doorvoer derde brugskin" - -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Snelheid derde brugskin" - -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Coasting brugwand" - -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Doorvoer brugwand" - -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Snelheid brugwand" - -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Brim" - -msgctxt "brim_inside_margin label" -msgid "Brim Avoid Margin" -msgstr "" - -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Brimafstand" - -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Aantal Brimlijnen" - -msgctxt "brim_location label" -msgid "Brim Location" -msgstr "" - -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Brim vervangt supportstructuur" - -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Breedte Brim" - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Hechting aan Platform" - -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Extruder Hechting aan Platform" - -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Type Hechting aan Platform" - -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Materiaal van het platform" - -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Vorm van het platform" - -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Platformtemperatuur" - -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Platformtemperatuur voor de eerste laag" - -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Temperatuur werkvolume" - -msgctxt "bv_temp_anomaly_limit label" -msgid "Build Volume temperature Limit" -msgstr "" - -msgctxt "bv_temp_warn_limit label" -msgid "Build Volume temperature Warning" -msgstr "" - -msgctxt "prime_tower_brim_enable description" -msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "Door deze instelling in te schakelen, krijgt uw prime toren een brim, zelfs als het model dat niet heeft. Als u een stevigere basis wilt voor een hoge toren, kunt u de basis hoogte verhogen." - -msgctxt "center_object label" -msgid "Center Object" -msgstr "Object centreren" - -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "Verander de geometrie van het geprinte model dusdanig dat minimale support is vereist. Een steile overhang wordt een vlakke overhang. Overhangende gedeelten worden verlaagd zodat deze meer verticaal komen te staan." - -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "Kiest tussen de beschikbare technieken om support te genereren. \"Normale\" support creëert een supportstructuur direct onder de overhangende delen en laat die gebieden recht naar beneden vallen. \"Boom\"-support creëert takken naar de overhangende gebieden die het model op de toppen van die takken ondersteunen, en laat de takken rond het model kruipen om het zoveel mogelijk vanaf het platform te ondersteunen." - -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Coasting-snelheid" - -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Coasting-volume" - -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "Met coasting wordt het laatste gedeelte van een doorvoerpad vervangen door een beweging. Het doorgevoerde materiaal wordt gebruikt om het laatste gedeelte van het doorvoerpad te printen, om draadvorming te verminderen." - -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Combing-modus" - -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "Met combing blijft de nozzle tijdens bewegingen binnen eerder geprinte delen. Hierdoor zijn de bewegingen iets langer, maar hoeft het filament minder vaak te worden ingetrokken. Als combing is uitgeschakeld, wordt het materiaal ingetrokken en beweegt de nozzle in een rechte lijn naar het volgende punt. Het is ook mogelijk om combing over boven-/onderskingedeelten te voorkomen of combing alleen binnen de vulling te gebruiken." - -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Instellingen opdrachtregel" - -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Concentrisch" - -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Concentrisch" +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "Is oorsprongpunt centraal" -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Concentrisch" +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "Hiermee geeft u aan of de X/Y-coördinaten van de nul-positie van de printer zich in het midden van het printbare gebied bevinden." -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concentrisch" +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Aantal extruders" -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Concentrisch" +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "Aantal extruder trains. Een extruder train is de combinatie van een feeder, Bowden-buis en nozzle." -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Concentrisch" +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Aantal ingeschakelde extruders" -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Concentrisch" +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "Het aantal extruder trains dat ingeschakeld is; automatisch ingesteld in de software" -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concentrisch" +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Buitendiameter nozzle" -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Concentrisch" +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "De buitendiameter van de punt van de nozzle." -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Hoek Conische Supportstructuur" +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Nozzlelengte" -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Minimale Breedte Conische Supportstructuur" +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "Het hoogteverschil tussen de punt van de nozzle en het laagste deel van de printkop." -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Vullijnen verbinden" +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Nozzlehoek" -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Vulpolygonen Verbinden" +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "De hoek tussen het horizontale vlak en het conische gedeelte boven de punt van de nozzle." -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Supportstructuurlijnen verbinden" +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Lengte verwarmingszone" -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Zigzaglijnen Supportstructuur Verbinden" +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "De afstand tussen de punt van de nozzle waarin de warmte uit de nozzle wordt overgedragen aan het filament." -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Boven-/onderkant Polygonen Verbinden" +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Regulering van de nozzletemperatuur inschakelen" -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "Vulpaden verbinden waar ze naast elkaar lopen. Bij vulpatronen die uit meerdere gesloten polygonen bestaan, wordt met deze instelling de bewegingstijd aanzienlijk verkort." +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "Hiermee geeft u aan of u de temperatuur wilt reguleren vanuit Cura. Schakel deze optie uit als u de nozzletemperatuur buiten Cura om wilt reguleren." -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "Verbind de zigzaglijnen. Hiermee versterkt u de zigzag-supportstructuur." +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Verwarmingssnelheid" -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "Verbind de uiteinden van de supportstructuurlijnen met elkaar. Als u deze instelling inschakelt, maakt u de supportstructuur robuuster en vermindert u onderextrusie. Er wordt echter meer materiaal verbruikt." +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "De snelheid (°C/s) waarmee de nozzle wordt verwarmd, gemiddeld over het venster van normale printtemperaturen en de stand-bytemperatuur." -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "Verbindt de uiteinden waar het vulpatroon bij de binnenwand komt, met een lijn die de vorm van de binnenwand volgt. Als u deze instelling inschakelt, kan de vulling beter hechten aan de wanden en wordt de invloed van de vulling op de kwaliteit van de verticale oppervlakken kleiner. Als u deze instelling uitschakelt, wordt er minder materiaal gebruikt." +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Afkoelsnelheid" -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "Verbind skinpaden aan de boven-/onderkant waar ze naast elkaar lopen. Met deze instelling wordt bij concentrische patronen de bewegingstijd aanzienlijk verkort. Dit kan echter ten koste gaan van de kwaliteit van de bovenste laag aangezien de verbindingen in het midden van de vulling kunnen komen te liggen." +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "De snelheid (°C/s) waarmee de nozzle afkoelt, gemiddeld over het venster van normale printtemperaturen en de stand-bytemperatuur." -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "Instellen of hoeken in het model invloed hebben op de positie van de naad. Geen wil zeggen dat hoeken geen invloed hebben op de positie van de naad. Met Naad Verbergen is de kans groter dat de naad op een binnenhoek komt. Met Naad Zichtbaar Maken is de kans groter dat de naad op een buitenhoek komt. Met Naad Verbergen of Naad Zichtbaar Maken is de kans groter dat de naad op een binnen- of buitenhoek komt. Met Slim Verbergen zijn zowel binnen- als buitenhoeken mogelijk, maar wordt er vaker (indien van toepassing) gebruikgemaakt van binnenhoeken." +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Minimale tijd stand-bytemperatuur" -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "Zet elke vullijn om naar zoveel keer vullijnen. De extra lijnen kruisen elkaar niet, maar mijden elkaar. Hierdoor wordt de vulling stijver, maar duurt het printen langer en wordt er meer materiaal verbruikt." +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "De minimale tijd die een extruder inactief moet zijn, voordat de nozzle wordt afgekoeld. Alleen als een extruder gedurende langer dan deze tijd niet wordt gebruikt, wordt deze afgekoeld naar de stand-bytemperatuur." -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Afkoelsnelheid" +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "Versie G-code" -msgctxt "cooling description" -msgid "Cooling" -msgstr "Koelen" +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "De G-code-versie die moet worden gegenereerd." -msgctxt "cooling label" -msgid "Cooling" -msgstr "Koelen" +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Kruis" +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volumetrisch)" -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Kruis" +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "Kruis 3D" +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Luchtbelgrootte bij Kruis 3D" +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Dichtheid kruisvulling afbeelding voor supportstructuur" +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Dichtheid kruisvulling afbeelding" +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Kristallijnmateriaal" +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Kubisch" +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Kubische onderverdeling" +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Intrekken via firmware" -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Kubische onderverdeling shell" +msgctxt "machine_firmware_retract description" +msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." +msgstr "Hiermee bepaalt u of u voor het intrekken van materiaal firmwareopdrachten voor intrekken (G10/G11) gebruikt in plaats van de eigenschap E in G1-opdrachten." -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Snijdend raster" +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Extruders delen verwarming" -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "Grafiek om de materiaaldoorvoer (in mm3 per seconde) te koppelen aan de temperatuur (graden Celsius)." +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "Hiermee bepaalt u of de extruders één verwarming delen in plaats van dat elke extruder zijn eigen verwarming heeft." -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Standaardacceleratie" +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Extruders delen nozzle" -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Standaardtemperatuur platform" +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "Hiermee bepaalt u of de extruders één nozzle delen in plaats van dat elke extruder zijn eigen nozzle heeft. Wanneer dit wordt ingesteld op 'true', wordt verwacht dat het G-code-script voor het opstarten van de printer alle extruders correct instelt in een initiële intrekstatus die bekend is en onderling compatibel is (nul of één filament niet ingetrokken). In dat geval wordt de initiële intrekstatus per extruder beschreven door de parameter 'machine_extruders_shared_nozzle_initial_retraction'." -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Standaard Filamentschok" +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Initiële terugtrekking gedeelde nozzle" -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Standaard printtemperatuur" +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "Hoever het filament van elke extruder geacht wordt te zijn ingetrokken vanuit de gedeelde nozzle als het G-code-script voor het opstarten van de printer is uitgevoerd. De waarde mag niet gelijk zijn aan of groter zijn dan de lengte van het gemeenschappelijke deel van de kanalen in de nozzle." -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Standaard X-/Y-schok" +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Verboden gebieden" -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Standaard Z-schok" +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "Een lijst polygonen met gebieden waarin de printkop niet mag komen." -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "De standaardschok voor beweging in het horizontale vlak." +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Verboden gebieden voor de nozzle" -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "De standaardschok voor de motor in de Z-richting." +msgctxt "nozzle_disallowed_areas description" +msgid "A list of polygons with areas the nozzle is not allowed to enter." +msgstr "Een lijst polygonen met gebieden waarin de nozzle niet mag komen." -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "De standaardschok voor de motor voor het filament." +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Machinekop- en ventilatorpolygoon" -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "Hiermee detecteert u bruggen en past u de instellingen voor de printsnelheid, doorvoer en ventilator aan tijdens het printen van bruggen." +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "De vorm van de printkop. Deze coördinaten hebben betrekking op de positie van de printkop. Meestal is dit de positie van de eerste extruder. De dimensies links van en vóór de printkop moeten negatieve coördinaten zijn." -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "Bepaalt de volgorde waarin de wanden worden geprint. Wanneer u de buitenwanden het eerst print, bevordert u de nauwkeurigheid van de afmetingen, omdat fouten in de binnenwanden niet worden overgedragen op de buitenzijde. Door ze later te printen kunt u echter beter stapelen wanneer de overhangs worden geprint. Bij een oneven aantal binnenwanden wordt de 'middelste laatste lijn' altijd als laatste afgedrukt." +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Rijbrughoogte" -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "Bepaalt de prioriteit van dit raster bij meerdere overlappende vulrasters. Gebieden met meerdere overlappende vulrasters krijgen de instellingen van het vulraster met de hoogste rang. Bij een vulraster met een hogere rang wordt de vulling van vulrasters met een lagere rang en normale rasters aangepast." +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "Het hoogteverschil tussen de punt van de nozzle en het rijbrugsysteem (X- en Y-as)." -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "Bepaalt wanneer een bliksemvullaag iets moet ondersteunen dat zich boven de vullaag bevindt. Gemeten in de hoek bepaald door de laagdikte." +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Nozzle-ID" -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "Bepaalt wanneer een bliksemvullaag het model boven de laag moet ondersteunen. Gemeten in de hoek bepaald door de laagdikte." +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "De nozzle-ID voor een extruder train, bijvoorbeeld \"AA 0.4\" en \"BB 0.8\"." -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diameter" +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Nozzlediameter" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "Diameterverhoging naar model" +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "De binnendiameter van de nozzle. Verander deze instelling wanneer u een nozzle gebruikt die geen standaard formaat heeft." -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "Diameter elke tak probeert te bereiken bij het bereiken van de bouwplaat. Verbetert de hechting van het bed." +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Offset met extruder" -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "Er zijn verschillende opties die u helpen zowel de voorbereiding van de doorvoer als de hechting aan het platform te verbeteren. Met de optie Brim legt u in de eerste laag extra materiaal rondom de voet van het model om vervorming te voorkomen. Met de optie Raft legt u een dik raster met een dak onder het model. Met de optie Skirt print u rond het model een lijn die niet met het model is verbonden." +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "Pas de extruderoffset toe op het coördinatensysteem. Van toepassing op alle extruders." -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Verboden gebieden" +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Z-positie voor Primen Extruder" -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "De afstand tussen de geprinte vullijnen. Deze instelling wordt berekend op basis van de dichtheid van de vulling en de lijnbreedte van de vulling." +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "De Z-coördinaat van de positie waar filament in de nozzle wordt teruggeduwd aan het begin van het printen." -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "Afstand tussen de lijnen van de supportstructuur voor de eerste laag. Deze wordt berekend op basis van de dichtheid van de supportstructuur." +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "Absolute Positie voor Primen Extruder" -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "De afstand tussen de geprinte lijnen van de supportvloer. Deze instelling wordt berekend op basis van de dichtheid van de supportvloer, maar kan onafhankelijk worden aangepast." +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "Maak van de primepositie van de extruder de absolute positie, in plaats van de relatieve positie ten opzichte van de laatst bekende locatie van de printkop." -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "De afstand tussen de geprinte lijnen van het supportdak. Deze instelling wordt berekend op basis van de dichtheid van het supportdak, maar kan onafhankelijk worden aangepast." +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Maximale Snelheid X" -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "De afstand tussen de geprinte lijnen van de supportstructuur. Deze instelling wordt berekend op basis van de dichtheid van de supportstructuur." +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "De maximale snelheid van de motor in de X-richting." -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." -msgstr "Afstand van de print tot de onderkant van de ondersteuning. Let op dat dit wordt afgerond naar de volgende laaghoogte." +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Maximale Snelheid Y" -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "De afstand van de bovenkant van de supportstructuur tot de print." +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "De maximale snelheid van de motor in de Y-richting." -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." -msgstr "Afstand van de boven-/onderkant van de ondersteuningsstructuur tot de print. Deze opening zorgt voor ruimte om de ondersteuningen te verwijderen nadat het model is geprint. De bovenste ondersteuningslaag onder het model kan een fractie zijn van de normale lagen." +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Maximale Snelheid Z" -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "De afstand voor een beweging die na het printen van elke vullijn wordt ingevoegd, om ervoor te zorgen dat de vulling beter aan de wanden hecht. Deze optie lijkt op de optie voor overlap van vulling. Tijdens deze beweging is er echter geen doorvoer en de beweging vindt maar aan één uiteinde van de vullijn plaats." +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "De maximale snelheid van de motor in de Z-richting." -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "Afstand van een beweging die ingevoegd is na de buitenwand, om de Z-naad beter te maskeren." +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Maximale Snelheid E" -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "De afstand tussen het tochtscherm en de print, in de X- en Y-richting." +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "De maximale snelheid voor de doorvoer van het filament." -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "De afstand tussen het uitloopscherm en de print, in de X- en Y-richting." +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Maximale Acceleratie X" -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "Afstand tussen de supportstructuur en de overhang in de X- en Y-richting." +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "De maximale acceleratie van de motor in de X-richting" -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "Afstand tussen de supportstructuur en de print, in de X- en Y-richting." +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Maximale Acceleratie Y" -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Afstandspunten worden verschoven om het pad vloeiend te maken" +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "De maximale acceleratie van de motor in de Y-richting." -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Afstandspunten worden verschoven om het pad vloeiend te maken" +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Maximale Acceleratie Z" -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "Genereer geen gebieden met vulling die kleiner zijn dan deze waarde (gebruik in plaats daarvan een skin)." +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "De maximale acceleratie van de motor in de Z-richting." -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Hoogte Tochtscherm" +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Maximale Filamentacceleratie" -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Beperking Tochtscherm" +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "De maximale acceleratie van de motor van het filament." -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Tochtscherm X-/Y-afstand" +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Standaardacceleratie" -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Supportraster verlagen" +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "De standaardacceleratie van de printkopbeweging." -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Dubbele Doorvoer" +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Standaard X-/Y-schok" -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Ovaal" +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "De standaardschok voor beweging in het horizontale vlak." -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Acceleratieregulering Inschakelen" +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Standaard Z-schok" -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Bruginstellingen inschakelen" +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "De standaardschok voor de motor in de Z-richting." -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Coasting Inschakelen" +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Standaard Filamentschok" + +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "De standaardschok voor de motor voor het filament." -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Conische supportstructuur inschakelen" +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Stappen per millimeter (X)" -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Tochtscherm Inschakelen" +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "Hoeveel stappen van de stappenmotor nodig zijn voor een verplaatsing van één millimeter in de X-richting." -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "Vloeiende beweging inschakelen" +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Stappen per millimeter (Y)" -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Strijken inschakelen" +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "Hoeveel stappen van de stappenmotor nodig zijn voor een verplaatsing van één millimeter in de Y-richting." -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Schokregulering Inschakelen" +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Stappen per millimeter (Z)" -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Regulering van de nozzletemperatuur inschakelen" +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "Hoeveel stappen van de stappenmotor nodig zijn voor een verplaatsing van één millimeter in de Z-richting." -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Uitloopscherm Inschakelen" +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Stappen per millimeter (E)" -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "Primeblob inschakelen" +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "Hoeveel stappen van de stappenmotor nodig zijn voor een verplaatsing van het feederwiel van één millimeter rond de omtrek." -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Primepijler Inschakelen" +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "X-eindstop in positieve richting" -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Koelen van de Print Inschakelen" +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "Of de eindstop op de X-as zich in positieve (hoog X-coördinaat) of negatieve richting (laag X-coördinaat) bevindt." -msgctxt "ppr_enable label" -msgid "Enable Print Process Reporting" -msgstr "" +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Y-eindstop in positieve richting" -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Intrekken Inschakelen" +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "Of de eindstop op de Y-as zich in positieve (hoog Y-coördinaat) of negatieve richting (laag Y-coördinaat) bevindt." -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Supportbrim inschakelen" +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Z-eindstop in positieve richting" -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Supportvloer inschakelen" +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "Of de eindstop op de Z-as zich in positieve (hoog Z-coördinaat) of negatieve richting (laag Z-coördinaat) bevindt." -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Verbindingsstructuur Inschakelen" +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Minimale Doorvoersnelheid" -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Supportdak inschakelen" +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "De minimale bewegingssnelheid van de printkop." -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "Bewegingsacceleratie inschakelen" +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Diameter van het feedertandwiel" -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "Bewegingsschok inschakelen" +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "De diameter van het tandwiel waarmee het materiaal in de feeder wordt gevoerd." -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "Hiermee wordt het uitloopscherm aan de buitenkant ingeschakeld, waardoor een shell rond het model wordt gemaakt waarop een tweede nozzle kan worden afgeveegd als deze zich op dezelfde hoogte bevindt als de eerste nozzle." +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "Zet de ventilatorsnelheid op 0-1" -msgctxt "ppr_enable description" -msgid "Enable print process reporting for setting threshold values for possible fault detection." -msgstr "" +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "Zet de ventilatorsnelheid op een waarde tussen 0 en 1 in plaats van tussen 0 en 256." -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "Laat kleine (tot 'Breedte kleine bovenkant/onderkant') gebieden op de bovenste skinned layer (blootgesteld aan lucht) opvullen met muren in plaats van het standaardpatroon." +msgctxt "resolution label" +msgid "Quality" +msgstr "Kwaliteit" -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "Hiermee stelt u de schok van de printkop in wanneer de snelheid in de X- of Y-as verandert. Door het verhogen van de schok wordt de printtijd mogelijk verkort ten koste van de printkwaliteit." +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "Alle instellingen die invloed hebben op de resolutie van de print. Deze instellingen hebben een grote invloed op de kwaliteit (en printtijd)." -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "Hiermee stelt u de printkopacceleratie in. Door het verhogen van de acceleratie wordt de printtijd mogelijk verkort ten koste van de printkwaliteit." +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Laaghoogte" -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "Hiermee schakelt u de printkoelventilatoren in tijdens het printen. De ventilatoren verbeteren de printkwaliteit van lagen met een korte laagtijd en brugvorming/overhang." +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "De hoogte van elke laag in mm. Met hogere waarden print u sneller met een lagere resolutie, met lagere waarden print u langzamer met een hogere resolutie." -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "Eind G-code" +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Hoogte Eerste Laag" -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Afvoerduur einde van filament" +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "De hoogte van de eerste laag in mm. Met een dikkere eerste laag hecht het object beter aan het platform." -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Afvoersnelheid einde van filament" +msgctxt "line_width label" +msgid "Line Width" +msgstr "Lijnbreedte" -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "Dwing af dat de brim rond het model wordt geprint, zelfs als deze ruimte anders door supportstructuur zou worden ingenomen. Hierdoor worden enkele gebieden van de eerste supportlaag vervangen door brimgebieden." +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "De breedte van een enkele lijn. Over het algemeen dient de breedte van elke lijn overeen te komen met de breedte van de nozzle. Wanneer deze waarde echter iets wordt verlaagd, resulteert dit in betere prints." -msgctxt "brim_location option everywhere" -msgid "Everywhere" -msgstr "" +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Lijnbreedte Wand" -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "Overal" +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Breedte van een enkele wandlijn." -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Exclusief" +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Lijnbreedte Buitenwand" -msgctxt "experimental label" -msgid "Experimental" -msgstr "Experimenteel" +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "De breedte van de buitenste lijn van de wand. Wanneer deze waarde wordt verlaagd, kan nauwkeuriger worden geprint." -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Naad zichtbaar maken" +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Lijnbreedte Binnenwand(en)" -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Uitgebreid Hechten" +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "Breedte van een enkele wandlijn voor alle wandlijnen, behalve de buitenste." -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "Met uitgebreid hechten worden zo veel mogelijk open gaten in het raster gehecht doordat het gat wordt gedicht met polygonen die elkaar raken. Deze optie kan de verwerkingstijd aanzienlijk verlengen." +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Lijnbreedte Boven-/onderkant" -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "Aantal Extra Wanden Rond vulling" +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Breedte van een enkele lijn aan de boven-/onderkant." -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Aantal Extra Wandlijnen Rond Skin" +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Lijnbreedte Vulling" -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "Extra primemateriaal na het wisselen van de nozzle." +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Breedte van een enkele vullijn." -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "X-positie voor Primen Extruder" +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Lijnbreedte Skirt/Brim" -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Y-positie voor Primen Extruder" +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "Breedte van een enkele skirt- of brimlijn." -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Z-positie voor Primen Extruder" +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Lijnbreedte Supportstructuur" -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Extruders delen verwarming" +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Breedte van een enkele lijn van de supportstructuur." + +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Lijnbreedte Verbindingsstructuur" -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Extruders delen nozzle" +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "Breedte van een enkele lijn van het supportdak of de supportvloer." -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Aanpassing Afkoelsnelheid Doorvoer" +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Lijnbreedte supportdak" -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "Op doorvoerbreedte gebaseerde correctiefactor voor de snelheid. Op 0% wordt de bewegingssnelheid gelijk gehouden aan de printsnelheid. Op 100% wordt de bewegingssnelheid zo aangepast dat de stroom (in mm³/s) constant is, d.w.z. dat alle lijnen die half zo breed zijn als de normale lijnbreedte, tweemaal zo snel worden geprint en lijnen die twee maal zo breed zijn, half zo snel. Een waarde groter dan 100% kan de hogere druk compenseren die nodig is voor de extrusie van brede lijnen." +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "Breedte van een enkele lijn van het supportdak." -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Ventilatorsnelheid" +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Lijnbreedte supportvloer" -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Ventilatorsnelheid Overschrijven" +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "Breedte van een enkele lijn van de supportvloer." -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "Kenmerkcontouren die korter zijn dan deze lengte, worden afgedrukt met behulp van Klein kenmerksnelheid." +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Lijnbreedte Primepijler" -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Functies die nog niet volledig zijn uitgewerkt." +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "Breedte van een enkele lijn van de primepijler." -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Diameter van het feedertandwiel" +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Lijnbreedte eerste laag" -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Eindtemperatuur voor printen" +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "Vermenigvuldiging van de lijnbreedte van de eerste laag. Door deze te verhogen kan de hechting aan het bed worden verbeterd." -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Intrekken via firmware" +msgctxt "shell label" +msgid "Walls" +msgstr "Wanden" -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Extruder Eerste Laag van Support" +msgctxt "shell description" +msgid "Shell" +msgstr "Shell" -msgctxt "material_flow label" -msgid "Flow" -msgstr "Doorvoer" +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Wandextruder" -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Verhouding voor afstemmen doorvoer" +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "De extruder train die voor het printen van de wanden wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." -msgctxt "flow_anomaly_limit label" -msgid "Flow Limit" -msgstr "" +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Extruder buitenwand" -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Doorvoercompensatiefactor" +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "De extruder train die voor het printen van de buitenwand wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Maximale extrusieoffset voor doorvoercompensatie" +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Extruder binnenwand" -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Grafiek Doorvoertemperatuur" +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "De extruder train die voor het printen van de binnenwanden wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." -msgctxt "flow_warn_limit label" -msgid "Flow Warning" -msgstr "" +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Wanddikte" -msgctxt "material_flow_layer_0 description" -msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." -msgstr "Doorvoercompensatie voor de eerste laag: de hoeveelheid materiaal die voor de eerste laag wordt doorgevoerd, wordt vermenigvuldigd met deze waarde." +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "De dikte van de wanden in horizontale richting. Het aantal wanden wordt bepaald door het delen van deze waarde door de breedte van de wandlijn." -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "Stroomcompensatie op de onderste lijnen van de eerste laag" +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Aantal Wandlijnen" -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Doorvoercompensatie op vullijnen." +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "Het aantal wandlijnen. Wanneer deze waarde wordt berekend aan de hand van de wanddikte, wordt deze afgerond naar een geheel getal." -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "Doorvoercompensatie op de lijnen van supportdak of de supportvloer." +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Lengte wandovergang" -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "Doorvoercompensatie op lijnen van de gebieden bovenaan de print." +msgctxt "wall_transition_length description" +msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." +msgstr "Bij de overgang tussen verschillende aantallen wanden naarmate het onderdeel dunner wordt, wordt een bepaalde hoeveelheid ruimte toegewezen voor het splitsen of samenvoegen van wandlijnen." -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Doorvoercompensatie op primepijlerlijnen." +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Aantal wanden voor distributie" -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Doorvoercompensatie op skirt- of brimlijnen." +msgctxt "wall_distribution_count description" +msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." +msgstr "Het aantal wanden, geteld vanaf het midden, waarover de variatie moet worden gespreid. Lagere waarden betekenen dat de breedte van de buitenwanden niet verandert." -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Doorvoercompensatie op de supportvloerlijnen." +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Drempelhoek wandovergang" -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Doorvoercompensatie op supportdaklijnen." +msgctxt "wall_transition_angle description" +msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." +msgstr "Wanneer u overgangen moet maken tussen even en oneven aantallen wanden. Een wigvorm met een hoek die groter is dan deze instelling, heeft geen overgangen. Er worden geen wanden geprint in het midden om de overblijvende ruimte te vullen. Door deze instelling kleiner te maken, reduceert u het aantal en de lengte van deze centrumwanden. Dit kan echter leiden tot openingen of een te hoge doorvoer." -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Doorvoercompensatie op de supportstructuurlijnen." +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Filterafstand wandovergang" -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "Stroomcompensatie op de buitenste wandlijn van de eerste laag." +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "Maak geen gebruik van wandovergangen als dit leidt tot snelle achtereenvolgende veranderingen in het aantal wanden. Verwijder overgangen als de afstand tussen overgangen kleiner is dan deze afstand." -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "Doorvoercompensatie op de buitenste wandlijn." +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Filtermarge wandovergang" -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Stroomcompensatie op de buitenste wand van het bovenoppervlak." +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "Voorkom herhaaldelijke overgangen tussen een wand meer en een wand minder. Deze marge vergroot het aantal lijnbreedtes dat volgt op [minimumbreedte wandlijn - marge, 2 * minimumbreedte wandlijn + marge]. Door de marge te vergroten reduceert u het aantal overgangen, wat weer het aantal doorvoerstarts/-stops en de tijd van de beweging reduceert. Een grote variatie in lijnbreedtes kan echter wel leiden tot problemen met te geringe of te hoge extrusie." -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Stroomcompensatie op de wandlijnen van het bovenoppervlak voor alle muurlijnen behalve de buitenste." +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Veegafstand buitenwand" -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Doorvoercompensatie op bovenste/onderste lijn." +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "Afstand van een beweging die ingevoegd is na de buitenwand, om de Z-naad beter te maskeren." -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "Stroomcompensatie op wandlijnen voor alle wandlijnen behalve de buitenste, maar alleen voor de eerste laag" +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Uitsparing Buitenwand" -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "Doorvoercompensatie op wandlijnen voor alle wandlijnen behalve de buitenste." +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "Uitsparing die wordt toegepast in de buitenwand. Als de buitenwand smaller is dan de nozzle en na de binnenwand wordt geprint, gebruikt u deze offset om het gat in de nozzle te laten overlappen met de binnenwanden in plaats van met de buitenkant van het model." -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Doorvoercompensatie op wandlijnen." +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Printvolgorde van wanden optimaliseren" -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "Doorvoercompensatie: de hoeveelheid materiaal die wordt doorgevoerd, wordt vermenigvuldigd met deze waarde." +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "Optimaliseer de volgorde waarin wanden worden geprint om het aantal intrekbewegingen en de afgelegde afstand te verkleinen. Deze instelling is gunstig voor de meeste onderdelen. Bij sommige onderdelen duurt het printen echter langer. Controleer daarom de verwachte printtijd met en zonder optimalisatie. De eerste laag wordt niet geoptimaliseerd als u brim kiest als hechting aan platform." -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "Hoek vloeiende beweging" +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Wandvolgorde" -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "Vloeiende beweging verschuivingsafstand" +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "Bepaalt de volgorde waarin de wanden worden geprint. Wanneer u de buitenwanden het eerst print, bevordert u de nauwkeurigheid van de afmetingen, omdat fouten in de binnenwanden niet worden overgedragen op de buitenzijde. Door ze later te printen kunt u echter beter stapelen wanneer de overhangs worden geprint. Bij een oneven aantal binnenwanden wordt de 'middelste laatste lijn' altijd als laatste afgedrukt." -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "Vloeiende beweging kleine afstand" +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "Van binnen naar buiten" -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Afvoerduur flush" +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "Van buiten naar binnen" -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Afvoersnelheid flush" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Afwisselend Extra Wand" + +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "Print op afwisselende lagen een extra wand. Op deze manier wordt vulling tussen deze extra wanden gevangen, wat leidt tot sterkere prints." + +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Minimumbreedte wandlijn" msgctxt "min_wall_line_width description" msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgstr "Bij dunne structuren die ongeveer één of tweemaal zo groot als de nozzle zijn, moeten de lijnbreedtes worden aangepast aan de dikte van het model. Met deze instelling beheert u de minimum lijnbreedte die voor wanden is toegestaan. De minimum lijnbreedte bepaalt automatisch ook de maximale lijnbreedte, omdat we bij een bepaalde geometriedikte overgaan van wanden van N naar wanden van N+1, waarbij de N-wanden breed zijn en de N+1-wanden smal. De breedst mogelijke wandlijn is tweemaal de minimumbreedte van de wandlijn." -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Voor" - -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Linksvoor" +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Minimum lijnbreedte even wand" -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Rechtsvoor" +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "De minimum lijnbreedte voor normale polygonale wanden. Deze instelling bepaalt bij welke modeldikte we overschakelen van het printen van één dunne wandlijn op het printen van twee wandlijnen. Een hogere Minimum lijnbreedte gelijkmatige wand leidt tot een hogere maximum lijnbreedte voor een ongelijkmatige wand. De maximum breedte bij een gelijkmatige wandlijn wordt berekend als Lijnbreedte buitenste wand + 0,5 * Minimum lijnbreedte voor een ongelijkmatige wand." -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Volledig" +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Minimum breedte ongelijkmatige wandlijn" -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Rafelig Oppervlak" +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "De minimum lijnbreedte voor opvuller voor ruimte middelste lijn bij muren met meerdere lijnen. Deze instelling bepaalt bij welke modeldikte we overschakelen van het printen van twee wandlijnen naar het printen van twee buitenwanden en één centrale wand in het midden. Een hogere Minimum breedte ongelijkmatige wandlijn leidt naar een hogere maximale lijnbreedte bij een gelijkmatige wand. De maximale breedte ongelijkmatige wandlijn wordt berekend als 2 * Minimum breedte gelijkmatige wandlijn." -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Dichtheid Rafelig Oppervlak" +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Dunne wanden printen" -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Alleen rafelig oppervlak buitenkant" +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "Print delen van het model die horizontaal dunner zijn dan de maat van de nozzle." -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Puntafstand Rafelig Oppervlak" +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Minimum elementgrootte" -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Dikte Rafelig Oppervlak" +msgctxt "min_feature_size description" +msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." +msgstr "Minimumdikte van dunne elementen. Modelelementen die dunner zijn dan deze waarde worden niet geprint, terwijl elementen die dikker zijn dan de minimale elementgrootte worden verbreed tot de minimale wandlijnbreedte." -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "Versie G-code" +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Minimumbreedte dunne wandlijn" -msgctxt "machine_end_gcode description" -msgid "" -"G-code commands to be executed at the very end - separated by \n" -"." -msgstr "" -"G-code-opdrachten die aan het eind worden uitgevoerd, gescheiden door \n" -"." +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "Breedte van de wand die dunne elementen van het model vervangt (volgens de minimum elementgrootte). Als de Minimumbreedte wandlijn dunner is dan de dikte van het element, wordt de wand even dik als het element zelf." -msgctxt "machine_start_gcode description" -msgid "" -"G-code commands to be executed at the very start - separated by \n" -"." -msgstr "" -"G-code-opdrachten die aan het begin worden uitgevoerd, gescheiden door \n" -"." +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Horizontale Uitbreiding" -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "GUID van het materiaal. Deze optie wordt automatisch ingesteld." +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "De mate van offset die wordt toegepast op alle polygonen in elke laag. Met positieve waarden compenseert u te grote gaten, met negatieve waarden compenseert u te kleine gaten." -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Rijbrughoogte" +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Eerste laag Horizontale uitbreiding" -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "Genereer in elkaar grijpende structuur" +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "De mate van offset die wordt toegepast op alle polygonen in de eerste laag. Met negatieve waarden compenseert u het samenpersen van de eerste laag, ook wel 'olifantenpoot' genoemd." -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Support genereren" +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Horizontale uitbreiding gaten" -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "Genereer een brim binnen de supportvulgebieden van de eerste laag. Deze brim wordt niet rondom maar onder de supportstructuur geprint. Als u deze instelling inschakelt, hecht de supportstructuur beter aan het platform." +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "Als de horizontale uitzetting van het gat groter is dan nul, is dit de hoeveelheid offset die op alle gaten in elke laag wordt toegepast. Positieve waarden vergroten de grootte van de gaten, negatieve waarden verkleinen de grootte van de gaten. Wanneer deze instelling is ingeschakeld, kan deze verder worden afgesteld met Maximum diameter horizontale uitzetting gaten." -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "Hiermee maakt u een dichte verbindingsstructuur tussen het model en de supportstructuur. Er wordt een skin gemaakt aan de bovenkant van de supportstructuur waarop het model wordt geprint en op de bodem van de supportstructuur waar dit op het model rust." +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "Gat horizontale expansie max diameter" -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "Genereer een dichte materiaallaag tussen de onderzijde van de supportstructuur en het model. Hierdoor wordt een skin gemaakt tussen het model en de supportstructuur." +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "Als dit groter is dan nul, wordt de horizontale gatexpansie geleidelijk toegepast op kleine gaten (kleine gaten worden meer uitgebreid). Indien ingesteld op nul, wordt de horizontale gatexpansie toegepast op alle gaten. Gaten groter dan de maximale diameter van de horizontale gatexpansie worden niet vergroot." -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "Genereer een dichte materiaallaag tussen de bovenzijde van de supportstructuur en het model. Hierdoor wordt een skin gemaakt tussen het model en de supportstructuur." +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Uitlijning Z-naad" -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "Genereer structuren om delen van het model met overhang te ondersteunen. Zonder deze structuren zakken dergelijke delen in tijdens het printen." +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "Het startpunt voor elk pad in een laag. Wanneer paden in opeenvolgende lagen op hetzelfde punt beginnen, kan in de print een verticale naad zichtbaar zijn. De naad is het eenvoudigst te verwijderen wanneer deze zich nabij een door de gebruiker opgegeven locatie van de print bevindt. De onnauwkeurigheden vallen minder op wanneer het pad steeds op een willekeurige plek begint. De print is sneller af wanneer het kortste pad wordt gekozen." -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Glas" +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Door de gebruiker opgegeven" -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "Nog een extra keer over de bovenlaag gaan, dit keer zonder veel materiaal te extruderen. Hierdoor wordt de kunststof aan de bovenkant verder gesmolten, waardoor een gladder oppervlak wordt verkregen. De kamerdruk in de nozzle wordt hoog gehouden zodat de spleten in het oppervlak met materiaal worden gevuld." +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Kortste" -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Staphoogte Geleidelijke Vulling" +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Willekeurig" -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Stappen Geleidelijke Vulling" +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Scherpste hoek" -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Geleidelijke supportvulling hoogte traptreden" +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Z-naadpositie" -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Geleidelijke supportvulling traptreden" +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "De positie nabij waar met het printen van elk deel van een laag moet worden begonnen." -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "Verlaag geleidelijk naar deze temperatuur bij het printen met lagere snelheden vanwege de minimale laagtijd." +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Linksachter" -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Raster" +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Achter" -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Raster" +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Rechtsachter" -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Raster" +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Rechts" -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Raster" +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Rechtsvoor" -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Raster" +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Voor" -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Linksvoor" -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Groepeer de buitenwanden" +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Links" -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroïde" +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "Z-naad X" -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroïde" +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "De X-coördinaat van de positie nabij waar met het printen van elk deel van een laag moet worden begonnen." -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "Heeft temperatuurstabilisatie van werkvolume" +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Z-naad Y" -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Heeft verwarmd platform" +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "De Y-coördinaat van de positie nabij waar met het printen van elk deel van een laag moet worden begonnen." -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Verwarmingssnelheid" +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Voorkeur van naad en hoek" -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Lengte verwarmingszone" +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "Instellen of hoeken in het model invloed hebben op de positie van de naad. Geen wil zeggen dat hoeken geen invloed hebben op de positie van de naad. Met Naad Verbergen is de kans groter dat de naad op een binnenhoek komt. Met Naad Zichtbaar Maken is de kans groter dat de naad op een buitenhoek komt. Met Naad Verbergen of Naad Zichtbaar Maken is de kans groter dat de naad op een binnen- of buitenhoek komt. Met Slim Verbergen zijn zowel binnen- als buitenhoeken mogelijk, maar wordt er vaker (indien van toepassing) gebruikgemaakt van binnenhoeken." -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "Stel een hoogtebeperking in voor het tochtscherm. Boven deze hoogte wordt er geen tochtscherm geprint." +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Geen" msgctxt "z_seam_corner option z_seam_corner_inner" msgid "Hide Seam" msgstr "Naad verbergen" +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Naad zichtbaar maken" + msgctxt "z_seam_corner option z_seam_corner_any" msgid "Hide or Expose Seam" msgstr "Naad verbergen of zichtbaar maken" -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Horizontale uitbreiding gaten" +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Slim verbergen" -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "Gat horizontale expansie max diameter" +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Relatieve Z-naad" -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "Gaten en contouren van onderdelen met een kleinere diameter dan deze worden afgedrukt met behulp van Klein kenmerksnelheid." +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "Als deze optie ingeschakeld is, zijn de Z-naadcoördinaten relatief ten opzichte van het midden van elk deel. Als de optie uitgeschakeld is, staan de coördinaten voor een absolute positie op het platform." -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Horizontale Uitbreiding" +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Boven-/onderkant" -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Horizontale schaalfactor krimpcompensatie" +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Boven-/onderkant" -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "Hoe ver het filament kan worden uitgerekt voordat het afbreekt, wanneer het wordt verwarmd." +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Extruder bovenskin" -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "Hoe ver het materiaal moet worden ingetrokken voordat het niet meer uitloopt." +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "De extruder train die voor het printen van de bovenste skinlaag wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." -msgctxt "flow_rate_extrusion_offset_factor description" -msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." -msgstr "Hoe ver het filament moet worden verplaatst om veranderingen in de stroomsnelheid te compenseren, als een percentage van hoe ver het filament in één seconde extrusie zou bewegen." +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Bovenste skinlagen" -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "Hoe ver het filament moet worden ingetrokken om het recht af te breken." +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "Het aantal bovenste skinlagen. Doorgaans is één bovenste skinlaag voldoende om oppervlakken van hogere kwaliteit te verkrijgen." -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "Hoe snel het filament moet worden ingetrokken voordat het bij het intrekken afbreekt." +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Lijnbreedte bovenskin" -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "Hoe snel het materiaal moet worden ingetrokken tijdens het wisselen van een filament om uitlopen te voorkomen." +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "Breedte van een enkele lijn aan de bovenkant van de print." -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "Hoe snel het materiaal moet worden geprimed na het vervangen van een lege spoel door een nieuwe spoel van hetzelfde materiaal." +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Patroon bovenskin" -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "Hoe snel het materiaal moet worden geprimed na het overschakelen op een ander materiaal." +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "Het patroon van de bovenste lagen." -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "Hoe lang het materiaal veilig buiten een droge opslagplaats kan worden bewaard." +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Lijnen" -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "Hoeveel stappen van de stappenmotor nodig zijn voor een verplaatsing van één millimeter in de X-richting." +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Concentrisch" -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "Hoeveel stappen van de stappenmotor nodig zijn voor een verplaatsing van één millimeter in de Y-richting." +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "Hoeveel stappen van de stappenmotor nodig zijn voor een verplaatsing van één millimeter in de Z-richting." +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Monotone volgorde bovenlaag" -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "Hoeveel stappen van de stappenmotor nodig zijn voor een verplaatsing van het feederwiel van één millimeter rond de omtrek." +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Print de lijnen van de bovenlaag in een volgorde die ervoor zorgt dat ze altijd in één richting overlappen met aangrenzende lijnen. Hierdoor duurt het iets langer om te printen, maar platte oppervlakken zien er dan consistenter uit." -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "Hoeveel materiaal moet worden gebruikt om het vorige materiaal uit de nozzle te verwijderen (in lengte filament) bij het vervangen van een lege spoel door een nieuwe spoel van hetzelfde materiaal." +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Lijnrichting bovenskin" -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "Hoeveel materiaal moet worden gebruikt om het vorige materiaal uit de nozzle te verwijderen (in lengte filament) bij het overschakelen op een ander materiaal." +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt wanneer voor de bovenste skinlagen een lijn- of zigzagpatroon wordt gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst is bereikt, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de traditionele standaardhoeken (45 en 135 graden) worden gebruikt." -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "Hoever het filament van elke extruder geacht wordt te zijn ingetrokken vanuit de gedeelde nozzle als het G-code-script voor het opstarten van de printer is uitgevoerd. De waarde mag niet gelijk zijn aan of groter zijn dan de lengte van het gemeenschappelijke deel van de kanalen in de nozzle." +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Extruder Boven-/Onderkant" -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "Hoe ondersteuningsinterface en ondersteuning op elkaar inwerken wanneer ze elkaar overlappen. Momenteel alleen geïmplementeerd voor ondersteunend dak." +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "De extruder train die voor het printen van de boven- en onderskin wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "Hoe groot moet een tak zijn als deze op het model wordt geplaatst. Voorkomt kleine ondersteunende blobs. Deze instelling wordt genegeerd wanneer een tak een ondersteunend dak ondersteunt." +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Dikte Boven-/Onderkant" -msgctxt "bridge_skin_support_threshold description" -msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." -msgstr "Als voor een skinregio minder supportstructuur wordt geprint dan dit percentage van zijn oppervlakte, print u dit met de bruginstellingen. Anders wordt er geprint met de normale skininstellingen." +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "De dikte van de boven-/onderlagen in de print. Het aantal boven-/onderlagen wordt bepaald door het delen van deze waarde door de laaghoogte." -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "Als een baansegment meer dan deze hoek afwijkt van de algemene beweging, wordt hij afgevlakt." +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Dikte Bovenkant" -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "Als deze optie ingeschakeld is, worden de tweede en derde laag boven de vrije ruimte geprint met de volgende instellingen. Anders worden de lagen geprint met de normale instellingen." +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "De dikte van de bovenlagen in de print. Het aantal bovenlagen wordt bepaald door het delen van deze waarde door de laaghoogte." -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "Maak geen gebruik van wandovergangen als dit leidt tot snelle achtereenvolgende veranderingen in het aantal wanden. Verwijder overgangen als de afstand tussen overgangen kleiner is dan deze afstand." +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Bovenlagen" -msgctxt "raft_base_margin description" -msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "Het aantal bovenlagen. Wanneer deze waarde wordt berekend aan de hand van de dikte van de bovenkant, wordt deze afgerond naar een geheel getal." -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Als de raft is ingeschakeld, is dit het extra raftgebied rond het model dat ook van een raft wordt voorzien. Als u deze marge vergroot, krijgt u een stevigere raft, maar gebruikt u ook meer materiaal en houdt u minder ruimte over voor de print." +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Bodemdikte" -msgctxt "raft_interface_margin description" -msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "De dikte van de onderlagen in de print. Het aantal onderlagen wordt bepaald door het delen van deze waarde door de laaghoogte." -msgctxt "raft_surface_margin description" -msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Bodemlagen" -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "Negeer de interne geometrie die ontstaat uit overlappende volumes binnen een raster en print de volumes als een geheel. Hiermee kunnen onbedoelde holtes binnenin verdwijnen." +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "Het aantal bodemlagen. Wanneer deze waarde wordt berekend aan de hand van de dikte van de bodem, wordt deze afgerond naar een geheel getal." -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Platformtemperatuur invoegen" +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "Eerste onderste lagen" -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Materiaaltemperatuur invoegen" +msgctxt "initial_bottom_layers description" +msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "Het aantal initiële onderste lagen, vanaf de bouwplaat naar boven. Wanneer deze waarde wordt berekend aan de hand van de dikte van de bodem, wordt deze afgerond naar een geheel getal." -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Inclusief" +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Patroon Boven-/Onderkant" -msgctxt "infill description" -msgid "Infill" -msgstr "Vulling" +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Het patroon van de boven-/onderlagen." -msgctxt "infill label" -msgid "Infill" -msgstr "Vulling" +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Lijnen" + +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concentrisch" + +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Eerste laag patroon onderkant" + +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "Het patroon van de eerste laag aan de onderkant van de print." + +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Lijnen" + +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Concentrisch" + +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Vulacceleratie" +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Boven-/onderkant Polygonen Verbinden" -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Vulling vóór Wanden" +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "Verbind skinpaden aan de boven-/onderkant waar ze naast elkaar lopen. Met deze instelling wordt bij concentrische patronen de bewegingstijd aanzienlijk verkort. Dit kan echter ten koste gaan van de kwaliteit van de bovenste laag aangezien de verbindingen in het midden van de vulling kunnen komen te liggen." -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Dichtheid Vulling" +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Monotone volgorde van boven naar beneden" -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Vullingextruder" +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Print boven- en onderlijnen in een volgorde die ervoor zorgt dat ze altijd in één richting overlappen met aangrenzende lijnen. Hierdoor duurt het iets langer om te printen, maar platte oppervlakken zien er dan consistenter uit." -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Doorvoer vulling" +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Lijnrichtingen boven-/onderkant" -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Vulschok" +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt wanneer voor de boven-/onderlagen een lijn- of zigzagpatroon wordt gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst bereikt is, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de traditionele standaardhoeken (45 en 135 graden) worden gebruikt." -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Dikte Vullaag" +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "Kleine breedte boven/onderzijde" -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "Lijnrichting vulling" +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "Kleine boven-/ondergebieden worden gevuld met muren in plaats van het standaard boven-/onderpatroon. Dit helpt om schokkerige bewegingen te voorkomen. Standaard uit voor de bovenste (aan lucht blootgestelde) laag (zie 'Kleine boven-/onderkant op oppervlak')." -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Lijnafstand Vulling" +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "Kleine bovenkant/onderkant op oppervlak" -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "Vermenigvuldiging Vullijn" +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "Laat kleine (tot 'Breedte kleine bovenkant/onderkant') gebieden op de bovenste skinned layer (blootgesteld aan lucht) opvullen met muren in plaats van het standaardpatroon." -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Lijnbreedte Vulling" +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Geen skin in Z-gaten" -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Vulraster" +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "Als het model kleine verticale gaten van slechts een paar lagen heeft, bevindt er zich doorgaans een skin rond die lagen in de kleine ruimte. Schakel deze instelling in om geen skin te genereren als de verticale tussenruimte erg klein is. Zo verloopt printen en slicen sneller, maar technisch nadeel is dat de vulling aan de lucht wordt blootgesteld." -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Overhanghoek vulling" +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Aantal Extra Wandlijnen Rond Skin" -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Overlap Vulling" +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "Vervang het buitenste gedeelte van het patroon boven-/onderkant door een aantal concentrische lijnen. Het gebruik van 1 of 2 lijnen verbetert daken die op vulmateriaal beginnen." -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "Overlappercentage vulling" +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Strijken inschakelen" -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Vulpatroon" +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "Nog een extra keer over de bovenlaag gaan, dit keer zonder veel materiaal te extruderen. Hierdoor wordt de kunststof aan de bovenkant verder gesmolten, waardoor een gladder oppervlak wordt verkregen. De kamerdruk in de nozzle wordt hoog gehouden zodat de spleten in het oppervlak met materiaal worden gevuld." -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Vulsnelheid" +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Alleen hoogste laag strijken" -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Supportvulling" +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "Strijk alleen de allerlaatste laag van het voorwerp. Dit bespaart tijd als de daaronder gelegen lagen geen glad oppervlak vereisen." -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Bewegingsoptimalisatie vulling" +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Strijkpatroon" -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "Veegafstand Vulling" +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "Het patroon dat wordt gebruikt voor het strijken van oppervlakken." -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "Vulling X-offset" +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Concentrisch" -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Vulling Y-offset" +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "Eerste onderste lagen" +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Monotone strijkvolgorde" -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Startsnelheid ventilator" +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Print strijklijnen in een volgorde die ervoor zorgt dat ze altijd in één richting overlappen met aangrenzende lijnen. Hierdoor duurt het iets langer om te printen, maar platte oppervlakken zien er dan consistenter uit." -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Acceleratie Eerste Laag" +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Tussenruimte strijklijnen" -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "Initiële laag onderste lijn" +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "De afstand tussen de strijklijnen." -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "Diameter beginlaag" +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Strijkdoorvoer" -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Doorvoer eerste laag" +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "De hoeveelheid materiaal, in verhouding tot een normale skinlijn, die tijdens het strijken moet worden doorgevoerd. Als de nozzle gevuld blijft, kunnen scheuren in de bovenlaag worden gevuld. Te hoge doorvoer leidt echter tot uitstulpingen aan de zijkant van het oppervlak." -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Hoogte Eerste Laag" +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Uitsparing strijken" -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Eerste laag Horizontale uitbreiding" +msgctxt "ironing_inset description" +msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." +msgstr "De afstand die moet worden aangehouden tot de randen van het model. Strijken tot de rand van het raster kan leiden tot een gerafelde rand van de print." -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "Initiële laag binnenwandstroom" +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Strijksnelheid" -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Schok Eerste Laag" +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "De snelheid waarmee over de bovenste laag wordt bewogen." -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Lijnbreedte eerste laag" +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Strijkacceleratie" -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "Initiële laag buitenwandstroom" +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "De acceleratie tijdens het strijken." -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Printacceleratie Eerste Laag" +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Schok strijken" -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Printschok Eerste Laag" +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het strijken." -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Printsnelheid Eerste Laag" +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Overlappercentage Skin" -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Snelheid Eerste Laag" +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Pas de mate van overlap tussen de wanden en (de eindpunten van) de skin-middellijnen aan, als percentage van de lijnbreedtes van de skin-lijnen en de binnenste wand. Met een lichte overlap kunnen de wanden goed hechten aan de skin. Houd er rekening mee dat met een gelijke lijnbreedte voor skin en wand, skin buiten de wand kan treden bij een percentage hoger dan 50%, omdat de nozzle van de skin-extruder op deze positie al voorbij het midden van de wand kan zijn." -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "Lijnafstand Supportstructuur Eerste Laag" +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Overlap Skin" -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Bewegingsacceleratie Eerste Laag" +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Pas de mate van overlap tussen de wanden en (de eindpunten van) de skin-middellijnen aan. Met een lichte overlap kunnen de wanden goed hechten aan de skin. Houd er rekening mee dat met een gelijke lijnbreedte voor skin en wand, skin buiten de wand kan treden bij een waarde groter dan de halve wandbreedte, omdat de nozzle van de skin-extruder op deze positie het midden van de wand al kan hebben bereikt." -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Bewegingsschok Eerste Laag" +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Verwijderingsbreedte skin" -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Bewegingssnelheid Eerste Laag" +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "De grootste breedte van skingebieden die verwijderd moeten worden. Elk skingebied dat smaller is dan deze waarde zal verdwijnen. Hiermee kan op tijd en materiaal worden bespaard bij het printen van de bovenste/onderste skinlaag op schuine vlakken in het model." + +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Verwijderingsbreedte bovenste skinlaag" -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Z Overlap Eerste Laag" +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "De grootste breedte van delen van bovenste skingebieden die verwijderd moeten worden. Elk skingebied dat smaller is dan deze waarde, zal verdwijnen. Hiermee kan op tijd en materiaal worden bespaard bij het printen van de bovenste/onderste skinlaag op schuine vlakken in het model." -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Starttemperatuur voor printen" +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Verwijderingsbreedte onderste skinlaag" -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Binnenwandacceleratie" +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "De grootste breedte van delen van de onderste skingebieden die verwijderd moeten worden. Elk skingebied dat smaller is dan deze waarde, zal verdwijnen. Hiermee kan op tijd en materiaal worden bespaard bij het printen van de onderste skinlaag op schuine vlakken in het model." -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Extruder binnenwand" +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Uitbreidingsafstand van skin" -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Schok Binnenwand" +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "De afstand waarmee de skin wordt uitgebreid in de vulling. Bij hogere waarden hecht de skin beter aan het vulpatroon en hechten de wanden van aangrenzende lagen beter aan de skin. Bij lagere waarden wordt er minder materiaal gebruikt." -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Snelheid Binnenwand" +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Uitbreidingsafstand van bovenste skinlaag" -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Doorvoer binnenwand(en)" +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "De afstand waarmee de bovenste skinlagen worden uitgebreid in de vulling. Bij hogere waarden hecht de skin beter aan het vulpatroon en hechten de wanden op de bovenliggende laag beter aan de skin. Bij lagere waarden wordt er minder materiaal gebruikt." -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Lijnbreedte Binnenwand(en)" +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Uitbreidingsafstand van onderste skinlaag" -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "Uitsparing die wordt toegepast in de buitenwand. Als de buitenwand smaller is dan de nozzle en na de binnenwand wordt geprint, gebruikt u deze offset om het gat in de nozzle te laten overlappen met de binnenwanden in plaats van met de buitenkant van het model." +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "De afstand waarmee de onderste skinlagen worden uitgebreid in de vulling. Bij hogere waarden hecht de skin beter aan het vulpatroon en de wanden van de onderliggende laag. Bij lagere waarden wordt er minder materiaal gebruikt." -msgctxt "brim_location option inside" -msgid "Inside Only" -msgstr "" +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Maximale skinhoek voor uitbreiding" -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "Van binnen naar buiten" +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "Van boven- en/of onderoppervlakken van het object met een hoek die groter is dan deze instelling, wordt de boven-/onderskin niet uitgebreid. Hiermee wordt uitbreiding voorkomen van smalle skingebieden die worden gemaakt wanneer het modeloppervlak een nagenoeg verticale helling heeft. Bij een hoek van 0° (horizontaal) wordt er geen skin uitgebreid; bij een hoek van 90° (verticaal) wordt alle skin uitgebreid." -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "Geprefereerde interfacelijnen" +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Minimale skinbreedte voor uitbreiding" -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "Geprefereerde interface" +msgctxt "min_skin_width_for_expansion description" +msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." +msgstr "Skingebieden die smaller zijn dan deze waarde, worden niet uitgebreid. Dit voorkomt het uitbreiden van smalle skingebieden die worden gemaakt wanneer het modeloppervlak een nagenoeg verticale helling heeft." -msgctxt "prime_tower_mode option interleaved" -msgid "Interleaved" -msgstr "" +msgctxt "infill label" +msgid "Infill" +msgstr "Vulling" -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "Aantal in elkaar grijpende balklagen" +msgctxt "infill description" +msgid "Infill" +msgstr "Vulling" -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "Breedte in elkaar grijpende balk" +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Vullingextruder" -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "In elkaar grijpende grensvermijding" +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "De extruder train die voor het printen van de vulling wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "In elkaar grijpende diepte" +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Dichtheid Vulling" -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "In elkaar grijpende structuuroriëntatie" +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "Past de vuldichtheid van de print aan." -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Alleen hoogste laag strijken" +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Lijnafstand Vulling" -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Strijkacceleratie" +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "De afstand tussen de geprinte vullijnen. Deze instelling wordt berekend op basis van de dichtheid van de vulling en de lijnbreedte van de vulling." -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Strijkdoorvoer" +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Vulpatroon" -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Uitsparing strijken" +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "Het patroon van het vulmateriaal van de print. De lijn- en zigzagvulling veranderen per vullaag van richting, waardoor u bespaart op materiaalkosten. De raster-, driehoeks-, tri-hexagonale, kubische, achtvlaks-, afgeknotte kubus-, kruis- en concentrische patronen worden per laag volledig geprint. Gyroïde, kubische, afgeknotte kubus- en achtvlaksvullingen veranderen per laag voor een meer gelijke krachtverdeling in elke richting. Bliksemvulling minimaliseert de vulling doordat deze alleen het plafond van het object ondersteunt." -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Schok strijken" +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Raster" -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Tussenruimte strijklijnen" +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Lijnen" -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Strijkpatroon" +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Driehoeken" -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Strijksnelheid" +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Tri-hexagonaal" -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "Is oorsprongpunt centraal" +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Kubisch" -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "Is support materiaal" +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Kubische onderverdeling" -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "Breekt dit materiaal recht af wanneer het wordt verwarmd (kristallijn) of produceert het lange, met elkaar verweven polymeerketens (niet-kristallijn)?" +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Octet" -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "Wordt dit materiaal meestal gebruikt als support materiaal tijdens het printen." +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Afgeknotte kubus" -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "Trillen alleen voor de contouren van de onderdelen en niet voor de gaten van de onderdelen." +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Concentrisch" -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Onderbroken Oppervlakken Behouden" +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Laaghoogte" +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Kruis" -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "Begin laag X" +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "Kruis 3D" -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Begin laag Y" +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroïde" -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "De laagdikte van de grondlaag van de raft. Deze laag moet dik zijn, zodat deze stevig hecht aan het platform." +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Bliksem" -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "De laagdikte van de middelste laag van de raft." +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Vullijnen verbinden" -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Laagdikte van de bovenste lagen van de raft." +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "Verbindt de uiteinden waar het vulpatroon bij de binnenwand komt, met een lijn die de vorm van de binnenwand volgt. Als u deze instelling inschakelt, kan de vulling beter hechten aan de wanden en wordt de invloed van de vulling op de kwaliteit van de verticale oppervlakken kleiner. Als u deze instelling uitschakelt, wordt er minder materiaal gebruikt." -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "Sla elke N millimeter een verbinding tussen de lijnen van de supportstructuur over, zodat deze gemakkelijker kan worden weggebroken." +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Vulpolygonen Verbinden" -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Links" +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "Vulpaden verbinden waar ze naast elkaar lopen. Bij vulpatronen die uit meerdere gesloten polygonen bestaan, wordt met deze instelling de bewegingstijd aanzienlijk verkort." -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Printkop Optillen" +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Lijnrichting vulling" + +msgctxt "infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." +msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst bereikt is, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de traditionele standaardhoeken (45 en 135 graden voor het lijn- en zigzagpatroon en 45 voor alle andere patronen) worden gebruikt." -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Bliksem" +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "Vulling X-offset" -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Hoek overhang bliksemvulling" +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "Het vulpatroon wordt over deze afstand verplaatst langs de X-as." -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Snoeihoek bliksemvulling" +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Vulling Y-offset" -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Rechtbuighoek bliksemvulling" +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "Het vulpatroon wordt over deze afstand verplaatst langs de Y-as." -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Hoek supportstructuur bliksemvulling" +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Start willekeurig invullen" -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "Takbereik beperken" +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "Bepaal willekeurig welke invullijn het eerst wordt geprint. Dit voorkomt dat één segment het sterkst wordt, maar gaat ten koste van een extra beweging." -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "Beperken hoe ver elke tak moet bewegen vanaf het punt dat het ondersteunt. Dit kan de steun steviger maken, maar zal de hoeveelheid takken vergroten (en daardoor het materiaalgebruik/de printtijd)." +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "Vermenigvuldiging Vullijn" -msgctxt "bv_temp_warn_limit description" -msgid "Limit on Build Volume Temperature warning for detection." -msgstr "" +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "Zet elke vullijn om naar zoveel keer vullijnen. De extra lijnen kruisen elkaar niet, maar mijden elkaar. Hierdoor wordt de vulling stijver, maar duurt het printen langer en wordt er meer materiaal verbruikt." -msgctxt "bv_temp_anomaly_limit description" -msgid "Limit on Build Volume temperature Anomaly for detection." -msgstr "" +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Aantal Extra Wanden Rond vulling" -msgctxt "print_temp_anomaly_limit description" -msgid "Limit on Print Temperature anomaly for detection." -msgstr "" +msgctxt "infill_wall_line_count description" +msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "Voeg extra wanden toe rondom de vulling. Deze wanden kunnen ervoor zorgen dat de skin aan de boven-/onderkant minder doorzakt. Dit betekent dat u met alleen wat extra materiaal voor dezelfde kwaliteit minder skinlagen aan de boven-/onderkant nodig hebt." +"Deze optie kan in combinatie met de optie 'Polygonen voor de vulling verbinden' worden gebruikt om alle vulling in één doorvoerpad te verbinden zonder extra bewegingen of intrekkingen, mits correct ingesteld." -msgctxt "print_temp_warn_limit description" -msgid "Limit on Print temperature warning for detection." -msgstr "" +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Kubische onderverdeling shell" -msgctxt "flow_anomaly_limit description" -msgid "Limit on flow anomaly for detection." -msgstr "" +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "Een aanvulling op de straal vanuit het midden van elk blok om de rand van het model te detecteren, om te bepalen of het blok moet worden onderverdeeld. Een hogere waarde leidt tot een dikkere shell voor kleine blokken bij de rand van het model." -msgctxt "flow_warn_limit description" -msgid "Limit on the flow warning for detection." -msgstr "" +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "Overlappercentage vulling" -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "Beperk het volume van dit raster binnen andere rasters. U kunt dit gebruiken om bepaalde delen van een raster met andere instellingen en met een andere extruder te printen." +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "De mate van overlap tussen de vulling en de wanden als percentage van de lijnbreedte van de vulling. Met een lichte overlap kunnen de wanden goed hechten aan de vulling." -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Beperkt" +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Overlap Vulling" -msgctxt "line_width label" -msgid "Line Width" -msgstr "Lijnbreedte" +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "De mate van overlap tussen de vulling en de wanden. Met een lichte overlap kunnen de wanden goed hechten aan de vulling." -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Lijnen" +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "Veegafstand Vulling" -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Lijnen" +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "De afstand voor een beweging die na het printen van elke vullijn wordt ingevoegd, om ervoor te zorgen dat de vulling beter aan de wanden hecht. Deze optie lijkt op de optie voor overlap van vulling. Tijdens deze beweging is er echter geen doorvoer en de beweging vindt maar aan één uiteinde van de vullijn plaats." -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Lijnen" +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Dikte Vullaag" -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Lijnen" +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "De dikte per laag vulmateriaal. Deze waarde moet altijd een veelvoud van de laaghoogte zijn en wordt voor het overige afgerond." -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Lijnen" +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Stappen Geleidelijke Vulling" -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Lijnen" +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "Het aantal keren dat de vuldichtheid wordt gehalveerd naarmate er verder onder het oppervlak wordt geprint. Gebieden die zich dichter bij het oppervlak bevinden, krijgen een hogere dichtheid, tot de waarde die is opgegeven in de optie Dichtheid vulling." -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Lijnen" +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Staphoogte Geleidelijke Vulling" -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Lijnen" +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "De hoogte van de vulling van een opgegeven dichtheid voordat wordt overgeschakeld naar de helft van deze dichtheid." -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Vulling vóór Wanden" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Machine" +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "Print de vulling voordat de wanden worden geprint. Wanneer u eerst de wanden print, worden deze nauwkeuriger geprint, maar wordt de overhang mogelijk van mindere kwaliteit. Wanneer u eerst de vulling print, worden de wanden steviger, maar schijnt het vulpatroon mogelijk door." -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Machinediepte" +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Minimumgebied vulling" -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Machinekop- en ventilatorpolygoon" +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "Genereer geen gebieden met vulling die kleiner zijn dan deze waarde (gebruik in plaats daarvan een skin)." -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Machinehoogte" +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Supportvulling" -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Type Machine" +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "Print alleen vulstructuren waarvan de bovenkant van het model moet worden ondersteund. Hiermee reduceert u de printtijd en het materiaalgebruik. Dit kan echter leiden tot een niet gelijkmatige objectsterkte." -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Machinebreedte" +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Overhanghoek vulling" -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Instellingen van de machine" +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "De minimale interne overhanghoek waarbij vulling wordt toegevoegd. Bij een waarde van 0° worden objecten volledig gevuld. Bij 90° wordt er geen vulling geprint." -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Overhang Printbaar Maken" +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Dikte skinrandondersteuning" -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "Laat rasters die elkaar raken deels met elkaar overlappen. Hierdoor hechten ze beter aan elkaar." +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "De dikte van de extra vulling die skinranden ondersteunt." -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "Maak draagvlakken aan de onderkant kleiner dan bij de overhang." +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Lagen skinrandondersteuning" -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "Maak overal onder het supportraster support zodat er in het supportraster geen overhang is." +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "Het aantal opvullagen dat skinranden ondersteunt." -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "Maak van de primepositie van de extruder de absolute positie, in plaats van de relatieve positie ten opzichte van de laatst bekende locatie van de printkop." +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Hoek supportstructuur bliksemvulling" -msgctxt "layer_0_z_overlap description" -msgid "" -"Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" -"It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" -msgstr "" +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Bepaalt wanneer een bliksemvullaag iets moet ondersteunen dat zich boven de vullaag bevindt. Gemeten in de hoek bepaald door de laagdikte." -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Maak de rasters beter geschikt voor 3D-printen." +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Hoek overhang bliksemvulling" -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Bepaalt wanneer een bliksemvullaag het model boven de laag moet ondersteunen. Gemeten in de hoek bepaald door de laagdikte." -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Snoeihoek bliksemvulling" -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volumetrisch)" +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "De eindpunten van de vullijnen worden verkort om materiaal te besparen. Deze instelling is de overhanghoek van de eindpunten van deze lijnen." + +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Rechtbuighoek bliksemvulling" -msgctxt "material description" +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "De vullijnen zijn rechtgetrokken om printtijd te besparen. Dit is de grootste overhanghoek die over de lengte van de vullijn is toegestaan." + +msgctxt "material label" msgid "Material" msgstr "Materiaal" -msgctxt "material label" +msgctxt "material description" msgid "Material" msgstr "Materiaal" -msgctxt "material_brand label" -msgid "Material Brand" -msgstr "" +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Standaard printtemperatuur" -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "Materiaal-GUID" +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "De standaardtemperatuur waarmee wordt geprint. Dit moet overeenkomen met de basistemperatuur van een materiaal. Voor alle andere printtemperaturen moet een offset worden gebruikt die gebaseerd is op deze waarde" -msgctxt "material_type label" -msgid "Material Type" -msgstr "" +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Temperatuur werkvolume" -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Materiaalvolume tussen afvegen" +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "De omgevingstemperatuur waarin wordt geprint. Als deze waarde is ingesteld op 0, wordt de temperatuur van het werkvolume niet aangepast." -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Max. combing-afstand zonder intrekken" +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Printtemperatuur" -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Maximale Acceleratie X" +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "De temperatuur waarmee wordt geprint." -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Maximale Acceleratie Y" +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Printtemperatuur van de eerste laag" -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Maximale Acceleratie Z" +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer." +msgstr "De temperatuur die gebruikt wordt voor het printen van de eerste laag." -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "Maximale vertakkingshoek" +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Starttemperatuur voor printen" -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Maximale afwijking" +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "De minimale temperatuur tijdens het opwarmen naar de printtemperatuur waarbij met printen kan worden begonnen." -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Maximale afwijking doorvoergebied" +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Eindtemperatuur voor printen" -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Maximale Ventilatorsnelheid" +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "De temperatuur waarnaar alvast kan worden afgekoeld net voordat het printen wordt beëindigd." -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Maximale Filamentacceleratie" +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Aanpassing Afkoelsnelheid Doorvoer" -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Maximale Modelhoek" +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "De extra snelheid waarmee de nozzle tijdens het doorvoeren afkoelt. Met dezelfde waarde wordt ook de verloren verwarmingssnelheid aangeduid wanneer tijdens het doorvoeren wordt verwarmd." -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Maximale overhang oppervlak gat" +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Standaardtemperatuur platform" -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Maximale parkeerduur" +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "De standaardtemperatuur die wordt gebruikt voor het verwarmde platform. Dit moet overeenkomen met de basistemperatuur van een platform. Voor alle andere printtemperaturen moet een offset worden gebruikt die is gebaseerd op deze waarde" -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Maximale resolutie" +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Platformtemperatuur" -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Maximaal Aantal Intrekbewegingen" +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "De temperatuur van het verwarmde platform. Als de temperatuur is ingesteld op 0, wordt het platform niet verwarmd." -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Maximale skinhoek voor uitbreiding" +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Platformtemperatuur voor de eerste laag" -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Maximale Snelheid E" +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "De temperatuur van het verwarmde platform voor de eerste laag. Als de temperatuur 0 is, wordt het platform bij de eerste laag niet verwarmd." -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Maximale Snelheid X" +msgctxt "material_adhesion_tendency label" +msgid "Adhesion Tendency" +msgstr "Hechtingsgevoeligheid" -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Maximale Snelheid Y" +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "Hechtingsgevoeligheid van het oppervlak." -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Maximale Snelheid Z" +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Oppervlakte-energie" -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Maximale pijler-ondersteunde diameter" +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Oppervlakte-energie." -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Maximale bewegingsresolutie" +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Schaalfactor krimpcompensatie" -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "De maximale acceleratie van de motor in de X-richting" +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "Het model wordt met deze factor geschaald ter compensatie van het krimpen van het materiaal tijdens het afkoelen." -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "De maximale acceleratie van de motor in de Y-richting." +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Horizontale schaalfactor krimpcompensatie" -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "De maximale acceleratie van de motor in de Z-richting." +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "Om te compenseren voor het krimpen van het materiaal wanneer het afkoelt, wordt het model met deze factor geschaald in de richting XY (horizontaal)." -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "De maximale acceleratie van de motor van het filament." +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Verticale schaalfactor krimpcompensatie" -msgctxt "bridge_sparse_infill_max_density description" -msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." -msgstr "Maximale dichtheid van de vulling die als dun wordt beschouwd. Skin boven dunne vulling wordt als niet-ondersteund beschouwd en kan dus als een brugskin worden behandeld." +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "Om te compenseren voor het krimpen van het materiaal wanneer het afkoelt, wordt het model met deze factor geschaald in Z-richting (verticaal)." -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "De maximale diameter in de X- en Y-richting van een kleiner gebied dat moet worden ondersteund door een speciale steunpijler." +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Kristallijnmateriaal" -msgctxt "max_extrusion_before_wipe description" -msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." -msgstr "Maximale materiaalhoeveelheid die kan worden geëxtrudeerd voordat de nozzle opnieuw wordt afgeveegd. Als deze waarde kleiner is dan het benodigde materiaalvolume in een laag, heeft de instelling geen effect op deze laag. Er wordt dan maar een keer per laag afgeveegd." +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "Breekt dit materiaal recht af wanneer het wordt verwarmd (kristallijn) of produceert het lange, met elkaar verweven polymeerketens (niet-kristallijn)?" -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Samengevoegde rasters overlappen" +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Intrekpositie voor niet-uitlopen" -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Modelcorrecties" +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "Hoe ver het materiaal moet worden ingetrokken voordat het niet meer uitloopt." -msgctxt "mesh_position_x label" -msgid "Mesh Position X" -msgstr "Rasterpositie X" +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Intreksnelheid voor niet-uitlopen" -msgctxt "mesh_position_y label" -msgid "Mesh Position Y" -msgstr "Rasterpositie Y" +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "Hoe snel het materiaal moet worden ingetrokken tijdens het wisselen van een filament om uitlopen te voorkomen." -msgctxt "mesh_position_z label" -msgid "Mesh Position Z" -msgstr "Rasterpositie Z" +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Intrekpositie voor voorbereiding van afbreken" -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Rasterverwerkingsrang" +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "Hoe ver het filament kan worden uitgerekt voordat het afbreekt, wanneer het wordt verwarmd." + +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Intreksnelheid voor voorbereiding van afbreken" + +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "Hoe snel het filament moet worden ingetrokken voordat het bij het intrekken afbreekt." + +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Temperatuur voor voorbereiding van afbreken" + +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "De temperatuur die wordt gebruikt om materiaal te zuiveren, moet ongeveer gelijk zijn aan de hoogst mogelijke printtemperatuur." + +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Intrekpositie voor afbreken" -msgctxt "mesh_rotation_matrix label" -msgid "Mesh Rotation Matrix" -msgstr "Matrix rasterrotatie" +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "Hoe ver het filament moet worden ingetrokken om het recht af te breken." -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Midden" +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Intreksnelheid voor afbreken" -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Minimale matrijsbreedte" +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "De snelheid waarmee het filament wordt ingetrokken om het recht af te breken." -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Minimale tijd stand-bytemperatuur" +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Temperatuur voor afbreken" -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Minimale brugwandlengte" +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "De temperatuur waarbij het filament wordt afgebroken om het recht af te breken." -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Minimum lijnbreedte even wand" +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Afvoersnelheid flush" -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Minimaal Afstandsgebied voor Intrekken" +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "Hoe snel het materiaal moet worden geprimed na het overschakelen op een ander materiaal." -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Minimum elementgrootte" +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Afvoerduur flush" -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Minimale Doorvoersnelheid" +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "Hoeveel materiaal moet worden gebruikt om het vorige materiaal uit de nozzle te verwijderen (in lengte filament) bij het overschakelen op een ander materiaal." -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "Minimale hoogte tot model" +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Afvoersnelheid einde van filament" -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Minimumgebied vulling" +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "Hoe snel het materiaal moet worden geprimed na het vervangen van een lege spoel door een nieuwe spoel van hetzelfde materiaal." -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Minimale Laagtijd" +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Afvoerduur einde van filament" -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Minimum breedte ongelijkmatige wandlijn" +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "Hoeveel materiaal moet worden gebruikt om het vorige materiaal uit de nozzle te verwijderen (in lengte filament) bij het vervangen van een lege spoel door een nieuwe spoel van hetzelfde materiaal." -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Minimale Polygoonomtrek" +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Maximale parkeerduur" -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Minimale skinbreedte voor uitbreiding" +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "Hoe lang het materiaal veilig buiten een droge opslagplaats kan worden bewaard." -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Minimumsnelheid" +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Verplaatsingsfactor zonder lading" -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Minimumgebied supportstructuur" +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "Een factor die aangeeft hoeveel het filament wordt samengedrukt tussen de feeder en de nozzlekamer, om te bepalen hoe ver het materiaal moet worden verplaatst voor het verwisselen van filament." -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Minimumgebied supportvloer" +msgctxt "material_flow label" +msgid "Flow" +msgstr "Doorvoer" -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Minimumgebied verbindingsstructuur" +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "Doorvoercompensatie: de hoeveelheid materiaal die wordt doorgevoerd, wordt vermenigvuldigd met deze waarde." -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Minimumgebied supportdak" +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Wanddoorvoer" -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Minimale X-/Y-afstand Supportstructuur" +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Doorvoercompensatie op wandlijnen." -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Minimumbreedte dunne wandlijn" +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Buitenste wanddoorvoer" -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Minimaal Volume vóór Coasting" +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "Doorvoercompensatie op de buitenste wandlijn." -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Minimumbreedte wandlijn" +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Doorvoer binnenwand(en)" -msgctxt "minimum_interface_area description" -msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Minimumgebied voor verbindingspolygonen. Polygonen met een gebied dat kleiner is dan deze waarde worden geprint als normale ondersteuning." +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "Doorvoercompensatie op wandlijnen voor alle wandlijnen behalve de buitenste." -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "Minimumgebied voor steunpolygonen. Polygonen met een gebied dat kleiner is dan deze waarde, worden niet gegenereerd." +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Stroom van de buitenste wand van het bovenoppervlak" -msgctxt "minimum_bottom_area description" -msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Minimumgebied voor de supportvloeren. Polygonen met een gebied dat kleiner is dan deze waarde worden geprint als normale ondersteuning." +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Stroomcompensatie op de buitenste wand van het bovenoppervlak." -msgctxt "minimum_roof_area description" -msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Minimumgebied voor de supportdaken. Polygonen met een gebied dat kleiner is dan deze waarde worden geprint als normale ondersteuning." +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Stroom van de binnenste wand(en) van het bovenoppervlak" -msgctxt "min_feature_size description" -msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." -msgstr "Minimumdikte van dunne elementen. Modelelementen die dunner zijn dan deze waarde worden niet geprint, terwijl elementen die dikker zijn dan de minimale elementgrootte worden verbreed tot de minimale wandlijnbreedte." +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Stroomcompensatie op de wandlijnen van het bovenoppervlak voor alle muurlijnen behalve de buitenste." -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "Minimale breedte waarmee het grondvlak van het kegelvormige supportgebied wordt verkleind. Een geringe breedte kan leiden tot een instabiele supportstructuur." +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Doorvoer boven/onder" -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Matrijs" +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Doorvoercompensatie op bovenste/onderste lijn." -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Matrijshoek" +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Bovenste oppervlak skindoorvoer" -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Dakhoogte matrijs" +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "Doorvoercompensatie op lijnen van de gebieden bovenaan de print." -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Monotone strijkvolgorde" +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Doorvoer vulling" -msgctxt "raft_surface_monotonic label" -msgid "Monotonic Raft Top Surface Order" -msgstr "" +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Doorvoercompensatie op vullijnen." -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Monotone volgorde bovenlaag" +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Doorvoer skirt/brim" -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Monotone volgorde van boven naar beneden" +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Doorvoercompensatie op skirt- of brimlijnen." -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "Met meerdere skirtlijnen kunt u de doorvoer beter voorbereiden voor kleine modellen. Met de waarde 0 wordt de skirt uitgeschakeld." +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Doorvoer support" -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "Vermenigvuldiging van de lijnbreedte van de eerste laag. Door deze te verhogen kan de hechting aan het bed worden verbeterd." +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Doorvoercompensatie op de supportstructuurlijnen." -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Verplaatsingsfactor zonder lading" +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Doorvoer supportinterface" -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Geen skin in Z-gaten" +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "Doorvoercompensatie op de lijnen van supportdak of de supportvloer." -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Niet-traditionele manieren om uw modellen te printen." +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Doorvoer supportdak" + +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Doorvoercompensatie op supportdaklijnen." -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Geen" +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Doorvoer supportvloer" -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Geen" +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Doorvoercompensatie op de supportvloerlijnen." -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normaal" +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Doorvoer Primepijler" -msgctxt "prime_tower_mode option normal" -msgid "Normal" -msgstr "" +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Doorvoercompensatie op primepijlerlijnen." -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Normaal" +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Doorvoer eerste laag" -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "Normaal probeert Cura kleine gaten in het raster te hechten en delen van een laag met grote gaten te verwijderen. Als u deze optie inschakelt, behoudt u de delen die niet kunnen worden gehecht. Deze optie kan als laatste redmiddel worden gebruikt als er geen andere manier meer is om correcte G-code te genereren." +msgctxt "material_flow_layer_0 description" +msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." +msgstr "Doorvoercompensatie voor de eerste laag: de hoeveelheid materiaal die voor de eerste laag wordt doorgevoerd, wordt vermenigvuldigd met deze waarde." -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Niet in skin" +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "Initiële laag binnenwandstroom" -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "Niet op buitenzijde" +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "Stroomcompensatie op wandlijnen voor alle wandlijnen behalve de buitenste, maar alleen voor de eerste laag" -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Nozzlehoek" +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "Initiële laag buitenwandstroom" -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Nozzlediameter" +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "Stroomcompensatie op de buitenste wandlijn van de eerste laag." -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Verboden gebieden voor de nozzle" +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "Initiële laag onderste lijn" -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Nozzle-ID" +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "Stroomcompensatie op de onderste lijnen van de eerste laag" -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Nozzlelengte" +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Stand-bytemperatuur" -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Extra primehoeveelheid na wisselen van nozzle" +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "De temperatuur van de nozzle op de momenten waarop een andere nozzle wordt gebruikt voor het printen." -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Primesnelheid bij Wisselen Nozzles" +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "Is support materiaal" -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Intrekkingssnelheid bij Wisselen Nozzles" +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "Wordt dit materiaal meestal gebruikt als support materiaal tijdens het printen." -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Intrekafstand bij Wisselen Nozzles" +msgctxt "speed label" +msgid "Speed" +msgstr "Snelheid" -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Intreksnelheid bij Wisselen Nozzles" +msgctxt "speed description" +msgid "Speed" +msgstr "Snelheid" -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Aantal extruders" +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Printsnelheid" -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Aantal ingeschakelde extruders" +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "De snelheid waarmee wordt geprint." -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Aantal Lagen met Lagere Printsnelheid" +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Vulsnelheid" -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "Het aantal extruder trains dat ingeschakeld is; automatisch ingesteld in de software" +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "De snelheid waarmee de vulling wordt geprint." -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "Aantal extruder trains. Een extruder train is de combinatie van een feeder, Bowden-buis en nozzle." +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Wandsnelheid" -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "Aantal keren dat de nozzle over de borstel beweegt." +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "De snelheid waarmee wanden worden geprint." -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "Het aantal keren dat de vuldichtheid wordt gehalveerd naarmate er verder onder het oppervlak wordt geprint. Gebieden die zich dichter bij het oppervlak bevinden, krijgen een hogere dichtheid, tot de waarde die is opgegeven in de optie Dichtheid vulling." +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Snelheid Buitenwand" -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "Het aantal keren dat de dichtheid van de supportvulling wordt gehalveerd naarmate er verder onder het oppervlak wordt geprint. Gebieden die zich dichter bij het oppervlak bevinden, krijgen een hogere dichtheid, tot de waarde die is opgegeven in de optie Dichtheid supportvulling." +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "De snelheid waarmee de buitenwanden worden geprint. Als u de buitenwand langzamer print, verhoogt u de uiteindelijke kwaliteit van de skin. Een groot verschil tussen de printsnelheid van de binnenwand en de printsnelheid van de buitenwand kan echter een negatief effect hebben op de kwaliteit." -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Octet" +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Snelheid Binnenwand" -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Uit" +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "De snelheid waarmee alle binnenwanden worden geprint. Als u de binnenwand sneller print dan de buitenwand, verkort u de printtijd. Het wordt aangeraden hiervoor een snelheid in te stellen die ligt tussen de printsnelheid van de buitenwand en de vulsnelheid." -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "De offset die in de X-richting wordt toegepast op het object." +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Snelheid van de buitenste wand van het bovenoppervlak" -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "De offset die in de Y-richting wordt toegepast op het object." +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "De snelheid waarmee de buitenste wanden van het bovenoppervlak worden geprint." -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "De offset die wordt toegepast op het object in de z-richting. Hiermee kunt u de taak uitvoeren die voorheen 'Object Sink' werd genoemd." +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Snelheid van de binnenste wand van het bovenoppervlak" -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Offset met extruder" +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "De snelheid waarmee de binnenwanden van het bovenoppervlak worden geprint." -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "Op bouwplaat indien mogelijk" +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Snelheid bovenskin" -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "Op model indien nodig" +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "De snelheid waarmee bovenste skinlagen worden geprint." -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "Eén voor Eén" +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Snelheid Boven-/Onderkant" -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "Voer alleen een Z-sprong uit bij bewegingen over geprinte delen die niet kunnen worden vermeden met Geprinte Delen Mijden Tijdens Bewegingen." +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "De snelheid waarmee boven-/onderlagen worden geprint." -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "Strijk alleen de allerlaatste laag van het voorwerp. Dit bespaart tijd als de daaronder gelegen lagen geen glad oppervlak vereisen." +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Snelheid Supportstructuur" -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Hoek Uitloopscherm" +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "De snelheid waarmee de supportstructuur wordt geprint. Als u de supportstructuur sneller print, kunt u de printtijd aanzienlijk verkorten. De kwaliteit van het oppervlak van de supportstructuur is niet belangrijk, aangezien deze na het printen wordt verwijderd." -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Afstand Uitloopscherm" +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Vulsnelheid Supportstructuur" -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "Optimaal vertakkingsbereik" +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "De snelheid waarmee de supportvulling wordt geprint. Als u de vulling langzamer print, wordt de stabiliteit verbeterd." -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Printvolgorde van wanden optimaliseren" +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Vulsnelheid Verbindingsstructuur" -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "Optimaliseer de volgorde waarin wanden worden geprint om het aantal intrekbewegingen en de afgelegde afstand te verkleinen. Deze instelling is gunstig voor de meeste onderdelen. Bij sommige onderdelen duurt het printen echter langer. Controleer daarom de verwachte printtijd met en zonder optimalisatie. De eerste laag wordt niet geoptimaliseerd als u brim kiest als hechting aan platform." +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "De snelheid waarmee de supportdaken en -vloeren worden geprint. Als u deze langzamer print, wordt de kwaliteit van de overhang verbeterd." + +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Snelheid supportdak" -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Buitendiameter nozzle" +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "De snelheid waarmee de supportdaken worden geprint. Als u deze langzamer print, wordt de kwaliteit van de overhang verbeterd." -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Buitenwandacceleratie" +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Snelheid supportvloer" -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Extruder buitenwand" +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "De snelheid waarmee de supportvloer wordt geprint. Als u deze langzamer print, hecht het supportmateriaal beter aan de bovenzijde van het model." -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Buitenste wanddoorvoer" +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Snelheid Primepijler" -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Uitsparing Buitenwand" +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "De snelheid waarmee de primepijler wordt geprint. Als u de primepijler langzamer print, wordt deze stabieler. Dit is zinvol wanneer de hechting tussen de verschillende filamenten niet optimaal is." -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "Schok Buitenwand" +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Bewegingssnelheid" -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Lijnbreedte Buitenwand" +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "De snelheid waarmee bewegingen plaatsvinden." -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Snelheid Buitenwand" +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Snelheid Eerste Laag" -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Veegafstand buitenwand" +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "De snelheid waarmee de eerste laag wordt geprint. Hiervoor wordt een lagere waarde aanbevolen om hechting aan het platform te verbeteren. Heeft geen invloed op de hechtstructuren van het platform zelf, zoals brim en raft." -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Buitenwanden van verschillende eilanden in dezelfde laag worden achtereenvolgens geprint. Wanneer ingeschakeld, wordt de hoeveelheid stroomveranderingen beperkt omdat wanden één type tegelijk worden geprint. Wanneer uitgeschakeld, wordt het aantal verplaatsingen tussen eilanden verminderd omdat wanden op dezelfde eilanden worden gegroepeerd." +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Printsnelheid Eerste Laag" -msgctxt "brim_location option outside" -msgid "Outside Only" -msgstr "" +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "De snelheid waarmee de eerste laag wordt geprint. Hiervoor wordt een lagere waarde aanbevolen om hechting aan het platform te verbeteren." -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "Van buiten naar binnen" +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Bewegingssnelheid Eerste Laag" -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Hoek Overhangende Wand" +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "De snelheid van de bewegingen tijdens het printen van de eerste laag. Hiervoor wordt een lagere waarde aanbevolen om te voorkomen dat eerder geprinte delen van het platform worden getrokken. De waarde van deze instelling kan automatisch worden berekend uit de verhouding tussen de bewegingssnelheid en de printsnelheid." -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Snelheid Overhangende Wand" +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Skirt-/Brimsnelheid" -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "Overhangende wanden worden geprint met een snelheid die gelijk is aan dit percentage van hun normale printsnelheid." +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "De snelheid waarmee de skirt en de brim worden geprint. Normaal gebeurt dit met dezelfde snelheid als de snelheid van de eerste laag, maar in sommige situaties wilt u de skirt of de brim mogelijk met een andere snelheid printen." -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Pauzeren na het ongedaan maken van intrekken." +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Snelheid Z-sprong" -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "Percentage ventilatorsnelheid tijdens het printen van brugwanden en -skin." +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "De snelheid waarmee de verticale Z-beweging wordt gemaakt voor Z-sprongen. Dit is meestal lager dan de printsnelheid, omdat het platform of de rijbrug van de machine moeilijker te verplaatsen is." -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "Percentage ventilatorsnelheid tijdens het printen van de tweede brugskinlaag." +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Aantal Lagen met Lagere Printsnelheid" -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "Percentage van de ventilatorsnelheid dat tijdens het printen van skinregio's direct boven de supportstructuur moet worden gebruikt. Bij gebruikmaking van een hoge ventilatorsnelheid kan de supportstructuur gemakkelijker worden verwijderd." +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "De eerste lagen worden minder snel geprint dan de rest van het model, om ervoor te zorgen dat dit zich beter hecht aan het platform en om de kans dat de print slaagt te vergroten. Tijdens het printen van deze lagen wordt de snelheid geleidelijk opgevoerd." -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "Percentage ventilatorsnelheid tijdens het printen van de derde brugskinlaag." +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Verhouding voor afstemmen doorvoer" -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "Polygonen in geslicete lagen, die een kleinere omtrek hebben dan deze waarde, worden eruit gefilterd. Bij lagere waarden krijgt het raster een hogere resolutie, waardoor het slicen langer duurt. Dit is voornamelijk bedoeld voor SLA-printers met een hoge resolutie en zeer kleine 3D-modellen die veel details bevatten." +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "Op doorvoerbreedte gebaseerde correctiefactor voor de snelheid. Op 0% wordt de bewegingssnelheid gelijk gehouden aan de printsnelheid. Op 100% wordt de bewegingssnelheid zo aangepast dat de stroom (in mm³/s) constant is, d.w.z. dat alle lijnen die half zo breed zijn als de normale lijnbreedte, tweemaal zo snel worden geprint en lijnen die twee maal zo breed zijn, half zo snel. Een waarde groter dan 100% kan de hogere druk compenseren die nodig is voor de extrusie van brede lijnen." -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "Geprefereerde vertakkingshoek" +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Acceleratieregulering Inschakelen" -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "Voorkom herhaaldelijke overgangen tussen een wand meer en een wand minder. Deze marge vergroot het aantal lijnbreedtes dat volgt op [minimumbreedte wandlijn - marge, 2 * minimumbreedte wandlijn + marge]. Door de marge te vergroten reduceert u het aantal overgangen, wat weer het aantal doorvoerstarts/-stops en de tijd van de beweging reduceert. Een grote variatie in lijnbreedtes kan echter wel leiden tot problemen met te geringe of te hoge extrusie." +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "Hiermee stelt u de printkopacceleratie in. Door het verhogen van de acceleratie wordt de printtijd mogelijk verkort ten koste van de printkwaliteit." -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Acceleratie Primepijler" +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Bewegingsacceleratie inschakelen" -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Base" -msgstr "Basis van de Primepijler" +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "Gebruik een aparte acceleratiesnelheid voor verplaatsingen. Indien uitgeschakeld, gebruikt de beweging de acceleratiewaarde van de geprinte lijn op de bestemming." -msgctxt "prime_tower_base_height label" -msgid "Prime Tower Base Height" -msgstr "Hoogte van de basis van de Primepijler" +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Printacceleratie" -msgctxt "prime_tower_base_size label" -msgid "Prime Tower Base Size" -msgstr "Grootte van de basis van de Primepijler" +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "De acceleratie tijdens het printen." -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Slope" -msgstr "Basis hellingshoek van de Prime Toren" +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Vulacceleratie" -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Doorvoer Primepijler" +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "De acceleratie tijdens het printen van de vulling." -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "Schok Primepijler" +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Wandacceleratie" -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Lijnbreedte Primepijler" +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "De acceleratie tijdens het printen van de wanden." -msgctxt "prime_tower_max_bridging_distance label" -msgid "Prime Tower Maximum Bridging Distance" -msgstr "" +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Buitenwandacceleratie" -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Minimumvolume primepijler" +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "De acceleratie tijdens het printen van de buitenste wanden." -msgctxt "prime_tower_raft_base_line_spacing label" -msgid "Prime Tower Raft Line Spacing" -msgstr "Lijnafstand van het vlot van de Primepijler" +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Binnenwandacceleratie" -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Formaat Primepijler" +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "De acceleratie tijdens het printen van alle binnenwanden." -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Snelheid Primepijler" +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Versnelling van de buitenste wand op bovenlaag" -msgctxt "prime_tower_mode label" -msgid "Prime Tower Type" -msgstr "" +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "De versnelling waarmee de buitenste muren van het bovenoppervlak worden geprint." -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "X-positie Primepijler" +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Versnelling van de binnenwand op bovenlaag" -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Y-positie Primepijler" +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "De versnelling waarmee de binnenwanden van het bovenoppervlak worden geprint." -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Printacceleratie" +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Acceleratie bovenskin" -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Printschok" +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "De acceleratie tijdens het printen van de bovenste skinlagen." -msgctxt "ppr label" -msgid "Print Process Reporting" -msgstr "" +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Acceleratie Boven-/Onderkant" + +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "De acceleratie tijdens het printen van de boven-/onderlagen." -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Printvolgorde" +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Acceleratie Supportstructuur" -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Printsnelheid" +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "De acceleratie tijdens het printen van de supportstructuur." -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Dunne wanden printen" +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Acceleratie Supportvulling" -msgctxt "brim_location description" -msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." -msgstr "" +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "De acceleratie tijdens het printen van de supportvulling." -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "Print een pijler naast de print, waarop het materiaal na iedere nozzlewisseling wordt ingespoeld." +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Acceleratie Verbindingsstructuur" -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "Print alleen vulstructuren waarvan de bovenkant van het model moet worden ondersteund. Hiermee reduceert u de printtijd en het materiaalgebruik. Dit kan echter leiden tot een niet gelijkmatige objectsterkte." +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "De acceleratie tijdens het printen van de supportdaken en -vloeren. Als u deze met een lagere acceleratie print, wordt de kwaliteit van de overhang verbeterd." -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Print strijklijnen in een volgorde die ervoor zorgt dat ze altijd in één richting overlappen met aangrenzende lijnen. Hierdoor duurt het iets langer om te printen, maar platte oppervlakken zien er dan consistenter uit." +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Acceleratie supportdak" -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "Print modellen als matrijs, die vervolgens kan worden gegoten om een model te krijgen dat lijkt op de modellen op het platform." +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "De acceleratie tijdens het printen van de supportdaken. Als u deze met een lagere acceleratie print, wordt de kwaliteit van de overhang verbeterd." -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "Print delen van het model die horizontaal dunner zijn dan de maat van de nozzle." +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Acceleratie supportvloer" -msgctxt "raft_surface_monotonic description" -msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." -msgstr "" +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "De acceleratie tijdens het printen van de supportvloeren. Als u deze met een lagere acceleratie print, hecht het supportmateriaal beter aan de bovenzijde van het model." -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "Printsnelheid tijdens het printen van de tweede brugskinlaag." +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Acceleratie Primepijler" -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "Printsnelheid tijdens het printen van de derde brugskinlaag." +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "De acceleratie tijdens het printen van de primepijler." -msgctxt "print_temp_anomaly_limit label" -msgid "Print temperature Limit" -msgstr "" +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Bewegingsacceleratie" -msgctxt "print_temp_warn_limit label" -msgid "Print temperature Warning" -msgstr "" +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "De acceleratie tijdens het uitvoeren van bewegingen." -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "Print de vulling voordat de wanden worden geprint. Wanneer u eerst de wanden print, worden deze nauwkeuriger geprint, maar wordt de overhang mogelijk van mindere kwaliteit. Wanneer u eerst de vulling print, worden de wanden steviger, maar schijnt het vulpatroon mogelijk door." +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Acceleratie Eerste Laag" -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Print de lijnen van de bovenlaag in een volgorde die ervoor zorgt dat ze altijd in één richting overlappen met aangrenzende lijnen. Hierdoor duurt het iets langer om te printen, maar platte oppervlakken zien er dan consistenter uit." +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "De acceleratie voor de eerste laag." -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Print boven- en onderlijnen in een volgorde die ervoor zorgt dat ze altijd in één richting overlappen met aangrenzende lijnen. Hierdoor duurt het iets langer om te printen, maar platte oppervlakken zien er dan consistenter uit." +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Printacceleratie Eerste Laag" -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Printtemperatuur" +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "De acceleratie tijdens het printen van de eerste laag." -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Printtemperatuur van de eerste laag" +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Bewegingsacceleratie Eerste Laag" -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "Het printen van de binnenste skirt-lijn met meerdere lagen maakt het gemakkelijk om de skirt te verwijderen." +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "De acceleratie tijdens het uitvoeren van bewegingen in de eerste laag." -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "Print op afwisselende lagen een extra wand. Op deze manier wordt vulling tussen deze extra wanden gevangen, wat leidt tot sterkere prints." +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Acceleratie Skirt/Brim" -msgctxt "resolution label" -msgid "Quality" -msgstr "Kwaliteit" +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "De acceleratie tijdens het printen van de skirt en de brim. Normaal gebeurt dit met dezelfde acceleratie als die van de eerste laag, maar in sommige situaties wilt u de skirt of de brim wellicht met een andere acceleratie printen." -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Afgeknotte kubus" +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Schokregulering Inschakelen" -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Raft" +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "Hiermee stelt u de schok van de printkop in wanneer de snelheid in de X- of Y-as verandert. Door het verhogen van de schok wordt de printtijd mogelijk verkort ten koste van de printkwaliteit." -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Luchtruimte Raft" +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Bewegingsschok inschakelen" -msgctxt "raft_base_margin label" -msgid "Raft Base Extra Margin" -msgstr "" +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "Gebruik een apart schokpercentage voor verplaatsingen. Indien uitgeschakeld, gebruikt de beweging de schokwaarde van de geprinte lijn op de bestemming." -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Raft basisextruder" +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Printschok" -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Ventilatorsnelheid Grondlaag Raft" +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "De maximale onmiddellijke snelheidsverandering van de printkop." -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Tussenruimte Lijnen Grondvlak Raft" +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Vulschok" -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Lijnbreedte Grondvlak Raft" +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de vulling." -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Printacceleratie Grondvlak Raft" +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Wandschok" -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Printschok Grondvlak Raft" +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de wanden." -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Printsnelheid Grondvlak Raft" +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "Schok Buitenwand" -msgctxt "raft_base_smoothing label" -msgid "Raft Base Smoothing" -msgstr "" +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de buitenwanden." -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Dikte Grondvlak Raft" +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Schok Binnenwand" -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Aantal wanden grondvlak raft" +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van alle binnenwanden." -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Extra Marge Raft" +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Schok van de binnenste muur van het bovenoppervlak" -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Ventilatorsnelheid Raft" +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "De maximale plotselinge snelheidsverandering waarmee de binnenste muren van het bovenoppervlak worden geprint." -msgctxt "raft_interface_margin label" -msgid "Raft Middle Extra Margin" -msgstr "" +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Schok van de buitenste muur van het bovenoppervlak" -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Raft middelste extruder" +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "De maximale plotselinge snelheidsverandering waarmee de buitenste muren van het bovenoppervlak worden geprint." -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Ventilatorsnelheid Midden Raft" +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Schok bovenskin" -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Raft middelste lagen" +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de bovenste skinlagen." + +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Schok Boven-/Onderkant" -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Lijnbreedte Midden Raft" +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de boven-/onderlagen." -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Printacceleratie Midden Raft" +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Schok Supportstructuur" -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Printschok Midden Raft" +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de supportstructuur." -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Printsnelheid Midden Raft" +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Schok Supportvulling" -msgctxt "raft_interface_smoothing label" -msgid "Raft Middle Smoothing" -msgstr "" +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de supportvulling." -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Tussenruimte Midden Raft" +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Schok Verbindingsstructuur" -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Lijndikte Midden Raft" +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de supportdaken en -vloeren." -msgctxt "raft_interface_wall_count label" -msgid "Raft Middle Wall Count" -msgstr "" +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Schok supportdak" -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Printacceleratie Raft" +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de supportdaken." -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Printschok Raft" +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Schok supportvloer" -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Printsnelheid Raft" +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de supportvloeren." -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Raft effenen" +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "Schok Primepijler" -msgctxt "raft_surface_margin label" -msgid "Raft Top Extra Margin" -msgstr "" +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de primepijler." -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Raft bovenste extruder" +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Bewegingsschok" -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Ventilatorsnelheid Bovenkant Raft" +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het uitvoeren van bewegingen." -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Dikte Bovenlaag Raft" +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Schok Eerste Laag" -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Bovenlagen Raft" +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "De maximale onmiddellijke snelheidsverandering in de eerste laag." -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Breedte Bovenste Lijn Raft" +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Printschok Eerste Laag" -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Printacceleratie Bovenkant Raft" +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de eerste laag." -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Printschok Bovenkant Raft" +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Bewegingsschok Eerste Laag" -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Printsnelheid Bovenkant Raft" +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "De acceleratie tijdens het uitvoeren van bewegingen in de eerste laag." -msgctxt "raft_surface_smoothing label" -msgid "Raft Top Smoothing" -msgstr "" +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Schok Skirt/Brim" -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Bovenruimte Raft" +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de skirt en de brim." -msgctxt "raft_surface_wall_count label" -msgid "Raft Top Wall Count" -msgstr "" +msgctxt "travel label" +msgid "Travel" +msgstr "Beweging" -msgctxt "raft_wall_count label" -msgid "Raft Wall Count" -msgstr "" +msgctxt "travel description" +msgid "travel" +msgstr "beweging" -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Willekeurig" +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Intrekken Inschakelen" -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "Start willekeurig invullen" +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Hiermee wordt het filament ingetrokken wanneer de nozzle over een niet-printbaar gebied gaat." -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "Bepaal willekeurig welke invullijn het eerst wordt geprint. Dit voorkomt dat één segment het sterkst wordt, maar gaat ten koste van een extra beweging." +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Intrekken bij laagwisseling" -msgctxt "magic_fuzzy_skin_enabled description" -msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." -msgstr "Door willekeurig trillen tijdens het printen van de buitenwand wordt het oppervlak hiervan ruw en ongelijk." +msgctxt "retract_at_layer_change description" +msgid "Retract the filament when the nozzle is moving to the next layer." +msgstr "Trek het filament in wanneer de nozzle naar de volgende laag beweegt." -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Rechthoekig" +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Intrekafstand" -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "Normale Ventilatorsnelheid" +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "De lengte waarover het materiaal wordt ingetrokken tijdens een intrekbeweging." -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Normale Ventilatorsnelheid op Hoogte" +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Intreksnelheid" -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Normale Ventilatorsnelheid op Laag" +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "De snelheid waarmee het filament tijdens een intrekbeweging wordt ingetrokken en geprimed." -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "Drempelwaarde Normale/Maximale Ventilatorsnelheid" +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Intreksnelheid (Intrekken)" -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Relatieve Extrusie" +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "De snelheid waarmee het filament tijdens een intrekbeweging wordt ingetrokken." -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Alle Gaten Verwijderen" +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Intreksnelheid (Primen)" -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Lege eerste lagen verwijderen" +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "De snelheid waarmee het filament tijdens een intrekbeweging wordt geprimed." -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Rastersnijpunt verwijderen" +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Extra Primehoeveelheid na Intrekken" -msgctxt "raft_base_remove_inside_corners label" -msgid "Remove Raft Base Inside Corners" -msgstr "" +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "Tijdens een beweging kan materiaal verloren gaan, wat met deze optie kan worden gecompenseerd." -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Binnenhoeken raft verwijderen" +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Minimale Afstand voor Intrekken" -msgctxt "raft_interface_remove_inside_corners label" -msgid "Remove Raft Middle Inside Corners" -msgstr "" +msgctxt "retraction_min_travel description" +msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." +msgstr "De minimale bewegingsafstand voordat het filament kan worden ingetrokken. Hiermee vermindert u het aantal intrekkingen in een klein gebied." -msgctxt "raft_surface_remove_inside_corners label" -msgid "Remove Raft Top Inside Corners" -msgstr "" +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Maximaal Aantal Intrekbewegingen" -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "Hiermee verwijdert u gebieden waar meerdere rasters elkaar overlappen. Deze functie kan worden gebruikt als samengevoegde objecten van twee materialen elkaar overlappen." +msgctxt "retraction_count_max description" +msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." +msgstr "Deze instelling beperkt het aantal intrekbewegingen dat kan worden uitgevoerd binnen het gebied Minimaal afstandsgebied voor intrekken. Extra intrekbewegingen binnen dit gebied worden genegeerd. Hiermee voorkomt u dat hetzelfde stuk filament meerdere keren wordt ingetrokken en dus kan worden geplet en kan gaan haperen." -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "Hiermee worden de lege lagen onder de eerste geprinte laag verwijderd, indien aanwezig. Als u deze instelling uitschakelt, kunnen lege eerste lagen ontstaan als de Slicetolerantie is ingesteld op Exclusief of Midden." +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Minimaal Afstandsgebied voor Intrekken" -msgctxt "raft_base_remove_inside_corners description" -msgid "Remove inside corners from the raft base, causing the raft to become convex." -msgstr "" +msgctxt "retraction_extrusion_window description" +msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." +msgstr "Dit is het gebied waarop het maximaal aantal intrekbewegingen van toepassing is. Deze waarde moet ongeveer overeenkomen met de Intrekafstand, waarmee in feite het aantal intrekbewegingen op hetzelfde deel van het materiaal wordt beperkt." -msgctxt "raft_interface_remove_inside_corners description" -msgid "Remove inside corners from the raft middle part, causing the raft to become convex." -msgstr "" +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Combing-modus" -msgctxt "raft_surface_remove_inside_corners description" -msgid "Remove inside corners from the raft top part, causing the raft to become convex." -msgstr "" +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "Met combing blijft de nozzle tijdens bewegingen binnen eerder geprinte delen. Hierdoor zijn de bewegingen iets langer, maar hoeft het filament minder vaak te worden ingetrokken. Als combing is uitgeschakeld, wordt het materiaal ingetrokken en beweegt de nozzle in een rechte lijn naar het volgende punt. Het is ook mogelijk om combing over boven-/onderskingedeelten te voorkomen of combing alleen binnen de vulling te gebruiken." -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Verwijdering van de binnenhoeken van de raft maakt de raft bol." +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Uit" -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "Verwijder de gaten in elke laag en behoudt u alleen de buitenvorm. Hiermee negeert u eventuele onzichtbare interne geometrie. U negeert echter ook gaten in lagen die u van boven- of onderaf kunt zien." +msgctxt "retraction_combing option all" +msgid "All" +msgstr "Alles" -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Niet op buitenzijde" -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Niet in skin" -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "Vervang het buitenste gedeelte van het patroon boven-/onderkant door een aantal concentrische lijnen. Het gebruik van 1 of 2 lijnen verbetert daken die op vulmateriaal beginnen." +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "Binnen Vulling" -msgctxt "ppr description" -msgid "Reporting events that go out of set thresholds" -msgstr "" +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Max. combing-afstand zonder intrekken" -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "Plaatsings voorkeur" +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "Wanneer dit groter dan nul is, vindt bij een combing-beweging die langer is dan deze afstand, intrekking plaats. Wanneer dit nul is, is er geen maximum en vindt bij combing-bewegingen geen intrekking plaats." msgctxt "travel_retract_before_outer_wall label" msgid "Retract Before Outer Wall" msgstr "Intrekken voor buitenwand" -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Intrekken bij laagwisseling" - -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Hiermee wordt het filament ingetrokken wanneer de nozzle over een niet-printbaar gebied gaat." - -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Hiermee wordt het filament ingetrokken wanneer de nozzle over een niet-printbaar gebied gaat." - -msgctxt "retract_at_layer_change description" -msgid "Retract the filament when the nozzle is moving to the next layer." -msgstr "Trek het filament in wanneer de nozzle naar de volgende laag beweegt." - -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Intrekafstand" - -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Extra Primehoeveelheid na Intrekken" +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "Altijd intrekken voordat wordt bewogen om met een buitenwand te beginnen." -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Minimale Afstand voor Intrekken" +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Geprinte delen mijden tijdens bewegingen" -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Intreksnelheid (Primen)" +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "Tijdens bewegingen mijdt de nozzle delen die al zijn geprint. Deze optie is alleen beschikbaar wanneer combing ingeschakeld is." -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Intreksnelheid (Intrekken)" +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Supportstructuren mijden tijdens bewegingen" -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Intreksnelheid" +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "Tijdens bewegingen mijdt de nozzle supportstructuren die al zijn geprint. Deze optie is alleen beschikbaar wanneer combing ingeschakeld is." -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Rechts" +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Mijdafstand Tijdens Bewegingen" -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "Zet de ventilatorsnelheid op 0-1" +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "De afstand tussen de nozzle en geprinte delen wanneer deze tijdens bewegingen worden gemeden." -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "Zet de ventilatorsnelheid op een waarde tussen 0 en 1 in plaats van tussen 0 en 256." +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "Begin laag X" -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Schaalfactor krimpcompensatie" +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "De X-coördinaat van de positie nabij het deel waar met het printen van elke laag kan worden begonnen." -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "Scène heeft supportrasters" +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Begin laag Y" -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Voorkeur van naad en hoek" +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "De Y-coördinaat van de positie nabij het deel waar met het printen van elke laag kan worden begonnen." -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "Handmatig afdrukvolgorde instellen" +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Z-sprong wanneer ingetrokken" -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "Stel de hoogte van het tochtscherm in. U kunt ervoor kiezen een tochtscherm met dezelfde hoogte als het model of lager te printen." +msgctxt "retraction_hop_enabled description" +msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "Tijdens het intrekken wordt het platform omlaag gebracht om ruimte te creëren tussen de nozzle en de print. Hiermee wordt voorkomen dat de nozzle de print raakt tijdens een beweging en wordt de kans verkleind dat de print van het platform wordt gestoten." -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Instellingen die worden gebruikt voor het printen met meerdere extruders." +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Z-sprong Alleen over Geprinte Delen" -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "Instellingen die alleen worden gebruikt als CuraEngine niet wordt aangeroepen door de Cura-frontend." +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "Voer alleen een Z-sprong uit bij bewegingen over geprinte delen die niet kunnen worden vermeden met Geprinte Delen Mijden Tijdens Bewegingen." -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Initiële terugtrekking gedeelde nozzle" +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Hoogte Z-sprong" -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Scherpste hoek" +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Het hoogteverschil dat wordt aangehouden tijdens een Z-sprong." -msgctxt "shell description" -msgid "Shell" -msgstr "Shell" +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Z-sprong na Wisselen Extruder" -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Kortste" +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "Nadat de machine van de ene extruder naar de andere is gewisseld, wordt het platform omlaag gebracht om ruimte te creëren tussen de nozzle en de print. Hiermee wordt voorkomen dat de nozzle doorgevoerd materiaal achterlaat op de buitenzijde van een print." -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Machinevarianten tonen" +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Hoogte Z-sprong na wisselen extruder" -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Lagen skinrandondersteuning" +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "Het hoogteverschil dat wordt aangehouden tijdens een Z-sprong na wisselen extruder." -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Dikte skinrandondersteuning" +msgctxt "cooling label" +msgid "Cooling" +msgstr "Koelen" -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Uitbreidingsafstand van skin" +msgctxt "cooling description" +msgid "Cooling" +msgstr "Koelen" -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Overlap Skin" +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Koelen van de Print Inschakelen" -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Overlappercentage Skin" +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "Hiermee schakelt u de printkoelventilatoren in tijdens het printen. De ventilatoren verbeteren de printkwaliteit van lagen met een korte laagtijd en brugvorming/overhang." -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Verwijderingsbreedte skin" +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Ventilatorsnelheid" -msgctxt "min_skin_width_for_expansion description" -msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." -msgstr "Skingebieden die smaller zijn dan deze waarde, worden niet uitgebreid. Dit voorkomt het uitbreiden van smalle skingebieden die worden gemaakt wanneer het modeloppervlak een nagenoeg verticale helling heeft." +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "De snelheid waarmee de printventilatoren draaien." -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "Sla elke N verbindingslijnen één lijn over zodat de supportstructuur gemakkelijker kan worden weggebroken." +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "Normale Ventilatorsnelheid" -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "Sla enkele verbindingen tussen lijnen van de supportstructuur over zodat deze gemakkelijker kan worden weggebroken. Deze instelling is van toepassing op het zigzag-vulpatroon van de supportstructuur." +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "De snelheid waarmee de ventilatoren draaien voordat de drempelwaarde wordt bereikt. Wanneer een laag sneller wordt geprint dan de drempelwaarde, wordt de ventilatorsnelheid geleidelijk verhoogd tot de maximale ventilatorsnelheid." -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Skirt" +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Maximale Ventilatorsnelheid" -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Skirtafstand" +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "De snelheid waarmee de ventilatoren draaien bij de minimale laagtijd. Wanneer de drempelwaarde wordt bereikt, wordt de ventilatorsnelheid geleidelijk verhoogd van de normale ventilatorsnelheid naar de maximale ventilatorsnelheid." -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "Hoogte Skirt" +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "Drempelwaarde Normale/Maximale Ventilatorsnelheid" -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Aantal Skirtlijnen" +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "De laagtijd waarmee de drempelwaarde tussen de normale ventilatorsnelheid en de maximale ventilatorsnelheid wordt ingesteld. Voor lagen die langzamer worden geprint, draaien de ventilatoren op normale snelheid. Bij lagen die sneller worden geprint, draaien de ventilatoren op maximale snelheid." -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Acceleratie Skirt/Brim" +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Startsnelheid ventilator" -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Extruder Skirt/Brim" +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "De snelheid waarmee de ventilatoren draaien bij de start van het printen. Tijdens het printen van de volgende lagen wordt de ventilatorsnelheid geleidelijk verhoogd tot de laag waarin de snelheid overeenkomt met de normale ventilatorsnelheid op hoogte." -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Doorvoer skirt/brim" +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Normale Ventilatorsnelheid op Hoogte" -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Schok Skirt/Brim" +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "De hoogte waarop de ventilatoren op normale snelheid draaien. Tijdens het printen van de onderliggende lagen wordt de ventilatorsnelheid geleidelijk verhoogd van de startsnelheid ventilator naar de normale ventilatorsnelheid." -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Lijnbreedte Skirt/Brim" +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Normale Ventilatorsnelheid op Laag" -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Minimale Skirt-/Brimlengte" +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "De laag waarop de ventilatoren op normale snelheid draaien. Als de normale ventilatorsnelheid op hoogte ingeschakeld is, wordt deze waarde berekend en op een geheel getal afgerond." -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Skirt-/Brimsnelheid" +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Minimale Laagtijd" -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Slicetolerantie" +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "De tijd die minimaal aan het printen van een laag wordt besteed. Hierdoor wordt de printer gedwongen langzamer te printen zodat deze ten minste de ingestelde tijd gebruikt voor het printen van een laag. Hierdoor kan het geprinte materiaal voldoende afkoelen voordat de volgende laag wordt geprint. Het printen van lagen kan nog steeds minder lang duren dan de minimale laagtijd als Printkop optillen is uitgeschakeld en als anders niet zou worden voldaan aan de Minimumsnelheid." -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Kleine kenmerken eerste laagsnelheid" +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Minimumsnelheid" -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Maximale lengte klein kenmerk" +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "De minimale printsnelheid die wordt aangehouden ondanks vertragen vanwege de minimale laagtijd. Als de printer te zeer vertraagt, wordt de druk in de nozzle te laag, wat leidt tot slechte printkwaliteit." -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Klein kenmerksnelheid" +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Printkop Optillen" -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Maximale grootte kleine gaten" +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "Wanneer de minimale snelheid wordt bereikt vanwege de minimale laagtijd, wordt de printkop van de print verwijderd totdat de minimale laagtijd bereikt is." msgctxt "cool_min_temperature label" msgid "Small Layer Printing Temperature" msgstr "Printtemperatuur van de kleine laag" -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "Kleine bovenkant/onderkant op oppervlak" +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "Verlaag geleidelijk naar deze temperatuur bij het printen met lagere snelheden vanwege de minimale laagtijd." -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "Kleine breedte boven/onderzijde" +msgctxt "support label" +msgid "Support" +msgstr "Supportstructuur" -msgctxt "small_feature_speed_factor_0 description" -msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "Kleine kenmerken op de eerste laag worden geprint met een snelheid die gelijk is aan dit percentage van hun normale printsnelheid. Langzamer printen kan de hechting en nauwkeurigheid verbeteren." +msgctxt "support description" +msgid "Support" +msgstr "Supportstructuur" -msgctxt "small_feature_speed_factor description" -msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "Kleine kernmerken worden geprint met een snelheid die gelijk is aan dit percentage van hun normale printsnelheid. Langzamer printen kan de hechting en nauwkeurigheid verbeteren." +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Support genereren" -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "Kleine boven-/ondergebieden worden gevuld met muren in plaats van het standaard boven-/onderpatroon. Dit helpt om schokkerige bewegingen te voorkomen. Standaard uit voor de bovenste (aan lucht blootgestelde) laag (zie 'Kleine boven-/onderkant op oppervlak')." +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "Genereer structuren om delen van het model met overhang te ondersteunen. Zonder deze structuren zakken dergelijke delen in tijdens het printen." -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "Slimme Brim" +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Extruder Supportstructuur" -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Slim verbergen" +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "De extruder train die wordt gebruikt voor het printen van de supportstructuur. Deze optie wordt gebruikt in meervoudige doorvoer." -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Gespiraliseerde contouren effenen" +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Extruder Supportvulling" -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "Maak de gespiraliseerde contouren vlak om de zichtbaarheid van de Z-naad te verminderen (de Z-naad mag in de print nauwelijks zichtbaar zijn, maar is nog wel zichtbaar in de laagweergave). Houd er rekening mee dat fijne oppervlaktedetails worden vervaagd door het effenen." +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "De extruder train die wordt gebruikt voor het printen van de supportvulling. Deze optie wordt gebruikt in meervoudige doorvoer." -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "Tijdens een beweging kan materiaal verloren gaan, wat met deze optie kan worden gecompenseerd." +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Extruder Eerste Laag van Support" -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "Tijdens veegbewegingen kan materiaal verloren gaan, wat met deze optie kan worden gecompenseerd." +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "De extruder train die wordt gebruikt voor het printen van de eerste laag van de supportvulling. Deze optie wordt gebruikt in meervoudige doorvoer." -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Speciale Modi" +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Extruder Verbindingsstructuur" -msgctxt "speed description" -msgid "Speed" -msgstr "Snelheid" +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "De extruder train die wordt gebruikt voor het printen van de daken en vloeren van de supportstructuur. Deze optie wordt gebruikt in meervoudige doorvoer." -msgctxt "speed label" -msgid "Speed" -msgstr "Snelheid" +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Extruder supportdak" -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "Snelheid waarmee de Z-as wordt verplaatst tijdens de sprong." +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "De extruder train die wordt gebruikt voor het printen van de supportdaken. Deze optie wordt gebruikt in meervoudige doorvoer." -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Buitencontour Spiraliseren" +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Extruder supportvloer" -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "Met spiraliseren wordt de Z-beweging van de buitenrand vloeiender. Hierdoor ontstaat een geleidelijke Z-verhoging over de hele print. Met deze functie maakt u van een massief model een enkelwandige print met een solide bodem. Deze functie dient alleen te worden ingeschakeld wanneer elke laag uit een enkel deel bestaat." +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "De extruder train die wordt gebruikt voor het printen van de supportvloeren. Deze optie wordt gebruikt in meervoudige doorvoer." -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Stand-bytemperatuur" +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Supportstructuur" -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "Start G-code" +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "Kiest tussen de beschikbare technieken om support te genereren. \"Normale\" support creëert een supportstructuur direct onder de overhangende delen en laat die gebieden recht naar beneden vallen. \"Boom\"-support creëert takken naar de overhangende gebieden die het model op de toppen van die takken ondersteunen, en laat de takken rond het model kruipen om het zoveel mogelijk vanaf het platform te ondersteunen." -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "Het startpunt voor elk pad in een laag. Wanneer paden in opeenvolgende lagen op hetzelfde punt beginnen, kan in de print een verticale naad zichtbaar zijn. De naad is het eenvoudigst te verwijderen wanneer deze zich nabij een door de gebruiker opgegeven locatie van de print bevindt. De onnauwkeurigheden vallen minder op wanneer het pad steeds op een willekeurige plek begint. De print is sneller af wanneer het kortste pad wordt gekozen." +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Normaal" -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Stappen per millimeter (E)" +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Boom" -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Stappen per millimeter (X)" +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "Maximale vertakkingshoek" -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Stappen per millimeter (Y)" +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "De maximale hoek van de takken terwijl ze rond het model groeien. Gebruik een lagere hoek om ze verticaler en stabieler te maken. Gebruik een hogere hoek om meer bereik te hebben." + +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "Takdiameter" + +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "Hiermee stelt u de diameter in van de dunste takken van de boomsupportstructuur. Dikkere takken zijn steviger. Takken die dichter bij de stam liggen, zijn dikker dan dit." + +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "Stamdiameter" + +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "De diameter van de breedste takken van de boomondersteuning. Een dikkere tak is steviger; een dunnere tak neemt minder ruimte in beslag op het platform." -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Stappen per millimeter (Z)" +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "Hoek takdiameter" -msgctxt "support description" -msgid "Support" -msgstr "Supportstructuur" +msgctxt "support_tree_branch_diameter_angle description" +msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." +msgstr "De hoek van de diameter van de takken terwijl ze naar beneden toe geleidelijk dikker worden. Met de hoekinstelling 0 zijn de takken over de gehele lengte even dik. Een kleine hoek verbetert de stabiliteit van de boomsupportstructuur." -msgctxt "support label" -msgid "Support" -msgstr "Supportstructuur" +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Plaatsing Supportstructuur" -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Acceleratie Supportstructuur" +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "Platform Aanraken" -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Afstand van Onderkant Supportstructuur" +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "Overal" -msgctxt "support_bottom_wall_count label" -msgid "Support Bottom Wall Line Count" -msgstr "Aantal wandlijnen van de ondersteuningsbodem" +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "Geprefereerde vertakkingshoek" -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Aantal supportbrimlijnen" +msgctxt "support_tree_angle_slow description" +msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." +msgstr "De geprefereerde hoek van de takken, wanneer ze het model niet hoeven te vermijden. Gebruik een lagere hoek om ze verticaler en stabieler te maken. Gebruik een hogere hoek voor takken om sneller samen te voegen." -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Breedte supportbrim" +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "Diameterverhoging naar model" -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Aantal Lijnen Supportstuk" +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "De diameter van een tak die moet aansluiten op het model mag maximaal toenemen door samen te voegen met takken die de bouwplaat zouden kunnen bereiken. Als u dit verhoogt, wordt de printtijd verkort, maar wordt het ondersteuningsgebied dat op het model rust vergroot" -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Grootte Supportstuk" +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "Minimale hoogte tot model" -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "Dichtheid Supportstructuur" +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "Hoe groot moet een tak zijn als deze op het model wordt geplaatst. Voorkomt kleine ondersteunende blobs. Deze instelling wordt genegeerd wanneer een tak een ondersteunend dak ondersteunt." -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Prioriteit Afstand Supportstructuur" +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "Diameter beginlaag" -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Extruder Supportstructuur" +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "Diameter elke tak probeert te bereiken bij het bereiken van de bouwplaat. Verbetert de hechting van het bed." -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Acceleratie supportvloer" +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "Takdichtheid" -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Dichtheid supportvloer" +msgctxt "support_tree_top_rate description" +msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "Hiermee past u de dichtheid aan van de ondersteunende structuur die wordt gebruikt om de tips van de takken te genereren. Een hogere waarde resulteert in een betere overhang, maar de ondersteuning is moeilijker te verwijderen. Gebruik ondersteunend dak voor zeer hoge waarden of zorg ervoor dat de ondersteuningsdichtheid aan de bovenkant even hoog is." -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Extruder supportvloer" +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "Puntdiameter" -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Doorvoer supportvloer" +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "De diameter van de bovenkant van de punt van de takken van de boomsteun." -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Supportvloer horizontale uitbreiding" +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "Takbereik beperken" -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Schok supportvloer" +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "Beperken hoe ver elke tak moet bewegen vanaf het punt dat het ondersteunt. Dit kan de steun steviger maken, maar zal de hoeveelheid takken vergroten (en daardoor het materiaalgebruik/de printtijd)." -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Lijnrichting supportvloer" +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "Optimaal vertakkingsbereik" -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Lijnafstand supportvloer" +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "Een aanbeveling over hoe ver takken kunnen bewegen van de punten die ze ondersteunen. Takken kunnen deze waarde overschrijden om hun bestemming te bereiken (bouwplaat of een plat deel van het model). Als u deze waarde verlaagt, wordt de ondersteuning steviger, maar neemt het aantal takken toe (en daardoor materiaalgebruik/printtijd)." -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Lijnbreedte supportvloer" +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "Plaatsings voorkeur" -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Patroon supportvloer" +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "De voorkeursplaats van de ondersteunende structuren. Als structuren niet op de gewenste locatie kunnen worden geplaatst, worden ze elders geplaatst, zelfs als dat betekent dat ze op het model moeten worden geplaatst." -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Snelheid supportvloer" +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "Op bouwplaat indien mogelijk" -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Dikte supportvloer" +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "Op model indien nodig" -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Doorvoer support" +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Overhanghoek Supportstructuur" -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Horizontale Uitzetting Supportstructuur" +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "De minimale overhanghoek waarbij een supportstructuur wordt toegevoegd. Bij een waarde van 0° wordt elke overhang ondersteund. Bij 90° wordt er geen supportstructuur geprint." -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Acceleratie Supportvulling" +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Patroon Supportstructuur" -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Extruder Supportvulling" +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "Het patroon van de supportstructuur van de print. Met de verschillende beschikbare opties print u stevige of eenvoudig te verwijderen supportstructuren." -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Schok Supportvulling" +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Lijnen" -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Dikte vullaag supportvulling" +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Raster" -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Lijnrichting Vulling Supportstructuur" +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Driehoeken" -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Vulsnelheid Supportstructuur" +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Concentrisch" -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Acceleratie Verbindingsstructuur" +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "Dichtheid Verbindingsstructuur" +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Kruis" -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Extruder Verbindingsstructuur" +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroïde" -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Doorvoer supportinterface" +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Aantal wandlijnen supportstructuur" -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Supportstructuur horizontale uitbreiding" +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Het aantal wanden rond de vulling van de supportstructuur. Met een extra wand wordt de supportstructuur betrouwbaarder en kan de overhang beter worden geprint, maar wordt de printtijd verlengd en wordt meer materiaal gebruikt." -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Schok Verbindingsstructuur" +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Ondersteuning Interface Wandlijn" -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Lijnrichting interface supportstructuur" +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Het aantal muren waarmee de ondersteuningsinterface moet worden omgeven. Door een muur toe te voegen, kan de ondersteuningsprint betrouwbaarder worden gemaakt en kunnen overhangen beter worden ondersteund, maar neemt de printtijd en het gebruikte materiaal toe." -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Lijnbreedte Verbindingsstructuur" +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Aantal wandlijnen ondersteuningsdak" -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Patroon Verbindingsstructuur" +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Het aantal muren waarmee het ondersteuningsinterfacedak kan worden omgeven. Door een muur toe te voegen, kan de ondersteuningsprint betrouwbaarder worden gemaakt en kunnen overhangen beter worden ondersteund, maar neemt de printtijd en het gebruikte materiaal toe." + +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "Aantal wandlijnen van de ondersteuningsbodem" -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "Ondersteuning Interface Prioriteit" +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Het aantal muren waarmee de ondersteuningsinterfacevloer moet worden omgeven. Door een muur toe te voegen, kan de ondersteuningsprint betrouwbaarder worden gemaakt en kunnen overhangen beter worden ondersteund, maar neemt de printtijd en het gebruikte materiaal toe." -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Vulsnelheid Verbindingsstructuur" +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Supportstructuurlijnen verbinden" -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Dikte Verbindingsstructuur" +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "Verbind de uiteinden van de supportstructuurlijnen met elkaar. Als u deze instelling inschakelt, maakt u de supportstructuur robuuster en vermindert u onderextrusie. Er wordt echter meer materiaal verbruikt." -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "Ondersteuning Interface Wandlijn" +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Zigzaglijnen Supportstructuur Verbinden" -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Schok Supportstructuur" +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "Verbind de zigzaglijnen. Hiermee versterkt u de zigzag-supportstructuur." -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "Samenvoegafstand Supportstructuur" +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "Dichtheid Supportstructuur" + +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Past de dichtheid van de supportstructuur aan. Met een hogere waarde krijgt u een betere overhang, maar is de supportstructuur moeilijker te verwijderen." msgctxt "support_line_distance label" msgid "Support Line Distance" msgstr "Lijnafstand Supportstructuur" -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Lijnbreedte Supportstructuur" +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "De afstand tussen de geprinte lijnen van de supportstructuur. Deze instelling wordt berekend op basis van de dichtheid van de supportstructuur." -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Supportstructuur raster" +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "Lijnafstand Supportstructuur Eerste Laag" -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Overhanghoek Supportstructuur" +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "Afstand tussen de lijnen van de supportstructuur voor de eerste laag. Deze wordt berekend op basis van de dichtheid van de supportstructuur." -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Patroon Supportstructuur" +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Lijnrichting Vulling Supportstructuur" -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Plaatsing Supportstructuur" +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst bereikt is, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de standaardhoek van 0 graden wordt gebruikt." -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Acceleratie supportdak" +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Supportbrim inschakelen" -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Dichtheid supportdak" +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "Genereer een brim binnen de supportvulgebieden van de eerste laag. Deze brim wordt niet rondom maar onder de supportstructuur geprint. Als u deze instelling inschakelt, hecht de supportstructuur beter aan het platform." -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Extruder supportdak" +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Breedte supportbrim" -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Doorvoer supportdak" +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "De breedte van de brim die onder de support wordt geprint. Een bredere brim kost meer materiaal, maar hecht beter aan het platform." -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Supportdak horizontale uitbreiding" +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Aantal supportbrimlijnen" -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Schok supportdak" +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "Het aantal lijnen dat voor de supportbrim wordt gebruikt. Meer brimlijnen zorgen voor betere hechting aan het platform, maar kosten wat extra materiaal." -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Lijnrichting supportdak" +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Z-afstand Supportstructuur" -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Lijnafstand supportdak" +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "Afstand van de boven-/onderkant van de ondersteuningsstructuur tot de print. Deze opening zorgt voor ruimte om de ondersteuningen te verwijderen nadat het model is geprint. De bovenste ondersteuningslaag onder het model kan een fractie zijn van de normale lagen." -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Lijnbreedte supportdak" +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Afstand van Bovenkant Supportstructuur" -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Patroon supportdak" +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "De afstand van de bovenkant van de supportstructuur tot de print." -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Snelheid supportdak" +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Afstand van Onderkant Supportstructuur" -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "Dikte Supportdak" +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "Afstand van de print tot de onderkant van de ondersteuning. Let op dat dit wordt afgerond naar de volgende laaghoogte." -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "Aantal wandlijnen ondersteuningsdak" +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "X-/Y-afstand Supportstructuur" -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Snelheid Supportstructuur" +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "Afstand tussen de supportstructuur en de print, in de X- en Y-richting." + +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Prioriteit Afstand Supportstructuur" + +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "Hiermee bepaalt u of de optie X-/Y-afstand supportstructuur voorrang krijgt boven de optie Z-afstand supportstructuur of vice versa. Wanneer X/Y voorrang krijgt boven Z, kan de X-/Y-afstand de supportstructuur wegduwen van het model, waardoor de daadwerkelijke Z-afstand tot de overhang wordt beïnvloed. Dit kan worden uitgeschakeld door de X-/Y-afstand niet toe te passen rond een overhang." + +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y krijgt voorrang boven Z" + +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z krijgt voorrang boven X/Y" + +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Minimale X-/Y-afstand Supportstructuur" + +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "Afstand tussen de supportstructuur en de overhang in de X- en Y-richting." msgctxt "support_bottom_stair_step_height label" msgid "Support Stair Step Height" msgstr "Hoogte Traptreden Supportstructuur" +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "De hoogte van de treden van het trapvormige grondvlak van de supportstructuur die op het model rust. Wanneer u een lage waarde invoert, kan de supportstructuur minder gemakkelijk worden verwijderd. Wanneer u echter een te hoge waarde invoert, kan de supportstructuur instabiel worden. Stel deze waarde in op nul om het trapvormige gedrag uit te schakelen." + msgctxt "support_bottom_stair_step_width label" msgid "Support Stair Step Maximum Width" msgstr "Maximale breedte traptreden supportstructuur" +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "De maximale breedte van de treden van het trapvormige grondvlak van de supportstructuur die op het model rust. Wanneer u een lage waarde invoert, kan de supportstructuur minder gemakkelijk worden verwijderd. Wanneer u echter een te hoge waarde invoert, kan de supportstructuur instabiel worden." + msgctxt "support_bottom_stair_step_min_slope label" msgid "Support Stair Step Minimum Slope Angle" msgstr "Minimale hellingshoek traptreden supportstructuur" -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Supportstructuur" +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "De minimale helling van het gebied voordat traptreden van kracht worden. Lage waarden zouden het gemakkelijker moeten maken om support op ondieperere hellingen te verwijderen. Zeer lage waarden kunnen echter resulteren in een aantal zeer contra-intuïtieve resultaten op andere delen van het model." -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Afstand van Bovenkant Supportstructuur" +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "Samenvoegafstand Supportstructuur" -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Aantal wandlijnen supportstructuur" +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "De maximale afstand tussen de supportstructuren in de X- en Y-richting. Wanneer afzonderlijke structuren dichter bij elkaar staan dan deze waarde, worden deze samengevoegd tot één structuur." -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "X-/Y-afstand Supportstructuur" +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Horizontale Uitzetting Supportstructuur" -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Z-afstand Supportstructuur" +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "De mate van offset die wordt toegepast op alle steunpolygonen in elke laag. Met positieve waarden kunt u de draagvlakken effenen en krijgt u een stevigere supportstructuur." + +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Dikte vullaag supportvulling" + +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "De dikte per laag materiaal supportvulling. Deze waarde moet altijd een veelvoud van de laaghoogte zijn en wordt voor het overige afgerond." + +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Geleidelijke supportvulling traptreden" + +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "Het aantal keren dat de dichtheid van de supportvulling wordt gehalveerd naarmate er verder onder het oppervlak wordt geprint. Gebieden die zich dichter bij het oppervlak bevinden, krijgen een hogere dichtheid, tot de waarde die is opgegeven in de optie Dichtheid supportvulling." + +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Geleidelijke supportvulling hoogte traptreden" + +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "De hoogte van de supportvulling van een bepaalde dichtheid voordat de dichtheid wordt gehalveerd." + +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Minimumgebied supportstructuur" + +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "Minimumgebied voor steunpolygonen. Polygonen met een gebied dat kleiner is dan deze waarde, worden niet gegenereerd." + +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Verbindingsstructuur Inschakelen" + +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "Hiermee maakt u een dichte verbindingsstructuur tussen het model en de supportstructuur. Er wordt een skin gemaakt aan de bovenkant van de supportstructuur waarop het model wordt geprint en op de bodem van de supportstructuur waar dit op het model rust." -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "Geprefereerde ondersteuningslijnen" +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Supportdak inschakelen" -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "Geprefereerde ondersteuning" +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "Genereer een dichte materiaallaag tussen de bovenzijde van de supportstructuur en het model. Hierdoor wordt een skin gemaakt tussen het model en de supportstructuur." -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Ondersteunde Ventilatorsnelheid Skin" +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Supportvloer inschakelen" -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Oppervlak" +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "Genereer een dichte materiaallaag tussen de onderzijde van de supportstructuur en het model. Hierdoor wordt een skin gemaakt tussen het model en de supportstructuur." -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "Oppervlakte-energie" +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Dikte Verbindingsstructuur" -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Oppervlaktemodus" +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "De dikte van de verbindingsstructuur waar dit het model aan de onder- of bovenkant raakt." -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "Hechtingsgevoeligheid van het oppervlak." +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "Dikte Supportdak" -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Oppervlakte-energie." +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "De dikte van de supportdaken. Hiermee wordt het aantal dichte lagen bepaald aan de bovenkant van de supportstructuur waarop het model rust." -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "Verwissel de printvolgorde van de binnenste en de op een na binnenste randlijn. Dit verbetert het verwijderen van de rand." +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Dikte supportvloer" -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "Schakel naar de rastersnijpuntvolumes die bij elke laag horen, zodat de overlappende rasters worden verweven. Als u deze instelling uitschakelt, krijgt een van de rasters al het volume in de overlap, terwijl dit uit de andere rasters wordt verwijderd." +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "De dikte van de supportvloeren. Hiermee wordt het aantal dichte lagen bepaald dat wordt geprint op plekken van een model waarop een supportstructuur rust." -msgctxt "adaptive_layer_height_threshold description" -msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." -msgstr "Horizontale doelafstand tussen twee aangrenzende lagen. Als u deze instelling verkleint, worden dunnere lagen gebruikt om de randen van de lagen dichter bij elkaar te brengen." +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Dichtheid Verbindingsstructuur" -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "De X-coördinaat van de positie nabij het deel waar met het printen van elke laag kan worden begonnen." +msgctxt "support_interface_density description" +msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Past de dichtheid van de daken en vloeren van de supportstructuur aan. Met een hogere waarde krijgt u een betere overhang, maar is de supportstructuur moeilijker te verwijderen." -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "De X-coördinaat van de positie nabij waar met het printen van elk deel van een laag moet worden begonnen." +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Dichtheid supportdak" -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "De X-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen." +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "De dichtheid van de daken van de supportstructuur. Met een hogere waarde krijgt u een betere overhang, maar is de supportstructuur moeilijker te verwijderen." -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "De Y-coördinaat van de positie nabij het deel waar met het printen van elke laag kan worden begonnen." +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Lijnafstand supportdak" -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "De Y-coördinaat van de positie nabij waar met het printen van elk deel van een laag moet worden begonnen." +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "De afstand tussen de geprinte lijnen van het supportdak. Deze instelling wordt berekend op basis van de dichtheid van het supportdak, maar kan onafhankelijk worden aangepast." -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "De Y-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen." +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Dichtheid supportvloer" -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "De Z-coördinaat van de positie waar filament in de nozzle wordt teruggeduwd aan het begin van het printen." +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "De dichtheid van de vloeren van de supportstructuur. Met een hogere waarde hecht het supportmateriaal beter aan de bovenzijde van het model." -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "De acceleratie tijdens het printen van de eerste laag." +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Lijnafstand supportvloer" -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "De acceleratie voor de eerste laag." +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "De afstand tussen de geprinte lijnen van de supportvloer. Deze instelling wordt berekend op basis van de dichtheid van de supportvloer, maar kan onafhankelijk worden aangepast." -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "De acceleratie tijdens het uitvoeren van bewegingen in de eerste laag." +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Patroon Verbindingsstructuur" -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "De acceleratie tijdens het uitvoeren van bewegingen in de eerste laag." +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "Het patroon waarmee de verbindingsstructuur van het model wordt geprint." -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "De acceleratie tijdens het printen van alle binnenwanden." +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Lijnen" -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "De acceleratie tijdens het printen van de vulling." +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Raster" -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "De acceleratie tijdens het strijken." +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Driehoeken" -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "De acceleratie tijdens het printen." +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Concentrisch" -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "De acceleratie tijdens het printen van het grondvlak van de raft." +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "De acceleratie tijdens het printen van de supportvloeren. Als u deze met een lagere acceleratie print, hecht het supportmateriaal beter aan de bovenzijde van het model." +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Patroon supportdak" -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "De acceleratie tijdens het printen van de supportvulling." +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "Het patroon waarmee de daken van de supportstructuur worden geprint." -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "De acceleratie tijdens het printen van de middelste laag van de raft." +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Lijnen" -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "De acceleratie tijdens het printen van de buitenste wanden." +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Raster" -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "De acceleratie tijdens het printen van de primepijler." +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Driehoeken" -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "De acceleratie tijdens het printen van de raft." +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Concentrisch" -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "De acceleratie tijdens het printen van de supportdaken en -vloeren. Als u deze met een lagere acceleratie print, wordt de kwaliteit van de overhang verbeterd." +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "De acceleratie tijdens het printen van de supportdaken. Als u deze met een lagere acceleratie print, wordt de kwaliteit van de overhang verbeterd." +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Patroon supportvloer" -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "De acceleratie tijdens het printen van de skirt en de brim. Normaal gebeurt dit met dezelfde acceleratie als die van de eerste laag, maar in sommige situaties wilt u de skirt of de brim wellicht met een andere acceleratie printen." +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "Het patroon waarmee de vloeren van de supportstructuur worden geprint." -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "De acceleratie tijdens het printen van de supportstructuur." +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Lijnen" -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "De acceleratie tijdens het printen van de toplagen van de raft." +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Raster" -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "De versnelling waarmee de binnenwanden van het bovenoppervlak worden geprint." +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Driehoeken" -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "De versnelling waarmee de buitenste muren van het bovenoppervlak worden geprint." +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concentrisch" -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "De acceleratie tijdens het printen van de wanden." +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "De acceleratie tijdens het printen van de bovenste skinlagen." +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Minimumgebied verbindingsstructuur" + +msgctxt "minimum_interface_area description" +msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Minimumgebied voor verbindingspolygonen. Polygonen met een gebied dat kleiner is dan deze waarde worden geprint als normale ondersteuning." -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "De acceleratie tijdens het printen van de boven-/onderlagen." +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Minimumgebied supportdak" -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "De acceleratie tijdens het uitvoeren van bewegingen." +msgctxt "minimum_roof_area description" +msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Minimumgebied voor de supportdaken. Polygonen met een gebied dat kleiner is dan deze waarde worden geprint als normale ondersteuning." -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "De hoeveelheid materiaal, in verhouding tot een normale skinlijn, die tijdens het strijken moet worden doorgevoerd. Als de nozzle gevuld blijft, kunnen scheuren in de bovenlaag worden gevuld. Te hoge doorvoer leidt echter tot uitstulpingen aan de zijkant van het oppervlak." +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Minimumgebied supportvloer" -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "De mate van overlap tussen de vulling en de wanden als percentage van de lijnbreedte van de vulling. Met een lichte overlap kunnen de wanden goed hechten aan de vulling." +msgctxt "minimum_bottom_area description" +msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Minimumgebied voor de supportvloeren. Polygonen met een gebied dat kleiner is dan deze waarde worden geprint als normale ondersteuning." -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "De mate van overlap tussen de vulling en de wanden. Met een lichte overlap kunnen de wanden goed hechten aan de vulling." +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Supportstructuur horizontale uitbreiding" -msgctxt "switch_extruder_retraction_amount description" -msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." -msgstr "De intrekafstand wanneer de extruders worden gewisseld. Als u deze optie instelt op 0, wordt er niet ingetrokken. Deze waarde dient doorgaans gelijk te zijn aan de lengte van de verwarmingszone." +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "De mate van offset die wordt toegepast op de verbindingspolygonen." -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "De hoek tussen het horizontale vlak en het conische gedeelte boven de punt van de nozzle." +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Supportdak horizontale uitbreiding" -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "De hoek van een dak van een pijler. Een hogere waarde zorgt voor een spits pijlerdak, een lagere waarde zorgt voor een plat pijlerdak." +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "De mate van offset die wordt toegepast op de supportdaken." -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "De hoek van de overhang van de buitenwanden die voor de matrijs worden gemaakt. Met 0° is de buitenshell van de matrijs verticaal, terwijl met 90° de buitenzijde van de matrijs de contouren van het model volgt." +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Supportvloer horizontale uitbreiding" -msgctxt "support_tree_branch_diameter_angle description" -msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." -msgstr "De hoek van de diameter van de takken terwijl ze naar beneden toe geleidelijk dikker worden. Met de hoekinstelling 0 zijn de takken over de gehele lengte even dik. Een kleine hoek verbetert de stabiliteit van de boomsupportstructuur." +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "De mate van offset die wordt toegepast op de supportvloeren." -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "De hoek van de schuine kant van de conische supportstructuur, waarbij 0 graden verticaal en 90 horizontaal is. Met een kleinere hoek is de supportstructuur steviger, maar bestaat deze uit meer materiaal. Met een negatieve hoek is het grondvlak van de supportstructuur breder dan de top." +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "Ondersteuning Interface Prioriteit" -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "De gemiddelde dichtheid van de punten die op elke polygoon in een laag worden geplaatst. Houd er rekening mee dat de originele punten van de polygoon worden verwijderd. Een lage dichtheid leidt dus tot een verlaging van de resolutie." +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "Hoe ondersteuningsinterface en ondersteuning op elkaar inwerken wanneer ze elkaar overlappen. Momenteel alleen geïmplementeerd voor ondersteunend dak." -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "De gemiddelde afstand tussen de willekeurig geplaatste punten op elk lijnsegment. Houd er rekening mee dat de originele punten van de polygoon worden verwijderd. Een hoge effenheid leidt dus tot een verlaging van de resolutie. Deze waarde moet hoger zijn dan de helft van de Dikte rafelig oppervlak." +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "Geprefereerde ondersteuning" -msgctxt "material_brand description" -msgid "The brand of material used." -msgstr "" +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "Geprefereerde interface" -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "De standaardacceleratie van de printkopbeweging." +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "Geprefereerde ondersteuningslijnen" -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "De standaardtemperatuur waarmee wordt geprint. Dit moet overeenkomen met de basistemperatuur van een materiaal. Voor alle andere printtemperaturen moet een offset worden gebruikt die gebaseerd is op deze waarde" +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "Geprefereerde interfacelijnen" -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "De standaardtemperatuur die wordt gebruikt voor het verwarmde platform. Dit moet overeenkomen met de basistemperatuur van een platform. Voor alle andere printtemperaturen moet een offset worden gebruikt die is gebaseerd op deze waarde" +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "Beide overlappen" -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "De dichtheid van de brugskinlaag. Met een waarde lager dan 100 worden de ruimten tussen de skinlijnen groter." +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Lijnrichting interface supportstructuur" -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "De dichtheid van de vloeren van de supportstructuur. Met een hogere waarde hecht het supportmateriaal beter aan de bovenzijde van het model." +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst bereikt is, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de standaardhoeken (variërend tussen 45 en 135 graden als interfaces vrij dik of 90 graden zijn) worden gebruikt." -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "De dichtheid van de daken van de supportstructuur. Met een hogere waarde krijgt u een betere overhang, maar is de supportstructuur moeilijker te verwijderen." +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Lijnrichting supportdak" -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "De dichtheid van de tweede brugskinlaag. Met een waarde lager dan 100 worden de ruimten tussen de skinlijnen groter." +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst bereikt is, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de standaardhoeken (variërend tussen 45 en 135 graden als interfaces vrij dik of 90 graden zijn) worden gebruikt." -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "De dichtheid van de derde brugskinlaag. Met een waarde lager dan 100 worden de ruimten tussen de skinlijnen groter." +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Lijnrichting supportvloer" -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "De diepte (Y-richting) van het printbare gebied." +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst bereikt is, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de standaardhoeken (variërend tussen 45 en 135 graden als interfaces vrij dik of 90 graden zijn) worden gebruikt." -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "De diameter van een speciale pijler." +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Ventilatorsnelheid Overschrijven" -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "Hiermee stelt u de diameter in van de dunste takken van de boomsupportstructuur. Dikkere takken zijn steviger. Takken die dichter bij de stam liggen, zijn dikker dan dit." +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "Wanneer deze optie ingeschakeld is, wordt de ventilatorsnelheid voor het koelen van de print gewijzigd voor de skinregio's direct boven de supportstructuur." -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "De diameter van de bovenkant van de punt van de takken van de boomsteun." +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Ondersteunde Ventilatorsnelheid Skin" -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "De diameter van het tandwiel waarmee het materiaal in de feeder wordt gevoerd." +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "Percentage van de ventilatorsnelheid dat tijdens het printen van skinregio's direct boven de supportstructuur moet worden gebruikt. Bij gebruikmaking van een hoge ventilatorsnelheid kan de supportstructuur gemakkelijker worden verwijderd." -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "De diameter van de breedste takken van de boomondersteuning. Een dikkere tak is steviger; een dunnere tak neemt minder ruimte in beslag op het platform." +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Pijlers Gebruiken" -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "Het hoogteverschil tussen de hoogte van de volgende laag ten opzichte van de vorige laag." +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "Gebruik speciale pijlers om delen met minimale overhang te ondersteunen. Deze pijlers hebben een grotere diameter dan het deel dat ze ondersteunen. Bij de overhang neemt de diameter van de pijlers af en vormen ze een dak." -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "De afstand tussen de strijklijnen." +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Pijlerdiameter" -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "De afstand tussen de nozzle en geprinte delen wanneer deze tijdens bewegingen worden gemeden." +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "De diameter van een speciale pijler." -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "De afstand tussen de lijnen in de onderste laag van de raft. Als u hier een brede tussenruimte instelt, kan de raft eenvoudiger van het platform worden verwijderd." +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Maximale pijler-ondersteunde diameter" -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "De afstand tussen de raftlijnen voor de middelste laag van de raft. De ruimte in het midden moet vrij breed zijn, maar toch smal genoeg om ondersteuning te bieden voor de bovenste lagen van de raft." +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "De maximale diameter in de X- en Y-richting van een kleiner gebied dat moet worden ondersteund door een speciale steunpijler." -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "De afstand tussen de raftlijnen voor de bovenste lagen van de raft. Als u een solide oppervlak wilt maken, moet de ruimte gelijk zijn aan de lijnbreedte." +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Hoek van Pijlerdak" -msgctxt "prime_tower_raft_base_line_spacing description" -msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "De afstand tussen de vlotlijnen voor de unieke vlotlaag van de Prime Tower. Een brede afstand maakt het eenvoudig om het vlot van de bouwplaat te verwijderen." +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "De hoek van een dak van een pijler. Een hogere waarde zorgt voor een spits pijlerdak, een lagere waarde zorgt voor een plat pijlerdak." -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "De afstand vanaf de grens tussen modellen om een in elkaar grijpende structuur te genereren, gemeten in cellen. Te weinig cellen leiden tot slechte hechting." +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Supportraster verlagen" -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "De afstand vanaf de rand van het model tot de buitenrand van de brim. Een bredere brim hecht beter aan het platform, maar verkleint uw effectieve printgebied." +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "Maak overal onder het supportraster support zodat er in het supportraster geen overhang is." -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "De afstand van de buitenkant van een model waarbij in elkaar grijpende structuren niet worden gegenereerd, gemeten in cellen." +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "Scène heeft supportrasters" -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "De afstand tussen de punt van de nozzle waarin de warmte uit de nozzle wordt overgedragen aan het filament." +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "Er zijn supportrasters aanwezig in de scène. Deze instelling wordt beheerd door Cura." -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "De afstand waarmee de onderste skinlagen worden uitgebreid in de vulling. Bij hogere waarden hecht de skin beter aan het vulpatroon en de wanden van de onderliggende laag. Bij lagere waarden wordt er minder materiaal gebruikt." +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Hechting aan Platform" -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "De afstand waarmee de skin wordt uitgebreid in de vulling. Bij hogere waarden hecht de skin beter aan het vulpatroon en hechten de wanden van aangrenzende lagen beter aan de skin. Bij lagere waarden wordt er minder materiaal gebruikt." +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Hechting" -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "De afstand waarmee de bovenste skinlagen worden uitgebreid in de vulling. Bij hogere waarden hecht de skin beter aan het vulpatroon en hechten de wanden op de bovenliggende laag beter aan de skin. Bij lagere waarden wordt er minder materiaal gebruikt." +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "Primeblob inschakelen" + +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "Hiermee bepaalt u of het filament voor het printen met een blob wordt geprimed. Met het inschakelen van deze instelling wordt verzekerd dat er vanuit de extruder materiaal bij de nozzle beschikbaar is voordat het printen start. Het printen van een brim of skirt kan tevens fungeren als primen. In dat geval kan door het uitschakelen van deze instelling tijd worden bespaard." -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "De afstand die de kop heen en weer wordt bewogen over de borstel." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "X-positie voor Primen Extruder" -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "De eindpunten van de vullijnen worden verkort om materiaal te besparen. Deze instelling is de overhanghoek van de eindpunten van deze lijnen." +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "De X-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen." -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "De extra snelheid waarmee de nozzle tijdens het doorvoeren afkoelt. Met dezelfde waarde wordt ook de verloren verwarmingssnelheid aangeduid wanneer tijdens het doorvoeren wordt verwarmd." +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Y-positie voor Primen Extruder" -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "De extruder train die wordt gebruikt voor het printen van de eerste laag van de supportvulling. Deze optie wordt gebruikt in meervoudige doorvoer." +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "De Y-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen." -msgctxt "raft_base_extruder_nr description" -msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." -msgstr "De extruder train die wordt gebruikt voor het printen van de eerste laag van de raft. Deze optie wordt gebruikt bij meervoudige doorvoer." +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Type Hechting aan Platform" -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "De extruder train die wordt gebruikt voor het printen van de supportvloeren. Deze optie wordt gebruikt in meervoudige doorvoer." +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "Er zijn verschillende opties die u helpen zowel de voorbereiding van de doorvoer als de hechting aan het platform te verbeteren. Met de optie Brim legt u in de eerste laag extra materiaal rondom de voet van het model om vervorming te voorkomen. Met de optie Raft legt u een dik raster met een dak onder het model. Met de optie Skirt print u rond het model een lijn die niet met het model is verbonden." -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "De extruder train die wordt gebruikt voor het printen van de supportvulling. Deze optie wordt gebruikt in meervoudige doorvoer." +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Skirt" -msgctxt "raft_interface_extruder_nr description" -msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." -msgstr "De extruder train die wordt gebruikt voor het printen van de middelste laag van de raft. Deze optie wordt gebruikt bij meervoudige doorvoer." +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Brim" -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "De extruder train die wordt gebruikt voor het printen van de daken en vloeren van de supportstructuur. Deze optie wordt gebruikt in meervoudige doorvoer." +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Raft" -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "De extruder train die wordt gebruikt voor het printen van de supportdaken. Deze optie wordt gebruikt in meervoudige doorvoer." +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Geen" -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "De extruder train die wordt gebruikt voor het printen van de skirt/brim. Deze optie wordt gebruikt bij meervoudige doorvoer." +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Extruder Hechting aan Platform" msgctxt "adhesion_extruder_nr description" msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." msgstr "De extruder train die wordt gebruikt voor het printen van de skirt/brim/raft. Deze optie wordt gebruikt in meervoudige doorvoer." -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "De extruder train die wordt gebruikt voor het printen van de supportstructuur. Deze optie wordt gebruikt in meervoudige doorvoer." - -msgctxt "raft_surface_extruder_nr description" -msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." -msgstr "De extruder train die wordt gebruikt voor het printen van de bovenste laag/lagen van de raft. Deze optie wordt gebruikt bij meervoudige doorvoer." - -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "De extruder train die voor het printen van de vulling wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." - -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "De extruder train die voor het printen van de binnenwanden wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Extruder Skirt/Brim" -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "De extruder train die voor het printen van de buitenwand wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "De extruder train die wordt gebruikt voor het printen van de skirt/brim. Deze optie wordt gebruikt bij meervoudige doorvoer." -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "De extruder train die voor het printen van de boven- en onderskin wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Raft basisextruder" -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "De extruder train die voor het printen van de bovenste skinlaag wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." +msgctxt "raft_base_extruder_nr description" +msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." +msgstr "De extruder train die wordt gebruikt voor het printen van de eerste laag van de raft. Deze optie wordt gebruikt bij meervoudige doorvoer." -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "De extruder train die voor het printen van de wanden wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Raft middelste extruder" -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "De ventilatorsnelheid tijdens het printen van de grondlaag van de raft." +msgctxt "raft_interface_extruder_nr description" +msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." +msgstr "De extruder train die wordt gebruikt voor het printen van de middelste laag van de raft. Deze optie wordt gebruikt bij meervoudige doorvoer." -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "De ventilatorsnelheid tijdens het printen van de middelste laag van de raft." +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Raft bovenste extruder" -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "De ventilatorsnelheid tijdens het printen van de raft." +msgctxt "raft_surface_extruder_nr description" +msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." +msgstr "De extruder train die wordt gebruikt voor het printen van de bovenste laag/lagen van de raft. Deze optie wordt gebruikt bij meervoudige doorvoer." -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "De ventilatorsnelheid tijdens het printen van de toplagen van de raft." +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Aantal Skirtlijnen" -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "De bestandslocatie van een afbeelding waarvan de helderheidswaarden de minimale dichtheid op de bijbehorende locatie in de vulling van de print bepalen." +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "Met meerdere skirtlijnen kunt u de doorvoer beter voorbereiden voor kleine modellen. Met de waarde 0 wordt de skirt uitgeschakeld." -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "De bestandslocatie van een afbeelding waarvan de helderheidswaarden de minimale dichtheid op de bijbehorende locatie in de supportstructuur bepalen." +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "Hoogte Skirt" -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "De eerste lagen worden minder snel geprint dan de rest van het model, om ervoor te zorgen dat dit zich beter hecht aan het platform en om de kans dat de print slaagt te vergroten. Tijdens het printen van deze lagen wordt de snelheid geleidelijk opgevoerd." +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "Het printen van de binnenste skirt-lijn met meerdere lagen maakt het gemakkelijk om de skirt te verwijderen." -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "De ruimte tussen de laatste laag van de raft en de eerste laag van het model. Alleen de eerste laag wordt met deze waarde verhoogd om de binding tussen de raftlaag en het model te verminderen. Hierdoor is het eenvoudiger om de raft te verwijderen." +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Skirtafstand" -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "De hoogte (Z-richting) van het printbare gebied." +msgctxt "skirt_gap description" +msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "De horizontale afstand tussen de skirt en de eerste laag van de print." +"Dit is de minimumafstand. Als u meerdere skirtlijnen print, worden deze vanaf deze afstand naar buiten geprint." -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "De hoogte die in de matrijs moet worden geprint boven de horizontale delen in het model." +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Minimale Skirt-/Brimlengte" -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "De hoogte waarop de ventilatoren op normale snelheid draaien. Tijdens het printen van de onderliggende lagen wordt de ventilatorsnelheid geleidelijk verhoogd van de startsnelheid ventilator naar de normale ventilatorsnelheid." +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "De minimale lengte van de skirt of de brim. Als deze minimumlengte niet wordt bereikt met het totale aantal skirt- of brimlijnen, worden er meer skirt- of brimlijnen toegevoegd totdat de minimale lengte is bereikt. Opmerking: als het aantal lijnen is ingesteld op 0, wordt dit genegeerd." -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "Het hoogteverschil tussen de punt van de nozzle en het rijbrugsysteem (X- en Y-as)." +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Breedte Brim" -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "Het hoogteverschil tussen de punt van de nozzle en het laagste deel van de printkop." +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "De afstand vanaf de rand van het model tot de buitenrand van de brim. Een bredere brim hecht beter aan het platform, maar verkleint uw effectieve printgebied." -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "Het hoogteverschil dat wordt aangehouden tijdens een Z-sprong na wisselen extruder." +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Aantal Brimlijnen" -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Het hoogteverschil dat wordt aangehouden tijdens een Z-sprong." +msgctxt "brim_line_count description" +msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." +msgstr "Het aantal lijnen dat voor een brim wordt gebruikt. Meer lijnen zorgen voor betere hechting aan het platform, maar verkleinen uw effectieve printgebied." -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "Het hoogteverschil dat wordt aangehouden tijdens een Z-sprong." +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Brimafstand" -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "De hoogte van elke laag in mm. Met hogere waarden print u sneller met een lagere resolutie, met lagere waarden print u langzamer met een hogere resolutie." +msgctxt "brim_gap description" +msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." +msgstr "De horizontale afstand tussen de eerste brimlijn en de contour van de eerste laag van de print. Door een kleine tussenruimte is de brim gemakkelijker te verwijderen terwijl de thermische voordelen behouden blijven." -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "De hoogte van de vulling van een opgegeven dichtheid voordat wordt overgeschakeld naar de helft van deze dichtheid." +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Brim vervangt supportstructuur" -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "De hoogte van de supportvulling van een bepaalde dichtheid voordat de dichtheid wordt gehalveerd." +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "Dwing af dat de brim rond het model wordt geprint, zelfs als deze ruimte anders door supportstructuur zou worden ingenomen. Hierdoor worden enkele gebieden van de eerste supportlaag vervangen door brimgebieden." -msgctxt "interlocking_beam_layer_count description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "De hoogte van de balken van de in elkaar grijpende structuur, gemeten in aantal lagen. Minder lagen is sterker, maar vatbaarder voor defecten." +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "Locatie rand" -msgctxt "interlocking_orientation description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "De hoogte van de balken van de in elkaar grijpende structuur, gemeten in aantal lagen. Minder lagen is sterker, maar vatbaarder voor defecten." +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "Print een rand aan de buitenkant van het model, aan de binnenkant of aan beide kanten. Afhankelijk van het model helpt dit om de hoeveelheid rand die u achteraf moet verwijderen te verminderen, terwijl het voor een goede hechting aan het bed zorgt." -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "De hoogte van de eerste laag in mm. Met een dikkere eerste laag hecht het object beter aan het platform." +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "Alleen buitenkant" -msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "De hoogte van de basis van de prime toren. Het verhogen van deze waarde resulteert in een stevigere prime toren omdat de basis breder zal zijn. Als deze instelling te laag is, zal de prime toren geen stevige basis hebben." +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "Alleen binnenkant" -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "De hoogte van de treden van het trapvormige grondvlak van de supportstructuur die op het model rust. Wanneer u een lage waarde invoert, kan de supportstructuur minder gemakkelijk worden verwijderd. Wanneer u echter een te hoge waarde invoert, kan de supportstructuur instabiel worden. Stel deze waarde in op nul om het trapvormige gedrag uit te schakelen." +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "Overal" -msgctxt "brim_gap description" -msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." -msgstr "De horizontale afstand tussen de eerste brimlijn en de contour van de eerste laag van de print. Door een kleine tussenruimte is de brim gemakkelijker te verwijderen terwijl de thermische voordelen behouden blijven." +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "Marge voor vermijden van rand" -msgctxt "skirt_gap description" -msgid "" -"The horizontal distance between the skirt and the first layer of the print.\n" -"This is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "" -"De horizontale afstand tussen de skirt en de eerste laag van de print.\n" -"Dit is de minimumafstand. Als u meerdere skirtlijnen print, worden deze vanaf deze afstand naar buiten geprint." +msgctxt "brim_inside_margin description" +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "Een rand rond een model kan een ander model raken op een plek waarvan u dat niet wilt. Dit verwijdert alle rand binnen deze afstand van modellen zonder rand." -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "De vullijnen zijn rechtgetrokken om printtijd te besparen. Dit is de grootste overhanghoek die over de lengte van de vullijn is toegestaan." +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "Slimme Brim" -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "Het vulpatroon wordt over deze afstand verplaatst langs de X-as." +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "Verwissel de printvolgorde van de binnenste en de op een na binnenste randlijn. Dit verbetert het verwijderen van de rand." -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "Het vulpatroon wordt over deze afstand verplaatst langs de Y-as." +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Extra Marge Raft" -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "De binnendiameter van de nozzle. Verander deze instelling wanneer u een nozzle gebruikt die geen standaard formaat heeft." +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Als de raft is ingeschakeld, is dit het extra raftgebied rond het model dat ook van een raft wordt voorzien. Als u deze marge vergroot, krijgt u een stevigere raft, maar gebruikt u ook meer materiaal en houdt u minder ruimte over voor de print." -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "De schok tijdens het printen van het grondvlak van de raft." +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "Extra marge voor vlot op de basis" -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "De schok tijdens het printen van de middelste laag van de raft." +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Als het vlot op de basis is ingeschakeld, is dit het extra vlotgebied rond het model dat ook een vlot krijgt. Als u deze marge vergroot, wordt er een sterker vlot gecreëerd, hoewel er meer materiaal gebruikt wordt en er minder plek overblijft voor uw print." -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "De schok tijdens het printen van de raft." +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "Extra marge voor vlot in het midden" -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "De schok tijdens het printen van de toplagen van de raft." +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Als het vlot in het midden is ingeschakeld, is dit het extra vlotgebied rond het model dat ook een vlot krijgt. Als u deze marge vergroot, wordt er een sterker vlot gecreëerd, hoewel er meer materiaal gebruikt wordt en er minder plek overblijft voor uw print." -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "De grootste breedte van delen van de onderste skingebieden die verwijderd moeten worden. Elk skingebied dat smaller is dan deze waarde, zal verdwijnen. Hiermee kan op tijd en materiaal worden bespaard bij het printen van de onderste skinlaag op schuine vlakken in het model." +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "Extra marge voor vlot aan bovenkant" -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "De grootste breedte van skingebieden die verwijderd moeten worden. Elk skingebied dat smaller is dan deze waarde zal verdwijnen. Hiermee kan op tijd en materiaal worden bespaard bij het printen van de bovenste/onderste skinlaag op schuine vlakken in het model." +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Als het vlot aan de bovenkant is ingeschakeld, is dit het extra vlotebied rond het model dat ook een vlot krijgt. Als u deze marge vergroot, wordt er een sterker vlot gecreëerd, hoewel er meer materiaal gebruikt wordt en er minder plek overblijft voor uw print." -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "De grootste breedte van delen van bovenste skingebieden die verwijderd moeten worden. Elk skingebied dat smaller is dan deze waarde, zal verdwijnen. Hiermee kan op tijd en materiaal worden bespaard bij het printen van de bovenste/onderste skinlaag op schuine vlakken in het model." +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Binnenhoeken raft verwijderen" -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "De laag waarop de ventilatoren op normale snelheid draaien. Als de normale ventilatorsnelheid op hoogte ingeschakeld is, wordt deze waarde berekend en op een geheel getal afgerond." +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Verwijdering van de binnenhoeken van de raft maakt de raft bol." -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "De laagtijd waarmee de drempelwaarde tussen de normale ventilatorsnelheid en de maximale ventilatorsnelheid wordt ingesteld. Voor lagen die langzamer worden geprint, draaien de ventilatoren op normale snelheid. Bij lagen die sneller worden geprint, draaien de ventilatoren op maximale snelheid." +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "Binnenhoeken van basis van vlot verwijderen" -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "De lengte waarover het materiaal wordt ingetrokken tijdens een intrekbeweging." +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "Verwijder de binnenhoeken van de basis van het vlot, waardoor het vlot bol wordt." -msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "De groottefactor die gebruikt wordt voor de helling van de basis van de prime toren. Als u deze waarde verhoogt, wordt de basis slanker. Als u het verlaagt, wordt de basis dikker." +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "Binnenhoeken van vlot in het midden verwijderen" -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "Het materiaal van het platform dat in de printer geïnstalleerd is." +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "Verwijder de binnenhoeken van het middelste deel van het vlot, waardoor het vlot bol wordt." -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "De maximaal toegestane hoogte ten opzichte van de grondlaaghoogte." +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "Binnenhoeken van vlot aan de bovenkant verwijderen" -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "De maximale hoek voor een deel van het uitloopscherm. Hierbij is 0 graden verticaal en 90 graden horizontaal. Een kleinere hoek leidt tot minder mislukte uitloopschermen, maar zorgt ervoor dat er meer materiaal wordt gebruikt." +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "Verwijder de binnenhoeken van het bovenste deel van het vlot, waardoor het vlot bol wordt." -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "De maximale hoek van een overhang nadat deze printbaar is gemaakt. Bij een hoek van 0° worden alle overhangende gedeelten vervangen door een deel van het model dat is verbonden met het platform; bij een hoek van 90° wordt het model niet gewijzigd." +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Raft effenen" -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "De maximale hoek van de takken terwijl ze rond het model groeien. Gebruik een lagere hoek om ze verticaler en stabieler te maken. Gebruik een hogere hoek om meer bereik te hebben." +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Bepaalt hoeveel binnenhoeken in de raftcontour worden afgerond. Naar binnen gebogen hoeken worden tot een halve cirkel afgerond met een straal die gelijk is aan de hier opgegeven waarde. Met deze instellingen worden ook gaten in de raftcontour verwijderd die kleiner zijn dan een dergelijke cirkel." -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "Het maximale oppervlak van een gat in de basis van het model voordat het wordt verwijderd om de overhang printbaar te maken. Gaten die kleiner zijn dan dit oppervlak worden behouden. Bij een waarde van 0 mm² worden alle gaten in de basis van het model gevuld." +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "Vlotbasis gladmaken" -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "De maximaal toegestane afwijking tijdens het verlagen van de resolutie voor de instelling Maximale resolutie. Als u deze waarde verhoogt, wordt de print minder nauwkeurig, maar wordt de G-code kleiner. Maximale afwijking is een limiet voor Maximale resolutie, dus als de twee tegenstrijdig zijn, wordt de Maximale afwijking altijd aangehouden." +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Deze instelling bepaalt hoeveel binnenhoeken in de omtrek van het basisvlot worden afgerond. Binnenhoeken worden afgerond tot een halve cirkel met een straal gelijk aan de hier opgegeven waarde. Deze instelling verwijdert ook gaten in de omtrek van het vlot die kleiner zijn dan zo'n cirkel." -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "De maximale afstand tussen de supportstructuren in de X- en Y-richting. Wanneer afzonderlijke structuren dichter bij elkaar staan dan deze waarde, worden deze samengevoegd tot één structuur." +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "Midden van vlot gladmaken" -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "De maximale afstand in mm om het filament te verplaatsen om veranderingen in de stroomsnelheid te compenseren." +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Deze instelling bepaalt hoeveel binnenhoeken in de omtrek van het midden van het vlot worden afgerond. Binnenhoeken worden afgerond tot een halve cirkel met een straal gelijk aan de hier opgegeven waarde. Deze instelling verwijdert ook gaten in de omtrek van het vlot die kleiner zijn dan zo'n cirkel." -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "De maximaal toegestane afwijking van het doorvoergebied bij het verwijderen van tussenliggende punten van een rechte lijn. Een tussenliggend punt kan dienen als breedte-veranderend punt in een lange rechte lijn. Verwijdering van het punt leidt er dus toe dat de lijn een uniforme breedte krijgt en als gevolg daarvan een stuk van het doorvoergebied verliest (of wint). Als u deze waarde verhoogt, merkt u mogelijk een lichte onder- (of over-)doorvoer op tussen rechte parallele wanden, omdat er meer tussenliggende punten kunnen worden verwijderd die de breedte wijzigen. Uw print zal minder accuraat zijn, maar de g-code is kleiner." +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "Bovenkant van vlot gladmaken" -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de eerste laag." +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Deze instelling bepaalt hoeveel binnenhoeken in de omtrek van de bovenkant van het vlot worden afgerond. Binnenhoeken worden afgerond tot een halve cirkel met een straal gelijk aan de hier opgegeven waarde. Deze instelling verwijdert ook gaten in de omtrek van het vlot die kleiner zijn dan zo'n cirkel." -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "De maximale onmiddellijke snelheidsverandering van de printkop." +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Luchtruimte Raft" -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het strijken." +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "De ruimte tussen de laatste laag van de raft en de eerste laag van het model. Alleen de eerste laag wordt met deze waarde verhoogd om de binding tussen de raftlaag en het model te verminderen. Hierdoor is het eenvoudiger om de raft te verwijderen." -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van alle binnenwanden." +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Z Overlap Eerste Laag" -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de vulling." +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "Laat de eerste en tweede laag van het model overlappen in de Z-richting om te compenseren voor het filament dat verloren gaat in de luchtspleet. Alle modellen boven de eerste modellaag zullen met deze hoeveelheid naar beneden worden verschoven.\nHet kan voorkomen dat de tweede laag onder de eerste laag wordt afgedrukt door deze instelling. Dit gedrag is zo bedoeld." -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de supportvloeren." +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Dikte Grondvlak Raft" -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de supportvulling." +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "De laagdikte van de grondlaag van de raft. Deze laag moet dik zijn, zodat deze stevig hecht aan het platform." -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de buitenwanden." +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Lijnbreedte Grondvlak Raft" -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de primepijler." +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "Breedte van de lijnen van de onderste laag van de raft. Deze lijnen moeten dik zijn om een betere hechting aan het platform mogelijk te maken." -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de supportdaken en -vloeren." +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Tussenruimte Lijnen Grondvlak Raft" -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de supportdaken." +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "De afstand tussen de lijnen in de onderste laag van de raft. Als u hier een brede tussenruimte instelt, kan de raft eenvoudiger van het platform worden verwijderd." -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de skirt en de brim." +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Raft middelste lagen" -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de supportstructuur." +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "Het aantal lagen tussen de basis en het oppervlak van de raft. Deze omvatten de het grootste deel van de dikte van de raft. Uitbreiden hiervan creëert een dikkere, stevigere raft." -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "De maximale plotselinge snelheidsverandering waarmee de buitenste muren van het bovenoppervlak worden geprint." +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Lijndikte Midden Raft" -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "De maximale plotselinge snelheidsverandering waarmee de binnenste muren van het bovenoppervlak worden geprint." +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "De laagdikte van de middelste laag van de raft." -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de wanden." +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Lijnbreedte Midden Raft" -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de bovenste skinlagen." +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "Breedte van de lijnen in de middelste laag van de raft. Als u voor de tweede laag meer materiaal gebruikt, hechten de lijnen beter aan het platform." -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de boven-/onderlagen." +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Tussenruimte Midden Raft" -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het uitvoeren van bewegingen." +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "De afstand tussen de raftlijnen voor de middelste laag van de raft. De ruimte in het midden moet vrij breed zijn, maar toch smal genoeg om ondersteuning te bieden voor de bovenste lagen van de raft." -msgctxt "prime_tower_max_bridging_distance description" -msgid "The maximum length of the branches which may be printed over the air." -msgstr "" +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Bovenlagen Raft" + +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "Het aantal bovenlagen op de tweede raftlaag. Dit zijn volledig gevulde lagen waarop het model rust. Met twee lagen krijgt u een gladder oppervlak dan met één laag." -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "De maximale snelheid van de motor in de X-richting." +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Dikte Bovenlaag Raft" -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "De maximale snelheid van de motor in de Y-richting." +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Laagdikte van de bovenste lagen van de raft." -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "De maximale snelheid van de motor in de Z-richting." +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Breedte Bovenste Lijn Raft" -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "De maximale snelheid voor de doorvoer van het filament." +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "De breedte van de lijnen in de bovenkant van de raft. Dit kunnen dunne lijnen zijn, zodat de bovenkant van de raft glad wordt." -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "De maximale breedte van de treden van het trapvormige grondvlak van de supportstructuur die op het model rust. Wanneer u een lage waarde invoert, kan de supportstructuur minder gemakkelijk worden verwijderd. Wanneer u echter een te hoge waarde invoert, kan de supportstructuur instabiel worden." +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Bovenruimte Raft" -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "De minimale afstand tussen de buitenzijde van de matrijs en de buitenzijde van het model." +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "De afstand tussen de raftlijnen voor de bovenste lagen van de raft. Als u een solide oppervlak wilt maken, moet de ruimte gelijk zijn aan de lijnbreedte." -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "De minimale bewegingssnelheid van de printkop." +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "Monotone volgorde van het bovenste oppervlak van het vlot" -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "De minimale temperatuur tijdens het opwarmen naar de printtemperatuur waarbij met printen kan worden begonnen." +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "Print de lijnen van het bovenste oppervlak van het vlot in een volgorde die ervoor zorgt dat ze altijd overlappen met aangrenzende lijnen in één richting. Dit kost iets meer tijd om te printen, maar het oppervlak ziet er consistenter uit, wat ook zichtbaar is op de onderkant van het model." -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "De minimale tijd die een extruder inactief moet zijn, voordat de nozzle wordt afgekoeld. Alleen als een extruder gedurende langer dan deze tijd niet wordt gebruikt, wordt deze afgekoeld naar de stand-bytemperatuur." +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "Aantal vlotwanden" -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "De minimale interne overhanghoek waarbij vulling wordt toegevoegd. Bij een waarde van 0° worden objecten volledig gevuld. Bij 90° wordt er geen vulling geprint." +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "Het aantal contouren dat moet worden geprint rond het lineaire patroon van het vlot." -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "De minimale overhanghoek waarbij een supportstructuur wordt toegevoegd. Bij een waarde van 0° wordt elke overhang ondersteund. Bij 90° wordt er geen supportstructuur geprint." +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Aantal wanden grondvlak raft" -msgctxt "retraction_min_travel description" -msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." -msgstr "De minimale bewegingsafstand voordat het filament kan worden ingetrokken. Hiermee vermindert u het aantal intrekkingen in een klein gebied." +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "Het aantal contouren dat wordt geprint rond het lineaire patroon in de basislaag van de raft." -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "De minimale lengte van de skirt of de brim. Als deze minimumlengte niet wordt bereikt met het totale aantal skirt- of brimlijnen, worden er meer skirt- of brimlijnen toegevoegd totdat de minimale lengte is bereikt. Opmerking: als het aantal lijnen is ingesteld op 0, wordt dit genegeerd." +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "Aantal middenwanden vlot" -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "De minimum lijnbreedte voor opvuller voor ruimte middelste lijn bij muren met meerdere lijnen. Deze instelling bepaalt bij welke modeldikte we overschakelen van het printen van twee wandlijnen naar het printen van twee buitenwanden en één centrale wand in het midden. Een hogere Minimum breedte ongelijkmatige wandlijn leidt naar een hogere maximale lijnbreedte bij een gelijkmatige wand. De maximale breedte ongelijkmatige wandlijn wordt berekend als 2 * Minimum breedte gelijkmatige wandlijn." +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "Het aantal contouren dat moet worden geprint rond het lineaire patroon in de middelste lagen van het vlot." -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "De minimum lijnbreedte voor normale polygonale wanden. Deze instelling bepaalt bij welke modeldikte we overschakelen van het printen van één dunne wandlijn op het printen van twee wandlijnen. Een hogere Minimum lijnbreedte gelijkmatige wand leidt tot een hogere maximum lijnbreedte voor een ongelijkmatige wand. De maximum breedte bij een gelijkmatige wandlijn wordt berekend als Lijnbreedte buitenste wand + 0,5 * Minimum lijnbreedte voor een ongelijkmatige wand." +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "Aantal bovenwanden vlot" -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "De minimale printsnelheid die wordt aangehouden ondanks vertragen vanwege de minimale laagtijd. Als de printer te zeer vertraagt, wordt de druk in de nozzle te laag, wat leidt tot slechte printkwaliteit." +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "Het aantal contouren dat moet worden geprint rond het lineaire patroon in de bovenste lagen van het vlot." -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "Het minimale formaat van een lijnsegment na het slicen. Als u deze waarde verhoogt, wordt het model met een lagere resolutie geprint. Hiermee kan de printer de verwerkingssnelheid van de G-code bijhouden en wordt de slicesnelheid verhoogd doordat details van het raster worden verwijderd die niet kunnen worden verwerkt." +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Printsnelheid Raft" -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "Het minimale formaat van een bewegingslijnsegment na het slicen. Als u deze waarde verhoogt, hebben de bewegingen minder vloeiende hoeken. Hiermee kan de printer de verwerkingssnelheid van de G-code bijhouden, maar kan het model door vermijding minder nauwkeurig worden." +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "De snelheid waarmee de raft wordt geprint." -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "De minimale helling van het gebied voordat traptreden van kracht worden. Lage waarden zouden het gemakkelijker moeten maken om support op ondieperere hellingen te verwijderen. Zeer lage waarden kunnen echter resulteren in een aantal zeer contra-intuïtieve resultaten op andere delen van het model." +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Printsnelheid Grondvlak Raft" -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "De tijd die minimaal aan het printen van een laag wordt besteed. Hierdoor wordt de printer gedwongen langzamer te printen zodat deze ten minste de ingestelde tijd gebruikt voor het printen van een laag. Hierdoor kan het geprinte materiaal voldoende afkoelen voordat de volgende laag wordt geprint. Het printen van lagen kan nog steeds minder lang duren dan de minimale laagtijd als Printkop optillen is uitgeschakeld en als anders niet zou worden voldaan aan de Minimumsnelheid." +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "De snelheid waarmee de grondlaag van de raft wordt geprint. Deze laag moet vrij langzaam worden geprint, omdat er vrij veel materiaal uit de nozzle komt." -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "Het minimale volume voor elke laag van de primepijler om voldoende materiaal te zuiveren." +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Printsnelheid Midden Raft" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "De diameter van een tak die moet aansluiten op het model mag maximaal toenemen door samen te voegen met takken die de bouwplaat zouden kunnen bereiken. Als u dit verhoogt, wordt de printtijd verkort, maar wordt het ondersteuningsgebied dat op het model rust vergroot" +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "De snelheid waarmee de middelste laag van de raft wordt geprint. Deze laag moet vrij langzaam worden geprint, omdat er vrij veel materiaal uit de nozzle komt." -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "De naam van uw 3D-printermodel." +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Printsnelheid Bovenkant Raft" -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "De nozzle-ID voor een extruder train, bijvoorbeeld \"AA 0.4\" en \"BB 0.8\"." +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "De snelheid waarmee de toplagen van de raft worden geprint. Deze lagen moeten iets langzamer worden geprint, zodat de nozzle de aangrenzende oppervlaktelijnen langzaam kan effenen." -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "Tijdens bewegingen mijdt de nozzle delen die al zijn geprint. Deze optie is alleen beschikbaar wanneer combing ingeschakeld is." +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Printacceleratie Raft" -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "Tijdens bewegingen mijdt de nozzle supportstructuren die al zijn geprint. Deze optie is alleen beschikbaar wanneer combing ingeschakeld is." +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "De acceleratie tijdens het printen van de raft." -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "Het aantal bodemlagen. Wanneer deze waarde wordt berekend aan de hand van de dikte van de bodem, wordt deze afgerond naar een geheel getal." +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Printacceleratie Grondvlak Raft" -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "Het aantal contouren dat wordt geprint rond het lineaire patroon in de basislaag van de raft." +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "De acceleratie tijdens het printen van het grondvlak van de raft." -msgctxt "raft_interface_wall_count description" -msgid "The number of contours to print around the linear pattern in the middle layers of the raft." -msgstr "" +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Printacceleratie Midden Raft" -msgctxt "raft_surface_wall_count description" -msgid "The number of contours to print around the linear pattern in the top layers of the raft." -msgstr "" +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "De acceleratie tijdens het printen van de middelste laag van de raft." -msgctxt "raft_wall_count description" -msgid "The number of contours to print around the linear pattern of the raft." -msgstr "" +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Printacceleratie Bovenkant Raft" -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "Het aantal opvullagen dat skinranden ondersteunt." +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "De acceleratie tijdens het printen van de toplagen van de raft." -msgctxt "initial_bottom_layers description" -msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "Het aantal initiële onderste lagen, vanaf de bouwplaat naar boven. Wanneer deze waarde wordt berekend aan de hand van de dikte van de bodem, wordt deze afgerond naar een geheel getal." +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Printschok Raft" -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "Het aantal lagen tussen de basis en het oppervlak van de raft. Deze omvatten de het grootste deel van de dikte van de raft. Uitbreiden hiervan creëert een dikkere, stevigere raft." +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "De schok tijdens het printen van de raft." -msgctxt "brim_line_count description" -msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." -msgstr "Het aantal lijnen dat voor een brim wordt gebruikt. Meer lijnen zorgen voor betere hechting aan het platform, maar verkleinen uw effectieve printgebied." +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Printschok Grondvlak Raft" -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "Het aantal lijnen dat voor de supportbrim wordt gebruikt. Meer brimlijnen zorgen voor betere hechting aan het platform, maar kosten wat extra materiaal." +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "De schok tijdens het printen van het grondvlak van de raft." -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "Het aantal bovenlagen op de tweede raftlaag. Dit zijn volledig gevulde lagen waarop het model rust. Met twee lagen krijgt u een gladder oppervlak dan met één laag." +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Printschok Midden Raft" -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "Het aantal bovenlagen. Wanneer deze waarde wordt berekend aan de hand van de dikte van de bovenkant, wordt deze afgerond naar een geheel getal." +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "De schok tijdens het printen van de middelste laag van de raft." -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "Het aantal bovenste skinlagen. Doorgaans is één bovenste skinlaag voldoende om oppervlakken van hogere kwaliteit te verkrijgen." +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Printschok Bovenkant Raft" -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Het aantal wanden rond de vulling van de supportstructuur. Met een extra wand wordt de supportstructuur betrouwbaarder en kan de overhang beter worden geprint, maar wordt de printtijd verlengd en wordt meer materiaal gebruikt." +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "De schok tijdens het printen van de toplagen van de raft." -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Het aantal muren waarmee de ondersteuningsinterfacevloer moet worden omgeven. Door een muur toe te voegen, kan de ondersteuningsprint betrouwbaarder worden gemaakt en kunnen overhangen beter worden ondersteund, maar neemt de printtijd en het gebruikte materiaal toe." +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Ventilatorsnelheid Raft" -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Het aantal muren waarmee het ondersteuningsinterfacedak kan worden omgeven. Door een muur toe te voegen, kan de ondersteuningsprint betrouwbaarder worden gemaakt en kunnen overhangen beter worden ondersteund, maar neemt de printtijd en het gebruikte materiaal toe." +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "De ventilatorsnelheid tijdens het printen van de raft." -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Het aantal muren waarmee de ondersteuningsinterface moet worden omgeven. Door een muur toe te voegen, kan de ondersteuningsprint betrouwbaarder worden gemaakt en kunnen overhangen beter worden ondersteund, maar neemt de printtijd en het gebruikte materiaal toe." +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Ventilatorsnelheid Grondlaag Raft" -msgctxt "wall_distribution_count description" -msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." -msgstr "Het aantal wanden, geteld vanaf het midden, waarover de variatie moet worden gespreid. Lagere waarden betekenen dat de breedte van de buitenwanden niet verandert." +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "De ventilatorsnelheid tijdens het printen van de grondlaag van de raft." -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "Het aantal wandlijnen. Wanneer deze waarde wordt berekend aan de hand van de wanddikte, wordt deze afgerond naar een geheel getal." +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Ventilatorsnelheid Midden Raft" -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "De buitendiameter van de punt van de nozzle." +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "De ventilatorsnelheid tijdens het printen van de middelste laag van de raft." -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "Het patroon van het vulmateriaal van de print. De lijn- en zigzagvulling veranderen per vullaag van richting, waardoor u bespaart op materiaalkosten. De raster-, driehoeks-, tri-hexagonale, kubische, achtvlaks-, afgeknotte kubus-, kruis- en concentrische patronen worden per laag volledig geprint. Gyroïde, kubische, afgeknotte kubus- en achtvlaksvullingen veranderen per laag voor een meer gelijke krachtverdeling in elke richting. Bliksemvulling minimaliseert de vulling doordat deze alleen het plafond van het object ondersteunt." +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Ventilatorsnelheid Bovenkant Raft" -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "Het patroon van de supportstructuur van de print. Met de verschillende beschikbare opties print u stevige of eenvoudig te verwijderen supportstructuren." +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "De ventilatorsnelheid tijdens het printen van de toplagen van de raft." -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "Het patroon van de bovenste lagen." +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Dubbele Doorvoer" -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Het patroon van de boven-/onderlagen." +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Instellingen die worden gebruikt voor het printen met meerdere extruders." -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "Het patroon van de eerste laag aan de onderkant van de print." +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Primepijler Inschakelen" -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "Het patroon dat wordt gebruikt voor het strijken van oppervlakken." +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "Print een pijler naast de print, waarop het materiaal na iedere nozzlewisseling wordt ingespoeld." -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "Het patroon waarmee de vloeren van de supportstructuur worden geprint." +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "Type voorbereidingstoren" -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "Het patroon waarmee de verbindingsstructuur van het model wordt geprint." +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
                                      • Normal: create a bucket in which secondary materials are primed
                                      • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
                                      " +msgstr "Zo genereer je de voorbereidingstoren:
                                      • Normaal: creëer een emmer waarin secundaire materialen worden voorbereid
                                      • Interleaved: creëer een zo minimaal mogelijke voorbereidingstoren. Dit bespaart tijd en filament, maar is alleen mogelijk als de gebruikte materialen aan elkaar hechten
                                      " -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "Het patroon waarmee de daken van de supportstructuur worden geprint." +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "Normaal" -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "De positie nabij waar met het printen van elk deel van een laag moet worden begonnen." +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "Interleaved" -msgctxt "support_tree_angle_slow description" -msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." -msgstr "De geprefereerde hoek van de takken, wanneer ze het model niet hoeven te vermijden. Gebruik een lagere hoek om ze verticaler en stabieler te maken. Gebruik een hogere hoek voor takken om sneller samen te voegen." +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Formaat Primepijler" -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "De voorkeursplaats van de ondersteunende structuren. Als structuren niet op de gewenste locatie kunnen worden geplaatst, worden ze elders geplaatst, zelfs als dat betekent dat ze op het model moeten worden geplaatst." +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "De breedte van de primepijler." -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "De maximale onmiddellijke snelheidsverandering in de eerste laag." +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Minimumvolume primepijler" -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "De vorm van het platform zonder rekening te houden met niet-printbare gebieden." +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "Het minimale volume voor elke laag van de primepijler om voldoende materiaal te zuiveren." -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "De vorm van de printkop. Deze coördinaten hebben betrekking op de positie van de printkop. Meestal is dit de positie van de eerste extruder. De dimensies links van en vóór de printkop moeten negatieve coördinaten zijn." +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "Maximale overbruggingsafstand voorbereidingstoren" -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "De grootte van luchtbellen op kruispunten in het kruis 3D-patroon op punten waar het patroon zichzelf raakt." +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "De maximale lengte van de takken die via de lucht mogen worden geprint." -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "Het kleinste volume dat een doorvoerpad moet hebben, voordat coasting mogelijk is. Voor een kort doorvoerpad wordt in de Bowden-buis minder druk opgebouwd en wordt het uitgespreide volume daarom lineair geschaald. Deze waarde moet altijd groter zijn dan de waarde voor het coasting-volume." +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "X-positie Primepijler" -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "De snelheid (°C/s) waarmee de nozzle afkoelt, gemiddeld over het venster van normale printtemperaturen en de stand-bytemperatuur." +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "De X-coördinaat van de positie van de primepijler." -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "De snelheid (°C/s) waarmee de nozzle wordt verwarmd, gemiddeld over het venster van normale printtemperaturen en de stand-bytemperatuur." +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Y-positie Primepijler" -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "De snelheid waarmee alle binnenwanden worden geprint. Als u de binnenwand sneller print dan de buitenwand, verkort u de printtijd. Het wordt aangeraden hiervoor een snelheid in te stellen die ligt tussen de printsnelheid van de buitenwand en de vulsnelheid." +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "De Y-coördinaat van de positie van de primepijler." -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "De snelheid waarmee brugskinregio's worden geprint." +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Inactieve nozzle vegen op primepijler" -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "De snelheid waarmee de vulling wordt geprint." +msgctxt "prime_tower_wipe_enabled description" +msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." +msgstr "Veeg na het printen van de primepijler met één nozzle het doorgevoerde materiaal van de andere nozzle af aan de primepijler." -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "De snelheid waarmee wordt geprint." +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Base" +msgstr "Basis van de Primepijler" -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "De snelheid waarmee de grondlaag van de raft wordt geprint. Deze laag moet vrij langzaam worden geprint, omdat er vrij veel materiaal uit de nozzle komt." +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "Door deze instelling in te schakelen, krijgt uw prime toren een brim, zelfs als het model dat niet heeft. Als u een stevigere basis wilt voor een hoge toren, kunt u de basis hoogte verhogen." -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "De snelheid waarmee brugwanden worden geprint." +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "Grootte van de basis van de Primepijler" -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "De snelheid waarmee de ventilatoren draaien bij de start van het printen. Tijdens het printen van de volgende lagen wordt de ventilatorsnelheid geleidelijk verhoogd tot de laag waarin de snelheid overeenkomt met de normale ventilatorsnelheid op hoogte." +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "De breedte van de brim/basis van de prime toren. Een grotere basis verbetert de hechting aan het bouwplateau, maar vermindert ook het effectieve printgebied." -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "De snelheid waarmee de ventilatoren draaien voordat de drempelwaarde wordt bereikt. Wanneer een laag sneller wordt geprint dan de drempelwaarde, wordt de ventilatorsnelheid geleidelijk verhoogd tot de maximale ventilatorsnelheid." +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "Hoogte van de basis van de Primepijler" -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "De snelheid waarmee de ventilatoren draaien bij de minimale laagtijd. Wanneer de drempelwaarde wordt bereikt, wordt de ventilatorsnelheid geleidelijk verhoogd van de normale ventilatorsnelheid naar de maximale ventilatorsnelheid." +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "De hoogte van de basis van de prime toren. Het verhogen van deze waarde resulteert in een stevigere prime toren omdat de basis breder zal zijn. Als deze instelling te laag is, zal de prime toren geen stevige basis hebben." -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "De snelheid waarmee het filament tijdens een intrekbeweging wordt geprimed." +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "Basis hellingshoek van de Prime Toren" -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "De snelheid waarmee het filament tijdens een intrekbeweging voor afvegen wordt geprimed." +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "De groottefactor die gebruikt wordt voor de helling van de basis van de prime toren. Als u deze waarde verhoogt, wordt de basis slanker. Als u het verlaagt, wordt de basis dikker." -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "De snelheid waarmee het filament tijdens een intrekbeweging na het wisselen van de nozzles wordt geprimed." +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "Lijnafstand van het vlot van de Primepijler" -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "De snelheid waarmee het filament tijdens een intrekbeweging wordt ingetrokken en geprimed." +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "De afstand tussen de vlotlijnen voor de unieke vlotlaag van de Prime Tower. Een brede afstand maakt het eenvoudig om het vlot van de bouwplaat te verwijderen." -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "De snelheid waarmee het filament tijdens een intrekbeweging voor afvegen wordt ingetrokken en geprimed." +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Uitloopscherm Inschakelen" -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "De snelheid waarmee het filament tijdens een intrekbeweging tijdens het wisselen van de nozzles wordt ingetrokken." +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "Hiermee wordt het uitloopscherm aan de buitenkant ingeschakeld, waardoor een shell rond het model wordt gemaakt waarop een tweede nozzle kan worden afgeveegd als deze zich op dezelfde hoogte bevindt als de eerste nozzle." -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "De snelheid waarmee het filament tijdens een intrekbeweging wordt ingetrokken." +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Hoek Uitloopscherm" -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "De snelheid waarmee het filament tijdens een intrekbeweging voor afvegen wordt ingetrokken." +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "De maximale hoek voor een deel van het uitloopscherm. Hierbij is 0 graden verticaal en 90 graden horizontaal. Een kleinere hoek leidt tot minder mislukte uitloopschermen, maar zorgt ervoor dat er meer materiaal wordt gebruikt." -msgctxt "switch_extruder_retraction_speeds description" -msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." -msgstr "De snelheid waarmee het filament wordt ingetrokken. Een hogere intreksnelheid werkt beter, maar bij een erg hoge intreksnelheid kan het filament gaan haperen." +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Afstand Uitloopscherm" -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "De snelheid waarmee de supportvloer wordt geprint. Als u deze langzamer print, hecht het supportmateriaal beter aan de bovenzijde van het model." +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "De afstand tussen het uitloopscherm en de print, in de X- en Y-richting." -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "De snelheid waarmee de supportvulling wordt geprint. Als u de vulling langzamer print, wordt de stabiliteit verbeterd." +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Intrekafstand bij Wisselen Nozzles" -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "De snelheid waarmee de middelste laag van de raft wordt geprint. Deze laag moet vrij langzaam worden geprint, omdat er vrij veel materiaal uit de nozzle komt." +msgctxt "switch_extruder_retraction_amount description" +msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." +msgstr "De intrekafstand wanneer de extruders worden gewisseld. Als u deze optie instelt op 0, wordt er niet ingetrokken. Deze waarde dient doorgaans gelijk te zijn aan de lengte van de verwarmingszone." -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "De snelheid waarmee de buitenwanden worden geprint. Als u de buitenwand langzamer print, verhoogt u de uiteindelijke kwaliteit van de skin. Een groot verschil tussen de printsnelheid van de binnenwand en de printsnelheid van de buitenwand kan echter een negatief effect hebben op de kwaliteit." +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Intreksnelheid bij Wisselen Nozzles" + +msgctxt "switch_extruder_retraction_speeds description" +msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." +msgstr "De snelheid waarmee het filament wordt ingetrokken. Een hogere intreksnelheid werkt beter, maar bij een erg hoge intreksnelheid kan het filament gaan haperen." -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "De snelheid waarmee de primepijler wordt geprint. Als u de primepijler langzamer print, wordt deze stabieler. Dit is zinvol wanneer de hechting tussen de verschillende filamenten niet optimaal is." +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Intrekkingssnelheid bij Wisselen Nozzles" -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "De snelheid waarmee de printventilatoren draaien." +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "De snelheid waarmee het filament tijdens een intrekbeweging tijdens het wisselen van de nozzles wordt ingetrokken." -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "De snelheid waarmee de raft wordt geprint." +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Primesnelheid bij Wisselen Nozzles" -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "De snelheid waarmee de supportdaken en -vloeren worden geprint. Als u deze langzamer print, wordt de kwaliteit van de overhang verbeterd." +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "De snelheid waarmee het filament tijdens een intrekbeweging na het wisselen van de nozzles wordt geprimed." -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "De snelheid waarmee de supportdaken worden geprint. Als u deze langzamer print, wordt de kwaliteit van de overhang verbeterd." +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Extra primehoeveelheid na wisselen van nozzle" -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "De snelheid waarmee de skirt en de brim worden geprint. Normaal gebeurt dit met dezelfde snelheid als de snelheid van de eerste laag, maar in sommige situaties wilt u de skirt of de brim mogelijk met een andere snelheid printen." +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "Extra primemateriaal na het wisselen van de nozzle." -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "De snelheid waarmee de supportstructuur wordt geprint. Als u de supportstructuur sneller print, kunt u de printtijd aanzienlijk verkorten. De kwaliteit van het oppervlak van de supportstructuur is niet belangrijk, aangezien deze na het printen wordt verwijderd." +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Modelcorrecties" -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "De snelheid waarmee de toplagen van de raft worden geprint. Deze lagen moeten iets langzamer worden geprint, zodat de nozzle de aangrenzende oppervlaktelijnen langzaam kan effenen." +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Maak de rasters beter geschikt voor 3D-printen." -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "De snelheid waarmee de binnenwanden van het bovenoppervlak worden geprint." +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Overlappende Volumes Samenvoegen" -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "De snelheid waarmee de buitenste wanden van het bovenoppervlak worden geprint." +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "Negeer de interne geometrie die ontstaat uit overlappende volumes binnen een raster en print de volumes als een geheel. Hiermee kunnen onbedoelde holtes binnenin verdwijnen." -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "De snelheid waarmee de verticale Z-beweging wordt gemaakt voor Z-sprongen. Dit is meestal lager dan de printsnelheid, omdat het platform of de rijbrug van de machine moeilijker te verplaatsen is." +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Alle Gaten Verwijderen" -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "De snelheid waarmee wanden worden geprint." +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "Verwijder de gaten in elke laag en behoudt u alleen de buitenvorm. Hiermee negeert u eventuele onzichtbare interne geometrie. U negeert echter ook gaten in lagen die u van boven- of onderaf kunt zien." -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "De snelheid waarmee over de bovenste laag wordt bewogen." +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Uitgebreid Hechten" -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "De snelheid waarmee het filament wordt ingetrokken om het recht af te breken." +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "Met uitgebreid hechten worden zo veel mogelijk open gaten in het raster gehecht doordat het gat wordt gedicht met polygonen die elkaar raken. Deze optie kan de verwerkingstijd aanzienlijk verlengen." -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "De snelheid waarmee bovenste skinlagen worden geprint." +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Onderbroken Oppervlakken Behouden" -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "De snelheid waarmee boven-/onderlagen worden geprint." +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "Normaal probeert Cura kleine gaten in het raster te hechten en delen van een laag met grote gaten te verwijderen. Als u deze optie inschakelt, behoudt u de delen die niet kunnen worden gehecht. Deze optie kan als laatste redmiddel worden gebruikt als er geen andere manier meer is om correcte G-code te genereren." -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "De snelheid waarmee bewegingen plaatsvinden." +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Samengevoegde rasters overlappen" -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "De snelheid waarmee de printkop tijdens coasting beweegt ten opzichte van de snelheid voor het doorvoerpad. Hiervoor wordt een waarde van iets minder dan 100% aangeraden, omdat de druk in de bowden-buis zakt tijdens een coasting-beweging." +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "Laat rasters die elkaar raken deels met elkaar overlappen. Hierdoor hechten ze beter aan elkaar." -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "De snelheid waarmee de eerste laag wordt geprint. Hiervoor wordt een lagere waarde aanbevolen om hechting aan het platform te verbeteren. Heeft geen invloed op de hechtstructuren van het platform zelf, zoals brim en raft." +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Rastersnijpunt verwijderen" -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "De snelheid waarmee de eerste laag wordt geprint. Hiervoor wordt een lagere waarde aanbevolen om hechting aan het platform te verbeteren." +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "Hiermee verwijdert u gebieden waar meerdere rasters elkaar overlappen. Deze functie kan worden gebruikt als samengevoegde objecten van twee materialen elkaar overlappen." -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "De snelheid van de bewegingen tijdens het printen van de eerste laag. Hiervoor wordt een lagere waarde aanbevolen om te voorkomen dat eerder geprinte delen van het platform worden getrokken. De waarde van deze instelling kan automatisch worden berekend uit de verhouding tussen de bewegingssnelheid en de printsnelheid." +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "Verwijderen van afwisselend raster" -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "De temperatuur waarbij het filament wordt afgebroken om het recht af te breken." +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "Schakel naar de rastersnijpuntvolumes die bij elke laag horen, zodat de overlappende rasters worden verweven. Als u deze instelling uitschakelt, krijgt een van de rasters al het volume in de overlap, terwijl dit uit de andere rasters wordt verwijderd." -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "De omgevingstemperatuur waarin wordt geprint. Als deze waarde is ingesteld op 0, wordt de temperatuur van het werkvolume niet aangepast." +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Lege eerste lagen verwijderen" -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "De temperatuur van de nozzle op de momenten waarop een andere nozzle wordt gebruikt voor het printen." +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "Hiermee worden de lege lagen onder de eerste geprinte laag verwijderd, indien aanwezig. Als u deze instelling uitschakelt, kunnen lege eerste lagen ontstaan als de Slicetolerantie is ingesteld op Exclusief of Midden." -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "De temperatuur waarnaar alvast kan worden afgekoeld net voordat het printen wordt beëindigd." +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Maximale resolutie" -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer." -msgstr "De temperatuur die gebruikt wordt voor het printen van de eerste laag." +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "Het minimale formaat van een lijnsegment na het slicen. Als u deze waarde verhoogt, wordt het model met een lagere resolutie geprint. Hiermee kan de printer de verwerkingssnelheid van de G-code bijhouden en wordt de slicesnelheid verhoogd doordat details van het raster worden verwijderd die niet kunnen worden verwerkt." -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "De temperatuur waarmee wordt geprint." +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Maximale bewegingsresolutie" -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "De temperatuur van het verwarmde platform voor de eerste laag. Als de temperatuur 0 is, wordt het platform bij de eerste laag niet verwarmd." +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "Het minimale formaat van een bewegingslijnsegment na het slicen. Als u deze waarde verhoogt, hebben de bewegingen minder vloeiende hoeken. Hiermee kan de printer de verwerkingssnelheid van de G-code bijhouden, maar kan het model door vermijding minder nauwkeurig worden." -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "De temperatuur van het verwarmde platform. Als de temperatuur is ingesteld op 0, wordt het platform niet verwarmd." +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Maximale afwijking" -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "De temperatuur die wordt gebruikt om materiaal te zuiveren, moet ongeveer gelijk zijn aan de hoogst mogelijke printtemperatuur." +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "De maximaal toegestane afwijking tijdens het verlagen van de resolutie voor de instelling Maximale resolutie. Als u deze waarde verhoogt, wordt de print minder nauwkeurig, maar wordt de G-code kleiner. Maximale afwijking is een limiet voor Maximale resolutie, dus als de twee tegenstrijdig zijn, wordt de Maximale afwijking altijd aangehouden." -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "De dikte van de onderlagen in de print. Het aantal onderlagen wordt bepaald door het delen van deze waarde door de laaghoogte." +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Maximale afwijking doorvoergebied" -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "De dikte van de extra vulling die skinranden ondersteunt." +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "De maximaal toegestane afwijking van het doorvoergebied bij het verwijderen van tussenliggende punten van een rechte lijn. Een tussenliggend punt kan dienen als breedte-veranderend punt in een lange rechte lijn. Verwijdering van het punt leidt er dus toe dat de lijn een uniforme breedte krijgt en als gevolg daarvan een stuk van het doorvoergebied verliest (of wint). Als u deze waarde verhoogt, merkt u mogelijk een lichte onder- (of over-)doorvoer op tussen rechte parallele wanden, omdat er meer tussenliggende punten kunnen worden verwijderd die de breedte wijzigen. Uw print zal minder accuraat zijn, maar de g-code is kleiner." -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "De dikte van de verbindingsstructuur waar dit het model aan de onder- of bovenkant raakt." +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "Vloeiende beweging inschakelen" -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "De dikte van de supportvloeren. Hiermee wordt het aantal dichte lagen bepaald dat wordt geprint op plekken van een model waarop een supportstructuur rust." +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "Indien ingeschakeld, worden gereedschapsbanen gecorrigeerd voor printers met vloeiende bewegingsplanners. Kleine bewegingen die afwijken van de algemene richting van het gereedschapspad worden afgevlakt om vloeiende bewegingen te verbeteren." -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "De dikte van de supportdaken. Hiermee wordt het aantal dichte lagen bepaald aan de bovenkant van de supportstructuur waarop het model rust." +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "Vloeiende beweging verschuivingsafstand" -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "De dikte van de bovenlagen in de print. Het aantal bovenlagen wordt bepaald door het delen van deze waarde door de laaghoogte." +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Afstandspunten worden verschoven om het pad vloeiend te maken" -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "De dikte van de boven-/onderlagen in de print. Het aantal boven-/onderlagen wordt bepaald door het delen van deze waarde door de laaghoogte." +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "Vloeiende beweging kleine afstand" -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "De dikte van de wanden in horizontale richting. Het aantal wanden wordt bepaald door het delen van deze waarde door de breedte van de wandlijn." +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Afstandspunten worden verschoven om het pad vloeiend te maken" -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "De dikte per laag vulmateriaal. Deze waarde moet altijd een veelvoud van de laaghoogte zijn en wordt voor het overige afgerond." +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "Hoek vloeiende beweging" -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "De dikte per laag materiaal supportvulling. Deze waarde moet altijd een veelvoud van de laaghoogte zijn en wordt voor het overige afgerond." +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "Als een baansegment meer dan deze hoek afwijkt van de algemene beweging, wordt hij afgevlakt." -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "De G-code-versie die moet worden gegenereerd." +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Speciale Modi" -msgctxt "material_type description" -msgid "The type of material used." -msgstr "" +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Niet-traditionele manieren om uw modellen te printen." + +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Printvolgorde" -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "Hiermee stelt u volume in dat anders zou worden afgevoerd. Deze waarde dient zo dicht mogelijk bij de berekende waarde van de nozzlediameter te liggen." +msgctxt "print_sequence description" +msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." +msgstr "Hiermee bepaalt u of alle modellen laag voor laag moeten worden geprint of dat eerst het ene model helemaal klaar moet zijn voordat aan het volgende wordt begonnen. Eén voor één printen is mogelijk als a) slechts één extruder is ingeschakeld en b) alle modellen zodanig zijn gescheiden dat de hele printkop ertussen kan bewegen en alle modellen lager zijn dan de afstand tussen de nozzle en de X/Y-assen." -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "De breedte (X-richting) van het printbare gebied." +msgctxt "print_sequence option all_at_once" +msgid "All at Once" +msgstr "Alles Tegelijk" -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "De breedte van de brim die onder de support wordt geprint. Een bredere brim kost meer materiaal, maar hecht beter aan het platform." +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "Eén voor Eén" -msgctxt "interlocking_beam_width description" -msgid "The width of the interlocking structure beams." -msgstr "De breedte van de in elkaar grijpende structuurbalken." +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Handmatig afdrukvolgorde instellen" -msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "De breedte van de brim/basis van de prime toren. Een grotere basis verbetert de hechting aan het bouwplateau, maar vermindert ook het effectieve printgebied." +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "Hiermee kunt u de objectlijst ordenen om de printvolgorde handmatig in te stellen. Het eerste object in de lijst wordt als eerste geprint." -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "De breedte van de primepijler." +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Vulraster" -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "De breedte van de trilling. Het wordt aangeraden hiervoor een waarde in te stellen die lager is dan de breedte van de buitenwand, omdat de binnenwand niet verandert." +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "Gebruik dit raster om de vulling aan te passen van andere rasters waarmee dit raster overlapt. Met deze optie vervangt u vulgebieden van andere rasters met gebieden van dit raster. Het wordt aangeraden voor dit raster slechts één wand en geen boven-/onderskin te printen." -msgctxt "retraction_extrusion_window description" -msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." -msgstr "Dit is het gebied waarop het maximaal aantal intrekbewegingen van toepassing is. Deze waarde moet ongeveer overeenkomen met de Intrekafstand, waarmee in feite het aantal intrekbewegingen op hetzelfde deel van het materiaal wordt beperkt." +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "Rasterverwerkingsrang" -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "De X-coördinaat van de positie van de primepijler." +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "Bepaalt de prioriteit van dit raster bij meerdere overlappende vulrasters. Gebieden met meerdere overlappende vulrasters krijgen de instellingen van het vulraster met de hoogste rang. Bij een vulraster met een hogere rang wordt de vulling van vulrasters met een lagere rang en normale rasters aangepast." -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "De Y-coördinaat van de positie van de primepijler." +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Snijdend raster" -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "Er zijn supportrasters aanwezig in de scène. Deze instelling wordt beheerd door Cura." +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "Beperk het volume van dit raster binnen andere rasters. U kunt dit gebruiken om bepaalde delen van een raster met andere instellingen en met een andere extruder te printen." -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "Met deze optie controleert u de afstand die de extruder moet coasten voordat een brugwand begint. Met coasting voordat de brug begint, vermindert u de druk in de nozzle en krijgt u mogelijk een vlakkere brug." +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Matrijs" -msgctxt "raft_base_smoothing description" -msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "Print modellen als matrijs, die vervolgens kan worden gegoten om een model te krijgen dat lijkt op de modellen op het platform." -msgctxt "raft_interface_smoothing description" -msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Minimale matrijsbreedte" -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Bepaalt hoeveel binnenhoeken in de raftcontour worden afgerond. Naar binnen gebogen hoeken worden tot een halve cirkel afgerond met een straal die gelijk is aan de hier opgegeven waarde. Met deze instellingen worden ook gaten in de raftcontour verwijderd die kleiner zijn dan een dergelijke cirkel." +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "De minimale afstand tussen de buitenzijde van de matrijs en de buitenzijde van het model." -msgctxt "raft_surface_smoothing description" -msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Dakhoogte matrijs" -msgctxt "retraction_count_max description" -msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." -msgstr "Deze instelling beperkt het aantal intrekbewegingen dat kan worden uitgevoerd binnen het gebied Minimaal afstandsgebied voor intrekken. Extra intrekbewegingen binnen dit gebied worden genegeerd. Hiermee voorkomt u dat hetzelfde stuk filament meerdere keren wordt ingetrokken en dus kan worden geplet en kan gaan haperen." +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "De hoogte die in de matrijs moet worden geprint boven de horizontale delen in het model." -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "Maak een wand rond het model. Deze vangt (warme) lucht en biedt bescherming tegen externe luchtbewegingen. De optie is met name geschikt voor materialen die snel kromtrekken." +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Matrijshoek" -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "Puntdiameter" +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "De hoek van de overhang van de buitenwanden die voor de matrijs worden gemaakt. Met 0° is de buitenshell van de matrijs verticaal, terwijl met 90° de buitenzijde van de matrijs de contouren van het model volgt." -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "Om te compenseren voor het krimpen van het materiaal wanneer het afkoelt, wordt het model met deze factor geschaald in de richting XY (horizontaal)." +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Supportstructuur raster" -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "Om te compenseren voor het krimpen van het materiaal wanneer het afkoelt, wordt het model met deze factor geschaald in Z-richting (verticaal)." +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "Gebruik dit raster om steunvlakken op te geven. Deze functie kan worden gebruikt om supportstructuur te genereren." -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "Het model wordt met deze factor geschaald ter compensatie van het krimpen van het materiaal tijdens het afkoelen." +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Raster tegen overhang" -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Bovenlagen" +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "Gebruik dit raster om op te geven waar geen enkel deel van het model mag worden gedetecteerd als overhang. Deze functie kan worden gebruikt om ongewenste supportstructuur te verwijderen." -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Uitbreidingsafstand van bovenste skinlaag" +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Oppervlaktemodus" -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Verwijderingsbreedte bovenste skinlaag" +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "Behandel het model alleen als oppervlak, volume of volumen met losse oppervlakken. In de normale printmodus worden alleen omsloten volumen geprint. Met de optie 'Oppervlak' wordt een enkele wand geprint waarbij het rasteroppervlak wordt gevolgd zonder vulling en zonder boven-/onderskin. Met de optie 'Beide' worden omsloten volumen normaal geprint en eventuele resterende polygonen als oppervlakken." -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Versnelling van de binnenwand op bovenlaag" +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Normaal" -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Schok van de buitenste muur van het bovenoppervlak" +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Oppervlak" -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Snelheid van de binnenste wand van het bovenoppervlak" +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Beide" -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Stroom van de binnenste wand(en) van het bovenoppervlak" +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Buitencontour Spiraliseren" -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Versnelling van de buitenste wand op bovenlaag" +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "Met spiraliseren wordt de Z-beweging van de buitenrand vloeiender. Hierdoor ontstaat een geleidelijke Z-verhoging over de hele print. Met deze functie maakt u van een massief model een enkelwandige print met een solide bodem. Deze functie dient alleen te worden ingeschakeld wanneer elke laag uit een enkel deel bestaat." -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Stroom van de buitenste wand van het bovenoppervlak" +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Gespiraliseerde contouren effenen" -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Schok van de binnenste muur van het bovenoppervlak" +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "Maak de gespiraliseerde contouren vlak om de zichtbaarheid van de Z-naad te verminderen (de Z-naad mag in de print nauwelijks zichtbaar zijn, maar is nog wel zichtbaar in de laagweergave). Houd er rekening mee dat fijne oppervlaktedetails worden vervaagd door het effenen." -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Snelheid van de buitenste wand van het bovenoppervlak" +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Relatieve Extrusie" -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Acceleratie bovenskin" +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "Gebruik relatieve extrusie in plaats van absolute extrusie. Bij het gebruik van relatieve E-steps wordt het nabewerken van G-code gemakkelijker. Deze optie wordt echter niet door alle printers ondersteund en kan lichte afwijkingen veroorzaken in de hoeveelheid afgezet materiaal ten opzichte van absolute E-steps. Ongeacht deze instelling wordt de extrusiemodus altijd ingesteld op absoluut voordat er een G-code-script wordt uitgevoerd." -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Extruder bovenskin" +msgctxt "experimental label" +msgid "Experimental" +msgstr "Experimenteel" -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Bovenste oppervlak skindoorvoer" +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Functies die nog niet volledig zijn uitgewerkt." -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Schok bovenskin" +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Slicetolerantie" -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Bovenste skinlagen" +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "Verticale tolerantie in de gesneden lagen. De contouren van een laag kunnen worden normaal gesproken gegenereerd door dwarsdoorsneden te nemen door het midden van de dikte van de laag (Midden). Daarnaast kan elke laag gebieden hebben die over de gehele dikte van de laag binnen het volume vallen (Exclusief), of kan een laag gebieden hebben die overal binnen de laag vallen (Inclusief). Met Inclusief worden de meeste details behouden, met Exclusief verkrijgt u de beste pasvorm en met Midden behoudt u het originele oppervlak het meest." -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Lijnrichting bovenskin" +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Midden" -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Lijnbreedte bovenskin" +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Exclusief" -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Patroon bovenskin" +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Inclusief" -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Snelheid bovenskin" +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Bewegingsoptimalisatie vulling" + +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "Wanneer deze optie is ingeschakeld, wordt de volgorde geoptimaliseerd waarin de vullijnen worden geprint om de afgelegde beweging te reduceren. De reductie in bewegingstijd die wordt bereikt, is in hoge mate afhankelijk van het model dat wordt geslicet, het vulpatroon, de dichtheid enz. Houd er rekening mee dat de slicetijd voor modellen met veel kleine vulgebieden aanzienlijk kan worden verlengd." -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Dikte Bovenkant" +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Grafiek Doorvoertemperatuur" -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "Van boven- en/of onderoppervlakken van het object met een hoek die groter is dan deze instelling, wordt de boven-/onderskin niet uitgebreid. Hiermee wordt uitbreiding voorkomen van smalle skingebieden die worden gemaakt wanneer het modeloppervlak een nagenoeg verticale helling heeft. Bij een hoek van 0° (horizontaal) wordt er geen skin uitgebreid; bij een hoek van 90° (verticaal) wordt alle skin uitgebreid." +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "Grafiek om de materiaaldoorvoer (in mm3 per seconde) te koppelen aan de temperatuur (graden Celsius)." -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Boven-/onderkant" +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Minimale Polygoonomtrek" -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Boven-/onderkant" +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "Polygonen in geslicete lagen, die een kleinere omtrek hebben dan deze waarde, worden eruit gefilterd. Bij lagere waarden krijgt het raster een hogere resolutie, waardoor het slicen langer duurt. Dit is voornamelijk bedoeld voor SLA-printers met een hoge resolutie en zeer kleine 3D-modellen die veel details bevatten." -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Acceleratie Boven-/Onderkant" +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "Genereer in elkaar grijpende structuur" -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Extruder Boven-/Onderkant" +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "Genereer op de plaatsen waar modellen elkaar raken een in elkaar grijpende balkstructuur. Dit verbetert de hechting tussen modellen, vooral modellen die in verschillende materialen zijn geprint." -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Doorvoer boven/onder" +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "Breedte in elkaar grijpende balk" -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Schok Boven-/Onderkant" +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "De breedte van de in elkaar grijpende structuurbalken." -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Lijnrichtingen boven-/onderkant" +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "In elkaar grijpende structuuroriëntatie" -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Lijnbreedte Boven-/onderkant" +msgctxt "interlocking_orientation description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "De hoogte van de balken van de in elkaar grijpende structuur, gemeten in aantal lagen. Minder lagen is sterker, maar vatbaarder voor defecten." -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Patroon Boven-/Onderkant" +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "Aantal in elkaar grijpende balklagen" -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Snelheid Boven-/Onderkant" +msgctxt "interlocking_beam_layer_count description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "De hoogte van de balken van de in elkaar grijpende structuur, gemeten in aantal lagen. Minder lagen is sterker, maar vatbaarder voor defecten." -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Dikte Boven-/Onderkant" +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "In elkaar grijpende diepte" -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "Platform Aanraken" +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "De afstand vanaf de grens tussen modellen om een in elkaar grijpende structuur te genereren, gemeten in cellen. Te weinig cellen leiden tot slechte hechting." -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Pijlerdiameter" +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "In elkaar grijpende grensvermijding" -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Hoek van Pijlerdak" +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "De afstand van de buitenkant van een model waarbij in elkaar grijpende structuren niet worden gegenereerd, gemeten in cellen." -msgctxt "mesh_rotation_matrix description" -msgid "Transformation matrix to be applied to the model when loading it from file." -msgstr "Omzettingsmatrix die moet worden toegepast op het model wanneer dit wordt geladen vanuit een bestand." +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Supportstructuur in Stukken Breken" -msgctxt "travel label" -msgid "Travel" -msgstr "Beweging" +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "Sla enkele verbindingen tussen lijnen van de supportstructuur over zodat deze gemakkelijker kan worden weggebroken. Deze instelling is van toepassing op het zigzag-vulpatroon van de supportstructuur." -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Bewegingsacceleratie" +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Grootte Supportstuk" -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Mijdafstand Tijdens Bewegingen" +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "Sla elke N millimeter een verbinding tussen de lijnen van de supportstructuur over, zodat deze gemakkelijker kan worden weggebroken." -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Bewegingsschok" +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Aantal Lijnen Supportstuk" -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Bewegingssnelheid" +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "Sla elke N verbindingslijnen één lijn over zodat de supportstructuur gemakkelijker kan worden weggebroken." -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "Behandel het model alleen als oppervlak, volume of volumen met losse oppervlakken. In de normale printmodus worden alleen omsloten volumen geprint. Met de optie 'Oppervlak' wordt een enkele wand geprint waarbij het rasteroppervlak wordt gevolgd zonder vulling en zonder boven-/onderskin. Met de optie 'Beide' worden omsloten volumen normaal geprint en eventuele resterende polygonen als oppervlakken." +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Tochtscherm Inschakelen" -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Boom" +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "Maak een wand rond het model. Deze vangt (warme) lucht en biedt bescherming tegen externe luchtbewegingen. De optie is met name geschikt voor materialen die snel kromtrekken." -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Tri-hexagonaal" +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Tochtscherm X-/Y-afstand" -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Driehoeken" +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "De afstand tussen het tochtscherm en de print, in de X- en Y-richting." -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Driehoeken" +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Beperking Tochtscherm" -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Driehoeken" +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "Stel de hoogte van het tochtscherm in. U kunt ervoor kiezen een tochtscherm met dezelfde hoogte als het model of lager te printen." -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Driehoeken" +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Volledig" -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Driehoeken" +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Beperkt" -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "Stamdiameter" +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Hoogte Tochtscherm" -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "Stel een hoogtebeperking in voor het tochtscherm. Boven deze hoogte wordt er geen tochtscherm geprint." -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Overlappende Volumes Samenvoegen" +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Overhang Printbaar Maken" -msgctxt "bridge_wall_min_length description" -msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." -msgstr "Niet-ondersteunde wanden die korter zijn dan deze waarde, worden geprint met de normale wandinstellingen. Langere niet-ondersteunde wanden worden geprint met de instellingen voor brugwanden." +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "Verander de geometrie van het geprinte model dusdanig dat minimale support is vereist. Een steile overhang wordt een vlakke overhang. Overhangende gedeelten worden verlaagd zodat deze meer verticaal komen te staan." -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Adaptieve lagen gebruiken" +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Maximale Modelhoek" -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Pijlers Gebruiken" +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "De maximale hoek van een overhang nadat deze printbaar is gemaakt. Bij een hoek van 0° worden alle overhangende gedeelten vervangen door een deel van het model dat is verbonden met het platform; bij een hoek van 90° wordt het model niet gewijzigd." -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "Gebruik een aparte acceleratiesnelheid voor verplaatsingen. Indien uitgeschakeld, gebruikt de beweging de acceleratiewaarde van de geprinte lijn op de bestemming." +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Maximale overhang oppervlak gat" -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "Gebruik een apart schokpercentage voor verplaatsingen. Indien uitgeschakeld, gebruikt de beweging de schokwaarde van de geprinte lijn op de bestemming." +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "Het maximale oppervlak van een gat in de basis van het model voordat het wordt verwijderd om de overhang printbaar te maken. Gaten die kleiner zijn dan dit oppervlak worden behouden. Bij een waarde van 0 mm² worden alle gaten in de basis van het model gevuld." -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "Gebruik relatieve extrusie in plaats van absolute extrusie. Bij het gebruik van relatieve E-steps wordt het nabewerken van G-code gemakkelijker. Deze optie wordt echter niet door alle printers ondersteund en kan lichte afwijkingen veroorzaken in de hoeveelheid afgezet materiaal ten opzichte van absolute E-steps. Ongeacht deze instelling wordt de extrusiemodus altijd ingesteld op absoluut voordat er een G-code-script wordt uitgevoerd." +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Coasting Inschakelen" -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "Gebruik speciale pijlers om delen met minimale overhang te ondersteunen. Deze pijlers hebben een grotere diameter dan het deel dat ze ondersteunen. Bij de overhang neemt de diameter van de pijlers af en vormen ze een dak." +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "Met coasting wordt het laatste gedeelte van een doorvoerpad vervangen door een beweging. Het doorgevoerde materiaal wordt gebruikt om het laatste gedeelte van het doorvoerpad te printen, om draadvorming te verminderen." -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "Gebruik dit raster om de vulling aan te passen van andere rasters waarmee dit raster overlapt. Met deze optie vervangt u vulgebieden van andere rasters met gebieden van dit raster. Het wordt aangeraden voor dit raster slechts één wand en geen boven-/onderskin te printen." +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Coasting-volume" -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "Gebruik dit raster om steunvlakken op te geven. Deze functie kan worden gebruikt om supportstructuur te genereren." +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "Hiermee stelt u volume in dat anders zou worden afgevoerd. Deze waarde dient zo dicht mogelijk bij de berekende waarde van de nozzlediameter te liggen." + +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Minimaal Volume vóór Coasting" -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "Gebruik dit raster om op te geven waar geen enkel deel van het model mag worden gedetecteerd als overhang. Deze functie kan worden gebruikt om ongewenste supportstructuur te verwijderen." +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "Het kleinste volume dat een doorvoerpad moet hebben, voordat coasting mogelijk is. Voor een kort doorvoerpad wordt in de Bowden-buis minder druk opgebouwd en wordt het uitgespreide volume daarom lineair geschaald. Deze waarde moet altijd groter zijn dan de waarde voor het coasting-volume." -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Door de gebruiker opgegeven" +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Coasting-snelheid" -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Verticale schaalfactor krimpcompensatie" +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "De snelheid waarmee de printkop tijdens coasting beweegt ten opzichte van de snelheid voor het doorvoerpad. Hiervoor wordt een waarde van iets minder dan 100% aangeraden, omdat de druk in de bowden-buis zakt tijdens een coasting-beweging." -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "Verticale tolerantie in de gesneden lagen. De contouren van een laag kunnen worden normaal gesproken gegenereerd door dwarsdoorsneden te nemen door het midden van de dikte van de laag (Midden). Daarnaast kan elke laag gebieden hebben die over de gehele dikte van de laag binnen het volume vallen (Exclusief), of kan een laag gebieden hebben die overal binnen de laag vallen (Inclusief). Met Inclusief worden de meeste details behouden, met Exclusief verkrijgt u de beste pasvorm en met Midden behoudt u het originele oppervlak het meest." +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Luchtbelgrootte bij Kruis 3D" -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Wachten op verwarmen van platform" +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "De grootte van luchtbellen op kruispunten in het kruis 3D-patroon op punten waar het patroon zichzelf raakt." -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Wachten op verwarmen van nozzle" +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Dichtheid kruisvulling afbeelding" -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Wandacceleratie" +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "De bestandslocatie van een afbeelding waarvan de helderheidswaarden de minimale dichtheid op de bijbehorende locatie in de vulling van de print bepalen." -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Aantal wanden voor distributie" +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Dichtheid kruisvulling afbeelding voor supportstructuur" -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Wandextruder" +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "De bestandslocatie van een afbeelding waarvan de helderheidswaarden de minimale dichtheid op de bijbehorende locatie in de supportstructuur bepalen." -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Wanddoorvoer" +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Conische supportstructuur inschakelen" -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Wandschok" +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "Maak draagvlakken aan de onderkant kleiner dan bij de overhang." -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Aantal Wandlijnen" +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Hoek Conische Supportstructuur" -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Lijnbreedte Wand" +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "De hoek van de schuine kant van de conische supportstructuur, waarbij 0 graden verticaal en 90 horizontaal is. Met een kleinere hoek is de supportstructuur steviger, maar bestaat deze uit meer materiaal. Met een negatieve hoek is het grondvlak van de supportstructuur breder dan de top." -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Wandvolgorde" +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Minimale Breedte Conische Supportstructuur" -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Wandsnelheid" +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "Minimale breedte waarmee het grondvlak van het kegelvormige supportgebied wordt verkleind. Een geringe breedte kan leiden tot een instabiele supportstructuur." -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Wanddikte" +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Rafelig Oppervlak" -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Lengte wandovergang" +msgctxt "magic_fuzzy_skin_enabled description" +msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." +msgstr "Door willekeurig trillen tijdens het printen van de buitenwand wordt het oppervlak hiervan ruw en ongelijk." -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Filterafstand wandovergang" +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Alleen rafelig oppervlak buitenkant" -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Filtermarge wandovergang" +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "Trillen alleen voor de contouren van de onderdelen en niet voor de gaten van de onderdelen." -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Drempelhoek wandovergang" +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Dikte Rafelig Oppervlak" -msgctxt "shell label" -msgid "Walls" -msgstr "Wanden" +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "De breedte van de trilling. Het wordt aangeraden hiervoor een waarde in te stellen die lager is dan de breedte van de buitenwand, omdat de binnenwand niet verandert." -msgctxt "wall_overhang_angle description" -msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." -msgstr "Wanden die overhangen in een hoek groter dan deze waarde, worden geprint met instellingen voor overhangende wanden. Wanneer de waarde 90 is, wordt een wand niet als een overhangende wand gezien. Een overhang die wordt ondersteund door ondersteuning wordt ook niet als overhang gezien." +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Dichtheid Rafelig Oppervlak" -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "Indien ingeschakeld, worden gereedschapsbanen gecorrigeerd voor printers met vloeiende bewegingsplanners. Kleine bewegingen die afwijken van de algemene richting van het gereedschapspad worden afgevlakt om vloeiende bewegingen te verbeteren." +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "De gemiddelde dichtheid van de punten die op elke polygoon in een laag worden geplaatst. Houd er rekening mee dat de originele punten van de polygoon worden verwijderd. Een lage dichtheid leidt dus tot een verlaging van de resolutie." -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "Wanneer deze optie is ingeschakeld, wordt de volgorde geoptimaliseerd waarin de vullijnen worden geprint om de afgelegde beweging te reduceren. De reductie in bewegingstijd die wordt bereikt, is in hoge mate afhankelijk van het model dat wordt geslicet, het vulpatroon, de dichtheid enz. Houd er rekening mee dat de slicetijd voor modellen met veel kleine vulgebieden aanzienlijk kan worden verlengd." +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Puntafstand Rafelig Oppervlak" -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "Wanneer deze optie ingeschakeld is, wordt de ventilatorsnelheid voor het koelen van de print gewijzigd voor de skinregio's direct boven de supportstructuur." +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "De gemiddelde afstand tussen de willekeurig geplaatste punten op elk lijnsegment. Houd er rekening mee dat de originele punten van de polygoon worden verwijderd. Een hoge effenheid leidt dus tot een verlaging van de resolutie. Deze waarde moet hoger zijn dan de helft van de Dikte rafelig oppervlak." -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "Als deze optie ingeschakeld is, zijn de Z-naadcoördinaten relatief ten opzichte van het midden van elk deel. Als de optie uitgeschakeld is, staan de coördinaten voor een absolute positie op het platform." +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Maximale extrusieoffset voor doorvoercompensatie" -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "Wanneer dit groter dan nul is, vindt bij een combing-beweging die langer is dan deze afstand, intrekking plaats. Wanneer dit nul is, is er geen maximum en vindt bij combing-bewegingen geen intrekking plaats." +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "De maximale afstand in mm om het filament te verplaatsen om veranderingen in de stroomsnelheid te compenseren." -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "Als dit groter is dan nul, wordt de horizontale gatexpansie geleidelijk toegepast op kleine gaten (kleine gaten worden meer uitgebreid). Indien ingesteld op nul, wordt de horizontale gatexpansie toegepast op alle gaten. Gaten groter dan de maximale diameter van de horizontale gatexpansie worden niet vergroot." +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Doorvoercompensatiefactor" -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "Als de horizontale uitzetting van het gat groter is dan nul, is dit de hoeveelheid offset die op alle gaten in elke laag wordt toegepast. Positieve waarden vergroten de grootte van de gaten, negatieve waarden verkleinen de grootte van de gaten. Wanneer deze instelling is ingeschakeld, kan deze verder worden afgesteld met Maximum diameter horizontale uitzetting gaten." +msgctxt "flow_rate_extrusion_offset_factor description" +msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." +msgstr "Hoe ver het filament moet worden verplaatst om veranderingen in de stroomsnelheid te compenseren, als een percentage van hoe ver het filament in één seconde extrusie zou bewegen." -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "Tijdens het printen van brugskinregio's wordt de hoeveelheid materiaal die wordt doorgevoerd, met deze waarde vermenigvuldigd." +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Adaptieve lagen gebruiken" -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "Tijdens het printen van brugwanden wordt de hoeveelheid materiaal die wordt doorgevoerd, met deze waarde vermenigvuldigd." +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "Met adaptieve lagen berekent u de laaghoogte afhankelijk van de vorm van het model." -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Tijdens het printen van de tweede brugskinlaag wordt de hoeveelheid materiaal die wordt doorgevoerd, met deze waarde vermenigvuldigd." +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "Maximale variatie adaptieve lagen" -msgctxt "bridge_skin_material_flow_3 description" -msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Tijdens het printen van de derde brugskinlaag wordt de hoeveelheid materiaal die wordt doorgevoerd, met deze waarde vermenigvuldigd." +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "De maximaal toegestane hoogte ten opzichte van de grondlaaghoogte." -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "Wanneer de minimale snelheid wordt bereikt vanwege de minimale laagtijd, wordt de printkop van de print verwijderd totdat de minimale laagtijd bereikt is." +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "Stapgrootte variatie adaptieve lagen" -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "Als het model kleine verticale gaten van slechts een paar lagen heeft, bevindt er zich doorgaans een skin rond die lagen in de kleine ruimte. Schakel deze instelling in om geen skin te genereren als de verticale tussenruimte erg klein is. Zo verloopt printen en slicen sneller, maar technisch nadeel is dat de vulling aan de lucht wordt blootgesteld." +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "Het hoogteverschil tussen de hoogte van de volgende laag ten opzichte van de vorige laag." -msgctxt "wall_transition_angle description" -msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." -msgstr "Wanneer u overgangen moet maken tussen even en oneven aantallen wanden. Een wigvorm met een hoek die groter is dan deze instelling, heeft geen overgangen. Er worden geen wanden geprint in het midden om de overblijvende ruimte te vullen. Door deze instelling kleiner te maken, reduceert u het aantal en de lengte van deze centrumwanden. Dit kan echter leiden tot openingen of een te hoge doorvoer." +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "Topografieformaat aanpasbare lagen" -msgctxt "wall_transition_length description" -msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." -msgstr "Bij de overgang tussen verschillende aantallen wanden naarmate het onderdeel dunner wordt, wordt een bepaalde hoeveelheid ruimte toegewezen voor het splitsen of samenvoegen van wandlijnen." +msgctxt "adaptive_layer_height_threshold description" +msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." +msgstr "Horizontale doelafstand tussen twee aangrenzende lagen. Als u deze instelling verkleint, worden dunnere lagen gebruikt om de randen van de lagen dichter bij elkaar te brengen." -msgctxt "wipe_hop_enable description" -msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "Tijdens het afvegen wordt het platform omlaag gebracht om ruimte te creëren tussen de nozzle en de print. Hiermee wordt voorkomen dat de nozzle de print raakt tijdens een beweging en wordt de kans verkleind dat de print van het platform wordt gestoten." +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Hoek Overhangende Wand" -msgctxt "retraction_hop_enabled description" -msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "Tijdens het intrekken wordt het platform omlaag gebracht om ruimte te creëren tussen de nozzle en de print. Hiermee wordt voorkomen dat de nozzle de print raakt tijdens een beweging en wordt de kans verkleind dat de print van het platform wordt gestoten." +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." +msgstr "Wanden die overhangen in een hoek groter dan deze waarde, worden geprint met instellingen voor overhangende wanden. Wanneer de waarde 90 is, wordt een wand niet als een overhangende wand gezien. Een overhang die wordt ondersteund door ondersteuning wordt ook niet als overhang gezien." -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "Hiermee bepaalt u of de optie X-/Y-afstand supportstructuur voorrang krijgt boven de optie Z-afstand supportstructuur of vice versa. Wanneer X/Y voorrang krijgt boven Z, kan de X-/Y-afstand de supportstructuur wegduwen van het model, waardoor de daadwerkelijke Z-afstand tot de overhang wordt beïnvloed. Dit kan worden uitgeschakeld door de X-/Y-afstand niet toe te passen rond een overhang." +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Snelheid Overhangende Wand" -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "Hiermee geeft u aan of de X/Y-coördinaten van de nul-positie van de printer zich in het midden van het printbare gebied bevinden." +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "Overhangende wanden worden geprint met een snelheid die gelijk is aan dit percentage van hun normale printsnelheid." -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "Of de eindstop op de X-as zich in positieve (hoog X-coördinaat) of negatieve richting (laag X-coördinaat) bevindt." +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Bruginstellingen inschakelen" + +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "Hiermee detecteert u bruggen en past u de instellingen voor de printsnelheid, doorvoer en ventilator aan tijdens het printen van bruggen." -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "Of de eindstop op de Y-as zich in positieve (hoog Y-coördinaat) of negatieve richting (laag Y-coördinaat) bevindt." +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Minimale brugwandlengte" -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "Of de eindstop op de Z-as zich in positieve (hoog Z-coördinaat) of negatieve richting (laag Z-coördinaat) bevindt." +msgctxt "bridge_wall_min_length description" +msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." +msgstr "Niet-ondersteunde wanden die korter zijn dan deze waarde, worden geprint met de normale wandinstellingen. Langere niet-ondersteunde wanden worden geprint met de instellingen voor brugwanden." -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "Hiermee bepaalt u of de extruders één verwarming delen in plaats van dat elke extruder zijn eigen verwarming heeft." +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Drempelwaarde voor brugskinsupport" -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "Hiermee bepaalt u of de extruders één nozzle delen in plaats van dat elke extruder zijn eigen nozzle heeft. Wanneer dit wordt ingesteld op 'true', wordt verwacht dat het G-code-script voor het opstarten van de printer alle extruders correct instelt in een initiële intrekstatus die bekend is en onderling compatibel is (nul of één filament niet ingetrokken). In dat geval wordt de initiële intrekstatus per extruder beschreven door de parameter 'machine_extruders_shared_nozzle_initial_retraction'." +msgctxt "bridge_skin_support_threshold description" +msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." +msgstr "Als voor een skinregio minder supportstructuur wordt geprint dan dit percentage van zijn oppervlakte, print u dit met de bruginstellingen. Anders wordt er geprint met de normale skininstellingen." -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "Hiermee geeft u aan of een verwarmd platform aanwezig is." +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Maximale dichtheid van dunne vulling brugskin" -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "Of de machine in staat is de temperatuur van het werkvolume te stabiliseren." +msgctxt "bridge_sparse_infill_max_density description" +msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." +msgstr "Maximale dichtheid van de vulling die als dun wordt beschouwd. Skin boven dunne vulling wordt als niet-ondersteund beschouwd en kan dus als een brugskin worden behandeld." -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "Hiermee bepaalt u of het object in het midden van het platform moet worden gecentreerd (0,0) of dat het coördinatensysteem moet worden gebruikt waarin het object opgeslagen is." +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Coasting brugwand" -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "Hiermee geeft u aan of u de temperatuur wilt reguleren vanuit Cura. Schakel deze optie uit als u de nozzletemperatuur buiten Cura om wilt reguleren." +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "Met deze optie controleert u de afstand die de extruder moet coasten voordat een brugwand begint. Met coasting voordat de brug begint, vermindert u de druk in de nozzle en krijgt u mogelijk een vlakkere brug." -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "Hiermee bepaalt u of aan het begin van de G-code opdrachten voor de platformtemperatuur moeten worden ingevoegd. Wanneer de start-g-code al opdrachten voor de platformtemperatuur bevat, wordt deze instelling automatisch uitgeschakeld door de Cura-frontend." +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Snelheid brugwand" -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "Hiermee bepaalt u of aan het begin van de G-code opdrachten voor de nozzletemperatuur moeten worden ingevoegd. Wanneer de start-g-code al opdrachten voor de nozzletemperatuur bevat, wordt deze instelling automatisch uitgeschakeld door de Cura-frontend." +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "De snelheid waarmee brugwanden worden geprint." -msgctxt "clean_between_layers description" -msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." -msgstr "Hiermee bepaalt u of u het afvegen van de nozzle tussen lagen wilt opnemen in de G-code. Het inschakelen van deze optie kan het gedrag van het intrekken bij de laagwissel beïnvloeden. Gebruik de instellingen voor Intrekken voor afvegen om het intrekken te regelen bij lagen waarbij het afveegscript actief is." +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Doorvoer brugwand" -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "Hiermee bepaalt u of de opdracht moet worden ingevoegd dat bij aanvang moet worden gewacht totdat het platform op temperatuur is." +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "Tijdens het printen van brugwanden wordt de hoeveelheid materiaal die wordt doorgevoerd, met deze waarde vermenigvuldigd." -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "Hiermee bepaalt u of het filament voor het printen met een blob wordt geprimed. Met het inschakelen van deze instelling wordt verzekerd dat er vanuit de extruder materiaal bij de nozzle beschikbaar is voordat het printen start. Het printen van een brim of skirt kan tevens fungeren als primen. In dat geval kan door het uitschakelen van deze instelling tijd worden bespaard." +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Snelheid brugskin" -msgctxt "print_sequence description" -msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -msgstr "Hiermee bepaalt u of alle modellen laag voor laag moeten worden geprint of dat eerst het ene model helemaal klaar moet zijn voordat aan het volgende wordt begonnen. Eén voor één printen is mogelijk als a) slechts één extruder is ingeschakeld en b) alle modellen zodanig zijn gescheiden dat de hele printkop ertussen kan bewegen en alle modellen lager zijn dan de afstand tussen de nozzle en de X/Y-assen." +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "De snelheid waarmee brugskinregio's worden geprint." -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "Hiermee bepaalt u of verschillende varianten van deze machine worden getoond. Deze worden beschreven in afzonderlijke json-bestanden." +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Doorvoer brugskin" -msgctxt "machine_firmware_retract description" -msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." -msgstr "Hiermee bepaalt u of u voor het intrekken van materiaal firmwareopdrachten voor intrekken (G10/G11) gebruikt in plaats van de eigenschap E in G1-opdrachten." +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "Tijdens het printen van brugskinregio's wordt de hoeveelheid materiaal die wordt doorgevoerd, met deze waarde vermenigvuldigd." -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "Hiermee bepaalt u of bij aanvang moet worden gewacht totdat de nozzle op temperatuur is." +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Dichtheid brugskin" -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Breedte van een enkele vullijn." +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "De dichtheid van de brugskinlaag. Met een waarde lager dan 100 worden de ruimten tussen de skinlijnen groter." -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "Breedte van een enkele lijn van het supportdak of de supportvloer." +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Ventilatorsnelheid brug" -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "Breedte van een enkele lijn aan de bovenkant van de print." +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "Percentage ventilatorsnelheid tijdens het printen van brugwanden en -skin." -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "De breedte van een enkele lijn. Over het algemeen dient de breedte van elke lijn overeen te komen met de breedte van de nozzle. Wanneer deze waarde echter iets wordt verlaagd, resulteert dit in betere prints." +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Brug heeft meerdere lagen" -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "Breedte van een enkele lijn van de primepijler." +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "Als deze optie ingeschakeld is, worden de tweede en derde laag boven de vrije ruimte geprint met de volgende instellingen. Anders worden de lagen geprint met de normale instellingen." -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "Breedte van een enkele skirt- of brimlijn." +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Snelheid tweede brugskin" -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "Breedte van een enkele lijn van de supportvloer." +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "Printsnelheid tijdens het printen van de tweede brugskinlaag." -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "Breedte van een enkele lijn van het supportdak." +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Doorvoer tweede brugskin" -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Breedte van een enkele lijn van de supportstructuur." +msgctxt "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Tijdens het printen van de tweede brugskinlaag wordt de hoeveelheid materiaal die wordt doorgevoerd, met deze waarde vermenigvuldigd." -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Breedte van een enkele lijn aan de boven-/onderkant." +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Dichtheid tweede brugskin" -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "Breedte van een enkele wandlijn voor alle wandlijnen, behalve de buitenste." +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "De dichtheid van de tweede brugskinlaag. Met een waarde lager dan 100 worden de ruimten tussen de skinlijnen groter." -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Breedte van een enkele wandlijn." +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Ventilatorsnelheid tweede brugskin" -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "Breedte van de lijnen van de onderste laag van de raft. Deze lijnen moeten dik zijn om een betere hechting aan het platform mogelijk te maken." +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "Percentage ventilatorsnelheid tijdens het printen van de tweede brugskinlaag." -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "Breedte van de lijnen in de middelste laag van de raft. Als u voor de tweede laag meer materiaal gebruikt, hechten de lijnen beter aan het platform." +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Snelheid derde brugskin" -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "De breedte van de lijnen in de bovenkant van de raft. Dit kunnen dunne lijnen zijn, zodat de bovenkant van de raft glad wordt." +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "Printsnelheid tijdens het printen van de derde brugskinlaag." -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "De breedte van de buitenste lijn van de wand. Wanneer deze waarde wordt verlaagd, kan nauwkeuriger worden geprint." +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Doorvoer derde brugskin" -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "Breedte van de wand die dunne elementen van het model vervangt (volgens de minimum elementgrootte). Als de Minimumbreedte wandlijn dunner is dan de dikte van het element, wordt de wand even dik als het element zelf." +msgctxt "bridge_skin_material_flow_3 description" +msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Tijdens het printen van de derde brugskinlaag wordt de hoeveelheid materiaal die wordt doorgevoerd, met deze waarde vermenigvuldigd." -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "X-positie afveegborstel" +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Dichtheid derde brugskin" -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Sprongsnelheid voor afvegen" +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "De dichtheid van de derde brugskinlaag. Met een waarde lager dan 100 worden de ruimten tussen de skinlijnen groter." -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "Inactieve nozzle vegen op primepijler" +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Ventilatorsnelheid derde brugskin" -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Verplaatsingsafstand voor afvegen" +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "Percentage ventilatorsnelheid tijdens het printen van de derde brugskinlaag." msgctxt "clean_between_layers label" msgid "Wipe Nozzle Between Layers" msgstr "Nozzle afvegen tussen lagen" -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Afvegen pauzeren" +msgctxt "clean_between_layers description" +msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." +msgstr "Hiermee bepaalt u of u het afvegen van de nozzle tussen lagen wilt opnemen in de G-code. Het inschakelen van deze optie kan het gedrag van het intrekken bij de laagwissel beïnvloeden. Gebruik de instellingen voor Intrekken voor afvegen om het intrekken te regelen bij lagen waarbij het afveegscript actief is." -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Aantal afveegbewegingen" +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Materiaalvolume tussen afvegen" -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Intrekafstand voor afvegen" +msgctxt "max_extrusion_before_wipe description" +msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." +msgstr "Maximale materiaalhoeveelheid die kan worden geëxtrudeerd voordat de nozzle opnieuw wordt afgeveegd. Als deze waarde kleiner is dan het benodigde materiaalvolume in een laag, heeft de instelling geen effect op deze laag. Er wordt dan maar een keer per laag afgeveegd." msgctxt "wipe_retraction_enable label" msgid "Wipe Retraction Enable" msgstr "Intrekken voor afvegen inschakelen" +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Hiermee wordt het filament ingetrokken wanneer de nozzle over een niet-printbaar gebied gaat." + +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Intrekafstand voor afvegen" + +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "Volume filament dat moet worden ingetrokken om te voorkomen dat filament verloren gaat tijdens het afvegen." + msgctxt "wipe_retraction_extra_prime_amount label" msgid "Wipe Retraction Extra Prime Amount" msgstr "Extra primehoeveelheid na intrekken voor afvegen" -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Primesnelheid Intrekken voor afvegen" +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "Tijdens veegbewegingen kan materiaal verloren gaan, wat met deze optie kan worden gecompenseerd." + +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Intreksnelheid voor afvegen" + +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "De snelheid waarmee het filament tijdens een intrekbeweging voor afvegen wordt ingetrokken en geprimed." msgctxt "wipe_retraction_retract_speed label" msgid "Wipe Retraction Retract Speed" msgstr "Intreksnelheid voor afvegen (intrekken)" -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Intreksnelheid voor afvegen" +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "De snelheid waarmee het filament tijdens een intrekbeweging voor afvegen wordt ingetrokken." + +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Primesnelheid Intrekken voor afvegen" + +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "De snelheid waarmee het filament tijdens een intrekbeweging voor afvegen wordt geprimed." + +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Afvegen pauzeren" + +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Pauzeren na het ongedaan maken van intrekken." msgctxt "wipe_hop_enable label" msgid "Wipe Z Hop" msgstr "Z-sprong afvegen" +msgctxt "wipe_hop_enable description" +msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "Tijdens het afvegen wordt het platform omlaag gebracht om ruimte te creëren tussen de nozzle en de print. Hiermee wordt voorkomen dat de nozzle de print raakt tijdens een beweging en wordt de kans verkleind dat de print van het platform wordt gestoten." + msgctxt "wipe_hop_amount label" msgid "Wipe Z Hop Height" msgstr "Hoogte Z-sprong voor afvegen" -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "Binnen Vulling" +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "Het hoogteverschil dat wordt aangehouden tijdens een Z-sprong." -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "Tool voor actief schrijven na het verzenden van tijdelijke opdrachten naar inactieve tool. Vereist voor afdrukken met dubbele extruder met Smoothie of andere firmware met modale toolopdrachten." +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Sprongsnelheid voor afvegen" -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "X-eindstop in positieve richting" +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "Snelheid waarmee de Z-as wordt verplaatst tijdens de sprong." + +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "X-positie afveegborstel" msgctxt "wipe_brush_pos_x description" msgid "X location where wipe script will start." msgstr "X-positie waar afveegscript start." -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y krijgt voorrang boven Z" +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Aantal afveegbewegingen" -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Y-eindstop in positieve richting" +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "Aantal keren dat de nozzle over de borstel beweegt." -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Z-eindstop in positieve richting" +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Verplaatsingsafstand voor afvegen" -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Z-sprong na Wisselen Extruder" +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "De afstand die de kop heen en weer wordt bewogen over de borstel." -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Hoogte Z-sprong na wisselen extruder" +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Maximale grootte kleine gaten" -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Hoogte Z-sprong" +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "Gaten en contouren van onderdelen met een kleinere diameter dan deze worden afgedrukt met behulp van Klein kenmerksnelheid." -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Z-sprong Alleen over Geprinte Delen" +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Maximale lengte klein kenmerk" -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Snelheid Z-sprong" +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "Kenmerkcontouren die korter zijn dan deze lengte, worden afgedrukt met behulp van Klein kenmerksnelheid." -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Z-sprong wanneer ingetrokken" +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Klein kenmerksnelheid" -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Uitlijning Z-naad" +msgctxt "small_feature_speed_factor description" +msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "Kleine kernmerken worden geprint met een snelheid die gelijk is aan dit percentage van hun normale printsnelheid. Langzamer printen kan de hechting en nauwkeurigheid verbeteren." -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Z-naadpositie" +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Kleine kenmerken eerste laagsnelheid" -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Relatieve Z-naad" +msgctxt "small_feature_speed_factor_0 description" +msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "Kleine kenmerken op de eerste laag worden geprint met een snelheid die gelijk is aan dit percentage van hun normale printsnelheid. Langzamer printen kan de hechting en nauwkeurigheid verbeteren." -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "Z-naad X" +msgctxt "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "Alternerende wandrichtingen" -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Z-naad Y" +msgctxt "material_alternate_walls description" +msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." +msgstr "Alternerende wandrichtingen na elke laag en instroming. Nuttig voor materialen die spanning op kunnen bouwen, bijvoorbeeld voor het printen van metaal." -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z krijgt voorrang boven X/Y" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Groepeer de buitenwanden" -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Buitenwanden van verschillende eilanden in dezelfde laag worden achtereenvolgens geprint. Wanneer ingeschakeld, wordt de hoeveelheid stroomveranderingen beperkt omdat wanden één type tegelijk worden geprint. Wanneer uitgeschakeld, wordt het aantal verplaatsingen tussen eilanden verminderd omdat wanden op dezelfde eilanden worden gegroepeerd." -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "Rapportage van printproces" -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "Rapportagegebeurtenissen die ingestelde drempels overschrijden" -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "Rapportage van printproces inschakelen" -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "Rapportage van printproces inschakelen voor het instellen van drempelwaarden voor mogelijke foutdetectie." -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "Flow-waarschuwing" -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "Limiet op flow-waarschuwing voor detectie." -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "Flowlimiet" -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "Limiet op flow-afwijking voor detectie." -msgctxt "travel description" -msgid "travel" -msgstr "beweging" +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "Waarschuwing printtemperatuur" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "Limiet voor waarschuwing printtemperatuur voor detectie." -#~ msgctxt "brim_inside_margin description" -#~ msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -#~ msgstr "Een deel dat volledig is ingesloten in een ander deel kan een buitenste brim genereren die de binnenkant van het andere deel raakt. Dit verwijdert alle brim binnen deze afstand van de interne gaten." +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "Limiet printtemperatuur" -#~ msgctxt "user_defined_print_order_enabled description" -#~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." -#~ msgstr "Maakt het mogelijk de objectlijst te ordenen om de afdrukvolgorde handmatig in te stellen. Het eerste object van de lijst wordt als eerste afgedrukt." +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "Limiet op afwijking printtemperatuur voor detectie." -#~ msgctxt "brim_inside_margin label" -#~ msgid "Brim Inside Avoid Margin" -#~ msgstr "Binnenste mijdmarge brim" +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "Waarschuwing temperatuur bouwvolume" -#~ msgctxt "brim_outside_only label" -#~ msgid "Brim Only on Outside" -#~ msgstr "Brim Alleen aan Buitenkant" +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "Limiet op waarschuwing temperatuur bouwvolume voor detectie." -#~ msgctxt "gradual_flow_discretisation_step_size description" -#~ msgid "Duration of each step in the gradual flow change" -#~ msgstr "Duur van elke stap in de geleidelijke flowverandering" +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "Limiet temperatuur bouwvolume" -#~ msgctxt "gradual_flow_enabled description" -#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -#~ msgstr "Geleidelijke veranderingen in flow inschakelen. Indien ingeschakeld, wordt de flow geleidelijk verhoogd/verlaagd tot de doelflow. Dit is handig voor printers met een bowdenbuis waarbij de flow niet onmiddellijk verandert wanneer de extrudermotor start/stopt." +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "Limiet op afwijking temperatuur bouwvolume voor detectie." -#~ msgctxt "reset_flow_duration description" -#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -#~ msgstr "Voor elke verplaatsing die langer is dan deze waarde, wordt de materiaalflow teruggezet op de doelflow van de paden." +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Instellingen opdrachtregel" -#~ msgctxt "gradual_flow_discretisation_step_size label" -#~ msgid "Gradual flow discretisation step size" -#~ msgstr "Stapgrootte geleidelijke flowdiscretisatie" +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "Instellingen die alleen worden gebruikt als CuraEngine niet wordt aangeroepen door de Cura-frontend." -#~ msgctxt "gradual_flow_enabled label" -#~ msgid "Gradual flow enabled" -#~ msgstr "Geleidelijke flow ingeschakeld" +msgctxt "center_object label" +msgid "Center Object" +msgstr "Object centreren" -#~ msgctxt "max_flow_acceleration label" -#~ msgid "Gradual flow max acceleration" -#~ msgstr "Max. versnelling geleidelijke flow" +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "Hiermee bepaalt u of het object in het midden van het platform moet worden gecentreerd (0,0) of dat het coördinatensysteem moet worden gebruikt waarin het object opgeslagen is." -#~ msgctxt "layer_0_max_flow_acceleration label" -#~ msgid "Initial layer max flow acceleration" -#~ msgstr "Maximale flowversnelling in de beginlaag" +msgctxt "mesh_position_x label" +msgid "Mesh Position X" +msgstr "Rasterpositie X" -#~ msgctxt "layer_0_z_overlap description" -#~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -#~ msgstr "Laat de eerste en tweede laag van het model overlappen in de Z-richting om te compenseren voor verloren materiaal in de luchtlaag. Alle stukjes model boven de eerste laag worden met deze hoeveelheid naar beneden verschoven." +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "De offset die in de X-richting wordt toegepast op het object." -#~ msgctxt "max_flow_acceleration description" -#~ msgid "Maximum acceleration for gradual flow changes" -#~ msgstr "Maximale versnelling voor geleidelijke flowveranderingen" +msgctxt "mesh_position_y label" +msgid "Mesh Position Y" +msgstr "Rasterpositie Y" -#~ msgctxt "layer_0_max_flow_acceleration description" -#~ msgid "Minimum speed for gradual flow changes for the first layer" -#~ msgstr "Minimumsnelheid voor geleidelijke flowveranderingen voor de eerste laag" +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "De offset die in de Y-richting wordt toegepast op het object." -#~ msgctxt "brim_outside_only description" -#~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -#~ msgstr "Print de brim alleen aan de buitenkant van het model. Hiermee verkleint u de hoeveelheid brim die u achteraf moet verwijderen, zonder dat dit de hechting aan het printbed te zeer vermindert." +msgctxt "mesh_position_z label" +msgid "Mesh Position Z" +msgstr "Rasterpositie Z" -#~ msgctxt "reset_flow_duration label" -#~ msgid "Reset flow duration" -#~ msgstr "Flowduur resetten" +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "De offset die wordt toegepast op het object in de z-richting. Hiermee kunt u de taak uitvoeren die voorheen 'Object Sink' werd genoemd." -#~ msgctxt "support_interface_skip_height label" -#~ msgid "Support Interface Resolution" -#~ msgstr "Resolutie Verbindingsstructuur" +msgctxt "mesh_rotation_matrix label" +msgid "Mesh Rotation Matrix" +msgstr "Matrix rasterrotatie" -#~ msgctxt "support_interface_skip_height description" -#~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -#~ msgstr "Maak treden van de opgegeven hoogte tijdens het controleren waar zich boven en onder de supportstructuur delen van het model bevinden. Lagere waarden slicen lager, terwijl door hogere waarden mogelijk normale supportstructuur wordt geprint op plekken waar een verbindingsstructuur had moeten zijn." +msgctxt "mesh_rotation_matrix description" +msgid "Transformation matrix to be applied to the model when loading it from file." +msgstr "Omzettingsmatrix die moet worden toegepast op het model wanneer dit wordt geladen vanuit een bestand." diff --git a/resources/i18n/nl_NL/gradual_flow_settings.def.json.po b/resources/i18n/nl_NL/gradual_flow_settings.def.json.po index 363b0994aa1..06fbc7add73 100644 --- a/resources/i18n/nl_NL/gradual_flow_settings.def.json.po +++ b/resources/i18n/nl_NL/gradual_flow_settings.def.json.po @@ -1,54 +1,53 @@ -# msgid "" msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: 2024-03-11 11:28+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: en\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" - msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" msgstr "Gradual flow max acceleration" -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" - msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" msgstr "Maximum acceleration for gradual flow changes" +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" msgstr "Minimum speed for gradual flow changes for the first layer" +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + msgctxt "reset_flow_duration label" msgid "Reset flow duration" msgstr "Reset flow duration" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" diff --git a/resources/i18n/pt_PT/cura.po b/resources/i18n/pt_PT/cura.po index e3ddb9e8680..3b2c7abb02e 100644 --- a/resources/i18n/pt_PT/cura.po +++ b/resources/i18n/pt_PT/cura.po @@ -12,7 +12,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" msgstr "%(width).1f x %(depth).1f x %(height).1f mm" @@ -119,7 +118,7 @@ msgstr "&Guardar projeto..." msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" msgid "&Save Universal Cura Project..." -msgstr "" +msgstr "&Guardar Universal Cura Project…" msgctxt "@title:menu menubar:toplevel" msgid "&Settings" @@ -142,13 +141,9 @@ msgid "*You will need to restart the application for these changes to have effec msgstr "*Terá de reiniciar a aplicação para ativar estas alterações." msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "" -"- Adicione definições de materiais e plug-ins do Marketplace\n" -"- Efetue uma cópia de segurança e sincronize as definições de materiais e plug-ins\n" +msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgstr "- Adicione definições de materiais e plug-ins do Marketplace" +"- Efetue uma cópia de segurança e sincronize as definições de materiais e plug-ins" "- Partilhe ideias e obtenha ajuda dos mais de 48.000 utilizadores da Comunidade Ultimaker" msgctxt "@heading" @@ -175,14 +170,6 @@ msgctxt "@item:inlistbox" msgid "3MF File" msgstr "Ficheiro 3MF" -msgctxt "name" -msgid "3MF Reader" -msgstr "Leitor de 3MF" - -msgctxt "name" -msgid "3MF Writer" -msgstr "Gravador 3MF" - msgctxt "@error:zip" msgid "3MF Writer plug-in is corrupt." msgstr "O plug-in Gravador 3MF está danificado." @@ -203,56 +190,37 @@ msgctxt "@label %i will be replaced with a profile name" msgid "Only user changed settings will be saved in the custom profile.
                                      For materials that support it, the new custom profile will inherit properties from %1." msgstr "Só as definições alteradas pelo utilizador é que serão guardadas no perfil personalizado.
                                      Para materiais que oferecem suporte, o novo perfil personalizado herdará propriedades de %1." -#, python-brace-format msgctxt "@label OpenGL renderer" msgid "
                                    • OpenGL Renderer: {renderer}
                                    • " msgstr "
                                    • Processador do OpenGL: {renderer}
                                    • " -#, python-brace-format msgctxt "@label OpenGL vendor" msgid "
                                    • OpenGL Vendor: {vendor}
                                    • " msgstr "
                                    • Vendedor do OpenGL: {vendor}
                                    • " -#, python-brace-format msgctxt "@label OpenGL version" msgid "
                                    • OpenGL Version: {version}
                                    • " msgstr "
                                    • Versão do OpenGL: {version}
                                    • " msgctxt "@label crash message" -msgid "" -"

                                      A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

                                      \n" -"

                                      Please use the \"Send report\" button to post a bug report automatically to our servers

                                      \n" -" " -msgstr "" -"

                                      Ocorreu um erro fatal no Cura. Por favor envie-nos este Relatório de Falhas para podermos resolver o problema

                                      \n" -"

                                      Por favor utilize o botão "Enviar relatório" para publicar um relatório de erros automaticamente nos nossos servidores

                                      \n" +msgid "

                                      A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

                                      \n

                                      Please use the \"Send report\" button to post a bug report automatically to our servers

                                      \n " +msgstr "

                                      Ocorreu um erro fatal no Cura. Por favor envie-nos este Relatório de Falhas para podermos resolver o problema

                                      " +"

                                      Por favor utilize o botão "Enviar relatório" para publicar um relatório de erros automaticamente nos nossos servidores

                                      " " " msgctxt "@label crash message" -msgid "" -"

                                      Oops, UltiMaker Cura has encountered something that doesn't seem right.

                                      \n" -"

                                      We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

                                      \n" -"

                                      Backups can be found in the configuration folder.

                                      \n" -"

                                      Please send us this Crash Report to fix the problem.

                                      \n" -" " -msgstr "" -"

                                      Ups, o UltiMaker Cura encontrou um possível problema.

                                      \n" -"

                                      Foi encontrado um erro irrecuperável durante o arranque da aplicação. Este pode ter sido causado por alguns ficheiros de configuração incorrectos. Sugerimos que faça um backup e reponha a sua configuração.

                                      \n" -"

                                      Os backups estão localizados na pasta de configuração.

                                      \n" -"

                                      Por favor envie-nos este Relatório de Falhas para podermos resolver o problema.

                                      \n" +msgid "

                                      Oops, UltiMaker Cura has encountered something that doesn't seem right.

                                      \n

                                      We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

                                      \n

                                      Backups can be found in the configuration folder.

                                      \n

                                      Please send us this Crash Report to fix the problem.

                                      \n " +msgstr "

                                      Ups, o UltiMaker Cura encontrou um possível problema.

                                      " +"

                                      Foi encontrado um erro irrecuperável durante o arranque da aplicação. Este pode ter sido causado por alguns ficheiros de configuração incorrectos. Sugerimos que faça um backup e reponha a sua configuração.

                                      " +"

                                      Os backups estão localizados na pasta de configuração.

                                      " +"

                                      Por favor envie-nos este Relatório de Falhas para podermos resolver o problema.

                                      " " " -#, python-brace-format msgctxt "@info:status" -msgid "" -"

                                      One or more 3D models may not print optimally due to the model size and material configuration:

                                      \n" -"

                                      {model_names}

                                      \n" -"

                                      Find out how to ensure the best possible print quality and reliability.

                                      \n" -"

                                      View print quality guide

                                      " -msgstr "" -"

                                      Um, ou mais, dos modelos 3D podem ter menos qualidade de impressão devido à dimensão do modelo 3D e definição de material:

                                      \n" -"

                                      {model_names}

                                      \n" -"

                                      Descubra como assegurar a melhor qualidade e fiabilidade possível da impressão.

                                      \n" +msgid "

                                      One or more 3D models may not print optimally due to the model size and material configuration:

                                      \n

                                      {model_names}

                                      \n

                                      Find out how to ensure the best possible print quality and reliability.

                                      \n

                                      View print quality guide

                                      " +msgstr "

                                      Um, ou mais, dos modelos 3D podem ter menos qualidade de impressão devido à dimensão do modelo 3D e definição de material:

                                      " +"

                                      {model_names}

                                      " +"

                                      Descubra como assegurar a melhor qualidade e fiabilidade possível da impressão.

                                      " "

                                      Ver o guia de qualidade da impressão

                                      " msgctxt "@label" @@ -267,7 +235,7 @@ msgstr[1] "Não existe uma conectividade de cloud disponível para algumas impre msgctxt "@text" msgid "A highly dense and strong part but at a slower print time. Great for functional parts." -msgstr "" +msgstr "Uma peça altamente densa e resistente, mas com um tempo de impressão mais lento. Excelente para peças funcionais." msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." @@ -277,10 +245,6 @@ msgctxt "@item:inlistbox" msgid "AMF File" msgstr "Ficheiro AMF" -msgctxt "name" -msgid "AMF Reader" -msgstr "Leitor de AMF" - msgctxt "@label" msgid "Abort" msgstr "Cancelar" @@ -317,10 +281,6 @@ msgctxt "@button" msgid "Accept" msgstr "Aceitar" -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Aceita G-Codes e envia-os para uma impressora. O plug-in também pode atualizar firmware." - msgctxt "@label" msgid "Account synced" msgstr "Conta sincronizada" @@ -413,7 +373,6 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Adicionar impressora manualmente" -#, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "Adicionar impressora {name} ({model}) a partir da sua conta" @@ -454,7 +413,6 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Todos os Ficheiros (*)" -#, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "Todos os Formatos Suportados ({0})" @@ -463,10 +421,6 @@ msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "Permitir o envio de dados anónimos" -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Permite abrir e visualizar ficheiros G-code." - msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Perguntar sempre isto" @@ -505,7 +459,7 @@ msgstr "Anónimo" msgctxt "@option:radio" msgid "Anonymous crash reports" -msgstr "" +msgstr "Relatórios de falha anónimos" msgctxt "@label Description for application component" msgid "Application framework" @@ -513,7 +467,7 @@ msgstr "Framework da aplicação" msgctxt "@title:column" msgid "Applies on" -msgstr "" +msgstr "Aplica-se em" msgctxt "@label" msgid "Apply Extruder offsets to GCode" @@ -547,7 +501,6 @@ msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to move %1 to the top of the queue?" msgstr "Tem a certeza de que pretende mover %1 para o topo da fila?" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "Tem a certeza de que pretende remover a impressora {printer_name} temporariamente?" @@ -560,7 +513,6 @@ msgctxt "@label (%1 is object name)" msgid "Are you sure you wish to remove %1? This cannot be undone!" msgstr "Tem a certeza de que deseja remover o perfil %1? Não é possível desfazer esta ação!" -#, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "Tem a certeza de que pretende remover {0}? Esta ação não pode ser anulada!" @@ -625,10 +577,6 @@ msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Backup e Repor a Configuração" -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Efetua uma cópia de segurança e repõe a sua configuração." - msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "Efetue uma cópia de segurança e sincronize as definições de materiais e plug-ins" @@ -703,7 +651,7 @@ msgstr "Calculado" msgctxt "@window:text" msgid "Camera navigation:" -msgstr "" +msgstr "Navegação de câmara:" msgctxt "@window:text" msgid "Camera rendering:" @@ -725,12 +673,10 @@ msgctxt "@label" msgid "Can't connect to your UltiMaker printer?" msgstr "Não se consegue ligar a uma impressora UltiMaker?" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "Não é possível importar o perfil de {0} antes de ser adicionada uma impressora." -#, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "Não é possível abrir outro ficheiro enquanto o G-code estiver a carregar. Importação {0} ignorada" @@ -803,24 +749,9 @@ msgctxt "@label" msgid "Checking..." msgstr "A verificar..." -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Procura e verifica se existem atualizações de firmware." - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Verifica potenciais problemas de impressão nos modelos e definições de impressão, e oferece sugestões." - msgctxt "@label" -msgid "" -"Chooses between the techniques available to generate support. \n" -"\n" -"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" -"\n" -"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "" -"Escolha entre os tipos de estrutura de suportes disponíveis. ⏎⏎ O tipo \"Normal\" cria uma estrutura de suporte diretamente por baixo das saliências e extrude estas áreas para baixo. \n" -"\n" +msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "Escolha entre os tipos de estrutura de suportes disponíveis. ⏎⏎ O tipo \"Normal\" cria uma estrutura de suporte diretamente por baixo das saliências e extrude estas áreas para baixo. " "A estrutura tipo \"Árvore\" cria ramos em direção às saliências, de forma a que estas sejam suportadas pelas pontas dos ramos, que crescem a partir da base de construção mesmo se for necessário andar em redor do modelos." msgctxt "@action:inmenu menubar:edit" @@ -899,14 +830,6 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Ficheiro G-code comprimido" -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Leitor de G-code comprimido" - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Gravador de G-code comprimido" - msgctxt "@title:window" msgid "Configuration Changes" msgstr "Alterações na configuração" @@ -979,10 +902,6 @@ msgctxt "@info:status" msgid "Connected via cloud" msgstr "Ligada através da cloud" -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Liga à Biblioteca Digital, permitindo ao Cura abrir ficheiros da Biblioteca Digital e guardar ficheiros na mesma." - msgctxt "@tooltip:button" msgid "Consult the UltiMaker Community." msgstr "Consulte a Comunidade UltiMaker." @@ -1023,7 +942,6 @@ msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "Não é possível criar um arquivo a partir do directório de dados do utilizador: {}" -#, python-brace-format msgctxt "@info:status Don't translate the tag {device}!" msgid "Could not find a file name when trying to write to {device}." msgstr "Não foi possível encontrar um nome do ficheiro ao tentar gravar em {device}." @@ -1052,12 +970,10 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Não foi possível guardar o arquivo de material em {}:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "Não foi possível guardar em {0}: {1}" -#, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Não foi possível guardar no Disco Externo {0}: {1}" @@ -1066,31 +982,19 @@ msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "Não foi possível carregar os dados para a impressora." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"No permission to execute process." -msgstr "" -"Não foi possível iniciar o EnginePlugin: {self._plugin_id}\n" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." +msgstr "Não foi possível iniciar o EnginePlugin: {self._plugin_id}" "Sem permissão para executar o processo." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Operating system is blocking it (antivirus?)" -msgstr "" -"Não foi possível iniciar o EnginePlugin: {self._plugin_id}\n" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" +msgstr "Não foi possível iniciar o EnginePlugin: {self._plugin_id}" "O sistema operativo está a bloquear (antivírus)?" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Resource is temporarily unavailable" -msgstr "" -"Não foi possível iniciar o EnginePlugin: {self._plugin_id}\n" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" +msgstr "Não foi possível iniciar o EnginePlugin: {self._plugin_id}" "O recurso está temporariamente indisponível" msgctxt "@title:window" @@ -1133,10 +1037,6 @@ msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Crie projetos de impressão na Digital Library." -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Cria um objecto usado para eliminar a impressão de suportes em certas zonas" - msgctxt "@info:backup_status" msgid "Creating your backup..." msgstr "A criar a cópia de segurança..." @@ -1149,22 +1049,10 @@ msgctxt "@title:window" msgid "Cura Backups" msgstr "Cópias de segurança do Cura" -msgctxt "name" -msgid "Cura Backups" -msgstr "Cópias de segurança do Cura" - msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Perfil Cura" -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Leitor de Perfis Cura" - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Gravador de perfis Cura" - msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Ficheiro 3MF de Projeto Cura" @@ -1177,17 +1065,13 @@ msgctxt "@title:window" msgid "Cura can't start" msgstr "Não é possível iniciar o Cura" -#, python-brace-format msgctxt "@info:status" msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." msgstr "O Cura detetou perfis de material que ainda não estavam instalados na impressora que aloja o grupo {0}." msgctxt "@info:credit" -msgid "" -"Cura is developed by UltiMaker in cooperation with the community.\n" -"Cura proudly uses the following open source projects:" -msgstr "" -"O Cura foi desenvolvido pela UltiMaker B.V. em colaboração com a comunidade.\n" +msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" +msgstr "O Cura foi desenvolvido pela UltiMaker B.V. em colaboração com a comunidade." "O Cura tem o prazer de utilizar os seguintes projetos open source:" msgctxt "@label" @@ -1198,18 +1082,6 @@ msgctxt "@label Cura version number" msgid "Cura version" msgstr "Versão do Cura" -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Back-end do CuraEngine" - -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "Plug-in CuraEngine para suavizar gradualmente o fluxo para limitar saltos por fluxo elevado" - -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - msgctxt "@label" msgid "Currency:" msgstr "Moeda:" @@ -1440,7 +1312,7 @@ msgstr "Rascunho" msgctxt "@action:inmenu menubar:edit" msgid "Drop All Models to buildplate" -msgstr "" +msgstr "Largar Todos os Modelos para construir placa" msgctxt "@action:button" msgid "Duplicate" @@ -1466,12 +1338,10 @@ msgctxt "@action:button" msgid "Eject" msgstr "Ejetar" -#, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "Ejetar Disco Externo {0}" -#, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "{0} foi ejetado. O Disco já pode ser removido de forma segura." @@ -1496,10 +1366,6 @@ msgctxt "@label" msgid "Enabled" msgstr "Ativado" -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Permite gerar geometria imprimível a partir de ficheiros de imagem 2D." - msgctxt "@title:label" msgid "End G-code" msgstr "G-code final" @@ -1570,7 +1436,7 @@ msgstr "Exportar seleção..." msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Export Universal Cura Project" -msgstr "" +msgstr "Exportar Projeto Cura Universal" msgctxt "@button" msgid "Export material archive" @@ -1580,7 +1446,6 @@ msgctxt "@info:title" msgid "Export succeeded" msgstr "Exportação bem-sucedida" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Perfil exportado para {0}" @@ -1589,10 +1454,6 @@ msgctxt "@tooltip:button" msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "Tire mais partido do UltiMaker Cura com plug-ins e perfis de materiais." -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Extensão que permite a utilização de scripts criados pelo utilizador para efeitos de pós-processamento" - msgctxt "@label" msgid "Extruder" msgstr "Extrusor" @@ -1607,7 +1468,7 @@ msgstr "G-code final do extrusor" msgctxt "@label" msgid "Extruder End G-code duration" -msgstr "" +msgstr "Duração do código G final da extrusora" msgctxt "@title:label" msgid "Extruder Start G-code" @@ -1615,12 +1476,11 @@ msgstr "G-code inicial do extrusor" msgctxt "@label" msgid "Extruder Start G-code duration" -msgstr "" +msgstr "Duração do código G inicial da extrusora" -#, python-brace-format msgctxt "@label" msgid "Extruder {0}" -msgstr "" +msgstr "{0} da Extrusora" msgctxt "@info:title" msgid "Extruder(s) Disabled" @@ -1642,7 +1502,6 @@ msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "Não foi possível criar o ficheiro de materiais para sincronizar com as impressoras." -#, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "Não foi possível ejectar {0}. Outro programa pode estar a usar o disco." @@ -1651,27 +1510,22 @@ msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "Falha ao exportar material para %1: %2" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Falha ao exportar perfil para {0}: {1}" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Falha ao exportar perfil para {0}: O plug-in de gravação comunicou uma falha." -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Falha ao importar perfil de {0}:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Falha ao importar perfil de {0}:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Falha ao importar perfil de {0}: {1}" @@ -1688,10 +1542,9 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Erro ao guardar o arquivo de material" -#, python-brace-format msgctxt "@info:status" msgid "Failed writing to specific cloud printer: {0} not in remote clusters." -msgstr "" +msgstr "Não foi possível escrever à impressora de nuvem específica: {0} não se encontra em conjuntos remotos." msgctxt "@label:category menu label" msgid "Favorites" @@ -1717,7 +1570,6 @@ msgctxt "@info:title" msgid "File Saved" msgstr "Ficheiro Guardado" -#, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "O ficheiro {0} não contém qualquer perfil válido." @@ -1750,14 +1602,6 @@ msgctxt "@title:window" msgid "Firmware Update" msgstr "Atualização de firmware" -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Verificador Atualizações Firmware" - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Atualizador de firmware" - msgctxt "@label" msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." msgstr "O firmware não pode ser atualizado porque a ligação com a impressora não suporta a atualização de firmware." @@ -1835,7 +1679,7 @@ msgid "Force layer view compatibility mode (restart required)" msgstr "Forçar o modo de compatibilidade na visualização por camada (é necessário reiniciar)" msgid "FreeCAD trackpad" -msgstr "" +msgstr "Trackpad do FreeCAD" msgctxt "@action:inmenu menubar:view" msgid "Front View" @@ -1857,18 +1701,6 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "Ficheiro G-code" -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Leitor de perfis G-code" - -msgctxt "name" -msgid "G-code Reader" -msgstr "Leitor de G-code" - -msgctxt "name" -msgid "G-code Writer" -msgstr "Gravador de G-code" - msgctxt "@label" msgid "G-code flavor" msgstr "Variante do G-code" @@ -1927,7 +1759,7 @@ msgstr "Iniciar" msgctxt "@label" msgid "Global" -msgstr "" +msgstr "Global" msgctxt "@title:tab" msgid "Global Settings" @@ -1941,7 +1773,6 @@ msgctxt "@label" msgid "Grid Placement" msgstr "Posicionamento da grelha" -#, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "Grupo #{group_nr}" @@ -1980,7 +1811,7 @@ msgstr "Ocultar todas as impressoras conectadas" msgctxt "@action:button" msgid "Hide settings" -msgstr "" +msgstr "Ocultar configurações" msgctxt "@action:menu" msgid "Hide this setting" @@ -2018,10 +1849,6 @@ msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "Se a sua impressora não estiver na lista, por favor, consulte o guia de resolução de problemas de impressão em rede" -msgctxt "name" -msgid "Image Reader" -msgstr "Leitor de imagens" - msgctxt "@action:button" msgid "Import" msgstr "Importar" @@ -2060,7 +1887,7 @@ msgstr "Para poder utilizar este pacote terá de reiniciar o Cura" msgctxt "@option:radio" msgid "Include UltiMaker account name" -msgstr "" +msgstr "Incluir nome de conta UltiMaker" msgctxt "@label" msgid "Infill" @@ -2306,10 +2133,6 @@ msgctxt "@info:tooltip" msgid "Left View" msgstr "Vista esquerda" -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Leitor de perfis antigos do Cura" - msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "Informe os programadores quando houver algum problema." @@ -2390,10 +2213,6 @@ msgctxt "@title:groupbox" msgid "Logs" msgstr "Relatórios" -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Regista determinados eventos para que possam ser utilizados pelo \"crash reporter\"" - msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Perdeu-se a ligação com a impressora" @@ -2402,10 +2221,6 @@ msgctxt "@action" msgid "Machine Settings" msgstr "Definições da Máquina" -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Função Definições da Máquina" - msgctxt "@backuplist:label" msgid "Machines" msgstr "Máquinas" @@ -2422,10 +2237,6 @@ msgctxt "@item:inlistbox" msgid "Makerbot Printfile" msgstr "Arquivo de Impressão Makerbot" -msgctxt "name" -msgid "Makerbot Printfile Writer" -msgstr "Escritor de Arquivo de Impressão Makerbot" - msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "MakerbotWriter não pôde salvar no caminho designado." @@ -2482,14 +2293,6 @@ msgctxt "@text" msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." msgstr "Faça aqui a gestão dos plug-ins e perfis de materiais do Ultimaker Cura. Certifique-se de que mantém os plug-ins atualizados e que efetua regularmente uma cópia de segurança da sua configuração." -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "Faz a gestão de extensões da aplicação e permite a navegação das extensões a partir do website da UltiMaker." - -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "Gere as ligações de rede com as impressoras em rede UltiMaker." - msgctxt "@label" msgid "Manufacturer" msgstr "Fabricante" @@ -2502,10 +2305,6 @@ msgctxt "@label" msgid "Marketplace" msgstr "Mercado" -msgctxt "name" -msgid "Marketplace" -msgstr "Marketplace" - msgctxt "@action:label" msgid "Material" msgstr "Material" @@ -2522,10 +2321,6 @@ msgctxt "@label:listbox" msgid "Material Color" msgstr "Cor do Material" -msgctxt "name" -msgid "Material Profiles" -msgstr "Perfis de Materiais" - msgctxt "@label" msgid "Material Type" msgstr "Tipo de Material" @@ -2570,10 +2365,6 @@ msgctxt "@action:label" msgid "Mode" msgstr "Modo" -msgctxt "name" -msgid "Model Checker" -msgstr "Verificador de Modelos" - msgctxt "@info:title" msgid "Model Errors" msgstr "Erros no modelo" @@ -2590,10 +2381,6 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "Monitorizar" -msgctxt "name" -msgid "Monitor Stage" -msgstr "Fase de monitorização" - msgctxt "@action:button" msgid "Monitor print" msgstr "Monitorizar a impressão" @@ -2668,7 +2455,6 @@ msgctxt "@info:title" msgid "Network error" msgstr "Erro de rede" -#, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" msgstr "A nova versão de firmware %s estável está disponível" @@ -2681,7 +2467,6 @@ msgctxt "@label" msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." msgstr "As novas impressoras UltiMaker podem ser conectadas à Digital Factory e monitoradas remotamente." -#, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." msgstr "Poderão estar disponíveis novas funcionalidades ou correções de erros para a sua {machine_name}! Se ainda não tiver a versão mais recente, recomendamos que atualize o firmware da sua impressora para a versão {latest_version}." @@ -2728,7 +2513,6 @@ msgctxt "@label" msgid "No cost estimation available" msgstr "Nenhuma estimativa de custos disponível" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Nenhum perfil personalizado para importar no ficheiro {0}" @@ -2767,7 +2551,7 @@ msgstr "Não foram encontrados resultados com o filtro atual" msgctxt "@label" msgid "No specific value has been set" -msgstr "" +msgstr "Não foi definido um valor específico" msgctxt "@label" msgid "No time estimation available" @@ -2865,14 +2649,13 @@ msgctxt "@label" msgid "Only Show Top Layers" msgstr "Só Camadas Superiores" -#, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Apenas pode ser carregado um ficheiro G-code de cada vez. Importação {0} ignorada" msgctxt "@message" msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." -msgstr "" +msgstr "Ups! Deparámo-nos com um erro inesperado durante o seu processo de corte. Fique descansado, recebemos automaticamente relatórios de falha para análise se não tiver desativado a partilha de dados nas suas preferências. Para nos ajudar melhor, considere partilhar os detalhes do seu projeto no nosso rastreador de problemas." msgctxt "@action:button" msgid "Open" @@ -2904,11 +2687,11 @@ msgstr "Abrir ficheiro de projeto" msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Open Universal Cura Project (UCP)" -msgstr "" +msgstr "Abrir Projeto Cura Universal (UCP)" msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Open Universal Cura Project (UCP) file" -msgstr "" +msgstr "Abrir ficheiro do Projeto Cura Universal (UCP)" msgctxt "@action:label" msgid "Open With" @@ -2916,7 +2699,7 @@ msgstr "Abrir" msgctxt "@action:button" msgid "Open as UCP" -msgstr "" +msgstr "Abrir como UCP" msgctxt "@action:button" msgid "Open as project" @@ -3039,10 +2822,6 @@ msgctxt "@label" msgid "Per Model Settings" msgstr "Definições Por-Modelo" -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Ferramenta de definições Por-Modelo" - msgid "Perspective" msgstr "Perspetiva" @@ -3079,15 +2858,10 @@ msgid "Please give the required permissions when authorizing this application." msgstr "Forneça as permissões necessárias ao autorizar esta aplicação." msgctxt "@info" -msgid "" -"Please make sure your printer has a connection:\n" -"- Check if the printer is turned on.\n" -"- Check if the printer is connected to the network.\n" -"- Check if you are signed in to discover cloud-connected printers." -msgstr "" -"Certifique-se de que é possível estabelecer ligação com a impressora:\n" -"- Verifique se a impressora está ligada.\n" -"- Verifique se a impressora está ligada à rede.\n" +msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." +msgstr "Certifique-se de que é possível estabelecer ligação com a impressora:" +"- Verifique se a impressora está ligada." +"- Verifique se a impressora está ligada à rede." "- Verifique se tem sessão iniciada para encontrar impressoras ligadas através da cloud." msgctxt "@text" @@ -3115,15 +2889,10 @@ msgid "Please remove the print" msgstr "Remova a impressão" msgctxt "@info:status" -msgid "" -"Please review settings and check if your models:\n" -"- Fit within the build volume\n" -"- Are assigned to an enabled extruder\n" -"- Are not all set as modifier meshes" -msgstr "" -"Reveja as definições e verifique se os seus modelos:\n" -"- Cabem dentro do volume de construção\n" -"- Estão atribuídos a uma extrusora ativada\n" +msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" +msgstr "Reveja as definições e verifique se os seus modelos:" +"- Cabem dentro do volume de construção" +"- Estão atribuídos a uma extrusora ativada" "- Não estão todos definidos como objetos modificadores" msgctxt "@label" @@ -3136,7 +2905,7 @@ msgstr "Inicie sessão para obter plug-ins e materiais verificados para o UltiMa msgctxt "@info:tooltip" msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." -msgstr "" +msgstr "Inicie sessão na sua conta UltiMaker para permitir o envio de dados não anónimos." msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." @@ -3178,10 +2947,6 @@ msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Pós-Processamento" -msgctxt "name" -msgid "Post Processing" -msgstr "Pós-Processamento" - msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "Plug-in de pós-processamento" @@ -3198,10 +2963,6 @@ msgctxt "@item:inmenu" msgid "Prepare" msgstr "Preparar" -msgctxt "name" -msgid "Prepare Stage" -msgstr "Fase de preparação" - msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "A preparar..." @@ -3222,10 +2983,6 @@ msgctxt "@item:inmenu" msgid "Preview" msgstr "Pré-visualizar" -msgctxt "name" -msgid "Preview Stage" -msgstr "Fase de pré-visualização" - msgctxt "@tooltip" msgid "Prime Tower" msgstr "Torre de preparação" @@ -3426,7 +3183,6 @@ msgctxt "@title:column" msgid "Profile settings" msgstr "Definições do perfil" -#, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "O perfil {0} é de um formato de ficheiro desconhecido ou está corrompido." @@ -3451,22 +3207,18 @@ msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Linguagem de programação" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "O ficheiro de projeto {0} contém um tipo de máquina desconhecido {1}. Não é possível importar a máquina. Em vez disso, serão importados os modelos." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "O ficheiro de projeto {0} está corrompido: {1}." -#, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." msgstr "O ficheiro de projeto {0} foi criado utilizando perfis que são desconhecidos para esta versão do UltiMaker Cura." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "O projeto de ficheiro {0} ficou subitamente inacessível: {1}." @@ -3475,147 +3227,42 @@ msgctxt "@label" msgid "Properties" msgstr "Propriedades" -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Disponibiliza as ações da máquina para atualizar o firmware." - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Fornece uma fase de monitorização no Cura." +msgctxt "@label" +msgid "PyQt version" +msgstr "Versão PyQt" -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Permite a visualização (simples) dos objetos como sólidos." +msgctxt "@Label Description for application dependency" +msgid "Python Error tracking library" +msgstr "Biblioteca de registo de Erros Python" -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Fornece uma fase de preparação no Cura." +msgctxt "@label Description for application dependency" +msgid "Python bindings for Clipper" +msgstr "Ligações Python para Clipper" -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Fornece uma fase de pré-visualização no Cura." +msgctxt "@label Description for application component" +msgid "Python bindings for libnest2d" +msgstr "Ligações Python para libnest2d" -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Proporciona uma forma de alterar as definições da máquina (tal como o volume de construção, o tamanho do nozzle, etc.)." +msgctxt "@label" +msgid "Qt version" +msgstr "Versão Qt" -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Fornece capacidades para ler e gravar perfis de material com base em XML." +msgctxt "@info:status" +msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." +msgstr "O tipo de qualidade '{0}' não é compatível com a definição de máquina atualmente ativa '{1}'." -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Disponibiliza funções especificas para as máquinas UltiMaker (tais como, o assistente de nivelamento da base, seleção de atualizações, etc.)." +msgctxt "@info:title" +msgid "Queue Full" +msgstr "Fila cheia" -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Fornece suporte de ligação da unidade amovível e suporte de gravação." - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Possibilita a exportação de perfis do Cura." - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Fornece suporte para importar perfis Cura." - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Permite importar perfis a partir de ficheiros g-code." - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Permite importar perfis de versões antigas do Cura." - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Fornece suporte para ler ficheiros 3MF." - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Fornece suporte para ler ficheiros AMF." - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Fornece suporte para ler pacotes de formato Ultimaker." - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Fornece suporte para ler ficheiros X3D." - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Fornece suporte para a leitura de ficheiros modelo." - -msgctxt "description" -msgid "Provides support for writing 3MF and UCP files." -msgstr "" - -msgctxt "description" -msgid "Provides support for writing MakerBot Format Packages." -msgstr "Fornece suporte para escrever Pacotes de Formato MakerBot." - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Permite a gravação de arquivos Ultimaker Format." - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Fornece as definições por-modelo." - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Permite a visualização em Raio-X." - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Fornece a hiperligação para o back-end de seccionamento do CuraEngine." - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Permite pré-visualizar os dados das camadas seccionadas." - -msgctxt "@label" -msgid "PyQt version" -msgstr "Versão PyQt" - -msgctxt "@Label Description for application dependency" -msgid "Python Error tracking library" -msgstr "Biblioteca de registo de Erros Python" - -msgctxt "@label Description for application dependency" -msgid "Python bindings for Clipper" -msgstr "Ligações Python para Clipper" - -msgctxt "@label Description for application component" -msgid "Python bindings for libnest2d" -msgstr "Ligações Python para libnest2d" - -msgctxt "@label" -msgid "Qt version" -msgstr "Versão Qt" - -#, python-brace-format -msgctxt "@info:status" -msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." -msgstr "O tipo de qualidade '{0}' não é compatível com a definição de máquina atualmente ativa '{1}'." - -msgctxt "@info:title" -msgid "Queue Full" -msgstr "Fila cheia" - -msgctxt "@label" -msgid "Queued" -msgstr "Em fila" +msgctxt "@label" +msgid "Queued" +msgstr "Em fila" msgctxt "@info:button, %1 is the application name" msgid "Quit %1" msgstr "Sair %1" -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Lê o g-code a partir de um arquivo comprimido." - msgctxt "@button" msgid "Recommended" msgstr "Recomendado" @@ -3668,10 +3315,6 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "Disco Externo" -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Plug-in de dispositivo de saída da unidade amovível" - msgctxt "@action:button" msgid "Remove" msgstr "Remover" @@ -3794,11 +3437,11 @@ msgstr "Guardar projeto Cura" msgctxt "@option" msgid "Save Cura project and .makerbot print file" -msgstr "" +msgstr "Guardar projeto Cura e ficheiro de impressão .makerbot" msgctxt "@option" msgid "Save Cura project and .ufp print file" -msgstr "" +msgstr "Guardar projeto Cura e ficheiro de impressão .upf" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3826,7 +3469,7 @@ msgstr "Guardar novo perfil" msgctxt "@action:button" msgid "Save project" -msgstr "" +msgstr "Guardar projeto" msgctxt "@text" msgid "Save the .umm file on a USB stick." @@ -3836,12 +3479,10 @@ msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "Guardar no Disco Externo" -#, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "Guardar no Disco Externo {0}" -#, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Guardado no Disco Externo {0} como {1}" @@ -3850,7 +3491,6 @@ msgctxt "@info:title" msgid "Saving" msgstr "A Guardar" -#, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "A Guardar no Disco Externo {0}" @@ -3933,15 +3573,15 @@ msgstr "Enviar relatório de falhas para a UltiMaker" msgctxt "@info:tooltip" msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." -msgstr "" +msgstr "Envie relatórios de falha com o seu nome de conta UltiMaker registado e o nome de projeto para UltiMaker Sentry. Não está a ser enviado um modelo de dados. " msgctxt "@info:tooltip" msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." -msgstr "" +msgstr "Envie relatórios de falha sem qualquer modelo informação pessoalmente identificável à UltiMaker." msgctxt "@option:check" msgid "Send engine crash reports" -msgstr "" +msgstr "Enviar relatórios de falha no mecanismo" msgctxt "@action:button" msgid "Send report" @@ -3955,10 +3595,6 @@ msgctxt "@info:title" msgid "Sending materials to printer" msgstr "Enviar materiais para a impressora" -msgctxt "name" -msgid "Sentry Logger" -msgstr "Sentry Logger" - msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Biblioteca de comunicação em série" @@ -3997,7 +3633,7 @@ msgstr "Definições" msgctxt "@action:label" msgid "Settings Loaded from UCP file" -msgstr "" +msgstr "Configurações carregadas a partir do ficheiro UCP" msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" @@ -4069,7 +3705,7 @@ msgstr "Pretende que os ficheiros abertos a partir do ambiente de trabalho ou de msgctxt "@info:tooltip" msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." -msgstr "" +msgstr "Devem as falhas no corte ser automaticamente comunicadas à UltiMaker? Note que não são enviados ou armazenados quaisquer modelos, endereços IP ou outras informações pessoalmente identificáveis, a não ser que o autorize explicitamente." msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" @@ -4129,7 +3765,7 @@ msgstr "Mostrar relatório de falhas detalhado" msgctxt "@action:button" msgid "Show settings" -msgstr "" +msgstr "Mostrar configurações" msgctxt "@option:check" msgid "Show summary dialog when saving project" @@ -4167,10 +3803,6 @@ msgctxt "@label" msgid "Sign in to the UltiMaker platform" msgstr "Inicie a sessão na plataforma UltiMaker" -msgctxt "name" -msgid "Simulation View" -msgstr "Visualização por camadas" - msgctxt "@tooltip" msgid "Skin" msgstr "Revestimento" @@ -4199,10 +3831,6 @@ msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Seccionar automaticamente ao alterar as definições." -msgctxt "name" -msgid "Slice info" -msgstr "Informações do seccionamento" - msgctxt "@message:title" msgid "Slicing failed" msgstr "O seccionamento falhou" @@ -4217,24 +3845,15 @@ msgstr "Suavização" msgctxt "@label" msgid "Solid" -msgstr "" - -msgctxt "name" -msgid "Solid View" -msgstr "Vista Sólidos" +msgstr "Sólido" msgctxt "@item:inmenu" msgid "Solid view" msgstr "Vista Sólidos" msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "" -"Algumas das definições invisíveis têm valores diferentes dos valores normais calculados automaticamente.\n" -"\n" +msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." +msgstr "Algumas das definições invisíveis têm valores diferentes dos valores normais calculados automaticamente." "Clique para tornar estas definições visíveis." msgctxt "@info:status" @@ -4250,13 +3869,8 @@ msgid "Some setting-values defined in %1 were overridden." msgstr "Alguns valores de definição definidos em %1 foram substituídos." msgctxt "@tooltip" -msgid "" -"Some setting/override values are different from the values stored in the profile.\n" -"\n" -"Click to open the profile manager." -msgstr "" -"Alguns valores de definição/substituição são diferentes dos valores armazenados no perfil.\n" -"\n" +msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." +msgstr "Alguns valores de definição/substituição são diferentes dos valores armazenados no perfil." "Clique para abrir o gestor de perfis." msgctxt "@action:label" @@ -4327,10 +3941,6 @@ msgctxt "@label" msgid "Strength" msgstr "Força" -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Envia informações anónimas sobre o seccionamento. Pode ser desativado nas preferências." - msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "Material exportado com êxito para %1" @@ -4339,18 +3949,17 @@ msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "Material %1 importado com êxito" -#, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Perfil {0} importado com êxito." msgctxt "@action:label" msgid "Suggested Material settings" -msgstr "" +msgstr "Configurações de Material sugeridas" msgctxt "@action:label" msgid "Suggested Profile settings" -msgstr "" +msgstr "Configurações de Perfil sugeridas" msgctxt "@action:title" msgid "Summary - Cura Project" @@ -4358,11 +3967,11 @@ msgstr "Resumo – Projeto Cura" msgctxt "@action:title Don't translate 'Universal Cura Project'" msgid "Summary - Open Universal Cura Project (UCP)" -msgstr "" +msgstr "Resumo - Abrir Projeto Cura Universal (UCP)" msgctxt "@action:title Don't translate 'Universal Cura Project'" msgid "Summary - Universal Cura Project" -msgstr "" +msgstr "Resumo - Projeto Cura Universal" msgctxt "@label" msgid "Support" @@ -4376,10 +3985,6 @@ msgctxt "@label" msgid "Support Blocker" msgstr "Remover Suportes" -msgctxt "name" -msgid "Support Eraser" -msgstr "Eliminador de suportes" - msgctxt "@tooltip" msgid "Support Infill" msgstr "Enchimento dos Suportes" @@ -4546,7 +4151,6 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "O extrusor a utilizar para imprimir os suportes. Definição usada com múltiplos extrusores." -#, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "O ficheiro {0} já existe. Tem a certeza de que deseja substituí-lo?" @@ -4610,19 +4214,9 @@ msgid "The nozzle inserted in this extruder." msgstr "O nozzle inserido neste extrusor." msgctxt "@label" -msgid "" -"The pattern of the infill material of the print:\n" -"\n" -"For quick prints of non functional model choose line, zig zag or lightning infill.\n" -"\n" -"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" -"\n" -"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "" -"O padrão do material de enchimento da impressão:\n" -"\n" -"Para impressões rápidas de modelo não funcional, escolha linha, ziguezague ou enchimento de iluminação.Para uma parte funcional não sujeita a muito stress recomendamos grelha ou triângulo ou tri hexágono.\n" -"\n" +msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "O padrão do material de enchimento da impressão:" +"Para impressões rápidas de modelo não funcional, escolha linha, ziguezague ou enchimento de iluminação.Para uma parte funcional não sujeita a muito stress recomendamos grelha ou triângulo ou tri hexágono." "Para impressões 3D funcionais que exigem alta tensão em múltiplas direções, use a subdivisão cúbica, cúbica, quarto cúbica, octeto e tireoide." msgctxt "@info:tooltip" @@ -4743,7 +4337,7 @@ msgstr "Esta configuração não está disponível porque não foi possível rec msgctxt "@text:window" msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" -msgstr "" +msgstr "Este é um ficheiro de projeto Cura Universal. Gostaria de o abrir como um projeto Cura ou um projeto Universal ou importar os modelos do mesmo?" msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" @@ -4779,7 +4373,6 @@ msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "Esta impressora aloja um grupo de %1 impressoras." -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "O perfil {0} contém dados incorretos, não foi possível importá-lo." @@ -4793,13 +4386,8 @@ msgid "This project contains materials or plugins that are currently not install msgstr "O projeto contém materiais ou plug-ins que não estão atualmente instalados no Cura.
                                      Instale os pacotes em falta e abra novamente o projeto." msgctxt "@label" -msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." -msgstr "" -"Esta definição tem um valor que é diferente do perfil.\n" -"\n" +msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." +msgstr "Esta definição tem um valor que é diferente do perfil." "Clique para restaurar o valor do perfil." msgctxt "@item:tooltip" @@ -4817,13 +4405,8 @@ msgid "This setting is always shared between all extruders. Changing it here wil msgstr "Esta definição é sempre partilhada entre todos os extrusores. Ao alterá-la aqui, o valor será alterado em todos os extrusores." msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "" -"Normalmente, o valor desta definição é calculado, mas atualmente tem definido um valor diferente.\n" -"\n" +msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." +msgstr "Normalmente, o valor desta definição é calculado, mas atualmente tem definido um valor diferente." "Clique para restaurar o valor calculado." msgctxt "@label" @@ -4836,11 +4419,11 @@ msgstr "Esta definição está resolvida a partir de valores específicos da ext msgctxt "@tooltip Don't translate 'Universal Cura Project'" msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." -msgstr "" +msgstr "O desempenho desta configuração poderá ser afetado enquanto se exporta o Projeto Cura Universal. Será pedido aos Utilizadores para a adicionarem por sua conta e risco." msgctxt "@tooltip Don't translate 'Universal Cura Project'" msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." -msgstr "" +msgstr "O desempenho desta configuração poderá ser afetado enquanto se exporta o Projeto Cura Universal. Será pedido aos Utilizadores para a adicionarem por sua conta e risco." msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" @@ -4858,7 +4441,6 @@ msgctxt "@text" msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." msgstr "Para sincronizar automaticamente os perfis de materiais com todas as impressoras ligadas à Digital Factory, tem de ter uma sessão iniciada no Cura." -#, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "Para estabelecer uma ligação, visite {website_link}" @@ -4871,7 +4453,6 @@ msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." msgstr "Para imprimir diretamente para a sua impressora através da rede, certifique-se de que a impressora está ligada à rede através de um cabo de rede ou através de ligação à rede Wi-Fi. Se não ligar o Cura por rede à impressora, poderá ainda assim utilizar uma unidade USB para transferir ficheiros g-code para a impressora." -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "Para remover a impressora {printer_name} de forma permanente, visite {digital_factory_link}" @@ -4920,10 +4501,6 @@ msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "Tentou restaurar um Cura backup sem existirem dados ou metadados correctos." -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Leitor de Trimesh" - msgctxt "@button" msgid "Troubleshooting" msgstr "Resolução de problemas" @@ -4944,22 +4521,10 @@ msgctxt "@label" msgid "Type" msgstr "Tipo" -msgctxt "name" -msgid "UFP Reader" -msgstr "Leitor de UFP" - -msgctxt "name" -msgid "UFP Writer" -msgstr "Gravador de UFP" - msgctxt "@item:inmenu" msgid "USB printing" msgstr "Impressão USB" -msgctxt "name" -msgid "USB printing" -msgstr "Impressão USB" - msgctxt "@button" msgid "UltiMaker Account" msgstr "Conta UltiMaker" @@ -4976,10 +4541,6 @@ msgctxt "@item:inlistbox" msgid "UltiMaker Format Package" msgstr "Arquivo UltiMaker Format" -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "Ligação de rede UltiMaker" - msgctxt "@info" msgid "UltiMaker Verified Package" msgstr "Pacote Aprovado pela UltiMaker" @@ -4988,10 +4549,6 @@ msgctxt "@info" msgid "UltiMaker Verified Plug-in" msgstr "Plug-in Aprovado pela UltiMaker" -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "Funções para impressoras Ultimaker" - msgctxt "@button" msgid "UltiMaker printer" msgstr "Impressora da UltiMaker" @@ -5004,10 +4561,6 @@ msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Biblioteca Digital UltiMaker" - msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Não é possível adicionar o perfil." @@ -5016,18 +4569,13 @@ msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Não é possível posicionar todos os objetos dentro do volume de construção" -#, python-brace-format msgctxt "@info:plugin_failed" msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" msgstr "Não é possível encontrar o servidor EnginePlugin local executável para: {self._plugin_id}" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Unable to kill running EnginePlugin: {self._plugin_id}\n" -"Access is denied." -msgstr "" -"Não é possível interromper o EnginePlugin em execução.{self._plugin_id}\n" +msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." +msgstr "Não é possível interromper o EnginePlugin em execução.{self._plugin_id}" "Acesso negado." msgctxt "@info" @@ -5050,12 +4598,10 @@ msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "Não é possível seccionar porque a torre de preparação ou a(s) posição(ões) de preparação é(são) inválidas." -#, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "Não é possível seccionar porque existem objetos associados ao extrusor %s desativado." -#, python-brace-format msgctxt "@info:status" msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" msgstr "Não é possível seccionar devido a algumas definições por modelo. As seguintes definições apresentam erros num ou mais modelos: {error_labels}" @@ -5064,7 +4610,6 @@ msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "Não é possível seccionar com o material atual, uma vez que é incompatível com a impressora ou configuração selecionada." -#, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "Não é possível seccionar com as definições atuais. As seguintes definições apresentam erros: {0}" @@ -5073,10 +4618,9 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Não é possível iniciar um novo processo de início de sessão. Verifique se ainda está ativa outra tentativa de início de sessão." -#, python-brace-format msgctxt "@info:error" msgid "Unable to write to file: {0}" -msgstr "" +msgstr "Não é possível escrever no ficheiro: {0}" msgctxt "@label:status" msgid "Unavailable" @@ -5100,11 +4644,11 @@ msgstr "Unidade" msgctxt "@item:inlistbox" msgid "Universal Cura Project" -msgstr "" +msgstr "Projeto Cura Universal" msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." -msgstr "" +msgstr "Os ficheiros de Projeto Cura Universal podem ser imprimidos em diferentes impressoras 3D e manter os dados posicionais e configurações selecionadas.Quando exportados, todos os modelos apresentados na placa de construção serão incluídos juntamente com a respetiva posição, orientação e escala. Também é possível selecionar que configurações por extrusora ou por modelo devem ser incluídos para garantir uma impressão adequada." msgctxt "@label Description for development tool" msgid "Universal build system configuration" @@ -5126,7 +4670,6 @@ msgctxt "@label:property" msgid "Unknown Package" msgstr "Pacote desconhecido" -#, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Código de erro desconhecido ao carregar trabalho de impressão: {0}" @@ -5191,265 +4734,49 @@ msgctxt "@button" msgid "Updating..." msgstr "A actualizar..." -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Atualiza as configurações do Cura 2.1 para o Cura 2.2." +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Carregar firmware personalizado" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Atualiza as configurações do Cura 2.2 para o Cura 2.4." +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "Carregar um trabalho de impressão na impressora." -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Atualiza as configurações do Cura 2.5 para o Cura 2.6." +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "A carregar a sua cópia de segurança..." -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Atualiza as configurações do Cura 2.6 para o Cura 2.7." +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "Utilizar uma única instância do Cura" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Atualiza as configurações do Cura 2.7 para o Cura 3.0." +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "Utilizar cola para melhor aderência com esta combinação de materiais." -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Atualiza as configurações do Cura 3.0 para o Cura 3.1." +msgctxt "@label" +msgid "User Agreement" +msgstr "Contrato de utilizador" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Atualiza as configurações do Cura 3.2 para o Cura 3.3." +msgctxt "@label Description for application dependency" +msgid "Utility functions, including an image loader" +msgstr "Funções utilitárias, incluindo um carregador de imagens" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Atualiza as configurações do Cura 3.3 para o Cura 3.4." +msgctxt "@label Description for application dependency" +msgid "Utility library, including Voronoi generation" +msgstr "Biblioteca de utilidades, incluindo a geração em Voronoi" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Atualiza as configurações do Cura 3.4 para o Cura 3.5." +msgctxt "@title:column" +msgid "Value" +msgstr "Valor" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Atualiza as configurações do Cura 3.5 para o Cura 4.0." +msgctxt "@button" +msgid "View printers in Digital Factory" +msgstr "Visualize as impressoras na fábrica digital" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Atualiza as configurações do Cura 4.0 para o Cura 4.1." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Atualiza as configurações do Cura 4.1 para o Cura 4.2." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Atualiza as configurações do Cura 4.11 para o Cura 4.12." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Atualiza as configurações do Cura 4.13 para o Cura 5.0." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Atualiza as configurações do Cura 4.2 para o Cura 4.3." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Configurações de atualizações do Cura 4.3 para o Cura 4.4." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Atualiza as configurações do Cura 4.4 para o Cura 4.5." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Atualiza as configurações do Cura 4.5 para o Cura 4.6." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Atualiza as configurações do Cura 4.6.0 para o Cura 4.6.2." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Atualiza as configurações do Cura 4.6.2 para o Cura 4.7." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Atualiza as configurações do Cura 4.7 para o Cura 4.8." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Atualiza as configurações do Cura 4.8 para o Cura 4.9." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Atualiza as configurações do Cura 4.9 para o Cura 4.10." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Atualiza as configurações do Cura 5.2 para o Cura 5.3." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Atualiza configurações do Cura 5.3 para o Cura 5.4." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Atualiza configurações do Cura 5.4 para o Cura 5.5." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." -msgstr "" - -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Carregar firmware personalizado" - -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Carregar um trabalho de impressão na impressora." - -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "A carregar a sua cópia de segurança..." - -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Utilizar uma única instância do Cura" - -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "Utilizar cola para melhor aderência com esta combinação de materiais." - -msgctxt "@label" -msgid "User Agreement" -msgstr "Contrato de utilizador" - -msgctxt "@label Description for application dependency" -msgid "Utility functions, including an image loader" -msgstr "Funções utilitárias, incluindo um carregador de imagens" - -msgctxt "@label Description for application dependency" -msgid "Utility library, including Voronoi generation" -msgstr "Biblioteca de utilidades, incluindo a geração em Voronoi" - -msgctxt "@title:column" -msgid "Value" -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Atualização da versão 2.1 para 2.2" - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Atualização da versão 2.2 para 2.4" - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Atualização da versão 2.5 para 2.6" - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Atualização da versão 2.6 para 2.7" - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Atualização da versão 2.7 para 3.0" - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Atualização da versão 3.0 para 3.1" - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Atualização da versão 3.2 para 3.3" - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Atualização da versão 3.3 para 3.4" - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Atualização da versão 3.4 para 3.5" - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Atualização da versão 3.5 para 4.0" - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Atualização da versão 4.0 para 4.1" - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Atualização da versão 4.1 para 4.2" - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Atualização da versão 4.11 para a versão 4.12" - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Atualização do Cura versão 4.13 para 5.0" - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Atualização da versão 4.2 para 4.3" - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Atualização da versão 4.3 para 4.4" - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Atualização da versão 4.4 para a versão 4.5" - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Atualização da versão 4.5 para a versão 4.6" - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Atualização da versão 4.6.0 para a versão 4.6.2" - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Atualização da versão 4.6.2 para a versão 4.7" - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Atualização da versão 4.7 para 4.8" - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Atualização da versão 4.8 para 4.9" - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Atualização da versão 4.9 para 4.10" - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "Atualização da versão 5.2 para 5.3" - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "Atualização da versão 5.3 para 5.4" - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "Atualização da versão 5.4 para 5.5" - -msgctxt "name" -msgid "Version Upgrade 5.6 to 5.7" -msgstr "" - -msgctxt "@button" -msgid "View printers in Digital Factory" -msgstr "Visualize as impressoras na fábrica digital" - -msgctxt "@label" -msgid "View type" -msgstr "Ver tipo" +msgctxt "@label" +msgid "View type" +msgstr "Ver tipo" msgctxt "@label link to technical assistance" msgid "View user manuals online" @@ -5495,7 +4822,6 @@ msgctxt "@info:title" msgid "Warning" msgstr "Aviso" -#, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Aviso: o perfil não é visível porque o respetivo tipo de qualidade '{0}' não está disponível para a configuração atual. Mude para uma combinação de material/bocal que possa utilizar este tipo de qualidade." @@ -5522,7 +4848,7 @@ msgstr "Qual impressora gostaria de definir?" msgctxt "@info:tooltip" msgid "What type of camera navigation should be used?" -msgstr "" +msgstr "Que tipo de navegação de câmara deve ser utilizado?" msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" @@ -5560,14 +4886,6 @@ msgctxt "@action:label" msgid "Width (mm)" msgstr "Largura (mm)" -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Grava o g-code num arquivo comprimido." - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Grava o g-code num ficheiro." - msgctxt "@label" msgid "X (Width)" msgstr "X (Largura)" @@ -5580,10 +4898,6 @@ msgctxt "@label" msgid "X min" msgstr "X mín" -msgctxt "name" -msgid "X-Ray View" -msgstr "Vista Raio-X" - msgctxt "@item:inlistbox" msgid "X-Ray view" msgstr "Vista Raio-X" @@ -5596,10 +4910,6 @@ msgctxt "@item:inlistbox" msgid "X3D File" msgstr "Ficheiro X3D" -msgctxt "name" -msgid "X3D Reader" -msgstr "Leitor de X3D" - msgctxt "@label" msgid "Y (Depth)" msgstr "Y (Profundidade)" @@ -5617,31 +4927,19 @@ msgid "Yes" msgstr "Sim" msgctxt "@label" -msgid "" -"You are about to remove all printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" +msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" msgstr "Está prestes a remover todas as impressoras do Cura. Esta ação não pode ser anulada.Tem a certeza de que pretende continuar?" -#, python-brace-format msgctxt "@label" -msgid "" -"You are about to remove {0} printer from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgid_plural "" -"You are about to remove {0} printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr[0] "" -"Está prestes a remover {0} impressora do Cura. Esta ação não pode ser anulada.\n" -"Tem a certeza de que pretende continuar?" -msgstr[1] "" -"Está prestes a remover {0} impressoras do Cura. Esta ação não pode ser anulada.\n" -"Tem a certeza de que pretende continuar?" +msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgstr[0] "Está prestes a remover {0} impressora do Cura. Esta ação não pode ser anulada.\nTem a certeza de que pretende continuar?" +msgstr[1] "Está prestes a remover {0} impressoras do Cura. Esta ação não pode ser anulada.\nTem a certeza de que pretende continuar?" msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "Está a tentar ligar a uma impressora que não tem o UltiMaker Connect. Atualize a impressora para o firmware mais recente." -#, python-brace-format msgctxt "@info:status" msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." msgstr "Está a tentar ligar a {0}, mas esta não é Host de um grupo. Pode visitar a página Web para a configurar como Host do grupo." @@ -5652,9 +4950,8 @@ msgstr "Atualmente não existem quaisquer cópias de segurança. Utilize o botã msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "" -"Alterou algumas definições do perfil.\n" -"Pretende manter estas alterações depois de trocar de perfis?\n" +msgstr "Alterou algumas definições do perfil." +"Pretende manter estas alterações depois de trocar de perfis?" "Como alternativa, pode descartar as alterações para carregar as predefinições a partir de '%1'." msgctxt "@label" @@ -5685,13 +4982,9 @@ msgctxt "@info" msgid "Your new printer will automatically appear in Cura" msgstr "A sua nova impressora aparecerá automaticamente no Cura" -#, python-brace-format msgctxt "@info:status" -msgid "" -"Your printer {printer_name} could be connected via cloud.\n" -" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "" -"A sua impressora {printer_name} pode ser ligada através da cloud.\n" +msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "A sua impressora {printer_name} pode ser ligada através da cloud." " Faça a gestão da sua fila de impressão e monitorize as suas impressões a partir de qualquer local ao ligar a sua impressora ao Digital Factory" msgctxt "@label" @@ -5740,7 +5033,7 @@ msgstr "mm" msgctxt "@label" msgid "s" -msgstr "" +msgstr "s" msgctxt "@info:status" msgid "today" @@ -5754,7 +5047,6 @@ msgctxt "@label" msgid "version: %1" msgstr "versão: %1" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "A impressora {printer_name} vai ser removida até à próxima sincronização de conta." @@ -5763,21 +5055,553 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Falhou a transferência de {} plug-ins" -#~ msgctxt "@label" -#~ msgid "Default" -#~ msgstr "Predefinição" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Gere as ligações de rede a impressoras UltiMaker interconectadas." + +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "Ligação de rede UltiMaker" + +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Permite importar perfis a partir de ficheiros g-code." -#~ msgid "Provides support for exporting Cura profiles." -#~ msgstr "Oferece apoio para a exportação de perfis Cura." +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "Leitor de perfis G-code" -#~ msgctxt "description" -#~ msgid "Provides support for writing 3MF files." -#~ msgstr "Possiblita a gravação de ficheiros 3MF." +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Permite a visualização (simples) dos objetos como sólidos." -#~ msgctxt "@option" -#~ msgid "Save Cura project and print file" -#~ msgstr "Guardar o projeto Cura e o ficheiro de impressão" +msgctxt "name" +msgid "Solid View" +msgstr "Vista Sólidos" -#~ msgctxt "@message" -#~ msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -#~ msgstr "O seccionamento falhou com um erro inesperado. Por favor reportar um erro no nosso registo de problemas." +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "Plug-in CuraEngine para suavizar gradualmente o fluxo para limitar saltos por fluxo elevado" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Fornece suporte para ler ficheiros 3MF." + +msgctxt "name" +msgid "3MF Reader" +msgstr "Leitor de 3MF" + +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Aceita G-Codes e envia-os para uma impressora. O plug-in também pode atualizar firmware." + +msgctxt "name" +msgid "USB printing" +msgstr "Impressão USB" + +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Procura e verifica se existem atualizações de firmware." + +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Verificador Atualizações Firmware" + +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Faz a gestão de extensões da aplicação e permite a navegação das extensões a partir do website da UltiMaker." + +msgctxt "name" +msgid "Marketplace" +msgstr "Marketplace" + +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Efetua uma cópia de segurança e repõe a sua configuração." + +msgctxt "name" +msgid "Cura Backups" +msgstr "Cópias de segurança do Cura" + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Proporciona uma forma de alterar as definições da máquina (tal como o volume de construção, o tamanho do nozzle, etc.)." + +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Função Definições da Máquina" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Atualiza as configurações do Cura 2.5 para o Cura 2.6." + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Atualização da versão 2.5 para 2.6" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Atualiza as configurações do Cura 4.7 para o Cura 4.8." + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Atualização da versão 4.7 para 4.8" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Atualiza as configurações do Cura 4.4 para o Cura 4.5." + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Atualização da versão 4.4 para a versão 4.5" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Atualiza as configurações do Cura 3.0 para o Cura 3.1." + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Atualização da versão 3.0 para 3.1" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Atualiza as configurações do Cura 4.11 para o Cura 4.12." + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Atualização da versão 4.11 para a versão 4.12" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Atualiza as configurações do Cura 4.1 para o Cura 4.2." + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Atualização da versão 4.1 para 4.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Atualiza as configurações do Cura 2.6 para o Cura 2.7." + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Atualização da versão 2.6 para 2.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Atualiza as configurações do Cura 4.6.0 para o Cura 4.6.2." + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Atualização da versão 4.6.0 para a versão 4.6.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Atualiza as configurações do Cura 3.3 para o Cura 3.4." + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Atualização da versão 3.3 para 3.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Atualiza as configurações do Cura 4.8 para o Cura 4.9." + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Atualização da versão 4.8 para 4.9" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Atualiza as configurações do Cura 4.5 para o Cura 4.6." + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Atualização da versão 4.5 para a versão 4.6" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Atualiza as configurações do Cura 4.2 para o Cura 4.3." + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Atualização da versão 4.2 para 4.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Atualiza as configurações do Cura 3.2 para o Cura 3.3." + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Atualização da versão 3.2 para 3.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Configurações de atualizações do Cura 4.3 para o Cura 4.4." + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Atualização da versão 4.3 para 4.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "Atualiza as configurações da Cura 5.6 para Cura 5.7." + +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "Atualização da versão 5.6 para 5.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Atualiza as configurações do Cura 2.1 para o Cura 2.2." + +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Atualização da versão 2.1 para 2.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Atualiza configurações do Cura 5.3 para o Cura 5.4." + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "Atualização da versão 5.3 para 5.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Atualiza as configurações do Cura 4.9 para o Cura 4.10." + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Atualização da versão 4.9 para 4.10" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Atualiza as configurações do Cura 2.7 para o Cura 3.0." + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Atualização da versão 2.7 para 3.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Atualiza as configurações do Cura 3.5 para o Cura 4.0." + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Atualização da versão 3.5 para 4.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Atualiza as configurações do Cura 5.2 para o Cura 5.3." + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Atualização da versão 5.2 para 5.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Atualiza as configurações do Cura 4.0 para o Cura 4.1." + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Atualização da versão 4.0 para 4.1" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Atualiza as configurações do Cura 4.13 para o Cura 5.0." + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Atualização do Cura versão 4.13 para 5.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Atualiza as configurações do Cura 3.4 para o Cura 3.5." + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Atualização da versão 3.4 para 3.5" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Atualiza as configurações do Cura 2.2 para o Cura 2.4." + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Atualização da versão 2.2 para 2.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Atualiza as configurações do Cura 4.6.2 para o Cura 4.7." + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Atualização da versão 4.6.2 para a versão 4.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Atualiza configurações do Cura 5.4 para o Cura 5.5." + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "Atualização da versão 5.4 para 5.5" + +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Permite abrir e visualizar ficheiros G-code." + +msgctxt "name" +msgid "G-code Reader" +msgstr "Leitor de G-code" + +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Envia informações anónimas sobre o seccionamento. Pode ser desativado nas preferências." + +msgctxt "name" +msgid "Slice info" +msgstr "Informações do seccionamento" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Fornece suporte de ligação da unidade amovível e suporte de gravação." + +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Plug-in de dispositivo de saída da unidade amovível" + +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Cria um objecto usado para eliminar a impressão de suportes em certas zonas" + +msgctxt "name" +msgid "Support Eraser" +msgstr "Eliminador de suportes" + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Verifica potenciais problemas de impressão nos modelos e definições de impressão, e oferece sugestões." + +msgctxt "name" +msgid "Model Checker" +msgstr "Verificador de Modelos" + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Fornece uma fase de preparação no Cura." + +msgctxt "name" +msgid "Prepare Stage" +msgstr "Fase de preparação" + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Permite pré-visualizar os dados das camadas seccionadas." + +msgctxt "name" +msgid "Simulation View" +msgstr "Visualização por camadas" + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Fornece suporte para ler ficheiros AMF." + +msgctxt "name" +msgid "AMF Reader" +msgstr "Leitor de AMF" + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Permite a visualização em Raio-X." + +msgctxt "name" +msgid "X-Ray View" +msgstr "Vista Raio-X" + +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Disponibiliza as ações da máquina para atualizar o firmware." + +msgctxt "name" +msgid "Firmware Updater" +msgstr "Atualizador de firmware" + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Permite importar perfis de versões antigas do Cura." + +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Leitor de perfis antigos do Cura" + +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Extensão que permite a utilização de scripts criados pelo utilizador para efeitos de pós-processamento" + +msgctxt "name" +msgid "Post Processing" +msgstr "Pós-Processamento" + +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Regista determinados eventos para que possam ser utilizados pelo \"crash reporter\"" + +msgctxt "name" +msgid "Sentry Logger" +msgstr "Sentry Logger" + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "Fornece suporte para escrever Pacotes de Formato MakerBot." + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "Escritor de Arquivo de Impressão Makerbot" + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Fornece suporte para importar perfis Cura." + +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Leitor de Perfis Cura" + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Fornece suporte para ler pacotes de formato Ultimaker." + +msgctxt "name" +msgid "UFP Reader" +msgstr "Leitor de UFP" + +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Permite gerar geometria imprimível a partir de ficheiros de imagem 2D." + +msgctxt "name" +msgid "Image Reader" +msgstr "Leitor de imagens" + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Fornece a hiperligação para o back-end de seccionamento do CuraEngine." + +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Back-end do CuraEngine" + +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Grava o g-code num arquivo comprimido." + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Gravador de G-code comprimido" + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Disponibiliza funções especificas para as máquinas UltiMaker (tais como, o assistente de nivelamento da base, seleção de atualizações, etc.)." + +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Funções para impressoras Ultimaker" + +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Lê o g-code a partir de um arquivo comprimido." + +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Leitor de G-code comprimido" + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Fornece uma fase de pré-visualização no Cura." + +msgctxt "name" +msgid "Preview Stage" +msgstr "Fase de pré-visualização" + +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Liga à Biblioteca Digital, permitindo ao Cura abrir ficheiros da Biblioteca Digital e guardar ficheiros na mesma." + +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Biblioteca Digital UltiMaker" + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Possibilita a exportação de perfis do Cura." + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Gravador de perfis Cura" + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Fornece suporte para ler ficheiros X3D." + +msgctxt "name" +msgid "X3D Reader" +msgstr "Leitor de X3D" + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Fornece suporte para a leitura de ficheiros modelo." + +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Leitor de Trimesh" + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Fornece uma fase de monitorização no Cura." + +msgctxt "name" +msgid "Monitor Stage" +msgstr "Fase de monitorização" + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Fornece as definições por-modelo." + +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Ferramenta de definições Por-Modelo" + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Fornece capacidades para ler e gravar perfis de material com base em XML." + +msgctxt "name" +msgid "Material Profiles" +msgstr "Perfis de Materiais" + +msgctxt "description" +msgid "Provides support for writing 3MF and UCP files." +msgstr "Presta apoio na escrita de ficheiros 3MF e UCP." + +msgctxt "name" +msgid "3MF Writer" +msgstr "Gravador 3MF" + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Permite a gravação de arquivos Ultimaker Format." + +msgctxt "name" +msgid "UFP Writer" +msgstr "Gravador de UFP" + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Grava o g-code num ficheiro." + +msgctxt "name" +msgid "G-code Writer" +msgstr "Gravador de G-code" diff --git a/resources/i18n/pt_PT/fdmextruder.def.json.po b/resources/i18n/pt_PT/fdmextruder.def.json.po index beed5f903e3..7b2e6d902ec 100644 --- a/resources/i18n/pt_PT/fdmextruder.def.json.po +++ b/resources/i18n/pt_PT/fdmextruder.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,186 +12,114 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Aderência" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Ajusta o diâmetro do filamento utilizado. Faça corresponder este valor com o diâmetro do filamento utilizado." - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Aderência à Base Construção" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diâmetro" - -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "G-code final para executar ao mudar deste extrusor." - msgctxt "extruder_nr label" msgid "Extruder" msgstr "Extrusor" +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "O núcleos de extrusão utilizado para imprimir. Definição usada com múltiplos extrusores." + +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Ventoinha de arrefecimento de impressão do Extrusor" + +msgctxt "machine_extruder_cooling_fan_number description" +msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." +msgstr "O número de ventoinhas de arrefecimento de impressão associadas a este extrusor. Apenas alterar o valor predefinido de 0 quando tiver uma ventoinha de arrefecimento de impressão diferente para cada extrusor." + msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "G-Code Final do Extrusor" +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "G-code final para executar ao mudar deste extrusor." + msgctxt "machine_extruder_end_code_duration label" msgid "Extruder End G-Code Duration" -msgstr "" +msgstr "Duração do código G final da extrusora" + +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "O tempo que demora a executar o código G final, ao deixar esta extrusora." msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Posição Final Absoluta do Extrusor" +msgctxt "machine_extruder_end_pos_abs description" +msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." +msgstr "Define a posição final do extrusor, absoluta em vez de relativa à última posição conhecida da cabeça de impressão." + msgctxt "machine_extruder_end_pos_x label" msgid "Extruder End Position X" msgstr "Posição X Final do Extrusor" +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "A coordenada X da posição final ao desligar o extrusor." + msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Posição Y Final do Extrusor" -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Posição X Preparação do Extrusor" - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Posição Y Preparação do Extrusor" - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Posição Z para Preparação do Extrusor" - -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Ventoinha de arrefecimento de impressão do Extrusor" +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "A coordenada Y da posição final ao desligar o extrusor." msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "G-Code Inicial do Extrusor" +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "G-code inicial para executar ao mudar para este extrusor." + msgctxt "machine_extruder_start_code_duration label" msgid "Extruder Start G-Code Duration" -msgstr "" +msgstr "Duração do código G inicial da extrusora" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "O tempo que demora a executar o código G inicial, ao mudar para esta extrusora." msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Posição Inicial Absoluta do Extrusor" +msgctxt "machine_extruder_start_pos_abs description" +msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." +msgstr "Define a posição inicial do extrusor, de forma absoluta em vez, de relativa à última posição conhecida da cabeça de impressão." + msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "Posição X Inicial do Extrusor" +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "A coordenada X da posição inicial ao ligar o extrusor." + msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "Posição Y Inicial do Extrusor" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Máquina" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Definições específicas da máquina" - -msgctxt "machine_extruder_end_pos_abs description" -msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." -msgstr "Define a posição final do extrusor, absoluta em vez de relativa à última posição conhecida da cabeça de impressão." - -msgctxt "machine_extruder_start_pos_abs description" -msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." -msgstr "Define a posição inicial do extrusor, de forma absoluta em vez, de relativa à última posição conhecida da cabeça de impressão." - -msgctxt "material description" -msgid "Material" -msgstr "Material" - -msgctxt "material label" -msgid "Material" -msgstr "Material" - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diâmetro do Nozzle" - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ID do Nozzle" +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "A coordenada Y da posição inicial ao ligar o extrusor." msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "Desvio X do Nozzle" -msgctxt "machine_nozzle_offset_y label" -msgid "Nozzle Y Offset" -msgstr "Desvio Y do Nozzle" - -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "G-code inicial para executar ao mudar para este extrusor." - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "A coordenada X da posição onde o nozzle é preparado ao iniciar a impressão." - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "A coordenada Y da posição onde o nozzle é preparado ao iniciar a impressão." - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "A coordenada Z da posição onde o nozzle é preparado ao iniciar a impressão." - -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "O núcleos de extrusão utilizado para imprimir. Definição usada com múltiplos extrusores." - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "O diâmetro interno do nozzle. Altere esta definição quando utilizar um nozzle com um tamanho não convencional." - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "O ID do nozzle de um núcleo de extrusão, tal como \"AA 0.4\" e \"BB 0.8\"." - -msgctxt "machine_extruder_cooling_fan_number description" -msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." -msgstr "O número de ventoinhas de arrefecimento de impressão associadas a este extrusor. Apenas alterar o valor predefinido de 0 quando tiver uma ventoinha de arrefecimento de impressão diferente para cada extrusor." - -msgctxt "machine_extruder_end_code_duration description" -msgid "The time it takes to execute the end g-code, when switching away from this extruder." -msgstr "" - -msgctxt "machine_extruder_start_code_duration description" -msgid "The time it'll take to execute the start g-code, when switching to this extruder." -msgstr "" - -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "A coordenada X da posição final ao desligar o extrusor." - msgctxt "machine_nozzle_offset_x description" msgid "The x-coordinate of the offset of the nozzle." msgstr "A coordenada X do desvio do nozzle." -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "A coordenada X da posição inicial ao ligar o extrusor." - -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "A coordenada Y da posição final ao desligar o extrusor." +msgctxt "machine_nozzle_offset_y label" +msgid "Nozzle Y Offset" +msgstr "Desvio Y do Nozzle" msgctxt "machine_nozzle_offset_y description" msgid "The y-coordinate of the offset of the nozzle." msgstr "A coordenada Y do desvio do nozzle." - -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "A coordenada Y da posição inicial ao ligar o extrusor." diff --git a/resources/i18n/pt_PT/fdmprinter.def.json.po b/resources/i18n/pt_PT/fdmprinter.def.json.po index 6a0a73b91e4..5ec89426ebe 100644 --- a/resources/i18n/pt_PT/fdmprinter.def.json.po +++ b/resources/i18n/pt_PT/fdmprinter.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-12 15:10+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,3079 +12,2728 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "prime_tower_mode description" -msgid "How to generate the prime tower:
                                      • Normal: create a bucket in which secondary materials are primed
                                      • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
                                      " -msgstr "" - -msgctxt "brim_inside_margin description" -msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." -msgstr "" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Máquina" -msgctxt "ironing_inset description" -msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." -msgstr "A distância a manter em relação às extremidades do modelo. \"Engomar\" até à extremidade da superfície pode resultar em arestas irregulares na impressão." +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Definições específicas da máquina" -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "Um factor que indica a dimensão da compressão dos filamentos entre o alimentador e a câmara do bocal, utilizado para determinar a distância a que se deve mover o material para efetuar uma substituição de filamentos." +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Tipo de Máquina" -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Uma lista de ângulos (números inteiros) relativos às direções de linha a utilizar quando as camadas de revestimento da superfície superior utilizarem o padrão de Linhas ou Ziguezague. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito a lista está vazia, o que significa a utilização dos ângulos predefinidos tradicionais (45 e 135 graus)." +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "O nome do seu modelo de impressora 3D." -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Uma lista de ângulos (números inteiros) relativos às direções de linha a utilizar quando as camadas da superfície superiores/inferiores utilizarem os padrões de Linhas ou Ziguezague. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito a lista está vazia, o que significa a utilização dos ângulos predefinidos tradicionais (45 e 135 graus)." +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Mostrar Variantes da Máquina" -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "Lista de ângulos (números inteiros) relativos às direções de linha a utilizar. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito, a lista está vazia, o que significa a utilização dos ângulos predefinidos de 0 graus." +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "Mostrar ou não as diferentes variantes desta máquina, as quais são descritas em ficheiros json separados." -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Lista de ângulos (números inteiros) relativos às direções de linha a utilizar. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito, a lista está vazia, o que significa a utilização dos ângulos predefinidos (que alternam entre 45 e 135 graus se as interfaces forem bastante espessas ou 90 graus)." +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "G-code Inicial" -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Lista de ângulos (números inteiros) relativos às direções de linha a utilizar. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito, a lista está vazia, o que significa a utilização dos ângulos predefinidos (que alternam entre 45 e 135 graus se as interfaces forem bastante espessas ou 90 graus)." +msgctxt "machine_start_gcode description" +msgid "G-code commands to be executed at the very start - separated by \n." +msgstr "Comandos G-code a serem executados no início – separados por " +"." -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Uma lista de ângulos (números inteiros) relativos às direções de linha a utilizar. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito, a lista está vazia, o que significa a utilização dos ângulos predefinidos (que alternam entre 45 e 135 graus se as interfaces forem bastante espessas ou 90 graus)." +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "G-code Final" -msgctxt "infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." -msgstr "Uma lista de ângulos (números inteiros) relativos às direções de linha a utilizar. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito a lista está vazia, o que significa a utilização dos ângulos predefinidos tradicionais (45 e 135 graus para os padrões de Linhas ou Ziguezague e 45 graus para todos os outros padrões)." +msgctxt "machine_end_gcode description" +msgid "G-code commands to be executed at the very end - separated by \n." +msgstr "Comandos G-code a serem executados no fim – separados por " +"." -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "Uma lista de polígonos com áreas onde o nozzle não pode entrar." +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "GUID do material" -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "Uma lista de polígonos com áreas onde a cabeça de impressão não pode entrar." +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "GUID do material. Este é definido automaticamente." -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "Uma recomendação sobre qual a distância que os ramos podem percorrer a partir dos pontos que apoiam. Os ramos podem desrespeitar este valor, para alcançar o seu destino (placa de construção ou uma parte do modelo). Reduzir esse valor pode tornar o suporte mais resistente, contudo vai aumentar a quantidade de ramos (e, por conseguinte, também o uso de mais material e tempo de impressão)" +msgctxt "material_type label" +msgid "Material Type" +msgstr "Tipo de material" -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Posição Absoluta Preparação Extrusor" +msgctxt "material_type description" +msgid "The type of material used." +msgstr "O tipo de material utilizado." -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Variação máxima das camadas adaptáveis" +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "Marca do material" -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Dimensão da topografia das camadas adaptáveis" +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "A marca do material utilizado." -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Tamanho da fase de variação das camadas adaptáveis" +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diâmetro" -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "Camadas Adaptáveis calcula as espessuras das camadas conforme a forma do modelo." +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Ajusta o diâmetro do filamento utilizado. Faça corresponder este valor com o diâmetro do filamento utilizado." -msgctxt "infill_wall_line_count description" -msgid "" -"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" -"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "" -"Adicionar paredes adicionais em torno da área de enchimento. Essas paredes podem fazer com que as linhas de revestimento superiores/inferiores desçam menos, o que significa que são necessárias menos camadas de revestimento superior/inferior para a mesma qualidade à custa de algum material adicional.\n" -"Esta funcionalidade pode ser combinada com a opção Ligar polígonos de enchimento para unir todo o enchimento num único caminho de extrusão sem necessidade de deslocações ou retrações, se configurado corretamente." +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Esperar pelo Aquecimento da Base de Construção" -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Aderência à Base de Construção" +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "Introduzir ou não um comando para esperar até que a temperatura da base de construção seja atingida durante o arranque." -msgctxt "material_adhesion_tendency label" -msgid "Adhesion Tendency" -msgstr "Tendência de aderência" +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Esperar pelo aquecimento do nozzle" -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Ajuste a quantidade de sobreposição entre as paredes e (as extremidades) das linhas centrais de revestimento, como percentagem das larguras de linha das linhas de revestimento e da parede mais interna. Uma ligeira sobreposição permite que as paredes se liguem firmemente ao revestimento. Observe que no caso de um revestimento e uma largura de revestimento da parede iguais, qualquer percentagem acima de 50% pode fazer com que o revestimento ultrapasse a parede, visto que a posição do nozzle do extrusor de revestimento pode já ultrapassar o centro da parede neste ponto." +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "Esperar ou não até que a temperatura do nozzle seja atingida durante o arranque." -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Ajuste a quantidade de sobreposição entre as paredes e (as extremidades) das linhas centrais de revestimento. Uma ligeira sobreposição permite que as paredes se liguem firmemente ao revestimento. Observe que no caso de um revestimento e uma largura de revestimento da parede iguais, qualquer valor acima da metade da largura da parede pode fazer com que o revestimento ultrapasse a parede, visto que a posição do nozzle do extrusor de revestimento pode já ultrapassar o centro da parede." +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Incluir Temperaturas do Material" -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Ajusta a densidade do enchimento da impressão." +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "Incluir ou não os comandos de temperatura do nozzle no início do G-code. Se o gcode_inicial já incluir os comandos de temperatura do nozzle, o front-end do Cura desativará automaticamente esta definição." -msgctxt "support_interface_density description" -msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Ajusta a densidade dos tectos e pisos da estrutura de suporte. Um valor mais elevado resulta em melhores saliências, embora os suportes sejam mais difíceis de remover." +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Incluir Temperatura da Base de Construção" -msgctxt "support_tree_top_rate description" -msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "Ajusta a densidade da estrutura de suporte usada para gerar as pontas dos ramos. Um valor mais alto resulta em melhor saliências, mas os suportes são mais difíceis de remover. Use um Teto de Suporte se os valores forem muito altos ou certificar-se de que a densidade dos suportes é igualmente elevada no topo." +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "Incluir ou não os comandos de temperatura da base de construção no início do gcode. Se o gcode_inicial já incluir os comandos de temperatura da base de construção, o front-end do Cura desativará automaticamente esta definição." -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Ajusta a densidade da estrutura de suporte. Um valor mais elevado resulta em melhores saliências, embora os suportes sejam mais difíceis de remover." +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Largura da Máquina" -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Ajusta o diâmetro do filamento utilizado. Faça corresponder este valor com o diâmetro do filamento utilizado." +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "A largura (direção X) da área de impressão." -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "Ajusta a colocação das estruturas de suporte. A colocação pode ser definida para tocar na base de construção ou em todo o lado. Quando definida para tocar em todo o lado, as estruturas de suporte também serão impressas no modelo." +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Profundidade da Máquina" -msgctxt "prime_tower_wipe_enabled description" -msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." -msgstr "Após a impressão da torre de preparação com um nozzle, limpe o material que vazou do nozzle para a torre de preparação." +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "A profundidade (direção Y) da área de impressão." -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "Após a máquina mudar de um extrusor para outro, a base de construção é rebaixada para criar uma folga entre o nozzle e a impressão. Desta forma, evita-se que o nozzle deixe, na parte exterior de uma impressão, algum material que possa escorrer quando acaba de imprimir." +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Altura da Máquina" -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Tudo" +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "A altura (direção Z) da área de impressão." -msgctxt "print_sequence option all_at_once" -msgid "All at Once" -msgstr "Simultaneamente" +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Forma da Base de Construção" -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "Todas as definições que influenciam a resolução da impressão. Estas definições têm um grande impacto na qualidade. (e no tempo de impressão)." +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "A forma da base de construção sem ter em consideração as áreas onde não é possível imprimir." -msgctxt "user_defined_print_order_enabled description" -msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." -msgstr "" +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Retangular" -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Alternar Parede Adicional" +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Elíptica" -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Alternar remoção de malha" +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Material da Base de Construção" -msgctxt "material_alternate_walls label" -msgid "Alternate Wall Directions" -msgstr "Direções de parede alternadas" +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "O material da base de construção instalada na impressora." -msgctxt "material_alternate_walls description" -msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." -msgstr "Alterne as inserções e as direções das parede em camadas em cada camada. Útil para materiais que podem acumular tensão, como para a impressão de metal." +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Vidro" msgctxt "machine_buildplate_type option aluminum" msgid "Aluminum" msgstr "Alumínio" +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Tem Base de Construção Aquecida" + +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "Se a máquina tem ou não uma base de construção aquecida." + +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "Tem estabilização da temperatura do volume de construção" + +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "Se a máquina consegue ou não estabilizar a temperatura do volume de construção." + msgctxt "machine_always_write_active_tool label" msgid "Always Write Active Tool" msgstr "Ferramenta ativa escrever sempre" -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "Retrair sempre quando se vai começar uma parede exterior." - -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "Quantidade de desvio aplicado a todos os polígonos em cada camada. Valores positivos podem compensar buracos demasiado grandes; os valores negativos podem compensar buracos demasiado pequenos." +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "Escreva a ferramenta ativa depois de enviar comandos temporários para a ferramenta inativa. Necessário para Extrusora Dupla com Smoothie ou outro firmware com comandos de ferramentas modais." -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "Quantidade de desvio aplicado a todos os polígonos na primeira camada. Um valor negativo pode compensar o \"esmagamento\" da camada inicial, conhecido como \"pé de elefante\"." - -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "Quantidade de desvio aplicado a todos os polígonos de suporte em cada camada. Os valores positivos podem uniformizar as áreas de suporte e produzir suportes mais robustos." - -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "Quantidade do desvio aplicado aos pisos de suporte." - -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "Quantidade do desvio aplicado aos tetos de suporte." - -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "Quantidade do desvio aplicado aos polígonos da interface de suporte." - -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "Quantidade de filamento a retrair para não escorrer durante a sequência de limpeza." - -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "Um acréscimo ao raio a partir do centro de cada cubo para encontrar os limites do modelo, de forma a decidir se este cubo deve ser subdividido. Valores mais elevados resultam num invólucro mais espesso com cubos pequenos perto do limite do modelo." - -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Malha antissaliências" - -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Posição Retraída Antiescorrimento" - -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Velocidade de Retração Antiescorrimento" - -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "Aplique o desvio do alinhamento da extrusora ao sistema de coordenadas. Afeta todas as extrusoras." - -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "Nos locais onde os modelos tocam, gere uma estrutura de vigas interligadas. Isto melhora a adesão entre os modelos, especialmente os modelos impressos em materiais diferentes." - -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Evitar Áreas Impressas Durante Movimento" - -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Evitar Suportes na Deslocação" - -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Anterior" - -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Posterior esquerda" - -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Posterior direita" - -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Ambos" - -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "Ambas se sobrepõem" - -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Camadas Inferiores" - -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Padrão da Base na Camada Inicial" - -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Expansão Revestimento Inferior" - -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Largura Remoção Revestimento Inferior" - -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Espessura Inferior" - -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "Densidade dos Ramos" - -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "Diâmetro do Ramo" - -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "Ângulo dos Ramos" - -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Posição Retraída de Preparação da Separação" - -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Velocidade de Retração de Preparação da Separação" - -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Temperatura de preparação da separação" - -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Posição Retraída de Separação" - -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Velocidade de Retração de Separação" - -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Temperatura de Separação" - -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Separar Suportes em Blocos" - -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Velocidade da ventoinha de Bridge" - -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Bridge com múltiplas camadas" - -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Densidade do segundo revestimento de Bridge" - -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Velocidade da ventoinha do segundo revestimento de Bridge" - -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Fluxo do segundo revestimento de Bridge" - -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Velocidade do segundo revestimento de Bridge" - -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Densidade do revestimento de Bridge" - -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Fluxo do revestimento de Bridge" - -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Velocidade do revestimento de Bridge" - -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Limiar do suporte do revestimento de Bridge" - -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Densidade Máx. Enchimento Disperso de Bridge" - -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Densidade do terceiro revestimento de Bridge" - -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Velocidade da ventoinha do terceiro revestimento de Bridge" - -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Fluxo do terceiro revestimento de Bridge" - -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Velocidade do terceiro revestimento de Bridge" - -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Desaceleração da parede de Bridge" - -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Fluxo da parede de Bridge" - -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Velocidade da parede de Bridge" - -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Aba" - -msgctxt "brim_inside_margin label" -msgid "Brim Avoid Margin" -msgstr "" - -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Distância da Aba" - -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Número Linhas da Aba" - -msgctxt "brim_location label" -msgid "Brim Location" -msgstr "" - -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "A aba substitui o suporte" - -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Largura da Aba" - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Aderência" - -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Extrusor para Aderência" - -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Modos de Aderência" - -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Material da Base de Construção" - -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Forma da Base de Construção" - -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Temperatura Base de Construção" - -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Temperatura da base de construção da camada inicial" - -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Temperatura do volume de construção" - -msgctxt "bv_temp_anomaly_limit label" -msgid "Build Volume temperature Limit" -msgstr "" - -msgctxt "bv_temp_warn_limit label" -msgid "Build Volume temperature Warning" -msgstr "" - -msgctxt "prime_tower_brim_enable description" -msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "Ao ativar esta configuração, sua torre de primagem terá uma aba, mesmo que o modelo não tenha. Se você deseja uma base mais robusta para uma torre alta, pode aumentar a altura da base." - -msgctxt "center_object label" -msgid "Center Object" -msgstr "Centrar Objeto" - -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "Altera a geometria do modelo impresso de forma que seja necessário suporte mínimo. Saliências acentuadas tornar-se-ão saliências rasas. As áreas de saliências irão baixar para se tornarem mais verticais." - -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "Escolhe entre as técnicas disponíveis para gerar suporte. O suporte \"Normal\" cria uma estrutura de suporte diretamente por baixo das saliências e leva estas áreas para baixo. O suporte \"Árvore\" cria ramos nas áreas salientes que suportam o modelo nas pontas destes ramos e permite que os ramos rastejem à volta do modelo de modo a suportá-lo o máximo possível a partir da base de construção." - -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Velocidade de desaceleração" - -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Volume de desaceleração" - -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "\"Coasting\" substitui a última parte de um percurso de extrusão por um percurso de deslocamento. O material que escorreu é utilizado para imprimir a última parte do percurso de extrusão de forma a reduzir o surgimento de fios." - -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Modo de Combing" - -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "Combing mantém o nozzle em áreas já impressas durante a deslocação. Isto resulta em movimentos de deslocação ligeiramente mais longos, mas reduz a necessidade de retrações. Se o combing estiver desativado, o material será retraído e o nozzle irá deslocar-se em linha reta para o próximo ponto. Também é possível evitar o combing em áreas de revestimento superiores/inferiores ou apenas efetuar o combing no enchimento." - -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Definições de linha de comando" - -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Ângulo do suporte cónico" - -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Largura mínima do suporte cónico" - -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Ligar Linhas Enchimento" - -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Ligar polígonos de enchimento" - -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Ligar Linhas de Suporte" - -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Ligar ziguezagues de suporte" - -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Ligar polígonos superiores/inferiores" - -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "Ligar caminhos de enchimento quando as trajetórias são paralelas. Para padrões de enchimento que consistem em vários polígonos fechados, ativar esta definição reduz consideravelmente o tempo de deslocação." - -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "Liga os ziguezagues. Isto irá aumentar a resistência da estrutura de suporte em ziguezague." - -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "Ligar as extremidades das linhas de suporte. Ativar esta definição permite que os suportes sejam mais robustos e também diminuir o risco de \"under-extrusion\", mas tem um gasto maior de material." - -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "Ligar as extremidades onde o padrão de enchimento entra em contacto com a parede interior utilizando uma linha que acompanha a forma da parede interior. Ativar esta definição pode melhorar a adesão do enchimento às paredes e reduzir os efeitos do enchimento na qualidade das superfícies verticais. Desativar esta definição reduz a quantidade de material utilizado." - -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "Ligar caminhos de revestimento superiores/inferiores quando as trajetórias são paralelas. Para o padrão concêntrico, ativar esta definição reduz consideravelmente o tempo de deslocação mas, uma vez que as ligações podem suceder num ponto intermediário sobre o enchimento, esta funcionalidade pode reduzir a qualidade da superfície superior." - -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "Controla se os cantos do contorno do modelo influenciam a posição da junta. Nenhum significa que os cantos não influenciam a posição da junta. Ocultar Junta faz com que seja mais provável que a junta surja num canto interior. Expor Junta faz com que seja mais provável que a junta aconteça num canto exterior. Ocultar ou Expor Junta faz com que seja mais provável que a junta aconteça num canto interior ou exterior. Ocultação Inteligente permite os cantos interiores e exteriores, mas opta pelos cantos interiores com mais frequência, se apropriado." - -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "Converter cada linha de enchimento em determinado número de linhas. As linhas adicionais não se cruzam, mas sim evitam-se. Isto torna o enchimento mais duro, mas também aumenta o tempo de impressão e o gasto de material." - -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Velocidade de arrefecimento" - -msgctxt "cooling description" -msgid "Cooling" -msgstr "Arrefecimento" - -msgctxt "cooling label" -msgid "Cooling" -msgstr "Arrefecimento" - -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Cruz" - -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Cruz" - -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "Cruz 3D" - -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Tamanho da bolsa de cruz 3D" - -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Imagem Densidade Suporte em Cruz" - -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Imagem Densidade Enchimento Cruz" - -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Material Cristalino" - -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Cúbico" - -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Subdivisão Cúbica" +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "O Centro é a Origem" -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Invólucro Subdivisão Cúbica" +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "Se as coordenadas X/Y da posição zero (origem) da impressora são o centro da área de impressão." -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Malha de corte" +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Número de Extrusores" -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "Os dados que ligam o fluxo de material (em mm3 por segundo) à temperatura (graus Celsius)." +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "Número de núcleos de extrusão. Um núcleo de extrusão é o conjunto de um alimentador (feeder), tubo bowden e nozzle." -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Aceleração Predefinida" +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Número de extrusores ativos" -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Temperatura Predefinida Base Construção" +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "Número de núcleos de extrusão que estão activos; definido automaticamente em software" -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Jerk Predefinido do Filamento" +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Diâmetro externo do nozzle" -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Temperatura Impressão Predefinida" +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "O diâmetro externo da ponta do nozzle." -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Jerk X-Y Predefinido" +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Comprimento do nozzle" -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Jerk Z Predefinido" +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "A diferença de altura entre a ponta do nozzle e o extremo inferior da cabeça de impressão." -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "O jerk predefinido do movimento no plano horizontal." +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Ângulo do nozzle" -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "O jerk predefinido do motor da direção Z." +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "O ângulo entre o plano horizontal e a parte cónica imediatamente acima da ponta do nozzle." -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "O jerk predefinido do motor do filamento." +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Comprimento da zona de aquecimento" -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "Detetar vãos (bridges) e modificar as definições da velocidade de impressão, do fluxo e da ventoinha durante a impressão de vãos ou saliências." +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "A distância, a partir da ponta do nozzle, na qual o calor do nozzle é transferido para o filamento." -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "Determina a ordem pela qual as paredes são impressas. Imprimir paredes externas antecipadamente ajuda em termos de precisão dimensional, uma vez que as falhas de paredes internas não se podem propagar para o exterior. No entanto, imprimi-las mais tarde permite empilhá-las melhor quando são impressas saliências. Quando há uma quantidade desigual de paredes internas totais, a \"última linha central\" é sempre impressa em último lugar." +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Ativar controlo de temperatura do nozzle" -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "Determina a prioridade desta malha para resolver a sobreposição de várias malhas de enchimento. As áreas com sobreposição de várias malhas de enchimento vão assumir as definições da malha com a prioridade mais alta. Uma malha de enchimento com uma prioridade superior irá modificar o enchimento das malhas de enchimento com uma prioridade inferior e também as malhas normais." +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "Controlar ou não a temperatura a partir do Cura. Desative esta opção para controlar a temperatura do nozzle a partir de fora do Cura." -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "Determina o momento em que uma camada de enchimento relâmpago tem de suportar algo acima da mesma. Medido como um ângulo conforme a espessura da camada." +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Velocidade de aquecimento" -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "Determina o momento em que uma camada de enchimento relâmpago tem de suportar o modelo acima da mesma. Medido como um ângulo conforme a espessura." +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "A velocidade média (°C/s) a que o nozzle é aquecido, média calculada com base nos valores das temperaturas normais de impressão, e a temperatura em modo de espera." -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diâmetro" +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Velocidade de arrefecimento" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "Aumento do Diâmetro Apoio no Modelo" +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "A velocidade média (°C/s) a que o nozzle é arrefecido, média calculada com base nos valores das temperaturas normais de impressão, e a temperatura em modo de espera." -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "Diâmetro que cada ramo tenta atingir quando chega à placa de construção. Melhora a adesão à base." +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Tempo Mínimo da Temperatura em Modo de Espera" -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "Diferentes modos que ajudam a melhorar a aderência à base de construção, assim como a preparação inicial da extrusão. \"Aba\" acrescenta uma única camada em torno da base do modelo para prevenir empenos ou deformações na parte inferior dos modelos. \"Raft\" adiciona uma plataforma, composta por uma grelha espessa e um teto, entre o modelo e a base de construção. \"Contorno\" é uma linha impressa à volta do modelo, mas que não está ligada ao modelo." +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "O tempo mínimo durante o qual um extrusor tem de estar inativo antes de o nozzle ser arrefecido. Apenas é permitido começar a arrefecer até à temperatura de Modo de Espera quando um extrusor não for utilizado por um período de tempo superior a este." -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Áreas não permitidas" +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "Variante do G-code" -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "A distância entre as linhas de enchimento impressas. O valor desta definição é calculada através da densidade de enchimento e do diâmetro da linha de enchimento." +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "O tipo de G-code a ser gerado." -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "Distância entre as linhas da estrutura de suporte da camada inicial impressas. Esta definição é calculada pela densidade do suporte." +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "A distância entre as linhas do piso de suporte impressas. Esta definição é calculada através da Densidade do piso de suporte, mas pode ser ajustada em separado." +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volumétrico)" -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "A distância entre as linhas do tecto de suporte impressas. Esta definição é calculada através da Densidade do tecto de suporte, mas pode ser ajustada em separado." +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "A distância entre as linhas da estrutura de suporte impressas. Esta definição é calculada através da densidade do suporte." +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." -msgstr "Distância da impressão até a base do suporte. Note que isso é arredondado para a próxima altura de camada." +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "A distância entre a parte superior do suporte e a impressão." +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." -msgstr "Distância do topo/base da estrutura de suporte até a impressão. Este espaço permite a remoção dos suportes após a impressão do modelo. A camada de suporte mais alta abaixo do modelo pode ser uma fração das camadas regulares." +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "A distância de um movimento de deslocação inserido depois de cada linha de enchimento, para melhorar a união do enchimento às paredes. Esta opção é semelhante à sobreposição de enchimento, mas sem extrusão e apenas numa das extremidades da linha de enchimento." +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "A distância de um movimento de deslocação inserido depois da parede exterior, para ocultar melhor a junta Z." +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "A distância da proteção contra correntes de ar relativamente à impressora nas direções X/Y." +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Retração em Firmware" -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "A distância da proteção contra escorrimentos relativamente à impressão nas direções X/Y." +msgctxt "machine_firmware_retract description" +msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." +msgstr "Se se deve utilizar os comandos de retração do firmware (G10/G11), em vez da propriedade E dos comandos G1, para realizar a retração do material." -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "A distância da estrutura de suporte relativamente às saliências nas direções X/Y." +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Extrusoras Partilham Aquecedor" -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "A distância entre a estrutura de suporte e a impressão nas direções X/Y." +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "Se, as extrusoras partilham um único aquecedor em vez de cada extrusora ter o seu próprio aquecedor." -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Os pontos de distância são alterados para suavizar o percurso" +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Extrusoras partilham bocal" -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Os pontos de distância são alterados para suavizar o percurso" +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "Se as extrusoras partilham um único bocal, em vez de cada extrusora ter um bocal próprio. Quando definido como verdadeiro, espera-se que o script gcode de arranque da impressora configure corretamente todas as extrusoras num estado de retração inicial conhecido e mutuamente compatível (seja zero ou um filamento não retraído); nesse caso, o estado de retração inicial é descrito, por extrusora, pelo parâmetro 'machine_extruders_shared_nozzle_initial_retraction'." -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "Não criar áreas de enchimento mais pequenas do que este valor (em vez disso, utiliza o revestimento)." +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Retração inicial do bocal partilhado" -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Altura da proteção contra correntes de ar" +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "Até que ponto se assume que o filamento de cada extrusora foi retraído a partir da ponta do bocal partilhado após a conclusão do script gcode de arranque da impressora; o valor deverá ser igual ou superior ao comprimento da parte comum das condutas do bocal." -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Limite de proteção contra correntes de ar" +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Áreas não permitidas" -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Distância X/Y da proteção contra correntes de ar" +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "Uma lista de polígonos com áreas onde a cabeça de impressão não pode entrar." -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Malha de suporte pendente" +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Áreas não permitidas ao nozzle" -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Dupla Extrusão" +msgctxt "nozzle_disallowed_areas description" +msgid "A list of polygons with areas the nozzle is not allowed to enter." +msgstr "Uma lista de polígonos com áreas onde o nozzle não pode entrar." -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Elíptica" +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Polígono da cabeça e do ventilador da máquina" -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Ativar controlo da aceleração" +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "A forma da cabeça de impressão. Estas coordenadas são relativas à posição da cabeça de impressão, que normalmente é a posição do primeiro extrusor. As coordenadas à esquerda e à frente da cabeça de impressão têm de ser valores negativos." -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Ativar Definições de Bridge" +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Altura do pórtico" -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Ativar desaceleração" +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "A diferença de altura entre a ponta do nozzle e o sistema de pórtico (eixos X e Y)." -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Ativar suporte cónico" +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID do Nozzle" -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Barreira contra correntes de ar" +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "O ID do nozzle de um núcleo de extrusão, tal como \"AA 0.4\" e \"BB 0.8\"." -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "Ativar o movimento fluido" +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diâmetro do Nozzle" -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Ativar Engomar (Ironing)" +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "O diâmetro interno do nozzle. Altere esta definição quando utilizar um nozzle com um tamanho não convencional." -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Ativar Controlo do Jerk" +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Desviar com extrusor" -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Ativar controlo de temperatura do nozzle" +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "Aplique o desvio do alinhamento da extrusora ao sistema de coordenadas. Afeta todas as extrusoras." -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Ativar proteção contra escorrimento" +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posição Z para Preparação do Extrusor" -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "\"Blob\" de Preparação" +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "A coordenada Z da posição onde o nozzle é preparado ao iniciar a impressão." -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Ativar torre de preparação" +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "Posição Absoluta Preparação Extrusor" -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Ativar Arrefecimento Impressão" +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "Definir como absoluta, a posição para a preparação do extrusor, em vez de relativa à última posição conhecida da cabeça." -msgctxt "ppr_enable label" -msgid "Enable Print Process Reporting" -msgstr "" +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Velocidade X Máxima" -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Ativar Retração" +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "A velocidade máxima do motor da direção X." -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Ativar aba de suporte" +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Velocidade Y Máxima" -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Ativar piso de suporte" +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "A velocidade máxima do motor da direção Y." -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Ativar interface de suporte" +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Velocidade Z Máxima" -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Ativar tecto de suporte" +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "A velocidade máxima do motor da direção Z." -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "Ativar a aceleração da viagem" +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Velocidade Máxima de E" -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "Ativar Jerk de Viagem" +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "A velocidade máxima do filamento." -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "Ativa a proteção exterior contra escorrimentos. Isto irá criar um invólucro em torno do modelo que deverá limpar um segundo nozzle, caso este se encontre à mesma altura que o primeiro nozzle." +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Aceleração X Máxima" -msgctxt "ppr_enable description" -msgid "Enable print process reporting for setting threshold values for possible fault detection." -msgstr "" +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "A aceleração máxima do motor da direção X" -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "Ative as regiões pequenas (até à \"Largura superior/interior pequena\") na camada mais superior (exposta ao ar) para que sejam preenchidas com paredes em vez do padrão predefinido." +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Aceleração Y Máxima" -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "Permite ajustar o jerk da cabeça de impressão quando a velocidade nos eixos X ou Y muda. Aumentar o jerk pode reduzir o tempo de impressão em detrimento da qualidade de impressão." +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "A aceleração máxima do motor da direção Y." -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "Permite o ajuste da aceleração da cabeça de impressão. Aumentar as acelerações pode reduzir o tempo de impressão em detrimento da qualidade de impressão." +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Aceleração Z Máxima" -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "Ativa os ventiladores de arrefecimento durante a impressão. Os ventiladores melhoram a qualidade de impressão, nas camadas que têm uma curta duração de impressão e / ou nas partes do modelo que contêm vãos / saliências." +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "A aceleração máxima do motor da direção Z." -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "G-code Final" +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Aceleração Máxima do Filamento" -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Comprimento da purga do fim do filamento" +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "A aceleração máxima do motor do filamento." -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Velocidade da purga do fim do filamento" +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Aceleração Predefinida" -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "Aplicar a aba para ser impressa em torno do modelo, mesmo se esse espaço fosse ocupado de outra forma pelo suporte. Isto substitui algumas regiões da primeira camada do suporte por regiões de aba." +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "A aceleração predefinida do movimento da cabeça de impressão." -msgctxt "brim_location option everywhere" -msgid "Everywhere" -msgstr "" +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Jerk X-Y Predefinido" -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "Em todo o lado" +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "O jerk predefinido do movimento no plano horizontal." -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Exclusivo" +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Jerk Z Predefinido" -msgctxt "experimental label" -msgid "Experimental" -msgstr "Experimental" +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "O jerk predefinido do motor da direção Z." -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Expor Junta" +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Jerk Predefinido do Filamento" -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Costura Extensiva" +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "O jerk predefinido do motor do filamento." -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "A costura extensiva tenta coser buracos abertos na malha, ao fechá-los com os polígonos adjacentes. Esta opção pode acrescentar bastante tempo de processamento." +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Passos por Milímetro (X)" -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "Contagem de paredes de enchimento adicionais" +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "O numero de passos do motor de passos (stepper motor) que irão resultar no movimento de um milímetro na direção X." -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Paredes Revestimento Extra" +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Passos por Milímetro (Y)" -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "Material extra a preparar após a substituição do nozzle." +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "O numero de passos do motor de passos (stepper motor) que irão resultar no movimento de um milímetro na direção Y." -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Posição X Preparação Extrusor" +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Passos por Milímetro (Z)" -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Posição Y Preparação Extrusor" +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "O numero de passos do motor de passos (stepper motor) que irão resultar no movimento de um milímetro na direção Z." -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Posição Z para Preparação Extrusor" +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Passos por Milímetro (E)" -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Extrusoras Partilham Aquecedor" +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "O número de passos do motor de passos (stepper motor) que irá resultar no movimento de um milímetro da roda do alimentador à volta da respetiva circunferência." -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Extrusoras partilham bocal" +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "Endstop X no Sentido Positivo" -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Modificador da velocidade de arrefecimento da extrusão" +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "Se o endstop do eixo X está no sentido positivo (coordenada X superior) ou negativo (coordenada X inferior)." -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "Fator de correção baseado no diâmetro de extrusão sobre a velocidade. A 0% a velocidade de movimento mantém-se constante à Velocidade de impressão. A 100% a velocidade de movimento é ajustada de modo a que o fluxo (em mm³/s) seja mantido constante, ou seja, linhas metade do Diâmetro da linha normal são impressas duas vezes mais depressa e as linhas duas vezes mais largas são impressas a metade da rapidez. Um valor superior a 100% pode ajudar a compensar a pressão mais elevada necessária para efetuar a extrusão de linhas largas." +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Endstop Y no Sentido Positivo" -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Velocidade Ventiladores" +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "Se o endstop do eixo Y está no sentido positivo (coordenada Y superior) ou negativo (coordenada Y inferior)." -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Substituir velocidade da ventoinha" +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Endstop Z no Sentido Positivo" -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "Os contornos do elemento com um comprimento inferior a este serão impressos à Velocidade de elemento pequeno." +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "Se o endstop do eixo Z está no sentido positivo (coordenada Z superior) ou negativo (coordenada Z inferior)." -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Funcionalidades que ainda não foram totalmente lançadas." +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Velocidade Mínima de Alimentação" + +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "A velocidade mínima de movimento da cabeça de impressão." msgctxt "machine_feeder_wheel_diameter label" msgid "Feeder Wheel Diameter" msgstr "Diâmetro Roda do Alimentador" -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Temperatura de impressão final" +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "O diâmetro da roda que conduz o material pelo alimentador." -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Retração em Firmware" +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "Ajustar a velocidade do ventilador entre 0-1" -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Extrusor de suporte da primeira camada" +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "Ajustar a velocidade do ventilador para esta ser definida entre 0 e 1 em vez de entre 0 e 256." + +msgctxt "resolution label" +msgid "Quality" +msgstr "Qualidade" + +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "Todas as definições que influenciam a resolução da impressão. Estas definições têm um grande impacto na qualidade. (e no tempo de impressão)." + +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Espessura das Camadas" + +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "A espessura (altura) de cada camada em milímetros. Espessuras maiores produzem impressões rápidas com baixa resolução, e, espessuras pequenas, produzem impressões mais lentas mas com uma maior resolução/qualidade." -msgctxt "material_flow label" -msgid "Flow" -msgstr "Fluxo" +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Espessura da Camada Inicial" -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Proporção de equalização do fluxo" +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "A espessura da camada inicial em milímetros. Uma camada inicial mais espessa facilita a aderência à base de construção." -msgctxt "flow_anomaly_limit label" -msgid "Flow Limit" -msgstr "" +msgctxt "line_width label" +msgid "Line Width" +msgstr "Diâmetro da Linha" -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Fator de compensação da taxa de fluxo" +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "O diâmetro (largura) de uma única linha. Normalmente, o diâmetro de cada linha deve corresponder ao diâmetro do nozzle. No entanto, reduzir ligeiramente este valor pode produzir melhores impressões." -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Desvio de extrusão máximo de compensação da taxa de fluxo" +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Diâmetro Linha Parede" -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Gráfico de temperatura de fluxo" +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "O diâmetro de uma única linha de parede." -msgctxt "flow_warn_limit label" -msgid "Flow Warning" -msgstr "" +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Diâmetro Linha Parede Exterior" -msgctxt "material_flow_layer_0 description" -msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." -msgstr "Compensação de fluxo para a camada inicial: a quantidade de material extrudido na camada inicial é multiplicada por este valor." +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "O diâmetro da linha de parede mais exterior. Ao reduzir este valor, é possível imprimir com maior nível de detalhe." -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "Compensação de fluxo nos resultados da primeira camada" +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Diâmetro Linha Parede(s) Interior" -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Compensação de fluxo nas linhas de enchimento." +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "O diâmetro de uma única linha de parede para todas as linhas de parede excepto a mais exterior." -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "Compensação de fluxo nas linhas de suporte do teto ou do chão." +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Diâmetro Linha Superior / Inferior" -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "Compensação de fluxo nas linhas das áreas na parte superior da impressora." +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "O diâmetro de uma única linha das superfícies superior/inferior." -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Compensação de fluxo nas linhas da torre de preparação." +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Diâmetro Linha Enchimento" -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Compensação de fluxo nas linhas de contorno ou abas." +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "O diâmetro de uma única linha de enchimento." -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Compensação de fluxo nas linhas do chão do suporte." +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Diâmetro Linha Contorno/Aba" -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Compensação de fluxo nas linhas do teto do suporte." +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "O diâmetro de uma única linha do contorno ou da aba." -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Compensação de fluxo nas linhas das estruturas de suporte." +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Diâmetro Linha Suportes" -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "Compensação de fluxo na linha de parede mais externa da primeira camada." +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "O diâmetro de uma única linha da estrutura de suporte." -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "Compensação de fluxo na linha de parede exterior." +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Diâmetro Linha Interface Suporte" -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Compensação de fluxo na linha da parede mais externa da superfície superior." +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "O diâmetro de uma única linha do chão ou tecto de suporte." -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Compensação de fluxo nas linhas de parede da superfície superior para todas as linhas de parede, exceto a mais externa." +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Diâmetro Linha Tecto Suporte" -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Compensação de fluxo nas linhas superiores/inferiores." +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "O diâmetro de uma única linha do tecto de suporte." -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "Compensação de fluxo em linhas de parede para todas as linhas de parede, exceto a mais externa, mas somente para a primeira camada" +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Diâmetro Linha Piso Suporte" -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "A compensação de fluxo nas linhas de parede para todas as linhas de parede exceto a mais exterior." +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "O diâmetro de uma única linha do piso de suporte." -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Compensação de fluxo nas linhas de parede." +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Diâmetro Linha Torre Preparação" -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "Compensação de fluxo: a quantidade de material extrudido é multiplicada por este valor." +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "O diâmetro de uma única linha da torre de preparação." -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "Ângulo do movimento fluido" +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Diâmetro Linha Camada Inicial" -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "Distância da alteração do movimento fluido" +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "Multiplicador do diâmetro da linha da camada inicial. Aumentar o diâmetro poderá melhorar a aderência à base de construção." -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "Distância pequena do movimento fluido" +msgctxt "shell label" +msgid "Walls" +msgstr "Paredes" -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Comprimento da purga da descarga" +msgctxt "shell description" +msgid "Shell" +msgstr "Invólucro" -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Velocidade da purga da descarga" +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Extrusor Paredes" -msgctxt "min_wall_line_width description" -msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." -msgstr "Para estruturas finas de cerca de uma ou duas vezes o tamanho do bocal, os diâmetros da linha têm de ser alterados para aderir à espessura do modelo. Esta definição controla o diâmetro mínimo da linha permitido para as paredes. Os diâmetros mínimos de linha determinam também os diâmetros máximos de linha, uma vez que fazemos a transição de paredes N para N+1 com uma determinada espessura da geometria em que as paredes N são largas e as paredes N+1 são estreitas. A linha de parede mais larga possível é o dobro do diâmetro mínimo de linha da parede." +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir as paredes. Definição usada com múltiplos extrusores." -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Frontal" +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Extrusor Parede Exterior" -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Frontal esquerda" +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir a parede exterior. Definição usada com múltiplos extrusores." -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Frontal direita" +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Extrusor Paredes Interiores" -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Máximo" +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir as paredes interiores. Definição usada com múltiplos extrusores." -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Revestimento Difuso" +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Espessura das Paredes" -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Densidade Revestimento Difuso" +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "A espessura das paredes na direção horizontal. Este valor, dividido pelo diâmetro da linha de parede, define o número de paredes." -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Revestimento difuso apenas no exterior" +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Número Linhas Paredes" -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Distância do ponto de revestimento difuso" +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "O número de paredes. Quando calculado através da espessura das paredes, este valor é arredondado para um número inteiro." -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Espessura Revestimento Difuso" +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Comprimento de transição de paredes" -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "Variante do G-code" +msgctxt "wall_transition_length description" +msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." +msgstr "Quando uma peça fica mais fina e seja necessário haver uma transição entre um numero diferente de paredes, é reservado um espaço para se puder separar ou unir as linhas das paredes." + +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Número de paredes distribuídas" -msgctxt "machine_end_gcode description" -msgid "" -"G-code commands to be executed at the very end - separated by \n" -"." -msgstr "" -"Comandos G-code a serem executados no fim – separados por \n" -"." +msgctxt "wall_distribution_count description" +msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." +msgstr "O número de paredes, contadas a partir do centro, sobre as quais a variação tem de ser distribuída. Valores mais baixos significam que as paredes exteriores não mudam de diâmetro." -msgctxt "machine_start_gcode description" -msgid "" -"G-code commands to be executed at the very start - separated by \n" -"." -msgstr "" -"Comandos G-code a serem executados no início – separados por \n" -"." +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Ângulo do limiar de transição de paredes" -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "GUID do material. Este é definido automaticamente." +msgctxt "wall_transition_angle description" +msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." +msgstr "Quando devem ser criadas transições entre números pares e ímpares de paredes. Uma forma em cunha com um ângulo superior a esta definição não terá transições e nenhuma parede será impressa no centro para preencher o espaço restante. Reduzir esta definição reduz o número e o comprimento destas paredes centrais, mas pode deixar lacunas ou provocar um excesso de extrusão." -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Altura do pórtico" +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Distância do filtro de transição de paredes" -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "Gerar estrutura de interligação" +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "Se estiver a efetuar a transição para trás e para a frente entre diferentes números de paredes numa rápida sucessão, não efetuar qualquer transição. Remover as transições se estiverem mais juntas do que esta distância." -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Criar Suportes" +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Margem do filtro de transição de paredes" -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "Gera uma aba dentro das regiões de enchimento do suporte da primeira camada. Esta aba é impressa na parte por baixo do suporte e não em torno do mesmo. Ativar esta definição aumenta a aderência do suporte à base de construção." +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "Evite a transição para trás e para a frente entre uma parede extra e uma a menos. Esta margem alarga o alcance dos diâmetros de linha que seguem [Diâmetro mínimo da linha da parede - Margem, 2 * Diâmetro mínimo de linha da parede + Margem]. O aumento desta margem reduz o número de transições, o que reduz o número de inícios/paragens de extrusão e o tempo de viagem. No entanto, a variação do diâmetro de linha grande pode levar a problemas de excesso ou defeito de extrusão." -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "Gera uma interface densa entre o modelo e o suporte. Isto irá criar um revestimento na parte superior do suporte, onde o modelo é impresso, e na parte inferior do suporte, onde este é apoiado sobre o modelo." +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Distância Limpeza Parede Exterior" -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "Gera uma base densa de material entre a parte inferior do suporte e o modelo. Isto irá criar um revestimento entre o modelo e o suporte." +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "A distância de um movimento de deslocação inserido depois da parede exterior, para ocultar melhor a junta Z." -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "Gera uma base densa de material entre a parte superior do suporte e o modelo. Isto irá criar um revestimento entre o modelo e o suporte." +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Desvio Parede Exterior" -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "Criar estruturas para suportar partes do modelo, suspensas ou com saliências. Sem estas estruturas, essas partes do modelo podem desmoronar durante a impressão." +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "Desvio aplicado à trajetória da parede exterior. Se a parede exterior for menor que o nozzle e impressa depois das paredes interiores, utilize este desvio para que o buraco do nozzle se sobreponha às paredes interiores e não ao exterior do modelo." -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Vidro" +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Otimizar Ordem Paredes" -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "Passar novamente sobre o revestimento superior, mas desta vez extrudindo muito pouco material. O objetivo é derreter mais o plástico da camada superior, criando uma superfície mais suave. A pressão na câmara do nozzle é mantida elevada de modo que os vincos existentes na superfície sejam preenchidos com material." +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "Otimizar a ordem pela qual as paredes são impressas de forma a reduzir o número de retrações e a distância percorrida. A maioria das peças irá beneficiar com a ativação desta opção, mas algumas podem na realidade demorar mais tempo, portanto, por favor compare as estimativas do tempo de impressão com e sem a otimização." -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Altura Degraus Enchimento Gradual" +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Ordenação de paredes" -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Degraus Enchimento Gradual" +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "Determina a ordem pela qual as paredes são impressas. Imprimir paredes externas antecipadamente ajuda em termos de precisão dimensional, uma vez que as falhas de paredes internas não se podem propagar para o exterior. No entanto, imprimi-las mais tarde permite empilhá-las melhor quando são impressas saliências. Quando há uma quantidade desigual de paredes internas totais, a \"última linha central\" é sempre impressa em último lugar." -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Altura do degrau de enchimento gradual de suporte" +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "De dentro para fora" -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Enchimento Gradual Suporte" +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "De fora para dentro" -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "Reduz gradualmente para esta temperatura ao imprimir a velocidades reduzidas devido ao tempo mínimo da camada." +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Alternar Parede Adicional" -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Grelha" +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "Imprimir uma parede adicional em camadas alternadas. Deste modo, o enchimento é \"capturado\" entre estas paredes adicionais, resultando em impressões mais robustas." -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Grelha" +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Diâmetro mínimo de linha da parede" -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Grelha" +msgctxt "min_wall_line_width description" +msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." +msgstr "Para estruturas finas de cerca de uma ou duas vezes o tamanho do bocal, os diâmetros da linha têm de ser alterados para aderir à espessura do modelo. Esta definição controla o diâmetro mínimo da linha permitido para as paredes. Os diâmetros mínimos de linha determinam também os diâmetros máximos de linha, uma vez que fazemos a transição de paredes N para N+1 com uma determinada espessura da geometria em que as paredes N são largas e as paredes N+1 são estreitas. A linha de parede mais larga possível é o dobro do diâmetro mínimo de linha da parede." -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Grelha" +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Diâmetro mínimo de linha da parede Par" -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Grelha" +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "O diâmetro mínimo da linha para as paredes poligonais normais. Esta definição determina a espessura do modelo em que passamos da impressão de uma única linha fina de parede para a impressão de duas linhas de parede. Um maior diâmetro mínimo de linha da parede Par causa um maior diâmetro máximo de linha da parede Ímpar. O diâmetro máximo de linha da parede Par é calculado como o diâmetro da linha da parede externa + 0,5 * diâmetro mínimo da linha da parede Ímpar." -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Diâmetro mínimo de linha da parede Ímpar" -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Agrupar as paredes externas" +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "Diâmetro mínimo da linha para as paredes poligonais de enchimento de folgas das linhas do meio. Esta definição determina a espessura do modelo em que passamos da impressão de duas linhas da parede para a impressão de duas paredes exteriores e de uma única parede central no meio. Um diâmetro mínimo da parede ímpar maior provoca um maior diâmetro máximo de linha da parede par. O diâmetro máximo de linha da parede ímpar é calculado como 2 * diâmetro mínimo de linha da parede par." -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Imprimir Paredes Finas" -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "Imprimir paredes do modelo que são mais finas horizontalmente do que o tamanho do nozzle." -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "Tem estabilização da temperatura do volume de construção" +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Tamanho mínimo da característica" -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Tem Base de Construção Aquecida" +msgctxt "min_feature_size description" +msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." +msgstr "Espessura mínima dos elementos finos. Os elementos do modelo mais finos do que este valor não serão impressos, enquanto que os elementos mais espessos do que o Tamanho mínimo do elemento serão alargados para o Diâmetro mínimo de linha da parede." -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Velocidade de aquecimento" +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Diâmetro mínimo de linha da parede fina" -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Comprimento da zona de aquecimento" +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "Diâmetro da parede que substituirá elementos finos (de acordo com o Tamanho mínimo do elemento) do modelo. Se o Diâmetro mínimo de linha da parede for mais fino do que a espessura do elemento, a parede tornar-se-á tão espessa como o próprio elemento." -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "Limite de altura da proteção contra correntes de ar. Não será impressa qualquer proteção contra correntes de ar acima desta altura." +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Expansão Horizontal" -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Ocultar Junta" +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "Quantidade de desvio aplicado a todos os polígonos em cada camada. Valores positivos podem compensar buracos demasiado grandes; os valores negativos podem compensar buracos demasiado pequenos." -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Ocultar ou Expor Junta" +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Expansão Horizontal Camada Inicial" + +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "Quantidade de desvio aplicado a todos os polígonos na primeira camada. Um valor negativo pode compensar o \"esmagamento\" da camada inicial, conhecido como \"pé de elefante\"." msgctxt "hole_xy_offset label" msgid "Hole Horizontal Expansion" msgstr "Expansão horizontal de buraco" +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "Quando superior a zero, a expansão horizontal de orifícios é o valor do desvio aplicado a todos os orifícios em cada camada. Os valores positivos aumentam a dimensão dos orifícios e os valores negativos reduzem a dimensão dos orifícios. Quando esta definição está ativa pode ser otimizada adicionalmente com o diâmetro máximo da expansão horizontal de orifícios." + msgctxt "hole_xy_offset_max_diameter label" msgid "Hole Horizontal Expansion Max Diameter" msgstr "Diâmetro máximo da Expansão Horizontal de Buraco" -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "Os buracos e os contornos das peças com um diâmetro inferior a este valor serão impressos à Velocidade de elemento pequeno." +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "Quando este valor for superior a zero, a Expansão Horizontal de Buraco é aplicada de forma progressiva nos buracos pequenos (os buracos pequenos serão mais expandidos). Com um valor de zero, a Expansão Horizontal de Buraco será aplicada a todos os buracos. Os buracos maiores que o Diâmetro Máximo de Expansão Horizontal de Buraco não serão expandidos." -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Expansão Horizontal" +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Alinhamento da Junta-Z" -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Compensação de contração do fator de dimensionamento horizontal" +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "Ponto inicial de cada trajetória de uma camada. Quando as trajetórias em camadas consecutivas começam no mesmo ponto, pode aparecer uma junta vertical na impressão. Ao alinhar o inicio das trajectórias próximo a uma posição definida pelo utilizador, é mais fácil remover a linha de junta. Quando dispostas aleatoriamente, as imprecisões no início das trajetórias serão menos perceptíveis. Ao adoptar a trajetória mais curta, a impressão será mais rápida." -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "A distância a que o filamento pode ser esticado antes de se separar, enquanto é aquecido." +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Definido pelo utilizador" -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "A distância a que o material tem de ser retraído antes de parar o escorrimento." +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Mais curto" -msgctxt "flow_rate_extrusion_offset_factor description" -msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." -msgstr "Até que distância o filamento se deve mover para compensar as alterações na taxa de fluxo, como uma percentagem da distância que o filamento iria percorrer num segundo de extrusão." +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Aleatório" + +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Canto mais Acentuado" -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "A distância de retração do filamento para separá-lo de forma regular." +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Posição da Junta-Z" -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "A velocidade a que o filamento tem de ser retraído imediatamente antes de se separar numa retração." +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "A posição próxima do local onde a impressão de cada parte de uma camada será iniciada." -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "A velocidade a que o material tem de ser retraído durante uma substituição de filamentos para evitar o escorrimento." +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Posterior esquerda" -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "A velocidade com que deve preparar o material após substituir uma bobina vazia por uma bobina nova do mesmo material." +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Anterior" -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "A velocidade com que deve preparar o material após mudar para um material diferente." +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Posterior direita" -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "O tempo que o material pode ficar fora do armazenamento seco em segurança." +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Direita" -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "O numero de passos do motor de passos (stepper motor) que irão resultar no movimento de um milímetro na direção X." +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Frontal direita" -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "O numero de passos do motor de passos (stepper motor) que irão resultar no movimento de um milímetro na direção Y." +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Frontal" -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "O numero de passos do motor de passos (stepper motor) que irão resultar no movimento de um milímetro na direção Z." +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Frontal esquerda" -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "O número de passos do motor de passos (stepper motor) que irá resultar no movimento de um milímetro da roda do alimentador à volta da respetiva circunferência." +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Esquerda" -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "A quantidade de material que deve usar para purgar o material anterior para fora do bocal (em comprimento de filamento) ao substituir uma bobina vazia por uma bobina nova do mesmo material." +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "X da Junta-Z" -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "A quantidade de material que deve usar para purgar o material anterior para fora do bocal (em comprimento de filamento) ao mudar para um material diferente." +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "A coordenada X da posição próxima do local onde a impressão de cada parte de uma camada será iniciada." -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "Até que ponto se assume que o filamento de cada extrusora foi retraído a partir da ponta do bocal partilhado após a conclusão do script gcode de arranque da impressora; o valor deverá ser igual ou superior ao comprimento da parte comum das condutas do bocal." +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Y da Junta-Z" -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "Como a interface de suporte e a estrutura de suporte interagem quando se sobrepõem. Atualmente implementado apenas para o teto de suporte." +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "A coordenada Y da posição próxima do local onde a impressão de cada parte de uma camada será iniciada." -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "A altura mínima que um ramo deve ter quando apoiado no modelo. Evita pequenas bolhas de suporte. Esta definição é ignorada quando um ramo está a suportar um teto do suporte." +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Preferência Canto Junta" -msgctxt "bridge_skin_support_threshold description" -msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." -msgstr "Se uma região de revestimento for suportada por menos do que esta percentagem da sua área, imprima-a utilizando as definições de Bridge. Caso contrário, será impressa utilizando as definições de revestimento normais." +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "Controla se os cantos do contorno do modelo influenciam a posição da junta. Nenhum significa que os cantos não influenciam a posição da junta. Ocultar Junta faz com que seja mais provável que a junta surja num canto interior. Expor Junta faz com que seja mais provável que a junta aconteça num canto exterior. Ocultar ou Expor Junta faz com que seja mais provável que a junta aconteça num canto interior ou exterior. Ocultação Inteligente permite os cantos interiores e exteriores, mas opta pelos cantos interiores com mais frequência, se apropriado." -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "Se o segmento de um percurso de ferramenta se desviar mais do que este ângulo em relação ao movimento geral, o mesmo é suavizado." +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Nenhum" -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "Se ativada, a segunda e a terceira camada sobre o ar são impressas utilizando as seguintes definições. Caso contrário, essas camadas são impressas utilizando as definições normais." +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Ocultar Junta" -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "Se estiver a efetuar a transição para trás e para a frente entre diferentes números de paredes numa rápida sucessão, não efetuar qualquer transição. Remover as transições se estiverem mais juntas do que esta distância." +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Expor Junta" -msgctxt "raft_base_margin description" -msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Ocultar ou Expor Junta" -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Se o Raft estiver ativado, esta será a área de raft adicional em torno do modelo que também terá um raft. Aumentar o valor desta margem irá criar um raft mais robusto, mas ao mesmo tempo utiliza mais material e reduz a área disponível para a impressão." +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Ocultação Inteligente" -msgctxt "raft_interface_margin description" -msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Relativo à Junta-Z" -msgctxt "raft_surface_margin description" -msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "Quando ativado, as coordenadas da junta-Z são relativas ao centro de cada peça. Quando desativado, as coordenadas definem uma posição absoluta na base de construção." -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "Ignorar a geometria interna provocada pela sobreposição de volumes num objecto e imprime os volumes como um só. Pode provocar o desaparecimento indesejado de cavidades interiores." +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Superior / Inferior" -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Incluir Temperatura da Base de Construção" +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Superior / Inferior" -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Incluir Temperaturas do Material" +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Extrusor Revestimento Superior" -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Inclusivo" +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir a(s) camada(s) de revestimento das superfícies mais superiores. Definição usada com múltiplos extrusores." -msgctxt "infill description" -msgid "Infill" -msgstr "Enchimento" +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Camadas Revestimento Superior" -msgctxt "infill label" -msgid "Infill" -msgstr "Enchimento" +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "O número de camadas de revestimento da superfície superior. Por norma, uma só camada superior é suficiente para gerar superfícies superiores de maior qualidade." -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Aceleração de enchimento" +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Diâmetro Linha Revestimento Superior" -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Enchimento antes das paredes" +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "O diâmetro de uma única linha das superfícies de revestimento na parte superior da impressão." -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Densidade do Enchimento" +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Padrão Revestimento Superior" -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Extrusor Enchimento" +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "O padrão geométrico das camadas de revestimento da superfície superior." -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Fluxo de Enchimento" +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Linhas" -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Jerk do Enchimento" +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Espessura Camada Enchimento" +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "Direções Linhas Enchimento" +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Ordem da superfície superior em \"Monotonic\"" -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Distância Linhas Enchimento" +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprimir as linhas da superfície superior numa ordem que faz com que ocorra sempre uma sobreposição com linhas adjacentes numa única direção. Este processo demora ligeiramente mais tempo a imprimir, mas torna o aspeto das superfícies planas mais consistente." -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "Multiplicador de linhas de enchimento" +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Direções Linha Revestimento Superior" -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Diâmetro Linha Enchimento" +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Uma lista de ângulos (números inteiros) relativos às direções de linha a utilizar quando as camadas de revestimento da superfície superior utilizarem o padrão de Linhas ou Ziguezague. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito a lista está vazia, o que significa a utilização dos ângulos predefinidos tradicionais (45 e 135 graus)." -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Objecto de Enchimento" +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Extrusor Superior / Inferior" -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Ângulo Saliência Enchimento" +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir as camadas superiores e inferiores da impressão. Definição usada com múltiplos extrusores." + +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Espessura Superior / Inferior" -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Sobreposição Enchimento (mm)" +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "A espessura total das camadas superiores e inferiores na impressão. Este valor, dividido pela Espessura das Camadas, define o número de camadas superiores / inferiores." -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "Sobreposição Enchimento (%)" +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Espessura Superior" -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Padrão de Enchimento" +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "A espessura total das camadas superiores na impressão. Este valor, dividido pela Espessura das Camadas, define o número de camadas superiores." -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Velocidade Enchimento" +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Camadas Superiores" -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Enchimento como Suporte" +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "O número de camadas superiores. Quando calculado através da Espessura Superior, este valor é arredondado para um número inteiro." -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Optimização Deslocação Enchimento" +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Espessura Inferior" -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "Distância Limpeza Enchimento" +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "A espessura total das camadas inferiores na impressão. Este valor, dividido pela Espessura das Camadas, define o número de camadas inferiores." -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "Deslocar Enchimento em X" +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Camadas Inferiores" -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Deslocar Enchimento em Y" +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "O número de camadas inferiores. Quando calculado através da Espessura Inferior, este valor é arredondado para um número inteiro." msgctxt "initial_bottom_layers label" msgid "Initial Bottom Layers" msgstr "Camadas inferiores iniciais" -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Velocidade Inicial do ventilador" - -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Aceleração da camada inicial" - -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "Fluxo inferior da camada inicial" - -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "Diâmetro da Camada Inicial" +msgctxt "initial_bottom_layers description" +msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "O número de camadas inferiores iniciais, a partir da base de construção no sentido ascendente. Quando calculado pela espessura inferior, este valor é arredondado para um número inteiro." -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Fluxo Camada Inicial" +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Padrão Superior / Inferior" -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Espessura da Camada Inicial" +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "O padrão geométrico das camadas superiores / inferiores." -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Expansão Horizontal Camada Inicial" +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Linhas" -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "Fluxo da parede interna da camada inicial" +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Jerk da Camada Inicial" +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Diâmetro Linha Camada Inicial" +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Padrão da Base na Camada Inicial" -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "Fluxo da parede externa da camada inicial" +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "O padrão geométrico da base da peça na camada inicial." -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Aceleração de impressão da camada inicial" +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Linhas" -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Jerk Impressão Camada Inicial" +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Concêntrico" -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Velocidade de impressão da camada inicial" +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Velocidade Camada Inicial" +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Ligar polígonos superiores/inferiores" -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "Distância da linha de suporte da camada inicial" +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "Ligar caminhos de revestimento superiores/inferiores quando as trajetórias são paralelas. Para o padrão concêntrico, ativar esta definição reduz consideravelmente o tempo de deslocação mas, uma vez que as ligações podem suceder num ponto intermediário sobre o enchimento, esta funcionalidade pode reduzir a qualidade da superfície superior." -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Aceleração de deslocação da camada inicial" +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Ordem Superior/Inferior em \"Monotonic\"" -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Jerk Deslocação Camada Inicial" +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprimir as linhas superiores/inferiores numa ordem que faz com que ocorra sempre uma sobreposição com as linhas adjacentes numa única direção. Este processo demora ligeiramente mais tempo a imprimir, mas torna o aspeto das superfícies planas mais consistente." -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Velocidade de deslocação da camada inicial" +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Direções Linha Superior / Inferior" -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Sobreposição Z Camada Inicial" +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Uma lista de ângulos (números inteiros) relativos às direções de linha a utilizar quando as camadas da superfície superiores/inferiores utilizarem os padrões de Linhas ou Ziguezague. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito a lista está vazia, o que significa a utilização dos ângulos predefinidos tradicionais (45 e 135 graus)." -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Temperatura de impressão inicial" +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "Largura Mínima Superior/Inferior" -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Aceleração da parede interior" +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "As regiões superiores/inferiores pequenas são preenchidas com paredes em vez do padrão superior/inferior padrão. Isto ajuda a evitar movimentos bruscos. Desativado para as camadas mais superiores (expostas ao ar) por predefinição (consulte \"Superfície superior/inferior pequena\")." -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Extrusor Paredes Interiores" +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "Superfície superior/inferior pequena" -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Jerk das Paredes Interiores" +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "Ative as regiões pequenas (até à \"Largura superior/interior pequena\") na camada mais superior (exposta ao ar) para que sejam preenchidas com paredes em vez do padrão predefinido." -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Velocidade Parede Interior" +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Sem Revestimento nos Espaços Z" -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Parede de Parede(s) Interior(es)" +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "Quando o modelo tem pequenos espaços verticais de apenas algumas camadas, deverá normalmente existir revestimento à volta dessas camadas no espaço estreito. Ative esta definição para não gerar revestimento se o espaço vertical for muito pequeno. Isto melhora o tempo de impressão e o tempo de seccionamento, mas deixa tecnicamente o enchimento exposto ao ar." -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Diâmetro Linha Parede(s) Interior" +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Paredes Revestimento Extra" -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "Desvio aplicado à trajetória da parede exterior. Se a parede exterior for menor que o nozzle e impressa depois das paredes interiores, utilize este desvio para que o buraco do nozzle se sobreponha às paredes interiores e não ao exterior do modelo." +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "Substitui a parte mais exterior do padrão superior/inferior por um número de linhas concêntricas. Usar uma ou duas linhas melhora os tectos que começam no material de enchimento." -msgctxt "brim_location option inside" -msgid "Inside Only" -msgstr "" +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Ativar Engomar (Ironing)" -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "De dentro para fora" +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "Passar novamente sobre o revestimento superior, mas desta vez extrudindo muito pouco material. O objetivo é derreter mais o plástico da camada superior, criando uma superfície mais suave. A pressão na câmara do nozzle é mantida elevada de modo que os vincos existentes na superfície sejam preenchidos com material." -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "Linhas de interface preferidas" +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Engomar Só Última Camada" -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "Interface preferida" +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "Engomar apenas a última camada do modelo. Isto permite poupar tempo se as camadas inferiores não precisarem de ter um acabamento mais suave." -msgctxt "prime_tower_mode option interleaved" -msgid "Interleaved" -msgstr "" +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Padrão de Engomar" -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "Contagem de camada de feixe de interligação" +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "O padrão geométrico a utilizar para engomar as superfícies superiores." -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "Largura do feixe de interligação" +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "Evitar a interligação de fronteiras" +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "Profundidade de interligação" +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Ordem de Engomar em \"Monotonic\"" -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "Orientação da estrutura de interligação" +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprimir as linhas de engomar numa ordem que faz com que ocorra sempre uma sobreposição com as linhas adjacentes numa única direção. Este processo demora ligeiramente mais tempo a imprimir, mas torna o aspeto das superfícies planas mais consistente." -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Engomar Só Última Camada" +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Distância Linhas de Engomar" -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Aceleração de Engomar" +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "A distância entre as linhas de engomar." msgctxt "ironing_flow label" msgid "Ironing Flow" msgstr "Fluxo de Engomar" +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "A quantidade de material, em relação a uma linha de revestimento normal, a ser extrudido durante o processo de engomar. Manter o nozzle cheio ajuda a preencher algumas das fissuras da superfície superior, mas cheio de mais, provoca sobre-extrusão e pequenos pontos ou \"bolhas\" na parte lateral da superfície." + msgctxt "ironing_inset label" msgid "Ironing Inset" msgstr "Desvio Interior de Engomar" +msgctxt "ironing_inset description" +msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." +msgstr "A distância a manter em relação às extremidades do modelo. \"Engomar\" até à extremidade da superfície pode resultar em arestas irregulares na impressão." + +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Velocidade de Engomar" + +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "A velocidade da passagem do nozzle (engomar) sobre a superfície superior." + +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Aceleração de Engomar" + +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "A aceleração com a qual se realiza o processo de engomar." + msgctxt "jerk_ironing label" msgid "Ironing Jerk" msgstr "Jerk de Engomar" -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Distância Linhas de Engomar" +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "A mudança de velocidade instantânea máxima ao engomar." -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Padrão de Engomar" +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Sobreposição Revestimento (%)" -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Velocidade de Engomar" +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Ajuste a quantidade de sobreposição entre as paredes e (as extremidades) das linhas centrais de revestimento, como percentagem das larguras de linha das linhas de revestimento e da parede mais interna. Uma ligeira sobreposição permite que as paredes se liguem firmemente ao revestimento. Observe que no caso de um revestimento e uma largura de revestimento da parede iguais, qualquer percentagem acima de 50% pode fazer com que o revestimento ultrapasse a parede, visto que a posição do nozzle do extrusor de revestimento pode já ultrapassar o centro da parede neste ponto." -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "O Centro é a Origem" +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Sobreposição Revestimento (mm)" -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "É um material de suporte" +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Ajuste a quantidade de sobreposição entre as paredes e (as extremidades) das linhas centrais de revestimento. Uma ligeira sobreposição permite que as paredes se liguem firmemente ao revestimento. Observe que no caso de um revestimento e uma largura de revestimento da parede iguais, qualquer valor acima da metade da largura da parede pode fazer com que o revestimento ultrapasse a parede, visto que a posição do nozzle do extrusor de revestimento pode já ultrapassar o centro da parede." -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "Este tipo de material é daquele que se separa de forma regular quando aquecido (cristalino) ou daquele que cria longas cadeias de polímero entrelaçado (não cristalino)?" +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Largura Remoção Revestimento" -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "Este material é utilizado como material de suporte durante a impressão." +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "A largura máxima das áreas do revestimento a serem removidas. Todas as áreas de revestimento mais pequenas do que este valor irão desaparecer. Isto pode ajudar a limitar a quantidade de tempo e material gastos na impressão do revestimento superior/inferior nas superfícies inclinadas do modelo." -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "Vibrar apenas os contornos das peças e não os buracos das peças." +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Largura Remoção Revestimento Superior" -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Manter Faces Soltas" +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "A largura máxima das áreas do revestimento superior a serem removidas. Todas as áreas de revestimento mais pequenas do que este valor irão desaparecer. Isto pode ajudar a limitar a quantidade de tempo e material gastos na impressão do revestimento superior nas superfícies inclinadas do modelo." -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Espessura das Camadas" +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Largura Remoção Revestimento Inferior" -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "X Início Camada" +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "A largura máxima das áreas do revestimento inferior a serem removidas. Todas as áreas de revestimento mais pequenas do que este valor irão desaparecer. Isto pode ajudar a limitar a quantidade de tempo e material gastos na impressão do revestimento inferior nas superfícies inclinadas do modelo." -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Y Início Camada" +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Distância Expansão Revestimento" -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "A espessura da camada inferior (base) do raft. Esta deve ser uma camada espessa para aderir firmemente à base de construção da impressora." +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "A distância da expansão dos revestimentos para dentro do enchimento. Valores mais elevados melhoram tanto a fixação do revestimento ao padrão geométrico de enchimento, assim como a aderência ao revestimento das paredes de camadas adjacentes. Valores mais baixos reduzem a quantidade de material utilizado." -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "A espessura da camada do meio do raft. (segunda camada)" +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Distância Expansão Revestimento Superior" -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "A espessura das camadas superiores do raft." +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "A distância da expansão dos revestimentos superiores para dentro do enchimento. Valores mais elevados melhoram, tanto, a fixação do revestimento ao padrão geométrico do enchimento, assim como a aderência ao revestimento das paredes da camada seguinte. Valores mais baixos reduzem a quantidade de material utilizado." -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "Omitir uma ligação entre as linhas de suporte a cada \"x\" milímetros para facilitar a separação da estrutura de suporte." +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Expansão Revestimento Inferior" -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Esquerda" +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "A distância da expansão dos revestimentos inferiores para dentro do enchimento. Valores mais elevados melhoram, tanto, a fixação do revestimento ao padrão geométrico de enchimento, assim como a aderência do revestimento às paredes da camada anterior. Valores mais baixos reduzem a quantidade de material utilizado." -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Elevar Cabeça" +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Ângulo Revestimento para Expansão" -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Relâmpago" +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "O revestimento superior/inferior não será expandido, quando as superfícies superiores e/ou inferiores do objeto tiverem um ângulo maior que este valor. Isto evita a expansão das pequenas áreas de revestimento que são criadas quando a superfície do modelo tem uma inclinação quase vertical. Um ângulo de 0° é horizontal e fará com que nenhum revestimento seja expandido, enquanto um ângulo de 90° é vertical e fará com que todo o revestimento seja expandido." -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Ângulo de saliência do enchimento relâmpago" +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Largura Mínima Revestimento para Expansão" -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Ângulo de corte do enchimento relâmpago" +msgctxt "min_skin_width_for_expansion description" +msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." +msgstr "As áreas de revestimento mais pequenas do que este valor não são expandidas. Isto evita a expansão das pequenas áreas de revestimento que são criadas quando a superfície do modelo apresenta uma inclinação quase vertical." -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Ângulo de alisamento do enchimento relâmpago" +msgctxt "infill label" +msgid "Infill" +msgstr "Enchimento" -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Ângulo de suporte de enchimento relâmpago" +msgctxt "infill description" +msgid "Infill" +msgstr "Enchimento" -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "Limitar o Alcance dos Ramos" +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Extrusor Enchimento" -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "Limita a distância que cada ramo deve percorrer a partir do ponto que apoia. Isto pode tornar o suporte mais resistente, contudo vai aumentar a quantidade de ramos (e, por conseguinte, também o uso de mais material e tempo de impressão)" +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir o enchimento. Definição usada com múltiplos extrusores." -msgctxt "bv_temp_warn_limit description" -msgid "Limit on Build Volume Temperature warning for detection." -msgstr "" +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Densidade do Enchimento" -msgctxt "bv_temp_anomaly_limit description" -msgid "Limit on Build Volume temperature Anomaly for detection." -msgstr "" +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "Ajusta a densidade do enchimento da impressão." -msgctxt "print_temp_anomaly_limit description" -msgid "Limit on Print Temperature anomaly for detection." -msgstr "" +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Distância Linhas Enchimento" -msgctxt "print_temp_warn_limit description" -msgid "Limit on Print temperature warning for detection." -msgstr "" +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "A distância entre as linhas de enchimento impressas. O valor desta definição é calculada através da densidade de enchimento e do diâmetro da linha de enchimento." -msgctxt "flow_anomaly_limit description" -msgid "Limit on flow anomaly for detection." -msgstr "" +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Padrão de Enchimento" + +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "O padrão do material de enchimento da impressão. A linha e o enchimento em ziguezague mudam de direção em camadas alternativas, o que reduz o custo do material. Os padrões de grelha, triângulo, tri-hexágono, cubo, octeto, quarto cúbico, cruz e concêntrico são totalmente impressos em cada camada. Os enchimentos gyroid, cúbico, quarto cúbico e octeto mudam em cada camada para proporcionar uma distribuição mais uniforme da resistência em cada direção. O enchimento relâmpago tenta minimizar o enchimento, ao suportar apenas a parte superior do objeto." + +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Grelha" + +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" + +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Tri-Hexágono" -msgctxt "flow_warn_limit description" -msgid "Limit on the flow warning for detection." -msgstr "" +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Cúbico" -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "Limita o volume desta malha para o interior de outras malhas. Pode utilizar esta opção para fazer com que determinadas áreas de uma malha sejam impressas com diferentes definições e com um extrusor distinta." +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Subdivisão Cúbica" -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Limitado" +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Octeto" -msgctxt "line_width label" -msgid "Line Width" -msgstr "Diâmetro da Linha" +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Quarto Cúbico" -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Linhas" +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Linhas" +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Linhas" +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Cruz" -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Linhas" +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "Cruz 3D" -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Linhas" +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Linhas" +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Relâmpago" -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Linhas" +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Ligar Linhas Enchimento" -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Linhas" +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "Ligar as extremidades onde o padrão de enchimento entra em contacto com a parede interior utilizando uma linha que acompanha a forma da parede interior. Ativar esta definição pode melhorar a adesão do enchimento às paredes e reduzir os efeitos do enchimento na qualidade das superfícies verticais. Desativar esta definição reduz a quantidade de material utilizado." -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Ligar polígonos de enchimento" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Máquina" +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "Ligar caminhos de enchimento quando as trajetórias são paralelas. Para padrões de enchimento que consistem em vários polígonos fechados, ativar esta definição reduz consideravelmente o tempo de deslocação." -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Profundidade da Máquina" +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Direções Linhas Enchimento" -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Polígono da cabeça e do ventilador da máquina" +msgctxt "infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." +msgstr "Uma lista de ângulos (números inteiros) relativos às direções de linha a utilizar. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito a lista está vazia, o que significa a utilização dos ângulos predefinidos tradicionais (45 e 135 graus para os padrões de Linhas ou Ziguezague e 45 graus para todos os outros padrões)." -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Altura da Máquina" +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "Deslocar Enchimento em X" -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Tipo de Máquina" +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "O padrão geométrico de enchimento é deslocado por esta distância ao longo do eixo X." -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Largura da Máquina" +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Deslocar Enchimento em Y" -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Definições específicas da máquina" +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "O padrão geométrico de enchimento é deslocado por esta distância ao longo do eixo Y." -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Tornar Saliência Imprimível" +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Início aleatório do enchimento" -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "Faz com que as malhas em contacto se sobreponham ligeiramente. Isto melhora a sua ligação." +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "A linha de enchimento que é impressa primeiro é aleatória. Isso impede que um segmento se torne o mais forte, mas exige um movimento adicional." -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "Torna as áreas de suporte mais reduzidas na parte inferior do que na saliência." +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "Multiplicador de linhas de enchimento" -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "Cria suporte em qualquer local abaixo da malha de suporte, para que não existam saliências na malha de suporte." +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "Converter cada linha de enchimento em determinado número de linhas. As linhas adicionais não se cruzam, mas sim evitam-se. Isto torna o enchimento mais duro, mas também aumenta o tempo de impressão e o gasto de material." -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "Definir como absoluta, a posição para a preparação do extrusor, em vez de relativa à última posição conhecida da cabeça." +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Contagem de paredes de enchimento adicionais" -msgctxt "layer_0_z_overlap description" -msgid "" -"Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" -"It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" -msgstr "" +msgctxt "infill_wall_line_count description" +msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "Adicionar paredes adicionais em torno da área de enchimento. Essas paredes podem fazer com que as linhas de revestimento superiores/inferiores desçam menos, o que significa que são necessárias menos camadas de revestimento superior/inferior para a mesma qualidade à custa de algum material adicional." +"Esta funcionalidade pode ser combinada com a opção Ligar polígonos de enchimento para unir todo o enchimento num único caminho de extrusão sem necessidade de deslocações ou retrações, se configurado corretamente." -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Torne os objetos mais adequados para impressão 3D." +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Invólucro Subdivisão Cúbica" -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "Um acréscimo ao raio a partir do centro de cada cubo para encontrar os limites do modelo, de forma a decidir se este cubo deve ser subdividido. Valores mais elevados resultam num invólucro mais espesso com cubos pequenos perto do limite do modelo." -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "Sobreposição Enchimento (%)" -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volumétrico)" +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "A percentagem de sobreposição entre o enchimento e as paredes. Uma ligeira sobreposição permite que as paredes sejam ligadas firmemente ao enchimento." -msgctxt "material description" -msgid "Material" -msgstr "Material" +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Sobreposição Enchimento (mm)" -msgctxt "material label" -msgid "Material" -msgstr "Material" +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "A distância em milímetros da sobreposição entre o enchimento e as paredes. Uma ligeira sobreposição permite que as paredes se unam firmemente ao enchimento." -msgctxt "material_brand label" -msgid "Material Brand" -msgstr "" +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "Distância Limpeza Enchimento" -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "GUID do material" +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "A distância de um movimento de deslocação inserido depois de cada linha de enchimento, para melhorar a união do enchimento às paredes. Esta opção é semelhante à sobreposição de enchimento, mas sem extrusão e apenas numa das extremidades da linha de enchimento." -msgctxt "material_type label" -msgid "Material Type" -msgstr "" +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Espessura Camada Enchimento" -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Volume de material entre limpezas" +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "A espessura por camada de material de enchimento. Este valor deve ser sempre um múltiplo da Espessura das Camadas, ou será arredondado." -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Distância Max. de Combing sem Retração" +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Degraus Enchimento Gradual" -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Aceleração X Máxima" +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "O número de vezes que a densidade de enchimento deve ser reduzida para metade consoante a distância às superfícies superiores. As áreas que se encontram mais próximas das superfícies superiores têm uma maior densidade, até ao definido na Densidade de Enchimento." -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Aceleração Y Máxima" +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Altura Degraus Enchimento Gradual" -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Aceleração Z Máxima" +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "A altura de enchimento de uma determinada densidade antes de mudar para metade da densidade." -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "Ângulo Máximo dos Ramos" +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Enchimento antes das paredes" -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Desvio máximo" +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "Imprime o enchimento antes de imprimir as paredes. Imprimir as paredes em primeiro lugar pode resultar em paredes mais precisas, embora as saliências sejam impressas com menor qualidade. Imprimir o enchimento em primeiro lugar resulta em paredes mais robustas, embora, por vezes, o padrão geométrico de enchimento possa ser visto através da superfície." + +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Área de enchimento mínimo" -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Desvio máximo da área de extrusão" +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "Não criar áreas de enchimento mais pequenas do que este valor (em vez disso, utiliza o revestimento)." -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Velocidade Máxima Ventiladores" +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Enchimento como Suporte" -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Aceleração Máxima do Filamento" +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "Imprimir as estruturas de enchimento só onde os revestimentos superiores necessitam de suporte. Activar esta definição reduz o tempo de impressão e material usado, mas faz com que a peça não tenha uma resistência uniforme." -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Ângulo máximo do modelo" +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Ângulo Saliência Enchimento" -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Área máxima do buraco da saliência" +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "O ângulo mínimo das saliências internas ao qual é adicionado enchimento. Com um valor de 0° os objetos são totalmente preenchidos com enchimento, e com um valor de 90° não é produzido qualquer enchimento." -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Duração máxima do parqueamento" +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Espessura do Suporte da Aresta de Revestimento" -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Resolução Máxima" +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "A espessura do enchimento adicional que suporta as arestas do revestimento." -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Número Máximo Retrações" +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Camadas do Suporte da Aresta de Revestimento" -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Ângulo Revestimento para Expansão" +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "O número de camadas de enchimento que suportam as arestas do revestimento." -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Velocidade Máxima de E" +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Ângulo de suporte de enchimento relâmpago" -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Velocidade X Máxima" +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Determina o momento em que uma camada de enchimento relâmpago tem de suportar algo acima da mesma. Medido como um ângulo conforme a espessura da camada." -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Velocidade Y Máxima" +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Ângulo de saliência do enchimento relâmpago" -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Velocidade Z Máxima" +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Determina o momento em que uma camada de enchimento relâmpago tem de suportar o modelo acima da mesma. Medido como um ângulo conforme a espessura." -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Diâmetro Máximo Suportado pela Torre" +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Ângulo de corte do enchimento relâmpago" -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Resolução Máxima Deslocação" +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "As extremidades das linhas de enchimento são encurtadas para poupar material. Esta definição é o ângulo da saliência das extremidades destas linhas." -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "A aceleração máxima do motor da direção X" +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Ângulo de alisamento do enchimento relâmpago" -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "A aceleração máxima do motor da direção Y." +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "As linhas de enchimento são simplificadas para poupar tempo de impressão. Este é o ângulo máximo permitido de saliência ao longo da linha de enchimento." -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "A aceleração máxima do motor da direção Z." +msgctxt "material label" +msgid "Material" +msgstr "Material" -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "A aceleração máxima do motor do filamento." +msgctxt "material description" +msgid "Material" +msgstr "Material" -msgctxt "bridge_sparse_infill_max_density description" -msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." -msgstr "Densidade máxima do enchimento considerado como disperso. O revestimento sobre o enchimento disperso não é considerado como ter suportes, pelo que pode ser tratado como um revestimento de Bridge." +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Temperatura Impressão Predefinida" -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "O diâmetro máximo nas direções X/Y de uma pequena área que deverá ser suportada por uma torre de suporte especializada." +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "A temperatura predefinida utilizada para a impressão. Esta deve ser a temperatura \"base\" de um material. Todas as outras temperaturas de impressão devem ser baseadas neste valor" -msgctxt "max_extrusion_before_wipe description" -msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." -msgstr "Quantidade máxima de material que pode ser extrudido antes de ser iniciada outra limpeza do nozzle. Se este valor for inferior ao volume do material necessário numa camada, esta definição não tem qualquer influência nessa camada, ou seja, está limitada a uma limpeza por camada." +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Temperatura do volume de construção" -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Sobreposição Malhas Combinadas" +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "A temperatura do ambiente para a impressão. Se este valor for 0, a temperatura do volume de construção não será ajustada." -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Correção de Objectos (Mesh)" +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Temperatura de Impressão" -msgctxt "mesh_position_x label" -msgid "Mesh Position X" -msgstr "Posição X do Objeto" +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "A temperatura utilizada para a impressão." -msgctxt "mesh_position_y label" -msgid "Mesh Position Y" -msgstr "Posição Y do Objeto" +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Temperatura Impressão Camada Inicial" -msgctxt "mesh_position_z label" -msgid "Mesh Position Z" -msgstr "Posição Z do Objeto" +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer." +msgstr "A temperatura usada para imprimir a primeira camada." -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Classificação de processamento de malha" +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Temperatura de impressão inicial" -msgctxt "mesh_rotation_matrix label" -msgid "Mesh Rotation Matrix" -msgstr "Matriz Rotação do Objeto" +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "A temperatura mínima ao aquecer até à Temperatura de impressão à qual a impressão já pode começar." -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Centro" +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Temperatura de impressão final" -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Largura mínima do molde" +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "A temperatura à qual o arrefecimento é iniciado imediatamente antes do final da impressão." -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Tempo Mínimo da Temperatura em Modo de Espera" +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Modificador da velocidade de arrefecimento da extrusão" -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Comprimento mínimo da parede de Bridge" +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "A velocidade adicional a que o nozzle arrefece durante a extrusão. É utilizado o mesmo valor para indicar a velocidade de aquecimento perdida ao aquecer durante a extrusão." -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Diâmetro mínimo de linha da parede Par" +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Temperatura Predefinida Base Construção" -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Intervalo Mínimo Distância Extrusão" +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "A temperatura predefinida utilizada para a base de construção aquecida. Esta deve ser a temperatura \"base\" de uma base de construção. Todas as outras temperaturas de impressão devem ser baseadas neste valor" -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Tamanho mínimo da característica" +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Temperatura Base de Construção" -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Velocidade Mínima de Alimentação" +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "A temperatura utilizada na base de construção aquecida. Se este valor for 0, a temperatura da base de construção não é aquecida." -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "Altura Mínima ao Modelo" +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Temperatura da base de construção da camada inicial" -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Área de enchimento mínimo" +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "A temperatura utilizada para a base de construção aquecida na primeira camada. Se este valor for 0, a temperatura da base de construção não é aquecida durante a primeira camada." -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Tempo mínimo por camada" +msgctxt "material_adhesion_tendency label" +msgid "Adhesion Tendency" +msgstr "Tendência de aderência" -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Diâmetro mínimo de linha da parede Ímpar" +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "A tendência de aderência à superfície." -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Circunferência Mínima do Polígono" +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Energia da superfície" + +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Energia da superfície." -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Largura Mínima Revestimento para Expansão" +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Compensação de redução do fator de escala" -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Velocidade Mínima" +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "Para compensar a redução do material quando arrefece, o modelo vai ser dimensionado com este fator." -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Área de suporte mínimo" +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Compensação de contração do fator de dimensionamento horizontal" -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Área mínima do piso de suporte" +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "Para compensar a contração do material à medida que arrefece, o modelo será dimensionado com este fator na direção X/Y (horizontalmente)." -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Área mínima da interface de suporte" +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Compensação de contração do fator de dimensionamento vertical" -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Área mínima do teto de suporte" +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "Para compensar a contração do material à medida que arrefece, o modelo será dimensionado com este fator na direção Z (verticalmente)." -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Distância X/Y mínima de suporte" +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Material Cristalino" -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Diâmetro mínimo de linha da parede fina" +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "Este tipo de material é daquele que se separa de forma regular quando aquecido (cristalino) ou daquele que cria longas cadeias de polímero entrelaçado (não cristalino)?" -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Volume mínimo antes da desaceleração" +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Posição Retraída Antiescorrimento" -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Diâmetro mínimo de linha da parede" +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "A distância a que o material tem de ser retraído antes de parar o escorrimento." -msgctxt "minimum_interface_area description" -msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Tamanho mínimo da área para polígonos da interface do suporte. Os polígonos com uma área inferior a este valor serão impressos como suporte normal." +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Velocidade de Retração Antiescorrimento" -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "Tamanho mínimo da área para polígonos de suporte. Os polígonos com uma área inferior a este valor não serão gerados." +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "A velocidade a que o material tem de ser retraído durante uma substituição de filamentos para evitar o escorrimento." -msgctxt "minimum_bottom_area description" -msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Tamanho mínimo da área para os pisos do suporte. Os polígonos com uma área inferior a este valor serão impressos como suporte normal." +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Posição Retraída de Preparação da Separação" -msgctxt "minimum_roof_area description" -msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Tamanho mínimo da área para os tetos do suporte. Os polígonos com uma área inferior a este valor serão impressos como suporte normal." +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "A distância a que o filamento pode ser esticado antes de se separar, enquanto é aquecido." -msgctxt "min_feature_size description" -msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." -msgstr "Espessura mínima dos elementos finos. Os elementos do modelo mais finos do que este valor não serão impressos, enquanto que os elementos mais espessos do que o Tamanho mínimo do elemento serão alargados para o Diâmetro mínimo de linha da parede." +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Velocidade de Retração de Preparação da Separação" -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "O diâmetro mínima para a qual a base da área do suporte cónico é reduzida. Larguras reduzidas podem originar estruturas de suporte instáveis." +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "A velocidade a que o filamento tem de ser retraído imediatamente antes de se separar numa retração." -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Molde" +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Temperatura de preparação da separação" -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Ângulo do molde" +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "A temperatura utilizada para purgar o material deve ser aproximadamente igual à temperatura de impressão mais alta possível." -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Altura do tecto do molde" +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Posição Retraída de Separação" -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Ordem de Engomar em \"Monotonic\"" +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "A distância de retração do filamento para separá-lo de forma regular." -msgctxt "raft_surface_monotonic label" -msgid "Monotonic Raft Top Surface Order" -msgstr "" +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Velocidade de Retração de Separação" -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Ordem da superfície superior em \"Monotonic\"" +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "A velocidade de retração do filamento para separá-lo de forma regular." -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Ordem Superior/Inferior em \"Monotonic\"" +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Temperatura de Separação" -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "Varias linhas de contorno ajudam a preparar melhor a extrusão para modelos pequenos. Definir este valor como 0 desactiva o contorno." +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "A temperatura a que o filamento se quebra para uma separação regular." -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "Multiplicador do diâmetro da linha da camada inicial. Aumentar o diâmetro poderá melhorar a aderência à base de construção." +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Velocidade da purga da descarga" -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Fator do movimento sem carregamento" +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "A velocidade com que deve preparar o material após mudar para um material diferente." -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Sem Revestimento nos Espaços Z" +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Comprimento da purga da descarga" -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Formas não tradicionais de imprimir os seus modelos." +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "A quantidade de material que deve usar para purgar o material anterior para fora do bocal (em comprimento de filamento) ao mudar para um material diferente." -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Nenhum" +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Velocidade da purga do fim do filamento" -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Nenhum" +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "A velocidade com que deve preparar o material após substituir uma bobina vazia por uma bobina nova do mesmo material." -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normal" +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Comprimento da purga do fim do filamento" -msgctxt "prime_tower_mode option normal" -msgid "Normal" -msgstr "" +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "A quantidade de material que deve usar para purgar o material anterior para fora do bocal (em comprimento de filamento) ao substituir uma bobina vazia por uma bobina nova do mesmo material." -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Normal" +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Duração máxima do parqueamento" -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "Geralmente, o Cura tenta remendar pequenos buracos na malha e remover partes de uma camada com buracos grandes. Ativar esta opção conserva as peças que não podem ser remendadas. Esta opção deve ser utilizada como último recurso quando tudo o resto não produz um G-code adequado." +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "O tempo que o material pode ficar fora do armazenamento seco em segurança." -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Não no Revestimento" +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Fator do movimento sem carregamento" -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "Não na Superfície Exterior" +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "Um factor que indica a dimensão da compressão dos filamentos entre o alimentador e a câmara do bocal, utilizado para determinar a distância a que se deve mover o material para efetuar uma substituição de filamentos." -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Ângulo do nozzle" +msgctxt "material_flow label" +msgid "Flow" +msgstr "Fluxo" -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diâmetro do Nozzle" +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "Compensação de fluxo: a quantidade de material extrudido é multiplicada por este valor." -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Áreas não permitidas ao nozzle" +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Fluxo da Parede" -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ID do Nozzle" +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Compensação de fluxo nas linhas de parede." -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Comprimento do nozzle" +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Fluxo de Parede Exterior" -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Quantidade de Preparação Extra de Substituição do Nozzle" +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "Compensação de fluxo na linha de parede exterior." + +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Parede de Parede(s) Interior(es)" -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Velocidade de preparação de substituição do nozzle" +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "A compensação de fluxo nas linhas de parede para todas as linhas de parede exceto a mais exterior." -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Velocidade de recolha de substituição do nozzle" +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Fluxo da parede mais externa da superfície superior" -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Distância de retração de substituição do nozzle" +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Compensação de fluxo na linha da parede mais externa da superfície superior." -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Velocidade de retração de substituição do nozzle" +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Fluxo da parede interna da superfície superior" -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Número de Extrusores" +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Compensação de fluxo nas linhas de parede da superfície superior para todas as linhas de parede, exceto a mais externa." -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Número de extrusores ativos" +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Fluxo Superior/Inferior" -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Número de camadas mais lentas" +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Compensação de fluxo nas linhas superiores/inferiores." -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "Número de núcleos de extrusão que estão activos; definido automaticamente em software" +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Fluxo de Revestimento da Superfície Superior" -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "Número de núcleos de extrusão. Um núcleo de extrusão é o conjunto de um alimentador (feeder), tubo bowden e nozzle." +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "Compensação de fluxo nas linhas das áreas na parte superior da impressora." -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "Número de vezes que o nozzle deve ser passado pela escova." +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Fluxo de Enchimento" -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "O número de vezes que a densidade de enchimento deve ser reduzida para metade consoante a distância às superfícies superiores. As áreas que se encontram mais próximas das superfícies superiores têm uma maior densidade, até ao definido na Densidade de Enchimento." +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Compensação de fluxo nas linhas de enchimento." -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "O número de vezes que a densidade de enchimento do suporte deve ser reduzida para metade, quanto maior for o afastamento das superfícies superiores. As áreas que se encontram mais próximas das superfícies superiores obtêm uma maior densidade, até ao limite do valor da Densidade do Suporte." +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Fluxo de Contorno/Aba" -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Octeto" +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Compensação de fluxo nas linhas de contorno ou abas." -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Desligado" +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Fluxo de Suporte" -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "Desvio aplicado ao objeto na direção X." +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Compensação de fluxo nas linhas das estruturas de suporte." -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "Desvio aplicado ao objeto na direção Y." +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Fluxo da Interface do Suporte" -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "Desvio aplicado ao objeto na direção Z. Com esta opção, é possível realizar o que se costumava designar como \"Afundamento de objetos\"." +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "Compensação de fluxo nas linhas de suporte do teto ou do chão." -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Desviar com extrusor" +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Fluxo do Teto do Suporte" -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "Na placa de construção quando possível" +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Compensação de fluxo nas linhas do teto do suporte." -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "No modelo, se necessário" +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Fluxo do Chão do Suporte" -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "Individualmente" +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Compensação de fluxo nas linhas do chão do suporte." -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "Efetua um salto Z apenas ao deslocar-se sobre as peças impressas que não podem ser evitadas pelo movimento horizontal através da opção Evitar Peças impressas durante a deslocação." +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Fluxo da torre de preparação" -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "Engomar apenas a última camada do modelo. Isto permite poupar tempo se as camadas inferiores não precisarem de ter um acabamento mais suave." +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Compensação de fluxo nas linhas da torre de preparação." -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Ângulo da proteção contra escorrimentos" +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Fluxo Camada Inicial" -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Distância da proteção contra escorrimentos" +msgctxt "material_flow_layer_0 description" +msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." +msgstr "Compensação de fluxo para a camada inicial: a quantidade de material extrudido na camada inicial é multiplicada por este valor." -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "Alcance dos Ramos Ideal" +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "Fluxo da parede interna da camada inicial" -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Otimizar Ordem Paredes" +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "Compensação de fluxo em linhas de parede para todas as linhas de parede, exceto a mais externa, mas somente para a primeira camada" -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "Otimizar a ordem pela qual as paredes são impressas de forma a reduzir o número de retrações e a distância percorrida. A maioria das peças irá beneficiar com a ativação desta opção, mas algumas podem na realidade demorar mais tempo, portanto, por favor compare as estimativas do tempo de impressão com e sem a otimização." +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "Fluxo da parede externa da camada inicial" -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Diâmetro externo do nozzle" +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "Compensação de fluxo na linha de parede mais externa da primeira camada." -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Aceleração da parede exterior" +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "Fluxo inferior da camada inicial" -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Extrusor Parede Exterior" +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "Compensação de fluxo nos resultados da primeira camada" -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Fluxo de Parede Exterior" +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Temperatura em Espera" -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Desvio Parede Exterior" +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "A temperatura do nozzle quando outro nozzle está a ser utilizado para a impressão." -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "Jerk da Parede Exterior" +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "É um material de suporte" -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Diâmetro Linha Parede Exterior" +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "Este material é utilizado como material de suporte durante a impressão." -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Velocidade Parede Exterior" +msgctxt "speed label" +msgid "Speed" +msgstr "Velocidade" -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Distância Limpeza Parede Exterior" +msgctxt "speed description" +msgid "Speed" +msgstr "Velocidade" -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "As paredes externas de diferentes ilhas na mesma camada são impressas em sequência. Quando habilitado, a quantidade de mudanças no fluxo é limitada porque as paredes são impressas um tipo de cada vez; quando desabilitado, o número de deslocamentos entre ilhas é reduzido porque as paredes nas mesmas ilhas são agrupadas." +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Velocidade de Impressão" -msgctxt "brim_location option outside" -msgid "Outside Only" -msgstr "" +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "A velocidade a que é efetuada a impressão." -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "De fora para dentro" +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Velocidade Enchimento" -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Ângulo da parede de saliências" +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "A velocidade a que o enchimento é impresso." -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Velocidade da parede de saliências" +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Velocidade Paredes" + +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "A velocidade a que as paredes são impressas." -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "As paredes de saliências serão impressas a esta percentagem da sua velocidade de impressão normal." +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Velocidade Parede Exterior" -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Coloca a limpeza em pausa após anular a retração." +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "A velocidade a que as paredes exteriores são impressas. Imprimir a parede exterior a uma velocidade mais reduzida melhora a qualidade final do revestimento. No entanto, a existência de uma grande diferença entre a velocidade da parede interior e a velocidade de parede exterior afetará a qualidade de uma forma negativa." -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "Percentagem da velocidade da ventoinha a utilizar ao imprimir o revestimento e as paredes de Bridge." +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Velocidade Parede Interior" -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "Percentagem da velocidade da ventoinha a ser utilizada ao imprimir a segunda camada do revestimento de Bridge." +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "A velocidade a que todas as paredes interiores são impressas. Imprimir a parede interior mais rapidamente do que a parede exterior irá reduzir o tempo de impressão. O resultado é melhor quando este valor é entre a velocidade de parede exterior e a velocidade de enchimento." -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "Velocidade percentual da ventoinha a utilizar ao imprimir as regiões de revestimento imediatamente acima do suporte. A utilização de uma velocidade de ventoinha elevada facilita a remoção do suporte." +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Velocidade da parede mais externa da superfície superior" -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "Percentagem da velocidade da ventoinha a ser utilizada ao imprimir a terceira camada do revestimento de Bridge." +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "A velocidade com que as paredes mais externas da superfície superior são impressas." -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "Os polígonos em camadas seccionadas que apresentem uma circunferência mais pequena do que este valor serão filtrados. Valores mais reduzidos originam malhas de resolução superior à custa do tempo de seccionamento. Destina-se principalmente a impressoras SLA de alta resolução e a modelos 3D muito pequenos com muitos detalhes." +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Velocidade da parede interna da superfície superior" -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "Ângulo dos Ramos preferido" +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "A velocidade com que as paredes internas da superfície superior são impressas." -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "Evite a transição para trás e para a frente entre uma parede extra e uma a menos. Esta margem alarga o alcance dos diâmetros de linha que seguem [Diâmetro mínimo da linha da parede - Margem, 2 * Diâmetro mínimo de linha da parede + Margem]. O aumento desta margem reduz o número de transições, o que reduz o número de inícios/paragens de extrusão e o tempo de viagem. No entanto, a variação do diâmetro de linha grande pode levar a problemas de excesso ou defeito de extrusão." +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Velocidade Revestimento Superior" -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Aceleração da torre de preparação" +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "A velocidade a que as camadas de revestimento da superfície superior são impressas." -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Base" -msgstr "Base da Torre de Primagem" +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Velocidade Superior/Inferior" -msgctxt "prime_tower_base_height label" -msgid "Prime Tower Base Height" -msgstr "Altura da Base da Torre de Primagem" +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "A velocidade a que as camadas superiores/inferiores são impressas." -msgctxt "prime_tower_base_size label" -msgid "Prime Tower Base Size" -msgstr "Tamanho da Base da Torre de Primagem" +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Velocidade Suporte" -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Slope" -msgstr "Inclinação da Base da Torre de Primagem" +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "A velocidade a que a estrutura de suporte é impressa. Imprimir o suporte a velocidades elevadas pode reduzir consideravelmente o tempo de impressão. A qualidade da superfície da estrutura de suporte não é importante, uma vez que esta é removida após a impressão." -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Fluxo da torre de preparação" +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Velocidade de enchimento do suporte" -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "Jerk da Torre de Preparação" +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "A velocidade a que o enchimento do suporte é impresso. Imprimir o enchimento a velocidades baixas melhora a estabilidade." -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Diâmetro Linha Torre Preparação" +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Velocidade da interface de suporte" -msgctxt "prime_tower_max_bridging_distance label" -msgid "Prime Tower Maximum Bridging Distance" -msgstr "" +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "A velocidade a que os tectos e os pisos de suporte são impressos. Imprimi-los a velocidades baixas pode melhorar a qualidade das saliências." -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Volume mínimo da torre de preparação" +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Velocidade do tecto de suporte" -msgctxt "prime_tower_raft_base_line_spacing label" -msgid "Prime Tower Raft Line Spacing" -msgstr "Espaçamento das Linhas da Jangada da Torre de Primagem" +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "A velocidade a que os tectos de suporte são impressos. Imprimi-los a velocidades baixas pode melhorar a qualidade das saliências." -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Tamanho Torre de Preparação" +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Velocidade do piso de suporte" + +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "A velocidade a que o piso de suporte é impresso. Imprimi-lo a uma velocidade baixa pode melhorar a aderência do suporte na parte superior do modelo." msgctxt "speed_prime_tower label" msgid "Prime Tower Speed" msgstr "Velocidade da torre de preparação" -msgctxt "prime_tower_mode label" -msgid "Prime Tower Type" -msgstr "" +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "A velocidade à qual a torre de preparação é impressa. Imprimir a torre de preparação mais lentamente pode torná-la mais estável quando a aderência entre os diferentes filamentos é insuficiente." -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "Posição X da torre de preparação" +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Velocidade de deslocação" -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Posição Y da torre de preparação" +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "A velocidade a que os movimentos de deslocação são efetuados." -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Aceleração de impressão" +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Velocidade Camada Inicial" -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Jerk da Impressão" +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "A velocidade da camada inicial. Recomenda-se um valor baixo para melhorar a aderência à base de construção. Não afeta as estruturas de aderência da base de construção propriamente ditas, como aba e raft." -msgctxt "ppr label" -msgid "Print Process Reporting" -msgstr "" +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Velocidade de impressão da camada inicial" -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Sequência de impressão" +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "A velocidade de impressão da camada inicial. É recomendado um valor inferior para melhorar a aderência à base de construção." -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Velocidade de Impressão" +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Velocidade de deslocação da camada inicial" -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Imprimir Paredes Finas" +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "A velocidade dos movimentos de deslocação na camada inicial. É recomendado um valor inferior para evitar que as peças anteriormente impressas sejam separadas da base de construção. O valor desta definição pode ser automaticamente calculado a partir da proporção entre a Velocidade de deslocação e a Velocidade de impressão." -msgctxt "brim_location description" -msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." -msgstr "" +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Velocidade Contorno/Aba" -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "Imprime uma torre próxima da impressão que prepara o material depois de cada substituição do nozzle." +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "A velocidade a que o contorno e a aba são impressos. Geralmente, isto é efetuado à velocidade de camada inicial, mas, por vezes, pode preferir imprimir o contorno ou a aba a uma velocidade diferente." -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "Imprimir as estruturas de enchimento só onde os revestimentos superiores necessitam de suporte. Activar esta definição reduz o tempo de impressão e material usado, mas faz com que a peça não tenha uma resistência uniforme." +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Velocidade do Salto Z" -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprimir as linhas de engomar numa ordem que faz com que ocorra sempre uma sobreposição com as linhas adjacentes numa única direção. Este processo demora ligeiramente mais tempo a imprimir, mas torna o aspeto das superfícies planas mais consistente." +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "A velocidade a que o movimento Z vertical é efetuado para Saltos Z. Este valor é geralmente inferior à velocidade de impressão, uma vez que é mais difícil mover a base de construção ou o pórtico da máquina." -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "Imprime modelos como moldes, os quais podem ser fundidos de forma a obter um modelo que se assemelhe aos modelos da base de construção." +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Número de camadas mais lentas" -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "Imprimir paredes do modelo que são mais finas horizontalmente do que o tamanho do nozzle." +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "As primeiras camadas são impressas mais lentamente do que o resto do modelo para obter uma melhor aderência à base de construção e melhorar a taxa de sucesso geral das impressões. A velocidade é aumentada gradualmente nessas camadas." -msgctxt "raft_surface_monotonic description" -msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." -msgstr "" +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Proporção de equalização do fluxo" -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "Velocidade de impressão a ser utilizada ao imprimir a segunda camada do revestimento de Bridge." +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "Fator de correção baseado no diâmetro de extrusão sobre a velocidade. A 0% a velocidade de movimento mantém-se constante à Velocidade de impressão. A 100% a velocidade de movimento é ajustada de modo a que o fluxo (em mm³/s) seja mantido constante, ou seja, linhas metade do Diâmetro da linha normal são impressas duas vezes mais depressa e as linhas duas vezes mais largas são impressas a metade da rapidez. Um valor superior a 100% pode ajudar a compensar a pressão mais elevada necessária para efetuar a extrusão de linhas largas." -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "Velocidade de impressão a ser utilizada ao imprimir a terceira camada do revestimento de Bridge." +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Ativar controlo da aceleração" -msgctxt "print_temp_anomaly_limit label" -msgid "Print temperature Limit" -msgstr "" +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "Permite o ajuste da aceleração da cabeça de impressão. Aumentar as acelerações pode reduzir o tempo de impressão em detrimento da qualidade de impressão." + +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Ativar a aceleração da viagem" + +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "Utilizar uma taxa de aceleração separada para movimentos de viagem. Se desativados, os movimentos de viagem utilizarão o valor da aceleração da linha impressa no seu destino." + +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Aceleração de impressão" -msgctxt "print_temp_warn_limit label" -msgid "Print temperature Warning" -msgstr "" +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "A aceleração com que é efetuada a impressão." -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "Imprime o enchimento antes de imprimir as paredes. Imprimir as paredes em primeiro lugar pode resultar em paredes mais precisas, embora as saliências sejam impressas com menor qualidade. Imprimir o enchimento em primeiro lugar resulta em paredes mais robustas, embora, por vezes, o padrão geométrico de enchimento possa ser visto através da superfície." +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Aceleração de enchimento" -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprimir as linhas da superfície superior numa ordem que faz com que ocorra sempre uma sobreposição com linhas adjacentes numa única direção. Este processo demora ligeiramente mais tempo a imprimir, mas torna o aspeto das superfícies planas mais consistente." +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "A aceleração com que o enchimento é impresso." -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprimir as linhas superiores/inferiores numa ordem que faz com que ocorra sempre uma sobreposição com as linhas adjacentes numa única direção. Este processo demora ligeiramente mais tempo a imprimir, mas torna o aspeto das superfícies planas mais consistente." +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Aceleração de parede" -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Temperatura de Impressão" +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "A aceleração com que as paredes são impressas." -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Temperatura Impressão Camada Inicial" +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Aceleração da parede exterior" -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "Imprimir a linha do contorno mais interior com múltiplas camadas facilita a remoção do contorno." +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "A aceleração com que as paredes exteriores são impressas." -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "Imprimir uma parede adicional em camadas alternadas. Deste modo, o enchimento é \"capturado\" entre estas paredes adicionais, resultando em impressões mais robustas." +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Aceleração da parede interior" -msgctxt "resolution label" -msgid "Quality" -msgstr "Qualidade" +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "A aceleração com que todas as paredes interiores são impressas." -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Quarto Cúbico" +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Aceleração da parede externa da superfície superior" -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Raft" +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "A aceleração com a qual as paredes mais externas da superfície superior são impressas." -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Caixa de Ar do Raft" +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Aceleração da parede interna da superfície superior" -msgctxt "raft_base_margin label" -msgid "Raft Base Extra Margin" -msgstr "" +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "A aceleração com a qual as paredes internas da superfície superior são impressas." -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Extrusor da base do raft" +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Aceleração Revestimento Superior" -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Velocidade do ventilador inferior do raft" +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "A aceleração com que as camadas de revestimento da superfície superior são impressas." -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Espaçamento da Linha Base do Raft" +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Aceleração superior/inferior" -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Diâmetro Linha Base do Raft" +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "A aceleração com que as camadas superiores/inferiores são impressas." -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Aceleração da Base do Raft" +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Aceleração de suporte" -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Jerk de impressão inferior do raft" +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "A aceleração com que a estrutura de suporte é impressa." -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Velocidade da Base do Raft" +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Aceleração de enchimento do suporte" -msgctxt "raft_base_smoothing label" -msgid "Raft Base Smoothing" -msgstr "" +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "A aceleração com que o enchimento do suporte é impresso." -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Espessura da Base do Raft" +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Aceleração da interface de suporte" -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Número de paredes da base do raft" +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "A aceleração com que os tectos e pisos de suporte são impressos. Imprimi-los com uma aceleração inferior pode melhorar a qualidade das saliências." -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Margem Adicional Raft" +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Aceleração do tecto de suporte" -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Velocidade do ventilador do raft" +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "A aceleração com que os tectos de suporte são impressos. Imprimi-los com uma aceleração inferior pode melhorar a qualidade das saliências." -msgctxt "raft_interface_margin label" -msgid "Raft Middle Extra Margin" -msgstr "" +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Aceleração do piso de suporte" -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Extrusor do meio do raft" +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "A aceleração com que os pisos de suporte são impressos. Imprimi-los com uma aceleração inferior pode melhorar a aderência do suporte na parte superior do modelo." -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Velocidade do ventilador do meio do raft" +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Aceleração da torre de preparação" -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Camadas do meio do raft" +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "A aceleração com que a torre de preparação é impressa." -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Diâmetro Linha do Meio do Raft" +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Aceleração de deslocação" -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Aceleração do Meio do Raft" +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "A aceleração com que os movimentos de deslocação são efetuados." -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Jerk de impressão do meio do raft" +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Aceleração da camada inicial" -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Velocidade do Meio do Raft" +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "A aceleração da camada inicial." -msgctxt "raft_interface_smoothing label" -msgid "Raft Middle Smoothing" -msgstr "" +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Aceleração de impressão da camada inicial" -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Espaçamento do Meio do Raft" +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "A aceleração durante a impressão da camada inicial." -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Espessura do Meio do Raft" +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Aceleração de deslocação da camada inicial" -msgctxt "raft_interface_wall_count label" -msgid "Raft Middle Wall Count" -msgstr "" +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "A aceleração dos movimentos de deslocação na camada inicial." -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Aceleração Impressão do Raft" +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Aceleração Contorno/Aba" -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Jerk de impressão do raft" +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "A aceleração com que o contorno e a aba são impressos. Normalmente, isto é efetuado com a aceleração da camada inicial, mas, por vezes, pode preferir imprimir o contorno ou a aba com uma aceleração diferente." -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Velocidade Impressão do Raft" +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Ativar Controlo do Jerk" -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Suavização Raft" +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "Permite ajustar o jerk da cabeça de impressão quando a velocidade nos eixos X ou Y muda. Aumentar o jerk pode reduzir o tempo de impressão em detrimento da qualidade de impressão." -msgctxt "raft_surface_margin label" -msgid "Raft Top Extra Margin" -msgstr "" +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Ativar Jerk de Viagem" + +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "Utilizar uma taxa de jerk separada para movimentos de viagem. Se for desativado, os movimentos de viagem utilizarão o valor do jerk da linha impressa no seu destino." -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Extrusora superior do raft" +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Jerk da Impressão" -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Velocidade do ventilador superior do raft" +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "A velocidade instantânea máxima num movimento brusco da cabeça de impressão." -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Espessura Camada Superior Raft" +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Jerk do Enchimento" -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Camadas Superiores do Raft" +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "A mudança de velocidade instantânea máxima com a qual o enchimento é impresso." -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Diâmetro Linha Superior do Raft" +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Jerk das Paredes" -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Aceleração do Topo do Raft" +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "A mudança de velocidade instantânea máxima com a qual as paredes são impressas." -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Jerk de impressão superior do raft" +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "Jerk da Parede Exterior" -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Velocidade do Topo do Raft" +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "A mudança de velocidade instantânea máxima com a qual as paredes exteriores são impressas." -msgctxt "raft_surface_smoothing label" -msgid "Raft Top Smoothing" -msgstr "" +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Jerk das Paredes Interiores" -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Espaçamento Superior do Raft" +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "A mudança de velocidade instantânea máxima com a qual todas as paredes interiores são impressas." -msgctxt "raft_surface_wall_count label" -msgid "Raft Top Wall Count" -msgstr "" +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Jerk das Paredes Interiores da Superfície Superior" -msgctxt "raft_wall_count label" -msgid "Raft Wall Count" -msgstr "" +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "A mudança máxima de velocidade instantânea com a qual as paredes internas da superfície superior são impressas." -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Aleatório" +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Jerk da Parede Exterior da Superfície Superior" -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "Início aleatório do enchimento" +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "A mudança máxima de velocidade instantânea com a qual as paredes mais externas da superfície superior são impressas." -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "A linha de enchimento que é impressa primeiro é aleatória. Isso impede que um segmento se torne o mais forte, mas exige um movimento adicional." +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Jerk Revestimento Superior" -msgctxt "magic_fuzzy_skin_enabled description" -msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." -msgstr "Vibra aleatoriamente enquanto imprime a parede exterior, para que a superfície apresente um aspeto rugoso e difuso." +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "A mudança de velocidade instantânea máxima com a qual as camadas de revestimento da superfície superior são impressas." -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Retangular" +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Jerk Superior/Inferior" -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "Velocidade Normal Ventiladores" +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "A mudança de velocidade instantânea máxima com a qual as camadas superiores/inferiores são impressas." -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Altura Velocidade Normal Ventilador" +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Jerk do Suporte" -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Camada Velocidade Normal Ventilador" +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "A mudança de velocidade instantânea máxima com a qual a estrutura de suporte é impressa." -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "Limiar Normal / Máximo Velocidade Ventilador" +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Jerk do Enchimento do Suporte" -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Extrusão relativa" +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "A mudança de velocidade instantânea máxima com a qual o enchimento do suporte é impresso." -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Remover Todos Buracos" +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Jerk da Interface do Suporte" -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Remover Camadas Iniciais Vazias" +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "A mudança de velocidade instantânea máxima com a qual os tectos e pisos de suporte são impressos." -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Remover interceção de malhas" +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Jerk do Tecto do Suporte" -msgctxt "raft_base_remove_inside_corners label" -msgid "Remove Raft Base Inside Corners" -msgstr "" +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "A mudança de velocidade instantânea máxima com a qual os tectos de suporte são impressos." -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Remover cantos interiores do raft" +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Jerk do Piso do Suporte" -msgctxt "raft_interface_remove_inside_corners label" -msgid "Remove Raft Middle Inside Corners" -msgstr "" +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "A mudança de velocidade instantânea máxima com a qual os pisos de suporte são impressos." -msgctxt "raft_surface_remove_inside_corners label" -msgid "Remove Raft Top Inside Corners" -msgstr "" +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "Jerk da Torre de Preparação" -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "Remover as áreas onde várias malhas se sobrepõem entre si. Isto pode ser utilizado se houver uma sobreposição dos objetos com diferentes materiais que estejam combinados." +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "A mudança de velocidade instantânea máxima com a qual a torre de preparação é impressa." -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "Remove as camadas vazias por baixo da primeira camada impressa, se existirem. Desativar esta definição pode causar primeiras camadas vazias, se a definição Tolerância de Seccionamento estiver definida como Exclusivo ou Centro." +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Jerk de Deslocação" -msgctxt "raft_base_remove_inside_corners description" -msgid "Remove inside corners from the raft base, causing the raft to become convex." -msgstr "" +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "A mudança de velocidade instantânea máxima com a qual os movimentos de deslocação são impressos." -msgctxt "raft_interface_remove_inside_corners description" -msgid "Remove inside corners from the raft middle part, causing the raft to become convex." -msgstr "" +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Jerk da Camada Inicial" -msgctxt "raft_surface_remove_inside_corners description" -msgid "Remove inside corners from the raft top part, causing the raft to become convex." -msgstr "" +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "A mudança de velocidade instantânea máxima de impressão para a camada inicial." -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Remover os cantos interiores do raft, fazendo com que o raft se torne convexo." +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Jerk Impressão Camada Inicial" -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "Remove os buracos em cada camada e mantém apenas a forma exterior. Isto irá ignorar qualquer geometria interna invisível. No entanto, também ignora buracos de camadas que podem ser vistos por cima ou por baixo." +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "A mudança de velocidade instantânea máxima durante a impressão da camada inicial." -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Jerk Deslocação Camada Inicial" -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "A aceleração dos movimentos de deslocação na camada inicial." -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "Substitui a parte mais exterior do padrão superior/inferior por um número de linhas concêntricas. Usar uma ou duas linhas melhora os tectos que começam no material de enchimento." +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Jerk de Contorno/Aba" -msgctxt "ppr description" -msgid "Reporting events that go out of set thresholds" -msgstr "" +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "A mudança de velocidade instantânea máxima com a qual o contorno e a aba são impressos." -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "Preferência de Apoio" +msgctxt "travel label" +msgid "Travel" +msgstr "Deslocação" -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Retrair Antes Parede Exterior" +msgctxt "travel description" +msgid "travel" +msgstr "deslocação" -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Retrair na Mudança Camada" +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Ativar Retração" msgctxt "retraction_enable description" msgid "Retract the filament when the nozzle is moving over a non-printed area." msgstr "Retrai o filamento quando o nozzle está em movimento numa área sem impressão." -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Retrai o filamento quando o nozzle está em movimento numa área sem impressão." +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Retrair na Mudança Camada" msgctxt "retract_at_layer_change description" msgid "Retract the filament when the nozzle is moving to the next layer." @@ -3094,2690 +2743,2951 @@ msgctxt "retraction_amount label" msgid "Retraction Distance" msgstr "Distância de Retração" +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "O comprimento do material retraído durante um movimento de retração." + +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Velocidade de Retração" + +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "A velocidade a que o filamento é retraído e preparado durante um movimento de retração." + +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Velocidade Retrair na Retração" + +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "A velocidade a que o filamento é retraído durante um movimento de retração." + +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Velocidade de preparação na retração" + +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "A velocidade a que o filamento é preparado durante um movimento de retração." + msgctxt "retraction_extra_prime_amount label" msgid "Retraction Extra Prime Amount" msgstr "Preparação Adicional de Retração" +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "Pode ocorrer escorrimento de material durante um movimento de deslocação, o qual pode ser compensado aqui." + msgctxt "retraction_min_travel label" msgid "Retraction Minimum Travel" msgstr "Deslocação Mínima da Retração" -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Velocidade de preparação na retração" +msgctxt "retraction_min_travel description" +msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." +msgstr "A distância mínima de deslocação necessária para que ocorra uma retração. Isto ajuda a obter menos retrações numa área reduzida." -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Velocidade Retrair na Retração" +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Número Máximo Retrações" -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Velocidade de Retração" +msgctxt "retraction_count_max description" +msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." +msgstr "Esta definição limita o número de retrações que ocorrem no intervalo mínimo de distância de extrusão. As retrações adicionais dentro deste intervalo serão ignoradas. Isto evita a retração repetida no mesmo filamento, uma vez que tal pode achatar o filamento e causar problemas de trituração." -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Direita" +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Intervalo Mínimo Distância Extrusão" -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "Ajustar a velocidade do ventilador entre 0-1" +msgctxt "retraction_extrusion_window description" +msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." +msgstr "O intervalo no qual o número máximo de retrações é aplicado. Este valor deve ser aproximadamente o mesmo que o da Distância de Retração, de forma a limitar, efectivamente, o número de vezes que uma retração acontece na mesma área do filamento." -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "Ajustar a velocidade do ventilador para esta ser definida entre 0 e 1 em vez de entre 0 e 256." +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Modo de Combing" -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Compensação de redução do fator de escala" +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "Combing mantém o nozzle em áreas já impressas durante a deslocação. Isto resulta em movimentos de deslocação ligeiramente mais longos, mas reduz a necessidade de retrações. Se o combing estiver desativado, o material será retraído e o nozzle irá deslocar-se em linha reta para o próximo ponto. Também é possível evitar o combing em áreas de revestimento superiores/inferiores ou apenas efetuar o combing no enchimento." -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "O cenário tem malhas de suporte" +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Desligado" -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Preferência Canto Junta" +msgctxt "retraction_combing option all" +msgid "All" +msgstr "Tudo" -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "Definir sequência de impressão manualmente" +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Não na Superfície Exterior" -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "Define a altura da proteção contra correntes de ar. Opte por imprimir a proteção contra correntes de ar com a altura máxima do modelo ou com uma altura limitada." +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Não no Revestimento" -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Definições utilizadas para imprimir com vários extrusores." +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "No Enchimento" -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "Definições que só são utilizadas se o CuraEngine não for ativado a partir do front-end do Cura." +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Distância Max. de Combing sem Retração" -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Retração inicial do bocal partilhado" +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "Os movimentos de deslocação de Combing com uma distância maior que este valor, quando este é superior a zero, utilizam retrações. Se o valor for definido como zero, não existirá qualquer valor máximo e os movimentos Combing não utilizarão retrações." -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Canto mais Acentuado" +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Retrair Antes Parede Exterior" -msgctxt "shell description" -msgid "Shell" -msgstr "Invólucro" +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "Retrair sempre quando se vai começar uma parede exterior." -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Mais curto" +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Evitar Áreas Impressas Durante Movimento" -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Mostrar Variantes da Máquina" +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "O nozzle evita as áreas já impressas durante a deslocação. Esta opção só está disponível quando o combing está ativado." -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Camadas do Suporte da Aresta de Revestimento" +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Evitar Suportes na Deslocação" -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Espessura do Suporte da Aresta de Revestimento" +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "O nozzle evita os suportes já impressos durante a deslocação. Esta opção só está disponível quando o Combing está ativado." -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Distância Expansão Revestimento" +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Distância para evitar peças durante a deslocação" -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Sobreposição Revestimento (mm)" +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "A distância entre o nozzle e as peças já impressas ao evitá-las durante os movimentos de deslocação." -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Sobreposição Revestimento (%)" +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "X Início Camada" -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Largura Remoção Revestimento" +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "A coordenada X da posição próxima do local onde se situa a peça pela qual iniciar a impressão de cada camada." -msgctxt "min_skin_width_for_expansion description" -msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." -msgstr "As áreas de revestimento mais pequenas do que este valor não são expandidas. Isto evita a expansão das pequenas áreas de revestimento que são criadas quando a superfície do modelo apresenta uma inclinação quase vertical." +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Y Início Camada" + +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "A coordenada Y da posição do local onde se situa a peça pela qual iniciar a impressão de cada camada." + +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Salto Z ao retrair" + +msgctxt "retraction_hop_enabled description" +msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "Sempre que for efetuada uma retração, a base de construção é rebaixada para criar uma folga entre o nozzle e a impressão. Desta forma, evita-se que o nozzle atinja a impressão durante os movimentos de deslocação, reduzindo a probabilidade de derrubar a impressão da base de construção." + +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Salto Z apenas sobre as peças impressas" + +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "Efetua um salto Z apenas ao deslocar-se sobre as peças impressas que não podem ser evitadas pelo movimento horizontal através da opção Evitar Peças impressas durante a deslocação." + +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Altura do salto Z" + +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "A diferença de altura ao efetuar um salto Z." + +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Salto Z após mudança extrusor" + +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "Após a máquina mudar de um extrusor para outro, a base de construção é rebaixada para criar uma folga entre o nozzle e a impressão. Desta forma, evita-se que o nozzle deixe, na parte exterior de uma impressão, algum material que possa escorrer quando acaba de imprimir." + +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Altura do salto Z após mudança do extrusor" + +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "A diferença de altura ao efetuar um salto Z após uma mudança do extrusor." + +msgctxt "cooling label" +msgid "Cooling" +msgstr "Arrefecimento" + +msgctxt "cooling description" +msgid "Cooling" +msgstr "Arrefecimento" + +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Ativar Arrefecimento Impressão" + +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "Ativa os ventiladores de arrefecimento durante a impressão. Os ventiladores melhoram a qualidade de impressão, nas camadas que têm uma curta duração de impressão e / ou nas partes do modelo que contêm vãos / saliências." + +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Velocidade Ventiladores" + +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "A velocidade de rotação dos ventiladores de arrefecimento da impressão." -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "Ignorar uma em cada \"x\" linhas de ligação para facilitar a separação da estrutura de suporte." +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "Velocidade Normal Ventiladores" -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "Ignorar algumas ligações das linhas de suporte para facilitar a separação da estrutura de suporte. Esta definição é aplicável ao padrão em Ziguezague do enchimento de suporte." +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "A velocidade a que os ventiladores giram antes de atingir o limiar. Quando uma camada é impressa mais rapidamente do que o limiar, a velocidade do ventilador tende gradualmente a aproximar-se da velocidade máxima." -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Contorno" +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Velocidade Máxima Ventiladores" -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Distância Contorno" +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "A velocidade a que os ventiladores giram no tempo mínimo de camada. A velocidade do ventilador aumenta gradualmente entre a velocidade normal do ventilador e a velocidade máxima do ventilador quando o limiar é alcançado." -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "Altura do contorno" +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "Limiar Normal / Máximo Velocidade Ventilador" -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Número Linhas Contorno" +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "O tempo de camada que define o limiar entre a velocidade normal e a velocidade máxima do ventilador. As camadas que são impressas mais lentamente utilizam a velocidade normal do ventilador. Para camadas mais rápidas, a velocidade do ventilador aumenta gradualmente até à velocidade máxima." -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Aceleração Contorno/Aba" +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Velocidade Inicial do ventilador" -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Extrusor do contorno/aba" +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "A velocidade a que os ventiladores giram ao iniciar a impressão. Nas camadas subsequentes, a velocidade do ventilador aumenta gradualmente até à camada correspondente à Velocidade normal do ventilador em altura." -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Fluxo de Contorno/Aba" +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Altura Velocidade Normal Ventilador" -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Jerk de Contorno/Aba" +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "A altura em que os ventiladores giram à velocidade normal. Nas camadas anteriores, a velocidade do ventilador aumenta gradualmente da Velocidade Inicial até à Velocidade Normal do ventilador." -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Diâmetro Linha Contorno/Aba" +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Camada Velocidade Normal Ventilador" -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Comprimento Mínimo Contorno/Aba" +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "A camada na qual os ventiladores giram à velocidade normal do ventilador. Se a Altura para Velocidade Normal do ventilador estiver definida , este valor é calculado e arredondado para um número inteiro." -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Velocidade Contorno/Aba" +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Tempo mínimo por camada" -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Tolerância do Seccionamento" +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "O tempo mínimo gasto numa camada. Isto força a impressora a abrandar para que, no mínimo, o tempo aqui definido seja gasto numa camada. Isto permite que o material impresso arrefeça devidamente antes de imprimir a camada seguinte. Ainda assim, as camadas podem demorar menos do que o tempo mínimo por camada se a opção Elevar Cabeça estiver desativada e se a Velocidade Mínima for desrespeitada." -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Velocidade da camada inicial de partes pequenas" +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Velocidade Mínima" -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Comprimento máximo do elemento pequeno" +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "A velocidade mínima de impressão, apesar do abrandamento devido ao tempo mínimo por camada. Se a impressora abrandar demasiado, a pressão no nozzle será demasiado baixa, o que resultará numa má qualidade de impressão." -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Velocidade de elemento pequeno" +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Elevar Cabeça" -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Tamanho máximo do buraco pequeno" +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "Quando a velocidade mínima for alcançada devido ao tempo mínimo por camada, elevar e afastar a cabeça da impressão e aguardar o tempo adicional até atingir o tempo mínimo por camada." msgctxt "cool_min_temperature label" msgid "Small Layer Printing Temperature" msgstr "Temperatura de impressão de camada pequena" -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "Superfície superior/inferior pequena" +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "Reduz gradualmente para esta temperatura ao imprimir a velocidades reduzidas devido ao tempo mínimo da camada." -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "Largura Mínima Superior/Inferior" +msgctxt "support label" +msgid "Support" +msgstr "Suportes" -msgctxt "small_feature_speed_factor_0 description" -msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "Os elementos pequenos na primeira camada serão impressos a esta percentagem da respetiva velocidade de impressão normal. Uma impressão mais lenta pode ajudar em termos de aderência e precisão." +msgctxt "support description" +msgid "Support" +msgstr "Suportes" -msgctxt "small_feature_speed_factor description" -msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "Os elementos pequenos serão impressos a esta percentagem da respetiva velocidade de impressão normal. Uma impressão mais lenta pode ajudar em termos de aderência e precisão." +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Criar Suportes" -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "As regiões superiores/inferiores pequenas são preenchidas com paredes em vez do padrão superior/inferior padrão. Isto ajuda a evitar movimentos bruscos. Desativado para as camadas mais superiores (expostas ao ar) por predefinição (consulte \"Superfície superior/inferior pequena\")." +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "Criar estruturas para suportar partes do modelo, suspensas ou com saliências. Sem estas estruturas, essas partes do modelo podem desmoronar durante a impressão." -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "Aba Inteligente" +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Extrusor dos Suportes" -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Ocultação Inteligente" +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir os suportes. Definição usada com múltiplos extrusores." -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "\"Spiralize\" Suavizar Contornos" +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Extrusor de enchimento do suporte" -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "Suaviza os contornos, criados pelo \"Spiralize\", para reduzir a visibilidade da junta Z (a junta Z deve ser praticamente impercetível na impressão, mas continuará a ser visível na visualização por camadas). Tenha em conta que a suavização tenderá a reduzir/desfocar pequenos detalhes da superfície." +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir o enchimento dos suportes. Definição usada com múltiplos extrusores." -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "Pode ocorrer escorrimento de material durante um movimento de deslocação, o qual pode ser compensado aqui." +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Extrusor de suporte da primeira camada" -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "Pode ocorrer escorrimento de material durante um movimento de deslocação de limpeza, o qual pode ser compensado aqui." +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir a primeira camada de enchimento dos suportes. Definição usada com múltiplos extrusores." -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Modos Especiais" +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Extrusor de interface de suporte" -msgctxt "speed description" -msgid "Speed" -msgstr "Velocidade" +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir os tectos e pisos do suporte. Definição usada com múltiplos extrusores." -msgctxt "speed label" -msgid "Speed" -msgstr "Velocidade" +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Extrusor de tecto de suporte" -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "Velocidade para mover o eixo Z durante o salto." +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir os tectos do suporte. Definição usada com múltiplos extrusores." -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "\"Spiralize\" Contorno Exterior" +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Extrusor de piso de suporte" -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "\"Spiralize\" é uma opção que uniformiza o movimento em Z do contorno exterior. Isto irá criar uma elevação em Z, constante, em toda a peça. Esta funcionalidade transforma um modelo sólido numa impressão com uma única parede e com uma base sólida. Esta funcionalidade só deve ser ativada quando cada camada contiver apenas uma única peça." +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir os pisos do suporte. Definição usada com múltiplos extrusores." -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Temperatura em Espera" +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Estrutura de suporte" -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "G-code Inicial" +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "Escolhe entre as técnicas disponíveis para gerar suporte. O suporte \"Normal\" cria uma estrutura de suporte diretamente por baixo das saliências e leva estas áreas para baixo. O suporte \"Árvore\" cria ramos nas áreas salientes que suportam o modelo nas pontas destes ramos e permite que os ramos rastejem à volta do modelo de modo a suportá-lo o máximo possível a partir da base de construção." -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "Ponto inicial de cada trajetória de uma camada. Quando as trajetórias em camadas consecutivas começam no mesmo ponto, pode aparecer uma junta vertical na impressão. Ao alinhar o inicio das trajectórias próximo a uma posição definida pelo utilizador, é mais fácil remover a linha de junta. Quando dispostas aleatoriamente, as imprecisões no início das trajetórias serão menos perceptíveis. Ao adoptar a trajetória mais curta, a impressão será mais rápida." +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Normal" -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Passos por Milímetro (E)" +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Árvore" + +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "Ângulo Máximo dos Ramos" + +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "O ângulo máximo dos ramos enquanto estes crescem ao redor do modelo. Utilize um ângulo menor para os tornar mais verticais e mais estáveis. Use um ângulo maior para poderem ter um maior alcance." + +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "Diâmetro do Ramo" + +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "O diâmetro dos ramos mais finos dos suportes tipo árvore. Ramos mais grossos são mais robustos. Os ramos serão progressivamente mais grossos do que este diâmetro quanto mais perto estiverem da base." + +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "Diâmetro do Tronco" -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Passos por Milímetro (X)" +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "O diâmetro dos ramos mais amplos do suporte de árvores. Um ramo mais grosso é mais resistente; um ramo mais fino ocupa menos espaço na base de construção." -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Passos por Milímetro (Y)" +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "Ângulo dos Ramos" -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Passos por Milímetro (Z)" +msgctxt "support_tree_branch_diameter_angle description" +msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." +msgstr "O ângulo do diâmetro dos ramos conforme estes ficam progressivamente mais grossos quanto mais perto estiverem da base. Um ângulo de 0º faz com que os ramos tenham um espessura constante em todo o seu comprimento. Um pequeno ângulo pode aumentar a estabilidade dos suporte tipo árvore." -msgctxt "support description" -msgid "Support" -msgstr "Suportes" +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Colocação do suporte" -msgctxt "support label" -msgid "Support" -msgstr "Suportes" +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "A Tocar na base de construção" -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Aceleração de suporte" +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "Em todo o lado" -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Distância inferior do suporte" +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "Ângulo dos Ramos preferido" -msgctxt "support_bottom_wall_count label" -msgid "Support Bottom Wall Line Count" -msgstr "Contagem das linhas da parede inferior de suporte" +msgctxt "support_tree_angle_slow description" +msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." +msgstr "O ângulo preferido dos ramos, quando estes não têm de evitar o modelo. Utilize um ângulo menor para os tornar mais verticais e mais estáveis. Utilize um ângulo maior para que os ramos se unam mais rapidamente." -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Contagem de linhas da aba do suporte" +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "Aumento do Diâmetro Apoio no Modelo" -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Largura da aba do suporte" +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "O diâmetro máximo que um ramo, que tem de se apoiar no modelo, pode ter ao unir-se com os ramos que podem alcançar a placa de construção. Aumentar este valor reduz o tempo de impressão, mas aumenta a área de suporte que assenta no modelo" -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Número de linhas do bloco de suporte" +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "Altura Mínima ao Modelo" -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Tamanho do bloco de suporte" +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "A altura mínima que um ramo deve ter quando apoiado no modelo. Evita pequenas bolhas de suporte. Esta definição é ignorada quando um ramo está a suportar um teto do suporte." -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "Densidade do Suporte" +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "Diâmetro da Camada Inicial" -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Prioridade da distância de suporte" +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "Diâmetro que cada ramo tenta atingir quando chega à placa de construção. Melhora a adesão à base." -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Extrusor dos Suportes" +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "Densidade dos Ramos" -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Aceleração do piso de suporte" +msgctxt "support_tree_top_rate description" +msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "Ajusta a densidade da estrutura de suporte usada para gerar as pontas dos ramos. Um valor mais alto resulta em melhor saliências, mas os suportes são mais difíceis de remover. Use um Teto de Suporte se os valores forem muito altos ou certificar-se de que a densidade dos suportes é igualmente elevada no topo." -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Densidade do piso de suporte" +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "Diâmetro da Ponta do Ramo" -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Extrusor de piso de suporte" +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "O diâmetro do topo da ponta dos ramos do suporte de árvore." -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Fluxo do Chão do Suporte" +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "Limitar o Alcance dos Ramos" -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Expansão horizontal do piso de suporte" +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "Limita a distância que cada ramo deve percorrer a partir do ponto que apoia. Isto pode tornar o suporte mais resistente, contudo vai aumentar a quantidade de ramos (e, por conseguinte, também o uso de mais material e tempo de impressão)" -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Jerk do Piso do Suporte" +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "Alcance dos Ramos Ideal" -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Direções da linha do piso do suporte" +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "Uma recomendação sobre qual a distância que os ramos podem percorrer a partir dos pontos que apoiam. Os ramos podem desrespeitar este valor, para alcançar o seu destino (placa de construção ou uma parte do modelo). Reduzir esse valor pode tornar o suporte mais resistente, contudo vai aumentar a quantidade de ramos (e, por conseguinte, também o uso de mais material e tempo de impressão)" -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Distância da linha do piso de suporte" +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "Preferência de Apoio" -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Diâmetro Linha Piso Suporte" +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "O posicionamento preferencial das estruturas de suporte. Se as estruturas não puderem ser posicionadas no local preferido, serão posicionadas noutro local, mesmo que isso signifique assentá-las sobre parte do modelo." -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Padrão Piso Suporte" +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "Na placa de construção quando possível" -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Velocidade do piso de suporte" +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "No modelo, se necessário" -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Espessura do piso de suporte" +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Ângulo Saliência para Suportes" -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Fluxo de Suporte" +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "O ângulo mínimo das saliências ao qual é adicionado suportes. Com um valor de 0°, todas as saliências são suportadas e um valor de 90° não irá gerar qualquer suporte." -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Expansão horizontal de suporte" +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Padrão de Suportes" -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Aceleração de enchimento do suporte" +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "O padrão geométrico das estruturas de suporte da impressão. As diferentes opções disponíveis resultam num suporte robusto ou de fácil remoção." -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Extrusor de enchimento do suporte" +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Linhas" -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Jerk do Enchimento do Suporte" +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Grelha" -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Espessura da camada de enchimento de suporte" +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Direção da linha de enchimento do suporte" +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Velocidade de enchimento do suporte" +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Aceleração da interface de suporte" +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Cruz" -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "Densidade da interface de suporte" +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Extrusor de interface de suporte" +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Número Linhas Paredes Suporte" -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Fluxo da Interface do Suporte" +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "O número de paredes que envolvem o enchimento de suporte. Acrescentar uma parede pode tornar a impressão do suporte mais fiável e pode suportar melhor as saliências, mas aumenta o tempo de impressão assim como a quantidade de material utilizado." -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Expansão horizontal da interface de suporte" +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Contagem das linhas de parede da interface de suporte" -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Jerk da Interface do Suporte" +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "O número de paredes com as quais envolver a interface de suporte. Adicionar uma parede pode tornar a impressão de suporte mais fiável e pode suportar as saliências melhor, mas aumenta o tempo de impressão e o material usado." -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Direções da linha da interface do suporte" +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Contagem das linhas de parede do telhado de suporte" + +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "O número de paredes com as quais envolver o telhado da interface de suporte. Adicionar uma parede pode tornar a impressão de suporte mais fiável e pode suportar as saliências melhor, mas aumenta o tempo de impressão e o material usado." -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Diâmetro Linha Interface Suporte" +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "Contagem das linhas da parede inferior de suporte" -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Padrão da interface de suporte" +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "O número de paredes com as quais cercar o piso da interface de suporte. Adicionar uma parede pode tornar a impressão de suporte mais fiável e pode suportar as saliências melhor, mas aumenta o tempo de impressão e o material usado." -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "Prioridade da Interface e Suporte" +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Ligar Linhas de Suporte" -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Velocidade da interface de suporte" +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "Ligar as extremidades das linhas de suporte. Ativar esta definição permite que os suportes sejam mais robustos e também diminuir o risco de \"under-extrusion\", mas tem um gasto maior de material." -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Espessura Interface Suporte" +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Ligar ziguezagues de suporte" -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "Contagem das linhas de parede da interface de suporte" +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "Liga os ziguezagues. Isto irá aumentar a resistência da estrutura de suporte em ziguezague." -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Jerk do Suporte" +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "Densidade do Suporte" -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "Distância da junção do suporte" +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Ajusta a densidade da estrutura de suporte. Um valor mais elevado resulta em melhores saliências, embora os suportes sejam mais difíceis de remover." msgctxt "support_line_distance label" msgid "Support Line Distance" msgstr "Distância da linha de suporte" -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Diâmetro Linha Suportes" +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "A distância entre as linhas da estrutura de suporte impressas. Esta definição é calculada através da densidade do suporte." -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Malha de suporte" +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "Distância da linha de suporte da camada inicial" -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Ângulo Saliência para Suportes" +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "Distância entre as linhas da estrutura de suporte da camada inicial impressas. Esta definição é calculada pela densidade do suporte." -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Padrão de Suportes" +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Direção da linha de enchimento do suporte" -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Colocação do suporte" +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "Lista de ângulos (números inteiros) relativos às direções de linha a utilizar. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito, a lista está vazia, o que significa a utilização dos ângulos predefinidos de 0 graus." -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Aceleração do tecto de suporte" +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Ativar aba de suporte" -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Densidade do tecto de suporte" +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "Gera uma aba dentro das regiões de enchimento do suporte da primeira camada. Esta aba é impressa na parte por baixo do suporte e não em torno do mesmo. Ativar esta definição aumenta a aderência do suporte à base de construção." -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Extrusor de tecto de suporte" +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Largura da aba do suporte" -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Fluxo do Teto do Suporte" +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "A largura da aba para imprimir na parte por baixo do suporte. Uma aba mais larga melhora a aderência à base de construção à custa de algum material adicional." -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Expansão horizontal do teto de suporte" +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Contagem de linhas da aba do suporte" -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Jerk do Tecto do Suporte" +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "O número de linhas utilizado para a aba do suporte. Uma aba com mais linhas melhora a aderência à base de construção à custa de algum material adicional." -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Direções da linha do teto do suporte" +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Distância Z de suporte" -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Distância da linha do tecto de suporte" +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "Distância do topo/base da estrutura de suporte até a impressão. Este espaço permite a remoção dos suportes após a impressão do modelo. A camada de suporte mais alta abaixo do modelo pode ser uma fração das camadas regulares." -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Diâmetro Linha Tecto Suporte" +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Distância superior do suporte" -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Padrão do tecto de suporte" +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "A distância entre a parte superior do suporte e a impressão." -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Velocidade do tecto de suporte" +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Distância inferior do suporte" -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "Espessura do tecto de suporte" +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "Distância da impressão até a base do suporte. Note que isso é arredondado para a próxima altura de camada." -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "Contagem das linhas de parede do telhado de suporte" +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "Distância X/Y do suporte" -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Velocidade Suporte" +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "A distância entre a estrutura de suporte e a impressão nas direções X/Y." + +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Prioridade da distância de suporte" + +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "Se a Distância X/Y de suporte substitui a Distância Z de suporte ou vice-versa. Quando X/Y substitui Z, a distância X/Y pode afastar o suporte do modelo, influenciando a distância Z real relativamente às saliências. É possível desativar esta opção não aplicando a distância X/Y em torno das saliências." + +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y substitui Z" + +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z substitui X/Y" + +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Distância X/Y mínima de suporte" + +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "A distância da estrutura de suporte relativamente às saliências nas direções X/Y." msgctxt "support_bottom_stair_step_height label" msgid "Support Stair Step Height" msgstr "Altura Degraus Suporte" +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "A altura dos degraus da parte inferior, semelhante a uma escada, do suporte apoiado sobre o modelo. Um valor pequeno dificulta a remoção do suporte, mas valores demasiado grandes podem resultar em estruturas de suporte instáveis. Definir como zero para desativar o comportamento semelhante a uma escada." + msgctxt "support_bottom_stair_step_width label" msgid "Support Stair Step Maximum Width" msgstr "Largura Máxima Degraus Suporte" +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "A largura máxima dos degraus da parte inferior, semelhante a uma escada, do suporte apoiado sobre o modelo. Um valor pequeno dificulta a remoção do suporte, mas valores demasiado grandes podem resultar em estruturas de suporte instáveis." + msgctxt "support_bottom_stair_step_min_slope label" msgid "Support Stair Step Minimum Slope Angle" msgstr "Ângulo de declive mínimo do degrau da escada de suporte" -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Estrutura de suporte" +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "O declive mínimo da área para o efeito de degrau de escada. Valores baixos fazem com que seja mais fácil remover o suporte em declives com pouca profundidade, mas valores muito baixos podem proporcionar resultados verdadeiramente contraintuitivos noutras partes do modelo." -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Distância superior do suporte" +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "Distância da junção do suporte" -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Número Linhas Paredes Suporte" +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "A distância máxima entre as estruturas de suporte nas direções X/Y. Quando a distância entre as estruturas de suporte for menor do que este valor, as estruturas fundem-se numa só." -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "Distância X/Y do suporte" +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Expansão horizontal de suporte" + +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "Quantidade de desvio aplicado a todos os polígonos de suporte em cada camada. Os valores positivos podem uniformizar as áreas de suporte e produzir suportes mais robustos." + +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Espessura da camada de enchimento de suporte" + +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "A espessura por camada de material de enchimento de suporte. Este valor deve ser sempre um múltiplo do valor da espessura das camadas. Caso contrário, será arredondado." + +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Enchimento Gradual Suporte" + +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "O número de vezes que a densidade de enchimento do suporte deve ser reduzida para metade, quanto maior for o afastamento das superfícies superiores. As áreas que se encontram mais próximas das superfícies superiores obtêm uma maior densidade, até ao limite do valor da Densidade do Suporte." + +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Altura do degrau de enchimento gradual de suporte" + +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "A altura do enchimento de suporte de uma determinada densidade antes de mudar para metade da densidade." + +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Área de suporte mínimo" + +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "Tamanho mínimo da área para polígonos de suporte. Os polígonos com uma área inferior a este valor não serão gerados." + +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Ativar interface de suporte" -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Distância Z de suporte" +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "Gera uma interface densa entre o modelo e o suporte. Isto irá criar um revestimento na parte superior do suporte, onde o modelo é impresso, e na parte inferior do suporte, onde este é apoiado sobre o modelo." -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "Tipo de linhas de suporte preferidas" +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Ativar tecto de suporte" -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "Estrutura suporte preferida" +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "Gera uma base densa de material entre a parte superior do suporte e o modelo. Isto irá criar um revestimento entre o modelo e o suporte." -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Velocidade da ventoinha de revestimento suportada" +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Ativar piso de suporte" -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Superfície" +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "Gera uma base densa de material entre a parte inferior do suporte e o modelo. Isto irá criar um revestimento entre o modelo e o suporte." -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "Energia da superfície" +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Espessura Interface Suporte" -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Modo de superfície" +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "A espessura da interface de suporte onde esta entra em contacto com o modelo na parte inferior ou superior." -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "A tendência de aderência à superfície." +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "Espessura do tecto de suporte" -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Energia da superfície." +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "A espessura dos tectos de suporte. Isto controla a quantidade de camadas densas na parte superior do suporte na qual o modelo é apoiado." -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "Trocar a ordem de impressão da linha mais interior e da segunda linha mais interior da aba. Isto permite facilitar a remoção da aba." +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Espessura do piso de suporte" -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "Altera para os volumes de interceção de malha que pertencerão a cada camada, para que as malhas sobrepostas fiquem entrelaçadas. Desativar esta definição poderá fazer com que uma das malhas obtenha todo o volume na sobreposição, sendo removido das outras malhas." +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "A espessura dos pisos de suporte. Isto controla o número de camadas densas que são impressas por cima de locais de um modelo no qual o suporte é apoiado." -msgctxt "adaptive_layer_height_threshold description" -msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." -msgstr "Distância horizontal pretendida entre duas camadas adjacentes. Reduzir o valor desta definição faz com que camadas mais finas sejam utilizadas para juntar mais os contornos das camadas." +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Densidade da interface de suporte" -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "A coordenada X da posição próxima do local onde se situa a peça pela qual iniciar a impressão de cada camada." +msgctxt "support_interface_density description" +msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Ajusta a densidade dos tectos e pisos da estrutura de suporte. Um valor mais elevado resulta em melhores saliências, embora os suportes sejam mais difíceis de remover." -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "A coordenada X da posição próxima do local onde a impressão de cada parte de uma camada será iniciada." +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Densidade do tecto de suporte" -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "A coordenada X da posição onde o é feita a preparação do nozzle no inicio da impressão." +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "A densidade dos tectos da estrutura de suporte. Um valor mais elevado resulta em melhores saliências, embora os suportes sejam mais difíceis de remover." -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "A coordenada Y da posição do local onde se situa a peça pela qual iniciar a impressão de cada camada." +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Distância da linha do tecto de suporte" -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "A coordenada Y da posição próxima do local onde a impressão de cada parte de uma camada será iniciada." +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "A distância entre as linhas do tecto de suporte impressas. Esta definição é calculada através da Densidade do tecto de suporte, mas pode ser ajustada em separado." -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "A coordenada Y da posição onde o é feita a preparação do nozzle no inicio da impressão." +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Densidade do piso de suporte" -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "A coordenada Z da posição onde fazer a preparação do nozzle no inicio da impressão." +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "A densidade dos pisos da estrutura de suporte. Um valor mais elevado resulta numa melhor aderência do suporte na parte superior do modelo." -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "A aceleração durante a impressão da camada inicial." +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Distância da linha do piso de suporte" -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "A aceleração da camada inicial." +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "A distância entre as linhas do piso de suporte impressas. Esta definição é calculada através da Densidade do piso de suporte, mas pode ser ajustada em separado." -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "A aceleração dos movimentos de deslocação na camada inicial." +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Padrão da interface de suporte" -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "A aceleração dos movimentos de deslocação na camada inicial." +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "O padrão geométrico com que a interface do suporte com o modelo, é impressa." -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "A aceleração com que todas as paredes interiores são impressas." +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Linhas" -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "A aceleração com que o enchimento é impresso." +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Grelha" -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "A aceleração com a qual se realiza o processo de engomar." +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "A aceleração com que é efetuada a impressão." +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "A aceleração com que a camada inferior (base) do raft é impressa." +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "A aceleração com que os pisos de suporte são impressos. Imprimi-los com uma aceleração inferior pode melhorar a aderência do suporte na parte superior do modelo." +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Padrão do tecto de suporte" -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "A aceleração com que o enchimento do suporte é impresso." +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "O padrão geométrico com que os tectos do suporte são impressos." -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "A aceleração com que a camada do meio do raft é impressa." +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Linhas" -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "A aceleração com que as paredes exteriores são impressas." +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Grelha" -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "A aceleração com que a torre de preparação é impressa." +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "A aceleração com que o raft é impresso." +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "A aceleração com que os tectos e pisos de suporte são impressos. Imprimi-los com uma aceleração inferior pode melhorar a qualidade das saliências." +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "A aceleração com que os tectos de suporte são impressos. Imprimi-los com uma aceleração inferior pode melhorar a qualidade das saliências." +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Padrão Piso Suporte" -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "A aceleração com que o contorno e a aba são impressos. Normalmente, isto é efetuado com a aceleração da camada inicial, mas, por vezes, pode preferir imprimir o contorno ou a aba com uma aceleração diferente." +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "O padrão geométrico com que os pisos do suporte são impressos." -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "A aceleração com que a estrutura de suporte é impressa." +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Linhas" -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "A aceleração com que as camadas superiores do raft são impressas." +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Grelha" -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "A aceleração com a qual as paredes internas da superfície superior são impressas." +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "A aceleração com a qual as paredes mais externas da superfície superior são impressas." +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "A aceleração com que as paredes são impressas." +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "A aceleração com que as camadas de revestimento da superfície superior são impressas." +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Área mínima da interface de suporte" -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "A aceleração com que as camadas superiores/inferiores são impressas." +msgctxt "minimum_interface_area description" +msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Tamanho mínimo da área para polígonos da interface do suporte. Os polígonos com uma área inferior a este valor serão impressos como suporte normal." -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "A aceleração com que os movimentos de deslocação são efetuados." +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Área mínima do teto de suporte" -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "A quantidade de material, em relação a uma linha de revestimento normal, a ser extrudido durante o processo de engomar. Manter o nozzle cheio ajuda a preencher algumas das fissuras da superfície superior, mas cheio de mais, provoca sobre-extrusão e pequenos pontos ou \"bolhas\" na parte lateral da superfície." +msgctxt "minimum_roof_area description" +msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Tamanho mínimo da área para os tetos do suporte. Os polígonos com uma área inferior a este valor serão impressos como suporte normal." -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "A percentagem de sobreposição entre o enchimento e as paredes. Uma ligeira sobreposição permite que as paredes sejam ligadas firmemente ao enchimento." +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Área mínima do piso de suporte" -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "A distância em milímetros da sobreposição entre o enchimento e as paredes. Uma ligeira sobreposição permite que as paredes se unam firmemente ao enchimento." +msgctxt "minimum_bottom_area description" +msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Tamanho mínimo da área para os pisos do suporte. Os polígonos com uma área inferior a este valor serão impressos como suporte normal." -msgctxt "switch_extruder_retraction_amount description" -msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." -msgstr "A quantidade de retração ao mudar de extrusor. Defina como 0 para não obter qualquer retração. Normalmente, esta deve ser a mesma que o comprimento da zona de aquecimento." +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Expansão horizontal da interface de suporte" -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "O ângulo entre o plano horizontal e a parte cónica imediatamente acima da ponta do nozzle." +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "Quantidade do desvio aplicado aos polígonos da interface de suporte." -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "O ângulo do topo de uma torre. Um valor mais elevado resulta em tectos de torre pontiagudos, enquanto um valor mais reduzido resulta em tectos de torre achatados." +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Expansão horizontal do teto de suporte" -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "O ângulo da saliência das paredes exteriores criadas para o molde. 0° irá tornar o invólucro exterior do molde vertical, enquanto 90° fará com que o exterior do modelo siga o contorno do mesmo." +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "Quantidade do desvio aplicado aos tetos de suporte." -msgctxt "support_tree_branch_diameter_angle description" -msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." -msgstr "O ângulo do diâmetro dos ramos conforme estes ficam progressivamente mais grossos quanto mais perto estiverem da base. Um ângulo de 0º faz com que os ramos tenham um espessura constante em todo o seu comprimento. Um pequeno ângulo pode aumentar a estabilidade dos suporte tipo árvore." +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Expansão horizontal do piso de suporte" -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "O ângulo da inclinação do suporte cónico. 0 graus é vertical e 90 graus é horizontal. Ângulos mais reduzidos tornam o suporte mais robusto, mas consomem mais material. Ângulos negativos tornam a base do suporte mais larga do que a parte superior." +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "Quantidade do desvio aplicado aos pisos de suporte." -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "A densidade média dos pontos introduzidos em cada polígono numa camada. Observe que os pontos originais do polígono são eliminados, pelo que uma densidade baixa resulta numa redução da resolução." +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "Prioridade da Interface e Suporte" -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "A distância média entre os pontos aleatórios introduzidos em cada segmento de linha. Observe que os pontos originais do polígono são eliminados, pelo que uma suavidade elevada resulta numa redução da resolução. Este valor deve ser superior a metade da Espessura do revestimento difuso." +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "Como a interface de suporte e a estrutura de suporte interagem quando se sobrepõem. Atualmente implementado apenas para o teto de suporte." -msgctxt "material_brand description" -msgid "The brand of material used." -msgstr "" +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "Estrutura suporte preferida" -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "A aceleração predefinida do movimento da cabeça de impressão." +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "Interface preferida" -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "A temperatura predefinida utilizada para a impressão. Esta deve ser a temperatura \"base\" de um material. Todas as outras temperaturas de impressão devem ser baseadas neste valor" +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "Tipo de linhas de suporte preferidas" -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "A temperatura predefinida utilizada para a base de construção aquecida. Esta deve ser a temperatura \"base\" de uma base de construção. Todas as outras temperaturas de impressão devem ser baseadas neste valor" +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "Linhas de interface preferidas" -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "A densidade da camada do revestimento de Bridge. Valores inferiores a 100 irão aumentar as folgas entre as linhas revestimento." +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "Ambas se sobrepõem" -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "A densidade dos pisos da estrutura de suporte. Um valor mais elevado resulta numa melhor aderência do suporte na parte superior do modelo." +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Direções da linha da interface do suporte" -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "A densidade dos tectos da estrutura de suporte. Um valor mais elevado resulta em melhores saliências, embora os suportes sejam mais difíceis de remover." +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Lista de ângulos (números inteiros) relativos às direções de linha a utilizar. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito, a lista está vazia, o que significa a utilização dos ângulos predefinidos (que alternam entre 45 e 135 graus se as interfaces forem bastante espessas ou 90 graus)." -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "A densidade da segunda camada do revestimento de Bridge. Valores inferiores a 100 irão aumentar as folgas entre as linhas revestimento." +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Direções da linha do teto do suporte" -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "A densidade da terceira camada do revestimento de Bridge. Valores inferiores a 100 irão aumentar as folgas entre as linhas revestimento." +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Uma lista de ângulos (números inteiros) relativos às direções de linha a utilizar. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito, a lista está vazia, o que significa a utilização dos ângulos predefinidos (que alternam entre 45 e 135 graus se as interfaces forem bastante espessas ou 90 graus)." -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "A profundidade (direção Y) da área de impressão." +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Direções da linha do piso do suporte" -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "O diâmetro de uma torre especial." +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Lista de ângulos (números inteiros) relativos às direções de linha a utilizar. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito, a lista está vazia, o que significa a utilização dos ângulos predefinidos (que alternam entre 45 e 135 graus se as interfaces forem bastante espessas ou 90 graus)." -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "O diâmetro dos ramos mais finos dos suportes tipo árvore. Ramos mais grossos são mais robustos. Os ramos serão progressivamente mais grossos do que este diâmetro quanto mais perto estiverem da base." +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Substituir velocidade da ventoinha" -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "O diâmetro do topo da ponta dos ramos do suporte de árvore." +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "Quando ativada, a velocidade da ventoinha de arrefecimento de impressão é alterada para as regiões de revestimento imediatamente acima do suporte." -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "O diâmetro da roda que conduz o material pelo alimentador." +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Velocidade da ventoinha de revestimento suportada" -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "O diâmetro dos ramos mais amplos do suporte de árvores. Um ramo mais grosso é mais resistente; um ramo mais fino ocupa menos espaço na base de construção." +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "Velocidade percentual da ventoinha a utilizar ao imprimir as regiões de revestimento imediatamente acima do suporte. A utilização de uma velocidade de ventoinha elevada facilita a remoção do suporte." -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "A diferença de espessura da camada seguinte em comparação com a anterior." +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Utilizar torres" -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "A distância entre as linhas de engomar." +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "Utilizar torres especializadas para suportar pequenas áreas de saliências. Estas torres têm um diâmetro maior do que a região que suportam. Junto às saliências, o diâmetro das torres diminui, criando um tecto." -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "A distância entre o nozzle e as peças já impressas ao evitá-las durante os movimentos de deslocação." +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Diâmetro da torre" -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "A distância entre linhas na camada inferior (base) do raft. Um maior espaçamento facilita a remoção do raft da base de construção." +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "O diâmetro de uma torre especial." -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "A distância entre linhas na camada do meio do raft. O espaçamento entre as linhas da camada do meio, deve ser grande, mas ao mesmo tempo suficientemente denso para conseguir suportar as camadas superiores do raft." +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Diâmetro Máximo Suportado pela Torre" -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "A distância entre linhas nas camadas superiores do raft. O espaçamento deve ser, igual ao Diâmetro da Linha, para que a superfície seja uniforme." +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "O diâmetro máximo nas direções X/Y de uma pequena área que deverá ser suportada por uma torre de suporte especializada." -msgctxt "prime_tower_raft_base_line_spacing description" -msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "A distância entre as linhas da jangada para a única camada da jangada da torre de primagem. Um espaçamento largo facilita a remoção da jangada da placa de construção." +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Ângulo do tecto da torre" -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "A distância do limite entre modelos para gerar estrutura de interligação medida em células. Um pequeno número de células resultará numa fraca adesão." +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "O ângulo do topo de uma torre. Um valor mais elevado resulta em tectos de torre pontiagudos, enquanto um valor mais reduzido resulta em tectos de torre achatados." -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "A distância desde o modelo até à linha mais exterior da Aba. Uma Aba mais larga melhora a aderência à base de construção, mas também reduz a área de impressão efetiva." +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Malha de suporte pendente" -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "A distância do lado de fora de um modelo onde estruturas interligadas não serão geradas, medidas nas células." +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "Cria suporte em qualquer local abaixo da malha de suporte, para que não existam saliências na malha de suporte." -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "A distância, a partir da ponta do nozzle, na qual o calor do nozzle é transferido para o filamento." +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "O cenário tem malhas de suporte" -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "A distância da expansão dos revestimentos inferiores para dentro do enchimento. Valores mais elevados melhoram, tanto, a fixação do revestimento ao padrão geométrico de enchimento, assim como a aderência do revestimento às paredes da camada anterior. Valores mais baixos reduzem a quantidade de material utilizado." +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "Existem malhas de suporte presentes no cenário. Esta definição é controlada pelo Cura." -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "A distância da expansão dos revestimentos para dentro do enchimento. Valores mais elevados melhoram tanto a fixação do revestimento ao padrão geométrico de enchimento, assim como a aderência ao revestimento das paredes de camadas adjacentes. Valores mais baixos reduzem a quantidade de material utilizado." +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Aderência à Base Construção" -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "A distância da expansão dos revestimentos superiores para dentro do enchimento. Valores mais elevados melhoram, tanto, a fixação do revestimento ao padrão geométrico do enchimento, assim como a aderência ao revestimento das paredes da camada seguinte. Valores mais baixos reduzem a quantidade de material utilizado." +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Aderência" + +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "\"Blob\" de Preparação" -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "A distância de deslocação da cabeça para trás e para a frente pela escova." +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "Preparar, ou não, o filamento com um \"blob\" (borrão) antes da impressão. Ativar esta definição irá assegurar que o extrusor terá material disponível no nozzle ao iniciar a impressão. Imprimir com Aba ou Contorno também pode actuar como preparação do filamento, e nesses casos, desativar esta definição permite poupar algum tempo." -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "As extremidades das linhas de enchimento são encurtadas para poupar material. Esta definição é o ângulo da saliência das extremidades destas linhas." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posição X Preparação do Extrusor" -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "A velocidade adicional a que o nozzle arrefece durante a extrusão. É utilizado o mesmo valor para indicar a velocidade de aquecimento perdida ao aquecer durante a extrusão." +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "A coordenada X da posição onde o nozzle é preparado ao iniciar a impressão." -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir a primeira camada de enchimento dos suportes. Definição usada com múltiplos extrusores." +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posição Y Preparação do Extrusor" -msgctxt "raft_base_extruder_nr description" -msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." -msgstr "O núcleo de extrusão a utilizar para imprimir a primeira camada do raft. Isto é utilizado em impressoras com extrusores múltiplos." +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "A coordenada Y da posição onde o nozzle é preparado ao iniciar a impressão." -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir os pisos do suporte. Definição usada com múltiplos extrusores." +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Modos de Aderência" -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir o enchimento dos suportes. Definição usada com múltiplos extrusores." +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "Diferentes modos que ajudam a melhorar a aderência à base de construção, assim como a preparação inicial da extrusão. \"Aba\" acrescenta uma única camada em torno da base do modelo para prevenir empenos ou deformações na parte inferior dos modelos. \"Raft\" adiciona uma plataforma, composta por uma grelha espessa e um teto, entre o modelo e a base de construção. \"Contorno\" é uma linha impressa à volta do modelo, mas que não está ligada ao modelo." -msgctxt "raft_interface_extruder_nr description" -msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." -msgstr "O núcleo de extrusão a utilizar para imprimir a camada do meio do raft. Isto é utilizado em impressoras com extrusores múltiplos." +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Contorno" -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir os tectos e pisos do suporte. Definição usada com múltiplos extrusores." +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Aba" -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir os tectos do suporte. Definição usada com múltiplos extrusores." +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Raft" -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "O núcleo de extrusão a utilizar para imprimir o contorno ou a aba. Isto é utilizado em impressoras com extrusores múltiplos." +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Nenhum" + +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Extrusor para Aderência" msgctxt "adhesion_extruder_nr description" msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." msgstr "O núcleo de extrusão utilizado para imprimir o Contorno/Aba/Raft. Definição usada com múltiplos extrusores." -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir os suportes. Definição usada com múltiplos extrusores." - -msgctxt "raft_surface_extruder_nr description" -msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." -msgstr "O núcleo de extrusão a utilizar para imprimir as camadas superiores do raft. Isto é utilizado em impressoras com extrusores múltiplos." - -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir o enchimento. Definição usada com múltiplos extrusores." - -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir as paredes interiores. Definição usada com múltiplos extrusores." +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Extrusor do contorno/aba" -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir a parede exterior. Definição usada com múltiplos extrusores." +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "O núcleo de extrusão a utilizar para imprimir o contorno ou a aba. Isto é utilizado em impressoras com extrusores múltiplos." -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir as camadas superiores e inferiores da impressão. Definição usada com múltiplos extrusores." +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Extrusor da base do raft" -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir a(s) camada(s) de revestimento das superfícies mais superiores. Definição usada com múltiplos extrusores." +msgctxt "raft_base_extruder_nr description" +msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." +msgstr "O núcleo de extrusão a utilizar para imprimir a primeira camada do raft. Isto é utilizado em impressoras com extrusores múltiplos." -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir as paredes. Definição usada com múltiplos extrusores." +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Extrusor do meio do raft" -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "A velocidade do ventilador da camada inferior do raft." +msgctxt "raft_interface_extruder_nr description" +msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." +msgstr "O núcleo de extrusão a utilizar para imprimir a camada do meio do raft. Isto é utilizado em impressoras com extrusores múltiplos." -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "A velocidade do ventilador da camada do meio do raft." +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Extrusora superior do raft" -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "A velocidade do ventilador do raft." +msgctxt "raft_surface_extruder_nr description" +msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." +msgstr "O núcleo de extrusão a utilizar para imprimir as camadas superiores do raft. Isto é utilizado em impressoras com extrusores múltiplos." -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "A velocidade do ventilador das camadas superiores do raft." +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Número Linhas Contorno" -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "A localização de uma imagem em que os valores de luminosidade desta determinam a densidade mínima na posição correspondente no enchimento da impressão." +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "Varias linhas de contorno ajudam a preparar melhor a extrusão para modelos pequenos. Definir este valor como 0 desactiva o contorno." -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "A localização de uma imagem em que os valores de luminosidade desta determinam a densidade mínima na posição correspondente nos suportes." +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "Altura do contorno" -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "As primeiras camadas são impressas mais lentamente do que o resto do modelo para obter uma melhor aderência à base de construção e melhorar a taxa de sucesso geral das impressões. A velocidade é aumentada gradualmente nessas camadas." +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "Imprimir a linha do contorno mais interior com múltiplas camadas facilita a remoção do contorno." -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "A espaço entre a camada final do raft e a primeira camada do modelo. Apenas a primeira camada do modelo é elevada por este valor, para assim reduzir a união entre o raft e o modelo. Isto facilita a remoção do raft." +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Distância Contorno" -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "A altura (direção Z) da área de impressão." +msgctxt "skirt_gap description" +msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "A distância horizontal entre o contorno e o perímetro exterior da primeira camada da impressão." +"Esta é a distância mínima. Linhas múltiplas de contorno serão impressas para o exterior." -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "A altura acima das partes horizontais do modelo em que deve imprimir o molde." +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Comprimento Mínimo Contorno/Aba" -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "A altura em que os ventiladores giram à velocidade normal. Nas camadas anteriores, a velocidade do ventilador aumenta gradualmente da Velocidade Inicial até à Velocidade Normal do ventilador." +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "O comprimento mínimo do Contorno ou da Aba. Se este comprimento não for alcançado pelo conjunto de todas as linhas do Contorno ou da Aba, serão acrescentadas mais linhas ao Contorno ou à Aba até o comprimento mínimo ser alcançado. Nota: Se o valor do Número de Linhas for 0, esta definição é ignorada." -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "A diferença de altura entre a ponta do nozzle e o sistema de pórtico (eixos X e Y)." +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Largura da Aba" -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "A diferença de altura entre a ponta do nozzle e o extremo inferior da cabeça de impressão." +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "A distância desde o modelo até à linha mais exterior da Aba. Uma Aba mais larga melhora a aderência à base de construção, mas também reduz a área de impressão efetiva." -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "A diferença de altura ao efetuar um salto Z após uma mudança do extrusor." +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Número Linhas da Aba" -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "A diferença de altura ao efetuar um salto Z." +msgctxt "brim_line_count description" +msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." +msgstr "O número de linhas utilizado para uma aba. Um maior número de linhas da aba melhora a aderência à base de construção, mas também reduz a área de impressão efetiva." -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "A diferença de altura ao efetuar um salto Z." +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Distância da Aba" -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "A espessura (altura) de cada camada em milímetros. Espessuras maiores produzem impressões rápidas com baixa resolução, e, espessuras pequenas, produzem impressões mais lentas mas com uma maior resolução/qualidade." +msgctxt "brim_gap description" +msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." +msgstr "A distância horizontal entre a primeira linha da aba e o contorno da primeira camada da impressão. Uma pequena folga pode tornar a aba mais fácil de remover, e, ao mesmo tempo, proporcionar as vantagens térmicas." -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "A altura de enchimento de uma determinada densidade antes de mudar para metade da densidade." +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "A aba substitui o suporte" -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "A altura do enchimento de suporte de uma determinada densidade antes de mudar para metade da densidade." +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "Aplicar a aba para ser impressa em torno do modelo, mesmo se esse espaço fosse ocupado de outra forma pelo suporte. Isto substitui algumas regiões da primeira camada do suporte por regiões de aba." -msgctxt "interlocking_beam_layer_count description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "A altura das vigas da estrutura de interligação, medida em número de camadas. Menos camadas são mais fortes, mas mais propensas a defeitos." +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "Localização da borda" -msgctxt "interlocking_orientation description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "A altura dos vigas da estrutura de interligação, medida em número de camadas. Menos camadas são mais fortes, mas mais propensas a defeitos." +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "Imprima uma borda no exterior ou interior do modelo, ou ambos. Dependendo do modelo, isto ajuda a reduzir a quantidade de borda que será necessário remover mais tarde, garantindo ao mesmo tempo uma aderência à base adequada." -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "A espessura da camada inicial em milímetros. Uma camada inicial mais espessa facilita a aderência à base de construção." +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "Apenas no exterior" -msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "A altura da base da torre de primagem. Aumentar esse valor resultará em uma torre de primagem mais robusta, pois a base será mais larga. Se esta configuração for muito baixa, a torre de primagem não terá uma base sólida." +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "Apenas no interior" -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "A altura dos degraus da parte inferior, semelhante a uma escada, do suporte apoiado sobre o modelo. Um valor pequeno dificulta a remoção do suporte, mas valores demasiado grandes podem resultar em estruturas de suporte instáveis. Definir como zero para desativar o comportamento semelhante a uma escada." +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "Em todo o lado" -msgctxt "brim_gap description" -msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." -msgstr "A distância horizontal entre a primeira linha da aba e o contorno da primeira camada da impressão. Uma pequena folga pode tornar a aba mais fácil de remover, e, ao mesmo tempo, proporcionar as vantagens térmicas." +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "Margem para evitar borda" -msgctxt "skirt_gap description" -msgid "" -"The horizontal distance between the skirt and the first layer of the print.\n" -"This is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "" -"A distância horizontal entre o contorno e o perímetro exterior da primeira camada da impressão.\n" -"Esta é a distância mínima. Linhas múltiplas de contorno serão impressas para o exterior." +msgctxt "brim_inside_margin description" +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "Uma borda ao redor de um modelo poderá tocar noutro modelo num ponto onde o utilizador não quer que tal aconteça. Esta ação remove toda a borda neste espaço entre modelos sem borda. " -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "As linhas de enchimento são simplificadas para poupar tempo de impressão. Este é o ângulo máximo permitido de saliência ao longo da linha de enchimento." +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "Aba Inteligente" -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "O padrão geométrico de enchimento é deslocado por esta distância ao longo do eixo X." +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "Trocar a ordem de impressão da linha mais interior e da segunda linha mais interior da aba. Isto permite facilitar a remoção da aba." -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "O padrão geométrico de enchimento é deslocado por esta distância ao longo do eixo Y." +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Margem Adicional Raft" -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "O diâmetro interno do nozzle. Altere esta definição quando utilizar um nozzle com um tamanho não convencional." +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Se o Raft estiver ativado, esta será a área de raft adicional em torno do modelo que também terá um raft. Aumentar o valor desta margem irá criar um raft mais robusto, mas ao mesmo tempo utiliza mais material e reduz a área disponível para a impressão." -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "O jerk com que a camada da base do raft é impressa." +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "Margem extra da base da plataforma" -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "O jerk com que a camada do meio do raft é impressa." +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Se a base da plataforma estiver habilitada, constitui a área da plataforma extra em redor do modelo, que também recebe uma plataforma. Aumentar esta margem irá criar uma plataforma resistente, utilizando ao mesmo tempo mais material e deixando menos área para a sua impressão." -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "O jerk com que o raft é impresso." +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "Margem extra do centro da plataforma" -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "O jerk com que as camadas superiores do raft são impressas." +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Se o centro da plataforma estiver habilitado, constitui a área da plataforma extra em redor do modelo, que também recebe uma plataforma. Aumentar esta margem irá criar uma plataforma resistente, utilizando ao mesmo tempo mais material e deixando menos área para a sua impressão." -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "A largura máxima das áreas do revestimento inferior a serem removidas. Todas as áreas de revestimento mais pequenas do que este valor irão desaparecer. Isto pode ajudar a limitar a quantidade de tempo e material gastos na impressão do revestimento inferior nas superfícies inclinadas do modelo." +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "Margem extra do topo da plataforma" -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "A largura máxima das áreas do revestimento a serem removidas. Todas as áreas de revestimento mais pequenas do que este valor irão desaparecer. Isto pode ajudar a limitar a quantidade de tempo e material gastos na impressão do revestimento superior/inferior nas superfícies inclinadas do modelo." +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Se o topo da plataforma estiver habilitado, constitui a área da plataforma extra em redor do modelo, que também recebe uma plataforma. Aumentar esta margem irá criar uma plataforma resistente, utilizando ao mesmo tempo mais material e deixando menos área para a sua impressão." -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "A largura máxima das áreas do revestimento superior a serem removidas. Todas as áreas de revestimento mais pequenas do que este valor irão desaparecer. Isto pode ajudar a limitar a quantidade de tempo e material gastos na impressão do revestimento superior nas superfícies inclinadas do modelo." +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Remover cantos interiores do raft" -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "A camada na qual os ventiladores giram à velocidade normal do ventilador. Se a Altura para Velocidade Normal do ventilador estiver definida , este valor é calculado e arredondado para um número inteiro." +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Remover os cantos interiores do raft, fazendo com que o raft se torne convexo." -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "O tempo de camada que define o limiar entre a velocidade normal e a velocidade máxima do ventilador. As camadas que são impressas mais lentamente utilizam a velocidade normal do ventilador. Para camadas mais rápidas, a velocidade do ventilador aumenta gradualmente até à velocidade máxima." +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "Remover ângulos internos da base da plataforma" -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "O comprimento do material retraído durante um movimento de retração." +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "Remova ângulos internos da base da plataforma, fazendo com que a plataforma fique convexa." -msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "O fator de magnitude usado para a inclinação da base da torre de primagem. Se você aumentar este valor, a base ficará mais fina. Se diminuir, a base ficará mais espessa." +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "Remover ângulos internos do centro da plataforma" -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "O material da base de construção instalada na impressora." +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "Remova ângulos internos do centro da plataforma, fazendo com que a plataforma fique convexa." -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "A diferença máxima de espessura permitida em relação ao valor base definido em Espessura das Camadas." +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "Remover ângulos internos do topo da plataforma " -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "O ângulo máximo que uma peça da proteção contra escorrimentos poderá ter. 0 graus é vertical e 90 graus é horizontal. Um ângulo menor resulta em menos falhas na proteção contra escorrimentos, mas mais material." +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "Remova ângulos internos do topo da plataforma, fazendo com que a plataforma fique convexa." -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "O ângulo máximo das saliências após se terem tornado imprimíveis. Com um valor de 0°, todas as saliências são substituídas por um modelo ligado à base de construção e, com um valor de 90°, o modelo não será alterado de forma alguma." +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Suavização Raft" -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "O ângulo máximo dos ramos enquanto estes crescem ao redor do modelo. Utilize um ângulo menor para os tornar mais verticais e mais estáveis. Use um ângulo maior para poderem ter um maior alcance." +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Esta definição controla o nível do arredondamento dos cantos internos do contorno do raft. Os cantos internos são arredondados para um semicírculo com um raio igual ao valor aqui fornecido. Esta definição também remove buracos no contorno do raft que sejam menores que esse semicírculo." -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "A área máxima de um buraco na base do modelo antes que seja removido por Tornar Saliência Imprimível. Buracos mais pequenos do que este valor serão mantidos. Um valor de 0 mm² preencherá todos os buracos na base do modelo." +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "Alisamento da base da plataforma" -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "O desvio máximo permitido ao reduzir a resolução da definição de Resolução máxima. Se aumentar esta definição, a impressão será menos precisa, mas o G-code será menor. O Desvio máximo é um limite para a Resolução máxima, pelo que, se estiverem em conflito, o Desvio máximo é sempre considerado verdadeiro." +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Esta configuração controla o quanto os ângulos internos no contorno da base da plataforma são arredondados. Os ângulos internos são arredondados até formar um semi-círculo com um raio igual ao valor apresentado aqui. Esta configuração também remove buracos no contorno da plataforma mais pequenos do que tal círculo." -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "A distância máxima entre as estruturas de suporte nas direções X/Y. Quando a distância entre as estruturas de suporte for menor do que este valor, as estruturas fundem-se numa só." +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "Alisamento do centro da plataforma" -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "A distância máxima em mm de deslocação do filamento para compensar alterações na taxa de fluxo." +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Esta configuração controla o quanto os ângulos internos no contorno do centro da plataforma são arredondados. Os ângulos internos são arredondados até formar um semi-círculo com um raio igual ao valor apresentado aqui. Esta configuração também remove buracos no contorno da plataforma mais pequenos do que tal círculo." -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "O desvio máximo da área de extrusão que é permitido quando se faz a remoção dos pontos intermédios de uma linha recta. Um ponto intermédio pode servir de ponto de alteração do diâmetro numa linha recta longa. Por isso, se for removido, fará com que a linha tenha um diâmetro uniforme e, como resultado, vai perder (ou ganhar) um pouco de área de extrusão. Se aumentar este valor, poderá notar um ligeiro excesso (ou defeito) de extrusão entre paredes paralelas retas, uma vez que os pontos de alteração dos diâmetros mais intermédios poderão ser removidos. A sua impressão será menos precisa, mas o G-code será mais pequeno." +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "Alisamento do topo da plataforma" -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "A mudança de velocidade instantânea máxima durante a impressão da camada inicial." +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Esta configuração controla o quanto os ângulos internos no contorno do topo da plataforma são arredondados. Os ângulos internos são arredondados até formar um semi-círculo com um raio igual ao valor apresentado aqui. Esta configuração também remove buracos no contorno da plataforma mais pequenos do que tal círculo." -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "A velocidade instantânea máxima num movimento brusco da cabeça de impressão." +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Caixa de Ar do Raft" -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "A mudança de velocidade instantânea máxima ao engomar." +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "A espaço entre a camada final do raft e a primeira camada do modelo. Apenas a primeira camada do modelo é elevada por este valor, para assim reduzir a união entre o raft e o modelo. Isto facilita a remoção do raft." -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "A mudança de velocidade instantânea máxima com a qual todas as paredes interiores são impressas." +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Sobreposição Z Camada Inicial" -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "A mudança de velocidade instantânea máxima com a qual o enchimento é impresso." +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "Faça com que a primeira e segunda camadas do modelo se sobreponham na direção Z para compensar a perda de filamento na caixa de ar. Todos os modelos acima da primeira camada do modelo serão deslocadas para baixo segundo este valor.\nNote-se que, por vezes, a segunda camada é imprimida por baixo da camada inicial por causa desta configuração. Este comportamento é intencional." -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "A mudança de velocidade instantânea máxima com a qual os pisos de suporte são impressos." +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Espessura da Base do Raft" -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "A mudança de velocidade instantânea máxima com a qual o enchimento do suporte é impresso." +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "A espessura da camada inferior (base) do raft. Esta deve ser uma camada espessa para aderir firmemente à base de construção da impressora." -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "A mudança de velocidade instantânea máxima com a qual as paredes exteriores são impressas." +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Diâmetro Linha Base do Raft" -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "A mudança de velocidade instantânea máxima com a qual a torre de preparação é impressa." +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "O diâmetro das linhas na camada inferior (base) do raft. Devem ser linhas espessas para auxiliar na aderência à base de construção." -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "A mudança de velocidade instantânea máxima com a qual os tectos e pisos de suporte são impressos." +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Espaçamento da Linha Base do Raft" -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "A mudança de velocidade instantânea máxima com a qual os tectos de suporte são impressos." +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "A distância entre linhas na camada inferior (base) do raft. Um maior espaçamento facilita a remoção do raft da base de construção." -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "A mudança de velocidade instantânea máxima com a qual o contorno e a aba são impressos." +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Camadas do meio do raft" -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "A mudança de velocidade instantânea máxima com a qual a estrutura de suporte é impressa." +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "O número de camadas entre a base e a superfície do raft. Estas incluem a espessura principal do raft. Aumentar este valor cria um raft mais espesso e mais resistente." -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "A mudança máxima de velocidade instantânea com a qual as paredes mais externas da superfície superior são impressas." +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Espessura do Meio do Raft" -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "A mudança máxima de velocidade instantânea com a qual as paredes internas da superfície superior são impressas." +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "A espessura da camada do meio do raft. (segunda camada)" -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "A mudança de velocidade instantânea máxima com a qual as paredes são impressas." +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Diâmetro Linha do Meio do Raft" -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "A mudança de velocidade instantânea máxima com a qual as camadas de revestimento da superfície superior são impressas." +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "O diâmetro das linhas na camada do meio do raft. Extrudir mais a segunda camada provoca a aderência das linhas à base de construção." -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "A mudança de velocidade instantânea máxima com a qual as camadas superiores/inferiores são impressas." +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Espaçamento do Meio do Raft" -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "A mudança de velocidade instantânea máxima com a qual os movimentos de deslocação são impressos." +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "A distância entre linhas na camada do meio do raft. O espaçamento entre as linhas da camada do meio, deve ser grande, mas ao mesmo tempo suficientemente denso para conseguir suportar as camadas superiores do raft." -msgctxt "prime_tower_max_bridging_distance description" -msgid "The maximum length of the branches which may be printed over the air." -msgstr "" +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Camadas Superiores do Raft" + +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "O número de camadas superiores impressas em cima da camada do meio do raft. Estas são as camadas, totalmente preenchidas, onde o modelo assenta. Duas camadas resultam numa superfície superior mais uniforme do que só uma camada." -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "A velocidade máxima do motor da direção X." +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Espessura Camada Superior Raft" -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "A velocidade máxima do motor da direção Y." +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "A espessura das camadas superiores do raft." -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "A velocidade máxima do motor da direção Z." +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Diâmetro Linha Superior do Raft" -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "A velocidade máxima do filamento." +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "O diâmetro das linhas da superfície superior do raft. Estas podem ser linhas finas para que a parte superior do raft seja uniforme e liso." -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "A largura máxima dos degraus da parte inferior, semelhante a uma escada, do suporte apoiado sobre o modelo. Um valor pequeno dificulta a remoção do suporte, mas valores demasiado grandes podem resultar em estruturas de suporte instáveis." +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Espaçamento Superior do Raft" -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "A distância mínima entre o exterior do molde e o exterior do modelo." +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "A distância entre linhas nas camadas superiores do raft. O espaçamento deve ser, igual ao Diâmetro da Linha, para que a superfície seja uniforme." -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "A velocidade mínima de movimento da cabeça de impressão." +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "Ordem de superfície do topo da plataforma monotónica" -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "A temperatura mínima ao aquecer até à Temperatura de impressão à qual a impressão já pode começar." +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "Imprima as linhas de superfície do topo da plataforma numa ordem que as leve a sobrepor-se a linhas adjacentes numa única direção. Desta forma, a impressão poderá demorar mais algum tempo, mas dá um aspeto mais consistente à superfície, o que também é visível na superfície inferior do modelo. " -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "O tempo mínimo durante o qual um extrusor tem de estar inativo antes de o nozzle ser arrefecido. Apenas é permitido começar a arrefecer até à temperatura de Modo de Espera quando um extrusor não for utilizado por um período de tempo superior a este." +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "Número de paredes da plataforma" -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "O ângulo mínimo das saliências internas ao qual é adicionado enchimento. Com um valor de 0° os objetos são totalmente preenchidos com enchimento, e com um valor de 90° não é produzido qualquer enchimento." +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "O número de contornos a imprimir à volta do padrão linear da plataforma." -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "O ângulo mínimo das saliências ao qual é adicionado suportes. Com um valor de 0°, todas as saliências são suportadas e um valor de 90° não irá gerar qualquer suporte." +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Número de paredes da base do raft" -msgctxt "retraction_min_travel description" -msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." -msgstr "A distância mínima de deslocação necessária para que ocorra uma retração. Isto ajuda a obter menos retrações numa área reduzida." +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "O número de contornos a imprimir em torno do padrão linear na camada base do raft." -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "O comprimento mínimo do Contorno ou da Aba. Se este comprimento não for alcançado pelo conjunto de todas as linhas do Contorno ou da Aba, serão acrescentadas mais linhas ao Contorno ou à Aba até o comprimento mínimo ser alcançado. Nota: Se o valor do Número de Linhas for 0, esta definição é ignorada." +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "Número de paredes do centro da plataforma" -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "Diâmetro mínimo da linha para as paredes poligonais de enchimento de folgas das linhas do meio. Esta definição determina a espessura do modelo em que passamos da impressão de duas linhas da parede para a impressão de duas paredes exteriores e de uma única parede central no meio. Um diâmetro mínimo da parede ímpar maior provoca um maior diâmetro máximo de linha da parede par. O diâmetro máximo de linha da parede ímpar é calculado como 2 * diâmetro mínimo de linha da parede par." +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "O número de contornos a imprimir à volta do padrão linear nas camadas centrais da plataforma." -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "O diâmetro mínimo da linha para as paredes poligonais normais. Esta definição determina a espessura do modelo em que passamos da impressão de uma única linha fina de parede para a impressão de duas linhas de parede. Um maior diâmetro mínimo de linha da parede Par causa um maior diâmetro máximo de linha da parede Ímpar. O diâmetro máximo de linha da parede Par é calculado como o diâmetro da linha da parede externa + 0,5 * diâmetro mínimo da linha da parede Ímpar." +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "Número de paredes do topo da plataforma" -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "A velocidade mínima de impressão, apesar do abrandamento devido ao tempo mínimo por camada. Se a impressora abrandar demasiado, a pressão no nozzle será demasiado baixa, o que resultará numa má qualidade de impressão." +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "O número de contornos a imprimir à volta do padrão linear nas camadas superiores da plataforma." -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "O tamanho mínimo de um segmento após o seccionamento. Se aumentar este valor, a malha terá uma resolução menor. Isto poderá permitir que a impressora acompanhe a velocidade que tem para processar o G-code e irá aumentar a velocidade de seccionamento ao remover os detalhes da malha que não podem ser processados." +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Velocidade Impressão do Raft" -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "O tamanho mínimo de um segmento de deslocação após o seccionamento. Se aumentar este valor, o movimento de deslocação nos cantos será menos suave. Isto poderá permitir que a impressora acompanhe a velocidade que tem para processar o G-code, mas pode reduzir a precisão do movimento ao evitar as peças já impressas." +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "A velocidade a que o raft é impresso." -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "O declive mínimo da área para o efeito de degrau de escada. Valores baixos fazem com que seja mais fácil remover o suporte em declives com pouca profundidade, mas valores muito baixos podem proporcionar resultados verdadeiramente contraintuitivos noutras partes do modelo." +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Velocidade da Base do Raft" -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "O tempo mínimo gasto numa camada. Isto força a impressora a abrandar para que, no mínimo, o tempo aqui definido seja gasto numa camada. Isto permite que o material impresso arrefeça devidamente antes de imprimir a camada seguinte. Ainda assim, as camadas podem demorar menos do que o tempo mínimo por camada se a opção Elevar Cabeça estiver desativada e se a Velocidade Mínima for desrespeitada." +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "A velocidade a que a camada inferior (base) do raft é impressa. Esta deve ser impressa bastante devagar, uma vez que o volume de material que vai sair pelo nozzle é bastante elevado." -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "O volume mínimo para cada camada da torre de preparação para preparar material suficiente." +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Velocidade do Meio do Raft" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "O diâmetro máximo que um ramo, que tem de se apoiar no modelo, pode ter ao unir-se com os ramos que podem alcançar a placa de construção. Aumentar este valor reduz o tempo de impressão, mas aumenta a área de suporte que assenta no modelo" +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "A velocidade a que a camada do meio do raft é impressa. Esta deve ser impressa bastante devagar, uma vez que o volume de material que vai sair pelo nozzle é bastante elevado." -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "O nome do seu modelo de impressora 3D." +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Velocidade do Topo do Raft" -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "O ID do nozzle de um núcleo de extrusão, tal como \"AA 0.4\" e \"BB 0.8\"." +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "A velocidade a que as camadas superiores do raft são impressas. Estas devem ser impressas um pouco mais devagar, para que o nozzle possa uniformizar lentamente as linhas adjacentes da superfície." -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "O nozzle evita as áreas já impressas durante a deslocação. Esta opção só está disponível quando o combing está ativado." +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Aceleração Impressão do Raft" -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "O nozzle evita os suportes já impressos durante a deslocação. Esta opção só está disponível quando o Combing está ativado." +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "A aceleração com que o raft é impresso." -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "O número de camadas inferiores. Quando calculado através da Espessura Inferior, este valor é arredondado para um número inteiro." +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Aceleração da Base do Raft" -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "O número de contornos a imprimir em torno do padrão linear na camada base do raft." +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "A aceleração com que a camada inferior (base) do raft é impressa." -msgctxt "raft_interface_wall_count description" -msgid "The number of contours to print around the linear pattern in the middle layers of the raft." -msgstr "" +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Aceleração do Meio do Raft" -msgctxt "raft_surface_wall_count description" -msgid "The number of contours to print around the linear pattern in the top layers of the raft." -msgstr "" +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "A aceleração com que a camada do meio do raft é impressa." -msgctxt "raft_wall_count description" -msgid "The number of contours to print around the linear pattern of the raft." -msgstr "" +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Aceleração do Topo do Raft" -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "O número de camadas de enchimento que suportam as arestas do revestimento." +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "A aceleração com que as camadas superiores do raft são impressas." -msgctxt "initial_bottom_layers description" -msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "O número de camadas inferiores iniciais, a partir da base de construção no sentido ascendente. Quando calculado pela espessura inferior, este valor é arredondado para um número inteiro." +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Jerk de impressão do raft" -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "O número de camadas entre a base e a superfície do raft. Estas incluem a espessura principal do raft. Aumentar este valor cria um raft mais espesso e mais resistente." +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "O jerk com que o raft é impresso." -msgctxt "brim_line_count description" -msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." -msgstr "O número de linhas utilizado para uma aba. Um maior número de linhas da aba melhora a aderência à base de construção, mas também reduz a área de impressão efetiva." +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Jerk de impressão inferior do raft" -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "O número de linhas utilizado para a aba do suporte. Uma aba com mais linhas melhora a aderência à base de construção à custa de algum material adicional." +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "O jerk com que a camada da base do raft é impressa." -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "O número de camadas superiores impressas em cima da camada do meio do raft. Estas são as camadas, totalmente preenchidas, onde o modelo assenta. Duas camadas resultam numa superfície superior mais uniforme do que só uma camada." +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Jerk de impressão do meio do raft" -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "O número de camadas superiores. Quando calculado através da Espessura Superior, este valor é arredondado para um número inteiro." +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "O jerk com que a camada do meio do raft é impressa." -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "O número de camadas de revestimento da superfície superior. Por norma, uma só camada superior é suficiente para gerar superfícies superiores de maior qualidade." +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Jerk de impressão superior do raft" -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "O número de paredes que envolvem o enchimento de suporte. Acrescentar uma parede pode tornar a impressão do suporte mais fiável e pode suportar melhor as saliências, mas aumenta o tempo de impressão assim como a quantidade de material utilizado." +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "O jerk com que as camadas superiores do raft são impressas." -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "O número de paredes com as quais cercar o piso da interface de suporte. Adicionar uma parede pode tornar a impressão de suporte mais fiável e pode suportar as saliências melhor, mas aumenta o tempo de impressão e o material usado." +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Velocidade do ventilador do raft" -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "O número de paredes com as quais envolver o telhado da interface de suporte. Adicionar uma parede pode tornar a impressão de suporte mais fiável e pode suportar as saliências melhor, mas aumenta o tempo de impressão e o material usado." +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "A velocidade do ventilador do raft." -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "O número de paredes com as quais envolver a interface de suporte. Adicionar uma parede pode tornar a impressão de suporte mais fiável e pode suportar as saliências melhor, mas aumenta o tempo de impressão e o material usado." +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Velocidade do ventilador inferior do raft" -msgctxt "wall_distribution_count description" -msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." -msgstr "O número de paredes, contadas a partir do centro, sobre as quais a variação tem de ser distribuída. Valores mais baixos significam que as paredes exteriores não mudam de diâmetro." +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "A velocidade do ventilador da camada inferior do raft." -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "O número de paredes. Quando calculado através da espessura das paredes, este valor é arredondado para um número inteiro." +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Velocidade do ventilador do meio do raft" -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "O diâmetro externo da ponta do nozzle." +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "A velocidade do ventilador da camada do meio do raft." -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "O padrão do material de enchimento da impressão. A linha e o enchimento em ziguezague mudam de direção em camadas alternativas, o que reduz o custo do material. Os padrões de grelha, triângulo, tri-hexágono, cubo, octeto, quarto cúbico, cruz e concêntrico são totalmente impressos em cada camada. Os enchimentos gyroid, cúbico, quarto cúbico e octeto mudam em cada camada para proporcionar uma distribuição mais uniforme da resistência em cada direção. O enchimento relâmpago tenta minimizar o enchimento, ao suportar apenas a parte superior do objeto." +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Velocidade do ventilador superior do raft" -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "O padrão geométrico das estruturas de suporte da impressão. As diferentes opções disponíveis resultam num suporte robusto ou de fácil remoção." +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "A velocidade do ventilador das camadas superiores do raft." -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "O padrão geométrico das camadas de revestimento da superfície superior." +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Dupla Extrusão" -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "O padrão geométrico das camadas superiores / inferiores." +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Definições utilizadas para imprimir com vários extrusores." -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "O padrão geométrico da base da peça na camada inicial." +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Ativar torre de preparação" -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "O padrão geométrico a utilizar para engomar as superfícies superiores." +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "Imprime uma torre próxima da impressão que prepara o material depois de cada substituição do nozzle." -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "O padrão geométrico com que os pisos do suporte são impressos." +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "Tipo de torre de preparação" -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "O padrão geométrico com que a interface do suporte com o modelo, é impressa." +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
                                      • Normal: create a bucket in which secondary materials are primed
                                      • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
                                      " +msgstr "Como gerar a torre principal:
                                      • Normal: criar um balde no qual os materiais secundários são preparados
                                      • Intercalado: criar uma torre de preparação o mais esparsa possível. Assim, irá poupar-se tempo e filamento, mas tal apenas será possível se os materiais aderirem uns aos outros
                                      " -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "O padrão geométrico com que os tectos do suporte são impressos." +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "Normal" -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "A posição próxima do local onde a impressão de cada parte de uma camada será iniciada." +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "Intercalado" -msgctxt "support_tree_angle_slow description" -msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." -msgstr "O ângulo preferido dos ramos, quando estes não têm de evitar o modelo. Utilize um ângulo menor para os tornar mais verticais e mais estáveis. Utilize um ângulo maior para que os ramos se unam mais rapidamente." +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Tamanho Torre de Preparação" -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "O posicionamento preferencial das estruturas de suporte. Se as estruturas não puderem ser posicionadas no local preferido, serão posicionadas noutro local, mesmo que isso signifique assentá-las sobre parte do modelo." +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "A largura da torre de preparação." -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "A mudança de velocidade instantânea máxima de impressão para a camada inicial." +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Volume mínimo da torre de preparação" -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "A forma da base de construção sem ter em consideração as áreas onde não é possível imprimir." +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "O volume mínimo para cada camada da torre de preparação para preparar material suficiente." -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "A forma da cabeça de impressão. Estas coordenadas são relativas à posição da cabeça de impressão, que normalmente é a posição do primeiro extrusor. As coordenadas à esquerda e à frente da cabeça de impressão têm de ser valores negativos." +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "Distância transitória máxima da torre de preparação" -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "O tamanho das bolsas em cruzamentos de quatro vias no padrão de cruz 3D em alturas onde o padrão está em contacto consigo próprio." +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "O comprimento máximo dos ramos que podem ser imprimidos sobre o ar." -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "O menor volume que um caminho de extrusão deve ter antes de permitir a desaceleração. Para caminhos de extrusão mais curtos, é acumulada menos pressão no tubo Bowden e, como tal, o volume de desaceleração adota uma escala linear. Este valor deve sempre ser superior ao Volume de desaceleração." +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "Posição X da torre de preparação" -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "A velocidade média (°C/s) a que o nozzle é arrefecido, média calculada com base nos valores das temperaturas normais de impressão, e a temperatura em modo de espera." +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "A coordenada X da posição da torre de preparação." -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "A velocidade média (°C/s) a que o nozzle é aquecido, média calculada com base nos valores das temperaturas normais de impressão, e a temperatura em modo de espera." +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Posição Y da torre de preparação" -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "A velocidade a que todas as paredes interiores são impressas. Imprimir a parede interior mais rapidamente do que a parede exterior irá reduzir o tempo de impressão. O resultado é melhor quando este valor é entre a velocidade de parede exterior e a velocidade de enchimento." +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "A coordenada Y da posição da torre de preparação." -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "A velocidade a que as regiões do revestimento de Bridge são impressas." +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Limpar nozzle inativo na torre de preparação" -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "A velocidade a que o enchimento é impresso." +msgctxt "prime_tower_wipe_enabled description" +msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." +msgstr "Após a impressão da torre de preparação com um nozzle, limpe o material que vazou do nozzle para a torre de preparação." -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "A velocidade a que é efetuada a impressão." +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Base" +msgstr "Base da Torre de Primagem" -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "A velocidade a que a camada inferior (base) do raft é impressa. Esta deve ser impressa bastante devagar, uma vez que o volume de material que vai sair pelo nozzle é bastante elevado." +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "Ao ativar esta configuração, sua torre de primagem terá uma aba, mesmo que o modelo não tenha. Se você deseja uma base mais robusta para uma torre alta, pode aumentar a altura da base." -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "A velocidade a que as paredes de Bridge são impressas." +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "Tamanho da Base da Torre de Primagem" -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "A velocidade a que os ventiladores giram ao iniciar a impressão. Nas camadas subsequentes, a velocidade do ventilador aumenta gradualmente até à camada correspondente à Velocidade normal do ventilador em altura." +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "A largura da aba/base da torre de primagem. Uma base maior melhora a aderência à placa de construção, mas também reduz a área efetiva de impressão." -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "A velocidade a que os ventiladores giram antes de atingir o limiar. Quando uma camada é impressa mais rapidamente do que o limiar, a velocidade do ventilador tende gradualmente a aproximar-se da velocidade máxima." +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "Altura da Base da Torre de Primagem" -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "A velocidade a que os ventiladores giram no tempo mínimo de camada. A velocidade do ventilador aumenta gradualmente entre a velocidade normal do ventilador e a velocidade máxima do ventilador quando o limiar é alcançado." +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "A altura da base da torre de primagem. Aumentar esse valor resultará em uma torre de primagem mais robusta, pois a base será mais larga. Se esta configuração for muito baixa, a torre de primagem não terá uma base sólida." -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "A velocidade a que o filamento é preparado durante um movimento de retração." +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "Inclinação da Base da Torre de Primagem" -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "A velocidade a que o filamento é preparado durante um movimento de retração de limpeza." +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "O fator de magnitude usado para a inclinação da base da torre de primagem. Se você aumentar este valor, a base ficará mais fina. Se diminuir, a base ficará mais espessa." -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "A velocidade a que o filamento é empurrado após uma retração de substituição do nozzle." +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "Espaçamento das Linhas da Jangada da Torre de Primagem" -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "A velocidade a que o filamento é retraído e preparado durante um movimento de retração." +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "A distância entre as linhas da jangada para a única camada da jangada da torre de primagem. Um espaçamento largo facilita a remoção da jangada da placa de construção." -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "A velocidade a que o filamento é retraído e preparado durante um movimento de retração de limpeza." +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Ativar proteção contra escorrimento" -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "A velocidade a que o filamento é retraído durante uma recolha de substituição do nozzle." +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "Ativa a proteção exterior contra escorrimentos. Isto irá criar um invólucro em torno do modelo que deverá limpar um segundo nozzle, caso este se encontre à mesma altura que o primeiro nozzle." -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "A velocidade a que o filamento é retraído durante um movimento de retração." +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Ângulo da proteção contra escorrimentos" -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "A velocidade a que o filamento é retraído durante um movimento de retração de limpeza." +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "O ângulo máximo que uma peça da proteção contra escorrimentos poderá ter. 0 graus é vertical e 90 graus é horizontal. Um ângulo menor resulta em menos falhas na proteção contra escorrimentos, mas mais material." -msgctxt "switch_extruder_retraction_speeds description" -msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." -msgstr "A velocidade a que o filamento é retraído. Uma maior velocidade de retração funciona melhor, mas uma velocidade de retração muito elevada pode resultar na trituração do filamento." +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Distância da proteção contra escorrimentos" -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "A velocidade a que o piso de suporte é impresso. Imprimi-lo a uma velocidade baixa pode melhorar a aderência do suporte na parte superior do modelo." +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "A distância da proteção contra escorrimentos relativamente à impressão nas direções X/Y." -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "A velocidade a que o enchimento do suporte é impresso. Imprimir o enchimento a velocidades baixas melhora a estabilidade." +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Distância de retração de substituição do nozzle" -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "A velocidade a que a camada do meio do raft é impressa. Esta deve ser impressa bastante devagar, uma vez que o volume de material que vai sair pelo nozzle é bastante elevado." +msgctxt "switch_extruder_retraction_amount description" +msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." +msgstr "A quantidade de retração ao mudar de extrusor. Defina como 0 para não obter qualquer retração. Normalmente, esta deve ser a mesma que o comprimento da zona de aquecimento." -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "A velocidade a que as paredes exteriores são impressas. Imprimir a parede exterior a uma velocidade mais reduzida melhora a qualidade final do revestimento. No entanto, a existência de uma grande diferença entre a velocidade da parede interior e a velocidade de parede exterior afetará a qualidade de uma forma negativa." +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Velocidade de retração de substituição do nozzle" + +msgctxt "switch_extruder_retraction_speeds description" +msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." +msgstr "A velocidade a que o filamento é retraído. Uma maior velocidade de retração funciona melhor, mas uma velocidade de retração muito elevada pode resultar na trituração do filamento." -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "A velocidade à qual a torre de preparação é impressa. Imprimir a torre de preparação mais lentamente pode torná-la mais estável quando a aderência entre os diferentes filamentos é insuficiente." +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Velocidade de recolha de substituição do nozzle" -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "A velocidade de rotação dos ventiladores de arrefecimento da impressão." +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "A velocidade a que o filamento é retraído durante uma recolha de substituição do nozzle." -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "A velocidade a que o raft é impresso." +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Velocidade de preparação de substituição do nozzle" -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "A velocidade a que os tectos e os pisos de suporte são impressos. Imprimi-los a velocidades baixas pode melhorar a qualidade das saliências." +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "A velocidade a que o filamento é empurrado após uma retração de substituição do nozzle." -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "A velocidade a que os tectos de suporte são impressos. Imprimi-los a velocidades baixas pode melhorar a qualidade das saliências." +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Quantidade de Preparação Extra de Substituição do Nozzle" -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "A velocidade a que o contorno e a aba são impressos. Geralmente, isto é efetuado à velocidade de camada inicial, mas, por vezes, pode preferir imprimir o contorno ou a aba a uma velocidade diferente." +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "Material extra a preparar após a substituição do nozzle." -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "A velocidade a que a estrutura de suporte é impressa. Imprimir o suporte a velocidades elevadas pode reduzir consideravelmente o tempo de impressão. A qualidade da superfície da estrutura de suporte não é importante, uma vez que esta é removida após a impressão." +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Correção de Objectos (Mesh)" -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "A velocidade a que as camadas superiores do raft são impressas. Estas devem ser impressas um pouco mais devagar, para que o nozzle possa uniformizar lentamente as linhas adjacentes da superfície." +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Torne os objetos mais adequados para impressão 3D." -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "A velocidade com que as paredes internas da superfície superior são impressas." +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Unir Volumes Sobrepostos" -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "A velocidade com que as paredes mais externas da superfície superior são impressas." +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "Ignorar a geometria interna provocada pela sobreposição de volumes num objecto e imprime os volumes como um só. Pode provocar o desaparecimento indesejado de cavidades interiores." -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "A velocidade a que o movimento Z vertical é efetuado para Saltos Z. Este valor é geralmente inferior à velocidade de impressão, uma vez que é mais difícil mover a base de construção ou o pórtico da máquina." +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Remover Todos Buracos" -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "A velocidade a que as paredes são impressas." +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "Remove os buracos em cada camada e mantém apenas a forma exterior. Isto irá ignorar qualquer geometria interna invisível. No entanto, também ignora buracos de camadas que podem ser vistos por cima ou por baixo." -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "A velocidade da passagem do nozzle (engomar) sobre a superfície superior." +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Costura Extensiva" -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "A velocidade de retração do filamento para separá-lo de forma regular." +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "A costura extensiva tenta coser buracos abertos na malha, ao fechá-los com os polígonos adjacentes. Esta opção pode acrescentar bastante tempo de processamento." -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "A velocidade a que as camadas de revestimento da superfície superior são impressas." +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Manter Faces Soltas" -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "A velocidade a que as camadas superiores/inferiores são impressas." +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "Geralmente, o Cura tenta remendar pequenos buracos na malha e remover partes de uma camada com buracos grandes. Ativar esta opção conserva as peças que não podem ser remendadas. Esta opção deve ser utilizada como último recurso quando tudo o resto não produz um G-code adequado." -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "A velocidade a que os movimentos de deslocação são efetuados." +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Sobreposição Malhas Combinadas" -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "A velocidade de movimento durante a desaceleração, relativa à velocidade do caminho de extrusão. É recomendado um valor ligeiramente abaixo de 100%, uma vez que durante o movimento de desaceleração, a pressão no tubo Bowden diminui." +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "Faz com que as malhas em contacto se sobreponham ligeiramente. Isto melhora a sua ligação." -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "A velocidade da camada inicial. Recomenda-se um valor baixo para melhorar a aderência à base de construção. Não afeta as estruturas de aderência da base de construção propriamente ditas, como aba e raft." +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Remover interceção de malhas" -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "A velocidade de impressão da camada inicial. É recomendado um valor inferior para melhorar a aderência à base de construção." +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "Remover as áreas onde várias malhas se sobrepõem entre si. Isto pode ser utilizado se houver uma sobreposição dos objetos com diferentes materiais que estejam combinados." -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "A velocidade dos movimentos de deslocação na camada inicial. É recomendado um valor inferior para evitar que as peças anteriormente impressas sejam separadas da base de construção. O valor desta definição pode ser automaticamente calculado a partir da proporção entre a Velocidade de deslocação e a Velocidade de impressão." +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "Alternar remoção de malha" -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "A temperatura a que o filamento se quebra para uma separação regular." +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "Altera para os volumes de interceção de malha que pertencerão a cada camada, para que as malhas sobrepostas fiquem entrelaçadas. Desativar esta definição poderá fazer com que uma das malhas obtenha todo o volume na sobreposição, sendo removido das outras malhas." -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "A temperatura do ambiente para a impressão. Se este valor for 0, a temperatura do volume de construção não será ajustada." +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Remover Camadas Iniciais Vazias" -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "A temperatura do nozzle quando outro nozzle está a ser utilizado para a impressão." +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "Remove as camadas vazias por baixo da primeira camada impressa, se existirem. Desativar esta definição pode causar primeiras camadas vazias, se a definição Tolerância de Seccionamento estiver definida como Exclusivo ou Centro." -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "A temperatura à qual o arrefecimento é iniciado imediatamente antes do final da impressão." +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Resolução Máxima" -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer." -msgstr "A temperatura usada para imprimir a primeira camada." +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "O tamanho mínimo de um segmento após o seccionamento. Se aumentar este valor, a malha terá uma resolução menor. Isto poderá permitir que a impressora acompanhe a velocidade que tem para processar o G-code e irá aumentar a velocidade de seccionamento ao remover os detalhes da malha que não podem ser processados." -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "A temperatura utilizada para a impressão." +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Resolução Máxima Deslocação" -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "A temperatura utilizada para a base de construção aquecida na primeira camada. Se este valor for 0, a temperatura da base de construção não é aquecida durante a primeira camada." +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "O tamanho mínimo de um segmento de deslocação após o seccionamento. Se aumentar este valor, o movimento de deslocação nos cantos será menos suave. Isto poderá permitir que a impressora acompanhe a velocidade que tem para processar o G-code, mas pode reduzir a precisão do movimento ao evitar as peças já impressas." -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "A temperatura utilizada na base de construção aquecida. Se este valor for 0, a temperatura da base de construção não é aquecida." +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Desvio máximo" -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "A temperatura utilizada para purgar o material deve ser aproximadamente igual à temperatura de impressão mais alta possível." +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "O desvio máximo permitido ao reduzir a resolução da definição de Resolução máxima. Se aumentar esta definição, a impressão será menos precisa, mas o G-code será menor. O Desvio máximo é um limite para a Resolução máxima, pelo que, se estiverem em conflito, o Desvio máximo é sempre considerado verdadeiro." -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "A espessura total das camadas inferiores na impressão. Este valor, dividido pela Espessura das Camadas, define o número de camadas inferiores." +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Desvio máximo da área de extrusão" -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "A espessura do enchimento adicional que suporta as arestas do revestimento." +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "O desvio máximo da área de extrusão que é permitido quando se faz a remoção dos pontos intermédios de uma linha recta. Um ponto intermédio pode servir de ponto de alteração do diâmetro numa linha recta longa. Por isso, se for removido, fará com que a linha tenha um diâmetro uniforme e, como resultado, vai perder (ou ganhar) um pouco de área de extrusão. Se aumentar este valor, poderá notar um ligeiro excesso (ou defeito) de extrusão entre paredes paralelas retas, uma vez que os pontos de alteração dos diâmetros mais intermédios poderão ser removidos. A sua impressão será menos precisa, mas o G-code será mais pequeno." -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "A espessura da interface de suporte onde esta entra em contacto com o modelo na parte inferior ou superior." +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "Ativar o movimento fluido" -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "A espessura dos pisos de suporte. Isto controla o número de camadas densas que são impressas por cima de locais de um modelo no qual o suporte é apoiado." +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "Quando ativados, os percursos da ferramenta são corrigidos para impressoras com planeadores de movimento suave. Os pequenos movimentos que se desviam da direção do percurso da ferramenta geral são suavizados para melhorar a fluidez dos movimentos." -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "A espessura dos tectos de suporte. Isto controla a quantidade de camadas densas na parte superior do suporte na qual o modelo é apoiado." +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "Distância da alteração do movimento fluido" -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "A espessura total das camadas superiores na impressão. Este valor, dividido pela Espessura das Camadas, define o número de camadas superiores." +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Os pontos de distância são alterados para suavizar o percurso" -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "A espessura total das camadas superiores e inferiores na impressão. Este valor, dividido pela Espessura das Camadas, define o número de camadas superiores / inferiores." +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "Distância pequena do movimento fluido" -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "A espessura das paredes na direção horizontal. Este valor, dividido pelo diâmetro da linha de parede, define o número de paredes." +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Os pontos de distância são alterados para suavizar o percurso" -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "A espessura por camada de material de enchimento. Este valor deve ser sempre um múltiplo da Espessura das Camadas, ou será arredondado." +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "Ângulo do movimento fluido" -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "A espessura por camada de material de enchimento de suporte. Este valor deve ser sempre um múltiplo do valor da espessura das camadas. Caso contrário, será arredondado." +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "Se o segmento de um percurso de ferramenta se desviar mais do que este ângulo em relação ao movimento geral, o mesmo é suavizado." -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "O tipo de G-code a ser gerado." +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Modos Especiais" -msgctxt "material_type description" -msgid "The type of material used." -msgstr "" +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Formas não tradicionais de imprimir os seus modelos." + +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Sequência de impressão" -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "O volume que de outra forma iria escorrer. Geralmente, este valor deve ser próximo ao diâmetro cúbico do nozzle." +msgctxt "print_sequence description" +msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." +msgstr "Imprimir todos os modelos uma camada de cada vez ou aguardar que um modelo termine, antes de passar para o seguinte. O modo individual é possível se a) apenas uma extrusora estiver ativa, e b) todos os modelos estiverem separados de forma a que a cabeça de impressão se possa mover por entre todos os modelos, e em que altura destes seja inferior à distância entre o nozzle e os eixos X/Y." -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "A largura (direção X) da área de impressão." +msgctxt "print_sequence option all_at_once" +msgid "All at Once" +msgstr "Simultaneamente" -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "A largura da aba para imprimir na parte por baixo do suporte. Uma aba mais larga melhora a aderência à base de construção à custa de algum material adicional." +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "Individualmente" -msgctxt "interlocking_beam_width description" -msgid "The width of the interlocking structure beams." -msgstr "A largura das vigas da estrutura de interligação." +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Definir sequência de impressão manualmente" -msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "A largura da aba/base da torre de primagem. Uma base maior melhora a aderência à placa de construção, mas também reduz a área efetiva de impressão." +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "Permite-lhe ordenar a lista de modo a definir manualmente a sequência de impressão. O primeiro objeto na lista será imprimido primeiro." -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "A largura da torre de preparação." +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Objecto de Enchimento" -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "O diâmetro dentro da qual deve ser produzida vibração. É recomendado mantê-la abaixo do diâmetro da parede exterior, uma vez que as paredes interiores não são alteradas." +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "Utilize este objecto para modificar o enchimento de outros objectos com os quais se sobrepõe. Substitui as regiões de enchimento de outros objectos por regiões deste objecto. É recomendado imprimir este objecto apenas com uma Parede e sem Superfícies Superior/Inferior." -msgctxt "retraction_extrusion_window description" -msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." -msgstr "O intervalo no qual o número máximo de retrações é aplicado. Este valor deve ser aproximadamente o mesmo que o da Distância de Retração, de forma a limitar, efectivamente, o número de vezes que uma retração acontece na mesma área do filamento." +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "Classificação de processamento de malha" -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "A coordenada X da posição da torre de preparação." +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "Determina a prioridade desta malha para resolver a sobreposição de várias malhas de enchimento. As áreas com sobreposição de várias malhas de enchimento vão assumir as definições da malha com a prioridade mais alta. Uma malha de enchimento com uma prioridade superior irá modificar o enchimento das malhas de enchimento com uma prioridade inferior e também as malhas normais." -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "A coordenada Y da posição da torre de preparação." +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Malha de corte" -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "Existem malhas de suporte presentes no cenário. Esta definição é controlada pelo Cura." +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "Limita o volume desta malha para o interior de outras malhas. Pode utilizar esta opção para fazer com que determinadas áreas de uma malha sejam impressas com diferentes definições e com um extrusor distinta." -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "Isto controla a distância que o extrusor deve desacelerar imediatamente antes do início de uma parede de Bridge. Desacelerar antes do início de Bridge pode reduzir a pressão no nozzle e poderá produzir um vão mais liso." +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Molde" -msgctxt "raft_base_smoothing description" -msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "Imprime modelos como moldes, os quais podem ser fundidos de forma a obter um modelo que se assemelhe aos modelos da base de construção." -msgctxt "raft_interface_smoothing description" -msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Largura mínima do molde" -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Esta definição controla o nível do arredondamento dos cantos internos do contorno do raft. Os cantos internos são arredondados para um semicírculo com um raio igual ao valor aqui fornecido. Esta definição também remove buracos no contorno do raft que sejam menores que esse semicírculo." +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "A distância mínima entre o exterior do molde e o exterior do modelo." -msgctxt "raft_surface_smoothing description" -msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Altura do tecto do molde" -msgctxt "retraction_count_max description" -msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." -msgstr "Esta definição limita o número de retrações que ocorrem no intervalo mínimo de distância de extrusão. As retrações adicionais dentro deste intervalo serão ignoradas. Isto evita a retração repetida no mesmo filamento, uma vez que tal pode achatar o filamento e causar problemas de trituração." +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "A altura acima das partes horizontais do modelo em que deve imprimir o molde." -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "Isto irá criar uma parede em torno do modelo, que retém o ar (quente) e protege contra correntes de ar externas. Esta opção é especialmente útil para materiais que se deformam com facilidade." +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Ângulo do molde" -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "Diâmetro da Ponta do Ramo" +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "O ângulo da saliência das paredes exteriores criadas para o molde. 0° irá tornar o invólucro exterior do molde vertical, enquanto 90° fará com que o exterior do modelo siga o contorno do mesmo." -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "Para compensar a contração do material à medida que arrefece, o modelo será dimensionado com este fator na direção X/Y (horizontalmente)." +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Malha de suporte" -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "Para compensar a contração do material à medida que arrefece, o modelo será dimensionado com este fator na direção Z (verticalmente)." +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "Utilize esta malha para especificar áreas de suporte. Esta opção pode ser utilizada para gerar estruturas de suporte." -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "Para compensar a redução do material quando arrefece, o modelo vai ser dimensionado com este fator." +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Malha antissaliências" -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Camadas Superiores" +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "Utilize esta malha para especificar a parte do modelo que não deve ser detetada como saliência. Esta opção pode ser utilizada para remover estruturas de suporte indesejadas." -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Distância Expansão Revestimento Superior" +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Modo de superfície" -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Largura Remoção Revestimento Superior" +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "Tratar o modelo como um volume, apenas como uma superfície ou como volumes com superfícies soltas. O modo de impressão \"Normal\" imprime apenas volumes fechados. O modo \"Superfície\" imprime uma única parede que acompanha a superfície do objecto sem enchimento ou revestimento superior/inferior. O modo \"Ambos\" imprime volumes fechados como \"Normal\" e quaisquer polígonos soltos como superfícies." -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Aceleração da parede interna da superfície superior" +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Normal" -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Jerk da Parede Exterior da Superfície Superior" +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Superfície" -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Velocidade da parede interna da superfície superior" +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Ambos" -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Fluxo da parede interna da superfície superior" +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "\"Spiralize\" Contorno Exterior" -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Aceleração da parede externa da superfície superior" +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "\"Spiralize\" é uma opção que uniformiza o movimento em Z do contorno exterior. Isto irá criar uma elevação em Z, constante, em toda a peça. Esta funcionalidade transforma um modelo sólido numa impressão com uma única parede e com uma base sólida. Esta funcionalidade só deve ser ativada quando cada camada contiver apenas uma única peça." -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Fluxo da parede mais externa da superfície superior" +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "\"Spiralize\" Suavizar Contornos" -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Jerk das Paredes Interiores da Superfície Superior" +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "Suaviza os contornos, criados pelo \"Spiralize\", para reduzir a visibilidade da junta Z (a junta Z deve ser praticamente impercetível na impressão, mas continuará a ser visível na visualização por camadas). Tenha em conta que a suavização tenderá a reduzir/desfocar pequenos detalhes da superfície." -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Velocidade da parede mais externa da superfície superior" +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Extrusão relativa" -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Aceleração Revestimento Superior" +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "Utilizar a extrusão relativa em vez da extrusão absoluta. A utilização de passos-E relativos facilita o pós-processamento do G-code. Contudo, isto não é compatível com todas as impressoras e poderá produzir ligeiros desvios na quantidade de material depositado em comparação com os passos-E absolutos. Não considerando esta definição, o modo de extrusão será sempre definido como absoluto antes da exportação de qualquer script g-code." -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Extrusor Revestimento Superior" +msgctxt "experimental label" +msgid "Experimental" +msgstr "Experimental" -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Fluxo de Revestimento da Superfície Superior" +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Funcionalidades que ainda não foram totalmente lançadas." -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Jerk Revestimento Superior" +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Tolerância do Seccionamento" -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Camadas Revestimento Superior" +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "Tolerância vertical nas camadas seccionadas. Os contornos de uma camada são geralmente gerados passando as secções cruzadas através do centro de cada espessura da camada (Centro). Como alternativa, cada camada pode conter as áreas que se encontram no interior do volume ao longo de toda a espessura da camada (Exclusivo) ou uma camada pode conter as áreas que se encontram em qualquer sítio do interior da camada (Inclusivo). A opção Inclusivo retém o maior número de detalhes, a opção Exclusivo garante a melhor adaptação ao modelo e a opção Centro permanece próximo da superfície original." -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Direções Linha Revestimento Superior" +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Centro" -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Diâmetro Linha Revestimento Superior" +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Exclusivo" -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Padrão Revestimento Superior" +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Inclusivo" -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Velocidade Revestimento Superior" +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Optimização Deslocação Enchimento" + +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "Quando activado, a ordem, pela qual as linhas de enchimento são impressas, é optimizada para poder reduzir a distância percorrida. A redução do tempo total de deslocação depende de muitos factores tais como, o modelo que está a ser seccionado, o padrão de enchimento, a densidade, etc. Ter em atenção que para modelos que tenham muitas áreas pequenas de enchimento, o tempo de seccionamento pode aumentar consideravelmente." -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Espessura Superior" +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Gráfico de temperatura de fluxo" -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "O revestimento superior/inferior não será expandido, quando as superfícies superiores e/ou inferiores do objeto tiverem um ângulo maior que este valor. Isto evita a expansão das pequenas áreas de revestimento que são criadas quando a superfície do modelo tem uma inclinação quase vertical. Um ângulo de 0° é horizontal e fará com que nenhum revestimento seja expandido, enquanto um ângulo de 90° é vertical e fará com que todo o revestimento seja expandido." +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "Os dados que ligam o fluxo de material (em mm3 por segundo) à temperatura (graus Celsius)." -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Superior / Inferior" +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Circunferência Mínima do Polígono" -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Superior / Inferior" +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "Os polígonos em camadas seccionadas que apresentem uma circunferência mais pequena do que este valor serão filtrados. Valores mais reduzidos originam malhas de resolução superior à custa do tempo de seccionamento. Destina-se principalmente a impressoras SLA de alta resolução e a modelos 3D muito pequenos com muitos detalhes." -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Aceleração superior/inferior" +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "Gerar estrutura de interligação" -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Extrusor Superior / Inferior" +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "Nos locais onde os modelos tocam, gere uma estrutura de vigas interligadas. Isto melhora a adesão entre os modelos, especialmente os modelos impressos em materiais diferentes." -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Fluxo Superior/Inferior" +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "Largura do feixe de interligação" -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Jerk Superior/Inferior" +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "A largura das vigas da estrutura de interligação." -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Direções Linha Superior / Inferior" +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "Orientação da estrutura de interligação" -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Diâmetro Linha Superior / Inferior" +msgctxt "interlocking_orientation description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "A altura dos vigas da estrutura de interligação, medida em número de camadas. Menos camadas são mais fortes, mas mais propensas a defeitos." -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Padrão Superior / Inferior" +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "Contagem de camada de feixe de interligação" -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Velocidade Superior/Inferior" +msgctxt "interlocking_beam_layer_count description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "A altura das vigas da estrutura de interligação, medida em número de camadas. Menos camadas são mais fortes, mas mais propensas a defeitos." -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Espessura Superior / Inferior" +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "Profundidade de interligação" -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "A Tocar na base de construção" +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "A distância do limite entre modelos para gerar estrutura de interligação medida em células. Um pequeno número de células resultará numa fraca adesão." -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Diâmetro da torre" +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "Evitar a interligação de fronteiras" -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Ângulo do tecto da torre" +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "A distância do lado de fora de um modelo onde estruturas interligadas não serão geradas, medidas nas células." -msgctxt "mesh_rotation_matrix description" -msgid "Transformation matrix to be applied to the model when loading it from file." -msgstr "Matriz de transformação a ser aplicada ao modelo quando abrir o ficheiro." +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Separar Suportes em Blocos" -msgctxt "travel label" -msgid "Travel" -msgstr "Deslocação" +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "Ignorar algumas ligações das linhas de suporte para facilitar a separação da estrutura de suporte. Esta definição é aplicável ao padrão em Ziguezague do enchimento de suporte." -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Aceleração de deslocação" +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Tamanho do bloco de suporte" -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Distância para evitar peças durante a deslocação" +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "Omitir uma ligação entre as linhas de suporte a cada \"x\" milímetros para facilitar a separação da estrutura de suporte." -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Jerk de Deslocação" +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Número de linhas do bloco de suporte" -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Velocidade de deslocação" +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "Ignorar uma em cada \"x\" linhas de ligação para facilitar a separação da estrutura de suporte." -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "Tratar o modelo como um volume, apenas como uma superfície ou como volumes com superfícies soltas. O modo de impressão \"Normal\" imprime apenas volumes fechados. O modo \"Superfície\" imprime uma única parede que acompanha a superfície do objecto sem enchimento ou revestimento superior/inferior. O modo \"Ambos\" imprime volumes fechados como \"Normal\" e quaisquer polígonos soltos como superfícies." +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Barreira contra correntes de ar" -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Árvore" +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "Isto irá criar uma parede em torno do modelo, que retém o ar (quente) e protege contra correntes de ar externas. Esta opção é especialmente útil para materiais que se deformam com facilidade." -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Tri-Hexágono" +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Distância X/Y da proteção contra correntes de ar" -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "A distância da proteção contra correntes de ar relativamente à impressora nas direções X/Y." -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Limite de proteção contra correntes de ar" -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "Define a altura da proteção contra correntes de ar. Opte por imprimir a proteção contra correntes de ar com a altura máxima do modelo ou com uma altura limitada." -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Máximo" -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Limitado" -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "Diâmetro do Tronco" +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Altura da proteção contra correntes de ar" -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "Limite de altura da proteção contra correntes de ar. Não será impressa qualquer proteção contra correntes de ar acima desta altura." -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Unir Volumes Sobrepostos" +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Tornar Saliência Imprimível" -msgctxt "bridge_wall_min_length description" -msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." -msgstr "Paredes sem suporte com comprimento menor que este valor serão impressas utilizando as definições de parede normais. Paredes sem suporte mais longas serão impressas utilizando as definições da parede de Bridge." +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "Altera a geometria do modelo impresso de forma que seja necessário suporte mínimo. Saliências acentuadas tornar-se-ão saliências rasas. As áreas de saliências irão baixar para se tornarem mais verticais." -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Utilizar camadas adaptáveis" +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Ângulo máximo do modelo" -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Utilizar torres" +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "O ângulo máximo das saliências após se terem tornado imprimíveis. Com um valor de 0°, todas as saliências são substituídas por um modelo ligado à base de construção e, com um valor de 90°, o modelo não será alterado de forma alguma." -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "Utilizar uma taxa de aceleração separada para movimentos de viagem. Se desativados, os movimentos de viagem utilizarão o valor da aceleração da linha impressa no seu destino." +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Área máxima do buraco da saliência" -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "Utilizar uma taxa de jerk separada para movimentos de viagem. Se for desativado, os movimentos de viagem utilizarão o valor do jerk da linha impressa no seu destino." +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "A área máxima de um buraco na base do modelo antes que seja removido por Tornar Saliência Imprimível. Buracos mais pequenos do que este valor serão mantidos. Um valor de 0 mm² preencherá todos os buracos na base do modelo." -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "Utilizar a extrusão relativa em vez da extrusão absoluta. A utilização de passos-E relativos facilita o pós-processamento do G-code. Contudo, isto não é compatível com todas as impressoras e poderá produzir ligeiros desvios na quantidade de material depositado em comparação com os passos-E absolutos. Não considerando esta definição, o modo de extrusão será sempre definido como absoluto antes da exportação de qualquer script g-code." +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Ativar desaceleração" -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "Utilizar torres especializadas para suportar pequenas áreas de saliências. Estas torres têm um diâmetro maior do que a região que suportam. Junto às saliências, o diâmetro das torres diminui, criando um tecto." +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "\"Coasting\" substitui a última parte de um percurso de extrusão por um percurso de deslocamento. O material que escorreu é utilizado para imprimir a última parte do percurso de extrusão de forma a reduzir o surgimento de fios." -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "Utilize este objecto para modificar o enchimento de outros objectos com os quais se sobrepõe. Substitui as regiões de enchimento de outros objectos por regiões deste objecto. É recomendado imprimir este objecto apenas com uma Parede e sem Superfícies Superior/Inferior." +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Volume de desaceleração" -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "Utilize esta malha para especificar áreas de suporte. Esta opção pode ser utilizada para gerar estruturas de suporte." +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "O volume que de outra forma iria escorrer. Geralmente, este valor deve ser próximo ao diâmetro cúbico do nozzle." + +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Volume mínimo antes da desaceleração" -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "Utilize esta malha para especificar a parte do modelo que não deve ser detetada como saliência. Esta opção pode ser utilizada para remover estruturas de suporte indesejadas." +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "O menor volume que um caminho de extrusão deve ter antes de permitir a desaceleração. Para caminhos de extrusão mais curtos, é acumulada menos pressão no tubo Bowden e, como tal, o volume de desaceleração adota uma escala linear. Este valor deve sempre ser superior ao Volume de desaceleração." -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Definido pelo utilizador" +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Velocidade de desaceleração" -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Compensação de contração do fator de dimensionamento vertical" +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "A velocidade de movimento durante a desaceleração, relativa à velocidade do caminho de extrusão. É recomendado um valor ligeiramente abaixo de 100%, uma vez que durante o movimento de desaceleração, a pressão no tubo Bowden diminui." -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "Tolerância vertical nas camadas seccionadas. Os contornos de uma camada são geralmente gerados passando as secções cruzadas através do centro de cada espessura da camada (Centro). Como alternativa, cada camada pode conter as áreas que se encontram no interior do volume ao longo de toda a espessura da camada (Exclusivo) ou uma camada pode conter as áreas que se encontram em qualquer sítio do interior da camada (Inclusivo). A opção Inclusivo retém o maior número de detalhes, a opção Exclusivo garante a melhor adaptação ao modelo e a opção Centro permanece próximo da superfície original." +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Tamanho da bolsa de cruz 3D" -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Esperar pelo Aquecimento da Base de Construção" +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "O tamanho das bolsas em cruzamentos de quatro vias no padrão de cruz 3D em alturas onde o padrão está em contacto consigo próprio." -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Esperar pelo aquecimento do nozzle" +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Imagem Densidade Enchimento Cruz" -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Aceleração de parede" +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "A localização de uma imagem em que os valores de luminosidade desta determinam a densidade mínima na posição correspondente no enchimento da impressão." -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Número de paredes distribuídas" +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Imagem Densidade Suporte em Cruz" -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Extrusor Paredes" +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "A localização de uma imagem em que os valores de luminosidade desta determinam a densidade mínima na posição correspondente nos suportes." -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Fluxo da Parede" +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Ativar suporte cónico" -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Jerk das Paredes" +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "Torna as áreas de suporte mais reduzidas na parte inferior do que na saliência." -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Número Linhas Paredes" +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Ângulo do suporte cónico" -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Diâmetro Linha Parede" +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "O ângulo da inclinação do suporte cónico. 0 graus é vertical e 90 graus é horizontal. Ângulos mais reduzidos tornam o suporte mais robusto, mas consomem mais material. Ângulos negativos tornam a base do suporte mais larga do que a parte superior." -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Ordenação de paredes" +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Largura mínima do suporte cónico" -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Velocidade Paredes" +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "O diâmetro mínima para a qual a base da área do suporte cónico é reduzida. Larguras reduzidas podem originar estruturas de suporte instáveis." -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Espessura das Paredes" +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Revestimento Difuso" -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Comprimento de transição de paredes" +msgctxt "magic_fuzzy_skin_enabled description" +msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." +msgstr "Vibra aleatoriamente enquanto imprime a parede exterior, para que a superfície apresente um aspeto rugoso e difuso." -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Distância do filtro de transição de paredes" +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Revestimento difuso apenas no exterior" -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Margem do filtro de transição de paredes" +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "Vibrar apenas os contornos das peças e não os buracos das peças." -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Ângulo do limiar de transição de paredes" +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Espessura Revestimento Difuso" -msgctxt "shell label" -msgid "Walls" -msgstr "Paredes" +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "O diâmetro dentro da qual deve ser produzida vibração. É recomendado mantê-la abaixo do diâmetro da parede exterior, uma vez que as paredes interiores não são alteradas." -msgctxt "wall_overhang_angle description" -msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." -msgstr "As paredes com saliências que ultrapassem este ângulo serão impressas utilizando definições de parede de saliências. Quando o valor é 90, nenhuma parede é considerada como sendo uma saliência. As saliências suportadas por suporte também não serão consideradas como saliências." +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Densidade Revestimento Difuso" -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "Quando ativados, os percursos da ferramenta são corrigidos para impressoras com planeadores de movimento suave. Os pequenos movimentos que se desviam da direção do percurso da ferramenta geral são suavizados para melhorar a fluidez dos movimentos." +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "A densidade média dos pontos introduzidos em cada polígono numa camada. Observe que os pontos originais do polígono são eliminados, pelo que uma densidade baixa resulta numa redução da resolução." -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "Quando activado, a ordem, pela qual as linhas de enchimento são impressas, é optimizada para poder reduzir a distância percorrida. A redução do tempo total de deslocação depende de muitos factores tais como, o modelo que está a ser seccionado, o padrão de enchimento, a densidade, etc. Ter em atenção que para modelos que tenham muitas áreas pequenas de enchimento, o tempo de seccionamento pode aumentar consideravelmente." +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Distância do ponto de revestimento difuso" -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "Quando ativada, a velocidade da ventoinha de arrefecimento de impressão é alterada para as regiões de revestimento imediatamente acima do suporte." +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "A distância média entre os pontos aleatórios introduzidos em cada segmento de linha. Observe que os pontos originais do polígono são eliminados, pelo que uma suavidade elevada resulta numa redução da resolução. Este valor deve ser superior a metade da Espessura do revestimento difuso." -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "Quando ativado, as coordenadas da junta-Z são relativas ao centro de cada peça. Quando desativado, as coordenadas definem uma posição absoluta na base de construção." +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Desvio de extrusão máximo de compensação da taxa de fluxo" -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "Os movimentos de deslocação de Combing com uma distância maior que este valor, quando este é superior a zero, utilizam retrações. Se o valor for definido como zero, não existirá qualquer valor máximo e os movimentos Combing não utilizarão retrações." +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "A distância máxima em mm de deslocação do filamento para compensar alterações na taxa de fluxo." -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "Quando este valor for superior a zero, a Expansão Horizontal de Buraco é aplicada de forma progressiva nos buracos pequenos (os buracos pequenos serão mais expandidos). Com um valor de zero, a Expansão Horizontal de Buraco será aplicada a todos os buracos. Os buracos maiores que o Diâmetro Máximo de Expansão Horizontal de Buraco não serão expandidos." +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Fator de compensação da taxa de fluxo" -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "Quando superior a zero, a expansão horizontal de orifícios é o valor do desvio aplicado a todos os orifícios em cada camada. Os valores positivos aumentam a dimensão dos orifícios e os valores negativos reduzem a dimensão dos orifícios. Quando esta definição está ativa pode ser otimizada adicionalmente com o diâmetro máximo da expansão horizontal de orifícios." +msgctxt "flow_rate_extrusion_offset_factor description" +msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." +msgstr "Até que distância o filamento se deve mover para compensar as alterações na taxa de fluxo, como uma percentagem da distância que o filamento iria percorrer num segundo de extrusão." -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "Ao imprimir as regiões do revestimento de Bridge, a quantidade de material extrudido é multiplicada por este valor." +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Utilizar camadas adaptáveis" -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "Ao imprimir as paredes de Bridge, a quantidade de material extrudido é multiplicada por este valor." +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "Camadas Adaptáveis calcula as espessuras das camadas conforme a forma do modelo." -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Ao imprimir a segunda camada do revestimento de Bridge, a quantidade de material extrudido é multiplicada por este valor." +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "Variação máxima das camadas adaptáveis" -msgctxt "bridge_skin_material_flow_3 description" -msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Ao imprimir a terceira camada do revestimento de Bridge, a quantidade de material extrudido é multiplicada por este valor." +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "A diferença máxima de espessura permitida em relação ao valor base definido em Espessura das Camadas." -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "Quando a velocidade mínima for alcançada devido ao tempo mínimo por camada, elevar e afastar a cabeça da impressão e aguardar o tempo adicional até atingir o tempo mínimo por camada." +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "Tamanho da fase de variação das camadas adaptáveis" -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "Quando o modelo tem pequenos espaços verticais de apenas algumas camadas, deverá normalmente existir revestimento à volta dessas camadas no espaço estreito. Ative esta definição para não gerar revestimento se o espaço vertical for muito pequeno. Isto melhora o tempo de impressão e o tempo de seccionamento, mas deixa tecnicamente o enchimento exposto ao ar." +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "A diferença de espessura da camada seguinte em comparação com a anterior." -msgctxt "wall_transition_angle description" -msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." -msgstr "Quando devem ser criadas transições entre números pares e ímpares de paredes. Uma forma em cunha com um ângulo superior a esta definição não terá transições e nenhuma parede será impressa no centro para preencher o espaço restante. Reduzir esta definição reduz o número e o comprimento destas paredes centrais, mas pode deixar lacunas ou provocar um excesso de extrusão." +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "Dimensão da topografia das camadas adaptáveis" -msgctxt "wall_transition_length description" -msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." -msgstr "Quando uma peça fica mais fina e seja necessário haver uma transição entre um numero diferente de paredes, é reservado um espaço para se puder separar ou unir as linhas das paredes." +msgctxt "adaptive_layer_height_threshold description" +msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." +msgstr "Distância horizontal pretendida entre duas camadas adjacentes. Reduzir o valor desta definição faz com que camadas mais finas sejam utilizadas para juntar mais os contornos das camadas." -msgctxt "wipe_hop_enable description" -msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "Quando efetuar a limpeza, a base de construção é descida para criar um espaço entre o nozzle e a impressão. Impede o nozzle de atingir a impressão durante os movimentos de deslocação, reduzindo a possibilidade de derrubar a impressão da base de construção." +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Ângulo da parede de saliências" -msgctxt "retraction_hop_enabled description" -msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "Sempre que for efetuada uma retração, a base de construção é rebaixada para criar uma folga entre o nozzle e a impressão. Desta forma, evita-se que o nozzle atinja a impressão durante os movimentos de deslocação, reduzindo a probabilidade de derrubar a impressão da base de construção." +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." +msgstr "As paredes com saliências que ultrapassem este ângulo serão impressas utilizando definições de parede de saliências. Quando o valor é 90, nenhuma parede é considerada como sendo uma saliência. As saliências suportadas por suporte também não serão consideradas como saliências." -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "Se a Distância X/Y de suporte substitui a Distância Z de suporte ou vice-versa. Quando X/Y substitui Z, a distância X/Y pode afastar o suporte do modelo, influenciando a distância Z real relativamente às saliências. É possível desativar esta opção não aplicando a distância X/Y em torno das saliências." +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Velocidade da parede de saliências" -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "Se as coordenadas X/Y da posição zero (origem) da impressora são o centro da área de impressão." +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "As paredes de saliências serão impressas a esta percentagem da sua velocidade de impressão normal." -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "Se o endstop do eixo X está no sentido positivo (coordenada X superior) ou negativo (coordenada X inferior)." +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Ativar Definições de Bridge" + +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "Detetar vãos (bridges) e modificar as definições da velocidade de impressão, do fluxo e da ventoinha durante a impressão de vãos ou saliências." -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "Se o endstop do eixo Y está no sentido positivo (coordenada Y superior) ou negativo (coordenada Y inferior)." +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Comprimento mínimo da parede de Bridge" -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "Se o endstop do eixo Z está no sentido positivo (coordenada Z superior) ou negativo (coordenada Z inferior)." +msgctxt "bridge_wall_min_length description" +msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." +msgstr "Paredes sem suporte com comprimento menor que este valor serão impressas utilizando as definições de parede normais. Paredes sem suporte mais longas serão impressas utilizando as definições da parede de Bridge." -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "Se, as extrusoras partilham um único aquecedor em vez de cada extrusora ter o seu próprio aquecedor." +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Limiar do suporte do revestimento de Bridge" -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "Se as extrusoras partilham um único bocal, em vez de cada extrusora ter um bocal próprio. Quando definido como verdadeiro, espera-se que o script gcode de arranque da impressora configure corretamente todas as extrusoras num estado de retração inicial conhecido e mutuamente compatível (seja zero ou um filamento não retraído); nesse caso, o estado de retração inicial é descrito, por extrusora, pelo parâmetro 'machine_extruders_shared_nozzle_initial_retraction'." +msgctxt "bridge_skin_support_threshold description" +msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." +msgstr "Se uma região de revestimento for suportada por menos do que esta percentagem da sua área, imprima-a utilizando as definições de Bridge. Caso contrário, será impressa utilizando as definições de revestimento normais." -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "Se a máquina tem ou não uma base de construção aquecida." +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Densidade Máx. Enchimento Disperso de Bridge" -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "Se a máquina consegue ou não estabilizar a temperatura do volume de construção." +msgctxt "bridge_sparse_infill_max_density description" +msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." +msgstr "Densidade máxima do enchimento considerado como disperso. O revestimento sobre o enchimento disperso não é considerado como ter suportes, pelo que pode ser tratado como um revestimento de Bridge." -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "Permite centrar o objeto no centro da base de construção (0,0), em vez de utilizar o sistema de coordenadas no qual o objeto foi guardado." +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Desaceleração da parede de Bridge" -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "Controlar ou não a temperatura a partir do Cura. Desative esta opção para controlar a temperatura do nozzle a partir de fora do Cura." +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "Isto controla a distância que o extrusor deve desacelerar imediatamente antes do início de uma parede de Bridge. Desacelerar antes do início de Bridge pode reduzir a pressão no nozzle e poderá produzir um vão mais liso." -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "Incluir ou não os comandos de temperatura da base de construção no início do gcode. Se o gcode_inicial já incluir os comandos de temperatura da base de construção, o front-end do Cura desativará automaticamente esta definição." +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Velocidade da parede de Bridge" -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "Incluir ou não os comandos de temperatura do nozzle no início do G-code. Se o gcode_inicial já incluir os comandos de temperatura do nozzle, o front-end do Cura desativará automaticamente esta definição." +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "A velocidade a que as paredes de Bridge são impressas." -msgctxt "clean_between_layers description" -msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." -msgstr "Se, se deve incluir o G-Code para a limpeza do nozzle entre camadas (máximo de 1 por camada). Ativar esta definição pode influenciar o comportamento da retração na mudança da camada. Utilize as definições da Retração de Limpeza para controlar a retração em camadas onde o script de limpeza estará a funcionar." +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Fluxo da parede de Bridge" -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "Introduzir ou não um comando para esperar até que a temperatura da base de construção seja atingida durante o arranque." +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "Ao imprimir as paredes de Bridge, a quantidade de material extrudido é multiplicada por este valor." -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "Preparar, ou não, o filamento com um \"blob\" (borrão) antes da impressão. Ativar esta definição irá assegurar que o extrusor terá material disponível no nozzle ao iniciar a impressão. Imprimir com Aba ou Contorno também pode actuar como preparação do filamento, e nesses casos, desativar esta definição permite poupar algum tempo." +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Velocidade do revestimento de Bridge" -msgctxt "print_sequence description" -msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -msgstr "Imprimir todos os modelos uma camada de cada vez ou aguardar que um modelo termine, antes de passar para o seguinte. O modo individual é possível se a) apenas uma extrusora estiver ativa, e b) todos os modelos estiverem separados de forma a que a cabeça de impressão se possa mover por entre todos os modelos, e em que altura destes seja inferior à distância entre o nozzle e os eixos X/Y." +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "A velocidade a que as regiões do revestimento de Bridge são impressas." -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "Mostrar ou não as diferentes variantes desta máquina, as quais são descritas em ficheiros json separados." +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Fluxo do revestimento de Bridge" -msgctxt "machine_firmware_retract description" -msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." -msgstr "Se se deve utilizar os comandos de retração do firmware (G10/G11), em vez da propriedade E dos comandos G1, para realizar a retração do material." +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "Ao imprimir as regiões do revestimento de Bridge, a quantidade de material extrudido é multiplicada por este valor." -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "Esperar ou não até que a temperatura do nozzle seja atingida durante o arranque." +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Densidade do revestimento de Bridge" -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "O diâmetro de uma única linha de enchimento." +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "A densidade da camada do revestimento de Bridge. Valores inferiores a 100 irão aumentar as folgas entre as linhas revestimento." -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "O diâmetro de uma única linha do chão ou tecto de suporte." +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Velocidade da ventoinha de Bridge" -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "O diâmetro de uma única linha das superfícies de revestimento na parte superior da impressão." +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "Percentagem da velocidade da ventoinha a utilizar ao imprimir o revestimento e as paredes de Bridge." -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "O diâmetro (largura) de uma única linha. Normalmente, o diâmetro de cada linha deve corresponder ao diâmetro do nozzle. No entanto, reduzir ligeiramente este valor pode produzir melhores impressões." +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Bridge com múltiplas camadas" -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "O diâmetro de uma única linha da torre de preparação." +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "Se ativada, a segunda e a terceira camada sobre o ar são impressas utilizando as seguintes definições. Caso contrário, essas camadas são impressas utilizando as definições normais." -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "O diâmetro de uma única linha do contorno ou da aba." +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Velocidade do segundo revestimento de Bridge" -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "O diâmetro de uma única linha do piso de suporte." +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "Velocidade de impressão a ser utilizada ao imprimir a segunda camada do revestimento de Bridge." -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "O diâmetro de uma única linha do tecto de suporte." +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Fluxo do segundo revestimento de Bridge" -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "O diâmetro de uma única linha da estrutura de suporte." +msgctxt "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Ao imprimir a segunda camada do revestimento de Bridge, a quantidade de material extrudido é multiplicada por este valor." -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "O diâmetro de uma única linha das superfícies superior/inferior." +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Densidade do segundo revestimento de Bridge" -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "O diâmetro de uma única linha de parede para todas as linhas de parede excepto a mais exterior." +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "A densidade da segunda camada do revestimento de Bridge. Valores inferiores a 100 irão aumentar as folgas entre as linhas revestimento." -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "O diâmetro de uma única linha de parede." +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Velocidade da ventoinha do segundo revestimento de Bridge" -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "O diâmetro das linhas na camada inferior (base) do raft. Devem ser linhas espessas para auxiliar na aderência à base de construção." +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "Percentagem da velocidade da ventoinha a ser utilizada ao imprimir a segunda camada do revestimento de Bridge." -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "O diâmetro das linhas na camada do meio do raft. Extrudir mais a segunda camada provoca a aderência das linhas à base de construção." +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Velocidade do terceiro revestimento de Bridge" -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "O diâmetro das linhas da superfície superior do raft. Estas podem ser linhas finas para que a parte superior do raft seja uniforme e liso." +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "Velocidade de impressão a ser utilizada ao imprimir a terceira camada do revestimento de Bridge." -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "O diâmetro da linha de parede mais exterior. Ao reduzir este valor, é possível imprimir com maior nível de detalhe." +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Fluxo do terceiro revestimento de Bridge" -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "Diâmetro da parede que substituirá elementos finos (de acordo com o Tamanho mínimo do elemento) do modelo. Se o Diâmetro mínimo de linha da parede for mais fino do que a espessura do elemento, a parede tornar-se-á tão espessa como o próprio elemento." +msgctxt "bridge_skin_material_flow_3 description" +msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Ao imprimir a terceira camada do revestimento de Bridge, a quantidade de material extrudido é multiplicada por este valor." -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "Posição X da escova de limpeza" +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Densidade do terceiro revestimento de Bridge" -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Velocidade do salto de limpeza" +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "A densidade da terceira camada do revestimento de Bridge. Valores inferiores a 100 irão aumentar as folgas entre as linhas revestimento." -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "Limpar nozzle inativo na torre de preparação" +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Velocidade da ventoinha do terceiro revestimento de Bridge" -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Distância do movimento de limpeza" +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "Percentagem da velocidade da ventoinha a ser utilizada ao imprimir a terceira camada do revestimento de Bridge." msgctxt "clean_between_layers label" msgid "Wipe Nozzle Between Layers" msgstr "Limpar nozzle entre camadas" -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Pausa na limpeza" +msgctxt "clean_between_layers description" +msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." +msgstr "Se, se deve incluir o G-Code para a limpeza do nozzle entre camadas (máximo de 1 por camada). Ativar esta definição pode influenciar o comportamento da retração na mudança da camada. Utilize as definições da Retração de Limpeza para controlar a retração em camadas onde o script de limpeza estará a funcionar." -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Contagem de repetições de limpeza" +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Volume de material entre limpezas" -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Distância de retração da limpeza" +msgctxt "max_extrusion_before_wipe description" +msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." +msgstr "Quantidade máxima de material que pode ser extrudido antes de ser iniciada outra limpeza do nozzle. Se este valor for inferior ao volume do material necessário numa camada, esta definição não tem qualquer influência nessa camada, ou seja, está limitada a uma limpeza por camada." msgctxt "wipe_retraction_enable label" msgid "Wipe Retraction Enable" msgstr "Retração de limpeza ativada" +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Retrai o filamento quando o nozzle está em movimento numa área sem impressão." + +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Distância de retração da limpeza" + +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "Quantidade de filamento a retrair para não escorrer durante a sequência de limpeza." + msgctxt "wipe_retraction_extra_prime_amount label" msgid "Wipe Retraction Extra Prime Amount" msgstr "Quantidade de preparação adicional de retração de limpeza" -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Velocidade de preparação da retração de limpeza" +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "Pode ocorrer escorrimento de material durante um movimento de deslocação de limpeza, o qual pode ser compensado aqui." + +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Velocidade de retração de limpeza" + +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "A velocidade a que o filamento é retraído e preparado durante um movimento de retração de limpeza." msgctxt "wipe_retraction_retract_speed label" msgid "Wipe Retraction Retract Speed" msgstr "Velocidade de retração na retração de limpeza" -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Velocidade de retração de limpeza" +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "A velocidade a que o filamento é retraído durante um movimento de retração de limpeza." + +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Velocidade de preparação da retração de limpeza" + +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "A velocidade a que o filamento é preparado durante um movimento de retração de limpeza." + +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Pausa na limpeza" + +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Coloca a limpeza em pausa após anular a retração." msgctxt "wipe_hop_enable label" msgid "Wipe Z Hop" msgstr "Salto Z de limpeza" +msgctxt "wipe_hop_enable description" +msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "Quando efetuar a limpeza, a base de construção é descida para criar um espaço entre o nozzle e a impressão. Impede o nozzle de atingir a impressão durante os movimentos de deslocação, reduzindo a possibilidade de derrubar a impressão da base de construção." + msgctxt "wipe_hop_amount label" msgid "Wipe Z Hop Height" msgstr "Altura do salto Z de limpeza" -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "No Enchimento" +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "A diferença de altura ao efetuar um salto Z." -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "Escreva a ferramenta ativa depois de enviar comandos temporários para a ferramenta inativa. Necessário para Extrusora Dupla com Smoothie ou outro firmware com comandos de ferramentas modais." +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Velocidade do salto de limpeza" -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "Endstop X no Sentido Positivo" +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "Velocidade para mover o eixo Z durante o salto." + +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "Posição X da escova de limpeza" msgctxt "wipe_brush_pos_x description" msgid "X location where wipe script will start." msgstr "Localização X onde o script de limpeza será iniciado." -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y substitui Z" +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Contagem de repetições de limpeza" -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Endstop Y no Sentido Positivo" +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "Número de vezes que o nozzle deve ser passado pela escova." -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Endstop Z no Sentido Positivo" +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Distância do movimento de limpeza" -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Salto Z após mudança extrusor" +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "A distância de deslocação da cabeça para trás e para a frente pela escova." -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Altura do salto Z após mudança do extrusor" +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Tamanho máximo do buraco pequeno" -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Altura do salto Z" +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "Os buracos e os contornos das peças com um diâmetro inferior a este valor serão impressos à Velocidade de elemento pequeno." -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Salto Z apenas sobre as peças impressas" +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Comprimento máximo do elemento pequeno" -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Velocidade do Salto Z" +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "Os contornos do elemento com um comprimento inferior a este serão impressos à Velocidade de elemento pequeno." -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Salto Z ao retrair" +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Velocidade de elemento pequeno" -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Alinhamento da Junta-Z" +msgctxt "small_feature_speed_factor description" +msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "Os elementos pequenos serão impressos a esta percentagem da respetiva velocidade de impressão normal. Uma impressão mais lenta pode ajudar em termos de aderência e precisão." -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Posição da Junta-Z" +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Velocidade da camada inicial de partes pequenas" -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Relativo à Junta-Z" +msgctxt "small_feature_speed_factor_0 description" +msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "Os elementos pequenos na primeira camada serão impressos a esta percentagem da respetiva velocidade de impressão normal. Uma impressão mais lenta pode ajudar em termos de aderência e precisão." -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "X da Junta-Z" +msgctxt "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "Direções de parede alternadas" -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Y da Junta-Z" +msgctxt "material_alternate_walls description" +msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." +msgstr "Alterne as inserções e as direções das parede em camadas em cada camada. Útil para materiais que podem acumular tensão, como para a impressão de metal." -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z substitui X/Y" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Agrupar as paredes externas" -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "As paredes externas de diferentes ilhas na mesma camada são impressas em sequência. Quando habilitado, a quantidade de mudanças no fluxo é limitada porque as paredes são impressas um tipo de cada vez; quando desabilitado, o número de deslocamentos entre ilhas é reduzido porque as paredes nas mesmas ilhas são agrupadas." -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "Comunicação do processo de impressão" -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "Eventos de comunicação que ultrapassam os limites definidos" -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "Permitir comunicação do processo de impressão" -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "Permitir comunicação do processo de impressão para definir valores limite para possível deteção de falhas." -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "Aviso de fluxo" -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "Limite sobre o aviso de fluxo para deteção." -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "Limite de fluxo" -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "Limite sobre a anomalia de fluxo para deteção." -msgctxt "travel description" -msgid "travel" -msgstr "deslocação" +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "Aviso de temperatura de impressão" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "Limite sobre o aviso de temperatura de impressão para deteção." -#~ msgctxt "brim_inside_margin description" -#~ msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -#~ msgstr "Uma peça totalmente fechada dentro de outra peça pode gerar uma aba externa que toca a parte interna da outra peça. Isto remove todas as bordas dentro dessa distância dos orifícios internos." +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "Limite da temperatura de impressão" -#~ msgctxt "user_defined_print_order_enabled description" -#~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." -#~ msgstr "Permite ordenar a lista de objetos para definir a sequência de impressão manualmente. O primeiro objeto da lista será impresso primeiro." +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "Limite sobre a anomalia de temperatura de impressão para deteção." -#~ msgctxt "brim_inside_margin label" -#~ msgid "Brim Inside Avoid Margin" -#~ msgstr "Borda interna evitar margem" +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "Aviso de temperatura do volume de construção" -#~ msgctxt "brim_outside_only label" -#~ msgid "Brim Only on Outside" -#~ msgstr "Aba Apenas no Exterior" +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "Limite sobre o aviso de temperatura do volume de construção para deteção." -#~ msgctxt "gradual_flow_discretisation_step_size description" -#~ msgid "Duration of each step in the gradual flow change" -#~ msgstr "Duração de cada etapa da alteração do fluxo gradual" +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "Limite de temperatura do volume de construção" -#~ msgctxt "gradual_flow_enabled description" -#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -#~ msgstr "Permite alterar gradualmente o fluxo. Quando ativado, o fluxo é gradualmente aumentado/diminuído até atingir o fluxo-alvo. Esta funcionalidade é útil para impressoras com um tubo Bowden, onde o fluxo não é alterado imediatamente quando o motor extusor para/arranca." +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "Limite sobre a anomalia de temperatura do volume de construção para deteção." -#~ msgctxt "reset_flow_duration description" -#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -#~ msgstr "Para qualquer movimento de deslocação superior a este valor, o fluxo de material é reposto para o fluxo de destino do percurso." +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Definições de linha de comando" -#~ msgctxt "gradual_flow_discretisation_step_size label" -#~ msgid "Gradual flow discretisation step size" -#~ msgstr "Tamanho da etapa de discretização do fluxo gradual" +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "Definições que só são utilizadas se o CuraEngine não for ativado a partir do front-end do Cura." -#~ msgctxt "gradual_flow_enabled label" -#~ msgid "Gradual flow enabled" -#~ msgstr "Fluxo gradual ativado" +msgctxt "center_object label" +msgid "Center Object" +msgstr "Centrar Objeto" -#~ msgctxt "max_flow_acceleration label" -#~ msgid "Gradual flow max acceleration" -#~ msgstr "Aceleração máxima do fluxo gradual" +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "Permite centrar o objeto no centro da base de construção (0,0), em vez de utilizar o sistema de coordenadas no qual o objeto foi guardado." -#~ msgctxt "layer_0_max_flow_acceleration label" -#~ msgid "Initial layer max flow acceleration" -#~ msgstr "Aceleração do fluxo máximo da camada inicial" +msgctxt "mesh_position_x label" +msgid "Mesh Position X" +msgstr "Posição X do Objeto" -#~ msgctxt "layer_0_z_overlap description" -#~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -#~ msgstr "Sobrepor, na direção Z, a primeira e a segunda camadas do modelo para compensar o filamento perdido na caixa de ar. O valor da distância com que todos os modelos acima da primeira camada do modelo serão deslocados para baixo." +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "Desvio aplicado ao objeto na direção X." -#~ msgctxt "max_flow_acceleration description" -#~ msgid "Maximum acceleration for gradual flow changes" -#~ msgstr "Aceleração máxima para alterações do fluxo gradual" +msgctxt "mesh_position_y label" +msgid "Mesh Position Y" +msgstr "Posição Y do Objeto" -#~ msgctxt "layer_0_max_flow_acceleration description" -#~ msgid "Minimum speed for gradual flow changes for the first layer" -#~ msgstr "Velocidade mínima para alterações do fluxo gradual da primeira camada" +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "Desvio aplicado ao objeto na direção Y." -#~ msgctxt "brim_outside_only description" -#~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -#~ msgstr "Imprimir a aba apenas no exterior do modelo. Isto reduz a quantidade de abas a remover posteriormente, e ao mesmo tempo não reduz assim tanto a aderência à base." +msgctxt "mesh_position_z label" +msgid "Mesh Position Z" +msgstr "Posição Z do Objeto" -#~ msgctxt "reset_flow_duration label" -#~ msgid "Reset flow duration" -#~ msgstr "Repor duração do fluxo" +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "Desvio aplicado ao objeto na direção Z. Com esta opção, é possível realizar o que se costumava designar como \"Afundamento de objetos\"." -#~ msgctxt "support_interface_skip_height label" -#~ msgid "Support Interface Resolution" -#~ msgstr "Resolução Interface Suporte" +msgctxt "mesh_rotation_matrix label" +msgid "Mesh Rotation Matrix" +msgstr "Matriz Rotação do Objeto" -#~ msgctxt "support_interface_skip_height description" -#~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -#~ msgstr "Ao verificar os locais onde existe modelo por cima e por baixo do suporte, tome as medidas necessárias de acordo com a altura determinada. Os valores mais reduzidos irão seccionar mais lentamente, enquanto os valores mais elevados podem fazer com que o suporte normal seja impresso em alguns locais onde deveria existir uma interface de suporte." +msgctxt "mesh_rotation_matrix description" +msgid "Transformation matrix to be applied to the model when loading it from file." +msgstr "Matriz de transformação a ser aplicada ao modelo quando abrir o ficheiro." diff --git a/resources/i18n/pt_PT/gradual_flow_settings.def.json.po b/resources/i18n/pt_PT/gradual_flow_settings.def.json.po index 363b0994aa1..f1513e114cd 100644 --- a/resources/i18n/pt_PT/gradual_flow_settings.def.json.po +++ b/resources/i18n/pt_PT/gradual_flow_settings.def.json.po @@ -1,54 +1,53 @@ -# msgid "" msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: 2024-03-11 11:28+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: en\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" - msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" msgstr "Gradual flow max acceleration" -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" - msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" msgstr "Maximum acceleration for gradual flow changes" +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" msgstr "Minimum speed for gradual flow changes for the first layer" +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + msgctxt "reset_flow_duration label" msgid "Reset flow duration" msgstr "Reset flow duration" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" diff --git a/resources/i18n/ru_RU/cura.po b/resources/i18n/ru_RU/cura.po index 238063e01ec..c437f3b4704 100644 --- a/resources/i18n/ru_RU/cura.po +++ b/resources/i18n/ru_RU/cura.po @@ -12,7 +12,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" msgstr "%(width).1f x %(depth).1f x %(height).1f мм" @@ -25,6 +24,7 @@ msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 из %2" +#, fuzzy msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" @@ -33,6 +33,7 @@ msgstr[1] "%1 перекрыто" msgstr[2] "%1 перекрыто" msgstr[3] "" +#, fuzzy msgctxt "@action:label" msgid "%1, %2 override" msgid_plural "%1, %2 overrides" @@ -123,7 +124,7 @@ msgstr "&Сохранить проект..." msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" msgid "&Save Universal Cura Project..." -msgstr "" +msgstr "&Сохранить Universal Cura Project..." msgctxt "@title:menu menubar:toplevel" msgid "&Settings" @@ -146,13 +147,9 @@ msgid "*You will need to restart the application for these changes to have effec msgstr "*Для применения данных изменений вам потребуется перезапустить приложение." msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "" -"- Добавляйте настройки материалов и плагины из Marketplace \n" -" - Выполняйте резервное копирование и синхронизацию своих настроек материалов и плагинов \n" +msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgstr "- Добавляйте настройки материалов и плагины из Marketplace " +" - Выполняйте резервное копирование и синхронизацию своих настроек материалов и плагинов " " - Делитесь идеями и получайте помощь от 48 000 пользователей в сообществе Ultimaker" msgctxt "@heading" @@ -179,14 +176,6 @@ msgctxt "@item:inlistbox" msgid "3MF File" msgstr "Файл 3MF" -msgctxt "name" -msgid "3MF Reader" -msgstr "Чтение 3MF" - -msgctxt "name" -msgid "3MF Writer" -msgstr "Запись 3MF" - msgctxt "@error:zip" msgid "3MF Writer plug-in is corrupt." msgstr "Подключаемый модуль для записи 3MF поврежден." @@ -207,62 +196,44 @@ msgctxt "@label %i will be replaced with a profile name" msgid "Only user changed settings will be saved in the custom profile.
                                      For materials that support it, the new custom profile will inherit properties from %1." msgstr "В пользовательском профиле будут сохранены только измененные пользователем настройки.
                                      Для поддерживающих его материалов новый пользовательский профиль будет наследовать свойства от %1." -#, python-brace-format msgctxt "@label OpenGL renderer" msgid "
                                    • OpenGL Renderer: {renderer}
                                    • " msgstr "
                                    • Средство визуализации OpenGL: {renderer}
                                    • " -#, python-brace-format msgctxt "@label OpenGL vendor" msgid "
                                    • OpenGL Vendor: {vendor}
                                    • " msgstr "
                                    • Поставщик OpenGL: {vendor}
                                    • " -#, python-brace-format msgctxt "@label OpenGL version" msgid "
                                    • OpenGL Version: {version}
                                    • " msgstr "
                                    • Версия OpenGL: {version}
                                    • " msgctxt "@label crash message" -msgid "" -"

                                      A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

                                      \n" -"

                                      Please use the \"Send report\" button to post a bug report automatically to our servers

                                      \n" -" " -msgstr "" -"

                                      В Cura возникла критическая ошибка. Отправьте нам этот отчет о сбое для устранения проблемы

                                      \n" -"

                                      Нажмите кнопку «Отправить отчет», чтобы автоматически опубликовать отчет об ошибке на наших серверах

                                      \n" +msgid "

                                      A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

                                      \n

                                      Please use the \"Send report\" button to post a bug report automatically to our servers

                                      \n " +msgstr "

                                      В Cura возникла критическая ошибка. Отправьте нам этот отчет о сбое для устранения проблемы

                                      " +"

                                      Нажмите кнопку «Отправить отчет», чтобы автоматически опубликовать отчет об ошибке на наших серверах

                                      " " " msgctxt "@label crash message" -msgid "" -"

                                      Oops, UltiMaker Cura has encountered something that doesn't seem right.

                                      \n" -"

                                      We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

                                      \n" -"

                                      Backups can be found in the configuration folder.

                                      \n" -"

                                      Please send us this Crash Report to fix the problem.

                                      \n" -" " -msgstr "" -"

                                      В ПО UltiMaker Cura обнаружена ошибка.

                                      \n" -"

                                      Во время запуска обнаружена неустранимая ошибка. Возможно, она вызвана некоторыми файлами конфигурации с неправильными данными. Рекомендуется создать резервную копию конфигурации и сбросить ее.

                                      \n" -"

                                      Резервные копии хранятся в папке конфигурации.

                                      \n" -"

                                      Отправьте нам этот отчет о сбое для устранения проблемы.

                                      \n" +msgid "

                                      Oops, UltiMaker Cura has encountered something that doesn't seem right.

                                      \n

                                      We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

                                      \n

                                      Backups can be found in the configuration folder.

                                      \n

                                      Please send us this Crash Report to fix the problem.

                                      \n " +msgstr "

                                      В ПО UltiMaker Cura обнаружена ошибка.

                                      " +"

                                      Во время запуска обнаружена неустранимая ошибка. Возможно, она вызвана некоторыми файлами конфигурации с неправильными данными. Рекомендуется создать резервную копию конфигурации и сбросить ее.

                                      " +"

                                      Резервные копии хранятся в папке конфигурации.

                                      " +"

                                      Отправьте нам этот отчет о сбое для устранения проблемы.

                                      " " " -#, python-brace-format msgctxt "@info:status" -msgid "" -"

                                      One or more 3D models may not print optimally due to the model size and material configuration:

                                      \n" -"

                                      {model_names}

                                      \n" -"

                                      Find out how to ensure the best possible print quality and reliability.

                                      \n" -"

                                      View print quality guide

                                      " -msgstr "" -"

                                      Одна или несколько 3D-моделей могут не напечататься оптимальным образом из-за размера модели и конфигурации материала:

                                      \n" -"

                                      {model_names}

                                      \n" -"

                                      Узнайте, как обеспечить максимально возможное качество и высокую надежность печати.

                                      \n" +msgid "

                                      One or more 3D models may not print optimally due to the model size and material configuration:

                                      \n

                                      {model_names}

                                      \n

                                      Find out how to ensure the best possible print quality and reliability.

                                      \n

                                      View print quality guide

                                      " +msgstr "

                                      Одна или несколько 3D-моделей могут не напечататься оптимальным образом из-за размера модели и конфигурации материала:

                                      " +"

                                      {model_names}

                                      " +"

                                      Узнайте, как обеспечить максимально возможное качество и высокую надежность печати.

                                      " "

                                      Ознакомиться с руководством по качеству печати

                                      " msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" msgstr "Выполняется печать через USB, закрытие Cura остановит эту печать. Вы уверены?" +#, fuzzy msgctxt "info:status" msgid "A cloud connection is not available for a printer" msgid_plural "A cloud connection is not available for some printers" @@ -273,7 +244,7 @@ msgstr[3] "" msgctxt "@text" msgid "A highly dense and strong part but at a slower print time. Great for functional parts." -msgstr "" +msgstr "Очень плотная и прочная деталь, но печать требует более медленного времени. Отлично подходит для функциональных деталей." msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." @@ -283,10 +254,6 @@ msgctxt "@item:inlistbox" msgid "AMF File" msgstr "Файл AMF" -msgctxt "name" -msgid "AMF Reader" -msgstr "Средство чтения AMF" - msgctxt "@label" msgid "Abort" msgstr "Прервать" @@ -323,10 +290,6 @@ msgctxt "@button" msgid "Accept" msgstr "Принять" -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Принимает G-Code и отправляет его на принтер. Плагин также может обновлять прошивку." - msgctxt "@label" msgid "Account synced" msgstr "Учетная запись синхронизирована" @@ -419,7 +382,6 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Добавить принтер вручную" -#, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "Добавление принтера {name} ({model}) из вашей учетной записи" @@ -460,7 +422,6 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Все файлы (*)" -#, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "Все поддерживаемые типы ({0})" @@ -469,10 +430,6 @@ msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "Разрешить отправку анонимных данных" -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Позволяет загружать и отображать файлы G-code." - msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Всегда спрашивать меня" @@ -511,7 +468,7 @@ msgstr "Анонимн" msgctxt "@option:radio" msgid "Anonymous crash reports" -msgstr "" +msgstr "Анонимные отчеты о сбоях" msgctxt "@label Description for application component" msgid "Application framework" @@ -519,7 +476,7 @@ msgstr "Фреймворк приложения" msgctxt "@title:column" msgid "Applies on" -msgstr "" +msgstr "Applies on" msgctxt "@label" msgid "Apply Extruder offsets to GCode" @@ -553,7 +510,6 @@ msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to move %1 to the top of the queue?" msgstr "Вы уверены, что хотите переместить %1 в начало очереди?" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "Действительно удалить {printer_name} временно?" @@ -566,7 +522,6 @@ msgctxt "@label (%1 is object name)" msgid "Are you sure you wish to remove %1? This cannot be undone!" msgstr "Вы уверены, что желаете удалить %1? Это нельзя будет отменить!" -#, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "Действительно удалить {0}? Это действие невозможно будет отменить!" @@ -631,10 +586,6 @@ msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Резервное копирование и сброс конфигурации" -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Резервное копирование и восстановление конфигурации." - msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "Выполняйте резервное копирование и синхронизацию своих настроек материалов и плагинов" @@ -709,7 +660,7 @@ msgstr "Вычислено" msgctxt "@window:text" msgid "Camera navigation:" -msgstr "" +msgstr "Навигация по камере:" msgctxt "@window:text" msgid "Camera rendering:" @@ -731,12 +682,10 @@ msgctxt "@label" msgid "Can't connect to your UltiMaker printer?" msgstr "Не удается подключиться к принтеру UltiMaker?" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "Невозможно импортировать профиль из {0}, пока не добавлен принтер." -#, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "Невозможно открыть любой другой файл, если G-code файл уже загружен. Пропускаю импортирование {0}" @@ -809,21 +758,8 @@ msgctxt "@label" msgid "Checking..." msgstr "Проверка..." -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Проверяет наличие обновлений ПО." - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Проверка моделей и конфигурации печати для выявления возможных проблем печати; рекомендации." - msgctxt "@label" -msgid "" -"Chooses between the techniques available to generate support. \n" -"\n" -"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" -"\n" -"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "Выберите одну из доступных техник создания поддержки. Поддержка со стандартной структурой создается непосредственно под выступающими деталями, и затем опускает эти области вниз линейно. У поддержки с древовидной структурой ветви тянутся к выступающим областям и модель опирается на концы этих ветвей, которые охватывают модель с разных сторон, чтобы таким образом максимально поддерживать ее по всей площади печатной пластины." msgctxt "@action:inmenu menubar:edit" @@ -902,14 +838,6 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Сжатый файл с G-кодом" -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Средство считывания сжатого G-кода" - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Средство записи сжатого G-кода" - msgctxt "@title:window" msgid "Configuration Changes" msgstr "Изменения конфигурации" @@ -982,10 +910,6 @@ msgctxt "@info:status" msgid "Connected via cloud" msgstr "Подключено через облако" -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Подключается к цифровой библиотеке, позволяя Cura открывать файлы из цифровой библиотеки и сохранять файлы в нее." - msgctxt "@tooltip:button" msgid "Consult the UltiMaker Community." msgstr "Посоветуйтесь со специалистами в сообществе UltiMaker." @@ -1026,7 +950,6 @@ msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "Не удалось создать архив из каталога с данными пользователя: {}" -#, python-brace-format msgctxt "@info:status Don't translate the tag {device}!" msgid "Could not find a file name when trying to write to {device}." msgstr "Не могу найти имя файла при записи в {device}." @@ -1055,12 +978,10 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Невозможно сохранить архив материалов в {}:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "Не могу записать {0}: {1}" -#, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Невозможно сохранить на внешний носитель {0}: {1}" @@ -1069,31 +990,19 @@ msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "Облако не залило данные на принтер." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"No permission to execute process." -msgstr "" -"Не удалось запустить EnginePlugin: {self._plugin_id}\n" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." +msgstr "Не удалось запустить EnginePlugin: {self._plugin_id}" "Нет разрешения на выполнение процесса." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Operating system is blocking it (antivirus?)" -msgstr "" -"Не удалось запустить EnginePlugin: {self._plugin_id}\n" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" +msgstr "Не удалось запустить EnginePlugin: {self._plugin_id}" "Его блокирует операционная система (антивирус?)" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Resource is temporarily unavailable" -msgstr "" -"Не удалось запустить EnginePlugin: {self._plugin_id}\n" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" +msgstr "Не удалось запустить EnginePlugin: {self._plugin_id}" "Ресурс временно недоступен" msgctxt "@title:window" @@ -1136,10 +1045,6 @@ msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Создавайте проекты печати в электронной библиотеке." -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Создание объекта стирания для блокировки печати элемента поддержки в определенных местах" - msgctxt "@info:backup_status" msgid "Creating your backup..." msgstr "Создание резервной копии..." @@ -1152,22 +1057,10 @@ msgctxt "@title:window" msgid "Cura Backups" msgstr "Резервные копии Cura" -msgctxt "name" -msgid "Cura Backups" -msgstr "Резервные копии Cura" - msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Профиль Cura" -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Чтение профиля Cura" - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Запись профиля Cura" - msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "3MF файл проекта Cura" @@ -1180,17 +1073,13 @@ msgctxt "@title:window" msgid "Cura can't start" msgstr "Не удалось запустить Cura" -#, python-brace-format msgctxt "@info:status" msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." msgstr "Cura обнаружены профили материалов, которые пока не установлены в главном принтере группы {0}." msgctxt "@info:credit" -msgid "" -"Cura is developed by UltiMaker in cooperation with the community.\n" -"Cura proudly uses the following open source projects:" -msgstr "" -"Cura разработана компанией UltiMaker B.V. совместно с сообществом.\n" +msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" +msgstr "Cura разработана компанией UltiMaker B.V. совместно с сообществом." "Cura использует следующие проекты с открытым исходным кодом:" msgctxt "@label" @@ -1201,18 +1090,6 @@ msgctxt "@label Cura version number" msgid "Cura version" msgstr "Версия Cura" -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Движок CuraEngine" - -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "Плагин CuraEngine для постепенного сглаживания потока и ограничения резких скачков потока" - -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - msgctxt "@label" msgid "Currency:" msgstr "Валюта:" @@ -1443,7 +1320,7 @@ msgstr "Черновой" msgctxt "@action:inmenu menubar:edit" msgid "Drop All Models to buildplate" -msgstr "" +msgstr "Перетащите все модели на сборочную пластину." msgctxt "@action:button" msgid "Duplicate" @@ -1469,12 +1346,10 @@ msgctxt "@action:button" msgid "Eject" msgstr "Извлечь" -#, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "Извлекает внешний носитель {0}" -#, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "Извлечено {0}. Вы можете теперь безопасно извлечь носитель." @@ -1499,10 +1374,6 @@ msgctxt "@label" msgid "Enabled" msgstr "Включено" -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Обеспечивает возможность генерировать печатаемую геометрию из файлов двухмерных изображений." - msgctxt "@title:label" msgid "End G-code" msgstr "Завершающий G-код" @@ -1573,7 +1444,7 @@ msgstr "Экспорт выбранного..." msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Export Universal Cura Project" -msgstr "" +msgstr "Экспорт Universal Cura Project" msgctxt "@button" msgid "Export material archive" @@ -1583,7 +1454,6 @@ msgctxt "@info:title" msgid "Export succeeded" msgstr "Экспорт успешно завершен" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Экспортирование профиля в {0}" @@ -1592,10 +1462,6 @@ msgctxt "@tooltip:button" msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "Расширяйте возможности UltiMaker Cura за счет плагинов и профилей материалов." -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Расширение, которое позволяет пользователю создавать скрипты для постобработки" - msgctxt "@label" msgid "Extruder" msgstr "Экструдер" @@ -1610,7 +1476,7 @@ msgstr "Завершающий G-код экструдера" msgctxt "@label" msgid "Extruder End G-code duration" -msgstr "" +msgstr "Продолжительность G-кода на конце экструдера" msgctxt "@title:label" msgid "Extruder Start G-code" @@ -1618,12 +1484,11 @@ msgstr "Стартовый G-код экструдера" msgctxt "@label" msgid "Extruder Start G-code duration" -msgstr "" +msgstr "Продолжительность G-кода запуска экструдера" -#, python-brace-format msgctxt "@label" msgid "Extruder {0}" -msgstr "" +msgstr "Экструдер {0}" msgctxt "@info:title" msgid "Extruder(s) Disabled" @@ -1645,7 +1510,6 @@ msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "Архив материалов для синхронизации с принтерами не создан." -#, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "Невозможно извлечь {0}. Другая программа может использовать это устройство." @@ -1654,27 +1518,22 @@ msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "Не могу экспортировать материал %1: %2" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Невозможно экспортировать профиль в {0}: {1}" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Невозможно экспортировать профиль в {0}: Плагин записи уведомил об ошибке." -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Не удалось импортировать профиль из {0}:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Не удалось импортировать профиль из {0}:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Не удалось импортировать профиль из {0}: {1}" @@ -1691,10 +1550,9 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Архив материалов не сохранен" -#, python-brace-format msgctxt "@info:status" msgid "Failed writing to specific cloud printer: {0} not in remote clusters." -msgstr "" +msgstr "Не удалось выполнить запись на определенный облачный принтер: {0} не в удаленных кластерах." msgctxt "@label:category menu label" msgid "Favorites" @@ -1720,7 +1578,6 @@ msgctxt "@info:title" msgid "File Saved" msgstr "Файл сохранён" -#, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "В файле {0} нет подходящих профилей." @@ -1753,14 +1610,6 @@ msgctxt "@title:window" msgid "Firmware Update" msgstr "Обновление прошивки" -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Проверка обновлений" - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Средство обновления прошивки" - msgctxt "@label" msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." msgstr "Невозможно обновить прошивку, так как подключение к принтеру не поддерживает функцию обновления прошивки." @@ -1838,7 +1687,7 @@ msgid "Force layer view compatibility mode (restart required)" msgstr "Просматривать слои в режиме совместимости (требуется перезапуск)" msgid "FreeCAD trackpad" -msgstr "" +msgstr "Трекпад FreeCAD" msgctxt "@action:inmenu menubar:view" msgid "Front View" @@ -1860,18 +1709,6 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "Файл G-code" -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Средство считывания профиля из G-кода" - -msgctxt "name" -msgid "G-code Reader" -msgstr "Чтение G-code" - -msgctxt "name" -msgid "G-code Writer" -msgstr "Средство записи G-кода" - msgctxt "@label" msgid "G-code flavor" msgstr "Вариант G-кода" @@ -1930,7 +1767,7 @@ msgstr "Приступить" msgctxt "@label" msgid "Global" -msgstr "" +msgstr "Глобальный" msgctxt "@title:tab" msgid "Global Settings" @@ -1944,7 +1781,6 @@ msgctxt "@label" msgid "Grid Placement" msgstr "Размещение сетки" -#, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "Группа #{group_nr}" @@ -1983,7 +1819,7 @@ msgstr "Скрыть все подключенные принтеры" msgctxt "@action:button" msgid "Hide settings" -msgstr "" +msgstr "Скрыть настройки" msgctxt "@action:menu" msgid "Hide this setting" @@ -2021,10 +1857,6 @@ msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "Если ваш принтер отсутствует в списке, обратитесь к руководству по решению проблем с сетевой печатью" -msgctxt "name" -msgid "Image Reader" -msgstr "Чтение изображений" - msgctxt "@action:button" msgid "Import" msgstr "Импорт" @@ -2063,7 +1895,7 @@ msgstr "Для работы с пакетом необходимо переза msgctxt "@option:radio" msgid "Include UltiMaker account name" -msgstr "" +msgstr "Включить имя аккаунта UltiMaker" msgctxt "@label" msgid "Infill" @@ -2309,10 +2141,6 @@ msgctxt "@info:tooltip" msgid "Left View" msgstr "Вид слева" -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Чтение устаревших профилей Cura" - msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "Сообщите разработчикам о неполадках." @@ -2393,10 +2221,6 @@ msgctxt "@title:groupbox" msgid "Logs" msgstr "Журналы" -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Регистрирует определенные события в журнале, чтобы их можно было использовать в отчетах об аварийном завершении работы" - msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Потеряно соединение с принтером" @@ -2405,10 +2229,6 @@ msgctxt "@action" msgid "Machine Settings" msgstr "Параметры принтера" -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Параметры принтера действие" - msgctxt "@backuplist:label" msgid "Machines" msgstr "Принтеры" @@ -2425,10 +2245,6 @@ msgctxt "@item:inlistbox" msgid "Makerbot Printfile" msgstr "Файл печати Makerbot" -msgctxt "name" -msgid "Makerbot Printfile Writer" -msgstr "Модуль записи файлов печати Makerbot" - msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "MakerbotWriter не может сохранить файл в указанное место." @@ -2485,14 +2301,6 @@ msgctxt "@text" msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." msgstr "Здесь можно управлять встраиваемыми модулями Ultimaker Cura и профилями материалов. Регулярно обновляйте встраиваемые модули и создавайте резервные копии настроек." -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "Позволяет управлять расширениями приложения и просматривать расширения с веб-сайта UltiMaker." - -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "Управляет сетевыми соединениями с сетевыми принтерами UltiMaker." - msgctxt "@label" msgid "Manufacturer" msgstr "Производитель" @@ -2505,10 +2313,6 @@ msgctxt "@label" msgid "Marketplace" msgstr "Магазин" -msgctxt "name" -msgid "Marketplace" -msgstr "Магазин" - msgctxt "@action:label" msgid "Material" msgstr "Материал" @@ -2525,10 +2329,6 @@ msgctxt "@label:listbox" msgid "Material Color" msgstr "Цвет материала" -msgctxt "name" -msgid "Material Profiles" -msgstr "Профили материалов" - msgctxt "@label" msgid "Material Type" msgstr "Тип материала" @@ -2573,10 +2373,6 @@ msgctxt "@action:label" msgid "Mode" msgstr "Режим" -msgctxt "name" -msgid "Model Checker" -msgstr "Средство проверки моделей" - msgctxt "@info:title" msgid "Model Errors" msgstr "Ошибки модели" @@ -2593,10 +2389,6 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "Монитор" -msgctxt "name" -msgid "Monitor Stage" -msgstr "Этап мониторинга" - msgctxt "@action:button" msgid "Monitor print" msgstr "Мониторинг печати" @@ -2637,6 +2429,7 @@ msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected" msgstr "Размножить выбранное" +#, fuzzy msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" @@ -2673,7 +2466,6 @@ msgctxt "@info:title" msgid "Network error" msgstr "Ошибка сети" -#, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" msgstr "Доступна новая стабильная прошивка %s" @@ -2686,7 +2478,6 @@ msgctxt "@label" msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." msgstr "Новые принтеры UltiMaker можно подключить к Digital Factory и управлять ими удаленно." -#, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." msgstr "Для {machine_name} доступны новые функции или исправления! Если у вас не установлена самая последняя версия прошивки принтера, рекомендуем обновить ее до версии {latest_version}." @@ -2695,6 +2486,7 @@ msgctxt "@action:button" msgid "New materials installed" msgstr "Установлены новые материалы" +#, fuzzy msgctxt "info:status" msgid "New printer detected from your Ultimaker account" msgid_plural "New printers detected from your Ultimaker account" @@ -2735,7 +2527,6 @@ msgctxt "@label" msgid "No cost estimation available" msgstr "Оценка расходов недоступна" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Отсутствует собственный профиль для импорта в файл {0}" @@ -2774,7 +2565,7 @@ msgstr "Поиск с текущим фильтром не дал результ msgctxt "@label" msgid "No specific value has been set" -msgstr "" +msgstr "Конкретное значение не установлено" msgctxt "@label" msgid "No time estimation available" @@ -2872,14 +2663,13 @@ msgctxt "@label" msgid "Only Show Top Layers" msgstr "Показать только верхние слои" -#, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Только один G-code файла может быть загружен в момент времени. Пропускаю импортирование {0}" msgctxt "@message" msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." -msgstr "" +msgstr "Ой! Во время процесса нарезки произошла непредвиденная ошибка. Будьте уверены, мы автоматически получили журналы сбоев для анализа, если вы не отключили обмен данными в своих настройках. Чтобы помочь нам в дальнейшем, рассмотрите возможность поделиться информацией о своем проекте в нашем средстве отслеживания проблем." msgctxt "@action:button" msgid "Open" @@ -2911,11 +2701,11 @@ msgstr "Открыть файл проекта" msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Open Universal Cura Project (UCP)" -msgstr "" +msgstr "Открыть Universal Cura Project (UCP)" msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Open Universal Cura Project (UCP) file" -msgstr "" +msgstr "Открыть файл Universal Cura Project (UCP)" msgctxt "@action:label" msgid "Open With" @@ -2923,7 +2713,7 @@ msgstr "Открыть с помощью" msgctxt "@action:button" msgid "Open as UCP" -msgstr "" +msgstr "Открыть как UCP" msgctxt "@action:button" msgid "Open as project" @@ -2992,6 +2782,7 @@ msgctxt "@label" msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." msgstr "При переопределении к имеющейся конфигурации принтера будут применены указанные настройки. Это может привести к ошибке печати." +#, fuzzy msgctxt "@label %1 is the number of settings it overrides." msgid "Overrides %1 setting." msgid_plural "Overrides %1 settings." @@ -3048,10 +2839,6 @@ msgctxt "@label" msgid "Per Model Settings" msgstr "Параметры модели" -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Инструмент для настройки каждой модели" - msgid "Perspective" msgstr "Перспективная" @@ -3088,15 +2875,10 @@ msgid "Please give the required permissions when authorizing this application." msgstr "Дайте необходимые разрешения при авторизации в этом приложении." msgctxt "@info" -msgid "" -"Please make sure your printer has a connection:\n" -"- Check if the printer is turned on.\n" -"- Check if the printer is connected to the network.\n" -"- Check if you are signed in to discover cloud-connected printers." -msgstr "" -"Проверьте наличие подключения к принтеру:\n" -"- Убедитесь, что принтер включен.\n" -"- Убедитесь, что принтер подключен к сети.\n" +msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." +msgstr "Проверьте наличие подключения к принтеру:" +"- Убедитесь, что принтер включен." +"- Убедитесь, что принтер подключен к сети." "- Убедитесь, что вы вошли в систему (это необходимо для поиска принтеров, подключенных к облаку)." msgctxt "@text" @@ -3124,15 +2906,10 @@ msgid "Please remove the print" msgstr "Пожалуйста, удалите напечатанное" msgctxt "@info:status" -msgid "" -"Please review settings and check if your models:\n" -"- Fit within the build volume\n" -"- Are assigned to an enabled extruder\n" -"- Are not all set as modifier meshes" -msgstr "" -"Проверьте настройки и убедитесь в том, что ваши модели:\n" -"- соответствуют допустимой области печати\n" -"- назначены активированному экструдеру\n" +msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" +msgstr "Проверьте настройки и убедитесь в том, что ваши модели:" +"- соответствуют допустимой области печати" +"- назначены активированному экструдеру" "- не заданы как объекты-модификаторы" msgctxt "@label" @@ -3145,7 +2922,7 @@ msgstr "Войдите, чтобы получить проверенные вс msgctxt "@info:tooltip" msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." -msgstr "" +msgstr "Войдите в свой аккаунт UltiMaker, чтобы разрешить отправку неанонимных данных." msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." @@ -3187,10 +2964,6 @@ msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Пост-обработка" -msgctxt "name" -msgid "Post Processing" -msgstr "Пост обработка" - msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "Плагин пост-обработки" @@ -3207,10 +2980,6 @@ msgctxt "@item:inmenu" msgid "Prepare" msgstr "Подготовка" -msgctxt "name" -msgid "Prepare Stage" -msgstr "Подготовительный этап" - msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "Подготовка..." @@ -3231,10 +3000,6 @@ msgctxt "@item:inmenu" msgid "Preview" msgstr "Предварительный просмотр" -msgctxt "name" -msgid "Preview Stage" -msgstr "Этап предварительного просмотра" - msgctxt "@tooltip" msgid "Prime Tower" msgstr "Черновая башня" @@ -3251,6 +3016,7 @@ msgctxt "@action:inmenu menubar:edit" msgid "Print Before" msgstr "Печатать до" +#, fuzzy msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -3259,6 +3025,7 @@ msgstr[1] "Печать выбранных моделей:" msgstr[2] "Печать выбранных моделей:" msgstr[3] "" +#, fuzzy msgctxt "@label %1 is filled in with the name of an extruder" msgid "Print Selected Model with %1" msgid_plural "Print Selected Models with %1" @@ -3439,7 +3206,6 @@ msgctxt "@title:column" msgid "Profile settings" msgstr "Параметры профиля" -#, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Профиль {0} имеет неизвестный тип файла или повреждён." @@ -3464,22 +3230,18 @@ msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Язык программирования" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "Файл проекта {0} содержит неизвестный тип принтера {1}. Не удалось импортировать принтер. Вместо этого будут импортированы модели." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "Файл проекта {0} поврежден: {1}." -#, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." msgstr "Файл проекта {0} создан с использованием профилей, несовместимых с данной версией UltiMaker Cura." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "Файл проекта {0} внезапно стал недоступен: {1}.." @@ -3488,147 +3250,42 @@ msgctxt "@label" msgid "Properties" msgstr "Свойства" -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Обеспечение действий принтера для обновления прошивки." - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Обеспечивает этап мониторинга в Cura." +msgctxt "@label" +msgid "PyQt version" +msgstr "Версия PyQt" -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Предоставляет просмотр твёрдого тела." +msgctxt "@Label Description for application dependency" +msgid "Python Error tracking library" +msgstr "Библиотека отслеживания ошибок Python" -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Обеспечивает подготовительный этап в Cura." +msgctxt "@label Description for application dependency" +msgid "Python bindings for Clipper" +msgstr "Привязки Python для Clipper" -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Обеспечивает действия на этапе предварительного просмотра в Cura." +msgctxt "@label Description for application component" +msgid "Python bindings for libnest2d" +msgstr "Интерфейс Python для libnest2d" -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Предоставляет возможность изменения параметров принтера (такие как рабочий объём, диаметр сопла и так далее)" +msgctxt "@label" +msgid "Qt version" +msgstr "Версия Qt" -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Предоставляет возможности по чтению и записи профилей материалов в виде XML." +msgctxt "@info:status" +msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." +msgstr "Тип качества \"{0}\" несовместим с текущим определением активной машины \"{1}\"." -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Предоставляет дополнительные возможности для принтеров UltiMaker (такие как мастер выравнивания стола, выбора обновления и так далее)" +msgctxt "@info:title" +msgid "Queue Full" +msgstr "Очередь заполнена" -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Предоставляет поддержку для подключения и записи на внешний носитель." - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Предоставляет поддержку для экспорта профилей Cura." - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Предоставляет поддержку для импорта профилей Cura." - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Предоставляет поддержку для импортирования профилей из G-Code файлов." - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Предоставляет поддержку для импортирования профилей из устаревших версий Cura." - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Предоставляет поддержку для чтения 3MF файлов." - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Обеспечивает поддержку чтения файлов AMF." - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Предоставляет поддержку для чтения пакетов формата UltiMaker." - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Предоставляет поддержку для чтения X3D файлов." - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Предоставляет поддержку для чтения файлов моделей." - -msgctxt "description" -msgid "Provides support for writing 3MF and UCP files." -msgstr "" - -msgctxt "description" -msgid "Provides support for writing MakerBot Format Packages." -msgstr "Обеспечивает поддержку записи пакетов формата MakerBot." - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Предоставляет поддержку для записи пакетов формата UltiMaker." - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Предоставляет параметры для каждой модели." - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Предоставляет рентгеновский вид." - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Предоставляет интерфейс к движку CuraEngine." - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Обеспечивает предварительный просмотр нарезанных данных слоя." - -msgctxt "@label" -msgid "PyQt version" -msgstr "Версия PyQt" - -msgctxt "@Label Description for application dependency" -msgid "Python Error tracking library" -msgstr "Библиотека отслеживания ошибок Python" - -msgctxt "@label Description for application dependency" -msgid "Python bindings for Clipper" -msgstr "Привязки Python для Clipper" - -msgctxt "@label Description for application component" -msgid "Python bindings for libnest2d" -msgstr "Интерфейс Python для libnest2d" - -msgctxt "@label" -msgid "Qt version" -msgstr "Версия Qt" - -#, python-brace-format -msgctxt "@info:status" -msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." -msgstr "Тип качества \"{0}\" несовместим с текущим определением активной машины \"{1}\"." - -msgctxt "@info:title" -msgid "Queue Full" -msgstr "Очередь заполнена" - -msgctxt "@label" -msgid "Queued" -msgstr "Запланировано" +msgctxt "@label" +msgid "Queued" +msgstr "Запланировано" msgctxt "@info:button, %1 is the application name" msgid "Quit %1" msgstr "Выйти из %1" -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Считывает G-код из сжатого архива." - msgctxt "@button" msgid "Recommended" msgstr "Рекомендован" @@ -3681,10 +3338,6 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "Внешний носитель" -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Плагин для работы с внешним носителем" - msgctxt "@action:button" msgid "Remove" msgstr "Удалить" @@ -3807,11 +3460,11 @@ msgstr "Сохранить проект Cura" msgctxt "@option" msgid "Save Cura project and .makerbot print file" -msgstr "" +msgstr "Сохраните проект Cura и файл печати .makerbot" msgctxt "@option" msgid "Save Cura project and .ufp print file" -msgstr "" +msgstr "Сохраните проект Cura и файл печати .ufp." msgctxt "@title:window" msgid "Save Custom Profile" @@ -3839,7 +3492,7 @@ msgstr "Сохранить новый профиль" msgctxt "@action:button" msgid "Save project" -msgstr "" +msgstr "Сохранить проект" msgctxt "@text" msgid "Save the .umm file on a USB stick." @@ -3849,12 +3502,10 @@ msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "Сохранить на внешний носитель" -#, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "Сохранить на внешний носитель {0}" -#, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Сохранено на внешний носитель {0} как {1}" @@ -3863,7 +3514,6 @@ msgctxt "@info:title" msgid "Saving" msgstr "Сохранение" -#, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Сохранение на внешний носитель {0}" @@ -3946,15 +3596,15 @@ msgstr "Отправить отчет о сбое в UltiMaker" msgctxt "@info:tooltip" msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." -msgstr "" +msgstr "Отправлять отчеты о сбоях, используя зарегистрированное имя учетной записи UltiMaker и название проекта, в UltiMaker Sentry. Фактические данные модели не отправляются." msgctxt "@info:tooltip" msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." -msgstr "" +msgstr "Отправлять отчеты о сбоях без какой-либо личной информации или данных моделей в UltiMaker." msgctxt "@option:check" msgid "Send engine crash reports" -msgstr "" +msgstr "Отправлять отчеты о сбоях движка" msgctxt "@action:button" msgid "Send report" @@ -3968,10 +3618,6 @@ msgctxt "@info:title" msgid "Sending materials to printer" msgstr "Отправка материалов на принтер" -msgctxt "name" -msgid "Sentry Logger" -msgstr "Контрольный журнал" - msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Библиотека последовательного интерфейса" @@ -4010,7 +3656,7 @@ msgstr "Параметры" msgctxt "@action:label" msgid "Settings Loaded from UCP file" -msgstr "" +msgstr "Настройки загружены из файла UCP" msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" @@ -4082,7 +3728,7 @@ msgstr "Открывать файлы с компьютера и из внешн msgctxt "@info:tooltip" msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." -msgstr "" +msgstr "Следует ли автоматически сообщать Ultimaker о сбоях нарезки? Обратите внимание: никакие модели, IP-адреса или другая личная информация не отправляются и не сохраняются без вашего явного разрешения." msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" @@ -4142,7 +3788,7 @@ msgstr "Показать подробный отчет о сбое" msgctxt "@action:button" msgid "Show settings" -msgstr "" +msgstr "Показать настройки" msgctxt "@option:check" msgid "Show summary dialog when saving project" @@ -4180,10 +3826,6 @@ msgctxt "@label" msgid "Sign in to the UltiMaker platform" msgstr "Войдите на платформу UltiMaker" -msgctxt "name" -msgid "Simulation View" -msgstr "Вид моделирования" - msgctxt "@tooltip" msgid "Skin" msgstr "Покрытие" @@ -4212,10 +3854,6 @@ msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Нарезать автоматически при изменении настроек." -msgctxt "name" -msgid "Slice info" -msgstr "Информация о нарезке модели" - msgctxt "@message:title" msgid "Slicing failed" msgstr "Нарезка на слои не выполнена" @@ -4230,24 +3868,15 @@ msgstr "Сглаживание" msgctxt "@label" msgid "Solid" -msgstr "" - -msgctxt "name" -msgid "Solid View" -msgstr "Обзор" +msgstr "Сплошной" msgctxt "@item:inmenu" msgid "Solid view" msgstr "Просмотр модели" msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "" -"Некоторые из скрытых параметров используют значения, отличающиеся от их вычисленных значений.\n" -"\n" +msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." +msgstr "Некоторые из скрытых параметров используют значения, отличающиеся от их вычисленных значений." "Щёлкните, чтобы сделать эти параметры видимыми." msgctxt "@info:status" @@ -4263,13 +3892,8 @@ msgid "Some setting-values defined in %1 were overridden." msgstr "Некоторые определенные в %1 значения настроек были переопределены." msgctxt "@tooltip" -msgid "" -"Some setting/override values are different from the values stored in the profile.\n" -"\n" -"Click to open the profile manager." -msgstr "" -"Значения некоторых параметров отличаются от значений профиля.\n" -"\n" +msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." +msgstr "Значения некоторых параметров отличаются от значений профиля." "Нажмите для открытия менеджера профилей." msgctxt "@action:label" @@ -4340,10 +3964,6 @@ msgctxt "@label" msgid "Strength" msgstr "Прочность" -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Отправляет анонимную информацию о нарезке моделей. Может быть отключено через настройки." - msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "Материал успешно экспортирован в %1" @@ -4352,18 +3972,17 @@ msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "Успешно импортированный материал %1" -#, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Профиль {0} успешно импортирован." msgctxt "@action:label" msgid "Suggested Material settings" -msgstr "" +msgstr "Рекомендуемые настройки материала" msgctxt "@action:label" msgid "Suggested Profile settings" -msgstr "" +msgstr "Рекомендуемые настройки профиля" msgctxt "@action:title" msgid "Summary - Cura Project" @@ -4371,11 +3990,11 @@ msgstr "Сводка - Проект Cura" msgctxt "@action:title Don't translate 'Universal Cura Project'" msgid "Summary - Open Universal Cura Project (UCP)" -msgstr "" +msgstr "Сводка – Открыть Universal Cura Project (UCP)" msgctxt "@action:title Don't translate 'Universal Cura Project'" msgid "Summary - Universal Cura Project" -msgstr "" +msgstr "Сводка - Universal Cura Project" msgctxt "@label" msgid "Support" @@ -4389,10 +4008,6 @@ msgctxt "@label" msgid "Support Blocker" msgstr "Блокировщик поддержки" -msgctxt "name" -msgid "Support Eraser" -msgstr "Средство стирания элемента поддержки" - msgctxt "@tooltip" msgid "Support Infill" msgstr "Заполнение поддержек" @@ -4489,6 +4104,7 @@ msgctxt "@text" msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance." msgstr "Профиль отжига требует последующей обработки в печи после завершения печати. Этот профиль сохраняет точность размеров напечатанной детали после отжига и повышает прочность, жесткость и термостойкость." +#, fuzzy msgctxt "@label" msgid "The assigned printer, %1, requires the following configuration change:" msgid_plural "The assigned printer, %1, requires the following configuration changes:" @@ -4561,7 +4177,6 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "Этот экструдер используется для печати поддержек. Используется при наличии нескольких экструдеров." -#, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "Файл {0} уже существует. Вы уверены, что желаете перезаписать его?" @@ -4590,6 +4205,7 @@ msgctxt "@title:header" msgid "The following printers will receive the new material profiles:" msgstr "Следующие принтеры получат новые профили материалов:" +#, fuzzy msgctxt "@info:tooltip" msgid "The following script is active:" msgid_plural "The following scripts are active:" @@ -4627,21 +4243,10 @@ msgid "The nozzle inserted in this extruder." msgstr "Сопло, вставленное в данный экструдер." msgctxt "@label" -msgid "" -"The pattern of the infill material of the print:\n" -"\n" -"For quick prints of non functional model choose line, zig zag or lightning infill.\n" -"\n" -"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" -"\n" -"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "" -"Шаблон заполнительного материала печати:\n" -"\n" -"Для быстрой печати нефункциональной модели выберите шаблон «Линейный», «Зигзагообразный» или «Молния».\n" -"\n" -"Для функциональной части, не подвергающейся большому напряжению, мы рекомендуем шаблон «Сетка», «Треугольник» или «Шестигранник из треугольников».\n" -"\n" +msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "Шаблон заполнительного материала печати:" +"Для быстрой печати нефункциональной модели выберите шаблон «Линейный», «Зигзагообразный» или «Молния»." +"Для функциональной части, не подвергающейся большому напряжению, мы рекомендуем шаблон «Сетка», «Треугольник» или «Шестигранник из треугольников»." "Для функциональной 3D-печати, требующей высокой прочности в разных направлениях, используйте шаблон «Куб», «Динамический куб», «Четверть куба», «Восьмигранник» или «Гироид»." msgctxt "@info:tooltip" @@ -4762,7 +4367,7 @@ msgstr "Данная конфигурация недоступна, поскол msgctxt "@text:window" msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" -msgstr "" +msgstr "Это файл проекта Cura Universal. Хотите открыть его как проект Cura или Cura Universal Project или импортировать из него модели?" msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" @@ -4780,6 +4385,7 @@ msgctxt "@label" msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." msgstr "Этот принтер невозможно добавить, поскольку это неизвестный принтер либо он не управляет группой." +#, fuzzy msgctxt "info:status" msgid "This printer is not linked to the Digital Factory:" msgid_plural "These printers are not linked to the Digital Factory:" @@ -4800,7 +4406,6 @@ msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "Данный принтер управляет группой из %1 принтера (-ов)." -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Данный профиль {0} содержит неверные данные, поэтому его невозможно импортировать." @@ -4814,19 +4419,15 @@ msgid "This project contains materials or plugins that are currently not install msgstr "Этот проект содержит материалы или плагины, которые сейчас не установлены в Cura.
                                      Установите недостающие пакеты и снова откройте проект." msgctxt "@label" -msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." -msgstr "" -"Значение этого параметра отличается от значения в профиле.\n" -"\n" +msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." +msgstr "Значение этого параметра отличается от значения в профиле." "Щёлкните для восстановления значения из профиля." msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." msgstr "Данный параметр был скрыт текущим принтером и не будет отображаться." +#, fuzzy msgctxt "@item:tooltip %1 is list of setting names" msgid "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible." msgid_plural "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible." @@ -4840,13 +4441,8 @@ msgid "This setting is always shared between all extruders. Changing it here wil msgstr "Данная настройка всегда используется совместно всеми экструдерами. Изменение данного значения приведет к изменению значения для всех экструдеров." msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "" -"Обычно это значение вычисляется, но в настоящий момент было установлено явно.\n" -"\n" +msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." +msgstr "Обычно это значение вычисляется, но в настоящий момент было установлено явно." "Щёлкните для восстановления вычисленного значения." msgctxt "@label" @@ -4859,11 +4455,11 @@ msgstr "Эта настройка получена из конфликтующи msgctxt "@tooltip Don't translate 'Universal Cura Project'" msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." -msgstr "" +msgstr "Этот параметр может работать некорректно при экспорте в Universal Cura Project. Пользователям предлагается добавить его на свой страх и риск." msgctxt "@tooltip Don't translate 'Universal Cura Project'" msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." -msgstr "" +msgstr "Этот параметр может работать некорректно при экспорте в Universal Cura Project. Пользователям предлагается добавить его на свой страх и риск." msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" @@ -4881,7 +4477,6 @@ msgctxt "@text" msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." msgstr "Для автоматической синхронизации профилей материалов со всеми принтерами, подключенными к Digital Factory, необходимо войти в Cura." -#, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "Чтобы установить подключение, перейдите на сайт {website_link}" @@ -4894,7 +4489,6 @@ msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." msgstr "Для печати непосредственно на принтере через сеть необходимо подключить принтер к сети с помощью сетевого кабеля или подключить его к сети Wi-Fi. Если вы не подключили Cura к принтеру, вы можете использовать USB-накопитель для переноса файлов G-Code на принтер." -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "Чтобы удалить {printer_name} без возможности восстановления, перейдите на сайт {digital_factory_link}" @@ -4943,10 +4537,6 @@ msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "Попытка восстановить резервную копию Cura при отсутствии необходимых данных или метаданных." -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Средство чтения Trimesh" - msgctxt "@button" msgid "Troubleshooting" msgstr "Поиск и устранение неисправностей" @@ -4967,22 +4557,10 @@ msgctxt "@label" msgid "Type" msgstr "Тип" -msgctxt "name" -msgid "UFP Reader" -msgstr "Средство считывания UFP" - -msgctxt "name" -msgid "UFP Writer" -msgstr "Средство записи UFP" - msgctxt "@item:inmenu" msgid "USB printing" msgstr "Печать через USB" -msgctxt "name" -msgid "USB printing" -msgstr "Печать через USB" - msgctxt "@button" msgid "UltiMaker Account" msgstr "Учетная запись UltiMaker" @@ -4999,10 +4577,6 @@ msgctxt "@item:inlistbox" msgid "UltiMaker Format Package" msgstr "Пакет формата UltiMaker" -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "Соединение с сетью UltiMaker" - msgctxt "@info" msgid "UltiMaker Verified Package" msgstr "Проверенный пакет UltiMaker" @@ -5011,10 +4585,6 @@ msgctxt "@info" msgid "UltiMaker Verified Plug-in" msgstr "Проверенный плагин UltiMaker" -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "Действия с принтерами UltiMaker" - msgctxt "@button" msgid "UltiMaker printer" msgstr "Принтер UltiMaker" @@ -5027,10 +4597,6 @@ msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Невозможно добавить профиль." @@ -5039,18 +4605,13 @@ msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Невозможно разместить все объекты внутри печатаемого объёма" -#, python-brace-format msgctxt "@info:plugin_failed" msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" msgstr "Не удается найти локальный исполняемый файл сервера EnginePlugin для: {self._plugin_id}" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Unable to kill running EnginePlugin: {self._plugin_id}\n" -"Access is denied." -msgstr "" -"Невозможно завершить работу EnginePlugin: {self._plugin_id}\n" +msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." +msgstr "Невозможно завершить работу EnginePlugin: {self._plugin_id}" "Доступ запрещен." msgctxt "@info" @@ -5073,12 +4634,10 @@ msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "Слайсинг невозможен, так как черновая башня или её позиция неверные." -#, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "Невозможно разделить на слои из-за наличия объектов, связанных с отключенным экструдером %s." -#, python-brace-format msgctxt "@info:status" msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" msgstr "Не удалось выполнить слайсинг из-за настроек модели. Следующие настройки ошибочны для одной или нескольких моделей: {error_labels}" @@ -5087,7 +4646,6 @@ msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "Невозможно нарезать модель, используя текущий материал, так как он несовместим с выбранной машиной или конфигурацией." -#, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "Не могу выполнить слайсинг на текущих настройках. Проверьте следующие настройки: {0}" @@ -5096,10 +4654,9 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Невозможно начать новый вход в систему. Проверьте, возможно другой сеанс еще не завершен." -#, python-brace-format msgctxt "@info:error" msgid "Unable to write to file: {0}" -msgstr "" +msgstr "Невозможно записать в файл: {0}" msgctxt "@label:status" msgid "Unavailable" @@ -5123,11 +4680,11 @@ msgstr "Единица" msgctxt "@item:inlistbox" msgid "Universal Cura Project" -msgstr "" +msgstr "Universal Cura Project" msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." -msgstr "" +msgstr "Файлы Universal Cura Project можно распечатывать на различных 3D-принтерах, сохраняя при этом данные о положении и выбранные настройки. При экспорте будут включены все модели, присутствующие на рабочей пластине, вместе с их текущим положением, ориентацией и масштабом. Вы также можете выбрать, какие настройки экструдера или модели следует включить, чтобы обеспечить правильную печать." msgctxt "@label Description for development tool" msgid "Universal build system configuration" @@ -5149,7 +4706,6 @@ msgctxt "@label:property" msgid "Unknown Package" msgstr "Неизвестный пакет" -#, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Неизвестный код ошибки при загрузке задания печати: {0}" @@ -5214,265 +4770,49 @@ msgctxt "@button" msgid "Updating..." msgstr "Обновление..." -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Обновляет настройки Cura 2.1 до Cura 2.2." +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Залить собственную прошивку" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Обновляет настройки Cura 2.2 до Cura 2.4." +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "Загрузка задания печати в принтер." -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Обновляет настройки Cura 2.5 до Cura 2.6." +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "Выполняется заливка вашей резервной копии..." -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Обновляет настройки Cura 2.6 до Cura 2.7." +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "Использовать один экземпляр Cura" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Обновляет настройки Cura 2.7 до Cura 3.0." +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "Использовать клей для лучшего прилипания с этой комбинацией материалов." -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Обновление настроек Cura 3.0 до Cura 3.1." +msgctxt "@label" +msgid "User Agreement" +msgstr "Пользовательское соглашение" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Обновляет настройки Cura 3.2 до Cura 3.3." +msgctxt "@label Description for application dependency" +msgid "Utility functions, including an image loader" +msgstr "Вспомогательные функции, включая загрузчик изображений" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Обновляет настройки Cura 3.3 до Cura 3.4." +msgctxt "@label Description for application dependency" +msgid "Utility library, including Voronoi generation" +msgstr "Вспомогательные функции, включая генерацию диаграмм Вороного" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Обновляет настройки Cura 3.4 до Cura 3.5." +msgctxt "@title:column" +msgid "Value" +msgstr "Значение" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Обновляет конфигурации Cura 3.5 до Cura 4.0." +msgctxt "@button" +msgid "View printers in Digital Factory" +msgstr "Просмотреть принтеры в Digital Factory" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Обновляет конфигурации Cura 4.0 до Cura 4.1." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Обновляет конфигурации Cura 4.1 до Cura 4.2." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Обновляет конфигурации Cura 4.11 до Cura 4.12." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Обновляет конфигурации Cura 4.13 до Cura 5.0." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Обновляет конфигурации Cura 4.2 до Cura 4.3." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Обновляет конфигурации Cura 4.3 до Cura 4.4." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Обновляет конфигурации Cura 4.4 до Cura 4.5." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Обновляет конфигурации Cura 4.5 до Cura 4.6." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Обновляет конфигурацию Cura 4.6.0 до Cura 4.6.2." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Обновляет конфигурацию Cura 4.6.2 до Cura 4.7." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Обновляет конфигурации Cura 4.7 до Cura 4.8." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Обновляет конфигурации Cura 4.8 до Cura 4.9." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Обновляет конфигурации Cura 4.9 до Cura 4.10." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Обновляет настройки Cura 5.2 до Cura 5.3." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Обновляет конфигурации с Cura 5.3 до Cura 5.4." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Обновляет конфигурации с Cura 5.4 до Cura 5.5." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." -msgstr "" - -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Залить собственную прошивку" - -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Загрузка задания печати в принтер." - -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Выполняется заливка вашей резервной копии..." - -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Использовать один экземпляр Cura" - -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "Использовать клей для лучшего прилипания с этой комбинацией материалов." - -msgctxt "@label" -msgid "User Agreement" -msgstr "Пользовательское соглашение" - -msgctxt "@label Description for application dependency" -msgid "Utility functions, including an image loader" -msgstr "Вспомогательные функции, включая загрузчик изображений" - -msgctxt "@label Description for application dependency" -msgid "Utility library, including Voronoi generation" -msgstr "Вспомогательные функции, включая генерацию диаграмм Вороного" - -msgctxt "@title:column" -msgid "Value" -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Обновление версии 2.1 до 2.2" - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Обновление версии 2.2 до 2.4" - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Обновление версии 2.5 до 2.6" - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Обновление версии 2.6 до 2.7" - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Обновление версии 2.7 до 3.0" - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Обновление версии 3.0 до 3.1" - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Обновление версии 3.2 до 3.3" - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Обновление версии 3.3 до 3.4" - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Обновление версии 3.4 до 3.5" - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Обновление версии 3.5 до 4.0" - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Обновление версии 4.0 до 4.1" - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Обновление версии 4.1 до 4.2" - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Обновление версии 4.11 до 4.12" - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Обновление версии 4.13 до 5.0" - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Обновление версии 4.2 до 4.3" - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Обновление версии 4.3 до 4.4" - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Обновление версии 4.4 до 4.5" - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Обновление версии 4.5 до 4.6" - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Обновление версии с 4.6.0 до 4.6.2" - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Обновление версии с 4.6.2 до 4.7" - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Обновление версии 4.7 до 4.8" - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Обновление версии 4.8 до 4.9" - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Обновление версии 4.9 до 4.10" - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "Обновление версии 5.2 до 5.3" - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "Обновление версии 5.3 до 5.4" - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "Обновление версии 5.4 до 5.5" - -msgctxt "name" -msgid "Version Upgrade 5.6 to 5.7" -msgstr "" - -msgctxt "@button" -msgid "View printers in Digital Factory" -msgstr "Просмотреть принтеры в Digital Factory" - -msgctxt "@label" -msgid "View type" -msgstr "Просмотр типа" +msgctxt "@label" +msgid "View type" +msgstr "Просмотр типа" msgctxt "@label link to technical assistance" msgid "View user manuals online" @@ -5518,7 +4858,6 @@ msgctxt "@info:title" msgid "Warning" msgstr "Внимание" -#, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Внимание! Профиль не отображается, так как его тип качества \"{0}\" недоступен для текущей конфигурации. Выберите комбинацию материала и сопла, которым подходит этот тип качества." @@ -5545,7 +4884,7 @@ msgstr "Какой принтер вы хотите настроить?" msgctxt "@info:tooltip" msgid "What type of camera navigation should be used?" -msgstr "" +msgstr "Какой тип навигации камеры следует использовать?" msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" @@ -5583,14 +4922,6 @@ msgctxt "@action:label" msgid "Width (mm)" msgstr "Ширина (мм)" -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Записывает G-код в сжатый архив." - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Записывает G-код в файл." - msgctxt "@label" msgid "X (Width)" msgstr "X (Ширина)" @@ -5603,10 +4934,6 @@ msgctxt "@label" msgid "X min" msgstr "X минимум" -msgctxt "name" -msgid "X-Ray View" -msgstr "Просмотр в рентгене" - msgctxt "@item:inlistbox" msgid "X-Ray view" msgstr "Просмотр в рентгене" @@ -5619,10 +4946,6 @@ msgctxt "@item:inlistbox" msgid "X3D File" msgstr "Файл X3D" -msgctxt "name" -msgid "X3D Reader" -msgstr "Чтение X3D" - msgctxt "@label" msgid "Y (Depth)" msgstr "Y (Глубина)" @@ -5640,35 +4963,22 @@ msgid "Yes" msgstr "Да" msgctxt "@label" -msgid "" -"You are about to remove all printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" +msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" msgstr "Вы удаляете все принтеры из Cura. Это действие невозможно будет отменить.Продолжить?" -#, python-brace-format +#, fuzzy msgctxt "@label" -msgid "" -"You are about to remove {0} printer from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgid_plural "" -"You are about to remove {0} printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr[0] "" -"Вы удаляете {0} принтер из Cura. Это действие невозможно будет отменить.\n" -"Продолжить?" -msgstr[1] "" -"Вы удаляете {0} принтера из Cura. Это действие невозможно будет отменить.\n" -"Продолжить?" -msgstr[2] "" -"Вы удаляете {0} принтеров из Cura. Это действие невозможно будет отменить.\n" -"Продолжить?" +msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgstr[0] "Вы удаляете {0} принтер из Cura. Это действие невозможно будет отменить.\nПродолжить?" +msgstr[1] "Вы удаляете {0} принтера из Cura. Это действие невозможно будет отменить.\nПродолжить?" +msgstr[2] "Вы удаляете {0} принтеров из Cura. Это действие невозможно будет отменить.\nПродолжить?" msgstr[3] "" msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "Вы пытаетесь подключиться к принтеру, на котором не работает UltiMaker Connect. Обновите прошивку принтера до последней версии." -#, python-brace-format msgctxt "@info:status" msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." msgstr "Вы пытаетесь подключиться к {0}, но это не главный принтер группы. Откройте веб-страницу, чтобы настроить его в качестве главного принтера группы." @@ -5679,9 +4989,8 @@ msgstr "В данный момент у вас отсутствуют резер msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "" -"Вы изменили некоторые настройки профиля.\n" -"Сохранить измененные настройки после переключения профилей?\n" +msgstr "Вы изменили некоторые настройки профиля." +"Сохранить измененные настройки после переключения профилей?" "Изменения можно отменить и загрузить настройки по умолчанию из \"%1\"." msgctxt "@label" @@ -5712,13 +5021,9 @@ msgctxt "@info" msgid "Your new printer will automatically appear in Cura" msgstr "Ваш новый принтер автоматически появится в Cura" -#, python-brace-format msgctxt "@info:status" -msgid "" -"Your printer {printer_name} could be connected via cloud.\n" -" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "" -"Ваш принтер {printer_name} может быть подключен через облако.\n" +msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "Ваш принтер {printer_name} может быть подключен через облако." " Управляйте очередью печати и следите за результатом из любого места благодаря подключению принтера к Digital Factory" msgctxt "@label" @@ -5767,7 +5072,7 @@ msgstr "мм" msgctxt "@label" msgid "s" -msgstr "" +msgstr "с" msgctxt "@info:status" msgid "today" @@ -5781,7 +5086,6 @@ msgctxt "@label" msgid "version: %1" msgstr "версия: %1" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "{printer_name} будет удален до следующей синхронизации учетной записи." @@ -5790,21 +5094,553 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Встраиваемые модули ({} шт.) не загружены" -#~ msgctxt "@label" -#~ msgid "Default" -#~ msgstr "По умолчанию" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Управляет сетевыми подключениями к сетевым принтерам UltiMaker." + +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "Соединение с сетью UltiMaker" + +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Предоставляет поддержку для импортирования профилей из G-Code файлов." -#~ msgid "Provides support for exporting Cura profiles." -#~ msgstr "Обеспечивает поддержку экспорта профилей Cura." +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "Средство считывания профиля из G-кода" -#~ msgctxt "description" -#~ msgid "Provides support for writing 3MF files." -#~ msgstr "Предоставляет возможность записи 3MF файлов." +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Предоставляет просмотр твёрдого тела." -#~ msgctxt "@option" -#~ msgid "Save Cura project and print file" -#~ msgstr "Сохранить проекта Cura и распечатать файл" +msgctxt "name" +msgid "Solid View" +msgstr "Обзор" -#~ msgctxt "@message" -#~ msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -#~ msgstr "Нарезка на слои не выполнена из-за непредвиденной ошибки. Возможно, стоит сообщить об ошибке в нашей системе отслеживания проблем." +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "Плагин CuraEngine для постепенного сглаживания потока и ограничения резких скачков потока" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Предоставляет поддержку для чтения 3MF файлов." + +msgctxt "name" +msgid "3MF Reader" +msgstr "Чтение 3MF" + +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Принимает G-Code и отправляет его на принтер. Плагин также может обновлять прошивку." + +msgctxt "name" +msgid "USB printing" +msgstr "Печать через USB" + +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Проверяет наличие обновлений ПО." + +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Проверка обновлений" + +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Позволяет управлять расширениями приложения и просматривать расширения с веб-сайта UltiMaker." + +msgctxt "name" +msgid "Marketplace" +msgstr "Магазин" + +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Резервное копирование и восстановление конфигурации." + +msgctxt "name" +msgid "Cura Backups" +msgstr "Резервные копии Cura" + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Предоставляет возможность изменения параметров принтера (такие как рабочий объём, диаметр сопла и так далее)" + +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Параметры принтера действие" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Обновляет настройки Cura 2.5 до Cura 2.6." + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Обновление версии 2.5 до 2.6" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Обновляет конфигурации Cura 4.7 до Cura 4.8." + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Обновление версии 4.7 до 4.8" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Обновляет конфигурации Cura 4.4 до Cura 4.5." + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Обновление версии 4.4 до 4.5" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Обновление настроек Cura 3.0 до Cura 3.1." + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Обновление версии 3.0 до 3.1" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Обновляет конфигурации Cura 4.11 до Cura 4.12." + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Обновление версии 4.11 до 4.12" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Обновляет конфигурации Cura 4.1 до Cura 4.2." + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Обновление версии 4.1 до 4.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Обновляет настройки Cura 2.6 до Cura 2.7." + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Обновление версии 2.6 до 2.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Обновляет конфигурацию Cura 4.6.0 до Cura 4.6.2." + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Обновление версии с 4.6.0 до 4.6.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Обновляет настройки Cura 3.3 до Cura 3.4." + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Обновление версии 3.3 до 3.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Обновляет конфигурации Cura 4.8 до Cura 4.9." + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Обновление версии 4.8 до 4.9" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Обновляет конфигурации Cura 4.5 до Cura 4.6." + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Обновление версии 4.5 до 4.6" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Обновляет конфигурации Cura 4.2 до Cura 4.3." + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Обновление версии 4.2 до 4.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Обновляет настройки Cura 3.2 до Cura 3.3." + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Обновление версии 3.2 до 3.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Обновляет конфигурации Cura 4.3 до Cura 4.4." + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Обновление версии 4.3 до 4.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "Обновляет конфигурации с Cura 5.6 до Cura 5.7." + +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "Обновление версии с 5.6 до 5.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Обновляет настройки Cura 2.1 до Cura 2.2." + +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Обновление версии 2.1 до 2.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Обновляет конфигурации с Cura 5.3 до Cura 5.4." + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "Обновление версии 5.3 до 5.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Обновляет конфигурации Cura 4.9 до Cura 4.10." + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Обновление версии 4.9 до 4.10" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Обновляет настройки Cura 2.7 до Cura 3.0." + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Обновление версии 2.7 до 3.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Обновляет конфигурации Cura 3.5 до Cura 4.0." + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Обновление версии 3.5 до 4.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Обновляет настройки Cura 5.2 до Cura 5.3." + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Обновление версии 5.2 до 5.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Обновляет конфигурации Cura 4.0 до Cura 4.1." + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Обновление версии 4.0 до 4.1" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Обновляет конфигурации Cura 4.13 до Cura 5.0." + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Обновление версии 4.13 до 5.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Обновляет настройки Cura 3.4 до Cura 3.5." + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Обновление версии 3.4 до 3.5" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Обновляет настройки Cura 2.2 до Cura 2.4." + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Обновление версии 2.2 до 2.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Обновляет конфигурацию Cura 4.6.2 до Cura 4.7." + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Обновление версии с 4.6.2 до 4.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Обновляет конфигурации с Cura 5.4 до Cura 5.5." + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "Обновление версии 5.4 до 5.5" + +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Позволяет загружать и отображать файлы G-code." + +msgctxt "name" +msgid "G-code Reader" +msgstr "Чтение G-code" + +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Отправляет анонимную информацию о нарезке моделей. Может быть отключено через настройки." + +msgctxt "name" +msgid "Slice info" +msgstr "Информация о нарезке модели" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Предоставляет поддержку для подключения и записи на внешний носитель." + +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Плагин для работы с внешним носителем" + +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Создание объекта стирания для блокировки печати элемента поддержки в определенных местах" + +msgctxt "name" +msgid "Support Eraser" +msgstr "Средство стирания элемента поддержки" + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Проверка моделей и конфигурации печати для выявления возможных проблем печати; рекомендации." + +msgctxt "name" +msgid "Model Checker" +msgstr "Средство проверки моделей" + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Обеспечивает подготовительный этап в Cura." + +msgctxt "name" +msgid "Prepare Stage" +msgstr "Подготовительный этап" + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Обеспечивает предварительный просмотр нарезанных данных слоя." + +msgctxt "name" +msgid "Simulation View" +msgstr "Вид моделирования" + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Обеспечивает поддержку чтения файлов AMF." + +msgctxt "name" +msgid "AMF Reader" +msgstr "Средство чтения AMF" + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Предоставляет рентгеновский вид." + +msgctxt "name" +msgid "X-Ray View" +msgstr "Просмотр в рентгене" + +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Обеспечение действий принтера для обновления прошивки." + +msgctxt "name" +msgid "Firmware Updater" +msgstr "Средство обновления прошивки" + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Предоставляет поддержку для импортирования профилей из устаревших версий Cura." + +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Чтение устаревших профилей Cura" + +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Расширение, которое позволяет пользователю создавать скрипты для постобработки" + +msgctxt "name" +msgid "Post Processing" +msgstr "Пост обработка" + +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Регистрирует определенные события в журнале, чтобы их можно было использовать в отчетах об аварийном завершении работы" + +msgctxt "name" +msgid "Sentry Logger" +msgstr "Контрольный журнал" + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "Обеспечивает поддержку записи пакетов формата MakerBot." + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "Модуль записи файлов печати Makerbot" + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Предоставляет поддержку для импорта профилей Cura." + +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Чтение профиля Cura" + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Предоставляет поддержку для чтения пакетов формата UltiMaker." + +msgctxt "name" +msgid "UFP Reader" +msgstr "Средство считывания UFP" + +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Обеспечивает возможность генерировать печатаемую геометрию из файлов двухмерных изображений." + +msgctxt "name" +msgid "Image Reader" +msgstr "Чтение изображений" + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Предоставляет интерфейс к движку CuraEngine." + +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Движок CuraEngine" + +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Записывает G-код в сжатый архив." + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Средство записи сжатого G-кода" + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Предоставляет дополнительные возможности для принтеров UltiMaker (такие как мастер выравнивания стола, выбора обновления и так далее)" + +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Действия с принтерами UltiMaker" + +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Считывает G-код из сжатого архива." + +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Средство считывания сжатого G-кода" + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Обеспечивает действия на этапе предварительного просмотра в Cura." + +msgctxt "name" +msgid "Preview Stage" +msgstr "Этап предварительного просмотра" + +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Подключается к цифровой библиотеке, позволяя Cura открывать файлы из цифровой библиотеки и сохранять файлы в нее." + +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Предоставляет поддержку для экспорта профилей Cura." + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Запись профиля Cura" + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Предоставляет поддержку для чтения X3D файлов." + +msgctxt "name" +msgid "X3D Reader" +msgstr "Чтение X3D" + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Предоставляет поддержку для чтения файлов моделей." + +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Средство чтения Trimesh" + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Обеспечивает этап мониторинга в Cura." + +msgctxt "name" +msgid "Monitor Stage" +msgstr "Этап мониторинга" + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Предоставляет параметры для каждой модели." + +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Инструмент для настройки каждой модели" + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Предоставляет возможности по чтению и записи профилей материалов в виде XML." + +msgctxt "name" +msgid "Material Profiles" +msgstr "Профили материалов" + +msgctxt "description" +msgid "Provides support for writing 3MF and UCP files." +msgstr "Обеспечивает поддержку записи файлов 3MF и UCP." + +msgctxt "name" +msgid "3MF Writer" +msgstr "Запись 3MF" + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Предоставляет поддержку для записи пакетов формата UltiMaker." + +msgctxt "name" +msgid "UFP Writer" +msgstr "Средство записи UFP" + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Записывает G-код в файл." + +msgctxt "name" +msgid "G-code Writer" +msgstr "Средство записи G-кода" diff --git a/resources/i18n/ru_RU/fdmextruder.def.json.po b/resources/i18n/ru_RU/fdmextruder.def.json.po index c3bce9a5288..7bc40d52c35 100644 --- a/resources/i18n/ru_RU/fdmextruder.def.json.po +++ b/resources/i18n/ru_RU/fdmextruder.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,186 +12,114 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Прилипание" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Укажите диаметр используемой нити." - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Прилипание к столу" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Диаметр" - -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "Завершающий G-код, запускающийся при переключении с данного экструдера." - msgctxt "extruder_nr label" msgid "Extruder" msgstr "Экструдер" +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "Экструдер, который используется для печати. Имеет значение при использовании нескольких экструдеров." + +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Охлаждающий вентилятор экструдера, используемый во время печати" + +msgctxt "machine_extruder_cooling_fan_number description" +msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." +msgstr "Номер охлаждающего вентилятора, используемого при печати и ассоциированного с этим экструдером. Применяемое по умолчанию значение 0 следует менять только при наличии другого охлаждающего вентилятора, используемого при печати, для каждого экструдера." + msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "Завершающий G-код экструдера" +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "Завершающий G-код, запускающийся при переключении с данного экструдера." + msgctxt "machine_extruder_end_code_duration label" msgid "Extruder End G-Code Duration" -msgstr "" +msgstr "Продолжительность G-кода на конце экструдера" + +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "Время, необходимое для выполнения конечного g-кода при выходе из этого экструдера." msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Абсолютная конечная позиция экструдера" +msgctxt "machine_extruder_end_pos_abs description" +msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." +msgstr "Устанавливает абсолютную конечную позицию экструдера, а не относительно последней известной позиции головы." + msgctxt "machine_extruder_end_pos_x label" msgid "Extruder End Position X" msgstr "Конечная X позиция экструдера" +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "X координата конечной позиции при отключении экструдера." + msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Конечная Y позиция экструдера" -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Начальная X позиция экструдера" - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Начальная Y позиция экструдера" - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Z координата начала печати" - -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Охлаждающий вентилятор экструдера, используемый во время печати" +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "Y координата конечной позиции при отключении экструдера." msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "Стартовый G-код экструдера" +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "Стартовый G-код, запускающийся при переключении на данный экструдер." + msgctxt "machine_extruder_start_code_duration label" msgid "Extruder Start G-Code Duration" -msgstr "" +msgstr "Продолжительность G-кода запуска экструдера" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "Время, необходимое для выполнения стартового g-кода при переключении на этот экструдер." msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Абсолютная стартовая позиция экструдера" +msgctxt "machine_extruder_start_pos_abs description" +msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." +msgstr "Устанавливает абсолютную стартовую позицию экструдера, а не относительно последней известной позиции головы." + msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "Стартовая X позиция экструдера" +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "X координата стартовой позиции при включении экструдера." + msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "Стартовая Y позиция экструдера" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Принтер" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Параметры, относящиеся к принтеру" - -msgctxt "machine_extruder_end_pos_abs description" -msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." -msgstr "Устанавливает абсолютную конечную позицию экструдера, а не относительно последней известной позиции головы." - -msgctxt "machine_extruder_start_pos_abs description" -msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." -msgstr "Устанавливает абсолютную стартовую позицию экструдера, а не относительно последней известной позиции головы." - -msgctxt "material description" -msgid "Material" -msgstr "Материал" - -msgctxt "material label" -msgid "Material" -msgstr "Материал" - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Диаметр сопла" - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Идентификатор сопла" +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "Y координата стартовой позиции при включении экструдера." msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "X смещение сопла" -msgctxt "machine_nozzle_offset_y label" -msgid "Nozzle Y Offset" -msgstr "Y смещение сопла" - -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "Стартовый G-код, запускающийся при переключении на данный экструдер." - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "X координата позиции, в которой сопло начинает печать." - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Y координата позиции, в которой сопло начинает печать." - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Позиция кончика сопла на оси Z при старте печати." - -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "Экструдер, который используется для печати. Имеет значение при использовании нескольких экструдеров." - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Внутренний диаметр сопла. Измените этот параметр при использовании сопла нестандартного размера." - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "Идентификатор сопла для экструдера, например \"AA 0.4\" и \"BB 0.8\"." - -msgctxt "machine_extruder_cooling_fan_number description" -msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." -msgstr "Номер охлаждающего вентилятора, используемого при печати и ассоциированного с этим экструдером. Применяемое по умолчанию значение 0 следует менять только при наличии другого охлаждающего вентилятора, используемого при печати, для каждого экструдера." - -msgctxt "machine_extruder_end_code_duration description" -msgid "The time it takes to execute the end g-code, when switching away from this extruder." -msgstr "" - -msgctxt "machine_extruder_start_code_duration description" -msgid "The time it'll take to execute the start g-code, when switching to this extruder." -msgstr "" - -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "X координата конечной позиции при отключении экструдера." - msgctxt "machine_nozzle_offset_x description" msgid "The x-coordinate of the offset of the nozzle." msgstr "Смещение сопла по оси X." -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "X координата стартовой позиции при включении экструдера." - -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "Y координата конечной позиции при отключении экструдера." +msgctxt "machine_nozzle_offset_y label" +msgid "Nozzle Y Offset" +msgstr "Y смещение сопла" msgctxt "machine_nozzle_offset_y description" msgid "The y-coordinate of the offset of the nozzle." msgstr "Смещение сопла по оси Y." - -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "Y координата стартовой позиции при включении экструдера." diff --git a/resources/i18n/ru_RU/fdmprinter.def.json.po b/resources/i18n/ru_RU/fdmprinter.def.json.po index 3c22b34d238..a1bd9de034c 100644 --- a/resources/i18n/ru_RU/fdmprinter.def.json.po +++ b/resources/i18n/ru_RU/fdmprinter.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-12 15:10+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,1177 +12,999 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -msgctxt "prime_tower_mode description" -msgid "How to generate the prime tower:
                                      • Normal: create a bucket in which secondary materials are primed
                                      • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
                                      " -msgstr "" - -msgctxt "brim_inside_margin description" -msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." -msgstr "" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Принтер" -msgctxt "ironing_inset description" -msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." -msgstr "Расстояние от краёв модели. Разглаживание от края до края может выразиться в загибании краёв при печати." +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Параметры, относящиеся к принтеру" -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "Коэффициент сжатия материала между питателем и камерой сопла, позволяющий определить, как далеко требуется продвинуть материал для переключения нити." +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Тип принтера" -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Список направлений линии при печати слоёв дна/крышки линиями или зигзагом. Элементы списка используются последовательно по мере печати слоёв и когда конец списка будет достигнут, он начнётся сначала. Элементы списка отделяются запятыми и сам список заключён в квадратные скобки. По умолчанию, он пустой, что означает использование стандартных углов (45 и 135 градусов)." +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "Название модели вашего 3D принтера." -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Список направлений линии при печати слоёв дна/крышки линиями или зигзагом. Элементы списка используются последовательно по мере печати слоёв, и, когда конец списка будет достигнут, он начнётся сначала. Элементы списка отделяются запятыми и сам список заключён в квадратные скобки. По умолчанию, он пустой, что означает использование стандартных углов (45 и 135 градусов)." +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Показать варианты принтера" -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "Список целочисленных направлений линии. Элементы списка используются последовательно по мере печати слоев, и, когда конец списка будет достигнут, он начнется сначала. Элементы списка отделяются запятыми, и сам список заключен в квадратные скобки. По умолчанию список пустой, что означает использование стандартного угла 0 градусов." +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "Следует ли показывать различные варианты этого принтера, которые описаны в отдельных JSON файлах." -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Список целочисленных направлений линии. Элементы списка используются последовательно по мере печати слоев, и, когда конец списка будет достигнут, он начнется сначала. Элементы списка отделяются запятыми, и сам список заключен в квадратные скобки. По умолчанию список пустой, что означает использование стандартных углов (45 либо 135 градусов, если связующий слой довольно толстый, или 90 градусов)." +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "Стартовый G-код" -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Список целочисленных направлений линии. Элементы списка используются последовательно по мере печати слоев, и, когда конец списка будет достигнут, он начнется сначала. Элементы списка отделяются запятыми, и сам список заключен в квадратные скобки. По умолчанию список пустой, что означает использование стандартных углов (45 либо 135 градусов, если связующий слой довольно толстый, или 90 градусов)." +msgctxt "machine_start_gcode description" +msgid "G-code commands to be executed at the very start - separated by \n." +msgstr "Команды в G-коде, которые будут выполнены в самом начале, разделенные с помощью " +"." -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Список целочисленных направлений линии. Элементы списка используются последовательно по мере печати слоев, и, когда конец списка будет достигнут, он начнется сначала. Элементы списка отделяются запятыми, и сам список заключен в квадратные скобки. По умолчанию список пустой, что означает использование стандартных углов (45 либо 135 градусов, если связующий слой довольно толстый, или 90 градусов)." +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "Завершающий G-код" -msgctxt "infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." -msgstr "Список направлений линии при печати слоёв. Элементы списка используются последовательно по мере печати слоёв и когда конец списка будет достигнут, он начнётся сначала. Элементы списка отделяются запятыми и сам список заключён в квадратные скобки. По умолчанию, он пустой, что означает использование стандартных углов (45 и 135 градусов для линий из зигзага и 45 градусов для всех остальных шаблонов)." +msgctxt "machine_end_gcode description" +msgid "G-code commands to be executed at the very end - separated by \n." +msgstr "Команды в G-коде, которые будут выполнены в самом конце, разделенные с помощью " +"." -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "Список полигонов с областями, в которые не должно заходить сопло." +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "GUID материала" -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "Список полигонов с областями, в которые голове запрещено заходить." +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "Идентификатор материала, устанавливается автоматически." -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "Рекомендация относительно того, как далеко ответвления могут отходить от точек, которые они поддерживают. Ответвления могут нарушать это значение, чтобы добраться до места назначения (рабочей пластины или плоской части модели). Снижение этого значения может сделать поддержку прочнее, но увеличит количество ответвлений (и, как следствие, расход материала и время печати)" +msgctxt "material_type label" +msgid "Material Type" +msgstr "Тип материала" -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Абсолютная позиция экструдера при старте" +msgctxt "material_type description" +msgid "The type of material used." +msgstr "Тип используемого материала." -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Максимальная вариация адаптивных слоев" +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "Марка материала" -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Размер топографии адаптивных слоев" +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "Марка используемого материала." -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Размер шага вариации адаптивных слоев" +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Диаметр" -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "В случае адаптивных слоев расчет высоты слоя осуществляется в зависимости от формы модели." +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Укажите диаметр используемой нити." -msgctxt "infill_wall_line_count description" -msgid "" -"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" -"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "" -"Добавление дополнительных стенок вокруг области заполнения. Эти стенки могут уменьшить провисание верхних/нижних линий оболочки, что уменьшает необходимое количество верхних/нижних слоев оболочки без ухудшения качества за счет небольшого увеличения количества материала.\n" -"Эта функция может сочетаться с соединением полигонов заполнения для соединения всего участка заполнения в один путь экструзии без необходимости в движениях или откатах в случае правильной настройки." +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Ожидать пока прогреется стол" -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Прилипание" +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "Следует ли добавлять команду ожидания прогрева стола до нужной температуры перед началом печати." -msgctxt "material_adhesion_tendency label" -msgid "Adhesion Tendency" -msgstr "Тенденция к прилипанию" +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Ожидать пока прогреется сопло" -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Настройте величину перекрытия между стенками и центральными линиями оболочки (конечными точками) в виде процентного отношения значений ширины линии для линий оболочки и внутренней стенки. Небольшое перекрытие позволяет стенкам надежно соединяться с оболочкой. Обратите внимание, что при одинаковой толщине оболочки и ширине линии стенки любое процентное значение, превышающее 50%, может привести к размещению любой оболочки за пределами стенки. Это обусловлено тем, что в этот момент расположение сопла экструдера оболочки может сместиться за середину стенки." +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "Следует ли добавлять команду ожидания прогрева сопла перед началом печати." -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Настройте величину перекрытия между стенками и центральными линиями оболочки (конечными точками). Небольшое перекрытие позволяет стенкам надежно соединяться с оболочкой. Обратите внимание, что при одинаковой толщине оболочки и ширине линии стенки любое значение, превышающее половину ширины стенки, может привести к размещению любой оболочки за пределами стенки. Это обусловлено тем, что в этот момент расположение сопла экструдера оболочки может сместиться за середину стенки." +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Использовать температуру из материала" -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Отрегулируйте плотность заполнения при печати." +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "Следует ли добавлять команды управления температурой сопла в начало G-кода. Если в коде уже используются команды для управления температурой сопла, то Cura автоматически проигнорирует этот параметр." -msgctxt "support_interface_density description" -msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Настройте плотность верха и низа структуры поддержек. Большее значение приведёт к улучшению нависаний, но такие поддержки будет труднее удалять." +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Добавлять температуру стола" -msgctxt "support_tree_top_rate description" -msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "Регулирует плотность поддержки, используемой для создания кончиков ответвлений. Большее значение приводит к улучшению качества выступов, но такие поддержки сложнее удалять. Используйте крышу поддержки для очень высоких значений или убедитесь, что плотность одинаково высокая сверху." +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "Следует ли добавлять команды управления температурой стола в начало G-кода. Если в коде уже используются команды для управления температурой стола, то Cura автоматически проигнорирует этот параметр." -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Настраивает плотность структуры поддержек. Большее значение приводит к улучшению качества навесов, но такие поддержки сложнее удалять." +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Ширина принтера" -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Укажите диаметр используемой нити." +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "Ширина (по оси X) области печати." -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "Настраивает размещение структур поддержки. Размещение может быть выбрано с касанием стола или везде. Для последнего случая структуры поддержки печатаются даже на самой модели." +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Глубина принтера" -msgctxt "prime_tower_wipe_enabled description" -msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." -msgstr "После печати черновой башни одним соплом, вытирает вытекший материал из другого сопла об эту башню." +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "Ширина (по оси Y) области печати." -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "При переключении принтера на другой экструдер между соплом и печатаемой деталью создаётся зазор. Это предотвращает возможность вытекания материала и его прилипание к внешней части печатаемой модели." +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Высота принтера" -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Везде" +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "Ширина (по оси Z) области печати." -msgctxt "print_sequence option all_at_once" -msgid "All at Once" -msgstr "Все за раз" +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Форма стола" -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "Все параметры, которые влияют на разрешение печати. Эти параметры сильно влияют на качество (и время печати)" +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "Форма стола без учёта непечатаемых областей." -msgctxt "user_defined_print_order_enabled description" -msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." -msgstr "" +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Прямоугольная" -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Чередующаяся стенка" +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Эллиптическая" -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Чередование объектов" +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Материал рабочего стола" -msgctxt "material_alternate_walls label" -msgid "Alternate Wall Directions" -msgstr "Чередование направления стенок" +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "Материал рабочего стола, установленного на принтере." -msgctxt "material_alternate_walls description" -msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." -msgstr "Чередуйте направления стенок каждые вторые слой и вставку. Это полезно для материалов, которые могут накапливать напряжение, например для металлической печати." +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Стекло" msgctxt "machine_buildplate_type option aluminum" msgid "Aluminum" msgstr "Алюминий" +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Имеет подогреваемый стол" + +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "Имеет ли принтер подогреваемый стол." + +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "Есть стабилизация температуры для объема печати" + +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "Имеет ли принтер возможность стабилизации температуры для объема печати." + msgctxt "machine_always_write_active_tool label" msgid "Always Write Active Tool" msgstr "Всегда выполнять запись активного инструмента" -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "Всегда откатывать материал при движении к началу внешней стенки." - -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "Сумма смещения, применяемая ко всем полигонам на каждом слое. Позитивные значения могут возместить потери для слишком больших отверстий; негативные значения могут возместить потери для слишком малых отверстий." +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "Выполняйте запись активного инструмента после отправки временных команд неактивному инструменту. Требуется для печати с двойным экструдером под управлением Smoothie или другой прошивки с модальными командами инструментов." -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "Сумма смещений, применяемая ко всем полигонам первого слоя. Отрицательное значение может компенсировать \"хлюпанье\" первого слоя, известное как \"слоновая нога\"." - -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "Величина смещения, применяемая ко всем полигонам поддержки в каждом слое. Положительные значения могут сглаживать зоны поддержки и приводить к укреплению структур поддержек." - -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "Величина смещения, применяемая к нижней части поддержек." - -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "Величина смещения, применяемая к верхней части поддержек." - -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "Величина смещения, применяемая к полигонам связующего слоя." - -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "Величина отката нити, предотвращающего просачивание во время последовательности очистки." - -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "Дополнение к радиусу от центра каждого куба для проверки границ модели, используется для принятия решения о разделении куба. Большие значения приводят к утолщению стенок мелких кубов по мере приближения к границе модели." - -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Блокиратор поддержек" - -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Положение отката для защиты от капель" - -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Скорость отката для защиты от капель" - -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "Применить смещение экструдера к системе координат. Влияет на все экструдеры." - -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "Создать взаимосвязанную структуру балок в местах соприкосновения моделей. Это улучшит адгезию между моделями, особенно моделями из разных материалов." - -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Избегать напечатанных частей при перемещении" - -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Избегать поддержек при перемещении" - -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Назад" - -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Сзади слева" - -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Сзади справа" - -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Оба варианта" - -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "Оба пересекаются" - -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Слои дна" - -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Нижний шаблон начального слоя" - -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Расстояние расширения оболочки снизу" - -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Ширина удаляемой оболочки снизу" - -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Толщина дна" - -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "Плотность ответвлений" - -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "Диаметр ответвления" - -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "Угол диаметра ответвления" - -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Положение отката для подготовки к отламыванию" - -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Скорость отката для подготовки к отламыванию" - -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Температура подготовки к отламыванию" - -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Положение отката для отламывания" - -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Скорость отката для отламывания" - -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Температура отламывания" - -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Разбить поддержки на части" - -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Скорость вентилятора для мостика" - -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "В мостике несколько слоев" - -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Плотность второй оболочки мостика" - -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Скорость вентилятора для второй оболочки мостика" - -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Поток для второй оболочки мостика" - -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Скорость печати второй оболочки мостика" - -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Плотность оболочки мостика" - -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Поток для оболочки мостика" - -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Скорость печати оболочки мостика" - -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Пороговое значение поддержки для оболочки мостика" +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "Начало координат в центре" -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Максимальная плотность разреженного заполнения мостика" +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "Следует ли считать центром координат по осям X/Y в центре области печати." -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Плотность третьей оболочки мостика" +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Количество экструдеров" -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Скорость вентилятора для третьей оболочки мостика" +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "Количество экструдеров. Экструдер - это комбинация механизма подачи, трубы и сопла." -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Поток для третьей оболочки мостика" +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Количество включенных экструдеров" -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Скорость печати третьей оболочки мостика" +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "Количество включенных экструдеров; это значение автоматически устанавливается программным обеспечением" -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Накат стенки мостика" +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Внешний диаметр сопла" -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Поток для стенки мостика" +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "Внешний диаметр кончика сопла." -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Скорость печати стенки мостика" +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Длина сопла" -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Кайма" +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "Высота между кончиком сопла и нижней частью головы." -msgctxt "brim_inside_margin label" -msgid "Brim Avoid Margin" -msgstr "" +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Угол сопла" -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Расстояние до каймы" +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "Угол между горизонтальной плоскостью и конической частью над кончиком сопла." -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Количество линий каймы" +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Длина зоны нагрева" -msgctxt "brim_location label" -msgid "Brim Location" -msgstr "" +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "Расстояние от кончика сопла до места, где тепло передаётся материалу." -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Кайма заменяет поддержку" +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Разрешить управление температурой сопла" -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Ширина каймы" +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "Следует ли управлять температурой из Cura. Выключение этого параметра предполагает управление температурой сопла вне Cura." -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Тип прилипания к столу" +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Скорость нагрева" -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Экструдер первого слоя" +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "Скорость (°C/сек.), с которой сопло греет, усреднённая в окне температур при обычной печати и температура ожидания." -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Тип прилипания к столу" +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Скорость охлаждения" -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Материал рабочего стола" +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "Скорость (°C/сек.), с которой сопло охлаждается, усреднённая в окне температур при обычной печати и температура ожидания." -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Форма стола" +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Время перехода в ожидание" -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Температура стола" +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "Минимальное время, которое экструдер должен быть неактивен, чтобы сопло начало охлаждаться. Только когда экструдер не используется дольше, чем указанное время, он может быть охлаждён до температуры ожидания." -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Температура стола для первого слоя" +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "Вариант G-кода" -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Температура для объема печати" +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "Генерируемый тип G-кода." -msgctxt "bv_temp_anomaly_limit label" -msgid "Build Volume temperature Limit" -msgstr "" +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" -msgctxt "bv_temp_warn_limit label" -msgid "Build Volume temperature Warning" -msgstr "" +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volumetric)" -msgctxt "prime_tower_brim_enable description" -msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "Активируя эту настройку, ваша башня подготовки получит бортик, даже если модель его не требует. Если вам нужна более устойчивая основа для высокой башни, вы можете увеличить высоту основания." +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" -msgctxt "center_object label" -msgid "Center Object" -msgstr "Центрирование объекта" +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "Изменяет геометрию печатаемой модели так, чтобы снизить требования к объёму поддержек. Крутые навесы станут поменьше. Нависающие области опустятся и станут более вертикальными." +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "Выберите одну из доступных техник создания поддержки. Поддержка со стандартной структурой создается непосредственно под выступающими деталями, и затем опускает эти области вниз линейно. У поддержки с древовидной структурой ветви тянутся к выступающим областям и модель опирается на концы этих ветвей, которые охватывают модель с разных сторон, чтобы таким образом максимально поддерживать ее по всей площади печатной пластины." +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Скорость наката" +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Объём наката" +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "Накат отключает экструзию материала на завершающей части пути. Вытекающий материал используется для печати на завершающей части пути, уменьшая строчность." +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Режим комбинга" +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Откат встроенного программного обеспечения" -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "Комбинг удерживает сопло внутри напечатанных зон при перемещении. Это выражается в небольшом увеличении пути, но уменьшает необходимость в откатах. При отключенном комбинге выполняется откат материала, а сопло передвигается в следующую точку по прямой. Также можно не применять комбинг над верхними/нижними областями оболочки либо разрешить комбинг только в области заполнения." +msgctxt "machine_firmware_retract description" +msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." +msgstr "Определяет, использовать ли команды отката встроенного программного обеспечения (G10/G11) вместо применения свойства E в командах G1 для отката материала." -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Параметры командной строки" +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Общий нагреватель экструдеров" -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Концентрическое" +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "Указывает, используют ли для все экструдеры общий нагреватель или у каждого имеется отдельный." -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Концентрический" +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Общее сопло экструдеров" -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Концентрические" +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "Указывает, используют ли все экструдеры общее сопло или у каждого имеется отдельное. Если установлено значение true, ожидается, что сценарий gcode запуска принтера правильно переводит все экструдеры в известное и взаимно совместимое начальное состояние отката (либо ноль, либо один материал не втянут); в этом случае начальное состояние отката описывается для каждого экструдера параметром machine_extruders_shared_nozzle_initial_retraction." -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Концентрический" +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Начальный откат общего сопла" -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Концентрический" +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "Показывает, насколько материал каждого экструдера предположительно вытянут от наконечника общего сопла по завершении запуска сценария gcode принтера; значение должно быть равно длине общей части каналов сопла или превышать ее." -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Концентрические" +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Запрещенные области" -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Концентрический" +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "Список полигонов с областями, в которые голове запрещено заходить." -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Концентрический" +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Запрещённые зоны для сопла" -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Концентрический" +msgctxt "nozzle_disallowed_areas description" +msgid "A list of polygons with areas the nozzle is not allowed to enter." +msgstr "Список полигонов с областями, в которые не должно заходить сопло." -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Угол конических поддержек" +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Полигон головки принтера и вентилятора" -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Минимальная ширина конических поддержек" +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "Форма печатающей головки. Это координаты относительно положения печатной головки, которое обычно совпадает с положением ее первого экструдера. Координаты слева от печатной головки и перед ней должны иметь отрицательные значения." -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Соединять линии заполнения" +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Высота портала" -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Соединение полигонов заполнения" +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "Высота между кончиком сопла и портальной системой (по осям X и Y)." -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Соединение линий поддержки" +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Идентификатор сопла" -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Соединённый зигзаг" +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Идентификатор сопла для экструдера, например \"AA 0.4\" и \"BB 0.8\"." -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Соединение верхних/нижних полигонов" +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Диаметр сопла" -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "Соединение путей заполнения на участках, где они проходят рядом. Для шаблонов заполнения, состоящих из нескольких замкнутых полигонов, активация данной настройки значительно сокращает время перемещения." +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Внутренний диаметр сопла. Измените этот параметр при использовании сопла нестандартного размера." -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "Соединяет зигзаги. Это увеличивает прочность такой поддержки." +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Смещение с экструдером" -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "Соединяет концы линий поддержки. Активация этой настройки может сделать поддержку более крепкой и компенсировать недостаточную экструзию, но для этого потребуется больше материала." +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "Применить смещение экструдера к системе координат. Влияет на все экструдеры." -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "Соединение мест пересечения шаблона заполнения и внутренних стенок с использованием линии, повторяющей контур внутренней стенки. Использование этой функции улучшает сцепление заполнения со стенками и снижает влияние заполнения на качество вертикальных поверхностей. Отключение этой функции снижает расход материала." +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Z координата начала печати" -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "Соединение верхних/нижних путей оболочки на участках, где они проходят рядом. При использовании концентрического шаблона активация данной настройки значительно сокращает время перемещения, но, учитывая возможность наличия соединений на полпути над заполнением, эта функция может ухудшить качество верхней поверхности." +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Позиция кончика сопла на оси Z при старте печати." -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "Управляет влиянием углов на контуре модели на позицию шва. «Нет» означает отсутствие влияния. «Спрятать шов» означает размещение шва с наибольшей вероятностью внутри угла. «Показать шов» означает размещение шва с наибольшей вероятностью снаружи угла. «Спрятать или показать» означает выбор варианта в зависимости от ситуации. Функция «Интеллектуальное скрытие» допускает размещение швов как внутри, так и снаружи углов, но чаще размещает их внутри." +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "Абсолютная позиция экструдера при старте" -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "Преобразовывать каждую линию заполнения во множество линий. Дополнительные линии не пересекаются, а уклоняются от столкновения друг с другом. Благодаря этому заполнение становится более плотным, но время печати и расход материалов увеличиваются." +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "Сделать стартовую позицию экструдера абсолютной, а не относительной от последней известной позиции головы." -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Скорость охлаждения" +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Максимальная скорость по оси X" -msgctxt "cooling description" -msgid "Cooling" -msgstr "Охлаждение" +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "Максимальная скорость для мотора оси X." -msgctxt "cooling label" -msgid "Cooling" -msgstr "Охлаждение" +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Максимальная скорость по оси Y" -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Крестовое" +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "Максимальная скорость для мотора оси Y." -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Крест" +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Максимальная скорость по оси Z" -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "Крестовое 3D" +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "Максимальная скорость для мотора оси Z." -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Размер карманов креста 3D" +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Максимальная скорость по оси E" -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Изображение плотности перекрестного заполнения для поддержки" +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "Максимальная скорость подачи материала." -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Изображение плотности перекрестного заполнения" +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Максимальное ускорение по оси X" -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Кристаллический материал" +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "Максимальное ускорение для мотора оси X" -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Куб" +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Максимальное ускорение по оси Y" -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Динамический куб" +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Максимальное ускорение для мотора оси Y." -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Стенка динамического куба" +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Максимальное ускорение по оси Z" -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Ограничивающий объект" +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Максимальное ускорение для мотора оси Z." -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "График, объединяющий поток (в мм3 в секунду) с температурой (в градусах Цельсия)." +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Максимальное ускорение материала" + +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "Максимальное ускорение мотора подачи материала." msgctxt "machine_acceleration label" msgid "Default Acceleration" msgstr "Стандартное ускорение" -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Температура рабочего стола по умолчанию" - -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Обычный рывок материала" - -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Температура сопла" +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "Стандартное ускорение для движений головы." msgctxt "machine_max_jerk_xy label" msgid "Default X-Y Jerk" msgstr "Обычный X-Y рывок" -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Обычный Z рывок" - msgctxt "machine_max_jerk_xy description" msgid "Default jerk for movement in the horizontal plane." msgstr "Стандартное изменение ускорения для движения в горизонтальной плоскости." +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Обычный Z рывок" + msgctxt "machine_max_jerk_z description" msgid "Default jerk for the motor of the Z-direction." msgstr "Стандартное изменение ускорения для мотора по оси Z." +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Обычный рывок материала" + msgctxt "machine_max_jerk_e description" msgid "Default jerk for the motor of the filament." msgstr "Стандартное изменение ускорения для мотора, подающего материал." -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "Обнаружение мостиков и изменение скорости печати, настроек потока и вентилятора во время печати мостиков." - -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "Определяет порядок печати стенок. Если сначала печатать наружные стенки, это поможет более точно определять размеры стенок, поскольку дефекты внутренних стенок не смогут распространяться наружу. Если печатать внешние стенки позже, это позволит лучше укладывать их друг на друга при печати выступов. При неравномерном количестве общих внутренних стен «центральная последняя линия» всегда печатается последней." - -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "Определяет приоритет данного объекта при вычислении нескольких перекрывающихся заполняющих объектов. К областям с несколькими перекрывающимися заполняющими объектами будут применяться настройки объекта более высокого порядка. Заполняющий объект более высокого порядка будет модифицировать заполнение объектов более низких порядков и обычных объектов." - -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "Определяет, когда слой шаблона заполнения «молния» должен поддерживать что-либо над ним. Измеряется под углом с учетом толщины слоя." - -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "Определяет, когда слой шаблона заполнения «молния» должен поддерживать модель над ним. Измеряется под углом с учетом толщины." +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Количество шагов на миллиметр (X)" -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Диаметр" +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "Количество шагов шагового двигателя, приводящее к перемещению на один миллиметр по оси X." -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "Увеличение диаметра до модели" +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Количество шагов на миллиметр (Y)" -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "Диаметр, которого каждое ответвление пытается достичь при достижении печатной пластины. Улучшает адгезию к столу." +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "Количество шагов шагового двигателя, приводящее к перемещению на один миллиметр по оси Y." -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "Различные варианты, которые помогают улучшить прилипание пластика к столу. Кайма добавляет однослойную плоскую область вокруг основания печатаемой модели, предотвращая её деформацию. Подложка добавляет толстую сетку с крышей под модель. Юбка - это линия, печатаемая вокруг модели, но не соединённая с ней." +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Количество шагов на миллиметр (Z)" -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Запрещенные области" +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "Количество шагов шагового двигателя, приводящее к перемещению на один миллиметр по оси Z." -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "Дистанция между линиями заполнения. Этот параметр вычисляется из плотности заполнения и ширины линии заполнения." +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Количество шагов на миллиметр (E)" -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "Дистанция между напечатанными линиями структуры поддержек первого слоя. Этот параметр вычисляется по плотности поддержек." +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "Количество шагов шаговых двигателей, приводящее к перемещению колесика питателя на один миллиметр по его окружности." -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "Дистанция между линиями низа поддержек. Этот параметр вычисляется из Плотности низа поддержек, но может быть указан отдельно." +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "Ограничитель хода на оси X в прямом направлении" -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "Дистанция между линиями крыши поддержек. Этот параметр вычисляется из Плотности крыши поддержек, но может быть указан отдельно." +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "Ограничитель хода на оси X в прямом направлении (верхняя координата X) или в обратном направлении (нижняя координата X)." -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "Дистанция между напечатанными линями структуры поддержек. Этот параметр вычисляется по плотности поддержек." +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Ограничитель хода на оси Y в прямом направлении" -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." -msgstr "Расстояние от печатаемого объекта до нижней части поддержки. Обратите внимание, что это значение округляется в большую сторону до высоты следующего слоя." +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "Ограничитель хода на оси Y в прямом направлении (верхняя координата Y) или в обратном направлении (нижняя координата Y)." -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "Расстояние между верхом поддержек и печатаемой моделью." +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Ограничитель хода на оси Z в прямом направлении" -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." -msgstr "Расстояние от верха/низа поддерживающей конструкции до печатаемого объекта. Этот зазор обеспечивает возможность удаления поддержек после печати модели. Верхний слой поддержки под моделью может быть долей обычного слоя." +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "Ограничитель хода на оси Z в прямом направлении (верхняя координата Z) или в обратном направлении (нижняя координата Z)." -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "Расстояние, на которое продолжается движение сопла после печати каждой линии заполнения, для обеспечения лучшего связывания заполнения со стенками. Этот параметр похож на перекрытие заполнения, но без экструзии и только с одной стороны линии заполнения." +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Минимальная подача" -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "Расстояние перемещения, добавленное после печати внешней стенки, чтобы лучше спрятать Z шов." +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "Минимальная скорость движения головы." -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "Дистанция до стенки кожуха от модели, по осям X/Y." +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Диаметр колесика питателя" -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "Дистанция до стенки защиты от модели, по осям X/Y." +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "Диаметр колесика, перемещающего материал в питатель." -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "Зазор между структурами поддержек и нависанием по осям X/Y." +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "Масштабирование скорости вентилятора до 0-1" -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "Расстояние между структурами поддержек и печатаемой модели по осям X/Y." +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "Масштабируйте скорость вентилятора таким образом, чтобы она находилась в диапазоне от 0 до 1, а не от 0 до 256." -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Точки расстояния смещаются для сглаживания пути" +msgctxt "resolution label" +msgid "Quality" +msgstr "Качество" -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Точки расстояния смещаются для сглаживания пути" +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "Все параметры, которые влияют на разрешение печати. Эти параметры сильно влияют на качество (и время печати)" -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "Не генерировать области заполнения меньше чем указано здесь (вместо этого использовать оболочку)." +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Высота слоя" -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Высота кожуха" +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "Высота каждого слоя в миллиметрах. Большие значения приводят к быстрой печати при низком разрешении, малые значения приводят к замедлению печати с высоким разрешением." -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Ограничение кожуха" +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Высота первого слоя" -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Дистанция X/Y до кожуха" +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "Высота первого слоя в миллиметрах. Более толстый слой упрощает прилипание пластика к столу." -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Объект поддержки нависаний" +msgctxt "line_width label" +msgid "Line Width" +msgstr "Ширина линии" -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Два экструдера" +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "Ширина одной линии. Обычно, ширина каждой линии должна соответствовать диаметру сопла. Однако небольшое уменьшение этого значение приводит к лучшей печати." -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Эллиптическая" +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Ширина линии стенки" -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Разрешить управление ускорением" +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Ширина одной линии стенки." -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Активация настроек мостиков" +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Ширина линии внешней стенки" -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Разрешить накат" +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "Ширина линии внешней стенки. Уменьшая данное значение, можно печатать более тонкие детали." -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Конические поддержки" +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Ширина линии внутренней стенки" -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Разрешить печать кожуха" +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "Ширина одной линии стенки для всех линий стенки, кроме самой внешней." -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "Включить плавное движение" +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Ширина линии дна/крышки" -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Разрешить разглаживание" +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Ширина одной линии дна/крышки." -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Включить управление рывком" +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Ширина линии заполнения" -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Разрешить управление температурой сопла" +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Ширина одной линии заполнения." -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Печатать защиту от капель" +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Ширина линии юбки/каймы" -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "Разрешить наполнение материалом" +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "Ширина одной линии юбки или каймы." -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Разрешить черновую башню" +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Ширина линии поддержки" -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Включить вентиляторы" +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Ширина одной линии поддержки." -msgctxt "ppr_enable label" -msgid "Enable Print Process Reporting" -msgstr "" +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Ширина линии поддерживающей крыши" -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Разрешить откат" +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "Ширина одной линии поддержки крышки или дна." -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Разрешить кайму поддержек" +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Ширина линии крыши поддержки" -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Разрешить дно поддержек" +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "Ширина одной линии крыши поддержки." -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Разрешить связующий слой поддержки" +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Ширина линии дна поддержки" -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Разрешить крышу поддержек" +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "Ширина одной линии дна поддержки." -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "Включить ускорение перемещения" +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Ширина линии черновой башни" -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "Включить рывок перемещения" +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "Ширина отдельной линии черновой башни." -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "Разрешает печать внешней защиты от вытекших капель. Создаёт ограду вокруг модели, о которую вытирается материал, вытекший из второго сопла, если оно находится на той же высоте, что и первое сопло." +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Ширина линии первого слоя" -msgctxt "ppr_enable description" -msgid "Enable print process reporting for setting threshold values for possible fault detection." -msgstr "" +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "Множитель для ширины линии первого слоя. Увеличение значения улучшает прилипание к столу." -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "Включите заполнение небольших областей (до «маленькой ширины вверху/внизу») в самом верхнем слое оболочки (которые подвержены воздействию воздуха) стенками вместо шаблона по умолчанию." +msgctxt "shell label" +msgid "Walls" +msgstr "Стенки" -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "Разрешает управление скоростью изменения ускорений головы по осям X или Y. Увеличение данного значения может сократить время печати за счёт его качества." +msgctxt "shell description" +msgid "Shell" +msgstr "Ограждение" -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "Разрешает регулирование ускорения головы. Увеличение ускорений может сократить время печати за счёт качества печати." +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Экструдер стенок" -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "Разрешает использование вентиляторов во время печати. Применение вентиляторов улучшает качество печати слоёв с малой площадью, а также мостов и нависаний." +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати стенок. Используется при наличии нескольких экструдеров." -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "Завершающий G-код" +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Экструдер внешних стенок" -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Длина выдавливания заканчивающегося материала" +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати внешних стенок. Используется при наличии нескольких экструдеров." -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Скорость выдавливания заканчивающегося материала" +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Экструдер внутренней стенки" + +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати внутренних стенок. Используется при наличии нескольких экструдеров." -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "Принудительная печать каймы вокруг модели, даже если пространство в ином случае было бы занято поддержкой. При этом некоторые участки первого слоя поддержки заменяются участками каймы." +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Толщина стенки" -msgctxt "brim_location option everywhere" -msgid "Everywhere" -msgstr "" +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "Толщина внешних стенок в горизонтальном направлении. Это значение, разделённое на ширину линии стенки, определяет количество стенок." -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "Везде" +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Количество линий стенки" -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Исключение" +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "Количество линий стенки. При вычислении толщины стенки, это значение округляется до целого." -msgctxt "experimental label" -msgid "Experimental" -msgstr "Экспериментальное" +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Длина перехода к стенке" -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Показать шов" +msgctxt "wall_transition_length description" +msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." +msgstr "При переходе между разным количеством стенок по мере того, как деталь становится тоньше, выделяется определенное пространство для разделения или соединения линий стенок." -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Обширное сшивание" +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Счетчик распределений по стенкам" -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "Обширное сшивание пытается сшить открытые отверстия в объекте, закрывая их полигонами. Эта опция может добавить дополнительное время во время обработки." +msgctxt "wall_distribution_count description" +msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." +msgstr "Количество стенок, считая от центра, на которые необходимо распространить вариацию. Более низкое значение означает, что ширина внешних стенок не изменяется." -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "Количество дополнительных стенок заполнения" +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Пороговый угол перехода между стенками" -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Количество внешних дополнительных оболочек" +msgctxt "wall_transition_angle description" +msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." +msgstr "Когда требуется создавать переходы между четным и нечетным количеством стенок. Клиновидная форма с углом, превышающим этот параметр, не будет иметь переходов, и стенки не будут напечатаны в центре для заполнения оставшегося пространства. Уменьшение значения этого параметра позволяет сократить количество и длину этих центральных стенок, но при этом могут остаться зазоры или произойти чрезмерное экструдирование." -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "Дополнительный объем материала для заполнения после смены экструдера." +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Расстояние фильтра при переходе между стенками" -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Начальная X позиция экструдера" +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "Если ожидаются переходы туда и обратно между разным количеством стенок в быстрой последовательности, не выполняйте переходы совсем. Удалите переходы, если расстояние между ними меньше значения этого параметра." -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Начальная Y позиция экструдера" +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Поле фильтра при переходе между стенками" -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Z координата начала печати" +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "Предотвратите переход туда и обратно между одной лишней стенкой и одной недостающей. Это поле расширяет диапазон значений ширины линии, который определяется как [Минимальная ширина линии стенки - Поле, 2 * Минимальная ширина линии стенки + Поле]. Расширение этого поля позволяет сократить количество переходов, что в свою очередь позволяет сократить количество запусков/остановок экструдирования и время перемещения. Однако большой разброс значений ширины линии может привести к проблемам с недостаточным или чрезмерным экструдированием материала." -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Общий нагреватель экструдеров" +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Расстояние очистки внешней стенки" -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Общее сопло экструдеров" +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "Расстояние перемещения, добавленное после печати внешней стенки, чтобы лучше спрятать Z шов." -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Модификатор скорости охлаждения экструзии" +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Вставка внешней стенки" -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "Поправочный коэффициент ширины экструзии в зависимости от скорости. При значении 0 % скорость перемещения сохраняется на уровне скорости печати. При значении 100 % скорость перемещения корректируется таким образом, чтобы расход (в мм3/с) оставался постоянным, то есть линии в половину нормальной ширины линии, печатаются в два раза быстрее, а линии вдвое шире — в два раза быстрее. Значение выше 100 % может помочь компенсировать более высокое давление, необходимое для экструдирования широких линий." +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "Вставка применяется для внешних стенок. Если внешняя стенка меньше диаметра сопла и печатается после внутренних стенок, то используйте это смещение для захода соплом на внутренние стенки, вместо выхода за модель." -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Скорость вентилятора" +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Оптимизация порядка печати стенок" -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Переопределение скорости вентилятора" +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "Оптимизирует порядок, в котором печатаются стенки, для уменьшения количества откатов и перемещений. Большинство моделей будут распечатываться быстрее, но не все. Сравнивайте оценочное время печати с оптимизацией и без нее. При выборе каймы в качестве типа приклеивания к рабочему столу первый слой не оптимизируется." -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "Контуры элементов с длиной меньше этого значения будут напечатаны с использованием функции «Скорость для малых элементов»." +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Порядок стенок" -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Функции, еще не раскрытые до конца." +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "Определяет порядок печати стенок. Если сначала печатать наружные стенки, это поможет более точно определять размеры стенок, поскольку дефекты внутренних стенок не смогут распространяться наружу. Если печатать внешние стенки позже, это позволит лучше укладывать их друг на друга при печати выступов. При неравномерном количестве общих внутренних стен «центральная последняя линия» всегда печатается последней." -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Диаметр колесика питателя" +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "От внутренних к внешним" -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Конечная температура печати" +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "От внешних к внутренним" -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Откат встроенного программного обеспечения" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Чередующаяся стенка" -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Экструдер первого слоя поддержек" +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "Печатает дополнительную стенку через слой. Таким образом, заполнение заключается между этими дополнительными стенками, что приводит к повышению прочности печати." -msgctxt "material_flow label" -msgid "Flow" -msgstr "Поток" +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Минимальная ширина линии стенки" -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Коэффициент выравнивания потока" +msgctxt "min_wall_line_width description" +msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." +msgstr "Для тонких структур, шириной не более одного или двух размеров сопла, ширину линии необходимо изменить таким образом, чтобы она соответствовала толщине модели. Этот параметр задает минимальную допустимую ширину линии стенки. Минимальная ширина линии одновременно определяет максимальную ширину линии, поскольку выполняется переход от N к N+1 стенкам при некоторой геометрической толщине, где N стенок —— широкие, а N+1 стенок — узкие. Самая широкая возможная линия стенки в два раза превышает минимальную ширину линии стенки." -msgctxt "flow_anomaly_limit label" -msgid "Flow Limit" -msgstr "" +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Минимальная ширина линии четных стенок" -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Коэффициент компенсации расхода" +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "Минимальная ширина линии обычных многоугольных стенок. Этот параметр определяет, при какой толщине модели выполняется переключение с печати тонкой стенки в одну линию на печать стенок в две линии. Чем выше значение минимальной ширины линии четной стенки, тем выше максимальная ширина линии нечетной стенки. Максимальная ширина линии четной стенки вычисляется по формуле: Ширина линии внешней стенки + 0,5 * Минимальная ширина линии нечетной стенки." -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Макс. смещение экструзии для компенсации расхода" +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Минимальная ширина линии нечетных стенок" -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "График температуры потока" +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "Минимальная ширина линии для полилинейных стенок, заполняющих зазоры средней линии. Этот параметр определяет, при какой толщине модели выполняется переключение с печати стенки в две линии на печать двух внешних стенок и одной центральной стенки посередине. Чем выше значение минимальной ширины линии нечетной стенки, тем выше максимальная ширина линии четной стенки. Максимальная ширина линии нечетной стенки вычисляется по формуле: 2 * минимальную ширину линии четной стенки." -msgctxt "flow_warn_limit label" -msgid "Flow Warning" -msgstr "" +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Печать тонких стенок" -msgctxt "material_flow_layer_0 description" -msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." -msgstr "Компенсация потока для первого слоя: объем выдавленного материала на первом слое умножается на этот коэффициент." +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "Печать частей модели, которые по горизонтали тоньше диаметра сопла." -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "Компенсация потока на нижних линиях первого слоя." +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Минимальный размер элемента" -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Компенсация потока на линиях заполнения." +msgctxt "min_feature_size description" +msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." +msgstr "Минимальная толщина тонких элементов. Элементы модели, которые тоньше этого значения, не будут напечатаны, в то время как элементы с толщиной, превышающей минимальный размер элемента, будут расширены до минимальной ширины линии стенки." -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "Компенсация потока на линиях крыши или низа поддержек." +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Минимальная ширина линии нечетных стенок" -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "Компенсация потока на линиях наверху печатаемой детали." +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "Ширина стенки, которая заменит тонкие элементы (согласно минимальному размеру элемента) модели. Если минимальная ширина линии стенки меньше толщины элемента, толщина стенки будет приведена к толщине самого элемента." -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Компенсация потока на линиях черновой башни." +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Горизонтальное расширение" -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Компенсация потока на линиях юбки или каймы." +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "Сумма смещения, применяемая ко всем полигонам на каждом слое. Позитивные значения могут возместить потери для слишком больших отверстий; негативные значения могут возместить потери для слишком малых отверстий." -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Компенсация потока на линиях низа поддержек." +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Горизонтальное расширение первого слоя" -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Компенсация потока на линиях крыши поддержек." +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "Сумма смещений, применяемая ко всем полигонам первого слоя. Отрицательное значение может компенсировать \"хлюпанье\" первого слоя, известное как \"слоновая нога\"." + +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Горизонтальное расширение отверстия" -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Компенсация потока на линиях структуры поддержек." +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "Если значение больше нуля, то горизонтальное расширение отверстия представляет собой величину смещения, применяемую ко всем отверстиям в каждом слое. Положительные значения увеличивают размер отверстий, отрицательные значения уменьшают размер отверстий. Если этот параметр включен, то его можно дополнительно настроить с помощью максимального диаметра горизонтального расширения отверстия." -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "Компенсация потока на внешней линии стенки первого слоя." +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "Максимальный диаметр горизонтального расширения отверстия" -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "Компенсация потока на внешней линии стенки." +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "Если значение больше нуля, то горизонтальное расширение отверстия постепенно применяется к маленьким отверстиям (маленькие отверстия расширяются больше). Если установлено нулевое значение, то горизонтальное расширение отверстия будет применено ко всем отверстиям. Отверстия, превышающие максимальный диаметр горизонтального расширения отверстия, не расширяются." -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Компенсация потока на самой внешней линии верхней поверхности." +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Выравнивание шва по оси Z" -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Компенсация потока на линиях стены верхней поверхности для всех линий стены, кроме самой внешней." +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "Начальная точка каждого пути на слое. Когда пути последовательных слоёв начинаются в одной точке, то в процессе печати может появиться вертикальный шов. Выравнивая место точки в указанной пользователем области, шов несложно убрать. При случайном размещении неточность в начале пути становится не так важна. При выборе кратчайшего пути, печать становится быстрее." -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Компенсация потока на верхних/нижних линиях." +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Пользовательский" -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "Компенсация потока на линиях стенки для всех линий, за исключением внешней, но только для первого слоя." +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Короткий путь" -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "Компенсация потока на линиях стенки для всех линий, за исключением внешней." +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Случайно" -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Компенсация потока на линиях стенки." +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Острейший угол" -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "Компенсация потока: объём выдавленного материала умножается на этот коэффициент." +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Позиция Z шва" -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "Угол движения жидкости" +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "Позиция, рядом с которой следует начинать путь на каждом слое." -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "Расстояние смещения движения жидкости" +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Сзади слева" -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "Движение жидкости на небольшом расстоянии" +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Назад" -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Длина выдавливания заподлицо" +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Сзади справа" -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Скорость выдавливания заподлицо" +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Справа" -msgctxt "min_wall_line_width description" -msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." -msgstr "Для тонких структур, шириной не более одного или двух размеров сопла, ширину линии необходимо изменить таким образом, чтобы она соответствовала толщине модели. Этот параметр задает минимальную допустимую ширину линии стенки. Минимальная ширина линии одновременно определяет максимальную ширину линии, поскольку выполняется переход от N к N+1 стенкам при некоторой геометрической толщине, где N стенок —— широкие, а N+1 стенок — узкие. Самая широкая возможная линия стенки в два раза превышает минимальную ширину линии стенки." +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Спереди справа" msgctxt "z_seam_position option front" msgid "Front" @@ -1192,4592 +1014,4680 @@ msgctxt "z_seam_position option frontleft" msgid "Front Left" msgstr "Спереди слева" -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Спереди справа" - -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Полная" - -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Нечёткая оболочка" - -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Плотность шершавой оболочки" +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Слева" -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Только шершавая оболочка снаружи" +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "X координата для Z шва" -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Дистанция между точками шершавой оболочки" +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "X координата позиции, вблизи которой следует начинать путь на каждом слое." -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Толщина шершавости оболочки" +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Y координата для Z шва" -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "Вариант G-кода" +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "Y координата позиции, вблизи которой следует начинать путь на каждом слое." -msgctxt "machine_end_gcode description" -msgid "" -"G-code commands to be executed at the very end - separated by \n" -"." -msgstr "" -"Команды в G-коде, которые будут выполнены в самом конце, разделенные с помощью \n" -"." +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Настройки угла шва" -msgctxt "machine_start_gcode description" -msgid "" -"G-code commands to be executed at the very start - separated by \n" -"." -msgstr "" -"Команды в G-коде, которые будут выполнены в самом начале, разделенные с помощью \n" -"." +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "Управляет влиянием углов на контуре модели на позицию шва. «Нет» означает отсутствие влияния. «Спрятать шов» означает размещение шва с наибольшей вероятностью внутри угла. «Показать шов» означает размещение шва с наибольшей вероятностью снаружи угла. «Спрятать или показать» означает выбор варианта в зависимости от ситуации. Функция «Интеллектуальное скрытие» допускает размещение швов как внутри, так и снаружи углов, но чаще размещает их внутри." -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "Идентификатор материала, устанавливается автоматически." +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Нет" -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Высота портала" +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Спрятать шов" -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "Создать взаимосвязанную структуру" +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Показать шов" -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Генерация поддержек" +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Спрятать или показать" -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "Создайте кайму внутри участков заполнения поддержек первого слоя. Эта кайма печатается под поддержкой, а не вокруг нее. Включение этого параметра увеличивает адгезию поддержки к рабочему столу." +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Интеллектуальное скрытие" -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "Генерирует плотный слой между моделью и поддержкой. Создаёт поверхность сверху поддержек, на которой печатается модель, и снизу, при печати поддержек на модели." +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Привязка Z шва" -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "Генерирует плотный слой материала между низом поддержки и моделью. Создаёт поверхность между моделью и поддержкой." +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "Когда включено, координаты Z шва привязаны к центру каждой части. Когда отключено, координаты определяются от абсолютной позиции на столе." -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "Генерирует плотный слой материала между крышей поддержки и моделью. Создаёт поверхность между моделью и поддержкой." +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Дно / крышка" -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "Генерация структур для поддержки нависающих частей модели. Без этих структур такие части будут складываться во время печати." +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Дно / крышка" -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Стекло" +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Экструдер для печати крышки" -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "Проходить по верхней оболочке еще раз, но на этот раз выдавливая очень мало материала. Это приводит к плавлению пластика, что создает более гладкую поверхность. Давление в камере сопла поддерживается на высоком уровне, благодаря чему складки на поверхности заполняются материалом." +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "Экструдер, используемый для печати верхних оболочек. Используется при наличии нескольких экструдеров." -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Высота изменения шага заполнения" +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Слои верхней оболочки" -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Изменение шага заполнения" +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "Количество верхних слоёв оболочки. Обычно достаточно одного слоя для получения верхних поверхностей в хорошем качестве." -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Высота шага изменения заполнения поддержек" +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Ширина линии крышки" -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Степень заполнения поддержек" +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "Ширина одной линии крышки." -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "Постепенно снижать температуру до этой температуры при печати на пониженных скоростях из-за минимального времени нанесения слоя." +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Шаблон верхней оболочки" -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Сетка" +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "Шаблон, используемый для верхних слоёв оболочки." -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Сетка" +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Линии" -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Сетка" +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Концентрические" -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Сетка" +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Сетка" +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Монотонный порядок верхней оболочки" -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Печатайте линии верхней оболочки в таком порядке, чтобы они всегда перекрывали соседние линии в одном направлении. На печать уходит немного больше времени, но плоские поверхности выглядят более единообразными." -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Группировать внешние стены" +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Направление линий верхней оболочки" -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Гироид" +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Список направлений линии при печати слоёв дна/крышки линиями или зигзагом. Элементы списка используются последовательно по мере печати слоёв и когда конец списка будет достигнут, он начнётся сначала. Элементы списка отделяются запятыми и сам список заключён в квадратные скобки. По умолчанию, он пустой, что означает использование стандартных углов (45 и 135 градусов)." -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Гироид" +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Экструдер дна/крышки" -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "Есть стабилизация температуры для объема печати" +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "Экструдер, используемый для печати верхней и нижней оболочек. Используется при наличии нескольких экструдеров." -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Имеет подогреваемый стол" +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Толщина дна/крышки" -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Скорость нагрева" +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "Толщина слоя дна/крышки при печати. Это значение, разделённое на высоту слоя, определяет количество слоёв в дне/крышке." -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Длина зоны нагрева" +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Толщина крышки" -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "Ограничение по высоте для кожуха. Выше указанного значение кожух печататься не будет." +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "Толщина крышки при печати. Это значение, разделённое на высоту слоя, определяет количество слоёв в крышке." -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Спрятать шов" +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Слои крышки" -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Спрятать или показать" +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "Количество слоёв в крышке. При вычислении толщины крышки это значение округляется до целого." -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Горизонтальное расширение отверстия" +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Толщина дна" -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "Максимальный диаметр горизонтального расширения отверстия" +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "Толщина дна при печати. Это значение, разделённое на высоту слоя, определяет количество слоёв в дне." -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "Отверстия и контуры деталей с диаметром меньше этого значения будут напечатаны с использованием функции «Скорость для малых элементов»." +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Слои дна" -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Горизонтальное расширение" +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "Количество слоёв в дне. При вычислении толщины дна это значение округляется до целого." -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Горизонтальный коэффициент масштабирования для компенсации усадки" +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "Начальные слои дна" -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "Насколько сильно можно растянуть материал при нагревании, до тех пор пока он не отломится." +msgctxt "initial_bottom_layers description" +msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "Количество начальных слоев дна, вверх от рабочего стола. При вычислении толщины дна это значение округляется до целого." -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "Насколько далеко необходимо убрать материал, чтобы он перестал капать." +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Шаблон для крышки/дна" -msgctxt "flow_rate_extrusion_offset_factor description" -msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." -msgstr "Означает, насколько далеко следует переместить материал, чтобы компенсировать изменение расхода, в процентах от расстояния, на которое перемещается материал за одну секунду экструзии." +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Шаблон слоёв для крышки/дна." -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "Насколько далеко следует убрать материал, чтобы он отломился чисто." +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Линии" -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "Насколько быстро следует убирать материал, чтобы он отломился." +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Концентрический" -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "Насколько быстро необходимо убрать материал во время его замены, чтобы не допустить появления капель." +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "Скорость подачи материала после замены пустой катушки на новую катушку с тем же материалом." +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Нижний шаблон начального слоя" -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "Скорость подачи материала после переключения на другой материал." +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "Шаблон низа печати на первом слое." -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "Срок хранения материала вне сухого хранилища." +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Линии" -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "Количество шагов шагового двигателя, приводящее к перемещению на один миллиметр по оси X." +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Концентрический" -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "Количество шагов шагового двигателя, приводящее к перемещению на один миллиметр по оси Y." +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "Количество шагов шагового двигателя, приводящее к перемещению на один миллиметр по оси Z." +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Соединение верхних/нижних полигонов" -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "Количество шагов шаговых двигателей, приводящее к перемещению колесика питателя на один миллиметр по его окружности." +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "Соединение верхних/нижних путей оболочки на участках, где они проходят рядом. При использовании концентрического шаблона активация данной настройки значительно сокращает время перемещения, но, учитывая возможность наличия соединений на полпути над заполнением, эта функция может ухудшить качество верхней поверхности." -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "Объем материала, используемый для выдавливания предыдущего материала из сопла (измеряется длиной нити) при замене пустой катушки на новую катушку с тем же материалом." +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Монотонный порядок дна/крышки" -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "Объем материала, используемый для выдавливания предыдущего материала из сопла (измеряется длиной нити) при переключении на другой материал." +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Печатайте линии дна/крышки в таком порядке, чтобы они всегда перекрывали соседние линии в одном направлении. На печать уходит немного больше времени, но плоские поверхности выглядят более единообразными." -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "Показывает, насколько материал каждого экструдера предположительно вытянут от наконечника общего сопла по завершении запуска сценария gcode принтера; значение должно быть равно длине общей части каналов сопла или превышать ее." +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Направление линии дна/крышки" -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "Как интерфейс поддержки и поддержка будут взаимодействовать при пересечении. В настоящее время реализовано только для крыши поддержки." +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Список направлений линии при печати слоёв дна/крышки линиями или зигзагом. Элементы списка используются последовательно по мере печати слоёв, и, когда конец списка будет достигнут, он начнётся сначала. Элементы списка отделяются запятыми и сам список заключён в квадратные скобки. По умолчанию, он пустой, что означает использование стандартных углов (45 и 135 градусов)." -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "Какой высоты должно быть ответвление, если оно размещено на модели. Предотвращает образование небольших пузырей поддержки. Этот параметр игнорируется, если ответвление поддерживает крышу поддержки." +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "Маленькая ширина верха/низа" -msgctxt "bridge_skin_support_threshold description" -msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." -msgstr "Если поддержка области оболочки составляет меньше указанного процентного значения от ее площади, печать должна быть выполнена с использованием настроек мостика. В противном случае печать осуществляется с использованием стандартных настроек оболочки." +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "Небольшие области вверху/внизу заполняются стенками вместо шаблона верха/низа по умолчанию. Это помогает избежать резких движений. По умолчанию отключено для самого верхнего (подверженного воздействию воздуха) слоя (см. Маленький верх/низ на поверхности)." -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "Если сегмент траектории отклоняется более, чем на этот угол от общего движения, он сглаживается." +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "Маленькие вверху/внизу на поверхности" -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "Если настройка активна, второй и третий слои над воздушным зазором печатаются с использованием указанных далее настроек. В противном случае эти слои печатаются с использованием стандартных настроек." +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "Включите заполнение небольших областей (до «маленькой ширины вверху/внизу») в самом верхнем слое оболочки (которые подвержены воздействию воздуха) стенками вместо шаблона по умолчанию." -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "Если ожидаются переходы туда и обратно между разным количеством стенок в быстрой последовательности, не выполняйте переходы совсем. Удалите переходы, если расстояние между ними меньше значения этого параметра." +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Нет оболочки в Z-зазорах" + +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "Если у модели имеются небольшие вертикальные зазоры, состоящие всего из нескольких слоев, вокруг этих слоев в узком пространстве, как правило, присутствует оболочка. Выбор данного параметра предотвратит создание оболочки в ситуациях, когда вертикальные зазоры очень маленькие. Это позволит сократить время печати и нарезки, но с технической точки зрения область заполнения останется открытой." -msgctxt "raft_base_margin description" -msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Количество внешних дополнительных оболочек" -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Если подложка включена, это дополнительное поле вокруг модели, которая также имеет подложку. Увеличение этого значения создаст более крепкую поддержку, используя больше материала и оставляя меньше свободной области для печати." +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "Заменяет внешнюю часть шаблона крышки/дна рядом концентрических линий. Использование одной или двух линий улучшает мосты, которые печатаются поверх материала заполнения." -msgctxt "raft_interface_margin description" -msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Разрешить разглаживание" -msgctxt "raft_surface_margin description" -msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "Проходить по верхней оболочке еще раз, но на этот раз выдавливая очень мало материала. Это приводит к плавлению пластика, что создает более гладкую поверхность. Давление в камере сопла поддерживается на высоком уровне, благодаря чему складки на поверхности заполняются материалом." -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "Игнорирует внутреннюю геометрию, являющуюся результатом перекрытия объёмов в модели, и печатает эти объёмы как один. Это может приводить к непреднамеренному исчезновению внутренних полостей." +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Самый высокий слой разглаживания" -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Добавлять температуру стола" +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "Выполняет разглаживание только на самом последнем слое модели. Экономит время, когда нижние слои не требуют сглаживания поверхности." -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Использовать температуру из материала" +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Шаблон разглаживания" -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Включение" +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "Шаблон, который будет использоваться для разглаживания верхней оболочки." -msgctxt "infill description" -msgid "Infill" -msgstr "Заполнение" +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Концентрический" -msgctxt "infill label" -msgid "Infill" -msgstr "Заполнение" +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Ускорение заполнения" +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Монотонный порядок разглаживания" -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Заполнение перед печатью стенок" +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Печатайте линии разглаживания в таком порядке, чтобы они всегда перекрывали соседние линии в одном направлении. На печать уходит немного больше времени, но плоские поверхности выглядят более единообразными." -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Плотность заполнения" +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Расстояние между линиями разглаживания" -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Экструдер для заполнения" +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "Расстояние между линиями разглаживания." -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Поток для заполнения" +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Поток разглаживания" -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Рывок заполнения" +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "Объём материала, относительно от обычной линии, который будет выдавлен в процессе разглаживания. Наличие в сопле наличие материала помогает заполнять щели на верхней оболочке, но слишком большое значение приводит к излишнему выдавливанию материала и ухудшает качество оболочки." -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Толщина слоя заполнения" +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Границы разглаживания" -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "Направления линии заполнения" +msgctxt "ironing_inset description" +msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." +msgstr "Расстояние от краёв модели. Разглаживание от края до края может выразиться в загибании краёв при печати." -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Дистанция линий заполнения" +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Скорость разглаживания" -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "Множитель для линии заполнения" +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "Скорость, на которой голова проходит над верхней оболочкой." -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Ширина линии заполнения" +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Ускорение разглаживания" -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Заполнение объекта" +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "Ускорение, с которым производится разглаживание." -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Угол нависания при заполнении" +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Рывок разглаживания" -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Перекрытие заполнения" +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "Изменение максимальной мгновенной скорости, с которой выполняется разглаживание." -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "Процент перекрытие заполнения" +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Процент перекрытия оболочек" -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Шаблон заполнения" +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Настройте величину перекрытия между стенками и центральными линиями оболочки (конечными точками) в виде процентного отношения значений ширины линии для линий оболочки и внутренней стенки. Небольшое перекрытие позволяет стенкам надежно соединяться с оболочкой. Обратите внимание, что при одинаковой толщине оболочки и ширине линии стенки любое процентное значение, превышающее 50%, может привести к размещению любой оболочки за пределами стенки. Это обусловлено тем, что в этот момент расположение сопла экструдера оболочки может сместиться за середину стенки." -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Скорость заполнения" +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Перекрытие оболочек" -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Поддержка заполнения" +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Настройте величину перекрытия между стенками и центральными линиями оболочки (конечными точками). Небольшое перекрытие позволяет стенкам надежно соединяться с оболочкой. Обратите внимание, что при одинаковой толщине оболочки и ширине линии стенки любое значение, превышающее половину ширины стенки, может привести к размещению любой оболочки за пределами стенки. Это обусловлено тем, что в этот момент расположение сопла экструдера оболочки может сместиться за середину стенки." -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Оптимизация перемещения заполнения" +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Ширина удаляемой оболочки" -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "Дистанция окончания заполнения" +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "Наибольшая ширина областей оболочки, которые будут удалены. Каждая область оболочки, которая меньше указанного значения, будет удалена. Это может помочь с сокращением затрат времени и материала при печати верхних/нижних оболочек наклонных поверхностей модели." -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "Смещение заполнения по X" +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Ширина удаляемой оболочки сверху" -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Смещение заполнения по Y" +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "Наибольшая ширина областей оболочки, которые будут удалены. Каждая область оболочки, которая меньше указанного значения, будет удалена. Это может помочь с сокращением затрат времени и материала при печати верхних оболочек наклонных поверхностей модели." -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "Начальные слои дна" +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Ширина удаляемой оболочки снизу" -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Начальная скорость вентилятора" +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "Наибольшая ширина областей оболочки, которые будут удалены. Каждая область оболочки, которая меньше указанного значения, будет удалена. Это может помочь с сокращением затрат времени и материала при печати нижних оболочек наклонных поверхностей модели." -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Ускорение первого слоя" +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Дистанция расширения оболочки" -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "Поток низа первого слоя" +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "Расстояние на которое оболочки внедряются в заполнение. Большие значения лучше связывают оболочку с шаблоном заполнения и стенками. Меньшие значения сохраняют используемый материал." -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "Диаметр первого слоя" +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Дистанция расширения оболочки сверху" -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Поток для первого слоя" +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "Расстояние на которое верхние оболочки входят в заполнение. Большие значения лучше связывают оболочку с шаблоном заполнения и стенками. Меньшие значения сохраняют используемый материал." -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Высота первого слоя" +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Расстояние расширения оболочки снизу" -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Горизонтальное расширение первого слоя" +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "Расстояние на которое нижние оболочки входят в заполнение. Большие значения лучше связывают оболочку с шаблоном заполнения и стенками. Меньшие значения сохраняют используемый материал." -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "Поток внутренней стенки первого слоя" +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Максимальный угол оболочки при расширении" -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Рывок первого слоя" +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "Для верхней и (или) нижней поверхностей вашего объекта с углом больше указанного в данном параметре верхняя и нижняя оболочки не будут расширены. Это предотвращает расширение узких областей оболочек, которые создаются, если поверхность модели имеет почти вертикальный наклон. Угол 0° является горизонтальным и не вызывает расширения оболочки, угол 90° является вертикальным и вызывает расширение всей оболочки." + +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Минимальная ширина оболочки при расширении" -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Ширина линии первого слоя" +msgctxt "min_skin_width_for_expansion description" +msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." +msgstr "Области оболочек уже указанного значения не расширяются. Это предотвращает расширение узких областей оболочек, которые создаются, если наклон поверхности модели близок к вертикальному." -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "Поток внешней стенки первого слоя" +msgctxt "infill label" +msgid "Infill" +msgstr "Заполнение" -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Ускорение печати первого слоя" +msgctxt "infill description" +msgid "Infill" +msgstr "Заполнение" -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Рывок печати первого слоя" +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Экструдер для заполнения" -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Скорость первого слоя" +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "Экструдер, используемый для печати заполнения. Используется при наличии нескольких экструдеров." -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Скорость первого слоя" +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Плотность заполнения" -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "Дистанция между линиями поддержки первого слоя" +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "Отрегулируйте плотность заполнения при печати." -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Ускорение перемещений первого слоя" +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Дистанция линий заполнения" -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Рывок перемещения первого слоя" +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "Дистанция между линиями заполнения. Этот параметр вычисляется из плотности заполнения и ширины линии заполнения." -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Скорость перемещений на первом слое" +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Шаблон заполнения" -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Z наложение первого слоя" +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "Шаблон заполняющего материала печати. Линейное и зигзагообразное заполнение меняет направление на чередующихся слоях, снижая расходы на материал. Шаблоны «сетка», «треугольник», «шестигранник из треугольников», «куб», «восьмигранник», «четверть куба», «крестовое», «концентрическое» полностью печатаются в каждом слое. Шаблоны заполнения «гироид», «куб», «четверть куба» и «восьмигранник» меняются в каждом слое, чтобы обеспечить более равномерное распределение прочности в каждом направлении. Шаблон заполнения «молния» пытается минимизировать заполнение, поддерживая только верхнюю область объекта." -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Начальная температура печати" +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Сетка" -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Ускорение внутренней стенки" +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Линии" -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Экструдер внутренней стенки" +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Треугольник" -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Рывок внутренних стен" +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Шестигранник из треугольников" -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Скорость печати внутренних стенок" +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Куб" -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Поток для внутренних стенок" +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Динамический куб" -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Ширина линии внутренней стенки" +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Восьмигранник" -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "Вставка применяется для внешних стенок. Если внешняя стенка меньше диаметра сопла и печатается после внутренних стенок, то используйте это смещение для захода соплом на внутренние стенки, вместо выхода за модель." +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Четверть куба" -msgctxt "brim_location option inside" -msgid "Inside Only" -msgstr "" +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Концентрическое" -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "От внутренних к внешним" +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "Предпочитать линии интерфейса" +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Крестовое" -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "Предпочитать интерфейс" +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "Крестовое 3D" -msgctxt "prime_tower_mode option interleaved" -msgid "Interleaved" -msgstr "" +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Гироид" -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "Количество слоев взаимосвязанных балок" +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Молния" -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "Ширина взаимосвязанных балок" +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Соединять линии заполнения" -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "Избегание границ взаимосвязанной структуры" +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "Соединение мест пересечения шаблона заполнения и внутренних стенок с использованием линии, повторяющей контур внутренней стенки. Использование этой функции улучшает сцепление заполнения со стенками и снижает влияние заполнения на качество вертикальных поверхностей. Отключение этой функции снижает расход материала." -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "Глубина взаимосвязанной структуры" +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Соединение полигонов заполнения" -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "Ориентация взаимосвязанной структуры" +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "Соединение путей заполнения на участках, где они проходят рядом. Для шаблонов заполнения, состоящих из нескольких замкнутых полигонов, активация данной настройки значительно сокращает время перемещения." -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Самый высокий слой разглаживания" +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Направления линии заполнения" -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Ускорение разглаживания" +msgctxt "infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." +msgstr "Список направлений линии при печати слоёв. Элементы списка используются последовательно по мере печати слоёв и когда конец списка будет достигнут, он начнётся сначала. Элементы списка отделяются запятыми и сам список заключён в квадратные скобки. По умолчанию, он пустой, что означает использование стандартных углов (45 и 135 градусов для линий из зигзага и 45 градусов для всех остальных шаблонов)." -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Поток разглаживания" +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "Смещение заполнения по X" -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Границы разглаживания" +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "Расстояние перемещения шаблона заполнения по оси X." -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Рывок разглаживания" +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Смещение заполнения по Y" -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Расстояние между линиями разглаживания" +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "Расстояние перемещения шаблона заполнения по оси Y." -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Шаблон разглаживания" +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Рандомизация начала заполнения" -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Скорость разглаживания" +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "Рандомизировать, какая линия заполнения печатается первой. Это препятствует тому, чтобы один сегмент стал самым сильным, но делает это за счет дополнительного перемещения." -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "Начало координат в центре" +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "Множитель для линии заполнения" -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "Является поддерживающим материалом" +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "Преобразовывать каждую линию заполнения во множество линий. Дополнительные линии не пересекаются, а уклоняются от столкновения друг с другом. Благодаря этому заполнение становится более плотным, но время печати и расход материалов увеличиваются." -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "Это материал, который при нагревании легко ломается по четким линиям (кристаллический) или образует длинные сплетающиеся полимерные цепочки (некристаллический)?" +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Количество дополнительных стенок заполнения" -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "Используется ли обычно этот материал в качестве поддерживающего материала при печати." +msgctxt "infill_wall_line_count description" +msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "Добавление дополнительных стенок вокруг области заполнения. Эти стенки могут уменьшить провисание верхних/нижних линий оболочки, что уменьшает необходимое количество верхних/нижних слоев оболочки без ухудшения качества за счет небольшого увеличения количества материала." +"Эта функция может сочетаться с соединением полигонов заполнения для соединения всего участка заполнения в один путь экструзии без необходимости в движениях или откатах в случае правильной настройки." -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "Дрожание только контуров деталей, но не отверстий." +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Стенка динамического куба" + +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "Дополнение к радиусу от центра каждого куба для проверки границ модели, используется для принятия решения о разделении куба. Большие значения приводят к утолщению стенок мелких кубов по мере приближения к границе модели." -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Сохранить отсоединённые поверхности" +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "Процент перекрытие заполнения" -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Высота слоя" +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Величина перекрытия между заполнением и стенками в виде процентного отношения от ширины линии заполнения. Небольшое перекрытие позволяет стенкам надежно соединяться с заполнением." -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "X координата начала" +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Перекрытие заполнения" -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Y координата начала" +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Величина перекрытия между заполнением и стенками. Небольшое перекрытие позволяет стенкам плотно соединиться с заполнением." -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "Толщина нижнего слоя подложки. Она должна быть достаточной для хорошего прилипания подложки к столу." +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "Дистанция окончания заполнения" -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "Толщина слоёв середины подложки." +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "Расстояние, на которое продолжается движение сопла после печати каждой линии заполнения, для обеспечения лучшего связывания заполнения со стенками. Этот параметр похож на перекрытие заполнения, но без экструзии и только с одной стороны линии заполнения." -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Толщина верхних слоёв поддержки." +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Толщина слоя заполнения" -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "Пропускать соединение между линиями поддержки каждые N миллиметров для облегчения последующего удаления поддержек." +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "Толщина слоя для материала заполнения. Данное значение должно быть всегда кратно толщине слоя и всегда округляется." -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Слева" +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Изменение шага заполнения" -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Подъём головы" +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "Количество шагов уменьшения наполовину плотности заполнения вглубь модели. Области, располагающиеся ближе к краю модели, получают большую плотность, до указанной в \"Плотность заполнения." -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Молния" +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Высота изменения шага заполнения" -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Угол выступа шаблона заполнения «молния»" +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "Высота заполнения с указанной плотностью перед переключением на половину плотности." -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Угол обрезки шаблона заполнения «молния»" +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Заполнение перед печатью стенок" -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Угол выпрямления шаблона заполнения «молния»" +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "Печатать заполнение до печати стенок. Если печатать сначала стенки, то это может сделать их более точными, но нависающие стенки будут напечатаны хуже. Если печатать сначала заполнение, то это сделает стенки более крепкими, но шаблон заполнения может иногда прорываться сквозь поверхность стенки." -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Угол поддержки шаблона заполнения «молния»" +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Минимальная область заполнения" -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "Ограничить охват ответвлений" +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "Не генерировать области заполнения меньше чем указано здесь (вместо этого использовать оболочку)." -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "Ограничьте расстояние, на которое каждое ответвление должно удаляться от опорной точки. Это может сделать поддержку прочнее, но увеличит количество ответвлений (и, как следствие, расход материала и время печати)" +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Поддержка заполнения" -msgctxt "bv_temp_warn_limit description" -msgid "Limit on Build Volume Temperature warning for detection." -msgstr "" +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "Печать заполненных структур только там, где должны поддерживаться верхние части моделей. Активация этой функции сокращает время печати и расход материалов, однако приводит к неравномерной прочности." -msgctxt "bv_temp_anomaly_limit description" -msgid "Limit on Build Volume temperature Anomaly for detection." -msgstr "" +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Угол нависания при заполнении" -msgctxt "print_temp_anomaly_limit description" -msgid "Limit on Print Temperature anomaly for detection." -msgstr "" +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "Минимальный угол внутренних нависаний, для которых добавляется заполнение. При 0° объекты полностью заполняются, при 90° заполнение отсутствует." -msgctxt "print_temp_warn_limit description" -msgid "Limit on Print temperature warning for detection." -msgstr "" +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Толщина опоры края оболочки" -msgctxt "flow_anomaly_limit description" -msgid "Limit on flow anomaly for detection." -msgstr "" +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "Толщина дополнительного объема, который поддерживает края оболочки." -msgctxt "flow_warn_limit description" -msgid "Limit on the flow warning for detection." -msgstr "" +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Слои, которые поддерживают края оболочки" -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "Ограничивает объём объекта внутри других объектов. Вы можете использовать это для печати определённых областей одного объекта, применяя различные параметры печати и даже другой экструдер." +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "Количество слоев, которые поддерживают края оболочки." -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Ограниченная" +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Угол поддержки шаблона заполнения «молния»" -msgctxt "line_width label" -msgid "Line Width" -msgstr "Ширина линии" +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Определяет, когда слой шаблона заполнения «молния» должен поддерживать что-либо над ним. Измеряется под углом с учетом толщины слоя." -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Линии" +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Угол выступа шаблона заполнения «молния»" -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Линии" +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Определяет, когда слой шаблона заполнения «молния» должен поддерживать модель над ним. Измеряется под углом с учетом толщины." -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Линии" +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Угол обрезки шаблона заполнения «молния»" -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Линии" +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "Конечные точки линий заполнения укорачиваются для экономии материала. Эта настройка представляет собой угол нависания конечных точек этих линий." -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Линии" +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Угол выпрямления шаблона заполнения «молния»" -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Линии" +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "Линии заполнения выравниваются для сокращения время печати. Это максимально допустимый угол нависания по всей длине линии заполнения." -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Линии" +msgctxt "material label" +msgid "Material" +msgstr "Материал" -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Линии" +msgctxt "material description" +msgid "Material" +msgstr "Материал" -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Температура сопла" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Принтер" +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "Стандартная температура сопла, используемая при печати. Значением должна быть \"базовая\" температура для материала. Все другие температуры печати должны быть выражены смещениями от основного значения" -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Глубина принтера" +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Температура для объема печати" -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Полигон головки принтера и вентилятора" +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "Температура среды печати. Если это значение равно 0, температура для объема печати не будет регулироваться." -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Высота принтера" +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Температура сопла" -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Тип принтера" +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "Температура, используемая при печати." -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Ширина принтера" +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Температура печати первого слоя" -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Параметры, относящиеся к принтеру" +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer." +msgstr "Температура, используемая для печати первого слоя." + +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Начальная температура печати" -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Сделать нависания печатаемыми" +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "Минимальная температура, в процессе нагрева до температуры печати, на которой можно запустить процесс печати." -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "Если объекты немного касаются друг друга, то сделаем их перекрывающимися. Это позволит им соединиться крепче." +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Конечная температура печати" -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "Нижняя часть поддержек становится меньше, чем верхняя." +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "Температура, до которой можно начать охлаждать сопло, перед окончанием печати." -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "Будет поддерживать всё ниже объекта, никаких нависаний не будет." +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Модификатор скорости охлаждения экструзии" -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "Сделать стартовую позицию экструдера абсолютной, а не относительной от последней известной позиции головы." +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "Дополнительная скорость, с помощью которой сопло охлаждается во время экструзии. Это же значение используется для ускорения нагрева сопла при экструзии." -msgctxt "layer_0_z_overlap description" -msgid "" -"Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" -"It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" -msgstr "" +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Температура рабочего стола по умолчанию" -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Сделайте объекты более подходящими для 3D-печати." +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "Температура по умолчанию, используемая для разогретого рабочего стола. Это значение является базовой температурой рабочего стола. Для всех остальных значений температуры печати используется смещение относительно данного значения" -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Температура стола" -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "Температура, задаваемая для нагреваемой печатной пластины. Если значение равно 0, печатная пластина не нагревается." -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volumetric)" +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Температура стола для первого слоя" -msgctxt "material description" -msgid "Material" -msgstr "Материал" +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "Температура, задаваемая для нагреваемой печатной пластины на первом слое. Если значение равно 0, печатная пластина не нагревается при печати первого слоя." -msgctxt "material label" -msgid "Material" -msgstr "Материал" +msgctxt "material_adhesion_tendency label" +msgid "Adhesion Tendency" +msgstr "Тенденция к прилипанию" -msgctxt "material_brand label" -msgid "Material Brand" -msgstr "" +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "Тенденция к прилипанию к поверхности." -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "GUID материала" +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Поверхностная энергия" -msgctxt "material_type label" -msgid "Material Type" -msgstr "" +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Поверхностная энергия." -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Объем материала между очистками" +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Коэффициент масштабирования для компенсации усадки" -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Макс. расстояние комб. без отката" +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "Для компенсации усадки материала при остывании модель будет масштабирована с этим коэффициентом." -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Максимальное ускорение по оси X" +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Горизонтальный коэффициент масштабирования для компенсации усадки" -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Максимальное ускорение по оси Y" +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "Для компенсации усадки материала при остывании модель будет масштабирована с этим коэффициентом в направлении XY (горизонтально)." -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Максимальное ускорение по оси Z" +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Вертикальный коэффициент масштабирования для компенсации усадки" -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "Максимальный угол ответвления" +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "Для компенсации усадки материала при остывании модель будет масштабирована с этим коэффициентом в направлении Z (вертикально)." -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Максимальное отклонение" +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Кристаллический материал" -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Максимальное отклонение площади экструзии" +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "Это материал, который при нагревании легко ломается по четким линиям (кристаллический) или образует длинные сплетающиеся полимерные цепочки (некристаллический)?" -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Максимальная скорость вентилятора" +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Положение отката для защиты от капель" -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Максимальное ускорение материала" +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "Насколько далеко необходимо убрать материал, чтобы он перестал капать." -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Максимальный угол модели" +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Скорость отката для защиты от капель" -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Максимальная площадь отверстия выступа" +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "Насколько быстро необходимо убрать материал во время его замены, чтобы не допустить появления капель." -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Максимальная продолжительность парковки" +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Положение отката для подготовки к отламыванию" -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Максимальное разрешение" +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "Насколько сильно можно растянуть материал при нагревании, до тех пор пока он не отломится." -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Максимальное количество откатов" +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Скорость отката для подготовки к отламыванию" -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Максимальный угол оболочки при расширении" +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "Насколько быстро следует убирать материал, чтобы он отломился." -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Максимальная скорость по оси E" +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Температура подготовки к отламыванию" -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Максимальная скорость по оси X" +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "Температура, используемая для выдавливания материала, должна быть примерно равна максимальной температуре при печати." -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Максимальная скорость по оси Y" +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Положение отката для отламывания" -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Максимальная скорость по оси Z" +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "Насколько далеко следует убрать материал, чтобы он отломился чисто." -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Максимальный диаметр, поддерживаемый башней" +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Скорость отката для отламывания" -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Максимальное разрешение перемещения" +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "Скорость, при которой убираемый материал отломится чисто." -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "Максимальное ускорение для мотора оси X" +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Температура отламывания" -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Максимальное ускорение для мотора оси Y." +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "Температура, при которой материал отломится чисто." -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Максимальное ускорение для мотора оси Z." +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Скорость выдавливания заподлицо" -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "Максимальное ускорение мотора подачи материала." +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "Скорость подачи материала после переключения на другой материал." -msgctxt "bridge_sparse_infill_max_density description" -msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." -msgstr "Максимальная плотность заполнения, считающегося разреженным. Оболочка поверх разреженного заполнения считается неподдерживаемой и, соответственно, может обрабатываться как оболочка мостика." +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Длина выдавливания заподлицо" + +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "Объем материала, используемый для выдавливания предыдущего материала из сопла (измеряется длиной нити) при переключении на другой материал." -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "Максимальный диаметр по осям X/Y небольшой области, который должен поддерживаться определенной башней." +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Скорость выдавливания заканчивающегося материала" -msgctxt "max_extrusion_before_wipe description" -msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." -msgstr "Максимальный объем материала, который можно выдавить перед очередной очисткой сопла. Если это значение меньше объема материала, требуемого для слоя, данная настройка в этом слое не действует (т. е. максимум одна очистка на слой)." +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "Скорость подачи материала после замены пустой катушки на новую катушку с тем же материалом." -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Перекрытие касающихся объектов" +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Длина выдавливания заканчивающегося материала" -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Ремонт объектов" +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "Объем материала, используемый для выдавливания предыдущего материала из сопла (измеряется длиной нити) при замене пустой катушки на новую катушку с тем же материалом." -msgctxt "mesh_position_x label" -msgid "Mesh Position X" -msgstr "X позиция объекта" +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Максимальная продолжительность парковки" -msgctxt "mesh_position_y label" -msgid "Mesh Position Y" -msgstr "Y позиция объекта" +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "Срок хранения материала вне сухого хранилища." -msgctxt "mesh_position_z label" -msgid "Mesh Position Z" -msgstr "Z позиция объекта" +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Коэффициент движения без нагрузки" -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Порядок обработки объекта" +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "Коэффициент сжатия материала между питателем и камерой сопла, позволяющий определить, как далеко требуется продвинуть материал для переключения нити." -msgctxt "mesh_rotation_matrix label" -msgid "Mesh Rotation Matrix" -msgstr "Матрица вращения объекта" +msgctxt "material_flow label" +msgid "Flow" +msgstr "Поток" -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Середина" +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "Компенсация потока: объём выдавленного материала умножается на этот коэффициент." -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Минимальная ширина формы" +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Поток для стенки" -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Время перехода в ожидание" +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Компенсация потока на линиях стенки." -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Минимальная длина стенки мостика" +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Поток для внешней стенки" -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Минимальная ширина линии четных стенок" +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "Компенсация потока на внешней линии стенки." -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Окно минимальной расстояния экструзии" +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Поток для внутренних стенок" -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Минимальный размер элемента" +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "Компенсация потока на линиях стенки для всех линий, за исключением внешней." -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Минимальная подача" +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Поток на самой внешней линии верхней поверхности" -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "Минимальная высота до модели" +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Компенсация потока на самой внешней линии верхней поверхности." -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Минимальная область заполнения" +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Поток внутренней стены верхней поверхности" -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Минимальное время слоя" +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Компенсация потока на линиях стены верхней поверхности для всех линий стены, кроме самой внешней." -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Минимальная ширина линии нечетных стенок" +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Поток для верхних/нижних линий" -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Минимальная длина окружности полигона" +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Компенсация потока на верхних/нижних линиях." -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Минимальная ширина оболочки при расширении" +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Поток для верхней оболочки" -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Минимальная скорость" +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "Компенсация потока на линиях наверху печатаемой детали." -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Минимальная зона поддержек" +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Поток для заполнения" -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Минимальная зона нижней части поддержек" +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Компенсация потока на линиях заполнения." -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Минимальная зона связующего слоя" +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Поток для юбки/каймы" -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Минимальная зона верхней части поддержек" +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Компенсация потока на линиях юбки или каймы." -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Минимальный X/Y зазор поддержки" +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Поток для поддержек" -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Минимальная ширина линии нечетных стенок" +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Компенсация потока на линиях структуры поддержек." -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Минимальный объём перед накатом" +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Поток для связующего слоя поддержек" -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Минимальная ширина линии стенки" +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "Компенсация потока на линиях крыши или низа поддержек." -msgctxt "minimum_interface_area description" -msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Минимальная площадь зоны для полигонов связующего слоя. Полигоны с площадью меньше данного значения будут печататься как поддержки нормали." +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Поток для крыши поддержек" -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "Минимальная площадь зоны для полигонов поддержек. Полигоны с площадью меньше данного значения не будут генерироваться." +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Компенсация потока на линиях крыши поддержек." -msgctxt "minimum_bottom_area description" -msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Минимальная площадь зоны для нижних частей поддержек. Полигоны с площадью меньше данного значения будут печататься как поддержки нормали." +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Поток для низа поддержек" -msgctxt "minimum_roof_area description" -msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Минимальная площадь зоны для верхних частей поддержек. Полигоны с площадью меньше данного значения будут печататься как поддержки нормали." +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Компенсация потока на линиях низа поддержек." -msgctxt "min_feature_size description" -msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." -msgstr "Минимальная толщина тонких элементов. Элементы модели, которые тоньше этого значения, не будут напечатаны, в то время как элементы с толщиной, превышающей минимальный размер элемента, будут расширены до минимальной ширины линии стенки." +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Поток черновой башни" -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "Минимальная ширина, до которой может быть уменьшен низ конуса. Малая ширина может сделать такую структуру поддержек нестабильной." +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Компенсация потока на линиях черновой башни." -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Форма" +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Поток для первого слоя" -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Угол формы" +msgctxt "material_flow_layer_0 description" +msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." +msgstr "Компенсация потока для первого слоя: объем выдавленного материала на первом слое умножается на этот коэффициент." -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Высота крыши формы" +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "Поток внутренней стенки первого слоя" -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Монотонный порядок разглаживания" +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "Компенсация потока на линиях стенки для всех линий, за исключением внешней, но только для первого слоя." + +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "Поток внешней стенки первого слоя" -msgctxt "raft_surface_monotonic label" -msgid "Monotonic Raft Top Surface Order" -msgstr "" +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "Компенсация потока на внешней линии стенки первого слоя." -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Монотонный порядок верхней оболочки" +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "Поток низа первого слоя" -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Монотонный порядок дна/крышки" +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "Компенсация потока на нижних линиях первого слоя." -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "Несколько линий юбки помогают лучше начать укладывание материала при печати небольших моделей. Установка этого параметра в 0 отключает печать юбки." +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Температура ожидания" -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "Множитель для ширины линии первого слоя. Увеличение значения улучшает прилипание к столу." +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "Температура сопла в момент, когда для печати используется другое сопло." -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Коэффициент движения без нагрузки" +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "Является поддерживающим материалом" -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Нет оболочки в Z-зазорах" +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "Используется ли обычно этот материал в качестве поддерживающего материала при печати." -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Нетрадиционные способы печати моделей." +msgctxt "speed label" +msgid "Speed" +msgstr "Скорость" -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Нет" +msgctxt "speed description" +msgid "Speed" +msgstr "Скорость" -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Нет" +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Скорость печати" -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Нормаль" +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "Скорость, на которой происходит печать." -msgctxt "prime_tower_mode option normal" -msgid "Normal" -msgstr "" +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Скорость заполнения" -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Нормаль" +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "Скорость, на которой печатается заполнение." -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "Обычно Cura пытается закрыть небольшие отверстия в объекте и убрать части слоя с большими отверстиями. Включение этого параметра сохраняет те части, которые не могут быть сшиты. Этот параметр должен применяться в качестве крайней меры, когда уже ничего не помогает получить надлежащий G-код." +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Скорость печати стенок" -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Не в оболочке" +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "Скорость, на которой происходит печать стенок." -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "Не на внешней поверхности" +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Скорость печати внешней стенки" -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Угол сопла" +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "Скорость, на которой происходит печать внешних стенок. Печать внешней стенки на пониженной скорости улучшает качество поверхности модели. Однако, при большой разнице между скоростями печати внутренних и внешних стенок возникает эффект, негативно влияющий на качество." -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Диаметр сопла" +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Скорость печати внутренних стенок" -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Запрещённые зоны для сопла" +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "Скорость, на которой происходит печать внутренних стенок. Печать внутренних стенок на скорости, большей скорости печати внешней стенки, ускоряет печать. Отлично работает, если значение скорости находится между скоростями печати внешней стенки и скорости заполнения." -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Идентификатор сопла" +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Скорость самых внешних стен верхней поверхности" -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Длина сопла" +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "Скорость печати самых внешних стен верхней поверхности." -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Дополнительно заполняемый объем при смене экструдера" +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Скорость внутренней поверхности верхней стены" -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Скорость наполнения при смене экструдера" +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "Скорость, с которой печатаются внутренние стены верхней поверхности." -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Скорость отката при смене экструдера" +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Скорость верхней оболочки" -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Величина отката при смене экструдера" +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "Скорость, на которой печатаются слои верхней оболочки." -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Скорость отката при смене экструдера" +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Скорость крышки/дна" -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Количество экструдеров" +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "Скорость, на которой печатаются слои крышки/дна." -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Количество включенных экструдеров" +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Скорость печати поддержек" -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Количество медленных слоёв" +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "Скорость, на которой происходит печать структуры поддержек. Печать поддержек на повышенной скорости может значительно уменьшить время печати. Качество поверхности структуры поддержек не имеет значения, так как эта структура будет удалена после печати." -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "Количество включенных экструдеров; это значение автоматически устанавливается программным обеспечением" +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Скорость заполнения поддержек" -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "Количество экструдеров. Экструдер - это комбинация механизма подачи, трубы и сопла." +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "Скорость, на которой заполняются поддержки. Печать заполнения на пониженных скоростях улучшает стабильность." -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "Количество перемещений сопла поперек щетки." +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Скорость границы поддержек" -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "Количество шагов уменьшения наполовину плотности заполнения вглубь модели. Области, располагающиеся ближе к краю модели, получают большую плотность, до указанной в \"Плотность заполнения." +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "Скорость, на которой происходит печать верха и низа поддержек. Печать поддержек на пониженных скоростях может улучшить качество печати нависающих краёв модели." -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "Количество раз, на которое на половину можно уменьшать плотность заполнения поддержек при проходе вглубь структуры от поверхности. Области ближе к оболочке имеют большую плотность, вплоть до значения \"Плотность заполнения поддержек\"." +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Скорость печати крыши поддержек" -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Восьмигранник" +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "Скорость, на которой происходит печать верха поддержек. Печать поддержек на пониженных скоростях может улучшить качество печати нависающих краёв модели." -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Выключен" +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Скорость печати низа поддержек" -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "Смещение, применяемое к объекту по оси X." +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "Скорость, на которой происходит печать низа поддержек. Печать поддержек на пониженных скоростях может улучшить качество печати нависающих краёв модели." -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "Смещение, применяемое к объекту по оси Y." +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Скорость черновых башен" -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "Смещение, применяемое к объекту по оси Z. Это позволяет выполнять операцию, ранее известную как проваливание объекта под поверхность стола." +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "Скорость, на которой печатается черновая башня. Замедленная печать черновой башни может сделать её стабильнее при недостаточном прилипании различных материалов." -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Смещение с экструдером" +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Скорость перемещения" -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "По возможности на печатной пластине" +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "Скорость, с которой выполняется перемещение." -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "На модели, если требуется" +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Скорость первого слоя" + +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "Скорость печати первого слоя. Пониженное значение улучшает прилипание материала к печатной пластине. Не влияет на сами адгезионные структуры печатной пластины, такие как край и основание." -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "По отдельности" +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Скорость первого слоя" -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "Выполнять поднятие оси Z только в случае движения над напечатанными частями, которые нельзя обогнуть горизонтальным движением, используя «Обход напечатанных деталей» при перемещении." +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "Скорость печати первого слоя. Пониженное значение помогает улучшить прилипание материала к столу." -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "Выполняет разглаживание только на самом последнем слое модели. Экономит время, когда нижние слои не требуют сглаживания поверхности." +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Скорость перемещений на первом слое" -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Угол защиты от капель" +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "Скорость перемещений на первом слое. Малые значения помогают предотвращать отлипание напечатанных частей от стола. Значение этого параметра может быть вычислено автоматически из отношения между скоростями перемещения и печати." -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Дистанция до защиты от капель" +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Скорость юбки/каймы" -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "Оптимальный охват ответвлений" +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "Скорость, на которой происходит печать юбки и каймы. Обычно, их печать происходит на скорости печати первого слоя, но иногда вам может потребоваться печатать юбку или кайму на другой скорости." -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Оптимизация порядка печати стенок" +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Скорость поднятия оси Z" -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "Оптимизирует порядок, в котором печатаются стенки, для уменьшения количества откатов и перемещений. Большинство моделей будут распечатываться быстрее, но не все. Сравнивайте оценочное время печати с оптимизацией и без нее. При выборе каймы в качестве типа приклеивания к рабочему столу первый слой не оптимизируется." +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "Скорость вертикального движения по оси Z. Обычно она ниже, чем скорость печати, поскольку рабочий стол или портал машины тяжелее сдвинуть." -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Внешний диаметр сопла" +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Количество медленных слоёв" -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Ускорение внешней стенки" +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "Первые несколько слоёв печатаются на медленной скорости, чем вся остальная модель, чтобы получить лучшее прилипание к столу и увеличить вероятность успешной печати. Скорость последовательно увеличивается по мере печати указанного количества слоёв." -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Экструдер внешних стенок" +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Коэффициент выравнивания потока" -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Поток для внешней стенки" +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "Поправочный коэффициент ширины экструзии в зависимости от скорости. При значении 0 % скорость перемещения сохраняется на уровне скорости печати. При значении 100 % скорость перемещения корректируется таким образом, чтобы расход (в мм3/с) оставался постоянным, то есть линии в половину нормальной ширины линии, печатаются в два раза быстрее, а линии вдвое шире — в два раза быстрее. Значение выше 100 % может помочь компенсировать более высокое давление, необходимое для экструдирования широких линий." -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Вставка внешней стенки" +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Разрешить управление ускорением" -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "Рывок внешних стен" +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "Разрешает регулирование ускорения головы. Увеличение ускорений может сократить время печати за счёт качества печати." -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Ширина линии внешней стенки" +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Включить ускорение перемещения" -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Скорость печати внешней стенки" +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "Использовать отдельный коэффициент ускорения для перемещения. Если опция отключена, то при перемещении будет использоваться значение ускорения строки в пункте назначения." -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Расстояние очистки внешней стенки" +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Ускорение печати" -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Внешние стены разных островов в одном слое печатаются последовательно. При включении количество изменений потока ограничено, поскольку стены печатаются один тип за раз, при отключении количество перемещений между островами уменьшается, потому что стены на одних и тех же островах группируются." +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "Ускорение, с которым происходит печать." -msgctxt "brim_location option outside" -msgid "Outside Only" -msgstr "" +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Ускорение заполнения" -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "От внешних к внутренним" +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "Ускорение, с которым печатается заполнение." -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Угол нависающей стенки" +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Ускорение стенок" -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Скорость печати нависающей стенки" +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "Ускорение, с которым происходит печать стенок." -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "Нависающие стенки будут напечатаны с данным процентным значением нормальной скорости печати." +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Ускорение внешней стенки" -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Приостановка после отмены отката." +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "Ускорение, с которым происходит печать внешних стенок." -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "Скорость вентилятора в процентах, которую необходимо использовать при печати стенок и оболочки мостика." +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Ускорение внутренней стенки" -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "Скорость вентилятора в процентах, с которой печатается слой второй оболочки мостика." +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "Ускорение, с которым происходит печать внутренних стенок." -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "Скорость вентилятора в процентах, с которой печатаются области оболочки непосредственно над поддержкой. Использование высоких значений скорости вентилятора может упростить снятие поддержки." +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Ускорение внешней поверхности верхней стены" -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "Скорость вентилятора в процентах, с которой печатается слой третьей оболочки мостика." +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "Ускорение, с которым печатаются самые внешние стены верхней поверхности." -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "Полигоны в разделенных слоях, длина окружности которых меньше указанной величины, будут отфильтрованы. Пониженные значения приводят к увеличению разрешения объекта за счет времени разделения. Это предназначено главным образом для принтеров SLA с высоким разрешением и миниатюрных 3D-моделей с множеством деталей." +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Ускорение внутренней поверхности верхней стены" -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "Предпочтительный угол ответвления" +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "Ускорение, с которым печатаются внутренние стены верхней поверхности." -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "Предотвратите переход туда и обратно между одной лишней стенкой и одной недостающей. Это поле расширяет диапазон значений ширины линии, который определяется как [Минимальная ширина линии стенки - Поле, 2 * Минимальная ширина линии стенки + Поле]. Расширение этого поля позволяет сократить количество переходов, что в свою очередь позволяет сократить количество запусков/остановок экструдирования и время перемещения. Однако большой разброс значений ширины линии может привести к проблемам с недостаточным или чрезмерным экструдированием материала." +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Ускорение верхней оболочки" -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Ускорение черновой башни" +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "Ускорение, с которым печатаются слои верхней оболочки." -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Base" -msgstr "Основание башни подготовки" +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Ускорение крышки/дна" -msgctxt "prime_tower_base_height label" -msgid "Prime Tower Base Height" -msgstr "Высота основания башни подготовки" +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "Ускорение, с которым печатаются слои крышки/дна." -msgctxt "prime_tower_base_size label" -msgid "Prime Tower Base Size" -msgstr "Размер основания башни подготовки" +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Ускорение поддержек" -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Slope" -msgstr "Наклон основания башни подготовки" +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "Ускорение, с которым печатаются структуры поддержки." -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Поток черновой башни" +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Ускорение заполнение поддержек" -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "Рывок черновых башен" +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "Ускорение, с которым печатается заполнение поддержек." -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Ширина линии черновой башни" +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Ускорение края поддержек" -msgctxt "prime_tower_max_bridging_distance label" -msgid "Prime Tower Maximum Bridging Distance" -msgstr "" +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "Ускорение, с которым печатаются верх и низ поддержек. Их печать с пониженными ускорениями может улучшить качество печати нависающих частей." -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Минимальный объём черновой башни" +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Ускорение крыши поддержек" -msgctxt "prime_tower_raft_base_line_spacing label" -msgid "Prime Tower Raft Line Spacing" -msgstr "Шаг линий рафта башни подготовки" +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "Ускорение, с которым происходит печать верха поддержек. Печать поддержек с пониженными ускорениями может улучшить качество печати нависающих краёв модели." + +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Ускорение низа поддержек" -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Размер черновой башни" +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "Ускорение, с которым происходит печать низа поддержек. Печать поддержек с пониженными ускорениями может улучшить качество печати нависающих краёв модели." -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Скорость черновых башен" +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Ускорение черновой башни" -msgctxt "prime_tower_mode label" -msgid "Prime Tower Type" -msgstr "" +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "Ускорение, с которым печатается черновая башня." -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "X позиция черновой башни" +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Ускорение перемещения" -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Y позиция черновой башни" +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "Ускорение, с которым выполняется перемещение." -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Ускорение печати" +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Ускорение первого слоя" -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Рывок печати" +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "Ускорение для первого слоя." -msgctxt "ppr label" -msgid "Print Process Reporting" -msgstr "" +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Ускорение печати первого слоя" -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Последовательная печать" +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "Ускорение при печати первого слоя." -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Скорость печати" +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Ускорение перемещений первого слоя" -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Печать тонких стенок" +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Ускорение для перемещения на первом слое." -msgctxt "brim_location description" -msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." -msgstr "" +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Ускорение юбки/каймы" -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "Печатает башню перед печатью модели, чем помогает выдавить старый материал после смены экструдера." +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "Ускорение, с которым происходит печать юбки и каймы. Обычно, их печать происходит с ускорениями первого слоя, но иногда вам может потребоваться печатать юбку с другими ускорениями." -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "Печать заполненных структур только там, где должны поддерживаться верхние части моделей. Активация этой функции сокращает время печати и расход материалов, однако приводит к неравномерной прочности." +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Включить управление рывком" -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Печатайте линии разглаживания в таком порядке, чтобы они всегда перекрывали соседние линии в одном направлении. На печать уходит немного больше времени, но плоские поверхности выглядят более единообразными." +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "Разрешает управление скоростью изменения ускорений головы по осям X или Y. Увеличение данного значения может сократить время печати за счёт его качества." -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "Печатать модель в виде формы, которая может использоваться для отливки оригинальной модели." +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Включить рывок перемещения" -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "Печать частей модели, которые по горизонтали тоньше диаметра сопла." +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "Использовать отдельный коэффициент рывка для перемещения. Если опция отключена, то при перемещении будет использоваться значение рывка строки в пункте назначения." -msgctxt "raft_surface_monotonic description" -msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." -msgstr "" +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Рывок печати" -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "Скорость, с которой печатается слой второй оболочки мостика." +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "Изменение максимальной мгновенной скорости печатающей головки." -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "Скорость, с которой печатается слой третьей оболочки мостика." +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Рывок заполнения" -msgctxt "print_temp_anomaly_limit label" -msgid "Print temperature Limit" -msgstr "" +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатается заполнение." -msgctxt "print_temp_warn_limit label" -msgid "Print temperature Warning" -msgstr "" +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Рывок стены" -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "Печатать заполнение до печати стенок. Если печатать сначала стенки, то это может сделать их более точными, но нависающие стенки будут напечатаны хуже. Если печатать сначала заполнение, то это сделает стенки более крепкими, но шаблон заполнения может иногда прорываться сквозь поверхность стенки." +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "Изменение максимальной мгновенной скорости, с которой будут напечатаны стены." -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Печатайте линии верхней оболочки в таком порядке, чтобы они всегда перекрывали соседние линии в одном направлении. На печать уходит немного больше времени, но плоские поверхности выглядят более единообразными." +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "Рывок внешних стен" -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Печатайте линии дна/крышки в таком порядке, чтобы они всегда перекрывали соседние линии в одном направлении. На печать уходит немного больше времени, но плоские поверхности выглядят более единообразными." +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатаются внешние стенки." -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Температура сопла" +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Рывок внутренних стен" -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Температура печати первого слоя" +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатаются внутренние стенки." -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "Печать внутренней линии юбки несколькими слоями позволяет легко ее удалить." +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Рывок внутренних стен верхней поверхности" -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "Печатает дополнительную стенку через слой. Таким образом, заполнение заключается между этими дополнительными стенками, что приводит к повышению прочности печати." +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "Максимальное мгновенное изменение скорости, с которым печатаются внутренние стены верхней поверхности." -msgctxt "resolution label" -msgid "Quality" -msgstr "Качество" +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Рывок внешних стен верхней поверхности" -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Четверть куба" +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "Максимальное мгновенное изменение скорости, с которым печатаются самые внешние стены верхней поверхности." -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Подложка" +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Рывок верхней оболочки" -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Воздушный зазор подложки" +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатаются слои верхней оболочки." -msgctxt "raft_base_margin label" -msgid "Raft Base Extra Margin" -msgstr "" +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Рывок крышки/дна" -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Экструдер нижних подложек" +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатаются верхние и нижние слои." -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Скорость вентилятора для низа подложки" +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Рывок поддержек" -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Дистанция между линиями нижнего слоя подложки" +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатаются поддержки." -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Ширина линии нижнего слоя подложки" +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Рывок заполнение поддержек" -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Ускорение печати низа подложки" +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатается заполнение поддержек." -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Рывок печати низа подложки" +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Рывок связи поддержек" -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Скорость печати низа подложки" +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "Максимальное изменение мгновенной скорости, с которым напечатаны крыши и низ поддержек." -msgctxt "raft_base_smoothing label" -msgid "Raft Base Smoothing" -msgstr "" +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Рывок крыши поддержек" + +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "Максимальное изменение мгновенной скорости, с которым напечатаны крыши поддержек." -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Толщина нижнего слоя подложки" +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Рывок низа поддержек" -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Счетчик стен основания подложки" +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "Максимальное изменение мгновенной скорости, с которым напечатаны низ поддержек." -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Дополнительное поле подложки" +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "Рывок черновых башен" -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Скорость вентилятора для подложки" +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатается черновая башня." -msgctxt "raft_interface_margin label" -msgid "Raft Middle Extra Margin" -msgstr "" +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Рывок перемещения" -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Экструдер серединных подложек" +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "Изменение максимальной мгновенной скорости, с которой выполняются перемещения." -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Скорость вентилятора для середины подложки" +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Рывок первого слоя" -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Серединные слои подложек" +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "Изменение максимальной мгновенной скорости на первом слое." -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Ширина линий середины подложки" +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Рывок печати первого слоя" -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Ускорение печати середины подложки" +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "Изменение максимальной мгновенной скорости, с которой печатается первый слой." -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Рывок печати середины подложки" +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Рывок перемещения первого слоя" -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Скорость печати середины подложки" +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Ускорение для перемещения на первом слое." -msgctxt "raft_interface_smoothing label" -msgid "Raft Middle Smoothing" -msgstr "" +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Рывок юбки/каймы" -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Дистанция между слоями середины подложки" +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатается юбка и кайма." -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Толщина середины подложки" +msgctxt "travel label" +msgid "Travel" +msgstr "Перемещение" -msgctxt "raft_interface_wall_count label" -msgid "Raft Middle Wall Count" -msgstr "" +msgctxt "travel description" +msgid "travel" +msgstr "перемещение" -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Ускорение печати подложки" +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Разрешить откат" -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Рывок подложки" +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Откат нити при движении сопла вне зоны печати." -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Скорость печати подложки" +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Откат при смене слоя" -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Сглаживание подложки" +msgctxt "retract_at_layer_change description" +msgid "Retract the filament when the nozzle is moving to the next layer." +msgstr "Откат нити при перемещении сопла на следующий слой." -msgctxt "raft_surface_margin label" -msgid "Raft Top Extra Margin" -msgstr "" +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Величина отката" -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Экструдер верхних подложек" +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "Длина нити материала, которая будет извлечена по время отката." -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Скорость вентилятора для верха подложки" +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Скорость отката" -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Толщина верхнего слоя подложки" +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "Скорость, с которой материал будет извлечён и возвращён обратно при откате." -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Верхние слои подложки" +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Скорость извлечения при откате" -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Ширина линий верха подложки" +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "Скорость с которой нить будет извлечена при откате." -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Ускорение печати верха подложки" +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Скорость заправки при откате" -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Рывок печати верха подложки" +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "Скорость с которой материал будет возвращён при откате." -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Скорость печати верха подложки" +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Дополнительно заполняемый объём при откате" -msgctxt "raft_surface_smoothing label" -msgid "Raft Top Smoothing" -msgstr "" +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "Небольшое количество материала может выдавиться во время движения, что может быть скомпенсировано с помощью данного параметра." -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Дистанция между линиями верха поддержки" +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Минимальное перемещение при откате" -msgctxt "raft_surface_wall_count label" -msgid "Raft Top Wall Count" -msgstr "" +msgctxt "retraction_min_travel description" +msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." +msgstr "Минимальное расстояние на которое необходимо переместиться для отката, чтобы он произошёл. Этот параметр помогает уменьшить количество откатов на небольшой области печати." -msgctxt "raft_wall_count label" -msgid "Raft Wall Count" -msgstr "" +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Максимальное количество откатов" -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Случайно" +msgctxt "retraction_count_max description" +msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." +msgstr "Данный параметр ограничивает число откатов, которые происходят внутри окна минимальной дистанции экструзии. Дальнейшие откаты внутри этого окна будут проигнорированы. Это исключает выполнение множества повторяющихся откатов над одним и тем же участком нити, что позволяет избежать проблем с истиранием нити." -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "Рандомизация начала заполнения" +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Окно минимальной расстояния экструзии" -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "Рандомизировать, какая линия заполнения печатается первой. Это препятствует тому, чтобы один сегмент стал самым сильным, но делает это за счет дополнительного перемещения." +msgctxt "retraction_extrusion_window description" +msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." +msgstr "Окно, в котором может быть выполнено максимальное количество откатов. Это значение приблизительно должно совпадать с расстоянием отката таким образом, чтобы количество выполненных откатов распределялось на величину выдавленного материала." -msgctxt "magic_fuzzy_skin_enabled description" -msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." -msgstr "Вносит небольшое дрожание при печати внешней стенки, что придаёт поверхности шершавый вид." +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Режим комбинга" -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Прямоугольная" +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "Комбинг удерживает сопло внутри напечатанных зон при перемещении. Это выражается в небольшом увеличении пути, но уменьшает необходимость в откатах. При отключенном комбинге выполняется откат материала, а сопло передвигается в следующую точку по прямой. Также можно не применять комбинг над верхними/нижними областями оболочки либо разрешить комбинг только в области заполнения." -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "Обычная скорость вентилятора" +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Выключен" -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Обычная скорость вентилятора на высоте" +msgctxt "retraction_combing option all" +msgid "All" +msgstr "Везде" -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Обычная скорость вентилятора на слое" +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Не на внешней поверхности" -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "Порог переключения на повышенную скорость" +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Не в оболочке" + +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "В области заполнения" -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Относительная экструзия" +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Макс. расстояние комб. без отката" -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Удаляет все отверстия" +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "При значении параметра выше нуля перемещения комбинга, превышающие заданное расстояние, будут выполняться с откатом. Когда значение параметра равно нулю, то максимума нет и перемещения комбинга выполняются без отката." -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Удалить первые пустые слои" +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Откат перед внешней стенкой" -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Удалить пересечения объектов" +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "Всегда откатывать материал при движении к началу внешней стенки." -msgctxt "raft_base_remove_inside_corners label" -msgid "Remove Raft Base Inside Corners" -msgstr "" +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Избегать напечатанных частей при перемещении" -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Удаление внутренних углов подложки" +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "Сопло избегает уже напечатанных частей при перемещении. Эта опция доступна только при включенном комбинге." -msgctxt "raft_interface_remove_inside_corners label" -msgid "Remove Raft Middle Inside Corners" -msgstr "" +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Избегать поддержек при перемещении" -msgctxt "raft_surface_remove_inside_corners label" -msgid "Remove Raft Top Inside Corners" -msgstr "" +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "При перемещении сопла оно будет избегать напечатанных поддержек. Эта опция доступна только при включенном комбинге." -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "Удаляет области, где несколько объектов перекрываются друг с другом. Можно использовать, для объектов, состоящих из двух материалов и пересекающихся друг с другом." +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Дистанция обхода" -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "Удаление пустых слоёв под первым печатаемым слоем, если они имеются. Отключение этой функции может привести к созданию первых пустых слоев, если для параметра «Допуск слайсинга» установлено значение «Включение» или «Середина»." +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "Дистанция между соплом и уже напечатанными частями, выдерживаемая при перемещении." -msgctxt "raft_base_remove_inside_corners description" -msgid "Remove inside corners from the raft base, causing the raft to become convex." -msgstr "" +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "X координата начала" -msgctxt "raft_interface_remove_inside_corners description" -msgid "Remove inside corners from the raft middle part, causing the raft to become convex." -msgstr "" +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "X координата позиции, вблизи которой следует искать часть модели для начала печати слоя." -msgctxt "raft_surface_remove_inside_corners description" -msgid "Remove inside corners from the raft top part, causing the raft to become convex." -msgstr "" +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Y координата начала" -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Удаляйте внутренние углы с подложки, чтобы она стала выпуклой." +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "Y координата позиции, вблизи которой следует искать часть модели для начала печати слоя." -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "Удаляет отверстия в каждом слое, оставляя только внешнюю форму. Вся невидимая внутренняя геометрия будет проигнорирована. Однако, также будут проигнорированы отверстия в слоях, которые могут быть видны сверху или снизу." +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Поднятие оси Z при откате" -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" +msgctxt "retraction_hop_enabled description" +msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "При выполнении отката между соплом и печатаемой деталью создаётся зазор. Это предотвращает возможность касания сопла частей детали при его перемещении, снижая вероятность смещения детали на столе." -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Поднятие оси Z только над напечатанными частями" -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "Заменяет внешнюю часть шаблона крышки/дна рядом концентрических линий. Использование одной или двух линий улучшает мосты, которые печатаются поверх материала заполнения." +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "Выполнять поднятие оси Z только в случае движения над напечатанными частями, которые нельзя обогнуть горизонтальным движением, используя «Обход напечатанных деталей» при перемещении." -msgctxt "ppr description" -msgid "Reporting events that go out of set thresholds" -msgstr "" +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Высота поднятия оси Z" -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "Предпочтение опоры" +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Расстояние, на которое приподнимается ось Z." -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Откат перед внешней стенкой" +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Поднятие оси Z после смены экструдера" -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Откат при смене слоя" +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "При переключении принтера на другой экструдер между соплом и печатаемой деталью создаётся зазор. Это предотвращает возможность вытекания материала и его прилипание к внешней части печатаемой модели." -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Откат нити при движении сопла вне зоны печати." +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Высота поднятия оси Z после смены экструдера" -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Откат нити при движении сопла вне зоны печати." +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "Высота, на которую приподнимается ось Z после смены экструдера." -msgctxt "retract_at_layer_change description" -msgid "Retract the filament when the nozzle is moving to the next layer." -msgstr "Откат нити при перемещении сопла на следующий слой." +msgctxt "cooling label" +msgid "Cooling" +msgstr "Охлаждение" -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Величина отката" +msgctxt "cooling description" +msgid "Cooling" +msgstr "Охлаждение" -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Дополнительно заполняемый объём при откате" +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Включить вентиляторы" -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Минимальное перемещение при откате" +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "Разрешает использование вентиляторов во время печати. Применение вентиляторов улучшает качество печати слоёв с малой площадью, а также мостов и нависаний." -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Скорость заправки при откате" +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Скорость вентилятора" -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Скорость извлечения при откате" +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "Скорость, с которой вращаются вентиляторы." -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Скорость отката" +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "Обычная скорость вентилятора" -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Справа" +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "Скорость, с которой вращается вентилятор до достижения порога. Если слой печатается быстрее установленного порога, то вентилятор постепенно начинает вращаться быстрее." -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "Масштабирование скорости вентилятора до 0-1" +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Максимальная скорость вентилятора" -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "Масштабируйте скорость вентилятора таким образом, чтобы она находилась в диапазоне от 0 до 1, а не от 0 до 256." +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "Скорость, с которой вращается вентилятор при минимальной площади слоя. Если слой печатается быстрее установленного порога, то вентилятор постепенно начинает вращаться с указанной скоростью." -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Коэффициент масштабирования для компенсации усадки" +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "Порог переключения на повышенную скорость" -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "На сцене есть объекты поддержки" +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "Время печати слоя, которое устанавливает порог для переключения с обычной скорости вращения вентилятора на максимальную. Слои, которые будут печататься дольше указанного значения, будут использовать обычную скорость вращения вентилятора. Для быстрых слоёв скорость вентилятора постепенно будет повышаться до максимальной." -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Настройки угла шва" +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Начальная скорость вентилятора" -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "Установить последовательность печати вручную" +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "Скорость, с которой вращается вентилятор в начале печати. На последующих слоях скорость вращения постепенно увеличивается до слоя, соответствующего параметру обычной скорости вращения вентилятора на указанной высоте." -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "Устанавливает высоту кожуха. Можно печать кожух высотой с модель или указать определённую высоту." +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Обычная скорость вентилятора на высоте" -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Параметры, используемые для печати несколькими экструдерами." +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "Высота, на которой вентилятор вращается с обычной скоростью. На предыдущих слоях скорость вращения вентилятора постепенно увеличивается с начальной." -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "Параметры, которые используются в случае, когда CuraEngine вызывается напрямую." +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Обычная скорость вентилятора на слое" -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Начальный откат общего сопла" +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "Слой, на котором вентилятор должен вращаться с обыкновенной скоростью. Если определена обычная скорость для вентилятора на высоте, это значение вычисляется и округляется до целого." + +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Минимальное время слоя" -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Острейший угол" +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "Минимальное время, затрачиваемое на печать слоя. Этот параметр заставляет принтер замедляться, как минимум, чтобы потратить на печать слоя время, указанное в этом параметре. Это позволяет напечатанному материалу достаточно охладиться перед печатью следующего слоя. Слои могут печататься быстрее, чем указано в этом параметре, если поднятие головы отключено и если будет нарушено требование по минимальной скорости печати." -msgctxt "shell description" -msgid "Shell" -msgstr "Ограждение" +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Минимальная скорость" -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Короткий путь" +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "Минимальная скорость печати, независящая от замедления печати до минимального времени печати слоя. Если принтер начнёт слишком замедляться, давление в сопле будет слишком малым, что отрицательно скажется на качестве печати." -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Показать варианты принтера" +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Подъём головы" -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Слои, которые поддерживают края оболочки" +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "Когда произойдёт конфликт между параметрами минимальной скорости печати и минимальным временем печати слоя, голова принтера будет отведена от печатаемой модели и будет выдержана необходимая пауза для достижения минимального времени печати слоя." -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Толщина опоры края оболочки" +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "Температура малослойной печати" -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Дистанция расширения оболочки" +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "Постепенно снижать температуру до этой температуры при печати на пониженных скоростях из-за минимального времени нанесения слоя." -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Перекрытие оболочек" +msgctxt "support label" +msgid "Support" +msgstr "Поддержки" -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Процент перекрытия оболочек" +msgctxt "support description" +msgid "Support" +msgstr "Поддержки" -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Ширина удаляемой оболочки" +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Генерация поддержек" -msgctxt "min_skin_width_for_expansion description" -msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." -msgstr "Области оболочек уже указанного значения не расширяются. Это предотвращает расширение узких областей оболочек, которые создаются, если наклон поверхности модели близок к вертикальному." +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "Генерация структур для поддержки нависающих частей модели. Без этих структур такие части будут складываться во время печати." -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "Пропускать одну линию на каждые N соединительных линий, облегчая последующее удаление поддержек." +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Экструдер поддержек" -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "Пропускать некоторые соединения в поддержках для облегчения их последующего удаления. Этот параметр влияет на зиг-заг шаблон заполнения." +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати поддержек. Используется при наличии нескольких экструдеров." -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Юбка" +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Экструдер заполнения поддержек" -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Дистанция до юбки" +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати заполнения поддержек. Используется при наличии нескольких экструдеров." -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "Высота юбки" +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Экструдер первого слоя поддержек" -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Количество линий юбки" +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати первого слоя заполнения поддержек. Используется при наличии нескольких экструдеров." -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Ускорение юбки/каймы" +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Экструдер связующего слоя поддержек" -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Экструдер юбки/каймы" +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати верха и низа поддержек. Используется при наличии нескольких экструдеров." -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Поток для юбки/каймы" +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Экструдер крыши поддержек" -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Рывок юбки/каймы" +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати крыши поддержек. Используется при наличии нескольких экструдеров." -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Ширина линии юбки/каймы" +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Экструдер низа поддержек" -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Минимальная длина юбки/каймы" +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати низа поддержек. Используется при наличии нескольких экструдеров." -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Скорость юбки/каймы" +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Структура поддержки" -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Допуск слайсинга" +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "Выберите одну из доступных техник создания поддержки. Поддержка со стандартной структурой создается непосредственно под выступающими деталями, и затем опускает эти области вниз линейно. У поддержки с древовидной структурой ветви тянутся к выступающим областям и модель опирается на концы этих ветвей, которые охватывают модель с разных сторон, чтобы таким образом максимально поддерживать ее по всей площади печатной пластины." -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Скорость первого слоя для небольших объектов" +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Нормаль" -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Максимальная длина малого элемента" +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Дерево" -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Скорость для малых элементов" +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "Максимальный угол ответвления" -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Максимальный размер малого отверстия" +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "Максимальный угол наклона ответвлений при их росте вокруг модели. При указании меньшего угла поддержка будет более вертикальной и устойчивой. Для получения большего охвата указывайте более высокий угол." -msgctxt "cool_min_temperature label" -msgid "Small Layer Printing Temperature" -msgstr "Температура малослойной печати" +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "Диаметр ответвления" -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "Маленькие вверху/внизу на поверхности" +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "Диаметр самых тонких ответвлений древовидной поддержки. Чем толще ответвление, тем оно крепче. Ответвления возле основания будут иметь толщину, превышающую данное значение." -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "Маленькая ширина верха/низа" +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "Диаметр ствола" -msgctxt "small_feature_speed_factor_0 description" -msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "Малые элементы на первом слое будут напечатаны со скоростью, составляющей этот процент от их нормальной скорости печати. Более медленная печать может улучшить адгезию и точность." +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "Диаметр самых широких веток древовидной поддержки. Более толстый ствол будет более прочным; более тонкий ствол займет меньше места на печатной пластине." -msgctxt "small_feature_speed_factor description" -msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "Малые элементы будут напечатаны со скоростью, составляющей этот процент от их нормальной скорости печати. Более медленная печать может улучшить адгезию и точность." +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "Угол диаметра ответвления" -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "Небольшие области вверху/внизу заполняются стенками вместо шаблона верха/низа по умолчанию. Это помогает избежать резких движений. По умолчанию отключено для самого верхнего (подверженного воздействию воздуха) слоя (см. Маленький верх/низ на поверхности)." +msgctxt "support_tree_branch_diameter_angle description" +msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." +msgstr "Угол диаметра ответвлений по мере их постепенного утолщения к основанию. Если значение угла равно 0, ответвления будут иметь одинаковую толщину по всей своей длине. Небольшой угол может повысить устойчивость древовидной поддержки." -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "Умная кайма" +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Размещение поддержек" -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Интеллектуальное скрытие" +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "От стола" -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Сглаживать спиральные контуры" +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "Везде" -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "Сглаживает спиральные контуры для уменьшения видимости шва по оси Z (такой шов должен быть едва виден при печати, но виден при послойном просмотре). Следует отметить, что сглаживание ведет к размыванию мелких деталей поверхности." +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "Предпочтительный угол ответвления" -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "Небольшое количество материала может выдавиться во время движения, что может быть скомпенсировано с помощью данного параметра." +msgctxt "support_tree_angle_slow description" +msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." +msgstr "Предпочтительный угол ответвлений, когда им не нужно избегать модели. При указании меньшего угла поддержка будет более вертикальной и устойчивой. Используйте больший угол, чтобы ветки сливались быстрее." -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "Небольшое количество материала может просочиться при перемещении во время очистки, что можно скомпенсировать с помощью данного параметра." +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "Увеличение диаметра до модели" -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Специальные режимы" +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "Наибольшее увеличение диаметра ответвления, которое должно быть соединено с моделью, может произойти за счет слияния с ответвлениями, которые могут достигать печатной пластины. Увеличение этого значения сокращает время печати, но увеличивает площадь поддержки, которая опирается на модель" + +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "Минимальная высота до модели" -msgctxt "speed description" -msgid "Speed" -msgstr "Скорость" +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "Какой высоты должно быть ответвление, если оно размещено на модели. Предотвращает образование небольших пузырей поддержки. Этот параметр игнорируется, если ответвление поддерживает крышу поддержки." -msgctxt "speed label" -msgid "Speed" -msgstr "Скорость" +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "Диаметр первого слоя" -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "Скорость перемещения оси Z во время поднятия." +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "Диаметр, которого каждое ответвление пытается достичь при достижении печатной пластины. Улучшает адгезию к столу." -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Спирально печатать внешний контур" +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "Плотность ответвлений" -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "Спирально сглаживает движение по оси Z. Во время печати происходит постоянное увеличение по оси Z. Этот параметр превращает модель в одностенный объект с крепким дном. Параметр можно использовать только когда каждый слой состоит из одной части модели." +msgctxt "support_tree_top_rate description" +msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "Регулирует плотность поддержки, используемой для создания кончиков ответвлений. Большее значение приводит к улучшению качества выступов, но такие поддержки сложнее удалять. Используйте крышу поддержки для очень высоких значений или убедитесь, что плотность одинаково высокая сверху." -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Температура ожидания" +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "Диаметр кончика" -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "Стартовый G-код" +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "Диаметр верхушек кончиков ответвлений древовидной поддержки." -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "Начальная точка каждого пути на слое. Когда пути последовательных слоёв начинаются в одной точке, то в процессе печати может появиться вертикальный шов. Выравнивая место точки в указанной пользователем области, шов несложно убрать. При случайном размещении неточность в начале пути становится не так важна. При выборе кратчайшего пути, печать становится быстрее." +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "Ограничить охват ответвлений" -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Количество шагов на миллиметр (E)" +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "Ограничьте расстояние, на которое каждое ответвление должно удаляться от опорной точки. Это может сделать поддержку прочнее, но увеличит количество ответвлений (и, как следствие, расход материала и время печати)" -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Количество шагов на миллиметр (X)" +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "Оптимальный охват ответвлений" -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Количество шагов на миллиметр (Y)" +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "Рекомендация относительно того, как далеко ответвления могут отходить от точек, которые они поддерживают. Ответвления могут нарушать это значение, чтобы добраться до места назначения (рабочей пластины или плоской части модели). Снижение этого значения может сделать поддержку прочнее, но увеличит количество ответвлений (и, как следствие, расход материала и время печати)" -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Количество шагов на миллиметр (Z)" +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "Предпочтение опоры" -msgctxt "support description" -msgid "Support" -msgstr "Поддержки" +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "Предпочтительное размещение поддерживающих конструкций. Если структуры не могут быть размещены в предпочтительном месте, они будут размещены в другом месте, даже если это приведет к их размещению на модели." -msgctxt "support label" -msgid "Support" -msgstr "Поддержки" +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "По возможности на печатной пластине" -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Ускорение поддержек" +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "На модели, если требуется" -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Дистанция поддержки снизу" +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Угол нависания поддержки" -msgctxt "support_bottom_wall_count label" -msgid "Support Bottom Wall Line Count" -msgstr "Количество линий стенок основания" +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "Минимальный угол нависания при котором добавляются поддержки. При значении в 0° все нависания обеспечиваются поддержками, при 90° не получат никаких поддержек." -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Количество линий каймы поддержки" +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Шаблон поддержек" -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Ширина каймы поддержки" +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "Шаблон печатаемой структуры поддержек. Имеющиеся варианты отличаются крепкостью или простотой удаления поддержек." -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Количество частей линий поддержки" +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Линии" -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Размер части поддержек" +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Сетка" -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "Плотность поддержек" +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Треугольники" -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Приоритет зазоров поддержки" +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Концентрические" -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Экструдер поддержек" +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Ускорение низа поддержек" +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Крест" -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Плотность низа поддержек" +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Гироид" -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Экструдер низа поддержек" +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Количество линий стенки поддержки" -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Поток для низа поддержек" +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Количество стенок, окружающих заполнение поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать нависания поддержки, однако оно увеличивает время печати и расход материалов." -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Горизонтальное расширение нижней части поддержек" +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Количество линий стенок связующего слоя поддержки" -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Рывок низа поддержек" +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Количество стен, которыми можно окружить связующий слой крыши поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать выступы поддержки, однако оно увеличивает время печати и расход материалов." -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Направления линии низа поддержек" +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Количество линий стенок крыши" -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Дистанция линии низа поддержек" +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Количество стенок, которыми можно окружить крышу связующего слоя поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать выступы поддержки, однако оно увеличивает время печати и расход материалов." -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Ширина линии дна поддержки" +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "Количество линий стенок основания" -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Шаблон низа поддержек" +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Количество стенок, которыми можно окружить основание связующего слоя поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать выступы поддержки, однако оно увеличивает время печати и расход материалов." -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Скорость печати низа поддержек" +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Соединение линий поддержки" -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Толщина низа поддержки" +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "Соединяет концы линий поддержки. Активация этой настройки может сделать поддержку более крепкой и компенсировать недостаточную экструзию, но для этого потребуется больше материала." -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Поток для поддержек" +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Соединённый зигзаг" -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Горизонтальное расширение поддержки" +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "Соединяет зигзаги. Это увеличивает прочность такой поддержки." -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Ускорение заполнение поддержек" +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "Плотность поддержек" -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Экструдер заполнения поддержек" +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Настраивает плотность структуры поддержек. Большее значение приводит к улучшению качества навесов, но такие поддержки сложнее удалять." -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Рывок заполнение поддержек" +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "Дистанция между линиями поддержки" -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Толщина слоя заполнения поддержек" +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "Дистанция между напечатанными линями структуры поддержек. Этот параметр вычисляется по плотности поддержек." + +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "Дистанция между линиями поддержки первого слоя" + +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "Дистанция между напечатанными линиями структуры поддержек первого слоя. Этот параметр вычисляется по плотности поддержек." msgctxt "support_infill_angles label" msgid "Support Infill Line Directions" msgstr "Направление линии заполнения поддержек" -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Скорость заполнения поддержек" +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "Список целочисленных направлений линии. Элементы списка используются последовательно по мере печати слоев, и, когда конец списка будет достигнут, он начнется сначала. Элементы списка отделяются запятыми, и сам список заключен в квадратные скобки. По умолчанию список пустой, что означает использование стандартного угла 0 градусов." -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Ускорение края поддержек" +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Разрешить кайму поддержек" -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "Плотность связующего слоя поддержки" +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "Создайте кайму внутри участков заполнения поддержек первого слоя. Эта кайма печатается под поддержкой, а не вокруг нее. Включение этого параметра увеличивает адгезию поддержки к рабочему столу." -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Экструдер связующего слоя поддержек" +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Ширина каймы поддержки" -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Поток для связующего слоя поддержек" +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "Ширина каймы для печати под поддержкой. При увеличении каймы улучшается адгезия к рабочему столу и увеличивается расход материала." -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Горизонтальное расширение связующего слоя" +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Количество линий каймы поддержки" -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Рывок связи поддержек" +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "Количество линий, используемых для каймы поддержки. При увеличении линий каймы улучшается адгезия к рабочему столу и увеличивается расход материала." -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Направления линии связующего слоя поддержек" +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Зазор поддержки по оси Z" -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Ширина линии поддерживающей крыши" +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "Расстояние от верха/низа поддерживающей конструкции до печатаемого объекта. Этот зазор обеспечивает возможность удаления поддержек после печати модели. Верхний слой поддержки под моделью может быть долей обычного слоя." -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Шаблон связующего слоя" +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Зазор поддержки сверху" -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "Приоритет интерфейса поддержки" +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "Расстояние между верхом поддержек и печатаемой моделью." -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Скорость границы поддержек" +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Дистанция поддержки снизу" -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Толщина связующего слоя поддержки" +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "Расстояние от печатаемого объекта до нижней части поддержки. Обратите внимание, что это значение округляется в большую сторону до высоты следующего слоя." -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "Количество линий стенок связующего слоя поддержки" +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "Зазор поддержки по осям X/Y" -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Рывок поддержек" +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "Расстояние между структурами поддержек и печатаемой модели по осям X/Y." -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "Расстояние объединения поддержки" +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Приоритет зазоров поддержки" -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "Дистанция между линиями поддержки" +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "Будет ли зазор по осям X/Y перекрывать зазор по оси Z и наоборот. Если X/Y перекрывает Z, то X/Y может выдавить поддержку из модели, влияя на реальный зазор по оси Z до нависания. Мы можем исправить это, не применяя X/Y зазор около нависаний." -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Ширина линии поддержки" +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y перекрывает Z" -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Поддерживающий объект" +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z перекрывает X/Y" -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Угол нависания поддержки" +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Минимальный X/Y зазор поддержки" -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Шаблон поддержек" +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "Зазор между структурами поддержек и нависанием по осям X/Y." -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Размещение поддержек" +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "Высота шага лестничной поддержки" -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Ускорение крыши поддержек" +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "Высота в шагах низа лестничной поддержки, лежащей на модели. Малые значения усложняют удаление поддержки, а большие значения могут сделать структуру поддержек нестабильной. Установите ноль для выключения лестничной поддержки." -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Плотность крыши поддержек" +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "Максимальная ширина шага лестничной поддержки" -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Экструдер крыши поддержек" +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "Максимальная ширина шагов низа лестничной поддержки, располагающейся на модели. Малые значения усложняют удаление поддержки, а большие значения могут сделать структуру поддержек нестабильной." -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Поток для крыши поддержек" +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "Минимальный угол уклона шага лестничной поддержки" -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Горизонтальное расширение верхней части поддержек" +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "Минимальный уклон области, где применяется лестничный шаг. При низких значениях удаление поддержки на более пологих уклонах должно быть проще, но слишком низкие значения могут приводить к очень неожиданным результатам на других деталях модели." -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Рывок крыши поддержек" +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "Расстояние объединения поддержки" -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Направления линии крыши поддержек" +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "Максимальное расстояние между структурами поддержек по осям X/Y. Если отдельные структуры находятся ближе, чем определено данным значением, они объединяются в одну." -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Дистанция линии крыши поддержек" +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Горизонтальное расширение поддержки" -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Ширина линии крыши поддержки" +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "Величина смещения, применяемая ко всем полигонам поддержки в каждом слое. Положительные значения могут сглаживать зоны поддержки и приводить к укреплению структур поддержек." -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Шаблон крыши поддержек" +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Толщина слоя заполнения поддержек" -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Скорость печати крыши поддержек" +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "Толщина слоя для материала заполнения поддержек. Это значение должно быть всегда кратно высоте слоя, в противном случае оно будет округлено." -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "Толщина крыши" +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Степень заполнения поддержек" -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "Количество линий стенок крыши" +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "Количество раз, на которое на половину можно уменьшать плотность заполнения поддержек при проходе вглубь структуры от поверхности. Области ближе к оболочке имеют большую плотность, вплоть до значения \"Плотность заполнения поддержек\"." -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Скорость печати поддержек" +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Высота шага изменения заполнения поддержек" -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "Высота шага лестничной поддержки" +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "Высота заполнения поддержек, по достижению которой происходит снижение плотности." -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "Максимальная ширина шага лестничной поддержки" +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Минимальная зона поддержек" -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "Минимальный угол уклона шага лестничной поддержки" +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "Минимальная площадь зоны для полигонов поддержек. Полигоны с площадью меньше данного значения не будут генерироваться." -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Структура поддержки" +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Разрешить связующий слой поддержки" + +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "Генерирует плотный слой между моделью и поддержкой. Создаёт поверхность сверху поддержек, на которой печатается модель, и снизу, при печати поддержек на модели." + +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Разрешить крышу поддержек" + +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "Генерирует плотный слой материала между крышей поддержки и моделью. Создаёт поверхность между моделью и поддержкой." -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Зазор поддержки сверху" +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Разрешить дно поддержек" -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Количество линий стенки поддержки" +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "Генерирует плотный слой материала между низом поддержки и моделью. Создаёт поверхность между моделью и поддержкой." -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "Зазор поддержки по осям X/Y" +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Толщина связующего слоя поддержки" -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Зазор поддержки по оси Z" +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "Толщина связующего слоя поддержек, который касается модели снизу или сверху." -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "Предпочитать линии поддержки" +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "Толщина крыши" -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "Предпочитать поддержку" +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "Толщина крыши поддержек. Управляет величиной плотности верхних слоёв поддержек, на которых располагается вся модель." -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Поддерживаемая скорость вентилятора для оболочки" +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Толщина низа поддержки" -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Поверхность" +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "Толщина низа поддержки. Управляет количеством плотных слоёв, которые печатаются поверх модели для последующего построения поддержек." -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "Поверхностная энергия" +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Плотность связующего слоя поддержки" -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Поверхностный режим" +msgctxt "support_interface_density description" +msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Настройте плотность верха и низа структуры поддержек. Большее значение приведёт к улучшению нависаний, но такие поддержки будет труднее удалять." -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "Тенденция к прилипанию к поверхности." +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Плотность крыши поддержек" -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Поверхностная энергия." +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Плотность крыши структуры поддержек. Большее значение приведёт к улучшению нависаний, но такие поддержки будет труднее удалять." -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "Меняет местами порядок печати внутренней и следующей внутренней линий каймы. Это упрощает удаление каймы." +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Дистанция линии крыши поддержек" -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "Чередует какой из объектов, пересекающихся в объёме, будет участвовать в печати каждого слоя таким образом, что пересекающиеся объекты становятся вплетёнными друг в друга. Выключение этого параметра приведёт к тому, что один из объектов займёт весь объём пересечения, в то время как данный объём будет исключён из других объектов." +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "Дистанция между линиями крыши поддержек. Этот параметр вычисляется из Плотности крыши поддержек, но может быть указан отдельно." -msgctxt "adaptive_layer_height_threshold description" -msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." -msgstr "Целевое расстояние по горизонтали между двумя соседними слоями. Уменьшение этого значения приведет к сокращению толщины слоев, и края слоев станут ближе друг к другу." +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Плотность низа поддержек" -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "X координата позиции, вблизи которой следует искать часть модели для начала печати слоя." +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "Плотность низа структуры поддержек. Большее значение приведёт к улучшению прилипания поддержек к модели." -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "X координата позиции, вблизи которой следует начинать путь на каждом слое." +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Дистанция линии низа поддержек" -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "X координата позиции, в которой сопло начинает печать." +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "Дистанция между линиями низа поддержек. Этот параметр вычисляется из Плотности низа поддержек, но может быть указан отдельно." -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "Y координата позиции, вблизи которой следует искать часть модели для начала печати слоя." +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Шаблон связующего слоя" -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "Y координата позиции, вблизи которой следует начинать путь на каждом слое." +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "Шаблон, который будет использоваться для печати связующего слоя поддержек." -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Y координата позиции, в которой сопло начинает печать." +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Линии" -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Позиция кончика сопла на оси Z при старте печати." +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Сетка" -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "Ускорение при печати первого слоя." +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Треугольники" -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "Ускорение для первого слоя." +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Концентрический" -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Ускорение для перемещения на первом слое." +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Ускорение для перемещения на первом слое." +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Шаблон крыши поддержек" -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "Ускорение, с которым происходит печать внутренних стенок." +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "Шаблон, который будет использоваться для печати верхней части поддержек." -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "Ускорение, с которым печатается заполнение." +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Линии" -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "Ускорение, с которым производится разглаживание." +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Сетка" -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "Ускорение, с которым происходит печать." +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Треугольники" -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "Ускорение, с которым печатаются нижние слои подложки." +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Концентрический" -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "Ускорение, с которым происходит печать низа поддержек. Печать поддержек с пониженными ускорениями может улучшить качество печати нависающих краёв модели." +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "Ускорение, с которым печатается заполнение поддержек." +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Шаблон низа поддержек" -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "Ускорение, с которым печатаются средние слои подложки." +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "Шаблон, который будет использоваться для печати нижней части поддержек." -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "Ускорение, с которым происходит печать внешних стенок." +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Линии" -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "Ускорение, с которым печатается черновая башня." +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Сетка" -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "Ускорение, с которым печатается подложка." +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Треугольники" -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "Ускорение, с которым печатаются верх и низ поддержек. Их печать с пониженными ускорениями может улучшить качество печати нависающих частей." +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Концентрический" -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "Ускорение, с которым происходит печать верха поддержек. Печать поддержек с пониженными ускорениями может улучшить качество печати нависающих краёв модели." +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "Ускорение, с которым происходит печать юбки и каймы. Обычно, их печать происходит с ускорениями первого слоя, но иногда вам может потребоваться печатать юбку с другими ускорениями." +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Минимальная зона связующего слоя" -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "Ускорение, с которым печатаются структуры поддержки." +msgctxt "minimum_interface_area description" +msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Минимальная площадь зоны для полигонов связующего слоя. Полигоны с площадью меньше данного значения будут печататься как поддержки нормали." -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "Ускорение, с которым печатаются верхние слои подложки." +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Минимальная зона верхней части поддержек" + +msgctxt "minimum_roof_area description" +msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Минимальная площадь зоны для верхних частей поддержек. Полигоны с площадью меньше данного значения будут печататься как поддержки нормали." -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "Ускорение, с которым печатаются внутренние стены верхней поверхности." +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Минимальная зона нижней части поддержек" -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "Ускорение, с которым печатаются самые внешние стены верхней поверхности." +msgctxt "minimum_bottom_area description" +msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Минимальная площадь зоны для нижних частей поддержек. Полигоны с площадью меньше данного значения будут печататься как поддержки нормали." -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "Ускорение, с которым происходит печать стенок." +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Горизонтальное расширение связующего слоя" -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "Ускорение, с которым печатаются слои верхней оболочки." +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "Величина смещения, применяемая к полигонам связующего слоя." -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "Ускорение, с которым печатаются слои крышки/дна." +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Горизонтальное расширение верхней части поддержек" -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "Ускорение, с которым выполняется перемещение." +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "Величина смещения, применяемая к верхней части поддержек." -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "Объём материала, относительно от обычной линии, который будет выдавлен в процессе разглаживания. Наличие в сопле наличие материала помогает заполнять щели на верхней оболочке, но слишком большое значение приводит к излишнему выдавливанию материала и ухудшает качество оболочки." +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Горизонтальное расширение нижней части поддержек" -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "Величина перекрытия между заполнением и стенками в виде процентного отношения от ширины линии заполнения. Небольшое перекрытие позволяет стенкам надежно соединяться с заполнением." +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "Величина смещения, применяемая к нижней части поддержек." -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "Величина перекрытия между заполнением и стенками. Небольшое перекрытие позволяет стенкам плотно соединиться с заполнением." +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "Приоритет интерфейса поддержки" -msgctxt "switch_extruder_retraction_amount description" -msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." -msgstr "Величина отката при переключении экструдеров. Установите 0 для отключения отката. Обычно соответствует длине зоны нагрева." +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "Как интерфейс поддержки и поддержка будут взаимодействовать при пересечении. В настоящее время реализовано только для крыши поддержки." -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "Угол между горизонтальной плоскостью и конической частью над кончиком сопла." +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "Предпочитать поддержку" -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "Угол верхней части башен. Большие значения приводят уменьшению площади крыши, меньшие наоборот делают крышу плоской." +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "Предпочитать интерфейс" -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "Угол нависания внешних стенок создаваемой формы. 0° приведёт к вертикальным стенкам формы, а 90° - заставит следовать контурам модели." +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "Предпочитать линии поддержки" -msgctxt "support_tree_branch_diameter_angle description" -msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." -msgstr "Угол диаметра ответвлений по мере их постепенного утолщения к основанию. Если значение угла равно 0, ответвления будут иметь одинаковую толщину по всей своей длине. Небольшой угол может повысить устойчивость древовидной поддержки." +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "Предпочитать линии интерфейса" -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "Угол наклона конических поддержек. При 0 градусах поддержки будут вертикальными, при 90 градусах будут горизонтальными. Меньшее значение углов укрепляет поддержки, но требует больше материала для них. Отрицательные углы приводят утолщению основания поддержек по сравнению с их верхней частью." +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "Оба пересекаются" -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "Средняя плотность точек, добавленных на каждом полигоне в слое. Следует отметить, что оригинальные точки полигона отбрасываются, следовательно низкая плотность приводит к уменьшению разрешения." +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Направления линии связующего слоя поддержек" -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "Среднее расстояние между случайными точками, который вносятся в каждый сегмент линии. Следует отметить, что оригинальные точки полигона отбрасываются, таким образом, сильное сглаживание приводит к уменьшению разрешения. Это значение должно быть больше половины толщины шершавой оболочки." +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Список целочисленных направлений линии. Элементы списка используются последовательно по мере печати слоев, и, когда конец списка будет достигнут, он начнется сначала. Элементы списка отделяются запятыми, и сам список заключен в квадратные скобки. По умолчанию список пустой, что означает использование стандартных углов (45 либо 135 градусов, если связующий слой довольно толстый, или 90 градусов)." -msgctxt "material_brand description" -msgid "The brand of material used." -msgstr "" +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Направления линии крыши поддержек" -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "Стандартное ускорение для движений головы." +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Список целочисленных направлений линии. Элементы списка используются последовательно по мере печати слоев, и, когда конец списка будет достигнут, он начнется сначала. Элементы списка отделяются запятыми, и сам список заключен в квадратные скобки. По умолчанию список пустой, что означает использование стандартных углов (45 либо 135 градусов, если связующий слой довольно толстый, или 90 градусов)." -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "Стандартная температура сопла, используемая при печати. Значением должна быть \"базовая\" температура для материала. Все другие температуры печати должны быть выражены смещениями от основного значения" +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Направления линии низа поддержек" -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "Температура по умолчанию, используемая для разогретого рабочего стола. Это значение является базовой температурой рабочего стола. Для всех остальных значений температуры печати используется смещение относительно данного значения" +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Список целочисленных направлений линии. Элементы списка используются последовательно по мере печати слоев, и, когда конец списка будет достигнут, он начнется сначала. Элементы списка отделяются запятыми, и сам список заключен в квадратные скобки. По умолчанию список пустой, что означает использование стандартных углов (45 либо 135 градусов, если связующий слой довольно толстый, или 90 градусов)." -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Плотность слоя оболочки мостика. Значения менее 100 увеличат зазоры между линиями оболочки." +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Переопределение скорости вентилятора" -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "Плотность низа структуры поддержек. Большее значение приведёт к улучшению прилипания поддержек к модели." +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "Если включено, скорость охлаждающего вентилятора, используемого во время печати, изменяется для областей оболочки непосредственно над поддержкой." -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Плотность крыши структуры поддержек. Большее значение приведёт к улучшению нависаний, но такие поддержки будет труднее удалять." +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Поддерживаемая скорость вентилятора для оболочки" -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Плотность слоя второй оболочки мостика. Значения менее 100 увеличат зазоры между линиями оболочки." +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "Скорость вентилятора в процентах, с которой печатаются области оболочки непосредственно над поддержкой. Использование высоких значений скорости вентилятора может упростить снятие поддержки." -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Плотность слоя третьей оболочки мостика. Значения менее 100 увеличат зазоры между линиями оболочки." +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Использовать башни" -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "Ширина (по оси Y) области печати." +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "Использование специальных башен для поддержки крошечных нависающих областей. Такие башни имеют диаметр больший, чем поддерживаемый ими регион. Вблизи нависаний диаметр башен увеличивается, формируя крышу." + +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Диаметр башен" msgctxt "support_tower_diameter description" msgid "The diameter of a special tower." msgstr "Диаметр специальных башен." -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "Диаметр самых тонких ответвлений древовидной поддержки. Чем толще ответвление, тем оно крепче. Ответвления возле основания будут иметь толщину, превышающую данное значение." +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Максимальный диаметр, поддерживаемый башней" -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "Диаметр верхушек кончиков ответвлений древовидной поддержки." +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "Максимальный диаметр по осям X/Y небольшой области, который должен поддерживаться определенной башней." -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "Диаметр колесика, перемещающего материал в питатель." +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Угол крыши башен" -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "Диаметр самых широких веток древовидной поддержки. Более толстый ствол будет более прочным; более тонкий ствол займет меньше места на печатной пластине." +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "Угол верхней части башен. Большие значения приводят уменьшению площади крыши, меньшие наоборот делают крышу плоской." -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "Разница между высотой следующего слоя и высотой предыдущего слоя." +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Объект поддержки нависаний" -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "Расстояние между линиями разглаживания." +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "Будет поддерживать всё ниже объекта, никаких нависаний не будет." -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "Дистанция между соплом и уже напечатанными частями, выдерживаемая при перемещении." +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "На сцене есть объекты поддержки" -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "Расстояние между линиями нижнего слоя подложки. Большее значение упрощает снятие модели со стола." +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "На сцене присутствуют объекты поддержки. Эта настройка контролируется приложением Cura." -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "Расстояние между линиями средних слоёв подложки. Дистанция в средних слоях должна быть достаточно широкой, чтобы создавать нужной плотность для поддержки верхних слоёв подложки." +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Прилипание к столу" -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "Расстояние между линиями подложки на её верхних слоях. Расстояние должно быть равно ширине линии, тогда поверхность будет сплошной." +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Прилипание" -msgctxt "prime_tower_raft_base_line_spacing description" -msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "Расстояние между линиями рафта уникального слоя рафта башни подготовки. Большой шаг облегчает удаление рафта с платформы для печати." +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "Разрешить наполнение материалом" -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "Расстояние от границы между моделями для создания взаимосвязанной структуры, измеряемое в ячейках. Слишком малое количество ячеек приведет к плохой адгезии." +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "Следует ли выдавливать материал перед началом печати. Активация этого параметра обеспечивает наполнение материалом сопла экструдера перед началом печати. Печать каймы или юбки может выполнять такое же действие, тогда выключения этого параметра экономит некоторое время." + +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Начальная X позиция экструдера" + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "X координата позиции, в которой сопло начинает печать." + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Начальная Y позиция экструдера" + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Y координата позиции, в которой сопло начинает печать." + +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Тип прилипания к столу" -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "Расстояние между моделью и самой удалённой линией каймы. Более широкая кайма увеличивает прилипание к столу, но также уменьшает эффективную область печати." +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "Различные варианты, которые помогают улучшить прилипание пластика к столу. Кайма добавляет однослойную плоскую область вокруг основания печатаемой модели, предотвращая её деформацию. Подложка добавляет толстую сетку с крышей под модель. Юбка - это линия, печатаемая вокруг модели, но не соединённая с ней." -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "Расстояние от внешней стороны модели, где взаимосвязанные структуры не будут создаваться, измеряемое в ячейках." +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Юбка" -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "Расстояние от кончика сопла до места, где тепло передаётся материалу." +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Кайма" -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "Расстояние на которое нижние оболочки входят в заполнение. Большие значения лучше связывают оболочку с шаблоном заполнения и стенками. Меньшие значения сохраняют используемый материал." +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Подложка" -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "Расстояние на которое оболочки внедряются в заполнение. Большие значения лучше связывают оболочку с шаблоном заполнения и стенками. Меньшие значения сохраняют используемый материал." +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Нет" -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "Расстояние на которое верхние оболочки входят в заполнение. Большие значения лучше связывают оболочку с шаблоном заполнения и стенками. Меньшие значения сохраняют используемый материал." +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Экструдер первого слоя" -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "Расстояние перемещения головки назад и вперед поперек щетки." +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати юбки/каймы/подложки. Используется при наличии нескольких экструдеров." -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "Конечные точки линий заполнения укорачиваются для экономии материала. Эта настройка представляет собой угол нависания конечных точек этих линий." +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Экструдер юбки/каймы" -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "Дополнительная скорость, с помощью которой сопло охлаждается во время экструзии. Это же значение используется для ускорения нагрева сопла при экструзии." +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "Этот комплекс экструдеров используется для печати юбки или каймы. Используется при наличии нескольких экструдеров." -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати первого слоя заполнения поддержек. Используется при наличии нескольких экструдеров." +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Экструдер нижних подложек" msgctxt "raft_base_extruder_nr description" msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." msgstr "Этот экструдер используется для печати первого слоя подложек. Используется при наличии нескольких экструдеров." -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати низа поддержек. Используется при наличии нескольких экструдеров." - -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати заполнения поддержек. Используется при наличии нескольких экструдеров." +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Экструдер серединных подложек" msgctxt "raft_interface_extruder_nr description" msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." msgstr "Этот комплекс экструдеров используется для печати среднего слоя подложек. Используется при наличии нескольких экструдеров." -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати верха и низа поддержек. Используется при наличии нескольких экструдеров." - -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати крыши поддержек. Используется при наличии нескольких экструдеров." - -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "Этот комплекс экструдеров используется для печати юбки или каймы. Используется при наличии нескольких экструдеров." - -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати юбки/каймы/подложки. Используется при наличии нескольких экструдеров." - -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати поддержек. Используется при наличии нескольких экструдеров." +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Экструдер верхних подложек" msgctxt "raft_surface_extruder_nr description" msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." msgstr "Этот комплекс экструдеров используется для печати верхнего слоя (или нескольких слоев) подложек. Используется при наличии нескольких экструдеров." -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "Экструдер, используемый для печати заполнения. Используется при наличии нескольких экструдеров." - -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати внутренних стенок. Используется при наличии нескольких экструдеров." - -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати внешних стенок. Используется при наличии нескольких экструдеров." - -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "Экструдер, используемый для печати верхней и нижней оболочек. Используется при наличии нескольких экструдеров." - -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "Экструдер, используемый для печати верхних оболочек. Используется при наличии нескольких экструдеров." - -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати стенок. Используется при наличии нескольких экструдеров." - -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "Скорость вентилятора при печати нижнего слоя подложки." - -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "Скорость вентилятора при печати средних слоёв подложки." - -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "Скорость вращения вентилятора при печати подложки." +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Количество линий юбки" -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "Скорость вентилятора при печати верхних слоёв подложки." +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "Несколько линий юбки помогают лучше начать укладывание материала при печати небольших моделей. Установка этого параметра в 0 отключает печать юбки." -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "Путь к файлу изображения, из которого значения яркости определяют минимальную плотность в соответствующем месте заполнения при печати." +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "Высота юбки" -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "Путь к файлу изображения, из которого значения яркости определяют минимальную плотность в соответствующем месте поддержки." +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "Печать внутренней линии юбки несколькими слоями позволяет легко ее удалить." -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "Первые несколько слоёв печатаются на медленной скорости, чем вся остальная модель, чтобы получить лучшее прилипание к столу и увеличить вероятность успешной печати. Скорость последовательно увеличивается по мере печати указанного количества слоёв." +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Дистанция до юбки" -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "Зазор между последним слоем подложки и первым слоем модели. Первый слой будет приподнят на указанное расстояние, чтобы уменьшить связь между слоем подложки и модели. Упрощает процесс последующего отделения подложки." +msgctxt "skirt_gap description" +msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "Горизонтальное расстояние между юбкой и первым слоем печати." +"Минимальное расстояние. Несколько линий юбки будут расширяться от этого расстояния." -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "Ширина (по оси Z) области печати." +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Минимальная длина юбки/каймы" -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "Высота над горизонтальными частями вашей модели, по которой создаётся форма." +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "Минимальная длина печатаемой линии юбки или каймы. Если при печати юбки или каймы эта длина не будет выбрана, то будут добавляться дополнительные кольца юбки или каймы. Следует отметить, если количество линий установлено в 0, то этот параметр игнорируется." -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "Высота, на которой вентилятор вращается с обычной скоростью. На предыдущих слоях скорость вращения вентилятора постепенно увеличивается с начальной." +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Ширина каймы" -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "Высота между кончиком сопла и портальной системой (по осям X и Y)." +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "Расстояние между моделью и самой удалённой линией каймы. Более широкая кайма увеличивает прилипание к столу, но также уменьшает эффективную область печати." -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "Высота между кончиком сопла и нижней частью головы." +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Количество линий каймы" -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "Высота, на которую приподнимается ось Z после смены экструдера." +msgctxt "brim_line_count description" +msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." +msgstr "Количество линий, используемых для печати каймы. Большее количество линий каймы улучшает прилипание к столу, но уменьшает эффективную область печати." -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Расстояние, на которое приподнимается ось Z." +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Расстояние до каймы" -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "Расстояние, на которое приподнимается ось Z." +msgctxt "brim_gap description" +msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." +msgstr "Горизонтальное расстояние между первой линией каймы и контуром первого слоя изделия. Небольшой зазор облегчит удаление каймы и позволит сохранить термические преимущества." -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "Высота каждого слоя в миллиметрах. Большие значения приводят к быстрой печати при низком разрешении, малые значения приводят к замедлению печати с высоким разрешением." +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Кайма заменяет поддержку" -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "Высота заполнения с указанной плотностью перед переключением на половину плотности." +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "Принудительная печать каймы вокруг модели, даже если пространство в ином случае было бы занято поддержкой. При этом некоторые участки первого слоя поддержки заменяются участками каймы." -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "Высота заполнения поддержек, по достижению которой происходит снижение плотности." +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "Расположение кромки" -msgctxt "interlocking_beam_layer_count description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "Высота балок взаимосвязанной структуры, измеряемая в количестве слоев. Чем меньше слоев, тем она будет прочнее, но более подвержена дефектам." +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "Напечата поля снаружи, внутри или на обеих сторонах модели. В зависимости от модели это помогает уменьшить количество козырьков, которые необходимо потом снять, обеспечивая при этом надлежащее прилегание к основе." -msgctxt "interlocking_orientation description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "Высота балок взаимосвязанной структуры, измеряемая в количестве слоев. Чем меньше слоев, тем она будет прочнее, но более подвержена дефектам." +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "Только снаружи" -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "Высота первого слоя в миллиметрах. Более толстый слой упрощает прилипание пластика к столу." +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "Только внутри" -msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "Высота основания башни подготовки. Увеличение этого значения приведет к созданию более устойчивой башни подготовки, так как основание будет шире. Если это значение слишком низкое, основание башни подготовки не будет достаточно устойчивым." +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "Везде" -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "Высота в шагах низа лестничной поддержки, лежащей на модели. Малые значения усложняют удаление поддержки, а большие значения могут сделать структуру поддержек нестабильной. Установите ноль для выключения лестничной поддержки." +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "Поля для избегания кромки" -msgctxt "brim_gap description" -msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." -msgstr "Горизонтальное расстояние между первой линией каймы и контуром первого слоя изделия. Небольшой зазор облегчит удаление каймы и позволит сохранить термические преимущества." +msgctxt "brim_inside_margin description" +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "Кромка вокруг модели может касаться другой модели там, где это нежелательно. При этом у моделей без кромок удаляются все кромки на этом расстоянии." -msgctxt "skirt_gap description" -msgid "" -"The horizontal distance between the skirt and the first layer of the print.\n" -"This is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "" -"Горизонтальное расстояние между юбкой и первым слоем печати.\n" -"Минимальное расстояние. Несколько линий юбки будут расширяться от этого расстояния." +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "Умная кайма" -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "Линии заполнения выравниваются для сокращения время печати. Это максимально допустимый угол нависания по всей длине линии заполнения." +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "Меняет местами порядок печати внутренней и следующей внутренней линий каймы. Это упрощает удаление каймы." -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "Расстояние перемещения шаблона заполнения по оси X." +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Дополнительное поле подложки" -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "Расстояние перемещения шаблона заполнения по оси Y." +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Если подложка включена, это дополнительное поле вокруг модели, которая также имеет подложку. Увеличение этого значения создаст более крепкую поддержку, используя больше материала и оставляя меньше свободной области для печати." -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Внутренний диаметр сопла. Измените этот параметр при использовании сопла нестандартного размера." +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "Дополнительная базовая кромка фундамента" -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатаются нижние слои подложки." +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Если основание фундамента включено, это дополнительная область фундамента вокруг модели, которой также предоставляется фундамент. Увеличение этого запаса позволит создать более прочную основу, используя при этом больше материала и оставляя меньше места для печати." -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатаются средние слои подложки." +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "Средняя дополнительная кромка фундамента" -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "Скорость изменения ускорений при печати подложки." +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Если включена средняя часть фундамента, это дополнительная область фундамента вокруг модели, которой также предоставляется фундамент. Увеличение этого запаса позволит создать более прочную основу, используя при этом больше материала и оставляя меньше места для печати." -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатаются верхние слои подложки." +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "Дополнительная кромка фундамента сверху" -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "Наибольшая ширина областей оболочки, которые будут удалены. Каждая область оболочки, которая меньше указанного значения, будет удалена. Это может помочь с сокращением затрат времени и материала при печати нижних оболочек наклонных поверхностей модели." +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Если фундамент сверху включен, это дополнительная область фундамента вокруг модели, которой также предоставляется фундамент. Увеличение этого запаса позволит создать более прочную основу, используя при этом больше материала и оставляя меньше места для печати." -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "Наибольшая ширина областей оболочки, которые будут удалены. Каждая область оболочки, которая меньше указанного значения, будет удалена. Это может помочь с сокращением затрат времени и материала при печати верхних/нижних оболочек наклонных поверхностей модели." +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Удаление внутренних углов подложки" -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "Наибольшая ширина областей оболочки, которые будут удалены. Каждая область оболочки, которая меньше указанного значения, будет удалена. Это может помочь с сокращением затрат времени и материала при печати верхних оболочек наклонных поверхностей модели." +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Удаляйте внутренние углы с подложки, чтобы она стала выпуклой." -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "Слой, на котором вентилятор должен вращаться с обыкновенной скоростью. Если определена обычная скорость для вентилятора на высоте, это значение вычисляется и округляется до целого." +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "Удаление основания фундамента внутри углов" -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "Время печати слоя, которое устанавливает порог для переключения с обычной скорости вращения вентилятора на максимальную. Слои, которые будут печататься дольше указанного значения, будут использовать обычную скорость вращения вентилятора. Для быстрых слоёв скорость вентилятора постепенно будет повышаться до максимальной." +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "Удалите внутренние углы основания фундамента, в результате чего фундамент станет выпуклым." -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "Длина нити материала, которая будет извлечена по время отката." +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "Удалить среднюю часть фундамента в углах" -msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "Множитель, используемый для наклона основания башни подготовки. Если увеличить это значение, основание станет более узким. Если уменьшить - основание станет толще." +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "Удалите внутренние углы средней части фундамента, в результате чего фундамент станет выпуклым." -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "Материал рабочего стола, установленного на принтере." +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "Удалить верхнюю часть фундамента внутри углов" -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "Максимальная разрешенная высота по сравнению с высотой базового уровня." +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "Удалите внутреннюю часть из верхней части фундамента, в результате чего фундамент станет выпуклым." -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "Максимальный угол, который может иметь часть защиты от капель. При 0 градусов будет вертикаль, при 90 - будет горизонталь. Малые значения угла приводят к лучшему качеству, но тратят больше материала." +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Сглаживание подложки" -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "Максимальный угол нависания, после которого они становятся печатаемыми. При значении в 0° все нависания заменяются частью модели, соединённой со столом, при 90° в модель не вносится никаких изменений." +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Этот параметр регулирует величину скругления внутренних углов контура подложки. Внутренние углы скругляются до полукруга с радиусом, равным установленному здесь значению. Этот параметр также приводит к удалению отверстий в контуре подложки, которые меньше такого круга." -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "Максимальный угол наклона ответвлений при их росте вокруг модели. При указании меньшего угла поддержка будет более вертикальной и устойчивой. Для получения большего охвата указывайте более высокий угол." +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "Сглаживание основания фундамента" -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "Максимальная площадь отверстия в основании модели, при достижении которой оно удаляется функцией «Сделать нависания печатаемыми». Более мелкие отверстия сохраняются. Значение 0 мм² приведет к заполнению всех отверстий в основании модели." +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Этот параметр определяет, насколько закруглены внутренние углы контура основания фундамента. Внутренние углы закруглены до полукруга с радиусом, равным указанному здесь значению. Эта настройка также удаляет отверстия в контуре фундамента, которые меньше такого круга." -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "Максимальное допустимое отклонение при снижении разрешения для параметра максимального разрешения. Увеличение этого значения понизит точность печати и уменьшит значение G-кода. Максимальное отклонение является пределом для максимального разрешения, поэтому, если они конфликтуют, истинным считается максимальное отклонение." +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "Сглаживание средней части фундамента" -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "Максимальное расстояние между структурами поддержек по осям X/Y. Если отдельные структуры находятся ближе, чем определено данным значением, они объединяются в одну." +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Этот параметр определяет, насколько закруглены внутренние углы среднего контура фундамента. Внутренние углы закруглены до полукруга с радиусом, равным указанному здесь значению. Эта настройка также удаляет отверстия в контуре фундамента, которые меньше такого круга." -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "Максимальное расстояние (в мм) перемещения материала для компенсации изменения расхода." +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "Сглаживание верхней части фуендамента" -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "Максимальное допустимое отклонение площади экструдирования при удалении промежуточных точек от прямой линии. Промежуточная точка может служить точкой изменения ширины длинной прямой линии. Следовательно, если ее удалить, линия будет иметь одинаковую ширину и вследствие этого площадь экструдирования немного сократится (или увеличится). Если увеличить это значение, можно будет заметить небольшой эффект недостаточного (или чрезмерного) экструдирования между прямыми параллельными стенками, так как будет разрешено удалить больше промежуточных точек изменения ширины. При увеличении этого значения точность печати понизится, а значение g-кода уменьшится." +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Этот параметр определяет, насколько закруглены внутренние углы верхнего контура фундамента. Внутренние углы закруглены до полукруга с радиусом, равным указанному здесь значению. Эта настройка также удаляет отверстия в контуре фундамента, которые меньше такого круга." -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "Изменение максимальной мгновенной скорости, с которой печатается первый слой." +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Воздушный зазор подложки" -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "Изменение максимальной мгновенной скорости печатающей головки." +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "Зазор между последним слоем подложки и первым слоем модели. Первый слой будет приподнят на указанное расстояние, чтобы уменьшить связь между слоем подложки и модели. Упрощает процесс последующего отделения подложки." -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "Изменение максимальной мгновенной скорости, с которой выполняется разглаживание." +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Z наложение первого слоя" -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатаются внутренние стенки." +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "Сделайте так, чтобы первый и второй слои модели перекрывались в направлении Z, чтобы компенсировать потерю нити в воздушном зазоре. Все модели выше первого слоя модели будут сдвинуты вниз на эту величину.\nМожно отметить, что иногда из-за этой настройки второй слой печатается ниже начального слоя. Это предполагаемое поведение" -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатается заполнение." +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Толщина нижнего слоя подложки" -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "Максимальное изменение мгновенной скорости, с которым напечатаны низ поддержек." +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "Толщина нижнего слоя подложки. Она должна быть достаточной для хорошего прилипания подложки к столу." -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатается заполнение поддержек." +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Ширина линии нижнего слоя подложки" -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатаются внешние стенки." +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "Ширина линий нижнего слоя подложки. Она должна быть достаточной, чтобы улучшить прилипание к столу." -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатается черновая башня." +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Дистанция между линиями нижнего слоя подложки" -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "Максимальное изменение мгновенной скорости, с которым напечатаны крыши и низ поддержек." +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "Расстояние между линиями нижнего слоя подложки. Большее значение упрощает снятие модели со стола." -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "Максимальное изменение мгновенной скорости, с которым напечатаны крыши поддержек." +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Серединные слои подложек" -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатается юбка и кайма." +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "Количество слоев между основанием и поверхностью подложки. Они составляют основную толщину подложки. Увеличение этого значения позволяет создать более прочную положку большей толщины." -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатаются поддержки." +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Толщина середины подложки" -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "Максимальное мгновенное изменение скорости, с которым печатаются самые внешние стены верхней поверхности." +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "Толщина слоёв середины подложки." -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "Максимальное мгновенное изменение скорости, с которым печатаются внутренние стены верхней поверхности." +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Ширина линий середины подложки" -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "Изменение максимальной мгновенной скорости, с которой будут напечатаны стены." +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "Толщина линий средних слоёв подложки. Приводит к повышенному выдавливанию материала на втором слое, для лучшего прилипания к столу." -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатаются слои верхней оболочки." +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Дистанция между слоями середины подложки" -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатаются верхние и нижние слои." +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "Расстояние между линиями средних слоёв подложки. Дистанция в средних слоях должна быть достаточно широкой, чтобы создавать нужной плотность для поддержки верхних слоёв подложки." -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "Изменение максимальной мгновенной скорости, с которой выполняются перемещения." +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Верхние слои подложки" -msgctxt "prime_tower_max_bridging_distance description" -msgid "The maximum length of the branches which may be printed over the air." -msgstr "" +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "Количество верхних слоёв над вторым слоем подложки. Это такие полностью заполненные слои, на которых размещается модель. Два слоя приводят к более гладкой поверхности чем один." -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "Максимальная скорость для мотора оси X." +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Толщина верхнего слоя подложки" -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "Максимальная скорость для мотора оси Y." +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Толщина верхних слоёв поддержки." -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "Максимальная скорость для мотора оси Z." +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Ширина линий верха подложки" -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "Максимальная скорость подачи материала." +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "Ширина линий верхних слоёв подложки. Это могут быть тонкие линии, которые делают подложку гладкой." -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "Максимальная ширина шагов низа лестничной поддержки, располагающейся на модели. Малые значения усложняют удаление поддержки, а большие значения могут сделать структуру поддержек нестабильной." +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Дистанция между линиями верха поддержки" -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "Минимальное расстояние между внешними сторонами формы и модели." +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "Расстояние между линиями подложки на её верхних слоях. Расстояние должно быть равно ширине линии, тогда поверхность будет сплошной." -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "Минимальная скорость движения головы." +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "Порядок монотонной верхней поверхности фундамента" -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "Минимальная температура, в процессе нагрева до температуры печати, на которой можно запустить процесс печати." +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "Печатайте линии верхней поверхности фундамента в таком порядке, чтобы они всегда перекрывались со смежными линиями в одном направлении. Печать займет немного больше времени, но поверхность будет выглядеть более единообразной, что также видно на нижней поверхности модели." -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "Минимальное время, которое экструдер должен быть неактивен, чтобы сопло начало охлаждаться. Только когда экструдер не используется дольше, чем указанное время, он может быть охлаждён до температуры ожидания." +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "Количество стен на фундаменте" -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "Минимальный угол внутренних нависаний, для которых добавляется заполнение. При 0° объекты полностью заполняются, при 90° заполнение отсутствует." +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "Количество контуров для печати вокруг линейного рисунка фундамента." -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "Минимальный угол нависания при котором добавляются поддержки. При значении в 0° все нависания обеспечиваются поддержками, при 90° не получат никаких поддержек." +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Счетчик стен основания подложки" -msgctxt "retraction_min_travel description" -msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." -msgstr "Минимальное расстояние на которое необходимо переместиться для отката, чтобы он произошёл. Этот параметр помогает уменьшить количество откатов на небольшой области печати." +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "Количество контуров, которые необходимо напечатать вокруг линейного рисунка в слое основания подложки." -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "Минимальная длина печатаемой линии юбки или каймы. Если при печати юбки или каймы эта длина не будет выбрана, то будут добавляться дополнительные кольца юбки или каймы. Следует отметить, если количество линий установлено в 0, то этот параметр игнорируется." +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "Количество промежуточных стен на фундаменте" -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "Минимальная ширина линии для полилинейных стенок, заполняющих зазоры средней линии. Этот параметр определяет, при какой толщине модели выполняется переключение с печати стенки в две линии на печать двух внешних стенок и одной центральной стенки посередине. Чем выше значение минимальной ширины линии нечетной стенки, тем выше максимальная ширина линии четной стенки. Максимальная ширина линии нечетной стенки вычисляется по формуле: 2 * минимальную ширину линии четной стенки." +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "Количество контуров для печати вокруг линейного рисунка в средних слоях фундамента." -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "Минимальная ширина линии обычных многоугольных стенок. Этот параметр определяет, при какой толщине модели выполняется переключение с печати тонкой стенки в одну линию на печать стенок в две линии. Чем выше значение минимальной ширины линии четной стенки, тем выше максимальная ширина линии нечетной стенки. Максимальная ширина линии четной стенки вычисляется по формуле: Ширина линии внешней стенки + 0,5 * Минимальная ширина линии нечетной стенки." +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "Количество стен наверху фундамента " -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "Минимальная скорость печати, независящая от замедления печати до минимального времени печати слоя. Если принтер начнёт слишком замедляться, давление в сопле будет слишком малым, что отрицательно скажется на качестве печати." +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "Количество контуров для печати вокруг линейного рисунка в верхних слоях фундамента." -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "Минимальный размер сегмента линии после слайсинга. Увеличение значения этого параметра понизит разрешение модели. Это может позволить принтеру поддерживать скорость обработки кода G и увеличит скорость слайсинга за счет удаления деталей модели, которые он в любом случае не сможет обработать." +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Скорость печати подложки" -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "Минимальный размер сегмента линии перемещения после разделения на слои. При увеличении этого значения углы при перемещении будут менее сглаженными. Это может помочь принтеру поддерживать скорость обработки G-кода, однако при этом может снизиться точность избегания моделей." +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "Скорость, на которой печатается подложка." -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "Минимальный уклон области, где применяется лестничный шаг. При низких значениях удаление поддержки на более пологих уклонах должно быть проще, но слишком низкие значения могут приводить к очень неожиданным результатам на других деталях модели." +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Скорость печати низа подложки" -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "Минимальное время, затрачиваемое на печать слоя. Этот параметр заставляет принтер замедляться, как минимум, чтобы потратить на печать слоя время, указанное в этом параметре. Это позволяет напечатанному материалу достаточно охладиться перед печатью следующего слоя. Слои могут печататься быстрее, чем указано в этом параметре, если поднятие головы отключено и если будет нарушено требование по минимальной скорости печати." +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "Скорость, на которой печатается нижний слой подложки. Она должна быть достаточно низкой, так как объём материала, выходящего из сопла, достаточно большой." -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "Минимальный объём материала на каждый слой черновой башни, который требуется выдавить." +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Скорость печати середины подложки" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "Наибольшее увеличение диаметра ответвления, которое должно быть соединено с моделью, может произойти за счет слияния с ответвлениями, которые могут достигать печатной пластины. Увеличение этого значения сокращает время печати, но увеличивает площадь поддержки, которая опирается на модель" +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "Скорость, на которой печатаются средние слои подложки. Она должна быть достаточно низкой, так как объём материала, выходящего из сопла, достаточно большой." -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "Название модели вашего 3D принтера." +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Скорость печати верха подложки" -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "Идентификатор сопла для экструдера, например \"AA 0.4\" и \"BB 0.8\"." +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "Скорость, на которой печатаются верхние слои подложки. Верх подложки должен печататься немного медленнее, чтобы сопло могло медленно разглаживать линии поверхности." -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "Сопло избегает уже напечатанных частей при перемещении. Эта опция доступна только при включенном комбинге." +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Ускорение печати подложки" -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "При перемещении сопла оно будет избегать напечатанных поддержек. Эта опция доступна только при включенном комбинге." +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "Ускорение, с которым печатается подложка." -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "Количество слоёв в дне. При вычислении толщины дна это значение округляется до целого." +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Ускорение печати низа подложки" -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "Количество контуров, которые необходимо напечатать вокруг линейного рисунка в слое основания подложки." +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "Ускорение, с которым печатаются нижние слои подложки." -msgctxt "raft_interface_wall_count description" -msgid "The number of contours to print around the linear pattern in the middle layers of the raft." -msgstr "" +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Ускорение печати середины подложки" -msgctxt "raft_surface_wall_count description" -msgid "The number of contours to print around the linear pattern in the top layers of the raft." -msgstr "" +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "Ускорение, с которым печатаются средние слои подложки." -msgctxt "raft_wall_count description" -msgid "The number of contours to print around the linear pattern of the raft." -msgstr "" +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Ускорение печати верха подложки" -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "Количество слоев, которые поддерживают края оболочки." +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "Ускорение, с которым печатаются верхние слои подложки." -msgctxt "initial_bottom_layers description" -msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "Количество начальных слоев дна, вверх от рабочего стола. При вычислении толщины дна это значение округляется до целого." +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Рывок подложки" -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "Количество слоев между основанием и поверхностью подложки. Они составляют основную толщину подложки. Увеличение этого значения позволяет создать более прочную положку большей толщины." +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "Скорость изменения ускорений при печати подложки." -msgctxt "brim_line_count description" -msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." -msgstr "Количество линий, используемых для печати каймы. Большее количество линий каймы улучшает прилипание к столу, но уменьшает эффективную область печати." +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Рывок печати низа подложки" -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "Количество линий, используемых для каймы поддержки. При увеличении линий каймы улучшается адгезия к рабочему столу и увеличивается расход материала." +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатаются нижние слои подложки." -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "Количество верхних слоёв над вторым слоем подложки. Это такие полностью заполненные слои, на которых размещается модель. Два слоя приводят к более гладкой поверхности чем один." +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Рывок печати середины подложки" -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "Количество слоёв в крышке. При вычислении толщины крышки это значение округляется до целого." +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатаются средние слои подложки." -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "Количество верхних слоёв оболочки. Обычно достаточно одного слоя для получения верхних поверхностей в хорошем качестве." +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Рывок печати верха подложки" -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Количество стенок, окружающих заполнение поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать нависания поддержки, однако оно увеличивает время печати и расход материалов." +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатаются верхние слои подложки." -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Количество стенок, которыми можно окружить основание связующего слоя поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать выступы поддержки, однако оно увеличивает время печати и расход материалов." +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Скорость вентилятора для подложки" -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Количество стенок, которыми можно окружить крышу связующего слоя поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать выступы поддержки, однако оно увеличивает время печати и расход материалов." +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "Скорость вращения вентилятора при печати подложки." -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Количество стен, которыми можно окружить связующий слой крыши поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать выступы поддержки, однако оно увеличивает время печати и расход материалов." +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Скорость вентилятора для низа подложки" -msgctxt "wall_distribution_count description" -msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." -msgstr "Количество стенок, считая от центра, на которые необходимо распространить вариацию. Более низкое значение означает, что ширина внешних стенок не изменяется." +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "Скорость вентилятора при печати нижнего слоя подложки." -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "Количество линий стенки. При вычислении толщины стенки, это значение округляется до целого." +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Скорость вентилятора для середины подложки" -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "Внешний диаметр кончика сопла." +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "Скорость вентилятора при печати средних слоёв подложки." -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "Шаблон заполняющего материала печати. Линейное и зигзагообразное заполнение меняет направление на чередующихся слоях, снижая расходы на материал. Шаблоны «сетка», «треугольник», «шестигранник из треугольников», «куб», «восьмигранник», «четверть куба», «крестовое», «концентрическое» полностью печатаются в каждом слое. Шаблоны заполнения «гироид», «куб», «четверть куба» и «восьмигранник» меняются в каждом слое, чтобы обеспечить более равномерное распределение прочности в каждом направлении. Шаблон заполнения «молния» пытается минимизировать заполнение, поддерживая только верхнюю область объекта." +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Скорость вентилятора для верха подложки" -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "Шаблон печатаемой структуры поддержек. Имеющиеся варианты отличаются крепкостью или простотой удаления поддержек." +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "Скорость вентилятора при печати верхних слоёв подложки." -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "Шаблон, используемый для верхних слоёв оболочки." +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Два экструдера" -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Шаблон слоёв для крышки/дна." +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Параметры, используемые для печати несколькими экструдерами." -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "Шаблон низа печати на первом слое." +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Разрешить черновую башню" -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "Шаблон, который будет использоваться для разглаживания верхней оболочки." +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "Печатает башню перед печатью модели, чем помогает выдавить старый материал после смены экструдера." -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "Шаблон, который будет использоваться для печати нижней части поддержек." +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "Тип основной башни" -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "Шаблон, который будет использоваться для печати связующего слоя поддержек." +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
                                      • Normal: create a bucket in which secondary materials are primed
                                      • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
                                      " +msgstr "Как создать основную башню:
                                      • Нормально: создайте корзину, в которую будут загружены вторичные материалы
                                      • С чередованием: создайте как можно более редкую основную башню. Это сэкономит время и нить, но это возможно только в том случае, если используемые материалы прилипают друг к другу
                                      " -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "Шаблон, который будет использоваться для печати верхней части поддержек." +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "Нормальная" -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "Позиция, рядом с которой следует начинать путь на каждом слое." +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "Чередующаяся" -msgctxt "support_tree_angle_slow description" -msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." -msgstr "Предпочтительный угол ответвлений, когда им не нужно избегать модели. При указании меньшего угла поддержка будет более вертикальной и устойчивой. Используйте больший угол, чтобы ветки сливались быстрее." +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Размер черновой башни" -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "Предпочтительное размещение поддерживающих конструкций. Если структуры не могут быть размещены в предпочтительном месте, они будут размещены в другом месте, даже если это приведет к их размещению на модели." +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "Ширина черновой башни." -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "Изменение максимальной мгновенной скорости на первом слое." +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Минимальный объём черновой башни" -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "Форма стола без учёта непечатаемых областей." +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "Минимальный объём материала на каждый слой черновой башни, который требуется выдавить." -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "Форма печатающей головки. Это координаты относительно положения печатной головки, которое обычно совпадает с положением ее первого экструдера. Координаты слева от печатной головки и перед ней должны иметь отрицательные значения." +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "Максимальное расстояние моста основной башни" -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "Размер карманов при печати шаблоном крест 3D по высоте, когда шаблон касается сам себя." +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "Максимальная длина ветвей, которые можно напечатать по воздуху." -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "Минимальный объём экструзии, который должен быть произведён перед выполнением наката. Для малых путей меньшее давление будет создаваться в боудене и таким образом, объём наката будет изменяться линейно. Это значение должно всегда быть больше \"Объёма наката\"." +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "X позиция черновой башни" -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "Скорость (°C/сек.), с которой сопло охлаждается, усреднённая в окне температур при обычной печати и температура ожидания." +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "X координата позиции черновой башни." -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "Скорость (°C/сек.), с которой сопло греет, усреднённая в окне температур при обычной печати и температура ожидания." +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Y позиция черновой башни" -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "Скорость, на которой происходит печать внутренних стенок. Печать внутренних стенок на скорости, большей скорости печати внешней стенки, ускоряет печать. Отлично работает, если значение скорости находится между скоростями печати внешней стенки и скорости заполнения." +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "Y координата позиции черновой башни." -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "Скорость, с которой печатаются области оболочки мостика." +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Очистка неактивного сопла на черновой башне" -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "Скорость, на которой печатается заполнение." +msgctxt "prime_tower_wipe_enabled description" +msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." +msgstr "После печати черновой башни одним соплом, вытирает вытекший материал из другого сопла об эту башню." -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "Скорость, на которой происходит печать." +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Base" +msgstr "Основание башни подготовки" -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "Скорость, на которой печатается нижний слой подложки. Она должна быть достаточно низкой, так как объём материала, выходящего из сопла, достаточно большой." +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "Активируя эту настройку, ваша башня подготовки получит бортик, даже если модель его не требует. Если вам нужна более устойчивая основа для высокой башни, вы можете увеличить высоту основания." -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "Скорость, с которой происходит печать стенок мостика." +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "Размер основания башни подготовки" -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "Скорость, с которой вращается вентилятор в начале печати. На последующих слоях скорость вращения постепенно увеличивается до слоя, соответствующего параметру обычной скорости вращения вентилятора на указанной высоте." +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "Ширина бортика/основания башни подготовки. Большее основание улучшает адгезию к платформе для печати, но также уменьшает эффективную площадь печати." -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "Скорость, с которой вращается вентилятор до достижения порога. Если слой печатается быстрее установленного порога, то вентилятор постепенно начинает вращаться быстрее." +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "Высота основания башни подготовки" -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "Скорость, с которой вращается вентилятор при минимальной площади слоя. Если слой печатается быстрее установленного порога, то вентилятор постепенно начинает вращаться с указанной скоростью." +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "Высота основания башни подготовки. Увеличение этого значения приведет к созданию более устойчивой башни подготовки, так как основание будет шире. Если это значение слишком низкое, основание башни подготовки не будет достаточно устойчивым." -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "Скорость с которой материал будет возвращён при откате." +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "Наклон основания башни подготовки" -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "Скорость, с которой нить заправляется при откате с очисткой." +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "Множитель, используемый для наклона основания башни подготовки. Если увеличить это значение, основание станет более узким. Если уменьшить - основание станет толще." -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "Скорость, с которой материал будет возвращён обратно при смене экструдера." +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "Шаг линий рафта башни подготовки" -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "Скорость, с которой материал будет извлечён и возвращён обратно при откате." +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "Расстояние между линиями рафта уникального слоя рафта башни подготовки. Большой шаг облегчает удаление рафта с платформы для печати." -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "Скорость, с которой нить будет втягиваться и заправляться при откате с очисткой." +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Печатать защиту от капель" -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "Скорость, с которой материал будет извлечён при откате для смены экструдера." +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "Разрешает печать внешней защиты от вытекших капель. Создаёт ограду вокруг модели, о которую вытирается материал, вытекший из второго сопла, если оно находится на той же высоте, что и первое сопло." -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "Скорость с которой нить будет извлечена при откате." +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Угол защиты от капель" -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "Скорость, с которой нить будет втягиваться при откате с очисткой." +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "Максимальный угол, который может иметь часть защиты от капель. При 0 градусов будет вертикаль, при 90 - будет горизонталь. Малые значения угла приводят к лучшему качеству, но тратят больше материала." -msgctxt "switch_extruder_retraction_speeds description" -msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." -msgstr "Скорость с которой материал будет извлечён и возвращён обратно при откате. Высокая скорость отката работает лучше, но очень большая скорость портит материал." +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Дистанция до защиты от капель" -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "Скорость, на которой происходит печать низа поддержек. Печать поддержек на пониженных скоростях может улучшить качество печати нависающих краёв модели." +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "Дистанция до стенки защиты от модели, по осям X/Y." -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "Скорость, на которой заполняются поддержки. Печать заполнения на пониженных скоростях улучшает стабильность." +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Величина отката при смене экструдера" -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "Скорость, на которой печатаются средние слои подложки. Она должна быть достаточно низкой, так как объём материала, выходящего из сопла, достаточно большой." +msgctxt "switch_extruder_retraction_amount description" +msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." +msgstr "Величина отката при переключении экструдеров. Установите 0 для отключения отката. Обычно соответствует длине зоны нагрева." -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "Скорость, на которой происходит печать внешних стенок. Печать внешней стенки на пониженной скорости улучшает качество поверхности модели. Однако, при большой разнице между скоростями печати внутренних и внешних стенок возникает эффект, негативно влияющий на качество." +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Скорость отката при смене экструдера" + +msgctxt "switch_extruder_retraction_speeds description" +msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." +msgstr "Скорость с которой материал будет извлечён и возвращён обратно при откате. Высокая скорость отката работает лучше, но очень большая скорость портит материал." -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "Скорость, на которой печатается черновая башня. Замедленная печать черновой башни может сделать её стабильнее при недостаточном прилипании различных материалов." +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Скорость отката при смене экструдера" -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "Скорость, с которой вращаются вентиляторы." +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "Скорость, с которой материал будет извлечён при откате для смены экструдера." -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "Скорость, на которой печатается подложка." +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Скорость наполнения при смене экструдера" -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "Скорость, на которой происходит печать верха и низа поддержек. Печать поддержек на пониженных скоростях может улучшить качество печати нависающих краёв модели." +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "Скорость, с которой материал будет возвращён обратно при смене экструдера." -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "Скорость, на которой происходит печать верха поддержек. Печать поддержек на пониженных скоростях может улучшить качество печати нависающих краёв модели." +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Дополнительно заполняемый объем при смене экструдера" -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "Скорость, на которой происходит печать юбки и каймы. Обычно, их печать происходит на скорости печати первого слоя, но иногда вам может потребоваться печатать юбку или кайму на другой скорости." +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "Дополнительный объем материала для заполнения после смены экструдера." -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "Скорость, на которой происходит печать структуры поддержек. Печать поддержек на повышенной скорости может значительно уменьшить время печати. Качество поверхности структуры поддержек не имеет значения, так как эта структура будет удалена после печати." +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Ремонт объектов" -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "Скорость, на которой печатаются верхние слои подложки. Верх подложки должен печататься немного медленнее, чтобы сопло могло медленно разглаживать линии поверхности." +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Сделайте объекты более подходящими для 3D-печати." -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "Скорость, с которой печатаются внутренние стены верхней поверхности." +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Объединение перекрывающихся объёмов" -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "Скорость печати самых внешних стен верхней поверхности." +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "Игнорирует внутреннюю геометрию, являющуюся результатом перекрытия объёмов в модели, и печатает эти объёмы как один. Это может приводить к непреднамеренному исчезновению внутренних полостей." -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "Скорость вертикального движения по оси Z. Обычно она ниже, чем скорость печати, поскольку рабочий стол или портал машины тяжелее сдвинуть." +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Удаляет все отверстия" -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "Скорость, на которой происходит печать стенок." +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "Удаляет отверстия в каждом слое, оставляя только внешнюю форму. Вся невидимая внутренняя геометрия будет проигнорирована. Однако, также будут проигнорированы отверстия в слоях, которые могут быть видны сверху или снизу." -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "Скорость, на которой голова проходит над верхней оболочкой." +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Обширное сшивание" -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "Скорость, при которой убираемый материал отломится чисто." +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "Обширное сшивание пытается сшить открытые отверстия в объекте, закрывая их полигонами. Эта опция может добавить дополнительное время во время обработки." -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "Скорость, на которой печатаются слои верхней оболочки." +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Сохранить отсоединённые поверхности" -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "Скорость, на которой печатаются слои крышки/дна." +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "Обычно Cura пытается закрыть небольшие отверстия в объекте и убрать части слоя с большими отверстиями. Включение этого параметра сохраняет те части, которые не могут быть сшиты. Этот параметр должен применяться в качестве крайней меры, когда уже ничего не помогает получить надлежащий G-код." -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "Скорость, с которой выполняется перемещение." +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Перекрытие касающихся объектов" -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "Скорость, с которой производятся движения во время наката, относительно скорости печати. Рекомендуется использовать значение чуть меньше 100%, так как во время наката давление в боудене снижается." +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "Если объекты немного касаются друг друга, то сделаем их перекрывающимися. Это позволит им соединиться крепче." -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "Скорость печати первого слоя. Пониженное значение улучшает прилипание материала к печатной пластине. Не влияет на сами адгезионные структуры печатной пластины, такие как край и основание." +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Удалить пересечения объектов" -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "Скорость печати первого слоя. Пониженное значение помогает улучшить прилипание материала к столу." +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "Удаляет области, где несколько объектов перекрываются друг с другом. Можно использовать, для объектов, состоящих из двух материалов и пересекающихся друг с другом." -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "Скорость перемещений на первом слое. Малые значения помогают предотвращать отлипание напечатанных частей от стола. Значение этого параметра может быть вычислено автоматически из отношения между скоростями перемещения и печати." +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "Чередование объектов" -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "Температура, при которой материал отломится чисто." +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "Чередует какой из объектов, пересекающихся в объёме, будет участвовать в печати каждого слоя таким образом, что пересекающиеся объекты становятся вплетёнными друг в друга. Выключение этого параметра приведёт к тому, что один из объектов займёт весь объём пересечения, в то время как данный объём будет исключён из других объектов." -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "Температура среды печати. Если это значение равно 0, температура для объема печати не будет регулироваться." +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Удалить первые пустые слои" -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "Температура сопла в момент, когда для печати используется другое сопло." +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "Удаление пустых слоёв под первым печатаемым слоем, если они имеются. Отключение этой функции может привести к созданию первых пустых слоев, если для параметра «Допуск слайсинга» установлено значение «Включение» или «Середина»." -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "Температура, до которой можно начать охлаждать сопло, перед окончанием печати." +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Максимальное разрешение" -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer." -msgstr "Температура, используемая для печати первого слоя." +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "Минимальный размер сегмента линии после слайсинга. Увеличение значения этого параметра понизит разрешение модели. Это может позволить принтеру поддерживать скорость обработки кода G и увеличит скорость слайсинга за счет удаления деталей модели, которые он в любом случае не сможет обработать." -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "Температура, используемая при печати." +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Максимальное разрешение перемещения" -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "Температура, задаваемая для нагреваемой печатной пластины на первом слое. Если значение равно 0, печатная пластина не нагревается при печати первого слоя." +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "Минимальный размер сегмента линии перемещения после разделения на слои. При увеличении этого значения углы при перемещении будут менее сглаженными. Это может помочь принтеру поддерживать скорость обработки G-кода, однако при этом может снизиться точность избегания моделей." -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "Температура, задаваемая для нагреваемой печатной пластины. Если значение равно 0, печатная пластина не нагревается." +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Максимальное отклонение" -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "Температура, используемая для выдавливания материала, должна быть примерно равна максимальной температуре при печати." +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "Максимальное допустимое отклонение при снижении разрешения для параметра максимального разрешения. Увеличение этого значения понизит точность печати и уменьшит значение G-кода. Максимальное отклонение является пределом для максимального разрешения, поэтому, если они конфликтуют, истинным считается максимальное отклонение." -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "Толщина дна при печати. Это значение, разделённое на высоту слоя, определяет количество слоёв в дне." +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Максимальное отклонение площади экструзии" -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "Толщина дополнительного объема, который поддерживает края оболочки." +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "Максимальное допустимое отклонение площади экструдирования при удалении промежуточных точек от прямой линии. Промежуточная точка может служить точкой изменения ширины длинной прямой линии. Следовательно, если ее удалить, линия будет иметь одинаковую ширину и вследствие этого площадь экструдирования немного сократится (или увеличится). Если увеличить это значение, можно будет заметить небольшой эффект недостаточного (или чрезмерного) экструдирования между прямыми параллельными стенками, так как будет разрешено удалить больше промежуточных точек изменения ширины. При увеличении этого значения точность печати понизится, а значение g-кода уменьшится." -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "Толщина связующего слоя поддержек, который касается модели снизу или сверху." +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "Включить плавное движение" -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "Толщина низа поддержки. Управляет количеством плотных слоёв, которые печатаются поверх модели для последующего построения поддержек." +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "При включении траектории инструмента корректируются для принтеров с планировщиками плавного движения. Небольшие движения, отклоняющиеся от общего направления траектории инструмента, сглаживаются для улучшения плавности движений." -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "Толщина крыши поддержек. Управляет величиной плотности верхних слоёв поддержек, на которых располагается вся модель." +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "Расстояние смещения движения жидкости" -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "Толщина крышки при печати. Это значение, разделённое на высоту слоя, определяет количество слоёв в крышке." +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Точки расстояния смещаются для сглаживания пути" -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "Толщина слоя дна/крышки при печати. Это значение, разделённое на высоту слоя, определяет количество слоёв в дне/крышке." +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "Движение жидкости на небольшом расстоянии" -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "Толщина внешних стенок в горизонтальном направлении. Это значение, разделённое на ширину линии стенки, определяет количество стенок." +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Точки расстояния смещаются для сглаживания пути" -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "Толщина слоя для материала заполнения. Данное значение должно быть всегда кратно толщине слоя и всегда округляется." +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "Угол движения жидкости" -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "Толщина слоя для материала заполнения поддержек. Это значение должно быть всегда кратно высоте слоя, в противном случае оно будет округлено." +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "Если сегмент траектории отклоняется более, чем на этот угол от общего движения, он сглаживается." -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "Генерируемый тип G-кода." +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Специальные режимы" -msgctxt "material_type description" -msgid "The type of material used." -msgstr "" +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Нетрадиционные способы печати моделей." + +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Последовательная печать" -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "Объём, который бы сочился. Это значение должно обычно быть близко к возведенному в куб диаметру сопла." +msgctxt "print_sequence description" +msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." +msgstr "Печатать все модели послойно или ждать завершения одной модели, прежде чем переходить к следующей. Режим «один за раз» может использоваться, если а) активен только один экструдер и б) все модели разделены таким образом, что печатающая головка может двигаться между ними и все модели ниже, чем расстояние между соплом и осями X/Y." -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "Ширина (по оси X) области печати." +msgctxt "print_sequence option all_at_once" +msgid "All at Once" +msgstr "Все за раз" -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "Ширина каймы для печати под поддержкой. При увеличении каймы улучшается адгезия к рабочему столу и увеличивается расход материала." +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "По отдельности" -msgctxt "interlocking_beam_width description" -msgid "The width of the interlocking structure beams." -msgstr "Ширина балок взаимосвязанной конструкции." +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Установить последовательность печати вручную" -msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "Ширина бортика/основания башни подготовки. Большее основание улучшает адгезию к платформе для печати, но также уменьшает эффективную площадь печати." +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "Позволяет упорядочить список объектов, чтобы вручную установить последовательность печати. Первым будет напечатан первый объект из списка." -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "Ширина черновой башни." +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Заполнение объекта" -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "Величина амплитуды дрожания. Рекомендуется придерживаться толщины внешней стенки, так как внутренние стенки не изменяются." +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "Использовать указанный объект для изменения заполнения других объектов, с которыми он перекрывается. Заменяет области заполнения других объектов областями для этого объекта. Предлагается только для печати одной стенки без верхних и нижних оболочек." -msgctxt "retraction_extrusion_window description" -msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." -msgstr "Окно, в котором может быть выполнено максимальное количество откатов. Это значение приблизительно должно совпадать с расстоянием отката таким образом, чтобы количество выполненных откатов распределялось на величину выдавленного материала." +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "Порядок обработки объекта" -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "X координата позиции черновой башни." +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "Определяет приоритет данного объекта при вычислении нескольких перекрывающихся заполняющих объектов. К областям с несколькими перекрывающимися заполняющими объектами будут применяться настройки объекта более высокого порядка. Заполняющий объект более высокого порядка будет модифицировать заполнение объектов более низких порядков и обычных объектов." -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "Y координата позиции черновой башни." +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Ограничивающий объект" -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "На сцене присутствуют объекты поддержки. Эта настройка контролируется приложением Cura." +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "Ограничивает объём объекта внутри других объектов. Вы можете использовать это для печати определённых областей одного объекта, применяя различные параметры печати и даже другой экструдер." -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "Эта настройка управляет расстоянием наката экструдера непосредственно перед началом стенки мостика. Накат перед началом мостика может уменьшить давление в сопле и создать более ровный мостик." +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Форма" -msgctxt "raft_base_smoothing description" -msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "Печатать модель в виде формы, которая может использоваться для отливки оригинальной модели." -msgctxt "raft_interface_smoothing description" -msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Минимальная ширина формы" -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Этот параметр регулирует величину скругления внутренних углов контура подложки. Внутренние углы скругляются до полукруга с радиусом, равным установленному здесь значению. Этот параметр также приводит к удалению отверстий в контуре подложки, которые меньше такого круга." +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "Минимальное расстояние между внешними сторонами формы и модели." -msgctxt "raft_surface_smoothing description" -msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Высота крыши формы" -msgctxt "retraction_count_max description" -msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." -msgstr "Данный параметр ограничивает число откатов, которые происходят внутри окна минимальной дистанции экструзии. Дальнейшие откаты внутри этого окна будут проигнорированы. Это исключает выполнение множества повторяющихся откатов над одним и тем же участком нити, что позволяет избежать проблем с истиранием нити." +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "Высота над горизонтальными частями вашей модели, по которой создаётся форма." -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "Создаёт стенку вокруг модели, которая удерживает (горячий) воздух и препятствует обдуву модели внешним воздушным потоком. Очень пригодится для материалов, которые легко деформируются." +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Угол формы" -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "Диаметр кончика" +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "Угол нависания внешних стенок создаваемой формы. 0° приведёт к вертикальным стенкам формы, а 90° - заставит следовать контурам модели." -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "Для компенсации усадки материала при остывании модель будет масштабирована с этим коэффициентом в направлении XY (горизонтально)." +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Поддерживающий объект" -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "Для компенсации усадки материала при остывании модель будет масштабирована с этим коэффициентом в направлении Z (вертикально)." +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "Используйте этот объект для указания области поддержек. Может использоваться при генерации структуры поддержек." -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "Для компенсации усадки материала при остывании модель будет масштабирована с этим коэффициентом." +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Блокиратор поддержек" -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Слои крышки" +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "Используйте этот объект для указания частей модели, которые не должны рассматриваться как нависающие. Может использоваться для удаления нежелаемых структур поддержки." -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Дистанция расширения оболочки сверху" +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Поверхностный режим" -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Ширина удаляемой оболочки сверху" +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "Рассматривать модель только в виде поверхности или как объёмы со свободными поверхностями. При нормальном режиме печатаются только закрытые объёмы. В режиме \"Поверхность\" печатается одиночная стенка по границе объекта, без заполнения, без верхних и нижних оболочек. В режиме \"Оба варианта\" печатаются закрытые объёмы как нормальные, а любые оставшиеся полигоны как поверхности." -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Ускорение внутренней поверхности верхней стены" +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Нормаль" -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Рывок внешних стен верхней поверхности" +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Поверхность" -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Скорость внутренней поверхности верхней стены" +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Оба варианта" -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Поток внутренней стены верхней поверхности" +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Спирально печатать внешний контур" -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Ускорение внешней поверхности верхней стены" +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "Спирально сглаживает движение по оси Z. Во время печати происходит постоянное увеличение по оси Z. Этот параметр превращает модель в одностенный объект с крепким дном. Параметр можно использовать только когда каждый слой состоит из одной части модели." -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Поток на самой внешней линии верхней поверхности" +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Сглаживать спиральные контуры" -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Рывок внутренних стен верхней поверхности" +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "Сглаживает спиральные контуры для уменьшения видимости шва по оси Z (такой шов должен быть едва виден при печати, но виден при послойном просмотре). Следует отметить, что сглаживание ведет к размыванию мелких деталей поверхности." -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Скорость самых внешних стен верхней поверхности" +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Относительная экструзия" -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Ускорение верхней оболочки" +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "Использование относительной, а не абсолютной экструзии. Шаги относительной экструзии упрощают последующую обработку G-кода. Однако она не поддерживается всеми принтерами и может приводить к очень незначительным отклонениям в количестве наносимого материала в сравнении с шагами абсолютной экструзии. Независимо от этой настройки, перед выводом любого скрипта G-кода всегда будет установлен абсолютный режим экструзии." -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Экструдер для печати крышки" +msgctxt "experimental label" +msgid "Experimental" +msgstr "Экспериментальное" -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Поток для верхней оболочки" +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Функции, еще не раскрытые до конца." -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Рывок верхней оболочки" +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Допуск слайсинга" -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Слои верхней оболочки" +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "Вертикальный допуск в нарезанных слоях. В общем случае контуры слоя создаются путем снятия поперечных сечений по середине толщины каждого слоя (Середина). Кроме того, каждый слой может иметь области, попадающие в объем по всей толщине слоя (Исключение), или области, попадающие в любое место слоя (Включение). Способ «Включение» сохраняет больше деталей, способ «Исключение» обеспечивает наилучшую подгонку, а способ «Середина» — наиболее близкое соответствие оригинальной поверхности." -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Направление линий верхней оболочки" +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Середина" -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Ширина линии крышки" +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Исключение" -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Шаблон верхней оболочки" +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Включение" -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Скорость верхней оболочки" +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Оптимизация перемещения заполнения" + +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "Если включено, порядок, в котором печатаются линии заполнения, оптимизируется для сокращения пройденного расстояния. Достигнутое сокращение времени перемещения в очень большой степени зависит от модели, разделяемой на слои, шаблона заполнения, плотности и т. п. Обратите внимание, что для некоторых моделей, имеющих множество небольших заполняемых областей, время разделения на слои может существенно возрасти." -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Толщина крышки" +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "График температуры потока" -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "Для верхней и (или) нижней поверхностей вашего объекта с углом больше указанного в данном параметре верхняя и нижняя оболочки не будут расширены. Это предотвращает расширение узких областей оболочек, которые создаются, если поверхность модели имеет почти вертикальный наклон. Угол 0° является горизонтальным и не вызывает расширения оболочки, угол 90° является вертикальным и вызывает расширение всей оболочки." +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "График, объединяющий поток (в мм3 в секунду) с температурой (в градусах Цельсия)." -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Дно / крышка" +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Минимальная длина окружности полигона" -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Дно / крышка" +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "Полигоны в разделенных слоях, длина окружности которых меньше указанной величины, будут отфильтрованы. Пониженные значения приводят к увеличению разрешения объекта за счет времени разделения. Это предназначено главным образом для принтеров SLA с высоким разрешением и миниатюрных 3D-моделей с множеством деталей." -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Ускорение крышки/дна" +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "Создать взаимосвязанную структуру" -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Экструдер дна/крышки" +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "Создать взаимосвязанную структуру балок в местах соприкосновения моделей. Это улучшит адгезию между моделями, особенно моделями из разных материалов." -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Поток для верхних/нижних линий" +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "Ширина взаимосвязанных балок" -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Рывок крышки/дна" +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "Ширина балок взаимосвязанной конструкции." -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Направление линии дна/крышки" +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "Ориентация взаимосвязанной структуры" -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Ширина линии дна/крышки" +msgctxt "interlocking_orientation description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "Высота балок взаимосвязанной структуры, измеряемая в количестве слоев. Чем меньше слоев, тем она будет прочнее, но более подвержена дефектам." -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Шаблон для крышки/дна" +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "Количество слоев взаимосвязанных балок" -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Скорость крышки/дна" +msgctxt "interlocking_beam_layer_count description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "Высота балок взаимосвязанной структуры, измеряемая в количестве слоев. Чем меньше слоев, тем она будет прочнее, но более подвержена дефектам." -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Толщина дна/крышки" +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "Глубина взаимосвязанной структуры" -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "От стола" +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "Расстояние от границы между моделями для создания взаимосвязанной структуры, измеряемое в ячейках. Слишком малое количество ячеек приведет к плохой адгезии." -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Диаметр башен" +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "Избегание границ взаимосвязанной структуры" -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Угол крыши башен" +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "Расстояние от внешней стороны модели, где взаимосвязанные структуры не будут создаваться, измеряемое в ячейках." -msgctxt "mesh_rotation_matrix description" -msgid "Transformation matrix to be applied to the model when loading it from file." -msgstr "Матрица преобразования, применяемая к модели при её загрузке из файла." +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Разбить поддержки на части" -msgctxt "travel label" -msgid "Travel" -msgstr "Перемещение" +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "Пропускать некоторые соединения в поддержках для облегчения их последующего удаления. Этот параметр влияет на зиг-заг шаблон заполнения." -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Ускорение перемещения" +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Размер части поддержек" -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Дистанция обхода" +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "Пропускать соединение между линиями поддержки каждые N миллиметров для облегчения последующего удаления поддержек." -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Рывок перемещения" +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Количество частей линий поддержки" -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Скорость перемещения" +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "Пропускать одну линию на каждые N соединительных линий, облегчая последующее удаление поддержек." -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "Рассматривать модель только в виде поверхности или как объёмы со свободными поверхностями. При нормальном режиме печатаются только закрытые объёмы. В режиме \"Поверхность\" печатается одиночная стенка по границе объекта, без заполнения, без верхних и нижних оболочек. В режиме \"Оба варианта\" печатаются закрытые объёмы как нормальные, а любые оставшиеся полигоны как поверхности." +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Разрешить печать кожуха" -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Дерево" +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "Создаёт стенку вокруг модели, которая удерживает (горячий) воздух и препятствует обдуву модели внешним воздушным потоком. Очень пригодится для материалов, которые легко деформируются." -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Шестигранник из треугольников" +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Дистанция X/Y до кожуха" -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Треугольник" +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "Дистанция до стенки кожуха от модели, по осям X/Y." -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Треугольники" +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Ограничение кожуха" -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Треугольники" +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "Устанавливает высоту кожуха. Можно печать кожух высотой с модель или указать определённую высоту." -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Треугольники" +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Полная" -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Треугольники" +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Ограниченная" -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "Диаметр ствола" +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Высота кожуха" -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "Ограничение по высоте для кожуха. Выше указанного значение кожух печататься не будет." -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Объединение перекрывающихся объёмов" +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Сделать нависания печатаемыми" -msgctxt "bridge_wall_min_length description" -msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." -msgstr "Стенки без поддержки, которые короче указанного значения, будут напечатаны с использованием стандартных настроек стенок. Более длинные стенки без поддержки будут напечатаны с использованием настроек стенки мостика." +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "Изменяет геометрию печатаемой модели так, чтобы снизить требования к объёму поддержек. Крутые навесы станут поменьше. Нависающие области опустятся и станут более вертикальными." -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Использовать адаптивные слои" +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Максимальный угол модели" -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Использовать башни" +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "Максимальный угол нависания, после которого они становятся печатаемыми. При значении в 0° все нависания заменяются частью модели, соединённой со столом, при 90° в модель не вносится никаких изменений." -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "Использовать отдельный коэффициент ускорения для перемещения. Если опция отключена, то при перемещении будет использоваться значение ускорения строки в пункте назначения." +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Максимальная площадь отверстия выступа" -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "Использовать отдельный коэффициент рывка для перемещения. Если опция отключена, то при перемещении будет использоваться значение рывка строки в пункте назначения." +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "Максимальная площадь отверстия в основании модели, при достижении которой оно удаляется функцией «Сделать нависания печатаемыми». Более мелкие отверстия сохраняются. Значение 0 мм² приведет к заполнению всех отверстий в основании модели." -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "Использование относительной, а не абсолютной экструзии. Шаги относительной экструзии упрощают последующую обработку G-кода. Однако она не поддерживается всеми принтерами и может приводить к очень незначительным отклонениям в количестве наносимого материала в сравнении с шагами абсолютной экструзии. Независимо от этой настройки, перед выводом любого скрипта G-кода всегда будет установлен абсолютный режим экструзии." +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Разрешить накат" -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "Использование специальных башен для поддержки крошечных нависающих областей. Такие башни имеют диаметр больший, чем поддерживаемый ими регион. Вблизи нависаний диаметр башен увеличивается, формируя крышу." +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "Накат отключает экструзию материала на завершающей части пути. Вытекающий материал используется для печати на завершающей части пути, уменьшая строчность." -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "Использовать указанный объект для изменения заполнения других объектов, с которыми он перекрывается. Заменяет области заполнения других объектов областями для этого объекта. Предлагается только для печати одной стенки без верхних и нижних оболочек." +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Объём наката" -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "Используйте этот объект для указания области поддержек. Может использоваться при генерации структуры поддержек." +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "Объём, который бы сочился. Это значение должно обычно быть близко к возведенному в куб диаметру сопла." + +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Минимальный объём перед накатом" -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "Используйте этот объект для указания частей модели, которые не должны рассматриваться как нависающие. Может использоваться для удаления нежелаемых структур поддержки." +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "Минимальный объём экструзии, который должен быть произведён перед выполнением наката. Для малых путей меньшее давление будет создаваться в боудене и таким образом, объём наката будет изменяться линейно. Это значение должно всегда быть больше \"Объёма наката\"." -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Пользовательский" +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Скорость наката" -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Вертикальный коэффициент масштабирования для компенсации усадки" +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "Скорость, с которой производятся движения во время наката, относительно скорости печати. Рекомендуется использовать значение чуть меньше 100%, так как во время наката давление в боудене снижается." -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "Вертикальный допуск в нарезанных слоях. В общем случае контуры слоя создаются путем снятия поперечных сечений по середине толщины каждого слоя (Середина). Кроме того, каждый слой может иметь области, попадающие в объем по всей толщине слоя (Исключение), или области, попадающие в любое место слоя (Включение). Способ «Включение» сохраняет больше деталей, способ «Исключение» обеспечивает наилучшую подгонку, а способ «Середина» — наиболее близкое соответствие оригинальной поверхности." +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Размер карманов креста 3D" -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Ожидать пока прогреется стол" +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "Размер карманов при печати шаблоном крест 3D по высоте, когда шаблон касается сам себя." -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Ожидать пока прогреется сопло" +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Изображение плотности перекрестного заполнения" -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Ускорение стенок" +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "Путь к файлу изображения, из которого значения яркости определяют минимальную плотность в соответствующем месте заполнения при печати." -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Счетчик распределений по стенкам" +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Изображение плотности перекрестного заполнения для поддержки" -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Экструдер стенок" +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "Путь к файлу изображения, из которого значения яркости определяют минимальную плотность в соответствующем месте поддержки." -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Поток для стенки" +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Конические поддержки" -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Рывок стены" +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "Нижняя часть поддержек становится меньше, чем верхняя." -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Количество линий стенки" +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Угол конических поддержек" -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Ширина линии стенки" +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "Угол наклона конических поддержек. При 0 градусах поддержки будут вертикальными, при 90 градусах будут горизонтальными. Меньшее значение углов укрепляет поддержки, но требует больше материала для них. Отрицательные углы приводят утолщению основания поддержек по сравнению с их верхней частью." -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Порядок стенок" +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Минимальная ширина конических поддержек" -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Скорость печати стенок" +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "Минимальная ширина, до которой может быть уменьшен низ конуса. Малая ширина может сделать такую структуру поддержек нестабильной." -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Толщина стенки" +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Нечёткая оболочка" -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Длина перехода к стенке" +msgctxt "magic_fuzzy_skin_enabled description" +msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." +msgstr "Вносит небольшое дрожание при печати внешней стенки, что придаёт поверхности шершавый вид." -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Расстояние фильтра при переходе между стенками" +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Только шершавая оболочка снаружи" -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Поле фильтра при переходе между стенками" +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "Дрожание только контуров деталей, но не отверстий." -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Пороговый угол перехода между стенками" +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Толщина шершавости оболочки" -msgctxt "shell label" -msgid "Walls" -msgstr "Стенки" +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "Величина амплитуды дрожания. Рекомендуется придерживаться толщины внешней стенки, так как внутренние стенки не изменяются." -msgctxt "wall_overhang_angle description" -msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." -msgstr "Стенки, выступающие под углом больше указанного, будут напечатаны с использованием настроек выступающей стенки. Если значение составляет 90, стенки не считаются выступающими. Выступающие элементы, для которых имеется поддержка, также не считаются выступающими." +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Плотность шершавой оболочки" -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "При включении траектории инструмента корректируются для принтеров с планировщиками плавного движения. Небольшие движения, отклоняющиеся от общего направления траектории инструмента, сглаживаются для улучшения плавности движений." +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "Средняя плотность точек, добавленных на каждом полигоне в слое. Следует отметить, что оригинальные точки полигона отбрасываются, следовательно низкая плотность приводит к уменьшению разрешения." -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "Если включено, порядок, в котором печатаются линии заполнения, оптимизируется для сокращения пройденного расстояния. Достигнутое сокращение времени перемещения в очень большой степени зависит от модели, разделяемой на слои, шаблона заполнения, плотности и т. п. Обратите внимание, что для некоторых моделей, имеющих множество небольших заполняемых областей, время разделения на слои может существенно возрасти." +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Дистанция между точками шершавой оболочки" -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "Если включено, скорость охлаждающего вентилятора, используемого во время печати, изменяется для областей оболочки непосредственно над поддержкой." +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "Среднее расстояние между случайными точками, который вносятся в каждый сегмент линии. Следует отметить, что оригинальные точки полигона отбрасываются, таким образом, сильное сглаживание приводит к уменьшению разрешения. Это значение должно быть больше половины толщины шершавой оболочки." -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "Когда включено, координаты Z шва привязаны к центру каждой части. Когда отключено, координаты определяются от абсолютной позиции на столе." +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Макс. смещение экструзии для компенсации расхода" -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "При значении параметра выше нуля перемещения комбинга, превышающие заданное расстояние, будут выполняться с откатом. Когда значение параметра равно нулю, то максимума нет и перемещения комбинга выполняются без отката." +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "Максимальное расстояние (в мм) перемещения материала для компенсации изменения расхода." -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "Если значение больше нуля, то горизонтальное расширение отверстия постепенно применяется к маленьким отверстиям (маленькие отверстия расширяются больше). Если установлено нулевое значение, то горизонтальное расширение отверстия будет применено ко всем отверстиям. Отверстия, превышающие максимальный диаметр горизонтального расширения отверстия, не расширяются." +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Коэффициент компенсации расхода" -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "Если значение больше нуля, то горизонтальное расширение отверстия представляет собой величину смещения, применяемую ко всем отверстиям в каждом слое. Положительные значения увеличивают размер отверстий, отрицательные значения уменьшают размер отверстий. Если этот параметр включен, то его можно дополнительно настроить с помощью максимального диаметра горизонтального расширения отверстия." +msgctxt "flow_rate_extrusion_offset_factor description" +msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." +msgstr "Означает, насколько далеко следует переместить материал, чтобы компенсировать изменение расхода, в процентах от расстояния, на которое перемещается материал за одну секунду экструзии." -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "Во время печати областей оболочки мостика объем выдавленного материала умножается на указанное значение." +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Использовать адаптивные слои" -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "Во время печати стенок мостика объем выдавленного материала умножается на указанное значение." +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "В случае адаптивных слоев расчет высоты слоя осуществляется в зависимости от формы модели." -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Во время печати слоя второй оболочки мостика объем выдавленного материала умножается на указанное значение." +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "Максимальная вариация адаптивных слоев" -msgctxt "bridge_skin_material_flow_3 description" -msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Во время печати слоя третьей оболочки мостика объем выдавленного материала умножается на указанное значение." +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "Максимальная разрешенная высота по сравнению с высотой базового уровня." -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "Когда произойдёт конфликт между параметрами минимальной скорости печати и минимальным временем печати слоя, голова принтера будет отведена от печатаемой модели и будет выдержана необходимая пауза для достижения минимального времени печати слоя." +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "Размер шага вариации адаптивных слоев" -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "Если у модели имеются небольшие вертикальные зазоры, состоящие всего из нескольких слоев, вокруг этих слоев в узком пространстве, как правило, присутствует оболочка. Выбор данного параметра предотвратит создание оболочки в ситуациях, когда вертикальные зазоры очень маленькие. Это позволит сократить время печати и нарезки, но с технической точки зрения область заполнения останется открытой." +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "Разница между высотой следующего слоя и высотой предыдущего слоя." -msgctxt "wall_transition_angle description" -msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." -msgstr "Когда требуется создавать переходы между четным и нечетным количеством стенок. Клиновидная форма с углом, превышающим этот параметр, не будет иметь переходов, и стенки не будут напечатаны в центре для заполнения оставшегося пространства. Уменьшение значения этого параметра позволяет сократить количество и длину этих центральных стенок, но при этом могут остаться зазоры или произойти чрезмерное экструдирование." +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "Размер топографии адаптивных слоев" -msgctxt "wall_transition_length description" -msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." -msgstr "При переходе между разным количеством стенок по мере того, как деталь становится тоньше, выделяется определенное пространство для разделения или соединения линий стенок." +msgctxt "adaptive_layer_height_threshold description" +msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." +msgstr "Целевое расстояние по горизонтали между двумя соседними слоями. Уменьшение этого значения приведет к сокращению толщины слоев, и края слоев станут ближе друг к другу." -msgctxt "wipe_hop_enable description" -msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "При очистке рабочий стол опускается для создания зазора между соплом и печатаемой деталью. Это предотвращает соударение сопла и печатаемой детали во время движений, снижая вероятность смещения печатаемой детали на рабочем столе." +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Угол нависающей стенки" -msgctxt "retraction_hop_enabled description" -msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "При выполнении отката между соплом и печатаемой деталью создаётся зазор. Это предотвращает возможность касания сопла частей детали при его перемещении, снижая вероятность смещения детали на столе." +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." +msgstr "Стенки, выступающие под углом больше указанного, будут напечатаны с использованием настроек выступающей стенки. Если значение составляет 90, стенки не считаются выступающими. Выступающие элементы, для которых имеется поддержка, также не считаются выступающими." -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "Будет ли зазор по осям X/Y перекрывать зазор по оси Z и наоборот. Если X/Y перекрывает Z, то X/Y может выдавить поддержку из модели, влияя на реальный зазор по оси Z до нависания. Мы можем исправить это, не применяя X/Y зазор около нависаний." +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Скорость печати нависающей стенки" -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "Следует ли считать центром координат по осям X/Y в центре области печати." +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "Нависающие стенки будут напечатаны с данным процентным значением нормальной скорости печати." -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "Ограничитель хода на оси X в прямом направлении (верхняя координата X) или в обратном направлении (нижняя координата X)." +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Активация настроек мостиков" + +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "Обнаружение мостиков и изменение скорости печати, настроек потока и вентилятора во время печати мостиков." -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "Ограничитель хода на оси Y в прямом направлении (верхняя координата Y) или в обратном направлении (нижняя координата Y)." +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Минимальная длина стенки мостика" -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "Ограничитель хода на оси Z в прямом направлении (верхняя координата Z) или в обратном направлении (нижняя координата Z)." +msgctxt "bridge_wall_min_length description" +msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." +msgstr "Стенки без поддержки, которые короче указанного значения, будут напечатаны с использованием стандартных настроек стенок. Более длинные стенки без поддержки будут напечатаны с использованием настроек стенки мостика." -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "Указывает, используют ли для все экструдеры общий нагреватель или у каждого имеется отдельный." +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Пороговое значение поддержки для оболочки мостика" -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "Указывает, используют ли все экструдеры общее сопло или у каждого имеется отдельное. Если установлено значение true, ожидается, что сценарий gcode запуска принтера правильно переводит все экструдеры в известное и взаимно совместимое начальное состояние отката (либо ноль, либо один материал не втянут); в этом случае начальное состояние отката описывается для каждого экструдера параметром machine_extruders_shared_nozzle_initial_retraction." +msgctxt "bridge_skin_support_threshold description" +msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." +msgstr "Если поддержка области оболочки составляет меньше указанного процентного значения от ее площади, печать должна быть выполнена с использованием настроек мостика. В противном случае печать осуществляется с использованием стандартных настроек оболочки." -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "Имеет ли принтер подогреваемый стол." +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Максимальная плотность разреженного заполнения мостика" -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "Имеет ли принтер возможность стабилизации температуры для объема печати." +msgctxt "bridge_sparse_infill_max_density description" +msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." +msgstr "Максимальная плотность заполнения, считающегося разреженным. Оболочка поверх разреженного заполнения считается неподдерживаемой и, соответственно, может обрабатываться как оболочка мостика." -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "Следует ли размещать объект в центре стола (0, 0), вместо использования координатной системы, в которой был сохранён объект." +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Накат стенки мостика" -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "Следует ли управлять температурой из Cura. Выключение этого параметра предполагает управление температурой сопла вне Cura." +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "Эта настройка управляет расстоянием наката экструдера непосредственно перед началом стенки мостика. Накат перед началом мостика может уменьшить давление в сопле и создать более ровный мостик." -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "Следует ли добавлять команды управления температурой стола в начало G-кода. Если в коде уже используются команды для управления температурой стола, то Cura автоматически проигнорирует этот параметр." +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Скорость печати стенки мостика" -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "Следует ли добавлять команды управления температурой сопла в начало G-кода. Если в коде уже используются команды для управления температурой сопла, то Cura автоматически проигнорирует этот параметр." +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "Скорость, с которой происходит печать стенок мостика." -msgctxt "clean_between_layers description" -msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." -msgstr "Следует ли добавлять G-код очистки сопла между слоями (максимум один на слой). Включение этого параметра может повлиять на ход отката при смене слоя. Используйте параметры отката с очисткой для управления откатом на слоях, для которых используется скрипт очистки." +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Поток для стенки мостика" -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "Следует ли добавлять команду ожидания прогрева стола до нужной температуры перед началом печати." +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "Во время печати стенок мостика объем выдавленного материала умножается на указанное значение." -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "Следует ли выдавливать материал перед началом печати. Активация этого параметра обеспечивает наполнение материалом сопла экструдера перед началом печати. Печать каймы или юбки может выполнять такое же действие, тогда выключения этого параметра экономит некоторое время." +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Скорость печати оболочки мостика" -msgctxt "print_sequence description" -msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -msgstr "Печатать все модели послойно или ждать завершения одной модели, прежде чем переходить к следующей. Режим «один за раз» может использоваться, если а) активен только один экструдер и б) все модели разделены таким образом, что печатающая головка может двигаться между ними и все модели ниже, чем расстояние между соплом и осями X/Y." +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "Скорость, с которой печатаются области оболочки мостика." -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "Следует ли показывать различные варианты этого принтера, которые описаны в отдельных JSON файлах." +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Поток для оболочки мостика" -msgctxt "machine_firmware_retract description" -msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." -msgstr "Определяет, использовать ли команды отката встроенного программного обеспечения (G10/G11) вместо применения свойства E в командах G1 для отката материала." +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "Во время печати областей оболочки мостика объем выдавленного материала умножается на указанное значение." -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "Следует ли добавлять команду ожидания прогрева сопла перед началом печати." +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Плотность оболочки мостика" -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Ширина одной линии заполнения." +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Плотность слоя оболочки мостика. Значения менее 100 увеличат зазоры между линиями оболочки." -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "Ширина одной линии поддержки крышки или дна." +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Скорость вентилятора для мостика" -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "Ширина одной линии крышки." +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "Скорость вентилятора в процентах, которую необходимо использовать при печати стенок и оболочки мостика." -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "Ширина одной линии. Обычно, ширина каждой линии должна соответствовать диаметру сопла. Однако небольшое уменьшение этого значение приводит к лучшей печати." +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "В мостике несколько слоев" -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "Ширина отдельной линии черновой башни." +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "Если настройка активна, второй и третий слои над воздушным зазором печатаются с использованием указанных далее настроек. В противном случае эти слои печатаются с использованием стандартных настроек." -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "Ширина одной линии юбки или каймы." +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Скорость печати второй оболочки мостика" -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "Ширина одной линии дна поддержки." +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "Скорость, с которой печатается слой второй оболочки мостика." -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "Ширина одной линии крыши поддержки." +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Поток для второй оболочки мостика" -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Ширина одной линии поддержки." +msgctxt "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Во время печати слоя второй оболочки мостика объем выдавленного материала умножается на указанное значение." -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Ширина одной линии дна/крышки." +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Плотность второй оболочки мостика" -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "Ширина одной линии стенки для всех линий стенки, кроме самой внешней." +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Плотность слоя второй оболочки мостика. Значения менее 100 увеличат зазоры между линиями оболочки." -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Ширина одной линии стенки." +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Скорость вентилятора для второй оболочки мостика" -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "Ширина линий нижнего слоя подложки. Она должна быть достаточной, чтобы улучшить прилипание к столу." +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "Скорость вентилятора в процентах, с которой печатается слой второй оболочки мостика." -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "Толщина линий средних слоёв подложки. Приводит к повышенному выдавливанию материала на втором слое, для лучшего прилипания к столу." +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Скорость печати третьей оболочки мостика" -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "Ширина линий верхних слоёв подложки. Это могут быть тонкие линии, которые делают подложку гладкой." +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "Скорость, с которой печатается слой третьей оболочки мостика." -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "Ширина линии внешней стенки. Уменьшая данное значение, можно печатать более тонкие детали." +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Поток для третьей оболочки мостика" -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "Ширина стенки, которая заменит тонкие элементы (согласно минимальному размеру элемента) модели. Если минимальная ширина линии стенки меньше толщины элемента, толщина стенки будет приведена к толщине самого элемента." +msgctxt "bridge_skin_material_flow_3 description" +msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Во время печати слоя третьей оболочки мостика объем выдавленного материала умножается на указанное значение." -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "Позиция X очистной щетки" +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Плотность третьей оболочки мостика" -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Скорость поднятия при очистке" +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Плотность слоя третьей оболочки мостика. Значения менее 100 увеличат зазоры между линиями оболочки." -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "Очистка неактивного сопла на черновой башне" +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Скорость вентилятора для третьей оболочки мостика" -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Расстояние перемещения при очистке" +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "Скорость вентилятора в процентах, с которой печатается слой третьей оболочки мостика." msgctxt "clean_between_layers label" msgid "Wipe Nozzle Between Layers" msgstr "Очистка сопла между слоями" -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Приостановка очистки" +msgctxt "clean_between_layers description" +msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." +msgstr "Следует ли добавлять G-код очистки сопла между слоями (максимум один на слой). Включение этого параметра может повлиять на ход отката при смене слоя. Используйте параметры отката с очисткой для управления откатом на слоях, для которых используется скрипт очистки." -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Количество повторов очистки" +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Объем материала между очистками" -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Расстояние отката с очисткой" +msgctxt "max_extrusion_before_wipe description" +msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." +msgstr "Максимальный объем материала, который можно выдавить перед очередной очисткой сопла. Если это значение меньше объема материала, требуемого для слоя, данная настройка в этом слое не действует (т. е. максимум одна очистка на слой)." msgctxt "wipe_retraction_enable label" msgid "Wipe Retraction Enable" msgstr "Включение отката с очисткой" +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Откат нити при движении сопла вне зоны печати." + +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Расстояние отката с очисткой" + +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "Величина отката нити, предотвращающего просачивание во время последовательности очистки." + msgctxt "wipe_retraction_extra_prime_amount label" msgid "Wipe Retraction Extra Prime Amount" msgstr "Дополнительно заполняемый объем при откате с очисткой" -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Скорость заправки при откате с очисткой" +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "Небольшое количество материала может просочиться при перемещении во время очистки, что можно скомпенсировать с помощью данного параметра." + +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Скорость отката с очисткой" + +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "Скорость, с которой нить будет втягиваться и заправляться при откате с очисткой." msgctxt "wipe_retraction_retract_speed label" msgid "Wipe Retraction Retract Speed" msgstr "Скорость отката при откате с очисткой" -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Скорость отката с очисткой" +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "Скорость, с которой нить будет втягиваться при откате с очисткой." + +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Скорость заправки при откате с очисткой" + +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "Скорость, с которой нить заправляется при откате с очисткой." + +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Приостановка очистки" + +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Приостановка после отмены отката." msgctxt "wipe_hop_enable label" msgid "Wipe Z Hop" msgstr "Поднятие оси Z при очистке" +msgctxt "wipe_hop_enable description" +msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "При очистке рабочий стол опускается для создания зазора между соплом и печатаемой деталью. Это предотвращает соударение сопла и печатаемой детали во время движений, снижая вероятность смещения печатаемой детали на рабочем столе." + msgctxt "wipe_hop_amount label" msgid "Wipe Z Hop Height" msgstr "Высота поднятия оси Z при очистке" -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "В области заполнения" +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "Расстояние, на которое приподнимается ось Z." -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "Выполняйте запись активного инструмента после отправки временных команд неактивному инструменту. Требуется для печати с двойным экструдером под управлением Smoothie или другой прошивки с модальными командами инструментов." +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Скорость поднятия при очистке" -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "Ограничитель хода на оси X в прямом направлении" +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "Скорость перемещения оси Z во время поднятия." + +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "Позиция X очистной щетки" msgctxt "wipe_brush_pos_x description" msgid "X location where wipe script will start." msgstr "Расположение X, в котором запустится скрипт очистки." -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y перекрывает Z" +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Количество повторов очистки" -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Ограничитель хода на оси Y в прямом направлении" +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "Количество перемещений сопла поперек щетки." -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Ограничитель хода на оси Z в прямом направлении" +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Расстояние перемещения при очистке" -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Поднятие оси Z после смены экструдера" +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "Расстояние перемещения головки назад и вперед поперек щетки." -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Высота поднятия оси Z после смены экструдера" +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Максимальный размер малого отверстия" -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Высота поднятия оси Z" +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "Отверстия и контуры деталей с диаметром меньше этого значения будут напечатаны с использованием функции «Скорость для малых элементов»." -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Поднятие оси Z только над напечатанными частями" +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Максимальная длина малого элемента" -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Скорость поднятия оси Z" +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "Контуры элементов с длиной меньше этого значения будут напечатаны с использованием функции «Скорость для малых элементов»." -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Поднятие оси Z при откате" +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Скорость для малых элементов" -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Выравнивание шва по оси Z" +msgctxt "small_feature_speed_factor description" +msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "Малые элементы будут напечатаны со скоростью, составляющей этот процент от их нормальной скорости печати. Более медленная печать может улучшить адгезию и точность." -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Позиция Z шва" +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Скорость первого слоя для небольших объектов" -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Привязка Z шва" +msgctxt "small_feature_speed_factor_0 description" +msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "Малые элементы на первом слое будут напечатаны со скоростью, составляющей этот процент от их нормальной скорости печати. Более медленная печать может улучшить адгезию и точность." -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "X координата для Z шва" +msgctxt "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "Чередование направления стенок" -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Y координата для Z шва" +msgctxt "material_alternate_walls description" +msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." +msgstr "Чередуйте направления стенок каждые вторые слой и вставку. Это полезно для материалов, которые могут накапливать напряжение, например для металлической печати." -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z перекрывает X/Y" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Группировать внешние стены" -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Внешние стены разных островов в одном слое печатаются последовательно. При включении количество изменений потока ограничено, поскольку стены печатаются один тип за раз, при отключении количество перемещений между островами уменьшается, потому что стены на одних и тех же островах группируются." -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "Печать отчетов о процессе" -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "Отчеты о событиях, выходящих за установленные пороговые значения" -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "Включить отчеты о процессе печати" -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "Включите отчеты о процессе печати для установки пороговых значений для возможного обнаружения дефектов." -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "Предупреждение о потоке" -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "Ограничение предупреждения о потоке для обнаружения." -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "Ограничение потока" -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "Ограничение аномалий потока для обнаружения." -msgctxt "travel description" -msgid "travel" -msgstr "перемещение" +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "Предупреждение о Температуре печати " + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "Ограничение на предупреждение о температуре печати для обнаружения." -#~ msgctxt "brim_inside_margin description" -#~ msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -#~ msgstr "Деталь, полностью заключенная внутри другой детали, может создать внешнюю кайму, которая касается внутренней части другой детали. Эта опция убирает всю кайму в пределах этого расстояния от внутренних отверстий." +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "Ограничение температуры печати" -#~ msgctxt "user_defined_print_order_enabled description" -#~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." -#~ msgstr "Позволяет упорядочить список объектов для ручной настройки последовательности печати. Первый объект из списка будет напечатан первым." +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "Ограничение на обнаружение аномалий температуры печати." -#~ msgctxt "brim_inside_margin label" -#~ msgid "Brim Inside Avoid Margin" -#~ msgstr "Кайма внутри зоны избегания" +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "Предупреждение о температуре объема сборки " -#~ msgctxt "brim_outside_only label" -#~ msgid "Brim Only on Outside" -#~ msgstr "Кайма только снаружи" +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "Ограничение предупреждения о температуре объема сборки для обнаружения." -#~ msgctxt "gradual_flow_discretisation_step_size description" -#~ msgid "Duration of each step in the gradual flow change" -#~ msgstr "Продолжительность каждого этапа постепенного изменения потока" +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "Предел температуры объема сборки" -#~ msgctxt "gradual_flow_enabled description" -#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -#~ msgstr "Включите постепенное изменение потока. Если эта функция включена, поток постепенно увеличивается/уменьшается до целевого значения. Это полезно для принтеров с трубкой Боудена, где поток не меняется сразу при запуске/остановке двигателя экструдера." +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "Ограничение на аномалию температуры объема сборки для обнаружения." -#~ msgctxt "reset_flow_duration description" -#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -#~ msgstr "Для любого перемещения, превышающего это значение, поток материала сбрасывается до целевого потока пути" +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Параметры командной строки" -#~ msgctxt "gradual_flow_discretisation_step_size label" -#~ msgid "Gradual flow discretisation step size" -#~ msgstr "Размер шага дискретизации постепенного потока" +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "Параметры, которые используются в случае, когда CuraEngine вызывается напрямую." -#~ msgctxt "gradual_flow_enabled label" -#~ msgid "Gradual flow enabled" -#~ msgstr "Постепенный поток включен" +msgctxt "center_object label" +msgid "Center Object" +msgstr "Центрирование объекта" -#~ msgctxt "max_flow_acceleration label" -#~ msgid "Gradual flow max acceleration" -#~ msgstr "Максимальное ускорение постепенного потока" +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "Следует ли размещать объект в центре стола (0, 0), вместо использования координатной системы, в которой был сохранён объект." -#~ msgctxt "layer_0_max_flow_acceleration label" -#~ msgid "Initial layer max flow acceleration" -#~ msgstr "Максимальное ускорение потока начального слоя" +msgctxt "mesh_position_x label" +msgid "Mesh Position X" +msgstr "X позиция объекта" -#~ msgctxt "layer_0_z_overlap description" -#~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -#~ msgstr "Приводит к наложению первого и второго слоёв модели по оси Z для компенсации потерь материала в воздушном зазоре. Все слои модели выше первого будут смещены чуть ниже на указанное значение." +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "Смещение, применяемое к объекту по оси X." -#~ msgctxt "max_flow_acceleration description" -#~ msgid "Maximum acceleration for gradual flow changes" -#~ msgstr "Максимальное ускорение для плавного изменения потока" +msgctxt "mesh_position_y label" +msgid "Mesh Position Y" +msgstr "Y позиция объекта" -#~ msgctxt "layer_0_max_flow_acceleration description" -#~ msgid "Minimum speed for gradual flow changes for the first layer" -#~ msgstr "Минимальная скорость для постепенного изменения потока для первого слоя" +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "Смещение, применяемое к объекту по оси Y." -#~ msgctxt "brim_outside_only description" -#~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -#~ msgstr "Печатать кайму только на внешней стороне модели. Это сокращает объём каймы, которую вам потребуется удалить в дальнейшем, и не снижает качество прилипания к столу." +msgctxt "mesh_position_z label" +msgid "Mesh Position Z" +msgstr "Z позиция объекта" -#~ msgctxt "reset_flow_duration label" -#~ msgid "Reset flow duration" -#~ msgstr "Сбросить продолжительность потока" +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "Смещение, применяемое к объекту по оси Z. Это позволяет выполнять операцию, ранее известную как проваливание объекта под поверхность стола." -#~ msgctxt "support_interface_skip_height label" -#~ msgid "Support Interface Resolution" -#~ msgstr "Разрешение связующего слоя поддержек" +msgctxt "mesh_rotation_matrix label" +msgid "Mesh Rotation Matrix" +msgstr "Матрица вращения объекта" -#~ msgctxt "support_interface_skip_height description" -#~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -#~ msgstr "Если выбрано в случае, когда модель находится под и над поддержкой, принимает шаги данной высоты. Малые значения замедляют просчёт, а большие - могут привести к генерации поддержек в некоторых местах, где лучше бы печатать интерфейс поддержек." +msgctxt "mesh_rotation_matrix description" +msgid "Transformation matrix to be applied to the model when loading it from file." +msgstr "Матрица преобразования, применяемая к модели при её загрузке из файла." diff --git a/resources/i18n/ru_RU/gradual_flow_settings.def.json.po b/resources/i18n/ru_RU/gradual_flow_settings.def.json.po index 363b0994aa1..5def481ad82 100644 --- a/resources/i18n/ru_RU/gradual_flow_settings.def.json.po +++ b/resources/i18n/ru_RU/gradual_flow_settings.def.json.po @@ -1,54 +1,53 @@ -# msgid "" msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: 2024-03-11 11:28+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: en\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru_RU\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" - msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" msgstr "Gradual flow max acceleration" -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" - msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" msgstr "Maximum acceleration for gradual flow changes" +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" msgstr "Minimum speed for gradual flow changes for the first layer" +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + msgctxt "reset_flow_duration label" msgid "Reset flow duration" msgstr "Reset flow duration" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" diff --git a/resources/i18n/tr_TR/cura.po b/resources/i18n/tr_TR/cura.po index 60e85385941..532daf35c3b 100644 --- a/resources/i18n/tr_TR/cura.po +++ b/resources/i18n/tr_TR/cura.po @@ -12,7 +12,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" msgstr "%(width).1f x %(depth).1f x %(height).1f mm" @@ -119,7 +118,7 @@ msgstr "&Projeyi Kaydet..." msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" msgid "&Save Universal Cura Project..." -msgstr "" +msgstr "&Universal Cura Project'i Kaydet..." msgctxt "@title:menu menubar:toplevel" msgid "&Settings" @@ -142,13 +141,9 @@ msgid "*You will need to restart the application for these changes to have effec msgstr "*Bu değişikliklerin etkili olması için uygulamayı yeniden başlatmanız gerekecektir." msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "" -"- Marketplace'den malzeme profilleri ve eklentiler ekleyin\n" -"- Malzeme profillerinizi ve eklentilerinizi yedekleyin ve senkronize edin\n" +msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgstr "- Marketplace'den malzeme profilleri ve eklentiler ekleyin" +"- Malzeme profillerinizi ve eklentilerinizi yedekleyin ve senkronize edin" "- UltiMaker topluluğunda fikirlerinizi paylaşın ve 48.000'den fazla kullanıcıdan yardım alın" msgctxt "@heading" @@ -175,14 +170,6 @@ msgctxt "@item:inlistbox" msgid "3MF File" msgstr "3MF Dosyası" -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF Okuyucu" - -msgctxt "name" -msgid "3MF Writer" -msgstr "3MF Yazıcı" - msgctxt "@error:zip" msgid "3MF Writer plug-in is corrupt." msgstr "3MF Writer eklentisi bozuk." @@ -203,56 +190,37 @@ msgctxt "@label %i will be replaced with a profile name" msgid "Only user changed settings will be saved in the custom profile.
                                      For materials that support it, the new custom profile will inherit properties from %1." msgstr "Özel profilde yalnızca kullanıcı tarafından değiştirilen ayarlar kaydedilir.
                                      Yeni özel profil, bunu destekleyen malzemeler için %1adresindeki özellikleri devralır." -#, python-brace-format msgctxt "@label OpenGL renderer" msgid "
                                    • OpenGL Renderer: {renderer}
                                    • " msgstr "
                                    • OpenGL Oluşturucusu: {renderer}
                                    • " -#, python-brace-format msgctxt "@label OpenGL vendor" msgid "
                                    • OpenGL Vendor: {vendor}
                                    • " msgstr "
                                    • OpenGL Satıcısı: {vendor}
                                    • " -#, python-brace-format msgctxt "@label OpenGL version" msgid "
                                    • OpenGL Version: {version}
                                    • " msgstr "
                                    • OpenGL Sürümü: {version}
                                    • " msgctxt "@label crash message" -msgid "" -"

                                      A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

                                      \n" -"

                                      Please use the \"Send report\" button to post a bug report automatically to our servers

                                      \n" -" " -msgstr "" -"

                                      Cura’da onarılamaz bir hata oluştu. Lütfen sorunu çözmek için bize Çökme Raporunu gönderin

                                      \n" -"

                                      Sunucularımıza otomatik olarak bir hata raporu yüklemek için lütfen "Rapor gönder" düğmesini kullanın

                                      \n" +msgid "

                                      A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

                                      \n

                                      Please use the \"Send report\" button to post a bug report automatically to our servers

                                      \n " +msgstr "

                                      Cura’da onarılamaz bir hata oluştu. Lütfen sorunu çözmek için bize Çökme Raporunu gönderin

                                      " +"

                                      Sunucularımıza otomatik olarak bir hata raporu yüklemek için lütfen "Rapor gönder" düğmesini kullanın

                                      " " " msgctxt "@label crash message" -msgid "" -"

                                      Oops, UltiMaker Cura has encountered something that doesn't seem right.

                                      \n" -"

                                      We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

                                      \n" -"

                                      Backups can be found in the configuration folder.

                                      \n" -"

                                      Please send us this Crash Report to fix the problem.

                                      \n" -" " -msgstr "" -"

                                      Ultimaker Cura doğru görünmeyen bir şeyle karşılaştı.

                                      \n" -"

                                      Başlatma esnasında kurtarılamaz bir hata ile karşılaştık. Muhtemelen bazı hatalı yapılandırma dosyalarından kaynaklanıyordu. Yapılandırmanızı yedekleyip sıfırlamanızı öneriyoruz.

                                      \n" -"

                                      Yedekler yapılandırma klasöründe bulunabilir.

                                      \n" -"

                                      Sorunu düzeltmek için lütfen bu Çökme Raporunu bize gönderin.

                                      \n" +msgid "

                                      Oops, UltiMaker Cura has encountered something that doesn't seem right.

                                      \n

                                      We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

                                      \n

                                      Backups can be found in the configuration folder.

                                      \n

                                      Please send us this Crash Report to fix the problem.

                                      \n " +msgstr "

                                      Ultimaker Cura doğru görünmeyen bir şeyle karşılaştı.

                                      " +"

                                      Başlatma esnasında kurtarılamaz bir hata ile karşılaştık. Muhtemelen bazı hatalı yapılandırma dosyalarından kaynaklanıyordu. Yapılandırmanızı yedekleyip sıfırlamanızı öneriyoruz.

                                      " +"

                                      Yedekler yapılandırma klasöründe bulunabilir.

                                      " +"

                                      Sorunu düzeltmek için lütfen bu Çökme Raporunu bize gönderin.

                                      " " " -#, python-brace-format msgctxt "@info:status" -msgid "" -"

                                      One or more 3D models may not print optimally due to the model size and material configuration:

                                      \n" -"

                                      {model_names}

                                      \n" -"

                                      Find out how to ensure the best possible print quality and reliability.

                                      \n" -"

                                      View print quality guide

                                      " -msgstr "" -"

                                      Model boyutu ve model yapılandırması nedeniyle bir veya daha fazla 3D model optimum yazdırılamayabilir:

                                      \n" -"

                                      {model_names}

                                      \n" -"

                                      En iyi kalite ve güvenilirliği nasıl elde edeceğinizi öğrenin.

                                      \n" +msgid "

                                      One or more 3D models may not print optimally due to the model size and material configuration:

                                      \n

                                      {model_names}

                                      \n

                                      Find out how to ensure the best possible print quality and reliability.

                                      \n

                                      View print quality guide

                                      " +msgstr "

                                      Model boyutu ve model yapılandırması nedeniyle bir veya daha fazla 3D model optimum yazdırılamayabilir:

                                      " +"

                                      {model_names}

                                      " +"

                                      En iyi kalite ve güvenilirliği nasıl elde edeceğinizi öğrenin.

                                      " "

                                      Yazdırma kalitesi kılavuzunu görüntüleyin

                                      " msgctxt "@label" @@ -267,7 +235,7 @@ msgstr[1] "Bazı yazıcılar için kullanılabilir bulut bağlantısı yok" msgctxt "@text" msgid "A highly dense and strong part but at a slower print time. Great for functional parts." -msgstr "" +msgstr "Oldukça yoğun ve güçlü bir parça ama daha yavaş bir yazdırma süresine sahip. Fonksiyonel parçalar için idealdir." msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." @@ -277,10 +245,6 @@ msgctxt "@item:inlistbox" msgid "AMF File" msgstr "AMF Dosyası" -msgctxt "name" -msgid "AMF Reader" -msgstr "AMF Okuyucu" - msgctxt "@label" msgid "Abort" msgstr "Durdur" @@ -317,10 +281,6 @@ msgctxt "@button" msgid "Accept" msgstr "Kabul et" -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "G-Code’ları kabul eder ve bir yazıcıya gönderir. Eklenti aynı zamanda üretici sürümünü güncelleyebilir." - msgctxt "@label" msgid "Account synced" msgstr "Hesap senkronize edildi" @@ -413,7 +373,6 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Yazıcıyı manuel olarak ekle" -#, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "{name} yazıcısı ({model}) hesabınızdan ekleniyor" @@ -454,7 +413,6 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Tüm Dosyalar (*)" -#, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "Tüm desteklenen türler ({0})" @@ -463,10 +421,6 @@ msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "Anonim veri gönderilmesine izin ver" -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "G-code dosyalarının yüklenmesine ve görüntülenmesine olanak tanır." - msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Her zaman sor" @@ -505,7 +459,7 @@ msgstr "Anonim" msgctxt "@option:radio" msgid "Anonymous crash reports" -msgstr "" +msgstr "Anonim çökme raporları" msgctxt "@label Description for application component" msgid "Application framework" @@ -513,7 +467,7 @@ msgstr "Uygulama çerçevesi" msgctxt "@title:column" msgid "Applies on" -msgstr "" +msgstr "Geçerli:" msgctxt "@label" msgid "Apply Extruder offsets to GCode" @@ -547,7 +501,6 @@ msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to move %1 to the top of the queue?" msgstr "%1 öğesini kuyruğun en üstüne taşımak ister misiniz?" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "{printer_name} yazıcısını geçici olarak kaldırmak istediğinizden emin misiniz?" @@ -560,7 +513,6 @@ msgctxt "@label (%1 is object name)" msgid "Are you sure you wish to remove %1? This cannot be undone!" msgstr "%1’i kaldırmak istediğinizden emin misiniz? Bu eylem geri alınamaz!" -#, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "{0} yazıcısını kaldırmak istediğinizden emin misiniz? Bu işlem geri alınamaz!" @@ -625,10 +577,6 @@ msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Yapılandırmayı Yedekle ve Sıfırla" -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Yapılandırmanızı yedekleyin ve geri yükleyin." - msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "Malzeme ayarlarınızı ve eklentilerinizi yedekleyin ve senkronize edin" @@ -703,7 +651,7 @@ msgstr "Hesaplanmış" msgctxt "@window:text" msgid "Camera navigation:" -msgstr "" +msgstr "Kamera navigasyonu:" msgctxt "@window:text" msgid "Camera rendering:" @@ -725,12 +673,10 @@ msgctxt "@label" msgid "Can't connect to your UltiMaker printer?" msgstr "UltiMaker yazıcınıza bağlanamıyor musunuz?" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "Yazıcı eklenmeden önce profil, {0} dosyasından içe aktarılamaz." -#, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "G-code yüklenirken başka bir dosya açılamaz. {0} içe aktarma atlandı" @@ -803,21 +749,8 @@ msgctxt "@label" msgid "Checking..." msgstr "Kontrol ediliyor..." -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Bellenim güncellemelerini denetler." - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Olası yazdırma sorunlarına karşı modelleri ve yazdırma yapılandırmasını kontrol eder ve öneriler verir." - msgctxt "@label" -msgid "" -"Chooses between the techniques available to generate support. \n" -"\n" -"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" -"\n" -"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "Destek oluşturmak için kullanılabilir teknikler arasından seçim yapar. \"Normal\" destek, çıkıntılı parçaların hemen altında bir destek yapısı oluşturur ve bu alanları dümdüz aşağı indirir. \"Ağaç\"destek, çıkıntılı alanlara doğru dallar oluşturur ve bu dalların uçlarıyla model desteklenir; dallar modelin etrafına sarılarak yapı plakasından olabildiğince destek alır." msgctxt "@action:inmenu menubar:edit" @@ -896,14 +829,6 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Sıkıştırılmış G-code Dosyası" -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Sıkıştırılmış G-code Okuyucusu" - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Sıkıştırılmış G-code Yazıcısı" - msgctxt "@title:window" msgid "Configuration Changes" msgstr "Yapılandırma Değişiklikleri" @@ -976,10 +901,6 @@ msgctxt "@info:status" msgid "Connected via cloud" msgstr "Bulut üzerinden bağlı" -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Digital Library'ye bağlanarak Cura'nın Digital Library'deki dosyaları açmasına ve kaydetmesine olanak tanır." - msgctxt "@tooltip:button" msgid "Consult the UltiMaker Community." msgstr "UltiMaker Topluluğundan yardım alın." @@ -1020,7 +941,6 @@ msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "Kullanıcı veri dizininden arşiv oluşturulamadı: {}" -#, python-brace-format msgctxt "@info:status Don't translate the tag {device}!" msgid "Could not find a file name when trying to write to {device}." msgstr "{device} üzerine yazmaya çalışırken dosya adı bulunamadı." @@ -1049,12 +969,10 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Malzeme arşivi {} konumuna kaydedilemedi:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "{0} dosyasına kaydedilemedi: {1}" -#, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Çıkarılabilir aygıta {0} kaydedilemedi: {1}" @@ -1063,31 +981,19 @@ msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "Veri yazıcıya yüklenemedi." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"No permission to execute process." -msgstr "" -"EnginePlugin başlatılamadı: {self._plugin_id}\n" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." +msgstr "EnginePlugin başlatılamadı: {self._plugin_id}" "İşlem yürütme izni yok." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Operating system is blocking it (antivirus?)" -msgstr "" -"EnginePlugin başlatılamadı: {self._plugin_id}\n" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" +msgstr "EnginePlugin başlatılamadı: {self._plugin_id}" "İşletim sistemi tarafından engelleniyor (antivirüs?)" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Resource is temporarily unavailable" -msgstr "" -"EnginePlugin başlatılamadı: {self._plugin_id}\n" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" +msgstr "EnginePlugin başlatılamadı: {self._plugin_id}" "Kaynak geçici olarak kullanılamıyor" msgctxt "@title:window" @@ -1130,10 +1036,6 @@ msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Digital Library'de baskı projeleri oluşturun." -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Belirli yerlerde desteğin yazdırılmasını engellemek için bir silici yüzey oluşturur" - msgctxt "@info:backup_status" msgid "Creating your backup..." msgstr "Yedeklemeniz oluşturuluyor..." @@ -1146,22 +1048,10 @@ msgctxt "@title:window" msgid "Cura Backups" msgstr "Cura Yedeklemeleri" -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura Yedeklemeleri" - msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Cura Profili" -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura Profil Okuyucu" - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura Profili Yazıcı" - msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Cura Projesi 3MF dosyası" @@ -1174,17 +1064,13 @@ msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura başlatılamıyor" -#, python-brace-format msgctxt "@info:status" msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." msgstr "Cura, henüz {0} grubunun ana yazıcısına yüklenmemiş malzeme profilleri tespit etti." msgctxt "@info:credit" -msgid "" -"Cura is developed by UltiMaker in cooperation with the community.\n" -"Cura proudly uses the following open source projects:" -msgstr "" -"Cura, topluluk iş birliği ile UltiMaker tarafından geliştirilmiştir.\n" +msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" +msgstr "Cura, topluluk iş birliği ile UltiMaker tarafından geliştirilmiştir." "Cura aşağıdaki açık kaynak projelerini gururla kullanmaktadır:" msgctxt "@label" @@ -1195,18 +1081,6 @@ msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura sürümü" -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine Arka Uç" - -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "Yüksek akışlı sıçramaları sınırlamak amacıyla akışı kademeli olarak düzelten CuraEngine eklentisi" - -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - msgctxt "@label" msgid "Currency:" msgstr "Para Birimi:" @@ -1437,7 +1311,7 @@ msgstr "Taslak" msgctxt "@action:inmenu menubar:edit" msgid "Drop All Models to buildplate" -msgstr "" +msgstr "Tüm Modelleri baskı tablasına bırak" msgctxt "@action:button" msgid "Duplicate" @@ -1463,12 +1337,10 @@ msgctxt "@action:button" msgid "Eject" msgstr "Çıkar" -#, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "Çıkarılabilir aygıtı çıkar {0}" -#, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "Çıkarıldı {0}. Şimdi sürücüyü güvenle kaldırabilirsiniz." @@ -1493,10 +1365,6 @@ msgctxt "@label" msgid "Enabled" msgstr "Etkin" -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "2D resim dosyasından yazdırılabilir geometri oluşturulmasını sağlar." - msgctxt "@title:label" msgid "End G-code" msgstr "G-code’u Sonlandır" @@ -1567,7 +1435,7 @@ msgstr "Seçimi Dışa Aktar..." msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Export Universal Cura Project" -msgstr "" +msgstr "Universal Cura Project'i Dışa Aktar" msgctxt "@button" msgid "Export material archive" @@ -1577,7 +1445,6 @@ msgctxt "@info:title" msgid "Export succeeded" msgstr "Dışa aktarma başarılı" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Profil {0} dosyasına aktarıldı" @@ -1586,10 +1453,6 @@ msgctxt "@tooltip:button" msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "UltiMaker Cura'yı eklentilerle ve malzeme profilleriyle genişletin." -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Kullanıcının oluşturduğu komut dosyalarına son işleme için izin veren uzantı" - msgctxt "@label" msgid "Extruder" msgstr "Ekstrüder" @@ -1604,7 +1467,7 @@ msgstr "Ekstruder G-Code'u Sonlandırma" msgctxt "@label" msgid "Extruder End G-code duration" -msgstr "" +msgstr "Ekstruder Bitiş G kodu süresi" msgctxt "@title:label" msgid "Extruder Start G-code" @@ -1612,12 +1475,11 @@ msgstr "Ekstruder G-Code'u Başlatma" msgctxt "@label" msgid "Extruder Start G-code duration" -msgstr "" +msgstr "Ekstruder Başlangıç G kodu süresi" -#, python-brace-format msgctxt "@label" msgid "Extruder {0}" -msgstr "" +msgstr "Ekstruder {0}" msgctxt "@info:title" msgid "Extruder(s) Disabled" @@ -1639,7 +1501,6 @@ msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "Yazıcılarla senkronize edilecek malzeme arşivi oluşturulamadı." -#, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "Çıkarma işlemi başarısız oldu {0}. Başka bir program sürücüyü kullanıyor olabilir." @@ -1648,27 +1509,22 @@ msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "Malzemenin %1 dosyasına dışa aktarımı başarısız oldu: %2" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Profilin {0} dosyasına aktarımı başarısız oldu: {1}" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Profilin {0} dosyasına aktarımı başarısız oldu: Yazıcı eklentisinde rapor edilen hata." -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "{0} dosyasından profil içe aktarımı başarısız oldu:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "{0} dosyasından profil içe aktarımı başarısız oldu:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "{0} dosyasından profil içe aktarımı başarısız oldu: {1}" @@ -1685,10 +1541,9 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Malzeme arşivi kaydedilemedi" -#, python-brace-format msgctxt "@info:status" msgid "Failed writing to specific cloud printer: {0} not in remote clusters." -msgstr "" +msgstr "Belirli bir bulut yazıcısına yazma işlemi başarısız oldu: {0} uzak saklama biriminde değil." msgctxt "@label:category menu label" msgid "Favorites" @@ -1714,7 +1569,6 @@ msgctxt "@info:title" msgid "File Saved" msgstr "Dosya Kaydedildi" -#, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Dosya {0} geçerli bir profil içermemekte." @@ -1747,14 +1601,6 @@ msgctxt "@title:window" msgid "Firmware Update" msgstr "Aygıt Yazılımı Güncellemesi" -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Bellenim Güncelleme Denetleyicisi" - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Aygıt Yazılımı Güncelleyici" - msgctxt "@label" msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." msgstr "Yazıcı bağlantısı aygıt yazılımını yükseltmeyi desteklemediği için aygıt yazılımı güncellenemiyor." @@ -1832,7 +1678,7 @@ msgid "Force layer view compatibility mode (restart required)" msgstr "Katman görünümünü uyumluluk moduna zorla (yeniden başlatma gerekir)" msgid "FreeCAD trackpad" -msgstr "" +msgstr "FreeCAD dokunmatik fare" msgctxt "@action:inmenu menubar:view" msgid "Front View" @@ -1854,18 +1700,6 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "G-code dosyası" -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "G-code Profil Okuyucu" - -msgctxt "name" -msgid "G-code Reader" -msgstr "G-code Okuyucu" - -msgctxt "name" -msgid "G-code Writer" -msgstr "G-code Yazıcı" - msgctxt "@label" msgid "G-code flavor" msgstr "G-code türü" @@ -1924,7 +1758,7 @@ msgstr "Başlayın" msgctxt "@label" msgid "Global" -msgstr "" +msgstr "Küresel" msgctxt "@title:tab" msgid "Global Settings" @@ -1938,7 +1772,6 @@ msgctxt "@label" msgid "Grid Placement" msgstr "Izgara Yerleşimi" -#, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "Grup #{group_nr}" @@ -1977,7 +1810,7 @@ msgstr "Bağlı tüm yazıcıları gizle" msgctxt "@action:button" msgid "Hide settings" -msgstr "" +msgstr "Ayarları gizle" msgctxt "@action:menu" msgid "Hide this setting" @@ -2015,10 +1848,6 @@ msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "Yazıcınız listede yoksa ağ yazdırma sorun giderme kılavuzunu okuyun" -msgctxt "name" -msgid "Image Reader" -msgstr "Resim Okuyucu" - msgctxt "@action:button" msgid "Import" msgstr "İçe Aktar" @@ -2057,7 +1886,7 @@ msgstr "Paketi kullanmak için Cura'yı yeniden başlatmanız gerekecek" msgctxt "@option:radio" msgid "Include UltiMaker account name" -msgstr "" +msgstr "UltiMaker hesap adını ekle" msgctxt "@label" msgid "Infill" @@ -2303,10 +2132,6 @@ msgctxt "@info:tooltip" msgid "Left View" msgstr "Sol görünüm" -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Eski Cura Profil Okuyucu" - msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "Geliştiricileri sorunlarla ilgili bilgilendirin." @@ -2387,10 +2212,6 @@ msgctxt "@title:groupbox" msgid "Logs" msgstr "Günlükler" -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Çökme raporlayıcının kullanabilmesi için belirli olayları günlüğe kaydeder" - msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Yazıcı bağlantısı koptu" @@ -2399,10 +2220,6 @@ msgctxt "@action" msgid "Machine Settings" msgstr "Makine Ayarları" -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Makine Ayarları eylemi" - msgctxt "@backuplist:label" msgid "Machines" msgstr "Makineler" @@ -2419,10 +2236,6 @@ msgctxt "@item:inlistbox" msgid "Makerbot Printfile" msgstr "Makerbot Baskı Dosyası" -msgctxt "name" -msgid "Makerbot Printfile Writer" -msgstr "Makerbot Baskı Dosyası Yazarı" - msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "MakerbotWriter belirlenen yola kaydedemedi." @@ -2479,14 +2292,6 @@ msgctxt "@text" msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." msgstr "UltiMaker Cura eklentilerinizi ve malzeme profillerini burada yönetin. Eklentilerinizi güncel tuttuğunuzdan ve ayarınızı düzenli olarak yedeklediğinizden emin olun." -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "Uygulamanın uzantılarını yönetir ve Ultimaker web sitesinden uzantıların incelenmesini sağlar." - -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "UltiMaker ağındaki yazıcılar için ağ bağlantılarını yönetir." - msgctxt "@label" msgid "Manufacturer" msgstr "Üretici" @@ -2499,10 +2304,6 @@ msgctxt "@label" msgid "Marketplace" msgstr "Mağaza" -msgctxt "name" -msgid "Marketplace" -msgstr "Mağaza" - msgctxt "@action:label" msgid "Material" msgstr "Malzeme" @@ -2519,10 +2320,6 @@ msgctxt "@label:listbox" msgid "Material Color" msgstr "Malzeme Rengi" -msgctxt "name" -msgid "Material Profiles" -msgstr "Malzeme Profilleri" - msgctxt "@label" msgid "Material Type" msgstr "Malzeme Türü" @@ -2567,10 +2364,6 @@ msgctxt "@action:label" msgid "Mode" msgstr "Mod" -msgctxt "name" -msgid "Model Checker" -msgstr "Model Kontrol Edici" - msgctxt "@info:title" msgid "Model Errors" msgstr "Model hataları" @@ -2587,10 +2380,6 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "Görüntüle" -msgctxt "name" -msgid "Monitor Stage" -msgstr "Görüntüleme Aşaması" - msgctxt "@action:button" msgid "Monitor print" msgstr "Baskı izleme" @@ -2665,7 +2454,6 @@ msgctxt "@info:title" msgid "Network error" msgstr "Ağ hatası" -#, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" msgstr "Yeni %s istikrarlı donanım yazılımı yayınlandı" @@ -2678,7 +2466,6 @@ msgctxt "@label" msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." msgstr "Yeni UltiMaker yazıcılar Digital Factory’ye bağlanabilir ve uzaktan izlenebilir." -#, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." msgstr "{machine_name} cihazınız için yeni özellikler veya hata düzeltmeleri mevcut olabilir! Henüz son sürüme geçmediyseniz yazıcınızın donanım yazılımını {latest_version} sürümüne güncellemeniz önerilir." @@ -2725,7 +2512,6 @@ msgctxt "@label" msgid "No cost estimation available" msgstr "Maliyet tahmini yok" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "{0} dosyasında içe aktarılabilecek özel profil yok" @@ -2764,7 +2550,7 @@ msgstr "Mevcut filtreyle başka sonuç bulunmadı" msgctxt "@label" msgid "No specific value has been set" -msgstr "" +msgstr "Belirli bir değer ayarlanmadı" msgctxt "@label" msgid "No time estimation available" @@ -2862,14 +2648,13 @@ msgctxt "@label" msgid "Only Show Top Layers" msgstr "Yalnızca Üst Katmanları Göster" -#, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Aynı anda yalnızca bir G-code dosyası yüklenebilir. {0} içe aktarma atlandı" msgctxt "@message" msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." -msgstr "" +msgstr "Hata! Dilimleme işleminiz sırasında beklenmeyen bir hatayla karşılaştık. Tercihlerinizde veri paylaşımını devre dışı bırakmadıysanız, analiz için çökme kayıtlarını otomatik olarak aldığımıza emin olabilirsiniz. Bize daha fazla yardımcı olmak için proje ayrıntılarınızı sorun takipçimizde paylaşmayı düşünebilirsiniz." msgctxt "@action:button" msgid "Open" @@ -2901,11 +2686,11 @@ msgstr "Proje Dosyası Aç" msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Open Universal Cura Project (UCP)" -msgstr "" +msgstr "Universal Cura Project (UCP)'i aç" msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Open Universal Cura Project (UCP) file" -msgstr "" +msgstr "Universal Cura Project (UCP) dosyasını aç" msgctxt "@action:label" msgid "Open With" @@ -2913,7 +2698,7 @@ msgstr "Birlikte Aç" msgctxt "@action:button" msgid "Open as UCP" -msgstr "" +msgstr "UCP olarak aç" msgctxt "@action:button" msgid "Open as project" @@ -3036,10 +2821,6 @@ msgctxt "@label" msgid "Per Model Settings" msgstr "Model Başına Ayarlar" -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Model Başına Ayarlar Aracı" - msgid "Perspective" msgstr "Perspektif" @@ -3076,15 +2857,10 @@ msgid "Please give the required permissions when authorizing this application." msgstr "Lütfen bu başvuruya yetki verirken gerekli izinleri verin." msgctxt "@info" -msgid "" -"Please make sure your printer has a connection:\n" -"- Check if the printer is turned on.\n" -"- Check if the printer is connected to the network.\n" -"- Check if you are signed in to discover cloud-connected printers." -msgstr "" -"Lütfen yazıcınızda bağlantı olduğundan emin olun:\n" -"- Yazıcının açık olup olmadığını kontrol edin.\n" -"- Yazıcının ağa bağlı olup olmadığını kontrol edin.\n" +msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." +msgstr "Lütfen yazıcınızda bağlantı olduğundan emin olun:" +"- Yazıcının açık olup olmadığını kontrol edin." +"- Yazıcının ağa bağlı olup olmadığını kontrol edin." "- Buluta bağlı yazıcıları keşfetmek için giriş yapıp yapmadığınızı kontrol edin." msgctxt "@text" @@ -3112,15 +2888,10 @@ msgid "Please remove the print" msgstr "Lütfen yazıcıyı çıkarın" msgctxt "@info:status" -msgid "" -"Please review settings and check if your models:\n" -"- Fit within the build volume\n" -"- Are assigned to an enabled extruder\n" -"- Are not all set as modifier meshes" -msgstr "" -"Lütfen ayarları gözden geçirin ve modellerinizi şu durumlara karşı kontrol edin:\n" -"- Yapı hacmine sığma\n" -"- Etkin bir ekstrüdere atanma\n" +msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" +msgstr "Lütfen ayarları gözden geçirin ve modellerinizi şu durumlara karşı kontrol edin:" +"- Yapı hacmine sığma" +"- Etkin bir ekstrüdere atanma" "- Değiştirici kafesler olarak ayarlanmama" msgctxt "@label" @@ -3133,7 +2904,7 @@ msgstr "UltiMaker Cura Enterprise için onaylı eklenti ve malzemeleri almak iç msgctxt "@info:tooltip" msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." -msgstr "" +msgstr "Anonim olmayan verilerin gönderilmesine izin vermek için lütfen UltiMaker hesabınızda oturum açın." msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." @@ -3175,10 +2946,6 @@ msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Son İşleme" -msgctxt "name" -msgid "Post Processing" -msgstr "Son İşleme" - msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "Son İşleme Uzantısı" @@ -3195,10 +2962,6 @@ msgctxt "@item:inmenu" msgid "Prepare" msgstr "Hazırla" -msgctxt "name" -msgid "Prepare Stage" -msgstr "Hazırlık Aşaması" - msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "Hazırlanıyor..." @@ -3219,10 +2982,6 @@ msgctxt "@item:inmenu" msgid "Preview" msgstr "Önizleme" -msgctxt "name" -msgid "Preview Stage" -msgstr "Öz İzleme Aşaması" - msgctxt "@tooltip" msgid "Prime Tower" msgstr "Astarlama Direği" @@ -3423,7 +3182,6 @@ msgctxt "@title:column" msgid "Profile settings" msgstr "Profil ayarları" -#, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Profil {0} öğesinde bilinmeyen bir dosya türü var veya profil bozuk." @@ -3448,22 +3206,18 @@ msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Programlama dili" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "Proje dosyası {0} bilinmeyen bir makine tipi içeriyor: {1}. Makine alınamıyor. Bunun yerine modeller alınacak." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "Proje dosyası {0} bozuk: {1}." -#, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." msgstr "{0} proje dosyası, Ultimaker Cura'nın bu sürümünde bilinmeyen profiller kullanılarak yapılmış." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "{0} proje dosyası aniden erişilemez oldu: {1}." @@ -3472,147 +3226,42 @@ msgctxt "@label" msgid "Properties" msgstr "Özellikler" -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Aygıt yazılımını güncellemeye yönelik makine eylemleri sağlar." - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Cura’da görüntüleme aşaması sunar." +msgctxt "@label" +msgid "PyQt version" +msgstr "PyQt Sürümü" -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Normal gerçek bir ağ görünümü sağlar." +msgctxt "@Label Description for application dependency" +msgid "Python Error tracking library" +msgstr "Python Hata takip kitaplığı" -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Cura’da hazırlık aşaması sunar." +msgctxt "@label Description for application dependency" +msgid "Python bindings for Clipper" +msgstr "Clipper için Python bağlamaları" -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Cura’da ön izleme aşaması sunar." +msgctxt "@label Description for application component" +msgid "Python bindings for libnest2d" +msgstr "libnest2d için Python bağlamaları" -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Makine ayarlarının değiştirilmesini sağlar (yapı hacmi, nozül boyutu vb.)" +msgctxt "@label" +msgid "Qt version" +msgstr "Qt Sürümü" -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "XML tabanlı malzeme profillerini okuma ve yazma olanağı sağlar." +msgctxt "@info:status" +msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." +msgstr "'{0}' kalite tipi, mevcut aktif makine tanımı '{1}' ile uyumlu değil." -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Ultimaker makineleri için makine eylemleri sunar (yatak dengeleme sihirbazı, yükseltme seçme vb.)" +msgctxt "@info:title" +msgid "Queue Full" +msgstr "Kuyruk Dolu" -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Çıkarılabilir sürücünün takılıp çıkarılmasını ve yazma desteği sağlar." - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Cura profillerinin dışa aktarılması için destek sağlar." - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Cura profillerinin içe aktarılması için destek sağlar." - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "G-code dosyalarından profilleri içe aktarmak için destek sağlar." - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Eski Cura sürümlerinden profilleri içe aktarmak için destek sağlar." - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "3MF dosyalarının okunması için destek sağlar." - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "AMF dosyalarının okunması için destek sağlar." - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Ultimaker Biçim Paketlerinin okunması için destek sağlar." - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "X3D dosyalarının okunması için destek sağlar." - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Model dosyalarını okuma desteği sağlar." - -msgctxt "description" -msgid "Provides support for writing 3MF and UCP files." -msgstr "" - -msgctxt "description" -msgid "Provides support for writing MakerBot Format Packages." -msgstr "MakerBot Format Paketleri yazmayı destekler." - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Ultimaker Biçim Paketleri yazmak için destek sağlar." - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Model Başına Ayarları sağlar." - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Röntgen Görüntüsü sağlar." - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "CuraEngine arka dilimleme ucuna bağlantı sağlar." - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Dilimlenen katman verilerinin önizlemesini sağlar." - -msgctxt "@label" -msgid "PyQt version" -msgstr "PyQt Sürümü" - -msgctxt "@Label Description for application dependency" -msgid "Python Error tracking library" -msgstr "Python Hata takip kitaplığı" - -msgctxt "@label Description for application dependency" -msgid "Python bindings for Clipper" -msgstr "Clipper için Python bağlamaları" - -msgctxt "@label Description for application component" -msgid "Python bindings for libnest2d" -msgstr "libnest2d için Python bağlamaları" - -msgctxt "@label" -msgid "Qt version" -msgstr "Qt Sürümü" - -#, python-brace-format -msgctxt "@info:status" -msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." -msgstr "'{0}' kalite tipi, mevcut aktif makine tanımı '{1}' ile uyumlu değil." - -msgctxt "@info:title" -msgid "Queue Full" -msgstr "Kuyruk Dolu" - -msgctxt "@label" -msgid "Queued" -msgstr "Kuyrukta" +msgctxt "@label" +msgid "Queued" +msgstr "Kuyrukta" msgctxt "@info:button, %1 is the application name" msgid "Quit %1" msgstr "%1 uygulamasından çık" -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Bir sıkıştırılmış arşivden g-code okur." - msgctxt "@button" msgid "Recommended" msgstr "Önerilen" @@ -3665,10 +3314,6 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "Çıkarılabilir Sürücü" -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Çıkarılabilir Sürücü Çıkış Cihazı Eklentisi" - msgctxt "@action:button" msgid "Remove" msgstr "Kaldır" @@ -3791,11 +3436,11 @@ msgstr "Cura projesini kaydet" msgctxt "@option" msgid "Save Cura project and .makerbot print file" -msgstr "" +msgstr "Cura projesini ve .makerbot yazdırma dosyasını kaydet" msgctxt "@option" msgid "Save Cura project and .ufp print file" -msgstr "" +msgstr "Cura projesini ve .ufp yazdırma dosyasını kaydet" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3823,7 +3468,7 @@ msgstr "Yeni profil kaydet" msgctxt "@action:button" msgid "Save project" -msgstr "" +msgstr "Projeyi kaydet" msgctxt "@text" msgid "Save the .umm file on a USB stick." @@ -3833,12 +3478,10 @@ msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "Çıkarılabilir Sürücüye Kaydet" -#, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "Çıkarılabilir Sürücüye Kaydediliyor {0}" -#, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Çıkarılabilir Sürücüye {0}, {1} olarak kaydedildi" @@ -3847,7 +3490,6 @@ msgctxt "@info:title" msgid "Saving" msgstr "Kaydediliyor" -#, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Çıkarılabilir Sürücü {0} Üzerine Kaydediliyor" @@ -3930,15 +3572,15 @@ msgstr "Çökme raporunu UltiMaker’a gönder" msgctxt "@info:tooltip" msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." -msgstr "" +msgstr "Kayıtlı UltiMaker hesap adınız ve proje adınızla birlikte çökme raporlarını UltiMaker Sentry'ye gönderin. Hiçbir gerçek model verisi gönderilmez." msgctxt "@info:tooltip" msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." -msgstr "" +msgstr "Çökme raporlarını kişisel olarak tanımlanabilecek herhangi bir bilgi veya model verisi olmadan UltiMaker'a gönderin." msgctxt "@option:check" msgid "Send engine crash reports" -msgstr "" +msgstr "Motor çökmesi raporlarını gönder" msgctxt "@action:button" msgid "Send report" @@ -3952,10 +3594,6 @@ msgctxt "@info:title" msgid "Sending materials to printer" msgstr "Malzemeler yazıcıya gönderiliyor" -msgctxt "name" -msgid "Sentry Logger" -msgstr "Nöbetçi Günlükçü" - msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Seri iletişim kitaplığı" @@ -3994,7 +3632,7 @@ msgstr "Ayarlar" msgctxt "@action:label" msgid "Settings Loaded from UCP file" -msgstr "" +msgstr "UCP dosyasından yüklenen ayarlar" msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" @@ -4066,7 +3704,7 @@ msgstr "Masaüstünden veya harici uygulamalardan açılan dosyalar aynı Cura msgctxt "@info:tooltip" msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." -msgstr "" +msgstr "Dilimleme çökmeleri otomatik olarak Ultimaker'a bildirilmeli mi? Açıkça izin vermediğiniz sürece hiçbir modelin, IP adresinin veya diğer kişisel bilgilerin gönderilmediğini veya saklanmadığını unutmayın." msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" @@ -4126,7 +3764,7 @@ msgstr "Ayrıntılı çökme raporu göster" msgctxt "@action:button" msgid "Show settings" -msgstr "" +msgstr "Ayarları göster" msgctxt "@option:check" msgid "Show summary dialog when saving project" @@ -4164,10 +3802,6 @@ msgctxt "@label" msgid "Sign in to the UltiMaker platform" msgstr "UltiMaker platformuna giriş yapın" -msgctxt "name" -msgid "Simulation View" -msgstr "Simülasyon Görünümü" - msgctxt "@tooltip" msgid "Skin" msgstr "Yüzey Alanı" @@ -4196,10 +3830,6 @@ msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Ayarlar değiştirilirken otomatik olarak dilimle." -msgctxt "name" -msgid "Slice info" -msgstr "Dilim bilgisi" - msgctxt "@message:title" msgid "Slicing failed" msgstr "Dilimleme başarısız" @@ -4214,24 +3844,15 @@ msgstr "Düzeltme" msgctxt "@label" msgid "Solid" -msgstr "" - -msgctxt "name" -msgid "Solid View" -msgstr "Gerçek Görünüm" +msgstr "Katı" msgctxt "@item:inmenu" msgid "Solid view" msgstr "Gerçek görünüm" msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "" -"Gizlenen bazı ayarlar normal hesaplanan değerden farklı değerler kullanır.\n" -"\n" +msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." +msgstr "Gizlenen bazı ayarlar normal hesaplanan değerden farklı değerler kullanır." "Bu ayarları görmek için tıklayın." msgctxt "@info:status" @@ -4247,13 +3868,8 @@ msgid "Some setting-values defined in %1 were overridden." msgstr "1 kapsamında tanımlanan bazı ayar değerleri geçersiz kılındı." msgctxt "@tooltip" -msgid "" -"Some setting/override values are different from the values stored in the profile.\n" -"\n" -"Click to open the profile manager." -msgstr "" -"Bazı ayar/geçersiz kılma değerleri profilinizde saklanan değerlerden farklıdır.\n" -"\n" +msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." +msgstr "Bazı ayar/geçersiz kılma değerleri profilinizde saklanan değerlerden farklıdır." "Profil yöneticisini açmak için tıklayın." msgctxt "@action:label" @@ -4324,10 +3940,6 @@ msgctxt "@label" msgid "Strength" msgstr "Sağlamlık" -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Anonim dilim bilgisi gönderir. Tercihlerden devre dışı bırakılabilir." - msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "Malzeme %1 dosyasına başarıyla dışa aktarıldı" @@ -4336,18 +3948,17 @@ msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "Malzeme %1 dosyasına başarıyla içe aktarıldı" -#, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "{0} profili başarıyla içe aktarıldı." msgctxt "@action:label" msgid "Suggested Material settings" -msgstr "" +msgstr "Önerilen Malzeme ayarları" msgctxt "@action:label" msgid "Suggested Profile settings" -msgstr "" +msgstr "Önerilen Profil ayarları" msgctxt "@action:title" msgid "Summary - Cura Project" @@ -4355,11 +3966,11 @@ msgstr "Özet - Cura Projesi" msgctxt "@action:title Don't translate 'Universal Cura Project'" msgid "Summary - Open Universal Cura Project (UCP)" -msgstr "" +msgstr "Özet - Universal Cura Project (UCP)'i aç" msgctxt "@action:title Don't translate 'Universal Cura Project'" msgid "Summary - Universal Cura Project" -msgstr "" +msgstr "Özet - Universal Cura Project" msgctxt "@label" msgid "Support" @@ -4373,10 +3984,6 @@ msgctxt "@label" msgid "Support Blocker" msgstr "Destek Engelleyici" -msgctxt "name" -msgid "Support Eraser" -msgstr "Destek Silici" - msgctxt "@tooltip" msgid "Support Infill" msgstr "Destek Dolgusu" @@ -4543,7 +4150,6 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "Destek için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır." -#, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "Dosya {0} zaten mevcut. Üstüne yazmak istediğinizden emin misiniz?" @@ -4607,21 +4213,10 @@ msgid "The nozzle inserted in this extruder." msgstr "Bu ekstrudere takılan nozül." msgctxt "@label" -msgid "" -"The pattern of the infill material of the print:\n" -"\n" -"For quick prints of non functional model choose line, zig zag or lightning infill.\n" -"\n" -"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" -"\n" -"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "" -"Baskı dolgu malzemesinin deseni:\n" -"\n" -"İşlevsel olmayan modellerin hızlı baskıları için çizgi, zikzak veya aydınlatma dolgusunu seçin.\n" -"\n" -"Çok fazla strese maruz kalmayan işlevsel parçalar için ızgara veya üçgen veya üç altıgen öneriyoruz.\n" -"\n" +msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "Baskı dolgu malzemesinin deseni:" +"İşlevsel olmayan modellerin hızlı baskıları için çizgi, zikzak veya aydınlatma dolgusunu seçin." +"Çok fazla strese maruz kalmayan işlevsel parçalar için ızgara veya üçgen veya üç altıgen öneriyoruz." "Birden fazla yönde yüksek sağlamlık gerektiren işlevsel 3D baskılar için kübik, kübik alt bölüm, çeyrek kübik, sekizli ve dönel kullanın." msgctxt "@info:tooltip" @@ -4742,7 +4337,7 @@ msgstr "%1 tanınmadığından bu yapılandırma kullanılamaz. Doğru malzeme p msgctxt "@text:window" msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" -msgstr "" +msgstr "Bu bir Cura Universal proje dosyasıdır. Cura projesi veya Cura Universal Project olarak mı açmak istiyorsunuz yoksa içindeki modelleri mi aktarmak istiyorsunuz?" msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" @@ -4778,7 +4373,6 @@ msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "Bu yazıcı, %1 yazıcı grubunun ana makinesidir." -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Bu {0} profili yanlış veri içeriyor, içeri aktarılamadı." @@ -4792,13 +4386,8 @@ msgid "This project contains materials or plugins that are currently not install msgstr "Bu proje şu anda Cura'da yüklü olmayan materyal veya eklentiler içeriyor.
                                      Eksik paketleri kurun ve projeyi yeniden açın." msgctxt "@label" -msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." -msgstr "" -"Bu ayarın değeri profilden farklıdır.\n" -"\n" +msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." +msgstr "Bu ayarın değeri profilden farklıdır." "Profil değerini yenilemek için tıklayın." msgctxt "@item:tooltip" @@ -4816,13 +4405,8 @@ msgid "This setting is always shared between all extruders. Changing it here wil msgstr "Bu ayar her zaman, tüm ekstrüderler arasında paylaşılır. Buradan değiştirildiğinde tüm ekstrüderler için değer değiştirir." msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "" -"Bu ayar normal olarak yapılır ama şu anda mutlak değer ayarı var.\n" -"\n" +msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." +msgstr "Bu ayar normal olarak yapılır ama şu anda mutlak değer ayarı var." "Hesaplanan değeri yenilemek için tıklayın." msgctxt "@label" @@ -4835,11 +4419,11 @@ msgstr "Bu ayar, çakışan ekstrüdere özgü değerlerden çözümlenir:" msgctxt "@tooltip Don't translate 'Universal Cura Project'" msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." -msgstr "" +msgstr "Bu ayar, Universal Cura Project'e aktarım sırasında iyi performans göstermeyebilir. Kullanıcıların bu ayarı riski kendilerine ait olmak üzere eklemeleri istenir." msgctxt "@tooltip Don't translate 'Universal Cura Project'" msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." -msgstr "" +msgstr "Bu ayar Universal Cura Project'e aktarım sırasında iyi performans göstermeyebilir. Kullanıcılardan riski kendilerine ait olmak üzere eklemeleri istenir." msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" @@ -4857,7 +4441,6 @@ msgctxt "@text" msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." msgstr "Malzeme profillerini Digital Factory'ye bağlı tüm yazıcılarınızla otomatik olarak senkronize etmek için Cura'da oturum açmanız gerekir." -#, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "Bağlantı kurmak için lütfen {website_link} adresini ziyaret edin" @@ -4870,7 +4453,6 @@ msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." msgstr "Yazıcınıza ağ üzerinden doğrudan baskı göndermek için lütfen yazıcınızın ağ kablosuyla ağa bağlı olduğundan veya yazıcınızı WiFi ağınıza bağladığınızdan emin olun. Yazıcınız ile Cura'ya bağlanamıyorsanız g-code dosyalarını yazıcınıza aktarmak için USB sürücüsü kullanabilirsiniz." -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "{printer_name} yazıcısını kalıcı olarak kaldırmak için {digital_factory_link} adresini ziyaret edin" @@ -4919,10 +4501,6 @@ msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "Uygun veri veya meta veri olmadan Cura yedeği geri yüklenmeye çalışıldı." -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh Okuyucu" - msgctxt "@button" msgid "Troubleshooting" msgstr "Sorun giderme" @@ -4943,22 +4521,10 @@ msgctxt "@label" msgid "Type" msgstr "Tür" -msgctxt "name" -msgid "UFP Reader" -msgstr "UFP Okuyucu" - -msgctxt "name" -msgid "UFP Writer" -msgstr "UPF Yazıcı" - msgctxt "@item:inmenu" msgid "USB printing" msgstr "USB yazdırma" -msgctxt "name" -msgid "USB printing" -msgstr "USB yazdırma" - msgctxt "@button" msgid "UltiMaker Account" msgstr "UltiMaker hesabı" @@ -4975,10 +4541,6 @@ msgctxt "@item:inlistbox" msgid "UltiMaker Format Package" msgstr "UltiMaker Biçim Paketi" -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "Ultimaker Ağ Bağlantısı" - msgctxt "@info" msgid "UltiMaker Verified Package" msgstr "UltiMaker Tarafından Doğrulanmış Paket" @@ -4987,10 +4549,6 @@ msgctxt "@info" msgid "UltiMaker Verified Plug-in" msgstr "UltiMaker Tarafından Doğrulanmış Eklenti" -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "Ultimaker makine eylemleri" - msgctxt "@button" msgid "UltiMaker printer" msgstr "UltiMaker yazıcı" @@ -5003,10 +4561,6 @@ msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Profil eklenemiyor." @@ -5015,18 +4569,13 @@ msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Yapılan hacim içinde tüm nesneler için konum bulunamadı" -#, python-brace-format msgctxt "@info:plugin_failed" msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" msgstr "{self._plugin_id} için yürütülebilir yerel EnginePlugin sunucusu bulunamıyor" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Unable to kill running EnginePlugin: {self._plugin_id}\n" -"Access is denied." -msgstr "" -"Çalışan EnginePlugin sonlandırılamıyor: {self._plugin_id}\n" +msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." +msgstr "Çalışan EnginePlugin sonlandırılamıyor: {self._plugin_id}" "Erişim reddedildi." msgctxt "@info" @@ -5049,12 +4598,10 @@ msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "İlk direk veya ilk konum(lar) geçersiz olduğu için dilimlenemiyor." -#, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "Etkisizleştirilmiş Extruder %s ile ilgili nesneler olduğundan dilimleme yapılamıyor." -#, python-brace-format msgctxt "@info:status" msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" msgstr "Modele özgü ayarlar nedeniyle dilimlenemedi. Şu ayarlar bir veya daha fazla modelde hataya yol açıyor: {error_labels}" @@ -5063,7 +4610,6 @@ msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "Mevcut malzeme, seçilen makine veya yapılandırma ile uyumlu olmadığından mevcut malzeme ile dilimlenemedi." -#, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "Geçerli ayarlarla dilimlenemiyor. Şu ayarlarda hata var: {0}" @@ -5072,10 +4618,9 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Yeni bir oturum açma işlemi başlatılamıyor. Başka bir aktif oturum açma girişimi olup olmadığını kontrol edin." -#, python-brace-format msgctxt "@info:error" msgid "Unable to write to file: {0}" -msgstr "" +msgstr "Dosyaya yazılamıyor: {0}" msgctxt "@label:status" msgid "Unavailable" @@ -5099,11 +4644,11 @@ msgstr "Birim" msgctxt "@item:inlistbox" msgid "Universal Cura Project" -msgstr "" +msgstr "Universal Cura Project" msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." -msgstr "" +msgstr "Universal Cura Project dosyaları, konumsal veriler ve seçilen ayarlar korunarak farklı 3D yazıcılarda yazdırılabilir. Dışa aktarıldığı zaman baskı tablasından bulunan tüm modeller mevcut konumları, yönelimleri ve ölçekleriyle birlikte dahil edilecektir. Düzgün yazdırmayı sağlamak için hangi ekstruder başına veya model başına ayarların dahil olması gerektiğini de seçebilirsiniz." msgctxt "@label Description for development tool" msgid "Universal build system configuration" @@ -5125,7 +4670,6 @@ msgctxt "@label:property" msgid "Unknown Package" msgstr "Bilinmeyen Paket" -#, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Baskı işi yüklenirken bilinmeyen hata kodu: {0}" @@ -5190,265 +4734,49 @@ msgctxt "@button" msgid "Updating..." msgstr "Güncelleniyor..." -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Yapılandırmaları Cura 2.1’den Cura 2.2’ye yükseltir." - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Yapılandırmaları Cura 2.2’den Cura 2.4’e yükseltir." +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Özel Aygıt Yazılımı Yükle" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Yapılandırmaları Cura 2.5’ten Cura 2.6’ya yükseltir." +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "Baskı işi yazıcıya yükleniyor." -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Yapılandırmaları Cura 2.6’dan Cura 2.7’ye yükseltir." +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "Yedeklemeniz yükleniyor..." -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Yapılandırmaları Cura 2.7’den Cura 3.0’a yükseltir." +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "Tek bir Cura örneği kullan" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Yapılandırmaları Cura 3.0'dan Cura 3.1'e yükseltir." +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "Bu malzeme kombinasyonuyla daha iyi yapıştırma için yapıştırıcı kullanın." -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Yapılandırmaları Cura 3.2’ten Cura 3.3’ya yükseltir." +msgctxt "@label" +msgid "User Agreement" +msgstr "Kullanıcı Anlaşması" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Yapılandırmaları Cura 3.3’ten Cura 3.4’ya yükseltir." +msgctxt "@label Description for application dependency" +msgid "Utility functions, including an image loader" +msgstr "Kullanım işlevleri, bir resim yükleyici dâhil" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Yapılandırmaları Cura 3.4’ten Cura 3.5’e yükseltir." +msgctxt "@label Description for application dependency" +msgid "Utility library, including Voronoi generation" +msgstr "Kullanım kütüphanesi, Voronoi oluşturma dâhil" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Yapılandırmaları Cura 3.5’ten Cura 4.0’a yükseltir." +msgctxt "@title:column" +msgid "Value" +msgstr "Değer" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Yapılandırmaları Cura 4.0’dan Cura 4.1’e yükseltir." +msgctxt "@button" +msgid "View printers in Digital Factory" +msgstr "Yazıcıları Digital Factory’de görüntüleyin" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Yapılandırmaları Cura 4.1'den Cura 4.2'ye yükseltir." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Yapılandırmaları Cura 4.11'den Cura 4.12'ye yükseltir." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Yapılandırmaları Cura 4.13'ten Cura 5.0'a yükseltir." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Yapılandırmaları Cura 4.2'den Cura 4.3'e yükseltir." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Yapılandırmaları Cura 4.3'ten Cura 4.4'e yükseltir." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Yapılandırmaları Cura 4.4'ten Cura 4.5'e yükseltir." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Yapılandırmaları Cura 4.5'ten Cura 4.6'ya yükseltir." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Yapılandırmaları Cura 4.6.0'dan Cura 4.6.2'ye yükseltir." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Yapılandırmaları Cura 4.6.2'den Cura 4.7'ye yükseltir." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Yapılandırmaları Cura 4.7'den Cura 4.8'e yükseltir." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Yapılandırmaları Cura 4.8'den Cura 4.9'a yükseltir." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Yapılandırmaları Cura 4.9'dan Cura 4.10'a yükseltir." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Yapılandırmaları Cura 5.2'dan Cura 5.3'a yükseltir." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Cura 5.3'ten Cura 5.4'e yükseltme yapılandırmaları" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Cura 5.4'ten Cura 5.5'e yükseltme yapılandırmaları" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." -msgstr "" - -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Özel Aygıt Yazılımı Yükle" - -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Baskı işi yazıcıya yükleniyor." - -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Yedeklemeniz yükleniyor..." - -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Tek bir Cura örneği kullan" - -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "Bu malzeme kombinasyonuyla daha iyi yapıştırma için yapıştırıcı kullanın." - -msgctxt "@label" -msgid "User Agreement" -msgstr "Kullanıcı Anlaşması" - -msgctxt "@label Description for application dependency" -msgid "Utility functions, including an image loader" -msgstr "Kullanım işlevleri, bir resim yükleyici dâhil" - -msgctxt "@label Description for application dependency" -msgid "Utility library, including Voronoi generation" -msgstr "Kullanım kütüphanesi, Voronoi oluşturma dâhil" - -msgctxt "@title:column" -msgid "Value" -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "2.1’den 2.2’ye Sürüm Yükseltme" - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "2.2’den 2.4’e Sürüm Yükseltme" - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "2.5’ten 2.6’ya Sürüm Yükseltme" - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "2.6’dan 2.7’ye Sürüm Yükseltme" - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "2.7’den 3.0’a Sürüm Yükseltme" - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "3.0'dan 3.1'e Sürüm Yükseltme" - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "3.2'dan 3.3'e Sürüm Yükseltme" - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "3.3'dan 3.4'e Sürüm Yükseltme" - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "3.4’ten 3.5’e Sürüm Yükseltme" - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "3.5’ten 4.0’a Sürüm Yükseltme" - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "4.0’dan 4.1’e Sürüm Yükseltme" - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Sürüm 4.1'den 4.2'ye Yükseltme" - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "4.11'den 4.12'ye Sürüm Yükseltme" - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "4.13'ten 5.0'a Sürüm Yükseltme" - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "4.2'den 4.3'e Sürüm Yükseltme" - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "4.3'ten 4.4'e Sürüm Yükseltme" - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "4.4'ten 4.5'e Sürüm Yükseltme" - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "4.5'ten 4.6'ya Sürüm Yükseltme" - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "4.6.0'dan 4.6.2'ye Sürüm Yükseltme" - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "4.6.2'den 4.7'ye Sürüm Yükseltme" - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "4.7'den 4.8'e Sürüm Yükseltme" - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "4.8'den 4.9'a Sürüm Yükseltme" - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "4.9'dan 4.10'a Sürüm Yükseltme" - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "5.2'dan 5.3'a Sürüm Yükseltme" - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "5.3'ten 5.4'e Sürüm Yükseltme" - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "5.4'ten 5.5'e Sürüm Yükseltme" - -msgctxt "name" -msgid "Version Upgrade 5.6 to 5.7" -msgstr "" - -msgctxt "@button" -msgid "View printers in Digital Factory" -msgstr "Yazıcıları Digital Factory’de görüntüleyin" - -msgctxt "@label" -msgid "View type" -msgstr "Görüntüleme tipi" +msgctxt "@label" +msgid "View type" +msgstr "Görüntüleme tipi" msgctxt "@label link to technical assistance" msgid "View user manuals online" @@ -5494,7 +4822,6 @@ msgctxt "@info:title" msgid "Warning" msgstr "Uyarı" -#, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Uyarı: Profilin '{0}' kalite tipi, mevcut yapılandırma için kullanılabilir olmadığından profil görünür değil. Bu kalite tipini kullanabilen malzeme/nozül kombinasyonuna geçiş yapın." @@ -5521,7 +4848,7 @@ msgstr "Hangi yazıcıyı kurmak istersiniz?" msgctxt "@info:tooltip" msgid "What type of camera navigation should be used?" -msgstr "" +msgstr "Ne tür kamera navigasyonu kullanılmalı?" msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" @@ -5559,14 +4886,6 @@ msgctxt "@action:label" msgid "Width (mm)" msgstr "Genişlik (mm)" -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "G-code’u bir sıkıştırılmış arşive yazar." - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "G-code’u bir dosyaya yazar." - msgctxt "@label" msgid "X (Width)" msgstr "X (Genişlik)" @@ -5579,10 +4898,6 @@ msgctxt "@label" msgid "X min" msgstr "X min" -msgctxt "name" -msgid "X-Ray View" -msgstr "Röntgen Görüntüsü" - msgctxt "@item:inlistbox" msgid "X-Ray view" msgstr "Röntgen Görüntüsü" @@ -5595,10 +4910,6 @@ msgctxt "@item:inlistbox" msgid "X3D File" msgstr "X3D Dosyası" -msgctxt "name" -msgid "X3D Reader" -msgstr "X3D Okuyucu" - msgctxt "@label" msgid "Y (Depth)" msgstr "Y (Derinlik)" @@ -5616,33 +4927,20 @@ msgid "Yes" msgstr "Evet" msgctxt "@label" -msgid "" -"You are about to remove all printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr "" -"Tüm yazıcıları Cura'dan kaldırmak üzeresiniz. Bu işlem geri alınamaz.\n" +msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgstr "Tüm yazıcıları Cura'dan kaldırmak üzeresiniz. Bu işlem geri alınamaz." "Devam etmek istediğinizden emin misiniz?" -#, python-brace-format msgctxt "@label" -msgid "" -"You are about to remove {0} printer from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgid_plural "" -"You are about to remove {0} printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr[0] "" -"{0} yazıcıyı Cura'dan kaldırmak üzeresiniz. Bu işlem geri alınamaz.\n" -"Devam etmek istediğinizden emin misiniz?" -msgstr[1] "" -"{0} yazıcıyı Cura'dan kaldırmak üzeresiniz. Bu işlem geri alınamaz.\n" -"Devam etmek istediğinizden emin misiniz?" +msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgstr[0] "{0} yazıcıyı Cura'dan kaldırmak üzeresiniz. Bu işlem geri alınamaz.\nDevam etmek istediğinizden emin misiniz?" +msgstr[1] "{0} yazıcıyı Cura'dan kaldırmak üzeresiniz. Bu işlem geri alınamaz.\nDevam etmek istediğinizden emin misiniz?" msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "Ultimaker Connect çalıştırmayan bir yazıcıya bağlanmaya çalışıyorsunuz. Lütfen yazıcının donanım yazılımını son sürüme güncelleyin." -#, python-brace-format msgctxt "@info:status" msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." msgstr "{0} ile bağlantı kurmayı deniyorsunuz ancak cihaz bir grubun ana makinesi değil. Bu cihazı grup ana makinesi olarak yapılandırmak için web sayfasını ziyaret edebilirsiniz." @@ -5653,9 +4951,8 @@ msgstr "Şu anda yedeklemeniz yok. Oluşturmak için “Şimdi Yedekle” düğm msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "" -"Bazı profil ayarlarını özelleştirdiniz.\n" -"Profiller arasında geçiş yapıldıktan sonra bu değişiklikleri tutmak ister misiniz?\n" +msgstr "Bazı profil ayarlarını özelleştirdiniz." +"Profiller arasında geçiş yapıldıktan sonra bu değişiklikleri tutmak ister misiniz?" "Alternatif olarak, '%1' üzerinden varsayılanları yüklemek için değişiklikleri silebilirsiniz." msgctxt "@label" @@ -5686,13 +4983,9 @@ msgctxt "@info" msgid "Your new printer will automatically appear in Cura" msgstr "Yeni yazıcınız Cura’da otomatik olarak görünecektir" -#, python-brace-format msgctxt "@info:status" -msgid "" -"Your printer {printer_name} could be connected via cloud.\n" -" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "" -"{printer_name} adlı yazıcınız bulut aracılığıyla bağlanamadı.\n" +msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "{printer_name} adlı yazıcınız bulut aracılığıyla bağlanamadı." " Baskı kuyruğunuzu yönetin ve yazıcınızı Digital Factory'ye bağlayarak baskılarınızı dilediğiniz yerden takip edin" msgctxt "@label" @@ -5741,7 +5034,7 @@ msgstr "mm" msgctxt "@label" msgid "s" -msgstr "" +msgstr "s" msgctxt "@info:status" msgid "today" @@ -5755,7 +5048,6 @@ msgctxt "@label" msgid "version: %1" msgstr "sürüm: %1" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "{printer_name} yazıcısı bir sonraki hesap senkronizasyonuna kadar kaldırılacak." @@ -5764,21 +5056,553 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "{} eklenti indirilemedi" -#~ msgctxt "@label" -#~ msgid "Default" -#~ msgstr "Varsayılan" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "UltiMaker ağ bağlantılı yazıcılara olan ağ bağlantılarını yönetir." + +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "Ultimaker Ağ Bağlantısı" + +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "G-code dosyalarından profilleri içe aktarmak için destek sağlar." -#~ msgid "Provides support for exporting Cura profiles." -#~ msgstr "Cura profillerinin dışa aktarımı için destek sağlar." +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "G-code Profil Okuyucu" -#~ msgctxt "description" -#~ msgid "Provides support for writing 3MF files." -#~ msgstr "3MF dosyalarının yazılması için destek sağlar." +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Normal gerçek bir ağ görünümü sağlar." -#~ msgctxt "@option" -#~ msgid "Save Cura project and print file" -#~ msgstr "Cura projesini kaydet ve dosyayı yazdır" +msgctxt "name" +msgid "Solid View" +msgstr "Gerçek Görünüm" -#~ msgctxt "@message" -#~ msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -#~ msgstr "Dilimleme işlemi beklenmeyen bir hatayla başarısız oldu. Lütfen sorun izleyicimizde hata bildirmeyi düşünün." +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "Yüksek akışlı sıçramaları sınırlamak amacıyla akışı kademeli olarak düzelten CuraEngine eklentisi" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "3MF dosyalarının okunması için destek sağlar." + +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF Okuyucu" + +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "G-Code’ları kabul eder ve bir yazıcıya gönderir. Eklenti aynı zamanda üretici sürümünü güncelleyebilir." + +msgctxt "name" +msgid "USB printing" +msgstr "USB yazdırma" + +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Bellenim güncellemelerini denetler." + +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Bellenim Güncelleme Denetleyicisi" + +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Uygulamanın uzantılarını yönetir ve Ultimaker web sitesinden uzantıların incelenmesini sağlar." + +msgctxt "name" +msgid "Marketplace" +msgstr "Mağaza" + +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Yapılandırmanızı yedekleyin ve geri yükleyin." + +msgctxt "name" +msgid "Cura Backups" +msgstr "Cura Yedeklemeleri" + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Makine ayarlarının değiştirilmesini sağlar (yapı hacmi, nozül boyutu vb.)" + +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Makine Ayarları eylemi" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Yapılandırmaları Cura 2.5’ten Cura 2.6’ya yükseltir." + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "2.5’ten 2.6’ya Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Yapılandırmaları Cura 4.7'den Cura 4.8'e yükseltir." + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "4.7'den 4.8'e Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Yapılandırmaları Cura 4.4'ten Cura 4.5'e yükseltir." + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "4.4'ten 4.5'e Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Yapılandırmaları Cura 3.0'dan Cura 3.1'e yükseltir." + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "3.0'dan 3.1'e Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Yapılandırmaları Cura 4.11'den Cura 4.12'ye yükseltir." + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "4.11'den 4.12'ye Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Yapılandırmaları Cura 4.1'den Cura 4.2'ye yükseltir." + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Sürüm 4.1'den 4.2'ye Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Yapılandırmaları Cura 2.6’dan Cura 2.7’ye yükseltir." + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "2.6’dan 2.7’ye Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Yapılandırmaları Cura 4.6.0'dan Cura 4.6.2'ye yükseltir." + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "4.6.0'dan 4.6.2'ye Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Yapılandırmaları Cura 3.3’ten Cura 3.4’ya yükseltir." + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "3.3'dan 3.4'e Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Yapılandırmaları Cura 4.8'den Cura 4.9'a yükseltir." + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "4.8'den 4.9'a Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Yapılandırmaları Cura 4.5'ten Cura 4.6'ya yükseltir." + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "4.5'ten 4.6'ya Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Yapılandırmaları Cura 4.2'den Cura 4.3'e yükseltir." + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "4.2'den 4.3'e Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Yapılandırmaları Cura 3.2’ten Cura 3.3’ya yükseltir." + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "3.2'dan 3.3'e Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Yapılandırmaları Cura 4.3'ten Cura 4.4'e yükseltir." + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "4.3'ten 4.4'e Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "Yapılandırmaları, Cura 5.6'dan Cura 5.7'ye yükseltir." + +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "5.6'dan 5.7'ye Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Yapılandırmaları Cura 2.1’den Cura 2.2’ye yükseltir." + +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "2.1’den 2.2’ye Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Cura 5.3'ten Cura 5.4'e yükseltme yapılandırmaları" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "5.3'ten 5.4'e Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Yapılandırmaları Cura 4.9'dan Cura 4.10'a yükseltir." + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "4.9'dan 4.10'a Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Yapılandırmaları Cura 2.7’den Cura 3.0’a yükseltir." + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "2.7’den 3.0’a Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Yapılandırmaları Cura 3.5’ten Cura 4.0’a yükseltir." + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "3.5’ten 4.0’a Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Yapılandırmaları Cura 5.2'dan Cura 5.3'a yükseltir." + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "5.2'dan 5.3'a Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Yapılandırmaları Cura 4.0’dan Cura 4.1’e yükseltir." + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "4.0’dan 4.1’e Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Yapılandırmaları Cura 4.13'ten Cura 5.0'a yükseltir." + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "4.13'ten 5.0'a Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Yapılandırmaları Cura 3.4’ten Cura 3.5’e yükseltir." + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "3.4’ten 3.5’e Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Yapılandırmaları Cura 2.2’den Cura 2.4’e yükseltir." + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "2.2’den 2.4’e Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Yapılandırmaları Cura 4.6.2'den Cura 4.7'ye yükseltir." + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "4.6.2'den 4.7'ye Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Cura 5.4'ten Cura 5.5'e yükseltme yapılandırmaları" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "5.4'ten 5.5'e Sürüm Yükseltme" + +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "G-code dosyalarının yüklenmesine ve görüntülenmesine olanak tanır." + +msgctxt "name" +msgid "G-code Reader" +msgstr "G-code Okuyucu" + +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Anonim dilim bilgisi gönderir. Tercihlerden devre dışı bırakılabilir." + +msgctxt "name" +msgid "Slice info" +msgstr "Dilim bilgisi" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Çıkarılabilir sürücünün takılıp çıkarılmasını ve yazma desteği sağlar." + +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Çıkarılabilir Sürücü Çıkış Cihazı Eklentisi" + +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Belirli yerlerde desteğin yazdırılmasını engellemek için bir silici yüzey oluşturur" + +msgctxt "name" +msgid "Support Eraser" +msgstr "Destek Silici" + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Olası yazdırma sorunlarına karşı modelleri ve yazdırma yapılandırmasını kontrol eder ve öneriler verir." + +msgctxt "name" +msgid "Model Checker" +msgstr "Model Kontrol Edici" + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Cura’da hazırlık aşaması sunar." + +msgctxt "name" +msgid "Prepare Stage" +msgstr "Hazırlık Aşaması" + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Dilimlenen katman verilerinin önizlemesini sağlar." + +msgctxt "name" +msgid "Simulation View" +msgstr "Simülasyon Görünümü" + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "AMF dosyalarının okunması için destek sağlar." + +msgctxt "name" +msgid "AMF Reader" +msgstr "AMF Okuyucu" + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Röntgen Görüntüsü sağlar." + +msgctxt "name" +msgid "X-Ray View" +msgstr "Röntgen Görüntüsü" + +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Aygıt yazılımını güncellemeye yönelik makine eylemleri sağlar." + +msgctxt "name" +msgid "Firmware Updater" +msgstr "Aygıt Yazılımı Güncelleyici" + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Eski Cura sürümlerinden profilleri içe aktarmak için destek sağlar." + +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Eski Cura Profil Okuyucu" + +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Kullanıcının oluşturduğu komut dosyalarına son işleme için izin veren uzantı" + +msgctxt "name" +msgid "Post Processing" +msgstr "Son İşleme" + +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Çökme raporlayıcının kullanabilmesi için belirli olayları günlüğe kaydeder" + +msgctxt "name" +msgid "Sentry Logger" +msgstr "Nöbetçi Günlükçü" + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "MakerBot Format Paketleri yazmayı destekler." + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "Makerbot Baskı Dosyası Yazarı" + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Cura profillerinin içe aktarılması için destek sağlar." + +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Cura Profil Okuyucu" + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Ultimaker Biçim Paketlerinin okunması için destek sağlar." + +msgctxt "name" +msgid "UFP Reader" +msgstr "UFP Okuyucu" + +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "2D resim dosyasından yazdırılabilir geometri oluşturulmasını sağlar." + +msgctxt "name" +msgid "Image Reader" +msgstr "Resim Okuyucu" + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "CuraEngine arka dilimleme ucuna bağlantı sağlar." + +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine Arka Uç" + +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "G-code’u bir sıkıştırılmış arşive yazar." + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Sıkıştırılmış G-code Yazıcısı" + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Ultimaker makineleri için makine eylemleri sunar (yatak dengeleme sihirbazı, yükseltme seçme vb.)" + +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Ultimaker makine eylemleri" + +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Bir sıkıştırılmış arşivden g-code okur." + +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Sıkıştırılmış G-code Okuyucusu" + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Cura’da ön izleme aşaması sunar." + +msgctxt "name" +msgid "Preview Stage" +msgstr "Öz İzleme Aşaması" + +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Digital Library'ye bağlanarak Cura'nın Digital Library'deki dosyaları açmasına ve kaydetmesine olanak tanır." + +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Cura profillerinin dışa aktarılması için destek sağlar." + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura Profili Yazıcı" + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "X3D dosyalarının okunması için destek sağlar." + +msgctxt "name" +msgid "X3D Reader" +msgstr "X3D Okuyucu" + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Model dosyalarını okuma desteği sağlar." + +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh Okuyucu" + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Cura’da görüntüleme aşaması sunar." + +msgctxt "name" +msgid "Monitor Stage" +msgstr "Görüntüleme Aşaması" + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Model Başına Ayarları sağlar." + +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Model Başına Ayarlar Aracı" + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "XML tabanlı malzeme profillerini okuma ve yazma olanağı sağlar." + +msgctxt "name" +msgid "Material Profiles" +msgstr "Malzeme Profilleri" + +msgctxt "description" +msgid "Provides support for writing 3MF and UCP files." +msgstr "3MF ve UCP dosyalarının yazılması için destek sağlar." + +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF Yazıcı" + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Ultimaker Biçim Paketleri yazmak için destek sağlar." + +msgctxt "name" +msgid "UFP Writer" +msgstr "UPF Yazıcı" + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "G-code’u bir dosyaya yazar." + +msgctxt "name" +msgid "G-code Writer" +msgstr "G-code Yazıcı" diff --git a/resources/i18n/tr_TR/fdmextruder.def.json.po b/resources/i18n/tr_TR/fdmextruder.def.json.po index a79f169d345..1aff2db5e21 100644 --- a/resources/i18n/tr_TR/fdmextruder.def.json.po +++ b/resources/i18n/tr_TR/fdmextruder.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,186 +12,114 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Yapıştırma" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Kullanılan filamanın çapını ayarlar. Bu değeri kullanılan filaman çapı ile eşitleyin." - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Yapı Levhası Yapıştırması" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Çap" - -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "Bu ekstrüderden geçiş yaparken çalıştırmak üzere G Code’u sonlandırın." - msgctxt "extruder_nr label" msgid "Extruder" msgstr "Ekstrüder" +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "Yazdırma için kullanılan ekstruder dişli çark. Çoklu ekstrüzyon işlemi için kullanılır." + +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Ekstrüder Yazıcı Soğutma Fanı" + +msgctxt "machine_extruder_cooling_fan_number description" +msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." +msgstr "Bu ekstrüdere bağlı yazıcı soğutma fanı sayısı. Yalnızca her bir ekstrüder için farklı yazıcı soğutma fanınız varsa bunu 0 varsayılan değeri olarak değiştirin." + msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "Ekstruder G-Code'u Sonlandırma" +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "Bu ekstrüderden geçiş yaparken çalıştırmak üzere G Code’u sonlandırın." + msgctxt "machine_extruder_end_code_duration label" msgid "Extruder End G-Code Duration" -msgstr "" +msgstr "Ekstruder Bitiş G Kodu Süresi" + +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "Bu ekstruderden ayrılırken son g kodunun uygulanması için gereken süre." msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Ekstruderin Mutlak Bitiş Konumu" +msgctxt "machine_extruder_end_pos_abs description" +msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." +msgstr "Ekstruder bitiş konumunu, yazıcı başlığının son konumuna göre ayarlamak yerine mutlak olarak ayarlayın." + msgctxt "machine_extruder_end_pos_x label" msgid "Extruder End Position X" msgstr "Ekstruderin X Bitiş Konumu" +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "Ekstruder kapatılırken bitiş konumunun x koordinatı." + msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Ekstruderin Y Bitiş Konumu" -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Extruder İlk X konumu" - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Extruder İlk Y konumu" - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Ekstruder İlk Z konumu" - -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Ekstrüder Yazıcı Soğutma Fanı" +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "Ekstruder kapatılırken bitiş konumunun Y koordinatı." msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "Ekstruder G-Code'u Başlatma" +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "Bu ekstrüdere geçiş yaparken çalıştırmak üzere G Code’u başlatın." + msgctxt "machine_extruder_start_code_duration label" msgid "Extruder Start G-Code Duration" -msgstr "" +msgstr "Ekstruder Başlangıç ​​G Kodu Süresi" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "Bu ekstrudere geçiş sırasında başlangıç ​​g kodunun uygulanması için gereken süre." msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Ekstruderin Mutlak Başlangıç Konumu" +msgctxt "machine_extruder_start_pos_abs description" +msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." +msgstr "Ekstruder başlama konumunu, yazıcı başlığının son konumuna göre ayarlamak yerine mutlak olarak ayarlayın." + msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "Ekstruder X Başlangıç Konumu" +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "Ekstruder açılırken başlangıç konumunun x koordinatı." + msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "Ekstruder Y Başlangıç Konumu" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Makine" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Makine özel ayarları" - -msgctxt "machine_extruder_end_pos_abs description" -msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." -msgstr "Ekstruder bitiş konumunu, yazıcı başlığının son konumuna göre ayarlamak yerine mutlak olarak ayarlayın." - -msgctxt "machine_extruder_start_pos_abs description" -msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." -msgstr "Ekstruder başlama konumunu, yazıcı başlığının son konumuna göre ayarlamak yerine mutlak olarak ayarlayın." - -msgctxt "material description" -msgid "Material" -msgstr "Malzeme" - -msgctxt "material label" -msgid "Material" -msgstr "Malzeme" - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Nozül Çapı" - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Nozül Kimliği" +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "Ekstruder açılırken başlangıç konumunun Y koordinatı." msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "Nozül NX Ofseti" -msgctxt "machine_nozzle_offset_y label" -msgid "Nozzle Y Offset" -msgstr "Nozül Y Ofseti" - -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "Bu ekstrüdere geçiş yaparken çalıştırmak üzere G Code’u başlatın." - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun X koordinatı." - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Y koordinatı." - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Z koordinatı." - -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "Yazdırma için kullanılan ekstruder dişli çark. Çoklu ekstrüzyon işlemi için kullanılır." - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Nozül iç çapı. Standart olmayan nozül boyutu kullanırken bu ayarı değiştirin." - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "Ekstruder dişli çarkı için nozül kimliği, “AA 0.4” ve “BB 0.8” gibi." - -msgctxt "machine_extruder_cooling_fan_number description" -msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." -msgstr "Bu ekstrüdere bağlı yazıcı soğutma fanı sayısı. Yalnızca her bir ekstrüder için farklı yazıcı soğutma fanınız varsa bunu 0 varsayılan değeri olarak değiştirin." - -msgctxt "machine_extruder_end_code_duration description" -msgid "The time it takes to execute the end g-code, when switching away from this extruder." -msgstr "" - -msgctxt "machine_extruder_start_code_duration description" -msgid "The time it'll take to execute the start g-code, when switching to this extruder." -msgstr "" - -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "Ekstruder kapatılırken bitiş konumunun x koordinatı." - msgctxt "machine_nozzle_offset_x description" msgid "The x-coordinate of the offset of the nozzle." msgstr "Nozül ofsetinin x koordinatı." -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "Ekstruder açılırken başlangıç konumunun x koordinatı." - -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "Ekstruder kapatılırken bitiş konumunun Y koordinatı." +msgctxt "machine_nozzle_offset_y label" +msgid "Nozzle Y Offset" +msgstr "Nozül Y Ofseti" msgctxt "machine_nozzle_offset_y description" msgid "The y-coordinate of the offset of the nozzle." msgstr "Nozül ofsetinin y koordinatı." - -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "Ekstruder açılırken başlangıç konumunun Y koordinatı." diff --git a/resources/i18n/tr_TR/fdmprinter.def.json.po b/resources/i18n/tr_TR/fdmprinter.def.json.po index dd35f09d61c..07be4791874 100644 --- a/resources/i18n/tr_TR/fdmprinter.def.json.po +++ b/resources/i18n/tr_TR/fdmprinter.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-12 15:10+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,5772 +12,5682 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "prime_tower_mode description" -msgid "How to generate the prime tower:
                                      • Normal: create a bucket in which secondary materials are primed
                                      • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
                                      " -msgstr "" - -msgctxt "brim_inside_margin description" -msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." -msgstr "" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Makine" -msgctxt "ironing_inset description" -msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." -msgstr "Modelin kenarlarından bırakılması gereken mesafe. Ağın kenarlarına kadar ütülemek baskınızın kenarlarının pürüzlü olmasına neden olabilir." +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Makine özel ayarları" -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "Besleme ünitesi ile nozül haznesi arasına sıkıştırılacak filamenti belirten faktördür ve filament değişimi için malzemenin ne kadar hareket ettirileceğini belirlemek için kullanılır." +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Makine Türü" -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Üst yüzey katmanları çizgi veya zikzak biçimindeyken kullanılacak tam sayı hat yönü listesi. Listedeki öğeler, katmanlar ilerledikçe sıralı olarak kullanılır. Listenin sonuna ulaşıldığında tekrar başa dönülür. Liste öğeleri virgülle ayrılır ve tüm liste köşeli parantez içine alınır. Varsayılan ayar boş listedir ve geleneksel varsayılan açılar (45 ve 135 derece) kullanılır." +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "3B yazıcı modelinin adı." -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Üst/alt katmanlar çizgi veya zikzak şekillerini kullandığında kullanılacak tam sayı çizgi yönü listesi. Listedeki öğeler, katmanlar ilerledikçe sıralı olarak kullanılır. Listenin sonuna ulaşıldığında baştan başlanır. Liste öğeleri virgülle ayrılır ve tüm liste köşeli parantez içine alınır. Varsayılan ayar boş listedir ve geleneksel varsayılan açılar (45 ve 135 derece) kullanılır." +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Makine Varyantlarını Göster" -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "Kullanılacak tam hat yönlerinin listesi. Katmanlar ilerledikçe listedeki öğeler sırayla kullanılır ve listenin sonuna gelindiğinde tekrar baştan başlanır. Liste öğeleri virgülle ayrılır ve listenin tamamı köşeli paranteze alınır. Varsayılan ayar listenin boş olmasıdır ve bu durumda varsayılan açı 0'dır." +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "Ayrı json dosyalarında belirtilen bu makinenin farklı varyantlarının gösterilip gösterilmemesi." -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Kullanılacak tam hat yönlerinin listesi. Listedeki öğeler katmanlar ilerledikçe sırayla kullanılır ve listenin sonuna gelindiğinde tekrar baştan başlanır. Liste öğeleri virgülle ayrılır ve listenin tamamı köşeli paranteze alınır. Varsayılan ayar, varsayılan açıların kullanıldığı (ara birimler biraz kalınsa 45 ile 135 derece arasında değişir veya 90 derecedir) boş listedir." +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "G-code’u Başlat" -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Kullanılacak tam hat yönlerinin listesi. Katmanlar ilerledikçe listedeki öğeler sırayla kullanılır ve listenin sonuna gelindiğinde tekrar baştan başlanır. Liste öğeleri virgülle ayrılır ve listenin tamamı köşeli paranteze alınır. Varsayılan ayar, varsayılan açıların kullanıldığı (ara birimler biraz kalınsa 45 ile 135 derece arasında değişir veya 90 derecedir) boş listedir." +msgctxt "machine_start_gcode description" +msgid "G-code commands to be executed at the very start - separated by \n." +msgstr "ile ayrılan, başlangıçta yürütülecek G-code komutları" +"." -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Kullanılacak tam hat yönlerinin listesi. Katmanlar ilerledikçe listedeki öğeler sırayla kullanılır ve listenin sonuna gelindiğinde tekrar baştan başlanır. Liste öğeleri virgülle ayrılır ve listenin tamamı köşeli paranteze alınır. Varsayılan ayar, varsayılan açıların kullanıldığı (ara birimler biraz kalınsa 45 ile 135 derece arasında değişir veya 90 derecedir) boş listedir." +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "G-code’u Sonlandır" -msgctxt "infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." -msgstr "Kullanılacak tam sayı hat yönü listesi. Listedeki öğeler, katmanlar ilerledikçe sıralı olarak kullanılır. Listenin sonuna ulaşıldığında baştan başlanır. Liste öğeleri virgülle ayrılır ve tüm liste köşeli parantez içine alınır. Varsayılan ayar boş listedir ve geleneksel varsayılan açılar kullanılır (çizgiler ve zikzak şekiller için 45 ve 135 derece; diğer tüm şekiller için 45 derece)." +msgctxt "machine_end_gcode description" +msgid "G-code commands to be executed at the very end - separated by \n." +msgstr "En son çalıştırılacak G-code komutları (" +" ile ayrılır)." -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "Nozülün girmesine izin verilmeyen alanlara sahip poligon listesi." +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "GUID malzeme" -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "Yazıcı başlığının giremediği alanları olan poligon listesi." +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "Malzemedeki GUID Otomatik olarak ayarlanır." -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "Dalların destekledikleri noktalardan ne kadar uzağa hareket edebileceğine dair bir tavsiye. Dallar hedeflerine (yapı levhası veya modelin düz bir parçası) ulaşmak için bu değeri ihlal edebilir. Bu değeri düşürmek, desteği daha sağlam hale getirecek, ancak dal miktarını (ve bu nedenle, malzeme kullanımı/baskı süresini) artıracaktır" +msgctxt "material_type label" +msgid "Material Type" +msgstr "Malzeme Türü" -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Mutlak Ekstruder İlk Konumu" +msgctxt "material_type description" +msgid "The type of material used." +msgstr "Kullanılan malzemenin türü." -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Uyarlanabilir Katmanların Azami Değişkenliği" +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "Malzeme Markası" -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Uyarlanabilir Katman Topografisi Boyutu" +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "Kullanılan malzemenin markası." -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Uyarlanabilir Katmanların Değişkenlik Adım Boyu" +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Çap" -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "Uyarlanabilir katmanlar modelin şekline bağlı olarak katman yüksekliğini hesaplar." +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Kullanılan filamanın çapını ayarlar. Bu değeri kullanılan filaman çapı ile eşitleyin." -msgctxt "infill_wall_line_count description" -msgid "" -"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" -"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "" -"Dolgu alanının etrafına ekstra duvar ekle. Bu duvarlar üst/alt yüzey hatlarının daha az aşağı düşmesini sağlar. Yani biraz fazla materyal kullanarak, daha az üst/alt yüzey katmanı ile aynı kaliteyi yakalayabilirsiniz.\n" -"Bu özellik, doğru konfigüre edildiğinde, harekete veya geri çekmeye gerek kalmadan Dolgu Poligonlarını Bağlama ile birlikte tüm dolguyu tek bir ekstrüzyon yoluna bağlayabilir." +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Yapı Levhasının Isınmasını Bekle" -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Yapıştırma" +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "Yapı levhası sıcaklığı başlangıca ulaşana kadar bekleme komutu ekleyip eklememe." -msgctxt "material_adhesion_tendency label" -msgid "Adhesion Tendency" -msgstr "Yapışma Eğilimi" +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Nozülün Isınmasını Bekle" -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Duvarlar ile yüzey ekseni (uçları) arasındaki çakışma miktarını yüzey hatlarının hat genişliği ile en içteki duvarın bir yüzdesi olarak ayarlayın. Az miktar çakışma duvarların yüzeye sıkıca bağlanmasını sağlar. Eşit yüzey ve duvar hattı genişliği söz konusu olduğunda, %50’nin üstündeki yüzdelerde bu noktada yüzey ekstrüderinin nozül konumu halihazırda duvarın ortasına ulaşmış olacağından yüzeyin duvarı geçmiş olabileceğini unutmayın." +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "Yapı levhası sıcaklığı başlangıca ulaşana kadar bekleyip beklememe." -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Duvarlar ile yüzey ekseni (uçları) arasındaki çakışma miktarını ayarlayın. Az miktar çakışma duvarların yüzeye sıkıca bağlanmasını sağlar. Eşit yüzey ve duvar hattı genişliği söz konusu olduğunda, duvar kalınlığının yarısından fazla değerlerde bu noktada yüzey ekstrüderinin nozül konumu halihazırda duvarın ortasına ulaşmış olacağından yüzeyin duvarı geçmiş olabileceğini unutmayın." +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Malzeme Sıcaklıklarını Ekle" -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Yazdırma dolgusunun yoğunluğunu ayarlar." +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "Gcode başlangıcında nozül sıcaklık komutlarını ekleyip eklememe. start_gcode zaten nozül sıcaklığı içeriyorsa Cura ön ucu otomatik olarak bu ayarı devre dışı bırakır." -msgctxt "support_interface_density description" -msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Destek yapısının çatılarının ve zeminlerinin yoğunluğunu ayarlar. Daha yüksek bir değer daha iyi çıkıntılar ortaya çıkarırken, desteklerin kaldırılmasını zorlaştırır." +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Yapı Levhası Sıcaklığını Ekle" -msgctxt "support_tree_top_rate description" -msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "Dalların uçlarını oluşturmak için kullanılan destek yapısının yoğunluğunu ayarlar. Daha yüksek bir değer daha iyi çıkıntılar sağlar, ancak desteklerin çıkarılması daha zordur. Çok yüksek değerler için Destek Çatısı’nı kullanın veya destek yoğunluğunun en üstte benzer şekilde yüksek olmasını sağlayın." +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "Gcode başlangıcında yapı levhası sıcaklık komutlarını ekleyip eklememe. start_gcode zaten yapı levhası sıcaklığı içeriyorsa Cura ön ucu otomatik olarak bu ayarı devre dışı bırakır." -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Destek yapısının yoğunluğunu ayarlar. Daha yüksek bir değer daha iyi çıkıntılar ortaya çıkarırken desteklerin kaldırılmasını zorlaştırır." +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Makine Genişliği" -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Kullanılan filamanın çapını ayarlar. Bu değeri kullanılan filaman çapı ile eşitleyin." +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "Yazdırılabilir alan genişliği (X yönü)." -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "Destek yapılarının yerleştirilmesini ayarlar. Yerleştirme, temas eden yapı levhasına veya her bölüme ayarlanabilir. Her bölüme ayarlandığında, destek yapıları da modelde yazdırılacaktır." +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Makine Derinliği" -msgctxt "prime_tower_wipe_enabled description" -msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." -msgstr "Bir nozül ile ilk direği yazdırdıktan sonra, diğer nozülden ilk direğe sızdırılan malzemeyi silin." +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "Yazdırılabilir alan derinliği (Y yönü)." -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "Makine bir ekstruderden diğerine geçtikten sonra, nozül ve baskı arasında açıklık oluşması için yapı levhası indirilir. Nozülün baskı dışına malzeme sızdırmasını önler." +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Makine Yüksekliği" -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Tümü" +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "Yazdırılabilir alan yüksekliği (Z yönü)." -msgctxt "print_sequence option all_at_once" -msgid "All at Once" -msgstr "Tümünü birden" +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Yapı Levhası Şekli" -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "Yazdırma çözünürlüğünü etkileyen tüm ayarlar. Bu ayarların (ve yazdırma süresinin) kalite üzerinde büyük bir etkisi vardır" +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "Yazdırılamayan alanların haricinde yapı levhasının şekli." -msgctxt "user_defined_print_order_enabled description" -msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." -msgstr "" +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Dikdörtgen" -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Alternatif Ek Duvar" +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Eliptik" -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Alternatif Örgü Giderimi" +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Yapı Levhası Malzemesi" -msgctxt "material_alternate_walls label" -msgid "Alternate Wall Directions" -msgstr "Duvar Yönlerini Değiştir" +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "Yazıcıya takılı yapı levhasının malzemesi." -msgctxt "material_alternate_walls description" -msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." -msgstr "Duvar yönlerini her katmanda ve iç dolguda değiştirin. Metal baskıdaki gibi stres oluşturabilen malzemeler için kullanışlıdır." +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Cam" msgctxt "machine_buildplate_type option aluminum" msgid "Aluminum" msgstr "Alüminyum" +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Isıtılmış Yapı Levhası İçerir" + +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "Makinenin mevcut yapı levhasını ısıtıp ısıtmadığı." + +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "Yapı Hacmi Sıcaklığı Dengesi Mevcut" + +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "Makinenin yapı hacmi sıcaklığını dengeleyip dengelemediği." + msgctxt "machine_always_write_active_tool label" msgid "Always Write Active Tool" msgstr "Her Zaman Aktif Aracı Yaz" -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "Dış duvar başlatmaya giderken her zaman geri çeker." - -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "Her katmandaki poligonlara uygulanan ofset miktarı. Pozitif değerler büyük boşlukları telafi ederken negatif değerler küçük boşlukları telafi edebilir." +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "Aktif olmayan araca geçici komut gönderildikten sonra aktif aracı yazın. Smoothie veya modal araç komutlarına sahip diğer donanım yazılımları ile Çift Ekstrüderli baskı için gereklidir." -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "İlk katmandaki tüm poligonlara uygulanan ofset miktarı. Negatif bir değer “fil ayağı” olarak bilinen ilk katman ezilmesini dengeleyebilir." - -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "Her katmandaki tüm destek poligonlarına uygulanan ofset miktarı. Pozitif değerler destek alanlarını pürüzsüzleştirebilir ve daha sağlam destek sağlayabilir." - -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "Destek zeminlerine uygulanan ofset miktarı." - -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "Destek çatılarına uygulanan ofset miktarı." - -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "Destek arayüzü poligonlarına uygulanan ofset miktarı." - -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "Filamanın sürme dizisi sırasında sızıntı yapmaması için filanın geri çekilme miktarı." - -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "Bu küpün bölünüp bölünmemesine karar vermek için modelin sınırını kontrol eden ve her bir küpün merkezinden alınan yarıçapa ekleme. Büyük değerler modelin sınırının yanında daha kalın küçük küp kalkanları oluşmasına neden olur." - -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Çıkıntı Önleme Örgüsü" - -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Sızma Önleme Geri Çekme Mesafesi" - -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Sızma Önleme Geri Çekme Hızı" - -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "Ekstrüder ofsetini koordinat sistemine uygulayın. Tüm ekstrüderleri etkiler." - -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "Modellerin temas ettiği yerlerde, iç içe geçen bir kiriş yapısı oluşturun. Bu, özellikle farklı malzemelerden basılmış modellerde, modeller arasındaki yapışmayı iyileştirir." - -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Hareket Sırasında Yazdırılan Bölümleri Atlama" - -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Hareket Sırasında Destekleri Atla" - -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Geri" - -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Sol Arka" - -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Sağ Arka" - -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Her İkisi" - -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "Her ikisi de çakışıyor" - -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Alt katmanlar" - -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Alt Şekil İlk Katmanı" - -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Alt Yüzey Genişleme Mesafesi" - -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Alt Yüzey Kaldırma Genişliği" - -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Alt Kalınlık" - -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "Dal Yoğunluğu" - -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "Dal Çapı" - -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "Dal Çapı Açısı" - -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Geri Çekme Pozisyonunda Durma Mesafesi" - -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Durma Payına Uygun Geri Çekme Hızı" - -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Kopma Hazırlığı Sıcaklığı" - -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Kopma Geri Çekme Mesafesi" - -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Kopma Geri Çekme Hızı" - -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Kopma Sıcaklığı" - -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Parçalarda Döküm Desteği" - -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Köprü Fan Hızı" - -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Köprüde Birden Fazla Katman Var" - -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Köprü İkinci Yüzey Alanı Yoğunluğu" - -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Köprü İkinci Yüzey Alanı Fan Hızı" - -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Köprü İkinci Yüzey Alanı Akışı" - -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Köprü İkinci Yüzey Alanı Hızı" - -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Köprü Yüzey Alanı Yoğunluğu" - -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Köprü Yüzey Alanı Akışı" - -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Köprü Yüzey Alanı Hızı" - -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Köprü Yüzey Alanı Destek Eşiği" - -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Maksimum Köprü Seyrek Dolgu Yoğunluğu" - -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Köprü Üçüncü Yüzey Alanı Yoğunluğu" - -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Köprü Üçüncü Yüzey Alanı Fan Hızı" - -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Köprü Üçüncü Yüzey Alanı Akışı" - -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Köprü Üçüncü Yüzey Alanı Hızı" - -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Köprü Duvarı Tarama" - -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Köprü Duvarı Akışı" - -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Köprü Duvarı Hızı" - -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Kenar" - -msgctxt "brim_inside_margin label" -msgid "Brim Avoid Margin" -msgstr "" - -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Uç Mesafesi" - -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Kenar Hattı Sayısı" - -msgctxt "brim_location label" -msgid "Brim Location" -msgstr "" - -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Kenar, Desteği Değiştirir" - -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Kenar Genişliği" - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Yapı Levhası Yapıştırması" - -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Yapı Levhası Yapıştırma Ekstruderi" - -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Yapı Levhası Türü" - -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Yapı Levhası Malzemesi" - -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Yapı Levhası Şekli" - -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Yapı Levhası Sıcaklığı" - -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "İlk Katman Yapı Levhası Sıcaklığı" - -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Yapı Disk Bölümü Sıcaklığı" - -msgctxt "bv_temp_anomaly_limit label" -msgid "Build Volume temperature Limit" -msgstr "" - -msgctxt "bv_temp_warn_limit label" -msgid "Build Volume temperature Warning" -msgstr "" - -msgctxt "prime_tower_brim_enable description" -msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "Bu ayarı etkinleştirmeniz, modelinizde olmasa bile prime tower'ınıza bir brim kazandırır. Eğer yüksek bir kule için daha sağlam bir taban istiyorsanız, taban yüksekliğini artırabilirsiniz." - -msgctxt "center_object label" -msgid "Center Object" -msgstr "Nesneyi ortalayın" - -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "En az desteğin istenmesi için yazdırılan modelin geometrisini değiştirin. Dik çıkıntılar sığlaşacaktır. Çıkıntılı alanlar daha dikey biçimde olmak için alçalacaktır." - -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "Destek oluşturmak için kullanılabilir teknikler arasından seçim yapar. \"Normal\" destek, çıkıntılı parçaların hemen altında bir destek yapısı oluşturur ve bu alanları dümdüz aşağı indirir. \"Ağaç\"destek, çıkıntılı alanlara doğru dallar oluşturur ve bu dalların uçlarıyla model desteklenir; dallar modelin etrafına sarılarak yapı plakasından olabildiğince destek alır." - -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Tarama Hızı" - -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Tarama Hacmi" - -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "Tarama, ekstrüzyon yolunun son parçasını hareket parça ile değiştirir. Dizimli azaltmak amacıyla sızdırılan malzeme ekstrüzyon yolunun son parçasını yazdırmak için kullanılır." - -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Tarama Modu" - -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "Tarama, hareket sırasında nozülü daha önce yazdırılmış alanlarda tutar. Bu durum hareketleri biraz uzatır ancak geri çekme ihtiyacını azaltır. Tarama kapalıysa malzeme geri çekilecektir, nozül ise bir sonraki noktaya düz bir çizgi üzerinden gider. Üst/alt yüzey alanlarının üzerinde tarama yapılmayabilir veya sadece dolgu içerisinde tarama yapılabilir." - -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Komut Satırı Ayarları" - -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Eş merkezli" - -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Eş merkezli" +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "Merkez Nokta" -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Eş merkezli" +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "Yazıcı sıfır noktasının X/Y koordinatlarının yazdırılabilir alanın merkezinde olup olmadığı." -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Eş Merkezli" +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Ekstrüder Sayısı" -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Eş merkezli" +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "Ekstruder dişli çarklarının sayısı. Ekstruder dişli çarkı besleyici, bowden tüpü ve nozülden oluşur." -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Eş merkezli" +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Etkinleştirilmiş Ekstruder Sayısı" -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Eş Merkezli" +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "Etkinleştirilmiş ekstruder dişli çarklarının sayısı; yazılımda otomatik olarak ayarlanır" -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Eş merkezli" +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Dış Nozül Çapı" -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Eş merkezli" +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "Nozül ucunun dış çapı." -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Konik Destek Açısı" +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Nozül Uzunluğu" -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Koni Desteğinin Minimum Genişliği" +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "Nozül ucu ve yazıcı başlığının en alt parçası arasındaki yükseklik farkı." -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Dolgu Hatlarını Bağlayın" +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Nozül Açısı" -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Dolgu Poligonlarını Bağla" +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "Yatay düzlem ve nozül ucunun sağ üzerinde bulunan konik parça arasındaki açı." -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Destek Çizgilerini Bağla" +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Isı Bölgesi Uzunluğu" -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Destek Zikzaklarını Bağla" +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "Nozülden gelen ısının filamana aktarıldığı nozül ucuna olan mesafe." -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Üst/Alt Poligonları Bağla" +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Nozül Sıcaklığı Kontrolünü Etkinleştir" -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "Yan yana giden dolgu yollarını bağla. Birkaç kapalı poligondan oluşan dolgu şekilleri için bu ayarı etkinleştirmek hareket süresini büyük ölçüde kısaltır." +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "Cura üzerinden sıcaklığın kontrol edilip edilmeme ayarı. Nozül sıcaklığını Cura dışından kontrol etmek için bu ayarı kapalı konuma getirin." -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "Zikzakları Bağla Zik zak destek yapısının sağlamlığını artırır." +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Isınma Hızı" -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "Destek çizgilerinin uçlarını birbirine bağlayın. Bu ayarın etkinleştirilmesi, desteğinizi daha sağlam hale getirebilir ve ekstruzyonu azaltabilir ancak bu daha fazla malzemeye mal olacaktır." +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "Ortalama nozül ısınmasının normal yazdırma sıcaklıkları ve bekleme sıcaklığı penceresinin üzerinde olduğu hız (°C/sn)." -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "İç duvarın şeklini takip eden bir hattı kullanarak dolgu şeklinin iç duvarla buluştuğu noktada uçları bağlar. Bu ayarın etkinleştirilmesi, dolgunun duvarlara daha iyi yapışmasını sağlayabilir ve dolgunun dikey yüzeylerin kalitesinin etkilerini azaltabilir. Bu ayarın devre dışı bırakılması, kullanılan malzemenin miktarını azaltır." +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Soğuma hızı" -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "Üst/alt yüzey yollarını yan yana ise bağla. Eş merkezli şekil için bu ayarı etkinleştirmek, hareket süresini önemli ölçüde kısaltır ancak bağlantılar dolgunun üzerinde meydana gelebileceğinden bu özellik üst yüzeyin kalitesini düşürebilir." +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "Ortalama nozül soğumasının normal yazdırma sıcaklıkları ve bekleme sıcaklığı penceresinin üzerinde olduğu hız (°C/sn)." -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "Modelin ana hatlarında yer alan köşelerin dikişin konumunu etkileyip etkilemediğini kontrol edin. Hiçbiri, köşelerin dikişin konumunu etkilemediği anlamına gelir. Dikişi Gizle, dikişin daha büyük olasılıkla bir iç köşe üzerinde oluşmasını sağlar. Dikişi Açığa Çıkar, dikişin daha büyük olasılıkla bir dış köşe üzerinde oluşmasını sağlar. Dikişi Gizle veya Açığa Çıkar, dikişin daha büyük olasılıkla bir iç veya dış köşe üzerinde oluşmasını sağlar. Akıllı Gizleme, hem iç hem de dış köşelere izin verir ancak uygun olduğu durumlarda iç köşeleri daha sık seçer." +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Minimum Sürede Bekleme Sıcaklığı" -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "Her bir dolgu hattını bu sayıda hatta dönüştür. Ekstra hatlar birbirlerini kesmez, birbirlerinden bağımsız kalırlar. Bu dolguyu sertleştirir, ancak yazdırma süresini uzatırken materyal kullanımını artırır." +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "Nozül soğumadan önce ekstruderin etkin olmaması gerektiği minimum süre. Ekstruder sadece bu süreden daha uzun bir süre kullanılmadığında bekleme sıcaklığına inebilecektir." -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Soğuma hızı" +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "G-code türü" -msgctxt "cooling description" -msgid "Cooling" -msgstr "Soğuma" +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "Oluşturulacak g-code türü." -msgctxt "cooling label" -msgid "Cooling" -msgstr "Soğuma" +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Çapraz" +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volümetrik)" -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Çapraz" +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "Çapraz 3D" +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Çapraz 3D Cebin Boyutu" +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Destek için Çapraz Dolgu Yoğunluğu Görüntüsü" +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Çapraz Dolgu Yoğunluğu Görüntüsü" +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Kristalli Malzeme" +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Kübik" +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Kübik Alt Bölüm" +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Üretici Yazılımı Geri Çekme" -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Kübik Alt Bölüm Kalkanı" +msgctxt "machine_firmware_retract description" +msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." +msgstr "Malzemeyi geri çekmek için G1 komutlarında E özelliği yerine aygıt yazılımı çekme komutlarının (G10/G11) kullanılıp kullanılmayacağı." -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Kesme Örgüsü" +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Ekstrüderler Isıtıcıyı Paylaşır" -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "Malzeme akışını (saniye başına mm3 bazında) sıcaklığa (santigrat derece) bağlayan veri." +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "Ekstrüderlerin tek bir ısıtıcıyı mı paylaşacağı yoksa her bir ekstrüderin kendi ısıtıcısı mı olacağı." -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Varsayılan İvme" +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Ekstrüder Nozül Paylaşımı" -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Varsayılan Yapı Levhası Sıcaklığı" +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "Ekstrüderlerin tek bir nozülü mü paylaşacağı yoksa her bir ekstrüderin kendi nozülü mü olacağıdır. True olarak ayarlandığında printer-start gcode betiğinin tüm ekstrüderleri bilinen ve karşılıklı olarak uyumlu olan bir ilk geri çekme durumunda (sıfır veya geri çekilmemiş bir filament) düzgün bir şekilde ayarlaması beklenir. Bu durumda ilk geri çekme, ekstrüder başına \"machine_extruders_shared_nozzle_initial_retraction\" parametresi ile açıklanır." -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Varsayılan Filaman Salınımı" +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Paylaşılan Nozül İlk Geri Çekme" -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Varsayılan Yazdırma Sıcaklığı" +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "Printer-start gcode betiğinin tamamlanmasında her bir ekstrüder filamentinin paylaşılan nozül ucundan ne kadar geri çekildiğinin varsayıldığıdır. Değer, nozül kanallarının ortak parçasının uzunluğuna eşit veya daha büyük olmalıdır." -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Varsayılan X-Y Salınımı" +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "İzin Verilmeyen Alanlar" -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Varsayılan Z Salınımı" +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "Yazıcı başlığının giremediği alanları olan poligon listesi." -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "Yatay düzlemdeki hareketler için varsayılan salınım." +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Nozül İzni Olmayan Alanlar" -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "Z yönü motoru için varsayılan salınım." +msgctxt "nozzle_disallowed_areas description" +msgid "A list of polygons with areas the nozzle is not allowed to enter." +msgstr "Nozülün girmesine izin verilmeyen alanlara sahip poligon listesi." -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "Filaman motoru için varsayılan salınım." +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Makinenin Başlığı ve Fan Poligonu" -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "Köprüleri tespit edin ve köprüler yazdırılırken yazdırma hızını, akışı ve fan ayarlarını değiştirin." +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "Baskı kafasının şekli. Bunlar baskı kafasının konumuna göre koordinatlardır ve genellikle ilk ekstrüderin konumunu gösterir. Baskı kafasının sol ve önündeki boyutlar negatif koordinatlar olmalıdır." -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "Duvarların basılacağı sırayı belirler. Dış duvarların önce basılması, iç duvarlardaki hataların dışarıya taşmasını önleyerek boyutların doğru olmasını sağlar. Bu duvarların daha sonra basılması ise çıkıntılar basılırken daha iyi yığınlanma sağlar. Toplam iç duvar miktarı eşit değilse ”ortadaki son hat” her zaman en son yazdırılır." +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Portal Yüksekliği" -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "Çakışan birden çok dolgu örgüsünü göz önüne alarak bu örgünün önceliğini belirler. Birden çok dolgu örgüsünün çakıştığı alanlar en yüksek sıralamaya sahip örgünün ayarlarını alacaktır. Daha yüksek sıralamaya sahip dolgu örgüsü, dolgu örgülerinin dolgusunu daha düşük sıralı ve normal örgüler ile değiştirecektir." +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "Nozül ucu ve portal sistemi (X ve Y aksları) arasındaki yükseklik farkı." -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "Bir yıldırım dolgu tabakasının üstünde kalanları ne zaman desteklenmesi gerektiğini belirler. Bir katmanın kalınlığı verilen açıyla ölçülür." +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Nozül Kimliği" -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "Bir yıldırım dolgu tabakasının üstündeki modeli ne zaman desteklemesi gerektiğini belirler. Dalların açısı olarak ölçülür." +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Ekstruder dişli çarkı için nozül kimliği, “AA 0.4” ve “BB 0.8” gibi." -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Çap" +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Nozül Çapı" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "Modele Göre Çap Artışı" +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Nozül iç çapı. Standart olmayan nozül boyutu kullanırken bu ayarı değiştirin." -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "Her dalın yapı levhasına ulaşırken elde etmeye çalıştığı çap. Yatak yapışmasını geliştirir." +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Ekstruder Ofseti" -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "Ekstrüzyon işlemine hazırlamayı ve yapı levhasına yapışmayı artıran farklı seçenekler. Kenar, eğilmeyi önlemek için model tabanının etrafına tek katmanlı düz bir alan ekler. Radye, modelin altına çatısı olan kalın bir ızgara ekler. Etek modelin etrafına yazdırılan bir hattır fakat modele bağlı değildir." +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "Ekstrüder ofsetini koordinat sistemine uygulayın. Tüm ekstrüderleri etkiler." -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "İzin Verilmeyen Alanlar" +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Ekstruder İlk Z konumu" -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "Yazdırılan dolgu hatları arasındaki mesafe. Bu ayar, dolgu yoğunluğu ve dolgu hattı genişliği ile hesaplanır." +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Z koordinatı." -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "Yazdırılan ilk katman destek yapı hatları arasındaki mesafedir. Bu ayar destek yoğunluğuna göre hesaplanır." +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "Mutlak Ekstruder İlk Konumu" -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "Yazdırılan destek zemini çizgileri arasındaki mesafe. Bu ayar Destek Zemini Yoğunluğu ile hesaplanır, ancak ayrıca ayarlanabilir." +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "Ekstruder ilk konumunu, yazıcı başlığının son konumuna göre ayarlamak yerine mutlak olarak ayarlayın." -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "Yazdırılan destek çatısı çizgileri arasındaki mesafe. Bu ayar Destek Çatısı Yoğunluğu ile hesaplanır, ancak ayrıca ayarlanabilir." +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Maksimum X Hızı" -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "Yazdırılan destek yapısı hatları arasındaki mesafe. Bu ayar, destek yoğunluğu ile hesaplanır." +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "X yönü motoru için maksimum hız." -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." -msgstr "Baskıdan desteğin altına kadar olan mesafe. Bunun bir sonraki katman yüksekliğine yuvarlandığını unutmayın." +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Maksimum Y Hızı" -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "Yazdırılıcak desteğin üstüne olan mesafe." +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "Y yönü motoru için maksimum hız." -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." -msgstr "Desteğin üstü/altı ile baskı arasındaki mesafe. Bu boşluk, model basıldıktan sonra desteklerin kolayca çıkarılabilmesini sağlar. Modelin altındaki en üst destek katmanı, düzenli katmanların bir kısmı olabilir." +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Maksimum Z Hızı" -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "Dolgunun duvarlara daha iyi yapışması için her dolgu hattından sonra eklenen hareket mesafesi. Bu seçenek, dolgu çakışmasına benzer, ancak ekstrüzyon yoktur ve sadece dolgu hattının bir ucunda çakışma vardır." +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "Z yönü motoru için maksimum hız." -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "Z dikişini daha iyi gizlemek için dış duvardan sonra eklenen hareket mesafesi." +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Maksimum Hız E" -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "Cereyan kalkanını X/Y yönlerindeki baskıya mesafesi." +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "Filamanın maksimum hızı." -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "Sızdırma kalkanını X/Y yönlerindeki baskıya mesafesi." +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Maksimum X İvmesi" -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "Destek yapısının X/Y yönlerindeki çıkıntıya mesafesi." +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "X yönü motoru için maksimum ivme" -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "Destek yapısının X/Y yönlerindeki baskıya mesafesi." +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Maksimum Y İvmesi" -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Yolu düzeltmek için mesafe noktaları kaydırılır" +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Y yönü motoru için maksimum ivme." -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Yolu düzeltmek için mesafe noktaları kaydırılır" +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Maksimum Z İvmesi" -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "Bundan küçük dolgu alanları oluşturma (onun yerine yüzey kullan)." +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Z yönü motoru için maksimum ivme." -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Cereyan Kalkanı Yüksekliği" +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Maksimum Filaman İvmesi" -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Cereyan Kalkanı Sınırlaması" +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "Filaman motoru için maksimum ivme." -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Cereyan Kalkanı X/Y Mesafesi" +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Varsayılan İvme" -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Alçalan Destek Örgüsü" +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "Yazıcı başlığı hareketinin varsayılan ivmesi." -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "İkili ekstrüzyon" +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Varsayılan X-Y Salınımı" -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Eliptik" +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "Yatay düzlemdeki hareketler için varsayılan salınım." -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "İvme Kontrolünü Etkinleştir" +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Varsayılan Z Salınımı" -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Köprü Ayarlarını Etkinleştir" +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "Z yönü motoru için varsayılan salınım." -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Taramayı Etkinleştir" +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Varsayılan Filaman Salınımı" + +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "Filaman motoru için varsayılan salınım." -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Konik Desteği Etkinleştir" +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Milimetre Başına Adım (X)" -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Cereyan Kalkanını Etkinleştir" +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "Kademeli motorun kaç adımının, X yönünde bir milimetre hareketle sonuçlanacağı." -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "Akışkan Hareketini Etkinleştir" +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Milimetre Başına Adım (Y)" -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Ütülemeyi Etkinleştir" +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "Kademeli motorun kaç adımının, Y yönünde bir milimetre hareketle sonuçlanacağı." -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Salınım Kontrolünü Etkinleştir" +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Milimetre Başına Adım (Z)" -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Nozül Sıcaklığı Kontrolünü Etkinleştir" +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "Kademeli motorun kaç adımının, Z yönünde bir milimetre hareketle sonuçlanacağı." -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Sızdırma Kalkanını Etkinleştir" +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Milimetre Başına Adım (E)" -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "İlk Damlayı Etkinleştir" +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "Kademeli motorların kaç adımının besleme ünitesi tekerleğini çevresi etrafında bir milimetre hareket ettirmekle sonuçlanacağı." -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "İlk Direği Etkinleştir" +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "X Kapaması Pozitif Yönde" -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Yazdırma Soğutmayı Etkinleştir" +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "X ekseninin kapamasının pozitif yönde mi (yüksek X koordinatı) yoksa negatif yönde mi (düşük X koordinatı) olduğu." -msgctxt "ppr_enable label" -msgid "Enable Print Process Reporting" -msgstr "" +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Y Kapaması Pozitif Yönde" -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Geri Çekmeyi Etkinleştir" +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "Y ekseninin kapamasının pozitif yönde mi (yüksek Y koordinatı) yoksa negatif yönde mi (düşük Y koordinatı) olduğu." -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Destek Kenarını Etkinleştir" +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Z Kapaması Pozitif Yönde" -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Destek Zeminini Etkinleştir" +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "Z ekseninin kapamasının pozitif yönde mi (yüksek Z koordinatı) yoksa negatif yönde mi (düşük Z koordinatı) olduğu." -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Destek Arayüzünü Etkinleştir" +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Minimum Besleme Hızı" -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Destek Çatısını Etkinleştir" +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "Yazıcı başlığının minimum hareket hızı." -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "Hareket İvmesini Etkinleştir" +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Besleyici Çark Çapı" -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "Hareket Salınımını Etkinleştir" +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "Besleyiciye malzeme veren çarkın çapı." -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "Dış sızdırma kalkanını etkinleştirir. Modelin etrafında, ilk nozül ile aynı yükseklikte olması halinde ikinci bir nozülü temizleyebilecek olan bir kalkan oluşturacaktır." +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "Fan Hızını 0 - 1 Arasında Ölçeklendir" -msgctxt "ppr_enable description" -msgid "Enable print process reporting for setting threshold values for possible fault detection." -msgstr "" +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "Fan hızını 0 - 256 arasında değil 0 - 1 arasında ölçeklendirin." -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "En üstteki yüzey alanı katmanındaki (havaya maruz kalan) küçük (\"Küçük Üst/Alt Genişliği\"ne kadar) bölgeleri varsayılan desen yerine duvarlarla dolduran ayarı etkinleştirin." +msgctxt "resolution label" +msgid "Quality" +msgstr "Kalite" -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "X veya Y eksenlerindeki hareket hızı değiştiğinde yazıcı başlığının salınımının ayarlanmasını sağlar. Salınımı artırmak, yazdırma süresini azaltırken yazma kalitesinden ödün verir." +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "Yazdırma çözünürlüğünü etkileyen tüm ayarlar. Bu ayarların (ve yazdırma süresinin) kalite üzerinde büyük bir etkisi vardır" -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "Yazıcı başlığı ivmesinin ayarlanmasını sağlar. İvmeleri artırmak, yazdırma süresini azaltırken yazma kalitesinden ödün verir." +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Katman Yüksekliği" -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "Yazdırma sırasında yazdırma soğutma fanlarını etkinleştirir. Fanlar, katman süresi kısa olan katmanlar ve kemerlerde/çıkıntılarda yazdırma kalitesini artırır." +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "Her katmanın milimetre cinsinden yüksekliği. Daha yüksek değerler düşük çözünürlükte hızlı baskılar üretir; daha düşük değerler ise yüksek çözünürlükte daha yavaş baskılar üretir." -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "G-code’u Sonlandır" +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "İlk Katman Yüksekliği" -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Filament Temizliği Bitiş Uzunluğu" +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "İlk katmanın milimetre cinsinden yüksekliği. Kalın ilk katmanlar yapı levhasına yapışmayı kolaylaştırır." -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Filament Temizliği Bitiş Hızı" +msgctxt "line_width label" +msgid "Line Width" +msgstr "Hat Genişliği" -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "İlgili alan üzerinde destek olsa bile kenarı modelin çevresine yazdırmaya zorlayın. Desteğin ilk katmanının bazı alanlarını kenar alanları ile değiştirir." +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "Tek bir hattın genişliği Genellikle her hattın genişliği nozül genişliğine eşit olmalıdır. Ancak, bu değeri biraz azaltmak daha iyi baskılar üretilmesini sağlayabilir." -msgctxt "brim_location option everywhere" -msgid "Everywhere" -msgstr "" +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Duvar Hattı Genişliği" -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "Her bölüm" +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Tek bir duvar hattının genişliği." -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Dışlayıcı" +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Dış Duvar Hattı Genişliği" -msgctxt "experimental label" -msgid "Experimental" -msgstr "Deneysel" +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "En dıştaki duvar hattının genişliği. Bu değeri azaltarak daha yüksek seviyede ayrıntılar yazdırılabilir." -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Dikişi Açığa Çıkar" +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "İç Duvar(lar) Hattı Genişliği" -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Geniş Dikiş" +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "En dış duvar haricindeki tüm duvar hatları için tek bir duvar hattı genişliği." -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "Geniş Dikiş, bitişik poligonlarla dikişleri kapatarak ağdaki açık boşlukların dikmeye çalışır. Bu seçenek çok fazla işlem süresi ortaya çıkarabilir." +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Üst/Alt Hat Genişliği" -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "Ekstra Dolgu Duvar Sayısı" +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Tek bir üst/alt hattın genişliği." -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Ek Dış Katman Duvar Sayısı" +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Dolgu Hattı Genişliği" -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "Nozül değişiminin ardından çalışmaya hazırlanacak ek malzemedir." +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Tek bir dolgu hattının genişliği." -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Extruder İlk X konumu" +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Etek/Kenar Hattı Genişliği" -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Extruder İlk Y konumu" +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "Tek bir etek veya kenar hattının genişliği." -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Ekstruder İlk Z konumu" +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Destek Hattı Genişliği" -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Ekstrüderler Isıtıcıyı Paylaşır" +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Tek bir destek yapısı hattının genişliği." + +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Destek Arayüz Hattı Genişliği" -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Ekstrüder Nozül Paylaşımı" +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "Destek çatısı veya zemininin tek çizgi genişliği." -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Ekstrüzyon Sırasında Soğuma Hızı Düzenleyici" +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Destek Çatısı Çizgi Genişliği" -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "Hız için ekstrüzyon genişliği bazlı düzeltme faktörüdür. %0 değerinde hareket hızı Baskı Hızında sabit tutulur. %100 değerinde ise hareket hızı akış (mm³/s cinsinden) sabit tutulacak şekilde ayarlanır, yani normal Hat Genişliğinin yarısı iki kat daha hızlı basılır ve hatlar iki kat daha hızlı basılır. %100'den büyük değerler belirlenmesi, geniş hatların ekstrüde edilmesi için gereken yüksek basıncın telafi edilmesine yardımcı olabilir." +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "Tek bir destek çatısının çizgi genişliği." -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Fan Hızı" +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Destek Zemini Çizgi Genişliği" -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Fan Hızı Geçersiz Kılma" +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "Tek bir destek zemininin çizgi genişliği." -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "Bu uzunluktan kısa olan özellik ana hatları Kısa Özellik Hızı kullanılarak basılacaktır." +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "İlk Direk Hattı Genişliği" -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Henüz tamamen detaylandırılmamış özelliklerdir." +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "Tek bir ilk direk hattının genişliği." -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Besleyici Çark Çapı" +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "İlk Katman Hat Genişliği" -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Son Yazdırma Sıcaklığı" +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "İlk katman üzerinde bulunan hat genişliği çoğaltıcı. Çoğaltmayı artırmak yatak yapışmasını iyileştirebilir." -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Üretici Yazılımı Geri Çekme" +msgctxt "shell label" +msgid "Walls" +msgstr "Duvarlar" -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "İlk Katman Destek Ekstruderi" +msgctxt "shell description" +msgid "Shell" +msgstr "Kovan" -msgctxt "material_flow label" -msgid "Flow" -msgstr "Akış" +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Duvar Ekstruderi" -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Akış Eşitleme Oranı" +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "Duvarları yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." -msgctxt "flow_anomaly_limit label" -msgid "Flow Limit" -msgstr "" +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Dış Duvar Ekstruderi" -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Akış hızı dengeleme çarpanı" +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "Dış Duvarı yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Akış hızı dengelemesi maksimum ekstrüzyon kayması" +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "İç Duvar Ekstrüderi" -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Akış Sıcaklık Grafiği" +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "İç duvarları yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." -msgctxt "flow_warn_limit label" -msgid "Flow Warning" -msgstr "" +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Duvar Kalınlığı" -msgctxt "material_flow_layer_0 description" -msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." -msgstr "İlk katman için akış dengelemesi: ilk katmana ekstrude edilen malzeme miktarı bu değerle çarpılır." +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "Yatay yönde duvar kalınlığı. Bu değer duvar hattı genişliğiyle bölündüğünde duvar sayısını belirler." -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "İlk katmanın alt hatlarında akış telafisi" +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Duvar Hattı Sayısı" -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Dolgu hatlarının akış telafisidir." +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "Duvar sayısı. Bu değer, duvar kalınlığıyla hesaplandığında tam sayıya yuvarlanır." -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "Destek çatı ve zemin hatlarının akış telafisidir." +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Duvar Geçişi Uzunluğu" -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "Baskının üst bölümlerindeki hatların akış telafisidir." +msgctxt "wall_transition_length description" +msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." +msgstr "Farkı sayıda duvar arasından geçerken parça daha ince hale geldiğinden duvar hatlarını bölmek veya birleştirmek için belirli bir alan ayrılır." -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Temel kule hatlarının akış telafisidir." +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Duvar Dağılım Sayısı" -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Etek veya kenar hatlarının akış telafisidir." +msgctxt "wall_distribution_count description" +msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." +msgstr "Varyasyonun yayılması gereken, merkezden itibaren sayılan duvar sayısı. Düşük değerler olması dış duvarların genişliğinin değişmeyeceğini gösterir." -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Destek zemin hatlarının akış telafisidir." +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Duvar Geçişi Eşik Açısı" -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Destek çatı hatlarının akış telafisidir." +msgctxt "wall_transition_angle description" +msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." +msgstr "Çift ve tek sayıdaki duvarlar arasında ne zaman geçiş oluşturulacağını gösterir. Bu ayardan daha geniş açıya sahip bir kama şekline geçiş eklenmez ve kalan alanının doldurulması sırasında merkez noktada duvar baskısı yapılmaz. Bu ayarın düşürülmesi bu merkez duvarların sayısını ve uzunluğunu azaltır fakat boşluklara ve aşırı ekstrüzyona neden olabilir." -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Destek yapı hatlarının akış telafisidir." +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Duvar Geçişi Filtresi Mesafesi" -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "İlk katmanın en dış duvar hattında akış telafisi." +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "Farklı sayıda duvar arasında arka arkaya hızlıca ileri geri geçiş yapılacaksa duvarlar arasında geçiş yapmayın. Duvarlar bir arada bu mesafeden daha yakındaysa geçişleri kaldırın." -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "En dıştaki duvar hattının akış telafisidir." +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Duvar Geçişi Filtresi Kenar Boşluğu" -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Üst Yüzeyin En Dış Duvar Hattında Akış Telafisi." +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "Bir fazla ve bir az duvar arasında ileri geri geçişi önleyin. Bu kenar boşluğu, [Minimum Duvar Hattı Genişliği - Kenar Boşluğu, 2 * Minimum Duvar Hattı Genişliği+Kenar Boşluğu] olarak takip edilen hat genişliklerinin aralığını genişletir. Bu kenar boşluğunun artırılması geçişlerin sayısını azaltır, bu da ekstrüzyon başlatma/durdurma sayısını ve hareket süresini azaltır. Bununla birlikte, geniş hat varyasyonları düşük veya aşırı ekstrüzyon sorunlarına yol açabilir." -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Tüm duvar hatları için dıştaki hariç üst yüzey duvar hatlarında akış telafi." +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Dış Duvar Sürme Mesafesi" -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Üst/alt hatların akış telafisidir." +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "Z dikişini daha iyi gizlemek için dış duvardan sonra eklenen hareket mesafesi." -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "En dıştaki duvar hatları hariç tüm duvar hatları için duvar hatlarında akış telafisi, ancak sadece ilk katman içindir." +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Dış Duvar İlavesi" -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "En dıştaki duvar hattı hariç diğer duvar hatlarının akış telafisidir." +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "Dış duvar yoluna uygulanan ilave. Dış duvar nozülden küçükse ve iç duvardan sonra yazdırılmışsa, nozüldeki deliği modelin dış kısmı yerine iç duvarlar ile üst üste bindirmek için bu ofseti kullanın." -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Duvar hatlarının akış telafisidir." +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Duvar Yazdırma Sırasını Optimize Et" -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "Akış dengeleme: sıkıştırılan malzeme miktarı bu değerle çoğaltılır." +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "Geri çekmelerin sayısını ve kat edilen mesafeyi azaltmak için duvarların yazdırıldığı sırayı optimize edin. Çoğu parça, bunun etkinleştirilmesinden yararlanır, ancak bazılarının yararlanması için gerçekte daha uzun süre gerekebilir. Bu yüzden, yazdırma süresi tahminlerini optimizasyonlu ve optimizasyonsuz olarak karşılaştırın. Kenar, yapı levhası yapıştırması tipi olarak seçildiğinde ilk katman optimize edilmez." -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "Akışkan Hareket Açısı" +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Duvar Sıralaması" -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "Akışkan Hareketi Kaydırma Mesafesi" +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "Duvarların basılacağı sırayı belirler. Dış duvarların önce basılması, iç duvarlardaki hataların dışarıya taşmasını önleyerek boyutların doğru olmasını sağlar. Bu duvarların daha sonra basılması ise çıkıntılar basılırken daha iyi yığınlanma sağlar. Toplam iç duvar miktarı eşit değilse ”ortadaki son hat” her zaman en son yazdırılır." -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "Akışkan Hareketi Küçük Mesafe" +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "İçten Dışa" -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Temizleme Uzunluğu" +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "Dıştan İçe" -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Temizleme Hızı" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Alternatif Ek Duvar" + +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "Her katmanda ek duvar yazdırır. Bu şekilde dolgu ek duvarların arasında alır ve daha sağlam baskılar ortaya çıkar." + +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Minimum Duvar Hattı Genişliği" msgctxt "min_wall_line_width description" msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgstr "Nozül boyutunun bir veya iki katı kadar olan ince yapılarda modelin kalınlığına bağlı olarak hat genişliklerinin değiştirilmesi gerekir. Bu ayar, duvarlar için izin verilen minimum hat genişliğini kontrol eder. Minimum hat genişlikleri, N duvarlarının geniş ve N+1 duvarlarının dar olduğu bazı geometrik kalınlıklarda N duvardan N+1 duvara geçildiği için maksimum hat genişliklerini de belirler. Mümkün olan en geniş duvar hattı Minimum Duvar Hattı Genişliğinin iki katıdır." -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Ön" - -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Sol Ön" - -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Sağ Ön" +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Minimum Çift Duvar Hattı Genişliği" -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Tam" +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "Normal çokgen duvarlar için minimum hat genişliğidir. Bu ayar, tek bir ince duvar hattının basılmasından iki duvar hattına hangi model kalınlığında geçileceğini belirler. Daha yüksek Minimum Çift Duvar Hattı Genişliği değeri belirlenmesi daha yüksek maksimum tek duvar hattı genişliği oluşmasına yol açar. Maksimum çift duvar hattı genişliği, Dış Duvar Hattı Genişliği + 0,5 * Minimum Tek Duvar Hattı Genişliği formülüyle hesaplanır." -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Belirsiz Dış Katman" +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Minimum Tek Duvar Hattı Genişliği" -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Belirsiz Dış Katman Yoğunluğu" +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "Orta hat boşluğunu dolduran çok hatlı duvarlar için minimum hat genişliğidir. Bu ayar, iki duvar hattı baskısının hangi model kalınlığında iki dış duvar ve tek bir merkezi orta duvar baskısına geçirileceğini belirler. Daha yüksek Minimum Tek Duvar Hattı Genişliği değeri belirlenmesi daha yüksek maksimum çift duvar hattı genişliği oluşturur. Maksimum tek duvar hattı genişliği, 2 * Minimum Çift Duvar Hattı Genişliği formülüyle hesaplanır." -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Yalnızca Belirsiz Dış Katman" +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "İnce Duvarları Yazdır" -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Belirsiz Dış Katman Noktası Mesafesi" +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "Yatay olarak nozül boyutundan daha ince olan model parçalarını yazdırır." -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Belirsiz Dış Katman Kalınlığı" +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Minimum Yüz Hattı Boyutu" -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "G-code türü" +msgctxt "min_feature_size description" +msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." +msgstr "İnce yüz hatlarının minimum kalınlığıdır. Bu değerden daha ince olan model yüz hatları yazdırılmaz, Minimum Yüz Hattı Boyutundan daha kalın olan modeller ise Minimum Duvar Hattı Genişliği değerine kadar genişletilir." -msgctxt "machine_end_gcode description" -msgid "" -"G-code commands to be executed at the very end - separated by \n" -"." -msgstr "" -"En son çalıştırılacak G-code komutları (\n" -" ile ayrılır)." +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Minimum İnce Duvar Hattı Genişliği" -msgctxt "machine_start_gcode description" -msgid "" -"G-code commands to be executed at the very start - separated by \n" -"." -msgstr "" -"ile ayrılan, başlangıçta yürütülecek G-code komutları\n" -"." +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "Modelin ince yüz hatlarının yerini alacak duvarın genişliğidir (Minimum Yüz Hattı Boyutuna göre). Minimum Duvar Hattı Genişliği, yüz hattının kalınlığından daha inceyse duvar da yüz hattının kendisi kadar kalınlaştırılacaktır." -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "Malzemedeki GUID Otomatik olarak ayarlanır." +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Yatay Büyüme" -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Portal Yüksekliği" +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "Her katmandaki poligonlara uygulanan ofset miktarı. Pozitif değerler büyük boşlukları telafi ederken negatif değerler küçük boşlukları telafi edebilir." -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "İç İçe Geçen Yapı Oluşturma" +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "İlk Katmanın Yatay Genişlemesi" -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Oluşturma Desteği" +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "İlk katmandaki tüm poligonlara uygulanan ofset miktarı. Negatif bir değer “fil ayağı” olarak bilinen ilk katman ezilmesini dengeleyebilir." -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "İlk katmanın destek dolgu alanı içinde bir kenar oluşturun. Bu kenar, desteğin çevresine değil, altına yazdırılır. Bu ayarı etkinleştirmek, desteğin baskı tablasına yapışma alanını artırır." +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Delik Yatay Büyüme" -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "Model ve destek arasında yoğun bir arayüz oluştur. Modelin yazdırıldığı desteğin üstünde ve modelin üzerinde durduğu desteğin altında bir yüzey oluşturur." +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "Delik Yatay Genişlemesi, sıfırdan büyük olmak koşuluyla, her katmandaki tüm deliklere uygulanan ofset miktarıdır. Pozitif değerlerde delikler büyür, negatif değerlerde ise küçülür. Bu ayar etkinleştirildiğinde, Delik Yatay Genişleme Maksimum Çapı ile daha detaylı bir ayarlama yapılabilir." -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "Desteğin alt kısmı ile model arasında yoğun bir levha oluşturur. Bu işlem, model ile destek arasında bir yüzey alanı oluşturacaktır." +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "Delik Yatay Büyüme Maksimum Çapı" -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "Desteğin üst kısmı ile model arasında yoğun bir levha oluşturur. Bu işlem, model ile destek arasında bir yüzey alanı oluşturacaktır." +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "Sıfırdan büyük olduğunda, Delik Yatay Büyüme küçük deliklere kademeli olarak uygulanır (küçük delikler daha fazla büyütülür). Sıfır olarak ayarlandığında Delik Yatay Büyüme tüm deliklere uygulanacaktır. Delik Yatay Büyüme Maksimum Çapı’ndan daha büyük delikler genişletilmez." -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "Modellerin askıda kalan kısımlarını destekleyen yapılar oluşturun. Bu yapılar olmadan, yazdırma sırasında söz konusu kısımlar düşebilir." +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Z Dikiş Hizalama" -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Cam" +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "Bir katmandaki her yolun başlangıç noktası. Ardışık katmanlardaki yollar aynı noktadan başladığında, çıktıda dikey bir ek yeri görünebilir. Bunları kullanıcının belirlediği bir konumun yakınına hizalarken ek yerinin kaldırılması kolaylaşır. Gelişigüzel yerleştirildiğinde yolların başlangıcındaki düzensizlikler daha az fark edilecektir. En kısa yol kullanıldığında yazdırma hızlanacaktır." -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "Üst yüzey üzerinden bir kere daha geçilir, ancak bu defa çok küçük malzeme ekstrüde edilir. Bu işlem en üstte bulunan plastiği eriterek daha pürüzsüz bir yüzey oluşturur. Nozül haznesindeki baskı yüksek tutularak yüzeydeki kıvrımların malzemeyle dolması sağlanır." +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Kullanıcı Tarafından Belirtilen" -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Aşamalı Dolgu Basamak Yüksekliği" +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "En kısa" -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Aşamalı Dolgu Basamakları" +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Gelişigüzel" -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Aşamalı Destek Dolgusu Basamak Yüksekliği" +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "En Keskin Köşe" -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Kademeli Destek Dolgusu Aşamaları" +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Z Dikişi Konumu" -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "Minimum katman süresi nedeniyle düşük hızlarda yazdırırken bu sıcaklığa kademeli olarak düşürün." +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "Bir katmandaki her kısmın basılmaya başlanacağı yere yakın konum." -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Izgara" +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Sol Arka" -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Izgara" +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Geri" -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Izgara" +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Sağ Arka" -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Izgara" +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Sağ" -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Izgara" +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Sağ Ön" -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Ön" -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Dış Duvarları Grupla" +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Sol Ön" -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Sol" -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "Z Dikişi X" -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "Yapı Hacmi Sıcaklığı Dengesi Mevcut" +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "Bir katmandaki her kısmın yazdırılmaya başlanacağı yere yakın konumun X koordinatı." -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Isıtılmış Yapı Levhası İçerir" +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Z Dikişi Y" -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Isınma Hızı" +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "Bir katmandaki her kısmın yazdırılmaya başlanacağı yere yakın konumun Y koordinatı." -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Isı Bölgesi Uzunluğu" +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Dikiş Köşesi Tercihi" -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "Cereyan kalkanının yükseklik sınırı. Bundan daha fazla bir yükseklikte cereyan kalkanı yazdırılmayacaktır." +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "Modelin ana hatlarında yer alan köşelerin dikişin konumunu etkileyip etkilemediğini kontrol edin. Hiçbiri, köşelerin dikişin konumunu etkilemediği anlamına gelir. Dikişi Gizle, dikişin daha büyük olasılıkla bir iç köşe üzerinde oluşmasını sağlar. Dikişi Açığa Çıkar, dikişin daha büyük olasılıkla bir dış köşe üzerinde oluşmasını sağlar. Dikişi Gizle veya Açığa Çıkar, dikişin daha büyük olasılıkla bir iç veya dış köşe üzerinde oluşmasını sağlar. Akıllı Gizleme, hem iç hem de dış köşelere izin verir ancak uygun olduğu durumlarda iç köşeleri daha sık seçer." + +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Hiçbiri" msgctxt "z_seam_corner option z_seam_corner_inner" msgid "Hide Seam" msgstr "Dikişi Gizle" +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Dikişi Açığa Çıkar" + msgctxt "z_seam_corner option z_seam_corner_any" msgid "Hide or Expose Seam" msgstr "Dikişi Gizle veya Açığa Çıkar" -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Delik Yatay Büyüme" +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Akıllı Gizleme" -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "Delik Yatay Büyüme Maksimum Çapı" +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Z Dikişi Göreliliği" -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "Bu değerden daha küçük çaptaki delik ve parça ana hatları Küçük Özellik Hızı kullanılarak basılacaktır." +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "Etkin olduğunda, z dikişi koordinatları her parçanın merkezine göre hizalıdır. Devre dışı olduğunda, koordinatlar yapı levhası üzerinde mutlak bir pozisyonu belirtir." -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Yatay Büyüme" +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Üst / Alt" -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Yatay Ölçekleme Faktörü Büzülme Telafisi" +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Üst / Alt" -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "Filamentin ısıtıldığında kopmadan esneyebileceği mesafedir." +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Üst Yüzey Ekstruderi" -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "Malzemenin sızma yapmaması için gereken geri çekilme mesafesidir." +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "En üstteki yüzeyi yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." -msgctxt "flow_rate_extrusion_offset_factor description" -msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." -msgstr "Akış hızındaki değişiklikleri telafi edebilmek için filamentin bir saniyelik ekstrüzyonda hareket ettirileceği mesafenin yüzdesi olarak filamentin ne kadar uzağa hareket ettirileceği." +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Üst Yüzey Katmanları" -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "Sorunsuz kopması için filamentin geri çekilmesi gereken mesafedir." +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "En üstteki yüzey katmanlarının sayısı. Yüksek kalitede üst yüzeyler oluşturmak için genellikle tek bir üst yüzey katmanı yeterlidir." -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "Filamentin kopmadan ne kadar hızlı geri çekilmesi gerektiğidir." +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Üst Yüzey Hat Genişliği" -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "Filament değişimi sırasında malzemenin sızma yapmaması için gereken geri çekilme hızıdır." +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "Baskının üst tarafında bulunan alanlardaki tek bir hattın genişliği." -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "Boş bir makara aynı malzemeden yeni bir makara ile değiştirildikten sonra malzemenin kullanıma hazır hale getirileceği süredir." +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Üst Yüzey Şekli" -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "Farklı bir malzemeye geçildikten sonra malzemenin kullanıma hazır hale getirileceği süredir." +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "En üst yüzeyin şekli." -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "Malzemenin kuru olmadığı durumda güvenli şekilde saklanabileceği süredir." +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Çizgiler" -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "Kademeli motorun kaç adımının, X yönünde bir milimetre hareketle sonuçlanacağı." +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Eş merkezli" -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "Kademeli motorun kaç adımının, Y yönünde bir milimetre hareketle sonuçlanacağı." +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zikzak" -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "Kademeli motorun kaç adımının, Z yönünde bir milimetre hareketle sonuçlanacağı." +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Monotonik Üst Yüzey Düzeni" -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "Kademeli motorların kaç adımının besleme ünitesi tekerleğini çevresi etrafında bir milimetre hareket ettirmekle sonuçlanacağı." +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Her zaman bitişik hatlarla tek yönde çakışmaya neden olan bir düzenle üst yüzey hatlarının baskısını yapın. Bu baskı biraz daha uzun sürer, fakat düz yüzeylerin daha tutarlı görünmesini sağlar." -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "Boş bir makara aynı malzemeden yeni bir makara ile değiştirilirken nozülün önceki malzemeden temizlenmesi için kullanılacak malzeme (filament parçası) miktarıdır." +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Üst Yüzey Hat Yönleri" -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "Farklı bir malzemeye geçilirken nozülün önceki malzemeden temizlenmesi için kullanılacak malzeme (filament parçası) miktarıdır." +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Üst yüzey katmanları çizgi veya zikzak biçimindeyken kullanılacak tam sayı hat yönü listesi. Listedeki öğeler, katmanlar ilerledikçe sıralı olarak kullanılır. Listenin sonuna ulaşıldığında tekrar başa dönülür. Liste öğeleri virgülle ayrılır ve tüm liste köşeli parantez içine alınır. Varsayılan ayar boş listedir ve geleneksel varsayılan açılar (45 ve 135 derece) kullanılır." -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "Printer-start gcode betiğinin tamamlanmasında her bir ekstrüder filamentinin paylaşılan nozül ucundan ne kadar geri çekildiğinin varsayıldığıdır. Değer, nozül kanallarının ortak parçasının uzunluğuna eşit veya daha büyük olmalıdır." +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Üst/Alt Ekstruderi" -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "Destek arayüzü ve destek çakıştıklarında nasıl etkileşime girerler? Şu anda sadece destek çatısı için uygulanmaktadır." +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "Üst ve alt yüzeyi yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "Model üzerine yerleştirilmesi gereken bir dalın ne kadar uzun olması gerektiği. Küçük destek lekelerini önler. Bir dalın bir destek çatısını desteklemesi durumunda bu ayar göz ardı edilir." +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Üst/Alt Kalınlık" -msgctxt "bridge_skin_support_threshold description" -msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." -msgstr "Eğer bir yüzey alanı bölgesi, alanının bu yüzdeden daha azı için destekleniyorsa, köprü ayarlarını kullanarak yazdırın. Aksi halde normal yüzey alanı ayarları kullanılarak yazdırılır." +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "Yazdırmadaki üst/alt katmanların kalınlığı. Katman yüksekliğiyle ayrılan bu değer üst/alt katmanların sayısını belirtir." -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "Bir takım yolu parçası, genel harekete göre bu açıdan daha fazla bir sapma gösterirse düzeltilir." +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Üst Kalınlık" -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "Eğer etkinleştirilirse, havanın üzerindeki ikinci ve üçüncü katmanlar aşağıdaki ayarlar kullanılarak yazdırılır. Aksi halde bu katmanlar normal ayarlar kullanılarak yazdırılır." +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "Yazdırmadaki üst katmanların kalınlığı. Katman yüksekliğiyle ayrılan bu değer üst katmanların sayısını belirtir." -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "Farklı sayıda duvar arasında arka arkaya hızlıca ileri geri geçiş yapılacaksa duvarlar arasında geçiş yapmayın. Duvarlar bir arada bu mesafeden daha yakındaysa geçişleri kaldırın." +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Üst Katmanlar" -msgctxt "raft_base_margin description" -msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "Üst katman sayısı. Bu değer, üst kalınlığıyla hesaplandığında tam sayıya yuvarlanır." -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Radye etkinleştirildiğinde, ayrıca radye verilen model etrafındaki ek radye alanıdır. Bu boşluğu artırmak, daha fazla malzeme kullanırken ve yazdırma için daha az alan bırakırken daha sağlam bir radye oluşturacaktır." +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Alt Kalınlık" -msgctxt "raft_interface_margin description" -msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "Yazdırmadaki alt katmanların kalınlığı. Katman yüksekliğiyle ayrılan bu değer alt katmanların sayısını belirtir." -msgctxt "raft_surface_margin description" -msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Alt katmanlar" -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "Bir örgü içinde çakışan hacimlerden kaynaklanan iç geometriyi yok sayın ve hacimleri tek bir hacim olarak yazdırın. Bu durum, istenmeyen iç boşlukların kaybolmasını sağlar." +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "Alt katman sayısı. Bu değer, alt kalınlığıyla hesaplandığında tam sayıya yuvarlanır." -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Yapı Levhası Sıcaklığını Ekle" +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "İlk Alt Katmanlar" -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Malzeme Sıcaklıklarını Ekle" +msgctxt "initial_bottom_layers description" +msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "Yapı plakasından itibaren ilk alt katman sayısı Bu değer, alt kalınlığıyla hesaplandığında tam sayıya yuvarlanır." -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Kapsayıcı" +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Üst/Alt Şekil" -msgctxt "infill description" -msgid "Infill" -msgstr "Dolgu" +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Üst/alt katmanların şekli." + +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Çizgiler" + +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Eş merkezli" + +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zik Zak" + +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Alt Şekil İlk Katmanı" + +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "Yazdırmanın altında ilk katmanda yer alacak şekil." + +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Çizgiler" + +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Eş merkezli" + +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Zikzak" -msgctxt "infill label" -msgid "Infill" -msgstr "Dolgu" +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Üst/Alt Poligonları Bağla" -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Dolgu İvmesi" +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "Üst/alt yüzey yollarını yan yana ise bağla. Eş merkezli şekil için bu ayarı etkinleştirmek, hareket süresini önemli ölçüde kısaltır ancak bağlantılar dolgunun üzerinde meydana gelebileceğinden bu özellik üst yüzeyin kalitesini düşürebilir." -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Duvarlardan Önce Dolgu" +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Monotonik Üst/Alt Düzeni" -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Dolgu Yoğunluğu" +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Her zaman bitişik hatlarla tek yönde çakışmaya neden olan bir düzenle üst/alt hat baskısı yapın. Bu baskı biraz daha uzun sürer, fakat düz yüzeylerin daha tutarlı görünmesini sağlar." -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Dolgu Ekstruderi" +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Üst/Alt Çizgi Yönleri" -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Dolgu Akışı" +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Üst/alt katmanlar çizgi veya zikzak şekillerini kullandığında kullanılacak tam sayı çizgi yönü listesi. Listedeki öğeler, katmanlar ilerledikçe sıralı olarak kullanılır. Listenin sonuna ulaşıldığında baştan başlanır. Liste öğeleri virgülle ayrılır ve tüm liste köşeli parantez içine alınır. Varsayılan ayar boş listedir ve geleneksel varsayılan açılar (45 ve 135 derece) kullanılır." -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Dolgu Salınımı" +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "Küçük Üst/​Alt Genişlik" -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Dolgu Katmanı Kalınlığı" +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "Küçük üst/alt bölgeler, varsayılan üst/alt deseni yerine duvarlarla doldurulur. Bu, sarsıntılı hareketleri önlemeye yardımcı olur. Varsayılan ayarda, en üstteki (havaya maruz kalan) katman için kapalıdır (bkz. 'Yüzeyde Küçük Üst/Alt')." -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "Dolgu Hattı Yönleri" +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "Yüzeyde Küçük Üst/Alt" -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Dolgu Hattı Mesafesi" +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "En üstteki yüzey alanı katmanındaki (havaya maruz kalan) küçük (\"Küçük Üst/Alt Genişliği\"ne kadar) bölgeleri varsayılan desen yerine duvarlarla dolduran ayarı etkinleştirin." -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "Dolgu Hattı Çoğaltıcı" +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Z Boşluklarında Dış Katman Oluşturma" -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Dolgu Hattı Genişliği" +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "Modelde yalnızca birkaç katmanda küçük dikey boşluklar varsa normal şartlarda dar alandaki bu katmanların etrafında dış bir katman olmalıdır. Dikey boşluğun çok küçük olduğu durumlarda dış katman oluşturulmaması için bu ayarı etkinleştirin. Böylece baskı ve dilimleme süresi kısalır ancak teknik olarak bakıldığında havayla temasa açık dolgular kalır." -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Dolgu Ağı" +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Ek Dış Katman Duvar Sayısı" -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Dolum Çıkıntı Açısı" +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "Üst/alt şeklin en dıştaki parçasını eş merkezli hatlar ile değiştirir. Bir veya iki hat kullanmak, dolgu malzemesinde başlayan tavanları geliştirir." -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Dolgu Çakışması" +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Ütülemeyi Etkinleştir" -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "Dolgu Çakışma Oranı" +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "Üst yüzey üzerinden bir kere daha geçilir, ancak bu defa çok küçük malzeme ekstrüde edilir. Bu işlem en üstte bulunan plastiği eriterek daha pürüzsüz bir yüzey oluşturur. Nozül haznesindeki baskı yüksek tutularak yüzeydeki kıvrımların malzemeyle dolması sağlanır." -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Dolgu Şekli" +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Sadece En Yüksek Katmanı Ütüle" -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Dolgu Hızı" +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "Ütüleme işlemini bileşimin sadece en son katmanı üzerinde gerçekleştirin. Bu, alt katmanlarda pürüzsüz bir yüzey tesviyesine gerek olmadığı durumlarda zaman kazandırır." -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Dolgu Desteği" +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Ütüleme Modeli" -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Dolgu Hareket Optimizasyonu" +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "Üst yüzeyleri ütülemek için kullanılacak model." -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "Dolgu Sürme Mesafesi" +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Eş merkezli" -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "Dolgu X Kayması" +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zikzak" -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Dolgu Y Kayması" +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Monotonik Ütüleme Düzeni" -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "İlk Alt Katmanlar" +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Her zaman bitişik hatlarla tek yönde çakışmaya neden olan bir düzenle hatları ütüleyerek baskı yapın. Bu baskı biraz daha uzun sürer, fakat düz yüzeylerin daha tutarlı görünmesini sağlar." -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "İlk Fan Hızı" +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Ütüleme Hattı Boşluğu" -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "İlk Katman İvmesi" +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "Ütüleme hatları arasında bulunan mesafe." -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "İlk Katman Alt Akışı" +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Ütüleme Akışı" -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "İlk Katman Çapı" +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "Ütüleme sırasında normal yüzey hattına göre ekstrude edilecek malzeme miktarı. Nozülü dolu tutmak üst yüzeyde oluşan çatlakların bir kısmının doldurulmasını sağlar fakat nozülün fazla dolu olması aşırı ekstrüzyona ve yüzey yanlarında noktalar oluşmasına neden olur." -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "İlk Katman Akışı" +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Ütüleme İlave Mesafesi" -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "İlk Katman Yüksekliği" +msgctxt "ironing_inset description" +msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." +msgstr "Modelin kenarlarından bırakılması gereken mesafe. Ağın kenarlarına kadar ütülemek baskınızın kenarlarının pürüzlü olmasına neden olabilir." -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "İlk Katmanın Yatay Genişlemesi" +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Ütüleme Hızı" -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "İlk Katman İç Duvar Akışı" +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "Üst yüzeyi geçmek için gereken süre." -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "İlk Katman Salınımı" +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Ütüleme İvmesi" -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "İlk Katman Hat Genişliği" +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "Ütülemenin gerçekleştiği ivme." -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "İlk Katman Dış Duvar Akışı" +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Ütüleme İvmesi Değişimi" -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "İlk Katman Yazdırma İvmesi" +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "Ütüleme sırasında oluşan maksimum anlık hız değişimi." -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "İlk Katman Yazdırma Salınımı" +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Yüzey Çakışma Oranı" -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "İlk Katman Yazdırma Hızı" +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Duvarlar ile yüzey ekseni (uçları) arasındaki çakışma miktarını yüzey hatlarının hat genişliği ile en içteki duvarın bir yüzdesi olarak ayarlayın. Az miktar çakışma duvarların yüzeye sıkıca bağlanmasını sağlar. Eşit yüzey ve duvar hattı genişliği söz konusu olduğunda, %50’nin üstündeki yüzdelerde bu noktada yüzey ekstrüderinin nozül konumu halihazırda duvarın ortasına ulaşmış olacağından yüzeyin duvarı geçmiş olabileceğini unutmayın." -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "İlk Katman Hızı" +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Yüzey Çakışması" -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "İlk Katman Destek Hattı Mesafesi" +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Duvarlar ile yüzey ekseni (uçları) arasındaki çakışma miktarını ayarlayın. Az miktar çakışma duvarların yüzeye sıkıca bağlanmasını sağlar. Eşit yüzey ve duvar hattı genişliği söz konusu olduğunda, duvar kalınlığının yarısından fazla değerlerde bu noktada yüzey ekstrüderinin nozül konumu halihazırda duvarın ortasına ulaşmış olacağından yüzeyin duvarı geçmiş olabileceğini unutmayın." -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "İlk Katman Hareket İvmesi" +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Yüzey Kaldırma Genişliği" -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "İlk Katman Hareket Salınımı" +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "Kaldırılacak olan yüzey alanlarının en büyük genişliğidir. Bu değerden daha küçük olan her yüzey alanı kaybolacaktır. Bu, modeldeki eğimli yüzeylerde alt/üst yüzeyin yazdırılması için harcanan süreyi ve malzemeyi sınırlamaya yardımcı olabilir." + +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Üst Yüzey Kaldırma Genişliği" -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "İlk Katman Hareket Hızı" +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "Kaldırılacak olan üst yüzey alanlarının en büyük genişliğidir. Bu değerden daha küçük olan her yüzey alanı kaybolacaktır. Bu, modeldeki eğimli yüzeylerde üst yüzeyin yazdırılması için harcanan süreyi ve malzemeyi sınırlamaya yardımcı olabilir." -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "İlk Katman Z Çakışması" +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Alt Yüzey Kaldırma Genişliği" -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "İlk Yazdırma Sıcaklığı" +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "Kaldırılacak olan alt yüzey alanlarının en büyük genişliğidir. Bu değerden daha küçük olan her yüzey alanı kaybolacaktır. Bu, modeldeki eğimli yüzeylerde alt yüzeyin yazdırılması için harcanan süreyi ve malzemeyi sınırlamaya yardımcı olabilir." -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "İç Duvar İvmesi" +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Yüzey Genişleme Mesafesi" -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "İç Duvar Ekstrüderi" +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "Yüzeylerin dolgunun içine doğru genişleyeceği mesafedir. Daha yüksek değerler, yüzeyin dolgu şekline daha iyi tutunmasını sağladığı gibi komşu katmanlardaki duvarların yüzeye daha iyi yapışmasını sağlar. Daha düşük değerler, kullanılan malzemenin miktarından tasarruf yapılmasını sağlar." -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "İç Duvar Salınımı" +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Üst Yüzey Genişleme Mesafesi" -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "İç Duvar Hızı" +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "Üst yüzeylerin dolgunun içine doğru genişleyeceği mesafedir. Daha yüksek değerler, yüzeyin dolgu şekline daha iyi tutunmasını sağladığı gibi yukarıdaki katmandaki duvarların yüzeye daha iyi yapışmasını sağlar. Daha düşük değerler, kullanılan malzemenin miktarından tasarruf yapılmasını sağlar." -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "İç Duvar Akışı" +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Alt Yüzey Genişleme Mesafesi" -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "İç Duvar(lar) Hattı Genişliği" +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "Alt yüzeylerin dolgunun içine doğru genişleyeceği mesafedir. Daha yüksek değerler, yüzeyin dolgu şekline daha iyi tutunmasını sağladığı gibi yüzeyin aşağıdaki katmandaki duvara daha iyi yapışmasını sağlar. Daha düşük değerler, kullanılan malzemenin miktarından tasarruf yapılmasını sağlar." -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "Dış duvar yoluna uygulanan ilave. Dış duvar nozülden küçükse ve iç duvardan sonra yazdırılmışsa, nozüldeki deliği modelin dış kısmı yerine iç duvarlar ile üst üste bindirmek için bu ofseti kullanın." +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Genişleme için Maksimum Yüzey Açısı" -msgctxt "brim_location option inside" -msgid "Inside Only" -msgstr "" +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "Nesnenizin bu ayardan daha geniş açıya sahip üst ve/veya alt zeminlerinin yüzeyleri genişletilmez. Böylece model yüzeyinin neredeyse dik açıya sahip olduğu durumlarda ortaya çıkan dar yüzey alanlarının genişletilmesi önlenmiş olur. 0°’lik bir açı yataydır ve yüzey alanının genişlemesine neden olmaz; 90°’lik bir açı dikeydir ve tüm yüzey alanlarının genişlemesine neden olur." -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "İçten Dışa" +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Genişleme için Minimum Yüzey Genişliği" -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "Tercih edilen arayüz hatları" +msgctxt "min_skin_width_for_expansion description" +msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." +msgstr "Bu değerden daha dar olan yüzey alanları genişletilmez. Böylece model yüzeyinin dikeye yakın bir eğime sahip olduğu durumlarda ortaya çıkan dar yüzey alanlarının genişletilmesi önlenmiş olur." -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "Tercih edilen arayüz" +msgctxt "infill label" +msgid "Infill" +msgstr "Dolgu" -msgctxt "prime_tower_mode option interleaved" -msgid "Interleaved" -msgstr "" +msgctxt "infill description" +msgid "Infill" +msgstr "Dolgu" -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "İç İçe Geçen Kiriş Katman Sayısı" +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Dolgu Ekstruderi" -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "İç İçe Geçme Genişliği" +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "Dolgu yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "İç İçe Geçme Sınırından Kaçınma" +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Dolgu Yoğunluğu" -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "İç İçe Geçme Derinliği" +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "Yazdırma dolgusunun yoğunluğunu ayarlar." -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "İç İçe Geçen Yapı Uyumlaması" +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Dolgu Hattı Mesafesi" -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Sadece En Yüksek Katmanı Ütüle" +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "Yazdırılan dolgu hatları arasındaki mesafe. Bu ayar, dolgu yoğunluğu ve dolgu hattı genişliği ile hesaplanır." -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Ütüleme İvmesi" +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Dolgu Şekli" -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Ütüleme Akışı" +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "Baskının dolgu malzemesinin şeklidir. Hat ve zikzak dolgu, farklı katmanlar üzerinde yön değiştirerek malzeme maliyetini azaltır. Izgara, üçgen, üçlü altıgen, kübik, sekizlik, çeyrek kübik, çapraz ve eşmerkezli şekiller her katmana tam olarak basılır. Gyroid, kübik, çeyrek kübik ve sekizlik dolgu, her yönde daha eşit bir kuvvet dağılımı sağlamak için her katmanda değişir. Yıldırım dolgu, objenin yalnızca tavanını destekleyerek dolgu miktarını en aza indirmeye çalışır." -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Ütüleme İlave Mesafesi" +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Izgara" -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Ütüleme İvmesi Değişimi" +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Çizgiler" -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Ütüleme Hattı Boşluğu" +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Üçgenler" -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Ütüleme Modeli" +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Üçlü Altıgen" -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Ütüleme Hızı" +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Kübik" -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "Merkez Nokta" +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Kübik Alt Bölüm" -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "Destek malzemesi mi" +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Sekizlik" -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "Bu malzeme ısıtıldığında temiz bir şekilde parçalanan tür de mi (kristalli) yoksa uzun iç içe polimer zincirler (kristal olmayan) oluşturan türde mi?" +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Çeyrek Kübik" -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "Bu malzeme genellikle baskı sırasında destek malzemesi olarak mı kullanılır" +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Eş merkezli" -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "Parçalardaki delikleri değil, yalnızca ana hatlarını titretir." +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zik Zak" -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Bağlı Olmayan Yüzleri Tut" +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Çapraz" -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Katman Yüksekliği" +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "Çapraz 3D" -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "Katman Başlangıcı X" +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Katman Başlangıcı Y" +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Yıldırım" -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "Radyenin taban katmanının katman kalınlığı. Bu, yazıcı yapı levhasına sıkıca yapışan kalın bir katman olmalıdır." +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Dolgu Hatlarını Bağlayın" -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "Radyenin orta katmanının katman kalınlığı." +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "İç duvarın şeklini takip eden bir hattı kullanarak dolgu şeklinin iç duvarla buluştuğu noktada uçları bağlar. Bu ayarın etkinleştirilmesi, dolgunun duvarlara daha iyi yapışmasını sağlayabilir ve dolgunun dikey yüzeylerin kalitesinin etkilerini azaltabilir. Bu ayarın devre dışı bırakılması, kullanılan malzemenin miktarını azaltır." -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Üst radye katmanlarının katman kalınlığı." +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Dolgu Poligonlarını Bağla" -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "Destek yapısının daha kolay kırılması için her N milimetresinde bir destek hatları arasında bağlantı atlayın." +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "Yan yana giden dolgu yollarını bağla. Birkaç kapalı poligondan oluşan dolgu şekilleri için bu ayarı etkinleştirmek hareket süresini büyük ölçüde kısaltır." -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Sol" +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Dolgu Hattı Yönleri" + +msgctxt "infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." +msgstr "Kullanılacak tam sayı hat yönü listesi. Listedeki öğeler, katmanlar ilerledikçe sıralı olarak kullanılır. Listenin sonuna ulaşıldığında baştan başlanır. Liste öğeleri virgülle ayrılır ve tüm liste köşeli parantez içine alınır. Varsayılan ayar boş listedir ve geleneksel varsayılan açılar kullanılır (çizgiler ve zikzak şekiller için 45 ve 135 derece; diğer tüm şekiller için 45 derece)." -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Yazıcı Başlığını Kaldır" +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "Dolgu X Kayması" -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Yıldırım" +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "Dolgu şekli X ekseni boyunca bu mesafe kadar kaydırılır." -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Yıldırım Dolgu Çıkıntı Açısı" +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Dolgu Y Kayması" -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Yıldırım Dolgu Budama Açısı" +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "Dolgu şekli Y ekseni boyunca bu mesafe kadar kaydırılır." -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Yıldırım Dolgu Düzleştirme Açısı" +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Rastgele Boşluk Doldurma Başlat" -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Yıldırım Dolgu Destek Açısı" +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "Önce hangi boşluk doldurma hattının yapılacağını rastgele belirler. Böylece tek bir segmentin en güçlü yapıda olması önlenir ancak bu işlem ilave gezinti hamlelerine neden olabilir." -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "Dal Erişimini Sınırla" +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "Dolgu Hattı Çoğaltıcı" -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "Her dalın desteklediği noktadan ne kadar uzağa gitmesi gerektiğini sınırlayın. Bu sınırlama, desteği daha sağlam hale getirebilir, ancak dalların miktarını (ve bu nedenle, malzeme kullanımı/baskı süresini) artıracaktır" +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "Her bir dolgu hattını bu sayıda hatta dönüştür. Ekstra hatlar birbirlerini kesmez, birbirlerinden bağımsız kalırlar. Bu dolguyu sertleştirir, ancak yazdırma süresini uzatırken materyal kullanımını artırır." -msgctxt "bv_temp_warn_limit description" -msgid "Limit on Build Volume Temperature warning for detection." -msgstr "" +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Ekstra Dolgu Duvar Sayısı" -msgctxt "bv_temp_anomaly_limit description" -msgid "Limit on Build Volume temperature Anomaly for detection." -msgstr "" +msgctxt "infill_wall_line_count description" +msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "Dolgu alanının etrafına ekstra duvar ekle. Bu duvarlar üst/alt yüzey hatlarının daha az aşağı düşmesini sağlar. Yani biraz fazla materyal kullanarak, daha az üst/alt yüzey katmanı ile aynı kaliteyi yakalayabilirsiniz." +"Bu özellik, doğru konfigüre edildiğinde, harekete veya geri çekmeye gerek kalmadan Dolgu Poligonlarını Bağlama ile birlikte tüm dolguyu tek bir ekstrüzyon yoluna bağlayabilir." -msgctxt "print_temp_anomaly_limit description" -msgid "Limit on Print Temperature anomaly for detection." -msgstr "" +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Kübik Alt Bölüm Kalkanı" -msgctxt "print_temp_warn_limit description" -msgid "Limit on Print temperature warning for detection." -msgstr "" +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "Bu küpün bölünüp bölünmemesine karar vermek için modelin sınırını kontrol eden ve her bir küpün merkezinden alınan yarıçapa ekleme. Büyük değerler modelin sınırının yanında daha kalın küçük küp kalkanları oluşmasına neden olur." -msgctxt "flow_anomaly_limit description" -msgid "Limit on flow anomaly for detection." -msgstr "" +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "Dolgu Çakışma Oranı" -msgctxt "flow_warn_limit description" -msgid "Limit on the flow warning for detection." -msgstr "" +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Dolgu hattı genişliğinin yüzdesi olarak dolgu ve duvarların arasındaki çakışma miktarı. Ufak bir çakışma duvarların dolguya sıkıca bağlanmasını sağlar." -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "Bu örgünün hacmini diğer örgülere göre sınırlandırın. Bir örgünün belirli alanlarını farklı ayarlarla ve tamamen farklı bir ekstrüder ile yazdırmak için bunu kullanabilirsiniz." +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Dolgu Çakışması" -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Sınırlı" +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Dolgu ve duvarlar arasındaki çakışma miktarı. Hafif bir çakışma duvarların dolguya sıkıca bağlanmasını sağlar." -msgctxt "line_width label" -msgid "Line Width" -msgstr "Hat Genişliği" +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "Dolgu Sürme Mesafesi" -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Çizgiler" +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "Dolgunun duvarlara daha iyi yapışması için her dolgu hattından sonra eklenen hareket mesafesi. Bu seçenek, dolgu çakışmasına benzer, ancak ekstrüzyon yoktur ve sadece dolgu hattının bir ucunda çakışma vardır." -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Çizgiler" +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Dolgu Katmanı Kalınlığı" -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Çizgiler" +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "Dolgu malzemesinin her bir katmanının kalınlığı Bu değer her zaman katman yüksekliğinin katı olmalıdır, aksi takdirde yuvarlanır." -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Çizgiler" +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Aşamalı Dolgu Basamakları" -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Çizgiler" +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "Üst yüzeylerin altına indikçe dolgu yoğunluğunu yarıya indirme sayısı. Üst yüzeylere daha yakın olan alanlarda, Dolgu Yoğunluğuna kadar yoğunluk daha yüksektir." -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Çizgiler" +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Aşamalı Dolgu Basamak Yüksekliği" -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Çizgiler" +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "Yoğunluğun yarısına inmeden önce verilen bir yoğunluktaki dolgunun yüksekliği." -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Çizgiler" +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Duvarlardan Önce Dolgu" -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "Duvarları yazdırmadan önce dolguyu yazdırın. Önce duvarları yazdırmak daha düzgün duvarlar oluşturabilir ama yazdırmayı olumsuz etkiler. Önce dolguyu yazdırmak duvarların daha sağlam olmasını sağlar, fakat dolgu şekli bazen yüzeyden görünebilir." -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Makine" +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Minimum Dolgu Alanı" -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Makine Derinliği" +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "Bundan küçük dolgu alanları oluşturma (onun yerine yüzey kullan)." -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Makinenin Başlığı ve Fan Poligonu" +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Dolgu Desteği" -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Makine Yüksekliği" +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "Yazdırma dolgusu, yalnızca model tepelerinin desteklenmesi gereken yerleri yapılandırır. Bu özelliğin etkinleştirilmesi yazdırma süresini ve malzeme kullanımını azaltır ancak üniform olmayan nesne kuvvetine yol açar." -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Makine Türü" +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Dolum Çıkıntı Açısı" -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Makine Genişliği" +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "Dolum eklenen dahili çıkıntıların minimum açısı. 0° değerde nesneler tamamen doldurulur, 90°’de dolgu yapılmaz." -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Makine özel ayarları" +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Kaplamanın Kenar Desteği Kalınlığı" -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Çıkıntıyı Yazdırılabilir Yap" +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "Kaplamanın kenarlarını destekleyen ekstra dolgunun kalınlığı." -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "Birbirine dokunan örgülerin az oranda üst üste binmesini sağlayın. Böylelikle bunlar daha iyi birleşebilir." +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Kaplamanın Kenar Desteği Katmanları" -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "Alttaki destek alanlarını çıkıntıda olanlardan daha küçük yapın." +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "Kaplamanın kenarlarını destekleyen dolgu katmanının kalınlığı." -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "Destek örgüsünde askıda kalan herhangi bir kısım olmaması için destek örgüsünün altındaki her yere destek yapın." +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Yıldırım Dolgu Destek Açısı" -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "Ekstruder ilk konumunu, yazıcı başlığının son konumuna göre ayarlamak yerine mutlak olarak ayarlayın." +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Bir yıldırım dolgu tabakasının üstünde kalanları ne zaman desteklenmesi gerektiğini belirler. Bir katmanın kalınlığı verilen açıyla ölçülür." -msgctxt "layer_0_z_overlap description" -msgid "" -"Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" -"It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" -msgstr "" +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Yıldırım Dolgu Çıkıntı Açısı" -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Kafesleri 3D baskı için daha uygun hale getirir." +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Bir yıldırım dolgu tabakasının üstündeki modeli ne zaman desteklemesi gerektiğini belirler. Dalların açısı olarak ölçülür." -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Yıldırım Dolgu Budama Açısı" -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "Malzemeden tasarruf etmek için dolgu hatlarının uç noktaları kısaltılır. Bu ayar, bu hatların uç noktalarının çıkıntı açısıdır." -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volümetrik)" +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Yıldırım Dolgu Düzleştirme Açısı" -msgctxt "material description" +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "Dolgu hatları, baskı süresinden tasarruf etmek için düzleştirilir. Bu, dolgu hattının uzunluğu boyunca izin verilen maksimum çıkıntı açısıdır." + +msgctxt "material label" msgid "Material" msgstr "Malzeme" -msgctxt "material label" +msgctxt "material description" msgid "Material" msgstr "Malzeme" -msgctxt "material_brand label" -msgid "Material Brand" -msgstr "" +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Varsayılan Yazdırma Sıcaklığı" -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "GUID malzeme" +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "Yazdırma için kullanılan varsayılan sıcaklık. Bu sıcaklık malzemenin “temel” sıcaklığı olmalıdır. Diğer tüm yazıcı sıcaklıkları bu değere dayanan ofsetler kullanmalıdır" -msgctxt "material_type label" -msgid "Material Type" -msgstr "" +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Yapı Disk Bölümü Sıcaklığı" -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Sürme Hareketleri Arasındaki Malzeme Hacmi" +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "Baskı yapılacak ortamın sıcaklığı. Bu değer 0 ise yapı hacminin sıcaklığı ayarlanmaz." -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Geri Çekmesiz Maks. Tarama Mesafesi" +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Yazdırma Sıcaklığı" -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Maksimum X İvmesi" +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "Yazdırma için kullanılan sıcaklık." -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Maksimum Y İvmesi" +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "İlk Katman Yazdırma Sıcaklığı" -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Maksimum Z İvmesi" +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer." +msgstr "İlk katmanın basımında kullanılan sıcaklık." -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "Maksimum Dal Açısı" +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "İlk Yazdırma Sıcaklığı" -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Maksimum Sapma" +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "Yazdırmanın başlayacağı Yazdırma Sıcaklığına ulaşırken görülen minimum sıcaklık." -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Maksimum Ekstrüzyon Alanı Sapması" +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Son Yazdırma Sıcaklığı" -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Maksimum Fan Hızı" +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "Yazdırma bitmeden hemen önce soğuma işleminin başladığı sıcaklık." -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Maksimum Filaman İvmesi" +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Ekstrüzyon Sırasında Soğuma Hızı Düzenleyici" -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Maksimum Model Açısı" +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "Ekstrüzyon sırasında nozülün soğuduğu ilave hız. Aynı değer, ekstrüzyon sırasında ısınırken kaybedilen ısınma hızını göstermek için de kullanılır." -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Maksimum Çıkıntı Deliği Alanı" +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Varsayılan Yapı Levhası Sıcaklığı" -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Maksimum Durma Süresi" +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "Isınan yapı levhası için kullanılan varsayılan sıcaklık. Bu sıcaklık yapı levhasının “temel” sıcaklığı olmalıdır. Diğer tüm yazıcı sıcaklıkları bu değere dayanan ofsetler kullanmalıdır" -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Maksimum Çözünürlük" +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Yapı Levhası Sıcaklığı" -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Maksimum Geri Çekme Sayısı" +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "Isıtıcı yapı plakası için kullanılan sıcaklık. Bu değer 0 olduğunda yapı plakası ısıtılmaz." -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Genişleme için Maksimum Yüzey Açısı" +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "İlk Katman Yapı Levhası Sıcaklığı" -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Maksimum Hız E" +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "İlk katmanda ısıtıcı yapı plakası için kullanılan sıcaklık. Bu değer 0 olduğunda yapı plakası ilk katman boyunca ısıtılmaz." -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Maksimum X Hızı" +msgctxt "material_adhesion_tendency label" +msgid "Adhesion Tendency" +msgstr "Yapışma Eğilimi" -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Maksimum Y Hızı" +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "Yüzeye yapışma eğilimi." -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Maksimum Z Hızı" +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Yüzey Enerjisi" -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Kule Destekli Maksimum Çap" +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Yüzey enerjisi." -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Maksimum Hareket Çözünürlüğü" +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Ölçekleme Faktörü Büzülme Telafisi" -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "X yönü motoru için maksimum ivme" +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "Malzemenin soğudukça büzülmesini telafi etmek için model bu faktöre göre ölçeklenecektir." -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Y yönü motoru için maksimum ivme." +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Yatay Ölçekleme Faktörü Büzülme Telafisi" -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Z yönü motoru için maksimum ivme." +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "Malzemenin soğudukça büzülmesini telafi etmek için model bu faktöre göre XY yönünde (yatay olarak) ölçeklenecektir." -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "Filaman motoru için maksimum ivme." +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Dikey Ölçekleme Faktörü Büzülme Telafisi" -msgctxt "bridge_sparse_infill_max_density description" -msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." -msgstr "Seyrek olması düşünülen dolgunun maksimum yoğunluğu. Seyrek dolgu üzerindeki kaplama, desteksiz olacağı düşünülerek köprü kaplaması olarak değerlendirilir." +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "Malzemenin soğudukça büzülmesini telafi etmek için model bu faktöre göre Z yönünde (dikey olarak) ölçeklenecektir." -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "Özel bir destek kulesiyle desteklenecek küçük bir alanın X/Y yönlerindeki maksimum çapıdır." +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Kristalli Malzeme" -msgctxt "max_extrusion_before_wipe description" -msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." -msgstr "Başka bir nozül sürme işlemi başlatılmadan önce ekstrüde edilebilecek maksimum malzeme miktarı. Bu değer, bir katmanda gereken malzeme hacminden daha düşükse ayarın bu katmanda bir etkisi olmayacaktır, yani katman başına bir sürme sınırı vardır." +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "Bu malzeme ısıtıldığında temiz bir şekilde parçalanan tür de mi (kristalli) yoksa uzun iç içe polimer zincirler (kristal olmayan) oluşturan türde mi?" -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Birleştirilmiş Bileşim Çakışması" +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Sızma Önleme Geri Çekme Mesafesi" -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Ağ Onarımları" +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "Malzemenin sızma yapmaması için gereken geri çekilme mesafesidir." -msgctxt "mesh_position_x label" -msgid "Mesh Position X" -msgstr "Bileşim konumu X" +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Sızma Önleme Geri Çekme Hızı" -msgctxt "mesh_position_y label" -msgid "Mesh Position Y" -msgstr "Bileşim konumu Y" +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "Filament değişimi sırasında malzemenin sızma yapmaması için gereken geri çekilme hızıdır." -msgctxt "mesh_position_z label" -msgid "Mesh Position Z" -msgstr "Bileşim konumu Z" +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Geri Çekme Pozisyonunda Durma Mesafesi" -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Örgü İşleme Sıralaması" +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "Filamentin ısıtıldığında kopmadan esneyebileceği mesafedir." + +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Durma Payına Uygun Geri Çekme Hızı" + +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "Filamentin kopmadan ne kadar hızlı geri çekilmesi gerektiğidir." + +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Kopma Hazırlığı Sıcaklığı" + +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "Malzemeyi temizlemek için kullanılan sıcaklık; kabaca mümkün olan en yüksek baskı sıcaklığına eşit olmalıdır." + +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Kopma Geri Çekme Mesafesi" -msgctxt "mesh_rotation_matrix label" -msgid "Mesh Rotation Matrix" -msgstr "Bileşim Rotasyon Matrisi" +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "Sorunsuz kopması için filamentin geri çekilmesi gereken mesafedir." -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Ortalayıcı" +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Kopma Geri Çekme Hızı" -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Minimum Kalıp Genişliği" +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "Sorunsuz kopması için filamentin geri çekilmesi gereken hızdır." -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Minimum Sürede Bekleme Sıcaklığı" +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Kopma Sıcaklığı" -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Minimum Köprü Duvarı Uzunluğu" +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "Sorunsuz kopması için filament koptuğundaki sıcaklık değeridir." -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Minimum Çift Duvar Hattı Genişliği" +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Temizleme Hızı" -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Minimum Geri Çekme Mesafesi Penceresi" +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "Farklı bir malzemeye geçildikten sonra malzemenin kullanıma hazır hale getirileceği süredir." -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Minimum Yüz Hattı Boyutu" +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Temizleme Uzunluğu" -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Minimum Besleme Hızı" +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "Farklı bir malzemeye geçilirken nozülün önceki malzemeden temizlenmesi için kullanılacak malzeme (filament parçası) miktarıdır." -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "Modele Göre Minimum Yükseklik" +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Filament Temizliği Bitiş Hızı" -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Minimum Dolgu Alanı" +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "Boş bir makara aynı malzemeden yeni bir makara ile değiştirildikten sonra malzemenin kullanıma hazır hale getirileceği süredir." -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Minimum Katman Süresi" +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Filament Temizliği Bitiş Uzunluğu" -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Minimum Tek Duvar Hattı Genişliği" +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "Boş bir makara aynı malzemeden yeni bir makara ile değiştirilirken nozülün önceki malzemeden temizlenmesi için kullanılacak malzeme (filament parçası) miktarıdır." -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Minimum Poligon Çevre Uzunluğu" +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Maksimum Durma Süresi" -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Genişleme için Minimum Yüzey Genişliği" +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "Malzemenin kuru olmadığı durumda güvenli şekilde saklanabileceği süredir." -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Minimum Hız" +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Yük Taşıma Çarpanı Yok" -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Minimum Destek Bölgesi" +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "Besleme ünitesi ile nozül haznesi arasına sıkıştırılacak filamenti belirten faktördür ve filament değişimi için malzemenin ne kadar hareket ettirileceğini belirlemek için kullanılır." -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Minimum Destek Zemini Bölgesi" +msgctxt "material_flow label" +msgid "Flow" +msgstr "Akış" -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Minimum Destek Arayüzü Bölgesi" +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "Akış dengeleme: sıkıştırılan malzeme miktarı bu değerle çoğaltılır." -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Minimum Destek Çatısı Bölgesi" +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Duvar Akışı" -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Minimum Destek X/Y Mesafesi" +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Duvar hatlarının akış telafisidir." -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Minimum İnce Duvar Hattı Genişliği" +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Dış Duvar Akışı" -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Tarama Öncesi Minimum Hacim" +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "En dıştaki duvar hattının akış telafisidir." -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Minimum Duvar Hattı Genişliği" +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "İç Duvar Akışı" -msgctxt "minimum_interface_area description" -msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Destek arayüzü çokgenlerinin minimum alan boyutu. Alanı bu değerden küçük olan poligonlar normal destekle basılacaktır." +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "En dıştaki duvar hattı hariç diğer duvar hatlarının akış telafisidir." -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "Destek poligonları için minimum alan boyutu. Alanı bu değerden daha düşük olan poligonlar oluşturulmayacaktır." +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Üst Yüzeyin En Dış Duvar Akışı" -msgctxt "minimum_bottom_area description" -msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Destek tabanlarının minimum alan boyutu. Alanı bu değerden küçük olan poligonlar normal destekle basılacaktır." +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Üst Yüzeyin En Dış Duvar Hattında Akış Telafisi." -msgctxt "minimum_roof_area description" -msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Destek çatılarının minimum alan boyutu. Alanı bu değerden küçük olan poligonlar normal destekle basılacaktır." +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Üst Yüzey İç Duvar Akışı" -msgctxt "min_feature_size description" -msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." -msgstr "İnce yüz hatlarının minimum kalınlığıdır. Bu değerden daha ince olan model yüz hatları yazdırılmaz, Minimum Yüz Hattı Boyutundan daha kalın olan modeller ise Minimum Duvar Hattı Genişliği değerine kadar genişletilir." +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Tüm duvar hatları için dıştaki hariç üst yüzey duvar hatlarında akış telafi." -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "Koni desteği tabanının indirildiği minimum genişlik. Küçük genişlikler, destek tabanlarının dengesiz olmasına neden olur." +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Üst/Alt Akış" -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Kalıp" +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Üst/alt hatların akış telafisidir." -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Kalıp Açısı" +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Üst Yüzeyin Dış Katman Akışı" -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Kalıp Çatı Yüksekliği" +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "Baskının üst bölümlerindeki hatların akış telafisidir." -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Monotonik Ütüleme Düzeni" +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Dolgu Akışı" -msgctxt "raft_surface_monotonic label" -msgid "Monotonic Raft Top Surface Order" -msgstr "" +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Dolgu hatlarının akış telafisidir." -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Monotonik Üst Yüzey Düzeni" +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Etek/Kenar Akışı" -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Monotonik Üst/Alt Düzeni" +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Etek veya kenar hatlarının akış telafisidir." -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "Çoklu etek hatları küçük modeller için daha iyi ekstrüzyon işlemi hazırlanmasına yardımcı olur. Bu değeri 0’a ayarlamak eteği devre dışı bırakacaktır." +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Destek Akışı" -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "İlk katman üzerinde bulunan hat genişliği çoğaltıcı. Çoğaltmayı artırmak yatak yapışmasını iyileştirebilir." +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Destek yapı hatlarının akış telafisidir." -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Yük Taşıma Çarpanı Yok" +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Destek Ara Yüzeyi Akışı" -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Z Boşluklarında Dış Katman Oluşturma" +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "Destek çatı ve zemin hatlarının akış telafisidir." -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Modellerinizi yazdırmanın geleneksel olmayan yollarıdır." +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Destek Çatı Akışı" + +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Destek çatı hatlarının akış telafisidir." -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Hiçbiri" +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Destek Zemin Akışı" -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Hiçbiri" +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Destek zemin hatlarının akış telafisidir." -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normal" +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "İlk Direk Akışı" -msgctxt "prime_tower_mode option normal" -msgid "Normal" -msgstr "" +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Temel kule hatlarının akış telafisidir." -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Normal" +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "İlk Katman Akışı" -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "Normal koşullarda, Cura ağdaki küçük boşlukları diker ve büyük boşluklu katman parçalarını ortadan kaldırır. Bu seçeneği etkinleştirmek, dikilemeyen parçaları muhafaza eder. Bu seçenek, hiçbir işlemin uygun bir g-code oluşturamaması durumunda başvurulacak son seçenek olarak kullanılmalıdır." +msgctxt "material_flow_layer_0 description" +msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." +msgstr "İlk katman için akış dengelemesi: ilk katmana ekstrude edilen malzeme miktarı bu değerle çarpılır." -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Yüzey Alanında Değil" +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "İlk Katman İç Duvar Akışı" -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "Dış Yüzeyde Değil" +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "En dıştaki duvar hatları hariç tüm duvar hatları için duvar hatlarında akış telafisi, ancak sadece ilk katman içindir." -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Nozül Açısı" +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "İlk Katman Dış Duvar Akışı" -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Nozül Çapı" +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "İlk katmanın en dış duvar hattında akış telafisi." -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Nozül İzni Olmayan Alanlar" +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "İlk Katman Alt Akışı" -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Nozül Kimliği" +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "İlk katmanın alt hatlarında akış telafisi" -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Nozül Uzunluğu" +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Bekleme Sıcaklığı" -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Nozül Değişimiyle Çalışmaya Hazırlanacak Ek Miktar" +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "Yazdırma için başka bir nozül kullanılırken nozülün sıcaklığı." -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Nozül Değişiminin İlk Hızı" +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "Destek malzemesi mi" -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Nozül Değişiminin Geri Çekme Hızı" +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "Bu malzeme genellikle baskı sırasında destek malzemesi olarak mı kullanılır" -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Nozül Anahtarı Geri Çekme Mesafesi" +msgctxt "speed label" +msgid "Speed" +msgstr "Hız" -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Nozül Anahtarı Geri Çekme Hızı" +msgctxt "speed description" +msgid "Speed" +msgstr "Hız" -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Ekstrüder Sayısı" +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Yazdırma Hızı" -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Etkinleştirilmiş Ekstruder Sayısı" +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "Yazdırmanın gerçekleştiği hız." -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Daha Yavaş Katman Sayısı" +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Dolgu Hızı" -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "Etkinleştirilmiş ekstruder dişli çarklarının sayısı; yazılımda otomatik olarak ayarlanır" +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "Dolgunun gerçekleştiği hız." -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "Ekstruder dişli çarklarının sayısı. Ekstruder dişli çarkı besleyici, bowden tüpü ve nozülden oluşur." +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Duvar Hızı" -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "Nozülün fırçadan geçirilme sayısı." +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "Duvarların yazdırıldığı hız." -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "Üst yüzeylerin altına indikçe dolgu yoğunluğunu yarıya indirme sayısı. Üst yüzeylere daha yakın olan alanlarda, Dolgu Yoğunluğuna kadar yoğunluk daha yüksektir." +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Dış Duvar Hızı" -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "Üst yüzeylerin altına inerken destek dolgusu yoğunluğunu yarıya indirmek için inilecek yüzey sayısı. Üst yüzeylere daha yakın olan alanlarda yoğunluk daha fazladır ve Destek Dolgusu Yoğunluğuna kadar çıkabilir." +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "En dış duvarların yazdırıldığı hız. Dış duvarı düşük hızda yazdırmak son yüzey kalitesini artırır. Öte yandan, iç duvar hızı ve dış duvar hızı arasındaki farkın fazla olması kaliteyi olumsuz etkileyecektir." -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Sekizlik" +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "İç Duvar Hızı" -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Kapalı" +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "Tüm iç duvarların yazdırıldığı hız. İç duvarları dış duvarlardan daha hızlı yazdırmak yazdırma süresini azaltacaktır. Bu ayarı dış duvar hızı ve dolgu hızı arasında yapmak faydalı olacaktır." -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "Nesneye x yönünde uygulanan ofset." +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Üst Yüzeyin En Dış Duvar Hızı" -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "Nesneye y yönünde uygulanan ofset." +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "Üst Yüzeyin En Dış Duvarlarının Hangi Hızda Basıldığı." -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "Nesneye z yönünde uygulanan ofset. Bununla birlikte “Nesne Havuzu” olarak adlandırılan malzemeyi de kullanabilirsiniz." +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Üst Yüzey İç Duvar Hızı" -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Ekstruder Ofseti" +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "Üst Yüzey İç Duvarların Hangi Hızda Basıldığı." -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "Mümkün olduğunda yapı levhası üzerinde" +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Üst Yüzey Hızı" -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "Gerektiğinde model üzerinde" +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "Üst yüzey katmanların yazdırıldığı hız." -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "Birer Birer" +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Üst/Alt Hız" -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "Sadece Hareket Sırasında Yazdırılan Bölümleri Atlama yoluyla yatay hareket sayesinde atlanamayan yazdırılmış parçalar üzerinde hareket ederken Z Sıçramasını gerçekleştirin." +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "Üst/alt katmanların yazdırıldığı hız." -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "Ütüleme işlemini bileşimin sadece en son katmanı üzerinde gerçekleştirin. Bu, alt katmanlarda pürüzsüz bir yüzey tesviyesine gerek olmadığı durumlarda zaman kazandırır." +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Destek Hızı" -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Sızdırma Kalkanı Açısı" +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "Destek yapısının yazdırıldığı hız. Yüksek hızlardaki yazdırma desteği yazdırma süresini büyük oranda azaltabilir. Destek yapısının yüzey kalitesi, yazdırma işleminden sonra çıkartıldığı için önemli değildir." -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Sızdırma Kalkanı Mesafesi" +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Destek Dolgu Hızı" -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "Optimum Dal Aralığı" +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "Dolgu desteğinin yazdırıldığı hız. Dolguyu daha düşük hızlarda yazdırmak sağlamlığı artırır." -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Duvar Yazdırma Sırasını Optimize Et" +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Destek Arayüzü Hızı" -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "Geri çekmelerin sayısını ve kat edilen mesafeyi azaltmak için duvarların yazdırıldığı sırayı optimize edin. Çoğu parça, bunun etkinleştirilmesinden yararlanır, ancak bazılarının yararlanması için gerçekte daha uzun süre gerekebilir. Bu yüzden, yazdırma süresi tahminlerini optimizasyonlu ve optimizasyonsuz olarak karşılaştırın. Kenar, yapı levhası yapıştırması tipi olarak seçildiğinde ilk katman optimize edilmez." +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "Destek çatıları ve zeminlerinin yazdırılma hızı. Daha düşük hızlarda yazdırma, askıda kalan kısımların kalitesini iyileştirebilir." + +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Destek Çatısı Hızı" -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Dış Nozül Çapı" +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "Destek çatısının yazdırılma hızı. Daha düşük hızlarda yazdırma, askıda kalan kısımların kalitesini iyileştirebilir." -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Dış Duvar İvmesi" +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Destek Zemini Hızı" -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Dış Duvar Ekstruderi" +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "Destek zemininin yazdırılma hızı. Daha düşük hızlarda yazdırma, desteğin modelin üzerine yapışmasını iyileştirebilir." -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Dış Duvar Akışı" +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "İlk Direk Hızı" -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Dış Duvar İlavesi" +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "İlk direğin yazdırıldığı hız. Farklı filamanlar arasındaki yapışma standardın altında olduğunda, ilk direği daha yavaş yazdırmak dayanıklılığı artırabilir." -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "Dış Duvar Salınımı" +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Hareket Hızı" -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Dış Duvar Hattı Genişliği" +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "Hareket hamlelerinin hızı." -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Dış Duvar Hızı" +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "İlk Katman Hızı" -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Dış Duvar Sürme Mesafesi" +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "İlk katman için hız. Yapı plakasında yapışmayı iyileştirmek için düşük bir değer tavsiye edilir. Yapı plakasının kenar ve radye gibi yapışma yapılarını etkilemez." -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Aynı katman içindeki farklı adalardaki dış duvarlar sırayla basılır. Etkinleştirildiğinde, akış değişiklik miktarı duvarlar tür türüne basıldığı için sınırlıdır, devre dışı bırakıldığında ise aynı adalardaki duvarlar gruplandığı için adalar arasındaki seyahat sayısı azalır." +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "İlk Katman Yazdırma Hızı" -msgctxt "brim_location option outside" -msgid "Outside Only" -msgstr "" +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "İlk katmanın yazdırılması için belirlenen hız. Yapı tahtasına yapışmayı artırmak için daha düşük bir değer önerilmektedir." -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "Dıştan İçe" +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "İlk Katman Hareket Hızı" -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Çıkıntılı Duvar Açısı" +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "İlk katmandaki hareket hamlelerinin hızı. Daha önce yazdırılan bölümlerin yapı levhasından ayrılmasını önlemek için daha düşük bir değer kullanılması önerilir. Bu ayar değeri, Hareket Hızı ve Yazdırma Hızı arasındaki orana göre otomatik olarak hesaplanabilir." -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Çıkıntılı Duvar Hızı" +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Etek/Kenar Hızı" -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "Çıkıntılı duvarlar, normal yazdırma hızına göre bu yüzdeye denk bir hızda yazdırılacaktır." +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "Etek ve kenarın yazdırıldığı hız. Bu işlem normalde ilk katman hızında yapılır, ama etek ve kenarı farklı hızlarda yazdırmak isteyebilirsiniz." -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Geri çekmenin geri alınmasından sonraki duraklama." +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Z Atlama Hızı" -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "Köprü duvarları ve yüzey alanı yazdırılırken kullanılacak yüzde fan hızı." +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "Z Atlamaları için yapılan dikey Z hareketinin gerçekleştirileceği hızdır. Yapı plakasının veya makine tezgahının hareket etmesi daha zor olduğundan genelde baskı hızından daha düşüktür." -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "İkinci köprü yüzey alanı katmanı yazdırılırken kullanılacak yüzde fan hızı." +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Daha Yavaş Katman Sayısı" -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "Desteğin hemen üzerindeki yüzey bölgeleri yazdırılırken kullanılacak yüzdelik fan hızıdır. Yüksek fan hızı kullanmak desteğin daha kolay kaldırılmasını sağlayabilir." +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "Yapı levhasına daha iyi yapışma sağlamak ve yazdırmanın genel başarı oranını artırmak için ilk birkaç katman modelin kalan kısmından daha yavaş yazdırılır. Bu hız katmanlar üzerinde giderek artar." -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "Üçüncü köprü yüzey alanı katmanı yazdırılırken kullanılacak yüzde fan hızı." +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Akış Eşitleme Oranı" -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "Bu miktardan daha kısa çevre uzunluğuna sahip dilimlenmiş katmanlardaki poligonlar filtre ile elenecektir. Daha düşük değerler dilimleme süresini uzatacak ancak daha yüksek çözünürlükte bir ağ oluşturacaktır. Genellikle yüksek çözünürlüklü SLA yazıcılarına yöneliktir ve çok fazla detay içeren çok küçük 3D modellerinde kullanılır." +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "Hız için ekstrüzyon genişliği bazlı düzeltme faktörüdür. %0 değerinde hareket hızı Baskı Hızında sabit tutulur. %100 değerinde ise hareket hızı akış (mm³/s cinsinden) sabit tutulacak şekilde ayarlanır, yani normal Hat Genişliğinin yarısı iki kat daha hızlı basılır ve hatlar iki kat daha hızlı basılır. %100'den büyük değerler belirlenmesi, geniş hatların ekstrüde edilmesi için gereken yüksek basıncın telafi edilmesine yardımcı olabilir." -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "Tercih Edilen Dal Açısı" +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "İvme Kontrolünü Etkinleştir" -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "Bir fazla ve bir az duvar arasında ileri geri geçişi önleyin. Bu kenar boşluğu, [Minimum Duvar Hattı Genişliği - Kenar Boşluğu, 2 * Minimum Duvar Hattı Genişliği+Kenar Boşluğu] olarak takip edilen hat genişliklerinin aralığını genişletir. Bu kenar boşluğunun artırılması geçişlerin sayısını azaltır, bu da ekstrüzyon başlatma/durdurma sayısını ve hareket süresini azaltır. Bununla birlikte, geniş hat varyasyonları düşük veya aşırı ekstrüzyon sorunlarına yol açabilir." +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "Yazıcı başlığı ivmesinin ayarlanmasını sağlar. İvmeleri artırmak, yazdırma süresini azaltırken yazma kalitesinden ödün verir." -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "İlk Direk İvmesi" +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Hareket İvmesini Etkinleştir" -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Base" -msgstr "Başlangıç Kulesi Tabanı" +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "Hareket hamleleri için ayrı bir ivme oranı kullanın. Hareket hamleleri devre dışı bırakılırsa varış noktasında yazdırılan hattın ivme değerini kullanır." -msgctxt "prime_tower_base_height label" -msgid "Prime Tower Base Height" -msgstr "Başlangıç Kulesi Taban Yüksekliği" +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Yazdırma İvmesi" -msgctxt "prime_tower_base_size label" -msgid "Prime Tower Base Size" -msgstr "Başlangıç Kulesi Taban Boyutu" +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "Yazdırmanın gerçekleştiği ivme." -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Slope" -msgstr "Prime Tower Taban Eğimi" +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Dolgu İvmesi" -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "İlk Direk Akışı" +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "Dolgunun yazdırıldığı ivme." -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "İlk Direk Salınımı" +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Duvar İvmesi" -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "İlk Direk Hattı Genişliği" +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "Duvarların yazdırıldığı ivme." -msgctxt "prime_tower_max_bridging_distance label" -msgid "Prime Tower Maximum Bridging Distance" -msgstr "" +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Dış Duvar İvmesi" -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "İlk Direğin Minimum Hacmi" +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "En dış duvarların yazdırıldığı ivme." -msgctxt "prime_tower_raft_base_line_spacing label" -msgid "Prime Tower Raft Line Spacing" -msgstr "Başlangıç Kulesi Salı İzi Aralığı" +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "İç Duvar İvmesi" -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "İlk Direk Boyutu" +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "İç duvarların yazdırıldığı ivme." -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "İlk Direk Hızı" +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Üst Yüzey Dış Duvar Hızlanması" -msgctxt "prime_tower_mode label" -msgid "Prime Tower Type" -msgstr "" +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "Üst Yüzeyin En Dış Duvarlarının Hangi Hızda Basıldığı." -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "İlk Direk X Konumu" +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Üst Yüzey İç Duvar Hızlanması" -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "İlk Direk Y Konumu" +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "Üst yüzey iç duvarlarının hangi hızla basıldığı." -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Yazdırma İvmesi" +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Üst Yüzey İvmesi" -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Yazdırma İvmesi Değişimi" +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "Üst yüzey katmanların yazdırıldığı ivme." -msgctxt "ppr label" -msgid "Print Process Reporting" -msgstr "" +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Üst/Alt İvme" + +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "Üst/alt katmanların yazdırıldığı ivme." -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Yazdırma Dizisi" +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Destek İvmesi" -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Yazdırma Hızı" +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "Destek yapısının yazdırıldığı ivme." -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "İnce Duvarları Yazdır" +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Destek Dolgusu İvmesi" -msgctxt "brim_location description" -msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." -msgstr "" +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "Destek dolgusunun yazdırıldığı ivme." -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "Malzemenin hazırlanmasına yardımcı olan yazıcının yanındaki direği her nozül değişiminden sonra yazdırın." +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Destek Arayüzü İvmesi" -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "Yazdırma dolgusu, yalnızca model tepelerinin desteklenmesi gereken yerleri yapılandırır. Bu özelliğin etkinleştirilmesi yazdırma süresini ve malzeme kullanımını azaltır ancak üniform olmayan nesne kuvvetine yol açar." +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "Destek çatıları ve zeminlerinin yazdırıldığı ivme. Daha düşük ivmelerle yazdırma, askıda kalan kısımların kalitesini iyileştirebilir." -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Her zaman bitişik hatlarla tek yönde çakışmaya neden olan bir düzenle hatları ütüleyerek baskı yapın. Bu baskı biraz daha uzun sürer, fakat düz yüzeylerin daha tutarlı görünmesini sağlar." +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Destek Çatısı İvmesi" -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "Yapı levhası üzerinde modelleri toplayan bir model elde etmek amacıyla döküm olabilecek modelleri kalıp olarak yazdırır." +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "Destek çatısının yazdırıldığı ivme. Daha düşük ivmelerle yazdırma, askıda kalan kısımların kalitesini iyileştirebilir." -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "Yatay olarak nozül boyutundan daha ince olan model parçalarını yazdırır." +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Destek Zemini İvmesi" -msgctxt "raft_surface_monotonic description" -msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." -msgstr "" +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "Destek zemininin yazdırıldığı ivme. Daha düşük ivmelerle yazdırma, desteğin modelin üzerine yapışmasını iyileştirebilir." -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "İkinci köprü yüzey alanı katmanı yazdırılırken kullanılacak yazdırma hızı." +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "İlk Direk İvmesi" -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "Üçüncü köprü yüzey alanı katmanı yazdırılırken kullanılacak yazdırma hızı." +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "İlk direğin yazdırıldığı ivme." -msgctxt "print_temp_anomaly_limit label" -msgid "Print temperature Limit" -msgstr "" +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Hareket İvmesi" -msgctxt "print_temp_warn_limit label" -msgid "Print temperature Warning" -msgstr "" +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "Hareket hamlelerinin ivmesi." -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "Duvarları yazdırmadan önce dolguyu yazdırın. Önce duvarları yazdırmak daha düzgün duvarlar oluşturabilir ama yazdırmayı olumsuz etkiler. Önce dolguyu yazdırmak duvarların daha sağlam olmasını sağlar, fakat dolgu şekli bazen yüzeyden görünebilir." +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "İlk Katman İvmesi" -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Her zaman bitişik hatlarla tek yönde çakışmaya neden olan bir düzenle üst yüzey hatlarının baskısını yapın. Bu baskı biraz daha uzun sürer, fakat düz yüzeylerin daha tutarlı görünmesini sağlar." +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "İlk katman için belirlenen ivme." -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Her zaman bitişik hatlarla tek yönde çakışmaya neden olan bir düzenle üst/alt hat baskısı yapın. Bu baskı biraz daha uzun sürer, fakat düz yüzeylerin daha tutarlı görünmesini sağlar." +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "İlk Katman Yazdırma İvmesi" -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Yazdırma Sıcaklığı" +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "İlk katmanın yazdırıldığı ivme." -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "İlk Katman Yazdırma Sıcaklığı" +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "İlk Katman Hareket İvmesi" -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "En içteki etek çizgisinin birden fazla katmanla yazdırılması, eteğin çıkarılmasını kolaylaştırır." +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "İlk katmandaki hareket hamlelerinin ivmesi." -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "Her katmanda ek duvar yazdırır. Bu şekilde dolgu ek duvarların arasında alır ve daha sağlam baskılar ortaya çıkar." +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Etek/Kenar İvmesi" -msgctxt "resolution label" -msgid "Quality" -msgstr "Kalite" +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "Etek ve kenarın yazdırıldığı ivme. Bu işlem normalde ilk katman ivmesi ile yapılır, ama etek ve kenarı farklı bir ivmede yazdırmak isteyebilirsiniz." -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Çeyrek Kübik" +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Salınım Kontrolünü Etkinleştir" -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Radye" +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "X veya Y eksenlerindeki hareket hızı değiştiğinde yazıcı başlığının salınımının ayarlanmasını sağlar. Salınımı artırmak, yazdırma süresini azaltırken yazma kalitesinden ödün verir." -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Radye Hava Boşluğu" +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Hareket Salınımını Etkinleştir" -msgctxt "raft_base_margin label" -msgid "Raft Base Extra Margin" -msgstr "" +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "Hareket hamleleri için ayrı bir salınım oranı kullanın. Hareket hamleleri devre dışı bırakılırsa varış noktasında yazdırılan hattın ivme değerini kullanır." -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Radye Taban Ekstrüderi" +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Yazdırma İvmesi Değişimi" -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Radyenin Taban Fan Hızı" +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "Yazıcı başlığının maksimum anlık hız değişimi." -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Radye Taban Hat Genişliği" +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Dolgu Salınımı" -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Radyenin Taban Hat Genişliği" +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "Dolgunun yazdırıldığı maksimum anlık hız değişimi." -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Radyenin Taban Yazdırma İvmesi" +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Duvar Salınımı" -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Radyenin Taban Yazdırma Salınımı" +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "Duvarların yazdırıldığı maksimum anlık hız değişimi." -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Radyenin Taban Yazdırma Hızı" +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "Dış Duvar Salınımı" -msgctxt "raft_base_smoothing label" -msgid "Raft Base Smoothing" -msgstr "" +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "En dıştaki duvarların yazdırıldığı maksimum anlık hız değişimi." -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Radye Taban Kalınlığı" +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "İç Duvar Salınımı" -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Radye Tabanı Duvar Sayısı" +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "Tüm iç duvarların yazdırıldığı maksimum anlık hız değişimi." -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Ek Radye Boşluğu" +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Üst Yüzeyin İç Duvar Darbesi" -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Radye Fan Hızı" +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "Üst Yüzeyin İç Duvarlarının Basıldığı Anki Maksimum Hız Değişikliği." -msgctxt "raft_interface_margin label" -msgid "Raft Middle Extra Margin" -msgstr "" +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Üst Yüzeyin En Dış Duvar Darbesi" -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Radye Orta Ekstrüderi" +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "Üst Yüzeyin En Dış Duvarlarının Basıldığı Anki Maksimum Hız Değişikliği." -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Radyenin Orta Fan Hızı" +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Üst Yüzey İvmesi Değişimi" -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Radye Orta Katmanları" +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "Üst yüzey katmanların yazdırıldığı maksimum anlık hız değişimi." + +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Üst/Alt Salınımı" -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Radyenin Orta Hat Genişliği" +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "Üst/alt katmanların yazdırıldığı maksimum anlık hız değişimi." -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Radyenin Orta Yazdırma İvmesi" +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Destek Salınımı" -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Radyenin Orta Yazdırma Salınımı" +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "Destek yapısının yazdırıldığı maksimum anlık hız değişimi." -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Radyenin Orta Yazdırma Hızı" +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Destek Dolgu İvmesi Değişimi" -msgctxt "raft_interface_smoothing label" -msgid "Raft Middle Smoothing" -msgstr "" +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "Desteğin dolgusunun yazdırıldığı maksimum anlık hız değişimi." -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Radye Orta Boşluğu" +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Destek Arayüz Salınımı" -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Radye Orta Kalınlığı" +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "Desteğin çatıları ve zeminlerinin yazdırıldığı maksimum anlık hız değişimi." -msgctxt "raft_interface_wall_count label" -msgid "Raft Middle Wall Count" -msgstr "" +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Destek Çatısı Sarsıntısı" -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Radye Yazdırma İvmesi" +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "Desteğin çatılarının yazdırıldığı maksimum anlık hız değişimi." -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Radye Yazdırma Salınımı" +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Destek Zemini Sarsıntısı" -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Radye Yazdırma Hızı" +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "Desteğin zeminlerinin yazdırıldığı maksimum anlık hız değişimi." -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Radye Düzeltme" +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "İlk Direk Salınımı" -msgctxt "raft_surface_margin label" -msgid "Raft Top Extra Margin" -msgstr "" +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "İlk direğin yazdırıldığı maksimum anlık hız değişimi." -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Radye Üst Ekstrüderi" +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Hareket Salınımı" -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Radye Üst Fan Hızı" +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "Hareket hamlelerinin yapıldığı maksimum anlık hız değişimi." -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Radyenin Üst Katman Kalınlığı" +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "İlk Katman Salınımı" -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Radyenin Üst Katmanları" +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "İlk katman için maksimum anlık yazdırma hızı değişimi." -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Radyenin Üst Hat Genişliği" +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "İlk Katman Yazdırma Salınımı" -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Radye Üst Yazdırma İvmesi" +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "İlk katmanın yazdırıldığı maksimum anlık yazdırma hızı değişimi." -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Radye Üst Yazdırma Salınımı" +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "İlk Katman Hareket Salınımı" -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Radye Üst Yazdırma Hızı" +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "İlk katmandaki hareket hamlelerinin ivmesi." -msgctxt "raft_surface_smoothing label" -msgid "Raft Top Smoothing" -msgstr "" +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Etek/Kenar İvmesi Değişimi" -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Radyenin Üst Boşluğu" +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "Etek ve kenarların yazdırıldığı maksimum anlık hız değişimi." -msgctxt "raft_surface_wall_count label" -msgid "Raft Top Wall Count" -msgstr "" +msgctxt "travel label" +msgid "Travel" +msgstr "Hareket" -msgctxt "raft_wall_count label" -msgid "Raft Wall Count" -msgstr "" +msgctxt "travel description" +msgid "travel" +msgstr "hareket" -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Gelişigüzel" +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Geri Çekmeyi Etkinleştir" -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "Rastgele Boşluk Doldurma Başlat" +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Nozül yazdırılamayan alana doğru hareket ettiğinde filamanı geri çeker." -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "Önce hangi boşluk doldurma hattının yapılacağını rastgele belirler. Böylece tek bir segmentin en güçlü yapıda olması önlenir ancak bu işlem ilave gezinti hamlelerine neden olabilir." +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Katman Değişimindeki Geri Çekme" -msgctxt "magic_fuzzy_skin_enabled description" -msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." -msgstr "Yüzeyin sert ve belirsiz bir görüntü alması için dış duvarları yazdırırken rastgele titrer." +msgctxt "retract_at_layer_change description" +msgid "Retract the filament when the nozzle is moving to the next layer." +msgstr "Nozül bir sonraki katmana doğru hareket ettiğinde filamanı geri çekin." -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Dikdörtgen" +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Geri Çekme Mesafesi" -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "Olağan Fan Hızı" +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "Geri çekme hareketi sırasında geri çekilen malzemenin uzunluğu." -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Yüksekteki Olağan Fan Hızı" +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Geri Çekme Hızı" -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Katmandaki Olağan Fan Hızı" +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "Filamanın geri çekildiği ve geri çekme hareketi sırasında astarlandığı hız." -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "Olağan/Maksimum Fan Hızı Sınırı" +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Geri Çekme Sırasındaki Çekim Hızı" -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Bağıl Ekstrüzyon" +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "Filamanın geri çekme hareketi sırasında geri çekildiği hız." -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Tüm Boşlukları Kaldır" +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Geri Çekme Sırasındaki Astar Hızı" -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Boş İlk Katmanları Kaldır" +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "Filamanın geri çekme hareketi sırasında astarlandığı hız." -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Bileşim Kesişimini Kaldırın" +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Geri Çekme Sırasındaki İlave Astar Miktarı" -msgctxt "raft_base_remove_inside_corners label" -msgid "Remove Raft Base Inside Corners" -msgstr "" +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "Hareket sırasında bazı malzemeler eksilebilir, bu malzemeler burada telafi edebilir." -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Radye İç Köşelerini Kaldır" +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Minimum Geri Çekme Hareketi" -msgctxt "raft_interface_remove_inside_corners label" -msgid "Remove Raft Middle Inside Corners" -msgstr "" +msgctxt "retraction_min_travel description" +msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." +msgstr "Geri çekme işleminin yapılması için gerekli olan minimum hareket mesafesi. Küçük bir alanda daha az geri çekme işlemi yapılmasına yardımcı olur." -msgctxt "raft_surface_remove_inside_corners label" -msgid "Remove Raft Top Inside Corners" -msgstr "" +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Maksimum Geri Çekme Sayısı" -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "Birden fazla bileşimin çakıştığı alanları kaldırın. Bu, birleştirilmiş ikili malzemeler çakıştığında kullanılabilir." +msgctxt "retraction_count_max description" +msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." +msgstr "Bu ayar, düşük ekstrüzyon mesafesi penceresinde oluşan ekstrüzyon sayısını sınırlandırır. Bu penceredeki geri çekmeler yok sayılacaktır. Filamanı düzleştirebildiği ve aşındırma sorunlarına yol açabileceği için aynı filaman parçası üzerinde tekrar tekrar geri çekme yapılmasını önler." -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "Basılan ilk katmanın altındaki varsa boş katmanları kaldır. Bu ayarın devre dışı bırakılması, Dilimleme Toleransı Dışlayıcı veya Ortalayıcı olarak ayarlanmışsa, boş ilk katmanlar oluşmasına neden olabilir." +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Minimum Geri Çekme Mesafesi Penceresi" -msgctxt "raft_base_remove_inside_corners description" -msgid "Remove inside corners from the raft base, causing the raft to become convex." -msgstr "" +msgctxt "retraction_extrusion_window description" +msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." +msgstr "Maksimum geri çekme sayısının uygulandığı pencere. Bu değer, geri çekme mesafesi ile hemen hemen aynıdır, bu şekilde geri çekmenin aynı malzeme yolundan geçme sayısı etkin olarak sınırlandırılır." -msgctxt "raft_interface_remove_inside_corners description" -msgid "Remove inside corners from the raft middle part, causing the raft to become convex." -msgstr "" +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Tarama Modu" -msgctxt "raft_surface_remove_inside_corners description" -msgid "Remove inside corners from the raft top part, causing the raft to become convex." -msgstr "" +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "Tarama, hareket sırasında nozülü daha önce yazdırılmış alanlarda tutar. Bu durum hareketleri biraz uzatır ancak geri çekme ihtiyacını azaltır. Tarama kapalıysa malzeme geri çekilecektir, nozül ise bir sonraki noktaya düz bir çizgi üzerinden gider. Üst/alt yüzey alanlarının üzerinde tarama yapılmayabilir veya sadece dolgu içerisinde tarama yapılabilir." -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Radyenin iç köşelerini kaldırır ve radyenin dışbükey olmasına yol açar." +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Kapalı" -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "Her katmandaki boşlukları ortadan kaldırır ve sadece dış şekli korur. Görünmez tüm iç geometriyi yok sayar. Bununla birlikte, üstten ve alttan görünebilen katman boşluklarını da göz ardı eder." +msgctxt "retraction_combing option all" +msgid "All" +msgstr "Tümü" -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Dış Yüzeyde Değil" -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Yüzey Alanında Değil" -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "Üst/alt şeklin en dıştaki parçasını eş merkezli hatlar ile değiştirir. Bir veya iki hat kullanmak, dolgu malzemesinde başlayan tavanları geliştirir." +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "Dolgu İçinde" -msgctxt "ppr description" -msgid "Reporting events that go out of set thresholds" -msgstr "" +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Geri Çekmesiz Maks. Tarama Mesafesi" -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "Yerleştirme Tercihi" +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "Sıfırdan büyük olduğunda, bu mesafeden daha uzun tarama mesafelerinde geri çekme yapılır. Sıfıra ayarlandığında, bir maksimum belirlenmez ve tarama hareketlerinde geri çekme kullanılmaz." msgctxt "travel_retract_before_outer_wall label" msgid "Retract Before Outer Wall" msgstr "Dış Duvardan Önce Geri Çek" -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Katman Değişimindeki Geri Çekme" - -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Nozül yazdırılamayan alana doğru hareket ettiğinde filamanı geri çeker." - -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Nozül yazdırılamayan alana doğru hareket ettiğinde filamanı geri çeker." - -msgctxt "retract_at_layer_change description" -msgid "Retract the filament when the nozzle is moving to the next layer." -msgstr "Nozül bir sonraki katmana doğru hareket ettiğinde filamanı geri çekin." - -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Geri Çekme Mesafesi" - -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Geri Çekme Sırasındaki İlave Astar Miktarı" +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "Dış duvar başlatmaya giderken her zaman geri çeker." -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Minimum Geri Çekme Hareketi" +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Hareket Sırasında Yazdırılan Bölümleri Atlama" -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Geri Çekme Sırasındaki Astar Hızı" +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "Nozül hareket esnasında daha önce yazdırılmış bölümleri atlar. Bu seçenek sadece tarama etkinleştirildiğinde kullanılabilir." -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Geri Çekme Sırasındaki Çekim Hızı" +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Hareket Sırasında Destekleri Atla" -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Geri Çekme Hızı" +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "Nozül hareket ederken önceden yazdırılmış destekleri atlar. Bu seçenek yalnızca tarama etkin olduğunda kullanılabilir." -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Sağ" +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Hareket Atlama Mesafesi" -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "Fan Hızını 0 - 1 Arasında Ölçeklendir" +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "Hareket esnasında atlama yaparken nozül ve daha önce yazdırılmış olan bölümler arasındaki mesafe." -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "Fan hızını 0 - 256 arasında değil 0 - 1 arasında ölçeklendirin." +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "Katman Başlangıcı X" -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Ölçekleme Faktörü Büzülme Telafisi" +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "Her bir katmanın yazdırılmaya başlanacağı bölgeye yakın konumun X koordinatı." -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "Sahnede Destek Örgüsü Var" +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Katman Başlangıcı Y" -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Dikiş Köşesi Tercihi" +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "Her bir katmanın yazdırılmaya başlanacağı bölgeye yakın konumun Y koordinatı." -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "Baskı Sırasını Manuel Olarak Ayarla" +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Geri Çekildiğinde Z Sıçraması" -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "Cereyan kalkanının yüksekliğini ayarlayın. Cereyan kalkanını model yüksekliğinde veya sınırlı yükseklikte yazdırmayı seçin." +msgctxt "retraction_hop_enabled description" +msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "Geri çekme her yapıldığında, nozül ve baskı arasında açıklık oluşturmak için yapı levhası indirilir. Yapı levhasından baskıya çarpma şansını azaltarak nozülün hareket sırasında baskıya değmesini önler." -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Çoklu ekstruderler ile yapılan yazdırmalar için kullanılan ayarlar." +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Sadece Yazdırılan Parçalar Üzerindeki Z Sıçraması" -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "Sadece Cura ön ucundan CuraEngine istenmediğinde kullanılan ayarlar." +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "Sadece Hareket Sırasında Yazdırılan Bölümleri Atlama yoluyla yatay hareket sayesinde atlanamayan yazdırılmış parçalar üzerinde hareket ederken Z Sıçramasını gerçekleştirin." -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Paylaşılan Nozül İlk Geri Çekme" +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Z Sıçraması Yüksekliği" -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "En Keskin Köşe" +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Z Sıçraması yapılırken oluşan yükseklik farkı." -msgctxt "shell description" -msgid "Shell" -msgstr "Kovan" +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Ekstruder Değişimi Sonrasındaki Z Sıçraması" -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "En kısa" +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "Makine bir ekstruderden diğerine geçtikten sonra, nozül ve baskı arasında açıklık oluşması için yapı levhası indirilir. Nozülün baskı dışına malzeme sızdırmasını önler." -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Makine Varyantlarını Göster" +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Ekstruder Yüksekliği Değişimi Sonrasındaki Z Sıçraması" -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Kaplamanın Kenar Desteği Katmanları" +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "Ekstruder değişiminden sonra Z Sıçraması yapılırken oluşan yükseklik farkı." -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Kaplamanın Kenar Desteği Kalınlığı" +msgctxt "cooling label" +msgid "Cooling" +msgstr "Soğuma" -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Yüzey Genişleme Mesafesi" +msgctxt "cooling description" +msgid "Cooling" +msgstr "Soğuma" -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Yüzey Çakışması" +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Yazdırma Soğutmayı Etkinleştir" -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Yüzey Çakışma Oranı" +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "Yazdırma sırasında yazdırma soğutma fanlarını etkinleştirir. Fanlar, katman süresi kısa olan katmanlar ve kemerlerde/çıkıntılarda yazdırma kalitesini artırır." -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Yüzey Kaldırma Genişliği" +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Fan Hızı" -msgctxt "min_skin_width_for_expansion description" -msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." -msgstr "Bu değerden daha dar olan yüzey alanları genişletilmez. Böylece model yüzeyinin dikeye yakın bir eğime sahip olduğu durumlarda ortaya çıkan dar yüzey alanlarının genişletilmesi önlenmiş olur." +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "Yazdırma soğutma fanlarının dönüş hızı." -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "Destek yapısının daha kolay kırılması için her N bağlantı hattında bir zikzak atlayın." +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "Olağan Fan Hızı" -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "Destek yapısının daha kolay kırılması için bazı destek hattı bağlantılarını atlayın. Bu ayar, Zikzak destek dolgusu şekli için geçerlidir." +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "Katmanların sınıra ulaşmadan önceki dönüş hızı Katman sınır değerinden daha hızlı yazdırdığında fan hızı giderek maksimum fan hızına yönelir." -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Etek" +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Maksimum Fan Hızı" -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Etek Mesafesi" +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "Katmanların minimum katman süresindeki dönüş hızı. Sınır değerine ulaşıldığında, fan hızı olağan ve maksimum fan hızı arasında kademeli artış gösterir." -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "Etek Yüksekliği" +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "Olağan/Maksimum Fan Hızı Sınırı" -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Etek Hattı Sayısı" +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "Sınır değerini olağan ve maksimum fan hızı arasında ayarlayan katman süresi. Bundan daha kısa sürede yazdıran katmanlar olağan fan hızı kullanır. Daha hızlı katmanlar için, fan hızı maksimum fan hızına doğru kademeli olarak artar." -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Etek/Kenar İvmesi" +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "İlk Fan Hızı" -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Etek/Kenar Ekstrüderi" +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "Fanların, yazdırma işleminin başındaki dönme hızı. Sonraki katmanlarda fan hızı, Yüksekteki Olağan Fan Hızına karşılık gelen katmana kadar kademeli olarak artar." -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Etek/Kenar Akışı" +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Yüksekteki Olağan Fan Hızı" -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Etek/Kenar İvmesi Değişimi" +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "Fanların olağan fan hızında döndüğü yükseklik. Alttaki katmanlarda fan hızı, İlk Fan Hızından Olağan Fan Hızına kadar kademeli olarak artar." -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Etek/Kenar Hattı Genişliği" +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Katmandaki Olağan Fan Hızı" -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Minimum Etek/Kenar Uzunluğu" +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "Fanların olağan fan hızında döndüğü katman Yüksekteki olağan fan hızı ayarlanırsa bu değer hesaplanır ve tam sayıya yuvarlanır." -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Etek/Kenar Hızı" +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Minimum Katman Süresi" -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Dilimleme Toleransı" +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "Bir katmanda harcanan minimum süre. Bu süre yazıcıyı yavaşlamaya ve burada en azından bir katmanda ayarlanan süreyi kullanmaya zorlar. Bir sonraki katman yazdırılmadan önce yazdırılan materyalin düzgün bir şekilde soğumasını sağlar. Kaldırma Başlığı devre dışı bırakılır ve Minimum Hız değeri başka bir şekilde ihlal edilmezse katmanlar yine de minimal katman süresinden daha kısa sürebilir." -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Küçük Özellik İlk Katman Hızı" +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Minimum Hız" -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Maksimum Küçük Özellik Uzunluğu" +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "Düşük katman süresi nedeniyle yavaşlamaya karşın minimum yazdırma hızı. Yazıcı çok yavaşladığında nozüldeki basınç çok düşük olacak ve kötü yazdırma kalitesiyle sonuçlanacaktır." -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Küçük Özellik Hızı" +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Yazıcı Başlığını Kaldır" -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Maksimum Küçük Delik Boyutu" +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "Düşük katman süresi nedeniyle minimum hıza inildiğinde yazıcı başlığını yazıcıdan kaldırıp düşük katman süresine ulaşana kadar olan ek süreyi bekleyin." msgctxt "cool_min_temperature label" msgid "Small Layer Printing Temperature" msgstr "Küçük Katman Yazdırma Sıcaklığı" -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "Yüzeyde Küçük Üst/Alt" +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "Minimum katman süresi nedeniyle düşük hızlarda yazdırırken bu sıcaklığa kademeli olarak düşürün." -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "Küçük Üst/​Alt Genişlik" +msgctxt "support label" +msgid "Support" +msgstr "Destek" -msgctxt "small_feature_speed_factor_0 description" -msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "İlk katman üzerindeki küçük özellikler normal baskı hızının bu yüzdesinde basılacaktır. Daha yavaş baskı, yapışma ve doğruluğu artırmaya yardımcı olabilir." +msgctxt "support description" +msgid "Support" +msgstr "Destek" -msgctxt "small_feature_speed_factor description" -msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "Küçük özellikler normal baskı hızının bu yüzdesinde basılacaktır. Daha yavaş baskı, yapışma ve doğruluğu artırmaya yardımcı olabilir." +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Oluşturma Desteği" -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "Küçük üst/alt bölgeler, varsayılan üst/alt deseni yerine duvarlarla doldurulur. Bu, sarsıntılı hareketleri önlemeye yardımcı olur. Varsayılan ayarda, en üstteki (havaya maruz kalan) katman için kapalıdır (bkz. 'Yüzeyde Küçük Üst/Alt')." +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "Modellerin askıda kalan kısımlarını destekleyen yapılar oluşturun. Bu yapılar olmadan, yazdırma sırasında söz konusu kısımlar düşebilir." -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "Akıllı Kenar" +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Destek Ekstruderi" -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Akıllı Gizleme" +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "Destek için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır." -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Helezon Şeklinde Düzeltme" +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Destek Dolgu Ekstruderi" -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "Z dikişinin görünürlüğünü azaltmak için helezon şeklindeki konturları düzeltin (Z dikişi baskıda zor görünmeli ancak katman görünümünde görünür olmalıdır). Düzeltme işleminin ince yüzey detaylarında bulanıklığa neden olabileceğini göz önünde bulundurun." +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "Destek dolgusu için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır." -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "Hareket sırasında bazı malzemeler eksilebilir, bu malzemeler burada telafi edebilir." +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "İlk Katman Destek Ekstruderi" -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "Sürme hareketi sırasında bazı malzemeler eksilebilir; bu malzemeler burada telafi edebilir." +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "Destek dolgusunun ilk katmanı için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır." -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Özel Modlar" +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Destek Arayüz Ekstruderi" -msgctxt "speed description" -msgid "Speed" -msgstr "Hız" +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "Desteğin çatıları ve zeminlerinin yazdırılması için kullanılacak ekstrüder dizisi. Çoklu ekstrüzyon sırasında kullanılır." -msgctxt "speed label" -msgid "Speed" -msgstr "Hız" +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Destek Çatısı Ekstrüderi" -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "Sıçrama sırasında z eksenini hareket ettirmek için gerekli hız." +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "Desteğin çatısının yazdırılması için kullanılacak ekstrüder dizisi. Çoklu ekstrüzyon sırasında kullanılır." -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Spiral Dış Çevre" +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Destek Zemini Ekstrüderi" -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "Dış kenarın Z hareketini helezon şeklinde düzeltir. Böylece yazdırmanın tamamında sabit bir Z artışı oluşur. Bu özellik katı bir modeli, tabanı katı tek bir duvar yazdırmasına dönüştürür. Bu özelliğin sadece tek bir parça içeren tüm tabakalarda etkinleştirilmesi gerekir." +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "Desteğin zemininin yazdırılması için kullanılacak ekstrüder dizisi. Çoklu ekstrüzyon sırasında kullanılır." -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Bekleme Sıcaklığı" +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Destek Yapısı" -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "G-code’u Başlat" +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "Destek oluşturmak için kullanılabilir teknikler arasından seçim yapar. \"Normal\" destek, çıkıntılı parçaların hemen altında bir destek yapısı oluşturur ve bu alanları dümdüz aşağı indirir. \"Ağaç\"destek, çıkıntılı alanlara doğru dallar oluşturur ve bu dalların uçlarıyla model desteklenir; dallar modelin etrafına sarılarak yapı plakasından olabildiğince destek alır." -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "Bir katmandaki her yolun başlangıç noktası. Ardışık katmanlardaki yollar aynı noktadan başladığında, çıktıda dikey bir ek yeri görünebilir. Bunları kullanıcının belirlediği bir konumun yakınına hizalarken ek yerinin kaldırılması kolaylaşır. Gelişigüzel yerleştirildiğinde yolların başlangıcındaki düzensizlikler daha az fark edilecektir. En kısa yol kullanıldığında yazdırma hızlanacaktır." +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Normal" -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Milimetre Başına Adım (E)" +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Ağaç" -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Milimetre Başına Adım (X)" +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "Maksimum Dal Açısı" -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Milimetre Başına Adım (Y)" +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "Dalların modelin etrafında büyürken aldıkları maksimum açı. Daha dikey ve daha dengeli hale getirmek için daha düşük bir açı kullanın. Daha fazla erişim için daha yüksek bir açı kullanın." + +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "Dal Çapı" + +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "Ağaç desteğin en ince dallarının çapı. Daha kalın dallar daha dayanıklı olur. Tabana doğru uzanan dallar bundan daha kalın olacaktır." + +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "Gövde Çapı" + +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "Ağaç desteğinin en geniş dallarının çapı. Daha kalın bir gövde daha sağlamdır; daha ince bir gövde, yapı plakasında daha az yer kaplar." -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Milimetre Başına Adım (Z)" +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "Dal Çapı Açısı" -msgctxt "support description" -msgid "Support" -msgstr "Destek" +msgctxt "support_tree_branch_diameter_angle description" +msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." +msgstr "Alta doğru gidildikçe kademeli olarak kalınlaşan dalların açısı. 0 derecelik bir açı dalların uzunluklarını gözetmeksizin tekdüze bir kalınlığa sahip olmalarını sağlayacaktır. Birazcık açı ağaç desteğin sabitliğini artırabilir." -msgctxt "support label" -msgid "Support" -msgstr "Destek" +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Destek Yerleştirme" -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Destek İvmesi" +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "Yapı Levhasına Dokunma" -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Destek Alt Mesafesi" +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "Her bölüm" -msgctxt "support_bottom_wall_count label" -msgid "Support Bottom Wall Line Count" -msgstr "Destek Alt Duvar Hattı Sayısı" +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "Tercih Edilen Dal Açısı" -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Destek Kenar Hattı Sayısı" +msgctxt "support_tree_angle_slow description" +msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." +msgstr "Modelden kaçınmak zorunda olmadıklarında dalların tercih edilen açısı. Daha dikey ve daha dengeli hale getirmek için daha düşük bir açı kullanın. Dalların daha hızlı birleşmesi için daha yüksek bir açı kullanın." -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Destek Kenar Genişliği" +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "Modele Göre Çap Artışı" -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Destek Parçası Hattı Sayısı" +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "Modele bağlanması gereken dalın çapının, yapı levhasına erişebilecek dallarla birleşerek en fazla ne kadar artabileceği. Bunu artırmak baskı süresini azaltır, ancak modele dayanan destek alanını artırır" -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Destek Parçasının Boyutu" +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "Modele Göre Minimum Yükseklik" -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "Destek Yoğunluğu" +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "Model üzerine yerleştirilmesi gereken bir dalın ne kadar uzun olması gerektiği. Küçük destek lekelerini önler. Bir dalın bir destek çatısını desteklemesi durumunda bu ayar göz ardı edilir." -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Destek Mesafesi Önceliği" +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "İlk Katman Çapı" -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Destek Ekstruderi" +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "Her dalın yapı levhasına ulaşırken elde etmeye çalıştığı çap. Yatak yapışmasını geliştirir." -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Destek Zemini İvmesi" +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "Dal Yoğunluğu" -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Destek Zemini Yoğunluğu" +msgctxt "support_tree_top_rate description" +msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "Dalların uçlarını oluşturmak için kullanılan destek yapısının yoğunluğunu ayarlar. Daha yüksek bir değer daha iyi çıkıntılar sağlar, ancak desteklerin çıkarılması daha zordur. Çok yüksek değerler için Destek Çatısı’nı kullanın veya destek yoğunluğunun en üstte benzer şekilde yüksek olmasını sağlayın." -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Destek Zemini Ekstrüderi" +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "Uç Çapı" -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Destek Zemin Akışı" +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "Ağaç desteğinin dallarının ucunun en üstteki çapı." -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Destek Zemini Yatay Büyüme" +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "Dal Erişimini Sınırla" -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Destek Zemini Sarsıntısı" +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "Her dalın desteklediği noktadan ne kadar uzağa gitmesi gerektiğini sınırlayın. Bu sınırlama, desteği daha sağlam hale getirebilir, ancak dalların miktarını (ve bu nedenle, malzeme kullanımı/baskı süresini) artıracaktır" -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Destek Zemin Hattı Yönleri" +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "Optimum Dal Aralığı" -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Destek Zemini Çizgi Mesafesi" +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "Dalların destekledikleri noktalardan ne kadar uzağa hareket edebileceğine dair bir tavsiye. Dallar hedeflerine (yapı levhası veya modelin düz bir parçası) ulaşmak için bu değeri ihlal edebilir. Bu değeri düşürmek, desteği daha sağlam hale getirecek, ancak dal miktarını (ve bu nedenle, malzeme kullanımı/baskı süresini) artıracaktır" -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Destek Zemini Çizgi Genişliği" +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "Yerleştirme Tercihi" -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Destek Zemini Deseni" +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "Destek yapılarının tercih edilen yerleşimi. Yapılar tercih edilen yere yerleştirilemiyorsa başka bir yere yerleştirilecektir. Bu, onları modelin üzerine yerleştirmek anlamına da gelebilir." -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Destek Zemini Hızı" +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "Mümkün olduğunda yapı levhası üzerinde" -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Destek Zemini Kalınlığı" +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "Gerektiğinde model üzerinde" -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Destek Akışı" +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Destek Çıkıntı Açısı" -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Destek Yatay Büyüme" +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "Desteğin eklendiği çıkıntıların minimum açısı. 0°’de tüm çıkıntılar desteklenirken 90°‘de destek sağlanmaz." -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Destek Dolgusu İvmesi" +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Destek Şekli" -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Destek Dolgu Ekstruderi" +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "Yazdırma destek yapılarının şekli. Bulunan farklı seçenekler sağlam veya kolay çıkarılabilir destek oluşturabilir." -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Destek Dolgu İvmesi Değişimi" +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Çizgiler" -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Destek Dolgusu Katmanı Kalınlığı" +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Izgara" -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Destek Dolgu Hattı Yönü" +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Üçgenler" -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Destek Dolgu Hızı" +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Eş merkezli" -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Destek Arayüzü İvmesi" +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zik Zak" -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "Destek Arayüzü Yoğunluğu" +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Çapraz" -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Destek Arayüz Ekstruderi" +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Destek Ara Yüzeyi Akışı" +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Duvar Hattı Sayısını Destekle" -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Destek Arayüzü Yatay Büyüme" +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Destek dolgusunun çevreleneceği duvar sayısı. Bir duvarın eklenmesi destek yazdırmasını daha güvenilir kılabilir ve çıkıntıları daha iyi destekleyebilir. Ancak yazdırma süresini ve kullanılan malzemeyi artırır." -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Destek Arayüz Salınımı" +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Destek Arayüzü Duvar Hattı Sayısı" -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Destek Arabirim Hattı Yönleri" +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Destek arayüzünü çevreleyecek duvar sayısı. Duvar eklemek, destek baskıyı daha güvenilir hale getirebilir ve çıkıntıları daha iyi destekleyebilir, ama baskı süresini ve kullanılan malzemeyi artırır." -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Destek Arayüz Hattı Genişliği" +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Destek Çatı Duvar Hattı Sayısı" -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Destek Arayüzü Şekli" +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Destek arayüz çatısını çevreleyecek duvar sayısı. Duvar eklemek, destek baskıyı daha güvenilir hale getirebilir ve çıkıntıları daha iyi destekleyebilir, ama baskı süresini ve kullanılan malzemeyi artırır." + +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "Destek Alt Duvar Hattı Sayısı" -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "Destek Arayüzü Önceliği" +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Destek arayüz zeminini çevreleyecek duvar sayısı. Duvar eklemek, destek baskıyı daha güvenilir hale getirebilir ve çıkıntıları daha iyi destekleyebilir, ama baskı süresini ve kullanılan malzemeyi artırır." -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Destek Arayüzü Hızı" +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Destek Çizgilerini Bağla" -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Destek Arayüzü Kalınlığı" +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "Destek çizgilerinin uçlarını birbirine bağlayın. Bu ayarın etkinleştirilmesi, desteğinizi daha sağlam hale getirebilir ve ekstruzyonu azaltabilir ancak bu daha fazla malzemeye mal olacaktır." -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "Destek Arayüzü Duvar Hattı Sayısı" +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Destek Zikzaklarını Bağla" -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Destek Salınımı" +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "Zikzakları Bağla Zik zak destek yapısının sağlamlığını artırır." -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "Destek Birleşme Mesafesi" +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "Destek Yoğunluğu" + +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Destek yapısının yoğunluğunu ayarlar. Daha yüksek bir değer daha iyi çıkıntılar ortaya çıkarırken desteklerin kaldırılmasını zorlaştırır." msgctxt "support_line_distance label" msgid "Support Line Distance" msgstr "Destek Hattı Mesafesi" -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Destek Hattı Genişliği" +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "Yazdırılan destek yapısı hatları arasındaki mesafe. Bu ayar, destek yoğunluğu ile hesaplanır." -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Destek Örgüsü" +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "İlk Katman Destek Hattı Mesafesi" -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Destek Çıkıntı Açısı" +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "Yazdırılan ilk katman destek yapı hatları arasındaki mesafedir. Bu ayar destek yoğunluğuna göre hesaplanır." -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Destek Şekli" +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Destek Dolgu Hattı Yönü" -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Destek Yerleştirme" +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "Kullanılacak tam hat yönlerinin listesi. Katmanlar ilerledikçe listedeki öğeler sırayla kullanılır ve listenin sonuna gelindiğinde tekrar baştan başlanır. Liste öğeleri virgülle ayrılır ve listenin tamamı köşeli paranteze alınır. Varsayılan ayar listenin boş olmasıdır ve bu durumda varsayılan açı 0'dır." -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Destek Çatısı İvmesi" +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Destek Kenarını Etkinleştir" -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Destek Çatısı Yoğunluğu" +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "İlk katmanın destek dolgu alanı içinde bir kenar oluşturun. Bu kenar, desteğin çevresine değil, altına yazdırılır. Bu ayarı etkinleştirmek, desteğin baskı tablasına yapışma alanını artırır." -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Destek Çatısı Ekstrüderi" +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Destek Kenar Genişliği" -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Destek Çatı Akışı" +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "Desteğin altına yazdırılacak kenarın genişliği. Daha geniş kenar, ekstra malzeme karşılığında baskı tablasına daha fazla alanın yapışacağı anlamına gelir." -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Destek Çatısı Yatay Büyüme" +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Destek Kenar Hattı Sayısı" -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Destek Çatısı Sarsıntısı" +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "Bir destek kenarı için kullanılan hatların sayısı. Daha fazla kenar hattı, ekstra malzeme karşılığında baskı tablasına daha fazla alanın yapışacağı anlamına gelir." -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Destek Çatı Hattı Yönleri" +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Destek Z Mesafesi" -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Destek Çatısı Çizgi Mesafesi" +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "Desteğin üstü/altı ile baskı arasındaki mesafe. Bu boşluk, model basıldıktan sonra desteklerin kolayca çıkarılabilmesini sağlar. Modelin altındaki en üst destek katmanı, düzenli katmanların bir kısmı olabilir." -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Destek Çatısı Çizgi Genişliği" +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Destek Üst Mesafesi" -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Destek Çatısı Deseni" +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "Yazdırılıcak desteğin üstüne olan mesafe." -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Destek Çatısı Hızı" +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Destek Alt Mesafesi" -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "Destek Tavanı Kalınlığı" +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "Baskıdan desteğin altına kadar olan mesafe. Bunun bir sonraki katman yüksekliğine yuvarlandığını unutmayın." -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "Destek Çatı Duvar Hattı Sayısı" +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "Destek X/Y Mesafesi" -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Destek Hızı" +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "Destek yapısının X/Y yönlerindeki baskıya mesafesi." + +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Destek Mesafesi Önceliği" + +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "Destek X/Y Mesafesinin Destek Z Mesafesinden veya tersi yönde fazla olup olmadığı. X/Y, Z’den fazla olursa, X/Y mesafesi çıkıntıya olan asıl Z mesafesini etkileyerek desteği modelden iter. Çıkıntıların etrafına X/Y mesafesi uygulayarak bunu engelleyebiliriz." + +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y, Z’den fazla" + +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z, X/Y’den fazla" + +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Minimum Destek X/Y Mesafesi" + +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "Destek yapısının X/Y yönlerindeki çıkıntıya mesafesi." msgctxt "support_bottom_stair_step_height label" msgid "Support Stair Step Height" msgstr "Destek Merdiveni Basamak Yüksekliği" +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "Modelin üzerinde sabit duran desteğin merdiven benzeri alt kısmının basamak yüksekliği. Daha düşük bir değer desteğin hareket ettirilmesini zorlaştırırken, daha yüksek bir değer kararsız destek yapılarına yol açabilir. Merdiven benzeri davranışı kapatmak için sıfır değerine ayarlayın." + msgctxt "support_bottom_stair_step_width label" msgid "Support Stair Step Maximum Width" msgstr "Destek Merdiveni Maksimum Basamak Genişliği" +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "Modelin üzerinde sabit duran desteğin merdiven benzeri alt kısmının maksimum basamak genişliği. Daha düşük bir değer desteğin hareket ettirilmesini zorlaştırırken, daha yüksek bir değer kararsız destek yapılarına yol açabilir." + msgctxt "support_bottom_stair_step_min_slope label" msgid "Support Stair Step Minimum Slope Angle" msgstr "Basamak Desteğinin Minimum Eğim Açısı" -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Destek Yapısı" +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "Basamaklı alanın etkili olması için gereken minimum eğimdir. Düşük değerler, derinliği daha düşük olan eğimlerde desteğin kaldırılmasını kolaylaştırırken, gerçekten düşük değerler ise modelin diğer parçalarında tersine sonuçlar doğurabilir." -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Destek Üst Mesafesi" +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "Destek Birleşme Mesafesi" -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Duvar Hattı Sayısını Destekle" +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "X/Y yönlerinde destek yapıları arasındaki maksimum mesafedir. Ayrı yapılar birbirlerine bu değerden daha yakınsa yapılar birleşerek tek bir yapı haline gelir." -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "Destek X/Y Mesafesi" +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Destek Yatay Büyüme" -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Destek Z Mesafesi" +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "Her katmandaki tüm destek poligonlarına uygulanan ofset miktarı. Pozitif değerler destek alanlarını pürüzsüzleştirebilir ve daha sağlam destek sağlayabilir." + +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Destek Dolgusu Katmanı Kalınlığı" + +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "Her katmandaki destek dolgusu malzemesinin kalınlığı. Bu değer her zaman katman yüksekliğinin bir katı olmalıdır, aksi takdirde değer yuvarlanır." + +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Kademeli Destek Dolgusu Aşamaları" + +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "Üst yüzeylerin altına inerken destek dolgusu yoğunluğunu yarıya indirmek için inilecek yüzey sayısı. Üst yüzeylere daha yakın olan alanlarda yoğunluk daha fazladır ve Destek Dolgusu Yoğunluğuna kadar çıkabilir." + +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Aşamalı Destek Dolgusu Basamak Yüksekliği" + +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "Yoğunluğun yarısına inmeden önce belirli bir yoğunluktaki destek dolgusunun yüksekliği." + +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Minimum Destek Bölgesi" + +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "Destek poligonları için minimum alan boyutu. Alanı bu değerden daha düşük olan poligonlar oluşturulmayacaktır." + +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Destek Arayüzünü Etkinleştir" + +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "Model ve destek arasında yoğun bir arayüz oluştur. Modelin yazdırıldığı desteğin üstünde ve modelin üzerinde durduğu desteğin altında bir yüzey oluşturur." -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "Tercih edilen destek hatları" +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Destek Çatısını Etkinleştir" -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "Tercih edilen destek" +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "Desteğin üst kısmı ile model arasında yoğun bir levha oluşturur. Bu işlem, model ile destek arasında bir yüzey alanı oluşturacaktır." -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Desteklenen Yüzey Fan Hızı" +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Destek Zeminini Etkinleştir" -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Yüzey" +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "Desteğin alt kısmı ile model arasında yoğun bir levha oluşturur. Bu işlem, model ile destek arasında bir yüzey alanı oluşturacaktır." -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "Yüzey Enerjisi" +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Destek Arayüzü Kalınlığı" -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Yüzey Modu" +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "Alt veya üst kısımdaki modele değdiği yerde destek arayüzü kalınlığı." -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "Yüzeye yapışma eğilimi." +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "Destek Tavanı Kalınlığı" -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Yüzey enerjisi." +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "Destek tavanlarının kalınlığı. Modelin bulunduğu desteğin üst kısmındaki yoğun katmanların sayısını kontrol eder." -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "En içteki ve ikinci en içteki kenar çizgilerinin baskı sırasını değiştirin. Bu, kenarın çıkarılmasını kolaylaştırır." +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Destek Zemini Kalınlığı" -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "Çakışan bileşimlerin birbirine karışması için her bir katmanda bileşim kesişimi hacimlerine göre değişiklik yapın. Bu ayarın kapatılması, bir bileşimin diğer bileşimlerden ayrılarak çakışmadaki tüm hacmi almasına neden olur." +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "Destek zeminlerinin kalınlığı. Desteğin üzerinde durduğu modelin üst kısımlarına yazdırılan yoğun katmanların sayısını kontrol eder." -msgctxt "adaptive_layer_height_threshold description" -msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." -msgstr "İki bitişik katman arasındaki hedef yatay mesafe. Bu ayarın azaltılması, katmanların kenarlarını birbirine yakınlaştırmak için daha ince katmanlar kullanılmasına neden olur." +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Destek Arayüzü Yoğunluğu" -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "Her bir katmanın yazdırılmaya başlanacağı bölgeye yakın konumun X koordinatı." +msgctxt "support_interface_density description" +msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Destek yapısının çatılarının ve zeminlerinin yoğunluğunu ayarlar. Daha yüksek bir değer daha iyi çıkıntılar ortaya çıkarırken, desteklerin kaldırılmasını zorlaştırır." -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "Bir katmandaki her kısmın yazdırılmaya başlanacağı yere yakın konumun X koordinatı." +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Destek Çatısı Yoğunluğu" -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun X koordinatı." +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Destek yapısı çatılarının yoğunluğu. Daha yüksek bir değer daha iyi çıkıntılar ortaya çıkarırken, desteklerin kaldırılmasını zorlaştırır." -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "Her bir katmanın yazdırılmaya başlanacağı bölgeye yakın konumun Y koordinatı." +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Destek Çatısı Çizgi Mesafesi" -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "Bir katmandaki her kısmın yazdırılmaya başlanacağı yere yakın konumun Y koordinatı." +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "Yazdırılan destek çatısı çizgileri arasındaki mesafe. Bu ayar Destek Çatısı Yoğunluğu ile hesaplanır, ancak ayrıca ayarlanabilir." -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Y koordinatı." +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Destek Zemini Yoğunluğu" -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Z koordinatı." +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "Destek yapısı zeminlerinin yoğunluğu. Daha yüksek bir değer, desteğin modelin üzerine daha iyi yapışmasını sağlar." -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "İlk katmanın yazdırıldığı ivme." +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Destek Zemini Çizgi Mesafesi" -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "İlk katman için belirlenen ivme." +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "Yazdırılan destek zemini çizgileri arasındaki mesafe. Bu ayar Destek Zemini Yoğunluğu ile hesaplanır, ancak ayrıca ayarlanabilir." -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "İlk katmandaki hareket hamlelerinin ivmesi." +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Destek Arayüzü Şekli" -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "İlk katmandaki hareket hamlelerinin ivmesi." +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "Model ile birlikte destek arayüzünün yazdırıldığı şekil." -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "İç duvarların yazdırıldığı ivme." +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Çizgiler" -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "Dolgunun yazdırıldığı ivme." +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Izgara" -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "Ütülemenin gerçekleştiği ivme." +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Üçgenler" -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "Yazdırmanın gerçekleştiği ivme." +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Eş merkezli" -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "Taban radye katmanının yazdırıldığı ivme." +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zik Zak" -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "Destek zemininin yazdırıldığı ivme. Daha düşük ivmelerle yazdırma, desteğin modelin üzerine yapışmasını iyileştirebilir." +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Destek Çatısı Deseni" -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "Destek dolgusunun yazdırıldığı ivme." +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "Destek çatısının yazdırıldığı desen." -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "Orta radye katmanının yazdırıldığı ivme." +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Çizgiler" -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "En dış duvarların yazdırıldığı ivme." +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Izgara" -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "İlk direğin yazdırıldığı ivme." +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Üçgenler" -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "Radyenin yazdırıldığı ivme." +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Eş Merkezli" -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "Destek çatıları ve zeminlerinin yazdırıldığı ivme. Daha düşük ivmelerle yazdırma, askıda kalan kısımların kalitesini iyileştirebilir." +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zikzak" -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "Destek çatısının yazdırıldığı ivme. Daha düşük ivmelerle yazdırma, askıda kalan kısımların kalitesini iyileştirebilir." +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Destek Zemini Deseni" -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "Etek ve kenarın yazdırıldığı ivme. Bu işlem normalde ilk katman ivmesi ile yapılır, ama etek ve kenarı farklı bir ivmede yazdırmak isteyebilirsiniz." +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "Destek zeminlerinin yazdırıldığı desen." -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "Destek yapısının yazdırıldığı ivme." +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Çizgiler" -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "Üst radye katmanların yazdırıldığı ivme." +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Izgara" -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "Üst yüzey iç duvarlarının hangi hızla basıldığı." +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Üçgenler" -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "Üst Yüzeyin En Dış Duvarlarının Hangi Hızda Basıldığı." +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Eş Merkezli" -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "Duvarların yazdırıldığı ivme." +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zikzak" -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "Üst yüzey katmanların yazdırıldığı ivme." +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Minimum Destek Arayüzü Bölgesi" + +msgctxt "minimum_interface_area description" +msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Destek arayüzü çokgenlerinin minimum alan boyutu. Alanı bu değerden küçük olan poligonlar normal destekle basılacaktır." -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "Üst/alt katmanların yazdırıldığı ivme." +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Minimum Destek Çatısı Bölgesi" -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "Hareket hamlelerinin ivmesi." +msgctxt "minimum_roof_area description" +msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Destek çatılarının minimum alan boyutu. Alanı bu değerden küçük olan poligonlar normal destekle basılacaktır." -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "Ütüleme sırasında normal yüzey hattına göre ekstrude edilecek malzeme miktarı. Nozülü dolu tutmak üst yüzeyde oluşan çatlakların bir kısmının doldurulmasını sağlar fakat nozülün fazla dolu olması aşırı ekstrüzyona ve yüzey yanlarında noktalar oluşmasına neden olur." +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Minimum Destek Zemini Bölgesi" -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "Dolgu hattı genişliğinin yüzdesi olarak dolgu ve duvarların arasındaki çakışma miktarı. Ufak bir çakışma duvarların dolguya sıkıca bağlanmasını sağlar." +msgctxt "minimum_bottom_area description" +msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Destek tabanlarının minimum alan boyutu. Alanı bu değerden küçük olan poligonlar normal destekle basılacaktır." -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "Dolgu ve duvarlar arasındaki çakışma miktarı. Hafif bir çakışma duvarların dolguya sıkıca bağlanmasını sağlar." +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Destek Arayüzü Yatay Büyüme" -msgctxt "switch_extruder_retraction_amount description" -msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." -msgstr "Ekstrüderler değiştirilirken oluşan geri çekme miktarı. Geri çekme yoksa 0 olarak ayarlayın. Bu genellikle ısı bölgesinin uzunluğuna eşittir." +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "Destek arayüzü poligonlarına uygulanan ofset miktarı." -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "Yatay düzlem ve nozül ucunun sağ üzerinde bulunan konik parça arasındaki açı." +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Destek Çatısı Yatay Büyüme" -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "Direk tavanı açısı Yüksek bir değer, direk tavanını sivrileştirirken, daha düşük bir değer direk tavanlarını düzleştirir." +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "Destek çatılarına uygulanan ofset miktarı." -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "Kalıp için oluşturulan dış duvarların çıkıntı açısı. 0° kalıbın dış kovanını dikey hale getirirken, 90° ise modelin dış kısmının model konturunu takip etmesini sağlayacaktır." +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Destek Zemini Yatay Büyüme" -msgctxt "support_tree_branch_diameter_angle description" -msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." -msgstr "Alta doğru gidildikçe kademeli olarak kalınlaşan dalların açısı. 0 derecelik bir açı dalların uzunluklarını gözetmeksizin tekdüze bir kalınlığa sahip olmalarını sağlayacaktır. Birazcık açı ağaç desteğin sabitliğini artırabilir." +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "Destek zeminlerine uygulanan ofset miktarı." -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "Konik desteğin eğim açısı. Dikey 0 derece ve yatay 90 derece. Daha küçük açılar desteğin daha sağlam olmasını sağlar, ancak çok fazla malzeme içerir. Negatif açılar destek tabanının üst kısımdan daha geniş olmasına yol açar." +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "Destek Arayüzü Önceliği" -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "Bir katmandaki her bir poligona tanınan noktaların ortalama yoğunluğu. Poligonların asıl noktalarının çıkarıldığını dikkate alın; bunun sonucunda düşük yoğunluk sonuçları çözünürlük azalmasıyla sonuçlanabilir." +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "Destek arayüzü ve destek çakıştıklarında nasıl etkileşime girerler? Şu anda sadece destek çatısı için uygulanmaktadır." -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "Her bir hat dilimine tanıtılan rastgele noktalar arasındaki ortalama mesafe. Poligonların asıl noktalarının çıkarıldığını dikkate alın; bunun sonucunda yüksek pürüzsüzlük sonuçları çözünürlük azalmasıyla sonuçlanabilir. Bu değer, Belirsiz Dış Katman Kalınlığından yüksek olmalıdır." +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "Tercih edilen destek" -msgctxt "material_brand description" -msgid "The brand of material used." -msgstr "" +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "Tercih edilen arayüz" -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "Yazıcı başlığı hareketinin varsayılan ivmesi." +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "Tercih edilen destek hatları" -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "Yazdırma için kullanılan varsayılan sıcaklık. Bu sıcaklık malzemenin “temel” sıcaklığı olmalıdır. Diğer tüm yazıcı sıcaklıkları bu değere dayanan ofsetler kullanmalıdır" +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "Tercih edilen arayüz hatları" -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "Isınan yapı levhası için kullanılan varsayılan sıcaklık. Bu sıcaklık yapı levhasının “temel” sıcaklığı olmalıdır. Diğer tüm yazıcı sıcaklıkları bu değere dayanan ofsetler kullanmalıdır" +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "Her ikisi de çakışıyor" -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Köprü yüzey alanı katmanının yoğunluğu. 100’den az değerler, yüzey alanı çizgileri arasındaki boşlukları artıracaktır." +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Destek Arabirim Hattı Yönleri" -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "Destek yapısı zeminlerinin yoğunluğu. Daha yüksek bir değer, desteğin modelin üzerine daha iyi yapışmasını sağlar." +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Kullanılacak tam hat yönlerinin listesi. Katmanlar ilerledikçe listedeki öğeler sırayla kullanılır ve listenin sonuna gelindiğinde tekrar baştan başlanır. Liste öğeleri virgülle ayrılır ve listenin tamamı köşeli paranteze alınır. Varsayılan ayar, varsayılan açıların kullanıldığı (ara birimler biraz kalınsa 45 ile 135 derece arasında değişir veya 90 derecedir) boş listedir." -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Destek yapısı çatılarının yoğunluğu. Daha yüksek bir değer daha iyi çıkıntılar ortaya çıkarırken, desteklerin kaldırılmasını zorlaştırır." +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Destek Çatı Hattı Yönleri" -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "İkinci köprü yüzey alanı katmanının yoğunluğu. 100’den az değerler, yüzey alanı çizgileri arasındaki boşlukları artıracaktır." +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Kullanılacak tam hat yönlerinin listesi. Katmanlar ilerledikçe listedeki öğeler sırayla kullanılır ve listenin sonuna gelindiğinde tekrar baştan başlanır. Liste öğeleri virgülle ayrılır ve listenin tamamı köşeli paranteze alınır. Varsayılan ayar, varsayılan açıların kullanıldığı (ara birimler biraz kalınsa 45 ile 135 derece arasında değişir veya 90 derecedir) boş listedir." -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Üçüncü köprü yüzey alanı katmanının yoğunluğu. 100’den az değerler, yüzey alanı çizgileri arasındaki boşlukları artıracaktır." +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Destek Zemin Hattı Yönleri" -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "Yazdırılabilir alan derinliği (Y yönü)." +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Kullanılacak tam hat yönlerinin listesi. Listedeki öğeler katmanlar ilerledikçe sırayla kullanılır ve listenin sonuna gelindiğinde tekrar baştan başlanır. Liste öğeleri virgülle ayrılır ve listenin tamamı köşeli paranteze alınır. Varsayılan ayar, varsayılan açıların kullanıldığı (ara birimler biraz kalınsa 45 ile 135 derece arasında değişir veya 90 derecedir) boş listedir." -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "Özel bir direğin çapı." +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Fan Hızı Geçersiz Kılma" -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "Ağaç desteğin en ince dallarının çapı. Daha kalın dallar daha dayanıklı olur. Tabana doğru uzanan dallar bundan daha kalın olacaktır." +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "Bu ayar etkinleştirildiğinde, yazıcı soğutma fanının hızı desteğin hemen üzerindeki yüzey bölgeleri için değiştirilir." -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "Ağaç desteğinin dallarının ucunun en üstteki çapı." +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Desteklenen Yüzey Fan Hızı" -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "Besleyiciye malzeme veren çarkın çapı." +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "Desteğin hemen üzerindeki yüzey bölgeleri yazdırılırken kullanılacak yüzdelik fan hızıdır. Yüksek fan hızı kullanmak desteğin daha kolay kaldırılmasını sağlayabilir." -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "Ağaç desteğinin en geniş dallarının çapı. Daha kalın bir gövde daha sağlamdır; daha ince bir gövde, yapı plakasında daha az yer kaplar." +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Direkleri kullan" -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "Bir önceki ve bir sonraki katman yüksekliği arasındaki yükseklik farkı." +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "Küçük çıkıntı alanlarını desteklemek için özel direkler kullanın. Bu direkler desteklediğimiz bölgeden daha büyük çaptadır. Çıkıntıyı yaklaştırırsanız direklerin çapı azalır ve bir tavan oluşturur." -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "Ütüleme hatları arasında bulunan mesafe." +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Direk Çapı" -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "Hareket esnasında atlama yaparken nozül ve daha önce yazdırılmış olan bölümler arasındaki mesafe." +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "Özel bir direğin çapı." -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "Radyenin taban katmanı için radye hatları arasındaki mesafe. Geniş aralık bırakılması radyenin yapı levhasından kolayca kaldırılmasını sağlar." +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Kule Destekli Maksimum Çap" -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "Radyenin orta katmanı için radye hatları arasındaki mesafe. Ortadaki aralığın oldukça geniş olması gerekirken, üst radye katmanlarını desteklemek için de yeteri kadar yoğun olması gerekir." +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "Özel bir destek kulesiyle desteklenecek küçük bir alanın X/Y yönlerindeki maksimum çapıdır." -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "Üst radye katmanları için radye hatları arasındaki mesafe. Yüzeyin katı olabilmesi için aralık hat genişliğine eşit olmalıdır." +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Direk Tavanı Açısı" -msgctxt "prime_tower_raft_base_line_spacing description" -msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "Tek başlangıç kulesi sal katmanı için sal izleri arasındaki mesafe. Geniş aralıklar, salın yapıştırma tablasından kolay çıkarılmasını sağlar." +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "Direk tavanı açısı Yüksek bir değer, direk tavanını sivrileştirirken, daha düşük bir değer direk tavanlarını düzleştirir." -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "İç içe geçen yapı oluşturmak için modeller arası sınırdan hücre sayısı olarak ölçülen mesafe. Çok az hücre kullanmak zayıf yapışmaya neden olur." +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Alçalan Destek Örgüsü" -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "Modelin en dış kenar hattını olan mesafesi. Daha büyük kenar hattı yapı levhasına yapışmayı artırmanın yanı sıra etkin yazdırma alanını da azaltır." +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "Destek örgüsünde askıda kalan herhangi bir kısım olmaması için destek örgüsünün altındaki her yere destek yapın." -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "İç içe geçen yapıların oluşturulmayacağı bir modelin dışından hücre cinsinden ölçülen mesafe." +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "Sahnede Destek Örgüsü Var" -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "Nozülden gelen ısının filamana aktarıldığı nozül ucuna olan mesafe." +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "Bunlar sahnedeki mevcut destek örgüleridir. Bu ayar Cura tarafından kontrol edilir." -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "Alt yüzeylerin dolgunun içine doğru genişleyeceği mesafedir. Daha yüksek değerler, yüzeyin dolgu şekline daha iyi tutunmasını sağladığı gibi yüzeyin aşağıdaki katmandaki duvara daha iyi yapışmasını sağlar. Daha düşük değerler, kullanılan malzemenin miktarından tasarruf yapılmasını sağlar." +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Yapı Levhası Yapıştırması" -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "Yüzeylerin dolgunun içine doğru genişleyeceği mesafedir. Daha yüksek değerler, yüzeyin dolgu şekline daha iyi tutunmasını sağladığı gibi komşu katmanlardaki duvarların yüzeye daha iyi yapışmasını sağlar. Daha düşük değerler, kullanılan malzemenin miktarından tasarruf yapılmasını sağlar." +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Yapıştırma" -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "Üst yüzeylerin dolgunun içine doğru genişleyeceği mesafedir. Daha yüksek değerler, yüzeyin dolgu şekline daha iyi tutunmasını sağladığı gibi yukarıdaki katmandaki duvarların yüzeye daha iyi yapışmasını sağlar. Daha düşük değerler, kullanılan malzemenin miktarından tasarruf yapılmasını sağlar." +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "İlk Damlayı Etkinleştir" + +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "Yazdırma öncesinde bir damla ile filamanın astarlanıp astarlanmayacağı. Bu ayar açık olarak ayarlandığında, yazdırma öncesinde ekstrüder nozülünde malzeme hazır olacaktır. Kenar veya Etek Yazdırma da astarlama etkisi yapabilir; bu durumda bu ayarın kapatılmasıyla biraz zaman kazanılabilir." -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "Başlığı fırçada ileri ve geri hareket ettirme mesafesi." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Extruder İlk X konumu" -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "Malzemeden tasarruf etmek için dolgu hatlarının uç noktaları kısaltılır. Bu ayar, bu hatların uç noktalarının çıkıntı açısıdır." +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun X koordinatı." -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "Ekstrüzyon sırasında nozülün soğuduğu ilave hız. Aynı değer, ekstrüzyon sırasında ısınırken kaybedilen ısınma hızını göstermek için de kullanılır." +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Extruder İlk Y konumu" -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "Destek dolgusunun ilk katmanı için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır." +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Y koordinatı." -msgctxt "raft_base_extruder_nr description" -msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." -msgstr "Radyenin ilk katmanının baskısında kullanılacak ekstrüderdir. Çoklu ekstrüzyonlarda kullanılır." +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Yapı Levhası Türü" -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "Desteğin zemininin yazdırılması için kullanılacak ekstrüder dizisi. Çoklu ekstrüzyon sırasında kullanılır." +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "Ekstrüzyon işlemine hazırlamayı ve yapı levhasına yapışmayı artıran farklı seçenekler. Kenar, eğilmeyi önlemek için model tabanının etrafına tek katmanlı düz bir alan ekler. Radye, modelin altına çatısı olan kalın bir ızgara ekler. Etek modelin etrafına yazdırılan bir hattır fakat modele bağlı değildir." -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "Destek dolgusu için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır." +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Etek" -msgctxt "raft_interface_extruder_nr description" -msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." -msgstr "Radyenin orta katmanının baskısında kullanılacak ekstrüderdir. Çoklu ekstrüzyonlarda kullanılır." +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Kenar" -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "Desteğin çatıları ve zeminlerinin yazdırılması için kullanılacak ekstrüder dizisi. Çoklu ekstrüzyon sırasında kullanılır." +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Radye" -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "Desteğin çatısının yazdırılması için kullanılacak ekstrüder dizisi. Çoklu ekstrüzyon sırasında kullanılır." +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Hiçbiri" -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "Etek veya kenar baskısı için kullanılacak ekstrüderdir. Çoklu ekstrüzyonlarda kullanılır." +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Yapı Levhası Yapıştırma Ekstruderi" msgctxt "adhesion_extruder_nr description" msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." msgstr "Etek/kenar/radye yazdırmak için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır." -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "Destek için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır." - -msgctxt "raft_surface_extruder_nr description" -msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." -msgstr "Radyenin üst katmanlarının baskısında kullanılacak ekstrüderdir. Çoklu ekstrüzyonlarda kullanılır." - -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "Dolgu yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." - -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "İç duvarları yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Etek/Kenar Ekstrüderi" -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "Dış Duvarı yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "Etek veya kenar baskısı için kullanılacak ekstrüderdir. Çoklu ekstrüzyonlarda kullanılır." -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "Üst ve alt yüzeyi yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Radye Taban Ekstrüderi" -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "En üstteki yüzeyi yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." +msgctxt "raft_base_extruder_nr description" +msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." +msgstr "Radyenin ilk katmanının baskısında kullanılacak ekstrüderdir. Çoklu ekstrüzyonlarda kullanılır." -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "Duvarları yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Radye Orta Ekstrüderi" -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "Radyenin taban katmanı için fan hızı." +msgctxt "raft_interface_extruder_nr description" +msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." +msgstr "Radyenin orta katmanının baskısında kullanılacak ekstrüderdir. Çoklu ekstrüzyonlarda kullanılır." -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "Radyenin orta katmanı için fan hızı." +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Radye Üst Ekstrüderi" -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "Radye için fan hızı." +msgctxt "raft_surface_extruder_nr description" +msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." +msgstr "Radyenin üst katmanlarının baskısında kullanılacak ekstrüderdir. Çoklu ekstrüzyonlarda kullanılır." -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "Üst radye katmanları için fan hızı." +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Etek Hattı Sayısı" -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "Parlaklık değerlerinin, yazdırma dolgusunun ilgili konumundaki minimum yoğunluğu belirlediği görüntünün dosya konumu." +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "Çoklu etek hatları küçük modeller için daha iyi ekstrüzyon işlemi hazırlanmasına yardımcı olur. Bu değeri 0’a ayarlamak eteği devre dışı bırakacaktır." -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "Parlaklık değerlerinin, desteğin ilgili konumundaki minimum yoğunluğu belirlediği görüntünün dosya konumu." +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "Etek Yüksekliği" -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "Yapı levhasına daha iyi yapışma sağlamak ve yazdırmanın genel başarı oranını artırmak için ilk birkaç katman modelin kalan kısmından daha yavaş yazdırılır. Bu hız katmanlar üzerinde giderek artar." +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "En içteki etek çizgisinin birden fazla katmanla yazdırılması, eteğin çıkarılmasını kolaylaştırır." -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "Son radye katmanı ve modelin ilk katmanı arasındaki boşluk. Radye katmanı ve model arasındaki yapışmayı azaltmak için sadece ilk katman yükseltilir. Radyeyi sıyırmayı kolaylaştırır." +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Etek Mesafesi" -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "Yazdırılabilir alan yüksekliği (Z yönü)." +msgctxt "skirt_gap description" +msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "Baskının eteği ve ilk katmanı arasındaki yatay mesafe." +"Minimum mesafedir. Bu mesafeden çok sayıda etek hattı dışarı doğru uzanır." -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "Kalıp yazdıracak modelinizin yatay kısımlarının üzerindeki yükseklik." +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Minimum Etek/Kenar Uzunluğu" -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "Fanların olağan fan hızında döndüğü yükseklik. Alttaki katmanlarda fan hızı, İlk Fan Hızından Olağan Fan Hızına kadar kademeli olarak artar." +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "Etek veya kenarın minimum uzunluğu. Tüm etek veya kenar hatları birlikte bu uzunluğa ulaşmazsa minimum uzunluğa ulaşılana kadar daha fazla etek veya kenar hattı eklenecektir. Not: Hat sayısı 0’a ayarlanırsa, bu yok sayılır." -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "Nozül ucu ve portal sistemi (X ve Y aksları) arasındaki yükseklik farkı." +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Kenar Genişliği" -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "Nozül ucu ve yazıcı başlığının en alt parçası arasındaki yükseklik farkı." +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "Modelin en dış kenar hattını olan mesafesi. Daha büyük kenar hattı yapı levhasına yapışmayı artırmanın yanı sıra etkin yazdırma alanını da azaltır." -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "Ekstruder değişiminden sonra Z Sıçraması yapılırken oluşan yükseklik farkı." +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Kenar Hattı Sayısı" -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Z Sıçraması yapılırken oluşan yükseklik farkı." +msgctxt "brim_line_count description" +msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." +msgstr "Bir kenar için kullanılan hatların sayısı Daha fazla kenar hattı yapı levhasına yapışmayı artırmanın yanı sıra etkin yazdırma alanını da azaltır." -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "Z Sıçraması yapılırken oluşan yükseklik farkı." +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Uç Mesafesi" -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "Her katmanın milimetre cinsinden yüksekliği. Daha yüksek değerler düşük çözünürlükte hızlı baskılar üretir; daha düşük değerler ise yüksek çözünürlükte daha yavaş baskılar üretir." +msgctxt "brim_gap description" +msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." +msgstr "Baskının ilk katmanının uçtaki ilk hattı ile ana hattı arasındaki yatay mesafe. Küçük bir boşluk baskının uç kısmının kolayca çıkarılmasını sağlamasının yanı sıra ısı bakımından da avantajlıdır." -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "Yoğunluğun yarısına inmeden önce verilen bir yoğunluktaki dolgunun yüksekliği." +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Kenar, Desteği Değiştirir" -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "Yoğunluğun yarısına inmeden önce belirli bir yoğunluktaki destek dolgusunun yüksekliği." +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "İlgili alan üzerinde destek olsa bile kenarı modelin çevresine yazdırmaya zorlayın. Desteğin ilk katmanının bazı alanlarını kenar alanları ile değiştirir." -msgctxt "interlocking_beam_layer_count description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "İç içe geçen yapı kirişlerinin katman sayısı olarak ölçülen yüksekliği. Daha az katman daha güçlüdür, ama kusurlara daha yatkındır." +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "Brim Konumu" -msgctxt "interlocking_orientation description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "İç içe geçen yapı kirişlerinin katman sayısı olarak ölçülen yüksekliği. Daha az katman daha güçlüdür, ama kusurlara daha yatkındır." +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "Modelin dışına, içine veya her ikisine de bir brim yazdırın. Modele bağlı olarak bu, daha sonra çıkarmanız gereken brim miktarının azaltılmasına yardımcı olurken yatağın düzgünce yapışmasını sağlar." -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "İlk katmanın milimetre cinsinden yüksekliği. Kalın ilk katmanlar yapı levhasına yapışmayı kolaylaştırır." +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "Yalnızca Dışarıda" -msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "Prime tower tabanının yüksekliği. Bu değeri artırmak, taban daha geniş olacağı için daha sağlam bir prime tower oluşturur. Eğer bu ayar çok düşükse, prime tower sağlam bir tabana sahip olmayacaktır." +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "Yalnızca İçeride" -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "Modelin üzerinde sabit duran desteğin merdiven benzeri alt kısmının basamak yüksekliği. Daha düşük bir değer desteğin hareket ettirilmesini zorlaştırırken, daha yüksek bir değer kararsız destek yapılarına yol açabilir. Merdiven benzeri davranışı kapatmak için sıfır değerine ayarlayın." +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "Her Yerde" -msgctxt "brim_gap description" -msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." -msgstr "Baskının ilk katmanının uçtaki ilk hattı ile ana hattı arasındaki yatay mesafe. Küçük bir boşluk baskının uç kısmının kolayca çıkarılmasını sağlamasının yanı sıra ısı bakımından da avantajlıdır." +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "Brim Engelleme Toleransı" -msgctxt "skirt_gap description" -msgid "" -"The horizontal distance between the skirt and the first layer of the print.\n" -"This is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "" -"Baskının eteği ve ilk katmanı arasındaki yatay mesafe.\n" -"Minimum mesafedir. Bu mesafeden çok sayıda etek hattı dışarı doğru uzanır." +msgctxt "brim_inside_margin description" +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "Bir modelin etrafındaki brim, istemediğiniz yerden başka bir modele değebilir. Bu, brim olmayan modellerde bu mesafedeki tüm brimleri ortadan kaldırır." -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "Dolgu hatları, baskı süresinden tasarruf etmek için düzleştirilir. Bu, dolgu hattının uzunluğu boyunca izin verilen maksimum çıkıntı açısıdır." +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "Akıllı Kenar" -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "Dolgu şekli X ekseni boyunca bu mesafe kadar kaydırılır." +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "En içteki ve ikinci en içteki kenar çizgilerinin baskı sırasını değiştirin. Bu, kenarın çıkarılmasını kolaylaştırır." -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "Dolgu şekli Y ekseni boyunca bu mesafe kadar kaydırılır." +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Ek Radye Boşluğu" -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Nozül iç çapı. Standart olmayan nozül boyutu kullanırken bu ayarı değiştirin." +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Radye etkinleştirildiğinde, ayrıca radye verilen model etrafındaki ek radye alanıdır. Bu boşluğu artırmak, daha fazla malzeme kullanırken ve yazdırma için daha az alan bırakırken daha sağlam bir radye oluşturacaktır." -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "Taban radye katmanının yazdırıldığı ivmesi değişimi." +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "Raft Tabanı Ekstra Tolerans" -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "Orta radye katmanının yazdırıldığı salınım." +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Raft tabanı etkinleştirilirse bu, ayrıca bir raft verilen modelin etrafındaki ekstra raft alanıdır. Bu toleransın arttırılması daha güçlü bir raft oluşturacak, daha fazla malzeme kullanacak ve baskınız için daha az alan bırakacaktır." -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "Radyenin yazdırıldığı salınım." +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "Raft Ortası Ekstra Tolerans" -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "Üst radye katmanların yazdırıldığı salınım." +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Raft ortası etkinleştirilirse bu, ayrıca bir raft verilen modelin etrafındaki ekstra raft alanıdır. Bu toleransın arttırılması daha güçlü bir raft oluşturacak, daha fazla malzeme kullanacak ve baskınız için daha az alan bırakacaktır." -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "Kaldırılacak olan alt yüzey alanlarının en büyük genişliğidir. Bu değerden daha küçük olan her yüzey alanı kaybolacaktır. Bu, modeldeki eğimli yüzeylerde alt yüzeyin yazdırılması için harcanan süreyi ve malzemeyi sınırlamaya yardımcı olabilir." +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "Raft Üstü Ekstra Tolerans" -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "Kaldırılacak olan yüzey alanlarının en büyük genişliğidir. Bu değerden daha küçük olan her yüzey alanı kaybolacaktır. Bu, modeldeki eğimli yüzeylerde alt/üst yüzeyin yazdırılması için harcanan süreyi ve malzemeyi sınırlamaya yardımcı olabilir." +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Raft üstü etkinleştirilmişse bu, ayrıca bir raft verilen modelin etrafındaki ekstra raft alanıdır. Bu toleransın arttırılması daha güçlü bir raft oluşturacak, daha fazla malzeme kullanacak ve baskınız için daha az alan bırakacaktır." -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "Kaldırılacak olan üst yüzey alanlarının en büyük genişliğidir. Bu değerden daha küçük olan her yüzey alanı kaybolacaktır. Bu, modeldeki eğimli yüzeylerde üst yüzeyin yazdırılması için harcanan süreyi ve malzemeyi sınırlamaya yardımcı olabilir." +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Radye İç Köşelerini Kaldır" -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "Fanların olağan fan hızında döndüğü katman Yüksekteki olağan fan hızı ayarlanırsa bu değer hesaplanır ve tam sayıya yuvarlanır." +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Radyenin iç köşelerini kaldırır ve radyenin dışbükey olmasına yol açar." -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "Sınır değerini olağan ve maksimum fan hızı arasında ayarlayan katman süresi. Bundan daha kısa sürede yazdıran katmanlar olağan fan hızı kullanır. Daha hızlı katmanlar için, fan hızı maksimum fan hızına doğru kademeli olarak artar." +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "Raft Tabanını İç Köşelerini Kaldır" -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "Geri çekme hareketi sırasında geri çekilen malzemenin uzunluğu." +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "Raftın dışbükey olmasına neden olan raftın tabanındaki iç köşeleri çıkarır." -msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "Prime tower tabanının eğiminde kullanılan büyüklük faktörü. Bu değeri artırırsanız, taban daha ince hale gelir. Azaltırsanız, taban daha kalın olur." +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "Raft Ortası İç Köşelerini Kaldır" -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "Yazıcıya takılı yapı levhasının malzemesi." +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "Raftın dışbükey olmasına neden olan raftın orta kısmındaki iç köşeleri çıkarır." -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "Taban katmanı yüksekliğine göre izin verilen azami yükseklik." +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "Raft Üstü İç Köşelerini Çıkar" -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "Sızdırma kalkanında bir bölümün sahip olacağı en büyük açı. Dikey 0 derece ve yatay 90 derece. Daha küçük bir açı sızdırma kalkanının daha sorunsuz olmasını sağlarken daha fazla malzeme kullanılmasına yol açar." +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "Raftın dışbükey olmasına neden olan raftın üst kısmındaki iç köşeleri çıkarır." -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "Yazdırılabilir yapıldıktan sonra çıkıntıların en büyük açısı. 0° değerindeyken tüm modeller yapı levhasına bağlı bir model parçasıyla değiştirilirken 90° modeli hiçbir şekilde değiştirmez." +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Radye Düzeltme" -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "Dalların modelin etrafında büyürken aldıkları maksimum açı. Daha dikey ve daha dengeli hale getirmek için daha düşük bir açı kullanın. Daha fazla erişim için daha yüksek bir açı kullanın." +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Bu ayar, radye ana hattında yer alan iç köşelerin ne kadar yuvarlanacağını kontrol eder. İç köşeler, burada belirtilen değere eşit yarıçapa sahip yarım daire şeklinde yuvarlanır. Ayrıca bu ayar, söz konusu daireden daha küçük olan radye ana hattındaki delikleri ortadan kaldırır." -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "Çıkıntıyı Yazdırılabilir Yap işlemiyle çıkarılmadan önce modelin tabanındaki deliğin maksimum alanı. Bu değerden küçük delikler korunacaktır. 0 mm²'lik değer modellerin tabanındaki tüm delikleri dolduracaktır." +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "Raft Tabanı Düzeltme" -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "Maksimum Çözünürlük ayarı için çözünürlük azaltıldığında izin verilen maksimum sapma. Bu değeri artırırsanız baskının doğruluğu azalacak ancak g kodu daha küçük olacaktır. Maksimum Sapma, Maksimum Çözünürlük için sınırdır, dolayısıyla iki değer çelişirse Maksimum Sapma her zaman doğru kabul edilir." +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Bu ayar, raft tabanı taslağındaki iç köşelerin ne kadarının yuvarlak olacağını kontrol eder. İç köşeler, yarıçapı burada verilen değere eşit olacak şekilde yarım daire şeklinde yuvarlanır. Bu ayar aynı zamanda raft dış hattındaki böyle bir daireden daha küçük olan delikleri de kaldırır." -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "X/Y yönlerinde destek yapıları arasındaki maksimum mesafedir. Ayrı yapılar birbirlerine bu değerden daha yakınsa yapılar birleşerek tek bir yapı haline gelir." +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "Raft Orta Düzeltme" -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "Akış hızındaki değişiklikleri telafi etmek için filamentin hareket ettirileceği mm cinsinden maksimum mesafe." +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Bu ayar, raft orta kısmı taslağındaki iç köşelerin ne kadarının yuvarlak olacağını kontrol eder. İç köşeler, yarıçapı burada verilen değere eşit olacak şekilde yarım daire şeklinde yuvarlanır. Bu ayar aynı zamanda raft dış hattındaki böyle bir daireden daha küçük olan delikleri de kaldırır." -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "Ara noktaları düz bir hattan çıkarırken izin verilen maksimum ekstrüzyon alanı sapmasıdır. Bir ara nokta, uzun düz bir hatta genişlik değiştiren nokta olarak hizmet edebilir. Bu nedenle, ara noktanın çıkarılması hattın tek boyutlu bir genişliğe sahip olmasına ve dolayısıyla bir miktar ekstrüzyon alanı kaybetmesine (veya kazanmasına) neden olur. Bu değeri artırırsanız daha fazla ara genişlik değiştiren noktaların kaldırılmasına izin verileceğinden, düz paralel duvarlar arasında az (veya çok) ekstrüzyon görebilirsiniz. Baskının doğruluğu azalacak fakat g kodu daha küçük olacaktır." +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "Raft Üst Düzeltme" -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "İlk katmanın yazdırıldığı maksimum anlık yazdırma hızı değişimi." +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Bu ayar, raft üstü taslağındaki iç köşelerin ne kadarının yuvarlak olacağını kontrol eder. İç köşeler, yarıçapı burada verilen değere eşit olacak şekilde yarım daire şeklinde yuvarlanır. Bu ayar aynı zamanda raft dış hattındaki böyle bir daireden daha küçük olan delikleri de kaldırır." -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "Yazıcı başlığının maksimum anlık hız değişimi." +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Radye Hava Boşluğu" -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "Ütüleme sırasında oluşan maksimum anlık hız değişimi." +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "Son radye katmanı ve modelin ilk katmanı arasındaki boşluk. Radye katmanı ve model arasındaki yapışmayı azaltmak için sadece ilk katman yükseltilir. Radyeyi sıyırmayı kolaylaştırır." -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "Tüm iç duvarların yazdırıldığı maksimum anlık hız değişimi." +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "İlk Katman Z Çakışması" -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "Dolgunun yazdırıldığı maksimum anlık hız değişimi." +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "Hava boşluğundaki filament kaybını telafi etmek için modelin birinci ve ikinci katmanını Z yönünde üst üste getirir. İlk model katmanının üzerindeki tüm modeller bu miktarda aşağı kaydırılacaktır.\nBu ayar nedeniyle bazen ikinci katmanın ilk katmanın altına yazdırıldığı belirtilebilir. Bu istenilen davranıştır" -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "Desteğin zeminlerinin yazdırıldığı maksimum anlık hız değişimi." +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Radye Taban Kalınlığı" -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "Desteğin dolgusunun yazdırıldığı maksimum anlık hız değişimi." +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "Radyenin taban katmanının katman kalınlığı. Bu, yazıcı yapı levhasına sıkıca yapışan kalın bir katman olmalıdır." -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "En dıştaki duvarların yazdırıldığı maksimum anlık hız değişimi." +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Radyenin Taban Hat Genişliği" -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "İlk direğin yazdırıldığı maksimum anlık hız değişimi." +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "Radyenin taban katmanındaki hatların genişliği. Bunlar, yapı levhasına yapışma işlemine yardımcı olan kalın hatlar olmalıdır." -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "Desteğin çatıları ve zeminlerinin yazdırıldığı maksimum anlık hız değişimi." +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Radye Taban Hat Genişliği" -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "Desteğin çatılarının yazdırıldığı maksimum anlık hız değişimi." +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "Radyenin taban katmanı için radye hatları arasındaki mesafe. Geniş aralık bırakılması radyenin yapı levhasından kolayca kaldırılmasını sağlar." -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "Etek ve kenarların yazdırıldığı maksimum anlık hız değişimi." +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Radye Orta Katmanları" -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "Destek yapısının yazdırıldığı maksimum anlık hız değişimi." +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "Radyenin tabanı ve yüzeyi arasındaki katman sayısıdır. Bunlar radyenin temel kalınlığını oluşturur. Bu değerin artırılması daha kalın ve sağlam bir radye oluşturur." -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "Üst Yüzeyin En Dış Duvarlarının Basıldığı Anki Maksimum Hız Değişikliği." +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Radye Orta Kalınlığı" -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "Üst Yüzeyin İç Duvarlarının Basıldığı Anki Maksimum Hız Değişikliği." +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "Radyenin orta katmanının katman kalınlığı." -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "Duvarların yazdırıldığı maksimum anlık hız değişimi." +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Radyenin Orta Hat Genişliği" -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "Üst yüzey katmanların yazdırıldığı maksimum anlık hız değişimi." +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "Radyenin orta katmanındaki hatların genişliği. İkinci katmanın daha fazla sıkılması hatların yapı levhasına yapışmasına neden olur." -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "Üst/alt katmanların yazdırıldığı maksimum anlık hız değişimi." +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Radye Orta Boşluğu" -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "Hareket hamlelerinin yapıldığı maksimum anlık hız değişimi." +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "Radyenin orta katmanı için radye hatları arasındaki mesafe. Ortadaki aralığın oldukça geniş olması gerekirken, üst radye katmanlarını desteklemek için de yeteri kadar yoğun olması gerekir." -msgctxt "prime_tower_max_bridging_distance description" -msgid "The maximum length of the branches which may be printed over the air." -msgstr "" +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Radyenin Üst Katmanları" + +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "İkinci radye katmanındaki üst katmanların sayısı. Bunlar modelin üstünde durduğu tamamı dolgulu katmanlardır. İki katman bir katmandan daha pürüzsüz bir üst yüzey oluşturur." -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "X yönü motoru için maksimum hız." +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Radyenin Üst Katman Kalınlığı" -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "Y yönü motoru için maksimum hız." +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Üst radye katmanlarının katman kalınlığı." -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "Z yönü motoru için maksimum hız." +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Radyenin Üst Hat Genişliği" -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "Filamanın maksimum hızı." +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "Radyenin üst yüzeyindeki hatların genişliği. Radyenin üstünün pürüzsüz olması için bunlar ince hat olabilir." -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "Modelin üzerinde sabit duran desteğin merdiven benzeri alt kısmının maksimum basamak genişliği. Daha düşük bir değer desteğin hareket ettirilmesini zorlaştırırken, daha yüksek bir değer kararsız destek yapılarına yol açabilir." +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Radyenin Üst Boşluğu" -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "Kalıbın dış tarafı ile modelin dış tarafı arasındaki minimum mesafedir." +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "Üst radye katmanları için radye hatları arasındaki mesafe. Yüzeyin katı olabilmesi için aralık hat genişliğine eşit olmalıdır." -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "Yazıcı başlığının minimum hareket hızı." +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "Monotonik Raft Üst Yüzey Düzeni" -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "Yazdırmanın başlayacağı Yazdırma Sıcaklığına ulaşırken görülen minimum sıcaklık." +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "Raftın üst yüzey çizgilerini, her zaman bitişik çizgilerle tek bir yönde üst üste binmelerine neden olacak bir sırayla yazdırır. Bu, yazdırmanın biraz daha fazla zaman almasını sağlar ama yüzeyin daha tutarlı görünmesini sağlar, bu da modelin alt yüzeyinde de görülebilir." -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "Nozül soğumadan önce ekstruderin etkin olmaması gerektiği minimum süre. Ekstruder sadece bu süreden daha uzun bir süre kullanılmadığında bekleme sıcaklığına inebilecektir." +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "Raft Duvar Sayısı" -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "Dolum eklenen dahili çıkıntıların minimum açısı. 0° değerde nesneler tamamen doldurulur, 90°’de dolgu yapılmaz." +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "Raft doğrusal modelinin etrafına yazdırılacak konturların sayısı." -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "Desteğin eklendiği çıkıntıların minimum açısı. 0°’de tüm çıkıntılar desteklenirken 90°‘de destek sağlanmaz." +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Radye Tabanı Duvar Sayısı" -msgctxt "retraction_min_travel description" -msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." -msgstr "Geri çekme işleminin yapılması için gerekli olan minimum hareket mesafesi. Küçük bir alanda daha az geri çekme işlemi yapılmasına yardımcı olur." +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "Radyenin taban katmanındaki doğrusal desen etrafına basılacak kontur sayısıdır." -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "Etek veya kenarın minimum uzunluğu. Tüm etek veya kenar hatları birlikte bu uzunluğa ulaşmazsa minimum uzunluğa ulaşılana kadar daha fazla etek veya kenar hattı eklenecektir. Not: Hat sayısı 0’a ayarlanırsa, bu yok sayılır." +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "Raft Orta Duvar Sayısı" -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "Orta hat boşluğunu dolduran çok hatlı duvarlar için minimum hat genişliğidir. Bu ayar, iki duvar hattı baskısının hangi model kalınlığında iki dış duvar ve tek bir merkezi orta duvar baskısına geçirileceğini belirler. Daha yüksek Minimum Tek Duvar Hattı Genişliği değeri belirlenmesi daha yüksek maksimum çift duvar hattı genişliği oluşturur. Maksimum tek duvar hattı genişliği, 2 * Minimum Çift Duvar Hattı Genişliği formülüyle hesaplanır." +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "Raftın orta katmanlarındaki doğrusal desenin etrafına yazdırılacak kontur sayısı." -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "Normal çokgen duvarlar için minimum hat genişliğidir. Bu ayar, tek bir ince duvar hattının basılmasından iki duvar hattına hangi model kalınlığında geçileceğini belirler. Daha yüksek Minimum Çift Duvar Hattı Genişliği değeri belirlenmesi daha yüksek maksimum tek duvar hattı genişliği oluşmasına yol açar. Maksimum çift duvar hattı genişliği, Dış Duvar Hattı Genişliği + 0,5 * Minimum Tek Duvar Hattı Genişliği formülüyle hesaplanır." +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "Raft Üstü Duvar Sayısı" -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "Düşük katman süresi nedeniyle yavaşlamaya karşın minimum yazdırma hızı. Yazıcı çok yavaşladığında nozüldeki basınç çok düşük olacak ve kötü yazdırma kalitesiyle sonuçlanacaktır." +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "Raftın üst katmanlarındaki doğrusal desenin etrafına yazdırılacak kontur sayısı." -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "Bir çizginin dilimlemeden sonraki minimum boyutu. Bu değer artırıldıktan sonra örgünün çözünürlüğü düşer. Bu, yazıcının g-kodunu işlemek için gereken hıza yetişmesine olanak tanır ve örtünün zaten işlenemeyecek ayrıntılarını kaldırarak dilimleme hızını artırır." +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Radye Yazdırma Hızı" -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "Bir hareket çizgisinin dilimlemeden sonraki minimum boyutu. Bunu artırmanız durumunda, hareketlerde köşelerin yumuşaklığı azalır. Bu seçenek, yazıcının g-code işlemek için gereken hızı yakalamasına olanak tanıyabilir ancak model kaçınmasının doğruluğunu azaltabilir." +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "Radyenin yazdırıldığı hız." -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "Basamaklı alanın etkili olması için gereken minimum eğimdir. Düşük değerler, derinliği daha düşük olan eğimlerde desteğin kaldırılmasını kolaylaştırırken, gerçekten düşük değerler ise modelin diğer parçalarında tersine sonuçlar doğurabilir." +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Radyenin Taban Yazdırma Hızı" -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "Bir katmanda harcanan minimum süre. Bu süre yazıcıyı yavaşlamaya ve burada en azından bir katmanda ayarlanan süreyi kullanmaya zorlar. Bir sonraki katman yazdırılmadan önce yazdırılan materyalin düzgün bir şekilde soğumasını sağlar. Kaldırma Başlığı devre dışı bırakılır ve Minimum Hız değeri başka bir şekilde ihlal edilmezse katmanlar yine de minimal katman süresinden daha kısa sürebilir." +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "Radyenin taban katmanının yazdırıldığı hız. Nozülden gelen malzemenin hacmi çok büyük olduğu için bu kısım yavaş yazdırılmalıdır." -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "Yeterince malzeme temizlemek için ilk direğin her bir katmanı için minimum hacim." +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Radyenin Orta Yazdırma Hızı" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "Modele bağlanması gereken dalın çapının, yapı levhasına erişebilecek dallarla birleşerek en fazla ne kadar artabileceği. Bunu artırmak baskı süresini azaltır, ancak modele dayanan destek alanını artırır" +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "Orta radye katmanının yazdırıldığı hız. Nozülden gelen malzemenin hacmi çok büyük olduğu için bu kısım yavaş yazdırılmalıdır." -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "3B yazıcı modelinin adı." +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Radye Üst Yazdırma Hızı" -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "Ekstruder dişli çarkı için nozül kimliği, “AA 0.4” ve “BB 0.8” gibi." +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "Radye katmanlarının yazdırıldığı hız. Nozülün bitişik yüzey hatlarını yavaşça düzeltebilmesi için, bu kısımlar biraz daha yavaş yazdırılmalıdır." -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "Nozül hareket esnasında daha önce yazdırılmış bölümleri atlar. Bu seçenek sadece tarama etkinleştirildiğinde kullanılabilir." +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Radye Yazdırma İvmesi" -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "Nozül hareket ederken önceden yazdırılmış destekleri atlar. Bu seçenek yalnızca tarama etkin olduğunda kullanılabilir." +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "Radyenin yazdırıldığı ivme." -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "Alt katman sayısı. Bu değer, alt kalınlığıyla hesaplandığında tam sayıya yuvarlanır." +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Radyenin Taban Yazdırma İvmesi" -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "Radyenin taban katmanındaki doğrusal desen etrafına basılacak kontur sayısıdır." +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "Taban radye katmanının yazdırıldığı ivme." -msgctxt "raft_interface_wall_count description" -msgid "The number of contours to print around the linear pattern in the middle layers of the raft." -msgstr "" +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Radyenin Orta Yazdırma İvmesi" -msgctxt "raft_surface_wall_count description" -msgid "The number of contours to print around the linear pattern in the top layers of the raft." -msgstr "" +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "Orta radye katmanının yazdırıldığı ivme." -msgctxt "raft_wall_count description" -msgid "The number of contours to print around the linear pattern of the raft." -msgstr "" +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Radye Üst Yazdırma İvmesi" -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "Kaplamanın kenarlarını destekleyen dolgu katmanının kalınlığı." +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "Üst radye katmanların yazdırıldığı ivme." -msgctxt "initial_bottom_layers description" -msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "Yapı plakasından itibaren ilk alt katman sayısı Bu değer, alt kalınlığıyla hesaplandığında tam sayıya yuvarlanır." +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Radye Yazdırma Salınımı" -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "Radyenin tabanı ve yüzeyi arasındaki katman sayısıdır. Bunlar radyenin temel kalınlığını oluşturur. Bu değerin artırılması daha kalın ve sağlam bir radye oluşturur." +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "Radyenin yazdırıldığı salınım." -msgctxt "brim_line_count description" -msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." -msgstr "Bir kenar için kullanılan hatların sayısı Daha fazla kenar hattı yapı levhasına yapışmayı artırmanın yanı sıra etkin yazdırma alanını da azaltır." +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Radyenin Taban Yazdırma Salınımı" -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "Bir destek kenarı için kullanılan hatların sayısı. Daha fazla kenar hattı, ekstra malzeme karşılığında baskı tablasına daha fazla alanın yapışacağı anlamına gelir." +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "Taban radye katmanının yazdırıldığı ivmesi değişimi." -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "İkinci radye katmanındaki üst katmanların sayısı. Bunlar modelin üstünde durduğu tamamı dolgulu katmanlardır. İki katman bir katmandan daha pürüzsüz bir üst yüzey oluşturur." +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Radyenin Orta Yazdırma Salınımı" -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "Üst katman sayısı. Bu değer, üst kalınlığıyla hesaplandığında tam sayıya yuvarlanır." +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "Orta radye katmanının yazdırıldığı salınım." -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "En üstteki yüzey katmanlarının sayısı. Yüksek kalitede üst yüzeyler oluşturmak için genellikle tek bir üst yüzey katmanı yeterlidir." +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Radye Üst Yazdırma Salınımı" -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Destek dolgusunun çevreleneceği duvar sayısı. Bir duvarın eklenmesi destek yazdırmasını daha güvenilir kılabilir ve çıkıntıları daha iyi destekleyebilir. Ancak yazdırma süresini ve kullanılan malzemeyi artırır." +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "Üst radye katmanların yazdırıldığı salınım." -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Destek arayüz zeminini çevreleyecek duvar sayısı. Duvar eklemek, destek baskıyı daha güvenilir hale getirebilir ve çıkıntıları daha iyi destekleyebilir, ama baskı süresini ve kullanılan malzemeyi artırır." +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Radye Fan Hızı" -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Destek arayüz çatısını çevreleyecek duvar sayısı. Duvar eklemek, destek baskıyı daha güvenilir hale getirebilir ve çıkıntıları daha iyi destekleyebilir, ama baskı süresini ve kullanılan malzemeyi artırır." +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "Radye için fan hızı." -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Destek arayüzünü çevreleyecek duvar sayısı. Duvar eklemek, destek baskıyı daha güvenilir hale getirebilir ve çıkıntıları daha iyi destekleyebilir, ama baskı süresini ve kullanılan malzemeyi artırır." +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Radyenin Taban Fan Hızı" -msgctxt "wall_distribution_count description" -msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." -msgstr "Varyasyonun yayılması gereken, merkezden itibaren sayılan duvar sayısı. Düşük değerler olması dış duvarların genişliğinin değişmeyeceğini gösterir." +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "Radyenin taban katmanı için fan hızı." -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "Duvar sayısı. Bu değer, duvar kalınlığıyla hesaplandığında tam sayıya yuvarlanır." +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Radyenin Orta Fan Hızı" -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "Nozül ucunun dış çapı." +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "Radyenin orta katmanı için fan hızı." -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "Baskının dolgu malzemesinin şeklidir. Hat ve zikzak dolgu, farklı katmanlar üzerinde yön değiştirerek malzeme maliyetini azaltır. Izgara, üçgen, üçlü altıgen, kübik, sekizlik, çeyrek kübik, çapraz ve eşmerkezli şekiller her katmana tam olarak basılır. Gyroid, kübik, çeyrek kübik ve sekizlik dolgu, her yönde daha eşit bir kuvvet dağılımı sağlamak için her katmanda değişir. Yıldırım dolgu, objenin yalnızca tavanını destekleyerek dolgu miktarını en aza indirmeye çalışır." +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Radye Üst Fan Hızı" -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "Yazdırma destek yapılarının şekli. Bulunan farklı seçenekler sağlam veya kolay çıkarılabilir destek oluşturabilir." +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "Üst radye katmanları için fan hızı." -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "En üst yüzeyin şekli." +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "İkili ekstrüzyon" -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Üst/alt katmanların şekli." +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Çoklu ekstruderler ile yapılan yazdırmalar için kullanılan ayarlar." -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "Yazdırmanın altında ilk katmanda yer alacak şekil." +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "İlk Direği Etkinleştir" -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "Üst yüzeyleri ütülemek için kullanılacak model." +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "Malzemenin hazırlanmasına yardımcı olan yazıcının yanındaki direği her nozül değişiminden sonra yazdırın." -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "Destek zeminlerinin yazdırıldığı desen." +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "Asal Kule Türü" -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "Model ile birlikte destek arayüzünün yazdırıldığı şekil." +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
                                      • Normal: create a bucket in which secondary materials are primed
                                      • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
                                      " +msgstr "Asal kule nasıl oluşturulur:
                                      • Normal: İkincil malzemelerin astarlandığı bir kova oluşturur.
                                      • Aralıklı: Olabildiğince seyrek bir asal kule oluşturur. Bu, zamandan ve filamentten tasarruf sağlayacaktır ama bu yalnızca kullanılan malzemelerin birbirine yapışması durumunda mümkündür.
                                      " -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "Destek çatısının yazdırıldığı desen." +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "Normal" -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "Bir katmandaki her kısmın basılmaya başlanacağı yere yakın konum." +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "Aralıklı" -msgctxt "support_tree_angle_slow description" -msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." -msgstr "Modelden kaçınmak zorunda olmadıklarında dalların tercih edilen açısı. Daha dikey ve daha dengeli hale getirmek için daha düşük bir açı kullanın. Dalların daha hızlı birleşmesi için daha yüksek bir açı kullanın." +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "İlk Direk Boyutu" -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "Destek yapılarının tercih edilen yerleşimi. Yapılar tercih edilen yere yerleştirilemiyorsa başka bir yere yerleştirilecektir. Bu, onları modelin üzerine yerleştirmek anlamına da gelebilir." +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "İlk Direk Genişliği." -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "İlk katman için maksimum anlık yazdırma hızı değişimi." +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "İlk Direğin Minimum Hacmi" -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "Yazdırılamayan alanların haricinde yapı levhasının şekli." +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "Yeterince malzeme temizlemek için ilk direğin her bir katmanı için minimum hacim." -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "Baskı kafasının şekli. Bunlar baskı kafasının konumuna göre koordinatlardır ve genellikle ilk ekstrüderin konumunu gösterir. Baskı kafasının sol ve önündeki boyutlar negatif koordinatlar olmalıdır." +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "Asal Kule Maksimum Köprüleme Mesafesi" -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "Şeklin kendisine temas ettiği yüksekliklerde, çapraz 3D şekilde dört yönlü kesişme yerlerinde bulunan ceplerin boyutudur." +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "Havadan basılabilecek dalların maksimum uzunluğu." -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "Taramaya izin verilmeden önce ekstrüzyon yolunda olması gereken en küçük hacim. Daha küçük ekstrüzyon yolları için bowden tüpünde daha az basınç geliştirilir ve bu nedenle taranan hacim doğrusal olarak ölçeklendirilir. Bu değer her zaman Tarama Değerinden daha büyüktür." +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "İlk Direk X Konumu" -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "Ortalama nozül soğumasının normal yazdırma sıcaklıkları ve bekleme sıcaklığı penceresinin üzerinde olduğu hız (°C/sn)." +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "İlk direk konumunun x koordinatı." -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "Ortalama nozül ısınmasının normal yazdırma sıcaklıkları ve bekleme sıcaklığı penceresinin üzerinde olduğu hız (°C/sn)." +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "İlk Direk Y Konumu" -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "Tüm iç duvarların yazdırıldığı hız. İç duvarları dış duvarlardan daha hızlı yazdırmak yazdırma süresini azaltacaktır. Bu ayarı dış duvar hızı ve dolgu hızı arasında yapmak faydalı olacaktır." +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "İlk direk konumunun y koordinatı." -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "Köprü yüzey alanı bölgelerinin yazdırıldığı hız." +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "İlk Direkteki Sürme İnaktif Nozülü" -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "Dolgunun gerçekleştiği hız." +msgctxt "prime_tower_wipe_enabled description" +msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." +msgstr "Bir nozül ile ilk direği yazdırdıktan sonra, diğer nozülden ilk direğe sızdırılan malzemeyi silin." -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "Yazdırmanın gerçekleştiği hız." +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Base" +msgstr "Başlangıç Kulesi Tabanı" -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "Radyenin taban katmanının yazdırıldığı hız. Nozülden gelen malzemenin hacmi çok büyük olduğu için bu kısım yavaş yazdırılmalıdır." +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "Bu ayarı etkinleştirmeniz, modelinizde olmasa bile prime tower'ınıza bir brim kazandırır. Eğer yüksek bir kule için daha sağlam bir taban istiyorsanız, taban yüksekliğini artırabilirsiniz." -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "Köprü duvarlarının yazdırıldığı hız." +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "Başlangıç Kulesi Taban Boyutu" -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "Fanların, yazdırma işleminin başındaki dönme hızı. Sonraki katmanlarda fan hızı, Yüksekteki Olağan Fan Hızına karşılık gelen katmana kadar kademeli olarak artar." +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "Prime tower brim/tabanının genişliği. Daha büyük bir taban yapışmayı artırır, ancak etkili baskı alanını da azaltır." -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "Katmanların sınıra ulaşmadan önceki dönüş hızı Katman sınır değerinden daha hızlı yazdırdığında fan hızı giderek maksimum fan hızına yönelir." +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "Başlangıç Kulesi Taban Yüksekliği" -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "Katmanların minimum katman süresindeki dönüş hızı. Sınır değerine ulaşıldığında, fan hızı olağan ve maksimum fan hızı arasında kademeli artış gösterir." +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "Prime tower tabanının yüksekliği. Bu değeri artırmak, taban daha geniş olacağı için daha sağlam bir prime tower oluşturur. Eğer bu ayar çok düşükse, prime tower sağlam bir tabana sahip olmayacaktır." -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "Filamanın geri çekme hareketi sırasında astarlandığı hız." +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "Prime Tower Taban Eğimi" -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "Filamanın sürme geri çekme hareketi sırasında astarlandığı hız." +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "Prime tower tabanının eğiminde kullanılan büyüklük faktörü. Bu değeri artırırsanız, taban daha ince hale gelir. Azaltırsanız, taban daha kalın olur." -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "Nozül değişiminin çekmesi sonucunda filamanın geriye doğru itildiği hız." +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "Başlangıç Kulesi Salı İzi Aralığı" -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "Filamanın geri çekildiği ve geri çekme hareketi sırasında astarlandığı hız." +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "Tek başlangıç kulesi sal katmanı için sal izleri arasındaki mesafe. Geniş aralıklar, salın yapıştırma tablasından kolay çıkarılmasını sağlar." -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "Filamanın geri çekildiği ve sürme geri çekme hareketi sırasında astarlandığı hız." +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Sızdırma Kalkanını Etkinleştir" -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "Nozül değişiminin çekmesi sırasında filamanın geri çekildiği hız." +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "Dış sızdırma kalkanını etkinleştirir. Modelin etrafında, ilk nozül ile aynı yükseklikte olması halinde ikinci bir nozülü temizleyebilecek olan bir kalkan oluşturacaktır." -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "Filamanın geri çekme hareketi sırasında geri çekildiği hız." +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Sızdırma Kalkanı Açısı" -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "Filamanın sürme geri çekme hareketi sırasında geri çekildiği hız." +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "Sızdırma kalkanında bir bölümün sahip olacağı en büyük açı. Dikey 0 derece ve yatay 90 derece. Daha küçük bir açı sızdırma kalkanının daha sorunsuz olmasını sağlarken daha fazla malzeme kullanılmasına yol açar." -msgctxt "switch_extruder_retraction_speeds description" -msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." -msgstr "Filamanın geri çekildiği hız. Daha yüksek bir geri çekme hızı daha çok işe yarar, fakat çok yüksek geri çekme hızı filaman aşınmasına neden olabilir." +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Sızdırma Kalkanı Mesafesi" -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "Destek zemininin yazdırılma hızı. Daha düşük hızlarda yazdırma, desteğin modelin üzerine yapışmasını iyileştirebilir." +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "Sızdırma kalkanını X/Y yönlerindeki baskıya mesafesi." -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "Dolgu desteğinin yazdırıldığı hız. Dolguyu daha düşük hızlarda yazdırmak sağlamlığı artırır." +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Nozül Anahtarı Geri Çekme Mesafesi" -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "Orta radye katmanının yazdırıldığı hız. Nozülden gelen malzemenin hacmi çok büyük olduğu için bu kısım yavaş yazdırılmalıdır." +msgctxt "switch_extruder_retraction_amount description" +msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." +msgstr "Ekstrüderler değiştirilirken oluşan geri çekme miktarı. Geri çekme yoksa 0 olarak ayarlayın. Bu genellikle ısı bölgesinin uzunluğuna eşittir." -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "En dış duvarların yazdırıldığı hız. Dış duvarı düşük hızda yazdırmak son yüzey kalitesini artırır. Öte yandan, iç duvar hızı ve dış duvar hızı arasındaki farkın fazla olması kaliteyi olumsuz etkileyecektir." +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Nozül Anahtarı Geri Çekme Hızı" + +msgctxt "switch_extruder_retraction_speeds description" +msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." +msgstr "Filamanın geri çekildiği hız. Daha yüksek bir geri çekme hızı daha çok işe yarar, fakat çok yüksek geri çekme hızı filaman aşınmasına neden olabilir." -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "İlk direğin yazdırıldığı hız. Farklı filamanlar arasındaki yapışma standardın altında olduğunda, ilk direği daha yavaş yazdırmak dayanıklılığı artırabilir." +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Nozül Değişiminin Geri Çekme Hızı" -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "Yazdırma soğutma fanlarının dönüş hızı." +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "Nozül değişiminin çekmesi sırasında filamanın geri çekildiği hız." -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "Radyenin yazdırıldığı hız." +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Nozül Değişiminin İlk Hızı" -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "Destek çatıları ve zeminlerinin yazdırılma hızı. Daha düşük hızlarda yazdırma, askıda kalan kısımların kalitesini iyileştirebilir." +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "Nozül değişiminin çekmesi sonucunda filamanın geriye doğru itildiği hız." -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "Destek çatısının yazdırılma hızı. Daha düşük hızlarda yazdırma, askıda kalan kısımların kalitesini iyileştirebilir." +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Nozül Değişimiyle Çalışmaya Hazırlanacak Ek Miktar" -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "Etek ve kenarın yazdırıldığı hız. Bu işlem normalde ilk katman hızında yapılır, ama etek ve kenarı farklı hızlarda yazdırmak isteyebilirsiniz." +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "Nozül değişiminin ardından çalışmaya hazırlanacak ek malzemedir." -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "Destek yapısının yazdırıldığı hız. Yüksek hızlardaki yazdırma desteği yazdırma süresini büyük oranda azaltabilir. Destek yapısının yüzey kalitesi, yazdırma işleminden sonra çıkartıldığı için önemli değildir." +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Ağ Onarımları" -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "Radye katmanlarının yazdırıldığı hız. Nozülün bitişik yüzey hatlarını yavaşça düzeltebilmesi için, bu kısımlar biraz daha yavaş yazdırılmalıdır." +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Kafesleri 3D baskı için daha uygun hale getirir." -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "Üst Yüzey İç Duvarların Hangi Hızda Basıldığı." +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Bağlantı Çakışma Hacimleri" -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "Üst Yüzeyin En Dış Duvarlarının Hangi Hızda Basıldığı." +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "Bir örgü içinde çakışan hacimlerden kaynaklanan iç geometriyi yok sayın ve hacimleri tek bir hacim olarak yazdırın. Bu durum, istenmeyen iç boşlukların kaybolmasını sağlar." -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "Z Atlamaları için yapılan dikey Z hareketinin gerçekleştirileceği hızdır. Yapı plakasının veya makine tezgahının hareket etmesi daha zor olduğundan genelde baskı hızından daha düşüktür." +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Tüm Boşlukları Kaldır" -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "Duvarların yazdırıldığı hız." +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "Her katmandaki boşlukları ortadan kaldırır ve sadece dış şekli korur. Görünmez tüm iç geometriyi yok sayar. Bununla birlikte, üstten ve alttan görünebilen katman boşluklarını da göz ardı eder." -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "Üst yüzeyi geçmek için gereken süre." +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Geniş Dikiş" -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "Sorunsuz kopması için filamentin geri çekilmesi gereken hızdır." +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "Geniş Dikiş, bitişik poligonlarla dikişleri kapatarak ağdaki açık boşlukların dikmeye çalışır. Bu seçenek çok fazla işlem süresi ortaya çıkarabilir." -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "Üst yüzey katmanların yazdırıldığı hız." +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Bağlı Olmayan Yüzleri Tut" -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "Üst/alt katmanların yazdırıldığı hız." +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "Normal koşullarda, Cura ağdaki küçük boşlukları diker ve büyük boşluklu katman parçalarını ortadan kaldırır. Bu seçeneği etkinleştirmek, dikilemeyen parçaları muhafaza eder. Bu seçenek, hiçbir işlemin uygun bir g-code oluşturamaması durumunda başvurulacak son seçenek olarak kullanılmalıdır." -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "Hareket hamlelerinin hızı." +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Birleştirilmiş Bileşim Çakışması" -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "Ekstrüzyon yolu hızına göre tarama sırasındaki hareket hızı. Tarama hareketi sırasında bowden tüpündeki basınç düştüğü için değerin %100’ün altında olması öneriliyor." +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "Birbirine dokunan örgülerin az oranda üst üste binmesini sağlayın. Böylelikle bunlar daha iyi birleşebilir." -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "İlk katman için hız. Yapı plakasında yapışmayı iyileştirmek için düşük bir değer tavsiye edilir. Yapı plakasının kenar ve radye gibi yapışma yapılarını etkilemez." +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Bileşim Kesişimini Kaldırın" -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "İlk katmanın yazdırılması için belirlenen hız. Yapı tahtasına yapışmayı artırmak için daha düşük bir değer önerilmektedir." +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "Birden fazla bileşimin çakıştığı alanları kaldırın. Bu, birleştirilmiş ikili malzemeler çakıştığında kullanılabilir." -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "İlk katmandaki hareket hamlelerinin hızı. Daha önce yazdırılan bölümlerin yapı levhasından ayrılmasını önlemek için daha düşük bir değer kullanılması önerilir. Bu ayar değeri, Hareket Hızı ve Yazdırma Hızı arasındaki orana göre otomatik olarak hesaplanabilir." +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "Alternatif Örgü Giderimi" -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "Sorunsuz kopması için filament koptuğundaki sıcaklık değeridir." +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "Çakışan bileşimlerin birbirine karışması için her bir katmanda bileşim kesişimi hacimlerine göre değişiklik yapın. Bu ayarın kapatılması, bir bileşimin diğer bileşimlerden ayrılarak çakışmadaki tüm hacmi almasına neden olur." -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "Baskı yapılacak ortamın sıcaklığı. Bu değer 0 ise yapı hacminin sıcaklığı ayarlanmaz." +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Boş İlk Katmanları Kaldır" -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "Yazdırma için başka bir nozül kullanılırken nozülün sıcaklığı." +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "Basılan ilk katmanın altındaki varsa boş katmanları kaldır. Bu ayarın devre dışı bırakılması, Dilimleme Toleransı Dışlayıcı veya Ortalayıcı olarak ayarlanmışsa, boş ilk katmanlar oluşmasına neden olabilir." -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "Yazdırma bitmeden hemen önce soğuma işleminin başladığı sıcaklık." +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Maksimum Çözünürlük" -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer." -msgstr "İlk katmanın basımında kullanılan sıcaklık." +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "Bir çizginin dilimlemeden sonraki minimum boyutu. Bu değer artırıldıktan sonra örgünün çözünürlüğü düşer. Bu, yazıcının g-kodunu işlemek için gereken hıza yetişmesine olanak tanır ve örtünün zaten işlenemeyecek ayrıntılarını kaldırarak dilimleme hızını artırır." -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "Yazdırma için kullanılan sıcaklık." +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Maksimum Hareket Çözünürlüğü" -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "İlk katmanda ısıtıcı yapı plakası için kullanılan sıcaklık. Bu değer 0 olduğunda yapı plakası ilk katman boyunca ısıtılmaz." +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "Bir hareket çizgisinin dilimlemeden sonraki minimum boyutu. Bunu artırmanız durumunda, hareketlerde köşelerin yumuşaklığı azalır. Bu seçenek, yazıcının g-code işlemek için gereken hızı yakalamasına olanak tanıyabilir ancak model kaçınmasının doğruluğunu azaltabilir." -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "Isıtıcı yapı plakası için kullanılan sıcaklık. Bu değer 0 olduğunda yapı plakası ısıtılmaz." +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Maksimum Sapma" -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "Malzemeyi temizlemek için kullanılan sıcaklık; kabaca mümkün olan en yüksek baskı sıcaklığına eşit olmalıdır." +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "Maksimum Çözünürlük ayarı için çözünürlük azaltıldığında izin verilen maksimum sapma. Bu değeri artırırsanız baskının doğruluğu azalacak ancak g kodu daha küçük olacaktır. Maksimum Sapma, Maksimum Çözünürlük için sınırdır, dolayısıyla iki değer çelişirse Maksimum Sapma her zaman doğru kabul edilir." -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "Yazdırmadaki alt katmanların kalınlığı. Katman yüksekliğiyle ayrılan bu değer alt katmanların sayısını belirtir." +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Maksimum Ekstrüzyon Alanı Sapması" -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "Kaplamanın kenarlarını destekleyen ekstra dolgunun kalınlığı." +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "Ara noktaları düz bir hattan çıkarırken izin verilen maksimum ekstrüzyon alanı sapmasıdır. Bir ara nokta, uzun düz bir hatta genişlik değiştiren nokta olarak hizmet edebilir. Bu nedenle, ara noktanın çıkarılması hattın tek boyutlu bir genişliğe sahip olmasına ve dolayısıyla bir miktar ekstrüzyon alanı kaybetmesine (veya kazanmasına) neden olur. Bu değeri artırırsanız daha fazla ara genişlik değiştiren noktaların kaldırılmasına izin verileceğinden, düz paralel duvarlar arasında az (veya çok) ekstrüzyon görebilirsiniz. Baskının doğruluğu azalacak fakat g kodu daha küçük olacaktır." -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "Alt veya üst kısımdaki modele değdiği yerde destek arayüzü kalınlığı." +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "Akışkan Hareketini Etkinleştir" -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "Destek zeminlerinin kalınlığı. Desteğin üzerinde durduğu modelin üst kısımlarına yazdırılan yoğun katmanların sayısını kontrol eder." +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "Bu ayar etkinleştirildiğinde, düzgün hareket planlayıcıları olan yazıcılar için takım yolları düzeltilir. Genel takım yolu yönünden sapan küçük hareketler, akışkan hareketlerini iyileştirmek için düzeltilir." -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "Destek tavanlarının kalınlığı. Modelin bulunduğu desteğin üst kısmındaki yoğun katmanların sayısını kontrol eder." +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "Akışkan Hareketi Kaydırma Mesafesi" -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "Yazdırmadaki üst katmanların kalınlığı. Katman yüksekliğiyle ayrılan bu değer üst katmanların sayısını belirtir." +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Yolu düzeltmek için mesafe noktaları kaydırılır" -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "Yazdırmadaki üst/alt katmanların kalınlığı. Katman yüksekliğiyle ayrılan bu değer üst/alt katmanların sayısını belirtir." +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "Akışkan Hareketi Küçük Mesafe" -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "Yatay yönde duvar kalınlığı. Bu değer duvar hattı genişliğiyle bölündüğünde duvar sayısını belirler." +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Yolu düzeltmek için mesafe noktaları kaydırılır" -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "Dolgu malzemesinin her bir katmanının kalınlığı Bu değer her zaman katman yüksekliğinin katı olmalıdır, aksi takdirde yuvarlanır." +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "Akışkan Hareket Açısı" -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "Her katmandaki destek dolgusu malzemesinin kalınlığı. Bu değer her zaman katman yüksekliğinin bir katı olmalıdır, aksi takdirde değer yuvarlanır." +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "Bir takım yolu parçası, genel harekete göre bu açıdan daha fazla bir sapma gösterirse düzeltilir." -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "Oluşturulacak g-code türü." +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Özel Modlar" -msgctxt "material_type description" -msgid "The type of material used." -msgstr "" +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Modellerinizi yazdırmanın geleneksel olmayan yollarıdır." + +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Yazdırma Dizisi" -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "Aksi takdirde hacim sızdırılır. Bu değer, genellikle nozül çapının küpüne yakındır." +msgctxt "print_sequence description" +msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." +msgstr "Sıradakine geçmeden önce, tüm modellerin tek seferde bir katmanla mı yazdırılacağı yoksa bir modelin bitmesinin mi bekleneceği. Teker teker modu a) yalnızca bir ekstrüder etkinleştirildiğinde b) tüm modeller baskı kafası aralarında hareket edecek veya nozül ile X/Y eksenleri arasındaki mesafeden az olacak şekilde ayrıldığında kullanılabilir." -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "Yazdırılabilir alan genişliği (X yönü)." +msgctxt "print_sequence option all_at_once" +msgid "All at Once" +msgstr "Tümünü birden" -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "Desteğin altına yazdırılacak kenarın genişliği. Daha geniş kenar, ekstra malzeme karşılığında baskı tablasına daha fazla alanın yapışacağı anlamına gelir." +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "Birer Birer" -msgctxt "interlocking_beam_width description" -msgid "The width of the interlocking structure beams." -msgstr "İç içe geçen yapı kirişlerinin genişliği." +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Baskı Sırasını Manuel Olarak Ayarla" -msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "Prime tower brim/tabanının genişliği. Daha büyük bir taban yapışmayı artırır, ancak etkili baskı alanını da azaltır." +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "Yazdırma sırasını manuel olarak ayarlamak için nesne listesini sıralamanızı sağlar. Listedeki ilk nesne ilk olarak yazdırılacaktır." -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "İlk Direk Genişliği." +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Dolgu Ağı" -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "Titremenin yapılacağı genişlik. İç duvarlar değiştirilmediği için, bunun dış duvar genişliğinin altında tutulması öneriliyor." +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "Çakıştığı diğer dolgu ağını düzeltmek için bu ağı kullanın. Bu birleşim için olan bölgelerle diğer birleşimlerin dolgu bölgelerini değiştirir. Bu birleşim için Üst/Alt Dış Katmanı değil sadece bir Duvarı yazdırmak önerilir." -msgctxt "retraction_extrusion_window description" -msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." -msgstr "Maksimum geri çekme sayısının uygulandığı pencere. Bu değer, geri çekme mesafesi ile hemen hemen aynıdır, bu şekilde geri çekmenin aynı malzeme yolundan geçme sayısı etkin olarak sınırlandırılır." +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "Örgü İşleme Sıralaması" -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "İlk direk konumunun x koordinatı." +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "Çakışan birden çok dolgu örgüsünü göz önüne alarak bu örgünün önceliğini belirler. Birden çok dolgu örgüsünün çakıştığı alanlar en yüksek sıralamaya sahip örgünün ayarlarını alacaktır. Daha yüksek sıralamaya sahip dolgu örgüsü, dolgu örgülerinin dolgusunu daha düşük sıralı ve normal örgüler ile değiştirecektir." -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "İlk direk konumunun y koordinatı." +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Kesme Örgüsü" -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "Bunlar sahnedeki mevcut destek örgüleridir. Bu ayar Cura tarafından kontrol edilir." +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "Bu örgünün hacmini diğer örgülere göre sınırlandırın. Bir örgünün belirli alanlarını farklı ayarlarla ve tamamen farklı bir ekstrüder ile yazdırmak için bunu kullanabilirsiniz." -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "Bu, ekstruderin bir köprü duvarı başlamadan hemen önce taraması gereken mesafeyi kontrol eder. Köprü başlamadan önce tarama, nozüldeki basıncı azaltabilir ve daha düz bir köprü üretebilir." +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Kalıp" -msgctxt "raft_base_smoothing description" -msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "Yapı levhası üzerinde modelleri toplayan bir model elde etmek amacıyla döküm olabilecek modelleri kalıp olarak yazdırır." -msgctxt "raft_interface_smoothing description" -msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Minimum Kalıp Genişliği" -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Bu ayar, radye ana hattında yer alan iç köşelerin ne kadar yuvarlanacağını kontrol eder. İç köşeler, burada belirtilen değere eşit yarıçapa sahip yarım daire şeklinde yuvarlanır. Ayrıca bu ayar, söz konusu daireden daha küçük olan radye ana hattındaki delikleri ortadan kaldırır." +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "Kalıbın dış tarafı ile modelin dış tarafı arasındaki minimum mesafedir." -msgctxt "raft_surface_smoothing description" -msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Kalıp Çatı Yüksekliği" -msgctxt "retraction_count_max description" -msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." -msgstr "Bu ayar, düşük ekstrüzyon mesafesi penceresinde oluşan ekstrüzyon sayısını sınırlandırır. Bu penceredeki geri çekmeler yok sayılacaktır. Filamanı düzleştirebildiği ve aşındırma sorunlarına yol açabileceği için aynı filaman parçası üzerinde tekrar tekrar geri çekme yapılmasını önler." +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "Kalıp yazdıracak modelinizin yatay kısımlarının üzerindeki yükseklik." -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "Modelin etrafında (sıcak) hava ve kalkanlara dışarıdaki hava akımına karşı set çeken bir duvar oluşturur. Özellikle kolayca eğrilebilen malzemeler için kullanışlıdır." +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Kalıp Açısı" -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "Uç Çapı" +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "Kalıp için oluşturulan dış duvarların çıkıntı açısı. 0° kalıbın dış kovanını dikey hale getirirken, 90° ise modelin dış kısmının model konturunu takip etmesini sağlayacaktır." -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "Malzemenin soğudukça büzülmesini telafi etmek için model bu faktöre göre XY yönünde (yatay olarak) ölçeklenecektir." +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Destek Örgüsü" -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "Malzemenin soğudukça büzülmesini telafi etmek için model bu faktöre göre Z yönünde (dikey olarak) ölçeklenecektir." +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "Destek alanlarını belirlemek için bu örgüyü kullanın. Bu örgü, destek yapısını oluşturmak için kullanılabilir." -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "Malzemenin soğudukça büzülmesini telafi etmek için model bu faktöre göre ölçeklenecektir." +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Çıkıntı Önleme Örgüsü" -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Üst Katmanlar" +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "Bu bileşimi, modelin hiçbir parçasının çıkıntı olarak algılanmadığı durumları belirlemek için kullanın. Bu, istenmeyen destek yapısını kaldırmak için kullanılabilir." -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Üst Yüzey Genişleme Mesafesi" +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Yüzey Modu" -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Üst Yüzey Kaldırma Genişliği" +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "Modeli sadece bir yüzey, gevşek yüzeyli hacim veya hacimler şeklinde işleyin. Normal yazdırma modu sadece kapalı hacimleri yazdırır. “Yüzey”, dolgusu ve üst/alt dış katmanı olmayan birleşim yüzeyini takip eden tek bir duvar yazdırır. “Her ikisi” kapalı hacimleri normal şekilde ve kalan poligonları yüzey şeklinde yazdırır." -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Üst Yüzey İç Duvar Hızlanması" +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Normal" -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Üst Yüzeyin En Dış Duvar Darbesi" +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Yüzey" -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Üst Yüzey İç Duvar Hızı" +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Her İkisi" -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Üst Yüzey İç Duvar Akışı" +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Spiral Dış Çevre" -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Üst Yüzey Dış Duvar Hızlanması" +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "Dış kenarın Z hareketini helezon şeklinde düzeltir. Böylece yazdırmanın tamamında sabit bir Z artışı oluşur. Bu özellik katı bir modeli, tabanı katı tek bir duvar yazdırmasına dönüştürür. Bu özelliğin sadece tek bir parça içeren tüm tabakalarda etkinleştirilmesi gerekir." -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Üst Yüzeyin En Dış Duvar Akışı" +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Helezon Şeklinde Düzeltme" -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Üst Yüzeyin İç Duvar Darbesi" +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "Z dikişinin görünürlüğünü azaltmak için helezon şeklindeki konturları düzeltin (Z dikişi baskıda zor görünmeli ancak katman görünümünde görünür olmalıdır). Düzeltme işleminin ince yüzey detaylarında bulanıklığa neden olabileceğini göz önünde bulundurun." -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Üst Yüzeyin En Dış Duvar Hızı" +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Bağıl Ekstrüzyon" -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Üst Yüzey İvmesi" +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "Mutlak ekstrüzyon yerine bağıl ekstrüzyon uygulayın. Bağıl E-adımlarının uygulanması, g-code’un sonradan işlenmesini kolaylaştırır. Ancak bu, tüm yazıcılar tarafından desteklenmemektedir ve mutlak E-adımları ile karşılaştırıldığında birikmiş malzemenin miktarında hafif farklılıklar yaratabilir. Bu ayara bakılmaksızın, herhangi bir g-code komut dosyası çıkartılmadan önce ekstrüzyon modu her zaman mutlak değere ayarlı olacaktır." -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Üst Yüzey Ekstruderi" +msgctxt "experimental label" +msgid "Experimental" +msgstr "Deneysel" -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Üst Yüzeyin Dış Katman Akışı" +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Henüz tamamen detaylandırılmamış özelliklerdir." -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Üst Yüzey İvmesi Değişimi" +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Dilimleme Toleransı" -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Üst Yüzey Katmanları" +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "Dilimlenmiş katmanlardaki dikey tolerans. Bir katmanın konturları her katmanın kalınlığının ortasından enine kesitler (Ortalayan) alınarak normal şekilde oluşturulur. Alternatif olarak, her katman, katmanın tüm kalınlığı boyunca hacmin iç kısmına düşen alanlara (Dışlayan) sahip olabilir; veya bir katman, katman içinde herhangi bir yere düşen alanlara (İçeren) sahip olabilir. İçeren seçeneğinde katmandaki çoğu ayrıntı korunur, Dışlayan seçeneği en iyi uyum içindir ve Ortalayan seçeneği ise katmanı orijinal yüzeyin en yakınında tutar." -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Üst Yüzey Hat Yönleri" +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Ortalayıcı" -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Üst Yüzey Hat Genişliği" +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Dışlayıcı" -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Üst Yüzey Şekli" +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Kapsayıcı" -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Üst Yüzey Hızı" +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Dolgu Hareket Optimizasyonu" + +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "Aktifleştirildiğinde, dolgu hatlarının baskı düzeni, hareketi azaltmak için optimize edilir. Elde edilen hareket zamanındaki azalma dilimlenen modele, dolgu şekline ve yoğunluğuna vs. bağlıdır. Birçok ufak dolgu bölgesine sahip bazı modeller için modelin dilimlenme süresi önemli ölçüde artabilir." -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Üst Kalınlık" +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Akış Sıcaklık Grafiği" -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "Nesnenizin bu ayardan daha geniş açıya sahip üst ve/veya alt zeminlerinin yüzeyleri genişletilmez. Böylece model yüzeyinin neredeyse dik açıya sahip olduğu durumlarda ortaya çıkan dar yüzey alanlarının genişletilmesi önlenmiş olur. 0°’lik bir açı yataydır ve yüzey alanının genişlemesine neden olmaz; 90°’lik bir açı dikeydir ve tüm yüzey alanlarının genişlemesine neden olur." +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "Malzeme akışını (saniye başına mm3 bazında) sıcaklığa (santigrat derece) bağlayan veri." -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Üst / Alt" +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Minimum Poligon Çevre Uzunluğu" -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Üst / Alt" +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "Bu miktardan daha kısa çevre uzunluğuna sahip dilimlenmiş katmanlardaki poligonlar filtre ile elenecektir. Daha düşük değerler dilimleme süresini uzatacak ancak daha yüksek çözünürlükte bir ağ oluşturacaktır. Genellikle yüksek çözünürlüklü SLA yazıcılarına yöneliktir ve çok fazla detay içeren çok küçük 3D modellerinde kullanılır." -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Üst/Alt İvme" +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "İç İçe Geçen Yapı Oluşturma" -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Üst/Alt Ekstruderi" +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "Modellerin temas ettiği yerlerde, iç içe geçen bir kiriş yapısı oluşturun. Bu, özellikle farklı malzemelerden basılmış modellerde, modeller arasındaki yapışmayı iyileştirir." -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Üst/Alt Akış" +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "İç İçe Geçme Genişliği" -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Üst/Alt Salınımı" +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "İç içe geçen yapı kirişlerinin genişliği." -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Üst/Alt Çizgi Yönleri" +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "İç İçe Geçen Yapı Uyumlaması" -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Üst/Alt Hat Genişliği" +msgctxt "interlocking_orientation description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "İç içe geçen yapı kirişlerinin katman sayısı olarak ölçülen yüksekliği. Daha az katman daha güçlüdür, ama kusurlara daha yatkındır." -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Üst/Alt Şekil" +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "İç İçe Geçen Kiriş Katman Sayısı" -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Üst/Alt Hız" +msgctxt "interlocking_beam_layer_count description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "İç içe geçen yapı kirişlerinin katman sayısı olarak ölçülen yüksekliği. Daha az katman daha güçlüdür, ama kusurlara daha yatkındır." -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Üst/Alt Kalınlık" +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "İç İçe Geçme Derinliği" -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "Yapı Levhasına Dokunma" +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "İç içe geçen yapı oluşturmak için modeller arası sınırdan hücre sayısı olarak ölçülen mesafe. Çok az hücre kullanmak zayıf yapışmaya neden olur." -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Direk Çapı" +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "İç İçe Geçme Sınırından Kaçınma" -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Direk Tavanı Açısı" +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "İç içe geçen yapıların oluşturulmayacağı bir modelin dışından hücre cinsinden ölçülen mesafe." -msgctxt "mesh_rotation_matrix description" -msgid "Transformation matrix to be applied to the model when loading it from file." -msgstr "Modeli dosyadan indirirken modele uygulanacak olan dönüşüm matrisi." +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Parçalarda Döküm Desteği" -msgctxt "travel label" -msgid "Travel" -msgstr "Hareket" +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "Destek yapısının daha kolay kırılması için bazı destek hattı bağlantılarını atlayın. Bu ayar, Zikzak destek dolgusu şekli için geçerlidir." -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Hareket İvmesi" +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Destek Parçasının Boyutu" -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Hareket Atlama Mesafesi" +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "Destek yapısının daha kolay kırılması için her N milimetresinde bir destek hatları arasında bağlantı atlayın." -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Hareket Salınımı" +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Destek Parçası Hattı Sayısı" -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Hareket Hızı" +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "Destek yapısının daha kolay kırılması için her N bağlantı hattında bir zikzak atlayın." -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "Modeli sadece bir yüzey, gevşek yüzeyli hacim veya hacimler şeklinde işleyin. Normal yazdırma modu sadece kapalı hacimleri yazdırır. “Yüzey”, dolgusu ve üst/alt dış katmanı olmayan birleşim yüzeyini takip eden tek bir duvar yazdırır. “Her ikisi” kapalı hacimleri normal şekilde ve kalan poligonları yüzey şeklinde yazdırır." +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Cereyan Kalkanını Etkinleştir" -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Ağaç" +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "Modelin etrafında (sıcak) hava ve kalkanlara dışarıdaki hava akımına karşı set çeken bir duvar oluşturur. Özellikle kolayca eğrilebilen malzemeler için kullanışlıdır." -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Üçlü Altıgen" +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Cereyan Kalkanı X/Y Mesafesi" -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Üçgenler" +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "Cereyan kalkanını X/Y yönlerindeki baskıya mesafesi." -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Üçgenler" +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Cereyan Kalkanı Sınırlaması" -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Üçgenler" +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "Cereyan kalkanının yüksekliğini ayarlayın. Cereyan kalkanını model yüksekliğinde veya sınırlı yükseklikte yazdırmayı seçin." -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Üçgenler" +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Tam" -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Üçgenler" +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Sınırlı" -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "Gövde Çapı" +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Cereyan Kalkanı Yüksekliği" -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "Cereyan kalkanının yükseklik sınırı. Bundan daha fazla bir yükseklikte cereyan kalkanı yazdırılmayacaktır." -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Bağlantı Çakışma Hacimleri" +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Çıkıntıyı Yazdırılabilir Yap" -msgctxt "bridge_wall_min_length description" -msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." -msgstr "Bundan daha kısa desteklenmeyen duvarlar normal duvar ayarları kullanılarak yazdırılacaktır. Daha uzun desteklenmeyen duvarlar köprü duvarı ayarları kullanılarak yazdırılacaktır." +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "En az desteğin istenmesi için yazdırılan modelin geometrisini değiştirin. Dik çıkıntılar sığlaşacaktır. Çıkıntılı alanlar daha dikey biçimde olmak için alçalacaktır." -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Uyarlanabilir Katmanların Kullanımı" +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Maksimum Model Açısı" -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Direkleri kullan" +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "Yazdırılabilir yapıldıktan sonra çıkıntıların en büyük açısı. 0° değerindeyken tüm modeller yapı levhasına bağlı bir model parçasıyla değiştirilirken 90° modeli hiçbir şekilde değiştirmez." -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "Hareket hamleleri için ayrı bir ivme oranı kullanın. Hareket hamleleri devre dışı bırakılırsa varış noktasında yazdırılan hattın ivme değerini kullanır." +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Maksimum Çıkıntı Deliği Alanı" -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "Hareket hamleleri için ayrı bir salınım oranı kullanın. Hareket hamleleri devre dışı bırakılırsa varış noktasında yazdırılan hattın ivme değerini kullanır." +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "Çıkıntıyı Yazdırılabilir Yap işlemiyle çıkarılmadan önce modelin tabanındaki deliğin maksimum alanı. Bu değerden küçük delikler korunacaktır. 0 mm²'lik değer modellerin tabanındaki tüm delikleri dolduracaktır." -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "Mutlak ekstrüzyon yerine bağıl ekstrüzyon uygulayın. Bağıl E-adımlarının uygulanması, g-code’un sonradan işlenmesini kolaylaştırır. Ancak bu, tüm yazıcılar tarafından desteklenmemektedir ve mutlak E-adımları ile karşılaştırıldığında birikmiş malzemenin miktarında hafif farklılıklar yaratabilir. Bu ayara bakılmaksızın, herhangi bir g-code komut dosyası çıkartılmadan önce ekstrüzyon modu her zaman mutlak değere ayarlı olacaktır." +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Taramayı Etkinleştir" -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "Küçük çıkıntı alanlarını desteklemek için özel direkler kullanın. Bu direkler desteklediğimiz bölgeden daha büyük çaptadır. Çıkıntıyı yaklaştırırsanız direklerin çapı azalır ve bir tavan oluşturur." +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "Tarama, ekstrüzyon yolunun son parçasını hareket parça ile değiştirir. Dizimli azaltmak amacıyla sızdırılan malzeme ekstrüzyon yolunun son parçasını yazdırmak için kullanılır." -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "Çakıştığı diğer dolgu ağını düzeltmek için bu ağı kullanın. Bu birleşim için olan bölgelerle diğer birleşimlerin dolgu bölgelerini değiştirir. Bu birleşim için Üst/Alt Dış Katmanı değil sadece bir Duvarı yazdırmak önerilir." +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Tarama Hacmi" -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "Destek alanlarını belirlemek için bu örgüyü kullanın. Bu örgü, destek yapısını oluşturmak için kullanılabilir." +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "Aksi takdirde hacim sızdırılır. Bu değer, genellikle nozül çapının küpüne yakındır." + +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Tarama Öncesi Minimum Hacim" -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "Bu bileşimi, modelin hiçbir parçasının çıkıntı olarak algılanmadığı durumları belirlemek için kullanın. Bu, istenmeyen destek yapısını kaldırmak için kullanılabilir." +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "Taramaya izin verilmeden önce ekstrüzyon yolunda olması gereken en küçük hacim. Daha küçük ekstrüzyon yolları için bowden tüpünde daha az basınç geliştirilir ve bu nedenle taranan hacim doğrusal olarak ölçeklendirilir. Bu değer her zaman Tarama Değerinden daha büyüktür." -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Kullanıcı Tarafından Belirtilen" +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Tarama Hızı" -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Dikey Ölçekleme Faktörü Büzülme Telafisi" +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "Ekstrüzyon yolu hızına göre tarama sırasındaki hareket hızı. Tarama hareketi sırasında bowden tüpündeki basınç düştüğü için değerin %100’ün altında olması öneriliyor." -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "Dilimlenmiş katmanlardaki dikey tolerans. Bir katmanın konturları her katmanın kalınlığının ortasından enine kesitler (Ortalayan) alınarak normal şekilde oluşturulur. Alternatif olarak, her katman, katmanın tüm kalınlığı boyunca hacmin iç kısmına düşen alanlara (Dışlayan) sahip olabilir; veya bir katman, katman içinde herhangi bir yere düşen alanlara (İçeren) sahip olabilir. İçeren seçeneğinde katmandaki çoğu ayrıntı korunur, Dışlayan seçeneği en iyi uyum içindir ve Ortalayan seçeneği ise katmanı orijinal yüzeyin en yakınında tutar." +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Çapraz 3D Cebin Boyutu" -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Yapı Levhasının Isınmasını Bekle" +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "Şeklin kendisine temas ettiği yüksekliklerde, çapraz 3D şekilde dört yönlü kesişme yerlerinde bulunan ceplerin boyutudur." -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Nozülün Isınmasını Bekle" +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Çapraz Dolgu Yoğunluğu Görüntüsü" -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Duvar İvmesi" +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "Parlaklık değerlerinin, yazdırma dolgusunun ilgili konumundaki minimum yoğunluğu belirlediği görüntünün dosya konumu." -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Duvar Dağılım Sayısı" +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Destek için Çapraz Dolgu Yoğunluğu Görüntüsü" -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Duvar Ekstruderi" +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "Parlaklık değerlerinin, desteğin ilgili konumundaki minimum yoğunluğu belirlediği görüntünün dosya konumu." -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Duvar Akışı" +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Konik Desteği Etkinleştir" -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Duvar Salınımı" +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "Alttaki destek alanlarını çıkıntıda olanlardan daha küçük yapın." -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Duvar Hattı Sayısı" +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Konik Destek Açısı" -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Duvar Hattı Genişliği" +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "Konik desteğin eğim açısı. Dikey 0 derece ve yatay 90 derece. Daha küçük açılar desteğin daha sağlam olmasını sağlar, ancak çok fazla malzeme içerir. Negatif açılar destek tabanının üst kısımdan daha geniş olmasına yol açar." -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Duvar Sıralaması" +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Koni Desteğinin Minimum Genişliği" -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Duvar Hızı" +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "Koni desteği tabanının indirildiği minimum genişlik. Küçük genişlikler, destek tabanlarının dengesiz olmasına neden olur." -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Duvar Kalınlığı" +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Belirsiz Dış Katman" -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Duvar Geçişi Uzunluğu" +msgctxt "magic_fuzzy_skin_enabled description" +msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." +msgstr "Yüzeyin sert ve belirsiz bir görüntü alması için dış duvarları yazdırırken rastgele titrer." -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Duvar Geçişi Filtresi Mesafesi" +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Yalnızca Belirsiz Dış Katman" -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Duvar Geçişi Filtresi Kenar Boşluğu" +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "Parçalardaki delikleri değil, yalnızca ana hatlarını titretir." -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Duvar Geçişi Eşik Açısı" +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Belirsiz Dış Katman Kalınlığı" -msgctxt "shell label" -msgid "Walls" -msgstr "Duvarlar" +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "Titremenin yapılacağı genişlik. İç duvarlar değiştirilmediği için, bunun dış duvar genişliğinin altında tutulması öneriliyor." -msgctxt "wall_overhang_angle description" -msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." -msgstr "Bu açıdan daha yüksek çıkıntıya sahip duvarlar çıkıntılı duvar ayarları kullanılarak basılacaktır. Değer 90 ise hiçbir duvarda çıkıntı olmadığı varsayılacaktır. Destek ile desteklenen çıkıntılar da çıkıntı olarak değerlendirilmeyecektir." +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Belirsiz Dış Katman Yoğunluğu" -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "Bu ayar etkinleştirildiğinde, düzgün hareket planlayıcıları olan yazıcılar için takım yolları düzeltilir. Genel takım yolu yönünden sapan küçük hareketler, akışkan hareketlerini iyileştirmek için düzeltilir." +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "Bir katmandaki her bir poligona tanınan noktaların ortalama yoğunluğu. Poligonların asıl noktalarının çıkarıldığını dikkate alın; bunun sonucunda düşük yoğunluk sonuçları çözünürlük azalmasıyla sonuçlanabilir." -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "Aktifleştirildiğinde, dolgu hatlarının baskı düzeni, hareketi azaltmak için optimize edilir. Elde edilen hareket zamanındaki azalma dilimlenen modele, dolgu şekline ve yoğunluğuna vs. bağlıdır. Birçok ufak dolgu bölgesine sahip bazı modeller için modelin dilimlenme süresi önemli ölçüde artabilir." +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Belirsiz Dış Katman Noktası Mesafesi" -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "Bu ayar etkinleştirildiğinde, yazıcı soğutma fanının hızı desteğin hemen üzerindeki yüzey bölgeleri için değiştirilir." +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "Her bir hat dilimine tanıtılan rastgele noktalar arasındaki ortalama mesafe. Poligonların asıl noktalarının çıkarıldığını dikkate alın; bunun sonucunda yüksek pürüzsüzlük sonuçları çözünürlük azalmasıyla sonuçlanabilir. Bu değer, Belirsiz Dış Katman Kalınlığından yüksek olmalıdır." -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "Etkin olduğunda, z dikişi koordinatları her parçanın merkezine göre hizalıdır. Devre dışı olduğunda, koordinatlar yapı levhası üzerinde mutlak bir pozisyonu belirtir." +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Akış hızı dengelemesi maksimum ekstrüzyon kayması" -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "Sıfırdan büyük olduğunda, bu mesafeden daha uzun tarama mesafelerinde geri çekme yapılır. Sıfıra ayarlandığında, bir maksimum belirlenmez ve tarama hareketlerinde geri çekme kullanılmaz." +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "Akış hızındaki değişiklikleri telafi etmek için filamentin hareket ettirileceği mm cinsinden maksimum mesafe." -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "Sıfırdan büyük olduğunda, Delik Yatay Büyüme küçük deliklere kademeli olarak uygulanır (küçük delikler daha fazla büyütülür). Sıfır olarak ayarlandığında Delik Yatay Büyüme tüm deliklere uygulanacaktır. Delik Yatay Büyüme Maksimum Çapı’ndan daha büyük delikler genişletilmez." +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Akış hızı dengeleme çarpanı" -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "Delik Yatay Genişlemesi, sıfırdan büyük olmak koşuluyla, her katmandaki tüm deliklere uygulanan ofset miktarıdır. Pozitif değerlerde delikler büyür, negatif değerlerde ise küçülür. Bu ayar etkinleştirildiğinde, Delik Yatay Genişleme Maksimum Çapı ile daha detaylı bir ayarlama yapılabilir." +msgctxt "flow_rate_extrusion_offset_factor description" +msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." +msgstr "Akış hızındaki değişiklikleri telafi edebilmek için filamentin bir saniyelik ekstrüzyonda hareket ettirileceği mesafenin yüzdesi olarak filamentin ne kadar uzağa hareket ettirileceği." -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "Köprü yüzey alanı bölgeleri yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır." +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Uyarlanabilir Katmanların Kullanımı" -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "Köprü duvarları yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır." +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "Uyarlanabilir katmanlar modelin şekline bağlı olarak katman yüksekliğini hesaplar." -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "İkinci köprü yüzey alanı katmanı yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır." +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "Uyarlanabilir Katmanların Azami Değişkenliği" -msgctxt "bridge_skin_material_flow_3 description" -msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Üçüncü köprü yüzey alanı katmanı yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır." +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "Taban katmanı yüksekliğine göre izin verilen azami yükseklik." -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "Düşük katman süresi nedeniyle minimum hıza inildiğinde yazıcı başlığını yazıcıdan kaldırıp düşük katman süresine ulaşana kadar olan ek süreyi bekleyin." +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "Uyarlanabilir Katmanların Değişkenlik Adım Boyu" -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "Modelde yalnızca birkaç katmanda küçük dikey boşluklar varsa normal şartlarda dar alandaki bu katmanların etrafında dış bir katman olmalıdır. Dikey boşluğun çok küçük olduğu durumlarda dış katman oluşturulmaması için bu ayarı etkinleştirin. Böylece baskı ve dilimleme süresi kısalır ancak teknik olarak bakıldığında havayla temasa açık dolgular kalır." +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "Bir önceki ve bir sonraki katman yüksekliği arasındaki yükseklik farkı." -msgctxt "wall_transition_angle description" -msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." -msgstr "Çift ve tek sayıdaki duvarlar arasında ne zaman geçiş oluşturulacağını gösterir. Bu ayardan daha geniş açıya sahip bir kama şekline geçiş eklenmez ve kalan alanının doldurulması sırasında merkez noktada duvar baskısı yapılmaz. Bu ayarın düşürülmesi bu merkez duvarların sayısını ve uzunluğunu azaltır fakat boşluklara ve aşırı ekstrüzyona neden olabilir." +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "Uyarlanabilir Katman Topografisi Boyutu" -msgctxt "wall_transition_length description" -msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." -msgstr "Farkı sayıda duvar arasından geçerken parça daha ince hale geldiğinden duvar hatlarını bölmek veya birleştirmek için belirli bir alan ayrılır." +msgctxt "adaptive_layer_height_threshold description" +msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." +msgstr "İki bitişik katman arasındaki hedef yatay mesafe. Bu ayarın azaltılması, katmanların kenarlarını birbirine yakınlaştırmak için daha ince katmanlar kullanılmasına neden olur." -msgctxt "wipe_hop_enable description" -msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "Sürme sırasında yapı plakası nozül ve baskı arasında açıklık oluşturmak üzere alçaltılır. Bu işlem, hareket sırasında nozülün baskıya çarpmasını önler ve baskının devrilerek yapı plakasından düşme olasılığını azaltır." +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Çıkıntılı Duvar Açısı" -msgctxt "retraction_hop_enabled description" -msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "Geri çekme her yapıldığında, nozül ve baskı arasında açıklık oluşturmak için yapı levhası indirilir. Yapı levhasından baskıya çarpma şansını azaltarak nozülün hareket sırasında baskıya değmesini önler." +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." +msgstr "Bu açıdan daha yüksek çıkıntıya sahip duvarlar çıkıntılı duvar ayarları kullanılarak basılacaktır. Değer 90 ise hiçbir duvarda çıkıntı olmadığı varsayılacaktır. Destek ile desteklenen çıkıntılar da çıkıntı olarak değerlendirilmeyecektir." -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "Destek X/Y Mesafesinin Destek Z Mesafesinden veya tersi yönde fazla olup olmadığı. X/Y, Z’den fazla olursa, X/Y mesafesi çıkıntıya olan asıl Z mesafesini etkileyerek desteği modelden iter. Çıkıntıların etrafına X/Y mesafesi uygulayarak bunu engelleyebiliriz." +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Çıkıntılı Duvar Hızı" -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "Yazıcı sıfır noktasının X/Y koordinatlarının yazdırılabilir alanın merkezinde olup olmadığı." +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "Çıkıntılı duvarlar, normal yazdırma hızına göre bu yüzdeye denk bir hızda yazdırılacaktır." -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "X ekseninin kapamasının pozitif yönde mi (yüksek X koordinatı) yoksa negatif yönde mi (düşük X koordinatı) olduğu." +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Köprü Ayarlarını Etkinleştir" + +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "Köprüleri tespit edin ve köprüler yazdırılırken yazdırma hızını, akışı ve fan ayarlarını değiştirin." -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "Y ekseninin kapamasının pozitif yönde mi (yüksek Y koordinatı) yoksa negatif yönde mi (düşük Y koordinatı) olduğu." +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Minimum Köprü Duvarı Uzunluğu" -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "Z ekseninin kapamasının pozitif yönde mi (yüksek Z koordinatı) yoksa negatif yönde mi (düşük Z koordinatı) olduğu." +msgctxt "bridge_wall_min_length description" +msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." +msgstr "Bundan daha kısa desteklenmeyen duvarlar normal duvar ayarları kullanılarak yazdırılacaktır. Daha uzun desteklenmeyen duvarlar köprü duvarı ayarları kullanılarak yazdırılacaktır." -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "Ekstrüderlerin tek bir ısıtıcıyı mı paylaşacağı yoksa her bir ekstrüderin kendi ısıtıcısı mı olacağı." +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Köprü Yüzey Alanı Destek Eşiği" -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "Ekstrüderlerin tek bir nozülü mü paylaşacağı yoksa her bir ekstrüderin kendi nozülü mü olacağıdır. True olarak ayarlandığında printer-start gcode betiğinin tüm ekstrüderleri bilinen ve karşılıklı olarak uyumlu olan bir ilk geri çekme durumunda (sıfır veya geri çekilmemiş bir filament) düzgün bir şekilde ayarlaması beklenir. Bu durumda ilk geri çekme, ekstrüder başına \"machine_extruders_shared_nozzle_initial_retraction\" parametresi ile açıklanır." +msgctxt "bridge_skin_support_threshold description" +msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." +msgstr "Eğer bir yüzey alanı bölgesi, alanının bu yüzdeden daha azı için destekleniyorsa, köprü ayarlarını kullanarak yazdırın. Aksi halde normal yüzey alanı ayarları kullanılarak yazdırılır." -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "Makinenin mevcut yapı levhasını ısıtıp ısıtmadığı." +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Maksimum Köprü Seyrek Dolgu Yoğunluğu" -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "Makinenin yapı hacmi sıcaklığını dengeleyip dengelemediği." +msgctxt "bridge_sparse_infill_max_density description" +msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." +msgstr "Seyrek olması düşünülen dolgunun maksimum yoğunluğu. Seyrek dolgu üzerindeki kaplama, desteksiz olacağı düşünülerek köprü kaplaması olarak değerlendirilir." -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "Nesnenin kaydedildiği koordinat sistemini kullanmak yerine nesnenin yapı platformunun (0,0) ortasına yerleştirilmesi." +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Köprü Duvarı Tarama" -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "Cura üzerinden sıcaklığın kontrol edilip edilmeme ayarı. Nozül sıcaklığını Cura dışından kontrol etmek için bu ayarı kapalı konuma getirin." +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "Bu, ekstruderin bir köprü duvarı başlamadan hemen önce taraması gereken mesafeyi kontrol eder. Köprü başlamadan önce tarama, nozüldeki basıncı azaltabilir ve daha düz bir köprü üretebilir." -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "Gcode başlangıcında yapı levhası sıcaklık komutlarını ekleyip eklememe. start_gcode zaten yapı levhası sıcaklığı içeriyorsa Cura ön ucu otomatik olarak bu ayarı devre dışı bırakır." +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Köprü Duvarı Hızı" -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "Gcode başlangıcında nozül sıcaklık komutlarını ekleyip eklememe. start_gcode zaten nozül sıcaklığı içeriyorsa Cura ön ucu otomatik olarak bu ayarı devre dışı bırakır." +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "Köprü duvarlarının yazdırıldığı hız." -msgctxt "clean_between_layers description" -msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." -msgstr "Katmanlar arasına nozül sürme G-Code'u eklenip eklenmeyeceği (katman başına maksimum 1). Bu ayarın etkinleştirilmesi katman değişiminde geri çekme davranışını etkileyebilir. Sürme komutunun çalıştığı katmanlarda geri çekmeyi kontrol etmek için lütfen Sürme Geri Çekme ayarlarını kullanın." +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Köprü Duvarı Akışı" -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "Yapı levhası sıcaklığı başlangıca ulaşana kadar bekleme komutu ekleyip eklememe." +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "Köprü duvarları yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır." -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "Yazdırma öncesinde bir damla ile filamanın astarlanıp astarlanmayacağı. Bu ayar açık olarak ayarlandığında, yazdırma öncesinde ekstrüder nozülünde malzeme hazır olacaktır. Kenar veya Etek Yazdırma da astarlama etkisi yapabilir; bu durumda bu ayarın kapatılmasıyla biraz zaman kazanılabilir." +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Köprü Yüzey Alanı Hızı" -msgctxt "print_sequence description" -msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -msgstr "Sıradakine geçmeden önce, tüm modellerin tek seferde bir katmanla mı yazdırılacağı yoksa bir modelin bitmesinin mi bekleneceği. Teker teker modu a) yalnızca bir ekstrüder etkinleştirildiğinde b) tüm modeller baskı kafası aralarında hareket edecek veya nozül ile X/Y eksenleri arasındaki mesafeden az olacak şekilde ayrıldığında kullanılabilir." +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "Köprü yüzey alanı bölgelerinin yazdırıldığı hız." -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "Ayrı json dosyalarında belirtilen bu makinenin farklı varyantlarının gösterilip gösterilmemesi." +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Köprü Yüzey Alanı Akışı" -msgctxt "machine_firmware_retract description" -msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." -msgstr "Malzemeyi geri çekmek için G1 komutlarında E özelliği yerine aygıt yazılımı çekme komutlarının (G10/G11) kullanılıp kullanılmayacağı." +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "Köprü yüzey alanı bölgeleri yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır." -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "Yapı levhası sıcaklığı başlangıca ulaşana kadar bekleyip beklememe." +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Köprü Yüzey Alanı Yoğunluğu" -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Tek bir dolgu hattının genişliği." +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Köprü yüzey alanı katmanının yoğunluğu. 100’den az değerler, yüzey alanı çizgileri arasındaki boşlukları artıracaktır." -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "Destek çatısı veya zemininin tek çizgi genişliği." +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Köprü Fan Hızı" -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "Baskının üst tarafında bulunan alanlardaki tek bir hattın genişliği." +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "Köprü duvarları ve yüzey alanı yazdırılırken kullanılacak yüzde fan hızı." -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "Tek bir hattın genişliği Genellikle her hattın genişliği nozül genişliğine eşit olmalıdır. Ancak, bu değeri biraz azaltmak daha iyi baskılar üretilmesini sağlayabilir." +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Köprüde Birden Fazla Katman Var" -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "Tek bir ilk direk hattının genişliği." +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "Eğer etkinleştirilirse, havanın üzerindeki ikinci ve üçüncü katmanlar aşağıdaki ayarlar kullanılarak yazdırılır. Aksi halde bu katmanlar normal ayarlar kullanılarak yazdırılır." -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "Tek bir etek veya kenar hattının genişliği." +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Köprü İkinci Yüzey Alanı Hızı" -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "Tek bir destek zemininin çizgi genişliği." +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "İkinci köprü yüzey alanı katmanı yazdırılırken kullanılacak yazdırma hızı." -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "Tek bir destek çatısının çizgi genişliği." +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Köprü İkinci Yüzey Alanı Akışı" -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Tek bir destek yapısı hattının genişliği." +msgctxt "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "İkinci köprü yüzey alanı katmanı yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır." -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Tek bir üst/alt hattın genişliği." +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Köprü İkinci Yüzey Alanı Yoğunluğu" -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "En dış duvar haricindeki tüm duvar hatları için tek bir duvar hattı genişliği." +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "İkinci köprü yüzey alanı katmanının yoğunluğu. 100’den az değerler, yüzey alanı çizgileri arasındaki boşlukları artıracaktır." -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Tek bir duvar hattının genişliği." +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Köprü İkinci Yüzey Alanı Fan Hızı" -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "Radyenin taban katmanındaki hatların genişliği. Bunlar, yapı levhasına yapışma işlemine yardımcı olan kalın hatlar olmalıdır." +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "İkinci köprü yüzey alanı katmanı yazdırılırken kullanılacak yüzde fan hızı." -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "Radyenin orta katmanındaki hatların genişliği. İkinci katmanın daha fazla sıkılması hatların yapı levhasına yapışmasına neden olur." +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Köprü Üçüncü Yüzey Alanı Hızı" -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "Radyenin üst yüzeyindeki hatların genişliği. Radyenin üstünün pürüzsüz olması için bunlar ince hat olabilir." +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "Üçüncü köprü yüzey alanı katmanı yazdırılırken kullanılacak yazdırma hızı." -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "En dıştaki duvar hattının genişliği. Bu değeri azaltarak daha yüksek seviyede ayrıntılar yazdırılabilir." +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Köprü Üçüncü Yüzey Alanı Akışı" -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "Modelin ince yüz hatlarının yerini alacak duvarın genişliğidir (Minimum Yüz Hattı Boyutuna göre). Minimum Duvar Hattı Genişliği, yüz hattının kalınlığından daha inceyse duvar da yüz hattının kendisi kadar kalınlaştırılacaktır." +msgctxt "bridge_skin_material_flow_3 description" +msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Üçüncü köprü yüzey alanı katmanı yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır." -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "Sürme Fırçası X Konumu" +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Köprü Üçüncü Yüzey Alanı Yoğunluğu" -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Sürme Sıçrama Hızı" +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Üçüncü köprü yüzey alanı katmanının yoğunluğu. 100’den az değerler, yüzey alanı çizgileri arasındaki boşlukları artıracaktır." -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "İlk Direkteki Sürme İnaktif Nozülü" +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Köprü Üçüncü Yüzey Alanı Fan Hızı" -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Sürme Hareket Mesafesi" +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "Üçüncü köprü yüzey alanı katmanı yazdırılırken kullanılacak yüzde fan hızı." msgctxt "clean_between_layers label" msgid "Wipe Nozzle Between Layers" msgstr "Katmanlar Arasındaki Sürme Nozülü" -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Sürmeyi Durdurma" +msgctxt "clean_between_layers description" +msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." +msgstr "Katmanlar arasına nozül sürme G-Code'u eklenip eklenmeyeceği (katman başına maksimum 1). Bu ayarın etkinleştirilmesi katman değişiminde geri çekme davranışını etkileyebilir. Sürme komutunun çalıştığı katmanlarda geri çekmeyi kontrol etmek için lütfen Sürme Geri Çekme ayarlarını kullanın." -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Sürme Tekrar Sayısı" +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Sürme Hareketleri Arasındaki Malzeme Hacmi" -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Sürme Geri Çekme Mesafesi" +msgctxt "max_extrusion_before_wipe description" +msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." +msgstr "Başka bir nozül sürme işlemi başlatılmadan önce ekstrüde edilebilecek maksimum malzeme miktarı. Bu değer, bir katmanda gereken malzeme hacminden daha düşükse ayarın bu katmanda bir etkisi olmayacaktır, yani katman başına bir sürme sınırı vardır." msgctxt "wipe_retraction_enable label" msgid "Wipe Retraction Enable" msgstr "Sürme Geri Çekmenin Etkinleştirilmesi" +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Nozül yazdırılamayan alana doğru hareket ettiğinde filamanı geri çeker." + +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Sürme Geri Çekme Mesafesi" + +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "Filamanın sürme dizisi sırasında sızıntı yapmaması için filanın geri çekilme miktarı." + msgctxt "wipe_retraction_extra_prime_amount label" msgid "Wipe Retraction Extra Prime Amount" msgstr "Sürme Geri Çekme Sırasındaki İlave Astar Miktarı" -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Sürme Geri Çekme Sırasındaki Çalışmaya Hazırlama Hızı" +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "Sürme hareketi sırasında bazı malzemeler eksilebilir; bu malzemeler burada telafi edebilir." + +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Sürme Geri Çekme Hızı" + +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "Filamanın geri çekildiği ve sürme geri çekme hareketi sırasında astarlandığı hız." msgctxt "wipe_retraction_retract_speed label" msgid "Wipe Retraction Retract Speed" msgstr "Sürme Geri Çekme Sırasındaki Çekim Hızı" -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Sürme Geri Çekme Hızı" +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "Filamanın sürme geri çekme hareketi sırasında geri çekildiği hız." + +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Sürme Geri Çekme Sırasındaki Çalışmaya Hazırlama Hızı" + +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "Filamanın sürme geri çekme hareketi sırasında astarlandığı hız." + +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Sürmeyi Durdurma" + +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Geri çekmenin geri alınmasından sonraki duraklama." msgctxt "wipe_hop_enable label" msgid "Wipe Z Hop" msgstr "Sürme Z Sıçraması" +msgctxt "wipe_hop_enable description" +msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "Sürme sırasında yapı plakası nozül ve baskı arasında açıklık oluşturmak üzere alçaltılır. Bu işlem, hareket sırasında nozülün baskıya çarpmasını önler ve baskının devrilerek yapı plakasından düşme olasılığını azaltır." + msgctxt "wipe_hop_amount label" msgid "Wipe Z Hop Height" msgstr "Sürme Z Sıçraması Yüksekliği" -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "Dolgu İçinde" +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "Z Sıçraması yapılırken oluşan yükseklik farkı." -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "Aktif olmayan araca geçici komut gönderildikten sonra aktif aracı yazın. Smoothie veya modal araç komutlarına sahip diğer donanım yazılımları ile Çift Ekstrüderli baskı için gereklidir." +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Sürme Sıçrama Hızı" -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "X Kapaması Pozitif Yönde" +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "Sıçrama sırasında z eksenini hareket ettirmek için gerekli hız." + +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "Sürme Fırçası X Konumu" msgctxt "wipe_brush_pos_x description" msgid "X location where wipe script will start." msgstr "Sürme komutunun başlatılacağı X konumu." -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y, Z’den fazla" +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Sürme Tekrar Sayısı" -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Y Kapaması Pozitif Yönde" +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "Nozülün fırçadan geçirilme sayısı." -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Z Kapaması Pozitif Yönde" +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Sürme Hareket Mesafesi" -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Ekstruder Değişimi Sonrasındaki Z Sıçraması" +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "Başlığı fırçada ileri ve geri hareket ettirme mesafesi." -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Ekstruder Yüksekliği Değişimi Sonrasındaki Z Sıçraması" +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Maksimum Küçük Delik Boyutu" -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Z Sıçraması Yüksekliği" +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "Bu değerden daha küçük çaptaki delik ve parça ana hatları Küçük Özellik Hızı kullanılarak basılacaktır." -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Sadece Yazdırılan Parçalar Üzerindeki Z Sıçraması" +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Maksimum Küçük Özellik Uzunluğu" -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Z Atlama Hızı" +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "Bu uzunluktan kısa olan özellik ana hatları Kısa Özellik Hızı kullanılarak basılacaktır." -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Geri Çekildiğinde Z Sıçraması" +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Küçük Özellik Hızı" -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Z Dikiş Hizalama" +msgctxt "small_feature_speed_factor description" +msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "Küçük özellikler normal baskı hızının bu yüzdesinde basılacaktır. Daha yavaş baskı, yapışma ve doğruluğu artırmaya yardımcı olabilir." -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Z Dikişi Konumu" +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Küçük Özellik İlk Katman Hızı" -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Z Dikişi Göreliliği" +msgctxt "small_feature_speed_factor_0 description" +msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "İlk katman üzerindeki küçük özellikler normal baskı hızının bu yüzdesinde basılacaktır. Daha yavaş baskı, yapışma ve doğruluğu artırmaya yardımcı olabilir." -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "Z Dikişi X" +msgctxt "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "Duvar Yönlerini Değiştir" -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Z Dikişi Y" +msgctxt "material_alternate_walls description" +msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." +msgstr "Duvar yönlerini her katmanda ve iç dolguda değiştirin. Metal baskıdaki gibi stres oluşturabilen malzemeler için kullanışlıdır." -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z, X/Y’den fazla" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Dış Duvarları Grupla" -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zik Zak" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Aynı katman içindeki farklı adalardaki dış duvarlar sırayla basılır. Etkinleştirildiğinde, akış değişiklik miktarı duvarlar tür türüne basıldığı için sınırlıdır, devre dışı bırakıldığında ise aynı adalardaki duvarlar gruplandığı için adalar arasındaki seyahat sayısı azalır." -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zikzak" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "Yazdırma Süreci Raporlaması" -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zikzak" +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "Belirlenen eşiklerin dışına çıkan etkinliklerin raporlanması" -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zikzak" +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "Yazdırma İşlemi Raporlamasını Etkinleştir" -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zik Zak" +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "Olası hata tespitine yönelik eşik değerlerini ayarlamak için yazdırma işlemi raporlamasını etkinleştirin." -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zik Zak" +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "Akış Uyarısı" -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zikzak" +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "Tespit için akış uyarısı sınırı." -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zik Zak" +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "Akış Sınırı" -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Zikzak" +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "Tespit için akış anormalliği sınırı." -msgctxt "travel description" -msgid "travel" -msgstr "hareket" +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "Yazdırma sıcaklığı Uyarısı" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "Tespit için Yazdırma sıcaklığı uyarısı sınır." -#~ msgctxt "brim_inside_margin description" -#~ msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -#~ msgstr "Bir başka parçanın içine tamamen kapatılmış bir parça, diğer parçanın içine temas eden bir dış kenar oluşturabilir. Bu, iç deliklerden bu mesafe içindeki tüm kenarları kaldırır." +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "Yazdırma sıcaklığı Sınırı" -#~ msgctxt "user_defined_print_order_enabled description" -#~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." -#~ msgstr "Nesne listesini sıralayarak baskı sırasını manuel olarak ayarlamayı sağlar. Listeden ilk nesne ilk olarak basılacak." +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "Tespit için Yazdırma Sıcaklığı anormalliği sınırı." -#~ msgctxt "brim_inside_margin label" -#~ msgid "Brim Inside Avoid Margin" -#~ msgstr "Kenar İçi Kaçınma Payı" +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "Yapı Hacmi sıcaklığı Uyarısı" -#~ msgctxt "brim_outside_only label" -#~ msgid "Brim Only on Outside" -#~ msgstr "Sadece Dış Kısımdaki Kenar" +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "Tespit için Yapı Hacmi Sıcaklığı Sınırı uyarısı." -#~ msgctxt "gradual_flow_discretisation_step_size description" -#~ msgid "Duration of each step in the gradual flow change" -#~ msgstr "Kademeli akış değişimindeki her adımın süresi" +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "Yapı Hacmi Sıcaklık Sınırı" -#~ msgctxt "gradual_flow_enabled description" -#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -#~ msgstr "Kademeli akış değişikliklerini etkinleştir. Bu ayar etkinleştirildiğinde, akış, hedef akışa doğru kademeli olarak artırılır/azaltılır. Bu, ekstruder motoru çalıştırıldığında/durdurulduğunda akışın hemen değişmediği, bowden tüplü yazıcılar için kullanışlı bir özelliktir." +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "Tespit için Yapı Hacmi Sıcaklığı Anormallik Sınırı." -#~ msgctxt "reset_flow_duration description" -#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -#~ msgstr "Bu değerden daha uzun herhangi bir hareket için, malzeme akışı hedef akışına sıfırlanır" +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Komut Satırı Ayarları" -#~ msgctxt "gradual_flow_discretisation_step_size label" -#~ msgid "Gradual flow discretisation step size" -#~ msgstr "Kademeli akış ayrıştırma adım boyutu" +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "Sadece Cura ön ucundan CuraEngine istenmediğinde kullanılan ayarlar." -#~ msgctxt "gradual_flow_enabled label" -#~ msgid "Gradual flow enabled" -#~ msgstr "Kademeli akış etkin" +msgctxt "center_object label" +msgid "Center Object" +msgstr "Nesneyi ortalayın" -#~ msgctxt "max_flow_acceleration label" -#~ msgid "Gradual flow max acceleration" -#~ msgstr "Kademeli akış maksimum ivme" +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "Nesnenin kaydedildiği koordinat sistemini kullanmak yerine nesnenin yapı platformunun (0,0) ortasına yerleştirilmesi." -#~ msgctxt "layer_0_max_flow_acceleration label" -#~ msgid "Initial layer max flow acceleration" -#~ msgstr "İlk katman maksimum akış ivmesi" +msgctxt "mesh_position_x label" +msgid "Mesh Position X" +msgstr "Bileşim konumu X" -#~ msgctxt "layer_0_z_overlap description" -#~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -#~ msgstr "Hava boşluğundaki filaman kaybını telafi etmek için Z yönünde modelin ilk ve ikinci katmanını çakıştırın. İlk model katmanının üstündeki tüm modeller bu miktara indirilecektir." +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "Nesneye x yönünde uygulanan ofset." -#~ msgctxt "max_flow_acceleration description" -#~ msgid "Maximum acceleration for gradual flow changes" -#~ msgstr "Kademeli akış değişiklikleri için maksimum ivme" +msgctxt "mesh_position_y label" +msgid "Mesh Position Y" +msgstr "Bileşim konumu Y" -#~ msgctxt "layer_0_max_flow_acceleration description" -#~ msgid "Minimum speed for gradual flow changes for the first layer" -#~ msgstr "İlk katmandaki kademeli akış değişiklikleri için minimum hız" +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "Nesneye y yönünde uygulanan ofset." -#~ msgctxt "brim_outside_only description" -#~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -#~ msgstr "Sadece modelin dış kısmındaki kenarı yazdırır. Yatak yapışmasını büyük oranda azaltmasa da daha sonra kaldırmanız gereken kenar sayısını azaltır." +msgctxt "mesh_position_z label" +msgid "Mesh Position Z" +msgstr "Bileşim konumu Z" -#~ msgctxt "reset_flow_duration label" -#~ msgid "Reset flow duration" -#~ msgstr "Akış süresini sıfırla" +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "Nesneye z yönünde uygulanan ofset. Bununla birlikte “Nesne Havuzu” olarak adlandırılan malzemeyi de kullanabilirsiniz." -#~ msgctxt "support_interface_skip_height label" -#~ msgid "Support Interface Resolution" -#~ msgstr "Destek Arayüz Çözünürlüğü" +msgctxt "mesh_rotation_matrix label" +msgid "Mesh Rotation Matrix" +msgstr "Bileşim Rotasyon Matrisi" -#~ msgctxt "support_interface_skip_height description" -#~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -#~ msgstr "Desteğin üstünde ve altında model bulunduğunda, kontrol sırasında verilen yükseklikte adımlar uygulayın. Daha yüksek değerler, destek arayüzü olması gereken yerlerde yazdırılacak normal destek oluştururken daha düşük değerler daha yavaş dilimler." +msgctxt "mesh_rotation_matrix description" +msgid "Transformation matrix to be applied to the model when loading it from file." +msgstr "Modeli dosyadan indirirken modele uygulanacak olan dönüşüm matrisi." diff --git a/resources/i18n/tr_TR/gradual_flow_settings.def.json.po b/resources/i18n/tr_TR/gradual_flow_settings.def.json.po index 363b0994aa1..31b713cd290 100644 --- a/resources/i18n/tr_TR/gradual_flow_settings.def.json.po +++ b/resources/i18n/tr_TR/gradual_flow_settings.def.json.po @@ -1,54 +1,53 @@ -# msgid "" msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: 2024-03-11 11:28+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: en\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" - msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" msgstr "Gradual flow max acceleration" -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" - msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" msgstr "Maximum acceleration for gradual flow changes" +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" msgstr "Minimum speed for gradual flow changes for the first layer" +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + msgctxt "reset_flow_duration label" msgid "Reset flow duration" msgstr "Reset flow duration" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" diff --git a/resources/i18n/zh_CN/cura.po b/resources/i18n/zh_CN/cura.po index 300d25211ac..53af8653a1b 100644 --- a/resources/i18n/zh_CN/cura.po +++ b/resources/i18n/zh_CN/cura.po @@ -12,7 +12,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" msgstr "%(width).1f x %(depth).1f x %(height).1f mm" @@ -117,7 +116,7 @@ msgstr "保存项目(&S)..." msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" msgid "&Save Universal Cura Project..." -msgstr "" +msgstr "& 保存 Universal Cura Project……" msgctxt "@title:menu menubar:toplevel" msgid "&Settings" @@ -140,13 +139,9 @@ msgid "*You will need to restart the application for these changes to have effec msgstr "*需重新启动该应用程序,这些更改才能生效。" msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "" -"- 从 Marketplace 添加材料配置文件和插件\n" -"- 备份和同步材料配置文件和插件\n" +msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgstr "- 从 Marketplace 添加材料配置文件和插件" +"- 备份和同步材料配置文件和插件" "- 在 Ultimaker 社区分享观点并获取 48,000 多名用户的帮助" msgctxt "@heading" @@ -173,14 +168,6 @@ msgctxt "@item:inlistbox" msgid "3MF File" msgstr "3MF 文件" -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF 读取器" - -msgctxt "name" -msgid "3MF Writer" -msgstr "3MF 写入器" - msgctxt "@error:zip" msgid "3MF Writer plug-in is corrupt." msgstr "3MF 编写器插件已损坏。" @@ -201,56 +188,37 @@ msgctxt "@label %i will be replaced with a profile name" msgid "Only user changed settings will be saved in the custom profile.
                                      For materials that support it, the new custom profile will inherit properties from %1." msgstr "只有用户更改的设置才会保存在自定义配置文件中。
                                      对于支持材料,新的自定义配置文件将从 %1 继承属性。" -#, python-brace-format msgctxt "@label OpenGL renderer" msgid "
                                    • OpenGL Renderer: {renderer}
                                    • " msgstr "
                                    • OpenGL 渲染器: {renderer}
                                    • " -#, python-brace-format msgctxt "@label OpenGL vendor" msgid "
                                    • OpenGL Vendor: {vendor}
                                    • " msgstr "
                                    • OpenGL 供应商: {vendor}
                                    • " -#, python-brace-format msgctxt "@label OpenGL version" msgid "
                                    • OpenGL Version: {version}
                                    • " msgstr "
                                    • OpenGL 版本: {version}
                                    • " msgctxt "@label crash message" -msgid "" -"

                                      A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

                                      \n" -"

                                      Please use the \"Send report\" button to post a bug report automatically to our servers

                                      \n" -" " -msgstr "" -"

                                      Cura 发生了严重错误。请将这份错误报告发送给我们以便修复问题

                                      \n" -"

                                      请使用“发送报告”按钮将错误报告自动发布到我们的服务器

                                      \n" +msgid "

                                      A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

                                      \n

                                      Please use the \"Send report\" button to post a bug report automatically to our servers

                                      \n " +msgstr "

                                      Cura 发生了严重错误。请将这份错误报告发送给我们以便修复问题

                                      " +"

                                      请使用“发送报告”按钮将错误报告自动发布到我们的服务器

                                      " " " msgctxt "@label crash message" -msgid "" -"

                                      Oops, UltiMaker Cura has encountered something that doesn't seem right.

                                      \n" -"

                                      We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

                                      \n" -"

                                      Backups can be found in the configuration folder.

                                      \n" -"

                                      Please send us this Crash Report to fix the problem.

                                      \n" -" " -msgstr "" -"

                                      糟糕,Ultimaker Cura 似乎遇到了问题。

                                      \n" -"

                                      在启动时发生了不可修复的错误。这可能是因某些配置文件出错导致的。建议您备份并重置配置。

                                      \n" -"

                                      您可在配置文件夹中找到备份。

                                      \n" -"

                                      请向我们发送此错误报告,以便解决问题。

                                      \n" +msgid "

                                      Oops, UltiMaker Cura has encountered something that doesn't seem right.

                                      \n

                                      We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

                                      \n

                                      Backups can be found in the configuration folder.

                                      \n

                                      Please send us this Crash Report to fix the problem.

                                      \n " +msgstr "

                                      糟糕,Ultimaker Cura 似乎遇到了问题。

                                      " +"

                                      在启动时发生了不可修复的错误。这可能是因某些配置文件出错导致的。建议您备份并重置配置。

                                      " +"

                                      您可在配置文件夹中找到备份。

                                      " +"

                                      请向我们发送此错误报告,以便解决问题。

                                      " " " -#, python-brace-format msgctxt "@info:status" -msgid "" -"

                                      One or more 3D models may not print optimally due to the model size and material configuration:

                                      \n" -"

                                      {model_names}

                                      \n" -"

                                      Find out how to ensure the best possible print quality and reliability.

                                      \n" -"

                                      View print quality guide

                                      " -msgstr "" -"

                                      由于模型的大小和材质的配置,一个或多个3D模型可能无法最优地打印:

                                      \n" -"

                                      {model_names}

                                      \n" -"

                                      找出如何确保最好的打印质量和可靠性.

                                      \n" +msgid "

                                      One or more 3D models may not print optimally due to the model size and material configuration:

                                      \n

                                      {model_names}

                                      \n

                                      Find out how to ensure the best possible print quality and reliability.

                                      \n

                                      View print quality guide

                                      " +msgstr "

                                      由于模型的大小和材质的配置,一个或多个3D模型可能无法最优地打印:

                                      " +"

                                      {model_names}

                                      " +"

                                      找出如何确保最好的打印质量和可靠性.

                                      " "

                                      查看打印质量指南

                                      " msgctxt "@label" @@ -264,7 +232,7 @@ msgstr[0] "某些打印机无云连接可用" msgctxt "@text" msgid "A highly dense and strong part but at a slower print time. Great for functional parts." -msgstr "" +msgstr "高密度和高强度的部件,但打印时间较慢。非常适合用于功能部件。" msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." @@ -274,10 +242,6 @@ msgctxt "@item:inlistbox" msgid "AMF File" msgstr "AMF 文件" -msgctxt "name" -msgid "AMF Reader" -msgstr "AMF 读取器" - msgctxt "@label" msgid "Abort" msgstr "中止" @@ -314,10 +278,6 @@ msgctxt "@button" msgid "Accept" msgstr "接受" -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "接受 G-Code 并将其发送到一台打印机。 插件也可以更新固件。" - msgctxt "@label" msgid "Account synced" msgstr "帐户已同步" @@ -410,7 +370,6 @@ msgctxt "@button" msgid "Add printer manually" msgstr "手动添加打印机" -#, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "正在从您的帐户添加打印机 {name} ({model})" @@ -451,7 +410,6 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "所有文件 (*)" -#, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "所有支持的文件类型 ({0})" @@ -460,10 +418,6 @@ msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "允许发送匿名数据" -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "允许加载和显示 G-code 文件。" - msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "总是询问" @@ -502,7 +456,7 @@ msgstr "匿名" msgctxt "@option:radio" msgid "Anonymous crash reports" -msgstr "" +msgstr "匿名崩溃报告" msgctxt "@label Description for application component" msgid "Application framework" @@ -510,7 +464,7 @@ msgstr "应用框架" msgctxt "@title:column" msgid "Applies on" -msgstr "" +msgstr "适用于" msgctxt "@label" msgid "Apply Extruder offsets to GCode" @@ -544,7 +498,6 @@ msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to move %1 to the top of the queue?" msgstr "您确定要将 %1 移至队列顶部吗?" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "是否确实要暂时删除 {printer_name}?" @@ -557,7 +510,6 @@ msgctxt "@label (%1 is object name)" msgid "Are you sure you wish to remove %1? This cannot be undone!" msgstr "您确认要删除 %1?该操作无法恢复!" -#, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "是否确实要删除 {0}?此操作无法撤消!" @@ -622,10 +574,6 @@ msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "备份并重置配置" -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "备份和还原配置。" - msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "备份和同步材料设置和插件" @@ -700,7 +648,7 @@ msgstr "已计算" msgctxt "@window:text" msgid "Camera navigation:" -msgstr "" +msgstr "导航相机:" msgctxt "@window:text" msgid "Camera rendering:" @@ -722,12 +670,10 @@ msgctxt "@label" msgid "Can't connect to your UltiMaker printer?" msgstr "无法连接到 UltiMaker 打印机?" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "无法在添加打印机前从 {0} 导入配置文件。" -#, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "如果加载 G-code,则无法打开其他任何文件。{0} 已跳过导入" @@ -800,21 +746,8 @@ msgctxt "@label" msgid "Checking..." msgstr "正在检查..." -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "检查以进行固件更新。" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "检查模型和打印配置,以了解潜在的打印问题并给出建议。" - msgctxt "@label" -msgid "" -"Chooses between the techniques available to generate support. \n" -"\n" -"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" -"\n" -"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "在可用于产生支撑的方法之间进行选择。“普通”支撑在悬垂部分正下方形成一个支撑结构,并直接垂下这些区域。“树形”支撑形成一些分支,它们朝向在这些分支的尖端上支撑模型的悬垂区域,并使这些分支可缠绕在模型周围以尽可能多地从构建板上支撑它。" msgctxt "@action:inmenu menubar:edit" @@ -893,14 +826,6 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "压缩 G-code 文件" -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "压缩 G-code 读取器" - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "压缩 G-code 写入器" - msgctxt "@title:window" msgid "Configuration Changes" msgstr "配置更改" @@ -973,10 +898,6 @@ msgctxt "@info:status" msgid "Connected via cloud" msgstr "通过云连接" -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "连接到 Digital Library,以允许 Cura 从 Digital Library 打开文件并将文件保存到其中。" - msgctxt "@tooltip:button" msgid "Consult the UltiMaker Community." msgstr "咨询 UltiMaker 社区。" @@ -1017,7 +938,6 @@ msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "不能从用户数据目录创建存档: {}" -#, python-brace-format msgctxt "@info:status Don't translate the tag {device}!" msgid "Could not find a file name when trying to write to {device}." msgstr "尝试写入到 {device} 时找不到文件名。" @@ -1046,12 +966,10 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "未能将材料存档保存到 {}:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "无法保存到 {0}{1}" -#, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "无法保存到可移动磁盘 {0}:{1}" @@ -1060,31 +978,19 @@ msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "无法将数据上传到打印机。" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"No permission to execute process." -msgstr "" -"无法启用 EnginePlugin:{self._plugin_id}\n" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." +msgstr "无法启用 EnginePlugin:{self._plugin_id}" "没有执行进程的权限。" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Operating system is blocking it (antivirus?)" -msgstr "" -"无法启用 EnginePlugin:{self._plugin_id}\n" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" +msgstr "无法启用 EnginePlugin:{self._plugin_id}" "操作系统正在阻止它(杀毒软件?)" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Resource is temporarily unavailable" -msgstr "" -"无法启用 EnginePlugin:{self._plugin_id}\n" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" +msgstr "无法启用 EnginePlugin:{self._plugin_id}" "资源暂时不可用" msgctxt "@title:window" @@ -1127,10 +1033,6 @@ msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "在 Digital Library 中创建打印项目。" -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "创建橡皮擦网格,以便阻止在某些位置打印支撑" - msgctxt "@info:backup_status" msgid "Creating your backup..." msgstr "正在创建您的备份..." @@ -1143,22 +1045,10 @@ msgctxt "@title:window" msgid "Cura Backups" msgstr "Cura 备份" -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura 备份" - msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Cura 配置文件" -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura 配置文件读取器" - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura 配置文件写入器" - msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Cura 项目 3MF 文件" @@ -1171,17 +1061,13 @@ msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura 无法启动" -#, python-brace-format msgctxt "@info:status" msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." msgstr "Cura 已检测到材料配置文件尚未安装到组 {0} 中的主机打印机上。" msgctxt "@info:credit" -msgid "" -"Cura is developed by UltiMaker in cooperation with the community.\n" -"Cura proudly uses the following open source projects:" -msgstr "" -"Cura 由 Ultimaker B.V. 与社区合作开发。\n" +msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" +msgstr "Cura 由 Ultimaker B.V. 与社区合作开发。" "Cura 使用以下开源项目:" msgctxt "@label" @@ -1192,18 +1078,6 @@ msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura 版本" -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine 后端" - -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "通过逐渐平滑流量来限制高流量跳变的 CuraEngine 插件" - -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - msgctxt "@label" msgid "Currency:" msgstr "币种:" @@ -1434,7 +1308,7 @@ msgstr "草稿" msgctxt "@action:inmenu menubar:edit" msgid "Drop All Models to buildplate" -msgstr "" +msgstr "将所有模型拖放到构建板" msgctxt "@action:button" msgid "Duplicate" @@ -1460,12 +1334,10 @@ msgctxt "@action:button" msgid "Eject" msgstr "弹出" -#, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "弹出可移动设备 {0}" -#, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "已弹出 {0}。现在,您可以安全地拔出磁盘。" @@ -1490,10 +1362,6 @@ msgctxt "@label" msgid "Enabled" msgstr "已启用" -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "支持从 2D 图像文件生成可打印几何模型的能力。" - msgctxt "@title:label" msgid "End G-code" msgstr "结束 G-code" @@ -1564,7 +1432,7 @@ msgstr "导出选择..." msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Export Universal Cura Project" -msgstr "" +msgstr "导出 Universal Cura Project" msgctxt "@button" msgid "Export material archive" @@ -1574,7 +1442,6 @@ msgctxt "@info:title" msgid "Export succeeded" msgstr "导出成功" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "配置文件已导出至: {0} " @@ -1583,10 +1450,6 @@ msgctxt "@tooltip:button" msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "用插件和材料配置文件扩展 UltiMaker Cura。" -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "扩展程序(允许用户创建脚本进行后期处理)" - msgctxt "@label" msgid "Extruder" msgstr "挤出机" @@ -1601,7 +1464,7 @@ msgstr "挤出机的结束 G-code" msgctxt "@label" msgid "Extruder End G-code duration" -msgstr "" +msgstr "推料器结束 G 代码持续时间" msgctxt "@title:label" msgid "Extruder Start G-code" @@ -1609,12 +1472,11 @@ msgstr "挤出机的开始 G-code" msgctxt "@label" msgid "Extruder Start G-code duration" -msgstr "" +msgstr "推料器开始 G 代码持续时间" -#, python-brace-format msgctxt "@label" msgid "Extruder {0}" -msgstr "" +msgstr "推料器{0}" msgctxt "@info:title" msgid "Extruder(s) Disabled" @@ -1636,7 +1498,6 @@ msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "无法创建材料存档以与打印机同步。" -#, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "无法弹出 {0},另一个程序可能正在使用磁盘。" @@ -1645,27 +1506,22 @@ msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "无法导出材料至 %1%2" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "无法将配置文件导出至 {0} {1}" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "无法将配置文件导出至 {0} : 写入器插件报告故障。" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "无法从 {0} 导入配置文件:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "无法从 {0} 导入配置文件:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "无法从 {0} 导入配置文件:{1}" @@ -1682,10 +1538,9 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "未能保存材料存档" -#, python-brace-format msgctxt "@info:status" msgid "Failed writing to specific cloud printer: {0} not in remote clusters." -msgstr "" +msgstr "无法写入特定云打印机:{0} 不在远程集群中。" msgctxt "@label:category menu label" msgid "Favorites" @@ -1711,7 +1566,6 @@ msgctxt "@info:title" msgid "File Saved" msgstr "文件已保存" -#, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "文件 {0} 不包含任何有效的配置文件。" @@ -1744,14 +1598,6 @@ msgctxt "@title:window" msgid "Firmware Update" msgstr "固件升级" -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "固件更新检查程序" - -msgctxt "name" -msgid "Firmware Updater" -msgstr "固件更新程序" - msgctxt "@label" msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." msgstr "与打印机间的连接不支持固件更新,因此无法更新固件。" @@ -1829,7 +1675,7 @@ msgid "Force layer view compatibility mode (restart required)" msgstr "强制层视图兼容模式(需要重新启动)" msgid "FreeCAD trackpad" -msgstr "" +msgstr "FreeCAD 触控板" msgctxt "@action:inmenu menubar:view" msgid "Front View" @@ -1851,18 +1697,6 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "GCode 文件" -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "G-code 配置文件读取器" - -msgctxt "name" -msgid "G-code Reader" -msgstr "G-code 读取器" - -msgctxt "name" -msgid "G-code Writer" -msgstr "G-code 写入器" - msgctxt "@label" msgid "G-code flavor" msgstr "G-code 风格" @@ -1921,7 +1755,7 @@ msgstr "开始" msgctxt "@label" msgid "Global" -msgstr "" +msgstr "全球" msgctxt "@title:tab" msgid "Global Settings" @@ -1935,7 +1769,6 @@ msgctxt "@label" msgid "Grid Placement" msgstr "网格放置" -#, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "组 #{group_nr}" @@ -1974,7 +1807,7 @@ msgstr "隐藏所有连接的打印机" msgctxt "@action:button" msgid "Hide settings" -msgstr "" +msgstr "隐藏设置" msgctxt "@action:menu" msgid "Hide this setting" @@ -2012,10 +1845,6 @@ msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "如果您的打印机未列出,请阅读网络打印故障排除指南" -msgctxt "name" -msgid "Image Reader" -msgstr "图像读取器" - msgctxt "@action:button" msgid "Import" msgstr "导入" @@ -2054,7 +1883,7 @@ msgstr "要使用该包,您需要重新启动 Cura" msgctxt "@option:radio" msgid "Include UltiMaker account name" -msgstr "" +msgstr "包含 UltiMaker 账户名" msgctxt "@label" msgid "Infill" @@ -2300,10 +2129,6 @@ msgctxt "@info:tooltip" msgid "Left View" msgstr "左视图" -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "旧版 Cura 配置文件读取器" - msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "向开发人员报错。" @@ -2384,10 +2209,6 @@ msgctxt "@title:groupbox" msgid "Logs" msgstr "日志" -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "记录某些事件,以使其可供崩溃报告器使用" - msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "与打印机的连接中断" @@ -2396,10 +2217,6 @@ msgctxt "@action" msgid "Machine Settings" msgstr "打印机设置" -msgctxt "name" -msgid "Machine Settings Action" -msgstr "打印机设置操作" - msgctxt "@backuplist:label" msgid "Machines" msgstr "机器" @@ -2416,10 +2233,6 @@ msgctxt "@item:inlistbox" msgid "Makerbot Printfile" msgstr "Makerbot 打印文件" -msgctxt "name" -msgid "Makerbot Printfile Writer" -msgstr "Makerbot 打印文件编写器" - msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "MakerbotWriter 无法保存至指定路径。" @@ -2476,14 +2289,6 @@ msgctxt "@text" msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." msgstr "在此处管理您的 UltiMaker Cura 插件和材料配置文件。请确保将插件保持为最新,并定期备份设置。" -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "管理应用程序扩展,允许从 UltiMaker 网站浏览扩展。" - -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "管理 UltiMaker 联网打印机的网络连接。" - msgctxt "@label" msgid "Manufacturer" msgstr "制造商" @@ -2496,10 +2301,6 @@ msgctxt "@label" msgid "Marketplace" msgstr "市场" -msgctxt "name" -msgid "Marketplace" -msgstr "市场" - msgctxt "@action:label" msgid "Material" msgstr "材料" @@ -2516,10 +2317,6 @@ msgctxt "@label:listbox" msgid "Material Color" msgstr "材料颜色" -msgctxt "name" -msgid "Material Profiles" -msgstr "材料配置文件" - msgctxt "@label" msgid "Material Type" msgstr "材料类型" @@ -2564,10 +2361,6 @@ msgctxt "@action:label" msgid "Mode" msgstr "模式" -msgctxt "name" -msgid "Model Checker" -msgstr "模型检查器" - msgctxt "@info:title" msgid "Model Errors" msgstr "模型错误" @@ -2584,10 +2377,6 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "监控" -msgctxt "name" -msgid "Monitor Stage" -msgstr "监视阶段" - msgctxt "@action:button" msgid "Monitor print" msgstr "监控打印" @@ -2661,7 +2450,6 @@ msgctxt "@info:title" msgid "Network error" msgstr "网络错误" -#, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" msgstr "新 %s 稳定固件可用" @@ -2674,7 +2462,6 @@ msgctxt "@label" msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." msgstr "新的 UltiMaker 打印机可连接到 Digital Factory,用户可对其进行远程监控。" -#, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." msgstr "您的 {machine_name} 可能有新功能或错误修复可用!如果打印机上的固件还不是最新版本,建议将其更新为 {latest_version} 版。" @@ -2720,7 +2507,6 @@ msgctxt "@label" msgid "No cost estimation available" msgstr "无可用成本估计" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "没有可导入文件 {0} 的自定义配置文件" @@ -2759,7 +2545,7 @@ msgstr "当前筛选没有任何结果" msgctxt "@label" msgid "No specific value has been set" -msgstr "" +msgstr "未设置具体值" msgctxt "@label" msgid "No time estimation available" @@ -2857,14 +2643,13 @@ msgctxt "@label" msgid "Only Show Top Layers" msgstr "只显示顶层" -#, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "一次只能加载一个 G-code 文件。{0} 已跳过导入" msgctxt "@message" msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." -msgstr "" +msgstr "哎呀!在您的切片过程中我们遇到了意外错误。请放心,如果您没有在首选项中禁用数据共享,我们已自动收集崩溃日志进行分析。为给我们提供进一步帮助,请考虑在我们的问题跟踪器上分享您的项目详细信息。" msgctxt "@action:button" msgid "Open" @@ -2896,11 +2681,11 @@ msgstr "打开项目文件" msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Open Universal Cura Project (UCP)" -msgstr "" +msgstr "打开 Universal Cura Project(UCP)" msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Open Universal Cura Project (UCP) file" -msgstr "" +msgstr "打开 Universal Cura Project(UCP)文件" msgctxt "@action:label" msgid "Open With" @@ -2908,7 +2693,7 @@ msgstr "打开方式" msgctxt "@action:button" msgid "Open as UCP" -msgstr "" +msgstr "以 UCP 打开" msgctxt "@action:button" msgid "Open as project" @@ -3030,10 +2815,6 @@ msgctxt "@label" msgid "Per Model Settings" msgstr "单一模型设置" -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "单一模型设置工具" - msgid "Perspective" msgstr "透视" @@ -3070,15 +2851,10 @@ msgid "Please give the required permissions when authorizing this application." msgstr "在授权此应用程序时,须提供所需权限。" msgctxt "@info" -msgid "" -"Please make sure your printer has a connection:\n" -"- Check if the printer is turned on.\n" -"- Check if the printer is connected to the network.\n" -"- Check if you are signed in to discover cloud-connected printers." -msgstr "" -"请确保您的打印机已连接:\n" -"- 检查打印机是否已启动。\n" -"- 检查打印机是否连接至网络。\n" +msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." +msgstr "请确保您的打印机已连接:" +"- 检查打印机是否已启动。" +"- 检查打印机是否连接至网络。" "- 检查您是否已登录查找云连接的打印机。" msgctxt "@text" @@ -3106,15 +2882,10 @@ msgid "Please remove the print" msgstr "请取出打印件" msgctxt "@info:status" -msgid "" -"Please review settings and check if your models:\n" -"- Fit within the build volume\n" -"- Are assigned to an enabled extruder\n" -"- Are not all set as modifier meshes" -msgstr "" -"请检查设置并检查您的模型是否:\n" -"- 适合构建体积\n" -"- 分配给了已启用的挤出器\n" +msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" +msgstr "请检查设置并检查您的模型是否:" +"- 适合构建体积" +"- 分配给了已启用的挤出器" "- 尚未全部设置为修改器网格" msgctxt "@label" @@ -3127,7 +2898,7 @@ msgstr "请登录以获取经验证适用于 UltiMaker Cura Enterprise 的插件 msgctxt "@info:tooltip" msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." -msgstr "" +msgstr "请登录您的 UltiMaker 账户以允许发送非匿名数据。" msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." @@ -3169,10 +2940,6 @@ msgctxt "@item:inmenu" msgid "Post Processing" msgstr "后期处理" -msgctxt "name" -msgid "Post Processing" -msgstr "后期处理" - msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "后期处理插件" @@ -3189,10 +2956,6 @@ msgctxt "@item:inmenu" msgid "Prepare" msgstr "准备" -msgctxt "name" -msgid "Prepare Stage" -msgstr "准备阶段" - msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "初始化中..." @@ -3213,10 +2976,6 @@ msgctxt "@item:inmenu" msgid "Preview" msgstr "预览" -msgctxt "name" -msgid "Preview Stage" -msgstr "预览阶段" - msgctxt "@tooltip" msgid "Prime Tower" msgstr "装填塔" @@ -3415,7 +3174,6 @@ msgctxt "@title:column" msgid "Profile settings" msgstr "配置文件设置" -#, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "配置 {0} 文件类型未知或已损坏。" @@ -3440,22 +3198,18 @@ msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "编程语言" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "项目文件 {0} 包含未知机器类型 {1}。无法导入机器。将改为导入模型。" -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "项目文件 {0} 损坏: {1}。" -#, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." msgstr "项目文件 {0} 是用此 UltiMaker Cura 版本未识别的配置文件制作的。" -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "突然无法访问项目文件 {0}{1}。" @@ -3464,147 +3218,42 @@ msgctxt "@label" msgid "Properties" msgstr "属性" -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "为固件更新提供操作选项。" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "在 Cura 中提供监视阶段。" +msgctxt "@label" +msgid "PyQt version" +msgstr "PyQt 版本" -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "提供一个基本的实体网格视图。" +msgctxt "@Label Description for application dependency" +msgid "Python Error tracking library" +msgstr "Python 错误跟踪库" -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "在 Cura 中提供准备阶段。" +msgctxt "@label Description for application dependency" +msgid "Python bindings for Clipper" +msgstr "Clipper 的 Python 绑定" -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "在 Cura 中提供预览阶段。" +msgctxt "@label Description for application component" +msgid "Python bindings for libnest2d" +msgstr "libnest2d 的 Python 绑定" -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "提供一种改变机器设置的方法(如构建体积、喷嘴大小等)。" +msgctxt "@label" +msgid "Qt version" +msgstr "Qt 版本" -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "提供读取和写入基于 XML 的材料配置文件的功能。" +msgctxt "@info:status" +msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." +msgstr "质量类型“{0}”与当前有效的机器定义“{1}”不兼容。" -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "为 Ultimaker 车床提供机器操作(例如车床调平向导、选择升级等)。" +msgctxt "@info:title" +msgid "Queue Full" +msgstr "队列已满" -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "提供可移动磁盘热插拔和写入文件的支持。" - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "提供了对导出 Cura 配置文件的支持。" - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "提供了对导入 Cura 配置文件的支持。" - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "提供了从 GCode 文件中导入配置文件的支持。" - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "支持从 Cura 旧版本导入配置文件。" - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "提供对读取 3MF 格式文件的支持。" - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "提供对读取 AMF 文件的支持。" - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "为读取 Ultimaker 格式包提供支持。" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "支持读取 X3D 文件。" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "提供对读取模型文件的支持。" - -msgctxt "description" -msgid "Provides support for writing 3MF and UCP files." -msgstr "" - -msgctxt "description" -msgid "Provides support for writing MakerBot Format Packages." -msgstr "提供对写入 MakerBot 格式包的支持。" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "为写入 Ultimaker 格式包提供支持。" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "提供对每个模型的单独设置。" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "提供透视视图。" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "提供 CuraEngine 切片后端的路径。" - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "提供切片层数据的预览。" - -msgctxt "@label" -msgid "PyQt version" -msgstr "PyQt 版本" - -msgctxt "@Label Description for application dependency" -msgid "Python Error tracking library" -msgstr "Python 错误跟踪库" - -msgctxt "@label Description for application dependency" -msgid "Python bindings for Clipper" -msgstr "Clipper 的 Python 绑定" - -msgctxt "@label Description for application component" -msgid "Python bindings for libnest2d" -msgstr "libnest2d 的 Python 绑定" - -msgctxt "@label" -msgid "Qt version" -msgstr "Qt 版本" - -#, python-brace-format -msgctxt "@info:status" -msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." -msgstr "质量类型“{0}”与当前有效的机器定义“{1}”不兼容。" - -msgctxt "@info:title" -msgid "Queue Full" -msgstr "队列已满" - -msgctxt "@label" -msgid "Queued" -msgstr "已排队" +msgctxt "@label" +msgid "Queued" +msgstr "已排队" msgctxt "@info:button, %1 is the application name" msgid "Quit %1" msgstr "退出 %1" -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "从压缩存档文件读取 G-code。" - msgctxt "@button" msgid "Recommended" msgstr "推荐" @@ -3657,10 +3306,6 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "可移动磁盘" -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "可移动磁盘输出设备插件" - msgctxt "@action:button" msgid "Remove" msgstr "删除" @@ -3783,11 +3428,11 @@ msgstr "保存 Cura 项目" msgctxt "@option" msgid "Save Cura project and .makerbot print file" -msgstr "" +msgstr "保存 Cura 项目和 .makerbot 打印文件" msgctxt "@option" msgid "Save Cura project and .ufp print file" -msgstr "" +msgstr "保存 Cura 项目和 .ufp 打印文件" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3815,7 +3460,7 @@ msgstr "保存新配置文件" msgctxt "@action:button" msgid "Save project" -msgstr "" +msgstr "保存项目" msgctxt "@text" msgid "Save the .umm file on a USB stick." @@ -3825,12 +3470,10 @@ msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "保存至可移动磁盘" -#, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "保存到可移动磁盘 {0}" -#, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "保存到可移动磁盘 {0} :{1}" @@ -3839,7 +3482,6 @@ msgctxt "@info:title" msgid "Saving" msgstr "正在保存" -#, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "保存到可移动磁盘 {0} " @@ -3922,15 +3564,15 @@ msgstr "向 UltiMaker 发送错误报告" msgctxt "@info:tooltip" msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." -msgstr "" +msgstr "将包含您注册的 UltiMaker 账户名和项目名称的崩溃报告发送到 UltiMaker Sentry。发送内容不包括实际模型数据。" msgctxt "@info:tooltip" msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." -msgstr "" +msgstr "将不带任何个人身份信息或模型数据的崩溃报告发送至 UltiMaker。" msgctxt "@option:check" msgid "Send engine crash reports" -msgstr "" +msgstr "发送引擎崩溃报告" msgctxt "@action:button" msgid "Send report" @@ -3944,10 +3586,6 @@ msgctxt "@info:title" msgid "Sending materials to printer" msgstr "正在将材料发送到打印机" -msgctxt "name" -msgid "Sentry Logger" -msgstr "Sentry 日志记录" - msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "串口通讯库" @@ -3986,7 +3624,7 @@ msgstr "设置" msgctxt "@action:label" msgid "Settings Loaded from UCP file" -msgstr "" +msgstr "从 UCP 文件加载的设置" msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" @@ -4058,7 +3696,7 @@ msgstr "应从桌面打开文件还是在同一 Cura 实例中打开外部应用 msgctxt "@info:tooltip" msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." -msgstr "" +msgstr "切片崩溃是否会被自动报告给 Ultimaker?请注意,除非获得您的明确许可,否则我们不会发送或存储任何模型,IP 地址或其他个人身份信息。" msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" @@ -4118,7 +3756,7 @@ msgstr "显示详细的错误报告" msgctxt "@action:button" msgid "Show settings" -msgstr "" +msgstr "显示设置" msgctxt "@option:check" msgid "Show summary dialog when saving project" @@ -4156,10 +3794,6 @@ msgctxt "@label" msgid "Sign in to the UltiMaker platform" msgstr "登录 UltiMaker 平台" -msgctxt "name" -msgid "Simulation View" -msgstr "仿真视图" - msgctxt "@tooltip" msgid "Skin" msgstr "表层" @@ -4188,10 +3822,6 @@ msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "当设置被更改时自动进行切片。" -msgctxt "name" -msgid "Slice info" -msgstr "切片信息" - msgctxt "@message:title" msgid "Slicing failed" msgstr "切片失败" @@ -4206,24 +3836,15 @@ msgstr "平滑" msgctxt "@label" msgid "Solid" -msgstr "" - -msgctxt "name" -msgid "Solid View" -msgstr "实体视图" +msgstr "固体" msgctxt "@item:inmenu" msgid "Solid view" msgstr "实体视图" msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "" -"一些隐藏设置正在使用有别于一般设置的计算值。\n" -"\n" +msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." +msgstr "一些隐藏设置正在使用有别于一般设置的计算值。" "单击以使这些设置可见。" msgctxt "@info:status" @@ -4239,13 +3860,8 @@ msgid "Some setting-values defined in %1 were overridden." msgstr "在 %1 中定义的一些设置值已被覆盖。" msgctxt "@tooltip" -msgid "" -"Some setting/override values are different from the values stored in the profile.\n" -"\n" -"Click to open the profile manager." -msgstr "" -"某些设置/重写值与存储在配置文件中的值不同。\n" -"\n" +msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." +msgstr "某些设置/重写值与存储在配置文件中的值不同。" "点击打开配置文件管理器。" msgctxt "@action:label" @@ -4316,10 +3932,6 @@ msgctxt "@label" msgid "Strength" msgstr "强度" -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "提交匿名切片信息。 可以通过偏好设置禁用。" - msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "成功导出材料至: %1" @@ -4328,18 +3940,17 @@ msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "成功导入材料 %1" -#, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "已成功导入配置文件 {0}。" msgctxt "@action:label" msgid "Suggested Material settings" -msgstr "" +msgstr "推荐的材料设置" msgctxt "@action:label" msgid "Suggested Profile settings" -msgstr "" +msgstr "推荐的配置文件设置" msgctxt "@action:title" msgid "Summary - Cura Project" @@ -4347,11 +3958,11 @@ msgstr "摘要 - Cura 项目" msgctxt "@action:title Don't translate 'Universal Cura Project'" msgid "Summary - Open Universal Cura Project (UCP)" -msgstr "" +msgstr "概要—打开 Universal Cura Project(UCP)" msgctxt "@action:title Don't translate 'Universal Cura Project'" msgid "Summary - Universal Cura Project" -msgstr "" +msgstr "概要—Universal Cura Project" msgctxt "@label" msgid "Support" @@ -4365,10 +3976,6 @@ msgctxt "@label" msgid "Support Blocker" msgstr "支撑拦截器" -msgctxt "name" -msgid "Support Eraser" -msgstr "支持橡皮擦" - msgctxt "@tooltip" msgid "Support Infill" msgstr "支撑填充" @@ -4534,7 +4141,6 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "用于打印支撑的挤出机组。 用于多重挤出。" -#, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "文件 {0} 已存在。您确定要覆盖它吗?" @@ -4597,21 +4203,10 @@ msgid "The nozzle inserted in this extruder." msgstr "该挤出机所使用的喷嘴。" msgctxt "@label" -msgid "" -"The pattern of the infill material of the print:\n" -"\n" -"For quick prints of non functional model choose line, zig zag or lightning infill.\n" -"\n" -"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" -"\n" -"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "" -"打印的填充材料的图案:\n" -"\n" -"对于非功能模型快速打印,请选择线条、锯齿状或闪电型填充。 \n" -"\n" -"对于承压不太大的功能性零件,我们建议使用网格、三角形或三角形与六边形组合图案。\n" -"\n" +msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "打印的填充材料的图案:" +"对于非功能模型快速打印,请选择线条、锯齿状或闪电型填充。 " +"对于承压不太大的功能性零件,我们建议使用网格、三角形或三角形与六边形组合图案。" "对于在多个方向上需要高强度承受力的功能性 3D 打印,请使用立方体、立方体细分、四分之一立方体、八面体和螺旋形。" msgctxt "@info:tooltip" @@ -4732,7 +4327,7 @@ msgstr "此配置不可用,因为 %1 未被识别。请访问 %2 以下载正 msgctxt "@text:window" msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" -msgstr "" +msgstr "这是 Cura Universal 项目文件。您想将其作为 Cura 项目或 Cura Universal Project 打开还是从中导入模型?" msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" @@ -4767,7 +4362,6 @@ msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "这台打印机是一组共 %1 台打印机的主机。" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "此配置文件 {0} 包含错误数据,无法导入。" @@ -4781,13 +4375,8 @@ msgid "This project contains materials or plugins that are currently not install msgstr "此项目包含 Cura 目前未安装的材料或插件。
                                      请安装缺失程序包,然后重新打开项目。" msgctxt "@label" -msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." -msgstr "" -"此设置的值与配置文件不同。\n" -"\n" +msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." +msgstr "此设置的值与配置文件不同。" "单击以恢复配置文件的值。" msgctxt "@item:tooltip" @@ -4804,13 +4393,8 @@ msgid "This setting is always shared between all extruders. Changing it here wil msgstr "此设置始终在所有挤出机之间共享。在此处更改它将改变所有挤出机的值。" msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "" -"此设置通常可被自动计算,但其当前已被绝对定义。\n" -"\n" +msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." +msgstr "此设置通常可被自动计算,但其当前已被绝对定义。" "单击以恢复自动计算的值。" msgctxt "@label" @@ -4823,11 +4407,11 @@ msgstr "此设置与挤出器特定值不同:" msgctxt "@tooltip Don't translate 'Universal Cura Project'" msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." -msgstr "" +msgstr "导出为 Universal Cura Project 项目时,此设置可能无法正常运行,请用户自行承担添加此设置的风险。" msgctxt "@tooltip Don't translate 'Universal Cura Project'" msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." -msgstr "" +msgstr "导出为 Universal Cura Project 项目时,此设置可能无法正常运行。请用户自行承担添加此设置的风险。" msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" @@ -4845,7 +4429,6 @@ msgctxt "@text" msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." msgstr "要自动将材料配置文件与连接到 Digital Factory 的所有打印机同步,您需要登录 Cura。" -#, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "要建立连接,请访问 {website_link}" @@ -4858,7 +4441,6 @@ msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." msgstr "欲通过网络向打印机发送打印请求,请确保您的打印机已通过网线或 WIFI 连接至网络。若不能连接 Cura 与打印机,亦可通过使用 USB 设备将 G-code 文件传输到打印机。" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "要永久删除 {printer_name},请访问 {digital_factory_link}" @@ -4907,10 +4489,6 @@ msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "试图在没有适当数据或元数据的情况下恢复Cura备份。" -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh 阅读器" - msgctxt "@button" msgid "Troubleshooting" msgstr "故障排除" @@ -4931,22 +4509,10 @@ msgctxt "@label" msgid "Type" msgstr "类型" -msgctxt "name" -msgid "UFP Reader" -msgstr "UFP 读取器" - -msgctxt "name" -msgid "UFP Writer" -msgstr "UFP 写入器" - msgctxt "@item:inmenu" msgid "USB printing" msgstr "USB 联机打印" -msgctxt "name" -msgid "USB printing" -msgstr "USB 联机打印" - msgctxt "@button" msgid "UltiMaker Account" msgstr "UltiMaker 帐户" @@ -4963,10 +4529,6 @@ msgctxt "@item:inlistbox" msgid "UltiMaker Format Package" msgstr "UltiMaker 格式包" -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "UltiMaker 网络连接" - msgctxt "@info" msgid "UltiMaker Verified Package" msgstr "UltiMaker 验证包" @@ -4975,10 +4537,6 @@ msgctxt "@info" msgid "UltiMaker Verified Plug-in" msgstr "UltiMaker 验证插件" -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "UltiMaker 车床操作" - msgctxt "@button" msgid "UltiMaker printer" msgstr "UltiMaker 打印机" @@ -4991,10 +4549,6 @@ msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - msgctxt "@info:status" msgid "Unable to add the profile." msgstr "无法添加配置文件。" @@ -5003,18 +4557,13 @@ msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "无法在成形空间体积内放下全部模型" -#, python-brace-format msgctxt "@info:plugin_failed" msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" msgstr "无法为以下对象找到本地 EnginePlugin 服务器可执行文件:{self._plugin_id}" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Unable to kill running EnginePlugin: {self._plugin_id}\n" -"Access is denied." -msgstr "" -"无法关闭正在运行的 EnginePlugin:{self._plugin_id}\n" +msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." +msgstr "无法关闭正在运行的 EnginePlugin:{self._plugin_id}" "访问被拒。" msgctxt "@info" @@ -5037,12 +4586,10 @@ msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "无法切片(原因:主塔或主位置无效)。" -#, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "无法切片,因为存在与已禁用挤出机 %s 相关联的对象。" -#, python-brace-format msgctxt "@info:status" msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" msgstr "因部分特定模型设置而无法切片。 以下设置在一个或多个模型上存在错误: {error_labels}" @@ -5051,7 +4598,6 @@ msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "无法使用当前材料进行切片,因为该材料与所选机器或配置不兼容。" -#, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "无法使用当前设置进行切片。以下设置存在错误:{0}" @@ -5060,10 +4606,9 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "无法开始新的登录过程。请检查是否仍在尝试进行另一登录。" -#, python-brace-format msgctxt "@info:error" msgid "Unable to write to file: {0}" -msgstr "" +msgstr "无法写入文件:{0}" msgctxt "@label:status" msgid "Unavailable" @@ -5087,11 +4632,11 @@ msgstr "单位" msgctxt "@item:inlistbox" msgid "Universal Cura Project" -msgstr "" +msgstr "Universal Cura Project" msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." -msgstr "" +msgstr "Universal Cura Project 文件可以在不同的 3D 打印机上打印,同时保留位置数据和选定的设置。导出时,构建板上显示的所有模型都将包含其当前位置,方向和比例。您还可以选择需要保留哪个推料器预设置或模型预设置,以确保正确打印。" msgctxt "@label Description for development tool" msgid "Universal build system configuration" @@ -5113,7 +4658,6 @@ msgctxt "@label:property" msgid "Unknown Package" msgstr "未知包" -#, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "上传打印作业时出现未知错误代码:{0}" @@ -5178,265 +4722,49 @@ msgctxt "@button" msgid "Updating..." msgstr "正在更新..." -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "将配置从 Cura 2.1 版本升级至 2.2 版本。" +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "上传自定义固件" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "将配置从 Cura 2.2 版本升级至 2.4 版本。" +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "正在将打印作业上传至打印机。" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "将配置从 Cura 2.5 版本升级至 2.6 版本。" +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "正在上传您的备份..." -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "将配置从 Cura 2.6 版本升级至 2.7 版本。" +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "使用单个 Cura 实例" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "将配置从 Cura 2.7 版本升级至 3.0 版本。" +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "用胶粘和此材料组合以产生更好的附着。" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "将配置从 Cura 3.0 版本升级至 3.1 版本。" +msgctxt "@label" +msgid "User Agreement" +msgstr "用户协议" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "将配置从 Cura 3.2 版本升级至 3.3 版本。" +msgctxt "@label Description for application dependency" +msgid "Utility functions, including an image loader" +msgstr "实用程序函数,包括图像加载器" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "从Cura 3.3升级到Cura 3.4。" +msgctxt "@label Description for application dependency" +msgid "Utility library, including Voronoi generation" +msgstr "实用程序库,包括 Voronoi 图生成" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "将配置从 Cura 3.4 版本升级至 3.5 版本。" +msgctxt "@title:column" +msgid "Value" +msgstr "值" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "将配置从 Cura 3.5 版本升级至 4.0 版本。" +msgctxt "@button" +msgid "View printers in Digital Factory" +msgstr "在 Digital Factory 中查看打印机" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "将配置从 Cura 4.0 版本升级至 4.1 版本。" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "请将配置从 Cura 4.1 升级至 Cura 4.2。" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "将配置从 Cura 4.11 升级到 Cura 4.12。" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "将配置从 Cura 4.13 升级至 Cura 5.0。" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "请将配置从 Cura 4.2 升级至 Cura 4.3。" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "将配置从 Cura 4.3 升级至 Cura 4.4。" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "将配置从 Cura 4.4 升级至 Cura 4.5。" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "将配置从 Cura 4.5 升级至 Cura 4.6。" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "将配置从 Cura 4.6.0 升级到 Cura 4.6.2。" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "将配置从 Cura 4.6.2 升级到 Cura 4.7。" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "将配置从 Cura 4.7 升级到 Cura 4.8。" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "将配置从 Cura 4.8 升级到 Cura 4.9。" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "将配置从 Cura 4.9 升级到 Cura 4.10。" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "将配置从 Cura 5.2 版本升级至 5.3 版本。" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "将配置从 Cura 5.3 升级到 Cura 5.4。" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "将配置从 Cura 5.4 升级到 Cura 5.5。" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." -msgstr "" - -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "上传自定义固件" - -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "正在将打印作业上传至打印机。" - -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "正在上传您的备份..." - -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "使用单个 Cura 实例" - -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "用胶粘和此材料组合以产生更好的附着。" - -msgctxt "@label" -msgid "User Agreement" -msgstr "用户协议" - -msgctxt "@label Description for application dependency" -msgid "Utility functions, including an image loader" -msgstr "实用程序函数,包括图像加载器" - -msgctxt "@label Description for application dependency" -msgid "Utility library, including Voronoi generation" -msgstr "实用程序库,包括 Voronoi 图生成" - -msgctxt "@title:column" -msgid "Value" -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "版本自 2.1 升级到 2.2" - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "版本自 2.2 升级到 2.4" - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "版本自 2.5 升级到 2.6" - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "版本自 2.6 升级到 2.7" - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "版本自 2.7 升级到 3.0" - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "版本自 3.0 升级到 3.1" - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "版本自 3.2 升级到 3.3" - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "版本升级3.3到3.4" - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "版本自 3.4 升级到 3.5" - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "版本自 3.5 升级到 4.0" - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "版本自 4.0 升级到 4.1" - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "版本自 4.1 升级到 4.2" - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "版本从 4.11 升级到 4.12" - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "版本从 4.13 升级到 5.0" - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "版本自 4.2 升级至 4.3" - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "版本自 4.3 升级至 4.4" - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "版本从 4.4 升级至 4.5" - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "版本从 4.5 升级至 4.6" - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "版本从 4.6.0 升级到 4.6.2" - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "版本从 4.6.2 升级到 4.7" - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "将版本从 4.7 升级到 4.8" - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "版本从 4.8 升级到 4.9" - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "版本从 4.9 升级到 4.10" - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "版本自 5.2 升级到 5.3" - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "版本 5.3 升级到 5.4" - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "版本 5.4 升级到 5.5" - -msgctxt "name" -msgid "Version Upgrade 5.6 to 5.7" -msgstr "" - -msgctxt "@button" -msgid "View printers in Digital Factory" -msgstr "在 Digital Factory 中查看打印机" - -msgctxt "@label" -msgid "View type" -msgstr "查看类型" +msgctxt "@label" +msgid "View type" +msgstr "查看类型" msgctxt "@label link to technical assistance" msgid "View user manuals online" @@ -5482,7 +4810,6 @@ msgctxt "@info:title" msgid "Warning" msgstr "警告" -#, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "警告:配置文件不可见,因为其质量类型“{0}”对当前配置不可用。请切换到可使用此质量类型的材料/喷嘴组合。" @@ -5509,7 +4836,7 @@ msgstr "您要设置什么打印机?" msgctxt "@info:tooltip" msgid "What type of camera navigation should be used?" -msgstr "" +msgstr "应使用什么类型的导航相机?" msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" @@ -5547,14 +4874,6 @@ msgctxt "@action:label" msgid "Width (mm)" msgstr "宽度 (mm)" -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "将 G-code 写入至压缩存档文件。" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "将 G-code 写入至文件。" - msgctxt "@label" msgid "X (Width)" msgstr "X (宽度)" @@ -5567,10 +4886,6 @@ msgctxt "@label" msgid "X min" msgstr "X 最小值" -msgctxt "name" -msgid "X-Ray View" -msgstr "透视视图" - msgctxt "@item:inlistbox" msgid "X-Ray view" msgstr "透视视图" @@ -5583,10 +4898,6 @@ msgctxt "@item:inlistbox" msgid "X3D File" msgstr "X3D 文件" -msgctxt "name" -msgid "X3D Reader" -msgstr "X3D 读取器" - msgctxt "@label" msgid "Y (Depth)" msgstr "Y (深度)" @@ -5604,30 +4915,19 @@ msgid "Yes" msgstr "是" msgctxt "@label" -msgid "" -"You are about to remove all printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr "" -"您即将从 Cura 中删除所有打印机。此操作无法撤消。\n" +msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgstr "您即将从 Cura 中删除所有打印机。此操作无法撤消。" "是否确定继续?" -#, python-brace-format msgctxt "@label" -msgid "" -"You are about to remove {0} printer from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgid_plural "" -"You are about to remove {0} printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr[0] "" -"您即将从 Cura 中删除 {0} 台打印机。此操作无法撤消。\n" -"是否确实要继续?" +msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgstr[0] "您即将从 Cura 中删除 {0} 台打印机。此操作无法撤消。\n是否确实要继续?" msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "您正在尝试连接未运行 UltiMaker Connect 的打印机。请将打印机升级到最新固件。" -#, python-brace-format msgctxt "@info:status" msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." msgstr "您正在尝试连接到 {0},但它不是组中的主机。您可以访问网页,将其配置为组主机。" @@ -5638,9 +4938,8 @@ msgstr "您目前没有任何备份。使用“立即备份”按钮创建一个 msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "" -"您已经自定义了若干配置文件设置。\n" -"是否要在切换配置文件后保留这些更改的设置?\n" +msgstr "您已经自定义了若干配置文件设置。" +"是否要在切换配置文件后保留这些更改的设置?" "或者,也可舍弃更改以从“%1”加载默认值。" msgctxt "@label" @@ -5671,13 +4970,9 @@ msgctxt "@info" msgid "Your new printer will automatically appear in Cura" msgstr "新打印机将自动出现在 Cura 中" -#, python-brace-format msgctxt "@info:status" -msgid "" -"Your printer {printer_name} could be connected via cloud.\n" -" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "" -"未能通过云连接您的打印机 {printer_name}。\n" +msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "未能通过云连接您的打印机 {printer_name}。" "只需将您的打印机连接到 Digital Factory,即可随时随地管理您的打印作业队列并监控您的打印结果" msgctxt "@label" @@ -5726,7 +5021,7 @@ msgstr "mm" msgctxt "@label" msgid "s" -msgstr "" +msgstr "s" msgctxt "@info:status" msgid "today" @@ -5740,7 +5035,6 @@ msgctxt "@label" msgid "version: %1" msgstr "版本: %1" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "将删除 {printer_name},直到下次帐户同步为止。" @@ -5749,21 +5043,553 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "{} 个插件下载失败" -#~ msgctxt "@label" -#~ msgid "Default" -#~ msgstr "默认" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "管理与 UltiMaker 网络打印机的网络连接。" + +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "UltiMaker 网络连接" + +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "提供了从 GCode 文件中导入配置文件的支持。" -#~ msgid "Provides support for exporting Cura profiles." -#~ msgstr "为导出 Cura 配置文件提供支持。" +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "G-code 配置文件读取器" -#~ msgctxt "description" -#~ msgid "Provides support for writing 3MF files." -#~ msgstr "提供对写入 3MF 文件的支持。" +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "提供一个基本的实体网格视图。" -#~ msgctxt "@option" -#~ msgid "Save Cura project and print file" -#~ msgstr "保存 Cura 项目并打印文件" +msgctxt "name" +msgid "Solid View" +msgstr "实体视图" -#~ msgctxt "@message" -#~ msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -#~ msgstr "发生意外错误,切片失败。请于问题跟踪器上报告错误。" +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "通过逐渐平滑流量来限制高流量跳变的 CuraEngine 插件" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "提供对读取 3MF 格式文件的支持。" + +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF 读取器" + +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "接受 G-Code 并将其发送到一台打印机。 插件也可以更新固件。" + +msgctxt "name" +msgid "USB printing" +msgstr "USB 联机打印" + +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "检查以进行固件更新。" + +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "固件更新检查程序" + +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "管理应用程序扩展,允许从 UltiMaker 网站浏览扩展。" + +msgctxt "name" +msgid "Marketplace" +msgstr "市场" + +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "备份和还原配置。" + +msgctxt "name" +msgid "Cura Backups" +msgstr "Cura 备份" + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "提供一种改变机器设置的方法(如构建体积、喷嘴大小等)。" + +msgctxt "name" +msgid "Machine Settings Action" +msgstr "打印机设置操作" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "将配置从 Cura 2.5 版本升级至 2.6 版本。" + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "版本自 2.5 升级到 2.6" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "将配置从 Cura 4.7 升级到 Cura 4.8。" + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "将版本从 4.7 升级到 4.8" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "将配置从 Cura 4.4 升级至 Cura 4.5。" + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "版本从 4.4 升级至 4.5" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "将配置从 Cura 3.0 版本升级至 3.1 版本。" + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "版本自 3.0 升级到 3.1" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "将配置从 Cura 4.11 升级到 Cura 4.12。" + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "版本从 4.11 升级到 4.12" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "请将配置从 Cura 4.1 升级至 Cura 4.2。" + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "版本自 4.1 升级到 4.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "将配置从 Cura 2.6 版本升级至 2.7 版本。" + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "版本自 2.6 升级到 2.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "将配置从 Cura 4.6.0 升级到 Cura 4.6.2。" + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "版本从 4.6.0 升级到 4.6.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "从Cura 3.3升级到Cura 3.4。" + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "版本升级3.3到3.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "将配置从 Cura 4.8 升级到 Cura 4.9。" + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "版本从 4.8 升级到 4.9" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "将配置从 Cura 4.5 升级至 Cura 4.6。" + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "版本从 4.5 升级至 4.6" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "请将配置从 Cura 4.2 升级至 Cura 4.3。" + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "版本自 4.2 升级至 4.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "将配置从 Cura 3.2 版本升级至 3.3 版本。" + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "版本自 3.2 升级到 3.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "将配置从 Cura 4.3 升级至 Cura 4.4。" + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "版本自 4.3 升级至 4.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "将配置从 Cura 5.6 升级到 Cura 5.7。" + +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "升级版本 5.6 至 5.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "将配置从 Cura 2.1 版本升级至 2.2 版本。" + +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "版本自 2.1 升级到 2.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "将配置从 Cura 5.3 升级到 Cura 5.4。" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "版本 5.3 升级到 5.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "将配置从 Cura 4.9 升级到 Cura 4.10。" + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "版本从 4.9 升级到 4.10" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "将配置从 Cura 2.7 版本升级至 3.0 版本。" + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "版本自 2.7 升级到 3.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "将配置从 Cura 3.5 版本升级至 4.0 版本。" + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "版本自 3.5 升级到 4.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "将配置从 Cura 5.2 版本升级至 5.3 版本。" + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "版本自 5.2 升级到 5.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "将配置从 Cura 4.0 版本升级至 4.1 版本。" + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "版本自 4.0 升级到 4.1" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "将配置从 Cura 4.13 升级至 Cura 5.0。" + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "版本从 4.13 升级到 5.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "将配置从 Cura 3.4 版本升级至 3.5 版本。" + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "版本自 3.4 升级到 3.5" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "将配置从 Cura 2.2 版本升级至 2.4 版本。" + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "版本自 2.2 升级到 2.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "将配置从 Cura 4.6.2 升级到 Cura 4.7。" + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "版本从 4.6.2 升级到 4.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "将配置从 Cura 5.4 升级到 Cura 5.5。" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "版本 5.4 升级到 5.5" + +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "允许加载和显示 G-code 文件。" + +msgctxt "name" +msgid "G-code Reader" +msgstr "G-code 读取器" + +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "提交匿名切片信息。 可以通过偏好设置禁用。" + +msgctxt "name" +msgid "Slice info" +msgstr "切片信息" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "提供可移动磁盘热插拔和写入文件的支持。" + +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "可移动磁盘输出设备插件" + +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "创建橡皮擦网格,以便阻止在某些位置打印支撑" + +msgctxt "name" +msgid "Support Eraser" +msgstr "支持橡皮擦" + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "检查模型和打印配置,以了解潜在的打印问题并给出建议。" + +msgctxt "name" +msgid "Model Checker" +msgstr "模型检查器" + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "在 Cura 中提供准备阶段。" + +msgctxt "name" +msgid "Prepare Stage" +msgstr "准备阶段" + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "提供切片层数据的预览。" + +msgctxt "name" +msgid "Simulation View" +msgstr "仿真视图" + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "提供对读取 AMF 文件的支持。" + +msgctxt "name" +msgid "AMF Reader" +msgstr "AMF 读取器" + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "提供透视视图。" + +msgctxt "name" +msgid "X-Ray View" +msgstr "透视视图" + +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "为固件更新提供操作选项。" + +msgctxt "name" +msgid "Firmware Updater" +msgstr "固件更新程序" + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "支持从 Cura 旧版本导入配置文件。" + +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "旧版 Cura 配置文件读取器" + +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "扩展程序(允许用户创建脚本进行后期处理)" + +msgctxt "name" +msgid "Post Processing" +msgstr "后期处理" + +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "记录某些事件,以使其可供崩溃报告器使用" + +msgctxt "name" +msgid "Sentry Logger" +msgstr "Sentry 日志记录" + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "提供对写入 MakerBot 格式包的支持。" + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "Makerbot 打印文件编写器" + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "提供了对导入 Cura 配置文件的支持。" + +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Cura 配置文件读取器" + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "为读取 Ultimaker 格式包提供支持。" + +msgctxt "name" +msgid "UFP Reader" +msgstr "UFP 读取器" + +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "支持从 2D 图像文件生成可打印几何模型的能力。" + +msgctxt "name" +msgid "Image Reader" +msgstr "图像读取器" + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "提供 CuraEngine 切片后端的路径。" + +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine 后端" + +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "将 G-code 写入至压缩存档文件。" + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "压缩 G-code 写入器" + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "为 Ultimaker 车床提供机器操作(例如车床调平向导、选择升级等)。" + +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "UltiMaker 车床操作" + +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "从压缩存档文件读取 G-code。" + +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "压缩 G-code 读取器" + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "在 Cura 中提供预览阶段。" + +msgctxt "name" +msgid "Preview Stage" +msgstr "预览阶段" + +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "连接到 Digital Library,以允许 Cura 从 Digital Library 打开文件并将文件保存到其中。" + +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "提供了对导出 Cura 配置文件的支持。" + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura 配置文件写入器" + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "支持读取 X3D 文件。" + +msgctxt "name" +msgid "X3D Reader" +msgstr "X3D 读取器" + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "提供对读取模型文件的支持。" + +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh 阅读器" + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "在 Cura 中提供监视阶段。" + +msgctxt "name" +msgid "Monitor Stage" +msgstr "监视阶段" + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "提供对每个模型的单独设置。" + +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "单一模型设置工具" + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "提供读取和写入基于 XML 的材料配置文件的功能。" + +msgctxt "name" +msgid "Material Profiles" +msgstr "材料配置文件" + +msgctxt "description" +msgid "Provides support for writing 3MF and UCP files." +msgstr "支持写为 3MF 和 UCP 文件。" + +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF 写入器" + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "为写入 Ultimaker 格式包提供支持。" + +msgctxt "name" +msgid "UFP Writer" +msgstr "UFP 写入器" + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "将 G-code 写入至文件。" + +msgctxt "name" +msgid "G-code Writer" +msgstr "G-code 写入器" diff --git a/resources/i18n/zh_CN/fdmextruder.def.json.po b/resources/i18n/zh_CN/fdmextruder.def.json.po index 47b82afda86..a22f731aadf 100644 --- a/resources/i18n/zh_CN/fdmextruder.def.json.po +++ b/resources/i18n/zh_CN/fdmextruder.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,258 +12,114 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "附着" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "调整所用耗材的直径。 将此值与所用耗材的直径匹配。" - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "打印平台附着" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "直径" - -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "在切离此挤出机时执行的结束 G-code。" - msgctxt "extruder_nr label" msgid "Extruder" msgstr "挤出机" +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "用于打印的挤出机,在多挤出机情况下适用。" + +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "挤出机打印冷却风扇" + +msgctxt "machine_extruder_cooling_fan_number description" +msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." +msgstr "打印冷却风扇的数量与该挤出机有关。仅在每个挤出机都对应不同的打印冷却风扇时,对默认值 0 进行更改。" + msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "挤出机的结束 G-code" +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "在切离此挤出机时执行的结束 G-code。" + msgctxt "machine_extruder_end_code_duration label" msgid "Extruder End G-Code Duration" -msgstr "" +msgstr "推料器结束 G 代码持续时间" + +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "当切走该推料器时,执行最后的 G 代码所需的时间。" msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "挤出机终点绝对位置" +msgctxt "machine_extruder_end_pos_abs description" +msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." +msgstr "令挤出机结束位置为绝对位置,而不根据打印头的最后位置来改变。" + msgctxt "machine_extruder_end_pos_x label" msgid "Extruder End Position X" msgstr "挤出机结束位置 X 坐标" +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "关闭挤出机时的终止位置的 X 坐标。" + msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "挤出机终点位置 Y 坐标" -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "挤出机 X 轴坐标" - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "挤出机 Y 轴起始位置" - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "挤出机初始 Z 轴位置" - -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "挤出机打印冷却风扇" +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "关闭挤出机时的终止位置的 Y 坐标。" msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "挤出机的开始 G-code" +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "在切换到此挤出机时执行的开始 G-code。" + msgctxt "machine_extruder_start_code_duration label" msgid "Extruder Start G-Code Duration" -msgstr "" +msgstr "推料器开始 G 代码持续时间" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "当切换到该推料器时,执行起始 G 代码所需的时间。" msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "挤出机起点绝对位置" +msgctxt "machine_extruder_start_pos_abs description" +msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." +msgstr "令挤出机起始位置为绝对位置,而不根据打印头的最后位置来改变。" + msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "挤出机起始位置 X 坐标" +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "打开挤出机时起始位置的 X 坐标。" + msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "挤出机起始位置 Y 坐标" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "机器" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "机器详细设置" - -msgctxt "machine_extruder_end_pos_abs description" -msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." -msgstr "令挤出机结束位置为绝对位置,而不根据打印头的最后位置来改变。" - -msgctxt "machine_extruder_start_pos_abs description" -msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." -msgstr "令挤出机起始位置为绝对位置,而不根据打印头的最后位置来改变。" - -msgctxt "material description" -msgid "Material" -msgstr "材料" - -msgctxt "material label" -msgid "Material" -msgstr "材料" - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "喷嘴直径" - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "喷嘴 ID" +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "打开挤压机时的起始位置 Y 坐标。" msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "喷嘴 X 轴偏移量" -msgctxt "machine_nozzle_offset_y label" -msgid "Nozzle Y Offset" -msgstr "喷嘴 Y 轴偏移量" - -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "在切换到此挤出机时执行的开始 G-code。" - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "打印开始时,喷头在 X 轴上初始位置。" - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "打印开始时,喷头在 Y 轴坐标上初始位置。" - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "打印开始时,喷头在 Z 轴坐标上的起始位置." - -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "用于打印的挤出机,在多挤出机情况下适用。" - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "喷嘴内径,在使用非标准喷嘴尺寸时需更改此设置。" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "挤出机组的喷嘴 ID,比如\"AA 0.4\"和\"BB 0.8\"。" - -msgctxt "machine_extruder_cooling_fan_number description" -msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." -msgstr "打印冷却风扇的数量与该挤出机有关。仅在每个挤出机都对应不同的打印冷却风扇时,对默认值 0 进行更改。" - -msgctxt "machine_extruder_end_code_duration description" -msgid "The time it takes to execute the end g-code, when switching away from this extruder." -msgstr "" - -msgctxt "machine_extruder_start_code_duration description" -msgid "The time it'll take to execute the start g-code, when switching to this extruder." -msgstr "" - -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "关闭挤出机时的终止位置的 X 坐标。" - msgctxt "machine_nozzle_offset_x description" msgid "The x-coordinate of the offset of the nozzle." msgstr "喷嘴 X 轴坐标偏移。" -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "打开挤出机时起始位置的 X 坐标。" - -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "关闭挤出机时的终止位置的 Y 坐标。" +msgctxt "machine_nozzle_offset_y label" +msgid "Nozzle Y Offset" +msgstr "喷嘴 Y 轴偏移量" msgctxt "machine_nozzle_offset_y description" msgid "The y-coordinate of the offset of the nozzle." msgstr "喷嘴 Y 轴坐标偏移。" - -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "打开挤压机时的起始位置 Y 坐标。" - -#~ msgctxt "wall_0_material_flow_roofing description" -#~ msgid "Flow compensation on the top surface outermost wall line." -#~ msgstr "頂部最外牆流量補償" - -#~ msgctxt "wall_x_material_flow_roofing description" -#~ msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -#~ msgstr "所有牆線,除了最外面的牆線,頂部牆線的流動補償" - -#~ msgctxt "group_outer_walls label" -#~ msgid "Group Outer Walls" -#~ msgstr "群組外牆" - -#~ msgctxt "group_outer_walls description" -#~ msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -#~ msgstr "在相同層中,不同島嶼的外牆按順序印製。啟用時,減少流量變化的量,因為牆壁一次印刷一種類型;停用時,減少島嶼之間的行程數,因為相同島嶼的牆壁被分組。" - -#~ msgctxt "acceleration_wall_x_roofing description" -#~ msgid "The acceleration with which the top surface inner walls are printed." -#~ msgstr "頂部內壁印製時的加速度" - -#~ msgctxt "acceleration_wall_0_roofing description" -#~ msgid "The acceleration with which the top surface outermost walls are printed." -#~ msgstr "頂部最外牆的印刷加速度" - -#~ msgctxt "jerk_wall_x_roofing description" -#~ msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -#~ msgstr "印刷頂部最外牆的最大瞬時速度變化。" - -#~ msgctxt "jerk_wall_0_roofing description" -#~ msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -#~ msgstr "印刷頂部內壁的最大瞬時速度變化。" - -#~ msgctxt "speed_wall_x_roofing description" -#~ msgid "The speed at which the top surface inner walls are printed." -#~ msgstr "頂部內壁印製時的速度" - -#~ msgctxt "speed_wall_0_roofing description" -#~ msgid "The speed at which the top surface outermost wall is printed." -#~ msgstr "頂部最外牆印製時的速度" - -#~ msgctxt "acceleration_wall_x_roofing label" -#~ msgid "Top Surface Inner Wall Acceleration" -#~ msgstr "頂部內壁加速度" - -#~ msgctxt "jerk_wall_x_roofing label" -#~ msgid "Top Surface Inner Wall Jerk" -#~ msgstr "頂部最外牆突變" - -#~ msgctxt "speed_wall_x_roofing label" -#~ msgid "Top Surface Inner Wall Speed" -#~ msgstr "頂部內壁速度" - -#~ msgctxt "wall_x_material_flow_roofing label" -#~ msgid "Top Surface Inner Wall(s) Flow" -#~ msgstr "頂部內壁流" - -#~ msgctxt "acceleration_wall_0_roofing label" -#~ msgid "Top Surface Outer Wall Acceleration" -#~ msgstr "頂部外牆加速度" - -#~ msgctxt "wall_0_material_flow_roofing label" -#~ msgid "Top Surface Outer Wall Flow" -#~ msgstr "頂部最外牆流" - -#~ msgctxt "speed_wall_0_roofing label" -#~ msgid "Top Surface Outer Wall Speed" -#~ msgstr "頂部外牆速度" - -#~ msgctxt "jerk_wall_0_roofing label" -#~ msgid "頂部內壁突變" -#~ msgstr "Saccade de la paroi externe de la surface supérieure" diff --git a/resources/i18n/zh_CN/fdmprinter.def.json.po b/resources/i18n/zh_CN/fdmprinter.def.json.po index fb5d1f4a019..9fe9a0489a6 100644 --- a/resources/i18n/zh_CN/fdmprinter.def.json.po +++ b/resources/i18n/zh_CN/fdmprinter.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-12 15:10+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,5772 +12,5685 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -msgctxt "prime_tower_mode description" -msgid "How to generate the prime tower:
                                      • Normal: create a bucket in which secondary materials are primed
                                      • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
                                      " -msgstr "" - -msgctxt "brim_inside_margin description" -msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." -msgstr "" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "机器" -msgctxt "ironing_inset description" -msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." -msgstr "与模型边缘保持的距离。 一直熨平至网格的边缘可能导致打印品出现锯齿状边缘。" +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "机器详细设置" -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "表示长丝在进料器和喷嘴室之间被压缩多少的系数,用于确定针对长丝开关将材料移动的距离。" +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "机器类型" -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "当顶部表面皮肤层采用线条或锯齿状图案时使用的整数走线方向的列表。 列表中的元素随层的进度依次使用,当达到列表末尾时,它将从头开始。 列表项以逗号分隔,整个列表包含在方括号中。 默认是一个空列表,即意味着使用传统的默认角度(45 和 135 度)。" +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "您的 3D 打印机型号的名称。" -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "当顶层/底层采用线条或锯齿状图案时使用的整数走线方向的列表。 列表中的元素随层的进度依次使用,当达到列表末尾时,它将从头开始。 列表项以逗号分隔,整个列表包含在方括号中。 默认是一个空列表,即意味着使用传统的默认角度(45 和 135 度)。" +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "显示打印机变体" -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "要使用的整数走线方向列表。列表中的元素随层的进度依次使用,当达到列表末尾时将从头开始。列表项以逗号分隔,整个列表包含在方括号中。“默认“是一个空列表,即意味着使用默认角度 0 度。" +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "这台打印机是否需要显示它在不同的 JSON 文件中所描述的不同变化。" -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "要使用的整数走线方向列表。列表中的元素随层的进度依次使用,当达到列表末尾时将从头开始。列表项以逗号分隔,整个列表包含在方括号中。“默认“为一个空列表,即意味着使用默认角度(如果接触面很厚或为 90 度,则在 45 度和 135 度之间交替)。" +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "开始 G-code" -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "要使用的整数走线方向列表。列表中的元素随层的进度依次使用,当达到列表末尾时将从头开始。列表项以逗号分隔,整个列表包含在方括号中。“默认“为一个空列表,即意味着使用默认角度(如果接触面很厚或为 90 度,则在 45 度和 135 度之间交替)。" +msgctxt "machine_start_gcode description" +msgid "G-code commands to be executed at the very start - separated by \n." +msgstr "在开始时执行的 G-code 命令 - 以 " +" 分行。" -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "要使用的整数走线方向列表。列表中的元素随层的进度依次使用,当达到列表末尾时将从头开始。列表项以逗号分隔,整个列表包含在方括号中。“默认“为一个空列表,即意味着使用默认角度(如果接触面很厚或为 90 度,则在 45 度和 135 度之间交替)。" +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "结束 G-code" -msgctxt "infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." -msgstr "要使用的整数走线方向列表。 列表中的元素随层的进度依次使用,当达到列表末尾时,它将从头开始。 列表项以逗号分隔,整个列表包含在方括号中。 默认是一个空列表,即意味着使用传统的默认角度(线条和锯齿形图案为 45 和 135 度,其他所有图案为 45 度)。" +msgctxt "machine_end_gcode description" +msgid "G-code commands to be executed at the very end - separated by \n." +msgstr "在结束前执行的 G-code 命令 - 以 " +" 分行。" -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "包含不允许喷嘴进入区域的多边形列表。" +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "材料 GUID" -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "包含不允许打印头进入区域的多边形列表。" +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "材料 GUID,此项为自动设置。" -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "建议分支离从其支撑点移动的距离。分支可以违反此值以到达其目的地(打印平台或模型的平面部分)。降低此值可以使支撑更坚固,但会增加分支数量(进而增加材料的使用/打印时间)" +msgctxt "material_type label" +msgid "Material Type" +msgstr "材料种类" -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "绝对挤出机主要位置" +msgctxt "material_type description" +msgid "The type of material used." +msgstr "所用的材料类型。" -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "自适应图层最大变化" +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "材料品牌" -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "自适应图层地形尺寸" +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "所用材料的品牌。" -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "自适应图层变化步长" +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "直径" -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "自适应图层根据模型形状计算图层高度。" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "调整所用耗材的直径。 将此值与所用耗材的直径匹配。" -msgctxt "infill_wall_line_count description" -msgid "" -"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" -"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "" -"在填充区域周围添加额外壁。此类壁可减少顶部/底部皮肤走线,这意味着只要付出一些额外的材料就可以使用更少的顶部/底部皮肤层达到相同的质量。\n" -"在适当配置的情况下,此功能可结合连接填充多边形以将所有填充物连接到单一挤出路径而无需空驶或回抽。" +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "等待打印平台加热" -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "附着" +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "是否插入一条命令,等待开始时达到打印平台温度。" -msgctxt "material_adhesion_tendency label" -msgid "Adhesion Tendency" -msgstr "附着倾向" +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "等待喷嘴加热" -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "调整壁和皮肤中心线的(端点)之间的重叠量,以皮肤线走线和最内壁的线宽度的百分比表示。稍微重叠可让各个壁与皮肤牢固连接。请注意,对于相等的皮肤和壁线宽度,任何超过 50% 的百分比可能已经导致任何皮肤越过壁,因为在该点,皮肤挤出机的喷嘴位置可能已经达到越过壁中间的位置。" +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "是否等待开始时达到喷嘴温度。" -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "调整壁和皮肤中心线的(端点)之间的重叠量。稍微重叠可让各个壁与皮肤牢固连接。请注意,对于相等的皮肤和壁线宽度,任何超过壁宽度一半的值可能已经导致任何皮肤越过壁,因为在该点,皮肤挤出机的喷嘴位置可能已经达到越过壁中间的位置。" +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "包含材料温度" -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "调整打印填充的密度。" +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "是否在 gcode 开始部分包含喷嘴温度命令。 当 start_gcode 已包含喷嘴温度命令时,Cura 前端将自动禁用此设置。" -msgctxt "support_interface_density description" -msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "调整支撑结构顶板和底板的密度。 较高的值会实现更好的悬垂,但支撑将更加难以移除。" +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "包含打印平台温度" -msgctxt "support_tree_top_rate description" -msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "调整用于生成分支顶端的支撑结构的密度。高数值可以确保悬垂质量更好,但支撑结构会更难去除。用支撑顶板获取极高数值,或者确保顶层的支撑密度同样高。" +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "是否需要在 G-code 开始部分包含检查热床温度的命令。当 start_gcode 包含热床温度命令时,Cura 前端将自动禁用此设置。" -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "调整支撑结构的密度。 较高的值会实现更好的悬垂,但支撑将更加难以移除。" +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "机器宽度" -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "调整所用耗材的直径。 将此值与所用耗材的直径匹配。" +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "机器可打印区域宽度(X 坐标)" -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "调整支撑结构的放置。 放置可以设置为支撑打印平台或全部支撑。 当设置为全部支撑时,支撑结构也将在模型上打印。" +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "机器深度" -msgctxt "prime_tower_wipe_enabled description" -msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." -msgstr "在用一个喷嘴打印装填塔后,从装填塔上的另一个喷嘴擦去渗出的材料。" +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "机器可打印区域深度(Y 坐标)" -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "当机器从一个挤出机切换到另一个时,打印平台会降低以便在喷嘴和打印品之间形成空隙。 这将防止喷嘴在打印品外部留下渗出物。" +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "机器高度" -msgctxt "retraction_combing option all" -msgid "All" -msgstr "所有" +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "机器可打印区域高度(Z 坐标)" -msgctxt "print_sequence option all_at_once" -msgid "All at Once" -msgstr "同时打印" +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "打印平台形状" -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "影响打印分辨率的所有设置。 这些设置会对质量(和打印时间)产生显著影响" +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "打印平台形状(不考虑不可打印区域)。" -msgctxt "user_defined_print_order_enabled description" -msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." -msgstr "" +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "矩形" -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "交替备用壁" +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "类圆形" -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "交替网格移除" +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "打印平台材料" -msgctxt "material_alternate_walls label" -msgid "Alternate Wall Directions" -msgstr "交替壁方向" +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "打印平台材料已安装在打印机上。" -msgctxt "material_alternate_walls description" -msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." -msgstr "在每一层或嵌入上交替壁方向。这适用于会产生应力的材料,例如在金属打印中。" +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "玻璃" msgctxt "machine_buildplate_type option aluminum" msgid "Aluminum" msgstr "铝" +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "有加热打印平台" + +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "机器是否有加热打印平台。" + +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "具有构建体积温度稳定性" + +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "机器是否能够稳定构建体积温度。" + msgctxt "machine_always_write_active_tool label" msgid "Always Write Active Tool" msgstr "始终写入活动工具" -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "在移动开始打印外壁时始终回抽。" - -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "应用到每一层所有多边形的偏移量。 正数值可以补偿过大的孔洞;负数值可以补偿过小的孔洞。" +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "将临时命令发送到非活动工具后写入活动工具。用 Smoothie 或其他具有模态工具命令的固件进行的双挤出器打印需要此项。" -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "应用到第一层所有多边形的偏移量。 负数值可以补偿第一层的压扁量(被称为“象脚”)。" - -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "应用到每一层所有支撑多边形的偏移量。 正值可以让支撑区域更平滑,并产生更为牢固的支撑。" - -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "应用到支撑底板的偏移量。" - -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "应用到支撑顶板的偏移量。" - -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "应用到支撑接触面多边形的偏移量。" - -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "耗材回抽量,可避免耗材在擦拭期间渗出。" - -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "从每个立方体的中心对半径进行添加,以检查模型的边界,进而决定是否应对此立方体进行分区。 值越大则模型边界附近的小型立方体外壳越厚。" - -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "防悬网格" - -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "防渗出回抽位置" - -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "防渗出回抽速度" - -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "将挤出器偏移量应用到坐标轴系统。影响所有挤出器。" - -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "在模型接触的位置,生成互锁梁结构。这改善了模型之间的粘合力,特别是用不同材料打印的模型。" - -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "空驶时避开已打印部分" - -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "避免移动时支撑" - -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "返回" - -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "左后方" - -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "右后方" - -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "两者都" - -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "两者重叠" - -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "底部层数" - -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "底层图案起始层" - -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "底部皮肤扩展距离" - -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "底部皮肤移除宽度" - -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "底层厚度" - -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "分支密度" - -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "分支直径" - -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "分支直径角度" - -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "断裂缓冲期回抽位置" - -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "断裂缓冲期回抽速度" - -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "断裂缓冲期温度" - -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "断裂回抽位置" - -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "断裂回抽速度" - -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "折断温度" - -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "将支撑结构分拆成块状" - -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "连桥风扇速度" - -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "连桥有多层" - -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "连桥第二层表面密度" - -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "连桥第二层表面风扇速度" - -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "连桥第二层表面流量" - -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "连桥第二层表面速度" - -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "连桥表面密度" - -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "连桥表面流量" - -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "连桥表面速度" - -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "连桥表面支撑阈值" +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "位于中心" -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "连桥稀疏填充物最大密度" +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "打印机零位的 X/Y 坐标是否位于可打印区域的中心。" -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "连桥第三层表面密度" +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "挤出机数目" -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "连桥第三层表面风扇速度" +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "挤出机组数目。 挤出机组是指进料装置、鲍登管和喷嘴的组合。" -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "连桥第三层表面流量" +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "已启用的挤出机数目" -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "连桥第三层表面速度" +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "已启用的挤出机组数目;软件自动设置" -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "桥壁滑行" +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "喷嘴外径" -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "桥壁流量" +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "喷嘴尖端的外径。" -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "桥壁速度" +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "喷嘴长度" -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Brim" +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "喷嘴尖端与打印头最低部分之间的高度差。" -msgctxt "brim_inside_margin label" -msgid "Brim Avoid Margin" -msgstr "" +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "喷嘴角度" -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "边沿距离" +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "水平面与喷嘴尖端上部圆锥形之间的角度。" -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Brim 走线计数" +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "加热区长度" -msgctxt "brim_location label" -msgid "Brim Location" -msgstr "" +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "与喷嘴尖端的距离,喷嘴产生的热量在这段距离内传递到耗材中。" -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Brim 替换支撑" +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "启用喷嘴温度控制" -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Brim 宽度" +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "是否从 Cura 控制温度。 关闭此选项,从 Cura 外部控制喷嘴温度。" -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "打印平台附着" +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "升温速度" -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "打印平台附着挤出机" +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "喷嘴升温到平均超过正常打印温度和待机温度范围的速度 (°C/s)。" -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "打印平台附着类型" +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "冷却速度" -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "打印平台材料" +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "喷嘴冷却到平均超过正常打印温度和待机温度范围的速度 (°C/s)。" -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "打印平台形状" +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "最短时间待机温度" -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "打印平台温度" +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "挤出机必须保持不活动以便喷嘴冷却的最短时间。 挤出机必须不使用此时间以上,才可以冷却到待机温度。" -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "打印平台温度起始层" +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "G-code 风格" -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "打印体积温度" +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "需要生成的 G-code 类型。" -msgctxt "bv_temp_anomaly_limit label" -msgid "Build Volume temperature Limit" -msgstr "" +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" -msgctxt "bv_temp_warn_limit label" -msgid "Build Volume temperature Warning" -msgstr "" +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin(容积)" -msgctxt "prime_tower_brim_enable description" -msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "启用此设置将为您的 prime tower 添加一个边缘,即使您的模型中原本没有。如果您希望高塔有更坚固的基座,可以增加底座高度。" +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" -msgctxt "center_object label" -msgid "Center Object" -msgstr "中心点" +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "更改打印模型的几何,以最大程度减少需要的支撑。 陡峭的悬垂物将变浅。 悬垂区域将下降变得更垂直。" +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "在可用于产生支撑的方法之间进行选择。“普通”支撑在悬垂部分正下方形成一个支撑结构,并直接垂下这些区域。“树形”支撑形成一些分支,它们朝向在这些分支的尖端上支撑模型的悬垂区域,并使这些分支可缠绕在模型周围以尽可能多地从构建板上支撑它。" +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "滑行速度" +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "滑行体积" +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "滑行会用一个空驶路径替代挤出路径的最后部分。 渗出材料用于打印挤出路径的最后部分,以便减少串接。" +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "梳理模式" +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "固件收回" -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "梳理可在空驶时让喷嘴保持在已打印区域内。这会使空驶距离稍微延长,但可减少回抽需求。如果关闭梳理,则材料将回抽,且喷嘴沿着直线移动到下一个点。也可以避免顶部/底部皮肤区域的梳理或仅在填充物内进行梳理。" +msgctxt "machine_firmware_retract description" +msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." +msgstr "是否使用固件收回命令 (G10/G11) 而不是使用 G1 命令中的 E 属性来收回材料。" -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "命令行设置" +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "挤出器共用加热器" -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "同心圆" +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "挤出器是否共用一个加热器,而不是每个挤出器都有自己的加热器。" -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "同心" +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "挤出器共用喷嘴" -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "同心" +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "挤出器是否共用一个喷嘴,而不是每个挤出器都有自己的喷嘴。当设置为 true 时,预计打印机启动 gcode 脚本会将所有挤出器正确设置为已知且相互兼容的初始缩回状态 (零根或一根细丝未缩回);在这种情况下,会通过“machine_extruders_shared_nozzle_initial_retraction”参数描述每个挤出器的初始缩回状态。" -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "同心" +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "共用喷嘴初始缩回" -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "同心" +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "假定在打印机启动 gcode 脚本完成后,每个挤出器的细丝从共用喷嘴头缩回多少;该值应等于或大于喷嘴导管公共部分的长度。" -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "同心" +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "不允许区域" -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "同心圆" +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "包含不允许打印头进入区域的多边形列表。" -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "同心圆" +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "喷嘴不允许区域" -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "同心圆" +msgctxt "nozzle_disallowed_areas description" +msgid "A list of polygons with areas the nozzle is not allowed to enter." +msgstr "包含不允许喷嘴进入区域的多边形列表。" -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "锥形支撑角度" +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "机器头和风扇多边形" -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "锥形支撑最小宽度" +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "打印头的形状。这些是相对于打印头位置的坐标,打印头通常是其第一个挤出器的位置。打印头左侧和前方的尺寸必须采用负坐标。" -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "连接填充走线" +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "十字轴高度" -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "连接填充多边形" +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "喷嘴尖端与十字轴系统(X 轴和 Y 轴)之间的高度差。" -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "连接支撑线" +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "喷嘴 ID" -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "连接支撑锯齿形" +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "挤出机组的喷嘴 ID,比如\"AA 0.4\"和\"BB 0.8\"。" -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "连接顶部/底部多边形" +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "喷嘴直径" -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "在填充路径互相紧靠运行的地方连接它们。对于包含若干闭合多边形的填充图案,启用此设置可大大减少空驶时间。" +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "喷嘴内径,在使用非标准喷嘴尺寸时需更改此设置。" -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "连接锯齿形。 这将增加锯齿形支撑结构的强度。" +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "挤出机偏移量" -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "将支撑线尾端连接在一起。启用此设置会让支撑更为牢固并减少挤出不足,但需要更多材料。" +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "将挤出器偏移量应用到坐标轴系统。影响所有挤出器。" -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "使用沿内壁形状的走线连接填充图案与内壁相接的各端。启用此设置会使填充更好地粘着在壁上,减少填充物效果对垂直表面质量的影响。禁用此设置可减少使用的材料量。" +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "挤出机初始 Z 轴位置" -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "在顶部/底部皮肤路径互相紧靠运行的地方连接它们。对于同心图案,启用此设置可大大减少空驶时间,但由于连接可在填充中途发生,此功能可能会降低顶部表面质量。" +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "打印开始时,喷头在 Z 轴坐标上的起始位置." -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "控制模型轮廓上的角是否影响缝隙的位置。“无”表示各个角不影响缝隙位置。“隐藏缝隙”会使缝隙更可能出现在内侧角上。“外露缝隙”会使缝隙更可能出现在外侧角上。“隐藏或外露缝隙”会使缝隙更可能出现在内侧或外侧角上。“智能隐藏”允许缝隙出现在内侧和外侧角上,如适当,会更多地出现在内侧角上。" +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "绝对挤出机主要位置" -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "将每个填充走线转换成这种多重走线。额外走线互相不交叉,而是互相避开。这使得填充更严格,但会增加打印时间和材料使用。" +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "使挤出机主要位置为绝对值,而不是与上一已知打印头位置的相对值。" -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "冷却速度" +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "X 轴最大速度" -msgctxt "cooling description" -msgid "Cooling" -msgstr "冷却" +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "X 轴方向电机的最大速度。" -msgctxt "cooling label" -msgid "Cooling" -msgstr "冷却" +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Y 轴最大速度" -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "交叉" +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "Y 轴方向电机的最大速度。" -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "交叉" +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Z 轴最大速度" -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "交叉 3D" +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "Z 轴方向电机的最大速度。" -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "交叉 3D 气槽大小" +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "E 轴最大速度" -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "交叉填充密度图象" +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "耗材的最大速度。" -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "交叉加密图像密度" +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "X 轴最大加速度" -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "晶体材料" +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "X 轴方向电机的最大加速度" -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "立方体" +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "轴最大加速度" -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "立方体分区" +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Y 轴方向电机的最大加速度。" -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "立方体分区外壳" +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Z 轴最大加速度" -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "切割网格" +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Z 轴方向电机的最大加速度。" -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "数据连接材料流量(mm3/s)到温度(摄氏度)。" +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "挤出电机最大加速度" + +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "耗材电机的最大加速度。" msgctxt "machine_acceleration label" msgid "Default Acceleration" msgstr "默认加速度" -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "默认打印平台温度" - -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "默认挤出电机 Jerk" - -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "默认打印温度" +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "打印头移动的默认加速度。" msgctxt "machine_max_jerk_xy label" msgid "Default X-Y Jerk" msgstr "默认 X-Y 平面抖动速度(Jerk)" -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "默认 Z 轴抖动速度(Jerk)" - msgctxt "machine_max_jerk_xy description" msgid "Default jerk for movement in the horizontal plane." msgstr "水平面移动的默认抖动速度。" +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "默认 Z 轴抖动速度(Jerk)" + msgctxt "machine_max_jerk_z description" msgid "Default jerk for the motor of the Z-direction." msgstr "Z 轴方向电机的默认抖动速度。" +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "默认挤出电机 Jerk" + msgctxt "machine_max_jerk_e description" msgid "Default jerk for the motor of the filament." msgstr "耗材电机的默认抖动速度。" -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "在打印连桥时,检测连桥并修改打印速度、流量和风扇设置。" +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "每毫米步数 (X)" -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "确定打印壁的顺序。先打印外壁有助于提高尺寸精度,因为内壁的误差不会传播到外壁。不过,在打印悬垂对象时,后打印外壁可以实现更好的堆叠。当总内壁数量不均匀时,“中心最后线”总是最后打印。" +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "步进电机前进多少步将导致在 X 方向移动一毫米。" -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "在考虑多个重叠的填充网格时确定此网格的优先级。其中有多个填充网格重叠的区域将采用等级最高的网格的设置。具有较高等级的填充网格将修改具有较低等级的填充网格和普通网格的填充。" +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "每毫米步数 (Y)" -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "决定闪电形填充层何时必须支撑其上方的任何物体。在给定的层厚度下测得的角度。" +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "步进电机前进多少步将导致在 Y 方向移动一毫米。" -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "决定闪电形填充层何时必须支撑其上方的模型。在给定的厚度下测得的角度。" +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "每毫米步数 (Z)" -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "直径" +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "步进电机前进多少步将导致在 Z 方向移动一毫米。" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "扩大直径以匹配模型" +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "每毫米步数 (E)" -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "接触打印平台时,每个分支可能达到的直径。提高床附着力。" +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "步进电机前进多少步将导致进料器轮绕其周长移动一毫米。" -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "帮助改善挤出装填以及与打印平台附着的不同选项。 Brim 会在模型基座周围添加单层平面区域,以防止卷翘。 Raft 会在模型下添加一个有顶板的厚网格。 Skirt 是在模型四周打印的一条线,但并不与模型连接。" +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "正向 X 限位开关" + +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "指定 X 轴的限位开关位于正向(高 X 轴坐标)还是负向(低 X 轴坐标)。" + +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "正向 Y 限位开关" + +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "指定 Y 轴的限位开关位于正向(高 Y 轴坐标)还是负向(低 Y 轴坐标)。" + +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "正向 Z 限位开关" + +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "指定 Z 轴的限位开关位于正向(高 Z 轴坐标)还是负向(低 Z 轴坐标)。" + +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "最小进料速率" + +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "打印头的最低移动速度。" + +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "进料装置驱动轮的直径" + +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "进料装置中材料驱动轮的直径。" + +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "在 0 到 1 范围内设置风扇速度" -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "不允许区域" +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "在 0 到 1 范围内设置风扇速度,而不是 0 到 256 之间。" -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "打印填充走线之间的距离。 该设置是通过填充密度和填充线宽度计算。" +msgctxt "resolution label" +msgid "Quality" +msgstr "质量" -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "已打印起始层支撑结构走线之间的距离。该设置通过支撑密度计算。" +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "影响打印分辨率的所有设置。 这些设置会对质量(和打印时间)产生显著影响" -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "已打印支撑底板走线之间的距离。 该设置是通过支撑底板密度计算,但可以单独调整。" +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "层高" -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "已打印支撑顶板走线之间的距离。 该设置是通过支撑顶板密度计算,但可以单独调整。" +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "每层的高度(以毫米为单位)。值越高,则打印速度越快,分辨率越低;值越低,则打印速度越慢,分辨率越高。" -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "已打印支撑结构走线之间的距离。 该设置通过支撑密度计算。" +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "起始层高" -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." -msgstr "从打印物到支撑底部的距离。注意这个会上调到下一个层高。" +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "起始层高(以毫米为单位)。起始层越厚,与打印平台的粘着越轻松。" -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "从支撑顶部到打印品的距离。" +msgctxt "line_width label" +msgid "Line Width" +msgstr "走线宽度" -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." -msgstr "支撑结构顶部/底部到打印物的距离。这个间隙提供了清除模型打印后支撑的空间。模型下方的最顶层支撑层可能是常规层的一小部分。" +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "单一走线宽度。 一般而言,每条走线的宽度应与喷嘴的宽度对应。 但是,稍微降低此值可以产生更好的打印成果。" -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "每条填充走线后插入的空驶距离,让填充物更好地粘着到壁上。 此选项与填充重叠类似,但没有挤出,且仅位于填充走线的一端。" +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "走线宽度(壁)" -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "插入外壁后的空驶距离,旨在更好地隐藏 Z 缝。" +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "单一壁线宽度。" -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "防风罩在 X/Y 方向与打印品的距离。" +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "走线宽度(外壁)" -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "渗出罩在 X/Y 方向距打印品的距离。" +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "最外壁线宽度。 降低此值,可打印出更高水平的细节。" -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "支撑结构在 X/Y 方向距悬垂的距离。" +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "走线宽度(内壁)" -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "支撑结构在 X/Y 方向距打印品的距离。" +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "适用于所有壁线(最外壁线除外)的单一壁线宽度。" -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "移动距离点,使路径平滑" +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "走线宽度(顶层 / 底层)" -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "移动距离点,使路径平滑" +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "单一顶层/底层走线宽度。" -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "不要生成小于此面积的填充区域(使用皮肤取代)。" +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "走线宽度(填充)" -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "防风罩高度" +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "单一填充走线宽度。" -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "防风罩限制" +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "走线宽度(Skirt / Brim)" -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "防风罩 X/Y 距离" +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "单一 skirt(裙摆)或 brim(边缘)走线宽度。" -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "下拉式支撑网格" +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "走线宽度(支撑结构)" -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "双重挤出" +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "单一支撑结构走线宽度。" -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "类圆形" +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "走线宽度(支撑接触面)" -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "启用加速度控制" +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "支撑顶板或底板单一走线宽度。" -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "启用连桥设置" +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "支撑顶板走线宽度" -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "启用滑行" +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "单一支撑顶板走线宽度。" -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "启用锥形支撑" +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "支撑底板走线宽度" -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "启用防风罩" +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "单一支撑底板走线宽度。" -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "启用流体运动" +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "装填塔走线宽度" -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "启用熨平" +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "单一装填走线宽度。" -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "启用抖动速度控制" +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "起始层走线宽度" -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "启用喷嘴温度控制" +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "第一层走线宽度乘数。 增大此乘数可改善热床粘着。" -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "启用渗出罩" +msgctxt "shell label" +msgid "Walls" +msgstr "墙" -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "启用装填光点" +msgctxt "shell description" +msgid "Shell" +msgstr "外壳" -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "启用装填塔" +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "壁挤出机" -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "开启打印冷却" +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "用于打印壁的挤出机组。 用于多重挤出。" -msgctxt "ppr_enable label" -msgid "Enable Print Process Reporting" -msgstr "" +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "外壁挤出机" -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "启用回抽" +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "用于打印外壁的挤出机组。 用于多重挤出。" -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "启用支撑 Brim" +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "内壁挤出机" -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "启用支撑底板" +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "用于打印内壁的挤出机组。 用于多重挤出。" -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "启用支撑接触面" +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "壁厚" + +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "水平方向的壁厚度。 此值除以壁线宽度定义壁数量。" -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "启用支撑顶板" +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "壁走线次数" -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "启用空驶加速度" +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "壁数量。 在按壁厚计算时,该值舍入为整数。" -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "启用空驶抖动速度" +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "壁过渡长度" -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "启用外部渗出罩。 这将在模型周围创建一个外壳,如果与第一个喷嘴处于相同的高度,则可能会擦拭第二个喷嘴。" +msgctxt "wall_transition_length description" +msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." +msgstr "当随着零件变薄而在不同数量的壁之间过渡时,会分配一定数量的间距来分割或连接壁走线。" -msgctxt "ppr_enable description" -msgid "Enable print process reporting for setting threshold values for possible fault detection." -msgstr "" +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "壁分派次数" -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "使最顶层蒙皮图层(暴露在空气中)的小区域(最多“小顶部/底部宽度”)用墙壁填充,而不是默认图案。" +msgctxt "wall_distribution_count description" +msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." +msgstr "从中心开始计数的壁数量,需要在这些壁上传播变化。较小的值意味着不更改外壁的宽度。" -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "启用当 X 或 Y 轴的速度变化时调整打印头的抖动速度。 提高抖动速度可以通过以打印质量为代价来缩短打印时间。" +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "壁过渡阈值角度" -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "启用调整打印头加速度。 提高加速度可以通过以打印质量为代价来缩短打印时间。" +msgctxt "wall_transition_angle description" +msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." +msgstr "在奇数和偶数壁之间创建过渡时。角度大于此设置的楔形将没有过渡,并且不会在中心打印壁来填充剩余空间。减少此设置会减少这些中心壁的数量和长度,但可能会留下空隙或挤出过多。" -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "打印时启用打印冷却风扇。 风扇可以在层时间较短和有桥接/悬垂的层上提高打印质量。" +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "壁过渡筛选距离" -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "结束 G-code" +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "如果要在不同数量的壁之间快速连续地来回过渡,那么根本不要过渡。如果这些过渡的距离之和小于此距离,则移除过渡。" -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "耗材末端清除长度" +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "壁过渡筛选边距" -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "耗材末端清除速度" +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "防止在多一个壁和少一个壁之间来回过渡。此边距扩展走线宽度的范围,介于 [最小壁走线宽度 - 边距,2 * 最小壁走线宽度 + 边距] 之间。增加此边距将减少过渡数量,从而减少挤出启动/停止次数和行程时间。但是,较大的走线宽度变化会导致挤出不足或挤出过多的问题。" -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "强制围绕模型打印 Brim,即使该空间本该由支撑占据。此操作会将第一层的某些支撑区域替换为 Brim 区域。" +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "外壁擦嘴长度" -msgctxt "brim_location option everywhere" -msgid "Everywhere" -msgstr "" +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "插入外壁后的空驶距离,旨在更好地隐藏 Z 缝。" -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "全部支撑" +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "外壁嵌入" -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "不包含" +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "应用在外壁路径上的嵌入。 如果外壁小于喷嘴,并且在内壁之后打印,则使用该偏移量来使喷嘴中的孔与内壁而不是模型外部重叠。" -msgctxt "experimental label" -msgid "Experimental" -msgstr "实验性" +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "优化壁打印顺序" -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "外露缝隙" +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "优化墙壁印刷的顺序,以减少回撤的数量和旅行的距离。大多数部件会从启用这个功能中受益,但有些可能会花费更长的时间,所以请将打印时间估算与不优化进行比较。第一层在选择边缘作为构建板附着力类型时没有进行优化。" -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "广泛缝合" +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "壁顺序" -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "广泛缝合尝试通过接触多边形来闭合孔洞,以此缝合网格中的开孔。 此选项可能会产生大量的处理时间。" +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "确定打印壁的顺序。先打印外壁有助于提高尺寸精度,因为内壁的误差不会传播到外壁。不过,在打印悬垂对象时,后打印外壁可以实现更好的堆叠。当总内壁数量不均匀时,“中心最后线”总是最后打印。" -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "额外填充壁计数" +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "从内到外" -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "额外皮肤壁计数" +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "从外到内" -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "喷嘴切换后的额外装填材料。" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "交替备用壁" -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "挤出机 X 轴坐标" +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "每隔一层打印一个额外的壁。 通过这种方法,填充物会卡在这些额外的壁之间,从而产生更强韧的打印质量。" -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "挤出机 Y 轴起始位置" +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "最小壁走线宽度" -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "挤出机初始 Z 轴位置" +msgctxt "min_wall_line_width description" +msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." +msgstr "对于一倍或两倍于喷嘴孔径的薄结构,需要更改走线宽度以遵循模型的厚度。此设置控制壁允许的最小走线宽度。同样,最小走线宽度内在地决定了最大走线宽度,因为我们在某些几何厚度中从 N 壁过渡到 N+1 壁时,N 壁宽而 N+1 壁窄。允许的最大壁走线宽度是最小壁走线宽度的两倍。" -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "挤出器共用加热器" +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "最小偶数壁走线宽度" -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "挤出器共用喷嘴" +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "普通多边形墙的最小走线宽度。此设置确定我们从打印单根薄壁走线切换到打印两根壁走线时的模型厚度。更高的最小偶数壁走线宽度会带来更高的最大奇数壁走线宽度。最大偶数壁走线宽度计算方法是:外壁走线宽度 + 0.5 * 最小奇数壁走线宽度。" -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "挤出冷却速度调节器" +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "最小奇数壁走线宽度" -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "基于速度校正系数的挤出宽度。在 0% 时,移动速度保持在打印速度不变。在 100% 时,将调整移动速度以使流量(以 mm³/s 为单位)保持恒定,即以两倍的速度打印正常线宽一半的线条,以一半的速度打印两倍宽的线条。大于 100% 的值有助于为挤出宽线所需的更高压力提供补偿。" +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "中间走线空隙填料多线壁的最小走线宽度。此设置确定在什么模型厚度下,我们从打印两根壁走线切换到打印两个外壁并在中间打印一个中心壁。更高的最小奇数壁走线宽度会带来更高的最大偶数壁走线宽度。最大奇数壁走线宽度计算方法是:2 * 最小偶数壁走线宽度。" -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "风扇速度" +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "打印薄壁" -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "风扇速度覆盖" +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "打印在水平面上比喷嘴尺寸更薄的模型部件。" -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "将使用微小特征速度打印小于此长度的特征轮廓。" +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "最小特征尺寸" -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "尚未完全充实的功能。" +msgctxt "min_feature_size description" +msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." +msgstr "薄特征的最小厚度。将不打印比此值更薄的模型特征,而比最小特征尺寸更厚的特征将加宽到最小壁走线宽度。" -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "进料装置驱动轮的直径" +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "最小薄壁走线宽度" -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "最终打印温度" +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "用于替换模型薄特征(根据最小特征尺寸)的壁的宽度。如果最小壁走线宽度比特征的厚度要薄,则壁将与特征本身一样厚。" -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "固件收回" +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "水平扩展" -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "第一层支撑挤出机" +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "应用到每一层所有多边形的偏移量。 正数值可以补偿过大的孔洞;负数值可以补偿过小的孔洞。" -msgctxt "material_flow label" -msgid "Flow" -msgstr "流量" +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "起始层水平扩展" -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "流量均衡比" +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "应用到第一层所有多边形的偏移量。 负数值可以补偿第一层的压扁量(被称为“象脚”)。" -msgctxt "flow_anomaly_limit label" -msgid "Flow Limit" -msgstr "" +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "孔洞水平扩展" -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "流量补偿因子" +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "当大于零时,“孔水平膨胀”是应用于每层所有孔的偏移量。正值会增加孔的大小,负值会减少孔的大小。当此设置启用时,可以使用“孔水平膨胀最大直径”进一步细化。" -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "流量补偿最大挤出偏移值" +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "孔洞水平扩展最大直径" -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "流量温度图" +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "大于零时,孔洞水平扩展会逐渐适应小孔洞(小孔洞可以扩展更多)。设为零时,孔洞水平扩展可以应用于所有孔洞。大于孔洞水平扩展最大直径时,孔洞不会被扩展。" -msgctxt "flow_warn_limit label" -msgid "Flow Warning" -msgstr "" +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Z 缝对齐" -msgctxt "material_flow_layer_0 description" -msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." -msgstr "第一层的流量补偿:起始层挤出的材料量乘以此值。" +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "一层中每条路径的起点。 当连续多层的路径从相同点开始时,则打印物上会显示一条垂直缝隙。 如果将这些路径靠近一个用户指定的位置对齐,则缝隙最容易移除。 如果随机放置,则路径起点的不精准度将较不明显。 采用最短的路径时,打印将更为快速。" -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "第一层底部走线的流量补偿" +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "用户指定" -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "填充走线的流量补偿。" +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "最短" -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "支撑顶板或底板走线的流量补偿。" +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "随机" -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "打印顶部区域走线的流量补偿。" +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "最尖角" -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "装填塔走线的流量补偿。" +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Z 缝位置" -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "裙边或边缘走线的流量补偿。" +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "在该位置附近开始打印层中各个部分。" -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "支撑底板走线的流量补偿。" +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "左后方" -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "支撑顶板走线的流量补偿。" +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "返回" -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "支撑结构走线的流量补偿。" +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "右后方" -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "第一层最外壁走线的流量补偿。" +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "右侧" -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "最外壁走线的流量补偿。" +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "右前方" -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "" +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "前方" -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "" +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "左前方" -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "顶部/底部走线的流量补偿。" +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "左侧" -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "适用于所有壁走线(最外壁走线除外)的流量补偿,但仅适用于第一层。" +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "Z 缝 X" -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "适用于所有壁走线(最外壁走线除外)的流量补偿。" +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "位置的 X 轴坐标,在该位置附近开始打印层中各个部分。" -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "壁走线的流量补偿。" +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Z 缝 Y" -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "流量补偿:挤出的材料量乘以此值。" +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "位置的 Y 轴坐标,在该位置附近开始打印层中各个部分。" -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "流体运动角" +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "缝隙角偏好设置" -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "流体运动移动距离" +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "控制模型轮廓上的角是否影响缝隙的位置。“无”表示各个角不影响缝隙位置。“隐藏缝隙”会使缝隙更可能出现在内侧角上。“外露缝隙”会使缝隙更可能出现在外侧角上。“隐藏或外露缝隙”会使缝隙更可能出现在内侧或外侧角上。“智能隐藏”允许缝隙出现在内侧和外侧角上,如适当,会更多地出现在内侧角上。" -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "流体运动小距离" +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "无" -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "冲洗清除长度" +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "隐藏缝隙" -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "冲洗清除速度" +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "外露缝隙" -msgctxt "min_wall_line_width description" -msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." -msgstr "对于一倍或两倍于喷嘴孔径的薄结构,需要更改走线宽度以遵循模型的厚度。此设置控制壁允许的最小走线宽度。同样,最小走线宽度内在地决定了最大走线宽度,因为我们在某些几何厚度中从 N 壁过渡到 N+1 壁时,N 壁宽而 N+1 壁窄。允许的最大壁走线宽度是最小壁走线宽度的两倍。" +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "隐藏或外露缝隙" -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "前方" +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "智能隐藏" -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "左前方" +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Z 缝相对" -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "右前方" +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "启用时,Z 缝坐标为相对于各个部分中心的值。 禁用时,坐标定义打印平台上的一个绝对位置。" -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "完整" +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "顶 / 底层" -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "模糊皮肤" +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "顶 / 底层" -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "模糊皮肤密度" +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "顶部皮肤挤出机" -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "仅外部模糊皮肤" +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "用于打印最顶部皮肤的挤出机组。 用于多重挤出。" -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "模糊皮肤点距离" +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "顶部表面皮肤层" -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "模糊皮肤厚度" +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "最顶部皮肤层数。 通常只需一层最顶层就足以生成较高质量的顶部表面。" -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "G-code 风格" +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "顶部表面皮肤线宽" -msgctxt "machine_end_gcode description" -msgid "" -"G-code commands to be executed at the very end - separated by \n" -"." -msgstr "" -"在结束前执行的 G-code 命令 - 以 \n" -" 分行。" +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "打印顶部区域单一走线宽度。" -msgctxt "machine_start_gcode description" -msgid "" -"G-code commands to be executed at the very start - separated by \n" -"." -msgstr "" -"在开始时执行的 G-code 命令 - 以 \n" -" 分行。" +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "顶部表面皮肤图案" -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "材料 GUID,此项为自动设置。" +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "最顶层图案。" -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "十字轴高度" +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "走线" -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "生成互锁结构" +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "同心" -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "生成支撑" +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "锯齿形" -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "在第一层的支撑填充区域内生成一个 Brim。此 Brim 在支撑下方打印,而非周围。启用此设置会增强支撑与打印平台的附着。" +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "单调顶部表面顺序" -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "在模型和支撑之间生成一个密集的接触面。 这会在打印模型所在的支撑顶部和模型停放的支撑底部创建一个皮肤。" +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "按照一定的顺序打印顶部表面走线,使它们始终在一个方向上与相邻的走线重叠。这需要更长一些的打印时间,但会使平面看起来更一致。" -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "在支撑底部和模型之间生成一个密集的材料板。 这会在模型和支撑之间形成一个皮肤。" +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "顶部表面皮肤走线方向" -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "在支撑顶部和模型之间生成一个密集的材料板。 这会在模型和支撑之间形成一个皮肤。" +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "当顶部表面皮肤层采用线条或锯齿状图案时使用的整数走线方向的列表。 列表中的元素随层的进度依次使用,当达到列表末尾时,它将从头开始。 列表项以逗号分隔,整个列表包含在方括号中。 默认是一个空列表,即意味着使用传统的默认角度(45 和 135 度)。" -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "在模型的悬垂(Overhangs)部分生成支撑结构。若不这样做,这些部分在打印时将倒塌。" +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "顶部/底部挤出机" -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "玻璃" +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "用于打印顶部和底部皮肤的挤出机组。 用于多重挤出。" -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "再次经过顶部表面,但这次挤出的材料非常少。这意味着将进一步熔化顶部的塑料,形成更平滑的表面。喷嘴室中的压力保持很高,确保表面折痕中也能填充材料,以保证细节。" +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "顶层 / 底层厚度" -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "渐进填充步阶高度" +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "打印品中顶层/底层的厚度。 该值除以层高定义顶层/底层的数量。" -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "渐进填充步阶" +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "顶层厚度" -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "渐进支撑填充步阶高度" +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "打印品中顶层的厚度。 该值除以层高定义顶层的数量。" -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "渐进支撑填充步阶" +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "顶部层数" -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "当由于最短印层时间而导致打印速度降低时,温度将逐渐降低至该温度。" +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "顶层的数量。 在按顶层厚度计算时,该值舍入为整数。" -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "网格" +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "底层厚度" -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "网格" +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "打印品中底层的厚度。 此值除以层高定义底层数量。" -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "网格" +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "底部层数" -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "网格" +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "底层的数量。 在按底层厚度计算时,该值舍入为整数。" -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "网格" +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "初始底层数" -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" +msgctxt "initial_bottom_layers description" +msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "从构建板向上算起的初始底层数。在按底层厚度计算时,该值四舍五入为整数。" -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "" +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "顶部 / 底部走线图案" -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "螺旋二十四面体" +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "顶层/底层图案。" -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "螺旋二十四面体" +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "直线" -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "具有构建体积温度稳定性" +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "同心圆" -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "有加热打印平台" +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "锯齿状" -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "升温速度" +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "底层图案起始层" -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "加热区长度" +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "打印品底部第一层上的图案。" -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "防风罩的高度限制。 在此高度以上不会打印任何防风罩。" +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "直线" -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "隐藏缝隙" +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "同心圆" -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "隐藏或外露缝隙" +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "锯齿状" -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "孔洞水平扩展" +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "连接顶部/底部多边形" -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "孔洞水平扩展最大直径" +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "在顶部/底部皮肤路径互相紧靠运行的地方连接它们。对于同心图案,启用此设置可大大减少空驶时间,但由于连接可在填充中途发生,此功能可能会降低顶部表面质量。" -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "将使用微小特征速度打印直径小于此尺寸的孔和零件轮廓。" +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "单调顶部/底部顺序" -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "水平扩展" +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "按照一定的顺序打印顶部/底部走线,使它们始终在一个方向上与相邻的走线重叠。这需要更长一些的打印时间,但会使平面看起来更一致。" -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "水平缩放因子收缩补偿" +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "顶层/底层走线方向" -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "耗材受热拉伸但不断裂的极限长度。" +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "当顶层/底层采用线条或锯齿状图案时使用的整数走线方向的列表。 列表中的元素随层的进度依次使用,当达到列表末尾时,它将从头开始。 列表项以逗号分隔,整个列表包含在方括号中。 默认是一个空列表,即意味着使用传统的默认角度(45 和 135 度)。" -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "材料在停止渗出前所需的回抽长度。" +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "顶宽/底宽较小" -msgctxt "flow_rate_extrusion_offset_factor description" -msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." -msgstr "为补偿流量变化而将线材移动的距离,在挤出一秒钟的情况下占线材移动距离的百分比。" +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "顶部/底部小区域用墙壁填充,而不是默认顶部/底部图案。这有助于避免剧烈运动。最顶层(暴露在空气中)默认关闭此选项(见“表面顶部/底部小区域”)。" -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "为完全脱落耗材而抽回耗材的长度。" +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "表面顶部/底部小区域" -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "耗材在回抽过程中恰好折断的回抽速率。" +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "使最顶层蒙皮图层(暴露在空气中)的小区域(最多“小顶部/底部宽度”)用墙壁填充,而不是默认图案。" -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "在耗材用于防渗出过程中材料所需的回抽速率。" +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Z 间隙内无表层" -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "将空线轴替换为使用相同材料的新线轴后,装填材料的速度如何。" +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "当模型中只有几个分层有微小垂直间隙时,通常狭窄空间的分层周围应有表层。如果垂直间隙非常小,则启用此设置不生成表层。这缩短了打印时间和切片时间,但从技术方面看,会使填充物暴露在空气中。" -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "切换到其他材料后,装填材料的速度如何。" +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "额外皮肤壁计数" + +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "用多个同心线代替顶部/底部图案的最外面部分。 使用一条或两条线改善从填充材料开始的顶板。" -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "材料能在干燥存储区之外安全存放多长时间。" +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "启用熨平" -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "步进电机前进多少步将导致在 X 方向移动一毫米。" +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "再次经过顶部表面,但这次挤出的材料非常少。这意味着将进一步熔化顶部的塑料,形成更平滑的表面。喷嘴室中的压力保持很高,确保表面折痕中也能填充材料,以保证细节。" -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "步进电机前进多少步将导致在 Y 方向移动一毫米。" +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "仅熨平最高层" -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "步进电机前进多少步将导致在 Z 方向移动一毫米。" +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "仅在网格的最后一层执行熨平。 如果较低的层不需要平滑的表面效果,这将节省时间。" -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "步进电机前进多少步将导致进料器轮绕其周长移动一毫米。" +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "熨平图案" -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "将空线轴替换为使用相同材料的新线轴后,需要使用多少材料从喷嘴中清除之前的材料(以长丝长度计)。" +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "用于熨平顶部表面的图案。" -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "切换到其他材料时,需要使用多少材料从喷嘴中清除之前的材料(以长丝长度计)。" +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "同心" -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "假定在打印机启动 gcode 脚本完成后,每个挤出器的细丝从共用喷嘴头缩回多少;该值应等于或大于喷嘴导管公共部分的长度。" +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "锯齿形" -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "重叠时支撑接触面和支撑的交互方式。目前仅对支撑顶板实施。" +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "单调熨平顺序" -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "将分支放在模型上时,分支的必要高度。防止出现小的支撑光点。分支支撑着支撑顶板时,此设置将被忽略。" +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "按照一定的顺序打印熨平走线,使它们始终在一个方向上与相邻的走线重叠。这需要更长一些的打印时间,但会使平面看起来更一致。" -msgctxt "bridge_skin_support_threshold description" -msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." -msgstr "如果受支撑的表面区域小于整个区域的这一百分比,则使用连桥设置打印。否则,使用正常表面设置打印。" +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "熨平走线间距" -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "如果刀具路径段偏离一般运动的角度大于这个角度,使路径平滑。" +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "熨平走线之间的距离。" -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "如果启用此选项,则使用以下设置打印净空区域上方第二层和第三层。否则,将使用正常设置打印这些层。" +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "熨平流量" -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "如果要在不同数量的壁之间快速连续地来回过渡,那么根本不要过渡。如果这些过渡的距离之和小于此距离,则移除过渡。" +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "熨平期间相对于正常皮肤走线的挤出材料量。 保持喷嘴填充状态有助于填充顶层表面的一些缝隙,但如填充过多则会导致表面上过度挤出和光点。" -msgctxt "raft_base_margin description" -msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "熨平嵌入" -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "如果启用了 raft,则这是指也被提供了 raft 的模型周围的额外 raft 区域。 增加此留白将创建强度更大的 raft,但会使用更多材料,为打印品留下的空间更少。" +msgctxt "ironing_inset description" +msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." +msgstr "与模型边缘保持的距离。 一直熨平至网格的边缘可能导致打印品出现锯齿状边缘。" -msgctxt "raft_interface_margin description" -msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "熨平速度" -msgctxt "raft_surface_margin description" -msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "通过顶部表面的速度。" -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "忽略由网格内的重叠体积产生的内部几何,并将多个部分作为一个打印。 这可能会导致意外的内部孔洞消失。" +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "熨平加速度" -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "包含打印平台温度" +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "执行熨平的加速度。" -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "包含材料温度" +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "熨平抖动速度" -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "包含" +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "执行熨平时的最大瞬时速度变化。" -msgctxt "infill description" -msgid "Infill" -msgstr "填充" +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "皮肤重叠百分比" -msgctxt "infill label" -msgid "Infill" -msgstr "填充" +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "调整壁和皮肤中心线的(端点)之间的重叠量,以皮肤线走线和最内壁的线宽度的百分比表示。稍微重叠可让各个壁与皮肤牢固连接。请注意,对于相等的皮肤和壁线宽度,任何超过 50% 的百分比可能已经导致任何皮肤越过壁,因为在该点,皮肤挤出机的喷嘴位置可能已经达到越过壁中间的位置。" -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "填充加速度" +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "皮肤重叠" -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "先填充物后壁" +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "调整壁和皮肤中心线的(端点)之间的重叠量。稍微重叠可让各个壁与皮肤牢固连接。请注意,对于相等的皮肤和壁线宽度,任何超过壁宽度一半的值可能已经导致任何皮肤越过壁,因为在该点,皮肤挤出机的喷嘴位置可能已经达到越过壁中间的位置。" -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "填充密度" +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "肤移除宽度" -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "填充挤出机" +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "将被移除的皮肤区域的最大宽度。 小于此值的所有皮肤区域都将消失。 这有助于限制在模型的倾斜表面打印顶部/底部皮肤时所耗用的时间和材料。" -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "填充流量" +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "顶部皮肤移除宽度" -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "填充抖动速度" +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "将被移除的顶部皮肤区域的最大宽度。 小于此值的所有皮肤区域都将消失。 这有助于限制在模型的倾斜表面打印顶部皮肤时所耗用的时间和材料。" -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "填充层厚度" +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "底部皮肤移除宽度" -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "填充走线方向" +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "将被移除的底部皮肤区域的最大宽度。 小于此值的所有皮肤区域都将消失。 这有助于限制在模型的倾斜表面打印底部皮肤时所耗用的时间和材料。" -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "填充走线距离" +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "皮肤扩展距离" -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "填充走线乘数" +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "皮肤扩展到填充物中的距离。 值越大会让皮肤与填充图案更好地附着,并让相邻层的层壁与皮肤更好地粘着。 较低的值将节省所用的材料量。" -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "走线宽度(填充)" +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "顶部皮肤扩展距离" -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "填充网格" +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "顶部皮肤扩展到填充物中的距离。 值越大会让皮肤与填充图案更好地附着,并让上方层的层壁与皮肤更好地粘着。 较低的值将节省所用的材料量。" -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "填充悬垂角" +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "底部皮肤扩展距离" -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "填充重叠" +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "底部皮肤扩展到填充物中的距离。 值越大会让皮肤与填充图案更好地附着,并让皮肤与下面层的壁更好地粘着。 较低的值将节省所用的材料量。" -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "填充重叠百分比" +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "最大扩展皮肤角度" -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "填充图案" +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "如果对象的顶部和/或底部表面的角度大于此设置,则不要扩展其顶部/底部皮肤。这会避免扩展在模型表面有接近垂直的坡度时所形成的狭窄皮肤区域。0° 的角为水平,将导致不扩展任何皮肤,而 90° 的角为垂直,将导致扩展所有皮肤。" -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "填充速度" +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "最小扩展皮肤宽度" -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "填充支撑" +msgctxt "min_skin_width_for_expansion description" +msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." +msgstr "如果皮肤区域宽度小于此值,则不会扩展。 这会避免扩展在模型表面的坡度接近垂直时所形成的狭窄皮肤区域。" + +msgctxt "infill label" +msgid "Infill" +msgstr "填充" -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "填充物空驶优化" +msgctxt "infill description" +msgid "Infill" +msgstr "填充" -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "填充物擦拭距离" +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "填充挤出机" -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "填充 X 轴偏移量" +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "用于打印填充的挤出机组。 用于多重挤出。" -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "填充 Y 轴偏移量" +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "填充密度" -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "初始底层数" +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "调整打印填充的密度。" -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "起始风扇速度" +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "填充走线距离" -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "起始层加速度" +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "打印填充走线之间的距离。 该设置是通过填充密度和填充线宽度计算。" -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "起始层底部流量" +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "填充图案" -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "起始层直径" +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "打印的填充材料的图案。直线和锯齿形填充交替在各层上变换方向,从而降低材料成本。每层都完整地打印网格、三角形、三六边形、立方体、八角形、四分之一立方体、十字和同心图案。螺旋二十四面体、立方体、四分之一立方体和八角形填充随每层变化,以使各方向的强度分布更均衡。闪电形填充尝试通过仅支撑物体顶部,将填充程度降至最低。" -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "起始层流量" +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "网格" -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "起始层高" +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "直线" -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "起始层水平扩展" +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "三角形" -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "起始层内壁流量" +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "内六角" -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "起始层抖动速度" +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "立方体" -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "起始层走线宽度" +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "立方体分区" -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "起始层外壁流量" +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "八角形" -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "起始层打印加速度" +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "四面体" -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "起始层打印抖动速度" +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "同心圆" -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "起始层打印速度" +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "锯齿状" -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "起始层速度" +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "交叉" -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "起始层支撑走线距离" +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "交叉 3D" -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "起始层空驶加速度" +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "螺旋二十四面体" -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "起始层空驶抖动速度" +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "闪电形" -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "起始层空驶速度" +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "连接填充走线" -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "起始层 Z 重叠" +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "使用沿内壁形状的走线连接填充图案与内壁相接的各端。启用此设置会使填充更好地粘着在壁上,减少填充物效果对垂直表面质量的影响。禁用此设置可减少使用的材料量。" -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "起始打印温度" +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "连接填充多边形" -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "内壁加速度" +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "在填充路径互相紧靠运行的地方连接它们。对于包含若干闭合多边形的填充图案,启用此设置可大大减少空驶时间。" -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "内壁挤出机" +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "填充走线方向" -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "内壁抖动速度" +msgctxt "infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." +msgstr "要使用的整数走线方向列表。 列表中的元素随层的进度依次使用,当达到列表末尾时,它将从头开始。 列表项以逗号分隔,整个列表包含在方括号中。 默认是一个空列表,即意味着使用传统的默认角度(线条和锯齿形图案为 45 和 135 度,其他所有图案为 45 度)。" -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "速度(内壁)" +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "填充 X 轴偏移量" -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "内壁流量" +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "填充图案沿 X 轴移动此距离。" -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "走线宽度(内壁)" +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "填充 Y 轴偏移量" -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "应用在外壁路径上的嵌入。 如果外壁小于喷嘴,并且在内壁之后打印,则使用该偏移量来使喷嘴中的孔与内壁而不是模型外部重叠。" +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "填充图案沿 Y 轴移动此距离。" -msgctxt "brim_location option inside" -msgid "Inside Only" -msgstr "" +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "开始随机化填充" -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "从内到外" +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "先随机化打印哪条填充线。这可以防止一个部分变强,但会导致一次额外的空驶。" -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "偏好接触面走线" +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "填充走线乘数" -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "偏好接触面" +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "将每个填充走线转换成这种多重走线。额外走线互相不交叉,而是互相避开。这使得填充更严格,但会增加打印时间和材料使用。" -msgctxt "prime_tower_mode option interleaved" -msgid "Interleaved" -msgstr "" +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "额外填充壁计数" -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "互锁梁层数" +msgctxt "infill_wall_line_count description" +msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "在填充区域周围添加额外壁。此类壁可减少顶部/底部皮肤走线,这意味着只要付出一些额外的材料就可以使用更少的顶部/底部皮肤层达到相同的质量。" +"在适当配置的情况下,此功能可结合连接填充多边形以将所有填充物连接到单一挤出路径而无需空驶或回抽。" -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "互锁梁宽度" +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "立方体分区外壳" -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "互锁边界回避" +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "从每个立方体的中心对半径进行添加,以检查模型的边界,进而决定是否应对此立方体进行分区。 值越大则模型边界附近的小型立方体外壳越厚。" -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "互锁深度" +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "填充重叠百分比" -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "互锁结构方向" +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "填充物和壁之间的重叠量占填充走线宽度的百分比。稍微重叠可让各个壁与填充物牢固连接。" -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "仅熨平最高层" +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "填充重叠" -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "熨平加速度" +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "填充物和壁之间的重叠量。 稍微重叠可让各个壁与填充物牢固连接。" -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "熨平流量" +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "填充物擦拭距离" -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "熨平嵌入" +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "每条填充走线后插入的空驶距离,让填充物更好地粘着到壁上。 此选项与填充重叠类似,但没有挤出,且仅位于填充走线的一端。" -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "熨平抖动速度" +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "填充层厚度" -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "熨平走线间距" +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "填充材料每层的厚度。 该值应始终为层高的乘数,否则应进行舍入。" -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "熨平图案" +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "渐进填充步阶" -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "熨平速度" +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "在进入顶部表面以下时,将填充密度减少一半的次数。 越靠近顶面的区域密度越高,最高达到填充密度。" -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "位于中心" +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "渐进填充步阶高度" -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "支撑材料" +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "在切换至密度的一半前指定密度的填充高度。" -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "该材料为受热后脱落干净的类型(晶体),还是会产生长交织状聚合物链的类型(非晶体)?" +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "先填充物后壁" -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "这种材料通常被用作打印的支撑材料吗" +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "打印壁前先打印填充物。 先打印壁可能产生更精确的壁,但悬垂打印质量会较差。 先打印填充会产生更牢固的壁,但有时候填充图案会透过表面显现出来。" -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "仅抖动部件的轮廓,而不抖动部件的孔。" +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "最小填充区域" -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "保留断开连接的面" +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "不要生成小于此面积的填充区域(使用皮肤取代)。" -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "层高" +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "填充支撑" -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "层开始 X" +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "只在模型的顶部支持打印填充结构。这样可以减少打印时间和材料的使用,但是会导致不一致的对象强度。" -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "层开始 Y" +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "填充悬垂角" -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "基础 Raft 层的层厚度。 该层应为与打印机打印平台牢固粘着的厚层。" +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "添加内填充的内部覆盖的最小角度。在一个0的值中,完全填满了填充,90将不提供任何填充。" -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "中间 Raft 层的层厚度。" +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "皮肤边缘支撑厚度" -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "顶部 Raft 层的层厚度。" +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "支撑皮肤边缘的额外填充物的厚度。" -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "每隔 N 毫米在支撑线之间略去一个连接,让支撑结构更容易脱离。" +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "皮肤边缘支撑层数" -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "左侧" +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "支撑皮肤边缘的填充物的层数。" -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "打印头提升" +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "闪电形填充支撑角" -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "闪电形" +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "决定闪电形填充层何时必须支撑其上方的任何物体。在给定的层厚度下测得的角度。" msgctxt "lightning_infill_overhang_angle label" msgid "Lightning Infill Overhang Angle" msgstr "闪电形填充悬垂角" +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "决定闪电形填充层何时必须支撑其上方的模型。在给定的厚度下测得的角度。" + msgctxt "lightning_infill_prune_angle label" msgid "Lightning Infill Prune Angle" msgstr "闪电形填充修剪角" +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "为节省材料,填充线的端点将被缩短。此设置为这些线的端点形成的悬垂角度。" + msgctxt "lightning_infill_straightening_angle label" msgid "Lightning Infill Straightening Angle" msgstr "闪电形填充矫直角" -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "闪电形填充支撑角" - -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "限制分支长度" - -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "限制每个分支从其支撑点移动的距离。这样可以使支撑更坚固,但会增加分支的数量(进而增加材料的使用/打印时间)" - -msgctxt "bv_temp_warn_limit description" -msgid "Limit on Build Volume Temperature warning for detection." -msgstr "" - -msgctxt "bv_temp_anomaly_limit description" -msgid "Limit on Build Volume temperature Anomaly for detection." -msgstr "" - -msgctxt "print_temp_anomaly_limit description" -msgid "Limit on Print Temperature anomaly for detection." -msgstr "" - -msgctxt "print_temp_warn_limit description" -msgid "Limit on Print temperature warning for detection." -msgstr "" - -msgctxt "flow_anomaly_limit description" -msgid "Limit on flow anomaly for detection." -msgstr "" - -msgctxt "flow_warn_limit description" -msgid "Limit on the flow warning for detection." -msgstr "" - -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "将此网格的体积限制在其他网格内。 您可以使用它来制作采用不同的设置以及完全不同的挤出机的网格打印的特定区域。" - -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "有限" - -msgctxt "line_width label" -msgid "Line Width" -msgstr "走线宽度" - -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "直线" +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "为节省打印时间,填充线将被拉直。这是整条填充线上允许的最大悬垂角度。" -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "走线" +msgctxt "material label" +msgid "Material" +msgstr "材料" -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "走线" +msgctxt "material description" +msgid "Material" +msgstr "材料" -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "走线" +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "默认打印温度" -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "走线" +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "用于打印的默认温度。 应为材料的\"基本\"温度。 所有其他打印温度均应使用基于此值的偏移量" -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "直线" +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "打印体积温度" -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "直线" +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "打印环境温度。若为 0,将不会调整构建体积温度。" -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "直线" +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "打印温度" -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "用于打印的温度。" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "机器" +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "打印温度起始层" -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "机器深度" +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer." +msgstr "打印第一层时使用的温度。" -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "机器头和风扇多边形" +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "起始打印温度" -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "机器高度" +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "加热到可以开始打印的打印温度时的最低温度。" -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "机器类型" +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "最终打印温度" -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "机器宽度" +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "打印结束前开始冷却的温度。" -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "机器详细设置" +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "挤出冷却速度调节器" -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "使悬垂可打印" +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "挤出时喷嘴冷却的额外速度。 使用相同的值表示挤出过程中进行加热时的加热速度损失。" -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "让彼此接触的网格略微重叠。 这会让它们更好地粘合在一起。" +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "默认打印平台温度" -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "使底部的支撑区域小于悬垂处的支撑区域。" +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "用于加热打印平台的默认温度。这应该作为打印平台的“基础”温度。所有其他打印温度均应基于此值进行调整" -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "在支撑网格下方的所有位置进行支撑,让支撑网格中没有悬垂。" +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "打印平台温度" -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "使挤出机主要位置为绝对值,而不是与上一已知打印头位置的相对值。" +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "用于加热构建板的温度。如果此项为 0,则保持不加热构建板。" -msgctxt "layer_0_z_overlap description" -msgid "" -"Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" -"It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" -msgstr "" +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "打印平台温度起始层" -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "使网格更适合 3D 打印。" +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "打印第一层时用于加热构建板的温度。如果此项为 0,则在打印第一层期间保持不加热构建板。" -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" +msgctxt "material_adhesion_tendency label" +msgid "Adhesion Tendency" +msgstr "附着倾向" -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "表面附着倾向。" -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin(容积)" +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "表面能" -msgctxt "material description" -msgid "Material" -msgstr "材料" +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "表面能。" -msgctxt "material label" -msgid "Material" -msgstr "材料" +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "缩放因子收缩补偿" -msgctxt "material_brand label" -msgid "Material Brand" -msgstr "" +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "为了补偿材料在冷却时的收缩,将用此因子缩放模型。" -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "材料 GUID" +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "水平缩放因子收缩补偿" -msgctxt "material_type label" -msgid "Material Type" -msgstr "" +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "为了补偿材料在冷却时的收缩,将用此因子在 XY 方向(水平)上缩放模型。" -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "擦拭之间的材料量" +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "垂直缩放因子收缩补偿" -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "最大梳距,无收缩" +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "为了补偿材料在冷却时的收缩,将用此因子在 Z 方向(垂直)上缩放模型。" -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "X 轴最大加速度" +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "晶体材料" -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "轴最大加速度" +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "该材料为受热后脱落干净的类型(晶体),还是会产生长交织状聚合物链的类型(非晶体)?" -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Z 轴最大加速度" +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "防渗出回抽位置" -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "最大分支角度" +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "材料在停止渗出前所需的回抽长度。" -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "最大偏移量" +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "防渗出回抽速度" -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "最大挤出面积偏移量" +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "在耗材用于防渗出过程中材料所需的回抽速率。" -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "最大风扇速度" +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "断裂缓冲期回抽位置" -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "挤出电机最大加速度" +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "耗材受热拉伸但不断裂的极限长度。" -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "最大模型角度" +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "断裂缓冲期回抽速度" -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "最大悬垂孔面积" +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "耗材在回抽过程中恰好折断的回抽速率。" -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "最长停放持续时间" +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "断裂缓冲期温度" -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "最大分辨率" +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "用于清除材料的温度,应大致等于可达到的最高打印温度。" -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "最大回抽计数" +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "断裂回抽位置" -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "最大扩展皮肤角度" +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "为完全脱落耗材而抽回耗材的长度。" -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "E 轴最大速度" +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "断裂回抽速度" -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "X 轴最大速度" +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "为完全脱落耗材而抽回耗材的速度。" -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Y 轴最大速度" +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "折断温度" -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Z 轴最大速度" +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "耗材在完全脱落时的温度。" + +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "冲洗清除速度" -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "最大塔支撑直径" +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "切换到其他材料后,装填材料的速度如何。" -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "空走的最大分辨率" +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "冲洗清除长度" -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "X 轴方向电机的最大加速度" +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "切换到其他材料时,需要使用多少材料从喷嘴中清除之前的材料(以长丝长度计)。" -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Y 轴方向电机的最大加速度。" +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "耗材末端清除速度" -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Z 轴方向电机的最大加速度。" +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "将空线轴替换为使用相同材料的新线轴后,装填材料的速度如何。" -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "耗材电机的最大加速度。" +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "耗材末端清除长度" -msgctxt "bridge_sparse_infill_max_density description" -msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." -msgstr "填充物的最大密度被视为稀疏。稀疏填充物表面被视为不受支持,因此可被视为连桥表面。" +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "将空线轴替换为使用相同材料的新线轴后,需要使用多少材料从喷嘴中清除之前的材料(以长丝长度计)。" -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "将由专门的支撑塔支撑的小区域 X/Y 轴方向的最大直径。" +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "最长停放持续时间" -msgctxt "max_extrusion_before_wipe description" -msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." -msgstr "在开始下一轮喷嘴擦拭之前可挤出的最大材料量。如果此值小于层中所需的材料量,则该设置在此层中无效,即每层仅限擦拭一次。" +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "材料能在干燥存储区之外安全存放多长时间。" -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "合并网格重叠" +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "空载移动系数" -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "网格修复" +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "表示长丝在进料器和喷嘴室之间被压缩多少的系数,用于确定针对长丝开关将材料移动的距离。" -msgctxt "mesh_position_x label" -msgid "Mesh Position X" -msgstr "网格X位置" +msgctxt "material_flow label" +msgid "Flow" +msgstr "流量" -msgctxt "mesh_position_y label" -msgid "Mesh Position Y" -msgstr "网格Y位置" +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "流量补偿:挤出的材料量乘以此值。" -msgctxt "mesh_position_z label" -msgid "Mesh Position Z" -msgstr "网格Z位置" +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "壁流量" -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "网格处理等级" +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "壁走线的流量补偿。" -msgctxt "mesh_rotation_matrix label" -msgid "Mesh Rotation Matrix" -msgstr "网格旋转矩阵" +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "外壁流量" -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Middle" +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "最外壁走线的流量补偿。" -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "最小模具宽度" +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "内壁流量" -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "最短时间待机温度" +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "适用于所有壁走线(最外壁走线除外)的流量补偿。" -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "最小桥壁长度" +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "顶面外壁挤出量" -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "最小偶数壁走线宽度" +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "在顶面最外墙线挤出量补偿。" -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "最小挤出距离范围" +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "顶面内壁挤出量" -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "最小特征尺寸" +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "除最外层墙线之外,在所有墙线的顶面墙线挤出量补偿。" -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "最小进料速率" +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "顶部/底部流量" -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "模型的最小高度" +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "顶部/底部走线的流量补偿。" -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "最小填充区域" +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "顶部表层流量" -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "最短单层冷却时间" +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "打印顶部区域走线的流量补偿。" -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "最小奇数壁走线宽度" +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "填充流量" -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "最小多边形周长" +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "填充走线的流量补偿。" -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "最小扩展皮肤宽度" +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "裙边/边缘流量" -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "最小风扇速度" +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "裙边或边缘走线的流量补偿。" -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "最小支撑面积" +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "支撑流量" -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "最小支撑底板面积" +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "支撑结构走线的流量补偿。" -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "最小支撑接触面面积" +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "支撑接触面流量" -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "最小支撑顶板面积" +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "支撑顶板或底板走线的流量补偿。" -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "最小支撑 X/Y 距离" +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "支撑顶板流量" -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "最小薄壁走线宽度" +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "支撑顶板走线的流量补偿。" -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "滑行前最小体积" +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "支撑底板流量" -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "最小壁走线宽度" +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "支撑底板走线的流量补偿。" -msgctxt "minimum_interface_area description" -msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "支撑接触面多边形的最小面积。面积小于此值的多边形将打印为一般支撑。" +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "装填塔流量" -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "支撑多边形的最小面积。将不会生成面积小于此值的多边形。" +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "装填塔走线的流量补偿。" -msgctxt "minimum_bottom_area description" -msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "支撑底板的最小面积。面积小于此值的多边形将打印为一般支撑。" +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "起始层流量" -msgctxt "minimum_roof_area description" -msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "支撑顶板的最小面积。面积小于此值的多边形将打印为一般支撑。" +msgctxt "material_flow_layer_0 description" +msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." +msgstr "第一层的流量补偿:起始层挤出的材料量乘以此值。" + +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "起始层内壁流量" -msgctxt "min_feature_size description" -msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." -msgstr "薄特征的最小厚度。将不打印比此值更薄的模型特征,而比最小特征尺寸更厚的特征将加宽到最小壁走线宽度。" +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "适用于所有壁走线(最外壁走线除外)的流量补偿,但仅适用于第一层。" -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "锥形支撑区域底部被缩小至的最小宽度。 宽度较小可导致不稳定的支撑结构。" +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "起始层外壁流量" -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "模具" +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "第一层最外壁走线的流量补偿。" -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "模具角度" +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "起始层底部流量" -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "模具顶板高度" +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "第一层底部走线的流量补偿" -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "单调熨平顺序" +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "待机温度" -msgctxt "raft_surface_monotonic label" -msgid "Monotonic Raft Top Surface Order" -msgstr "" +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "当另一个喷嘴正用于打印时该喷嘴的温度。" -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "单调顶部表面顺序" +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "支撑材料" -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "单调顶部/底部顺序" +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "这种材料通常被用作打印的支撑材料吗" -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "多个 Skirt 走线帮助为小型模型更好地装填您的挤出部分。 将其设为 0 将禁用 skirt。" +msgctxt "speed label" +msgid "Speed" +msgstr "速度" -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "第一层走线宽度乘数。 增大此乘数可改善热床粘着。" +msgctxt "speed description" +msgid "Speed" +msgstr "速度" -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "空载移动系数" +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "打印速度" -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Z 间隙内无表层" +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "打印发生的速度。" -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "打印模型的非传统方式。" +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "填充速度" -msgctxt "adhesion_type option none" -msgid "None" -msgstr "无" +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "打印填充的速度。" -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "无" +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "速度(壁)" -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "正常" +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "打印壁的速度。" -msgctxt "prime_tower_mode option normal" -msgid "Normal" -msgstr "" +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "速度(外壁)" -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "正常" +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "打印最外壁的速度。 以较低速度打印外壁可改善最终皮肤质量。 但是,如果内壁速度和外壁速度差距过大,则将对质量产生负面影响。" -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "一般情况下,Cura 会尝试缝合网格中的小孔,并移除层中有大孔的部分。启用此选项将保留那些无法缝合的部分。当其他所有方法都无法产生正确的 G-code 时,最后才应考虑该选项。" +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "速度(内壁)" -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "除了皮肤" +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "打印所有内壁的速度。 以比外壁更快的速度打印内壁将减少打印时间。 将该值设为外壁速度和填充速度之间也可行。" -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "不在外表面上" +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "顶面外壁速度" -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "喷嘴角度" +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "顶面最外壁打印完成后的速度" -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "喷嘴直径" +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "顶面内壁速度" -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "喷嘴不允许区域" +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "顶面内壁打印完成后的速度" -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "喷嘴 ID" +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "顶部表面皮肤速度" -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "喷嘴长度" +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "打印顶部表面皮肤层的速度。" -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "喷嘴切换额外装填量" +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "速度(顶部 / 底部)" -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "喷嘴切换装填速度" +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "打印顶部/底部层的速度。" -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "喷嘴切换回抽速度" +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "速度(支撑结构)" -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "喷嘴切换回抽距离" +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "打印支撑结构的速度。 以更高的速度打印支撑可极大地缩短打印时间。 支撑结构的表面质量并不重要,因为在打印后会将其移除。" -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "喷嘴切换回抽速度" +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "速度(支撑填充)" -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "挤出机数目" +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "打印支撑填充物的速度。 以较低的速度打印填充物可改善稳定性。" -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "已启用的挤出机数目" +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "支撑接触面速度" -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "较慢层的数量" +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "打印支撑顶板和底板的速度。 以较低的速度打印可以改善悬垂质量。" -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "已启用的挤出机组数目;软件自动设置" +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "支撑顶板速度" -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "挤出机组数目。 挤出机组是指进料装置、鲍登管和喷嘴的组合。" +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "打印支撑顶板的速度。 以较低的速度打印可以改善悬垂质量。" -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "在擦拭刷上移动喷嘴的次数。" +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "支撑底板速度" -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "在进入顶部表面以下时,将填充密度减少一半的次数。 越靠近顶面的区域密度越高,最高达到填充密度。" +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "打印支撑底板的速度。 以较低的速度打印可以改善支撑在模型顶部的粘着。" -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "在进入顶层以下时,将支撑填充密度减少一半的次数。 越靠近顶面的区域密度越高,最高达到支撑填充密度。" +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "装填塔速度" -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "八角形" +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "打印装填塔的速度。 以较慢速度打印装填塔可以在不同耗材之间的粘着欠佳时使其更加稳定。" -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "关" +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "空驶速度" -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "应用在模型 x 方向上的偏移量。" +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "进行空驶的速度。" -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "应用在模型 y 方向上的偏移量。" +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "起始层速度" -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "应用在模型 z 方向上的偏移量。 利用此选项,您可以执行过去被称为“模型沉降”的操作。" +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "起始层的速度。建议采用较低的值以便改善与构建板的粘着。不会影响构建板自身的粘着结构,如边沿和筏。" -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "挤出机偏移量" +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "起始层打印速度" -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "在打印平台上(如可能)" +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "打印起始层的速度。 建议采用较低的值以便改善与打印平台的粘着。" -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "在模型上(如需要)" +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "起始层空驶速度" -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "排队打印" +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "起始层中的空驶速度。 建议采用较低的值,以防止将之前打印的部分从打印平台上拉离。 该设置的值可以根据空驶速度和打印速度的比率自动计算得出。" -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "仅在移动到无法通过“空驶时避开已打印部分”选项的水平操作避开的已打印部分上方时执行 Z 抬升。" +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Skirt/Brim 速度" -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "仅在网格的最后一层执行熨平。 如果较低的层不需要平滑的表面效果,这将节省时间。" +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "打印 skirt 和 brim 的速度。 一般情况是以起始层速度打印这些部分,但有时候您可能想要以不同速度来打印 skirt 或 brim。" -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "渗出罩角度" +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Z 抬升速度" -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "渗出罩距离" +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "Z 垂直移动实现抬升的速度。一般小于打印速度,因为打印平台或打印机的十字轴较难移动。" -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "最佳分支范围" +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "较慢层的数量" -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "优化壁打印顺序" +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "前几层的打印速度比模型的其他层慢,以便实现与打印平台的更好粘着,并改善整体的打印成功率。 该速度在这些层中会逐渐增加。" -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "优化墙壁印刷的顺序,以减少回撤的数量和旅行的距离。大多数部件会从启用这个功能中受益,但有些可能会花费更长的时间,所以请将打印时间估算与不优化进行比较。第一层在选择边缘作为构建板附着力类型时没有进行优化。" +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "流量均衡比" -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "喷嘴外径" +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "基于速度校正系数的挤出宽度。在 0% 时,移动速度保持在打印速度不变。在 100% 时,将调整移动速度以使流量(以 mm³/s 为单位)保持恒定,即以两倍的速度打印正常线宽一半的线条,以一半的速度打印两倍宽的线条。大于 100% 的值有助于为挤出宽线所需的更高压力提供补偿。" -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "外壁加速度" +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "启用加速度控制" -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "外壁挤出机" +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "启用调整打印头加速度。 提高加速度可以通过以打印质量为代价来缩短打印时间。" -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "外壁流量" +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "启用空驶加速度" -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "外壁嵌入" +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "空驶时使用单独的加速度。如果禁用,空驶将使用打印线在目的地的加速度值。" -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "外壁抖动速度" +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "打印加速度" -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "走线宽度(外壁)" +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "打印发生的加速度。" -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "速度(外壁)" +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "填充加速度" -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "外壁擦嘴长度" +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "打印填充物的加速度。" -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "" +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "壁加速度" -msgctxt "brim_location option outside" -msgid "Outside Only" -msgstr "" +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "打印壁的加速度。" -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "从外到内" +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "外壁加速度" -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "悬垂壁角度" +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "打印最外壁的加速度。" -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "悬垂壁速度" +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "内壁加速度" -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "悬垂壁将以其正常打印速度的此百分比打印。" +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "打印所有内壁的加速度。" -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "在未回抽后暂停。" +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "顶面外壁加速度" -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "打印连桥表面和桥壁时使用的风扇百分比速度。" +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "顶面最外壁打印完成后的加速度" -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "打印桥梁第二层表面时使用的风扇百分比速度。" +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "顶面内壁加速度" -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "打印支撑正上方表面区域时使用的风扇百分比速度。使用高风扇速度可能使支撑更容易移除。" +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "顶面内壁打印完成后的加速度" -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "打印桥梁第三层表面时使用的风扇百分比速度。" +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "顶部表面皮肤加速度" -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "切片层中周长小于此数值的多边形将被滤除。以切片时间为代价,较低的值可实现较高分辨率的网格。它主要用于高分辨率 SLA 打印机和包含大量细节的极小 3D 模型。" +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "打印顶部表面皮肤层的加速度。" -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "偏好分支角度" +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "顶部/底部加速度" -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "防止在多一个壁和少一个壁之间来回过渡。此边距扩展走线宽度的范围,介于 [最小壁走线宽度 - 边距,2 * 最小壁走线宽度 + 边距] 之间。增加此边距将减少过渡数量,从而减少挤出启动/停止次数和行程时间。但是,较大的走线宽度变化会导致挤出不足或挤出过多的问题。" +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "打印顶部/底部层的加速度。" -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "装填塔加速度" +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "支撑加速度" -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Base" -msgstr "底漆塔座" +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "打印支撑结构的加速度。" -msgctxt "prime_tower_base_height label" -msgid "Prime Tower Base Height" -msgstr "底漆塔座高度" +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "支撑填充加速度" -msgctxt "prime_tower_base_size label" -msgid "Prime Tower Base Size" -msgstr "底漆塔座尺寸" +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "打印支撑填充物的加速度。" -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Slope" -msgstr "Prime Tower 底座斜度" +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "支撑接触面加速度" -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "装填塔流量" +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "打印支撑顶板和底板的加速度。 以较低的加速度打印可以改善悬垂质量。" -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "装填塔抖动速度" +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "支撑顶板加速度" + +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "打印支撑顶板的加速度。 以较低的加速度打印可以改善悬垂质量。" -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "装填塔走线宽度" +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "支撑底板加速度" -msgctxt "prime_tower_max_bridging_distance label" -msgid "Prime Tower Maximum Bridging Distance" -msgstr "" +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "打印支撑底板的加速度。 以较低的加速度打印可以改善支撑在模型顶部的粘着。" -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "装填塔最小体积" +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "装填塔加速度" -msgctxt "prime_tower_raft_base_line_spacing label" -msgid "Prime Tower Raft Line Spacing" -msgstr "底漆塔筏线间距" +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "打印装填塔的加速度。" -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "装填塔尺寸" +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "空驶加速度" -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "装填塔速度" +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "进行空驶的加速度。" -msgctxt "prime_tower_mode label" -msgid "Prime Tower Type" -msgstr "" +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "起始层加速度" -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "装填塔 X 位置" +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "起始层的加速度。" -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "装填塔 Y 位置" +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "起始层打印加速度" -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "打印加速度" +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "打印起始层时的加速度。" -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "打印抖动速度" +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "起始层空驶加速度" -msgctxt "ppr label" -msgid "Print Process Reporting" -msgstr "" +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "起始层中的空驶加速度。" -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "打印序列" +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Skirt/Brim 加速度" -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "打印速度" +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "打印 skirt 和 brim 的加速度。 一般情况是以起始层加速度打印这些部分,但有时候您可能想要以不同加速度来打印 skirt 或 brim。" -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "打印薄壁" +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "启用抖动速度控制" -msgctxt "brim_location description" -msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." -msgstr "" +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "启用当 X 或 Y 轴的速度变化时调整打印头的抖动速度。 提高抖动速度可以通过以打印质量为代价来缩短打印时间。" -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "在打印品相邻处打印一个塔,用于在每个喷嘴切换后装填材料。" +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "启用空驶抖动速度" -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "只在模型的顶部支持打印填充结构。这样可以减少打印时间和材料的使用,但是会导致不一致的对象强度。" +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "空驶时使用单独的抖动速度。如果禁用,空驶将使用打印线在目的地的抖动速度值。" -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "按照一定的顺序打印熨平走线,使它们始终在一个方向上与相邻的走线重叠。这需要更长一些的打印时间,但会使平面看起来更一致。" +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "打印抖动速度" -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "将模型作为模具打印,可进行铸造,以便获取与打印平台上的模型类似的模型。" +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "打印头的最大瞬时速度变化。" -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "打印在水平面上比喷嘴尺寸更薄的模型部件。" +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "填充抖动速度" -msgctxt "raft_surface_monotonic description" -msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." -msgstr "" +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "打印填充物时的最大瞬时速度变化。" -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "打印桥梁第二层表面时使用的打印速度。" +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "壁抖动速度" -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "打印桥梁第三层表面时使用的打印速度。" +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "打印壁时的最大瞬时速度变化。" -msgctxt "print_temp_anomaly_limit label" -msgid "Print temperature Limit" -msgstr "" +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "外壁抖动速度" -msgctxt "print_temp_warn_limit label" -msgid "Print temperature Warning" -msgstr "" +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "打印最外壁时的最大瞬时速度变化。" -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "打印壁前先打印填充物。 先打印壁可能产生更精确的壁,但悬垂打印质量会较差。 先打印填充会产生更牢固的壁,但有时候填充图案会透过表面显现出来。" +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "内壁抖动速度" -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "按照一定的顺序打印顶部表面走线,使它们始终在一个方向上与相邻的走线重叠。这需要更长一些的打印时间,但会使平面看起来更一致。" +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "打印所有内壁时的最大瞬时速度变化。" -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "按照一定的顺序打印顶部/底部走线,使它们始终在一个方向上与相邻的走线重叠。这需要更长一些的打印时间,但会使平面看起来更一致。" +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "顶面外壁冲击力" -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "打印温度" +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "打印顶面最外壁时的最大瞬时速度变化。" -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "打印温度起始层" +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "顶面内壁冲击力" -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "多层打印最内层裙边走线,便于移除裙边。" +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "打印顶面内壁时的最大瞬时速度变化。" -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "每隔一层打印一个额外的壁。 通过这种方法,填充物会卡在这些额外的壁之间,从而产生更强韧的打印质量。" +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "顶部表面皮肤抖动速度" -msgctxt "resolution label" -msgid "Quality" -msgstr "质量" +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "打印顶部表面皮肤层时的最大瞬时速度变化。" -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "四面体" +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "顶部/底部抖动速度" -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Raft" +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "打印顶部/底部层时的最大瞬时速度变化。" -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Raft 空隙" +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "支撑抖动速度" -msgctxt "raft_base_margin label" -msgid "Raft Base Extra Margin" -msgstr "" +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "打印支撑结构时的最大瞬时速度变化。" -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Raft 底层挤出器" +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "支撑填充抖动速度" -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Raft 基础风扇速度" +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "打印支撑填充物时的最大瞬时速度变化。" -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Raft 基础走线间距" +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "支撑接触面抖动速度" -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Raft 基础走线宽度" +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "打印支撑顶板和底板的最大瞬时速度变化。" -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Raft 基础打印加速度" +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "支撑顶板抖动速度" -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Raft 基础打印抖动速度" +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "打印支撑顶板的最大瞬时速度变化。" -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Raft 基础打印速度" +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "支撑底板抖动速度" -msgctxt "raft_base_smoothing label" -msgid "Raft Base Smoothing" -msgstr "" +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "打印支撑底板时的最大瞬时速度变化。" -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Raft 基础厚度" +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "装填塔抖动速度" -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Raft 底板壁数" +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "打印装填塔时的最大瞬时速度变化。" -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Raft 留白" +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "空驶抖动速度" -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Raft 风扇速度" +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "进行空驶时的最大瞬时速度变化。" -msgctxt "raft_interface_margin label" -msgid "Raft Middle Extra Margin" -msgstr "" +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "起始层抖动速度" -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Raft 中间挤出器" +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "起始层的打印最大瞬时速度变化。" -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Raft 中间风扇速度" +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "起始层打印抖动速度" -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Raft 中间层" +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "打印起始层时的最大瞬时速度变化。" -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Raft 中间线宽度" +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "起始层空驶抖动速度" -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Raft 中间打印加速度" +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "起始层中的空驶加速度。" -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Raft 中间打印抖动速度" +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Skirt/Brim 抖动速度" -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Raft 中间打印速度" +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "打印 skirt 和 brim 时的最大瞬时速度变化。" -msgctxt "raft_interface_smoothing label" -msgid "Raft Middle Smoothing" -msgstr "" +msgctxt "travel label" +msgid "Travel" +msgstr "移动" -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Raft 中间间距" +msgctxt "travel description" +msgid "travel" +msgstr "空驶" -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Raft 中间厚度" +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "启用回抽" -msgctxt "raft_interface_wall_count label" -msgid "Raft Middle Wall Count" -msgstr "" +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "当喷嘴移动到非打印区域上方时回抽耗材。" -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Raft 打印加速度" +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "层变化时回抽" -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Raft 打印抖动速度" +msgctxt "retract_at_layer_change description" +msgid "Retract the filament when the nozzle is moving to the next layer." +msgstr "当喷嘴移动到下一层时回抽耗材。" -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Raft 打印速度" +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "回抽距离" -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Raft 平滑度" +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "回抽移动期间回抽的材料长度。" -msgctxt "raft_surface_margin label" -msgid "Raft Top Extra Margin" -msgstr "" +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "回抽速度" -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Raft 顶层挤出器" +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "回抽移动期间耗材回抽和装填的速度。" -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Raft 顶部风扇速度" +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "回抽速度" -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Raft 顶层厚度" +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "回抽移动期间耗材回抽的速度。" -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Raft 顶层" +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "回抽装填速度" -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Raft 顶线宽度" +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "回抽移动期间耗材装填的速度。" -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Raft 顶部打印加速度" +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "回抽额外装填量" -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Raft 顶部打印抖动速度" +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "有些材料可能会在空驶过程中渗出,可以在这里对其进行补偿。" -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Raft 顶部打印速度" +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "回抽最小空驶" -msgctxt "raft_surface_smoothing label" -msgid "Raft Top Smoothing" -msgstr "" +msgctxt "retraction_min_travel description" +msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." +msgstr "回抽发生所需的最小空驶距离。 这有助于在较小区域内实现更少的回抽。" -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Raft 顶部间距" +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "最大回抽计数" -msgctxt "raft_surface_wall_count label" -msgid "Raft Top Wall Count" -msgstr "" +msgctxt "retraction_count_max description" +msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." +msgstr "此设置限制在最小挤出距离范围内发生的回抽数。 此范围内的额外回抽将会忽略。 这避免了在同一件耗材上重复回抽,从而导致耗材变扁并引起磨损问题。" -msgctxt "raft_wall_count label" -msgid "Raft Wall Count" -msgstr "" +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "最小挤出距离范围" -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "随机" +msgctxt "retraction_extrusion_window description" +msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." +msgstr "执行最大回抽计数的范围。 该值应与回抽距离大致相同,以便一次回抽通过同一块材料的次数得到有效限制。" -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "开始随机化填充" +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "梳理模式" -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "先随机化打印哪条填充线。这可以防止一个部分变强,但会导致一次额外的空驶。" +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "梳理可在空驶时让喷嘴保持在已打印区域内。这会使空驶距离稍微延长,但可减少回抽需求。如果关闭梳理,则材料将回抽,且喷嘴沿着直线移动到下一个点。也可以避免顶部/底部皮肤区域的梳理或仅在填充物内进行梳理。" -msgctxt "magic_fuzzy_skin_enabled description" -msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." -msgstr "在打印外墙时随机抖动,使表面具有粗糙和模糊的外观。" +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "关" -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "矩形" +msgctxt "retraction_combing option all" +msgid "All" +msgstr "所有" -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "正常风扇速度" +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "不在外表面上" + +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "除了皮肤" -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "正常风扇速度(高度)" +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "在填充物内" -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "正常风扇速度(层)" +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "最大梳距,无收缩" -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "正常/最大风扇速度阈值" +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "当大于零时,比这段距离更长的梳理空驶将会使用回抽。如果设置为零,则没有最大值,梳理空驶将不会使用回抽。" -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "相对挤出" +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "在外壁前回抽" -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "移除所有孔洞" +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "在移动开始打印外壁时始终回抽。" -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "移除空白第一层" +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "空驶时避开已打印部分" -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "移除网格交叉" +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "喷嘴会在空驶时避开已打印的部分。 此选项仅在启用梳理功能时可用。" -msgctxt "raft_base_remove_inside_corners label" -msgid "Remove Raft Base Inside Corners" -msgstr "" +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "避免移动时支撑" -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "移除 Raft 内侧角" +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "在空走时,喷嘴避免了已打印的支撑。只有在启用了梳理时才可以使用此选项。" -msgctxt "raft_interface_remove_inside_corners label" -msgid "Remove Raft Middle Inside Corners" -msgstr "" +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "空驶避让距离" -msgctxt "raft_surface_remove_inside_corners label" -msgid "Remove Raft Top Inside Corners" -msgstr "" +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "喷嘴和已打印部分之间在空驶时避让的距离。" -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "移除多个网格互相重叠的区域。 如果合并的双材料模型彼此重叠,此选项可能适用。" +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "层开始 X" -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "移除第一个打印层下方的空白层(如果存在)。如果“切片公差”设置被设为“独占”或“中间”,禁用此设置可能导致空白第一层。" +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "位置的 X 轴坐标,在该位置附近找到开始打印每层的部分。" -msgctxt "raft_base_remove_inside_corners description" -msgid "Remove inside corners from the raft base, causing the raft to become convex." -msgstr "" +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "层开始 Y" -msgctxt "raft_interface_remove_inside_corners description" -msgid "Remove inside corners from the raft middle part, causing the raft to become convex." -msgstr "" +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "位置的 Y 轴坐标,在该位置附近找到开始打印每层的部分。" -msgctxt "raft_surface_remove_inside_corners description" -msgid "Remove inside corners from the raft top part, causing the raft to become convex." -msgstr "" +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "回抽时 Z 抬升" -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "从 Raft 上移除内侧角,这会使 Raft 变得凸出。" +msgctxt "retraction_hop_enabled description" +msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "每当回抽完成时,打印平台会降低以便在喷嘴和打印品之间形成空隙。 它可以防止喷嘴在空驶过程中撞到打印品,降低将打印品从打印平台撞掉的几率。" -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "移除每层的孔洞,仅保留外部形状。 这会忽略任何不可见的内部几何。 但是,也会忽略可从上方或下方看到的层孔洞。" +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "仅在已打印部分上 Z 抬升" -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "仅在移动到无法通过“空驶时避开已打印部分”选项的水平操作避开的已打印部分上方时执行 Z 抬升。" -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Z 抬升高度" -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "用多个同心线代替顶部/底部图案的最外面部分。 使用一条或两条线改善从填充材料开始的顶板。" +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "执行 Z 抬升的高度差。" -msgctxt "ppr description" -msgid "Reporting events that go out of set thresholds" -msgstr "" +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "挤出机切换后的 Z 抬升" -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "停留偏好" +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "当机器从一个挤出机切换到另一个时,打印平台会降低以便在喷嘴和打印品之间形成空隙。 这将防止喷嘴在打印品外部留下渗出物。" -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "在外壁前回抽" +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "挤出机切换后的 Z 抬升高度" -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "层变化时回抽" +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "挤出机切换后执行 Z 抬升的高度差。" -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "当喷嘴移动到非打印区域上方时回抽耗材。" +msgctxt "cooling label" +msgid "Cooling" +msgstr "冷却" -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "当喷嘴移动到非打印区域上方时回抽耗材。" +msgctxt "cooling description" +msgid "Cooling" +msgstr "冷却" -msgctxt "retract_at_layer_change description" -msgid "Retract the filament when the nozzle is moving to the next layer." -msgstr "当喷嘴移动到下一层时回抽耗材。" +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "开启打印冷却" -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "回抽距离" +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "打印时启用打印冷却风扇。 风扇可以在层时间较短和有桥接/悬垂的层上提高打印质量。" -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "回抽额外装填量" +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "风扇速度" -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "回抽最小空驶" +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "打印冷却风扇旋转的速度。" -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "回抽装填速度" +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "正常风扇速度" -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "回抽速度" +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "风扇旋转达到阈值前的速度。 当一层的打印速度超过阈值时,风扇速度逐渐朝最大风扇速度增加。" -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "回抽速度" +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "最大风扇速度" -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "右侧" +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "风扇在最小层时间上旋转的速度。 当达到阈值时,风扇速度在正常风扇速度和最大风扇速度之间逐渐增加。" -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "在 0 到 1 范围内设置风扇速度" +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "正常/最大风扇速度阈值" -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "在 0 到 1 范围内设置风扇速度,而不是 0 到 256 之间。" +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "设定正常风扇速度和最大风扇速度之间阈值的层时间。 打印速度低于此时间的层使用正常风扇速度。 对于更快的层,风扇速度逐渐增加到最大风扇速度。" -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "缩放因子收缩补偿" +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "起始风扇速度" -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "场景具有支撑网格" +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "风扇在打印开始时旋转的速度。 在随后的层中,风扇速度逐渐增加到对应“正常风扇速度(高度)”的水平。" -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "缝隙角偏好设置" +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "正常风扇速度(高度)" -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "手动设置打印顺序" +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "风扇以正常速度旋转的高度。 在下方的层中,风扇速度逐渐从起始风扇速度增加到正常风扇速度。" -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "设置防风罩的高度。 选择在模型的完整高度或有限高度处打印防风罩。" +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "正常风扇速度(层)" + +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "风扇以正常风扇速度旋转的层。 如果设置了正常风扇速度(高度),则该值将被计算并舍入为整数。" -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "利用多个挤出机进行打印所用的设置。" +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "最短单层冷却时间" -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "未从 Cura 前端调用 CuraEngine 时使用的设置。" +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "在层中花费的最少时间。 这会迫使打印机减速,以便至少在一层中消耗此处所规定的时间。 这会让已打印材料充分冷却后再打印下一层。 如果提升头被禁用,且如果不这么做会违反“最小速度“,则层所花时间可能仍会少于最小层时间。" -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "共用喷嘴初始缩回" +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "最小风扇速度" -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "最尖角" +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "最低打印速度,排除因最短层时间而减速。 当打印机减速过多时,喷嘴中的压力将过低并导致较差的打印质量。" -msgctxt "shell description" -msgid "Shell" -msgstr "外壳" +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "打印头提升" -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "最短" +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "当因最低层时间达到最低速度时,将打印头从打印品上提升,并等候达到最低层时间。" -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "显示打印机变体" +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "小型层打印温度" -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "皮肤边缘支撑层数" +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "当由于最短印层时间而导致打印速度降低时,温度将逐渐降低至该温度。" -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "皮肤边缘支撑厚度" +msgctxt "support label" +msgid "Support" +msgstr "支撑" -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "皮肤扩展距离" +msgctxt "support description" +msgid "Support" +msgstr "支撑" -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "皮肤重叠" +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "生成支撑" -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "皮肤重叠百分比" +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "在模型的悬垂(Overhangs)部分生成支撑结构。若不这样做,这些部分在打印时将倒塌。" -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "肤移除宽度" +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "支撑用挤出机" -msgctxt "min_skin_width_for_expansion description" -msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." -msgstr "如果皮肤区域宽度小于此值,则不会扩展。 这会避免扩展在模型表面的坡度接近垂直时所形成的狭窄皮肤区域。" +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "用于打印支撑的挤出机组。 用于多重挤出。" -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "每隔 N 个连接线跳过一个连接,让支撑结构更容易脱离。" +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "支撑填充挤出机" -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "跳过部分支撑线连接,让支撑结构更容易脱离。 此设置适用于锯齿形支撑结构填充图案。" +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "用于打印支撑填充物的挤出机组。 用于多重挤出。" -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Skirt" +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "第一层支撑挤出机" -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Skirt 距离" +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "用于打印支撑填充物第一层的挤出机组。 用于多重挤出。" -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "裙边高度" +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "支撑接触面挤出机" -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Skirt 走线计数" +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "用于打印支撑顶板和底板的挤出机组。 用于多重挤出。" -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Skirt/Brim 加速度" +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "支撑顶板挤出机" -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Skirt/Brim 挤出器" +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "用于打印支撑顶板的挤出机组。 用于多重挤出。" -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "裙边/边缘流量" +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "支撑底板挤出机" -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Skirt/Brim 抖动速度" +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "用于打印支撑底板的挤出机组。 用于多重挤出。" -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "走线宽度(Skirt / Brim)" +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "支撑结构" -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Skirt/Brim 最小长度" +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "在可用于产生支撑的方法之间进行选择。“普通”支撑在悬垂部分正下方形成一个支撑结构,并直接垂下这些区域。“树形”支撑形成一些分支,它们朝向在这些分支的尖端上支撑模型的悬垂区域,并使这些分支可缠绕在模型周围以尽可能多地从构建板上支撑它。" -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Skirt/Brim 速度" +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "正常" -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "切片公差" +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "树形" -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "微小特征初始层速度" +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "最大分支角度" -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "微小特征最大长度" +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "围绕模型扩大时,分支的最大角度。使用较小的角度可增加垂直度和稳定性。使用较大的角度可支撑更多结构。" -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "微小特征速度" +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "分支直径" -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "小孔最大尺寸" +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "树形支撑最细分支的直径。较粗的分支更坚固。接近基础的分支会比这更粗。" -msgctxt "cool_min_temperature label" -msgid "Small Layer Printing Temperature" -msgstr "小型层打印温度" +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "主干直径" -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "表面顶部/底部小区域" +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "树形支撑最粗分支的直径。较粗的主干更坚固;较细主干在构建板上占据的空间较小。" -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "顶宽/底宽较小" +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "分支直径角度" -msgctxt "small_feature_speed_factor_0 description" -msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "第一层的微小特征将按正常打印速度的百分比进行打印。缓慢打印有助于粘合和提高准确性。" +msgctxt "support_tree_branch_diameter_angle description" +msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." +msgstr "随着分支朝底部逐渐变粗,分支直径的角度。角度为 0 表明分支全长具有均匀的粗细度。稍微有些角度可以增加树形支撑的稳定性。" -msgctxt "small_feature_speed_factor description" -msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "微小特征将按正常打印速度的百分比进行打印。缓慢打印有助于粘合和提高准确性。" +msgctxt "support_type label" +msgid "Support Placement" +msgstr "支撑放置" -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "顶部/底部小区域用墙壁填充,而不是默认顶部/底部图案。这有助于避免剧烈运动。最顶层(暴露在空气中)默认关闭此选项(见“表面顶部/底部小区域”)。" +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "支撑打印平台" -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "智能边缘" +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "全部支撑" -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "智能隐藏" +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "偏好分支角度" -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "平滑螺旋轮廓" +msgctxt "support_tree_angle_slow description" +msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." +msgstr "不必避开模型时,分支的偏好角度。使用较小的角度可增加垂直度和稳定性。使用较大的角度可以更快合并分支。" -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "平滑螺旋轮廓以减少 Z 缝的可见性(Z 缝于打印品上几乎不可见,但在层视图中仍然可见)。注意:平滑操作将模糊精细的表面细节。" +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "扩大直径以匹配模型" + +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "与接触打印平台的分支合并时,模型必连分支的最大直径可能会扩大。扩大直径可减少打印时间,但会增加模型上的支撑区域" -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "有些材料可能会在空驶过程中渗出,可以在这里对其进行补偿。" +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "模型的最小高度" -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "有些材料可能会在擦拭空驶过程中渗出,可以在这里进行补偿。" +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "将分支放在模型上时,分支的必要高度。防止出现小的支撑光点。分支支撑着支撑顶板时,此设置将被忽略。" -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "特殊模式" +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "起始层直径" -msgctxt "speed description" -msgid "Speed" -msgstr "速度" +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "接触打印平台时,每个分支可能达到的直径。提高床附着力。" -msgctxt "speed label" -msgid "Speed" -msgstr "速度" +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "分支密度" -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "抬升期间移动 Z 轴的速度。" +msgctxt "support_tree_top_rate description" +msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "调整用于生成分支顶端的支撑结构的密度。高数值可以确保悬垂质量更好,但支撑结构会更难去除。用支撑顶板获取极高数值,或者确保顶层的支撑密度同样高。" -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "螺旋打印外轮廓" +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "顶端直径" -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "螺旋打印实现外部边缘的平滑 Z 移动。 这会在整个打印上建立一个稳定的 Z 增量。 该功能会将一个实心模型转变为具有实体底部的单壁打印。 只有在当每一层仅包含一个部分时才应启用此功能。" +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "树形支撑的分支顶端的直径。" -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "待机温度" +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "限制分支长度" -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "开始 G-code" +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "限制每个分支从其支撑点移动的距离。这样可以使支撑更坚固,但会增加分支的数量(进而增加材料的使用/打印时间)" -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "一层中每条路径的起点。 当连续多层的路径从相同点开始时,则打印物上会显示一条垂直缝隙。 如果将这些路径靠近一个用户指定的位置对齐,则缝隙最容易移除。 如果随机放置,则路径起点的不精准度将较不明显。 采用最短的路径时,打印将更为快速。" +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "最佳分支范围" -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "每毫米步数 (E)" +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "建议分支离从其支撑点移动的距离。分支可以违反此值以到达其目的地(打印平台或模型的平面部分)。降低此值可以使支撑更坚固,但会增加分支数量(进而增加材料的使用/打印时间)" -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "每毫米步数 (X)" +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "停留偏好" -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "每毫米步数 (Y)" +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "支撑结构的偏好位置。只要结构不在偏好位置,它们就可能被放在其他区域,即使这意味着它们可能被放在模型上。" -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "每毫米步数 (Z)" +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "在打印平台上(如可能)" -msgctxt "support description" -msgid "Support" -msgstr "支撑" +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "在模型上(如需要)" -msgctxt "support label" -msgid "Support" -msgstr "支撑" +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "支撑悬垂角度" -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "支撑加速度" +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "添加支撑的最小悬垂角度。 当角度为 0° 时,将支撑所有悬垂,当角度为 90° 时,不提供任何支撑。" -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "支撑底部距离" +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "支撑图案" -msgctxt "support_bottom_wall_count label" -msgid "Support Bottom Wall Line Count" -msgstr "支撑底层墙线条数" +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "打印品支撑结构的图案。 提供的不同选项可实现或牢固或易于拆除的支撑。" -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "支撑 Brim 走线次数" +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "走线" -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "支撑 Brim 宽度" +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "网格" -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "支撑块走线数" +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "三角形" -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "支撑块大小" +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "同心" -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "支撑密度" +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "锯齿形" -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "支撑距离优先级" +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "交叉" -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "支撑用挤出机" +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "螺旋二十四面体" -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "支撑底板加速度" +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "支撑墙行数" -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "支撑底板密度" +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "包围支撑的墙的数量。添加一堵墙可以使支持打印更加可靠,并且可以更好地支持挂起,但增加了打印时间和使用的材料。" -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "支撑底板挤出机" +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "支撑接触面墙线条数" -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "支撑底板流量" +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "包围支撑接触面的墙的数量。添加墙可以使支持打印更加可靠,并且可以更好地支持悬垂对象,但增加了打印时间和使用的材料。" -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "支撑底板水平扩展" +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "支撑顶板墙线条数" -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "支撑底板抖动速度" +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "包围支撑接触面顶板的墙的数量。添加墙可以使支持打印更加可靠,并且可以更好地支持悬垂对象,但增加了打印时间和使用的材料。" -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "支撑底板走线方向" +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "支撑底层墙线条数" -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "支撑底板走线距离" +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "包围支撑接触面底板的墙的数量。添加墙可以使支持打印更加可靠,并且可以更好地支持悬垂对象,但增加了打印时间和使用的材料。" -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "支撑底板走线宽度" +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "连接支撑线" -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "支撑底板图案" +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "将支撑线尾端连接在一起。启用此设置会让支撑更为牢固并减少挤出不足,但需要更多材料。" -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "支撑底板速度" +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "连接支撑锯齿形" -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "支撑底板厚度" +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "连接锯齿形。 这将增加锯齿形支撑结构的强度。" -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "支撑流量" +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "支撑密度" -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "支撑水平扩展" +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "调整支撑结构的密度。 较高的值会实现更好的悬垂,但支撑将更加难以移除。" -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "支撑填充加速度" +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "支撑走线距离" -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "支撑填充挤出机" +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "已打印支撑结构走线之间的距离。 该设置通过支撑密度计算。" -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "支撑填充抖动速度" +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "起始层支撑走线距离" -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "支撑填充层厚度" +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "已打印起始层支撑结构走线之间的距离。该设置通过支撑密度计算。" msgctxt "support_infill_angles label" msgid "Support Infill Line Directions" msgstr "支撑填充走线方向" -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "速度(支撑填充)" +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "要使用的整数走线方向列表。列表中的元素随层的进度依次使用,当达到列表末尾时将从头开始。列表项以逗号分隔,整个列表包含在方括号中。“默认“是一个空列表,即意味着使用默认角度 0 度。" -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "支撑接触面加速度" +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "启用支撑 Brim" -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "支撑接触面密度" +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "在第一层的支撑填充区域内生成一个 Brim。此 Brim 在支撑下方打印,而非周围。启用此设置会增强支撑与打印平台的附着。" -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "支撑接触面挤出机" +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "支撑 Brim 宽度" -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "支撑接触面流量" +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "在支撑下方要打印的 Brim 的宽度。较大的 Brim 可增强与打印平台的附着,但也会增加一些额外材料成本。" -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "支撑接触面水平扩展" +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "支撑 Brim 走线次数" -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "支撑接触面抖动速度" +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "用于支撑 Brim 的走线数量。更多 Brim 走线可增强与打印平台的附着,但也会增加一些额外材料成本。" -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "支撑接触面走线方向" +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "支撑 Z 距离" -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "走线宽度(支撑接触面)" +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "支撑结构顶部/底部到打印物的距离。这个间隙提供了清除模型打印后支撑的空间。模型下方的最顶层支撑层可能是常规层的一小部分。" -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "支撑接触面图案" +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "支撑顶部距离" -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "支撑接触面优先级" +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "从支撑顶部到打印品的距离。" -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "支撑接触面速度" +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "支撑底部距离" -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "支撑接触面厚度" +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "从打印物到支撑底部的距离。注意这个会上调到下一个层高。" -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "支撑接触面墙线条数" +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "支撑 X/Y 距离" -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "支撑抖动速度" +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "支撑结构在 X/Y 方向距打印品的距离。" -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "支撑结合部距离" +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "支撑距离优先级" -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "支撑走线距离" +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "支撑 X/Y 距离是否覆盖支撑 Z 距离或反之。 当 X/Y 覆盖 Z 时,X/Y 距离可将支撑从模型上推离,影响与悬垂之间的实际 Z 距离。 我们可以通过不在悬垂周围应用 X/Y 距离来禁用此选项。" -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "走线宽度(支撑结构)" +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y 覆盖 Z" -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "支撑网格" +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z 覆盖 X/Y" -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "支撑悬垂角度" +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "最小支撑 X/Y 距离" -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "支撑图案" +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "支撑结构在 X/Y 方向距悬垂的距离。" -msgctxt "support_type label" -msgid "Support Placement" -msgstr "支撑放置" +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "支撑梯步阶高度" -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "支撑顶板加速度" +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "停留在模型上的支撑阶梯状底部的步阶高度。 较低的值会使支撑更难于移除,但过高的值可能导致不稳定的支撑结构。 设为零可以关闭阶梯状行为。" -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "支撑顶板密度" +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "支撑梯步阶最大宽度" -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "支撑顶板挤出机" +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "停留在模型上的支撑阶梯状底部的最大步阶宽度。 较低的值会使支撑更难于移除,但过高的值可能导致不稳定的支撑结构。" -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "支撑顶板流量" +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "支撑阶梯最小坡度角" -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "支撑顶板水平扩展" +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "使阶梯生效的区域最小坡度。该值较小可在较浅的坡度上更容易去除支撑,但该值过小可能会在模型的其他部分上产生某些很反常的结果。" -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "支撑顶板抖动速度" +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "支撑结合部距离" -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "支撑顶板走线方向" +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "支撑结构间在 X/Y 方向的最大距离。当分离结构之间的距离小于此值时,这些结构将合并为一体。" -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "支撑顶板走线距离" +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "支撑水平扩展" -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "支撑顶板走线宽度" +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "应用到每一层所有支撑多边形的偏移量。 正值可以让支撑区域更平滑,并产生更为牢固的支撑。" -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "支撑顶板图案" +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "支撑填充层厚度" -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "支撑顶板速度" +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "支撑填充材料每层的厚度。 该值应始终为层高的乘数,否则应进行舍入。" -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "支撑顶板厚度" +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "渐进支撑填充步阶" -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "支撑顶板墙线条数" +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "在进入顶层以下时,将支撑填充密度减少一半的次数。 越靠近顶面的区域密度越高,最高达到支撑填充密度。" -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "速度(支撑结构)" +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "渐进支撑填充步阶高度" -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "支撑梯步阶高度" +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "在切换至密度的一半前指定密度的支撑填充高度。" + +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "最小支撑面积" + +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "支撑多边形的最小面积。将不会生成面积小于此值的多边形。" + +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "启用支撑接触面" + +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "在模型和支撑之间生成一个密集的接触面。 这会在打印模型所在的支撑顶部和模型停放的支撑底部创建一个皮肤。" + +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "启用支撑顶板" -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "支撑梯步阶最大宽度" +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "在支撑顶部和模型之间生成一个密集的材料板。 这会在模型和支撑之间形成一个皮肤。" -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "支撑阶梯最小坡度角" +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "启用支撑底板" -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "支撑结构" +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "在支撑底部和模型之间生成一个密集的材料板。 这会在模型和支撑之间形成一个皮肤。" -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "支撑顶部距离" +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "支撑接触面厚度" -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "支撑墙行数" +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "支撑与模型在底部或顶部接触的接触面厚度。" -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "支撑 X/Y 距离" +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "支撑顶板厚度" -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "支撑 Z 距离" +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "支撑顶板的厚度。 这会控制模型所停放的支撑顶部密集层的数量。" -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "偏好支撑线" +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "支撑底板厚度" -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "偏好支撑" +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "支撑底板的厚度。 这会控制支撑所停放的模型顶部区域所打印的密集层数量。" -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "支撑的表面风扇速度" +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "支撑接触面密度" -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "表面" +msgctxt "support_interface_density description" +msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "调整支撑结构顶板和底板的密度。 较高的值会实现更好的悬垂,但支撑将更加难以移除。" -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "表面能" +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "支撑顶板密度" -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "表面模式" +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "支撑结构顶板的密度。 较高的值会实现更好的悬垂,但支撑将更加难以移除。" -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "表面附着倾向。" +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "支撑顶板走线距离" -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "表面能。" +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "已打印支撑顶板走线之间的距离。 该设置是通过支撑顶板密度计算,但可以单独调整。" -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "变换最内层和第二内层侧裙走线的打印顺序。这样可改善侧裙移除。" +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "支撑底板密度" -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "切换为与每个层相交的网格相交体积,以便重叠的网格交织在一起。 关闭此设置将使其中一个网格获得重叠中的所有体积,同时将其从其他网格中移除。" +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "支撑结构底板的密度。 较高的值会在模型顶部产生更好的支撑粘着。" -msgctxt "adaptive_layer_height_threshold description" -msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." -msgstr "两个相邻图层之间的目标水平距离。减小此设置的值会使要使用的图层变薄,从而使图层的边缘距离更近。" +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "支撑底板走线距离" -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "位置的 X 轴坐标,在该位置附近找到开始打印每层的部分。" +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "已打印支撑底板走线之间的距离。 该设置是通过支撑底板密度计算,但可以单独调整。" -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "位置的 X 轴坐标,在该位置附近开始打印层中各个部分。" +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "支撑接触面图案" -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "打印开始时,喷头在 X 轴上初始位置。" +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "支撑与模型之间接触面的打印图案。" -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "位置的 Y 轴坐标,在该位置附近找到开始打印每层的部分。" +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "走线" -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "位置的 Y 轴坐标,在该位置附近开始打印层中各个部分。" +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "网格" -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "打印开始时,喷头在 Y 轴坐标上初始位置。" +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "三角形" -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "打印开始时,喷头在 Z 轴坐标上的起始位置." +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "同心" -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "打印起始层时的加速度。" +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "锯齿形" -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "起始层的加速度。" +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "支撑顶板图案" -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "起始层中的空驶加速度。" +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "打印支撑顶板的图案。" -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "起始层中的空驶加速度。" +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "直线" -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "打印所有内壁的加速度。" +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "网格" -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "打印填充物的加速度。" +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "三角形" -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "执行熨平的加速度。" +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "同心圆" -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "打印发生的加速度。" +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "锯齿状" -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "打印基础 Raft 层的加速度。" +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "支撑底板图案" -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "打印支撑底板的加速度。 以较低的加速度打印可以改善支撑在模型顶部的粘着。" +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "打印支撑底板的图案。" -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "打印支撑填充物的加速度。" +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "走线" -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "打印中间 Raft 层的加速度。" +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "网格" -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "打印最外壁的加速度。" +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "三角形" -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "打印装填塔的加速度。" +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "同心" -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "打印 Raft 的加速度。" +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "锯齿形" -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "打印支撑顶板和底板的加速度。 以较低的加速度打印可以改善悬垂质量。" +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "最小支撑接触面面积" -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "打印支撑顶板的加速度。 以较低的加速度打印可以改善悬垂质量。" +msgctxt "minimum_interface_area description" +msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "支撑接触面多边形的最小面积。面积小于此值的多边形将打印为一般支撑。" -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "打印 skirt 和 brim 的加速度。 一般情况是以起始层加速度打印这些部分,但有时候您可能想要以不同加速度来打印 skirt 或 brim。" +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "最小支撑顶板面积" -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "打印支撑结构的加速度。" +msgctxt "minimum_roof_area description" +msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "支撑顶板的最小面积。面积小于此值的多边形将打印为一般支撑。" -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "打印顶部 Raft 层的加速度。" +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "最小支撑底板面积" -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "" +msgctxt "minimum_bottom_area description" +msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "支撑底板的最小面积。面积小于此值的多边形将打印为一般支撑。" -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "" +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "支撑接触面水平扩展" -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "打印壁的加速度。" +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "应用到支撑接触面多边形的偏移量。" -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "打印顶部表面皮肤层的加速度。" +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "支撑顶板水平扩展" -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "打印顶部/底部层的加速度。" +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "应用到支撑顶板的偏移量。" -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "进行空驶的加速度。" +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "支撑底板水平扩展" -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "熨平期间相对于正常皮肤走线的挤出材料量。 保持喷嘴填充状态有助于填充顶层表面的一些缝隙,但如填充过多则会导致表面上过度挤出和光点。" +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "应用到支撑底板的偏移量。" -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "填充物和壁之间的重叠量占填充走线宽度的百分比。稍微重叠可让各个壁与填充物牢固连接。" +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "支撑接触面优先级" -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "填充物和壁之间的重叠量。 稍微重叠可让各个壁与填充物牢固连接。" +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "重叠时支撑接触面和支撑的交互方式。目前仅对支撑顶板实施。" -msgctxt "switch_extruder_retraction_amount description" -msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." -msgstr "切换挤出机时的回抽量。设为 0,不进行任何回抽。该值通常应与加热区的长度相同。" +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "偏好支撑" -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "水平面与喷嘴尖端上部圆锥形之间的角度。" +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "偏好接触面" -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "塔顶角度。 该值越高,塔顶越尖,值越低,塔顶越平。" +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "偏好支撑线" -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "为模具创建的外壁的悬垂角度。 0° 将使模具的外壳垂直,而 90° 将使模型的外部遵循模型的轮廓。" +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "偏好接触面走线" -msgctxt "support_tree_branch_diameter_angle description" -msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." -msgstr "随着分支朝底部逐渐变粗,分支直径的角度。角度为 0 表明分支全长具有均匀的粗细度。稍微有些角度可以增加树形支撑的稳定性。" +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "两者重叠" -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "锥形支撑的倾斜角度。 角度 0 度时为垂直,角度 90 度时为水平。 较小的角度会让支撑更为牢固,但需要更多材料。 负角会让支撑底座比顶部宽。" +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "支撑接触面走线方向" -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "在一层中的每个多边形上引入的点的平均密度。 注意,多边形的原始点被舍弃,因此低密度导致分辨率降低。" +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "要使用的整数走线方向列表。列表中的元素随层的进度依次使用,当达到列表末尾时将从头开始。列表项以逗号分隔,整个列表包含在方括号中。“默认“为一个空列表,即意味着使用默认角度(如果接触面很厚或为 90 度,则在 45 度和 135 度之间交替)。" -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "在每个走线部分引入的随机点之间的平均距离。 注意,多边形的原始点被舍弃,因此高平滑度导致分辨率降低。 该值必须大于模糊皮肤厚度的一半。" +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "支撑顶板走线方向" -msgctxt "material_brand description" -msgid "The brand of material used." -msgstr "" +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "要使用的整数走线方向列表。列表中的元素随层的进度依次使用,当达到列表末尾时将从头开始。列表项以逗号分隔,整个列表包含在方括号中。“默认“为一个空列表,即意味着使用默认角度(如果接触面很厚或为 90 度,则在 45 度和 135 度之间交替)。" -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "打印头移动的默认加速度。" +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "支撑底板走线方向" -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "用于打印的默认温度。 应为材料的\"基本\"温度。 所有其他打印温度均应使用基于此值的偏移量" +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "要使用的整数走线方向列表。列表中的元素随层的进度依次使用,当达到列表末尾时将从头开始。列表项以逗号分隔,整个列表包含在方括号中。“默认“为一个空列表,即意味着使用默认角度(如果接触面很厚或为 90 度,则在 45 度和 135 度之间交替)。" -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "用于加热打印平台的默认温度。这应该作为打印平台的“基础”温度。所有其他打印温度均应基于此值进行调整" +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "风扇速度覆盖" -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "连桥表面层的密度。此值若小于 100 则会增大表面线条的缝隙。" +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "启用时,会为支撑正上方的表面区域更改打印冷却风扇速度。" -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "支撑结构底板的密度。 较高的值会在模型顶部产生更好的支撑粘着。" +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "支撑的表面风扇速度" -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "支撑结构顶板的密度。 较高的值会实现更好的悬垂,但支撑将更加难以移除。" +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "打印支撑正上方表面区域时使用的风扇百分比速度。使用高风扇速度可能使支撑更容易移除。" -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "连桥第二层表面的密度。此值若小于 100 则会增大表面线条的缝隙。" +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "使用塔" -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "连桥第三层表面的密度。此值若小于 100 则会增大表面线条的缝隙。" +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "使用专门的塔来支撑较小的悬垂区域。 这些塔的直径比它们所支撑的区域要大。 在靠近悬垂物时,塔的直径减小,形成顶板。" -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "机器可打印区域深度(Y 坐标)" +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "塔直径" msgctxt "support_tower_diameter description" msgid "The diameter of a special tower." msgstr "特殊塔的直径。" -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "树形支撑最细分支的直径。较粗的分支更坚固。接近基础的分支会比这更粗。" +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "最大塔支撑直径" -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "树形支撑的分支顶端的直径。" +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "将由专门的支撑塔支撑的小区域 X/Y 轴方向的最大直径。" -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "进料装置中材料驱动轮的直径。" +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "塔顶板角度" -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "树形支撑最粗分支的直径。较粗的主干更坚固;较细主干在构建板上占据的空间较小。" +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "塔顶角度。 该值越高,塔顶越尖,值越低,塔顶越平。" -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "下一层与前一层的高度差。" +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "下拉式支撑网格" -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "熨平走线之间的距离。" +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "在支撑网格下方的所有位置进行支撑,让支撑网格中没有悬垂。" -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "喷嘴和已打印部分之间在空驶时避让的距离。" +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "场景具有支撑网格" -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "基础 Raft 层的 Raft 走线之间的距离。 宽间距方便将 Raft 从打印平台移除。" +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "场景中存在支撑网格。此设置受 Cura 控制。" -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "中间 Raft 层的 Raft 走线之间的距离。 中间的间距应足够宽,同时也要足够密集,以便支撑顶部 Raft 层。" +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "打印平台附着" -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "顶部 Raft 层的 Raft 走线之间的距离。 间距应等于走线宽度,以便打造坚固表面。" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "附着" + +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "启用装填光点" + +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "打印前是否装填有光点的耗材。 开启此设置将确保打印前挤出机的喷嘴处已准备好材料。 打印 Brim 或 Skirt 也可作为装填用途,这种情况下关闭此设置可以节省时间。" + +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "挤出机 X 轴坐标" + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "打印开始时,喷头在 X 轴上初始位置。" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "挤出机 Y 轴起始位置" -msgctxt "prime_tower_raft_base_line_spacing description" -msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "底漆塔独有的筏层之间筏线的距离。宽间距可以轻松地将筏从打印板上移除。" +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "打印开始时,喷头在 Y 轴坐标上初始位置。" -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "从模型之间的边界到生成互锁结构的距离,以单元格衡量。单元格太少会导致粘附不良。" +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "打印平台附着类型" -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "模型到最外侧 brim 线的距离。 较大的 brim 可增强与打印平台的附着,但也会减少有效打印区域。" +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "帮助改善挤出装填以及与打印平台附着的不同选项。 Brim 会在模型基座周围添加单层平面区域,以防止卷翘。 Raft 会在模型下添加一个有顶板的厚网格。 Skirt 是在模型四周打印的一条线,但并不与模型连接。" -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "与不会生成互锁结构的模型外部的距离,以单元格衡量。" +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Skirt" -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "与喷嘴尖端的距离,喷嘴产生的热量在这段距离内传递到耗材中。" +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Brim" -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "底部皮肤扩展到填充物中的距离。 值越大会让皮肤与填充图案更好地附着,并让皮肤与下面层的壁更好地粘着。 较低的值将节省所用的材料量。" +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Raft" -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "皮肤扩展到填充物中的距离。 值越大会让皮肤与填充图案更好地附着,并让相邻层的层壁与皮肤更好地粘着。 较低的值将节省所用的材料量。" +msgctxt "adhesion_type option none" +msgid "None" +msgstr "无" -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "顶部皮肤扩展到填充物中的距离。 值越大会让皮肤与填充图案更好地附着,并让上方层的层壁与皮肤更好地粘着。 较低的值将节省所用的材料量。" +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "打印平台附着挤出机" -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "在擦拭刷上来回移动喷嘴头的距离。" +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "用于打印 skirt/brim/raft 的挤出机组。 用于多重挤出。" -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "为节省材料,填充线的端点将被缩短。此设置为这些线的端点形成的悬垂角度。" +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Skirt/Brim 挤出器" -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "挤出时喷嘴冷却的额外速度。 使用相同的值表示挤出过程中进行加热时的加热速度损失。" +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "用于打印 Skirt 或 Brim 的挤出机组。用于多重挤出。" -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "用于打印支撑填充物第一层的挤出机组。 用于多重挤出。" +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Raft 底层挤出器" msgctxt "raft_base_extruder_nr description" msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." msgstr "用于打印 Raft 第一层的挤出器组。用于多重挤出。" -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "用于打印支撑底板的挤出机组。 用于多重挤出。" - -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "用于打印支撑填充物的挤出机组。 用于多重挤出。" +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Raft 中间挤出器" msgctxt "raft_interface_extruder_nr description" msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." msgstr "用于打印 Raft 中间层的挤出器组。用于多重挤出。" -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "用于打印支撑顶板和底板的挤出机组。 用于多重挤出。" - -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "用于打印支撑顶板的挤出机组。 用于多重挤出。" - -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "用于打印 Skirt 或 Brim 的挤出机组。用于多重挤出。" - -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "用于打印 skirt/brim/raft 的挤出机组。 用于多重挤出。" - -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "用于打印支撑的挤出机组。 用于多重挤出。" +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Raft 顶层挤出器" msgctxt "raft_surface_extruder_nr description" msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." msgstr "用于打印 Raft 顶层的挤出器组。用于多重挤出。" -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "用于打印填充的挤出机组。 用于多重挤出。" - -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "用于打印内壁的挤出机组。 用于多重挤出。" - -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "用于打印外壁的挤出机组。 用于多重挤出。" - -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "用于打印顶部和底部皮肤的挤出机组。 用于多重挤出。" +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Skirt 走线计数" -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "用于打印最顶部皮肤的挤出机组。 用于多重挤出。" +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "多个 Skirt 走线帮助为小型模型更好地装填您的挤出部分。 将其设为 0 将禁用 skirt。" -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "用于打印壁的挤出机组。 用于多重挤出。" +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "裙边高度" -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "基础 Raft 层的风扇速度。" +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "多层打印最内层裙边走线,便于移除裙边。" -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "中间 Raft 层的风扇速度。" +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Skirt 距离" -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "Raft 的风扇速度。" +msgctxt "skirt_gap description" +msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "skirt 和打印第一层之间的水平距离。" +"这是最小距离。多个 skirt 走线将从此距离向外延伸。" -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "顶部 Raft 层的风扇速度。" +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Skirt/Brim 最小长度" -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "在打印的填充中,亮度值决定了相应位置的最小密度的图像的文件位置。" +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "skirt 或 brim 的最小长度。 如果所有 skirt 或 brim 走线之和都没有达到此长度,则将添加更多 skirt 或 brim 走线直至达到最小长度。 注意: 如果走线计数设为 0,则将忽略此选项。" -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "一个图像的文件位置,在这个图像中,亮度值决定了在支持中相应位置的最小密度。" +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Brim 宽度" -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "前几层的打印速度比模型的其他层慢,以便实现与打印平台的更好粘着,并改善整体的打印成功率。 该速度在这些层中会逐渐增加。" +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "模型到最外侧 brim 线的距离。 较大的 brim 可增强与打印平台的附着,但也会减少有效打印区域。" -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "模型最后的 raft 层与第一层之间的间隙。 只有第一层被提高了这个量,以便降低 raft 层和模型之间的附着。 让 raft 更容易剥离。" +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Brim 走线计数" -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "机器可打印区域高度(Z 坐标)" +msgctxt "brim_line_count description" +msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." +msgstr "brim 所用走线数量。 更多 brim 走线可增强与打印平台的附着,但也会减少有效打印区域。" -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "用于打印模具的模型水平部分上方的高度。" +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "边沿距离" -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "风扇以正常速度旋转的高度。 在下方的层中,风扇速度逐渐从起始风扇速度增加到正常风扇速度。" +msgctxt "brim_gap description" +msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." +msgstr "第一条边沿线与打印件第一层轮廓之间的水平距离。较小的间隙可使边沿更容易去除,同时在散热方面仍有优势。" -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "喷嘴尖端与十字轴系统(X 轴和 Y 轴)之间的高度差。" +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Brim 替换支撑" -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "喷嘴尖端与打印头最低部分之间的高度差。" +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "强制围绕模型打印 Brim,即使该空间本该由支撑占据。此操作会将第一层的某些支撑区域替换为 Brim 区域。" -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "挤出机切换后执行 Z 抬升的高度差。" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "裙边位置" -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "执行 Z 抬升的高度差。" +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "在模型的外侧,内侧或两侧同时打印裙边。根据模型的不同,这有助于减少随后需要去除的裙边量,同时保证所需的底座附着力。" -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "执行 Z 抬升的高度差。" +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "仅外侧" -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "每层的高度(以毫米为单位)。值越高,则打印速度越快,分辨率越低;值越低,则打印速度越慢,分辨率越高。" +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "仅内侧" -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "在切换至密度的一半前指定密度的填充高度。" +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "各处" -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "在切换至密度的一半前指定密度的支撑填充高度。" +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "裙边邻避边距" -msgctxt "interlocking_beam_layer_count description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "互锁结构梁的高度,以层数衡量。层数越少越坚固,但更容易出现缺陷。" +msgctxt "brim_inside_margin description" +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "模型周围的裙边可能会触及您不希望接触到的其他模型。此操作会将与其他无裙边的模型小于特定距离的裙边打印区域删除。" -msgctxt "interlocking_orientation description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "互锁结构梁的高度,以层数衡量。层数越少越坚固,但更容易出现缺陷。" +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "智能边缘" -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "起始层高(以毫米为单位)。起始层越厚,与打印平台的粘着越轻松。" +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "变换最内层和第二内层侧裙走线的打印顺序。这样可改善侧裙移除。" -msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "Prime tower 底座的高度。增加这个值将使 prime tower 更加坚固,因为底座会更宽。如果这个设置过低,prime tower 将没有坚固的底座。" +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Raft 留白" -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "停留在模型上的支撑阶梯状底部的步阶高度。 较低的值会使支撑更难于移除,但过高的值可能导致不稳定的支撑结构。 设为零可以关闭阶梯状行为。" +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "如果启用了 raft,则这是指也被提供了 raft 的模型周围的额外 raft 区域。 增加此留白将创建强度更大的 raft,但会使用更多材料,为打印品留下的空间更少。" -msgctxt "brim_gap description" -msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." -msgstr "第一条边沿线与打印件第一层轮廓之间的水平距离。较小的间隙可使边沿更容易去除,同时在散热方面仍有优势。" +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "筏层基段额外边距" -msgctxt "skirt_gap description" -msgid "" -"The horizontal distance between the skirt and the first layer of the print.\n" -"This is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "" -"skirt 和打印第一层之间的水平距离。\n" -"这是最小距离。多个 skirt 走线将从此距离向外延伸。" +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "如果设置了筏层基段扩展,这将会是模型周围扩展出的打印区域,并同时打印筏层。增加此边距会使筏层更为坚固,但也会使用更多材料并占用更多的打印空间。" -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "为节省打印时间,填充线将被拉直。这是整条填充线上允许的最大悬垂角度。" +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "筏层中段额外边距" -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "填充图案沿 X 轴移动此距离。" +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "如果设置了筏层中段扩展,这将会是模型周围扩展出的打印区域,并同时打印筏层。增加此边距会使筏层更为坚固,但也会使用更多材料并占用更多的打印空间。" -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "填充图案沿 Y 轴移动此距离。" +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "筏层顶段额外边距" -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "喷嘴内径,在使用非标准喷嘴尺寸时需更改此设置。" +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "如果设置了筏层顶段扩展,这将会是模型周围扩展出的打印区域,并同时打印筏层。增加此边距会使筏层更为坚固,但也会使用更多材料并占用更多的打印空间。" -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "打印基础 Raft 层的抖动速度。" +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "移除 Raft 内侧角" -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "打印中间 Raft 层的抖动速度。" +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "从 Raft 上移除内侧角,这会使 Raft 变得凸出。" -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "打印 Raft 的抖动速度。" +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "移除筏层基段内角" -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "打印顶部 Raft 层的抖动速度。" +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "移除筏层基段的内角,会使筏层凸起" -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "将被移除的底部皮肤区域的最大宽度。 小于此值的所有皮肤区域都将消失。 这有助于限制在模型的倾斜表面打印底部皮肤时所耗用的时间和材料。" +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "移除中段内角" -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "将被移除的皮肤区域的最大宽度。 小于此值的所有皮肤区域都将消失。 这有助于限制在模型的倾斜表面打印顶部/底部皮肤时所耗用的时间和材料。" +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "移除筏层中段的内角,会使筏层凸起。" -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "将被移除的顶部皮肤区域的最大宽度。 小于此值的所有皮肤区域都将消失。 这有助于限制在模型的倾斜表面打印顶部皮肤时所耗用的时间和材料。" +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "移除筏层顶段内角" -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "风扇以正常风扇速度旋转的层。 如果设置了正常风扇速度(高度),则该值将被计算并舍入为整数。" +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "移除筏层顶段的内角,会使筏层凸起。" -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "设定正常风扇速度和最大风扇速度之间阈值的层时间。 打印速度低于此时间的层使用正常风扇速度。 对于更快的层,风扇速度逐渐增加到最大风扇速度。" +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Raft 平滑度" -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "回抽移动期间回抽的材料长度。" +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "该设置控制 Raft 轮廓中的内角呈圆形的程度。内向角被设置为半圆形,半径等于此处的值。此设置还会移除 raft 轮廓中小于此半圆形的孔。" -msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "用于 prime tower 底座斜度的幅度因子。如果您增加这个值,底座会变得更细。如果减小它,底座会变得更厚。" +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "平滑筏层基段" -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "打印平台材料已安装在打印机上。" +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "此设置用于调整筏层基段轮廓线内角的倒圆角大小。" +"内角被倒角为半圆,其半径等于此处给出的值。此设置还会移除筏层轮廓线中面积小于此半径值圆的孔。" -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "最大允许高度与基层高度不同。" +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "平滑筏层中段" -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "渗出罩中的一个部件将具备的最大角度。 角度 0 度时为垂直,角度 90 度时为水平。 较小的角度会降低渗出罩失效次数,但会耗费更多材料。" +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "此设置用于调整筏层中段轮廓线内角的倒圆角大小。" +"内角被倒角为半圆,其半径等于此处给出的值。此设置还会移除筏层轮廓线中面积小于此半径值圆的孔。" -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "在悬垂变得可打印后悬垂的最大角度。 当该值为 0° 时,所有悬垂将被与打印平台连接的模型的一个部分替代,如果为 90° 时,不会以任何方式更改模型。" +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "平滑筏层顶段" -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "围绕模型扩大时,分支的最大角度。使用较小的角度可增加垂直度和稳定性。使用较大的角度可支撑更多结构。" +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "此设置用于调整筏层顶段轮廓线内角的倒圆角大小。" +"内角被倒角为半圆,其半径等于此处给出的值。此设置还会移除筏层轮廓线中面积小于此半径值圆的孔。" -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "在“使悬垂对象可打印”将其删除之前,模型底部的孔的最大面积。小于此面积的孔将会保留。值 0 mm² 将填充模型底部的所有孔。" +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Raft 空隙" -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "降低“最大分辨率”设置的分辨率时允许的最大偏移量。如果增加该值,打印作业的准确性将降低,但 g-code 将减小。“最大偏移量”是“最大分辨率”的限制,因此如果两者冲突,则“最大偏移量”将始终保持有效。" +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "模型最后的 raft 层与第一层之间的间隙。 只有第一层被提高了这个量,以便降低 raft 层和模型之间的附着。 让 raft 更容易剥离。" -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "支撑结构间在 X/Y 方向的最大距离。当分离结构之间的距离小于此值时,这些结构将合并为一体。" +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "起始层 Z 重叠" -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "移动线材以补偿流量变化的最大距离(以毫米为单位)。" +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "使模型打印的第一层和第二层在 Z 方向上重叠,以补偿气隙中损失的丝材。模型的第一层上方的所有部分都将向下移动此量。\n您可能会发现,进行此设置后,有时第二层会打印在初始层下方。这是正常的" -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "从直线中移除中间点时允许的最大挤出面积偏移量。在长直线中,中间点可以用作宽度变化点。因此,如果移除该点,这会使得线条具有均匀的宽度,进而导致失去(或增加)一点挤出面积。如果增加此值,您可能会注意到平行直壁之间的挤出不足(或过多),因为将允许移除更多的中间宽度变化点。打印作业的准确性将降低,但 g-code 将减小。" +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Raft 基础厚度" -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "打印起始层时的最大瞬时速度变化。" +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "基础 Raft 层的层厚度。 该层应为与打印机打印平台牢固粘着的厚层。" -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "打印头的最大瞬时速度变化。" +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Raft 基础走线宽度" -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "执行熨平时的最大瞬时速度变化。" +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "基础 Raft 层的走线宽度。 这些走线应该是粗线,以便协助打印平台附着。" -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "打印所有内壁时的最大瞬时速度变化。" +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Raft 基础走线间距" -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "打印填充物时的最大瞬时速度变化。" +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "基础 Raft 层的 Raft 走线之间的距离。 宽间距方便将 Raft 从打印平台移除。" -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "打印支撑底板时的最大瞬时速度变化。" +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Raft 中间层" -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "打印支撑填充物时的最大瞬时速度变化。" +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "Raft 的底层和表面之间的层数。这些层组成了 Raft 的主要厚度。增加此值会创建一个更厚、更坚固的 Raft。" -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "打印最外壁时的最大瞬时速度变化。" +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Raft 中间厚度" -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "打印装填塔时的最大瞬时速度变化。" +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "中间 Raft 层的层厚度。" -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "打印支撑顶板和底板的最大瞬时速度变化。" +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Raft 中间线宽度" -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "打印支撑顶板的最大瞬时速度变化。" +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "中间 Raft 层的走线宽度。 让第二层挤出更多会导致走线粘着在打印平台上。" -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "打印 skirt 和 brim 时的最大瞬时速度变化。" +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Raft 中间间距" -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "打印支撑结构时的最大瞬时速度变化。" +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "中间 Raft 层的 Raft 走线之间的距离。 中间的间距应足够宽,同时也要足够密集,以便支撑顶部 Raft 层。" -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "" +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Raft 顶层" -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "" +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "第 2 个 raft 层上方的顶层数量。 这些是模型所在的完全填充层。 第二层会产生比第一层更平滑的顶部表面。" -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "打印壁时的最大瞬时速度变化。" +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Raft 顶层厚度" -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "打印顶部表面皮肤层时的最大瞬时速度变化。" +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "顶部 Raft 层的层厚度。" -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "打印顶部/底部层时的最大瞬时速度变化。" +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Raft 顶线宽度" -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "进行空驶时的最大瞬时速度变化。" +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "Raft 顶部表面的走线宽度。 这些走线可以是细线,以便实现平滑的 Raft 顶部。" -msgctxt "prime_tower_max_bridging_distance description" -msgid "The maximum length of the branches which may be printed over the air." -msgstr "" +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Raft 顶部间距" -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "X 轴方向电机的最大速度。" +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "顶部 Raft 层的 Raft 走线之间的距离。 间距应等于走线宽度,以便打造坚固表面。" -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "Y 轴方向电机的最大速度。" +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "单调递增的筏顶面顺序" -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "Z 轴方向电机的最大速度。" +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "按顺序打印筏层顶段表面线,使它们始终与单个方向上的相邻线重叠。这会花费稍微长一点的打印时间,但会使表面看起来更加一致,在模型底面上可以看出。" -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "耗材的最大速度。" +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "筏层壁圈数" -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "停留在模型上的支撑阶梯状底部的最大步阶宽度。 较低的值会使支撑更难于移除,但过高的值可能导致不稳定的支撑结构。" +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "围绕筏层的线性图案打印的轮廓圈数。" -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "模具外侧与模型外侧之间的最短距离。" +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Raft 底板壁数" -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "打印头的最低移动速度。" +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "在 Raft 的底板层中,围绕线型图案打印轮廓的次数。" -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "加热到可以开始打印的打印温度时的最低温度。" +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "筏层中段壁圈数" -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "挤出机必须保持不活动以便喷嘴冷却的最短时间。 挤出机必须不使用此时间以上,才可以冷却到待机温度。" +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "围绕筏层中段的线性图案打印的轮廓圈数。" -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "添加内填充的内部覆盖的最小角度。在一个0的值中,完全填满了填充,90将不提供任何填充。" +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "筏层顶段壁圈数" -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "添加支撑的最小悬垂角度。 当角度为 0° 时,将支撑所有悬垂,当角度为 90° 时,不提供任何支撑。" +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "围绕筏层顶段的线性图案打印的轮廓圈数。" -msgctxt "retraction_min_travel description" -msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." -msgstr "回抽发生所需的最小空驶距离。 这有助于在较小区域内实现更少的回抽。" +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Raft 打印速度" -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "skirt 或 brim 的最小长度。 如果所有 skirt 或 brim 走线之和都没有达到此长度,则将添加更多 skirt 或 brim 走线直至达到最小长度。 注意: 如果走线计数设为 0,则将忽略此选项。" +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "打印 Raft 的速度。" -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "中间走线空隙填料多线壁的最小走线宽度。此设置确定在什么模型厚度下,我们从打印两根壁走线切换到打印两个外壁并在中间打印一个中心壁。更高的最小奇数壁走线宽度会带来更高的最大偶数壁走线宽度。最大奇数壁走线宽度计算方法是:2 * 最小偶数壁走线宽度。" +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Raft 基础打印速度" -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "普通多边形墙的最小走线宽度。此设置确定我们从打印单根薄壁走线切换到打印两根壁走线时的模型厚度。更高的最小偶数壁走线宽度会带来更高的最大奇数壁走线宽度。最大偶数壁走线宽度计算方法是:外壁走线宽度 + 0.5 * 最小奇数壁走线宽度。" +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "打印基础 Raft 层的速度。 该层应以很慢的速度打印,因为喷嘴所出的材料量非常高。" -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "最低打印速度,排除因最短层时间而减速。 当打印机减速过多时,喷嘴中的压力将过低并导致较差的打印质量。" +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Raft 中间打印速度" -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "走线部分在切片后的最小尺寸。如果提高此值,网格的分辨率将降低。这可让打印机保持处理 g-code 所需的速度,并将通过移除无法处理的网格细节提高切片速度。" +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "打印中间 Raft 层的速度。 该层应以很慢的速度打印,因为喷嘴所出的材料量非常高。" -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "切片后的旅行线路段的最小尺寸。如果你增加了这个,旅行的移动就会变得不那么平滑了。这可能使打印机能够跟上它处理g代码的速度,但是它可能导致模型的避免变得不那么准确。" +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Raft 顶部打印速度" -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "使阶梯生效的区域最小坡度。该值较小可在较浅的坡度上更容易去除支撑,但该值过小可能会在模型的其他部分上产生某些很反常的结果。" +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "打印顶部 Raft 层的速度。 这些层应以较慢的速度打印,以便喷嘴缓慢地整平临近的表面走线。" -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "在层中花费的最少时间。 这会迫使打印机减速,以便至少在一层中消耗此处所规定的时间。 这会让已打印材料充分冷却后再打印下一层。 如果提升头被禁用,且如果不这么做会违反“最小速度“,则层所花时间可能仍会少于最小层时间。" +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Raft 打印加速度" -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "为了清除足够的材料,装填塔每层的最小体积。" +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "打印 Raft 的加速度。" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "与接触打印平台的分支合并时,模型必连分支的最大直径可能会扩大。扩大直径可减少打印时间,但会增加模型上的支撑区域" +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Raft 基础打印加速度" -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "您的 3D 打印机型号的名称。" +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "打印基础 Raft 层的加速度。" -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "挤出机组的喷嘴 ID,比如\"AA 0.4\"和\"BB 0.8\"。" +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Raft 中间打印加速度" -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "喷嘴会在空驶时避开已打印的部分。 此选项仅在启用梳理功能时可用。" +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "打印中间 Raft 层的加速度。" -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "在空走时,喷嘴避免了已打印的支撑。只有在启用了梳理时才可以使用此选项。" +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Raft 顶部打印加速度" -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "底层的数量。 在按底层厚度计算时,该值舍入为整数。" +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "打印顶部 Raft 层的加速度。" -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "在 Raft 的底板层中,围绕线型图案打印轮廓的次数。" +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Raft 打印抖动速度" -msgctxt "raft_interface_wall_count description" -msgid "The number of contours to print around the linear pattern in the middle layers of the raft." -msgstr "" +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "打印 Raft 的抖动速度。" -msgctxt "raft_surface_wall_count description" -msgid "The number of contours to print around the linear pattern in the top layers of the raft." -msgstr "" +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Raft 基础打印抖动速度" -msgctxt "raft_wall_count description" -msgid "The number of contours to print around the linear pattern of the raft." -msgstr "" +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "打印基础 Raft 层的抖动速度。" -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "支撑皮肤边缘的填充物的层数。" +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Raft 中间打印抖动速度" -msgctxt "initial_bottom_layers description" -msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "从构建板向上算起的初始底层数。在按底层厚度计算时,该值四舍五入为整数。" +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "打印中间 Raft 层的抖动速度。" -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "Raft 的底层和表面之间的层数。这些层组成了 Raft 的主要厚度。增加此值会创建一个更厚、更坚固的 Raft。" +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Raft 顶部打印抖动速度" -msgctxt "brim_line_count description" -msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." -msgstr "brim 所用走线数量。 更多 brim 走线可增强与打印平台的附着,但也会减少有效打印区域。" +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "打印顶部 Raft 层的抖动速度。" -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "用于支撑 Brim 的走线数量。更多 Brim 走线可增强与打印平台的附着,但也会增加一些额外材料成本。" +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Raft 风扇速度" -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "第 2 个 raft 层上方的顶层数量。 这些是模型所在的完全填充层。 第二层会产生比第一层更平滑的顶部表面。" +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "Raft 的风扇速度。" -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "顶层的数量。 在按顶层厚度计算时,该值舍入为整数。" +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Raft 基础风扇速度" -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "最顶部皮肤层数。 通常只需一层最顶层就足以生成较高质量的顶部表面。" +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "基础 Raft 层的风扇速度。" -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "包围支撑的墙的数量。添加一堵墙可以使支持打印更加可靠,并且可以更好地支持挂起,但增加了打印时间和使用的材料。" +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Raft 中间风扇速度" -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "包围支撑接触面底板的墙的数量。添加墙可以使支持打印更加可靠,并且可以更好地支持悬垂对象,但增加了打印时间和使用的材料。" +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "中间 Raft 层的风扇速度。" -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "包围支撑接触面顶板的墙的数量。添加墙可以使支持打印更加可靠,并且可以更好地支持悬垂对象,但增加了打印时间和使用的材料。" +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Raft 顶部风扇速度" -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "包围支撑接触面的墙的数量。添加墙可以使支持打印更加可靠,并且可以更好地支持悬垂对象,但增加了打印时间和使用的材料。" +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "顶部 Raft 层的风扇速度。" -msgctxt "wall_distribution_count description" -msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." -msgstr "从中心开始计数的壁数量,需要在这些壁上传播变化。较小的值意味着不更改外壁的宽度。" +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "双重挤出" -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "壁数量。 在按壁厚计算时,该值舍入为整数。" +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "利用多个挤出机进行打印所用的设置。" -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "喷嘴尖端的外径。" +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "启用装填塔" -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "打印的填充材料的图案。直线和锯齿形填充交替在各层上变换方向,从而降低材料成本。每层都完整地打印网格、三角形、三六边形、立方体、八角形、四分之一立方体、十字和同心图案。螺旋二十四面体、立方体、四分之一立方体和八角形填充随每层变化,以使各方向的强度分布更均衡。闪电形填充尝试通过仅支撑物体顶部,将填充程度降至最低。" +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "在打印品相邻处打印一个塔,用于在每个喷嘴切换后装填材料。" -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "打印品支撑结构的图案。 提供的不同选项可实现或牢固或易于拆除的支撑。" +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "主塔类型" -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "最顶层图案。" +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
                                      • Normal: create a bucket in which secondary materials are primed
                                      • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
                                      " +msgstr "如何空心主塔:
                                      • 通常的:创建一个桶状结构,在其中填充辅助材料
                                      • 交错的: 创建一个尽可能稀疏的主塔。这将节省时间和丝材,但只有当所用材料粘附在每个部件上时才有可能
                                      " -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "顶层/底层图案。" +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "通常的" -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "打印品底部第一层上的图案。" +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "交错的" -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "用于熨平顶部表面的图案。" +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "装填塔尺寸" -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "打印支撑底板的图案。" +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "装填塔的宽度。" -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "支撑与模型之间接触面的打印图案。" +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "装填塔最小体积" -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "打印支撑顶板的图案。" +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "为了清除足够的材料,装填塔每层的最小体积。" -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "在该位置附近开始打印层中各个部分。" +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "主塔最大桥接距离" -msgctxt "support_tree_angle_slow description" -msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." -msgstr "不必避开模型时,分支的偏好角度。使用较小的角度可增加垂直度和稳定性。使用较大的角度可以更快合并分支。" +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "可以跨空打印分支的最大长度。" -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "支撑结构的偏好位置。只要结构不在偏好位置,它们就可能被放在其他区域,即使这意味着它们可能被放在模型上。" +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "装填塔 X 位置" -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "起始层的打印最大瞬时速度变化。" +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "装填塔位置的 X 坐标。" -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "打印平台形状(不考虑不可打印区域)。" +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "装填塔 Y 位置" -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "打印头的形状。这些是相对于打印头位置的坐标,打印头通常是其第一个挤出器的位置。打印头左侧和前方的尺寸必须采用负坐标。" +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "装填塔位置的 y 坐标。" -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "交叉 3D 图案的四向交叉处的气槽大小,高度为图案与自身接触的位置。" +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "擦拭装填塔上的不活动喷嘴" -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "挤出路径在可以进行滑行前应拥有的最小体积。 对于较小的挤出路径,鲍登管内累积的压力较少,因此滑行空间采用线性扩展。 该值应始终大于滑行空间。" +msgctxt "prime_tower_wipe_enabled description" +msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." +msgstr "在用一个喷嘴打印装填塔后,从装填塔上的另一个喷嘴擦去渗出的材料。" -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "喷嘴冷却到平均超过正常打印温度和待机温度范围的速度 (°C/s)。" +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Base" +msgstr "底漆塔座" -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "喷嘴升温到平均超过正常打印温度和待机温度范围的速度 (°C/s)。" +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "启用此设置将为您的 prime tower 添加一个边缘,即使您的模型中原本没有。如果您希望高塔有更坚固的基座,可以增加底座高度。" -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "打印所有内壁的速度。 以比外壁更快的速度打印内壁将减少打印时间。 将该值设为外壁速度和填充速度之间也可行。" +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "底漆塔座尺寸" -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "打印连桥表面区域的速度。" +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "Prime tower 边缘/底座的宽度。更大的底座可以增强对打印板的粘附力,但也会减少有效打印区域。" -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "打印填充的速度。" +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "底漆塔座高度" -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "打印发生的速度。" +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "Prime tower 底座的高度。增加这个值将使 prime tower 更加坚固,因为底座会更宽。如果这个设置过低,prime tower 将没有坚固的底座。" -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "打印基础 Raft 层的速度。 该层应以很慢的速度打印,因为喷嘴所出的材料量非常高。" +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "Prime Tower 底座斜度" -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "打印桥壁的速度。" +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "用于 prime tower 底座斜度的幅度因子。如果您增加这个值,底座会变得更细。如果减小它,底座会变得更厚。" -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "风扇在打印开始时旋转的速度。 在随后的层中,风扇速度逐渐增加到对应“正常风扇速度(高度)”的水平。" +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "底漆塔筏线间距" -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "风扇旋转达到阈值前的速度。 当一层的打印速度超过阈值时,风扇速度逐渐朝最大风扇速度增加。" +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "底漆塔独有的筏层之间筏线的距离。宽间距可以轻松地将筏从打印板上移除。" -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "风扇在最小层时间上旋转的速度。 当达到阈值时,风扇速度在正常风扇速度和最大风扇速度之间逐渐增加。" +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "启用渗出罩" -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "回抽移动期间耗材装填的速度。" +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "启用外部渗出罩。 这将在模型周围创建一个外壳,如果与第一个喷嘴处于相同的高度,则可能会擦拭第二个喷嘴。" -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "擦拭回抽移动期间耗材装填的速度。" +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "渗出罩角度" -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "喷嘴切换回抽后耗材被推回的速度。" +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "渗出罩中的一个部件将具备的最大角度。 角度 0 度时为垂直,角度 90 度时为水平。 较小的角度会降低渗出罩失效次数,但会耗费更多材料。" -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "回抽移动期间耗材回抽和装填的速度。" +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "渗出罩距离" -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "擦拭回抽移动期间耗材回抽和装填的速度。" +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "渗出罩在 X/Y 方向距打印品的距离。" -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "喷嘴切换回抽期间耗材回抽的速度。" +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "喷嘴切换回抽距离" -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "回抽移动期间耗材回抽的速度。" +msgctxt "switch_extruder_retraction_amount description" +msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." +msgstr "切换挤出机时的回抽量。设为 0,不进行任何回抽。该值通常应与加热区的长度相同。" -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "擦拭回抽移动期间耗材回抽的速度。" +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "喷嘴切换回抽速度" msgctxt "switch_extruder_retraction_speeds description" msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." -msgstr "回抽耗材的速度。 较高的回抽速度效果较好,但回抽速度过高可能导致耗材磨损。" - -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "打印支撑底板的速度。 以较低的速度打印可以改善支撑在模型顶部的粘着。" - -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "打印支撑填充物的速度。 以较低的速度打印填充物可改善稳定性。" - -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "打印中间 Raft 层的速度。 该层应以很慢的速度打印,因为喷嘴所出的材料量非常高。" +msgstr "回抽耗材的速度。 较高的回抽速度效果较好,但回抽速度过高可能导致耗材磨损。" -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "打印最外壁的速度。 以较低速度打印外壁可改善最终皮肤质量。 但是,如果内壁速度和外壁速度差距过大,则将对质量产生负面影响。" +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "喷嘴切换回抽速度" -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "打印装填塔的速度。 以较慢速度打印装填塔可以在不同耗材之间的粘着欠佳时使其更加稳定。" +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "喷嘴切换回抽期间耗材回抽的速度。" -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "打印冷却风扇旋转的速度。" +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "喷嘴切换装填速度" -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "打印 Raft 的速度。" +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "喷嘴切换回抽后耗材被推回的速度。" -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "打印支撑顶板和底板的速度。 以较低的速度打印可以改善悬垂质量。" +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "喷嘴切换额外装填量" -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "打印支撑顶板的速度。 以较低的速度打印可以改善悬垂质量。" +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "喷嘴切换后的额外装填材料。" -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "打印 skirt 和 brim 的速度。 一般情况是以起始层速度打印这些部分,但有时候您可能想要以不同速度来打印 skirt 或 brim。" +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "网格修复" -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "打印支撑结构的速度。 以更高的速度打印支撑可极大地缩短打印时间。 支撑结构的表面质量并不重要,因为在打印后会将其移除。" +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "使网格更适合 3D 打印。" -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "打印顶部 Raft 层的速度。 这些层应以较慢的速度打印,以便喷嘴缓慢地整平临近的表面走线。" +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "联合覆盖体积" -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "" +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "忽略由网格内的重叠体积产生的内部几何,并将多个部分作为一个打印。 这可能会导致意外的内部孔洞消失。" -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "" +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "移除所有孔洞" -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "Z 垂直移动实现抬升的速度。一般小于打印速度,因为打印平台或打印机的十字轴较难移动。" +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "移除每层的孔洞,仅保留外部形状。 这会忽略任何不可见的内部几何。 但是,也会忽略可从上方或下方看到的层孔洞。" -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "打印壁的速度。" +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "广泛缝合" -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "通过顶部表面的速度。" +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "广泛缝合尝试通过接触多边形来闭合孔洞,以此缝合网格中的开孔。 此选项可能会产生大量的处理时间。" -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "为完全脱落耗材而抽回耗材的速度。" +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "保留断开连接的面" -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "打印顶部表面皮肤层的速度。" +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "一般情况下,Cura 会尝试缝合网格中的小孔,并移除层中有大孔的部分。启用此选项将保留那些无法缝合的部分。当其他所有方法都无法产生正确的 G-code 时,最后才应考虑该选项。" -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "打印顶部/底部层的速度。" +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "合并网格重叠" -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "进行空驶的速度。" +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "让彼此接触的网格略微重叠。 这会让它们更好地粘合在一起。" -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "滑行期间的移动速度,相对于挤出路径的速度。 建议采用略低于 100% 的值,因为在滑行移动期间鲍登管中的压力会下降。" +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "移除网格交叉" -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "起始层的速度。建议采用较低的值以便改善与构建板的粘着。不会影响构建板自身的粘着结构,如边沿和筏。" +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "移除多个网格互相重叠的区域。 如果合并的双材料模型彼此重叠,此选项可能适用。" -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "打印起始层的速度。 建议采用较低的值以便改善与打印平台的粘着。" +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "交替网格移除" -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "起始层中的空驶速度。 建议采用较低的值,以防止将之前打印的部分从打印平台上拉离。 该设置的值可以根据空驶速度和打印速度的比率自动计算得出。" +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "切换为与每个层相交的网格相交体积,以便重叠的网格交织在一起。 关闭此设置将使其中一个网格获得重叠中的所有体积,同时将其从其他网格中移除。" -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "耗材在完全脱落时的温度。" +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "移除空白第一层" -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "打印环境温度。若为 0,将不会调整构建体积温度。" +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "移除第一个打印层下方的空白层(如果存在)。如果“切片公差”设置被设为“独占”或“中间”,禁用此设置可能导致空白第一层。" -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "当另一个喷嘴正用于打印时该喷嘴的温度。" +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "最大分辨率" -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "打印结束前开始冷却的温度。" +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "走线部分在切片后的最小尺寸。如果提高此值,网格的分辨率将降低。这可让打印机保持处理 g-code 所需的速度,并将通过移除无法处理的网格细节提高切片速度。" -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer." -msgstr "打印第一层时使用的温度。" +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "空走的最大分辨率" -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "用于打印的温度。" +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "切片后的旅行线路段的最小尺寸。如果你增加了这个,旅行的移动就会变得不那么平滑了。这可能使打印机能够跟上它处理g代码的速度,但是它可能导致模型的避免变得不那么准确。" -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "打印第一层时用于加热构建板的温度。如果此项为 0,则在打印第一层期间保持不加热构建板。" +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "最大偏移量" -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "用于加热构建板的温度。如果此项为 0,则保持不加热构建板。" +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "降低“最大分辨率”设置的分辨率时允许的最大偏移量。如果增加该值,打印作业的准确性将降低,但 g-code 将减小。“最大偏移量”是“最大分辨率”的限制,因此如果两者冲突,则“最大偏移量”将始终保持有效。" -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "用于清除材料的温度,应大致等于可达到的最高打印温度。" +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "最大挤出面积偏移量" -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "打印品中底层的厚度。 此值除以层高定义底层数量。" +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "从直线中移除中间点时允许的最大挤出面积偏移量。在长直线中,中间点可以用作宽度变化点。因此,如果移除该点,这会使得线条具有均匀的宽度,进而导致失去(或增加)一点挤出面积。如果增加此值,您可能会注意到平行直壁之间的挤出不足(或过多),因为将允许移除更多的中间宽度变化点。打印作业的准确性将降低,但 g-code 将减小。" -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "支撑皮肤边缘的额外填充物的厚度。" +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "启用流体运动" -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "支撑与模型在底部或顶部接触的接触面厚度。" +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "当启用时,对具有平滑运动规划器的打印机进行刀具路径校正。对偏离一般刀具轨迹方向的小运动进行平滑,改善流体运动。" -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "支撑底板的厚度。 这会控制支撑所停放的模型顶部区域所打印的密集层数量。" +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "流体运动移动距离" -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "支撑顶板的厚度。 这会控制模型所停放的支撑顶部密集层的数量。" +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "移动距离点,使路径平滑" -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "打印品中顶层的厚度。 该值除以层高定义顶层的数量。" +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "流体运动小距离" -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "打印品中顶层/底层的厚度。 该值除以层高定义顶层/底层的数量。" +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "移动距离点,使路径平滑" -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "水平方向的壁厚度。 此值除以壁线宽度定义壁数量。" +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "流体运动角" -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "填充材料每层的厚度。 该值应始终为层高的乘数,否则应进行舍入。" +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "如果刀具路径段偏离一般运动的角度大于这个角度,使路径平滑。" -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "支撑填充材料每层的厚度。 该值应始终为层高的乘数,否则应进行舍入。" +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "特殊模式" -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "需要生成的 G-code 类型。" +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "打印模型的非传统方式。" + +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "打印序列" -msgctxt "material_type description" -msgid "The type of material used." -msgstr "" +msgctxt "print_sequence description" +msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." +msgstr "是要一次一层地打印所有模型,还是要等待打印完一个模型后再继续打印下一个。如果 a) 仅启用了一个挤出器,并且 b) 分离所有模型的方式使得整个打印头可在这些模型间移动,并且所有模型都低于喷嘴与 X/Y 轴之间的距离,则可使用排队打印模式。" -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "该体积如不进行滑行则会渗出。 该值一般应接近喷嘴立方直径。" +msgctxt "print_sequence option all_at_once" +msgid "All at Once" +msgstr "同时打印" -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "机器可打印区域宽度(X 坐标)" +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "排队打印" -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "在支撑下方要打印的 Brim 的宽度。较大的 Brim 可增强与打印平台的附着,但也会增加一些额外材料成本。" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "手动设置打印顺序" -msgctxt "interlocking_beam_width description" -msgid "The width of the interlocking structure beams." -msgstr "互锁结构梁的宽度。" +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "允许您对对象列表进行排序以手动设置打印顺序。列表中的第一个对象将首先打印。" -msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "Prime tower 边缘/底座的宽度。更大的底座可以增强对打印板的粘附力,但也会减少有效打印区域。" +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "填充网格" -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "装填塔的宽度。" +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "使用此网格修改与其重叠的其他网格的填充物。 利用此网格的区域替换其他网格的填充区域。 建议仅为此网格打印一个壁,而不打印顶部/底部皮肤。" -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "在其中进行抖动的宽度。 建议让此值低于外壁宽度,因为内壁不会更改。" +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "网格处理等级" -msgctxt "retraction_extrusion_window description" -msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." -msgstr "执行最大回抽计数的范围。 该值应与回抽距离大致相同,以便一次回抽通过同一块材料的次数得到有效限制。" +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "在考虑多个重叠的填充网格时确定此网格的优先级。其中有多个填充网格重叠的区域将采用等级最高的网格的设置。具有较高等级的填充网格将修改具有较低等级的填充网格和普通网格的填充。" -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "装填塔位置的 X 坐标。" +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "切割网格" -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "装填塔位置的 y 坐标。" +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "将此网格的体积限制在其他网格内。 您可以使用它来制作采用不同的设置以及完全不同的挤出机的网格打印的特定区域。" -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "场景中存在支撑网格。此设置受 Cura 控制。" +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "模具" -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "此参数用于控制挤出机在开始打印桥壁前应该滑行的距离。在开始打印连桥之前滑行,可以降低喷嘴中的压力,并保证打印出平滑的连桥。" +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "将模型作为模具打印,可进行铸造,以便获取与打印平台上的模型类似的模型。" -msgctxt "raft_base_smoothing description" -msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "最小模具宽度" -msgctxt "raft_interface_smoothing description" -msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "模具外侧与模型外侧之间的最短距离。" -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "该设置控制 Raft 轮廓中的内角呈圆形的程度。内向角被设置为半圆形,半径等于此处的值。此设置还会移除 raft 轮廓中小于此半圆形的孔。" +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "模具顶板高度" -msgctxt "raft_surface_smoothing description" -msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "用于打印模具的模型水平部分上方的高度。" -msgctxt "retraction_count_max description" -msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." -msgstr "此设置限制在最小挤出距离范围内发生的回抽数。 此范围内的额外回抽将会忽略。 这避免了在同一件耗材上重复回抽,从而导致耗材变扁并引起磨损问题。" +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "模具角度" -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "这将在模型周围创建一个壁,该壁会吸住(热)空气并遮住外部气流。 对于容易卷曲的材料尤为有用。" +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "为模具创建的外壁的悬垂角度。 0° 将使模具的外壳垂直,而 90° 将使模型的外部遵循模型的轮廓。" -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "顶端直径" +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "支撑网格" -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "为了补偿材料在冷却时的收缩,将用此因子在 XY 方向(水平)上缩放模型。" +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "使用此网格指定支撑区域。 可用于生成支撑结构。" -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "为了补偿材料在冷却时的收缩,将用此因子在 Z 方向(垂直)上缩放模型。" +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "防悬网格" -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "为了补偿材料在冷却时的收缩,将用此因子缩放模型。" +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "使用此网格指定模型的任何部分不应被检测为悬垂的区域。 可用于移除不需要的支撑结构。" -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "顶部层数" +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "表面模式" -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "顶部皮肤扩展距离" +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "将模型作为仅表面、一个空间或多个具有松散表面的空间处理。 正常打印模式仅打印封闭的空间。 “表面”打印跟踪网格表面的单个壁,没有填充物,也没有顶部/底部皮肤。 \"两者都\"将封闭空间正常打印,并将任何剩余多边形作为表面打印。" -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "顶部皮肤移除宽度" +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "正常" -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "" +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "表面" -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "" +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "两者都" -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "" +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "螺旋打印外轮廓" -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "" +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "螺旋打印实现外部边缘的平滑 Z 移动。 这会在整个打印上建立一个稳定的 Z 增量。 该功能会将一个实心模型转变为具有实体底部的单壁打印。 只有在当每一层仅包含一个部分时才应启用此功能。" -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "" +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "平滑螺旋轮廓" -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "" +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "平滑螺旋轮廓以减少 Z 缝的可见性(Z 缝于打印品上几乎不可见,但在层视图中仍然可见)。注意:平滑操作将模糊精细的表面细节。" -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "" +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "相对挤出" -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "" +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "使用相对挤出而不是绝对挤出。使用相对 E 步阶,以便对 G-code 进行更轻松的后期处理。但是,并非所有打印机均支持此功能,而且与绝对 E 步阶相比,此功能在沉积材料量上会产生非常轻微的偏差。不论是否启用此设置,挤出模式将始终在设置为绝对挤出后才输出任何 G-code 脚本。" -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "顶部表面皮肤加速度" +msgctxt "experimental label" +msgid "Experimental" +msgstr "实验性" -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "顶部皮肤挤出机" +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "尚未完全充实的功能。" -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "顶部表层流量" +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "切片公差" -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "顶部表面皮肤抖动速度" +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "切片层的垂直公差。一般通过穿过每层厚度的中间截取横截面而产生该层的轮廓(中间)。此外,每层均可有一些区域,这些区域落入体积内部并遍布该层的整个厚度(排除),或层具有一些区域,这些区域落入该层内的任意位置(包含)。“包含”保留最多的细节,“排除”有利于最佳贴合,而“中间”保持最接近原始表面。" -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "顶部表面皮肤层" +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Middle" -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "顶部表面皮肤走线方向" +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "不包含" -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "顶部表面皮肤线宽" +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "包含" -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "顶部表面皮肤图案" +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "填充物空驶优化" + +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "启用后,可优化打印填充走线的顺序,缩短空驶距离。空驶时间的缩短很大程度上取决于被切割的模型、填充图案、密度等。请注意,对于具有许多小填充区域的一些模型,分割模型的时间可能会大幅增加。" -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "顶部表面皮肤速度" +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "流量温度图" -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "顶层厚度" +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "数据连接材料流量(mm3/s)到温度(摄氏度)。" -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "如果对象的顶部和/或底部表面的角度大于此设置,则不要扩展其顶部/底部皮肤。这会避免扩展在模型表面有接近垂直的坡度时所形成的狭窄皮肤区域。0° 的角为水平,将导致不扩展任何皮肤,而 90° 的角为垂直,将导致扩展所有皮肤。" +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "最小多边形周长" -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "顶 / 底层" +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "切片层中周长小于此数值的多边形将被滤除。以切片时间为代价,较低的值可实现较高分辨率的网格。它主要用于高分辨率 SLA 打印机和包含大量细节的极小 3D 模型。" -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "顶 / 底层" +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "生成互锁结构" -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "顶部/底部加速度" +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "在模型接触的位置,生成互锁梁结构。这改善了模型之间的粘合力,特别是用不同材料打印的模型。" -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "顶部/底部挤出机" +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "互锁梁宽度" -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "顶部/底部流量" +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "互锁结构梁的宽度。" -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "顶部/底部抖动速度" +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "互锁结构方向" -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "顶层/底层走线方向" +msgctxt "interlocking_orientation description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "互锁结构梁的高度,以层数衡量。层数越少越坚固,但更容易出现缺陷。" -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "走线宽度(顶层 / 底层)" +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "互锁梁层数" -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "顶部 / 底部走线图案" +msgctxt "interlocking_beam_layer_count description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "互锁结构梁的高度,以层数衡量。层数越少越坚固,但更容易出现缺陷。" -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "速度(顶部 / 底部)" +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "互锁深度" -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "顶层 / 底层厚度" +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "从模型之间的边界到生成互锁结构的距离,以单元格衡量。单元格太少会导致粘附不良。" -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "支撑打印平台" +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "互锁边界回避" -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "塔直径" +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "与不会生成互锁结构的模型外部的距离,以单元格衡量。" -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "塔顶板角度" +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "将支撑结构分拆成块状" -msgctxt "mesh_rotation_matrix description" -msgid "Transformation matrix to be applied to the model when loading it from file." -msgstr "在将模型从文件中载入时应用在模型上的转换矩阵。" +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "跳过部分支撑线连接,让支撑结构更容易脱离。 此设置适用于锯齿形支撑结构填充图案。" -msgctxt "travel label" -msgid "Travel" -msgstr "移动" +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "支撑块大小" -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "空驶加速度" +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "每隔 N 毫米在支撑线之间略去一个连接,让支撑结构更容易脱离。" -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "空驶避让距离" +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "支撑块走线数" -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "空驶抖动速度" +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "每隔 N 个连接线跳过一个连接,让支撑结构更容易脱离。" -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "空驶速度" +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "启用防风罩" -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "将模型作为仅表面、一个空间或多个具有松散表面的空间处理。 正常打印模式仅打印封闭的空间。 “表面”打印跟踪网格表面的单个壁,没有填充物,也没有顶部/底部皮肤。 \"两者都\"将封闭空间正常打印,并将任何剩余多边形作为表面打印。" +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "这将在模型周围创建一个壁,该壁会吸住(热)空气并遮住外部气流。 对于容易卷曲的材料尤为有用。" -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "树形" +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "防风罩 X/Y 距离" -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "内六角" +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "防风罩在 X/Y 方向与打印品的距离。" -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "三角形" +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "防风罩限制" -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "三角形" +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "设置防风罩的高度。 选择在模型的完整高度或有限高度处打印防风罩。" -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "三角形" +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "完整" -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "三角形" +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "有限" -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "三角形" +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "防风罩高度" -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "主干直径" +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "防风罩的高度限制。 在此高度以上不会打印任何防风罩。" -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "使悬垂可打印" -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "联合覆盖体积" +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "更改打印模型的几何,以最大程度减少需要的支撑。 陡峭的悬垂物将变浅。 悬垂区域将下降变得更垂直。" -msgctxt "bridge_wall_min_length description" -msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." -msgstr "将使用正常壁设置打印短于此长度且没有支撑的壁。将使用桥壁设置打印长于此长度且没有支撑的壁。" +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "最大模型角度" -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "使用自适应图层" +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "在悬垂变得可打印后悬垂的最大角度。 当该值为 0° 时,所有悬垂将被与打印平台连接的模型的一个部分替代,如果为 90° 时,不会以任何方式更改模型。" -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "使用塔" +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "最大悬垂孔面积" -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "空驶时使用单独的加速度。如果禁用,空驶将使用打印线在目的地的加速度值。" +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "在“使悬垂对象可打印”将其删除之前,模型底部的孔的最大面积。小于此面积的孔将会保留。值 0 mm² 将填充模型底部的所有孔。" -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "空驶时使用单独的抖动速度。如果禁用,空驶将使用打印线在目的地的抖动速度值。" +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "启用滑行" -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "使用相对挤出而不是绝对挤出。使用相对 E 步阶,以便对 G-code 进行更轻松的后期处理。但是,并非所有打印机均支持此功能,而且与绝对 E 步阶相比,此功能在沉积材料量上会产生非常轻微的偏差。不论是否启用此设置,挤出模式将始终在设置为绝对挤出后才输出任何 G-code 脚本。" +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "滑行会用一个空驶路径替代挤出路径的最后部分。 渗出材料用于打印挤出路径的最后部分,以便减少串接。" -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "使用专门的塔来支撑较小的悬垂区域。 这些塔的直径比它们所支撑的区域要大。 在靠近悬垂物时,塔的直径减小,形成顶板。" +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "滑行体积" -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "使用此网格修改与其重叠的其他网格的填充物。 利用此网格的区域替换其他网格的填充区域。 建议仅为此网格打印一个壁,而不打印顶部/底部皮肤。" +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "该体积如不进行滑行则会渗出。 该值一般应接近喷嘴立方直径。" + +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "滑行前最小体积" -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "使用此网格指定支撑区域。 可用于生成支撑结构。" +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "挤出路径在可以进行滑行前应拥有的最小体积。 对于较小的挤出路径,鲍登管内累积的压力较少,因此滑行空间采用线性扩展。 该值应始终大于滑行空间。" -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "使用此网格指定模型的任何部分不应被检测为悬垂的区域。 可用于移除不需要的支撑结构。" +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "滑行速度" -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "用户指定" +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "滑行期间的移动速度,相对于挤出路径的速度。 建议采用略低于 100% 的值,因为在滑行移动期间鲍登管中的压力会下降。" -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "垂直缩放因子收缩补偿" +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "交叉 3D 气槽大小" -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "切片层的垂直公差。一般通过穿过每层厚度的中间截取横截面而产生该层的轮廓(中间)。此外,每层均可有一些区域,这些区域落入体积内部并遍布该层的整个厚度(排除),或层具有一些区域,这些区域落入该层内的任意位置(包含)。“包含”保留最多的细节,“排除”有利于最佳贴合,而“中间”保持最接近原始表面。" +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "交叉 3D 图案的四向交叉处的气槽大小,高度为图案与自身接触的位置。" -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "等待打印平台加热" +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "交叉加密图像密度" -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "等待喷嘴加热" +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "在打印的填充中,亮度值决定了相应位置的最小密度的图像的文件位置。" -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "壁加速度" +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "交叉填充密度图象" -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "壁分派次数" +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "一个图像的文件位置,在这个图像中,亮度值决定了在支持中相应位置的最小密度。" -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "壁挤出机" +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "启用锥形支撑" -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "壁流量" +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "使底部的支撑区域小于悬垂处的支撑区域。" -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "壁抖动速度" +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "锥形支撑角度" -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "壁走线次数" +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "锥形支撑的倾斜角度。 角度 0 度时为垂直,角度 90 度时为水平。 较小的角度会让支撑更为牢固,但需要更多材料。 负角会让支撑底座比顶部宽。" -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "走线宽度(壁)" +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "锥形支撑最小宽度" -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "壁顺序" +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "锥形支撑区域底部被缩小至的最小宽度。 宽度较小可导致不稳定的支撑结构。" -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "速度(壁)" +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "模糊皮肤" -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "壁厚" +msgctxt "magic_fuzzy_skin_enabled description" +msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." +msgstr "在打印外墙时随机抖动,使表面具有粗糙和模糊的外观。" -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "壁过渡长度" +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "仅外部模糊皮肤" -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "壁过渡筛选距离" +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "仅抖动部件的轮廓,而不抖动部件的孔。" -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "壁过渡筛选边距" +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "模糊皮肤厚度" -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "壁过渡阈值角度" +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "在其中进行抖动的宽度。 建议让此值低于外壁宽度,因为内壁不会更改。" -msgctxt "shell label" -msgid "Walls" -msgstr "墙" +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "模糊皮肤密度" -msgctxt "wall_overhang_angle description" -msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." -msgstr "悬垂超过此角度的壁将使用悬垂壁设置打印。该值为 90 时,不会将任何壁视为悬垂。受到支撑支持的悬垂也不会被视为悬垂。" +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "在一层中的每个多边形上引入的点的平均密度。 注意,多边形的原始点被舍弃,因此低密度导致分辨率降低。" -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "当启用时,对具有平滑运动规划器的打印机进行刀具路径校正。对偏离一般刀具轨迹方向的小运动进行平滑,改善流体运动。" +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "模糊皮肤点距离" -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "启用后,可优化打印填充走线的顺序,缩短空驶距离。空驶时间的缩短很大程度上取决于被切割的模型、填充图案、密度等。请注意,对于具有许多小填充区域的一些模型,分割模型的时间可能会大幅增加。" +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "在每个走线部分引入的随机点之间的平均距离。 注意,多边形的原始点被舍弃,因此高平滑度导致分辨率降低。 该值必须大于模糊皮肤厚度的一半。" -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "启用时,会为支撑正上方的表面区域更改打印冷却风扇速度。" +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "流量补偿最大挤出偏移值" -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "启用时,Z 缝坐标为相对于各个部分中心的值。 禁用时,坐标定义打印平台上的一个绝对位置。" +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "移动线材以补偿流量变化的最大距离(以毫米为单位)。" -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "当大于零时,比这段距离更长的梳理空驶将会使用回抽。如果设置为零,则没有最大值,梳理空驶将不会使用回抽。" +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "流量补偿因子" -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "大于零时,孔洞水平扩展会逐渐适应小孔洞(小孔洞可以扩展更多)。设为零时,孔洞水平扩展可以应用于所有孔洞。大于孔洞水平扩展最大直径时,孔洞不会被扩展。" +msgctxt "flow_rate_extrusion_offset_factor description" +msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." +msgstr "为补偿流量变化而将线材移动的距离,在挤出一秒钟的情况下占线材移动距离的百分比。" -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "当大于零时,“孔水平膨胀”是应用于每层所有孔的偏移量。正值会增加孔的大小,负值会减少孔的大小。当此设置启用时,可以使用“孔水平膨胀最大直径”进一步细化。" +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "使用自适应图层" -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "打印连桥表面区域时,将挤出的材料量乘以此值。" +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "自适应图层根据模型形状计算图层高度。" -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "打印桥壁时,将挤出的材料量乘以此值。" +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "自适应图层最大变化" -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "打印连桥第二层表面时,将挤出的材料量乘以此值。" +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "最大允许高度与基层高度不同。" -msgctxt "bridge_skin_material_flow_3 description" -msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "打印连桥第三层表面时,将挤出的材料量乘以此值。" +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "自适应图层变化步长" -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "当因最低层时间达到最低速度时,将打印头从打印品上提升,并等候达到最低层时间。" +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "下一层与前一层的高度差。" -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "当模型中只有几个分层有微小垂直间隙时,通常狭窄空间的分层周围应有表层。如果垂直间隙非常小,则启用此设置不生成表层。这缩短了打印时间和切片时间,但从技术方面看,会使填充物暴露在空气中。" +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "自适应图层地形尺寸" -msgctxt "wall_transition_angle description" -msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." -msgstr "在奇数和偶数壁之间创建过渡时。角度大于此设置的楔形将没有过渡,并且不会在中心打印壁来填充剩余空间。减少此设置会减少这些中心壁的数量和长度,但可能会留下空隙或挤出过多。" +msgctxt "adaptive_layer_height_threshold description" +msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." +msgstr "两个相邻图层之间的目标水平距离。减小此设置的值会使要使用的图层变薄,从而使图层的边缘距离更近。" -msgctxt "wall_transition_length description" -msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." -msgstr "当随着零件变薄而在不同数量的壁之间过渡时,会分配一定数量的间距来分割或连接壁走线。" +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "悬垂壁角度" -msgctxt "wipe_hop_enable description" -msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "在擦拭时,构建板会降低以在喷嘴与打印件之间形成间隙。这样可防止喷嘴在行程中撞击打印件,降低从构建板上撞掉打印件的可能性。" +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." +msgstr "悬垂超过此角度的壁将使用悬垂壁设置打印。该值为 90 时,不会将任何壁视为悬垂。受到支撑支持的悬垂也不会被视为悬垂。" -msgctxt "retraction_hop_enabled description" -msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "每当回抽完成时,打印平台会降低以便在喷嘴和打印品之间形成空隙。 它可以防止喷嘴在空驶过程中撞到打印品,降低将打印品从打印平台撞掉的几率。" +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "悬垂壁速度" -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "支撑 X/Y 距离是否覆盖支撑 Z 距离或反之。 当 X/Y 覆盖 Z 时,X/Y 距离可将支撑从模型上推离,影响与悬垂之间的实际 Z 距离。 我们可以通过不在悬垂周围应用 X/Y 距离来禁用此选项。" +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "悬垂壁将以其正常打印速度的此百分比打印。" -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "打印机零位的 X/Y 坐标是否位于可打印区域的中心。" +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "启用连桥设置" -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "指定 X 轴的限位开关位于正向(高 X 轴坐标)还是负向(低 X 轴坐标)。" +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "在打印连桥时,检测连桥并修改打印速度、流量和风扇设置。" -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "指定 Y 轴的限位开关位于正向(高 Y 轴坐标)还是负向(低 Y 轴坐标)。" +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "最小桥壁长度" -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "指定 Z 轴的限位开关位于正向(高 Z 轴坐标)还是负向(低 Z 轴坐标)。" +msgctxt "bridge_wall_min_length description" +msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." +msgstr "将使用正常壁设置打印短于此长度且没有支撑的壁。将使用桥壁设置打印长于此长度且没有支撑的壁。" -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "挤出器是否共用一个加热器,而不是每个挤出器都有自己的加热器。" +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "连桥表面支撑阈值" -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "挤出器是否共用一个喷嘴,而不是每个挤出器都有自己的喷嘴。当设置为 true 时,预计打印机启动 gcode 脚本会将所有挤出器正确设置为已知且相互兼容的初始缩回状态 (零根或一根细丝未缩回);在这种情况下,会通过“machine_extruders_shared_nozzle_initial_retraction”参数描述每个挤出器的初始缩回状态。" +msgctxt "bridge_skin_support_threshold description" +msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." +msgstr "如果受支撑的表面区域小于整个区域的这一百分比,则使用连桥设置打印。否则,使用正常表面设置打印。" -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "机器是否有加热打印平台。" +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "连桥稀疏填充物最大密度" -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "机器是否能够稳定构建体积温度。" +msgctxt "bridge_sparse_infill_max_density description" +msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." +msgstr "填充物的最大密度被视为稀疏。稀疏填充物表面被视为不受支持,因此可被视为连桥表面。" -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "是否将模型放置在打印平台中心 (0,0),而不是使用模型在其中保存的坐标系统。" +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "桥壁滑行" -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "是否从 Cura 控制温度。 关闭此选项,从 Cura 外部控制喷嘴温度。" +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "此参数用于控制挤出机在开始打印桥壁前应该滑行的距离。在开始打印连桥之前滑行,可以降低喷嘴中的压力,并保证打印出平滑的连桥。" -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "是否需要在 G-code 开始部分包含检查热床温度的命令。当 start_gcode 包含热床温度命令时,Cura 前端将自动禁用此设置。" +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "桥壁速度" -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "是否在 gcode 开始部分包含喷嘴温度命令。 当 start_gcode 已包含喷嘴温度命令时,Cura 前端将自动禁用此设置。" +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "打印桥壁的速度。" -msgctxt "clean_between_layers description" -msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." -msgstr "是否包括图层切换后擦拭喷嘴的 G-Code(每层最多 1 个)。启用此设置可能会影响图层变化时的回抽。请使用“擦拭回抽”设置来控制擦拭脚本将在其中工作的图层回抽。" +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "桥壁流量" -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "是否插入一条命令,等待开始时达到打印平台温度。" +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "打印桥壁时,将挤出的材料量乘以此值。" -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "打印前是否装填有光点的耗材。 开启此设置将确保打印前挤出机的喷嘴处已准备好材料。 打印 Brim 或 Skirt 也可作为装填用途,这种情况下关闭此设置可以节省时间。" +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "连桥表面速度" -msgctxt "print_sequence description" -msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -msgstr "是要一次一层地打印所有模型,还是要等待打印完一个模型后再继续打印下一个。如果 a) 仅启用了一个挤出器,并且 b) 分离所有模型的方式使得整个打印头可在这些模型间移动,并且所有模型都低于喷嘴与 X/Y 轴之间的距离,则可使用排队打印模式。" +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "打印连桥表面区域的速度。" -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "这台打印机是否需要显示它在不同的 JSON 文件中所描述的不同变化。" +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "连桥表面流量" -msgctxt "machine_firmware_retract description" -msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." -msgstr "是否使用固件收回命令 (G10/G11) 而不是使用 G1 命令中的 E 属性来收回材料。" +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "打印连桥表面区域时,将挤出的材料量乘以此值。" -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "是否等待开始时达到喷嘴温度。" +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "连桥表面密度" -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "单一填充走线宽度。" +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "连桥表面层的密度。此值若小于 100 则会增大表面线条的缝隙。" -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "支撑顶板或底板单一走线宽度。" +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "连桥风扇速度" -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "打印顶部区域单一走线宽度。" +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "打印连桥表面和桥壁时使用的风扇百分比速度。" -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "单一走线宽度。 一般而言,每条走线的宽度应与喷嘴的宽度对应。 但是,稍微降低此值可以产生更好的打印成果。" +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "连桥有多层" -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "单一装填走线宽度。" +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "如果启用此选项,则使用以下设置打印净空区域上方第二层和第三层。否则,将使用正常设置打印这些层。" -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "单一 skirt(裙摆)或 brim(边缘)走线宽度。" +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "连桥第二层表面速度" -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "单一支撑底板走线宽度。" +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "打印桥梁第二层表面时使用的打印速度。" -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "单一支撑顶板走线宽度。" +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "连桥第二层表面流量" -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "单一支撑结构走线宽度。" +msgctxt "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "打印连桥第二层表面时,将挤出的材料量乘以此值。" -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "单一顶层/底层走线宽度。" +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "连桥第二层表面密度" -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "适用于所有壁线(最外壁线除外)的单一壁线宽度。" +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "连桥第二层表面的密度。此值若小于 100 则会增大表面线条的缝隙。" -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "单一壁线宽度。" +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "连桥第二层表面风扇速度" -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "基础 Raft 层的走线宽度。 这些走线应该是粗线,以便协助打印平台附着。" +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "打印桥梁第二层表面时使用的风扇百分比速度。" -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "中间 Raft 层的走线宽度。 让第二层挤出更多会导致走线粘着在打印平台上。" +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "连桥第三层表面速度" -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "Raft 顶部表面的走线宽度。 这些走线可以是细线,以便实现平滑的 Raft 顶部。" +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "打印桥梁第三层表面时使用的打印速度。" -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "最外壁线宽度。 降低此值,可打印出更高水平的细节。" +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "连桥第三层表面流量" -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "用于替换模型薄特征(根据最小特征尺寸)的壁的宽度。如果最小壁走线宽度比特征的厚度要薄,则壁将与特征本身一样厚。" +msgctxt "bridge_skin_material_flow_3 description" +msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "打印连桥第三层表面时,将挤出的材料量乘以此值。" -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "擦拭刷 X 轴坐标" +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "连桥第三层表面密度" -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "擦拭抬升速度" +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "连桥第三层表面的密度。此值若小于 100 则会增大表面线条的缝隙。" -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "擦拭装填塔上的不活动喷嘴" +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "连桥第三层表面风扇速度" -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "擦拭移动距离" +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "打印桥梁第三层表面时使用的风扇百分比速度。" msgctxt "clean_between_layers label" msgid "Wipe Nozzle Between Layers" msgstr "图层切换后擦拭喷嘴" -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "擦拭暂停" +msgctxt "clean_between_layers description" +msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." +msgstr "是否包括图层切换后擦拭喷嘴的 G-Code(每层最多 1 个)。启用此设置可能会影响图层变化时的回抽。请使用“擦拭回抽”设置来控制擦拭脚本将在其中工作的图层回抽。" -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "擦拭重复计数" +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "擦拭之间的材料量" -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "擦拭回抽距离" +msgctxt "max_extrusion_before_wipe description" +msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." +msgstr "在开始下一轮喷嘴擦拭之前可挤出的最大材料量。如果此值小于层中所需的材料量,则该设置在此层中无效,即每层仅限擦拭一次。" msgctxt "wipe_retraction_enable label" msgid "Wipe Retraction Enable" msgstr "启用擦拭回抽" +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "当喷嘴移动到非打印区域上方时回抽耗材。" + +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "擦拭回抽距离" + +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "耗材回抽量,可避免耗材在擦拭期间渗出。" + msgctxt "wipe_retraction_extra_prime_amount label" msgid "Wipe Retraction Extra Prime Amount" msgstr "擦拭回抽额外装填量" -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "擦拭回抽装填速度" +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "有些材料可能会在擦拭空驶过程中渗出,可以在这里进行补偿。" + +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "擦拭回抽速度" + +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "擦拭回抽移动期间耗材回抽和装填的速度。" msgctxt "wipe_retraction_retract_speed label" msgid "Wipe Retraction Retract Speed" msgstr "擦拭回抽期间的回抽速度" -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "擦拭回抽速度" +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "擦拭回抽移动期间耗材回抽的速度。" + +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "擦拭回抽装填速度" + +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "擦拭回抽移动期间耗材装填的速度。" + +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "擦拭暂停" + +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "在未回抽后暂停。" msgctxt "wipe_hop_enable label" msgid "Wipe Z Hop" msgstr "擦拭 Z 抬升" +msgctxt "wipe_hop_enable description" +msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "在擦拭时,构建板会降低以在喷嘴与打印件之间形成间隙。这样可防止喷嘴在行程中撞击打印件,降低从构建板上撞掉打印件的可能性。" + msgctxt "wipe_hop_amount label" msgid "Wipe Z Hop Height" msgstr "擦拭 Z 抬升高度" -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "在填充物内" +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "执行 Z 抬升的高度差。" -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "将临时命令发送到非活动工具后写入活动工具。用 Smoothie 或其他具有模态工具命令的固件进行的双挤出器打印需要此项。" +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "擦拭抬升速度" -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "正向 X 限位开关" +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "抬升期间移动 Z 轴的速度。" + +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "擦拭刷 X 轴坐标" msgctxt "wipe_brush_pos_x description" msgid "X location where wipe script will start." msgstr "擦拭开始处的 X 轴坐标。" -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y 覆盖 Z" +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "擦拭重复计数" -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "正向 Y 限位开关" +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "在擦拭刷上移动喷嘴的次数。" -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "正向 Z 限位开关" +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "擦拭移动距离" -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "挤出机切换后的 Z 抬升" +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "在擦拭刷上来回移动喷嘴头的距离。" -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "挤出机切换后的 Z 抬升高度" +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "小孔最大尺寸" -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Z 抬升高度" +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "将使用微小特征速度打印直径小于此尺寸的孔和零件轮廓。" -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "仅在已打印部分上 Z 抬升" +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "微小特征最大长度" -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Z 抬升速度" +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "将使用微小特征速度打印小于此长度的特征轮廓。" -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "回抽时 Z 抬升" +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "微小特征速度" -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Z 缝对齐" +msgctxt "small_feature_speed_factor description" +msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "微小特征将按正常打印速度的百分比进行打印。缓慢打印有助于粘合和提高准确性。" -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Z 缝位置" +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "微小特征初始层速度" -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Z 缝相对" +msgctxt "small_feature_speed_factor_0 description" +msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "第一层的微小特征将按正常打印速度的百分比进行打印。缓慢打印有助于粘合和提高准确性。" -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "Z 缝 X" +msgctxt "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "交替壁方向" -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Z 缝 Y" +msgctxt "material_alternate_walls description" +msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." +msgstr "在每一层或嵌入上交替壁方向。这适用于会产生应力的材料,例如在金属打印中。" -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z 覆盖 X/Y" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "外墙编组" -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "锯齿状" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "同一层不同组件的外墙依次进行打印。当启用此功能时,由于每次只打印一种类型的外壁,挤出量变化的数量受到限制;当禁用时,由于同一组件内的外壁被分组,组件之间的行进次数会减少。" -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "锯齿形" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "打印过程报告" -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "锯齿形" +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "报告超出设定阈值的事件" -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "锯齿形" +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "启用打印过程报告" -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "锯齿形" +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "启用打印过程报告以设置可能的故障检测的阈值。" -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "锯齿形" +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "挤出量警告" -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "锯齿状" +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "检测的挤出量警告限制。" -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "锯齿状" +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "挤出量限制" -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "锯齿状" +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "检测的挤出量异常限制。" -msgctxt "travel description" -msgid "travel" -msgstr "空驶" +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "打印温度警告" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "检测的打印温度警告限制。" -#~ msgctxt "brim_inside_margin description" -#~ msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -#~ msgstr "一个零件完全封闭在另一个零件内部会生成与另一个零件内部相接触的边沿。这可从内孔移除此距离内的所有边沿。" +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "打印温度限制" -#~ msgctxt "user_defined_print_order_enabled description" -#~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." -#~ msgstr "允许对对象列表进行排序,以手动设置打印顺序。列表中的第一个对象将首先被打印。" +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "检测的打印温度异常限制。" -#~ msgctxt "brim_inside_margin label" -#~ msgid "Brim Inside Avoid Margin" -#~ msgstr "修剪内部对象避免留白" +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "打印体积温度警告" -#~ msgctxt "brim_outside_only label" -#~ msgid "Brim Only on Outside" -#~ msgstr "仅在外部打印 Brim" +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "检测的打印体积温度警告限制。" -#~ msgctxt "gradual_flow_discretisation_step_size description" -#~ msgid "Duration of each step in the gradual flow change" -#~ msgstr "渐变流量每一步的持续时间" +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "打印体积温度限制" -#~ msgctxt "gradual_flow_enabled description" -#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -#~ msgstr "启用渐变流量。当启用时,流量逐渐增加/降低到目标流量。这对于有鲍登管的打印机很有用,当挤出机电机启动/停止时,流量不会立即改变。" +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "检测的打印体积温度异常限制。" -#~ msgctxt "reset_flow_duration description" -#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -#~ msgstr "对于任何超过此值的行程移动,材料流量将重置为路径目标流量" +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "命令行设置" -#~ msgctxt "gradual_flow_discretisation_step_size label" -#~ msgid "Gradual flow discretisation step size" -#~ msgstr "渐变流量离散步长" +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "未从 Cura 前端调用 CuraEngine 时使用的设置。" -#~ msgctxt "gradual_flow_enabled label" -#~ msgid "Gradual flow enabled" -#~ msgstr "渐变流量已启用" +msgctxt "center_object label" +msgid "Center Object" +msgstr "中心点" -#~ msgctxt "max_flow_acceleration label" -#~ msgid "Gradual flow max acceleration" -#~ msgstr "渐变流量最大加速度" +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "是否将模型放置在打印平台中心 (0,0),而不是使用模型在其中保存的坐标系统。" -#~ msgctxt "layer_0_max_flow_acceleration label" -#~ msgid "Initial layer max flow acceleration" -#~ msgstr "初始层最大流量加速度" +msgctxt "mesh_position_x label" +msgid "Mesh Position X" +msgstr "网格X位置" -#~ msgctxt "layer_0_z_overlap description" -#~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -#~ msgstr "使模型的第一层和第二层在 Z 方向上重叠以补偿在空隙中损失的耗材。 第一个模型层上方的所有模型将向下移动此重叠量。" +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "应用在模型 x 方向上的偏移量。" -#~ msgctxt "max_flow_acceleration description" -#~ msgid "Maximum acceleration for gradual flow changes" -#~ msgstr "渐变流量的最大加速度" +msgctxt "mesh_position_y label" +msgid "Mesh Position Y" +msgstr "网格Y位置" -#~ msgctxt "layer_0_max_flow_acceleration description" -#~ msgid "Minimum speed for gradual flow changes for the first layer" -#~ msgstr "第一层渐变流量的最小速度" +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "应用在模型 y 方向上的偏移量。" -#~ msgctxt "brim_outside_only description" -#~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -#~ msgstr "仅在模型外部打印 brim。 这会减少您之后需要移除的 brim 量,而不会过度影响热床附着。" +msgctxt "mesh_position_z label" +msgid "Mesh Position Z" +msgstr "网格Z位置" -#~ msgctxt "reset_flow_duration label" -#~ msgid "Reset flow duration" -#~ msgstr "重置流量持续时间" +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "应用在模型 z 方向上的偏移量。 利用此选项,您可以执行过去被称为“模型沉降”的操作。" -#~ msgctxt "support_interface_skip_height label" -#~ msgid "Support Interface Resolution" -#~ msgstr "支撑接触面分辨率" +msgctxt "mesh_rotation_matrix label" +msgid "Mesh Rotation Matrix" +msgstr "网格旋转矩阵" -#~ msgctxt "support_interface_skip_height description" -#~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -#~ msgstr "在检查支撑上方或下方是否有模型时,采用指定高度的步阶。 值越低切片速度越慢,而较高的值会导致在部分应有支撑接触面的位置打印一般的支撑。" +msgctxt "mesh_rotation_matrix description" +msgid "Transformation matrix to be applied to the model when loading it from file." +msgstr "在将模型从文件中载入时应用在模型上的转换矩阵。" diff --git a/resources/i18n/zh_CN/gradual_flow_settings.def.json.po b/resources/i18n/zh_CN/gradual_flow_settings.def.json.po index 363b0994aa1..4e50c5b731a 100644 --- a/resources/i18n/zh_CN/gradual_flow_settings.def.json.po +++ b/resources/i18n/zh_CN/gradual_flow_settings.def.json.po @@ -1,54 +1,53 @@ -# msgid "" msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: 2024-03-11 11:28+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: en\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=1; plural=0;\n" -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" - msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" msgstr "Gradual flow max acceleration" -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" - msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" msgstr "Maximum acceleration for gradual flow changes" +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" msgstr "Minimum speed for gradual flow changes for the first layer" +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + msgctxt "reset_flow_duration label" msgid "Reset flow duration" msgstr "Reset flow duration" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" From 32cf64f90cecc56f702aad449195ee7257de1bbe Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 15 Mar 2024 10:19:31 +0100 Subject: [PATCH 672/765] Upgrade `SettingVersion` CURA-11526 --- cura/CuraApplication.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 86bb53126c7..30497ce5f44 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -138,7 +138,7 @@ class CuraApplication(QtApplication): # SettingVersion represents the set of settings available in the machine/extruder definitions. # You need to make sure that this version number needs to be increased if there is any non-backwards-compatible # changes of the settings. - SettingVersion = 22 + SettingVersion = 23 Created = False From c821fd6b3954b386155edd6ff7988f10e4aef95f Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 15 Mar 2024 10:19:44 +0100 Subject: [PATCH 673/765] Fix parser value parsing CURA-11526 --- .../VersionUpgrade56to57/VersionUpgrade56to57.py | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/plugins/VersionUpgrade/VersionUpgrade56to57/VersionUpgrade56to57.py b/plugins/VersionUpgrade/VersionUpgrade56to57/VersionUpgrade56to57.py index 5ac4907ecb5..009e699c685 100644 --- a/plugins/VersionUpgrade/VersionUpgrade56to57/VersionUpgrade56to57.py +++ b/plugins/VersionUpgrade/VersionUpgrade56to57/VersionUpgrade56to57.py @@ -37,11 +37,6 @@ def upgradePreferences(self, serialized: str, filename: str) -> Tuple[List[str], if removed in visible_settings: visible_settings.remove(removed) - if "brim_outside_only" in parser["values"]: - parser["values"]["brim_location"] = "outside" if bool( - parser["values"]["brim_outside_only"]) else "everywhere" - del parser["values"]["brim_outside_only"] - parser["general"]["visible_settings"] = ";".join(visible_settings) result = io.StringIO() @@ -74,8 +69,8 @@ def upgradeInstanceContainer(self, serialized: str, filename: str) -> Tuple[List del parser["values"][removed] if "brim_outside_only" in parser["values"]: - parser["values"]["brim_location"] = "outside" if bool( - parser["values"]["brim_outside_only"]) else "everywhere" + parser["values"]["brim_location"] = "outside" if parser["values"][ + "brim_outside_only"] == "True" else "everywhere" del parser["values"]["brim_outside_only"] result = io.StringIO() From 3aa32298dc54f734d4ddd4fc506fb94ea86e63a2 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 15 Mar 2024 10:28:16 +0100 Subject: [PATCH 674/765] Bumb version in profiles CURA-11526 --- .../deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_B.inst.cfg | 2 +- .../deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_C.inst.cfg | 2 +- .../deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_D.inst.cfg | 2 +- .../intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_D.inst.cfg | 2 +- .../intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_E.inst.cfg | 2 +- .../deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_B.inst.cfg | 2 +- .../deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_C.inst.cfg | 2 +- .../deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_D.inst.cfg | 2 +- .../intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_D.inst.cfg | 2 +- .../intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_E.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_B.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_C.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_D.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_C.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_D.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_E.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_B.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_C.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_D.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_C.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_D.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_E.inst.cfg | 2 +- .../deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg | 2 +- .../deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg | 2 +- .../deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg | 2 +- .../intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_D.inst.cfg | 2 +- .../intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_E.inst.cfg | 2 +- .../deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg | 2 +- .../deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg | 2 +- .../deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg | 2 +- .../intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_D.inst.cfg | 2 +- .../intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_E.inst.cfg | 2 +- .../PLA/elegoo_base_aa0.4_pla_0.05mm_visual.inst.cfg | 2 +- .../PLA/elegoo_base_aa0.4_pla_0.15mm_engineering.inst.cfg | 2 +- .../PLA/elegoo_base_aa0.4_pla_0.15mm_visual.inst.cfg | 2 +- .../PLA/elegoo_base_aa0.4_pla_0.1mm_engineering.inst.cfg | 2 +- .../elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_visual.inst.cfg | 2 +- .../elegoo_base/PLA/elegoo_base_aa0.4_pla_0.2mm_quick.inst.cfg | 2 +- .../elegoo_base/PLA/elegoo_base_aa0.4_pla_0.3mm_quick.inst.cfg | 2 +- .../PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg | 2 +- .../PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg | 2 +- .../PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg | 2 +- .../PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg | 2 +- .../PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg | 2 +- .../PLA/elegoo_n4_aa0.4_pla_0.2mm_engineering.inst.cfg | 2 +- .../PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg | 2 +- .../PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg | 2 +- .../intent/liquid/liquid_vo0.4_ABS_Draft_Print_Quick.inst.cfg | 2 +- .../intent/liquid/liquid_vo0.4_ABS_Fast_Print_Accurate.inst.cfg | 2 +- resources/intent/liquid/liquid_vo0.4_ABS_Fast_Visual.inst.cfg | 2 +- resources/intent/liquid/liquid_vo0.4_ABS_High_Visual.inst.cfg | 2 +- .../liquid/liquid_vo0.4_ABS_Normal_Quality_Accurate.inst.cfg | 2 +- resources/intent/liquid/liquid_vo0.4_ABS_Normal_Visual.inst.cfg | 2 +- .../intent/liquid/liquid_vo0.4_CPE_Fast_Print_Accurate.inst.cfg | 2 +- .../liquid/liquid_vo0.4_CPE_Normal_Quality_Accurate.inst.cfg | 2 +- .../liquid/liquid_vo0.4_Nylon_Fast_Print_Accurate.inst.cfg | 2 +- .../liquid/liquid_vo0.4_Nylon_Normal_Quality_Accurate.inst.cfg | 2 +- .../intent/liquid/liquid_vo0.4_PC_Fast_Print_Accurate.inst.cfg | 2 +- .../liquid/liquid_vo0.4_PC_Normal_Quality_Accurate.inst.cfg | 2 +- .../intent/liquid/liquid_vo0.4_PETG_Draft_Print_Quick.inst.cfg | 2 +- .../liquid/liquid_vo0.4_PETG_Fast_Print_Accurate.inst.cfg | 2 +- resources/intent/liquid/liquid_vo0.4_PETG_Fast_Visual.inst.cfg | 2 +- resources/intent/liquid/liquid_vo0.4_PETG_High_Visual.inst.cfg | 2 +- .../liquid/liquid_vo0.4_PETG_Normal_Quality_Accurate.inst.cfg | 2 +- .../intent/liquid/liquid_vo0.4_PETG_Normal_Visual.inst.cfg | 2 +- .../intent/liquid/liquid_vo0.4_PLA_Draft_Print_Quick.inst.cfg | 2 +- .../intent/liquid/liquid_vo0.4_PLA_Fast_Print_Accurate.inst.cfg | 2 +- resources/intent/liquid/liquid_vo0.4_PLA_Fast_Visual.inst.cfg | 2 +- resources/intent/liquid/liquid_vo0.4_PLA_High_Visual.inst.cfg | 2 +- .../liquid/liquid_vo0.4_PLA_Normal_Quality_Accurate.inst.cfg | 2 +- resources/intent/liquid/liquid_vo0.4_PLA_Normal_Visual.inst.cfg | 2 +- .../um_methodx_1c_um-abscf-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodx_1c_um-absr-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodx_1c_um-asa-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodx_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodx_1xa_um-absr-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodx_1xa_um-asa-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodx_2xa_um-sr30-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodx_labs_um-abscf-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodx_labs_um-absr-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodx_labs_um-asa-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodx_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodxl_1c_um-abscf-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodxl_1c_um-absr-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodxl_1c_um-asa-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodxl_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodxl_1xa_um-absr-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodxl_1xa_um-asa-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodxl_2xa_um-sr30-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodxl_labs_um-abscf-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodxl_labs_um-absr-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodxl_labs_um-asa-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodxl_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_abs_0.06mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_abs_0.15mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_abs_0.1mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_abs_0.2mm_quick.inst.cfg | 2 +- .../um_s3_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg | 2 +- .../um_s3_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_cpe_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_cpe_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_nylon_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_nylon_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_pc_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_pc_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_petg_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_petg_0.1mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_pla_0.06mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_pla_0.15mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_pla_0.1mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_pla_0.2mm_quick.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_pla_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm_visual.inst.cfg | 2 +- .../um_s3_aa0.4_tough-pla_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_visual.inst.cfg | 2 +- .../um_s3_aa0.4_tough-pla_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg | 2 +- .../um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg | 2 +- .../um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg | 2 +- .../um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg | 2 +- .../um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg | 2 +- .../um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg | 2 +- .../um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg | 2 +- .../um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg | 2 +- .../ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg | 2 +- .../ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg | 2 +- .../ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg | 2 +- .../ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_abs_0.06mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_abs_0.15mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_abs_0.1mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_abs_0.2mm_quick.inst.cfg | 2 +- .../um_s5_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg | 2 +- .../um_s5_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_cpe_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_cpe_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_nylon_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_nylon_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_pc_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_pc_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_petg_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_petg_0.1mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_pla_0.06mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_pla_0.15mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_pla_0.1mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_pla_0.2mm_quick.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_pla_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm_visual.inst.cfg | 2 +- .../um_s5_aa0.4_tough-pla_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_visual.inst.cfg | 2 +- .../um_s5_aa0.4_tough-pla_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg | 2 +- .../um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg | 2 +- .../um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg | 2 +- .../um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg | 2 +- .../um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg | 2 +- .../um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg | 2 +- .../um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg | 2 +- .../um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg | 2 +- .../ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg | 2 +- .../ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg | 2 +- .../ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg | 2 +- .../ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_engineering.inst.cfg | 2 +- .../abs/abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg | 2 +- .../uni_base/abs/abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg | 2 +- .../abs/abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg | 2 +- .../uni_base/abs/abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg | 2 +- .../uni_base/abs/abs_nozzle_0.40_layer_0.20_quick.inst.cfg | 2 +- .../abs/abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg | 2 +- .../uni_base/abs/abs_nozzle_0.40_layer_0.25_quick.inst.cfg | 2 +- .../uni_base/abs/abs_nozzle_0.40_layer_0.30_quick.inst.cfg | 2 +- .../petg/petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg | 2 +- .../uni_base/petg/petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg | 2 +- .../petg/petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg | 2 +- .../uni_base/petg/petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg | 2 +- .../uni_base/petg/petg_nozzle_0.40_layer_0.20_quick.inst.cfg | 2 +- .../petg/petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg | 2 +- .../uni_base/petg/petg_nozzle_0.40_layer_0.25_quick.inst.cfg | 2 +- .../uni_base/petg/petg_nozzle_0.40_layer_0.30_quick.inst.cfg | 2 +- .../pla/pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg | 2 +- .../uni_base/pla/pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg | 2 +- .../pla/pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg | 2 +- .../uni_base/pla/pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg | 2 +- .../uni_base/pla/pla_nozzle_0.40_layer_0.20_quick.inst.cfg | 2 +- .../pla/pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg | 2 +- .../uni_base/pla/pla_nozzle_0.40_layer_0.25_quick.inst.cfg | 2 +- .../uni_base/pla/pla_nozzle_0.40_layer_0.30_quick.inst.cfg | 2 +- .../abs/zav_abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg | 2 +- .../abs/zav_abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg | 2 +- .../abs/zav_abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg | 2 +- .../abs/zav_abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg | 2 +- .../zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_quick.inst.cfg | 2 +- .../abs/zav_abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg | 2 +- .../zav_base/abs/zav_abs_nozzle_0.40_layer_0.25_quick.inst.cfg | 2 +- .../zav_base/abs/zav_abs_nozzle_0.40_layer_0.30_quick.inst.cfg | 2 +- .../petg/zav_petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg | 2 +- .../petg/zav_petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg | 2 +- .../petg/zav_petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg | 2 +- .../petg/zav_petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg | 2 +- .../petg/zav_petg_nozzle_0.40_layer_0.20_quick.inst.cfg | 2 +- .../petg/zav_petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg | 2 +- .../petg/zav_petg_nozzle_0.40_layer_0.25_quick.inst.cfg | 2 +- .../petg/zav_petg_nozzle_0.40_layer_0.30_quick.inst.cfg | 2 +- .../pla/zav_pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg | 2 +- .../pla/zav_pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg | 2 +- .../pla/zav_pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg | 2 +- .../pla/zav_pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg | 2 +- .../zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_quick.inst.cfg | 2 +- .../pla/zav_pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg | 2 +- .../zav_base/pla/zav_pla_nozzle_0.40_layer_0.25_quick.inst.cfg | 2 +- .../zav_base/pla/zav_pla_nozzle_0.40_layer_0.30_quick.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_global_standard.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg | 2 +- resources/quality/abax_pri3/apri3_pla_fast.inst.cfg | 2 +- resources/quality/abax_pri3/apri3_pla_high.inst.cfg | 2 +- resources/quality/abax_pri3/apri3_pla_normal.inst.cfg | 2 +- resources/quality/abax_pri5/apri5_pla_fast.inst.cfg | 2 +- resources/quality/abax_pri5/apri5_pla_high.inst.cfg | 2 +- resources/quality/abax_pri5/apri5_pla_normal.inst.cfg | 2 +- resources/quality/abax_titan/atitan_pla_fast.inst.cfg | 2 +- resources/quality/abax_titan/atitan_pla_high.inst.cfg | 2 +- resources/quality/abax_titan/atitan_pla_normal.inst.cfg | 2 +- resources/quality/ankermake_m5/ankermake_m5_draft.inst.cfg | 2 +- resources/quality/ankermake_m5/ankermake_m5_fine.inst.cfg | 2 +- resources/quality/ankermake_m5/ankermake_m5_normal.inst.cfg | 2 +- .../quality/anycubic_4max/abs/anycubic_4max_abs_draft.inst.cfg | 2 +- .../quality/anycubic_4max/abs/anycubic_4max_abs_high.inst.cfg | 2 +- .../quality/anycubic_4max/abs/anycubic_4max_abs_normal.inst.cfg | 2 +- resources/quality/anycubic_4max/anycubic_4max_draft.inst.cfg | 2 +- resources/quality/anycubic_4max/anycubic_4max_high.inst.cfg | 2 +- resources/quality/anycubic_4max/anycubic_4max_normal.inst.cfg | 2 +- .../anycubic_4max/hips/anycubic_4max_hips_draft.inst.cfg | 2 +- .../quality/anycubic_4max/hips/anycubic_4max_hips_high.inst.cfg | 2 +- .../anycubic_4max/hips/anycubic_4max_hips_normal.inst.cfg | 2 +- .../anycubic_4max/petg/anycubic_4max_petg_draft.inst.cfg | 2 +- .../quality/anycubic_4max/petg/anycubic_4max_petg_high.inst.cfg | 2 +- .../anycubic_4max/petg/anycubic_4max_petg_normal.inst.cfg | 2 +- .../quality/anycubic_4max/pla/anycubic_4max_pla_draft.inst.cfg | 2 +- .../quality/anycubic_4max/pla/anycubic_4max_pla_high.inst.cfg | 2 +- .../quality/anycubic_4max/pla/anycubic_4max_pla_normal.inst.cfg | 2 +- .../quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg | 2 +- resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg | 2 +- .../quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg | 2 +- .../quality/anycubic_i3_mega/anycubic_i3_mega_draft.inst.cfg | 2 +- .../quality/anycubic_i3_mega/anycubic_i3_mega_high.inst.cfg | 2 +- .../quality/anycubic_i3_mega/anycubic_i3_mega_normal.inst.cfg | 2 +- .../anycubic_i3_mega_s/anycubic_i3_mega_s_draft.inst.cfg | 2 +- .../quality/anycubic_i3_mega_s/anycubic_i3_mega_s_high.inst.cfg | 2 +- .../anycubic_i3_mega_s/anycubic_i3_mega_s_normal.inst.cfg | 2 +- resources/quality/anycubic_kobra/anycubic_kobra_abs.inst.cfg | 2 +- resources/quality/anycubic_kobra/anycubic_kobra_pla.inst.cfg | 2 +- resources/quality/anycubic_kobra/anycubic_kobra_tpu.inst.cfg | 2 +- .../quality/anycubic_kobra_go/anycubic_kobra_go_abs.inst.cfg | 2 +- .../quality/anycubic_kobra_go/anycubic_kobra_go_pla.inst.cfg | 2 +- .../quality/anycubic_kobra_go/anycubic_kobra_go_tpu.inst.cfg | 2 +- .../quality/anycubic_kobra_max/anycubic_kobra_max_pla.inst.cfg | 2 +- .../quality/anycubic_kobra_max/anycubic_kobra_max_tpu.inst.cfg | 2 +- .../anycubic_kobra_plus/anycubic_kobra_plus_normal.inst.cfg | 2 +- .../anycubic_mega_zero/anycubic_mega_zero_draft.inst.cfg | 2 +- .../quality/anycubic_mega_zero/anycubic_mega_zero_high.inst.cfg | 2 +- .../anycubic_mega_zero/anycubic_mega_zero_normal.inst.cfg | 2 +- resources/quality/anycubic_predator/predator_coarse.inst.cfg | 2 +- resources/quality/anycubic_predator/predator_draft.inst.cfg | 2 +- .../quality/anycubic_predator/predator_extra_coarse.inst.cfg | 2 +- .../quality/anycubic_predator/predator_extra_fine.inst.cfg | 2 +- resources/quality/anycubic_predator/predator_fine.inst.cfg | 2 +- resources/quality/anycubic_predator/predator_normal.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.2_ABS_super.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.2_ABS_ultra.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.3_ABS_adaptive.inst.cfg | 2 +- resources/quality/artillery/ABS/artillery_0.3_ABS_low.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.3_ABS_standard.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.3_ABS_super.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.4_ABS_adaptive.inst.cfg | 2 +- resources/quality/artillery/ABS/artillery_0.4_ABS_low.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.4_ABS_standard.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.4_ABS_super.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.5_ABS_adaptive.inst.cfg | 2 +- resources/quality/artillery/ABS/artillery_0.5_ABS_low.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.5_ABS_standard.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.5_ABS_super.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.6_ABS_standard.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.8_ABS_draft.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_1.0_ABS_draft.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.2_PETG_super.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.2_PETG_ultra.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.3_PETG_adaptive.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.3_PETG_low.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.3_PETG_standard.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.3_PETG_super.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.4_PETG_adaptive.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.4_PETG_low.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.4_PETG_standard.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.4_PETG_super.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.5_PETG_adaptive.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.5_PETG_low.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.5_PETG_standard.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.5_PETG_super.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.6_PETG_standard.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.8_PETG_draft.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_1.0_PETG_draft.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.2_PLA_super.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.2_PLA_ultra.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.3_PLA_adaptive.inst.cfg | 2 +- resources/quality/artillery/PLA/artillery_0.3_PLA_low.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.3_PLA_standard.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.3_PLA_super.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.4_PLA_adaptive.inst.cfg | 2 +- resources/quality/artillery/PLA/artillery_0.4_PLA_low.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.4_PLA_standard.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.4_PLA_super.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.5_PLA_adaptive.inst.cfg | 2 +- resources/quality/artillery/PLA/artillery_0.5_PLA_low.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.5_PLA_standard.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.5_PLA_super.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.6_PLA_draft.inst.cfg | 2 +- resources/quality/artillery/PLA/artillery_0.6_PLA_low.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.6_PLA_standard.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.8_PLA_draft.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_1.0_PLA_draft.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_0.3_TPU_adaptive.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_0.3_TPU_standard.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_0.3_TPU_super.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_0.4_TPU_adaptive.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_0.4_TPU_standard.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_0.4_TPU_super.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_0.5_TPU_adaptive.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_0.5_TPU_standard.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_0.5_TPU_super.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_0.6_TPU_standard.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_0.8_TPU_draft.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_1.0_TPU_draft.inst.cfg | 2 +- resources/quality/artillery/artillery_global_adaptive.inst.cfg | 2 +- resources/quality/artillery/artillery_global_draft.inst.cfg | 2 +- resources/quality/artillery/artillery_global_low.inst.cfg | 2 +- resources/quality/artillery/artillery_global_standard.inst.cfg | 2 +- resources/quality/artillery/artillery_global_super.inst.cfg | 2 +- resources/quality/artillery/artillery_global_ultra.inst.cfg | 2 +- .../quality/artillery/nylon/artillery_0.2_Nylon_super.inst.cfg | 2 +- .../quality/artillery/nylon/artillery_0.2_Nylon_ultra.inst.cfg | 2 +- .../artillery/nylon/artillery_0.3_Nylon_adaptive.inst.cfg | 2 +- .../quality/artillery/nylon/artillery_0.3_Nylon_low.inst.cfg | 2 +- .../artillery/nylon/artillery_0.3_Nylon_standard.inst.cfg | 2 +- .../quality/artillery/nylon/artillery_0.3_Nylon_super.inst.cfg | 2 +- .../artillery/nylon/artillery_0.4_Nylon_adaptive.inst.cfg | 2 +- .../quality/artillery/nylon/artillery_0.4_Nylon_low.inst.cfg | 2 +- .../artillery/nylon/artillery_0.4_Nylon_standard.inst.cfg | 2 +- .../quality/artillery/nylon/artillery_0.4_Nylon_super.inst.cfg | 2 +- .../artillery/nylon/artillery_0.5_Nylon_adaptive.inst.cfg | 2 +- .../quality/artillery/nylon/artillery_0.5_Nylon_low.inst.cfg | 2 +- .../artillery/nylon/artillery_0.5_Nylon_standard.inst.cfg | 2 +- .../quality/artillery/nylon/artillery_0.5_Nylon_super.inst.cfg | 2 +- .../artillery/nylon/artillery_0.6_Nylon_standard.inst.cfg | 2 +- .../quality/artillery/nylon/artillery_0.8_Nylon_draft.inst.cfg | 2 +- .../quality/artillery/nylon/artillery_1.0_Nylon_draft.inst.cfg | 2 +- .../signal_pro_global_extrafast_quality.inst.cfg | 2 +- .../signal_pro_global_extrafine_quality.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_global_fast_quality.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_global_fine_quality.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_global_normal_quality.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_global_sprint_quality.inst.cfg | 2 +- .../signal_pro_global_supersprint_quality.inst.cfg | 2 +- .../signal_pro_global_ultrasprint_quality.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_ABS_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_ABS_fast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_ABS_fine.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_ABS_normal.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_HIPS_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_HIPS_fast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_HIPS_fine.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_HIPS_normal.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PA_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PA_fast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PA_fine.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PA_normal.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PC_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PC_fast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PC_fine.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PC_normal.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PETG_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PETG_fast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PETG_fine.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PETG_normal.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PLA_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PLA_fast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PLA_fine.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PLA_normal.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PVA_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PVA_fast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PVA_fine.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PVA_normal.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_TPU_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_TPU_fast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_TPU_fine.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_TPU_normal.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_ABS_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_ABS_sprint.inst.cfg | 2 +- .../signal_pro_v6_0.80_ABS_supersprint.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_HIPS_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_HIPS_sprint.inst.cfg | 2 +- .../signal_pro_v6_0.80_HIPS_supersprint.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PA_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PA_sprint.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PA_supersprint.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PC_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PC_sprint.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PC_supersprint.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PETG_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PETG_sprint.inst.cfg | 2 +- .../signal_pro_v6_0.80_PETG_supersprint.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PLA_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PLA_sprint.inst.cfg | 2 +- .../signal_pro_v6_0.80_PLA_supersprint.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PVA_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PVA_sprint.inst.cfg | 2 +- .../signal_pro_v6_0.80_PVA_supersprint.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_TPU_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_TPU_sprint.inst.cfg | 2 +- .../signal_pro_v6_0.80_TPU_supersprint.inst.cfg | 2 +- resources/quality/beamup_l/beamup_l_coarse.inst.cfg | 2 +- resources/quality/beamup_l/beamup_l_draft.inst.cfg | 2 +- resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg | 2 +- resources/quality/beamup_l/beamup_l_fine.inst.cfg | 2 +- resources/quality/beamup_l/beamup_l_normal.inst.cfg | 2 +- resources/quality/beamup_s/beamup_s_coarse.inst.cfg | 2 +- resources/quality/beamup_s/beamup_s_draft.inst.cfg | 2 +- resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg | 2 +- resources/quality/beamup_s/beamup_s_fine.inst.cfg | 2 +- resources/quality/beamup_s/beamup_s_normal.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.2_ABS_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.2_ABS_ultra.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.2_PETG_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.2_PETG_ultra.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.2_PLA_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.2_PLA_ultra.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_ABS_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_ABS_low.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_ABS_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_ABS_super.inst.cfg | 2 +- .../quality/biqu/base/biqu_base_0.3_PETG_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_PETG_low.inst.cfg | 2 +- .../quality/biqu/base/biqu_base_0.3_PETG_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_PETG_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_PLA_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_PLA_low.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_PLA_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_PLA_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_TPU_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_TPU_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_TPU_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_ABS_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_ABS_low.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_ABS_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_ABS_super.inst.cfg | 2 +- .../quality/biqu/base/biqu_base_0.4_PETG_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_PETG_low.inst.cfg | 2 +- .../quality/biqu/base/biqu_base_0.4_PETG_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_PETG_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_PLA_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_PLA_low.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_PLA_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_PLA_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_TPU_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_TPU_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_TPU_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_ABS_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_ABS_low.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_ABS_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_ABS_super.inst.cfg | 2 +- .../quality/biqu/base/biqu_base_0.5_PETG_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_PETG_low.inst.cfg | 2 +- .../quality/biqu/base/biqu_base_0.5_PETG_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_PETG_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_PLA_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_PLA_low.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_PLA_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_PLA_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_TPU_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_TPU_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_TPU_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.6_ABS_standard.inst.cfg | 2 +- .../quality/biqu/base/biqu_base_0.6_PETG_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.6_PLA_draft.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.6_PLA_low.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.6_PLA_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.6_TPU_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.8_ABS_draft.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.8_PETG_draft.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.8_PLA_draft.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.8_TPU_draft.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_1.0_ABS_draft.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_1.0_PETG_draft.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_1.0_PLA_draft.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_1.0_TPU_draft.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_global_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_global_draft.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_global_low.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_global_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_global_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_global_ultra.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.20_draft.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.20_standard.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.30_draft.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.30_standard.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.30_ultra.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.40_adaptive.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.40_draft.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.40_standard.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.40_ultra.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.50_adaptive.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.50_draft.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.50_standard.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.50_ultra.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.60_adaptive.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.60_draft.inst.cfg | 2 +- resources/quality/blocks/Nozzle/blocks_global_0.60_low.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.60_standard.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.60_ultra.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.80_adaptive.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.80_draft.inst.cfg | 2 +- resources/quality/blocks/Nozzle/blocks_global_0.80_low.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.80_standard.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.80_superlow.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.80_ultra.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_1.0_adaptive.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_1.0_draft.inst.cfg | 2 +- resources/quality/blocks/Nozzle/blocks_global_1.0_low.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_1.0_standard.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_1.0_superlow.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_1.0_ultra.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_1.2_adaptive.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_1.2_draft.inst.cfg | 2 +- resources/quality/blocks/Nozzle/blocks_global_1.2_low.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_1.2_standard.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_1.2_superlow.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_1.2_ultra.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.40_adaptive.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.40_draft.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.40_standard.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.40_ultra.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.50_adaptive.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.50_draft.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.50_standard.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.50_ultra.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.60_adaptive.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.60_draft.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.60_low.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.60_standard.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.60_ultra.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.80_adaptive.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.80_draft.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.80_low.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.80_standard.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.80_superlow.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.80_ultra.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.20_adaptive.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.20_ultra.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.30_adaptive.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.30_standard.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.30_ultra.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.40_adaptive.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.40_draft.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.40_standard.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.40_ultra.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.50_adaptive.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.50_draft.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.50_standard.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.50_ultra.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.60_adaptive.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.60_draft.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.60_low.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.60_standard.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.60_ultra.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.80_adaptive.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.80_draft.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.80_low.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.80_standard.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.80_superlow.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.80_ultra.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.0_adaptive.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.0_draft.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.0_low.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.0_standard.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.0_superlow.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.0_ultra.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.2_adaptive.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.2_draft.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.2_low.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.2_standard.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.2_superlow.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.2_ultra.inst.cfg | 2 +- .../quality/builder_premium/bp_BVOH_Coarse_Quality.inst.cfg | 2 +- resources/quality/builder_premium/bp_BVOH_High_Quality.inst.cfg | 2 +- .../quality/builder_premium/bp_BVOH_Normal_Quality.inst.cfg | 2 +- .../builder_premium/bp_Innoflex60_Coarse_Quality.inst.cfg | 2 +- .../quality/builder_premium/bp_Innoflex60_High_Quality.inst.cfg | 2 +- .../builder_premium/bp_Innoflex60_Normal_Quality.inst.cfg | 2 +- .../quality/builder_premium/bp_PET_Coarse_Quality.inst.cfg | 2 +- resources/quality/builder_premium/bp_PET_High_Quality.inst.cfg | 2 +- .../quality/builder_premium/bp_PET_Normal_Quality.inst.cfg | 2 +- .../quality/builder_premium/bp_PLA_Coarse_Quality.inst.cfg | 2 +- resources/quality/builder_premium/bp_PLA_High_Quality.inst.cfg | 2 +- .../quality/builder_premium/bp_PLA_Normal_Quality.inst.cfg | 2 +- .../quality/builder_premium/bp_PVA_Coarse_Quality.inst.cfg | 2 +- resources/quality/builder_premium/bp_PVA_High_Quality.inst.cfg | 2 +- .../quality/builder_premium/bp_PVA_Normal_Quality.inst.cfg | 2 +- .../quality/builder_premium/bp_global_Coarse_Quality.inst.cfg | 2 +- .../quality/builder_premium/bp_global_High_Quality.inst.cfg | 2 +- .../quality/builder_premium/bp_global_Normal_Quality.inst.cfg | 2 +- resources/quality/cartesio/abs/cartesio_0.25_abs_high.inst.cfg | 2 +- .../quality/cartesio/abs/cartesio_0.25_abs_normal.inst.cfg | 2 +- resources/quality/cartesio/abs/cartesio_0.4_abs_high.inst.cfg | 2 +- resources/quality/cartesio/abs/cartesio_0.4_abs_normal.inst.cfg | 2 +- resources/quality/cartesio/abs/cartesio_0.8_abs_coarse.inst.cfg | 2 +- .../quality/cartesio/abs/cartesio_0.8_abs_extra_coarse.inst.cfg | 2 +- resources/quality/cartesio/abs/cartesio_0.8_abs_high.inst.cfg | 2 +- resources/quality/cartesio/abs/cartesio_0.8_abs_normal.inst.cfg | 2 +- .../cartesio/arnitel/cartesio_0.4_arnitel2045_high.inst.cfg | 2 +- .../cartesio/arnitel/cartesio_0.4_arnitel2045_normal.inst.cfg | 2 +- .../quality/cartesio/cartesio_global_Coarse_Quality.inst.cfg | 2 +- .../cartesio/cartesio_global_Extra_Coarse_Quality.inst.cfg | 2 +- .../quality/cartesio/cartesio_global_High_Quality.inst.cfg | 2 +- .../quality/cartesio/cartesio_global_Normal_Quality.inst.cfg | 2 +- .../quality/cartesio/hips/cartesio_0.25_hips_high.inst.cfg | 2 +- .../quality/cartesio/hips/cartesio_0.25_hips_normal.inst.cfg | 2 +- resources/quality/cartesio/hips/cartesio_0.4_hips_high.inst.cfg | 2 +- .../quality/cartesio/hips/cartesio_0.4_hips_normal.inst.cfg | 2 +- .../quality/cartesio/hips/cartesio_0.8_hips_coarse.inst.cfg | 2 +- .../cartesio/hips/cartesio_0.8_hips_extra_coarse.inst.cfg | 2 +- resources/quality/cartesio/hips/cartesio_0.8_hips_high.inst.cfg | 2 +- .../quality/cartesio/hips/cartesio_0.8_hips_normal.inst.cfg | 2 +- .../quality/cartesio/nylon/cartesio_0.25_nylon_high.inst.cfg | 2 +- .../quality/cartesio/nylon/cartesio_0.25_nylon_normal.inst.cfg | 2 +- .../quality/cartesio/nylon/cartesio_0.4_nylon_high.inst.cfg | 2 +- .../quality/cartesio/nylon/cartesio_0.4_nylon_normal.inst.cfg | 2 +- .../quality/cartesio/nylon/cartesio_0.8_nylon_coarse.inst.cfg | 2 +- .../cartesio/nylon/cartesio_0.8_nylon_extra_coarse.inst.cfg | 2 +- .../quality/cartesio/nylon/cartesio_0.8_nylon_high.inst.cfg | 2 +- .../quality/cartesio/nylon/cartesio_0.8_nylon_normal.inst.cfg | 2 +- resources/quality/cartesio/pc/cartesio_0.25_pc_high.inst.cfg | 2 +- resources/quality/cartesio/pc/cartesio_0.25_pc_normal.inst.cfg | 2 +- resources/quality/cartesio/pc/cartesio_0.4_pc_high.inst.cfg | 2 +- resources/quality/cartesio/pc/cartesio_0.4_pc_normal.inst.cfg | 2 +- resources/quality/cartesio/pc/cartesio_0.8_pc_coarse.inst.cfg | 2 +- .../quality/cartesio/pc/cartesio_0.8_pc_extra_coarse.inst.cfg | 2 +- resources/quality/cartesio/pc/cartesio_0.8_pc_high.inst.cfg | 2 +- resources/quality/cartesio/pc/cartesio_0.8_pc_normal.inst.cfg | 2 +- .../quality/cartesio/petg/cartesio_0.25_petg_high.inst.cfg | 2 +- .../quality/cartesio/petg/cartesio_0.25_petg_normal.inst.cfg | 2 +- resources/quality/cartesio/petg/cartesio_0.4_petg_high.inst.cfg | 2 +- .../quality/cartesio/petg/cartesio_0.4_petg_normal.inst.cfg | 2 +- .../quality/cartesio/petg/cartesio_0.8_petg_coarse.inst.cfg | 2 +- .../cartesio/petg/cartesio_0.8_petg_extra_coarse.inst.cfg | 2 +- resources/quality/cartesio/petg/cartesio_0.8_petg_high.inst.cfg | 2 +- .../quality/cartesio/petg/cartesio_0.8_petg_normal.inst.cfg | 2 +- resources/quality/cartesio/pla/cartesio_0.25_pla_high.inst.cfg | 2 +- .../quality/cartesio/pla/cartesio_0.25_pla_normal.inst.cfg | 2 +- resources/quality/cartesio/pla/cartesio_0.4_pla_high.inst.cfg | 2 +- resources/quality/cartesio/pla/cartesio_0.4_pla_normal.inst.cfg | 2 +- resources/quality/cartesio/pla/cartesio_0.8_pla_coarse.inst.cfg | 2 +- .../quality/cartesio/pla/cartesio_0.8_pla_extra_coarse.inst.cfg | 2 +- resources/quality/cartesio/pla/cartesio_0.8_pla_high.inst.cfg | 2 +- resources/quality/cartesio/pla/cartesio_0.8_pla_normal.inst.cfg | 2 +- resources/quality/cartesio/pva/cartesio_0.25_pva_high.inst.cfg | 2 +- .../quality/cartesio/pva/cartesio_0.25_pva_normal.inst.cfg | 2 +- resources/quality/cartesio/pva/cartesio_0.4_pva_high.inst.cfg | 2 +- resources/quality/cartesio/pva/cartesio_0.4_pva_normal.inst.cfg | 2 +- resources/quality/cartesio/pva/cartesio_0.8_pva_coarse.inst.cfg | 2 +- .../quality/cartesio/pva/cartesio_0.8_pva_extra_coarse.inst.cfg | 2 +- resources/quality/cartesio/pva/cartesio_0.8_pva_high.inst.cfg | 2 +- resources/quality/cartesio/pva/cartesio_0.8_pva_normal.inst.cfg | 2 +- resources/quality/coarse.inst.cfg | 2 +- .../crazy3dprint/abs/crazy3dprint_0.40_abs_coarse.inst.cfg | 2 +- .../crazy3dprint/abs/crazy3dprint_0.40_abs_draft.inst.cfg | 2 +- .../crazy3dprint/abs/crazy3dprint_0.40_abs_fine.inst.cfg | 2 +- .../crazy3dprint/abs/crazy3dprint_0.40_abs_normal.inst.cfg | 2 +- .../quality/crazy3dprint/crazy3dprint_global_0.10_fine.inst.cfg | 2 +- .../crazy3dprint/crazy3dprint_global_0.20_normal.inst.cfg | 2 +- .../crazy3dprint/crazy3dprint_global_0.30_draft.inst.cfg | 2 +- .../crazy3dprint/crazy3dprint_global_0.40_coarse.inst.cfg | 2 +- .../crazy3dprint/pla/crazy3dprint_0.40_pla_coarse.inst.cfg | 2 +- .../crazy3dprint/pla/crazy3dprint_0.40_pla_draft.inst.cfg | 2 +- .../crazy3dprint/pla/crazy3dprint_0.40_pla_fine.inst.cfg | 2 +- .../crazy3dprint/pla/crazy3dprint_0.40_pla_normal.inst.cfg | 2 +- resources/quality/creality/base/base_0.2_ABS_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.2_ABS_ultra.inst.cfg | 2 +- resources/quality/creality/base/base_0.2_PETG_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.2_PETG_ultra.inst.cfg | 2 +- resources/quality/creality/base/base_0.2_PLA_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.2_PLA_ultra.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_ABS_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_ABS_low.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_ABS_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_ABS_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_PETG_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_PETG_low.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_PETG_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_PETG_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_PLA_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_PLA_low.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_PLA_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_PLA_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_TPU_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_TPU_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_TPU_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_ABS_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_ABS_low.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_ABS_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_ABS_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_PETG_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_PETG_low.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_PETG_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_PETG_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_PLA_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_PLA_low.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_PLA_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_PLA_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_TPU_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_TPU_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_TPU_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_ABS_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_ABS_low.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_ABS_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_ABS_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_PETG_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_PETG_low.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_PETG_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_PETG_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_PLA_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_PLA_low.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_PLA_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_PLA_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_TPU_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_TPU_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_TPU_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.6_ABS_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.6_PETG_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.6_PLA_draft.inst.cfg | 2 +- resources/quality/creality/base/base_0.6_PLA_low.inst.cfg | 2 +- resources/quality/creality/base/base_0.6_PLA_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.6_TPU_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.8_ABS_draft.inst.cfg | 2 +- resources/quality/creality/base/base_0.8_PETG_draft.inst.cfg | 2 +- resources/quality/creality/base/base_0.8_PLA_draft.inst.cfg | 2 +- resources/quality/creality/base/base_0.8_TPU_draft.inst.cfg | 2 +- resources/quality/creality/base/base_1.0_ABS_draft.inst.cfg | 2 +- resources/quality/creality/base/base_1.0_PETG_draft.inst.cfg | 2 +- resources/quality/creality/base/base_1.0_PLA_draft.inst.cfg | 2 +- resources/quality/creality/base/base_1.0_TPU_draft.inst.cfg | 2 +- resources/quality/creality/base/base_global_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_global_draft.inst.cfg | 2 +- resources/quality/creality/base/base_global_low.inst.cfg | 2 +- resources/quality/creality/base/base_global_standard.inst.cfg | 2 +- resources/quality/creality/base/base_global_super.inst.cfg | 2 +- resources/quality/creality/base/base_global_ultra.inst.cfg | 2 +- .../dagoma/dagoma_discoeasy200_bicolor_pla_fast.inst.cfg | 2 +- .../dagoma/dagoma_discoeasy200_bicolor_pla_fine.inst.cfg | 2 +- .../dagoma/dagoma_discoeasy200_bicolor_pla_standard.inst.cfg | 2 +- resources/quality/dagoma/dagoma_discoeasy200_pla_fast.inst.cfg | 2 +- resources/quality/dagoma/dagoma_discoeasy200_pla_fine.inst.cfg | 2 +- .../quality/dagoma/dagoma_discoeasy200_pla_standard.inst.cfg | 2 +- .../dagoma/dagoma_discoultimate_bicolor_pla_fast.inst.cfg | 2 +- .../dagoma/dagoma_discoultimate_bicolor_pla_fine.inst.cfg | 2 +- .../dagoma/dagoma_discoultimate_bicolor_pla_standard.inst.cfg | 2 +- resources/quality/dagoma/dagoma_discoultimate_pla_fast.inst.cfg | 2 +- resources/quality/dagoma/dagoma_discoultimate_pla_fine.inst.cfg | 2 +- .../quality/dagoma/dagoma_discoultimate_pla_standard.inst.cfg | 2 +- resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg | 2 +- resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg | 2 +- resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg | 2 +- resources/quality/dagoma/dagoma_neva_pla_fast.inst.cfg | 2 +- resources/quality/dagoma/dagoma_neva_pla_fine.inst.cfg | 2 +- resources/quality/dagoma/dagoma_neva_pla_standard.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.1.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.2.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.3.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.8.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.05.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.1.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.15.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.1.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.2.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.3.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.2.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.8.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.8.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_bowden_global_h0.05.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_bowden_global_h0.1.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_bowden_global_h0.15.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_bowden_global_h0.2.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_bowden_global_h0.3.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_bowden_global_h0.4.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_bowden_global_h0.6.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_bowden_global_h0.8.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.1.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.2.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.3.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.6.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_brass_0.4_pla_h0.1.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_brass_0.4_pla_h0.2.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_brass_0.4_pla_h0.3.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_brass_0.4_tpu_h0.2.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_brass_0.8_pla_h0.4.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_brass_0.8_pla_h0.6.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_brass_1.0_pla_h0.4.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_brass_1.0_pla_h0.6.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_brass_1.0_pla_h0.8.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_0.2_pla_h0.05.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_0.2_pla_h0.1.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_0.2_pla_h0.15.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_0.4_pla_h0.1.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_0.4_pla_h0.2.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_0.4_pla_h0.3.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_0.6_pla_h0.2.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_0.6_pla_h0.4.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_0.8_pla_h0.4.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_0.8_pla_h0.6.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_1.0_pla_h0.4.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_1.0_pla_h0.6.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_1.0_pla_h0.8.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_1.2_pla_h0.6.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_1.2_pla_h0.8.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_global_h0.05.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_global_h0.1.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_global_h0.15.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_global_h0.2.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_global_h0.3.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_global_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_global_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_global_h0.8.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_steel_0.4_pla_h0.1.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_steel_0.4_pla_h0.2.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_steel_0.4_pla_h0.3.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_steel_0.8_pla_h0.4.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_steel_0.8_pla_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.05.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.1.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.15.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.1.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.2.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.3.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.2.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.8.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.8.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_dual_global_h0.05.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_dual_global_h0.1.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_dual_global_h0.15.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_dual_global_h0.2.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_dual_global_h0.3.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_dual_global_h0.4.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_dual_global_h0.6.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_dual_global_h0.8.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.1.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.2.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.3.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.4.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.6inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.8.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_global_h0.1.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_global_h0.2.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_global_h0.3.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_global_h0.4.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_global_h0.6.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_global_h0.8.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_dual_global_h0.1.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_dual_global_h0.2.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_dual_global_h0.3.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_dual_global_h0.4.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_dual_global_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.2.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_pro_global_h0.1.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_pro_global_h0.2.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_pro_global_h0.3.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_pro_global_h0.4.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_pro_global_h0.6.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.2.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_A.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_B.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_C.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_A.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_B.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_C.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_D.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_E.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_C.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_D.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_E.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_F.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_A.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_B.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_C.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_A.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_B.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_C.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_D.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_E.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_C.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_D.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_E.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_F.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_D.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_E.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_F.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_G.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_D.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_E.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_F.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_G.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_A.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_B.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_C.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_D.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_E.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_C.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_D.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_E.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_F.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_A.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_B.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_C.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_D.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_E.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_C.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_D.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_E.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_F.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_A.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_B.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_C.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_A.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_B.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_C.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_D.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_E.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_C.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_D.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_E.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_F.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_A.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_B.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_C.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_A.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_B.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_C.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_D.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_E.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_C.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_D.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_E.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_F.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_D.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_E.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_F.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_G.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_D.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_E.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_F.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_G.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg | 2 +- .../quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_B.inst.cfg | 2 +- .../quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_C.inst.cfg | 2 +- .../quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_D.inst.cfg | 2 +- .../quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_B.inst.cfg | 2 +- .../quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_C.inst.cfg | 2 +- .../quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_D.inst.cfg | 2 +- resources/quality/deltacomb/deltacomb_global_A.inst.cfg | 2 +- resources/quality/deltacomb/deltacomb_global_B.inst.cfg | 2 +- resources/quality/deltacomb/deltacomb_global_C.inst.cfg | 2 +- resources/quality/deltacomb/deltacomb_global_D.inst.cfg | 2 +- resources/quality/deltacomb/deltacomb_global_E.inst.cfg | 2 +- resources/quality/deltacomb/deltacomb_global_F.inst.cfg | 2 +- resources/quality/deltacomb/deltacomb_global_G.inst.cfg | 2 +- resources/quality/diy220/diy220_draft.inst.cfg | 2 +- resources/quality/diy220/diy220_fast.inst.cfg | 2 +- resources/quality/diy220/diy220_high.inst.cfg | 2 +- resources/quality/diy220/diy220_normal.inst.cfg | 2 +- resources/quality/draft.inst.cfg | 2 +- .../abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.30.inst.cfg | 2 +- resources/quality/elegoo/base/elegoo_layer_0.05.inst.cfg | 2 +- resources/quality/elegoo/base/elegoo_layer_0.10.inst.cfg | 2 +- resources/quality/elegoo/base/elegoo_layer_0.15.inst.cfg | 2 +- resources/quality/elegoo/base/elegoo_layer_0.20.inst.cfg | 2 +- resources/quality/elegoo/base/elegoo_layer_0.30.inst.cfg | 2 +- resources/quality/elegoo/base/elegoo_layer_0.40.inst.cfg | 2 +- resources/quality/elegoo/base/elegoo_layer_0.60.inst.cfg | 2 +- .../nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.05.inst.cfg | 2 +- .../pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.10.inst.cfg | 2 +- .../pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.40.inst.cfg | 2 +- .../pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg | 2 +- .../pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg | 2 +- .../tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../quality/elegoo/neptune_4/elegoo_n4_layer_0.05.inst.cfg | 2 +- .../quality/elegoo/neptune_4/elegoo_n4_layer_0.10.inst.cfg | 2 +- .../quality/elegoo/neptune_4/elegoo_n4_layer_0.15.inst.cfg | 2 +- .../quality/elegoo/neptune_4/elegoo_n4_layer_0.20.inst.cfg | 2 +- .../quality/elegoo/neptune_4/elegoo_n4_layer_0.30.inst.cfg | 2 +- .../quality/elegoo/neptune_4/elegoo_n4_layer_0.40.inst.cfg | 2 +- .../quality/elegoo/neptune_4/elegoo_n4_layer_0.60.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../quality/elegoo_neptune_2/elegoo_neptune_2_draft.inst.cfg | 2 +- .../quality/elegoo_neptune_2/elegoo_neptune_2_fine.inst.cfg | 2 +- .../quality/elegoo_neptune_2/elegoo_neptune_2_normal.inst.cfg | 2 +- .../quality/elegoo_neptune_2D/elegoo_neptune_2D_draft.inst.cfg | 2 +- .../quality/elegoo_neptune_2D/elegoo_neptune_2D_fine.inst.cfg | 2 +- .../quality/elegoo_neptune_2D/elegoo_neptune_2D_normal.inst.cfg | 2 +- resources/quality/eryone_er20/eryone_er20_draft.inst.cfg | 2 +- resources/quality/eryone_er20/eryone_er20_high.inst.cfg | 2 +- resources/quality/eryone_er20/eryone_er20_normal.inst.cfg | 2 +- .../quality/eryone_thinker/eryone_thinker_extra_fast.inst.cfg | 2 +- resources/quality/eryone_thinker/eryone_thinker_fast.inst.cfg | 2 +- resources/quality/eryone_thinker/eryone_thinker_fine.inst.cfg | 2 +- resources/quality/eryone_thinker/eryone_thinker_high.inst.cfg | 2 +- resources/quality/eryone_thinker/eryone_thinker_normal.inst.cfg | 2 +- resources/quality/extra_coarse.inst.cfg | 2 +- resources/quality/extra_fast.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_abs_fast.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_abs_high.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_abs_normal.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_nylon_fast.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_nylon_high.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_nylon_normal.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_pla_fast.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_pla_high.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_pla_normal.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_tpu_fast.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_tpu_high.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_tpu_normal.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg | 2 +- resources/quality/fast.inst.cfg | 2 +- .../quality/flashforge/abs/flashforge_0.20_abs_super.inst.cfg | 2 +- .../quality/flashforge/abs/flashforge_0.20_abs_ultra.inst.cfg | 2 +- .../flashforge/abs/flashforge_0.30_abs_adaptive.inst.cfg | 2 +- .../flashforge/abs/flashforge_0.30_abs_standard.inst.cfg | 2 +- .../quality/flashforge/abs/flashforge_0.30_abs_super.inst.cfg | 2 +- .../flashforge/abs/flashforge_0.40_abs_adaptive.inst.cfg | 2 +- .../quality/flashforge/abs/flashforge_0.40_abs_draft.inst.cfg | 2 +- .../quality/flashforge/abs/flashforge_0.40_abs_low.inst.cfg | 2 +- .../flashforge/abs/flashforge_0.40_abs_standard.inst.cfg | 2 +- .../quality/flashforge/abs/flashforge_0.40_abs_super.inst.cfg | 2 +- .../flashforge/abs/flashforge_0.50_abs_adaptive.inst.cfg | 2 +- .../quality/flashforge/abs/flashforge_0.50_abs_coarse.inst.cfg | 2 +- .../quality/flashforge/abs/flashforge_0.50_abs_draft.inst.cfg | 2 +- .../quality/flashforge/abs/flashforge_0.50_abs_low.inst.cfg | 2 +- .../flashforge/abs/flashforge_0.50_abs_standard.inst.cfg | 2 +- .../quality/flashforge/abs/flashforge_0.60_abs_coarse.inst.cfg | 2 +- .../quality/flashforge/abs/flashforge_0.60_abs_draft.inst.cfg | 2 +- .../flashforge/abs/flashforge_0.60_abs_extra_coarse.inst.cfg | 2 +- .../flashforge/abs/flashforge_0.60_abs_standard.inst.cfg | 2 +- .../flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg | 2 +- .../abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg | 2 +- .../abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg | 2 +- .../flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg | 2 +- .../flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg | 2 +- .../abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg | 2 +- .../abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg | 2 +- .../abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg | 2 +- .../abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg | 2 +- .../flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg | 2 +- .../abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg | 2 +- .../flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg | 2 +- .../abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg | 2 +- .../abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg | 2 +- .../flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg | 2 +- .../flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg | 2 +- .../abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg | 2 +- .../abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg | 2 +- .../abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg | 2 +- .../abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg | 2 +- .../flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg | 2 +- .../abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg | 2 +- .../flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg | 2 +- .../flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg | 2 +- .../asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer3_draft.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer3_fast.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer3_fine.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer3_normal.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer3_vfast.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer3_vfine.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer4_draft.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer4_fast.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer4_fine.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer4_normal.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer4_vfast.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer4_vfine.inst.cfg | 2 +- .../quality/flashforge/flashforge_global_0.08_ultra.inst.cfg | 2 +- .../quality/flashforge/flashforge_global_0.12_super.inst.cfg | 2 +- .../quality/flashforge/flashforge_global_0.16_adaptive.inst.cfg | 2 +- .../quality/flashforge/flashforge_global_0.20_standard.inst.cfg | 2 +- .../quality/flashforge/flashforge_global_0.28_low.inst.cfg | 2 +- .../quality/flashforge/flashforge_global_0.32_draft.inst.cfg | 2 +- .../quality/flashforge/flashforge_global_0.40_coarse.inst.cfg | 2 +- .../flashforge/flashforge_global_0.48_extra_coarse.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg | 2 +- .../quality/flashforge/petg/flashforge_0.2_petg_super.inst.cfg | 2 +- .../quality/flashforge/petg/flashforge_0.2_petg_ultra.inst.cfg | 2 +- .../flashforge/petg/flashforge_0.30_petg_adaptive.inst.cfg | 2 +- .../flashforge/petg/flashforge_0.30_petg_standard.inst.cfg | 2 +- .../quality/flashforge/petg/flashforge_0.30_petg_super.inst.cfg | 2 +- .../flashforge/petg/flashforge_0.40_petg_adaptive.inst.cfg | 2 +- .../quality/flashforge/petg/flashforge_0.40_petg_draft.inst.cfg | 2 +- .../quality/flashforge/petg/flashforge_0.40_petg_low.inst.cfg | 2 +- .../flashforge/petg/flashforge_0.40_petg_standard.inst.cfg | 2 +- .../quality/flashforge/petg/flashforge_0.40_petg_super.inst.cfg | 2 +- .../flashforge/petg/flashforge_0.50_petg_adaptive.inst.cfg | 2 +- .../flashforge/petg/flashforge_0.50_petg_coarse.inst.cfg | 2 +- .../quality/flashforge/petg/flashforge_0.50_petg_draft.inst.cfg | 2 +- .../quality/flashforge/petg/flashforge_0.50_petg_low.inst.cfg | 2 +- .../flashforge/petg/flashforge_0.50_petg_standard.inst.cfg | 2 +- .../quality/flashforge/petg/flashforge_0.60_petg_draft.inst.cfg | 2 +- .../flashforge/petg/flashforge_0.60_petg_extra_coarse.inst.cfg | 2 +- .../flashforge/petg/flashforge_0.60_petg_standard.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg | 2 +- .../quality/flashforge/pla/flashforge_0.20_pla_super.inst.cfg | 2 +- .../quality/flashforge/pla/flashforge_0.20_pla_ultra.inst.cfg | 2 +- .../flashforge/pla/flashforge_0.30_pla_adaptive.inst.cfg | 2 +- .../flashforge/pla/flashforge_0.30_pla_standard.inst.cfg | 2 +- .../quality/flashforge/pla/flashforge_0.30_pla_super.inst.cfg | 2 +- .../flashforge/pla/flashforge_0.40_pla_adaptive.inst.cfg | 2 +- .../quality/flashforge/pla/flashforge_0.40_pla_draft.inst.cfg | 2 +- .../quality/flashforge/pla/flashforge_0.40_pla_low.inst.cfg | 2 +- .../flashforge/pla/flashforge_0.40_pla_standard.inst.cfg | 2 +- .../quality/flashforge/pla/flashforge_0.40_pla_super.inst.cfg | 2 +- .../flashforge/pla/flashforge_0.50_pla_adaptive.inst.cfg | 2 +- .../quality/flashforge/pla/flashforge_0.50_pla_coarse.inst.cfg | 2 +- .../quality/flashforge/pla/flashforge_0.50_pla_draft.inst.cfg | 2 +- .../quality/flashforge/pla/flashforge_0.50_pla_low.inst.cfg | 2 +- .../flashforge/pla/flashforge_0.50_pla_standard.inst.cfg | 2 +- .../quality/flashforge/pla/flashforge_0.60_pla_draft.inst.cfg | 2 +- .../flashforge/pla/flashforge_0.60_pla_extra Coarse.inst.cfg | 2 +- .../flashforge/pla/flashforge_0.60_pla_standard.inst.cfg | 2 +- .../flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg | 2 +- .../pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg | 2 +- .../pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg | 2 +- .../flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg | 2 +- .../flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg | 2 +- .../pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg | 2 +- .../pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg | 2 +- .../pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg | 2 +- .../pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg | 2 +- .../flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg | 2 +- .../pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg | 2 +- .../flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg | 2 +- .../pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg | 2 +- .../pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg | 2 +- .../flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg | 2 +- .../flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg | 2 +- .../pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg | 2 +- .../pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg | 2 +- .../pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg | 2 +- .../pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg | 2 +- .../flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg | 2 +- .../pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg | 2 +- .../flashforge/tpu/flashforge_0.40_tpu_adaptive.inst.cfg | 2 +- .../quality/flashforge/tpu/flashforge_0.40_tpu_draft.inst.cfg | 2 +- .../quality/flashforge/tpu/flashforge_0.40_tpu_low.inst.cfg | 2 +- .../flashforge/tpu/flashforge_0.40_tpu_standard.inst.cfg | 2 +- .../quality/flashforge/tpu/flashforge_0.40_tpu_super.inst.cfg | 2 +- .../flashforge/tpu/flashforge_0.50_tpu_adaptive.inst.cfg | 2 +- .../quality/flashforge/tpu/flashforge_0.50_tpu_draft.inst.cfg | 2 +- .../quality/flashforge/tpu/flashforge_0.50_tpu_low.inst.cfg | 2 +- .../flashforge/tpu/flashforge_0.50_tpu_standard.inst.cfg | 2 +- .../quality/flashforge/tpu/flashforge_0.60_tpu_draft.inst.cfg | 2 +- .../quality/flashforge/tpu/flashforge_0.60_tpu_low.inst.cfg | 2 +- .../flashforge/tpu/flashforge_0.60_tpu_standard.inst.cfg | 2 +- resources/quality/flsun_sr/flsun_sr_fine.inst.cfg | 2 +- resources/quality/flsun_sr/flsun_sr_normal.inst.cfg | 2 +- resources/quality/flsun_v400/flsun_v400_normal.inst.cfg | 2 +- .../quality/flyingbear/abs/flyingbear_0.25_abs_super.inst.cfg | 2 +- .../quality/flyingbear/abs/flyingbear_0.25_abs_ultra.inst.cfg | 2 +- .../flyingbear/abs/flyingbear_0.30_abs_adaptive.inst.cfg | 2 +- .../flyingbear/abs/flyingbear_0.30_abs_standard.inst.cfg | 2 +- .../quality/flyingbear/abs/flyingbear_0.30_abs_super.inst.cfg | 2 +- .../flyingbear/abs/flyingbear_0.40_abs_adaptive.inst.cfg | 2 +- .../quality/flyingbear/abs/flyingbear_0.40_abs_low.inst.cfg | 2 +- .../flyingbear/abs/flyingbear_0.40_abs_standard.inst.cfg | 2 +- .../quality/flyingbear/abs/flyingbear_0.40_abs_super.inst.cfg | 2 +- .../flyingbear/abs/flyingbear_0.50_abs_adaptive.inst.cfg | 2 +- .../quality/flyingbear/abs/flyingbear_0.50_abs_draft.inst.cfg | 2 +- .../quality/flyingbear/abs/flyingbear_0.50_abs_low.inst.cfg | 2 +- .../flyingbear/abs/flyingbear_0.50_abs_standard.inst.cfg | 2 +- .../quality/flyingbear/abs/flyingbear_0.60_abs_draft.inst.cfg | 2 +- .../quality/flyingbear/abs/flyingbear_0.60_abs_low.inst.cfg | 2 +- .../flyingbear/abs/flyingbear_0.60_abs_standard.inst.cfg | 2 +- .../quality/flyingbear/abs/flyingbear_0.80_abs_coarse.inst.cfg | 2 +- .../quality/flyingbear/abs/flyingbear_0.80_abs_draft.inst.cfg | 2 +- .../quality/flyingbear/flyingbear_global_0.08_ultra.inst.cfg | 2 +- .../quality/flyingbear/flyingbear_global_0.12_super.inst.cfg | 2 +- .../quality/flyingbear/flyingbear_global_0.16_adaptive.inst.cfg | 2 +- .../quality/flyingbear/flyingbear_global_0.20_standard.inst.cfg | 2 +- .../quality/flyingbear/flyingbear_global_0.28_low.inst.cfg | 2 +- .../quality/flyingbear/flyingbear_global_0.32_draft.inst.cfg | 2 +- .../quality/flyingbear/flyingbear_global_0.40_coarse.inst.cfg | 2 +- .../quality/flyingbear/hips/flyingbear_0.25_hips_super.inst.cfg | 2 +- .../quality/flyingbear/hips/flyingbear_0.25_hips_ultra.inst.cfg | 2 +- .../flyingbear/hips/flyingbear_0.30_hips_adaptive.inst.cfg | 2 +- .../flyingbear/hips/flyingbear_0.30_hips_standard.inst.cfg | 2 +- .../quality/flyingbear/hips/flyingbear_0.30_hips_super.inst.cfg | 2 +- .../flyingbear/hips/flyingbear_0.40_hips_adaptive.inst.cfg | 2 +- .../quality/flyingbear/hips/flyingbear_0.40_hips_low.inst.cfg | 2 +- .../flyingbear/hips/flyingbear_0.40_hips_standard.inst.cfg | 2 +- .../quality/flyingbear/hips/flyingbear_0.40_hips_super.inst.cfg | 2 +- .../flyingbear/hips/flyingbear_0.50_hips_adaptive.inst.cfg | 2 +- .../quality/flyingbear/hips/flyingbear_0.50_hips_draft.inst.cfg | 2 +- .../quality/flyingbear/hips/flyingbear_0.50_hips_low.inst.cfg | 2 +- .../flyingbear/hips/flyingbear_0.50_hips_standard.inst.cfg | 2 +- .../quality/flyingbear/hips/flyingbear_0.60_hips_draft.inst.cfg | 2 +- .../quality/flyingbear/hips/flyingbear_0.60_hips_low.inst.cfg | 2 +- .../flyingbear/hips/flyingbear_0.60_hips_standard.inst.cfg | 2 +- .../flyingbear/hips/flyingbear_0.80_hips_coarse.inst.cfg | 2 +- .../quality/flyingbear/hips/flyingbear_0.80_hips_draft.inst.cfg | 2 +- .../quality/flyingbear/petg/flyingbear_0.25_petg_super.inst.cfg | 2 +- .../quality/flyingbear/petg/flyingbear_0.25_petg_ultra.inst.cfg | 2 +- .../flyingbear/petg/flyingbear_0.30_petg_adaptive.inst.cfg | 2 +- .../flyingbear/petg/flyingbear_0.30_petg_standard.inst.cfg | 2 +- .../quality/flyingbear/petg/flyingbear_0.30_petg_super.inst.cfg | 2 +- .../flyingbear/petg/flyingbear_0.40_petg_adaptive.inst.cfg | 2 +- .../quality/flyingbear/petg/flyingbear_0.40_petg_low.inst.cfg | 2 +- .../flyingbear/petg/flyingbear_0.40_petg_standard.inst.cfg | 2 +- .../quality/flyingbear/petg/flyingbear_0.40_petg_super.inst.cfg | 2 +- .../flyingbear/petg/flyingbear_0.50_petg_adaptive.inst.cfg | 2 +- .../quality/flyingbear/petg/flyingbear_0.50_petg_draft.inst.cfg | 2 +- .../quality/flyingbear/petg/flyingbear_0.50_petg_low.inst.cfg | 2 +- .../flyingbear/petg/flyingbear_0.50_petg_standard.inst.cfg | 2 +- .../quality/flyingbear/petg/flyingbear_0.60_petg_draft.inst.cfg | 2 +- .../quality/flyingbear/petg/flyingbear_0.60_petg_low.inst.cfg | 2 +- .../flyingbear/petg/flyingbear_0.60_petg_standard.inst.cfg | 2 +- .../flyingbear/petg/flyingbear_0.80_petg_coarse.inst.cfg | 2 +- .../quality/flyingbear/petg/flyingbear_0.80_petg_draft.inst.cfg | 2 +- .../quality/flyingbear/pla/flyingbear_0.25_pla_super.inst.cfg | 2 +- .../quality/flyingbear/pla/flyingbear_0.25_pla_ultra.inst.cfg | 2 +- .../flyingbear/pla/flyingbear_0.30_pla_adaptive.inst.cfg | 2 +- .../flyingbear/pla/flyingbear_0.30_pla_standard.inst.cfg | 2 +- .../quality/flyingbear/pla/flyingbear_0.30_pla_super.inst.cfg | 2 +- .../flyingbear/pla/flyingbear_0.40_pla_adaptive.inst.cfg | 2 +- .../quality/flyingbear/pla/flyingbear_0.40_pla_low.inst.cfg | 2 +- .../flyingbear/pla/flyingbear_0.40_pla_standard.inst.cfg | 2 +- .../quality/flyingbear/pla/flyingbear_0.40_pla_super.inst.cfg | 2 +- .../flyingbear/pla/flyingbear_0.50_pla_adaptive.inst.cfg | 2 +- .../quality/flyingbear/pla/flyingbear_0.50_pla_draft.inst.cfg | 2 +- .../quality/flyingbear/pla/flyingbear_0.50_pla_low.inst.cfg | 2 +- .../flyingbear/pla/flyingbear_0.50_pla_standard.inst.cfg | 2 +- .../quality/flyingbear/pla/flyingbear_0.60_pla_draft.inst.cfg | 2 +- .../quality/flyingbear/pla/flyingbear_0.60_pla_low.inst.cfg | 2 +- .../flyingbear/pla/flyingbear_0.60_pla_standard.inst.cfg | 2 +- .../quality/flyingbear/pla/flyingbear_0.80_pla_coarse.inst.cfg | 2 +- .../quality/flyingbear/pla/flyingbear_0.80_pla_draft.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.25_plapro_super.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.25_plapro_ultra.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.30_plapro_adaptive.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.30_plapro_standard.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.30_plapro_super.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.40_plapro_adaptive.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.40_plapro_low.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.40_plapro_standard.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.40_plapro_super.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.50_plapro_adaptive.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.50_plapro_draft.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.50_plapro_low.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.50_plapro_standard.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.60_plapro_draft.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.60_plapro_low.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.60_plapro_standard.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.80_plapro_coarse.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.80_plapro_draft.inst.cfg | 2 +- .../flyingbear/tpu/flyingbear_0.40_tpu_adaptive.inst.cfg | 2 +- .../quality/flyingbear/tpu/flyingbear_0.40_tpu_low.inst.cfg | 2 +- .../flyingbear/tpu/flyingbear_0.40_tpu_standard.inst.cfg | 2 +- .../quality/flyingbear/tpu/flyingbear_0.40_tpu_super.inst.cfg | 2 +- .../flyingbear/tpu/flyingbear_0.50_tpu_adaptive.inst.cfg | 2 +- .../quality/flyingbear/tpu/flyingbear_0.50_tpu_draft.inst.cfg | 2 +- .../quality/flyingbear/tpu/flyingbear_0.50_tpu_low.inst.cfg | 2 +- .../flyingbear/tpu/flyingbear_0.50_tpu_standard.inst.cfg | 2 +- .../quality/flyingbear/tpu/flyingbear_0.60_tpu_draft.inst.cfg | 2 +- .../quality/flyingbear/tpu/flyingbear_0.60_tpu_low.inst.cfg | 2 +- .../flyingbear/tpu/flyingbear_0.60_tpu_standard.inst.cfg | 2 +- .../quality/flyingbear/tpu/flyingbear_0.80_tpu_coarse.inst.cfg | 2 +- .../quality/flyingbear/tpu/flyingbear_0.80_tpu_draft.inst.cfg | 2 +- resources/quality/fusedform/base/base_PVA_draft.inst.cfg | 2 +- resources/quality/fusedform/base/base_PVA_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_PVA_normal.inst.cfg | 2 +- resources/quality/fusedform/base/base_abs_draft.inst.cfg | 2 +- resources/quality/fusedform/base/base_abs_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_abs_normal.inst.cfg | 2 +- resources/quality/fusedform/base/base_abs_ultra_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_draft.inst.cfg | 2 +- resources/quality/fusedform/base/base_flex_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_flex_normal.inst.cfg | 2 +- resources/quality/fusedform/base/base_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_hips_draft.inst.cfg | 2 +- resources/quality/fusedform/base/base_hips_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_hips_normal.inst.cfg | 2 +- resources/quality/fusedform/base/base_hips_ultra_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_normal.inst.cfg | 2 +- resources/quality/fusedform/base/base_nylon_draft.inst.cfg | 2 +- resources/quality/fusedform/base/base_nylon_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_nylon_normal.inst.cfg | 2 +- resources/quality/fusedform/base/base_nylon_ultra_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_petg_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_petg_normal.inst.cfg | 2 +- resources/quality/fusedform/base/base_pla_draft.inst.cfg | 2 +- resources/quality/fusedform/base/base_pla_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_pla_normal.inst.cfg | 2 +- resources/quality/fusedform/base/base_pla_ultra_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_ultra_high.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_ABS_fine.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_ABS_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_ABS_normal.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_ASA_fine.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_ASA_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_ASA_normal.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_CPE_normal.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_PA_normal.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_PC_normal.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_PETG_normal.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_PLA_fine.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_PLA_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_PLA_normal.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_TPU_normal.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.6_ABS_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.6_ABS_low.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.6_ASA_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.6_ASA_low.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.6_CPE_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.6_PA_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.6_PC_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.6_PETG_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.6_PLA_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.6_PLA_low.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.6_TPU_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.8_ABS_rapid.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.8_ABS_rough.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.8_ASA_rapid.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.8_ASA_rough.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.8_CPE_rapid.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.8_PA_rapid.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.8_PC_rapid.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.8_PETG_rapid.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.8_PLA_rapid.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.8_PLA_rough.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.8_TPU_rapid.inst.cfg | 2 +- resources/quality/fusion3/fusion3_global_fine.inst.cfg | 2 +- resources/quality/fusion3/fusion3_global_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_global_low.inst.cfg | 2 +- resources/quality/fusion3/fusion3_global_normal.inst.cfg | 2 +- resources/quality/fusion3/fusion3_global_rapid.inst.cfg | 2 +- resources/quality/fusion3/fusion3_global_rough.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.2_ABS_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.2_ABS_ultra.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.2_PETG_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.2_PETG_ultra.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.2_PLA_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.2_PLA_ultra.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_ABS_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_ABS_low.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_ABS_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_ABS_super.inst.cfg | 2 +- .../geeetech_quality_0.3_PETG_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_PETG_low.inst.cfg | 2 +- .../geeetech_quality_0.3_PETG_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_PETG_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_PLA_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_PLA_low.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_PLA_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_PLA_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_TPU_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_TPU_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_TPU_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_ABS_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_ABS_low.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_ABS_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_ABS_super.inst.cfg | 2 +- .../geeetech_quality_0.4_PETG_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_PETG_low.inst.cfg | 2 +- .../geeetech_quality_0.4_PETG_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_PETG_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_PLA_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_PLA_low.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_PLA_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_PLA_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_TPU_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_TPU_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_TPU_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_ABS_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_ABS_low.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_ABS_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_ABS_super.inst.cfg | 2 +- .../geeetech_quality_0.5_PETG_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_PETG_low.inst.cfg | 2 +- .../geeetech_quality_0.5_PETG_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_PETG_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_PLA_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_PLA_low.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_PLA_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_PLA_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_TPU_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_TPU_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_TPU_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.6_ABS_standard.inst.cfg | 2 +- .../geeetech_quality_0.6_PETG_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.6_PLA_draft.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.6_PLA_low.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.6_PLA_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.6_TPU_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.8_ABS_draft.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.8_PETG_draft.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.8_PLA_draft.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.8_TPU_draft.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_1.0_ABS_draft.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_1.0_PETG_draft.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_1.0_PLA_draft.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_1.0_TPU_draft.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_global_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_global_draft.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_global_low.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_global_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_global_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_global_ultra.inst.cfg | 2 +- .../quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg | 2 +- .../quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg | 2 +- .../quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg | 2 +- .../gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg | 2 +- resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg | 2 +- resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg | 2 +- resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg | 2 +- .../quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg | 2 +- resources/quality/goofoo/abs/goofoo_far_0.2_abs_fine.inst.cfg | 2 +- .../quality/goofoo/abs/goofoo_far_0.2_abs_standard.inst.cfg | 2 +- resources/quality/goofoo/abs/goofoo_far_0.40_abs_fine.inst.cfg | 2 +- .../quality/goofoo/abs/goofoo_far_0.40_abs_standard.inst.cfg | 2 +- resources/quality/goofoo/abs/goofoo_far_0.6_abs_fine.inst.cfg | 2 +- .../quality/goofoo/abs/goofoo_far_0.6_abs_standard.inst.cfg | 2 +- resources/quality/goofoo/abs/goofoo_far_0.8_abs_fine.inst.cfg | 2 +- .../quality/goofoo/abs/goofoo_far_0.8_abs_standard.inst.cfg | 2 +- resources/quality/goofoo/abs/goofoo_far_1.0_abs_fine.inst.cfg | 2 +- .../quality/goofoo/abs/goofoo_far_1.0_abs_standard.inst.cfg | 2 +- resources/quality/goofoo/abs/goofoo_near_0.2_abs_fine.inst.cfg | 2 +- .../quality/goofoo/abs/goofoo_near_0.2_abs_standard.inst.cfg | 2 +- resources/quality/goofoo/abs/goofoo_near_0.40_abs_fine.inst.cfg | 2 +- .../quality/goofoo/abs/goofoo_near_0.40_abs_standard.inst.cfg | 2 +- resources/quality/goofoo/abs/goofoo_near_0.6_abs_fine.inst.cfg | 2 +- .../quality/goofoo/abs/goofoo_near_0.6_abs_standard.inst.cfg | 2 +- resources/quality/goofoo/abs/goofoo_near_0.8_abs_fine.inst.cfg | 2 +- .../quality/goofoo/abs/goofoo_near_0.8_abs_standard.inst.cfg | 2 +- resources/quality/goofoo/abs/goofoo_near_1.0_abs_fine.inst.cfg | 2 +- .../quality/goofoo/abs/goofoo_near_1.0_abs_standard.inst.cfg | 2 +- resources/quality/goofoo/asa/goofoo_far_0.2_asa_fine.inst.cfg | 2 +- .../quality/goofoo/asa/goofoo_far_0.2_asa_standard.inst.cfg | 2 +- resources/quality/goofoo/asa/goofoo_far_0.40_asa_fine.inst.cfg | 2 +- .../quality/goofoo/asa/goofoo_far_0.40_asa_standard.inst.cfg | 2 +- resources/quality/goofoo/asa/goofoo_far_0.6_asa_fine.inst.cfg | 2 +- .../quality/goofoo/asa/goofoo_far_0.6_asa_standard.inst.cfg | 2 +- resources/quality/goofoo/asa/goofoo_far_0.8_asa_fine.inst.cfg | 2 +- .../quality/goofoo/asa/goofoo_far_0.8_asa_standard.inst.cfg | 2 +- resources/quality/goofoo/asa/goofoo_far_1.0_asa_fine.inst.cfg | 2 +- .../quality/goofoo/asa/goofoo_far_1.0_asa_standard.inst.cfg | 2 +- resources/quality/goofoo/asa/goofoo_near_0.2_asa_fine.inst.cfg | 2 +- .../quality/goofoo/asa/goofoo_near_0.2_asa_standard.inst.cfg | 2 +- resources/quality/goofoo/asa/goofoo_near_0.40_asa_fine.inst.cfg | 2 +- .../quality/goofoo/asa/goofoo_near_0.40_asa_standard.inst.cfg | 2 +- resources/quality/goofoo/asa/goofoo_near_0.6_asa_fine.inst.cfg | 2 +- .../quality/goofoo/asa/goofoo_near_0.6_asa_standard.inst.cfg | 2 +- resources/quality/goofoo/asa/goofoo_near_0.8_asa_fine.inst.cfg | 2 +- .../quality/goofoo/asa/goofoo_near_0.8_asa_standard.inst.cfg | 2 +- resources/quality/goofoo/asa/goofoo_near_1.0_asa_fine.inst.cfg | 2 +- .../quality/goofoo/asa/goofoo_near_1.0_asa_standard.inst.cfg | 2 +- resources/quality/goofoo/goofoo_far_global_0.15_fine.inst.cfg | 2 +- resources/quality/goofoo/goofoo_far_global_0.1_efine.inst.cfg | 2 +- .../quality/goofoo/goofoo_far_global_0.20_standard.inst.cfg | 2 +- resources/quality/goofoo/goofoo_far_global_0.3_draft.inst.cfg | 2 +- resources/quality/goofoo/goofoo_near_global_0.15_fine.inst.cfg | 2 +- resources/quality/goofoo/goofoo_near_global_0.1_efine.inst.cfg | 2 +- .../quality/goofoo/goofoo_near_global_0.20_standard.inst.cfg | 2 +- resources/quality/goofoo/goofoo_near_global_0.3_draft.inst.cfg | 2 +- resources/quality/goofoo/goofoo_open_global_0.15_fine.inst.cfg | 2 +- resources/quality/goofoo/goofoo_open_global_0.1_efine.inst.cfg | 2 +- .../quality/goofoo/goofoo_open_global_0.20_standard.inst.cfg | 2 +- resources/quality/goofoo/goofoo_open_global_0.3_draft.inst.cfg | 2 +- resources/quality/goofoo/goofoo_small_global_0.15_fine.inst.cfg | 2 +- resources/quality/goofoo/goofoo_small_global_0.1_efine.inst.cfg | 2 +- .../quality/goofoo/goofoo_small_global_0.20_standard.inst.cfg | 2 +- resources/quality/goofoo/goofoo_small_global_0.3_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.2_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.2_hips_efine.inst.cfg | 2 +- resources/quality/goofoo/hips/goofoo_far_0.2_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.2_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.40_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.40_hips_efine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.40_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.40_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.6_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.6_hips_efine.inst.cfg | 2 +- resources/quality/goofoo/hips/goofoo_far_0.6_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.6_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.8_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.8_hips_efine.inst.cfg | 2 +- resources/quality/goofoo/hips/goofoo_far_0.8_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.8_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_1.0_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_1.0_hips_efine.inst.cfg | 2 +- resources/quality/goofoo/hips/goofoo_far_1.0_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_1.0_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.2_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.2_hips_efine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.2_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.2_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.40_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.40_hips_efine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.40_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.40_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.6_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.6_hips_efine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.6_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.6_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.8_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.8_hips_efine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.8_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.8_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_1.0_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_1.0_hips_efine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_1.0_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_1.0_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.2_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.2_hips_efine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.2_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.2_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.40_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.40_hips_efine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.40_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.40_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.6_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.6_hips_efine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.6_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.6_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.8_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.8_hips_efine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.8_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.8_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_1.0_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_1.0_hips_efine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_1.0_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_1.0_hips_standard.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_far_0.2_pa_fine.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_far_0.2_pa_standard.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_far_0.40_pa_fine.inst.cfg | 2 +- .../quality/goofoo/pa/goofoo_far_0.40_pa_standard.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_far_0.6_pa_fine.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_far_0.6_pa_standard.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_far_0.8_pa_fine.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_far_0.8_pa_standard.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_far_1.0_pa_fine.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_far_1.0_pa_standard.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_near_0.2_pa_fine.inst.cfg | 2 +- .../quality/goofoo/pa/goofoo_near_0.2_pa_standard.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_near_0.40_pa_fine.inst.cfg | 2 +- .../quality/goofoo/pa/goofoo_near_0.40_pa_standard.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_near_0.6_pa_fine.inst.cfg | 2 +- .../quality/goofoo/pa/goofoo_near_0.6_pa_standard.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_near_0.8_pa_fine.inst.cfg | 2 +- .../quality/goofoo/pa/goofoo_near_0.8_pa_standard.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_near_1.0_pa_fine.inst.cfg | 2 +- .../quality/goofoo/pa/goofoo_near_1.0_pa_standard.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_fine.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_standard.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg | 2 +- .../goofoo/pa_cf/goofoo_far_0.40_pa_cf_standard.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_fine.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_standard.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_fine.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_standard.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_fine.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_standard.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_fine.inst.cfg | 2 +- .../goofoo/pa_cf/goofoo_near_0.2_pa_cf_standard.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_fine.inst.cfg | 2 +- .../goofoo/pa_cf/goofoo_near_0.40_pa_cf_standard.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_fine.inst.cfg | 2 +- .../goofoo/pa_cf/goofoo_near_0.6_pa_cf_standard.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_fine.inst.cfg | 2 +- .../goofoo/pa_cf/goofoo_near_0.8_pa_cf_standard.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_fine.inst.cfg | 2 +- .../goofoo/pa_cf/goofoo_near_1.0_pa_cf_standard.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.2_pc_draft.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.2_pc_efine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.2_pc_fine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.2_pc_standard.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.40_pc_draft.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.40_pc_efine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.40_pc_fine.inst.cfg | 2 +- .../quality/goofoo/pc/goofoo_far_0.40_pc_standard.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.6_pc_draft.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.6_pc_efine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.6_pc_fine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.6_pc_standard.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.8_pc_draft.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.8_pc_efine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.8_pc_fine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.8_pc_standard.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_1.0_pc_draft.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_1.0_pc_efine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_1.0_pc_fine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_1.0_pc_standard.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.2_pc_draft.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.2_pc_efine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.2_pc_fine.inst.cfg | 2 +- .../quality/goofoo/pc/goofoo_near_0.2_pc_standard.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.40_pc_draft.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.40_pc_efine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.40_pc_fine.inst.cfg | 2 +- .../quality/goofoo/pc/goofoo_near_0.40_pc_standard.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.6_pc_draft.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.6_pc_efine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.6_pc_fine.inst.cfg | 2 +- .../quality/goofoo/pc/goofoo_near_0.6_pc_standard.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.8_pc_draft.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.8_pc_efine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.8_pc_fine.inst.cfg | 2 +- .../quality/goofoo/pc/goofoo_near_0.8_pc_standard.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_1.0_pc_draft.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_1.0_pc_efine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_1.0_pc_fine.inst.cfg | 2 +- .../quality/goofoo/pc/goofoo_near_1.0_pc_standard.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.2_peek_draft.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.2_peek_efine.inst.cfg | 2 +- resources/quality/goofoo/peek/goofoo_far_0.2_peek_fine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.2_peek_standard.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.40_peek_draft.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.40_peek_efine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.40_peek_fine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.40_peek_standard.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.6_peek_draft.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.6_peek_efine.inst.cfg | 2 +- resources/quality/goofoo/peek/goofoo_far_0.6_peek_fine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.6_peek_standard.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.8_peek_draft.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.8_peek_efine.inst.cfg | 2 +- resources/quality/goofoo/peek/goofoo_far_0.8_peek_fine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.8_peek_standard.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_1.0_peek_draft.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_1.0_peek_efine.inst.cfg | 2 +- resources/quality/goofoo/peek/goofoo_far_1.0_peek_fine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_1.0_peek_standard.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.2_peek_draft.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.2_peek_efine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.2_peek_fine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.2_peek_standard.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.40_peek_draft.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.40_peek_efine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.40_peek_fine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.40_peek_standard.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.6_peek_draft.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.6_peek_efine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.6_peek_fine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.6_peek_standard.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.8_peek_draft.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.8_peek_efine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.8_peek_fine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.8_peek_standard.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_1.0_peek_draft.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_1.0_peek_efine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_1.0_peek_fine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_1.0_peek_standard.inst.cfg | 2 +- resources/quality/goofoo/petg/goofoo_far_0.2_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_far_0.2_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_far_0.40_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_far_0.40_petg_standard.inst.cfg | 2 +- resources/quality/goofoo/petg/goofoo_far_0.6_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_far_0.6_petg_standard.inst.cfg | 2 +- resources/quality/goofoo/petg/goofoo_far_0.8_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_far_0.8_petg_standard.inst.cfg | 2 +- resources/quality/goofoo/petg/goofoo_far_1.0_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_far_1.0_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_near_0.2_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_near_0.2_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_near_0.40_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_near_0.40_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_near_0.6_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_near_0.6_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_near_0.8_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_near_0.8_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_near_1.0_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_near_1.0_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_open_0.2_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_open_0.2_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_open_0.40_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_open_0.40_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_open_0.6_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_open_0.6_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_open_0.8_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_open_0.8_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_open_1.0_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_open_1.0_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_small_0.2_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_small_0.2_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_small_0.40_petg_fine.inst.cfg | 2 +- .../goofoo/petg/goofoo_small_0.40_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_small_0.6_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_small_0.6_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_small_0.8_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_small_0.8_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_small_1.0_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_small_1.0_petg_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.2_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.2_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.2_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_0.2_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.40_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.40_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.40_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_0.40_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.6_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.6_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.6_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_0.6_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.8_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.8_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.8_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_0.8_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_1.0_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_1.0_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_1.0_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_1.0_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_0.2_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_0.2_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_bronze_0.2_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_bronze_0.40_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_bronze_0.40_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_bronze_0.40_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_0.6_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_0.6_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_bronze_0.6_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_0.8_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_0.8_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_bronze_0.8_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_1.0_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_1.0_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_bronze_1.0_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.2_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.2_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_emarble_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.2_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.40_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.40_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.40_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.6_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.6_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_emarble_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.6_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.8_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.8_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_emarble_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.8_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_1.0_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_1.0_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_emarble_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_1.0_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.2_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.2_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_esilk_0.2_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.40_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.40_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_esilk_0.40_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.6_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.6_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_esilk_0.6_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.8_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.8_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_esilk_0.8_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_1.0_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_1.0_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_esilk_1.0_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.2_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.2_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_wood_0.2_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.40_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.40_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_wood_0.40_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.6_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.6_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_wood_0.6_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.8_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.8_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_wood_0.8_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_1.0_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_1.0_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_wood_1.0_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_0.2_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_0.2_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_0.2_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_0.2_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_0.40_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_0.40_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_0.40_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_0.40_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_0.6_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_0.6_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_0.6_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_0.6_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_0.8_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_0.8_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_0.8_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_0.8_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_1.0_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_1.0_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_1.0_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_1.0_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.2_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.2_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_bronze_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.2_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.40_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.40_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.40_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.6_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.6_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_bronze_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.6_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.8_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.8_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_bronze_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.8_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_1.0_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_1.0_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_bronze_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_1.0_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.2_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.2_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.2_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.40_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.40_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.40_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.6_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.6_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.6_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.8_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.8_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.8_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_1.0_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_1.0_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_1.0_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_0.2_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_0.2_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_esilk_0.2_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_esilk_0.40_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_esilk_0.40_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_esilk_0.40_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_0.6_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_0.6_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_esilk_0.6_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_0.8_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_0.8_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_esilk_0.8_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_1.0_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_1.0_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_esilk_1.0_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.2_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.2_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_wood_0.2_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.40_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.40_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_wood_0.40_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.6_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.6_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_wood_0.6_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.8_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.8_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_wood_0.8_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_1.0_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_1.0_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_wood_1.0_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_0.2_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_0.2_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_0.2_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_0.2_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_0.40_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_0.40_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_0.40_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_0.40_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_0.6_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_0.6_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_0.6_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_0.6_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_0.8_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_0.8_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_0.8_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_0.8_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_1.0_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_1.0_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_1.0_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_1.0_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.2_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.2_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.2_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.40_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.40_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.40_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.6_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.6_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.6_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.8_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.8_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.8_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_1.0_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_1.0_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_1.0_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_0.2_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_0.2_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_esilk_0.2_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_esilk_0.40_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_esilk_0.40_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_esilk_0.40_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_0.6_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_0.6_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_esilk_0.6_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_0.8_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_0.8_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_esilk_0.8_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_1.0_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_1.0_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_esilk_1.0_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.2_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.2_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_wood_0.2_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.40_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.40_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_wood_0.40_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.6_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.6_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_wood_0.6_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.8_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.8_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_wood_0.8_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_1.0_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_1.0_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_wood_1.0_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.2_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.2_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_small_0.2_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.2_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.40_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.40_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.40_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.40_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.6_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.6_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_small_0.6_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.6_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.70_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.8_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.8_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_small_0.8_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.8_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_1.0_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_1.0_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_small_1.0_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_1.0_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.2_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.2_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.2_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.40_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.40_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.40_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.6_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.6_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.6_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.8_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.8_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.8_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_1.0_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_1.0_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_1.0_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.2_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.2_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_esilk_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.2_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.40_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.40_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.40_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.6_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.6_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_esilk_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.6_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.8_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.8_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_esilk_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.8_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_1.0_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_1.0_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_esilk_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_1.0_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_0.2_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_0.2_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_wood_0.2_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_wood_0.40_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_wood_0.40_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_wood_0.40_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_0.6_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_0.6_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_wood_0.6_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_0.8_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_0.8_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_wood_0.8_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_1.0_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_1.0_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_wood_1.0_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.2_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.2_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.2_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_far_0.2_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.40_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.40_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.40_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_far_0.40_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.6_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.6_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.6_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_far_0.6_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.8_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.8_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.8_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_far_0.8_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_1.0_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_1.0_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_1.0_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_far_1.0_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_0.2_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_0.2_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_0.2_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_near_0.2_pva_standard.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_near_0.40_pva_draft.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_near_0.40_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_0.40_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_near_0.40_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_0.6_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_0.6_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_0.6_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_near_0.6_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_0.8_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_0.8_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_0.8_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_near_0.8_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_1.0_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_1.0_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_1.0_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_near_1.0_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_0.2_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_0.2_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_0.2_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_open_0.2_pva_standard.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_open_0.40_pva_draft.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_open_0.40_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_0.40_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_open_0.40_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_0.6_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_0.6_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_0.6_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_open_0.6_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_0.8_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_0.8_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_0.8_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_open_0.8_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_1.0_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_1.0_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_1.0_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_open_1.0_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_draft.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_efine.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_fine.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_far_0.2_tpe_standard.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_draft.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_efine.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_fine.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_far_0.40_tpe_standard.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_draft.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_efine.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_fine.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_far_0.6_tpe_standard.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_draft.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_efine.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_fine.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_far_0.8_tpe_standard.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_draft.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_efine.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_fine.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_far_1.0_tpe_standard.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_draft.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_efine.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_fine.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_near_0.2_tpe_standard.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_near_0.40_tpe_draft.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_near_0.40_tpe_efine.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_fine.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_near_0.40_tpe_standard.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_draft.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_efine.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_fine.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_near_0.6_tpe_standard.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_draft.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_efine.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_fine.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_near_0.8_tpe_standard.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_draft.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_efine.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_fine.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_near_1.0_tpe_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_fine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_efine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_fine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_far_0.40_tpu_87a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_efine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_far_0.40_tpu_95a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_fine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_efine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_fine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_fine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_efine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_fine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_fine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_efine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_fine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_near_0.2_tpu_87a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_efine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_near_0.2_tpu_95a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_near_0.40_tpu_87a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_efine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_near_0.40_tpu_95a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_near_0.6_tpu_87a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_efine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_near_0.6_tpu_95a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_near_0.8_tpu_87a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_efine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_near_0.8_tpu_95a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_near_1.0_tpu_87a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_efine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_near_1.0_tpu_95a_standard.inst.cfg | 2 +- .../quality/gutenberg/gutenberg_global_fast_quality.inst.cfg | 2 +- .../quality/gutenberg/gutenberg_global_fine_quality.inst.cfg | 2 +- .../quality/gutenberg/gutenberg_global_normal_quality.inst.cfg | 2 +- .../quality/gutenberg/gutenberg_global_strong_quality.inst.cfg | 2 +- resources/quality/high.inst.cfg | 2 +- resources/quality/hms434/hms434_global_Coarse_Quality.inst.cfg | 2 +- resources/quality/hms434/hms434_global_High_Quality.inst.cfg | 2 +- resources/quality/hms434/hms434_global_Normal_Quality.inst.cfg | 2 +- resources/quality/hms434/pla/hms434_0.4_pla_high.inst.cfg | 2 +- .../imade3d_jellybox/PETG/jbo_generic_petg_0.4_coarse.inst.cfg | 2 +- .../imade3d_jellybox/PETG/jbo_generic_petg_0.4_fine.inst.cfg | 2 +- .../imade3d_jellybox/PETG/jbo_generic_petg_0.4_medium.inst.cfg | 2 +- .../imade3d_jellybox/PLA/jbo_generic_pla_0.4_coarse.inst.cfg | 2 +- .../imade3d_jellybox/PLA/jbo_generic_pla_0.4_fine.inst.cfg | 2 +- .../imade3d_jellybox/PLA/jbo_generic_pla_0.4_medium.inst.cfg | 2 +- .../imade3d_jellybox/PLA/jbo_generic_pla_0.4_ultrafine.inst.cfg | 2 +- .../quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg | 2 +- .../quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg | 2 +- .../quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg | 2 +- .../imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg | 2 +- .../PETG/jb2_generic_petg_0.4_coarse.inst.cfg | 2 +- .../imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_fine.inst.cfg | 2 +- .../PETG/jb2_generic_petg_0.4_medium.inst.cfg | 2 +- .../imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_coarse.inst.cfg | 2 +- .../imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_fine.inst.cfg | 2 +- .../imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_medium.inst.cfg | 2 +- .../PLA/jb2_generic_pla_0.4_ultrafine.inst.cfg | 2 +- resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg | 2 +- resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg | 2 +- resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg | 2 +- .../quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg | 2 +- resources/quality/inat/inat_base_advanced_materials.inst.cfg | 2 +- resources/quality/inat/inat_base_draft.inst.cfg | 2 +- resources/quality/inat/inat_base_fine.inst.cfg | 2 +- resources/quality/inat/inat_base_standard.inst.cfg | 2 +- resources/quality/inat/inat_base_strong.inst.cfg | 2 +- resources/quality/inat/inat_base_tree_support.inst.cfg | 2 +- resources/quality/jgaurora_a6/jgaurora_a6_0.12_detail.inst.cfg | 2 +- resources/quality/jgaurora_a6/jgaurora_a6_0.16_optimal.inst.cfg | 2 +- resources/quality/jgaurora_a6/jgaurora_a6_0.24_draft.inst.cfg | 2 +- resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg | 2 +- resources/quality/jgaurora_a6/jgaurora_a6_0.2_normal.inst.cfg | 2 +- resources/quality/katihal/alya3dp_normal.inst.cfg | 2 +- resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg | 2 +- resources/quality/katihal/alyanx3dp_normal.inst.cfg | 2 +- resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg | 2 +- resources/quality/katihal/kupido_normal.inst.cfg | 2 +- resources/quality/katihal/kupido_normal_generic_abs.inst.cfg | 2 +- resources/quality/katihal/kupido_normal_generic_pla.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_beta_abs_draft.inst.cfg | 2 +- .../quality/kemiq_q2/kemiq_q2_beta_abs_extra_fine.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_beta_abs_fine.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_beta_abs_low.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_beta_abs_normal.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_beta_pla_draft.inst.cfg | 2 +- .../quality/kemiq_q2/kemiq_q2_beta_pla_extra_fine.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_beta_pla_fine.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_beta_pla_low.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_beta_pla_normal.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_gama_pla_draft.inst.cfg | 2 +- .../quality/kemiq_q2/kemiq_q2_gama_pla_extra_fine.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_gama_pla_fine.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_gama_pla_low.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_gama_pla_normal.inst.cfg | 2 +- resources/quality/key3d/key3d_tyro_best.inst.cfg | 2 +- resources/quality/key3d/key3d_tyro_fast.inst.cfg | 2 +- resources/quality/key3d/key3d_tyro_normal.inst.cfg | 2 +- resources/quality/kingroon/ABS/kingroon_0.2_ABS_super.inst.cfg | 2 +- resources/quality/kingroon/ABS/kingroon_0.2_ABS_ultra.inst.cfg | 2 +- .../quality/kingroon/ABS/kingroon_0.3_ABS_adaptive.inst.cfg | 2 +- resources/quality/kingroon/ABS/kingroon_0.3_ABS_low.inst.cfg | 2 +- .../quality/kingroon/ABS/kingroon_0.3_ABS_standard.inst.cfg | 2 +- resources/quality/kingroon/ABS/kingroon_0.3_ABS_super.inst.cfg | 2 +- .../quality/kingroon/ABS/kingroon_0.4_ABS_adaptive.inst.cfg | 2 +- resources/quality/kingroon/ABS/kingroon_0.4_ABS_low.inst.cfg | 2 +- .../quality/kingroon/ABS/kingroon_0.4_ABS_standard.inst.cfg | 2 +- resources/quality/kingroon/ABS/kingroon_0.4_ABS_super.inst.cfg | 2 +- .../quality/kingroon/ABS/kingroon_0.5_ABS_adaptive.inst.cfg | 2 +- resources/quality/kingroon/ABS/kingroon_0.5_ABS_low.inst.cfg | 2 +- .../quality/kingroon/ABS/kingroon_0.5_ABS_standard.inst.cfg | 2 +- resources/quality/kingroon/ABS/kingroon_0.5_ABS_super.inst.cfg | 2 +- .../quality/kingroon/ABS/kingroon_0.6_ABS_standard.inst.cfg | 2 +- resources/quality/kingroon/ABS/kingroon_0.8_ABS_draft.inst.cfg | 2 +- resources/quality/kingroon/ABS/kingroon_1.0_ABS_draft.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.2_PETG_super.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.2_PETG_ultra.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.3_PETG_adaptive.inst.cfg | 2 +- resources/quality/kingroon/PETG/kingroon_0.3_PETG_low.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.3_PETG_standard.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.3_PETG_super.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.4_PETG_adaptive.inst.cfg | 2 +- resources/quality/kingroon/PETG/kingroon_0.4_PETG_low.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.4_PETG_standard.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.4_PETG_super.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.5_PETG_adaptive.inst.cfg | 2 +- resources/quality/kingroon/PETG/kingroon_0.5_PETG_low.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.5_PETG_standard.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.5_PETG_super.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.6_PETG_standard.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.8_PETG_draft.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_1.0_PETG_draft.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_0.2_PLA_super.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_0.2_PLA_ultra.inst.cfg | 2 +- .../quality/kingroon/PLA/kingroon_0.3_PLA_adaptive.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_0.3_PLA_low.inst.cfg | 2 +- .../quality/kingroon/PLA/kingroon_0.3_PLA_standard.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_0.3_PLA_super.inst.cfg | 2 +- .../quality/kingroon/PLA/kingroon_0.4_PLA_adaptive.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_0.4_PLA_low.inst.cfg | 2 +- .../quality/kingroon/PLA/kingroon_0.4_PLA_standard.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_0.4_PLA_super.inst.cfg | 2 +- .../quality/kingroon/PLA/kingroon_0.5_PLA_adaptive.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_0.5_PLA_low.inst.cfg | 2 +- .../quality/kingroon/PLA/kingroon_0.5_PLA_standard.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_0.5_PLA_super.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_0.6_PLA_draft.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_0.6_PLA_low.inst.cfg | 2 +- .../quality/kingroon/PLA/kingroon_0.6_PLA_standard.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_0.8_PLA_draft.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_1.0_PLA_draft.inst.cfg | 2 +- .../quality/kingroon/TPU/kingroon_0.3_TPU_adaptive.inst.cfg | 2 +- .../quality/kingroon/TPU/kingroon_0.3_TPU_standard.inst.cfg | 2 +- resources/quality/kingroon/TPU/kingroon_0.3_TPU_super.inst.cfg | 2 +- .../quality/kingroon/TPU/kingroon_0.4_TPU_adaptive.inst.cfg | 2 +- .../quality/kingroon/TPU/kingroon_0.4_TPU_standard.inst.cfg | 2 +- resources/quality/kingroon/TPU/kingroon_0.4_TPU_super.inst.cfg | 2 +- .../quality/kingroon/TPU/kingroon_0.5_TPU_adaptive.inst.cfg | 2 +- .../quality/kingroon/TPU/kingroon_0.5_TPU_standard.inst.cfg | 2 +- resources/quality/kingroon/TPU/kingroon_0.5_TPU_super.inst.cfg | 2 +- .../quality/kingroon/TPU/kingroon_0.6_TPU_standard.inst.cfg | 2 +- resources/quality/kingroon/TPU/kingroon_0.8_TPU_draft.inst.cfg | 2 +- resources/quality/kingroon/TPU/kingroon_1.0_TPU_draft.inst.cfg | 2 +- resources/quality/kingroon/kingroon_global_adaptive.inst.cfg | 2 +- resources/quality/kingroon/kingroon_global_draft.inst.cfg | 2 +- resources/quality/kingroon/kingroon_global_low.inst.cfg | 2 +- resources/quality/kingroon/kingroon_global_standard.inst.cfg | 2 +- resources/quality/kingroon/kingroon_global_super.inst.cfg | 2 +- resources/quality/kingroon/kingroon_global_ultra.inst.cfg | 2 +- resources/quality/koonovo/koonovo_base_global_draft.inst.cfg | 2 +- resources/quality/koonovo/koonovo_base_global_standard.inst.cfg | 2 +- resources/quality/koonovo/koovono_base_global_high.inst.cfg | 2 +- resources/quality/liquid/liquid_global_Draft_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_global_Fast_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_global_High_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_global_Normal_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_global_Superdraft_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_global_Verydraft_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_CPE_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_CPE_Fast_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_CPE_High_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_CPE_Normal_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_Nylon_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_Nylon_Fast_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_Nylon_High_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_Nylon_Normal_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_TPU_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_TPU_Fast_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_TPU_Normal_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.6_CFFCPE_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.6_CFFPA_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.6_GFFCPE_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.6_GFFPA_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.8_ABS_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_ABS_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_ABS_Verydraft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.8_PC_Fast_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PC_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PC_Verydraft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.2_generic_PETG_super.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.2_generic_PETG_ultra.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.2_generic_PLA_super.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.2_generic_PLA_ultra.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.4_generic_PETG_adaptive.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.4_generic_PETG_low.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.4_generic_PETG_standard.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.4_generic_PETG_super.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.4_generic_PLA_adaptive.inst.cfg | 2 +- resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_low.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.4_generic_PLA_standard.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.4_generic_PLA_super.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.4_generic_TPU_adaptive.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.4_generic_TPU_standard.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.4_generic_TPU_super.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.6_generic_PETG_standard.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.6_generic_PLA_draft.inst.cfg | 2 +- resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_low.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.6_generic_PLA_standard.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.6_generic_TPU_standard.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.8_generic_PETG_draft.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.8_generic_PLA_draft.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.8_generic_TPU_draft.inst.cfg | 2 +- resources/quality/lnl3d/lnl3d_base_global_adaptive.inst.cfg | 2 +- resources/quality/lnl3d/lnl3d_base_global_draft.inst.cfg | 2 +- resources/quality/lnl3d/lnl3d_base_global_low.inst.cfg | 2 +- resources/quality/lnl3d/lnl3d_base_global_standard.inst.cfg | 2 +- resources/quality/lnl3d/lnl3d_base_global_super.inst.cfg | 2 +- resources/quality/lnl3d/lnl3d_base_global_ultra.inst.cfg | 2 +- resources/quality/longer/ABS/longer_0.4_ABS_adaptive.inst.cfg | 2 +- resources/quality/longer/ABS/longer_0.4_ABS_low.inst.cfg | 2 +- resources/quality/longer/ABS/longer_0.4_ABS_standard.inst.cfg | 2 +- resources/quality/longer/ABS/longer_0.4_ABS_super.inst.cfg | 2 +- resources/quality/longer/PETG/longer_0.4_PETG_adaptive.inst.cfg | 2 +- resources/quality/longer/PETG/longer_0.4_PETG_low.inst.cfg | 2 +- resources/quality/longer/PETG/longer_0.4_PETG_standard.inst.cfg | 2 +- resources/quality/longer/PETG/longer_0.4_PETG_super.inst.cfg | 2 +- resources/quality/longer/PLA/longer_0.4_PLA_adaptive.inst.cfg | 2 +- resources/quality/longer/PLA/longer_0.4_PLA_low.inst.cfg | 2 +- resources/quality/longer/PLA/longer_0.4_PLA_standard.inst.cfg | 2 +- resources/quality/longer/PLA/longer_0.4_PLA_super.inst.cfg | 2 +- resources/quality/longer/TPU/longer_0.4_TPU_adaptive.inst.cfg | 2 +- resources/quality/longer/TPU/longer_0.4_TPU_standard.inst.cfg | 2 +- resources/quality/longer/TPU/longer_0.4_TPU_super.inst.cfg | 2 +- resources/quality/longer/longer_global_adaptive.inst.cfg | 2 +- resources/quality/longer/longer_global_draft.inst.cfg | 2 +- resources/quality/longer/longer_global_low.inst.cfg | 2 +- resources/quality/longer/longer_global_standard.inst.cfg | 2 +- resources/quality/longer/longer_global_super.inst.cfg | 2 +- resources/quality/longer/longer_global_ultra.inst.cfg | 2 +- .../quality/makeblock/makeblock_mcreate_pla_normal.inst.cfg | 2 +- .../quality/malyan_m200/abs/malyan_m200_abs_draft.inst.cfg | 2 +- resources/quality/malyan_m200/abs/malyan_m200_abs_fast.inst.cfg | 2 +- resources/quality/malyan_m200/abs/malyan_m200_abs_high.inst.cfg | 2 +- .../quality/malyan_m200/abs/malyan_m200_abs_normal.inst.cfg | 2 +- .../quality/malyan_m200/abs/malyan_m200_abs_superdraft.inst.cfg | 2 +- .../malyan_m200/abs/malyan_m200_abs_thickerdraft.inst.cfg | 2 +- .../quality/malyan_m200/abs/malyan_m200_abs_ultra.inst.cfg | 2 +- .../quality/malyan_m200/abs/malyan_m200_abs_verydraft.inst.cfg | 2 +- .../malyan_m200/malyan_m200_global_Draft_Quality.inst.cfg | 2 +- .../malyan_m200/malyan_m200_global_Fast_Quality.inst.cfg | 2 +- .../malyan_m200/malyan_m200_global_High_Quality.inst.cfg | 2 +- .../malyan_m200/malyan_m200_global_Normal_Quality.inst.cfg | 2 +- .../malyan_m200/malyan_m200_global_SuperDraft_Quality.inst.cfg | 2 +- .../malyan_m200_global_ThickerDraft_Quality.inst.cfg | 2 +- .../malyan_m200/malyan_m200_global_Ultra_Quality.inst.cfg | 2 +- .../malyan_m200/malyan_m200_global_VeryDraft_Quality.inst.cfg | 2 +- .../quality/malyan_m200/petg/malyan_m200_petg_draft.inst.cfg | 2 +- .../quality/malyan_m200/petg/malyan_m200_petg_fast.inst.cfg | 2 +- .../quality/malyan_m200/petg/malyan_m200_petg_high.inst.cfg | 2 +- .../quality/malyan_m200/petg/malyan_m200_petg_normal.inst.cfg | 2 +- .../malyan_m200/petg/malyan_m200_petg_superdraft.inst.cfg | 2 +- .../malyan_m200/petg/malyan_m200_petg_thickerdraft.inst.cfg | 2 +- .../quality/malyan_m200/petg/malyan_m200_petg_ultra.inst.cfg | 2 +- .../malyan_m200/petg/malyan_m200_petg_verydraft.inst.cfg | 2 +- .../quality/malyan_m200/pla/malyan_m200_pla_draft.inst.cfg | 2 +- resources/quality/malyan_m200/pla/malyan_m200_pla_fast.inst.cfg | 2 +- resources/quality/malyan_m200/pla/malyan_m200_pla_high.inst.cfg | 2 +- .../quality/malyan_m200/pla/malyan_m200_pla_normal.inst.cfg | 2 +- .../quality/malyan_m200/pla/malyan_m200_pla_superdraft.inst.cfg | 2 +- .../malyan_m200/pla/malyan_m200_pla_thickerdraft.inst.cfg | 2 +- .../quality/malyan_m200/pla/malyan_m200_pla_ultra.inst.cfg | 2 +- .../quality/malyan_m200/pla/malyan_m200_pla_verydraft.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.2_ABS_super.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.2_ABS_ultra.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.3_ABS_adaptive.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.3_ABS_low.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.3_ABS_standard.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.3_ABS_super.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.4_ABS_adaptive.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.4_ABS_low.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.4_ABS_standard.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.4_ABS_super.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.5_ABS_adaptive.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.5_ABS_low.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.5_ABS_standard.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.5_ABS_super.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.6_ABS_standard.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.8_ABS_draft.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_1.0_ABS_draft.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.2_PETG_super.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.2_PETG_ultra.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.3_PETG_adaptive.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.3_PETG_low.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.3_PETG_standard.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.3_PETG_super.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.4_PETG_adaptive.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.4_PETG_low.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.4_PETG_standard.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.4_PETG_super.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.5_PETG_adaptive.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.5_PETG_low.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.5_PETG_standard.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.5_PETG_super.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.6_PETG_standard.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.8_PETG_draft.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_1.0_PETG_draft.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.2_PLA_super.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.2_PLA_ultra.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.3_PLA_adaptive.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.3_PLA_low.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.3_PLA_standard.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.3_PLA_super.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.4_PLA_adaptive.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.4_PLA_low.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.4_PLA_standard.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.4_PLA_super.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.5_PLA_adaptive.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.5_PLA_low.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.5_PLA_standard.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.5_PLA_super.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.6_PLA_draft.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.6_PLA_low.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.6_PLA_standard.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.8_PLA_draft.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_1.0_PLA_draft.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_0.3_TPU_adaptive.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_0.3_TPU_standard.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_0.3_TPU_super.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_0.4_TPU_adaptive.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_0.4_TPU_standard.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_0.4_TPU_super.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_0.5_TPU_adaptive.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_0.5_TPU_standard.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_0.5_TPU_super.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_0.6_TPU_standard.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_0.8_TPU_draft.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_1.0_TPU_draft.inst.cfg | 2 +- resources/quality/mingda/mingda_global_adaptive.inst.cfg | 2 +- resources/quality/mingda/mingda_global_draft.inst.cfg | 2 +- resources/quality/mingda/mingda_global_low.inst.cfg | 2 +- resources/quality/mingda/mingda_global_standard.inst.cfg | 2 +- resources/quality/mingda/mingda_global_super.inst.cfg | 2 +- resources/quality/mingda/mingda_global_ultra.inst.cfg | 2 +- .../quality/mixware_hyper_k/mixware_hyper_k_draft.inst.cfg | 2 +- .../quality/mixware_hyper_k/mixware_hyper_k_extra_fast.inst.cfg | 2 +- .../quality/mixware_hyper_k/mixware_hyper_k_normal.inst.cfg | 2 +- .../quality/mixware_hyper_s/mixware_hyper_s_draft.inst.cfg | 2 +- .../quality/mixware_hyper_s/mixware_hyper_s_extra_fast.inst.cfg | 2 +- .../quality/mixware_hyper_s/mixware_hyper_s_normal.inst.cfg | 2 +- resources/quality/mixware_vulcan/mixware_vulcan_draft.inst.cfg | 2 +- .../quality/mixware_vulcan/mixware_vulcan_extra_fast.inst.cfg | 2 +- resources/quality/mixware_vulcan/mixware_vulcan_normal.inst.cfg | 2 +- resources/quality/mixware_wand/mixware_wand_draft.inst.cfg | 2 +- resources/quality/mixware_wand/mixware_wand_extra_fast.inst.cfg | 2 +- resources/quality/mixware_wand/mixware_wand_normal.inst.cfg | 2 +- .../abs/monoprice_select_mini_v2_abs_draft.inst.cfg | 2 +- .../abs/monoprice_select_mini_v2_abs_fast.inst.cfg | 2 +- .../abs/monoprice_select_mini_v2_abs_high.inst.cfg | 2 +- .../abs/monoprice_select_mini_v2_abs_normal.inst.cfg | 2 +- .../abs/monoprice_select_mini_v2_abs_superdraft.inst.cfg | 2 +- .../abs/monoprice_select_mini_v2_abs_thickerdraft.inst.cfg | 2 +- .../abs/monoprice_select_mini_v2_abs_ultra.inst.cfg | 2 +- .../abs/monoprice_select_mini_v2_abs_verydraft.inst.cfg | 2 +- .../monoprice_select_mini_v2_global_Draft_Quality.inst.cfg | 2 +- .../monoprice_select_mini_v2_global_Fast_Quality.inst.cfg | 2 +- .../monoprice_select_mini_v2_global_High_Quality.inst.cfg | 2 +- .../monoprice_select_mini_v2_global_Normal_Quality.inst.cfg | 2 +- .../monoprice_select_mini_v2_global_SuperDraft_Quality.inst.cfg | 2 +- ...onoprice_select_mini_v2_global_ThickerDraft_Quality.inst.cfg | 2 +- .../monoprice_select_mini_v2_global_Ultra_Quality.inst.cfg | 2 +- .../monoprice_select_mini_v2_global_VeryDraft_Quality.inst.cfg | 2 +- .../nylon/monoprice_select_mini_v2_nylon_draft.inst.cfg | 2 +- .../nylon/monoprice_select_mini_v2_nylon_fast.inst.cfg | 2 +- .../nylon/monoprice_select_mini_v2_nylon_high.inst.cfg | 2 +- .../nylon/monoprice_select_mini_v2_nylon_normal.inst.cfg | 2 +- .../nylon/monoprice_select_mini_v2_nylon_superdraft.inst.cfg | 2 +- .../nylon/monoprice_select_mini_v2_nylon_thickerdraft.inst.cfg | 2 +- .../nylon/monoprice_select_mini_v2_nylon_ultra.inst.cfg | 2 +- .../nylon/monoprice_select_mini_v2_nylon_verydraft.inst.cfg | 2 +- .../pc/monoprice_select_mini_v2_pc_draft.inst.cfg | 2 +- .../pc/monoprice_select_mini_v2_pc_fast.inst.cfg | 2 +- .../pc/monoprice_select_mini_v2_pc_high.inst.cfg | 2 +- .../pc/monoprice_select_mini_v2_pc_normal.inst.cfg | 2 +- .../pc/monoprice_select_mini_v2_pc_superdraft.inst.cfg | 2 +- .../pc/monoprice_select_mini_v2_pc_thickerdraft.inst.cfg | 2 +- .../pc/monoprice_select_mini_v2_pc_ultra.inst.cfg | 2 +- .../pc/monoprice_select_mini_v2_pc_verydraft.inst.cfg | 2 +- .../petg/monoprice_select_mini_v2_petg_draft.inst.cfg | 2 +- .../petg/monoprice_select_mini_v2_petg_fast.inst.cfg | 2 +- .../petg/monoprice_select_mini_v2_petg_high.inst.cfg | 2 +- .../petg/monoprice_select_mini_v2_petg_normal.inst.cfg | 2 +- .../petg/monoprice_select_mini_v2_petg_superdraft.inst.cfg | 2 +- .../petg/monoprice_select_mini_v2_petg_thickerdraft.inst.cfg | 2 +- .../petg/monoprice_select_mini_v2_petg_ultra.inst.cfg | 2 +- .../petg/monoprice_select_mini_v2_petg_verydraft.inst.cfg | 2 +- .../pla/monoprice_select_mini_v2_pla_draft.inst.cfg | 2 +- .../pla/monoprice_select_mini_v2_pla_fast.inst.cfg | 2 +- .../pla/monoprice_select_mini_v2_pla_high.inst.cfg | 2 +- .../pla/monoprice_select_mini_v2_pla_normal.inst.cfg | 2 +- .../pla/monoprice_select_mini_v2_pla_superdraft.inst.cfg | 2 +- .../pla/monoprice_select_mini_v2_pla_thickerdraft.inst.cfg | 2 +- .../pla/monoprice_select_mini_v2_pla_ultra.inst.cfg | 2 +- .../pla/monoprice_select_mini_v2_pla_verydraft.inst.cfg | 2 +- resources/quality/normal.inst.cfg | 2 +- resources/quality/nps/nps_ABS_A.inst.cfg | 2 +- resources/quality/nps/nps_ABS_B.inst.cfg | 2 +- resources/quality/nps/nps_ABS_C.inst.cfg | 2 +- resources/quality/nps/nps_PC_A.inst.cfg | 2 +- resources/quality/nps/nps_PC_B.inst.cfg | 2 +- resources/quality/nps/nps_PC_C.inst.cfg | 2 +- resources/quality/nps/nps_PETG_A.inst.cfg | 2 +- resources/quality/nps/nps_PETG_B.inst.cfg | 2 +- resources/quality/nps/nps_PETG_C.inst.cfg | 2 +- resources/quality/nps/nps_PLA_A.inst.cfg | 2 +- resources/quality/nps/nps_PLA_B.inst.cfg | 2 +- resources/quality/nps/nps_PLA_C.inst.cfg | 2 +- resources/quality/nps/nps_TPU_A.inst.cfg | 2 +- resources/quality/nps/nps_TPU_B.inst.cfg | 2 +- resources/quality/nps/nps_TPU_C.inst.cfg | 2 +- resources/quality/nps/nps_global_A.inst.cfg | 2 +- resources/quality/nps/nps_global_B.inst.cfg | 2 +- resources/quality/nps/nps_global_C.inst.cfg | 2 +- resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg | 2 +- resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg | 2 +- resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg | 2 +- resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg | 2 +- resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg | 2 +- resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg | 2 +- resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg | 2 +- resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg | 2 +- resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg | 2 +- resources/quality/peopoly_moai/peopoly_moai_extra_high.inst.cfg | 2 +- resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg | 2 +- resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.2_Nylon_super.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.2_Nylon_ultra.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.3_Nylon_adaptive.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.3_Nylon_low.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.3_Nylon_standard.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.3_Nylon_super.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.4_Nylon_adaptive.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.4_Nylon_low.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.4_Nylon_standard.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.4_Nylon_super.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.5_Nylon_adaptive.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.5_Nylon_low.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.5_Nylon_standard.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.5_Nylon_super.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.6_Nylon_standard.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.8_Nylon_draft.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_1.0_Nylon_draft.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.2_PETG_super.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.2_PETG_ultra.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.3_PETG_adaptive.inst.cfg | 2 +- .../quality/ratrig_base/petg/ratrig_base_0.3_PETG_low.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.3_PETG_standard.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.3_PETG_super.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.4_PETG_adaptive.inst.cfg | 2 +- .../quality/ratrig_base/petg/ratrig_base_0.4_PETG_low.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.4_PETG_standard.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.4_PETG_super.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.5_PETG_adaptive.inst.cfg | 2 +- .../quality/ratrig_base/petg/ratrig_base_0.5_PETG_low.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.5_PETG_standard.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.5_PETG_super.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.6_PETG_standard.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.8_PETG_draft.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_1.0_PETG_draft.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_0.2_PLA_super.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_0.2_PLA_ultra.inst.cfg | 2 +- .../ratrig_base/pla/ratrig_base_0.3_PLA_adaptive.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_0.3_PLA_low.inst.cfg | 2 +- .../ratrig_base/pla/ratrig_base_0.3_PLA_standard.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_0.3_PLA_super.inst.cfg | 2 +- .../ratrig_base/pla/ratrig_base_0.4_PLA_adaptive.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_0.4_PLA_low.inst.cfg | 2 +- .../ratrig_base/pla/ratrig_base_0.4_PLA_standard.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_0.4_PLA_super.inst.cfg | 2 +- .../ratrig_base/pla/ratrig_base_0.5_PLA_adaptive.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_0.5_PLA_low.inst.cfg | 2 +- .../ratrig_base/pla/ratrig_base_0.5_PLA_standard.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_0.5_PLA_super.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_0.6_PLA_draft.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_0.6_PLA_low.inst.cfg | 2 +- .../ratrig_base/pla/ratrig_base_0.6_PLA_standard.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_0.8_PLA_draft.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_1.0_PLA_draft.inst.cfg | 2 +- .../quality/ratrig_base/ratrig_base_global_adaptive.inst.cfg | 2 +- resources/quality/ratrig_base/ratrig_base_global_draft.inst.cfg | 2 +- resources/quality/ratrig_base/ratrig_base_global_low.inst.cfg | 2 +- .../quality/ratrig_base/ratrig_base_global_standard.inst.cfg | 2 +- resources/quality/ratrig_base/ratrig_base_global_super.inst.cfg | 2 +- resources/quality/ratrig_base/ratrig_base_global_ultra.inst.cfg | 2 +- .../ratrig_base/tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg | 2 +- .../ratrig_base/tpu/ratrig_base_0.3_TPU_standard.inst.cfg | 2 +- .../quality/ratrig_base/tpu/ratrig_base_0.3_TPU_super.inst.cfg | 2 +- .../ratrig_base/tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg | 2 +- .../ratrig_base/tpu/ratrig_base_0.4_TPU_standard.inst.cfg | 2 +- .../quality/ratrig_base/tpu/ratrig_base_0.4_TPU_super.inst.cfg | 2 +- .../ratrig_base/tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg | 2 +- .../ratrig_base/tpu/ratrig_base_0.5_TPU_standard.inst.cfg | 2 +- .../quality/ratrig_base/tpu/ratrig_base_0.5_TPU_super.inst.cfg | 2 +- .../ratrig_base/tpu/ratrig_base_0.6_TPU_standard.inst.cfg | 2 +- .../quality/ratrig_base/tpu/ratrig_base_0.8_TPU_draft.inst.cfg | 2 +- .../quality/ratrig_base/tpu/ratrig_base_1.0_TPU_draft.inst.cfg | 2 +- .../quality/rigid3d_base/abs/rigid3d_base_abs_adaptive.inst.cfg | 2 +- .../quality/rigid3d_base/abs/rigid3d_base_abs_good.inst.cfg | 2 +- .../quality/rigid3d_base/abs/rigid3d_base_abs_low.inst.cfg | 2 +- .../quality/rigid3d_base/abs/rigid3d_base_abs_standard.inst.cfg | 2 +- .../quality/rigid3d_base/abs/rigid3d_base_abs_super.inst.cfg | 2 +- .../quality/rigid3d_base/abs/rigid3d_base_abs_ultra.inst.cfg | 2 +- .../rigid3d_base/nylon/rigid3d_base_nylon_adaptive.inst.cfg | 2 +- .../quality/rigid3d_base/nylon/rigid3d_base_nylon_good.inst.cfg | 2 +- .../quality/rigid3d_base/nylon/rigid3d_base_nylon_low.inst.cfg | 2 +- .../rigid3d_base/nylon/rigid3d_base_nylon_standard.inst.cfg | 2 +- .../rigid3d_base/nylon/rigid3d_base_nylon_super.inst.cfg | 2 +- .../rigid3d_base/nylon/rigid3d_base_nylon_ultra.inst.cfg | 2 +- .../rigid3d_base/petg/rigid3d_base_petg_adaptive.inst.cfg | 2 +- .../quality/rigid3d_base/petg/rigid3d_base_petg_good.inst.cfg | 2 +- .../quality/rigid3d_base/petg/rigid3d_base_petg_low.inst.cfg | 2 +- .../rigid3d_base/petg/rigid3d_base_petg_standard.inst.cfg | 2 +- .../quality/rigid3d_base/petg/rigid3d_base_petg_super.inst.cfg | 2 +- .../quality/rigid3d_base/petg/rigid3d_base_petg_ultra.inst.cfg | 2 +- .../quality/rigid3d_base/pla/rigid3d_base_pla_adaptive.inst.cfg | 2 +- .../quality/rigid3d_base/pla/rigid3d_base_pla_good.inst.cfg | 2 +- .../quality/rigid3d_base/pla/rigid3d_base_pla_low.inst.cfg | 2 +- .../quality/rigid3d_base/pla/rigid3d_base_pla_standard.inst.cfg | 2 +- .../quality/rigid3d_base/pla/rigid3d_base_pla_super.inst.cfg | 2 +- .../quality/rigid3d_base/pla/rigid3d_base_pla_ultra.inst.cfg | 2 +- .../quality/rigid3d_base/rigid3d_base_global_adaptive.inst.cfg | 2 +- .../quality/rigid3d_base/rigid3d_base_global_good.inst.cfg | 2 +- resources/quality/rigid3d_base/rigid3d_base_global_low.inst.cfg | 2 +- .../quality/rigid3d_base/rigid3d_base_global_standard.inst.cfg | 2 +- .../quality/rigid3d_base/rigid3d_base_global_super.inst.cfg | 2 +- .../quality/rigid3d_base/rigid3d_base_global_ultra.inst.cfg | 2 +- .../quality/rigid3d_base/tpu/rigid3d_base_tpu_adaptive.inst.cfg | 2 +- .../quality/rigid3d_base/tpu/rigid3d_base_tpu_good.inst.cfg | 2 +- .../quality/rigid3d_base/tpu/rigid3d_base_tpu_low.inst.cfg | 2 +- .../quality/rigid3d_base/tpu/rigid3d_base_tpu_standard.inst.cfg | 2 +- .../quality/rigid3d_base/tpu/rigid3d_base_tpu_super.inst.cfg | 2 +- .../quality/rigid3d_base/tpu/rigid3d_base_tpu_ultra.inst.cfg | 2 +- resources/quality/skriware_2/sk2_advanced.inst.cfg | 2 +- resources/quality/skriware_2/sk2_fast.inst.cfg | 2 +- resources/quality/skriware_2/sk2_precise.inst.cfg | 2 +- .../quality/snakeoilxy/snakeoilxy_global_fast_quality.inst.cfg | 2 +- .../quality/snakeoilxy/snakeoilxy_global_fine_quality.inst.cfg | 2 +- .../snakeoilxy/snakeoilxy_global_normal_quality.inst.cfg | 2 +- .../snakeoilxy/snakeoilxy_global_strong_quality.inst.cfg | 2 +- resources/quality/snapmaker2/snapmaker2_fast.inst.cfg | 2 +- resources/quality/snapmaker2/snapmaker2_high.inst.cfg | 2 +- resources/quality/snapmaker2/snapmaker2_normal.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_super.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_ultra.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_bowden_0.3_ABS_adaptive.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_bowden_0.3_ABS_standard.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_super.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_bowden_0.4_ABS_adaptive.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_bowden_0.4_ABS_standard.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_super.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_bowden_0.5_ABS_adaptive.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_bowden_0.5_ABS_standard.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_super.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_bowden_0.6_ABS_adaptive.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_draft.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_bowden_0.6_ABS_standard.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_0.8_ABS_draft.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_1.0_ABS_draft.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.2_ABS_super.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.2_ABS_ultra.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.3_ABS_adaptive.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.3_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.3_ABS_standard.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.3_ABS_super.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.4_ABS_adaptive.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.4_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.4_ABS_standard.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.4_ABS_super.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.5_ABS_adaptive.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.5_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.5_ABS_standard.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.5_ABS_super.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.6_ABS_adaptive.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.6_ABS_draft.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.6_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.6_ABS_standard.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.8_ABS_draft.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_1.0_ABS_draft.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_0.2_ABS_super.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_0.2_ABS_ultra.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_titan_0.3_ABS_adaptive.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_0.3_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_titan_0.3_ABS_standard.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_0.3_ABS_super.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_titan_0.4_ABS_adaptive.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_0.4_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_titan_0.4_ABS_standard.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_0.4_ABS_super.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_titan_0.5_ABS_adaptive.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_0.5_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_titan_0.5_ABS_standard.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_0.5_ABS_super.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_titan_0.6_ABS_adaptive.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_0.6_ABS_draft.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_0.6_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_titan_0.6_ABS_standard.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_0.8_ABS_draft.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_1.0_ABS_draft.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.2_PETG_super.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.2_PETG_ultra.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.3_PETG_adaptive.inst.cfg | 2 +- resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_low.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.3_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.3_PETG_super.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.4_PETG_adaptive.inst.cfg | 2 +- resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_low.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.4_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.4_PETG_super.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.5_PETG_adaptive.inst.cfg | 2 +- resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_low.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.5_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.5_PETG_super.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.6_PETG_adaptive.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.6_PETG_draft.inst.cfg | 2 +- resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_low.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.6_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.8_PETG_draft.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_1.0_PETG_draft.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_0.2_PETG_super.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_0.2_PETG_ultra.inst.cfg | 2 +- .../sovol/PETG/sovol_planetary_0.3_PETG_adaptive.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_0.3_PETG_low.inst.cfg | 2 +- .../sovol/PETG/sovol_planetary_0.3_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_0.3_PETG_super.inst.cfg | 2 +- .../sovol/PETG/sovol_planetary_0.4_PETG_adaptive.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_0.4_PETG_low.inst.cfg | 2 +- .../sovol/PETG/sovol_planetary_0.4_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_0.4_PETG_super.inst.cfg | 2 +- .../sovol/PETG/sovol_planetary_0.5_PETG_adaptive.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_0.5_PETG_low.inst.cfg | 2 +- .../sovol/PETG/sovol_planetary_0.5_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_0.5_PETG_super.inst.cfg | 2 +- .../sovol/PETG/sovol_planetary_0.6_PETG_adaptive.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_0.6_PETG_draft.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_0.6_PETG_low.inst.cfg | 2 +- .../sovol/PETG/sovol_planetary_0.6_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_0.8_PETG_draft.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_1.0_PETG_draft.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.2_PETG_super.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.2_PETG_ultra.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.3_PETG_adaptive.inst.cfg | 2 +- resources/quality/sovol/PETG/sovol_titan_0.3_PETG_low.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.3_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.3_PETG_super.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.4_PETG_adaptive.inst.cfg | 2 +- resources/quality/sovol/PETG/sovol_titan_0.4_PETG_low.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.4_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.4_PETG_super.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.5_PETG_adaptive.inst.cfg | 2 +- resources/quality/sovol/PETG/sovol_titan_0.5_PETG_low.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.5_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.5_PETG_super.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.6_PETG_adaptive.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.6_PETG_draft.inst.cfg | 2 +- resources/quality/sovol/PETG/sovol_titan_0.6_PETG_low.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.6_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.8_PETG_draft.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_1.0_PETG_draft.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_super.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_ultra.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_bowden_0.3_PLA_adaptive.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_bowden_0.3_PLA_standard.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_super.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_bowden_0.4_PLA_adaptive.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_bowden_0.4_PLA_standard.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_super.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_bowden_0.5_PLA_adaptive.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_bowden_0.5_PLA_standard.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_super.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_bowden_0.6_PLA_adaptive.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_draft.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_bowden_0.6_PLA_standard.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_0.8_PLA_draft.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_1.0_PLA_draft.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.2_PLA_super.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.2_PLA_ultra.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.3_PLA_adaptive.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.3_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.3_PLA_standard.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.3_PLA_super.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.4_PLA_adaptive.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.4_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.4_PLA_standard.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.4_PLA_super.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.5_PLA_adaptive.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.5_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.5_PLA_standard.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.5_PLA_super.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.6_PLA_adaptive.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.6_PLA_draft.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.6_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.6_PLA_standard.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.8_PLA_draft.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_1.0_PLA_draft.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_0.2_PLA_super.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_0.2_PLA_ultra.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_titan_0.3_PLA_adaptive.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_0.3_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_titan_0.3_PLA_standard.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_0.3_PLA_super.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_titan_0.4_PLA_adaptive.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_0.4_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_titan_0.4_PLA_standard.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_0.4_PLA_super.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_titan_0.5_PLA_adaptive.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_0.5_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_titan_0.5_PLA_standard.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_0.5_PLA_super.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_titan_0.6_PLA_adaptive.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_0.6_PLA_draft.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_0.6_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_titan_0.6_PLA_standard.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_0.8_PLA_draft.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_1.0_PLA_draft.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_bowden_0.3_TPU_adaptive.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_bowden_0.3_TPU_standard.inst.cfg | 2 +- resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_super.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_bowden_0.4_TPU_adaptive.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_bowden_0.4_TPU_standard.inst.cfg | 2 +- resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_super.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_bowden_0.5_TPU_adaptive.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_bowden_0.5_TPU_standard.inst.cfg | 2 +- resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_super.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_bowden_0.6_TPU_standard.inst.cfg | 2 +- resources/quality/sovol/TPU/sovol_bowden_0.8_TPU_draft.inst.cfg | 2 +- resources/quality/sovol/TPU/sovol_bowden_1.0_TPU_draft.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_0.3_TPU_adaptive.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_0.3_TPU_standard.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_0.3_TPU_super.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_0.4_TPU_adaptive.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_0.4_TPU_standard.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_0.4_TPU_super.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_0.5_TPU_adaptive.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_0.5_TPU_standard.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_0.5_TPU_super.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_0.6_TPU_standard.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_0.8_TPU_draft.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_1.0_TPU_draft.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_titan_0.3_TPU_adaptive.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_titan_0.3_TPU_standard.inst.cfg | 2 +- resources/quality/sovol/TPU/sovol_titan_0.3_TPU_super.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_titan_0.4_TPU_adaptive.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_titan_0.4_TPU_standard.inst.cfg | 2 +- resources/quality/sovol/TPU/sovol_titan_0.4_TPU_super.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_titan_0.5_TPU_adaptive.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_titan_0.5_TPU_standard.inst.cfg | 2 +- resources/quality/sovol/TPU/sovol_titan_0.5_TPU_super.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_titan_0.6_TPU_standard.inst.cfg | 2 +- resources/quality/sovol/TPU/sovol_titan_0.8_TPU_draft.inst.cfg | 2 +- resources/quality/sovol/TPU/sovol_titan_1.0_TPU_draft.inst.cfg | 2 +- resources/quality/sovol/sovol_bowden_global_adaptive.inst.cfg | 2 +- resources/quality/sovol/sovol_bowden_global_draft.inst.cfg | 2 +- resources/quality/sovol/sovol_bowden_global_low.inst.cfg | 2 +- resources/quality/sovol/sovol_bowden_global_standard.inst.cfg | 2 +- resources/quality/sovol/sovol_bowden_global_super.inst.cfg | 2 +- resources/quality/sovol/sovol_bowden_global_ultra.inst.cfg | 2 +- .../quality/sovol/sovol_planetary_global_adaptive.inst.cfg | 2 +- resources/quality/sovol/sovol_planetary_global_draft.inst.cfg | 2 +- resources/quality/sovol/sovol_planetary_global_low.inst.cfg | 2 +- .../quality/sovol/sovol_planetary_global_standard.inst.cfg | 2 +- resources/quality/sovol/sovol_planetary_global_super.inst.cfg | 2 +- resources/quality/sovol/sovol_planetary_global_ultra.inst.cfg | 2 +- resources/quality/sovol/sovol_titan_global_adaptive.inst.cfg | 2 +- resources/quality/sovol/sovol_titan_global_draft.inst.cfg | 2 +- resources/quality/sovol/sovol_titan_global_low.inst.cfg | 2 +- resources/quality/sovol/sovol_titan_global_standard.inst.cfg | 2 +- resources/quality/sovol/sovol_titan_global_super.inst.cfg | 2 +- resources/quality/sovol/sovol_titan_global_ultra.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg | 2 +- .../strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg | 2 +- .../strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg | 2 +- .../strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg | 2 +- .../strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg | 2 +- .../strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg | 2 +- .../strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg | 2 +- .../strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg | 2 +- resources/quality/strateo3d/s3d_global_A.inst.cfg | 2 +- resources/quality/strateo3d/s3d_global_B.inst.cfg | 2 +- resources/quality/strateo3d/s3d_global_C.inst.cfg | 2 +- resources/quality/strateo3d/s3d_global_D.inst.cfg | 2 +- resources/quality/strateo3d/s3d_global_E.inst.cfg | 2 +- resources/quality/strateo3d/s3d_global_F.inst.cfg | 2 +- resources/quality/strateo3d/s3d_global_G.inst.cfg | 2 +- resources/quality/strateo3d/s3d_global_H.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ABS-X_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ABS-X_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ABS-X_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ABS_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ABS_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ABS_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ACETATE_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ACETATE_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ACETATE_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ASA-X_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ASA-X_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ASA-X_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_BVOH_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_BVOH_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_BVOH_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_COPA_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_COPA_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_COPA_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_HIPS_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_HIPS_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_HIPS_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PA6CF_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PA6CF_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PA6CF_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PA6GF_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PA6GF_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PA6GF_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PC_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PC_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PC_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PETG_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PETG_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PETG_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PLA_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PLA_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PLA_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PVA-M_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PVA-M_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PVA-M_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PVA-S_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PVA-S_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PVA-S_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_TPU98A_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_TPU98A_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_TPU98A_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ABS-X_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ABS-X_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ABS-X_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ABS_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ABS_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ABS_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ACETATE_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ACETATE_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ACETATE_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ASA-X_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ASA-X_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ASA-X_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_BVOH_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_BVOH_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_BVOH_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_COPA_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_COPA_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_COPA_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_HIPS_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_HIPS_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_HIPS_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PA6CF_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PA6CF_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PA6CF_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PA6GF_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PA6GF_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PA6GF_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PC_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PC_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PC_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PETG_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PETG_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PETG_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PLA_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PLA_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PLA_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PVA-M_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PVA-M_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PVA-M_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PVA-S_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PVA-S_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PVA-S_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_TPU98A_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_TPU98A_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_TPU98A_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_ABS-X_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_ABS-X_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_ABS-X_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_ABS_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_ABS_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_ABS_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_ASA-X_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_ASA-X_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_ASA-X_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_BVOH_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_BVOH_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_BVOH_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_COPA_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_COPA_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_COPA_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_HIPS_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_HIPS_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_HIPS_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PA6CF_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PA6CF_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PA6CF_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PA6GF_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PA6GF_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PA6GF_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PC_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PC_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PC_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PETG_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PETG_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PETG_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PLA_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PLA_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PLA_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PVA-M_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PVA-M_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PVA-M_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PVA-S_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PVA-S_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PVA-S_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_TPU98A_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_TPU98A_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_TPU98A_E.inst.cfg | 2 +- .../quality/strateo3d_IDEX420/s3d_IDEX420_global_A.inst.cfg | 2 +- .../quality/strateo3d_IDEX420/s3d_IDEX420_global_B.inst.cfg | 2 +- .../quality/strateo3d_IDEX420/s3d_IDEX420_global_C.inst.cfg | 2 +- .../quality/strateo3d_IDEX420/s3d_IDEX420_global_D.inst.cfg | 2 +- .../quality/strateo3d_IDEX420/s3d_IDEX420_global_E.inst.cfg | 2 +- resources/quality/tank_m_base_global_draft.inst.cfg | 2 +- resources/quality/tank_m_base_global_high.inst.cfg | 2 +- resources/quality/tank_m_base_global_standard.inst.cfg | 2 +- .../quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg | 2 +- resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg | 2 +- .../quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_e10_high.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_e16_high.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/abs/tizyx_evy_0.2_abs_high.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/abs/tizyx_evy_0.3_abs_high.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_draft.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_coarse.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_extra_coarse.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.2_flex_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.3_flex_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_draft.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_coarse.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_normal.inst.cfg | 2 +- .../tizyx_evy/flex/tizyx_evy_0.8_flex_extra_coarse.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.2_petg_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.3_petg_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_draft.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_coarse.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_normal.inst.cfg | 2 +- .../tizyx_evy/petg/tizyx_evy_0.8_petg_extra_coarse.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_normal.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/pla/tizyx_evy_0.2_pla_high.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/pla/tizyx_evy_0.3_pla_high.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_draft.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_coarse.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_extra_coarse.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_normal.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.2_pla_bois_high.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.3_pla_bois_high.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_high.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_normal.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_draft.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_high.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_normal.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_coarse.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_high.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_normal.inst.cfg | 2 +- .../pla_bois/tizyx_evy_0.8_pla_bois_extra_coarse.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_high.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/tizyx_evy_global_Coarse_Quality.inst.cfg | 2 +- .../tizyx/tizyx_evy/tizyx_evy_global_Draft_Quality.inst.cfg | 2 +- .../tizyx_evy/tizyx_evy_global_Extra_Coarse_Quality.inst.cfg | 2 +- .../tizyx/tizyx_evy/tizyx_evy_global_High_Quality.inst.cfg | 2 +- .../tizyx/tizyx_evy/tizyx_evy_global_Normal_Quality.inst.cfg | 2 +- .../tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_high.inst.cfg | 2 +- .../abs/tizyx_evy_dual_classic_abs_normal.inst.cfg | 2 +- .../abs/tizyx_evy_dual_direct_drive_abs_high.inst.cfg | 2 +- .../abs/tizyx_evy_dual_direct_drive_abs_normal.inst.cfg | 2 +- .../flex/tizyx_evy_dual_classic_flex_flex.inst.cfg | 2 +- .../flex/tizyx_evy_dual_classic_flex_flex_only.inst.cfg | 2 +- .../flex/tizyx_evy_dual_direct_drive_flex_flex.inst.cfg | 2 +- .../flex/tizyx_evy_dual_direct_drive_flex_flex_only.inst.cfg | 2 +- .../petg/tizyx_evy_dual_classic_petg_high.inst.cfg | 2 +- .../petg/tizyx_evy_dual_classic_petg_normal.inst.cfg | 2 +- .../petg/tizyx_evy_dual_direct_drive_petg_high.inst.cfg | 2 +- .../petg/tizyx_evy_dual_direct_drive_petg_normal.inst.cfg | 2 +- .../tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex.inst.cfg | 2 +- .../pla/tizyx_evy_dual_classic_pla_flex_only.inst.cfg | 2 +- .../tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_high.inst.cfg | 2 +- .../pla/tizyx_evy_dual_classic_pla_normal.inst.cfg | 2 +- .../tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_pva.inst.cfg | 2 +- .../pla/tizyx_evy_dual_direct_drive_pla_flex.inst.cfg | 2 +- .../pla/tizyx_evy_dual_direct_drive_pla_flex_only.inst.cfg | 2 +- .../pla/tizyx_evy_dual_direct_drive_pla_high.inst.cfg | 2 +- .../pla/tizyx_evy_dual_direct_drive_pla_normal.inst.cfg | 2 +- .../pla/tizyx_evy_dual_direct_drive_pla_pva.inst.cfg | 2 +- .../pla_bois/tizyx_evy_dual_classic_pla_bois_flex.inst.cfg | 2 +- .../pla_bois/tizyx_evy_dual_classic_pla_bois_high.inst.cfg | 2 +- .../pla_bois/tizyx_evy_dual_classic_pla_bois_normal.inst.cfg | 2 +- .../pla_bois/tizyx_evy_dual_direct_drive_pla_bois_flex.inst.cfg | 2 +- .../pla_bois/tizyx_evy_dual_direct_drive_pla_bois_high.inst.cfg | 2 +- .../tizyx_evy_dual_direct_drive_pla_bois_normal.inst.cfg | 2 +- .../tizyx_evy_dual/pva/tizyx_evy_dual_classic_pva_pva.inst.cfg | 2 +- .../pva/tizyx_evy_dual_direct_drive_pva_pva.inst.cfg | 2 +- .../tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg | 2 +- .../tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg | 2 +- .../tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg | 2 +- .../tizyx_evy_dual_global_Normal_Quality.inst.cfg | 2 +- .../tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg | 2 +- resources/quality/tizyx/tizyx_k25/tizyx_k25_high.inst.cfg | 2 +- resources/quality/tizyx/tizyx_k25/tizyx_k25_normal.inst.cfg | 2 +- .../quality/trimaker_cosmosII/trimaker_cosmosII_fast.inst.cfg | 2 +- .../quality/trimaker_cosmosII/trimaker_cosmosII_normal.inst.cfg | 2 +- .../quality/trimaker_cosmosII/trimaker_cosmosII_slow.inst.cfg | 2 +- resources/quality/trimaker_nebula/trimaker_nebula_fast.inst.cfg | 2 +- .../quality/trimaker_nebula/trimaker_nebula_normal.inst.cfg | 2 +- resources/quality/trimaker_nebula/trimaker_nebula_slow.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.2_ABS_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.2_ABS_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.2_ABS_super.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.2_PETG_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.2_PETG_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.2_PETG_super.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.2_PLA_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.2_PLA_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.2_PLA_super.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_ABS_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_ABS_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_ABS_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_ABS_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_PETG_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_PETG_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_PETG_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_PETG_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_PLA_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_PLA_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_PLA_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_PLA_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_TPU_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_TPU_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_TPU_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_ABS_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_ABS_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_ABS_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_ABS_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_ABS_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_PETG_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_PETG_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_PETG_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_PETG_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_PETG_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_PLA_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_PLA_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_PLA_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_PLA_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_PLA_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_TPU_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_TPU_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_TPU_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_ABS_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_ABS_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_ABS_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_ABS_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_ABS_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_PETG_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_PETG_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_PETG_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_PETG_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_PETG_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_PLA_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_PLA_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_PLA_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_PLA_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_PLA_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_TPU_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_TPU_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_TPU_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_ABS_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_ABS_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_ABS_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_PETG_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_PETG_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_PETG_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_PLA_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_PLA_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_PLA_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_PLA_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_TPU_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_TPU_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_ABS_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_ABS_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_ABS_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_PETG_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_PETG_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_PETG_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_PLA_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_PLA_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_PLA_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_TPU_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_TPU_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_TPU_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_global_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_global_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_global_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_global_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_global_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_global_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_global_super.inst.cfg | 2 +- resources/quality/twotrees/abs/two_trees_0.2_ABS_super.inst.cfg | 2 +- resources/quality/twotrees/abs/two_trees_0.2_ABS_ultra.inst.cfg | 2 +- .../quality/twotrees/abs/two_trees_0.3_ABS_adaptive.inst.cfg | 2 +- resources/quality/twotrees/abs/two_trees_0.3_ABS_low.inst.cfg | 2 +- .../quality/twotrees/abs/two_trees_0.3_ABS_standard.inst.cfg | 2 +- resources/quality/twotrees/abs/two_trees_0.3_ABS_super.inst.cfg | 2 +- .../quality/twotrees/abs/two_trees_0.4_ABS_adaptive.inst.cfg | 2 +- resources/quality/twotrees/abs/two_trees_0.4_ABS_low.inst.cfg | 2 +- .../quality/twotrees/abs/two_trees_0.4_ABS_standard.inst.cfg | 2 +- resources/quality/twotrees/abs/two_trees_0.4_ABS_super.inst.cfg | 2 +- .../quality/twotrees/abs/two_trees_0.5_ABS_adaptive.inst.cfg | 2 +- resources/quality/twotrees/abs/two_trees_0.5_ABS_low.inst.cfg | 2 +- .../quality/twotrees/abs/two_trees_0.5_ABS_standard.inst.cfg | 2 +- resources/quality/twotrees/abs/two_trees_0.5_ABS_super.inst.cfg | 2 +- .../quality/twotrees/abs/two_trees_0.6_ABS_standard.inst.cfg | 2 +- resources/quality/twotrees/abs/two_trees_0.8_ABS_draft.inst.cfg | 2 +- resources/quality/twotrees/abs/two_trees_1.0_ABS_draft.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.2_PETG_super.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.2_PETG_ultra.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.3_PETG_adaptive.inst.cfg | 2 +- resources/quality/twotrees/petg/two_trees_0.3_PETG_low.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.3_PETG_standard.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.3_PETG_super.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.4_PETG_adaptive.inst.cfg | 2 +- resources/quality/twotrees/petg/two_trees_0.4_PETG_low.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.4_PETG_standard.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.4_PETG_super.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.5_PETG_adaptive.inst.cfg | 2 +- resources/quality/twotrees/petg/two_trees_0.5_PETG_low.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.5_PETG_standard.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.5_PETG_super.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.6_PETG_standard.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.8_PETG_draft.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_1.0_PETG_draft.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_0.2_PLA_super.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_0.2_PLA_ultra.inst.cfg | 2 +- .../quality/twotrees/pla/two_trees_0.3_PLA_adaptive.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_0.3_PLA_low.inst.cfg | 2 +- .../quality/twotrees/pla/two_trees_0.3_PLA_standard.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_0.3_PLA_super.inst.cfg | 2 +- .../quality/twotrees/pla/two_trees_0.4_PLA_adaptive.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_0.4_PLA_low.inst.cfg | 2 +- .../quality/twotrees/pla/two_trees_0.4_PLA_standard.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_0.4_PLA_super.inst.cfg | 2 +- .../quality/twotrees/pla/two_trees_0.5_PLA_adaptive.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_0.5_PLA_low.inst.cfg | 2 +- .../quality/twotrees/pla/two_trees_0.5_PLA_standard.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_0.5_PLA_super.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_0.6_PLA_draft.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_0.6_PLA_low.inst.cfg | 2 +- .../quality/twotrees/pla/two_trees_0.6_PLA_standard.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_0.8_PLA_draft.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_1.0_PLA_draft.inst.cfg | 2 +- .../quality/twotrees/tpu/two_trees_0.3_TPU_adaptive.inst.cfg | 2 +- .../quality/twotrees/tpu/two_trees_0.3_TPU_standard.inst.cfg | 2 +- resources/quality/twotrees/tpu/two_trees_0.3_TPU_super.inst.cfg | 2 +- .../quality/twotrees/tpu/two_trees_0.4_TPU_adaptive.inst.cfg | 2 +- .../quality/twotrees/tpu/two_trees_0.4_TPU_standard.inst.cfg | 2 +- resources/quality/twotrees/tpu/two_trees_0.4_TPU_super.inst.cfg | 2 +- .../quality/twotrees/tpu/two_trees_0.5_TPU_adaptive.inst.cfg | 2 +- .../quality/twotrees/tpu/two_trees_0.5_TPU_standard.inst.cfg | 2 +- resources/quality/twotrees/tpu/two_trees_0.5_TPU_super.inst.cfg | 2 +- .../quality/twotrees/tpu/two_trees_0.6_TPU_standard.inst.cfg | 2 +- resources/quality/twotrees/tpu/two_trees_0.8_TPU_draft.inst.cfg | 2 +- resources/quality/twotrees/tpu/two_trees_1.0_TPU_draft.inst.cfg | 2 +- resources/quality/twotrees/two_trees_global_adaptive.inst.cfg | 2 +- resources/quality/twotrees/two_trees_global_draft.inst.cfg | 2 +- resources/quality/twotrees/two_trees_global_low.inst.cfg | 2 +- resources/quality/twotrees/two_trees_global_standard.inst.cfg | 2 +- resources/quality/twotrees/two_trees_global_super.inst.cfg | 2 +- resources/quality/twotrees/two_trees_global_ultra.inst.cfg | 2 +- resources/quality/ultimaker2/um2_draft.inst.cfg | 2 +- resources/quality/ultimaker2/um2_fast.inst.cfg | 2 +- resources/quality/ultimaker2/um2_high.inst.cfg | 2 +- resources/quality/ultimaker2/um2_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/pla_0.25_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/pla_0.4_fast.inst.cfg | 2 +- resources/quality/ultimaker2_plus/pla_0.4_high.inst.cfg | 2 +- resources/quality/ultimaker2_plus/pla_0.4_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/pla_0.6_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/pla_0.8_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_abs_0.25_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_abs_0.4_fast.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_abs_0.4_high.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_abs_0.4_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_abs_0.6_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_abs_0.8_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpe_0.25_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpe_0.4_fast.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpe_0.4_high.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpe_0.4_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpe_0.6_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpe_0.8_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpep_0.4_draft.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpep_0.4_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpep_0.6_draft.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpep_0.6_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpep_0.8_draft.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpep_0.8_normal.inst.cfg | 2 +- .../quality/ultimaker2_plus/um2p_global_Coarse_Quality.inst.cfg | 2 +- .../quality/ultimaker2_plus/um2p_global_Draft_Quality.inst.cfg | 2 +- .../ultimaker2_plus/um2p_global_Extra_Coarse_Quality.inst.cfg | 2 +- .../quality/ultimaker2_plus/um2p_global_Fast_Quality.inst.cfg | 2 +- .../quality/ultimaker2_plus/um2p_global_High_Quality.inst.cfg | 2 +- .../quality/ultimaker2_plus/um2p_global_Normal_Quality.inst.cfg | 2 +- .../um2p_global_Slightly_Coarse_Quality.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_nylon_0.25_high.inst.cfg | 2 +- .../quality/ultimaker2_plus/um2p_nylon_0.25_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_nylon_0.4_fast.inst.cfg | 2 +- .../quality/ultimaker2_plus/um2p_nylon_0.4_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_nylon_0.6_fast.inst.cfg | 2 +- .../quality/ultimaker2_plus/um2p_nylon_0.6_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_nylon_0.8_draft.inst.cfg | 2 +- .../quality/ultimaker2_plus/um2p_nylon_0.8_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pc_0.25_high.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pc_0.25_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pc_0.4_fast.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pc_0.4_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pc_0.6_fast.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pc_0.6_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pc_0.8_draft.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pc_0.8_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pp_0.4_fast.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pp_0.4_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pp_0.6_draft.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pp_0.6_fast.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pp_0.8_draft.inst.cfg | 2 +- .../quality/ultimaker2_plus/um2p_pp_0.8_verydraft.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_tpu_0.25_high.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_tpu_0.4_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_tpu_0.6_fast.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_abs_0.25_normal.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_abs_0.4_fast.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_abs_0.4_high.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_abs_0.4_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_abs_0.6_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_abs_0.8_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_cpe_0.25_normal.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_cpe_0.4_fast.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_cpe_0.4_high.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_cpe_0.4_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_cpe_0.6_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_cpe_0.8_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_cpep_0.4_draft.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_cpep_0.4_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_cpep_0.6_draft.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_cpep_0.6_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_cpep_0.8_draft.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_cpep_0.8_normal.inst.cfg | 2 +- .../um2pc_global_Coarse_Quality.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_global_Draft_Quality.inst.cfg | 2 +- .../um2pc_global_Extra_Coarse_Quality.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_global_Fast_Quality.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_global_High_Quality.inst.cfg | 2 +- .../um2pc_global_Normal_Quality.inst.cfg | 2 +- .../um2pc_global_Slightly_Coarse_Quality.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_nylon_0.25_high.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_nylon_0.25_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_nylon_0.4_fast.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_nylon_0.4_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_nylon_0.6_fast.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_nylon_0.6_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_nylon_0.8_draft.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_nylon_0.8_normal.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_pc_0.25_high.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_pc_0.25_normal.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_pc_0.4_fast.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_pc_0.4_normal.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_pc_0.6_fast.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_pc_0.6_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_pc_0.8_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_petg_0.25_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_petg_0.4_draft.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_petg_0.4_fast.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_petg_0.4_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_petg_0.6_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_petg_0.8_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_pla_0.25_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_pla_0.4_draft.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_pla_0.4_fast.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_pla_0.4_high.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_pla_0.4_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_pla_0.6_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_pla_0.8_normal.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_pp_0.4_fast.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_pp_0.4_normal.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_pp_0.6_draft.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_pp_0.6_fast.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_pp_0.8_draft.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_pp_0.8_verydraft.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_tpla_0.25_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_tpla_0.4_draft.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_tpla_0.4_fast.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_tpla_0.4_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_tpla_0.6_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_tpla_0.8_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_tpu_0.25_high.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_tpu_0.4_normal.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_tpu_0.6_fast.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.25_ABS_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.25_CPE_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.25_Nylon_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.25_PETG_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.25_PLA_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.25_TPLA_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_CPE_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_CPE_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_CPE_High_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_CPE_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_Nylon_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_Nylon_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_Nylon_High_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_Nylon_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_PETG_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PETG_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_PETG_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_TPU_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_TPU_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.8_ABS_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_ABS_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_ABS_Verydraft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg | 2 +- .../ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.8_PC_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PC_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PC_Verydraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_bb0.8_PVA_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_bb0.8_PVA_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_bb0.8_PVA_Verydraft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_global_Draft_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_global_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_global_Superdraft_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_global_Verydraft_Quality.inst.cfg | 2 +- .../ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm.inst.cfg | 2 +- .../ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm.inst.cfg | 2 +- .../ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm.inst.cfg | 2 +- .../um_methodx_1c_um-nylon12-cf-175_0.2mm.inst.cfg | 2 +- .../ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm.inst.cfg | 2 +- .../ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm.inst.cfg | 2 +- .../um_methodx_2xa_um-rapidrinse-175_0.2mm.inst.cfg | 2 +- .../ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm.inst.cfg | 2 +- .../ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg | 2 +- .../um_methodx_labs_um-abscf-175_0.2mm.inst.cfg | 2 +- .../um_methodx_labs_um-absr-175_0.2mm.inst.cfg | 2 +- .../ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm.inst.cfg | 2 +- .../um_methodx_labs_um-nylon12-cf-175_0.2mm.inst.cfg | 2 +- .../um_methodxl_1c_um-abscf-175_0.2mm.inst.cfg | 2 +- .../um_methodxl_1c_um-absr-175_0.2mm.inst.cfg | 2 +- .../ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm.inst.cfg | 2 +- .../um_methodxl_1c_um-nylon12-cf-175_0.2mm.inst.cfg | 2 +- .../um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg | 2 +- .../um_methodxl_1xa_um-asa-175_0.2mm.inst.cfg | 2 +- .../um_methodxl_2xa_um-rapidrinse-175_0.2mm.inst.cfg | 2 +- .../um_methodxl_2xa_um-sr30-175_0.2mm.inst.cfg | 2 +- .../um_methodxl_global_Draft_Quality.inst.cfg | 2 +- .../um_methodxl_labs_um-abscf-175_0.2mm.inst.cfg | 2 +- .../um_methodxl_labs_um-absr-175_0.2mm.inst.cfg | 2 +- .../um_methodxl_labs_um-asa-175_0.2mm.inst.cfg | 2 +- .../um_methodxl_labs_um-nylon12-cf-175_0.2mm.inst.cfg | 2 +- .../ultimaker_original/umo_global_Coarse_Quality.inst.cfg | 2 +- .../ultimaker_original/umo_global_Draft_Quality.inst.cfg | 2 +- .../ultimaker_original/umo_global_Extra_Coarse_Quality.inst.cfg | 2 +- .../quality/ultimaker_original/umo_global_Fast_Quality.inst.cfg | 2 +- .../quality/ultimaker_original/umo_global_High_Quality.inst.cfg | 2 +- .../ultimaker_original/umo_global_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.25_cpe_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.25_petg_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.25_pla_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.25_tough-pla_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_nylon_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.6_cffcpe_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.6_cffpa_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.6_gffcpe_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.6_gffpa_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_global_Draft_Quality.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_global_Fast_Quality.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_global_High_Quality.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_global_Normal_Quality.inst.cfg | 2 +- .../ultimaker_s3/um_s3_global_Superdraft_Quality.inst.cfg | 2 +- .../ultimaker_s3/um_s3_global_Verydraft_Quality.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.25_cpe_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.25_petg_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.25_pla_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.25_tough-pla_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_nylon_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.6_cffcpe_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.6_cffpa_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.6_gffcpe_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.6_gffpa_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_global_Draft_Quality.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_global_Fast_Quality.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_global_High_Quality.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_global_Normal_Quality.inst.cfg | 2 +- .../ultimaker_s5/um_s5_global_Superdraft_Quality.inst.cfg | 2 +- .../ultimaker_s5/um_s5_global_Verydraft_Quality.inst.cfg | 2 +- .../abs/nozzle_0_30/abs_nozzle_0.30_layer_0.10.inst.cfg | 2 +- .../abs/nozzle_0_30/abs_nozzle_0.30_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_30/abs_nozzle_0.30_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_30/abs_nozzle_0.30_layer_0.25.inst.cfg | 2 +- .../abs/nozzle_0_40/abs_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../abs/nozzle_0_40/abs_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_40/abs_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_40/abs_nozzle_0.40_layer_0.25.inst.cfg | 2 +- .../abs/nozzle_0_40/abs_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../abs/nozzle_0_50/abs_nozzle_0.50_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_50/abs_nozzle_0.50_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_50/abs_nozzle_0.50_layer_0.25.inst.cfg | 2 +- .../abs/nozzle_0_50/abs_nozzle_0.50_layer_0.30.inst.cfg | 2 +- .../abs/nozzle_0_50/abs_nozzle_0.50_layer_0.35.inst.cfg | 2 +- .../hips/nozzle_0_30/hips_nozzle_0.30_layer_0.10.inst.cfg | 2 +- .../hips/nozzle_0_30/hips_nozzle_0.30_layer_0.15.inst.cfg | 2 +- .../hips/nozzle_0_30/hips_nozzle_0.30_layer_0.20.inst.cfg | 2 +- .../hips/nozzle_0_30/hips_nozzle_0.30_layer_0.25.inst.cfg | 2 +- .../hips/nozzle_0_40/hips_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../hips/nozzle_0_40/hips_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../hips/nozzle_0_40/hips_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../hips/nozzle_0_40/hips_nozzle_0.40_layer_0.25.inst.cfg | 2 +- .../hips/nozzle_0_40/hips_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../hips/nozzle_0_50/hips_nozzle_0.50_layer_0.15.inst.cfg | 2 +- .../hips/nozzle_0_50/hips_nozzle_0.50_layer_0.20.inst.cfg | 2 +- .../hips/nozzle_0_50/hips_nozzle_0.50_layer_0.25.inst.cfg | 2 +- .../hips/nozzle_0_50/hips_nozzle_0.50_layer_0.30.inst.cfg | 2 +- .../hips/nozzle_0_50/hips_nozzle_0.50_layer_0.35.inst.cfg | 2 +- resources/quality/uni_base/layer_0.05.inst.cfg | 2 +- resources/quality/uni_base/layer_0.10.inst.cfg | 2 +- resources/quality/uni_base/layer_0.15.inst.cfg | 2 +- resources/quality/uni_base/layer_0.20.inst.cfg | 2 +- resources/quality/uni_base/layer_0.25.inst.cfg | 2 +- resources/quality/uni_base/layer_0.30.inst.cfg | 2 +- resources/quality/uni_base/layer_0.35.inst.cfg | 2 +- resources/quality/uni_base/layer_0.40.inst.cfg | 2 +- .../petg/nozzle_0_30/petg_nozzle_0.30_layer_0.10.inst.cfg | 2 +- .../petg/nozzle_0_30/petg_nozzle_0.30_layer_0.15.inst.cfg | 2 +- .../petg/nozzle_0_30/petg_nozzle_0.30_layer_0.20.inst.cfg | 2 +- .../petg/nozzle_0_30/petg_nozzle_0.30_layer_0.25.inst.cfg | 2 +- .../petg/nozzle_0_40/petg_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../petg/nozzle_0_40/petg_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../petg/nozzle_0_40/petg_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../petg/nozzle_0_40/petg_nozzle_0.40_layer_0.25.inst.cfg | 2 +- .../petg/nozzle_0_40/petg_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../petg/nozzle_0_50/petg_nozzle_0.50_layer_0.15.inst.cfg | 2 +- .../petg/nozzle_0_50/petg_nozzle_0.50_layer_0.20.inst.cfg | 2 +- .../petg/nozzle_0_50/petg_nozzle_0.50_layer_0.25.inst.cfg | 2 +- .../petg/nozzle_0_50/petg_nozzle_0.50_layer_0.30.inst.cfg | 2 +- .../petg/nozzle_0_50/petg_nozzle_0.50_layer_0.35.inst.cfg | 2 +- .../pla/nozzle_0_30/pla_nozzle_0.30_layer_0.10.inst.cfg | 2 +- .../pla/nozzle_0_30/pla_nozzle_0.30_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_30/pla_nozzle_0.30_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_30/pla_nozzle_0.30_layer_0.25.inst.cfg | 2 +- .../pla/nozzle_0_40/pla_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../pla/nozzle_0_40/pla_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_40/pla_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_40/pla_nozzle_0.40_layer_0.25.inst.cfg | 2 +- .../pla/nozzle_0_40/pla_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_50/pla_nozzle_0.50_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_50/pla_nozzle_0.50_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_50/pla_nozzle_0.50_layer_0.25.inst.cfg | 2 +- .../pla/nozzle_0_50/pla_nozzle_0.50_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_50/pla_nozzle_0.50_layer_0.35.inst.cfg | 2 +- .../vertex_delta_k8800/k8800_ABS_Extreme_Quality.inst.cfg | 2 +- .../quality/vertex_delta_k8800/k8800_ABS_High_Quality.inst.cfg | 2 +- .../vertex_delta_k8800/k8800_ABS_Normal_Quality.inst.cfg | 2 +- .../vertex_delta_k8800/k8800_Global_Extreme_Quality.inst.cfg | 2 +- .../vertex_delta_k8800/k8800_Global_High_Quality.inst.cfg | 2 +- .../vertex_delta_k8800/k8800_Global_Normal_Quality.inst.cfg | 2 +- .../vertex_delta_k8800/k8800_PET_Extreme_Quality.inst.cfg | 2 +- .../quality/vertex_delta_k8800/k8800_PET_High_Quality.inst.cfg | 2 +- .../vertex_delta_k8800/k8800_PET_Normal_Quality.inst.cfg | 2 +- .../vertex_delta_k8800/k8800_PLA_Extreme_Quality.inst.cfg | 2 +- .../quality/vertex_delta_k8800/k8800_PLA_High_Quality.inst.cfg | 2 +- .../vertex_delta_k8800/k8800_PLA_Normal_Quality.inst.cfg | 2 +- .../vertex_delta_k8800/k8800_TPU_Extreme_Quality.inst.cfg | 2 +- .../quality/vertex_delta_k8800/k8800_TPU_High_Quality.inst.cfg | 2 +- .../vertex_delta_k8800/k8800_TPU_Normal_Quality.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.2_ABS_super.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.2_ABS_ultra.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.2_PETG_super.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.2_PETG_ultra.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.2_PLA_super.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.2_PLA_ultra.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.4_ABS_adaptive.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.4_ABS_low.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.4_ABS_standard.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.4_ABS_super.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.4_PETG_adaptive.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.4_PETG_low.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.4_PETG_standard.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.4_PETG_super.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.4_PLA_adaptive.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.4_PLA_low.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.4_PLA_standard.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.4_PLA_super.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.4_TPU_adaptive.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.4_TPU_standard.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.4_TPU_super.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.6_ABS_standard.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.6_PETG_standard.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.6_PLA_draft.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.6_PLA_low.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.6_PLA_standard.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.6_TPU_standard.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.8_ABS_draft.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.8_PETG_draft.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.8_PLA_draft.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.8_TPU_draft.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_global_adaptive.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_global_draft.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_global_low.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_global_standard.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_global_super.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_global_ultra.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.2_ABS_super.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.2_ABS_ultra.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.2_PETG_super.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.2_PETG_ultra.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.2_PLA_super.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.2_PLA_ultra.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.4_ABS_adaptive.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.4_ABS_low.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.4_ABS_standard.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.4_ABS_super.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.4_PETG_adaptive.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.4_PETG_low.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.4_PETG_standard.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.4_PETG_super.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.4_PLA_adaptive.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.4_PLA_low.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.4_PLA_standard.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.4_PLA_super.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.4_TPU_adaptive.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.4_TPU_standard.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.4_TPU_super.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.6_ABS_standard.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.6_PETG_standard.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.6_PLA_draft.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.6_PLA_low.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.6_PLA_standard.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.6_TPU_standard.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.8_ABS_draft.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.8_PETG_draft.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.8_PLA_draft.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.8_TPU_draft.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_global_adaptive.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_global_draft.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_global_low.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_global_standard.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_global_super.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_global_ultra.inst.cfg | 2 +- resources/quality/volumic/sh65_coarse.inst.cfg | 2 +- resources/quality/volumic/sh65_draft.inst.cfg | 2 +- resources/quality/volumic/sh65_extra_coarse.inst.cfg | 2 +- resources/quality/volumic/sh65_fast.inst.cfg | 2 +- resources/quality/volumic/sh65_high.inst.cfg | 2 +- resources/quality/volumic/sh65_normal.inst.cfg | 2 +- resources/quality/volumic/stream20dual_mk2_coarse.inst.cfg | 2 +- resources/quality/volumic/stream20dual_mk2_draft.inst.cfg | 2 +- .../quality/volumic/stream20dual_mk2_extra_coarse.inst.cfg | 2 +- resources/quality/volumic/stream20dual_mk2_fast.inst.cfg | 2 +- resources/quality/volumic/stream20dual_mk2_high.inst.cfg | 2 +- resources/quality/volumic/stream20dual_mk2_normal.inst.cfg | 2 +- resources/quality/volumic/stream20pro_mk2_coarse.inst.cfg | 2 +- resources/quality/volumic/stream20pro_mk2_draft.inst.cfg | 2 +- resources/quality/volumic/stream20pro_mk2_extra_coarse.inst.cfg | 2 +- resources/quality/volumic/stream20pro_mk2_fast.inst.cfg | 2 +- resources/quality/volumic/stream20pro_mk2_high.inst.cfg | 2 +- resources/quality/volumic/stream20pro_mk2_normal.inst.cfg | 2 +- resources/quality/volumic/stream30dual_mk2_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30dual_mk2_draft.inst.cfg | 2 +- .../quality/volumic/stream30dual_mk2_extra_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30dual_mk2_fast.inst.cfg | 2 +- resources/quality/volumic/stream30dual_mk2_high.inst.cfg | 2 +- resources/quality/volumic/stream30dual_mk2_normal.inst.cfg | 2 +- resources/quality/volumic/stream30mk3_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30mk3_draft.inst.cfg | 2 +- resources/quality/volumic/stream30mk3_extra_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30mk3_fast.inst.cfg | 2 +- resources/quality/volumic/stream30mk3_high.inst.cfg | 2 +- resources/quality/volumic/stream30mk3_normal.inst.cfg | 2 +- resources/quality/volumic/stream30pro_mk2_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30pro_mk2_draft.inst.cfg | 2 +- resources/quality/volumic/stream30pro_mk2_extra_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30pro_mk2_fast.inst.cfg | 2 +- resources/quality/volumic/stream30pro_mk2_high.inst.cfg | 2 +- resources/quality/volumic/stream30pro_mk2_normal.inst.cfg | 2 +- resources/quality/volumic/stream30ultra_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30ultra_draft.inst.cfg | 2 +- resources/quality/volumic/stream30ultra_extra_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30ultra_fast.inst.cfg | 2 +- resources/quality/volumic/stream30ultra_high.inst.cfg | 2 +- resources/quality/volumic/stream30ultra_normal.inst.cfg | 2 +- resources/quality/volumic/stream30ultrasc2_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30ultrasc2_draft.inst.cfg | 2 +- .../quality/volumic/stream30ultrasc2_extra_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30ultrasc2_fast.inst.cfg | 2 +- resources/quality/volumic/stream30ultrasc2_high.inst.cfg | 2 +- resources/quality/volumic/stream30ultrasc2_normal.inst.cfg | 2 +- resources/quality/volumic/stream30ultrasc_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30ultrasc_draft.inst.cfg | 2 +- resources/quality/volumic/stream30ultrasc_extra_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30ultrasc_fast.inst.cfg | 2 +- resources/quality/volumic/stream30ultrasc_high.inst.cfg | 2 +- resources/quality/volumic/stream30ultrasc_normal.inst.cfg | 2 +- .../quality/voron2/voron2_global_extrafast_quality.inst.cfg | 2 +- .../quality/voron2/voron2_global_extrafine_quality.inst.cfg | 2 +- resources/quality/voron2/voron2_global_fast_quality.inst.cfg | 2 +- resources/quality/voron2/voron2_global_fine_quality.inst.cfg | 2 +- resources/quality/voron2/voron2_global_normal_quality.inst.cfg | 2 +- resources/quality/voron2/voron2_global_sprint_quality.inst.cfg | 2 +- .../quality/voron2/voron2_global_supersprint_quality.inst.cfg | 2 +- .../quality/voron2/voron2_global_ultrasprint_quality.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_ABS_extrafine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_ABS_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_ABS_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_ABS_normal.inst.cfg | 2 +- .../quality/voron2/voron2_v6_0.25_Nylon_extrafine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_Nylon_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_Nylon_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_Nylon_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PC_extrafine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PC_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PC_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PC_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PETG_extrafine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PETG_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PETG_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PETG_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PLA_extrafine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PLA_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PLA_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PLA_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_ABS_extrafine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_ABS_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_ABS_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_ABS_normal.inst.cfg | 2 +- .../quality/voron2/voron2_v6_0.30_Nylon_extrafine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_Nylon_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_Nylon_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_Nylon_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PC_extrafine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PC_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PC_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PC_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PETG_extrafine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PETG_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PETG_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PETG_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PLA_extrafine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PLA_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PLA_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PLA_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_ABS_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_ABS_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_ABS_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_Nylon_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_Nylon_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_Nylon_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_PC_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_PC_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_PC_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_PETG_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_PETG_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_PETG_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_PLA_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_PLA_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_PLA_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_ABS_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_ABS_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_ABS_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_ABS_normal.inst.cfg | 2 +- .../quality/voron2/voron2_v6_0.40_Nylon_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_Nylon_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_Nylon_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_Nylon_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PC_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PC_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PC_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PC_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PETG_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PETG_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PETG_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PETG_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PLA_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PLA_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PLA_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PLA_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_ABS_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_ABS_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_ABS_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_ABS_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_v6_0.50_Nylon_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_Nylon_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_Nylon_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_Nylon_sprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PC_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PC_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PC_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PC_sprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PETG_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PETG_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PETG_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PETG_sprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PLA_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PLA_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PLA_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PLA_sprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_ABS_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_ABS_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_ABS_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_v6_0.60_Nylon_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_Nylon_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_Nylon_sprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_PC_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_PC_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_PC_sprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_PETG_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_PETG_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_PETG_sprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_PLA_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_PLA_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_PLA_sprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.80_ABS_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.80_ABS_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_v6_0.80_ABS_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_v6_0.80_Nylon_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.80_Nylon_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_v6_0.80_Nylon_supersprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.80_PC_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.80_PC_sprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.80_PC_supersprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.80_PETG_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.80_PETG_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_v6_0.80_PETG_supersprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.80_PLA_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.80_PLA_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_v6_0.80_PLA_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.40_ABS_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_0.40_ABS_fast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.40_ABS_normal.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.40_Nylon_extrafast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.40_Nylon_fast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.40_Nylon_normal.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.40_PC_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_0.40_PC_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_0.40_PC_normal.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.40_PETG_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_0.40_PETG_fast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.40_PETG_normal.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.40_PLA_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_0.40_PLA_fast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.40_PLA_normal.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.60_ABS_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_0.60_ABS_fast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.60_ABS_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.60_Nylon_extrafast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.60_Nylon_fast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.60_Nylon_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.60_PC_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_0.60_PC_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_0.60_PC_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.60_PETG_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_0.60_PETG_fast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.60_PETG_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.60_PLA_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_0.60_PLA_fast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.60_PLA_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_ABS_extrafast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_ABS_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_ABS_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_Nylon_extrafast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_Nylon_sprint.inst.cfg | 2 +- .../voron2/voron2_volcano_0.80_Nylon_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_PC_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_0.80_PC_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_PC_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_PETG_extrafast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_PETG_sprint.inst.cfg | 2 +- .../voron2/voron2_volcano_0.80_PETG_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_PLA_extrafast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_PLA_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_PLA_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.00_ABS_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.00_ABS_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.00_ABS_ultrasprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.00_Nylon_sprint.inst.cfg | 2 +- .../voron2/voron2_volcano_1.00_Nylon_supersprint.inst.cfg | 2 +- .../voron2/voron2_volcano_1.00_Nylon_ultrasprint.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_1.00_PC_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.00_PC_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.00_PC_ultrasprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.00_PETG_sprint.inst.cfg | 2 +- .../voron2/voron2_volcano_1.00_PETG_supersprint.inst.cfg | 2 +- .../voron2/voron2_volcano_1.00_PETG_ultrasprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.00_PLA_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.00_PLA_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.00_PLA_ultrasprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.20_ABS_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.20_ABS_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.20_ABS_ultrasprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.20_Nylon_sprint.inst.cfg | 2 +- .../voron2/voron2_volcano_1.20_Nylon_supersprint.inst.cfg | 2 +- .../voron2/voron2_volcano_1.20_Nylon_ultrasprint.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_1.20_PC_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.20_PC_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.20_PC_ultrasprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.20_PETG_sprint.inst.cfg | 2 +- .../voron2/voron2_volcano_1.20_PETG_supersprint.inst.cfg | 2 +- .../voron2/voron2_volcano_1.20_PETG_ultrasprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.20_PLA_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.20_PLA_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.20_PLA_ultrasprint.inst.cfg | 2 +- resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_super.inst.cfg | 2 +- resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_ultra.inst.cfg | 2 +- .../quality/vzbot/base/ABS/vzbot_0.3_ABS_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_low.inst.cfg | 2 +- .../quality/vzbot/base/ABS/vzbot_0.3_ABS_standard.inst.cfg | 2 +- resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_super.inst.cfg | 2 +- .../quality/vzbot/base/ABS/vzbot_0.4_ABS_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_low.inst.cfg | 2 +- .../quality/vzbot/base/ABS/vzbot_0.4_ABS_standard.inst.cfg | 2 +- resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_super.inst.cfg | 2 +- .../quality/vzbot/base/ABS/vzbot_0.5_ABS_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_low.inst.cfg | 2 +- .../quality/vzbot/base/ABS/vzbot_0.5_ABS_standard.inst.cfg | 2 +- resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_super.inst.cfg | 2 +- .../quality/vzbot/base/ABS/vzbot_0.6_ABS_standard.inst.cfg | 2 +- resources/quality/vzbot/base/ABS/vzbot_0.8_ABS_draft.inst.cfg | 2 +- resources/quality/vzbot/base/ABS/vzbot_1.0_ABS_draft.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.2_PC_super.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.2_PC_ultra.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.3_PC_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.3_PC_low.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.3_PC_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.3_PC_super.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.4_PC_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.4_PC_low.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.4_PC_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.4_PC_super.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.5_PC_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.5_PC_low.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.5_PC_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.5_PC_super.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.6_PC_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.8_PC_draft.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_1.0_PC_draft.inst.cfg | 2 +- resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_super.inst.cfg | 2 +- resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_ultra.inst.cfg | 2 +- .../quality/vzbot/base/PETG/vzbot_0.3_PETG_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_low.inst.cfg | 2 +- .../quality/vzbot/base/PETG/vzbot_0.3_PETG_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_super.inst.cfg | 2 +- .../quality/vzbot/base/PETG/vzbot_0.4_PETG_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_low.inst.cfg | 2 +- .../quality/vzbot/base/PETG/vzbot_0.4_PETG_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_super.inst.cfg | 2 +- .../quality/vzbot/base/PETG/vzbot_0.5_PETG_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_low.inst.cfg | 2 +- .../quality/vzbot/base/PETG/vzbot_0.5_PETG_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_super.inst.cfg | 2 +- .../quality/vzbot/base/PETG/vzbot_0.6_PETG_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PETG/vzbot_0.8_PETG_draft.inst.cfg | 2 +- resources/quality/vzbot/base/PETG/vzbot_1.0_PETG_draft.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_super.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_ultra.inst.cfg | 2 +- .../quality/vzbot/base/PLA/vzbot_0.3_PLA_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_low.inst.cfg | 2 +- .../quality/vzbot/base/PLA/vzbot_0.3_PLA_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_super.inst.cfg | 2 +- .../quality/vzbot/base/PLA/vzbot_0.4_PLA_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_low.inst.cfg | 2 +- .../quality/vzbot/base/PLA/vzbot_0.4_PLA_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_super.inst.cfg | 2 +- .../quality/vzbot/base/PLA/vzbot_0.5_PLA_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_low.inst.cfg | 2 +- .../quality/vzbot/base/PLA/vzbot_0.5_PLA_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_super.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_draft.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_low.inst.cfg | 2 +- .../quality/vzbot/base/PLA/vzbot_0.6_PLA_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_0.8_PLA_draft.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_1.0_PLA_draft.inst.cfg | 2 +- resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_super.inst.cfg | 2 +- resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_ultra.inst.cfg | 2 +- .../quality/vzbot/base/PVA/vzbot_0.3_PVA_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_low.inst.cfg | 2 +- .../quality/vzbot/base/PVA/vzbot_0.3_PVA_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_super.inst.cfg | 2 +- .../quality/vzbot/base/PVA/vzbot_0.4_PVA_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_low.inst.cfg | 2 +- .../quality/vzbot/base/PVA/vzbot_0.4_PVA_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_super.inst.cfg | 2 +- .../quality/vzbot/base/PVA/vzbot_0.5_PVA_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_low.inst.cfg | 2 +- .../quality/vzbot/base/PVA/vzbot_0.5_PVA_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_super.inst.cfg | 2 +- .../quality/vzbot/base/PVA/vzbot_0.6_PVA_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PVA/vzbot_0.8_PVA_draft.inst.cfg | 2 +- resources/quality/vzbot/base/PVA/vzbot_1.0_PVA_draft.inst.cfg | 2 +- .../quality/vzbot/base/TPU/vzbot_0.3_TPU_adaptive.inst.cfg | 2 +- .../quality/vzbot/base/TPU/vzbot_0.3_TPU_standard.inst.cfg | 2 +- resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_super.inst.cfg | 2 +- .../quality/vzbot/base/TPU/vzbot_0.4_TPU_adaptive.inst.cfg | 2 +- .../quality/vzbot/base/TPU/vzbot_0.4_TPU_standard.inst.cfg | 2 +- resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_super.inst.cfg | 2 +- .../quality/vzbot/base/TPU/vzbot_0.5_TPU_adaptive.inst.cfg | 2 +- .../quality/vzbot/base/TPU/vzbot_0.5_TPU_standard.inst.cfg | 2 +- resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_super.inst.cfg | 2 +- .../quality/vzbot/base/TPU/vzbot_0.6_TPU_standard.inst.cfg | 2 +- resources/quality/vzbot/base/TPU/vzbot_0.8_TPU_draft.inst.cfg | 2 +- resources/quality/vzbot/base/TPU/vzbot_1.0_TPU_draft.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.2_nylon_super.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.2_nylon_ultra.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.3_nylon_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_low.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.3_nylon_standard.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.3_nylon_super.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.4_nylon_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_low.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.4_nylon_standard.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.4_nylon_super.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.5_nylon_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_low.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.5_nylon_standard.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.5_nylon_super.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.6_nylon_standard.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.8_nylon_draft.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_1.0_nylon_draft.inst.cfg | 2 +- resources/quality/vzbot/base/vzbot_global_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/vzbot_global_draft.inst.cfg | 2 +- resources/quality/vzbot/base/vzbot_global_low.inst.cfg | 2 +- resources/quality/vzbot/base/vzbot_global_standard.inst.cfg | 2 +- resources/quality/vzbot/base/vzbot_global_super.inst.cfg | 2 +- resources/quality/vzbot/base/vzbot_global_ultra.inst.cfg | 2 +- .../weedo_x40_0.4_extrudr_GreenTECPro_Black_Draft.inst.cfg | 2 +- .../weedo_x40_0.4_extrudr_GreenTECPro_Black_Extra_Fine.inst.cfg | 2 +- .../weedo_x40_0.4_extrudr_GreenTECPro_Black_Fine.inst.cfg | 2 +- .../weedo_x40_0.4_extrudr_GreenTECPro_Black_Normal.inst.cfg | 2 +- .../Verbatim/weedo_x40_0.4_Verbatim_BVOH_Draft.inst.cfg | 2 +- .../Verbatim/weedo_x40_0.4_Verbatim_BVOH_Extra_Fine.inst.cfg | 2 +- .../Verbatim/weedo_x40_0.4_Verbatim_BVOH_Fine.inst.cfg | 2 +- .../Verbatim/weedo_x40_0.4_Verbatim_BVOH_Normal.inst.cfg | 2 +- .../Verbatim/weedo_x40_0.6_Verbatim_BVOH_Coarse.inst.cfg | 2 +- .../Verbatim/weedo_x40_0.6_Verbatim_BVOH_Draft.inst.cfg | 2 +- .../Verbatim/weedo_x40_0.6_Verbatim_BVOH_Fine.inst.cfg | 2 +- .../Verbatim/weedo_x40_0.6_Verbatim_BVOH_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_ABS_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_ABS_Extra_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_ABS_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_ABS_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_ASA_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_ASA_Extra_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_ASA_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_ASA_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_BVOH_Extra_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Fine.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_BVOH_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_CPE_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_CPE_Extra_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_CPE_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_CPE_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_HIPS_Extra_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Fine.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_HIPS_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_PETG_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_PETG_Extra_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_PETG_Fine.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_PETG_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_PLA_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_PLA_Extra_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_PLA_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_PLA_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_PVA_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_PVA_Extra_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_PVA_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_PVA_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_TPU_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_TPU_Extra_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_TPU_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_TPU_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_ABS_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_ABS_Draft.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_ABS_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_ABS_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_ASA_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_ASA_Draft.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_ASA_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_ASA_Normal.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.6_generic_BVOH_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Draft.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Fine.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.6_generic_BVOH_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_CPE_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_CPE_Draft.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_CPE_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_CPE_Normal.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.6_generic_HIPS_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Draft.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Fine.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.6_generic_HIPS_Normal.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.6_generic_PETG_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_PETG_Draft.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_PETG_Fine.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.6_generic_PETG_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_PLA_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_PLA_Draft.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_PLA_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_PLA_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_PVA_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_PVA_Draft.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_PVA_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_PVA_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_TPU_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_TPU_Draft.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_TPU_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_TPU_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_ABS_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_ABS_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_ABS_Extra_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_ABS_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_ASA_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_ASA_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_ASA_Extra_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_ASA_Normal.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_BVOH_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_BVOH_Extra_Coarse.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_BVOH_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_CPE_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_CPE_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_CPE_Extra_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_CPE_Normal.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_HIPS_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_HIPS_Extra_Coarse.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_HIPS_Normal.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_PETG_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_PETG_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_PETG_Extra_Coarse.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_PETG_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_PLA_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_PLA_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_PLA_Extra_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_PLA_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_PVA_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_PVA_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_PVA_Extra_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_PVA_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_TPU_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_TPU_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_TPU_Extra_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_TPU_Normal.inst.cfg | 2 +- resources/quality/weedo_x40/weedo_x40_global_Coarse.inst.cfg | 2 +- resources/quality/weedo_x40/weedo_x40_global_Draft.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_global_Extra_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_global_Extra_Fine.inst.cfg | 2 +- resources/quality/weedo_x40/weedo_x40_global_Fine.inst.cfg | 2 +- resources/quality/weedo_x40/weedo_x40_global_Normal.inst.cfg | 2 +- ...xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_fine.inst.cfg | 2 +- ...xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_normal.inst.cfg | 2 +- ...inting_da_vinci_jr_pro_xplus_copper_0.40_abs_coarse.inst.cfg | 2 +- ...rinting_da_vinci_jr_pro_xplus_copper_0.40_abs_draft.inst.cfg | 2 +- ...printing_da_vinci_jr_pro_xplus_copper_0.40_abs_fine.inst.cfg | 2 +- ...inting_da_vinci_jr_pro_xplus_copper_0.40_abs_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_abs_coarse.inst.cfg | 2 +- .../abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_draft.inst.cfg | 2 +- .../abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_abs_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_abs_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_abs_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_abs_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_abs_normal.inst.cfg | 2 +- ...inting_da_vinci_1p0_pro_copper_0.40_antibact_coarse.inst.cfg | 2 +- ...rinting_da_vinci_1p0_pro_copper_0.40_antibact_draft.inst.cfg | 2 +- ...printing_da_vinci_1p0_pro_copper_0.40_antibact_fine.inst.cfg | 2 +- ...inting_da_vinci_1p0_pro_copper_0.40_antibact_normal.inst.cfg | 2 +- ...ng_da_vinci_jr_1p0a_pro_copper_0.40_antibact_coarse.inst.cfg | 2 +- ...ing_da_vinci_jr_1p0a_pro_copper_0.40_antibact_draft.inst.cfg | 2 +- ...ting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_fine.inst.cfg | 2 +- ...ng_da_vinci_jr_1p0a_pro_copper_0.40_antibact_normal.inst.cfg | 2 +- ..._da_vinci_jr_pro_xeplus_copper_0.40_antibact_coarse.inst.cfg | 2 +- ...g_da_vinci_jr_pro_xeplus_copper_0.40_antibact_draft.inst.cfg | 2 +- ...ng_da_vinci_jr_pro_xeplus_copper_0.40_antibact_fine.inst.cfg | 2 +- ..._da_vinci_jr_pro_xeplus_copper_0.40_antibact_normal.inst.cfg | 2 +- ...g_da_vinci_jr_pro_xplus_copper_0.40_antibact_coarse.inst.cfg | 2 +- ...ng_da_vinci_jr_pro_xplus_copper_0.40_antibact_draft.inst.cfg | 2 +- ...ing_da_vinci_jr_pro_xplus_copper_0.40_antibact_fine.inst.cfg | 2 +- ...g_da_vinci_jr_pro_xplus_copper_0.40_antibact_normal.inst.cfg | 2 +- ...zprinting_da_vinci_jr_w_pro_ss_0.40_antibact_coarse.inst.cfg | 2 +- ...yzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_draft.inst.cfg | 2 +- ...xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_fine.inst.cfg | 2 +- ...zprinting_da_vinci_jr_w_pro_ss_0.40_antibact_normal.inst.cfg | 2 +- ...yzprinting_da_vinci_pro_evo_hs_0.40_antibact_coarse.inst.cfg | 2 +- ...xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_fine.inst.cfg | 2 +- ...yzprinting_da_vinci_pro_evo_hs_0.40_antibact_normal.inst.cfg | 2 +- ...printing_da_vinci_super_copper_0.40_antibact_coarse.inst.cfg | 2 +- ...zprinting_da_vinci_super_copper_0.40_antibact_draft.inst.cfg | 2 +- ...yzprinting_da_vinci_super_copper_0.40_antibact_fine.inst.cfg | 2 +- ...printing_da_vinci_super_copper_0.40_antibact_normal.inst.cfg | 2 +- ...ng_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_coarse.inst.cfg | 2 +- ...ing_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_draft.inst.cfg | 2 +- ...ting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_fine.inst.cfg | 2 +- ...ng_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_normal.inst.cfg | 2 +- ..._da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_coarse.inst.cfg | 2 +- ...g_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_draft.inst.cfg | 2 +- ...ng_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_fine.inst.cfg | 2 +- ..._da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_normal.inst.cfg | 2 +- ...g_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_coarse.inst.cfg | 2 +- ...ng_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_draft.inst.cfg | 2 +- ...ing_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_fine.inst.cfg | 2 +- ...g_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_normal.inst.cfg | 2 +- ...nting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_coarse.inst.cfg | 2 +- ...inting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_draft.inst.cfg | 2 +- ...rinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_fine.inst.cfg | 2 +- ...nting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_normal.inst.cfg | 2 +- ...inting_da_vinci_pro_evo_hs_0.40_carbon_fiber_coarse.inst.cfg | 2 +- ...rinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_draft.inst.cfg | 2 +- ...printing_da_vinci_pro_evo_hs_0.40_carbon_fiber_fine.inst.cfg | 2 +- ...inting_da_vinci_pro_evo_hs_0.40_carbon_fiber_normal.inst.cfg | 2 +- ...printing_da_vinci_super_hs_0.40_carbon_fiber_coarse.inst.cfg | 2 +- ...zprinting_da_vinci_super_hs_0.40_carbon_fiber_draft.inst.cfg | 2 +- ...yzprinting_da_vinci_super_hs_0.40_carbon_fiber_fine.inst.cfg | 2 +- ...printing_da_vinci_super_hs_0.40_carbon_fiber_normal.inst.cfg | 2 +- ...inci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_coarse.inst.cfg | 2 +- ...vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_draft.inst.cfg | 2 +- ..._vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_fine.inst.cfg | 2 +- ...inci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_normal.inst.cfg | 2 +- ...ng_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_coarse.inst.cfg | 2 +- ...ing_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_draft.inst.cfg | 2 +- ...ting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_fine.inst.cfg | 2 +- ...ng_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_normal.inst.cfg | 2 +- ...g_da_vinci_super_copper_0.40_colorinkjet_pla_coarse.inst.cfg | 2 +- ...ng_da_vinci_super_copper_0.40_colorinkjet_pla_draft.inst.cfg | 2 +- ...ing_da_vinci_super_copper_0.40_colorinkjet_pla_fine.inst.cfg | 2 +- ...g_da_vinci_super_copper_0.40_colorinkjet_pla_normal.inst.cfg | 2 +- ...printing_da_vinci_super_copper_0.40_flexible_coarse.inst.cfg | 2 +- ...zprinting_da_vinci_super_copper_0.40_flexible_draft.inst.cfg | 2 +- ...yzprinting_da_vinci_super_copper_0.40_flexible_fine.inst.cfg | 2 +- ...printing_da_vinci_super_copper_0.40_flexible_normal.inst.cfg | 2 +- ...inting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_coarse.inst.cfg | 2 +- ...rinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_draft.inst.cfg | 2 +- ...printing_da_vinci_jr_1p0a_pro_hs_0.40_metallic_fine.inst.cfg | 2 +- ...inting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_normal.inst.cfg | 2 +- ...ting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_coarse.inst.cfg | 2 +- ...nting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_draft.inst.cfg | 2 +- ...inting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_fine.inst.cfg | 2 +- ...ting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_normal.inst.cfg | 2 +- ...nting_da_vinci_jr_pro_xplus_hs_0.40_metallic_coarse.inst.cfg | 2 +- ...inting_da_vinci_jr_pro_xplus_hs_0.40_metallic_draft.inst.cfg | 2 +- ...rinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_fine.inst.cfg | 2 +- ...nting_da_vinci_jr_pro_xplus_hs_0.40_metallic_normal.inst.cfg | 2 +- ...zprinting_da_vinci_jr_w_pro_hs_0.40_metallic_coarse.inst.cfg | 2 +- ...yzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_draft.inst.cfg | 2 +- ...xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_fine.inst.cfg | 2 +- ...zprinting_da_vinci_jr_w_pro_hs_0.40_metallic_normal.inst.cfg | 2 +- ...yzprinting_da_vinci_pro_evo_hs_0.40_metallic_coarse.inst.cfg | 2 +- ...xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_fine.inst.cfg | 2 +- ...yzprinting_da_vinci_pro_evo_hs_0.40_metallic_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_hs_0.40_metallic_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_hs_0.40_metallic_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_hs_0.40_metallic_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_hs_0.40_metallic_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_normal.inst.cfg | 2 +- ...xyzprinting_da_vinci_super_copper_0.40_nylon_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_nylon_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_nylon_fine.inst.cfg | 2 +- ...xyzprinting_da_vinci_super_copper_0.40_nylon_normal.inst.cfg | 2 +- ...printing_da_vinci_pro_evo_hsht_0.60_pahtcf15_coarse.inst.cfg | 2 +- ...zprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_draft.inst.cfg | 2 +- ...yzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_fine.inst.cfg | 2 +- ...printing_da_vinci_pro_evo_hsht_0.60_pahtcf15_normal.inst.cfg | 2 +- .../pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_coarse.inst.cfg | 2 +- .../pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_draft.inst.cfg | 2 +- .../pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_fine.inst.cfg | 2 +- .../pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_coarse.inst.cfg | 2 +- .../pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_draft.inst.cfg | 2 +- .../pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_normal.inst.cfg | 2 +- ...zprinting_da_vinci_pro_evo_hsht_0.60_petcf15_coarse.inst.cfg | 2 +- ...yzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_draft.inst.cfg | 2 +- ...xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_fine.inst.cfg | 2 +- ...zprinting_da_vinci_pro_evo_hsht_0.60_petcf15_normal.inst.cfg | 2 +- ...yzprinting_da_vinci_1p0_pro_copper_0.40_petg_coarse.inst.cfg | 2 +- ...xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_fine.inst.cfg | 2 +- ...yzprinting_da_vinci_1p0_pro_copper_0.40_petg_normal.inst.cfg | 2 +- ...inting_da_vinci_jr_1p0a_pro_copper_0.40_petg_coarse.inst.cfg | 2 +- ...rinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_draft.inst.cfg | 2 +- ...printing_da_vinci_jr_1p0a_pro_copper_0.40_petg_fine.inst.cfg | 2 +- ...inting_da_vinci_jr_1p0a_pro_copper_0.40_petg_normal.inst.cfg | 2 +- ...ting_da_vinci_jr_pro_xeplus_copper_0.40_petg_coarse.inst.cfg | 2 +- ...nting_da_vinci_jr_pro_xeplus_copper_0.40_petg_draft.inst.cfg | 2 +- ...inting_da_vinci_jr_pro_xeplus_copper_0.40_petg_fine.inst.cfg | 2 +- ...ting_da_vinci_jr_pro_xeplus_copper_0.40_petg_normal.inst.cfg | 2 +- ...nting_da_vinci_jr_pro_xplus_copper_0.40_petg_coarse.inst.cfg | 2 +- ...inting_da_vinci_jr_pro_xplus_copper_0.40_petg_draft.inst.cfg | 2 +- ...rinting_da_vinci_jr_pro_xplus_copper_0.40_petg_fine.inst.cfg | 2 +- ...nting_da_vinci_jr_pro_xplus_copper_0.40_petg_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_petg_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_petg_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_petg_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_petg_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_petg_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_petg_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_petg_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_petg_normal.inst.cfg | 2 +- ...xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_fine.inst.cfg | 2 +- ...xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_normal.inst.cfg | 2 +- ...rinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_coarse.inst.cfg | 2 +- ...printing_da_vinci_jr_1p0a_pro_copper_0.40_pla_draft.inst.cfg | 2 +- ...zprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_fine.inst.cfg | 2 +- ...rinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_normal.inst.cfg | 2 +- ...nting_da_vinci_jr_pro_xeplus_copper_0.40_pla_coarse.inst.cfg | 2 +- ...inting_da_vinci_jr_pro_xeplus_copper_0.40_pla_draft.inst.cfg | 2 +- ...rinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_fine.inst.cfg | 2 +- ...nting_da_vinci_jr_pro_xeplus_copper_0.40_pla_normal.inst.cfg | 2 +- ...inting_da_vinci_jr_pro_xplus_copper_0.40_pla_coarse.inst.cfg | 2 +- ...rinting_da_vinci_jr_pro_xplus_copper_0.40_pla_draft.inst.cfg | 2 +- ...printing_da_vinci_jr_pro_xplus_copper_0.40_pla_fine.inst.cfg | 2 +- ...inting_da_vinci_jr_pro_xplus_copper_0.40_pla_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_draft.inst.cfg | 2 +- .../pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_pla_coarse.inst.cfg | 2 +- .../pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_draft.inst.cfg | 2 +- .../pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_pla_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_pla_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_pla_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_pla_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_pla_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_normal.inst.cfg | 2 +- ...nting_da_vinci_1p0_pro_copper_0.40_tough_pla_coarse.inst.cfg | 2 +- ...inting_da_vinci_1p0_pro_copper_0.40_tough_pla_draft.inst.cfg | 2 +- ...rinting_da_vinci_1p0_pro_copper_0.40_tough_pla_fine.inst.cfg | 2 +- ...nting_da_vinci_1p0_pro_copper_0.40_tough_pla_normal.inst.cfg | 2 +- ...g_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_coarse.inst.cfg | 2 +- ...ng_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_draft.inst.cfg | 2 +- ...ing_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_fine.inst.cfg | 2 +- ...g_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_normal.inst.cfg | 2 +- ...da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_coarse.inst.cfg | 2 +- ..._da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_draft.inst.cfg | 2 +- ...g_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_fine.inst.cfg | 2 +- ...da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_normal.inst.cfg | 2 +- ..._da_vinci_jr_pro_xplus_copper_0.40_tough_pla_coarse.inst.cfg | 2 +- ...g_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_draft.inst.cfg | 2 +- ...ng_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_fine.inst.cfg | 2 +- ..._da_vinci_jr_pro_xplus_copper_0.40_tough_pla_normal.inst.cfg | 2 +- ...printing_da_vinci_jr_w_pro_ss_0.40_tough_pla_coarse.inst.cfg | 2 +- ...zprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_draft.inst.cfg | 2 +- ...yzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_fine.inst.cfg | 2 +- ...printing_da_vinci_jr_w_pro_ss_0.40_tough_pla_normal.inst.cfg | 2 +- ...zprinting_da_vinci_pro_evo_hs_0.40_tough_pla_coarse.inst.cfg | 2 +- ...yzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_draft.inst.cfg | 2 +- ...xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_fine.inst.cfg | 2 +- ...zprinting_da_vinci_pro_evo_hs_0.40_tough_pla_normal.inst.cfg | 2 +- ...rinting_da_vinci_super_copper_0.40_tough_pla_coarse.inst.cfg | 2 +- ...printing_da_vinci_super_copper_0.40_tough_pla_draft.inst.cfg | 2 +- ...zprinting_da_vinci_super_copper_0.40_tough_pla_fine.inst.cfg | 2 +- ...rinting_da_vinci_super_copper_0.40_tough_pla_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_coarse.inst.cfg | 2 +- .../tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_draft.inst.cfg | 2 +- .../tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_tpu_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_tpu_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_tpu_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_tpu_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_1p0_pro_global_0.10_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_1p0_pro_global_0.20_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_1p0_pro_global_0.30_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_1p0_pro_global_0.40_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_1p0a_pro_global_0.10_fine.inst.cfg | 2 +- ...xyzprinting_da_vinci_jr_1p0a_pro_global_0.20_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_1p0a_pro_global_0.30_draft.inst.cfg | 2 +- ...xyzprinting_da_vinci_jr_1p0a_pro_global_0.40_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xep_global_0.10_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xep_global_0.20_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xep_global_0.30_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xep_global_0.40_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xp_global_0.10_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xp_global_0.20_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xp_global_0.30_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xp_global_0.40_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_w_pro_global_0.10_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_w_pro_global_0.20_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_w_pro_global_0.30_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_w_pro_global_0.40_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_global_0.10_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_global_0.20_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_global_0.30_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_global_0.40_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_global_0.10_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_global_0.20_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_global_0.30_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_global_0.40_coarse.inst.cfg | 2 +- .../abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.05.inst.cfg | 2 +- .../abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.10.inst.cfg | 2 +- .../abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.05.inst.cfg | 2 +- .../abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.10.inst.cfg | 2 +- .../abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.10.inst.cfg | 2 +- .../abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.25.inst.cfg | 2 +- .../abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.10.inst.cfg | 2 +- .../abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.25.inst.cfg | 2 +- .../abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.25.inst.cfg | 2 +- .../abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.10.inst.cfg | 2 +- .../abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.25.inst.cfg | 2 +- .../abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.30.inst.cfg | 2 +- .../abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.35.inst.cfg | 2 +- .../abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.25.inst.cfg | 2 +- .../abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.30.inst.cfg | 2 +- .../abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.35.inst.cfg | 2 +- .../abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.25.inst.cfg | 2 +- .../abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.30.inst.cfg | 2 +- .../abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.35.inst.cfg | 2 +- .../abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.40.inst.cfg | 2 +- .../abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.25.inst.cfg | 2 +- .../abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.30.inst.cfg | 2 +- .../abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.35.inst.cfg | 2 +- .../abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.40.inst.cfg | 2 +- .../abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.25.inst.cfg | 2 +- .../abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.30.inst.cfg | 2 +- .../abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.35.inst.cfg | 2 +- .../abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.40.inst.cfg | 2 +- .../petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.05.inst.cfg | 2 +- .../petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.10.inst.cfg | 2 +- .../petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.15.inst.cfg | 2 +- .../petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.05.inst.cfg | 2 +- .../petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.10.inst.cfg | 2 +- .../petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.15.inst.cfg | 2 +- .../petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.20.inst.cfg | 2 +- .../petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.10.inst.cfg | 2 +- .../petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.15.inst.cfg | 2 +- .../petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.20.inst.cfg | 2 +- .../petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.25.inst.cfg | 2 +- .../petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.10.inst.cfg | 2 +- .../petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.15.inst.cfg | 2 +- .../petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.20.inst.cfg | 2 +- .../petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.25.inst.cfg | 2 +- .../petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.25.inst.cfg | 2 +- .../petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.10.inst.cfg | 2 +- .../petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.15.inst.cfg | 2 +- .../petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.20.inst.cfg | 2 +- .../petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.25.inst.cfg | 2 +- .../petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.30.inst.cfg | 2 +- .../petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.35.inst.cfg | 2 +- .../petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.15.inst.cfg | 2 +- .../petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.20.inst.cfg | 2 +- .../petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.25.inst.cfg | 2 +- .../petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.30.inst.cfg | 2 +- .../petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.35.inst.cfg | 2 +- .../petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.15.inst.cfg | 2 +- .../petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.20.inst.cfg | 2 +- .../petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.25.inst.cfg | 2 +- .../petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.30.inst.cfg | 2 +- .../petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.35.inst.cfg | 2 +- .../petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.40.inst.cfg | 2 +- .../petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.20.inst.cfg | 2 +- .../petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.25.inst.cfg | 2 +- .../petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.30.inst.cfg | 2 +- .../petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.35.inst.cfg | 2 +- .../petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.40.inst.cfg | 2 +- .../petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.25.inst.cfg | 2 +- .../petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.30.inst.cfg | 2 +- .../petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.35.inst.cfg | 2 +- .../petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.40.inst.cfg | 2 +- .../pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.05.inst.cfg | 2 +- .../pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.10.inst.cfg | 2 +- .../pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.05.inst.cfg | 2 +- .../pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.10.inst.cfg | 2 +- .../pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.10.inst.cfg | 2 +- .../pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.25.inst.cfg | 2 +- .../pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.10.inst.cfg | 2 +- .../pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.25.inst.cfg | 2 +- .../pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.25.inst.cfg | 2 +- .../pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.10.inst.cfg | 2 +- .../pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.25.inst.cfg | 2 +- .../pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.35.inst.cfg | 2 +- .../pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.25.inst.cfg | 2 +- .../pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.35.inst.cfg | 2 +- .../pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.25.inst.cfg | 2 +- .../pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.35.inst.cfg | 2 +- .../pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.40.inst.cfg | 2 +- .../pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.25.inst.cfg | 2 +- .../pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.35.inst.cfg | 2 +- .../pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.40.inst.cfg | 2 +- .../pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.25.inst.cfg | 2 +- .../pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.35.inst.cfg | 2 +- .../pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.40.inst.cfg | 2 +- resources/quality/zav_base/zav_layer_0.05.inst.cfg | 2 +- resources/quality/zav_base/zav_layer_0.10.inst.cfg | 2 +- resources/quality/zav_base/zav_layer_0.15.inst.cfg | 2 +- resources/quality/zav_base/zav_layer_0.20.inst.cfg | 2 +- resources/quality/zav_base/zav_layer_0.25.inst.cfg | 2 +- resources/quality/zav_base/zav_layer_0.30.inst.cfg | 2 +- resources/quality/zav_base/zav_layer_0.35.inst.cfg | 2 +- resources/quality/zav_base/zav_layer_0.40.inst.cfg | 2 +- resources/quality/zyyx/zyyx_agile_global_fast.inst.cfg | 2 +- resources/quality/zyyx/zyyx_agile_global_fine.inst.cfg | 2 +- resources/quality/zyyx/zyyx_agile_global_normal.inst.cfg | 2 +- resources/quality/zyyx/zyyx_agile_pro_flex_fast.inst.cfg | 2 +- resources/quality/zyyx/zyyx_agile_pro_flex_fine.inst.cfg | 2 +- resources/quality/zyyx/zyyx_agile_pro_flex_normal.inst.cfg | 2 +- resources/quality/zyyx/zyyx_agile_pro_pla_fast.inst.cfg | 2 +- resources/quality/zyyx/zyyx_agile_pro_pla_fine.inst.cfg | 2 +- resources/quality/zyyx/zyyx_agile_pro_pla_normal.inst.cfg | 2 +- resources/variants/arjun/arjun300_0.2.inst.cfg | 2 +- resources/variants/arjun/arjun300_0.3.inst.cfg | 2 +- resources/variants/arjun/arjun300_0.4.inst.cfg | 2 +- resources/variants/arjun/arjun300_0.5.inst.cfg | 2 +- resources/variants/arjun/arjun300_0.6.inst.cfg | 2 +- resources/variants/arjun/arjun300_0.8.inst.cfg | 2 +- resources/variants/arjun/arjun300_dm_0.2.inst.cfg | 2 +- resources/variants/arjun/arjun300_dm_0.3.inst.cfg | 2 +- resources/variants/arjun/arjun300_dm_0.4.inst.cfg | 2 +- resources/variants/arjun/arjun300_dm_0.5.inst.cfg | 2 +- resources/variants/arjun/arjun300_dm_0.6.inst.cfg | 2 +- resources/variants/arjun/arjun300_dm_0.8.inst.cfg | 2 +- resources/variants/arjun/arjun300_mm_0.2.inst.cfg | 2 +- resources/variants/arjun/arjun300_mm_0.3.inst.cfg | 2 +- resources/variants/arjun/arjun300_mm_0.4.inst.cfg | 2 +- resources/variants/arjun/arjun300_mm_0.5.inst.cfg | 2 +- resources/variants/arjun/arjun300_mm_0.6.inst.cfg | 2 +- resources/variants/arjun/arjun300_mm_0.8.inst.cfg | 2 +- resources/variants/arjun/arjun300_pva_0.2.inst.cfg | 2 +- resources/variants/arjun/arjun300_pva_0.3.inst.cfg | 2 +- resources/variants/arjun/arjun300_pva_0.4.inst.cfg | 2 +- resources/variants/arjun/arjun300_pva_0.5.inst.cfg | 2 +- resources/variants/arjun/arjun300_pva_0.6.inst.cfg | 2 +- resources/variants/arjun/arjun300_pva_0.8.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_0.2.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_0.3.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_0.4.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_0.5.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_0.6.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_0.8.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_dm_0.2.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_dm_0.3.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_dm_0.4.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_dm_0.5.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_dm_0.6.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_dm_0.8.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_mm_0.2.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_mm_0.3.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_mm_0.4.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_mm_0.5.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_mm_0.6.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_mm_0.8.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_pva_0.2.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_pva_0.3.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_pva_0.4.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_pva_0.5.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_pva_0.6.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_pva_0.8.inst.cfg | 2 +- resources/variants/artillery/artillery_base_0.2.inst.cfg | 2 +- resources/variants/artillery/artillery_base_0.3.inst.cfg | 2 +- resources/variants/artillery/artillery_base_0.4.inst.cfg | 2 +- resources/variants/artillery/artillery_base_0.6.inst.cfg | 2 +- resources/variants/artillery/artillery_base_0.8.inst.cfg | 2 +- resources/variants/artillery/artillery_base_1.0.inst.cfg | 2 +- resources/variants/artillery/artillery_genius_0.2.inst.cfg | 2 +- resources/variants/artillery/artillery_genius_0.3.inst.cfg | 2 +- resources/variants/artillery/artillery_genius_0.4.inst.cfg | 2 +- resources/variants/artillery/artillery_genius_0.5.inst.cfg | 2 +- resources/variants/artillery/artillery_genius_0.6.inst.cfg | 2 +- resources/variants/artillery/artillery_genius_0.8.inst.cfg | 2 +- resources/variants/artillery/artillery_genius_1.0.inst.cfg | 2 +- resources/variants/artillery/artillery_hornet_0.2.inst.cfg | 2 +- resources/variants/artillery/artillery_hornet_0.3.inst.cfg | 2 +- resources/variants/artillery/artillery_hornet_0.4.inst.cfg | 2 +- resources/variants/artillery/artillery_hornet_0.5.inst.cfg | 2 +- resources/variants/artillery/artillery_hornet_0.6.inst.cfg | 2 +- resources/variants/artillery/artillery_hornet_0.8.inst.cfg | 2 +- resources/variants/artillery/artillery_hornet_1.0.inst.cfg | 2 +- .../variants/artillery/artillery_sidewinder_x1_0.2.inst.cfg | 2 +- .../variants/artillery/artillery_sidewinder_x1_0.3.inst.cfg | 2 +- .../variants/artillery/artillery_sidewinder_x1_0.4.inst.cfg | 2 +- .../variants/artillery/artillery_sidewinder_x1_0.6.inst.cfg | 2 +- .../variants/artillery/artillery_sidewinder_x1_0.8.inst.cfg | 2 +- .../variants/artillery/artillery_sidewinder_x1_1.0.inst.cfg | 2 +- resources/variants/atmat/atmat_asterion_ht_v6_0.40.inst.cfg | 2 +- resources/variants/atmat/atmat_asterion_ht_v6_0.80.inst.cfg | 2 +- resources/variants/atmat/atmat_asterion_v6_0.40.inst.cfg | 2 +- resources/variants/atmat/atmat_asterion_v6_0.80.inst.cfg | 2 +- resources/variants/atmat/atmat_galaxy_500_v6_0.40.inst.cfg | 2 +- resources/variants/atmat/atmat_galaxy_500_v6_0.80.inst.cfg | 2 +- resources/variants/atmat/atmat_galaxy_600_v6_0.40.inst.cfg | 2 +- resources/variants/atmat/atmat_galaxy_600_v6_0.80.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_300_v1_v6_0.40.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_300_v1_v6_0.80.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_300_v2_v6_0.40.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_300_v2_v6_0.80.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_400_v1_v6_0.40.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_400_v1_v6_0.80.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_400_v2_v6_0.40.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_400_v2_v6_0.80.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_500_v1_v6_0.40.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_500_v1_v6_0.80.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_500_v2_v6_0.40.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_500_v2_v6_0.80.inst.cfg | 2 +- resources/variants/atmat/atmat_signal_xl_v6_0.40.inst.cfg | 2 +- resources/variants/atmat/atmat_signal_xl_v6_0.80.inst.cfg | 2 +- resources/variants/atmat/atmat_signal_xxl_v6_0.40.inst.cfg | 2 +- resources/variants/atmat/atmat_signal_xxl_v6_0.80.inst.cfg | 2 +- resources/variants/atmat/atmat_signal_xxxl_v6_0.40.inst.cfg | 2 +- resources/variants/atmat/atmat_signal_xxxl_v6_0.80.inst.cfg | 2 +- resources/variants/atmat/atom3_all_metal_brass_0.2.inst.cfg | 2 +- resources/variants/atmat/atom3_all_metal_brass_0.4.inst.cfg | 2 +- resources/variants/atmat/atom3_all_metal_brass_0.6.inst.cfg | 2 +- .../variants/atmat/atom3_lite_all_metal_brass_0.2.inst.cfg | 2 +- .../variants/atmat/atom3_lite_all_metal_brass_0.4.inst.cfg | 2 +- .../variants/atmat/atom3_lite_all_metal_brass_0.6.inst.cfg | 2 +- resources/variants/atmat/atom3_lite_ptfe_brass_0.2.inst.cfg | 2 +- resources/variants/atmat/atom3_lite_ptfe_brass_0.4.inst.cfg | 2 +- resources/variants/atmat/atom3_lite_ptfe_brass_0.6.inst.cfg | 2 +- resources/variants/atmat/atom3_ptfe_brass_0.2.inst.cfg | 2 +- resources/variants/atmat/atom3_ptfe_brass_0.4.inst.cfg | 2 +- resources/variants/atmat/atom3_ptfe_brass_0.6.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_0.2.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_0.3.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_0.4.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_0.5.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_0.6.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_0.8.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_abl_0.2.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_abl_0.3.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_abl_0.4.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_abl_0.5.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_abl_0.6.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_abl_0.8.inst.cfg | 2 +- resources/variants/biqu/biqu_base_0.2.inst.cfg | 2 +- resources/variants/biqu/biqu_base_0.3.inst.cfg | 2 +- resources/variants/biqu/biqu_base_0.4.inst.cfg | 2 +- resources/variants/biqu/biqu_base_0.5.inst.cfg | 2 +- resources/variants/biqu/biqu_base_0.6.inst.cfg | 2 +- resources/variants/biqu/biqu_base_0.8.inst.cfg | 2 +- resources/variants/biqu/biqu_bx_abl_0.2.inst.cfg | 2 +- resources/variants/biqu/biqu_bx_abl_0.3.inst.cfg | 2 +- resources/variants/biqu/biqu_bx_abl_0.4.inst.cfg | 2 +- resources/variants/biqu/biqu_bx_abl_0.5.inst.cfg | 2 +- resources/variants/biqu/biqu_bx_abl_0.6.inst.cfg | 2 +- resources/variants/biqu/biqu_bx_abl_0.8.inst.cfg | 2 +- resources/variants/biqu/biqu_hurakan_0.2.inst.cfg | 2 +- resources/variants/biqu/biqu_hurakan_0.3.inst.cfg | 2 +- resources/variants/biqu/biqu_hurakan_0.4.inst.cfg | 2 +- resources/variants/biqu/biqu_hurakan_0.5.inst.cfg | 2 +- resources/variants/biqu/biqu_hurakan_0.6.inst.cfg | 2 +- resources/variants/biqu/biqu_hurakan_0.8.inst.cfg | 2 +- resources/variants/blocks/blocks_mkii_0.20.inst.cfg | 2 +- resources/variants/blocks/blocks_mkii_0.30.inst.cfg | 2 +- resources/variants/blocks/blocks_mkii_0.40.inst.cfg | 2 +- resources/variants/blocks/blocks_mkii_0.50.inst.cfg | 2 +- resources/variants/blocks/blocks_mkii_0.60.inst.cfg | 2 +- resources/variants/blocks/blocks_mkii_0.80.inst.cfg | 2 +- resources/variants/blocks/blocks_one_0.20.inst.cfg | 2 +- resources/variants/blocks/blocks_one_0.30.inst.cfg | 2 +- resources/variants/blocks/blocks_one_0.40.inst.cfg | 2 +- resources/variants/blocks/blocks_one_0.50.inst.cfg | 2 +- resources/variants/blocks/blocks_one_0.60.inst.cfg | 2 +- resources/variants/blocks/blocks_one_0.80.inst.cfg | 2 +- resources/variants/blocks/blocks_pros100_0.40.inst.cfg | 2 +- resources/variants/blocks/blocks_pros100_0.50.inst.cfg | 2 +- resources/variants/blocks/blocks_pros100_0.60.inst.cfg | 2 +- resources/variants/blocks/blocks_pros100_0.80.inst.cfg | 2 +- resources/variants/blocks/blocks_pros100_1.0.inst.cfg | 2 +- resources/variants/blocks/blocks_pros100_1.2.inst.cfg | 2 +- resources/variants/blocks/blocks_pros30_0.40.inst.cfg | 2 +- resources/variants/blocks/blocks_pros30_0.50.inst.cfg | 2 +- resources/variants/blocks/blocks_pros30_0.60.inst.cfg | 2 +- resources/variants/blocks/blocks_pros30_0.80.inst.cfg | 2 +- resources/variants/blocks/blocks_pros30_1.0.inst.cfg | 2 +- resources/variants/blocks/blocks_pros30_1.2.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_ht_0.3.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_ht_0.4.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_ht_0.5.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_ht_0.6.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_ht_0.8.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_st_0.20.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_st_0.30.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_st_0.40.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_st_0.50.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_st_0.60.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_st_0.80.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_st_1.0.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_st_1.2.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_ht_0.3.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_ht_0.4.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_ht_0.5.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_ht_0.6.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_ht_0.8.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_st_0.20.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_st_0.30.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_st_0.40.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_st_0.50.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_st_0.60.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_st_0.80.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_st_1.0.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_st_1.2.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_ht_0.3.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_ht_0.4.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_ht_0.5.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_ht_0.6.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_ht_0.8.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_st_0.20.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_st_0.30.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_st_0.40.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_st_0.50.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_st_0.60.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_st_0.80.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_st_1.0.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_st_1.2.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_ht_0.3.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_ht_0.4.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_ht_0.5.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_ht_0.6.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_ht_0.8.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_st_0.20.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_st_0.30.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_st_0.40.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_st_0.50.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_st_0.60.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_st_0.80.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_st_1.0.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_st_1.2.inst.cfg | 2 +- resources/variants/blocks/blocks_zero_0.20.inst.cfg | 2 +- resources/variants/blocks/blocks_zero_0.30.inst.cfg | 2 +- resources/variants/blocks/blocks_zero_0.40.inst.cfg | 2 +- resources/variants/blocks/blocks_zero_0.50.inst.cfg | 2 +- resources/variants/blocks/blocks_zero_0.60.inst.cfg | 2 +- resources/variants/blocks/blocks_zero_0.80.inst.cfg | 2 +- resources/variants/cartesio/cartesio_0.25.inst.cfg | 2 +- resources/variants/cartesio/cartesio_0.4.inst.cfg | 2 +- resources/variants/cartesio/cartesio_0.8.inst.cfg | 2 +- resources/variants/crazy3dprint/crazy3dprint_base_0.40.inst.cfg | 2 +- .../variants/crazy3dprint/crazy3dprint_cz_300_0.40.inst.cfg | 2 +- resources/variants/creality/creality_base_0.2.inst.cfg | 2 +- resources/variants/creality/creality_base_0.3.inst.cfg | 2 +- resources/variants/creality/creality_base_0.4.inst.cfg | 2 +- resources/variants/creality/creality_base_0.5.inst.cfg | 2 +- resources/variants/creality/creality_base_0.6.inst.cfg | 2 +- resources/variants/creality/creality_base_0.8.inst.cfg | 2 +- resources/variants/creality/creality_base_1.0.inst.cfg | 2 +- resources/variants/creality/creality_cr100_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr10_0.2.inst.cfg | 2 +- resources/variants/creality/creality_cr10_0.3.inst.cfg | 2 +- resources/variants/creality/creality_cr10_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr10_0.5.inst.cfg | 2 +- resources/variants/creality/creality_cr10_0.6.inst.cfg | 2 +- resources/variants/creality/creality_cr10_0.8.inst.cfg | 2 +- resources/variants/creality/creality_cr10_1.0.inst.cfg | 2 +- resources/variants/creality/creality_cr10max_0.2.inst.cfg | 2 +- resources/variants/creality/creality_cr10max_0.3.inst.cfg | 2 +- resources/variants/creality/creality_cr10max_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr10max_0.5.inst.cfg | 2 +- resources/variants/creality/creality_cr10max_0.6.inst.cfg | 2 +- resources/variants/creality/creality_cr10max_0.8.inst.cfg | 2 +- resources/variants/creality/creality_cr10max_1.0.inst.cfg | 2 +- resources/variants/creality/creality_cr10mini_0.2.inst.cfg | 2 +- resources/variants/creality/creality_cr10mini_0.3.inst.cfg | 2 +- resources/variants/creality/creality_cr10mini_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr10mini_0.5.inst.cfg | 2 +- resources/variants/creality/creality_cr10mini_0.6.inst.cfg | 2 +- resources/variants/creality/creality_cr10mini_0.8.inst.cfg | 2 +- resources/variants/creality/creality_cr10mini_1.0.inst.cfg | 2 +- resources/variants/creality/creality_cr10s4_0.2.inst.cfg | 2 +- resources/variants/creality/creality_cr10s4_0.3.inst.cfg | 2 +- resources/variants/creality/creality_cr10s4_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr10s4_0.5.inst.cfg | 2 +- resources/variants/creality/creality_cr10s4_0.6.inst.cfg | 2 +- resources/variants/creality/creality_cr10s4_0.8.inst.cfg | 2 +- resources/variants/creality/creality_cr10s4_1.0.inst.cfg | 2 +- resources/variants/creality/creality_cr10s5_0.2.inst.cfg | 2 +- resources/variants/creality/creality_cr10s5_0.3.inst.cfg | 2 +- resources/variants/creality/creality_cr10s5_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr10s5_0.5.inst.cfg | 2 +- resources/variants/creality/creality_cr10s5_0.6.inst.cfg | 2 +- resources/variants/creality/creality_cr10s5_0.8.inst.cfg | 2 +- resources/variants/creality/creality_cr10s5_1.0.inst.cfg | 2 +- resources/variants/creality/creality_cr10s_0.2.inst.cfg | 2 +- resources/variants/creality/creality_cr10s_0.3.inst.cfg | 2 +- resources/variants/creality/creality_cr10s_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr10s_0.5.inst.cfg | 2 +- resources/variants/creality/creality_cr10s_0.6.inst.cfg | 2 +- resources/variants/creality/creality_cr10s_0.8.inst.cfg | 2 +- resources/variants/creality/creality_cr10s_1.0.inst.cfg | 2 +- resources/variants/creality/creality_cr10smart_0.2.inst.cfg | 2 +- resources/variants/creality/creality_cr10smart_0.3.inst.cfg | 2 +- resources/variants/creality/creality_cr10smart_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr10smart_0.5.inst.cfg | 2 +- resources/variants/creality/creality_cr10smart_0.6.inst.cfg | 2 +- resources/variants/creality/creality_cr10smart_0.8.inst.cfg | 2 +- resources/variants/creality/creality_cr10smart_1.0.inst.cfg | 2 +- resources/variants/creality/creality_cr10spro_0.2.inst.cfg | 2 +- resources/variants/creality/creality_cr10spro_0.3.inst.cfg | 2 +- resources/variants/creality/creality_cr10spro_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr10spro_0.5.inst.cfg | 2 +- resources/variants/creality/creality_cr10spro_0.6.inst.cfg | 2 +- resources/variants/creality/creality_cr10spro_0.8.inst.cfg | 2 +- resources/variants/creality/creality_cr10spro_1.0.inst.cfg | 2 +- resources/variants/creality/creality_cr20_0.2.inst.cfg | 2 +- resources/variants/creality/creality_cr20_0.3.inst.cfg | 2 +- resources/variants/creality/creality_cr20_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr20_0.5.inst.cfg | 2 +- resources/variants/creality/creality_cr20_0.6.inst.cfg | 2 +- resources/variants/creality/creality_cr20_0.8.inst.cfg | 2 +- resources/variants/creality/creality_cr20_1.0.inst.cfg | 2 +- resources/variants/creality/creality_cr20pro_0.2.inst.cfg | 2 +- resources/variants/creality/creality_cr20pro_0.3.inst.cfg | 2 +- resources/variants/creality/creality_cr20pro_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr20pro_0.5.inst.cfg | 2 +- resources/variants/creality/creality_cr20pro_0.6.inst.cfg | 2 +- resources/variants/creality/creality_cr20pro_0.8.inst.cfg | 2 +- resources/variants/creality/creality_cr20pro_1.0.inst.cfg | 2 +- resources/variants/creality/creality_cr6se_0.2.inst.cfg | 2 +- resources/variants/creality/creality_cr6se_0.3.inst.cfg | 2 +- resources/variants/creality/creality_cr6se_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr6se_0.5.inst.cfg | 2 +- resources/variants/creality/creality_cr6se_0.6.inst.cfg | 2 +- resources/variants/creality/creality_cr6se_0.8.inst.cfg | 2 +- resources/variants/creality/creality_cr6se_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender2_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender2_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender2_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender2_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender2_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender2_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender2_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender3_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender3_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender3_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender3_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender3_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender3_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender3_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender3max_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender3max_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender3max_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender3max_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender3max_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender3max_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender3max_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender3pro_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender3pro_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender3pro_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender3pro_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender3pro_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender3pro_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender3pro_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1plus_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1plus_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1plus_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1plus_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1plus_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1plus_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1plus_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1pro_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1pro_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1pro_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1pro_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1pro_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1pro_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1pro_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender3v2neo_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender3v2neo_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender3v2neo_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender3v2neo_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender3v2neo_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender3v2neo_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender3v2neo_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender3v3se_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender3v3se_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender3v3se_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender3v3se_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender3v3se_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender3v3se_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender3v3se_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender4_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender4_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender4_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender4_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender4_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender4_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender4_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender5_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender5_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender5_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender5_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender5_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender5_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender5_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender5plus_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender5plus_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender5plus_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender5plus_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender5plus_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender5plus_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender5plus_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender5s1_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender5s1_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender5s1_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender5s1_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender5s1_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender5s1_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender5s1_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender6_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender6_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender6_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender6_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender6_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender6_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender6_1.0.inst.cfg | 2 +- resources/variants/creality/creality_sermoond1_0.2.inst.cfg | 2 +- resources/variants/creality/creality_sermoond1_0.3.inst.cfg | 2 +- resources/variants/creality/creality_sermoond1_0.4.inst.cfg | 2 +- resources/variants/creality/creality_sermoond1_0.5.inst.cfg | 2 +- resources/variants/creality/creality_sermoond1_0.6.inst.cfg | 2 +- resources/variants/creality/creality_sermoond1_0.8.inst.cfg | 2 +- resources/variants/creality/creality_sermoond1_1.0.inst.cfg | 2 +- resources/variants/creality/creality_sermoonv1_0.4.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_bowden_brass_0.4.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_bowden_brass_0.8.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_bowden_brass_1.0.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_bowden_generic_0.2.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_bowden_generic_0.4.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_bowden_generic_0.6.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_bowden_generic_0.8.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_bowden_generic_1.0.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_bowden_generic_1.2.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_bowden_steel_0.4.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_bowden_steel_0.8.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_brass_0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_brass_0.8.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_brass_1.0.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_generic_0.2.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_generic_0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_generic_0.6.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_generic_0.8.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_generic_1.0.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_generic_1.2.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_steel_0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_steel_0.8.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_dual_brass_0.4.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_dual_brass_0.8.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_dual_brass_1.0.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_dual_generic_0.2.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_dual_generic_0.4.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_dual_generic_0.6.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_dual_generic_0.8.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_dual_generic_1.0.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_dual_generic_1.2.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_dual_steel_0.4.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_dual_steel_0.8.inst.cfg | 2 +- resources/variants/dagoma/dagoma_sigma_0.4.inst.cfg | 2 +- resources/variants/dagoma/dagoma_sigma_0.8.inst.cfg | 2 +- resources/variants/dagoma/dagoma_sigma_pro_brass_0.4.inst.cfg | 2 +- resources/variants/dagoma/dagoma_sigma_pro_brass_0.8.inst.cfg | 2 +- .../variants/dagoma/dagoma_sigma_pro_dual_brass_0.4.inst.cfg | 2 +- .../variants/dagoma/dagoma_sigma_pro_dual_brass_0.8.inst.cfg | 2 +- .../variants/dagoma/dagoma_sigma_pro_dual_steel_0.4.inst.cfg | 2 +- .../variants/dagoma/dagoma_sigma_pro_dual_steel_0.8.inst.cfg | 2 +- resources/variants/dagoma/dagoma_sigma_pro_steel_0.4.inst.cfg | 2 +- resources/variants/dagoma/dagoma_sigma_pro_steel_0.8.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc20_fbe025.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc20_fbe040.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc20_fbe060.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg | 2 +- .../variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg | 2 +- .../variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg | 2 +- .../variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg | 2 +- resources/variants/diy/diy220_0.2.inst.cfg | 2 +- resources/variants/diy/diy220_0.3.inst.cfg | 2 +- resources/variants/diy/diy220_0.4.inst.cfg | 2 +- resources/variants/diy/diy220_0.5.inst.cfg | 2 +- resources/variants/diy/diy220_0.6.inst.cfg | 2 +- resources/variants/diy/diy220_0.8.inst.cfg | 2 +- resources/variants/dxu/dxu_0.25.inst.cfg | 2 +- resources/variants/dxu/dxu_0.4.inst.cfg | 2 +- resources/variants/dxu/dxu_0.6.inst.cfg | 2 +- resources/variants/dxu/dxu_0.8.inst.cfg | 2 +- resources/variants/dxu/dxu_dual_0.25.inst.cfg | 2 +- resources/variants/dxu/dxu_dual_0.4.inst.cfg | 2 +- resources/variants/dxu/dxu_dual_0.6.inst.cfg | 2 +- resources/variants/dxu/dxu_dual_0.8.inst.cfg | 2 +- resources/variants/dxu/dxu_umo_0.25.inst.cfg | 2 +- resources/variants/dxu/dxu_umo_0.4.inst.cfg | 2 +- resources/variants/dxu/dxu_umo_0.6.inst.cfg | 2 +- resources/variants/dxu/dxu_umo_0.8.inst.cfg | 2 +- resources/variants/dxu/dxu_umo_dual_0.25.inst.cfg | 2 +- resources/variants/dxu/dxu_umo_dual_0.4.inst.cfg | 2 +- resources/variants/dxu/dxu_umo_dual_0.6.inst.cfg | 2 +- resources/variants/dxu/dxu_umo_dual_0.8.inst.cfg | 2 +- .../elegoo/elegoo_neptune_1/elegoo_neptune_1_0.20.inst.cfg | 2 +- .../elegoo/elegoo_neptune_1/elegoo_neptune_1_0.40.inst.cfg | 2 +- .../elegoo/elegoo_neptune_1/elegoo_neptune_1_0.60.inst.cfg | 2 +- .../elegoo/elegoo_neptune_1/elegoo_neptune_1_0.80.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2/elegoo_neptune_2_0.20.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2/elegoo_neptune_2_0.40.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2/elegoo_neptune_2_0.60.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2/elegoo_neptune_2_0.80.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.20.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.40.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.60.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.80.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.20.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.40.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.60.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.80.inst.cfg | 2 +- .../elegoo/elegoo_neptune_3/elegoo_neptune_3_0.20.inst.cfg | 2 +- .../elegoo/elegoo_neptune_3/elegoo_neptune_3_0.40.inst.cfg | 2 +- .../elegoo/elegoo_neptune_3/elegoo_neptune_3_0.60.inst.cfg | 2 +- .../elegoo/elegoo_neptune_3/elegoo_neptune_3_0.80.inst.cfg | 2 +- .../elegoo_neptune_3max/elegoo_neptune_3max_0.20.inst.cfg | 2 +- .../elegoo_neptune_3max/elegoo_neptune_3max_0.40.inst.cfg | 2 +- .../elegoo_neptune_3max/elegoo_neptune_3max_0.60.inst.cfg | 2 +- .../elegoo_neptune_3max/elegoo_neptune_3max_0.80.inst.cfg | 2 +- .../elegoo_neptune_3plus/elegoo_neptune_3plus_0.20.inst.cfg | 2 +- .../elegoo_neptune_3plus/elegoo_neptune_3plus_0.40.inst.cfg | 2 +- .../elegoo_neptune_3plus/elegoo_neptune_3plus_0.60.inst.cfg | 2 +- .../elegoo_neptune_3plus/elegoo_neptune_3plus_0.80.inst.cfg | 2 +- .../elegoo_neptune_3pro/elegoo_neptune_3pro_0.20.inst.cfg | 2 +- .../elegoo_neptune_3pro/elegoo_neptune_3pro_0.40.inst.cfg | 2 +- .../elegoo_neptune_3pro/elegoo_neptune_3pro_0.60.inst.cfg | 2 +- .../elegoo_neptune_3pro/elegoo_neptune_3pro_0.80.inst.cfg | 2 +- .../elegoo/elegoo_neptune_4/elegoo_neptune_4_0.20.inst.cfg | 2 +- .../elegoo/elegoo_neptune_4/elegoo_neptune_4_0.40.inst.cfg | 2 +- .../elegoo/elegoo_neptune_4/elegoo_neptune_4_0.60.inst.cfg | 2 +- .../elegoo/elegoo_neptune_4/elegoo_neptune_4_0.80.inst.cfg | 2 +- .../elegoo_neptune_4max/elegoo_neptune_4max_0.20.inst.cfg | 2 +- .../elegoo_neptune_4max/elegoo_neptune_4max_0.40.inst.cfg | 2 +- .../elegoo_neptune_4max/elegoo_neptune_4max_0.60.inst.cfg | 2 +- .../elegoo_neptune_4max/elegoo_neptune_4max_0.80.inst.cfg | 2 +- .../elegoo_neptune_4plus/elegoo_neptune_4plus_0.20.inst.cfg | 2 +- .../elegoo_neptune_4plus/elegoo_neptune_4plus_0.40.inst.cfg | 2 +- .../elegoo_neptune_4plus/elegoo_neptune_4plus_0.60.inst.cfg | 2 +- .../elegoo_neptune_4plus/elegoo_neptune_4plus_0.80.inst.cfg | 2 +- .../elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg | 2 +- .../elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg | 2 +- .../elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg | 2 +- .../elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg | 2 +- .../elegoo/elegoo_neptune_x/elegoo_neptune_x_0.20.inst.cfg | 2 +- .../elegoo/elegoo_neptune_x/elegoo_neptune_x_0.40.inst.cfg | 2 +- .../elegoo/elegoo_neptune_x/elegoo_neptune_x_0.60.inst.cfg | 2 +- .../elegoo/elegoo_neptune_x/elegoo_neptune_x_0.80.inst.cfg | 2 +- resources/variants/fabtotum/fabtotum_hyb35.inst.cfg | 2 +- resources/variants/fabtotum/fabtotum_lite04.inst.cfg | 2 +- resources/variants/fabtotum/fabtotum_lite06.inst.cfg | 2 +- resources/variants/fabtotum/fabtotum_pro02.inst.cfg | 2 +- resources/variants/fabtotum/fabtotum_pro04.inst.cfg | 2 +- resources/variants/fabtotum/fabtotum_pro06.inst.cfg | 2 +- resources/variants/fabtotum/fabtotum_pro08.inst.cfg | 2 +- resources/variants/farm2/farm2_ce_printhead_0.2.inst.cfg | 2 +- resources/variants/farm2/farm2_ce_printhead_0.3.inst.cfg | 2 +- resources/variants/farm2/farm2_ce_printhead_0.4.inst.cfg | 2 +- resources/variants/farm2/farm2_ce_printhead_0.5.inst.cfg | 2 +- resources/variants/farm2/farm2_printhead_0.2.inst.cfg | 2 +- resources/variants/farm2/farm2_printhead_0.3.inst.cfg | 2 +- resources/variants/farm2/farm2_printhead_0.4.inst.cfg | 2 +- resources/variants/farm2/farm2_printhead_0.5.inst.cfg | 2 +- resources/variants/felix/felixpro2_0.25.inst.cfg | 2 +- resources/variants/felix/felixpro2_0.35.inst.cfg | 2 +- resources/variants/felix/felixpro2_0.50.inst.cfg | 2 +- resources/variants/felix/felixpro2_0.70.inst.cfg | 2 +- resources/variants/felix/felixtec4_0.25.inst.cfg | 2 +- resources/variants/felix/felixtec4_0.35.inst.cfg | 2 +- resources/variants/felix/felixtec4_0.50.inst.cfg | 2 +- resources/variants/felix/felixtec4_0.70.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer3_0.3.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer3_0.4.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer3_0.6.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer4_0.3.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer4_0.4.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer4_0.6.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg | 2 +- resources/variants/flashforge/flashforge_base_0.20.inst.cfg | 2 +- resources/variants/flashforge/flashforge_base_0.30.inst.cfg | 2 +- resources/variants/flashforge/flashforge_base_0.40.inst.cfg | 2 +- resources/variants/flashforge/flashforge_base_0.50.inst.cfg | 2 +- resources/variants/flashforge/flashforge_base_0.60.inst.cfg | 2 +- .../variants/flashforge/flashforge_dreamer_nx_0.20.inst.cfg | 2 +- .../variants/flashforge/flashforge_dreamer_nx_0.30.inst.cfg | 2 +- .../variants/flashforge/flashforge_dreamer_nx_0.40.inst.cfg | 2 +- .../variants/flashforge/flashforge_dreamer_nx_0.50.inst.cfg | 2 +- .../variants/flashforge/flashforge_dreamer_nx_0.60.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_base_0.25.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_base_0.30.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_base_0.40.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_base_0.50.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_base_0.60.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_base_0.80.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_4s_0.25.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_4s_0.30.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_4s_0.40.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_4s_0.50.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_4s_0.60.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_4s_0.80.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_5_0.25.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_5_0.30.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_5_0.40.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_5_0.50.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_5_0.60.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_5_0.80.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_6_0.25.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_6_0.30.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_6_0.40.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_6_0.50.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_6_0.60.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_6_0.80.inst.cfg | 2 +- resources/variants/fusion3/fusion3_0.4.inst.cfg | 2 +- resources/variants/fusion3/fusion3_0.6.inst.cfg | 2 +- resources/variants/fusion3/fusion3_0.8.inst.cfg | 2 +- resources/variants/fusion3/fusion3_f410_0.4.inst.cfg | 2 +- resources/variants/fusion3/fusion3_f410_0.6.inst.cfg | 2 +- resources/variants/fusion3/fusion3_f410_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A10Pro_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A10Pro_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A10Pro_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A10Pro_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A10Pro_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A10Pro_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A10Pro_1.0.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_A20_0.2.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_A20_0.3.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_A20_0.4.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_A20_0.5.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_A20_0.6.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_A20_0.8.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_A20_1.0.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A30Pro_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A30Pro_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A30Pro_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A30Pro_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A30Pro_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A30Pro_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A30Pro_1.0.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_E180_0.2.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_E180_0.3.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_E180_0.4.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_E180_0.5.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_E180_0.6.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_E180_0.8.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_E180_1.0.inst.cfg | 2 +- .../geeetech_variants/geeetech_GiantArmD200_0.2.inst.cfg | 2 +- .../geeetech_variants/geeetech_GiantArmD200_0.3.inst.cfg | 2 +- .../geeetech_variants/geeetech_GiantArmD200_0.4.inst.cfg | 2 +- .../geeetech_variants/geeetech_GiantArmD200_0.5.inst.cfg | 2 +- .../geeetech_variants/geeetech_GiantArmD200_0.6.inst.cfg | 2 +- .../geeetech_variants/geeetech_GiantArmD200_0.8.inst.cfg | 2 +- .../geeetech_variants/geeetech_GiantArmD200_1.0.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProB_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProB_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProB_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProB_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProB_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProB_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProB_1.0.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProW_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProW_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProW_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProW_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProW_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProW_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProW_1.0.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator2_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator2_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator2_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator2_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator2_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator2_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator2_1.0.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator_1.0.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeDucer_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeDucer_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeDucer_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeDucer_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeDucer_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeDucer_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeDucer_1.0.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarMax_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarMax_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarMax_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarMax_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarMax_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarMax_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarMax_1.0.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarPro_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarPro_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarPro_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarPro_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarPro_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarPro_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarPro_1.0.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarS_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarS_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarS_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarS_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarS_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarS_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarS_1.0.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Mizar_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Mizar_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Mizar_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Mizar_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Mizar_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Mizar_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Mizar_1.0.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Thunder_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Thunder_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Thunder_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Thunder_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Thunder_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Thunder_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Thunder_1.0.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_025_e3d.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_04_e3d.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_05_e3d.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_05_jhead.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_06_e3d.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_08_e3d.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_10_jhead.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_12_e3d.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_dual_025_e3d.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_dual_04_e3d.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_dual_05_e3d.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_dual_05_jhead.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_dual_06_e3d.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_dual_08_e3d.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_dual_10_jhead.inst.cfg | 2 +- resources/variants/goofoo/goofoo_base_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_cube_0.7.inst.cfg | 2 +- resources/variants/goofoo/goofoo_e-one_0.2.inst.cfg | 2 +- resources/variants/goofoo/goofoo_e-one_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_e-one_0.6.inst.cfg | 2 +- resources/variants/goofoo/goofoo_e-one_0.8.inst.cfg | 2 +- resources/variants/goofoo/goofoo_e-one_1.0.inst.cfg | 2 +- resources/variants/goofoo/goofoo_gemini_0.2.inst.cfg | 2 +- resources/variants/goofoo/goofoo_gemini_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_gemini_0.6.inst.cfg | 2 +- resources/variants/goofoo/goofoo_gemini_0.8.inst.cfg | 2 +- resources/variants/goofoo/goofoo_gemini_1.0.inst.cfg | 2 +- resources/variants/goofoo/goofoo_giant_0.2.inst.cfg | 2 +- resources/variants/goofoo/goofoo_giant_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_giant_0.6.inst.cfg | 2 +- resources/variants/goofoo/goofoo_giant_0.8.inst.cfg | 2 +- resources/variants/goofoo/goofoo_giant_1.0.inst.cfg | 2 +- resources/variants/goofoo/goofoo_max_0.2.inst.cfg | 2 +- resources/variants/goofoo/goofoo_max_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_max_0.6.inst.cfg | 2 +- resources/variants/goofoo/goofoo_max_0.8.inst.cfg | 2 +- resources/variants/goofoo/goofoo_max_1.0.inst.cfg | 2 +- resources/variants/goofoo/goofoo_mido_0.2.inst.cfg | 2 +- resources/variants/goofoo/goofoo_mido_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_mido_0.6.inst.cfg | 2 +- resources/variants/goofoo/goofoo_mido_0.8.inst.cfg | 2 +- resources/variants/goofoo/goofoo_mido_1.0.inst.cfg | 2 +- resources/variants/goofoo/goofoo_miniplus_0.2.inst.cfg | 2 +- resources/variants/goofoo/goofoo_miniplus_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_miniplus_0.6.inst.cfg | 2 +- resources/variants/goofoo/goofoo_miniplus_0.8.inst.cfg | 2 +- resources/variants/goofoo/goofoo_miniplus_1.0.inst.cfg | 2 +- resources/variants/goofoo/goofoo_nova_0.2.inst.cfg | 2 +- resources/variants/goofoo/goofoo_nova_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_nova_0.6.inst.cfg | 2 +- resources/variants/goofoo/goofoo_nova_0.8.inst.cfg | 2 +- resources/variants/goofoo/goofoo_nova_1.0.inst.cfg | 2 +- resources/variants/goofoo/goofoo_plus_0.2.inst.cfg | 2 +- resources/variants/goofoo/goofoo_plus_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_plus_0.6.inst.cfg | 2 +- resources/variants/goofoo/goofoo_plus_0.8.inst.cfg | 2 +- resources/variants/goofoo/goofoo_plus_1.0.inst.cfg | 2 +- resources/variants/goofoo/goofoo_t-one_0.2.inst.cfg | 2 +- resources/variants/goofoo/goofoo_t-one_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_t-one_0.6.inst.cfg | 2 +- resources/variants/goofoo/goofoo_t-one_0.8.inst.cfg | 2 +- resources/variants/goofoo/goofoo_t-one_1.0.inst.cfg | 2 +- resources/variants/goofoo/goofoo_tiny_0.2.inst.cfg | 2 +- resources/variants/goofoo/goofoo_tiny_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_tiny_0.6.inst.cfg | 2 +- resources/variants/goofoo/goofoo_tiny_0.8.inst.cfg | 2 +- resources/variants/goofoo/goofoo_tiny_1.0.inst.cfg | 2 +- resources/variants/goofoo/goofoo_tinyplus_0.2.inst.cfg | 2 +- resources/variants/goofoo/goofoo_tinyplus_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_tinyplus_0.6.inst.cfg | 2 +- resources/variants/goofoo/goofoo_tinyplus_0.8.inst.cfg | 2 +- resources/variants/goofoo/goofoo_tinyplus_1.0.inst.cfg | 2 +- resources/variants/hms434/hms434_0.4tpnozzle.inst.cfg | 2 +- resources/variants/hms434/hms434_0.8tpnozzle.inst.cfg | 2 +- resources/variants/imade3d/imade3d_jellybox_0.4.inst.cfg | 2 +- resources/variants/imade3d/imade3d_jellybox_2_0.4.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3_0.2.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3_0.3.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3_0.4.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3_0.5.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3_0.6.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3_0.8.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3_1.0.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_0.2.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_0.3.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_0.4.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_0.5.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_0.6.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_0.8.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_1.0.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_pro_0.2.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_pro_0.3.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_pro_0.4.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_pro_0.5.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_pro_0.6.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_pro_0.8.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_pro_1.0.inst.cfg | 2 +- resources/variants/kosher/kosher220_0.2.inst.cfg | 2 +- resources/variants/kosher/kosher220_0.3.inst.cfg | 2 +- resources/variants/kosher/kosher220_0.4.inst.cfg | 2 +- resources/variants/kosher/kosher220_0.5.inst.cfg | 2 +- resources/variants/kosher/kosher220_0.6.inst.cfg | 2 +- resources/variants/kosher/kosher220_0.8.inst.cfg | 2 +- resources/variants/kosher/kosher220_dm_0.2.inst.cfg | 2 +- resources/variants/kosher/kosher220_dm_0.3.inst.cfg | 2 +- resources/variants/kosher/kosher220_dm_0.4.inst.cfg | 2 +- resources/variants/kosher/kosher220_dm_0.5.inst.cfg | 2 +- resources/variants/kosher/kosher220_dm_0.6.inst.cfg | 2 +- resources/variants/kosher/kosher220_dm_0.8.inst.cfg | 2 +- resources/variants/kosher/kosher220_mm_0.2.inst.cfg | 2 +- resources/variants/kosher/kosher220_mm_0.3.inst.cfg | 2 +- resources/variants/kosher/kosher220_mm_0.4.inst.cfg | 2 +- resources/variants/kosher/kosher220_mm_0.5.inst.cfg | 2 +- resources/variants/kosher/kosher220_mm_0.6.inst.cfg | 2 +- resources/variants/kosher/kosher220_mm_0.8.inst.cfg | 2 +- resources/variants/kosher/kosher220_pva_0.2.inst.cfg | 2 +- resources/variants/kosher/kosher220_pva_0.3.inst.cfg | 2 +- resources/variants/kosher/kosher220_pva_0.4.inst.cfg | 2 +- resources/variants/kosher/kosher220_pva_0.5.inst.cfg | 2 +- resources/variants/kosher/kosher220_pva_0.6.inst.cfg | 2 +- resources/variants/kosher/kosher220_pva_0.8.inst.cfg | 2 +- .../variants/leapfrog/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg | 2 +- .../variants/leapfrog/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg | 2 +- resources/variants/liquid/liquid_vo04.inst.cfg | 2 +- resources/variants/liquid/liquid_vo06.inst.cfg | 2 +- resources/variants/liquid/liquid_vo08.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d3_0.2.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d3_0.4.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d3_0.6.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d3_0.8.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d3_vulcan_0.2.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d3_vulcan_0.4.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d3_vulcan_0.6.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d3_vulcan_0.8.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d5_0.2.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d5_0.4.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d5_0.6.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d5_0.8.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d6_0.2.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d6_0.4.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d6_0.6.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d6_0.8.inst.cfg | 2 +- resources/variants/longer/longer_base_0.4.inst.cfg | 2 +- resources/variants/longer/longer_cube2_0.4.inst.cfg | 2 +- resources/variants/longer/longer_lk1_0.4.inst.cfg | 2 +- resources/variants/longer/longer_lk1plus_0.4.inst.cfg | 2 +- resources/variants/longer/longer_lk1pro_0.4.inst.cfg | 2 +- resources/variants/longer/longer_lk4_0.4.inst.cfg | 2 +- resources/variants/longer/longer_lk4pro_0.4.inst.cfg | 2 +- resources/variants/longer/longer_lk4x_0.4.inst.cfg | 2 +- resources/variants/longer/longer_lk5_0.4.inst.cfg | 2 +- resources/variants/longer/longer_lk5pro_0.4.inst.cfg | 2 +- resources/variants/mark2/Mark2_for_Ultimaker2_0.25.inst.cfg | 2 +- resources/variants/mark2/Mark2_for_Ultimaker2_0.4.inst.cfg | 2 +- resources/variants/mark2/Mark2_for_Ultimaker2_0.6.inst.cfg | 2 +- resources/variants/mark2/Mark2_for_Ultimaker2_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_1000pro_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_1000pro_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_1000pro_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_1000pro_0.5.inst.cfg | 2 +- resources/variants/mingda/mingda_1000pro_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_1000pro_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_1000pro_1.0.inst.cfg | 2 +- resources/variants/mingda/mingda_4h_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_4h_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_4h_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_4h_0.5.inst.cfg | 2 +- resources/variants/mingda/mingda_4h_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_4h_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_4h_1.0.inst.cfg | 2 +- resources/variants/mingda/mingda_600pro_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_600pro_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_600pro_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_600pro_0.5.inst.cfg | 2 +- resources/variants/mingda/mingda_600pro_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_600pro_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_600pro_1.0.inst.cfg | 2 +- resources/variants/mingda/mingda_6h_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_6h_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_6h_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_6h_0.5.inst.cfg | 2 +- resources/variants/mingda/mingda_6h_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_6h_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_6h_1.0.inst.cfg | 2 +- resources/variants/mingda/mingda_base_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_base_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_base_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_base_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_base_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_base_1.0.inst.cfg | 2 +- resources/variants/mingda/mingda_d2_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_d2_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_d2_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_d2_0.5.inst.cfg | 2 +- resources/variants/mingda/mingda_d2_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_d2_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_d2_1.0.inst.cfg | 2 +- resources/variants/mingda/mingda_d3pro_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_d3pro_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_d3pro_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_d3pro_0.5.inst.cfg | 2 +- resources/variants/mingda/mingda_d3pro_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_d3pro_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_d3pro_1.0.inst.cfg | 2 +- resources/variants/mingda/mingda_d4pro_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_d4pro_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_d4pro_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_d4pro_0.5.inst.cfg | 2 +- resources/variants/mingda/mingda_d4pro_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_d4pro_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_d4pro_1.0.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_max_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_max_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_max_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_max_0.5.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_max_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_max_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_max_1.0.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_pro_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_pro_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_pro_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_pro_0.5.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_pro_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_pro_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_pro_1.0.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_x_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_x_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_x_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_x_0.5.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_x_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_x_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_x_1.0.inst.cfg | 2 +- resources/variants/mingda/mingda_rock3_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_rock3_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_rock3_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_rock3_0.5.inst.cfg | 2 +- resources/variants/mingda/mingda_rock3_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_rock3_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_rock3_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v3_base_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_base_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v3_base_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v3_base_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v3_base_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v3_base_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120X_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120X_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120X_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120X_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120X_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120X_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120Z_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120Z_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120Z_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120Z_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120Z_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120Z_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_big180X_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_big180X_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v3_big180X_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v3_big180X_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v3_big180X_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v3_big180X_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_big40_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_big40_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v3_big40_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v3_big40_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v3_big40_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v3_big40_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_big60_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_big60_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v3_big60_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v3_big60_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v3_big60_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v3_big60_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_bigmeter_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_bigmeter_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v3_bigmeter_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v3_bigmeter_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v3_bigmeter_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v3_bigmeter_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_base_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_base_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v4_base_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v4_base_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v4_base_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v4_base_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120X_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120X_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120X_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120X_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120X_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120X_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120Z_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120Z_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120Z_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120Z_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120Z_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120Z_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_big180X_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_big180X_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v4_big180X_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v4_big180X_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v4_big180X_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v4_big180X_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_big60_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_big60_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v4_big60_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v4_big60_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v4_big60_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v4_big60_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_bigmeter_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_bigmeter_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v4_bigmeter_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v4_bigmeter_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v4_bigmeter_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v4_bigmeter_1.4.inst.cfg | 2 +- resources/variants/multicomp/multicomp_mcpi200_0.2.inst.cfg | 2 +- resources/variants/multicomp/multicomp_mcpi200_0.4.inst.cfg | 2 +- resources/variants/multicomp/multicomp_mcpi200_0.6.inst.cfg | 2 +- resources/variants/multicomp/multicomp_mcpi200_0.8.inst.cfg | 2 +- resources/variants/multicomp/multicomp_mcpi200_1.0.inst.cfg | 2 +- resources/variants/nwa3d/nwa3d_a31_04.inst.cfg | 2 +- resources/variants/nwa3d/nwa3d_a31_06.inst.cfg | 2 +- resources/variants/ratrig/ratrig_base_0.2.inst.cfg | 2 +- resources/variants/ratrig/ratrig_base_0.3.inst.cfg | 2 +- resources/variants/ratrig/ratrig_base_0.4.inst.cfg | 2 +- resources/variants/ratrig/ratrig_base_0.6.inst.cfg | 2 +- resources/variants/ratrig/ratrig_base_0.8.inst.cfg | 2 +- resources/variants/ratrig/ratrig_base_1.0.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_200_0.2.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_200_0.3.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_200_0.4.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_200_0.6.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_200_0.8.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_200_1.0.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_300_0.2.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_300_0.3.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_300_0.4.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_300_0.6.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_300_0.8.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_300_1.0.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_400_0.2.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_400_0.3.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_400_0.4.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_400_0.6.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_400_0.8.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_400_1.0.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_500_0.2.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_500_0.3.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_500_0.4.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_500_0.6.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_500_0.8.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_500_1.0.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vminion_0.2.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vminion_0.3.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vminion_0.4.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vminion_0.6.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vminion_0.8.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vminion_1.0.inst.cfg | 2 +- resources/variants/renkforce/renkforce_basic3_0.2.inst.cfg | 2 +- resources/variants/renkforce/renkforce_basic3_0.4.inst.cfg | 2 +- resources/variants/renkforce/renkforce_basic3_0.6.inst.cfg | 2 +- resources/variants/renkforce/renkforce_basic3_0.8.inst.cfg | 2 +- resources/variants/renkforce/renkforce_basic3_1.0.inst.cfg | 2 +- resources/variants/renkforce/renkforce_cubeone_0.7.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro10plus_0.2.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro10plus_0.4.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro10plus_0.6.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro10plus_0.8.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro10plus_1.0.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro3_0.2.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro3_0.4.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro3_0.6.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro3_0.8.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro3_1.0.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro6_0.2.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro6_0.4.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro6_0.6.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro6_0.8.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro6_1.0.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro6plus_0.4.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro6plus_0.6.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro6plus_0.8.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro6plus_1.0.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro7dual_0.2.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro7dual_0.4.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro7dual_0.6.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro7dual_0.8.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro7dual_1.0.inst.cfg | 2 +- resources/variants/sovol/sovol_base_bowden_0.2.inst.cfg | 2 +- resources/variants/sovol/sovol_base_bowden_0.3.inst.cfg | 2 +- resources/variants/sovol/sovol_base_bowden_0.4.inst.cfg | 2 +- resources/variants/sovol/sovol_base_bowden_0.5.inst.cfg | 2 +- resources/variants/sovol/sovol_base_bowden_0.6.inst.cfg | 2 +- resources/variants/sovol/sovol_base_bowden_0.8.inst.cfg | 2 +- resources/variants/sovol/sovol_base_bowden_1.0.inst.cfg | 2 +- resources/variants/sovol/sovol_base_planetary_0.2.inst.cfg | 2 +- resources/variants/sovol/sovol_base_planetary_0.3.inst.cfg | 2 +- resources/variants/sovol/sovol_base_planetary_0.4.inst.cfg | 2 +- resources/variants/sovol/sovol_base_planetary_0.5.inst.cfg | 2 +- resources/variants/sovol/sovol_base_planetary_0.6.inst.cfg | 2 +- resources/variants/sovol/sovol_base_planetary_0.8.inst.cfg | 2 +- resources/variants/sovol/sovol_base_planetary_1.0.inst.cfg | 2 +- resources/variants/sovol/sovol_base_titan_0.2.inst.cfg | 2 +- resources/variants/sovol/sovol_base_titan_0.3.inst.cfg | 2 +- resources/variants/sovol/sovol_base_titan_0.4.inst.cfg | 2 +- resources/variants/sovol/sovol_base_titan_0.5.inst.cfg | 2 +- resources/variants/sovol/sovol_base_titan_0.6.inst.cfg | 2 +- resources/variants/sovol/sovol_base_titan_0.8.inst.cfg | 2 +- resources/variants/sovol/sovol_base_titan_1.0.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01_0.2.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01_0.3.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01_0.4.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01_0.5.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01_0.6.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01_0.8.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01_1.0.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01pro_0.2.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01pro_0.3.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01pro_0.4.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01pro_0.5.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01pro_0.6.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01pro_0.8.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01pro_1.0.inst.cfg | 2 +- resources/variants/sovol/sovol_sv03_0.2.inst.cfg | 2 +- resources/variants/sovol/sovol_sv03_0.3.inst.cfg | 2 +- resources/variants/sovol/sovol_sv03_0.4.inst.cfg | 2 +- resources/variants/sovol/sovol_sv03_0.5.inst.cfg | 2 +- resources/variants/sovol/sovol_sv03_0.6.inst.cfg | 2 +- resources/variants/sovol/sovol_sv03_0.8.inst.cfg | 2 +- resources/variants/sovol/sovol_sv03_1.0.inst.cfg | 2 +- resources/variants/sovol/sovol_sv05_0.2.inst.cfg | 2 +- resources/variants/sovol/sovol_sv05_0.3.inst.cfg | 2 +- resources/variants/sovol/sovol_sv05_0.4.inst.cfg | 2 +- resources/variants/sovol/sovol_sv05_0.5.inst.cfg | 2 +- resources/variants/sovol/sovol_sv05_0.6.inst.cfg | 2 +- resources/variants/sovol/sovol_sv05_0.8.inst.cfg | 2 +- resources/variants/sovol/sovol_sv05_1.0.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_0.2.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_0.3.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_0.4.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_0.5.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_0.6.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_0.8.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_1.0.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_plus_0.2.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_plus_0.3.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_plus_0.4.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_plus_0.5.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_plus_0.6.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_plus_0.8.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_plus_1.0.inst.cfg | 2 +- .../variants/strateo3d/strateo3d_IDEX420_brass_04.inst.cfg | 2 +- .../variants/strateo3d/strateo3d_IDEX420_brass_06.inst.cfg | 2 +- .../variants/strateo3d/strateo3d_IDEX420_brass_08.inst.cfg | 2 +- .../strateo3d/strateo3d_IDEX420_duplicate_brass_04.inst.cfg | 2 +- .../strateo3d/strateo3d_IDEX420_duplicate_brass_06.inst.cfg | 2 +- .../strateo3d/strateo3d_IDEX420_duplicate_brass_08.inst.cfg | 2 +- .../strateo3d_IDEX420_duplicate_hardened_steel_04.inst.cfg | 2 +- .../strateo3d/strateo3d_IDEX420_hardened_steel_04.inst.cfg | 2 +- .../strateo3d/strateo3d_IDEX420_mirror_brass_04.inst.cfg | 2 +- .../strateo3d/strateo3d_IDEX420_mirror_brass_06.inst.cfg | 2 +- .../strateo3d/strateo3d_IDEX420_mirror_brass_08.inst.cfg | 2 +- .../strateo3d_IDEX420_mirror_hardened_steel_04.inst.cfg | 2 +- resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg | 2 +- resources/variants/strateo3d/strateo3d_standard_04.inst.cfg | 2 +- resources/variants/strateo3d/strateo3d_standard_06.inst.cfg | 2 +- resources/variants/strateo3d/strateo3d_standard_08.inst.cfg | 2 +- resources/variants/strateo3d/strateo3d_standard_10.inst.cfg | 2 +- resources/variants/strateo3d/strateo3d_standard_12.inst.cfg | 2 +- .../structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg | 2 +- .../structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg | 2 +- .../structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg | 2 +- .../structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg | 2 +- .../structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg | 2 +- .../structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg | 2 +- .../structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg | 2 +- resources/variants/tizyx/tizyx_evy_0.2.inst.cfg | 2 +- resources/variants/tizyx/tizyx_evy_0.3.inst.cfg | 2 +- resources/variants/tizyx/tizyx_evy_0.4.inst.cfg | 2 +- resources/variants/tizyx/tizyx_evy_0.5.inst.cfg | 2 +- resources/variants/tizyx/tizyx_evy_0.6.inst.cfg | 2 +- resources/variants/tizyx/tizyx_evy_0.8.inst.cfg | 2 +- resources/variants/tizyx/tizyx_evy_1.0.inst.cfg | 2 +- resources/variants/tizyx/tizyx_evy_dual_classic.inst.cfg | 2 +- resources/variants/tizyx/tizyx_evy_dual_direct_drive.inst.cfg | 2 +- resources/variants/tizyx/tizyx_k25_0.2.inst.cfg | 2 +- resources/variants/tizyx/tizyx_k25_0.3.inst.cfg | 2 +- resources/variants/tizyx/tizyx_k25_0.4.inst.cfg | 2 +- resources/variants/tizyx/tizyx_k25_0.5.inst.cfg | 2 +- resources/variants/tizyx/tizyx_k25_0.6.inst.cfg | 2 +- resources/variants/tizyx/tizyx_k25_0.8.inst.cfg | 2 +- resources/variants/tizyx/tizyx_k25_1.0.inst.cfg | 2 +- resources/variants/tronxy/tronxy_d01_0.2.inst.cfg | 2 +- resources/variants/tronxy/tronxy_d01_0.3.inst.cfg | 2 +- resources/variants/tronxy/tronxy_d01_0.4.inst.cfg | 2 +- resources/variants/tronxy/tronxy_d01_0.5.inst.cfg | 2 +- resources/variants/tronxy/tronxy_d01_0.6.inst.cfg | 2 +- resources/variants/tronxy/tronxy_d01_0.8.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_0.2.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_0.3.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_0.4.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_0.5.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_0.6.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_0.8.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_400_0.2.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_400_0.3.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_400_0.4.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_400_0.5.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_400_0.6.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_400_0.8.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_500_0.2.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_500_0.3.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_500_0.4.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_500_0.5.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_500_0.6.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_500_0.8.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x_0.2.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x_0.3.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x_0.4.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x_0.5.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x_0.6.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x_0.8.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2_0.2.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2_0.3.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2_0.4.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2_0.5.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2_0.6.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2_0.8.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2pro_0.2.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2pro_0.3.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2pro_0.4.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2pro_0.5.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2pro_0.6.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2pro_0.8.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3_0.2.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3_0.3.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3_0.4.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3_0.5.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3_0.6.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3_0.8.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3proV2_0.2.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3proV2_0.3.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3proV2_0.4.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3proV2_0.5.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3proV2_0.6.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3proV2_0.8.inst.cfg | 2 +- resources/variants/two_trees/two_trees_base_0.2.inst.cfg | 2 +- resources/variants/two_trees/two_trees_base_0.3.inst.cfg | 2 +- resources/variants/two_trees/two_trees_base_0.4.inst.cfg | 2 +- resources/variants/two_trees/two_trees_base_0.5.inst.cfg | 2 +- resources/variants/two_trees/two_trees_base_0.6.inst.cfg | 2 +- resources/variants/two_trees/two_trees_base_0.8.inst.cfg | 2 +- resources/variants/two_trees/two_trees_base_1.0.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluer_0.2.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluer_0.3.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluer_0.4.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluer_0.5.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluer_0.6.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluer_0.8.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluer_1.0.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluerplus_0.2.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluerplus_0.3.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluerplus_0.4.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluerplus_0.5.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluerplus_0.6.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluerplus_0.8.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluerplus_1.0.inst.cfg | 2 +- .../variants/two_trees/two_trees_sapphireplus_0.2.inst.cfg | 2 +- .../variants/two_trees/two_trees_sapphireplus_0.3.inst.cfg | 2 +- .../variants/two_trees/two_trees_sapphireplus_0.4.inst.cfg | 2 +- .../variants/two_trees/two_trees_sapphireplus_0.5.inst.cfg | 2 +- .../variants/two_trees/two_trees_sapphireplus_0.6.inst.cfg | 2 +- .../variants/two_trees/two_trees_sapphireplus_0.8.inst.cfg | 2 +- .../variants/two_trees/two_trees_sapphireplus_1.0.inst.cfg | 2 +- resources/variants/two_trees/two_trees_sapphirepro_0.2.inst.cfg | 2 +- resources/variants/two_trees/two_trees_sapphirepro_0.3.inst.cfg | 2 +- resources/variants/two_trees/two_trees_sapphirepro_0.4.inst.cfg | 2 +- resources/variants/two_trees/two_trees_sapphirepro_0.5.inst.cfg | 2 +- resources/variants/two_trees/two_trees_sapphirepro_0.6.inst.cfg | 2 +- resources/variants/two_trees/two_trees_sapphirepro_0.8.inst.cfg | 2 +- resources/variants/two_trees/two_trees_sapphirepro_1.0.inst.cfg | 2 +- resources/variants/ultimaker2_extended_olsson_0.25.inst.cfg | 2 +- resources/variants/ultimaker2_extended_olsson_0.4.inst.cfg | 2 +- resources/variants/ultimaker2_extended_olsson_0.6.inst.cfg | 2 +- resources/variants/ultimaker2_extended_olsson_0.8.inst.cfg | 2 +- resources/variants/ultimaker2_extended_plus_0.25.inst.cfg | 2 +- resources/variants/ultimaker2_extended_plus_0.4.inst.cfg | 2 +- resources/variants/ultimaker2_extended_plus_0.6.inst.cfg | 2 +- resources/variants/ultimaker2_extended_plus_0.8.inst.cfg | 2 +- resources/variants/ultimaker2_olsson_0.25.inst.cfg | 2 +- resources/variants/ultimaker2_olsson_0.4.inst.cfg | 2 +- resources/variants/ultimaker2_olsson_0.6.inst.cfg | 2 +- resources/variants/ultimaker2_olsson_0.8.inst.cfg | 2 +- resources/variants/ultimaker2_plus_0.25.inst.cfg | 2 +- resources/variants/ultimaker2_plus_0.4.inst.cfg | 2 +- resources/variants/ultimaker2_plus_0.6.inst.cfg | 2 +- resources/variants/ultimaker2_plus_0.8.inst.cfg | 2 +- resources/variants/ultimaker2_plus_connect_0.25.inst.cfg | 2 +- resources/variants/ultimaker2_plus_connect_0.4.inst.cfg | 2 +- resources/variants/ultimaker2_plus_connect_0.6.inst.cfg | 2 +- resources/variants/ultimaker2_plus_connect_0.8.inst.cfg | 2 +- resources/variants/ultimaker3_aa0.25.inst.cfg | 2 +- resources/variants/ultimaker3_aa0.8.inst.cfg | 2 +- resources/variants/ultimaker3_aa04.inst.cfg | 2 +- resources/variants/ultimaker3_bb0.8.inst.cfg | 2 +- resources/variants/ultimaker3_bb04.inst.cfg | 2 +- resources/variants/ultimaker3_extended_aa0.25.inst.cfg | 2 +- resources/variants/ultimaker3_extended_aa0.8.inst.cfg | 2 +- resources/variants/ultimaker3_extended_aa04.inst.cfg | 2 +- resources/variants/ultimaker3_extended_bb0.8.inst.cfg | 2 +- resources/variants/ultimaker3_extended_bb04.inst.cfg | 2 +- resources/variants/ultimaker_methodx_1C.inst.cfg | 2 +- resources/variants/ultimaker_methodx_1XA.inst.cfg | 2 +- resources/variants/ultimaker_methodx_2XA.inst.cfg | 2 +- resources/variants/ultimaker_methodx_LABS.inst.cfg | 2 +- resources/variants/ultimaker_methodxl_1C.inst.cfg | 2 +- resources/variants/ultimaker_methodxl_1XA.inst.cfg | 2 +- resources/variants/ultimaker_methodxl_2XA.inst.cfg | 2 +- resources/variants/ultimaker_methodxl_LABS.inst.cfg | 2 +- resources/variants/ultimaker_s3_aa0.25.inst.cfg | 2 +- resources/variants/ultimaker_s3_aa0.8.inst.cfg | 2 +- resources/variants/ultimaker_s3_aa04.inst.cfg | 2 +- resources/variants/ultimaker_s3_bb0.8.inst.cfg | 2 +- resources/variants/ultimaker_s3_bb04.inst.cfg | 2 +- resources/variants/ultimaker_s3_cc04.inst.cfg | 2 +- resources/variants/ultimaker_s3_cc06.inst.cfg | 2 +- resources/variants/ultimaker_s3_dd04.inst.cfg | 2 +- resources/variants/ultimaker_s5_aa0.25.inst.cfg | 2 +- resources/variants/ultimaker_s5_aa0.8.inst.cfg | 2 +- resources/variants/ultimaker_s5_aa04.inst.cfg | 2 +- resources/variants/ultimaker_s5_aluminum.inst.cfg | 2 +- resources/variants/ultimaker_s5_bb0.8.inst.cfg | 2 +- resources/variants/ultimaker_s5_bb04.inst.cfg | 2 +- resources/variants/ultimaker_s5_cc04.inst.cfg | 2 +- resources/variants/ultimaker_s5_cc06.inst.cfg | 2 +- resources/variants/ultimaker_s5_dd04.inst.cfg | 2 +- resources/variants/ultimaker_s5_glass.inst.cfg | 2 +- resources/variants/ultimaker_s7_aa0.25.inst.cfg | 2 +- resources/variants/ultimaker_s7_aa0.8.inst.cfg | 2 +- resources/variants/ultimaker_s7_aa04.inst.cfg | 2 +- resources/variants/ultimaker_s7_bb0.8.inst.cfg | 2 +- resources/variants/ultimaker_s7_bb04.inst.cfg | 2 +- resources/variants/ultimaker_s7_cc04.inst.cfg | 2 +- resources/variants/ultimaker_s7_cc06.inst.cfg | 2 +- resources/variants/ultimaker_s7_dd04.inst.cfg | 2 +- resources/variants/uni/uni_200_0.30.inst.cfg | 2 +- resources/variants/uni/uni_200_0.40.inst.cfg | 2 +- resources/variants/uni/uni_200_0.50.inst.cfg | 2 +- resources/variants/uni/uni_250_0.30.inst.cfg | 2 +- resources/variants/uni/uni_250_0.40.inst.cfg | 2 +- resources/variants/uni/uni_250_0.50.inst.cfg | 2 +- resources/variants/uni/uni_300_0.30.inst.cfg | 2 +- resources/variants/uni/uni_300_0.40.inst.cfg | 2 +- resources/variants/uni/uni_300_0.50.inst.cfg | 2 +- resources/variants/uni/uni_base_0.30.inst.cfg | 2 +- resources/variants/uni/uni_base_0.40.inst.cfg | 2 +- resources/variants/uni/uni_base_0.50.inst.cfg | 2 +- resources/variants/uni/uni_mini_0.30.inst.cfg | 2 +- resources/variants/uni/uni_mini_0.40.inst.cfg | 2 +- resources/variants/uni/uni_mini_0.50.inst.cfg | 2 +- resources/variants/vivedino/vivedino_trex2plus_0.2.inst.cfg | 2 +- resources/variants/vivedino/vivedino_trex2plus_0.4.inst.cfg | 2 +- resources/variants/vivedino/vivedino_trex2plus_0.6.inst.cfg | 2 +- resources/variants/vivedino/vivedino_trex2plus_0.8.inst.cfg | 2 +- resources/variants/vivedino/vivedino_trex3_0.2.inst.cfg | 2 +- resources/variants/vivedino/vivedino_trex3_0.4.inst.cfg | 2 +- resources/variants/vivedino/vivedino_trex3_0.6.inst.cfg | 2 +- resources/variants/vivedino/vivedino_trex3_0.8.inst.cfg | 2 +- resources/variants/voron/voron0_120_v6_0.25.inst.cfg | 2 +- resources/variants/voron/voron0_120_v6_0.30.inst.cfg | 2 +- resources/variants/voron/voron0_120_v6_0.40.inst.cfg | 2 +- resources/variants/voron/voron0_120_v6_0.50.inst.cfg | 2 +- resources/variants/voron/voron0_120_v6_0.60.inst.cfg | 2 +- resources/variants/voron/voron0_120_v6_0.80.inst.cfg | 2 +- resources/variants/voron/voron2_250_v6_0.25.inst.cfg | 2 +- resources/variants/voron/voron2_250_v6_0.30.inst.cfg | 2 +- resources/variants/voron/voron2_250_v6_0.35.inst.cfg | 2 +- resources/variants/voron/voron2_250_v6_0.40.inst.cfg | 2 +- resources/variants/voron/voron2_250_v6_0.50.inst.cfg | 2 +- resources/variants/voron/voron2_250_v6_0.60.inst.cfg | 2 +- resources/variants/voron/voron2_250_v6_0.80.inst.cfg | 2 +- resources/variants/voron/voron2_250_volcano_0.40.inst.cfg | 2 +- resources/variants/voron/voron2_250_volcano_0.60.inst.cfg | 2 +- resources/variants/voron/voron2_250_volcano_0.80.inst.cfg | 2 +- resources/variants/voron/voron2_250_volcano_1.00.inst.cfg | 2 +- resources/variants/voron/voron2_250_volcano_1.20.inst.cfg | 2 +- resources/variants/voron/voron2_300_v6_0.25.inst.cfg | 2 +- resources/variants/voron/voron2_300_v6_0.30.inst.cfg | 2 +- resources/variants/voron/voron2_300_v6_0.35.inst.cfg | 2 +- resources/variants/voron/voron2_300_v6_0.40.inst.cfg | 2 +- resources/variants/voron/voron2_300_v6_0.50.inst.cfg | 2 +- resources/variants/voron/voron2_300_v6_0.60.inst.cfg | 2 +- resources/variants/voron/voron2_300_v6_0.80.inst.cfg | 2 +- resources/variants/voron/voron2_300_volcano_0.40.inst.cfg | 2 +- resources/variants/voron/voron2_300_volcano_0.60.inst.cfg | 2 +- resources/variants/voron/voron2_300_volcano_0.80.inst.cfg | 2 +- resources/variants/voron/voron2_300_volcano_1.00.inst.cfg | 2 +- resources/variants/voron/voron2_300_volcano_1.20.inst.cfg | 2 +- resources/variants/voron/voron2_350_v6_0.25.inst.cfg | 2 +- resources/variants/voron/voron2_350_v6_0.30.inst.cfg | 2 +- resources/variants/voron/voron2_350_v6_0.35.inst.cfg | 2 +- resources/variants/voron/voron2_350_v6_0.40.inst.cfg | 2 +- resources/variants/voron/voron2_350_v6_0.50.inst.cfg | 2 +- resources/variants/voron/voron2_350_v6_0.60.inst.cfg | 2 +- resources/variants/voron/voron2_350_v6_0.80.inst.cfg | 2 +- resources/variants/voron/voron2_350_volcano_0.40.inst.cfg | 2 +- resources/variants/voron/voron2_350_volcano_0.60.inst.cfg | 2 +- resources/variants/voron/voron2_350_volcano_0.80.inst.cfg | 2 +- resources/variants/voron/voron2_350_volcano_1.00.inst.cfg | 2 +- resources/variants/voron/voron2_350_volcano_1.20.inst.cfg | 2 +- resources/variants/voron/voron2_custom_v6_0.25.inst.cfg | 2 +- resources/variants/voron/voron2_custom_v6_0.30.inst.cfg | 2 +- resources/variants/voron/voron2_custom_v6_0.35.inst.cfg | 2 +- resources/variants/voron/voron2_custom_v6_0.40.inst.cfg | 2 +- resources/variants/voron/voron2_custom_v6_0.50.inst.cfg | 2 +- resources/variants/voron/voron2_custom_v6_0.60.inst.cfg | 2 +- resources/variants/voron/voron2_custom_v6_0.80.inst.cfg | 2 +- resources/variants/voron/voron2_custom_volcano_0.40.inst.cfg | 2 +- resources/variants/voron/voron2_custom_volcano_0.60.inst.cfg | 2 +- resources/variants/voron/voron2_custom_volcano_0.80.inst.cfg | 2 +- resources/variants/voron/voron2_custom_volcano_1.00.inst.cfg | 2 +- resources/variants/voron/voron2_custom_volcano_1.20.inst.cfg | 2 +- resources/variants/voron/voron_trident_250_0.25.inst.cfg | 2 +- resources/variants/voron/voron_trident_250_0.40.inst.cfg | 2 +- resources/variants/voron/voron_trident_250_0.50.inst.cfg | 2 +- resources/variants/voron/voron_trident_250_0.60.inst.cfg | 2 +- resources/variants/voron/voron_trident_250_0.80.inst.cfg | 2 +- resources/variants/voron/voron_trident_300_0.25.inst.cfg | 2 +- resources/variants/voron/voron_trident_300_0.40.inst.cfg | 2 +- resources/variants/voron/voron_trident_300_0.50.inst.cfg | 2 +- resources/variants/voron/voron_trident_300_0.60.inst.cfg | 2 +- resources/variants/voron/voron_trident_300_0.80.inst.cfg | 2 +- resources/variants/voron/voron_trident_350_0.25.inst.cfg | 2 +- resources/variants/voron/voron_trident_350_0.40.inst.cfg | 2 +- resources/variants/voron/voron_trident_350_0.50.inst.cfg | 2 +- resources/variants/voron/voron_trident_350_0.60.inst.cfg | 2 +- resources/variants/voron/voron_trident_350_0.80.inst.cfg | 2 +- resources/variants/vzbot/vzbot_235_0.2.inst.cfg | 2 +- resources/variants/vzbot/vzbot_235_0.3.inst.cfg | 2 +- resources/variants/vzbot/vzbot_235_0.4.inst.cfg | 2 +- resources/variants/vzbot/vzbot_235_0.5.inst.cfg | 2 +- resources/variants/vzbot/vzbot_235_0.6.inst.cfg | 2 +- resources/variants/vzbot/vzbot_235_0.8.inst.cfg | 2 +- resources/variants/vzbot/vzbot_235_1.0.inst.cfg | 2 +- resources/variants/vzbot/vzbot_330_0.2.inst.cfg | 2 +- resources/variants/vzbot/vzbot_330_0.3.inst.cfg | 2 +- resources/variants/vzbot/vzbot_330_0.4.inst.cfg | 2 +- resources/variants/vzbot/vzbot_330_0.5.inst.cfg | 2 +- resources/variants/vzbot/vzbot_330_0.6.inst.cfg | 2 +- resources/variants/vzbot/vzbot_330_0.8.inst.cfg | 2 +- resources/variants/vzbot/vzbot_330_1.0.inst.cfg | 2 +- resources/variants/vzbot/vzbot_base_0.2.inst.cfg | 2 +- resources/variants/vzbot/vzbot_base_0.3.inst.cfg | 2 +- resources/variants/vzbot/vzbot_base_0.4.inst.cfg | 2 +- resources/variants/vzbot/vzbot_base_0.5.inst.cfg | 2 +- resources/variants/vzbot/vzbot_base_0.6.inst.cfg | 2 +- resources/variants/vzbot/vzbot_base_0.8.inst.cfg | 2 +- resources/variants/vzbot/vzbot_base_1.0.inst.cfg | 2 +- resources/variants/vzbot/vzbot_custom_0.2.inst.cfg | 2 +- resources/variants/vzbot/vzbot_custom_0.3.inst.cfg | 2 +- resources/variants/vzbot/vzbot_custom_0.4.inst.cfg | 2 +- resources/variants/vzbot/vzbot_custom_0.5.inst.cfg | 2 +- resources/variants/vzbot/vzbot_custom_0.6.inst.cfg | 2 +- resources/variants/vzbot/vzbot_custom_0.8.inst.cfg | 2 +- resources/variants/vzbot/vzbot_custom_1.0.inst.cfg | 2 +- resources/variants/weedo/weedo_x40_weedo_0.4.inst.cfg | 2 +- resources/variants/weedo/weedo_x40_weedo_0.6.inst.cfg | 2 +- resources/variants/weedo/weedo_x40_weedo_0.8.inst.cfg | 2 +- resources/variants/xyz_printing/xyzprinting_base_0.40.inst.cfg | 2 +- .../xyzprinting_da_vinci_1p0_pro_copper_0.40.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xplus_copper_0.40.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xplus_hs_0.40.inst.cfg | 2 +- .../xyz_printing/xyzprinting_da_vinci_jr_w_pro_hs_0.40.inst.cfg | 2 +- .../xyz_printing/xyzprinting_da_vinci_jr_w_pro_ss_0.40.inst.cfg | 2 +- .../xyz_printing/xyzprinting_da_vinci_pro_evo_hs_0.40.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hsht_0.60.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40.inst.cfg | 2 +- .../xyz_printing/xyzprinting_da_vinci_super_hs_0.40.inst.cfg | 2 +- resources/variants/zav/zav_base_0.20.inst.cfg | 2 +- resources/variants/zav/zav_base_0.25.inst.cfg | 2 +- resources/variants/zav/zav_base_0.30.inst.cfg | 2 +- resources/variants/zav/zav_base_0.35.inst.cfg | 2 +- resources/variants/zav/zav_base_0.40.inst.cfg | 2 +- resources/variants/zav/zav_base_0.45.inst.cfg | 2 +- resources/variants/zav/zav_base_0.50.inst.cfg | 2 +- resources/variants/zav/zav_base_0.60.inst.cfg | 2 +- resources/variants/zav/zav_base_0.80.inst.cfg | 2 +- resources/variants/zav/zav_base_1.00.inst.cfg | 2 +- resources/variants/zav/zav_big_0.20.inst.cfg | 2 +- resources/variants/zav/zav_big_0.25.inst.cfg | 2 +- resources/variants/zav/zav_big_0.30.inst.cfg | 2 +- resources/variants/zav/zav_big_0.35.inst.cfg | 2 +- resources/variants/zav/zav_big_0.40.inst.cfg | 2 +- resources/variants/zav/zav_big_0.45.inst.cfg | 2 +- resources/variants/zav/zav_big_0.50.inst.cfg | 2 +- resources/variants/zav/zav_big_0.60.inst.cfg | 2 +- resources/variants/zav/zav_big_0.80.inst.cfg | 2 +- resources/variants/zav/zav_big_1.00.inst.cfg | 2 +- resources/variants/zav/zav_bigplus_0.20.inst.cfg | 2 +- resources/variants/zav/zav_bigplus_0.25.inst.cfg | 2 +- resources/variants/zav/zav_bigplus_0.30.inst.cfg | 2 +- resources/variants/zav/zav_bigplus_0.35.inst.cfg | 2 +- resources/variants/zav/zav_bigplus_0.40.inst.cfg | 2 +- resources/variants/zav/zav_bigplus_0.45.inst.cfg | 2 +- resources/variants/zav/zav_bigplus_0.50.inst.cfg | 2 +- resources/variants/zav/zav_bigplus_0.60.inst.cfg | 2 +- resources/variants/zav/zav_bigplus_0.80.inst.cfg | 2 +- resources/variants/zav/zav_bigplus_1.00.inst.cfg | 2 +- resources/variants/zav/zav_l_0.20.inst.cfg | 2 +- resources/variants/zav/zav_l_0.25.inst.cfg | 2 +- resources/variants/zav/zav_l_0.30.inst.cfg | 2 +- resources/variants/zav/zav_l_0.35.inst.cfg | 2 +- resources/variants/zav/zav_l_0.40.inst.cfg | 2 +- resources/variants/zav/zav_l_0.45.inst.cfg | 2 +- resources/variants/zav/zav_l_0.50.inst.cfg | 2 +- resources/variants/zav/zav_l_0.60.inst.cfg | 2 +- resources/variants/zav/zav_l_0.80.inst.cfg | 2 +- resources/variants/zav/zav_l_1.00.inst.cfg | 2 +- resources/variants/zav/zav_max_0.20.inst.cfg | 2 +- resources/variants/zav/zav_max_0.25.inst.cfg | 2 +- resources/variants/zav/zav_max_0.30.inst.cfg | 2 +- resources/variants/zav/zav_max_0.35.inst.cfg | 2 +- resources/variants/zav/zav_max_0.40.inst.cfg | 2 +- resources/variants/zav/zav_max_0.45.inst.cfg | 2 +- resources/variants/zav/zav_max_0.50.inst.cfg | 2 +- resources/variants/zav/zav_max_0.60.inst.cfg | 2 +- resources/variants/zav/zav_max_0.80.inst.cfg | 2 +- resources/variants/zav/zav_max_1.00.inst.cfg | 2 +- resources/variants/zav/zav_maxpro_0.20.inst.cfg | 2 +- resources/variants/zav/zav_maxpro_0.25.inst.cfg | 2 +- resources/variants/zav/zav_maxpro_0.30.inst.cfg | 2 +- resources/variants/zav/zav_maxpro_0.35.inst.cfg | 2 +- resources/variants/zav/zav_maxpro_0.40.inst.cfg | 2 +- resources/variants/zav/zav_maxpro_0.45.inst.cfg | 2 +- resources/variants/zav/zav_maxpro_0.50.inst.cfg | 2 +- resources/variants/zav/zav_maxpro_0.60.inst.cfg | 2 +- resources/variants/zav/zav_maxpro_0.80.inst.cfg | 2 +- resources/variants/zav/zav_maxpro_1.00.inst.cfg | 2 +- resources/variants/zav/zav_mini_0.20.inst.cfg | 2 +- resources/variants/zav/zav_mini_0.25.inst.cfg | 2 +- resources/variants/zav/zav_mini_0.30.inst.cfg | 2 +- resources/variants/zav/zav_mini_0.35.inst.cfg | 2 +- resources/variants/zav/zav_mini_0.40.inst.cfg | 2 +- resources/variants/zav/zav_mini_0.45.inst.cfg | 2 +- resources/variants/zav/zav_mini_0.50.inst.cfg | 2 +- resources/variants/zav/zav_mini_0.60.inst.cfg | 2 +- resources/variants/zav/zav_mini_0.80.inst.cfg | 2 +- resources/variants/zav/zav_mini_1.00.inst.cfg | 2 +- 7258 files changed, 7258 insertions(+), 7258 deletions(-) diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_B.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_B.inst.cfg index d6629aeb1c3..fc0708041a7 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D010 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_C.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_C.inst.cfg index 9dcbbf4f5f5..4d0e53deeab 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D015 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_D.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_D.inst.cfg index 4f12d0c6709..919e49294e0 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_D.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_D.inst.cfg index 54a76b81927..30e95a48d9d 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_D.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_E.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_E.inst.cfg index 173d99acbc5..b2351a8a806 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_E.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = D030 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_B.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_B.inst.cfg index a5d3f342ea1..a52ff655802 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D010 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_C.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_C.inst.cfg index d30d8f67b88..07d62c2915a 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D015 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_D.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_D.inst.cfg index cdce34e01a8..4f0fbf74a21 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_D.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_D.inst.cfg index 00363e3dba5..39becd3cd07 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_D.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_E.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_E.inst.cfg index cf4c937e753..3c4df2d1118 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_E.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = D030 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_B.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_B.inst.cfg index 9cf8e2a47b1..f3eba51e984 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D010 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_C.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_C.inst.cfg index a7c6e21278c..4e3ca827957 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D015 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_D.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_D.inst.cfg index c1f4f49b6d9..20dcc02fdf9 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_C.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_C.inst.cfg index ac2faaf5898..c7470b8c258 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_C.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_D.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_D.inst.cfg index ac2faaf5898..c7470b8c258 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_D.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_E.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_E.inst.cfg index 40cbc081d07..130b5d2a278 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_E.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D030 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_B.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_B.inst.cfg index 6b76d5b201b..8ced2813965 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D010 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_C.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_C.inst.cfg index af6eafd5fd5..514973ccefd 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D015 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_D.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_D.inst.cfg index ae9ae28b768..c9366697a80 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_C.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_C.inst.cfg index a668f692658..a7fef7976d8 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_C.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D015 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_D.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_D.inst.cfg index a077cd2ced3..56b2e6ff8da 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_D.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_E.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_E.inst.cfg index fde93818556..57e8f521da7 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_E.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D030 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg index 496c28b43ea..382b2e8af36 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D010 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg index 05a545e4dce..5cb4664213a 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D015 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg index b07338020dc..f1035271b03 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_D.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_D.inst.cfg index d9271d1082d..2f92c3ccef6 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_D.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_E.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_E.inst.cfg index 0e014c6e044..ffb00077c7e 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_E.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = D030 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg index 94df4366f9c..4afa610eb1a 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D010 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg index 54bdb53002d..bceefcec97a 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D015 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg index c163d8f6300..b3dd716c0f7 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_D.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_D.inst.cfg index 31f6a9a62d2..3d95d1b19d7 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_D.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_E.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_E.inst.cfg index 4cc2f49777f..e87daed110c 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_E.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = D030 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.05mm_visual.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.05mm_visual.inst.cfg index e82884e3fb8..4df23b911b2 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.05mm_visual.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.05mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = Elegoo_layer_005 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_engineering.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_engineering.inst.cfg index bdbeef66b4b..1a5695f4904 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_visual.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_visual.inst.cfg index 9d8758f6050..4bb742ae0e9 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_visual.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_engineering.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_engineering.inst.cfg index de7bdc5730d..349dbc5919f 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_visual.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_visual.inst.cfg index d89f8510ec3..21241f2bb4d 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_visual.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.2mm_quick.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.2mm_quick.inst.cfg index c1fd50eab32..578fba233f2 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.2mm_quick.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.3mm_quick.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.3mm_quick.inst.cfg index 9dc2c50697c..f00efd13559 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.3mm_quick.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.3mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_pla quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg index e0e87bffc3d..081446828b6 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = Elegoo_layer_005 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg index 1ad1d4cb795..60f6c9965a6 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg @@ -8,7 +8,7 @@ intent_category = engineering is_experimental = True material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg index df6271085f6..86b1b505f77 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg index 4a6b207a919..c2bbab0d5db 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg @@ -8,7 +8,7 @@ intent_category = engineering is_experimental = True material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg index c3c5e329509..48452cc240b 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_engineering.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_engineering.inst.cfg index 1e9703215da..19f3592c4ae 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_engineering.inst.cfg @@ -8,7 +8,7 @@ intent_category = engineering is_experimental = True material = generic_pla quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg index 6f36752648f..195edc6b3c7 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_pla quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg index f56023baef0..a16e6730727 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_pla quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_Draft_Print_Quick.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_Draft_Print_Quick.inst.cfg index 402359dd84f..8b63f5bc662 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_Draft_Print_Quick.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_Draft_Print_Quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Print_Accurate.inst.cfg index 3f334fdf2d2..6904c4079fa 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Visual.inst.cfg index 8c8a23e85e9..d0487bfe7a6 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_High_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_High_Visual.inst.cfg index 9405c8b295a..8ebe0c0c46f 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_High_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_High_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Quality_Accurate.inst.cfg index c23a110e09b..19c41a33881 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Visual.inst.cfg index 61db2930044..c66d224a1f1 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_CPE_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_CPE_Fast_Print_Accurate.inst.cfg index 5c8d8dcab58..02acaefd55d 100644 --- a/resources/intent/liquid/liquid_vo0.4_CPE_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_CPE_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_CPE_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_CPE_Normal_Quality_Accurate.inst.cfg index 7e957a64015..4997ebbad39 100644 --- a/resources/intent/liquid/liquid_vo0.4_CPE_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_CPE_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_Nylon_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_Nylon_Fast_Print_Accurate.inst.cfg index 58b46b6a59a..5c4b525c156 100644 --- a/resources/intent/liquid/liquid_vo0.4_Nylon_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_Nylon_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_Nylon_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_Nylon_Normal_Quality_Accurate.inst.cfg index 236f1dee612..a5070b131bf 100644 --- a/resources/intent/liquid/liquid_vo0.4_Nylon_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_Nylon_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PC_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PC_Fast_Print_Accurate.inst.cfg index 0b3060b0ac1..8620632bed5 100644 --- a/resources/intent/liquid/liquid_vo0.4_PC_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PC_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PC_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PC_Normal_Quality_Accurate.inst.cfg index 13ac4647ff7..a8ceaaf218d 100644 --- a/resources/intent/liquid/liquid_vo0.4_PC_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PC_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_Draft_Print_Quick.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_Draft_Print_Quick.inst.cfg index 6a19492587a..f769152ea4d 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_Draft_Print_Quick.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_Draft_Print_Quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Print_Accurate.inst.cfg index 0aaf41e0be1..c26d8e408e1 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Visual.inst.cfg index 481634d7ba5..85e6aaec5e5 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_High_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_High_Visual.inst.cfg index 2e418c390fb..9f916946d7e 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_High_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_High_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Quality_Accurate.inst.cfg index 068d775fc4b..ed8001b2963 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Visual.inst.cfg index 9f91179da0b..4dc720417a6 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_Draft_Print_Quick.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_Draft_Print_Quick.inst.cfg index 1773ad01892..9f2b7ab77d6 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_Draft_Print_Quick.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_Draft_Print_Quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Print_Accurate.inst.cfg index ee4a315c200..b05a492e397 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Visual.inst.cfg index dfe92c80896..4bd00759a31 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_High_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_High_Visual.inst.cfg index ead3f9f64d6..cf65345e342 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_High_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_High_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Quality_Accurate.inst.cfg index 74557539971..f46cb21d87a 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Visual.inst.cfg index b5789fe9e94..ecf1b624c09 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm_solid.inst.cfg index 509347edd4d..697aa8842e9 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_abscf_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = 1C diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_solid.inst.cfg index 64433fec7ea..8826f7e7d4b 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_absr_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = 1C diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm_solid.inst.cfg index 23c8807afd0..aa04992d122 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm_solid.inst.cfg @@ -8,7 +8,7 @@ intent_category = solid is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = 1C diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg index cdff2f30cea..364eea5b521 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg @@ -8,7 +8,7 @@ intent_category = solid is_experimental = True material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = 1C diff --git a/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_solid.inst.cfg index a14203b9c4e..c426a994992 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_absr_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = 1XA diff --git a/resources/intent/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm_solid.inst.cfg index 3a781b61aa0..7d1ead2caf0 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm_solid.inst.cfg @@ -8,7 +8,7 @@ intent_category = solid is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = 1XA diff --git a/resources/intent/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm_solid.inst.cfg index a833556bd8b..4c7586d0dd9 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm_solid.inst.cfg @@ -8,7 +8,7 @@ intent_category = solid is_experimental = True material = ultimaker_sr30_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = 2XA diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm_solid.inst.cfg index a7e099e431b..3d8106d85e1 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_abscf_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = LABS diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm_solid.inst.cfg index 80c26ac0b43..ec07c4b98a3 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_absr_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = LABS diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm_solid.inst.cfg index 87823a01a6b..9020c8fdccd 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm_solid.inst.cfg @@ -8,7 +8,7 @@ intent_category = solid is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = LABS diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg index bb769198883..3a5e5e4491b 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg @@ -8,7 +8,7 @@ intent_category = solid is_experimental = True material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = LABS diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm_solid.inst.cfg index 36c71e8fde0..5714a796b3e 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_abscf_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = 1C diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_solid.inst.cfg index 8a2601d408a..603a19fa4f2 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_absr_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = 1C diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm_solid.inst.cfg index 12bc3f27080..e5ad1ab92ca 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm_solid.inst.cfg @@ -8,7 +8,7 @@ intent_category = solid is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = 1C diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg index 55336726361..4594c37f50f 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg @@ -8,7 +8,7 @@ intent_category = solid is_experimental = True material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = 1C diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_solid.inst.cfg index 855cf57e222..470f5547c1c 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_absr_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = 1XA diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm_solid.inst.cfg index 82aa8e9bad7..5dd7ea0eb8c 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm_solid.inst.cfg @@ -8,7 +8,7 @@ intent_category = solid is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = 1XA diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm_solid.inst.cfg index 01a55c85a42..799966741ff 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm_solid.inst.cfg @@ -8,7 +8,7 @@ intent_category = solid is_experimental = True material = ultimaker_sr30_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = 2XA diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm_solid.inst.cfg index 82735775a60..21e54ab083f 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_abscf_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = LABS diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm_solid.inst.cfg index 87e0495be7f..f1058ebdebd 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_absr_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = LABS diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm_solid.inst.cfg index ae7100bc86b..3655b78cf16 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm_solid.inst.cfg @@ -8,7 +8,7 @@ intent_category = solid is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = LABS diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg index af43c95cd2d..0ae080086d1 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg @@ -8,7 +8,7 @@ intent_category = solid is_experimental = True material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = LABS diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.06mm_visual.inst.cfg index 850ab8b2136..d12071d3a5d 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_engineering.inst.cfg index c1ade2391e2..4ae011e6925 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_visual.inst.cfg index 95644621ad5..8207705b545 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_engineering.inst.cfg index c9e5804306a..546d21fe4be 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_visual.inst.cfg index 57df5208d66..09e842f5025 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.2mm_quick.inst.cfg index c50a4c6331c..e73af4a87ed 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg index 4e538290566..b190eefc572 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe_plus quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg index 9513f56dfe5..54e2e78789e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe_plus quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm_engineering.inst.cfg index 66196a42156..6956d40573e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm_engineering.inst.cfg index 295e4681f55..599affff457 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm_engineering.inst.cfg index 5c95a8bb6b2..e8cee0ef323 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm_engineering.inst.cfg index 0143426335d..87bf4f93d2f 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.15mm_engineering.inst.cfg index 5deb69e5abf..7120a9d6b78 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.1mm_engineering.inst.cfg index 8c1a60b5b4c..83ad4584de7 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.15mm_engineering.inst.cfg index 50011a31884..b32d9fc1497 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.1mm_engineering.inst.cfg index 8e1cbd003b8..9ea1d2b08f9 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.06mm_visual.inst.cfg index f3cd83f0fbf..9304974dc9a 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_engineering.inst.cfg index 853db370a7b..deaf4b77e67 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_visual.inst.cfg index 6f3a0aa8d9b..07bf6028e95 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_engineering.inst.cfg index ed0c770c33f..4714e516c74 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_visual.inst.cfg index 3aec759ed83..ff6c3cc6b5c 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.2mm_quick.inst.cfg index 7db781a22ea..a521f1f019e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.3mm_quick.inst.cfg index f5bcf98ba2f..634efc45e57 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.3mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm_visual.inst.cfg index ce4c717c548..fb349859b04 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_engineering.inst.cfg index 01d2128f623..a75aa86806e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_visual.inst.cfg index 83f9024c20a..4113a9fe8e2 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_engineering.inst.cfg index ead230ea213..0be0b9d398f 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_visual.inst.cfg index bad763a0aed..faa1084c275 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm_quick.inst.cfg index 7ce3655a1fa..377b5d122c8 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm_quick.inst.cfg index e359e6d1ab8..66b03e33b65 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg index 62e3254f8ba..8fa7230f62d 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg index e06ccbc3c6a..162e979a83f 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg index d0d5bf5c2ec..c14e2d0c24d 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg index b61495c66ff..de545bf35ea 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg index 2b113bb10cb..7e4a2be5181 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg index e5c66d6b889..d7a8e069986 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg index d51b925c244..0efe56e0dcf 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg index 98840cccdc8..e6a3c4c30ff 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg index a3533c805d1..1155247785a 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg index 6cb091dafbb..392be6c5489 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg index 0b2c1c3a96b..205b8f4d518 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg index a5e918bf823..f6cbbba69de 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg index 7c1de8fd56b..09d2f2ba99a 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg index 0cb3fae8f0a..6e60a687fab 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg index 698fa97fc8e..286a6b0e072 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg index fddbf1a350f..6254e3b68f2 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg index 144994eb9b3..a8ebd1b54ca 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg index 638560ae82a..09673e60980 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg index 7bde0a1a84f..7cf830c8331 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg index 031ab34fa2a..9454381e88d 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg index 32fb3da04bb..25c24997cda 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg index ed573773e15..77c867c2add 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg index b5e414e2a71..170dfd90ea6 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg index 1cd8170e8fd..14f9aa110c8 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg index 3810165c12e..08899429199 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg index 8f242b8bf30..5d1ef78b715 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg index c301cb76b8e..6371e933dc2 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg index f1a72ac90bb..ac5904d91fa 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg index f5f5a33ca7e..bb457acb89c 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg index 7b0e9ff88bb..2d6592179a1 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg index 61916c3da7e..7b66700a7d6 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg index 75345728fb1..2e254c0db05 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg index 2c2efb74acb..24c1c424b83 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg index cea390491da..b1abec13648 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg index d206bcffb91..06957baa1f5 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg index 85bc2ebf772..61b67043135 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg index 60413405bb0..c1db44dcc4b 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg index 8557038cdf8..1d6c709517c 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg index 8480dd96fee..6c58b08d101 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg index b6175f198a2..6552e6e66aa 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg index 3058369081a..9ed04a21418 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = superdraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg index 5db19be11f3..b961efe0eb9 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg index 0d34733f077..1f65b1be8a9 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg index 354e2e980ac..9253f808f9d 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg index 6dc6a308567..339f02e070e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg index 13f9d21fac7..f1aa58b68ed 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = superdraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg index 5361dfeb62f..1a94de81f89 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg index 1a8f8c0d0f6..7769b3ed665 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg index f7e5233aa38..7d18b5d3bfc 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg index b4b346a730d..1e55929f44c 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg index b98d27da01e..531ffab0637 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg index c4cad5993d0..5d470eabcab 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg index 83f9d417b3c..010abc23542 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg index 3bb47b25d7a..a01998fc4dc 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg index 1ffe95220bf..f8d86eb50a5 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg index 11c28e9be1e..365fea42ab5 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg index 0c1e598e6c6..c07b72ee47c 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_engineering.inst.cfg index 2edf56f19b6..a2135797939 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg index 7961bb5ca08..e19ed4a7b12 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_engineering.inst.cfg index 7204c13c5e0..3ee351e6d83 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg index 90401c220cb..05c22d33237 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_engineering.inst.cfg index f8a4feb35e7..51a584d0383 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg index 3b05f8fd309..3c2efc99eb8 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_engineering.inst.cfg index 4ff1aa7403f..f7c9f266176 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.06mm_visual.inst.cfg index 01af38e7103..1088ed3384c 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_engineering.inst.cfg index 015f9de7413..e4195e37a31 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_visual.inst.cfg index 767644af8fb..67d74786ea3 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_engineering.inst.cfg index 8912a439f50..f3da8e539cd 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_visual.inst.cfg index 9fbe2d656b9..41062bcddf4 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.2mm_quick.inst.cfg index a06a8056844..e69b9dd0302 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg index 6310212dadc..e5a59502a58 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe_plus quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg index 4737b633fcc..78b888abb0e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe_plus quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm_engineering.inst.cfg index 7225bab9367..682bfe2f97a 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm_engineering.inst.cfg index eefe6379548..ab8338bc9e4 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm_engineering.inst.cfg index 63207f8f14b..825220e353a 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm_engineering.inst.cfg index d20118ef97a..727fdc935be 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.15mm_engineering.inst.cfg index 296959f646d..2f21d6eff95 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.1mm_engineering.inst.cfg index 13369f1eab7..6c29211dc04 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.15mm_engineering.inst.cfg index b952bc3f2b0..5bd7bea421e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.1mm_engineering.inst.cfg index c8a9e7ec654..64e81fbf1dc 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.06mm_visual.inst.cfg index 5fdb90d5e5b..f0b22300885 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_engineering.inst.cfg index 9bb289a3b1f..e32dbabeb68 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_visual.inst.cfg index 6fa63725c57..50d90a00eb2 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_engineering.inst.cfg index ad06050ef12..a3197dd697f 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_visual.inst.cfg index e2b41d7445b..23eb85c3358 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.2mm_quick.inst.cfg index 3428f1fddaa..2352570231a 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.3mm_quick.inst.cfg index 899fa76b615..571a3aa68f5 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.3mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm_visual.inst.cfg index ce5961883a1..18bdf427580 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_engineering.inst.cfg index d71cea9bdca..a7cbafcc0e8 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_visual.inst.cfg index 31aaa88fc1f..d4562bf3a2c 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_engineering.inst.cfg index 84c80685634..af9c92d891a 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_visual.inst.cfg index c9455300ecd..99ff066ecc1 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm_quick.inst.cfg index b657f45d71a..9ea2f46ec11 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm_quick.inst.cfg index f4e1bab7629..fc200dd76c8 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg index 7b919a96f53..dc4a8e87341 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg index 908186790eb..e74ed67f23b 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg index 6f90ea70acd..e20abaae698 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg index 43edfa3548d..17a78ae0f42 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg index 62a6fb4fdff..1738a2a7d4c 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg index c8ead2040c9..20d5b34c303 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg index c77fa51e12e..663980f2e9c 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg index a0d9fb34e50..75aab7d69f8 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg index eab329b62b8..db1684399e6 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg index de4a5cf6d2a..6613e5fa4ba 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg index b0057d80ed2..e03d98bbd8e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg index 142c9960d14..cbb246eda0c 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg index a251a24a6e7..056ecd41770 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg index f918839805a..2bd5ad82d57 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg index da575d938f9..ac93bc17d5d 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg index c4b84e20533..a6d971eb51b 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg index b12ea3e1e6f..a2f07990b8f 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg index f7a0557a60f..be73a3ad1b9 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg index 464c17a4308..9764374cd2d 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg index 446f68db01e..9f15ad8ed6e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg index cd8490c5045..4736d18dae1 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg index 5f6d7ee67b1..7b2b42ae0b5 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg index 2dcc5e18509..4eb56441b38 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg index 248fee213c6..ce5666e06a1 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg index d3c5a2cb0d7..de02366f812 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg index ea2b547829f..bd2f1f1b9c3 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg index 1a3db01b5e7..15891975a30 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg index c0c3ccc3836..ef32bc56db1 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg index dd54779d5da..6ef21ed75f4 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg index ac3173d5c21..34b0afb5b18 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg index 411d22b0abc..0f4db503b24 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg index 9a3c677fe91..70f539cfe89 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg index aea6b01bff2..eedc26a9475 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg index 14195283728..3831ec4895e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg index 4a1ab82c04e..9f4de00ec60 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg index f066438a257..0eef7bf1eda 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg index 8281aefcf04..ded0f97db31 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg index 15804a08211..78813503468 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg index 0c5210e5b23..10e967fc412 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg index 4c1898658bb..f6defe9a0c5 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg index f69ca749155..cf05092f62f 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = superdraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg index ed5a152040b..83c84bf1624 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg index d723ee511fb..5990c5cb2b7 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg index 8959431e83e..01fa9a6e911 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg index 623ae45d75c..5584c5e00a6 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg index 994f21610e0..eba95b253b8 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = superdraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg index 9e15b423a21..56887755724 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg index c0bdc89f87a..efbe56dee75 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg index a3dce2468cc..95716c5d9f0 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg index 3d04b22ffab..c32dce45b5e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg index 8976d8902c9..8f24be0b25e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg index bf180f24e3b..cc382d57f53 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg index e53ae6a7dc9..b2708141539 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg index 9471e497141..ddb8021eba5 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg index 912a50d05ce..c844739f285 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg index c6e45c7f896..1e60bc88066 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg index e3da6ecedbb..f4a6913edcd 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_engineering.inst.cfg index 502547c056b..ba99c577498 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg index 5141dba9475..e6b4075cd83 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_engineering.inst.cfg index 796c2b39c2c..10127fb3fc1 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg index 6ce13e175fe..48b90a7c692 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_engineering.inst.cfg index 99778037cb7..877143419b5 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg index ceea80d7fd6..ad94617c151 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_engineering.inst.cfg index ec3ae4c8ac9..6bc6a2725e2 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.6 diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index 2f4ea429a75..d22f44e19e9 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = q010 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index 59e028f9d9d..d7e03a5348b 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = q015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index 8de69b4d8d4..e663e68a4c5 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = q015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index 4dd79af2b2e..0d854c132e7 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = q020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_quick.inst.cfg index ea85344a436..a297d027997 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = q020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index 8d85083a2b0..047208076f1 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = q020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.25_quick.inst.cfg index 7dad65fadc9..9c58a24882d 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = q025 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.30_quick.inst.cfg index 3d3ea1858a2..f008edb43da 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = q030 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index d132622930c..658b6ac44bb 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = q010 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index fdb0f4c4437..19c36c46e83 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = q015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index 266774c67fb..44284f4642d 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = q015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index d8544e80aee..6d208856f29 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = q020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_quick.inst.cfg index 4883a59ca8b..f967de3d145 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = q020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index 45c5f8efb79..c838f0874d6 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = q020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.25_quick.inst.cfg index 1766ed7762d..fc18580ee5a 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = q025 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.30_quick.inst.cfg index e3effc7247a..bd7f577015c 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = q030 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index 4b26c6f8d28..a93308863b5 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = q010 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index 03ead6e755f..65253671d69 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = q015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index 4ec6a43fc3a..8ceb763be83 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = q015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index 380b25ec39a..d73f209556a 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = q020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_quick.inst.cfg index de4a124a632..c3e9e2aba35 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = q020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index 9406777b94b..d885c8a731a 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = q020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.25_quick.inst.cfg index 295313baf9e..9a7d9be4886 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = q025 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.30_quick.inst.cfg index bf3880d4a5d..0165ae7ad85 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = q030 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index 1b5440da224..162e4441a38 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index 7eedd16f1d7..07719831a39 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index b3249837d45..93e329110e5 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index 133b2403b09..a3f1130928a 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_quick.inst.cfg index 7fd74b45e0b..18f7ee286ca 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index 1c36175ac57..1c1c9aa789b 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.25_quick.inst.cfg index d683c6f889c..a853d12a340 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.30_quick.inst.cfg index 590790f820d..9414a124470 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index 1bcc1d1ef3e..3b8ddec8101 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index 7e8356dab71..14100af127b 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index 09326033b72..54aec6ef6fd 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index 8ddf724274a..ce797bd5a32 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_quick.inst.cfg index 11a5cf6bf4f..8429f26ad55 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index 576892e25f8..8db18e54458 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.25_quick.inst.cfg index e9ecec5b4b8..5b83e0f77bd 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.30_quick.inst.cfg index de644ce01be..1ca0f4c2a7e 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index ca21b4caba5..33d6a1c897c 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index 34edf422d1d..8de74ecd6c5 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index 1113fd75a7a..411b4d5b397 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index 277d0a16497..2bc167470c0 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_quick.inst.cfg index 7f7e8ca1577..3eea60ab406 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index 63e2723f410..ae86f86f119 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.25_quick.inst.cfg index c64f4660dd2..4fed70ca47d 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.30_quick.inst.cfg index eedf055bb8d..3261669acd8 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/Leapfrog_Bolt_Pro/Leapfrog_Bolt_Pro_global_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/Leapfrog_Bolt_Pro_global_standard.inst.cfg index 0f079c315fc..b81f16ec61d 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/Leapfrog_Bolt_Pro_global_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/Leapfrog_Bolt_Pro_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg index 59fec06a3ef..d0c72198572 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_abs_natural quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4 weight = 0 diff --git a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg index 549c24a6c6b..1e9a2e43f5c 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_abs_natural quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = NozzleX 0.4 weight = 0 diff --git a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg index 145cd34ead9..a6640512a3f 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_epla_natural quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4 weight = 0 diff --git a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg index e6e2cb78a00..5be2675226f 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_epla_natural quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = NozzleX 0.4 weight = 0 diff --git a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg index 56587fe8838..cf8577fdd91 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_pva_natural quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4 weight = 0 diff --git a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg index 10353f61103..ef2a78edca2 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_pva_natural quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = NozzleX 0.4 weight = 0 diff --git a/resources/quality/abax_pri3/apri3_pla_fast.inst.cfg b/resources/quality/abax_pri3/apri3_pla_fast.inst.cfg index 910acc73e55..9acf14f5931 100644 --- a/resources/quality/abax_pri3/apri3_pla_fast.inst.cfg +++ b/resources/quality/abax_pri3/apri3_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/abax_pri3/apri3_pla_high.inst.cfg b/resources/quality/abax_pri3/apri3_pla_high.inst.cfg index aea37fb13f2..f293b9f43a5 100644 --- a/resources/quality/abax_pri3/apri3_pla_high.inst.cfg +++ b/resources/quality/abax_pri3/apri3_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/abax_pri3/apri3_pla_normal.inst.cfg b/resources/quality/abax_pri3/apri3_pla_normal.inst.cfg index 8f5ac4aa338..3af1a557a50 100644 --- a/resources/quality/abax_pri3/apri3_pla_normal.inst.cfg +++ b/resources/quality/abax_pri3/apri3_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/abax_pri5/apri5_pla_fast.inst.cfg b/resources/quality/abax_pri5/apri5_pla_fast.inst.cfg index 032d1b817e1..8264717b80c 100644 --- a/resources/quality/abax_pri5/apri5_pla_fast.inst.cfg +++ b/resources/quality/abax_pri5/apri5_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/abax_pri5/apri5_pla_high.inst.cfg b/resources/quality/abax_pri5/apri5_pla_high.inst.cfg index 6380dc18ef9..d210d49036f 100644 --- a/resources/quality/abax_pri5/apri5_pla_high.inst.cfg +++ b/resources/quality/abax_pri5/apri5_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/abax_pri5/apri5_pla_normal.inst.cfg b/resources/quality/abax_pri5/apri5_pla_normal.inst.cfg index c3576521570..e1ce9538fb9 100644 --- a/resources/quality/abax_pri5/apri5_pla_normal.inst.cfg +++ b/resources/quality/abax_pri5/apri5_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/abax_titan/atitan_pla_fast.inst.cfg b/resources/quality/abax_titan/atitan_pla_fast.inst.cfg index c235e36996a..09cebca9c2e 100644 --- a/resources/quality/abax_titan/atitan_pla_fast.inst.cfg +++ b/resources/quality/abax_titan/atitan_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/abax_titan/atitan_pla_high.inst.cfg b/resources/quality/abax_titan/atitan_pla_high.inst.cfg index b3b5295366a..af299953630 100644 --- a/resources/quality/abax_titan/atitan_pla_high.inst.cfg +++ b/resources/quality/abax_titan/atitan_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/abax_titan/atitan_pla_normal.inst.cfg b/resources/quality/abax_titan/atitan_pla_normal.inst.cfg index aab42f4f4c5..2bc6d4ef85c 100644 --- a/resources/quality/abax_titan/atitan_pla_normal.inst.cfg +++ b/resources/quality/abax_titan/atitan_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/ankermake_m5/ankermake_m5_draft.inst.cfg b/resources/quality/ankermake_m5/ankermake_m5_draft.inst.cfg index 0570c1cd400..653fe519851 100644 --- a/resources/quality/ankermake_m5/ankermake_m5_draft.inst.cfg +++ b/resources/quality/ankermake_m5/ankermake_m5_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/ankermake_m5/ankermake_m5_fine.inst.cfg b/resources/quality/ankermake_m5/ankermake_m5_fine.inst.cfg index 2aac68b60cd..b51b9ab3575 100644 --- a/resources/quality/ankermake_m5/ankermake_m5_fine.inst.cfg +++ b/resources/quality/ankermake_m5/ankermake_m5_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/ankermake_m5/ankermake_m5_normal.inst.cfg b/resources/quality/ankermake_m5/ankermake_m5_normal.inst.cfg index 5c2193dacf2..144d56eca60 100644 --- a/resources/quality/ankermake_m5/ankermake_m5_normal.inst.cfg +++ b/resources/quality/ankermake_m5/ankermake_m5_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_draft.inst.cfg b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_draft.inst.cfg index 7100f73522c..10e78081b9d 100644 --- a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_draft.inst.cfg +++ b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_high.inst.cfg b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_high.inst.cfg index 07acba4e3d6..9e4aee0e440 100644 --- a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_high.inst.cfg +++ b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_normal.inst.cfg b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_normal.inst.cfg index 53f1785709e..32d10397bce 100644 --- a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_normal.inst.cfg +++ b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_4max/anycubic_4max_draft.inst.cfg b/resources/quality/anycubic_4max/anycubic_4max_draft.inst.cfg index 42b5ce116df..1a1b8572bb0 100644 --- a/resources/quality/anycubic_4max/anycubic_4max_draft.inst.cfg +++ b/resources/quality/anycubic_4max/anycubic_4max_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_4max/anycubic_4max_high.inst.cfg b/resources/quality/anycubic_4max/anycubic_4max_high.inst.cfg index 0565f91e057..af3b74fc0c0 100644 --- a/resources/quality/anycubic_4max/anycubic_4max_high.inst.cfg +++ b/resources/quality/anycubic_4max/anycubic_4max_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_4max/anycubic_4max_normal.inst.cfg b/resources/quality/anycubic_4max/anycubic_4max_normal.inst.cfg index 003f787aac8..18c0acaf011 100644 --- a/resources/quality/anycubic_4max/anycubic_4max_normal.inst.cfg +++ b/resources/quality/anycubic_4max/anycubic_4max_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_draft.inst.cfg b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_draft.inst.cfg index c1e54314baf..a100908a537 100644 --- a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_draft.inst.cfg +++ b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_high.inst.cfg b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_high.inst.cfg index 0f0fa7e70da..41fc5c20aeb 100644 --- a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_high.inst.cfg +++ b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_normal.inst.cfg b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_normal.inst.cfg index 8ae13498b41..898c3e131aa 100644 --- a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_normal.inst.cfg +++ b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_draft.inst.cfg b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_draft.inst.cfg index 06ff5899b6e..be43f63425f 100644 --- a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_draft.inst.cfg +++ b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_high.inst.cfg b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_high.inst.cfg index 20890528ae2..9d8b7c99198 100644 --- a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_high.inst.cfg +++ b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_normal.inst.cfg b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_normal.inst.cfg index f09dd654b84..b57341f9a25 100644 --- a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_normal.inst.cfg +++ b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_draft.inst.cfg b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_draft.inst.cfg index 44c435f79a8..e358bb9e172 100644 --- a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_draft.inst.cfg +++ b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_high.inst.cfg b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_high.inst.cfg index 3e35582b03a..8663045149d 100644 --- a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_high.inst.cfg +++ b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_normal.inst.cfg b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_normal.inst.cfg index df146144ca5..8e3d3abc54e 100644 --- a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_normal.inst.cfg +++ b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg b/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg index 662e3cc7c43..c9de15f7925 100644 --- a/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg +++ b/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg b/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg index bcf355d7f46..1b8db2a1e0d 100644 --- a/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg +++ b/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg b/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg index bd8a9bae433..df989f6adc7 100644 --- a/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg +++ b/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_draft.inst.cfg b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_draft.inst.cfg index 2902ef4f534..3d372ceef1b 100644 --- a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_draft.inst.cfg +++ b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_high.inst.cfg b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_high.inst.cfg index 32ea52665ae..d5d27481a0c 100644 --- a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_high.inst.cfg +++ b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_normal.inst.cfg b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_normal.inst.cfg index 320e39eaa29..73910af2338 100644 --- a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_normal.inst.cfg +++ b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_draft.inst.cfg b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_draft.inst.cfg index 1045f06adc6..bb1ba766611 100644 --- a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_draft.inst.cfg +++ b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_high.inst.cfg b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_high.inst.cfg index f400daeb352..6806a23c2b8 100644 --- a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_high.inst.cfg +++ b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_normal.inst.cfg b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_normal.inst.cfg index 2ac1ab0dc7b..4ce99960430 100644 --- a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_normal.inst.cfg +++ b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_kobra/anycubic_kobra_abs.inst.cfg b/resources/quality/anycubic_kobra/anycubic_kobra_abs.inst.cfg index 52a0365291d..824d4e6fa54 100644 --- a/resources/quality/anycubic_kobra/anycubic_kobra_abs.inst.cfg +++ b/resources/quality/anycubic_kobra/anycubic_kobra_abs.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = abs -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_kobra/anycubic_kobra_pla.inst.cfg b/resources/quality/anycubic_kobra/anycubic_kobra_pla.inst.cfg index a0222dcf7fa..6a0462b35bb 100644 --- a/resources/quality/anycubic_kobra/anycubic_kobra_pla.inst.cfg +++ b/resources/quality/anycubic_kobra/anycubic_kobra_pla.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = pla -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_kobra/anycubic_kobra_tpu.inst.cfg b/resources/quality/anycubic_kobra/anycubic_kobra_tpu.inst.cfg index e6a92a2f571..4be68e74e51 100644 --- a/resources/quality/anycubic_kobra/anycubic_kobra_tpu.inst.cfg +++ b/resources/quality/anycubic_kobra/anycubic_kobra_tpu.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = tpu -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_abs.inst.cfg b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_abs.inst.cfg index da09c0d2c26..0b9632a9c97 100644 --- a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_abs.inst.cfg +++ b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_abs.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_abs quality_type = abs -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_pla.inst.cfg b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_pla.inst.cfg index 01869b9db50..2d91d4c5840 100644 --- a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_pla.inst.cfg +++ b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_pla.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = pla -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_tpu.inst.cfg b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_tpu.inst.cfg index 971664b1238..93bfca84fef 100644 --- a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_tpu.inst.cfg +++ b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_tpu.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_tpu quality_type = tpu -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_kobra_max/anycubic_kobra_max_pla.inst.cfg b/resources/quality/anycubic_kobra_max/anycubic_kobra_max_pla.inst.cfg index 34f0ef1268c..e04940df10e 100644 --- a/resources/quality/anycubic_kobra_max/anycubic_kobra_max_pla.inst.cfg +++ b/resources/quality/anycubic_kobra_max/anycubic_kobra_max_pla.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = pla -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_kobra_max/anycubic_kobra_max_tpu.inst.cfg b/resources/quality/anycubic_kobra_max/anycubic_kobra_max_tpu.inst.cfg index 36788383bbb..ce518fc4e11 100644 --- a/resources/quality/anycubic_kobra_max/anycubic_kobra_max_tpu.inst.cfg +++ b/resources/quality/anycubic_kobra_max/anycubic_kobra_max_tpu.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = tpu -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_kobra_plus/anycubic_kobra_plus_normal.inst.cfg b/resources/quality/anycubic_kobra_plus/anycubic_kobra_plus_normal.inst.cfg index 47983fe3b13..7ac90930a98 100644 --- a/resources/quality/anycubic_kobra_plus/anycubic_kobra_plus_normal.inst.cfg +++ b/resources/quality/anycubic_kobra_plus/anycubic_kobra_plus_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_draft.inst.cfg b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_draft.inst.cfg index 6579e5f77b3..ffdbb120386 100644 --- a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_draft.inst.cfg +++ b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_high.inst.cfg b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_high.inst.cfg index 01b6fa8039c..69ea4437368 100644 --- a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_high.inst.cfg +++ b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_normal.inst.cfg b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_normal.inst.cfg index 16ec95bd61b..23467c9bc3d 100644 --- a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_normal.inst.cfg +++ b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_predator/predator_coarse.inst.cfg b/resources/quality/anycubic_predator/predator_coarse.inst.cfg index d0b25f3d86d..cecac7c4176 100644 --- a/resources/quality/anycubic_predator/predator_coarse.inst.cfg +++ b/resources/quality/anycubic_predator/predator_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/anycubic_predator/predator_draft.inst.cfg b/resources/quality/anycubic_predator/predator_draft.inst.cfg index 6817b49bf9f..b675f04ca41 100644 --- a/resources/quality/anycubic_predator/predator_draft.inst.cfg +++ b/resources/quality/anycubic_predator/predator_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_predator/predator_extra_coarse.inst.cfg b/resources/quality/anycubic_predator/predator_extra_coarse.inst.cfg index 48c388b8455..21b398c1bbc 100644 --- a/resources/quality/anycubic_predator/predator_extra_coarse.inst.cfg +++ b/resources/quality/anycubic_predator/predator_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Xcoarse -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/anycubic_predator/predator_extra_fine.inst.cfg b/resources/quality/anycubic_predator/predator_extra_fine.inst.cfg index 3d162850831..0b4735578c3 100644 --- a/resources/quality/anycubic_predator/predator_extra_fine.inst.cfg +++ b/resources/quality/anycubic_predator/predator_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Xfine -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_predator/predator_fine.inst.cfg b/resources/quality/anycubic_predator/predator_fine.inst.cfg index 704ddbecc53..0d3015814d1 100644 --- a/resources/quality/anycubic_predator/predator_fine.inst.cfg +++ b/resources/quality/anycubic_predator/predator_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_predator/predator_normal.inst.cfg b/resources/quality/anycubic_predator/predator_normal.inst.cfg index d2f46d49fb3..a684d4d35b9 100644 --- a/resources/quality/anycubic_predator/predator_normal.inst.cfg +++ b/resources/quality/anycubic_predator/predator_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/artillery/ABS/artillery_0.2_ABS_super.inst.cfg b/resources/quality/artillery/ABS/artillery_0.2_ABS_super.inst.cfg index 2494ab41c8d..11acec995db 100644 --- a/resources/quality/artillery/ABS/artillery_0.2_ABS_super.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.2_ABS_ultra.inst.cfg b/resources/quality/artillery/ABS/artillery_0.2_ABS_ultra.inst.cfg index 18471cfe93f..c7666a95ec4 100644 --- a/resources/quality/artillery/ABS/artillery_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.3_ABS_adaptive.inst.cfg b/resources/quality/artillery/ABS/artillery_0.3_ABS_adaptive.inst.cfg index b72fd9065df..a3f3a42ca61 100644 --- a/resources/quality/artillery/ABS/artillery_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.3_ABS_low.inst.cfg b/resources/quality/artillery/ABS/artillery_0.3_ABS_low.inst.cfg index 467cc928c8d..5128f6fe3f7 100644 --- a/resources/quality/artillery/ABS/artillery_0.3_ABS_low.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.3_ABS_standard.inst.cfg b/resources/quality/artillery/ABS/artillery_0.3_ABS_standard.inst.cfg index ef8c7f8be94..f1931b93e99 100644 --- a/resources/quality/artillery/ABS/artillery_0.3_ABS_standard.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.3_ABS_super.inst.cfg b/resources/quality/artillery/ABS/artillery_0.3_ABS_super.inst.cfg index 81b2e8dce0e..2fb224f03ad 100644 --- a/resources/quality/artillery/ABS/artillery_0.3_ABS_super.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.4_ABS_adaptive.inst.cfg b/resources/quality/artillery/ABS/artillery_0.4_ABS_adaptive.inst.cfg index 58cb101bd12..117f78ff384 100644 --- a/resources/quality/artillery/ABS/artillery_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.4_ABS_low.inst.cfg b/resources/quality/artillery/ABS/artillery_0.4_ABS_low.inst.cfg index 8ac08cff99f..add5e339d49 100644 --- a/resources/quality/artillery/ABS/artillery_0.4_ABS_low.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.4_ABS_standard.inst.cfg b/resources/quality/artillery/ABS/artillery_0.4_ABS_standard.inst.cfg index 79131e8e274..0eb908acf63 100644 --- a/resources/quality/artillery/ABS/artillery_0.4_ABS_standard.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.4_ABS_super.inst.cfg b/resources/quality/artillery/ABS/artillery_0.4_ABS_super.inst.cfg index ff27e50cae3..25983e79c28 100644 --- a/resources/quality/artillery/ABS/artillery_0.4_ABS_super.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.5_ABS_adaptive.inst.cfg b/resources/quality/artillery/ABS/artillery_0.5_ABS_adaptive.inst.cfg index 30baac9a32f..6980b4c848f 100644 --- a/resources/quality/artillery/ABS/artillery_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.5_ABS_low.inst.cfg b/resources/quality/artillery/ABS/artillery_0.5_ABS_low.inst.cfg index 1a96e7a128f..549506a69ad 100644 --- a/resources/quality/artillery/ABS/artillery_0.5_ABS_low.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.5_ABS_standard.inst.cfg b/resources/quality/artillery/ABS/artillery_0.5_ABS_standard.inst.cfg index 7a83721c7a9..d6136c9f177 100644 --- a/resources/quality/artillery/ABS/artillery_0.5_ABS_standard.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.5_ABS_super.inst.cfg b/resources/quality/artillery/ABS/artillery_0.5_ABS_super.inst.cfg index 18323af856e..258a45ba893 100644 --- a/resources/quality/artillery/ABS/artillery_0.5_ABS_super.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.6_ABS_standard.inst.cfg b/resources/quality/artillery/ABS/artillery_0.6_ABS_standard.inst.cfg index a83f31e6ea7..1c556e55640 100644 --- a/resources/quality/artillery/ABS/artillery_0.6_ABS_standard.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.8_ABS_draft.inst.cfg b/resources/quality/artillery/ABS/artillery_0.8_ABS_draft.inst.cfg index 04b5256bd0f..bad27f445d5 100644 --- a/resources/quality/artillery/ABS/artillery_0.8_ABS_draft.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_1.0_ABS_draft.inst.cfg b/resources/quality/artillery/ABS/artillery_1.0_ABS_draft.inst.cfg index c1ff99aa05d..7fd0913c5ef 100644 --- a/resources/quality/artillery/ABS/artillery_1.0_ABS_draft.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.2_PETG_super.inst.cfg b/resources/quality/artillery/PETG/artillery_0.2_PETG_super.inst.cfg index 2c9681732da..c27c00e6d93 100644 --- a/resources/quality/artillery/PETG/artillery_0.2_PETG_super.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.2_PETG_ultra.inst.cfg b/resources/quality/artillery/PETG/artillery_0.2_PETG_ultra.inst.cfg index 0d2b8f11eb6..84099e707d0 100644 --- a/resources/quality/artillery/PETG/artillery_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.3_PETG_adaptive.inst.cfg b/resources/quality/artillery/PETG/artillery_0.3_PETG_adaptive.inst.cfg index e97603e9714..d8ab5b47088 100644 --- a/resources/quality/artillery/PETG/artillery_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.3_PETG_low.inst.cfg b/resources/quality/artillery/PETG/artillery_0.3_PETG_low.inst.cfg index af3c4ee0402..859d7010b19 100644 --- a/resources/quality/artillery/PETG/artillery_0.3_PETG_low.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.3_PETG_standard.inst.cfg b/resources/quality/artillery/PETG/artillery_0.3_PETG_standard.inst.cfg index c30f59b5ebb..121e957c300 100644 --- a/resources/quality/artillery/PETG/artillery_0.3_PETG_standard.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.3_PETG_super.inst.cfg b/resources/quality/artillery/PETG/artillery_0.3_PETG_super.inst.cfg index 7a5eff86ffe..92551aa821c 100644 --- a/resources/quality/artillery/PETG/artillery_0.3_PETG_super.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.4_PETG_adaptive.inst.cfg b/resources/quality/artillery/PETG/artillery_0.4_PETG_adaptive.inst.cfg index d654b8faade..776636a8fd1 100644 --- a/resources/quality/artillery/PETG/artillery_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.4_PETG_low.inst.cfg b/resources/quality/artillery/PETG/artillery_0.4_PETG_low.inst.cfg index 0baa04e044d..daceab0a294 100644 --- a/resources/quality/artillery/PETG/artillery_0.4_PETG_low.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.4_PETG_standard.inst.cfg b/resources/quality/artillery/PETG/artillery_0.4_PETG_standard.inst.cfg index 3d9c96953e0..50314b8361b 100644 --- a/resources/quality/artillery/PETG/artillery_0.4_PETG_standard.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.4_PETG_super.inst.cfg b/resources/quality/artillery/PETG/artillery_0.4_PETG_super.inst.cfg index 81fa019be81..2f4b5206de6 100644 --- a/resources/quality/artillery/PETG/artillery_0.4_PETG_super.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.5_PETG_adaptive.inst.cfg b/resources/quality/artillery/PETG/artillery_0.5_PETG_adaptive.inst.cfg index 447b328688a..207b81227e9 100644 --- a/resources/quality/artillery/PETG/artillery_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.5_PETG_low.inst.cfg b/resources/quality/artillery/PETG/artillery_0.5_PETG_low.inst.cfg index 70a4decabf2..24cf0d5390d 100644 --- a/resources/quality/artillery/PETG/artillery_0.5_PETG_low.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.5_PETG_standard.inst.cfg b/resources/quality/artillery/PETG/artillery_0.5_PETG_standard.inst.cfg index f738879edaf..8b6b8a05993 100644 --- a/resources/quality/artillery/PETG/artillery_0.5_PETG_standard.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.5_PETG_super.inst.cfg b/resources/quality/artillery/PETG/artillery_0.5_PETG_super.inst.cfg index 0fa123d7b39..48a329febc5 100644 --- a/resources/quality/artillery/PETG/artillery_0.5_PETG_super.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.6_PETG_standard.inst.cfg b/resources/quality/artillery/PETG/artillery_0.6_PETG_standard.inst.cfg index 2ea0e2d35d1..d9230a63981 100644 --- a/resources/quality/artillery/PETG/artillery_0.6_PETG_standard.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.8_PETG_draft.inst.cfg b/resources/quality/artillery/PETG/artillery_0.8_PETG_draft.inst.cfg index fcd245f96db..2f923948922 100644 --- a/resources/quality/artillery/PETG/artillery_0.8_PETG_draft.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_1.0_PETG_draft.inst.cfg b/resources/quality/artillery/PETG/artillery_1.0_PETG_draft.inst.cfg index 6cdd2dd4354..4c58a5698e9 100644 --- a/resources/quality/artillery/PETG/artillery_1.0_PETG_draft.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.2_PLA_super.inst.cfg b/resources/quality/artillery/PLA/artillery_0.2_PLA_super.inst.cfg index c63856afd59..8ec277000a2 100644 --- a/resources/quality/artillery/PLA/artillery_0.2_PLA_super.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.2_PLA_ultra.inst.cfg b/resources/quality/artillery/PLA/artillery_0.2_PLA_ultra.inst.cfg index 91fb63af226..f020dd2225a 100644 --- a/resources/quality/artillery/PLA/artillery_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.3_PLA_adaptive.inst.cfg b/resources/quality/artillery/PLA/artillery_0.3_PLA_adaptive.inst.cfg index a7f8e38f123..a8ead0ef611 100644 --- a/resources/quality/artillery/PLA/artillery_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.3_PLA_low.inst.cfg b/resources/quality/artillery/PLA/artillery_0.3_PLA_low.inst.cfg index 6bf0e70f966..201cc59e1df 100644 --- a/resources/quality/artillery/PLA/artillery_0.3_PLA_low.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.3_PLA_standard.inst.cfg b/resources/quality/artillery/PLA/artillery_0.3_PLA_standard.inst.cfg index 217987265db..2bb875f22dd 100644 --- a/resources/quality/artillery/PLA/artillery_0.3_PLA_standard.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.3_PLA_super.inst.cfg b/resources/quality/artillery/PLA/artillery_0.3_PLA_super.inst.cfg index 312f20eb778..e6295131e68 100644 --- a/resources/quality/artillery/PLA/artillery_0.3_PLA_super.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.4_PLA_adaptive.inst.cfg b/resources/quality/artillery/PLA/artillery_0.4_PLA_adaptive.inst.cfg index 7f50db49369..71cef9cc68a 100644 --- a/resources/quality/artillery/PLA/artillery_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.4_PLA_low.inst.cfg b/resources/quality/artillery/PLA/artillery_0.4_PLA_low.inst.cfg index e2fc24f53bd..84905f95d90 100644 --- a/resources/quality/artillery/PLA/artillery_0.4_PLA_low.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.4_PLA_standard.inst.cfg b/resources/quality/artillery/PLA/artillery_0.4_PLA_standard.inst.cfg index b2f5fefdfe9..83c159d91fc 100644 --- a/resources/quality/artillery/PLA/artillery_0.4_PLA_standard.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.4_PLA_super.inst.cfg b/resources/quality/artillery/PLA/artillery_0.4_PLA_super.inst.cfg index 842a8833e6f..118494b3801 100644 --- a/resources/quality/artillery/PLA/artillery_0.4_PLA_super.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.5_PLA_adaptive.inst.cfg b/resources/quality/artillery/PLA/artillery_0.5_PLA_adaptive.inst.cfg index 946344995b7..e2b8eb9d5c0 100644 --- a/resources/quality/artillery/PLA/artillery_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.5_PLA_low.inst.cfg b/resources/quality/artillery/PLA/artillery_0.5_PLA_low.inst.cfg index 0c1f57dced1..ecd83573078 100644 --- a/resources/quality/artillery/PLA/artillery_0.5_PLA_low.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.5_PLA_standard.inst.cfg b/resources/quality/artillery/PLA/artillery_0.5_PLA_standard.inst.cfg index 19c810fad0b..46487edb08f 100644 --- a/resources/quality/artillery/PLA/artillery_0.5_PLA_standard.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.5_PLA_super.inst.cfg b/resources/quality/artillery/PLA/artillery_0.5_PLA_super.inst.cfg index b04f766a553..6d31588cf0d 100644 --- a/resources/quality/artillery/PLA/artillery_0.5_PLA_super.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.6_PLA_draft.inst.cfg b/resources/quality/artillery/PLA/artillery_0.6_PLA_draft.inst.cfg index 7bae27f1438..ea6dfa3f9e2 100644 --- a/resources/quality/artillery/PLA/artillery_0.6_PLA_draft.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.6_PLA_low.inst.cfg b/resources/quality/artillery/PLA/artillery_0.6_PLA_low.inst.cfg index b03d45d3ad9..2b281b57f7e 100644 --- a/resources/quality/artillery/PLA/artillery_0.6_PLA_low.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.6_PLA_standard.inst.cfg b/resources/quality/artillery/PLA/artillery_0.6_PLA_standard.inst.cfg index 32e11e0e66d..d349693711f 100644 --- a/resources/quality/artillery/PLA/artillery_0.6_PLA_standard.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.8_PLA_draft.inst.cfg b/resources/quality/artillery/PLA/artillery_0.8_PLA_draft.inst.cfg index 504ce9c63ac..08a00715be1 100644 --- a/resources/quality/artillery/PLA/artillery_0.8_PLA_draft.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_1.0_PLA_draft.inst.cfg b/resources/quality/artillery/PLA/artillery_1.0_PLA_draft.inst.cfg index 35bbb0a3b57..bd3c5127104 100644 --- a/resources/quality/artillery/PLA/artillery_1.0_PLA_draft.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.3_TPU_adaptive.inst.cfg b/resources/quality/artillery/TPU/artillery_0.3_TPU_adaptive.inst.cfg index 889d97872a4..964c5c1a829 100644 --- a/resources/quality/artillery/TPU/artillery_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.3_TPU_standard.inst.cfg b/resources/quality/artillery/TPU/artillery_0.3_TPU_standard.inst.cfg index 41b43ad93a2..c8df48da97a 100644 --- a/resources/quality/artillery/TPU/artillery_0.3_TPU_standard.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.3_TPU_super.inst.cfg b/resources/quality/artillery/TPU/artillery_0.3_TPU_super.inst.cfg index 32ae52bd351..c91abe6f606 100644 --- a/resources/quality/artillery/TPU/artillery_0.3_TPU_super.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.4_TPU_adaptive.inst.cfg b/resources/quality/artillery/TPU/artillery_0.4_TPU_adaptive.inst.cfg index 188f0535068..4f609193b97 100644 --- a/resources/quality/artillery/TPU/artillery_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.4_TPU_standard.inst.cfg b/resources/quality/artillery/TPU/artillery_0.4_TPU_standard.inst.cfg index e9f095caa4f..643d3f802ce 100644 --- a/resources/quality/artillery/TPU/artillery_0.4_TPU_standard.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.4_TPU_super.inst.cfg b/resources/quality/artillery/TPU/artillery_0.4_TPU_super.inst.cfg index 0d88514cc88..fd9770ad13e 100644 --- a/resources/quality/artillery/TPU/artillery_0.4_TPU_super.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.5_TPU_adaptive.inst.cfg b/resources/quality/artillery/TPU/artillery_0.5_TPU_adaptive.inst.cfg index a9ea17fa94a..7e20a4e4440 100644 --- a/resources/quality/artillery/TPU/artillery_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.5_TPU_standard.inst.cfg b/resources/quality/artillery/TPU/artillery_0.5_TPU_standard.inst.cfg index e831ef8c1c5..b172c720a66 100644 --- a/resources/quality/artillery/TPU/artillery_0.5_TPU_standard.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.5_TPU_super.inst.cfg b/resources/quality/artillery/TPU/artillery_0.5_TPU_super.inst.cfg index fcacad6c24b..8488194de36 100644 --- a/resources/quality/artillery/TPU/artillery_0.5_TPU_super.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.6_TPU_standard.inst.cfg b/resources/quality/artillery/TPU/artillery_0.6_TPU_standard.inst.cfg index ae01f298f0f..f19464ad8cf 100644 --- a/resources/quality/artillery/TPU/artillery_0.6_TPU_standard.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.8_TPU_draft.inst.cfg b/resources/quality/artillery/TPU/artillery_0.8_TPU_draft.inst.cfg index 2ce5883f07f..f49e7541acd 100644 --- a/resources/quality/artillery/TPU/artillery_0.8_TPU_draft.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_1.0_TPU_draft.inst.cfg b/resources/quality/artillery/TPU/artillery_1.0_TPU_draft.inst.cfg index 98be4f17761..7d21369ee53 100644 --- a/resources/quality/artillery/TPU/artillery_1.0_TPU_draft.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/artillery/artillery_global_adaptive.inst.cfg b/resources/quality/artillery/artillery_global_adaptive.inst.cfg index 4b9222e74ed..c38437a2b05 100644 --- a/resources/quality/artillery/artillery_global_adaptive.inst.cfg +++ b/resources/quality/artillery/artillery_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/artillery/artillery_global_draft.inst.cfg b/resources/quality/artillery/artillery_global_draft.inst.cfg index 0a615d65a8e..f2623b07ca2 100644 --- a/resources/quality/artillery/artillery_global_draft.inst.cfg +++ b/resources/quality/artillery/artillery_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/artillery/artillery_global_low.inst.cfg b/resources/quality/artillery/artillery_global_low.inst.cfg index da9ca07ad09..b68bb9cad02 100644 --- a/resources/quality/artillery/artillery_global_low.inst.cfg +++ b/resources/quality/artillery/artillery_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/artillery/artillery_global_standard.inst.cfg b/resources/quality/artillery/artillery_global_standard.inst.cfg index a30f5a3596b..3c4b7e3f3f9 100644 --- a/resources/quality/artillery/artillery_global_standard.inst.cfg +++ b/resources/quality/artillery/artillery_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/artillery/artillery_global_super.inst.cfg b/resources/quality/artillery/artillery_global_super.inst.cfg index 87ca064f924..e70190eb90d 100644 --- a/resources/quality/artillery/artillery_global_super.inst.cfg +++ b/resources/quality/artillery/artillery_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/artillery/artillery_global_ultra.inst.cfg b/resources/quality/artillery/artillery_global_ultra.inst.cfg index 00f75e3681a..850cc73f835 100644 --- a/resources/quality/artillery/artillery_global_ultra.inst.cfg +++ b/resources/quality/artillery/artillery_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/artillery/nylon/artillery_0.2_Nylon_super.inst.cfg b/resources/quality/artillery/nylon/artillery_0.2_Nylon_super.inst.cfg index df48b1e465d..9244ae9335b 100644 --- a/resources/quality/artillery/nylon/artillery_0.2_Nylon_super.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.2_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.2_Nylon_ultra.inst.cfg b/resources/quality/artillery/nylon/artillery_0.2_Nylon_ultra.inst.cfg index 442680d4d51..9523866c1df 100644 --- a/resources/quality/artillery/nylon/artillery_0.2_Nylon_ultra.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.2_Nylon_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.3_Nylon_adaptive.inst.cfg b/resources/quality/artillery/nylon/artillery_0.3_Nylon_adaptive.inst.cfg index e23792a6fcf..f59bf7aaf9c 100644 --- a/resources/quality/artillery/nylon/artillery_0.3_Nylon_adaptive.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.3_Nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.3_Nylon_low.inst.cfg b/resources/quality/artillery/nylon/artillery_0.3_Nylon_low.inst.cfg index 4a27e7e3b28..7ca002b987b 100644 --- a/resources/quality/artillery/nylon/artillery_0.3_Nylon_low.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.3_Nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.3_Nylon_standard.inst.cfg b/resources/quality/artillery/nylon/artillery_0.3_Nylon_standard.inst.cfg index d8c593629fd..ba93b1d995c 100644 --- a/resources/quality/artillery/nylon/artillery_0.3_Nylon_standard.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.3_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.3_Nylon_super.inst.cfg b/resources/quality/artillery/nylon/artillery_0.3_Nylon_super.inst.cfg index c5b1f436762..1ba4d7b89f2 100644 --- a/resources/quality/artillery/nylon/artillery_0.3_Nylon_super.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.3_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.4_Nylon_adaptive.inst.cfg b/resources/quality/artillery/nylon/artillery_0.4_Nylon_adaptive.inst.cfg index ec9fbc5d512..3a738b966ff 100644 --- a/resources/quality/artillery/nylon/artillery_0.4_Nylon_adaptive.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.4_Nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.4_Nylon_low.inst.cfg b/resources/quality/artillery/nylon/artillery_0.4_Nylon_low.inst.cfg index 1865da04549..10ea2fe33ff 100644 --- a/resources/quality/artillery/nylon/artillery_0.4_Nylon_low.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.4_Nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.4_Nylon_standard.inst.cfg b/resources/quality/artillery/nylon/artillery_0.4_Nylon_standard.inst.cfg index beddca58ae3..7b40781160e 100644 --- a/resources/quality/artillery/nylon/artillery_0.4_Nylon_standard.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.4_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.4_Nylon_super.inst.cfg b/resources/quality/artillery/nylon/artillery_0.4_Nylon_super.inst.cfg index 9806fe11108..1bfa6501b86 100644 --- a/resources/quality/artillery/nylon/artillery_0.4_Nylon_super.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.4_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.5_Nylon_adaptive.inst.cfg b/resources/quality/artillery/nylon/artillery_0.5_Nylon_adaptive.inst.cfg index 608f1288a79..68e9d252315 100644 --- a/resources/quality/artillery/nylon/artillery_0.5_Nylon_adaptive.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.5_Nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.5_Nylon_low.inst.cfg b/resources/quality/artillery/nylon/artillery_0.5_Nylon_low.inst.cfg index 0667e04e5b8..055614c812b 100644 --- a/resources/quality/artillery/nylon/artillery_0.5_Nylon_low.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.5_Nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.5_Nylon_standard.inst.cfg b/resources/quality/artillery/nylon/artillery_0.5_Nylon_standard.inst.cfg index 212526e52c1..37f8e3ca188 100644 --- a/resources/quality/artillery/nylon/artillery_0.5_Nylon_standard.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.5_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.5_Nylon_super.inst.cfg b/resources/quality/artillery/nylon/artillery_0.5_Nylon_super.inst.cfg index 7c9931026c8..ea878073401 100644 --- a/resources/quality/artillery/nylon/artillery_0.5_Nylon_super.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.5_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.6_Nylon_standard.inst.cfg b/resources/quality/artillery/nylon/artillery_0.6_Nylon_standard.inst.cfg index 67fab7e1297..a4d8b5cf892 100644 --- a/resources/quality/artillery/nylon/artillery_0.6_Nylon_standard.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.6_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.8_Nylon_draft.inst.cfg b/resources/quality/artillery/nylon/artillery_0.8_Nylon_draft.inst.cfg index 477864dd2fb..450ff10e653 100644 --- a/resources/quality/artillery/nylon/artillery_0.8_Nylon_draft.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.8_Nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_1.0_Nylon_draft.inst.cfg b/resources/quality/artillery/nylon/artillery_1.0_Nylon_draft.inst.cfg index 3247349db6f..651b7b91ce1 100644 --- a/resources/quality/artillery/nylon/artillery_1.0_Nylon_draft.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_1.0_Nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_extrafast_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_extrafast_quality.inst.cfg index 4a20a7b9c81..c618f22ec61 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_extrafast_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_extrafast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_extrafine_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_extrafine_quality.inst.cfg index 805bd9ac2ef..9045688eb56 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_extrafine_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_extrafine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_fast_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_fast_quality.inst.cfg index a0bad4bd6fc..c20770e7eb4 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_fast_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_fast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_fine_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_fine_quality.inst.cfg index 454d4bd066a..21a9b4977d2 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_fine_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_fine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_normal_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_normal_quality.inst.cfg index a51bb0e40a0..5783d4035ed 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_normal_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_normal_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_sprint_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_sprint_quality.inst.cfg index 3285ac2f7fb..ebf22409812 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_sprint_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_sprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_supersprint_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_supersprint_quality.inst.cfg index 7c6bbd87177..45ac5f30e18 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_supersprint_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_supersprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_ultrasprint_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_ultrasprint_quality.inst.cfg index 8fc83c12f1b..abea65986db 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_ultrasprint_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_ultrasprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_extrafast.inst.cfg index 8aece3d5e67..92112915038 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fast.inst.cfg index e1faf41888d..0037dc8e3be 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fine.inst.cfg index 02ff6d5e636..7814f10d5ad 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_normal.inst.cfg index 0d0a89e4cfc..f4f52b4f641 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_extrafast.inst.cfg index 3e79486620c..7e0700c9127 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fast.inst.cfg index 9aaadf6456c..f31ac3b7631 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fine.inst.cfg index 1d9e208e7e4..da88ed8e0a8 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_normal.inst.cfg index 72e8ad4951a..b5f6a23b1a0 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_extrafast.inst.cfg index 0e1f420c0a9..cfe64233116 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fast.inst.cfg index badfe12feee..f12e118679b 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fine.inst.cfg index 1940b724b43..cfd4c48e3c9 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_normal.inst.cfg index d62cced041c..e2267a15be7 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_extrafast.inst.cfg index 95e4eda1cc8..4895e1bad9e 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fast.inst.cfg index 4cab5ed3926..594c8cc3404 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fine.inst.cfg index 9cc4a1c86f0..f98243c8706 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_normal.inst.cfg index ab3be954b32..9a392d3fe7a 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_extrafast.inst.cfg index a3c927e449f..204bc3c6ce1 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fast.inst.cfg index 01df85d5e59..8b70a44c017 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fine.inst.cfg index 6bf277081a3..8674f58cd12 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_normal.inst.cfg index 674ff8d7462..f9e1c1575a4 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_extrafast.inst.cfg index c60aecae73c..b6bd7593374 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fast.inst.cfg index 1bd6efc9981..1aa556f1898 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fine.inst.cfg index 799d7770873..cd021a0cbcd 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_normal.inst.cfg index 1d609a9b5b5..6b4a6173944 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_extrafast.inst.cfg index 99a80a7f046..c40580028ae 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fast.inst.cfg index 9d5e84588c4..03f80e8e840 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fine.inst.cfg index f418bb75acd..820c8b74ac3 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_normal.inst.cfg index 5b2d7d82442..6ad627d3e14 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_extrafast.inst.cfg index a7f1d0b0e5d..e9b0b4fd9c5 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fast.inst.cfg index 4ff61c22b53..d5e5334a226 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fine.inst.cfg index 620225e814f..962d4dcce6d 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_normal.inst.cfg index d581f868001..89cfdadfd52 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_extrafast.inst.cfg index d0a7f429b69..17323226f9d 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_sprint.inst.cfg index 1269e55fc09..d81d212335f 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_supersprint.inst.cfg index 9d9b88f342c..98ef74f7d24 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_extrafast.inst.cfg index 227c8b174bb..40c8023fb6d 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_sprint.inst.cfg index ad6061154d8..b1de8aaba13 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_supersprint.inst.cfg index a5fb56480ad..ae011922939 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_extrafast.inst.cfg index c4be47cafda..65582f5b0d8 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_sprint.inst.cfg index e6afaf235bb..a156e49b781 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_supersprint.inst.cfg index 2edad0b4775..28aa90f61a7 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_extrafast.inst.cfg index 9074add48c6..b1d9efc34aa 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_sprint.inst.cfg index 43db60ad356..672c65f51cd 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_supersprint.inst.cfg index ae91df6c8fd..b29b85b8f2c 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_extrafast.inst.cfg index cb2d7d8adc4..bf044f95413 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_sprint.inst.cfg index 94a2cb199f5..99aa800fd3d 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_supersprint.inst.cfg index a1e9de0c4bf..61092813453 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_extrafast.inst.cfg index 070706df536..d5e6e8f61d0 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_sprint.inst.cfg index 2161bbfe5e6..e558d3c272e 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_supersprint.inst.cfg index d9a8ddcaedc..034dd296818 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_extrafast.inst.cfg index aae1778e7b2..8bffcdd8c5c 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_sprint.inst.cfg index 5fae9d17f4e..e64eee6119b 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_supersprint.inst.cfg index a33aa63546e..fa25a246fb9 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_extrafast.inst.cfg index 88f895a788e..a68aded6cec 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_sprint.inst.cfg index cb430693092..908298d6c43 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_supersprint.inst.cfg index dd81906dd05..db69b0d7104 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/beamup_l/beamup_l_coarse.inst.cfg b/resources/quality/beamup_l/beamup_l_coarse.inst.cfg index 2fd1b8afcae..0c492f7651d 100644 --- a/resources/quality/beamup_l/beamup_l_coarse.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/beamup_l/beamup_l_draft.inst.cfg b/resources/quality/beamup_l/beamup_l_draft.inst.cfg index e3cf82651be..8f3fb7ce5dd 100644 --- a/resources/quality/beamup_l/beamup_l_draft.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg b/resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg index 8b4e8eccc75..203f8da1650 100644 --- a/resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/beamup_l/beamup_l_fine.inst.cfg b/resources/quality/beamup_l/beamup_l_fine.inst.cfg index 87ed50905c9..e62534025d7 100644 --- a/resources/quality/beamup_l/beamup_l_fine.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/beamup_l/beamup_l_normal.inst.cfg b/resources/quality/beamup_l/beamup_l_normal.inst.cfg index 59ad26fc039..86d73af1ef1 100644 --- a/resources/quality/beamup_l/beamup_l_normal.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/beamup_s/beamup_s_coarse.inst.cfg b/resources/quality/beamup_s/beamup_s_coarse.inst.cfg index 673950dca82..d7b636cbc77 100644 --- a/resources/quality/beamup_s/beamup_s_coarse.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/beamup_s/beamup_s_draft.inst.cfg b/resources/quality/beamup_s/beamup_s_draft.inst.cfg index a307f2d8727..50a8d2fe50a 100644 --- a/resources/quality/beamup_s/beamup_s_draft.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg b/resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg index daf1c8c5e53..eaa39d9cf75 100644 --- a/resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/beamup_s/beamup_s_fine.inst.cfg b/resources/quality/beamup_s/beamup_s_fine.inst.cfg index 798cc6bb68b..726d48be205 100644 --- a/resources/quality/beamup_s/beamup_s_fine.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/beamup_s/beamup_s_normal.inst.cfg b/resources/quality/beamup_s/beamup_s_normal.inst.cfg index cab58403303..eaafcc1164b 100644 --- a/resources/quality/beamup_s/beamup_s_normal.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/biqu/base/biqu_base_0.2_ABS_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_ABS_super.inst.cfg index 036be998b8f..6aa4fae4880 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_ABS_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.2_ABS_ultra.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_ABS_ultra.inst.cfg index 38dd0a39e9c..a521feca637 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.2_PETG_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_PETG_super.inst.cfg index 9de7b59deb3..8811d1f8370 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_PETG_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.2_PETG_ultra.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_PETG_ultra.inst.cfg index 16b26530eee..d7a307f57a4 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.2_PLA_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_PLA_super.inst.cfg index d1f35d9b952..e672eb93164 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_PLA_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.2_PLA_ultra.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_PLA_ultra.inst.cfg index a8469a4ea90..be00db90b33 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_ABS_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_ABS_adaptive.inst.cfg index 1e194642437..b565e8f74c5 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_ABS_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_ABS_low.inst.cfg index 9fdab1172d2..51dc9fbb767 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_ABS_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_ABS_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_ABS_standard.inst.cfg index 1d8769491da..0738ff8ef8c 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_ABS_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_ABS_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_ABS_super.inst.cfg index 41ad0484b6e..07c7f0ded11 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_ABS_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PETG_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PETG_adaptive.inst.cfg index 58785c33ae9..c014b267d02 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PETG_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PETG_low.inst.cfg index 119ca0f89ee..09f14d8c01c 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PETG_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PETG_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PETG_standard.inst.cfg index 2d5d033fd07..363762ac851 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PETG_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PETG_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PETG_super.inst.cfg index a8b77b9c422..fb21754f0fd 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PETG_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PLA_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PLA_adaptive.inst.cfg index 9fb5cb6d1b6..ce554b27552 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PLA_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PLA_low.inst.cfg index 1ee6fb803cd..07b0d4d369e 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PLA_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PLA_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PLA_standard.inst.cfg index 822a0635a7f..06258db290c 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PLA_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PLA_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PLA_super.inst.cfg index 5b52d5a0d9c..68157037265 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PLA_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_TPU_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_TPU_adaptive.inst.cfg index b4c9741aa32..8d5cc949032 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_TPU_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_TPU_standard.inst.cfg index b890ee3ed6a..84eaa67a290 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_TPU_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_TPU_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_TPU_super.inst.cfg index 0dd669dd917..000779dbbad 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_TPU_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_ABS_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_ABS_adaptive.inst.cfg index b5ab386c530..ea02181e29b 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_ABS_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_ABS_low.inst.cfg index daff0575d47..1301d6b732c 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_ABS_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_ABS_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_ABS_standard.inst.cfg index fa099cce34f..005a64b24d3 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_ABS_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_ABS_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_ABS_super.inst.cfg index b84a7f81829..f9b4caf8fb7 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_ABS_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PETG_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PETG_adaptive.inst.cfg index 7c050006bf4..4af0e371e88 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PETG_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PETG_low.inst.cfg index 6649f1541d0..78825c5d8d2 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PETG_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PETG_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PETG_standard.inst.cfg index 28134387ec9..aa96425455b 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PETG_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PETG_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PETG_super.inst.cfg index 8b0cbd7a9e8..c62eb066553 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PETG_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PLA_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PLA_adaptive.inst.cfg index 5f20bf45a54..a507e2555e9 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PLA_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PLA_low.inst.cfg index 23cbf503dca..588b3dacc19 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PLA_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PLA_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PLA_standard.inst.cfg index cbf5114492e..df611979247 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PLA_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PLA_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PLA_super.inst.cfg index e81de9145f1..1dbcb62fb3f 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PLA_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_TPU_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_TPU_adaptive.inst.cfg index d12bd473f11..8bff839e453 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_TPU_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_TPU_standard.inst.cfg index 4ca89c2c0e7..f0333fac757 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_TPU_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_TPU_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_TPU_super.inst.cfg index a95fc1f16f2..924dd669d1c 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_TPU_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_ABS_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_ABS_adaptive.inst.cfg index 7ebed839a99..05e3644675c 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_ABS_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_ABS_low.inst.cfg index e7265c56636..91466498c55 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_ABS_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_ABS_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_ABS_standard.inst.cfg index 0ed78dd5fb6..68e774f2053 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_ABS_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_ABS_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_ABS_super.inst.cfg index f761120b8af..0f84569bad8 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_ABS_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PETG_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PETG_adaptive.inst.cfg index f691230889b..724d76d23b8 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PETG_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PETG_low.inst.cfg index f510370d291..b801e75cc30 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PETG_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PETG_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PETG_standard.inst.cfg index cf99fbf92de..7340f539f2e 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PETG_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PETG_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PETG_super.inst.cfg index 9a3b7c79f1c..754c2a43eaf 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PETG_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PLA_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PLA_adaptive.inst.cfg index c451ac23729..f21e6e3b084 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PLA_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PLA_low.inst.cfg index 609304cd6b6..157b8eb9e3e 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PLA_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PLA_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PLA_standard.inst.cfg index f08b2636fb2..e116b7ec11a 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PLA_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PLA_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PLA_super.inst.cfg index 96284914bb3..1ea39a2d1ee 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PLA_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_TPU_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_TPU_adaptive.inst.cfg index 34e8acaab72..7009c6d5fbd 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_TPU_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_TPU_standard.inst.cfg index 76214d104ed..2f0f770507b 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_TPU_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_TPU_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_TPU_super.inst.cfg index ccf43bf03a2..8a23e888c58 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_TPU_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_ABS_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_ABS_standard.inst.cfg index e77a774aab1..9c5164287ed 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_ABS_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_PETG_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_PETG_standard.inst.cfg index 0965a5a7269..1ac3ee85a3b 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_PETG_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_PLA_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_PLA_draft.inst.cfg index 0d3444cebe9..6b90e734830 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_PLA_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_PLA_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_PLA_low.inst.cfg index a47f650cabe..c4db9c19791 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_PLA_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_PLA_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_PLA_standard.inst.cfg index c1d91222469..23f06b83d7e 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_PLA_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_TPU_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_TPU_standard.inst.cfg index 5aac2b8121b..a95181b9070 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_TPU_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.8_ABS_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_0.8_ABS_draft.inst.cfg index 160372ef046..5df16e09a61 100644 --- a/resources/quality/biqu/base/biqu_base_0.8_ABS_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.8_PETG_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_0.8_PETG_draft.inst.cfg index 063dfef2c21..bcbf4eb1e64 100644 --- a/resources/quality/biqu/base/biqu_base_0.8_PETG_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.8_PLA_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_0.8_PLA_draft.inst.cfg index 89706e6c0b6..ef2c484653b 100644 --- a/resources/quality/biqu/base/biqu_base_0.8_PLA_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.8_TPU_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_0.8_TPU_draft.inst.cfg index c4b20eaa9e7..d3a92884d1e 100644 --- a/resources/quality/biqu/base/biqu_base_0.8_TPU_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_1.0_ABS_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_1.0_ABS_draft.inst.cfg index 0892112dc73..c5d553b9d92 100644 --- a/resources/quality/biqu/base/biqu_base_1.0_ABS_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_1.0_PETG_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_1.0_PETG_draft.inst.cfg index 491307ecd43..8c999eb1614 100644 --- a/resources/quality/biqu/base/biqu_base_1.0_PETG_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_1.0_PLA_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_1.0_PLA_draft.inst.cfg index f37a42f08f1..f509a3b5728 100644 --- a/resources/quality/biqu/base/biqu_base_1.0_PLA_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_1.0_TPU_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_1.0_TPU_draft.inst.cfg index cdd5ee3b7e5..d712d097b27 100644 --- a/resources/quality/biqu/base/biqu_base_1.0_TPU_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_global_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_global_adaptive.inst.cfg index 5d3ab9951c6..1096d25f8c2 100644 --- a/resources/quality/biqu/base/biqu_base_global_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/biqu/base/biqu_base_global_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_global_draft.inst.cfg index c8be622c9b4..bfe1b9a4b19 100644 --- a/resources/quality/biqu/base/biqu_base_global_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/biqu/base/biqu_base_global_low.inst.cfg b/resources/quality/biqu/base/biqu_base_global_low.inst.cfg index 32c8498457d..f3023002322 100644 --- a/resources/quality/biqu/base/biqu_base_global_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/biqu/base/biqu_base_global_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_global_standard.inst.cfg index 15a6c391589..7361f29fa01 100644 --- a/resources/quality/biqu/base/biqu_base_global_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/biqu/base/biqu_base_global_super.inst.cfg b/resources/quality/biqu/base/biqu_base_global_super.inst.cfg index 9180d9e17fe..8c6c8d09194 100644 --- a/resources/quality/biqu/base/biqu_base_global_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/biqu/base/biqu_base_global_ultra.inst.cfg b/resources/quality/biqu/base/biqu_base_global_ultra.inst.cfg index 4c100e76658..fbea0a9ed8d 100644 --- a/resources/quality/biqu/base/biqu_base_global_ultra.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.20_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.20_draft.inst.cfg index b232427d3c2..bd1da0170aa 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.20_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.20_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low 0.2 -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.20_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.20_standard.inst.cfg index a022de74e8f..08fc7386191 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.20_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal 0.2 -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.30_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.30_draft.inst.cfg index 11c59d44c21..0993d1e9382 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.30_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.30_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.30_standard.inst.cfg index 4a058d050a0..60df32c5615 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.30_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.30_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal 0.3 -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.30_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.30_ultra.inst.cfg index 50176898a64..c54ce24ba47 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.30_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.30_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.40_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.40_adaptive.inst.cfg index 9efd41ac622..dbbd5b37880 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.40_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.40_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.40_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.40_draft.inst.cfg index dd86c5d2cdc..6fa18591f69 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.40_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.40_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.40_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.40_standard.inst.cfg index eafdafdda92..1c630a6e143 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.40_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.40_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.40_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.40_ultra.inst.cfg index 99272b1686f..7b5af6f41ba 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.40_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.40_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.50_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.50_adaptive.inst.cfg index 5e7b27e25c4..92deb8ba49b 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.50_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.50_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.50_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.50_draft.inst.cfg index 06b62ea74a6..e09730ba942 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.50_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.50_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.50_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.50_standard.inst.cfg index 496773ae3c9..d04036f8d8f 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.50_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.50_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.50_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.50_ultra.inst.cfg index f8bcbd83c52..9713c85edeb 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.50_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.50_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.60_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.60_adaptive.inst.cfg index 6f5560e1038..f9597d54b56 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.60_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.60_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.60_draft.inst.cfg index e0ec3a106b8..2e26c89cd2d 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.60_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.60_low.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.60_low.inst.cfg index 39139e2f53a..0706d578440 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.60_low.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.60_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.60_standard.inst.cfg index 6050a15f3ac..ca494c37776 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.60_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.60_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.60_ultra.inst.cfg index ffff45ea6ca..97eb1907692 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.60_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_adaptive.inst.cfg index d8512d64278..7eb8ddd9202 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_draft.inst.cfg index 2d59bcae6fa..7b80e3ba890 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_low.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_low.inst.cfg index 112e469f3e9..22389c7f596 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_low.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_standard.inst.cfg index 0d7228ac5a4..bfe070b2ef8 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_superlow.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_superlow.inst.cfg index 79cd34d8055..5420a1f6b80 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_superlow.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_ultra.inst.cfg index d68fea886de..33071d96b4e 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_adaptive.inst.cfg index c8432e47202..241a81753ec 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_draft.inst.cfg index 33bb04910c3..17033f013df 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_low.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_low.inst.cfg index e3c16ff6744..0b6985238b0 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_low.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_standard.inst.cfg index 179b68a4805..abdf0409f00 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_superlow.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_superlow.inst.cfg index b077c5e302f..d83be541317 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_superlow.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_ultra.inst.cfg index 5984ebc0a75..f97453339bb 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_adaptive.inst.cfg index c0ab994e6fa..66ef59fac8b 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 1.2mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_draft.inst.cfg index 6f8cc1cb79b..45549791bf2 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.2mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_low.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_low.inst.cfg index fa51646a965..0f95a2c5f36 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_low.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 1.2mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_standard.inst.cfg index d06ca688786..4b777fb89d8 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.2mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_superlow.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_superlow.inst.cfg index 06bd9a5e2c7..b1d01bfc870 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_superlow.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 22 +setting_version = 23 type = quality variant = 1.2mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_ultra.inst.cfg index ddc1f73edc5..61c875e6177 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 1.2mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_adaptive.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_adaptive.inst.cfg index b9e01c054d2..dd9168741c6 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.4mm weight = -2 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_draft.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_draft.inst.cfg index 120840adac3..7ac14cd8f32 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.4mm weight = -5 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_standard.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_standard.inst.cfg index 655fe020a1e..7c7f10fe645 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.4mm weight = -3 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_ultra.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_ultra.inst.cfg index dfe34641906..a74ca975ffb 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.4mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_adaptive.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_adaptive.inst.cfg index b4dfc2cc14b..815027d6ef5 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.5mm weight = -2 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_draft.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_draft.inst.cfg index a8c9f6712ef..c3c4a03bd62 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.5mm weight = -5 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_standard.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_standard.inst.cfg index 28f7b8bf6f0..66790c739a7 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.5mm weight = -3 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_ultra.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_ultra.inst.cfg index 930057a7d6a..a3f8ed15b93 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.5mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_adaptive.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_adaptive.inst.cfg index 5ad66257e08..99432f51c0a 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.6mm weight = -2 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_draft.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_draft.inst.cfg index a24adbeaec6..e789d4ae4bd 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.6mm weight = -5 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_low.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_low.inst.cfg index 62c319c0295..d54e44fff1e 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_low.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.6mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_standard.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_standard.inst.cfg index f1a804636b2..a97de1a9a34 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.6mm weight = -3 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_ultra.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_ultra.inst.cfg index 057e2ba26e1..92ca89fa6f3 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.6mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_adaptive.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_adaptive.inst.cfg index 9ca72154a3d..6727b950c88 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.8mm weight = -2 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_draft.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_draft.inst.cfg index aacf1e24912..2dbee187a83 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.8mm weight = -5 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_low.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_low.inst.cfg index ed3f6ceb527..ef6e16e3f30 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_low.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_standard.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_standard.inst.cfg index cd67b1b5e82..2d85d53f4e6 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.8mm weight = -3 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_superlow.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_superlow.inst.cfg index 0e44809ac0a..109c79608fa 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_superlow.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_ultra.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_ultra.inst.cfg index c7128bef555..b87d68962e1 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_adaptive.inst.cfg index d2c122fb0c8..10806f53c4a 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.2mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_ultra.inst.cfg index a08caaa26ce..8f747c08e9a 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.2mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_adaptive.inst.cfg index f8c7e9d4478..b0d9447b822 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.3mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_standard.inst.cfg index fdf046454c0..2c8444df01d 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.3mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_ultra.inst.cfg index fc8d16ea0dd..8410e56e1d3 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.3mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_adaptive.inst.cfg index 2012d231ef2..0dee28da76c 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.4mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_draft.inst.cfg index 73f4028d6f6..86be97d7efa 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.4mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_standard.inst.cfg index 9e92c831703..b3b20834ec6 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.4mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_ultra.inst.cfg index 3711657b559..ea1c5269f4f 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.4mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_adaptive.inst.cfg index a8675b93744..d95326a2cd2 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.5mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_draft.inst.cfg index 772d62c38ba..6139f477a93 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.5mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_standard.inst.cfg index 0535ee955db..d6b10ead40b 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.5mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_ultra.inst.cfg index 4261f7f5d57..501fd433054 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.5mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_adaptive.inst.cfg index 592df1449bf..9210920b17c 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.6mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_draft.inst.cfg index 9ff016accfb..37071e37ec3 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.6mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_low.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_low.inst.cfg index 9b99f668085..4d7a139ee4a 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_low.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.6mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_standard.inst.cfg index e39eea4e85e..0f4fb4da2a2 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.6mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_ultra.inst.cfg index 67c4bea2afd..c0d98feb507 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.6mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_adaptive.inst.cfg index b6169d07136..f3b66ecd9ff 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.8mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_draft.inst.cfg index 52c7644d5a7..075bc33bdf2 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.8mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_low.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_low.inst.cfg index e3dec5014a3..bfe0c1efb31 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_low.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_standard.inst.cfg index 81e8d45a476..cdeffbce07b 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.8mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_superlow.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_superlow.inst.cfg index 67ea92825ca..6aa91424469 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_superlow.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_ultra.inst.cfg index 9ab6e323789..4f196bd070f 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_adaptive.inst.cfg index 4abe78cce66..8df63decc44 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.0mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_draft.inst.cfg index c5ce3a5968e..cc34498a546 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.0mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_low.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_low.inst.cfg index 2dfac120d36..5dcd5eca8c9 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_low.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.0mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_standard.inst.cfg index 414d9199f15..12c5e568ab3 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.0mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_superlow.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_superlow.inst.cfg index a8fdd08b26c..910efb62445 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_superlow.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.0mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_ultra.inst.cfg index a11570f62eb..a9d00ea40dc 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.0mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_adaptive.inst.cfg index d2eb89bc5b1..3acda8b9dc8 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.2mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_draft.inst.cfg index 19fac2508f1..ced39e298bc 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.2mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_low.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_low.inst.cfg index f97ac6ac093..068ed810572 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_low.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.2mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_standard.inst.cfg index c72b9b5f059..f094968a1ad 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.2mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_superlow.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_superlow.inst.cfg index 6488766287d..2f34faba86b 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_superlow.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.2mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_ultra.inst.cfg index c52b1f7791f..416ed6cce1e 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.2mm weight = 0 diff --git a/resources/quality/builder_premium/bp_BVOH_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_BVOH_Coarse_Quality.inst.cfg index 6e501397491..0c86d1922b5 100644 --- a/resources/quality/builder_premium/bp_BVOH_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_BVOH_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_BVOH_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_BVOH_High_Quality.inst.cfg index 0d47c689d45..f2f475d324f 100644 --- a/resources/quality/builder_premium/bp_BVOH_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_BVOH_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_BVOH_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_BVOH_Normal_Quality.inst.cfg index 582c7f8d4d3..f96020401d0 100644 --- a/resources/quality/builder_premium/bp_BVOH_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_BVOH_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/builder_premium/bp_Innoflex60_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_Innoflex60_Coarse_Quality.inst.cfg index 16ba6965868..fbd2b1b6488 100644 --- a/resources/quality/builder_premium/bp_Innoflex60_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_Innoflex60_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = innofill_innoflex60_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_Innoflex60_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_Innoflex60_High_Quality.inst.cfg index a9684cd5073..18b43d1fce2 100644 --- a/resources/quality/builder_premium/bp_Innoflex60_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_Innoflex60_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = innofill_innoflex60_175 quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_Innoflex60_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_Innoflex60_Normal_Quality.inst.cfg index ba1c10d19be..c25fe48eee4 100644 --- a/resources/quality/builder_premium/bp_Innoflex60_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_Innoflex60_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = innofill_innoflex60_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/builder_premium/bp_PET_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_PET_Coarse_Quality.inst.cfg index 6bc4ae64da0..a662fd199a6 100644 --- a/resources/quality/builder_premium/bp_PET_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PET_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_PET_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_PET_High_Quality.inst.cfg index 4eb383fa3e1..5be817574fc 100644 --- a/resources/quality/builder_premium/bp_PET_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PET_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_PET_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_PET_Normal_Quality.inst.cfg index 2d938385744..955c533ee09 100644 --- a/resources/quality/builder_premium/bp_PET_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PET_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/builder_premium/bp_PLA_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_PLA_Coarse_Quality.inst.cfg index 04b51ffdc38..81c3bac17a5 100644 --- a/resources/quality/builder_premium/bp_PLA_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PLA_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_PLA_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_PLA_High_Quality.inst.cfg index a24d877812c..0270042c6d3 100644 --- a/resources/quality/builder_premium/bp_PLA_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PLA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_PLA_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_PLA_Normal_Quality.inst.cfg index 1c80bd5a74c..10cd3774a11 100644 --- a/resources/quality/builder_premium/bp_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/builder_premium/bp_PVA_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_PVA_Coarse_Quality.inst.cfg index a491cd26330..55b35c33a16 100644 --- a/resources/quality/builder_premium/bp_PVA_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PVA_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_PVA_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_PVA_High_Quality.inst.cfg index 396e082ec2e..5c744cde482 100644 --- a/resources/quality/builder_premium/bp_PVA_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PVA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_PVA_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_PVA_Normal_Quality.inst.cfg index f9fd78beb50..da56e1c7d02 100644 --- a/resources/quality/builder_premium/bp_PVA_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PVA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/builder_premium/bp_global_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_global_Coarse_Quality.inst.cfg index f5f235c0b0e..74ac09ab1ff 100644 --- a/resources/quality/builder_premium/bp_global_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_global_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_global_High_Quality.inst.cfg index cad3d0f17fb..4185c32c2de 100644 --- a/resources/quality/builder_premium/bp_global_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_global_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_global_Normal_Quality.inst.cfg index c3826e1b23f..6ffc2dc31ae 100644 --- a/resources/quality/builder_premium/bp_global_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/cartesio/abs/cartesio_0.25_abs_high.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.25_abs_high.inst.cfg index ceb247023e3..747d7c0bbe4 100644 --- a/resources/quality/cartesio/abs/cartesio_0.25_abs_high.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.25_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/abs/cartesio_0.25_abs_normal.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.25_abs_normal.inst.cfg index 0cc705b9c85..8d9db6ef9da 100644 --- a/resources/quality/cartesio/abs/cartesio_0.25_abs_normal.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.25_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/abs/cartesio_0.4_abs_high.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.4_abs_high.inst.cfg index 442c341254b..756f8f29173 100644 --- a/resources/quality/cartesio/abs/cartesio_0.4_abs_high.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.4_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/abs/cartesio_0.4_abs_normal.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.4_abs_normal.inst.cfg index e58a5440b37..2b50d823dba 100644 --- a/resources/quality/cartesio/abs/cartesio_0.4_abs_normal.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.4_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/abs/cartesio_0.8_abs_coarse.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.8_abs_coarse.inst.cfg index d028044fdf0..e20ed3a4a54 100644 --- a/resources/quality/cartesio/abs/cartesio_0.8_abs_coarse.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.8_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/abs/cartesio_0.8_abs_extra_coarse.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.8_abs_extra_coarse.inst.cfg index c39bb7ea215..89c3c5ddf18 100644 --- a/resources/quality/cartesio/abs/cartesio_0.8_abs_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.8_abs_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/abs/cartesio_0.8_abs_high.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.8_abs_high.inst.cfg index 73d7207c72c..98ec1d290c7 100644 --- a/resources/quality/cartesio/abs/cartesio_0.8_abs_high.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.8_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/abs/cartesio_0.8_abs_normal.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.8_abs_normal.inst.cfg index 9df4675747c..1102445d733 100644 --- a/resources/quality/cartesio/abs/cartesio_0.8_abs_normal.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.8_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_high.inst.cfg b/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_high.inst.cfg index 921fdd7ae5e..fdebf331146 100644 --- a/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_high.inst.cfg +++ b/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = dsm_arnitel2045_175 quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_normal.inst.cfg b/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_normal.inst.cfg index 5b2edc11bd5..dc583398e3f 100644 --- a/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_normal.inst.cfg +++ b/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = dsm_arnitel2045_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/cartesio_global_Coarse_Quality.inst.cfg b/resources/quality/cartesio/cartesio_global_Coarse_Quality.inst.cfg index e0cbb77608c..275f1afb76a 100644 --- a/resources/quality/cartesio/cartesio_global_Coarse_Quality.inst.cfg +++ b/resources/quality/cartesio/cartesio_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/cartesio/cartesio_global_Extra_Coarse_Quality.inst.cfg b/resources/quality/cartesio/cartesio_global_Extra_Coarse_Quality.inst.cfg index e1c754d30af..0db9ae1a245 100644 --- a/resources/quality/cartesio/cartesio_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/cartesio/cartesio_global_Extra_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/cartesio/cartesio_global_High_Quality.inst.cfg b/resources/quality/cartesio/cartesio_global_High_Quality.inst.cfg index 0bf8080ea3b..30633b369d8 100644 --- a/resources/quality/cartesio/cartesio_global_High_Quality.inst.cfg +++ b/resources/quality/cartesio/cartesio_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/cartesio/cartesio_global_Normal_Quality.inst.cfg b/resources/quality/cartesio/cartesio_global_Normal_Quality.inst.cfg index d455551b3b5..3037c3aaad2 100644 --- a/resources/quality/cartesio/cartesio_global_Normal_Quality.inst.cfg +++ b/resources/quality/cartesio/cartesio_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/cartesio/hips/cartesio_0.25_hips_high.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.25_hips_high.inst.cfg index 2899281b339..59d3cde27fb 100644 --- a/resources/quality/cartesio/hips/cartesio_0.25_hips_high.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.25_hips_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/hips/cartesio_0.25_hips_normal.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.25_hips_normal.inst.cfg index cdf0b5a69c9..237b9c99970 100644 --- a/resources/quality/cartesio/hips/cartesio_0.25_hips_normal.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.25_hips_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/hips/cartesio_0.4_hips_high.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.4_hips_high.inst.cfg index 4f4b84c5276..d045650dd1f 100644 --- a/resources/quality/cartesio/hips/cartesio_0.4_hips_high.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.4_hips_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/hips/cartesio_0.4_hips_normal.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.4_hips_normal.inst.cfg index 3f3be29dac6..9edbe0795b7 100644 --- a/resources/quality/cartesio/hips/cartesio_0.4_hips_normal.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.4_hips_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/hips/cartesio_0.8_hips_coarse.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.8_hips_coarse.inst.cfg index 61e422cd01f..07cb20a6a3f 100644 --- a/resources/quality/cartesio/hips/cartesio_0.8_hips_coarse.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.8_hips_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/hips/cartesio_0.8_hips_extra_coarse.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.8_hips_extra_coarse.inst.cfg index 2f7616d3c0b..f83ece82c96 100644 --- a/resources/quality/cartesio/hips/cartesio_0.8_hips_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.8_hips_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/hips/cartesio_0.8_hips_high.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.8_hips_high.inst.cfg index 7ae39664dbe..432bdb51817 100644 --- a/resources/quality/cartesio/hips/cartesio_0.8_hips_high.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.8_hips_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/hips/cartesio_0.8_hips_normal.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.8_hips_normal.inst.cfg index 74cc5e1a8cb..56767df5886 100644 --- a/resources/quality/cartesio/hips/cartesio_0.8_hips_normal.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.8_hips_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/nylon/cartesio_0.25_nylon_high.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.25_nylon_high.inst.cfg index a0fcba66c97..cd90509f5f5 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.25_nylon_high.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.25_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/nylon/cartesio_0.25_nylon_normal.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.25_nylon_normal.inst.cfg index 91c26bb39f2..8b67e6343f8 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.25_nylon_normal.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.25_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/nylon/cartesio_0.4_nylon_high.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.4_nylon_high.inst.cfg index 5458875049c..c2602f9f9b9 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.4_nylon_high.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.4_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/nylon/cartesio_0.4_nylon_normal.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.4_nylon_normal.inst.cfg index a5a99f8ba35..c20a955d02c 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.4_nylon_normal.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.4_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_coarse.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_coarse.inst.cfg index 40a394d0203..0aa49b222d0 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_coarse.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_extra_coarse.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_extra_coarse.inst.cfg index 560388f549c..a31c713bdeb 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_high.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_high.inst.cfg index c57a810e969..ba853061da1 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_high.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_normal.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_normal.inst.cfg index 038ee37b2a1..3907f5ceca2 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_normal.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pc/cartesio_0.25_pc_high.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.25_pc_high.inst.cfg index c9d10a366a8..59e92e733f3 100644 --- a/resources/quality/cartesio/pc/cartesio_0.25_pc_high.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.25_pc_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pc/cartesio_0.25_pc_normal.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.25_pc_normal.inst.cfg index ea78515888d..4e408ceef7e 100644 --- a/resources/quality/cartesio/pc/cartesio_0.25_pc_normal.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.25_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pc/cartesio_0.4_pc_high.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.4_pc_high.inst.cfg index 8d66f49534b..f01fae14b4a 100644 --- a/resources/quality/cartesio/pc/cartesio_0.4_pc_high.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.4_pc_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pc/cartesio_0.4_pc_normal.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.4_pc_normal.inst.cfg index 7b5a3560dfe..b70d03a3410 100644 --- a/resources/quality/cartesio/pc/cartesio_0.4_pc_normal.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.4_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pc/cartesio_0.8_pc_coarse.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.8_pc_coarse.inst.cfg index da79a1e7d77..3dfa6bbc07a 100644 --- a/resources/quality/cartesio/pc/cartesio_0.8_pc_coarse.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.8_pc_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/pc/cartesio_0.8_pc_extra_coarse.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.8_pc_extra_coarse.inst.cfg index 511da60d544..48851fed3e8 100644 --- a/resources/quality/cartesio/pc/cartesio_0.8_pc_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.8_pc_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/pc/cartesio_0.8_pc_high.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.8_pc_high.inst.cfg index 9967dc12c40..feed09fb66b 100644 --- a/resources/quality/cartesio/pc/cartesio_0.8_pc_high.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.8_pc_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pc/cartesio_0.8_pc_normal.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.8_pc_normal.inst.cfg index 5810601f773..e510fc14532 100644 --- a/resources/quality/cartesio/pc/cartesio_0.8_pc_normal.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.8_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/petg/cartesio_0.25_petg_high.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.25_petg_high.inst.cfg index fb7ceb891a1..b6422335ff0 100644 --- a/resources/quality/cartesio/petg/cartesio_0.25_petg_high.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.25_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/petg/cartesio_0.25_petg_normal.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.25_petg_normal.inst.cfg index 13a7b1d4137..79c4b15ea8d 100644 --- a/resources/quality/cartesio/petg/cartesio_0.25_petg_normal.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.25_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/petg/cartesio_0.4_petg_high.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.4_petg_high.inst.cfg index 81f56b432cd..fd94e73fd19 100644 --- a/resources/quality/cartesio/petg/cartesio_0.4_petg_high.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.4_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/petg/cartesio_0.4_petg_normal.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.4_petg_normal.inst.cfg index ef092ab09f5..e648a5bb240 100644 --- a/resources/quality/cartesio/petg/cartesio_0.4_petg_normal.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.4_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/petg/cartesio_0.8_petg_coarse.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.8_petg_coarse.inst.cfg index 594c277948d..2a824cbd42b 100644 --- a/resources/quality/cartesio/petg/cartesio_0.8_petg_coarse.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.8_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/petg/cartesio_0.8_petg_extra_coarse.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.8_petg_extra_coarse.inst.cfg index 12c049c4ca5..efd1f9a6d7d 100644 --- a/resources/quality/cartesio/petg/cartesio_0.8_petg_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.8_petg_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/petg/cartesio_0.8_petg_high.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.8_petg_high.inst.cfg index e8a2a46be81..7a294b95320 100644 --- a/resources/quality/cartesio/petg/cartesio_0.8_petg_high.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.8_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/petg/cartesio_0.8_petg_normal.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.8_petg_normal.inst.cfg index 14e9cbec6bc..1fb094b684d 100644 --- a/resources/quality/cartesio/petg/cartesio_0.8_petg_normal.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.8_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pla/cartesio_0.25_pla_high.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.25_pla_high.inst.cfg index 75f07846567..f4c45020eac 100644 --- a/resources/quality/cartesio/pla/cartesio_0.25_pla_high.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.25_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pla/cartesio_0.25_pla_normal.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.25_pla_normal.inst.cfg index ae4139bca9a..88a4cbaf4be 100644 --- a/resources/quality/cartesio/pla/cartesio_0.25_pla_normal.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.25_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pla/cartesio_0.4_pla_high.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.4_pla_high.inst.cfg index 504e8292b24..d68392a58e5 100644 --- a/resources/quality/cartesio/pla/cartesio_0.4_pla_high.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.4_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pla/cartesio_0.4_pla_normal.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.4_pla_normal.inst.cfg index 3869918c087..52d9cbefa08 100644 --- a/resources/quality/cartesio/pla/cartesio_0.4_pla_normal.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.4_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pla/cartesio_0.8_pla_coarse.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.8_pla_coarse.inst.cfg index b91c8e1f2e5..1664e93b376 100644 --- a/resources/quality/cartesio/pla/cartesio_0.8_pla_coarse.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.8_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = -3 diff --git a/resources/quality/cartesio/pla/cartesio_0.8_pla_extra_coarse.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.8_pla_extra_coarse.inst.cfg index 7ea8197b873..e269557ea5e 100644 --- a/resources/quality/cartesio/pla/cartesio_0.8_pla_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.8_pla_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = -4 diff --git a/resources/quality/cartesio/pla/cartesio_0.8_pla_high.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.8_pla_high.inst.cfg index e3f5e40feeb..e8af9745d75 100644 --- a/resources/quality/cartesio/pla/cartesio_0.8_pla_high.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.8_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pla/cartesio_0.8_pla_normal.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.8_pla_normal.inst.cfg index 7929c6d9f47..d2a7e8d6730 100644 --- a/resources/quality/cartesio/pla/cartesio_0.8_pla_normal.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.8_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pva/cartesio_0.25_pva_high.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.25_pva_high.inst.cfg index 63c487a4b9b..c077347a27f 100644 --- a/resources/quality/cartesio/pva/cartesio_0.25_pva_high.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.25_pva_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pva/cartesio_0.25_pva_normal.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.25_pva_normal.inst.cfg index 8c36a3f9db0..7689cb72967 100644 --- a/resources/quality/cartesio/pva/cartesio_0.25_pva_normal.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.25_pva_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pva/cartesio_0.4_pva_high.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.4_pva_high.inst.cfg index fa9118e5b34..a764523419d 100644 --- a/resources/quality/cartesio/pva/cartesio_0.4_pva_high.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.4_pva_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pva/cartesio_0.4_pva_normal.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.4_pva_normal.inst.cfg index e8c8c53c453..5d96b324b82 100644 --- a/resources/quality/cartesio/pva/cartesio_0.4_pva_normal.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.4_pva_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pva/cartesio_0.8_pva_coarse.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.8_pva_coarse.inst.cfg index 212c3cc2d19..c97c5e0d113 100644 --- a/resources/quality/cartesio/pva/cartesio_0.8_pva_coarse.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.8_pva_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/pva/cartesio_0.8_pva_extra_coarse.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.8_pva_extra_coarse.inst.cfg index 67ab181dc42..b9ccbec940d 100644 --- a/resources/quality/cartesio/pva/cartesio_0.8_pva_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.8_pva_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/pva/cartesio_0.8_pva_high.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.8_pva_high.inst.cfg index 861401346ea..7be3729c54e 100644 --- a/resources/quality/cartesio/pva/cartesio_0.8_pva_high.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.8_pva_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pva/cartesio_0.8_pva_normal.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.8_pva_normal.inst.cfg index fd062c8a108..c5575d58fcf 100644 --- a/resources/quality/cartesio/pva/cartesio_0.8_pva_normal.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.8_pva_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/coarse.inst.cfg b/resources/quality/coarse.inst.cfg index 85af3b88d24..28df0a1c18c 100644 --- a/resources/quality/coarse.inst.cfg +++ b/resources/quality/coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_coarse.inst.cfg b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_coarse.inst.cfg index 8e659e9aa04..510e7f1c3d5 100644 --- a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_coarse.inst.cfg +++ b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_draft.inst.cfg b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_draft.inst.cfg index f55649264c1..2901a92b341 100644 --- a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_draft.inst.cfg +++ b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_fine.inst.cfg b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_fine.inst.cfg index 2c708faa07e..37390c4f2c9 100644 --- a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_fine.inst.cfg +++ b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_normal.inst.cfg b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_normal.inst.cfg index 6a2535f8e63..e631278a129 100644 --- a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_normal.inst.cfg +++ b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/crazy3dprint_global_0.10_fine.inst.cfg b/resources/quality/crazy3dprint/crazy3dprint_global_0.10_fine.inst.cfg index 22c0be933a4..0cc925e81c0 100644 --- a/resources/quality/crazy3dprint/crazy3dprint_global_0.10_fine.inst.cfg +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/crazy3dprint/crazy3dprint_global_0.20_normal.inst.cfg b/resources/quality/crazy3dprint/crazy3dprint_global_0.20_normal.inst.cfg index a83db8a5b86..42a05036bf9 100644 --- a/resources/quality/crazy3dprint/crazy3dprint_global_0.20_normal.inst.cfg +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/crazy3dprint/crazy3dprint_global_0.30_draft.inst.cfg b/resources/quality/crazy3dprint/crazy3dprint_global_0.30_draft.inst.cfg index f676d805f51..be04111ffca 100644 --- a/resources/quality/crazy3dprint/crazy3dprint_global_0.30_draft.inst.cfg +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/crazy3dprint/crazy3dprint_global_0.40_coarse.inst.cfg b/resources/quality/crazy3dprint/crazy3dprint_global_0.40_coarse.inst.cfg index ca4c6e02bf1..0a89b548aff 100644 --- a/resources/quality/crazy3dprint/crazy3dprint_global_0.40_coarse.inst.cfg +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_coarse.inst.cfg b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_coarse.inst.cfg index 2e4a9e541e7..a215b77102a 100644 --- a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_coarse.inst.cfg +++ b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_draft.inst.cfg b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_draft.inst.cfg index 7ffbfc983b8..f8bd706b136 100644 --- a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_draft.inst.cfg +++ b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_fine.inst.cfg b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_fine.inst.cfg index 1f2536dd6b5..59769cff2c9 100644 --- a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_fine.inst.cfg +++ b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_normal.inst.cfg b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_normal.inst.cfg index 1d2323c2303..07e3bdfc331 100644 --- a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_normal.inst.cfg +++ b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_ABS_super.inst.cfg b/resources/quality/creality/base/base_0.2_ABS_super.inst.cfg index 2e80729b964..17f02a5341d 100644 --- a/resources/quality/creality/base/base_0.2_ABS_super.inst.cfg +++ b/resources/quality/creality/base/base_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_ABS_ultra.inst.cfg b/resources/quality/creality/base/base_0.2_ABS_ultra.inst.cfg index 1921452cd42..249d81eda4a 100644 --- a/resources/quality/creality/base/base_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/creality/base/base_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_PETG_super.inst.cfg b/resources/quality/creality/base/base_0.2_PETG_super.inst.cfg index 3462ba60b16..f202bc039fd 100644 --- a/resources/quality/creality/base/base_0.2_PETG_super.inst.cfg +++ b/resources/quality/creality/base/base_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_PETG_ultra.inst.cfg b/resources/quality/creality/base/base_0.2_PETG_ultra.inst.cfg index 5732177e41f..f014c4d817a 100644 --- a/resources/quality/creality/base/base_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/creality/base/base_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_PLA_super.inst.cfg b/resources/quality/creality/base/base_0.2_PLA_super.inst.cfg index eb69f993c2d..9069c6217d0 100644 --- a/resources/quality/creality/base/base_0.2_PLA_super.inst.cfg +++ b/resources/quality/creality/base/base_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_PLA_ultra.inst.cfg b/resources/quality/creality/base/base_0.2_PLA_ultra.inst.cfg index 101b4b4f934..e7549eb0cd1 100644 --- a/resources/quality/creality/base/base_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/creality/base/base_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_ABS_adaptive.inst.cfg b/resources/quality/creality/base/base_0.3_ABS_adaptive.inst.cfg index 44b2371f2be..c459673c03b 100644 --- a/resources/quality/creality/base/base_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_ABS_low.inst.cfg b/resources/quality/creality/base/base_0.3_ABS_low.inst.cfg index ed9bb131c84..3ac36051efa 100644 --- a/resources/quality/creality/base/base_0.3_ABS_low.inst.cfg +++ b/resources/quality/creality/base/base_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_ABS_standard.inst.cfg b/resources/quality/creality/base/base_0.3_ABS_standard.inst.cfg index 8b034ebbac9..0747c9470ec 100644 --- a/resources/quality/creality/base/base_0.3_ABS_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_ABS_super.inst.cfg b/resources/quality/creality/base/base_0.3_ABS_super.inst.cfg index b0b7a71b2d7..32520aa212d 100644 --- a/resources/quality/creality/base/base_0.3_ABS_super.inst.cfg +++ b/resources/quality/creality/base/base_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PETG_adaptive.inst.cfg b/resources/quality/creality/base/base_0.3_PETG_adaptive.inst.cfg index 876d8bec263..c131707e19e 100644 --- a/resources/quality/creality/base/base_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PETG_low.inst.cfg b/resources/quality/creality/base/base_0.3_PETG_low.inst.cfg index 45bc46ce572..b20f448ba0e 100644 --- a/resources/quality/creality/base/base_0.3_PETG_low.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PETG_standard.inst.cfg b/resources/quality/creality/base/base_0.3_PETG_standard.inst.cfg index 0eba756cec6..b8e5ad16c20 100644 --- a/resources/quality/creality/base/base_0.3_PETG_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PETG_super.inst.cfg b/resources/quality/creality/base/base_0.3_PETG_super.inst.cfg index 44c78d98416..e5c59aade73 100644 --- a/resources/quality/creality/base/base_0.3_PETG_super.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PLA_adaptive.inst.cfg b/resources/quality/creality/base/base_0.3_PLA_adaptive.inst.cfg index 672be97d5e7..a1b31cbb369 100644 --- a/resources/quality/creality/base/base_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PLA_low.inst.cfg b/resources/quality/creality/base/base_0.3_PLA_low.inst.cfg index bce81ed8aa0..4958661ff4e 100644 --- a/resources/quality/creality/base/base_0.3_PLA_low.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PLA_standard.inst.cfg b/resources/quality/creality/base/base_0.3_PLA_standard.inst.cfg index b203c49a5d9..f5319c95ac8 100644 --- a/resources/quality/creality/base/base_0.3_PLA_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PLA_super.inst.cfg b/resources/quality/creality/base/base_0.3_PLA_super.inst.cfg index 205cb74fcfd..91518c75fc4 100644 --- a/resources/quality/creality/base/base_0.3_PLA_super.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_TPU_adaptive.inst.cfg b/resources/quality/creality/base/base_0.3_TPU_adaptive.inst.cfg index aef986f74ad..24b32bccdb9 100644 --- a/resources/quality/creality/base/base_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_TPU_standard.inst.cfg b/resources/quality/creality/base/base_0.3_TPU_standard.inst.cfg index 2509d7888e9..cc15f42fb15 100644 --- a/resources/quality/creality/base/base_0.3_TPU_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_TPU_super.inst.cfg b/resources/quality/creality/base/base_0.3_TPU_super.inst.cfg index b0f60d34981..6e9a67af5c1 100644 --- a/resources/quality/creality/base/base_0.3_TPU_super.inst.cfg +++ b/resources/quality/creality/base/base_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_ABS_adaptive.inst.cfg b/resources/quality/creality/base/base_0.4_ABS_adaptive.inst.cfg index 5f3d8c911f6..cb84911e813 100644 --- a/resources/quality/creality/base/base_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_ABS_low.inst.cfg b/resources/quality/creality/base/base_0.4_ABS_low.inst.cfg index 3c9690fafe0..38b057a7443 100644 --- a/resources/quality/creality/base/base_0.4_ABS_low.inst.cfg +++ b/resources/quality/creality/base/base_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_ABS_standard.inst.cfg b/resources/quality/creality/base/base_0.4_ABS_standard.inst.cfg index 998c4ef9153..400bc2a1907 100644 --- a/resources/quality/creality/base/base_0.4_ABS_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_ABS_super.inst.cfg b/resources/quality/creality/base/base_0.4_ABS_super.inst.cfg index 29faf9d49d4..4501bb52279 100644 --- a/resources/quality/creality/base/base_0.4_ABS_super.inst.cfg +++ b/resources/quality/creality/base/base_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PETG_adaptive.inst.cfg b/resources/quality/creality/base/base_0.4_PETG_adaptive.inst.cfg index e0f46c3564b..09122ad76bc 100644 --- a/resources/quality/creality/base/base_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PETG_low.inst.cfg b/resources/quality/creality/base/base_0.4_PETG_low.inst.cfg index 38a5829e606..316291ca09d 100644 --- a/resources/quality/creality/base/base_0.4_PETG_low.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PETG_standard.inst.cfg b/resources/quality/creality/base/base_0.4_PETG_standard.inst.cfg index ac606c34318..b279711da0a 100644 --- a/resources/quality/creality/base/base_0.4_PETG_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PETG_super.inst.cfg b/resources/quality/creality/base/base_0.4_PETG_super.inst.cfg index a7c88bc67f7..cf31ad62b5a 100644 --- a/resources/quality/creality/base/base_0.4_PETG_super.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PLA_adaptive.inst.cfg b/resources/quality/creality/base/base_0.4_PLA_adaptive.inst.cfg index d048641758b..7ba40dcd483 100644 --- a/resources/quality/creality/base/base_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PLA_low.inst.cfg b/resources/quality/creality/base/base_0.4_PLA_low.inst.cfg index 91e96c67145..356a9390b04 100644 --- a/resources/quality/creality/base/base_0.4_PLA_low.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PLA_standard.inst.cfg b/resources/quality/creality/base/base_0.4_PLA_standard.inst.cfg index 5e92b31a7c1..2ca57936c33 100644 --- a/resources/quality/creality/base/base_0.4_PLA_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PLA_super.inst.cfg b/resources/quality/creality/base/base_0.4_PLA_super.inst.cfg index 378ebe4d8ac..873563a5abc 100644 --- a/resources/quality/creality/base/base_0.4_PLA_super.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_TPU_adaptive.inst.cfg b/resources/quality/creality/base/base_0.4_TPU_adaptive.inst.cfg index 33b0725bad5..3e33d4d2806 100644 --- a/resources/quality/creality/base/base_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_TPU_standard.inst.cfg b/resources/quality/creality/base/base_0.4_TPU_standard.inst.cfg index 4b5d9e4aec9..39244b0cc67 100644 --- a/resources/quality/creality/base/base_0.4_TPU_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_TPU_super.inst.cfg b/resources/quality/creality/base/base_0.4_TPU_super.inst.cfg index 2086bc635a8..3e3e8ac50eb 100644 --- a/resources/quality/creality/base/base_0.4_TPU_super.inst.cfg +++ b/resources/quality/creality/base/base_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_ABS_adaptive.inst.cfg b/resources/quality/creality/base/base_0.5_ABS_adaptive.inst.cfg index 792af41ee90..7f1bb0bc66a 100644 --- a/resources/quality/creality/base/base_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_ABS_low.inst.cfg b/resources/quality/creality/base/base_0.5_ABS_low.inst.cfg index ce4fd9f3569..878286e616f 100644 --- a/resources/quality/creality/base/base_0.5_ABS_low.inst.cfg +++ b/resources/quality/creality/base/base_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_ABS_standard.inst.cfg b/resources/quality/creality/base/base_0.5_ABS_standard.inst.cfg index 1cb9e497035..7724c1001a6 100644 --- a/resources/quality/creality/base/base_0.5_ABS_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_ABS_super.inst.cfg b/resources/quality/creality/base/base_0.5_ABS_super.inst.cfg index 8ebedcf0063..c33d5a48b71 100644 --- a/resources/quality/creality/base/base_0.5_ABS_super.inst.cfg +++ b/resources/quality/creality/base/base_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PETG_adaptive.inst.cfg b/resources/quality/creality/base/base_0.5_PETG_adaptive.inst.cfg index e9074441d36..675794832b7 100644 --- a/resources/quality/creality/base/base_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PETG_low.inst.cfg b/resources/quality/creality/base/base_0.5_PETG_low.inst.cfg index 36b727d11c0..d55b54dc8b6 100644 --- a/resources/quality/creality/base/base_0.5_PETG_low.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PETG_standard.inst.cfg b/resources/quality/creality/base/base_0.5_PETG_standard.inst.cfg index ae04d305a6b..b8b08fba46c 100644 --- a/resources/quality/creality/base/base_0.5_PETG_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PETG_super.inst.cfg b/resources/quality/creality/base/base_0.5_PETG_super.inst.cfg index 5b59905ac70..dd64434c066 100644 --- a/resources/quality/creality/base/base_0.5_PETG_super.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PLA_adaptive.inst.cfg b/resources/quality/creality/base/base_0.5_PLA_adaptive.inst.cfg index d03f8d5d1c8..bea35796784 100644 --- a/resources/quality/creality/base/base_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PLA_low.inst.cfg b/resources/quality/creality/base/base_0.5_PLA_low.inst.cfg index 61ebda86606..85809f8aaf6 100644 --- a/resources/quality/creality/base/base_0.5_PLA_low.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PLA_standard.inst.cfg b/resources/quality/creality/base/base_0.5_PLA_standard.inst.cfg index 969f3501991..f4a885cd2cd 100644 --- a/resources/quality/creality/base/base_0.5_PLA_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PLA_super.inst.cfg b/resources/quality/creality/base/base_0.5_PLA_super.inst.cfg index c1b2571eaef..d4caac8486a 100644 --- a/resources/quality/creality/base/base_0.5_PLA_super.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_TPU_adaptive.inst.cfg b/resources/quality/creality/base/base_0.5_TPU_adaptive.inst.cfg index a01fd327bd2..4c8f24db64c 100644 --- a/resources/quality/creality/base/base_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_TPU_standard.inst.cfg b/resources/quality/creality/base/base_0.5_TPU_standard.inst.cfg index aaeba0c6f6f..f437fc220ce 100644 --- a/resources/quality/creality/base/base_0.5_TPU_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_TPU_super.inst.cfg b/resources/quality/creality/base/base_0.5_TPU_super.inst.cfg index 4fc70ac0bd2..7c4a2dc2d7c 100644 --- a/resources/quality/creality/base/base_0.5_TPU_super.inst.cfg +++ b/resources/quality/creality/base/base_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_ABS_standard.inst.cfg b/resources/quality/creality/base/base_0.6_ABS_standard.inst.cfg index 216efb7feb3..0faaf8e45d0 100644 --- a/resources/quality/creality/base/base_0.6_ABS_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_PETG_standard.inst.cfg b/resources/quality/creality/base/base_0.6_PETG_standard.inst.cfg index 7d6238e0183..040da082a4e 100644 --- a/resources/quality/creality/base/base_0.6_PETG_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_PLA_draft.inst.cfg b/resources/quality/creality/base/base_0.6_PLA_draft.inst.cfg index 0bdd7561254..9ce2b0454bc 100644 --- a/resources/quality/creality/base/base_0.6_PLA_draft.inst.cfg +++ b/resources/quality/creality/base/base_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_PLA_low.inst.cfg b/resources/quality/creality/base/base_0.6_PLA_low.inst.cfg index 99ca1726a87..463b652b05b 100644 --- a/resources/quality/creality/base/base_0.6_PLA_low.inst.cfg +++ b/resources/quality/creality/base/base_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_PLA_standard.inst.cfg b/resources/quality/creality/base/base_0.6_PLA_standard.inst.cfg index 3cd403610ff..377b68b0d88 100644 --- a/resources/quality/creality/base/base_0.6_PLA_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_TPU_standard.inst.cfg b/resources/quality/creality/base/base_0.6_TPU_standard.inst.cfg index 9441027751f..1057a431a65 100644 --- a/resources/quality/creality/base/base_0.6_TPU_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.8_ABS_draft.inst.cfg b/resources/quality/creality/base/base_0.8_ABS_draft.inst.cfg index 75faf8511de..3f4026061c1 100644 --- a/resources/quality/creality/base/base_0.8_ABS_draft.inst.cfg +++ b/resources/quality/creality/base/base_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/creality/base/base_0.8_PETG_draft.inst.cfg b/resources/quality/creality/base/base_0.8_PETG_draft.inst.cfg index 9c715fcec51..587724a118b 100644 --- a/resources/quality/creality/base/base_0.8_PETG_draft.inst.cfg +++ b/resources/quality/creality/base/base_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/creality/base/base_0.8_PLA_draft.inst.cfg b/resources/quality/creality/base/base_0.8_PLA_draft.inst.cfg index 5f57198c495..1e865377130 100644 --- a/resources/quality/creality/base/base_0.8_PLA_draft.inst.cfg +++ b/resources/quality/creality/base/base_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/creality/base/base_0.8_TPU_draft.inst.cfg b/resources/quality/creality/base/base_0.8_TPU_draft.inst.cfg index 4861a38b1d6..d660e3b15b7 100644 --- a/resources/quality/creality/base/base_0.8_TPU_draft.inst.cfg +++ b/resources/quality/creality/base/base_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/creality/base/base_1.0_ABS_draft.inst.cfg b/resources/quality/creality/base/base_1.0_ABS_draft.inst.cfg index 1431ab85306..13a66ff4944 100644 --- a/resources/quality/creality/base/base_1.0_ABS_draft.inst.cfg +++ b/resources/quality/creality/base/base_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/creality/base/base_1.0_PETG_draft.inst.cfg b/resources/quality/creality/base/base_1.0_PETG_draft.inst.cfg index 07ccf302ec3..b2e58f29752 100644 --- a/resources/quality/creality/base/base_1.0_PETG_draft.inst.cfg +++ b/resources/quality/creality/base/base_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/creality/base/base_1.0_PLA_draft.inst.cfg b/resources/quality/creality/base/base_1.0_PLA_draft.inst.cfg index b00db633247..76de4101012 100644 --- a/resources/quality/creality/base/base_1.0_PLA_draft.inst.cfg +++ b/resources/quality/creality/base/base_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/creality/base/base_1.0_TPU_draft.inst.cfg b/resources/quality/creality/base/base_1.0_TPU_draft.inst.cfg index bc81bc03718..fd999f6b0db 100644 --- a/resources/quality/creality/base/base_1.0_TPU_draft.inst.cfg +++ b/resources/quality/creality/base/base_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/creality/base/base_global_adaptive.inst.cfg b/resources/quality/creality/base/base_global_adaptive.inst.cfg index b6b8b523497..9a9841afbee 100644 --- a/resources/quality/creality/base/base_global_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/creality/base/base_global_draft.inst.cfg b/resources/quality/creality/base/base_global_draft.inst.cfg index de99319e536..dd5078d648b 100644 --- a/resources/quality/creality/base/base_global_draft.inst.cfg +++ b/resources/quality/creality/base/base_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/creality/base/base_global_low.inst.cfg b/resources/quality/creality/base/base_global_low.inst.cfg index bddb8ae6530..fd0a08e352e 100644 --- a/resources/quality/creality/base/base_global_low.inst.cfg +++ b/resources/quality/creality/base/base_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/creality/base/base_global_standard.inst.cfg b/resources/quality/creality/base/base_global_standard.inst.cfg index 91140677bf3..a3fd5f59562 100644 --- a/resources/quality/creality/base/base_global_standard.inst.cfg +++ b/resources/quality/creality/base/base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/creality/base/base_global_super.inst.cfg b/resources/quality/creality/base/base_global_super.inst.cfg index 6f21593188f..a4bbfed83d6 100644 --- a/resources/quality/creality/base/base_global_super.inst.cfg +++ b/resources/quality/creality/base/base_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/creality/base/base_global_ultra.inst.cfg b/resources/quality/creality/base/base_global_ultra.inst.cfg index 383024037fe..85c78d7b8dd 100644 --- a/resources/quality/creality/base/base_global_ultra.inst.cfg +++ b/resources/quality/creality/base/base_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fast.inst.cfg index a5a9879d72c..b75eb896a49 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fine.inst.cfg index 3d5ec38d355..9ce13339994 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_standard.inst.cfg index f698da2d69a..cf231a76319 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_pla_fast.inst.cfg index 622a93a0876..4487d7314a1 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_pla_fine.inst.cfg index 98eb36c1440..18c2c9e8c2e 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_pla_standard.inst.cfg index 5de5ad8dcae..18b92d7b8bb 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fast.inst.cfg index c35fe262b47..2964bd84245 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fine.inst.cfg index cfdff1319fc..db5d49de7b3 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_standard.inst.cfg index 0030e89bbb3..99940ba8e4a 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_discoultimate_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_pla_fast.inst.cfg index 4a08d336160..7873309c265 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_discoultimate_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_pla_fine.inst.cfg index bc270289223..194a9d2eccd 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_discoultimate_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_pla_standard.inst.cfg index 734edc39200..2bc213d8ba5 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg index 5c7ccc5b9f4..815d889a1bf 100644 --- a/resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg index 1778c341603..17493da3ac5 100644 --- a/resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg index d6f86947c43..83988387dde 100644 --- a/resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_neva_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_neva_pla_fast.inst.cfg index bcc46035846..1ab336b3bd1 100644 --- a/resources/quality/dagoma/dagoma_neva_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_neva_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_neva_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_neva_pla_fine.inst.cfg index dd428dc3ccd..6095afc7a96 100644 --- a/resources/quality/dagoma/dagoma_neva_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_neva_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_neva_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_neva_pla_standard.inst.cfg index 52c7d86ae01..14cb361ba57 100644 --- a/resources/quality/dagoma/dagoma_neva_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_neva_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.1.inst.cfg index 96ea38ade95..7299109537f 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.2.inst.cfg index 1e6d59df5b1..e1cbebad599 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.3.inst.cfg index 96af2f714ca..8f52deed730 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.4.inst.cfg index c3cdc7d9af8..c66b230b3f1 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.6.inst.cfg index 1165fc2ee84..5ca0aff282b 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.4.inst.cfg index f6200a7fd7b..e4e9a63b3bc 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 1.0mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.6.inst.cfg index abfcfebc288..50af708e6d8 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.8.inst.cfg index 079fe5831c7..2c07478c3b1 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 1.0mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.05.inst.cfg index f34520fa2be..652346f10b9 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.05 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.1.inst.cfg index ebe50da2cdf..2bbf4ca5486 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.15.inst.cfg index 16d047f188c..cc458da8d14 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.15 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.1.inst.cfg index e13eb0566df..abf58a72a4b 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.2.inst.cfg index 5be7d6f0676..129ea34c392 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.3.inst.cfg index 1969d8dd976..10dcfad171e 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.2.inst.cfg index 26d1bb6b49f..39d12f25730 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.6mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.4.inst.cfg index 20f44d7343b..5c79e53906e 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.6mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.4.inst.cfg index f02540ffe35..6ba205b42ee 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.6.inst.cfg index d2ecfa7c129..3f8e4d098f7 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.4.inst.cfg index 3bfdd6350e2..41ceb4e795f 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.0mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.6.inst.cfg index e7c4078d25d..5604950ca35 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.8.inst.cfg index 3f2d903175d..f0462b9356f 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.6.inst.cfg index 43244be05fd..2d175ae2fae 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.8.inst.cfg index f4f3277db5e..606a7336642 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.05.inst.cfg index f4699dd42dc..6fc1ba32865 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.05.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.05 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.1.inst.cfg index 973fca320e2..74a331f160b 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.1.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.15.inst.cfg index fbc78a9b014..cacb37c73d7 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.15.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.15 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.2.inst.cfg index 2fdbc7549da..671147552cd 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.2.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.3.inst.cfg index feb709164fb..e41b33ce6ed 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.3.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.4.inst.cfg index 79e2d90b77f..42875c40dde 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.4.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.6.inst.cfg index 498ff3750c1..fb4d097abb7 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.6.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.8.inst.cfg index 0f9baad3ff2..6223ddba969 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.8.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.1.inst.cfg index 355ef66112f..bff77312787 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.2.inst.cfg index c160324f03a..7dadd7ef79b 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.3.inst.cfg index eb642e6e48d..8c90a1f3044 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.4.inst.cfg index 59933f6f69d..cb2ad61411c 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.6.inst.cfg index ccaa29a0d81..36e59de2e3a 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.1.inst.cfg index 7dba8943687..9c87a86afc2 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.2.inst.cfg index eecd00f1541..7d017686437 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.3.inst.cfg index 074fcab081d..1a372f26890 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_tpu_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_tpu_h0.2.inst.cfg index 40caac85b73..03735e73c96 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_tpu_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_tpu_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.4.inst.cfg index a54d67164fb..fd0e2092fee 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.6.inst.cfg index 877c714bd28..764fae3340c 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.4.inst.cfg index d1e846d8ef7..105457d8ddf 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 1.0mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.6.inst.cfg index 587816e51d8..418750d4bf1 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.8.inst.cfg index aaf0443bf3b..3d823e2b158 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 1.0mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.05.inst.cfg index 19744cb04a7..bc56d30d7ce 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.05 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.2mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.1.inst.cfg index b77985d74aa..aa03342cb28 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.2mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.15.inst.cfg index f33ed01e889..9c58bafbbcc 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.15 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.2mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.1.inst.cfg index f4dedc6698d..736ac60dee6 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.2.inst.cfg index 12924a1e88d..60cd6a68350 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.3.inst.cfg index d4ba2e1f8a1..cda0198ba2e 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.2.inst.cfg index a5e375ee62f..5d48f19122d 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.6mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.4.inst.cfg index 23af3a293d6..d4c97e93871 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.6mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.4.inst.cfg index a1c971ab986..8e9ce5df5ce 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.6.inst.cfg index cab9e49b7aa..706e4937486 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.4.inst.cfg index 6397f44f7dc..5fa87f6a3d2 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.0mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.6.inst.cfg index 66f620995a1..1ec3a05ef30 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.8.inst.cfg index 51315f0adc3..c9976361959 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.0mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.6.inst.cfg index b5c1b5a457a..6866799752a 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.8.inst.cfg index c25d184d817..a7b08617c65 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.2mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.05.inst.cfg index e277ae7d215..0aa380fcffc 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.05.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.05 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.1.inst.cfg index 1bc5d20d89a..487bac34b24 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.1.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.15.inst.cfg index f9d453be320..bdf235bd295 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.15.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.15 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.2.inst.cfg index cc7fd06726a..4ac4a2b7986 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.2.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.3.inst.cfg index 8a12a51635d..bdef20e4f87 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.3.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.4.inst.cfg index a9b846ca8bc..897f9fc63a1 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.4.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.6.inst.cfg index 03e6b0b6c5f..1203ab3c8df 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.6.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.8.inst.cfg index faa311ad573..9fd1c538119 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.8.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.1.inst.cfg index f219f6e880c..70de54d92f3 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.2.inst.cfg index 68455d34537..faa45bd0d8d 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.3.inst.cfg index e6e3508722b..eb8aec270f0 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.4.inst.cfg index a34676603ea..75c4f287eb6 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.6.inst.cfg index 36d3e3351ca..45f129d8b42 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.05.inst.cfg index 139fff75b02..5349318ce59 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.05 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.1.inst.cfg index 44a7d230805..515114f3a22 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.15.inst.cfg index e36d71db8e8..9b81d1096a0 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.15 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.1.inst.cfg index 72c7db1513f..d039abd7d7b 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.2.inst.cfg index 01d2f6e0e4c..9a3f73e717c 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.3.inst.cfg index cb03a9decc0..f5c8e5c226c 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.2.inst.cfg index 17164e0ab89..9e24a016dbc 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.6mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.4.inst.cfg index 4aee58e6f32..0457db771eb 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.6mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.4.inst.cfg index c3171fcb896..c27869d8587 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.6.inst.cfg index 130b80c9bc6..54a8cf3c59b 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.4.inst.cfg index c058d2f937d..5eecef0be1e 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.0mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.6.inst.cfg index e3e286cd317..e99408614c0 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.8.inst.cfg index 4da458f122e..d89273d34bd 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.6.inst.cfg index 11120db31cc..6e4e2441df3 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.8.inst.cfg index 9ffc2f057ca..2ee463e2f76 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.05.inst.cfg index c5146b18c2c..6e26fa8520d 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.05.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.05 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.1.inst.cfg index 2c2a6140d5e..621303c03f5 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.1.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.15.inst.cfg index f504d2df4a8..37bcb1de38c 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.15.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.15 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.2.inst.cfg index 25491d48367..9b3c4204614 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.2.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.3.inst.cfg index 88559bb8ddb..29dcfd687e8 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.3.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.4.inst.cfg index ec48205bd8b..11fa0af1202 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.4.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.6.inst.cfg index 1fa9953ada6..a84246755cf 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.6.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.8.inst.cfg index a0f60cc1e80..2a35c530291 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.8.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.1.inst.cfg index 5f877759d79..87b536ce003 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.2.inst.cfg index 4457176cee4..7caa4f19b35 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.3.inst.cfg index 014d2a0a6ca..3d18ae5645d 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.4.inst.cfg index fda7f5bef86..26c55325d3c 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.6inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.6inst.cfg index b338c04c60a..f6f9bdcfd5a 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.6inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.6inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = dagoma_sigma [metadata] -setting_version = 22 +setting_version = 23 type = quality quality_type = h0.6 weight = -3 diff --git a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.8.inst.cfg index a0346640b8c..c0dd1bdc228 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = -4 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.1.inst.cfg index f4854e35901..39d1311f88b 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.2.inst.cfg index fe081fea2b0..30bd0b88f4a 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.3.inst.cfg index 5fc3621a60b..6f5e1594a3d 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.4.inst.cfg index 7fa09620a2e..11627f7cc01 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.6.inst.cfg index fe91f957688..13f032f573b 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.8.inst.cfg index ee029f1031c..2d3a252effa 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg index 9f24b9ff18f..2f4b38a21cb 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg index 8792a7527a8..6cf00327bc3 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg index c38b789f6b7..89f3b80443e 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg index 035ab244cca..d4bfe2a43de 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg index 193c64708bd..d8e4c1c2e2d 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg index e961f9c59eb..a5e83f03bee 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg index eb38d71eec2..94261daf9e1 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg index 33a8956b39a..16b40d8c6b2 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg index 540dc947b2b..b6973e84ae1 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg index bd6d2b41769..d69a78f115e 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg index 2da4d4af4ff..3f1fbabc677 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg index 82ae79a60d5..8c0008450de 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.1.inst.cfg index 62b8f6da3e9..6d675bba9cc 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.1.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.2.inst.cfg index e6467c116b0..254c651f8bd 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.2.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.3.inst.cfg index 3f2f23cc15e..055d0a803ea 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.3.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.4.inst.cfg index 9fbedce8b4a..e64d5457252 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.4.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.6.inst.cfg index 45f5d6f59b6..a0d307ee22c 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.6.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg index 26368409b28..982b7761fa5 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.2.inst.cfg index 9d860526ac9..235498bc96f 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg index e9cbd8f8c0a..290910742d8 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg index f0d1931321b..58656290ee4 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg index d7430e59530..be38030f9fc 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg index a431051e77b..f313d739e24 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.1.inst.cfg index ddcdb5a4e43..3b0c42ca937 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.1.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.2.inst.cfg index b5a534784dc..5755713fe3f 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.2.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.3.inst.cfg index a648eee325a..a055df78fb3 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.3.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.4.inst.cfg index b173c5e6f2e..0f39dc88039 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.4.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.6.inst.cfg index 70c094d2e35..9640066226d 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.6.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg index d7009cd72f0..6156764dbf4 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.2.inst.cfg index bc1c894bccf..d0aad40ed39 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg index 380e162e1c4..456c6ea7983 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg index 3baede10207..d365c172a41 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg index df97ec19f57..7dee9e73175 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg index 64237734781..d5e2a394a06 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_A.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_A.inst.cfg index 11aa6f6507c..e42c085ea20 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_A.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_B.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_B.inst.cfg index 2f83de4ed00..20f232643c0 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_B.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_C.inst.cfg index 83178814300..b62f57aab6b 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_A.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_A.inst.cfg index 31a1896b583..e8e1200b577 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_A.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_B.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_B.inst.cfg index 5377ed0e30a..78e3e522581 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_B.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_C.inst.cfg index acc20d48114..75321948b3d 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_D.inst.cfg index a9eb22c049f..43e7c86bbaf 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_E.inst.cfg index c3eb63c1cdc..255e5e84ac3 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_C.inst.cfg index 1e1104c7d5c..94ff2c2f315 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_D.inst.cfg index af25db2d411..212aaf3863c 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_E.inst.cfg index e7af80eea9e..7d5b705561c 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_F.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_F.inst.cfg index d75f2de82f6..58c39a178de 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_F.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_A.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_A.inst.cfg index 18c60ed91f1..168d4644531 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_A.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_B.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_B.inst.cfg index 2d983918046..aa26014230d 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_B.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_C.inst.cfg index 8565f8b755a..1bbd8503576 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_A.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_A.inst.cfg index 9f0b4b686a4..df0b816a227 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_A.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_B.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_B.inst.cfg index a00fb62edf0..b8557252d5b 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_B.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_C.inst.cfg index de41c515069..f9ecee8b9ad 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_D.inst.cfg index f44d704144c..5129278efd4 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_E.inst.cfg index 47bec0fb2b0..1e6378bbff6 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_C.inst.cfg index 52f4cb6d183..ad052174fd0 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_D.inst.cfg index 21d53035f95..8f04ff05be3 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_E.inst.cfg index 916fe406c74..c6fd1a5b34e 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_F.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_F.inst.cfg index 2ba586ef71a..7a281473bfd 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_F.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_D.inst.cfg index dc5351515bb..dee783d9efe 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_E.inst.cfg index 2d0a92bdce5..39cd500d38d 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_F.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_F.inst.cfg index fc327140a84..5cd566790ae 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_F.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_G.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_G.inst.cfg index f3bc78f2ca2..bd2767eb92a 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_G.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D060 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_D.inst.cfg index c53bb930fbd..657f0acb132 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_E.inst.cfg index 7753924c315..ecd5808a634 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_F.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_F.inst.cfg index 78ff239fedb..073abec7a4c 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_F.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_G.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_G.inst.cfg index 124a0663c98..cc893ee6dcd 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_G.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D060 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_A.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_A.inst.cfg index c17e03cca79..ddd1eb6d159 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_A.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_B.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_B.inst.cfg index 351fe10bac6..42681e7332b 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_B.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_C.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_C.inst.cfg index 7142884b518..48620f80def 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_C.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_D.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_D.inst.cfg index 42b997af7ae..814a31f541a 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_D.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_E.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_E.inst.cfg index 60faed8b770..3e58d17c2b1 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_E.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_C.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_C.inst.cfg index c0fe8ef102c..422fd262ebf 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_C.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_D.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_D.inst.cfg index 93b85e78f8e..7c09cea5e62 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_D.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_E.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_E.inst.cfg index 1d930aae1ff..04fd4eb0001 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_E.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_F.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_F.inst.cfg index c5b90b06878..e69dbee1da9 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_F.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_A.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_A.inst.cfg index 98f25804006..8fa17b68ae7 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_A.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_B.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_B.inst.cfg index fbfcb4447f7..228f9ef2ead 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_B.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_C.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_C.inst.cfg index 5f8c6766b46..f7759e4ac25 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_C.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_D.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_D.inst.cfg index 4e409923b8e..40ab119290e 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_D.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_E.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_E.inst.cfg index 4c66839fbcb..f12afe9f2f4 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_E.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_C.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_C.inst.cfg index 8063002f957..28d9bd7a1e4 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_C.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_D.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_D.inst.cfg index d1759d62d34..4926b470de9 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_D.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_E.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_E.inst.cfg index 8101fbe35f4..83bc04f13b8 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_E.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_F.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_F.inst.cfg index 56e1b5d3139..de3b81ec1cf 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_F.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_A.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_A.inst.cfg index b50557725d2..84e69b2c51b 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_A.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_B.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_B.inst.cfg index 0e8054dd279..e751ff9df69 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_B.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_C.inst.cfg index bd45965d4b8..63fe58d5a7c 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_A.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_A.inst.cfg index f020d2f102c..7feff9db8dd 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_A.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_B.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_B.inst.cfg index 295e777a2f2..63f28107d5f 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_B.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_C.inst.cfg index 7b39f2a7f9b..a4ac0de94f5 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_D.inst.cfg index d2c3add06dd..8e0a0f89f9a 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_E.inst.cfg index dfbf63f11cb..a8d4d43e62e 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_C.inst.cfg index 0d8b1dae2a5..639b632459a 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_D.inst.cfg index f6fffd5ba60..878eb66f4fe 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_E.inst.cfg index 9b1ba588003..9beead6171d 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_F.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_F.inst.cfg index 16d09699dc0..d443dd99fce 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_F.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_A.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_A.inst.cfg index 5e7be2d1fb5..94a9161ac1c 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_A.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_B.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_B.inst.cfg index bf01db2049f..963b6330e34 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_B.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_C.inst.cfg index ecbfacae2b9..813ef05b3ec 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_A.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_A.inst.cfg index 241686cb365..dd9f03094a7 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_A.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_B.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_B.inst.cfg index b9a32b3cb78..85c84cc075c 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_B.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_C.inst.cfg index 448c3e5967c..1963e7531f7 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_D.inst.cfg index 6ab71e22956..edb5b6a2b34 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_E.inst.cfg index 75844ac2dc0..bfe360e0a09 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_C.inst.cfg index 2c3bfd17eca..1f9fe6362d9 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_D.inst.cfg index 64a49a9700a..7c75a8f9745 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_E.inst.cfg index 063dcf8aac0..f054df6a1d9 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_F.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_F.inst.cfg index 9b4ef0761bb..c54e26b6a3c 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_F.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_D.inst.cfg index cf8780e0d3b..63fc3efa35c 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_E.inst.cfg index 4f9ad94b0e1..b9d742bae39 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_F.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_F.inst.cfg index 4a0a27225bb..892a526b0dc 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_F.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_G.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_G.inst.cfg index 80bd1ed96ee..25a4e96755f 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_G.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D060 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_D.inst.cfg index 29432968918..00aacd61410 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_E.inst.cfg index 3b0f9b28921..91c16e5c672 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_F.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_F.inst.cfg index 1744414d276..3668246197d 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_F.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_G.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_G.inst.cfg index e8d01f930d0..519e1f5eaf7 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_G.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D060 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg index 33b5c2c1110..1149937c879 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg index 5be0dc95270..352d4de3418 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg index 76aa867f8fa..e06a0a73228 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg index 20bb125cd9d..7ac8c617152 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg index cc0224cf23f..b39b5d2e963 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg index ec2ebdc647f..7a3ef1b326d 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg index 136ec93d164..373de4e4b45 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg index 3a0a94782cb..0b175880b97 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg index 719a4bdcbd0..508911edfd4 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg index 4486a1d3bc3..0ecb10b88b8 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg index b938502e857..fcd493bc51c 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg index 3b88ca6b671..208f17e7c3b 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg index 41347177703..07bf612a394 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg index e267e7c6eb1..eb2e6a695e0 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg index 35e2e07b41d..644cc467e4c 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg index dd944cbfd1c..219153ea6d8 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg index 8aa462e206f..a654a9c09d2 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg index 0691a01debd..fb793f17f6b 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg index a4d0582c3a1..13026b5e409 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg index 831e17c018e..21dc4e258eb 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg index d9a57d60123..7bc46489766 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg index 8408fbc0148..b8e9e60a71a 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D060 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg index 18c813a79a2..99c9fbb302f 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg index 660c536a5e2..2d0575447bb 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg index 5dbea58c49f..6aaad334479 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg index 9bfd649e99e..854c30e5461 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D060 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_B.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_B.inst.cfg index b0eafd229af..29601ca25eb 100644 --- a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_B.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_C.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_C.inst.cfg index dae89bcf980..136ddf125b6 100644 --- a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_C.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_D.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_D.inst.cfg index 1df4e6596a4..6e67b7bc50d 100644 --- a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_D.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_B.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_B.inst.cfg index 710e0f56159..58f9f71b7d3 100755 --- a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_B.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_C.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_C.inst.cfg index fd47c2736d3..53b1fdebe11 100755 --- a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_C.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_D.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_D.inst.cfg index f55395526ee..cb83ab0b667 100755 --- a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_D.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/deltacomb_global_A.inst.cfg b/resources/quality/deltacomb/deltacomb_global_A.inst.cfg index 37253cf6a9b..ead1fb1073a 100755 --- a/resources/quality/deltacomb/deltacomb_global_A.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/deltacomb/deltacomb_global_B.inst.cfg b/resources/quality/deltacomb/deltacomb_global_B.inst.cfg index f7875876018..91d2b0c01dd 100755 --- a/resources/quality/deltacomb/deltacomb_global_B.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/deltacomb/deltacomb_global_C.inst.cfg b/resources/quality/deltacomb/deltacomb_global_C.inst.cfg index de606ef4240..e2ed0c55ec7 100755 --- a/resources/quality/deltacomb/deltacomb_global_C.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/deltacomb/deltacomb_global_D.inst.cfg b/resources/quality/deltacomb/deltacomb_global_D.inst.cfg index 0f2d7c8b701..c5a78b5fee7 100755 --- a/resources/quality/deltacomb/deltacomb_global_D.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/deltacomb/deltacomb_global_E.inst.cfg b/resources/quality/deltacomb/deltacomb_global_E.inst.cfg index cdef82876d9..c4db01ca7a8 100755 --- a/resources/quality/deltacomb/deltacomb_global_E.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/deltacomb/deltacomb_global_F.inst.cfg b/resources/quality/deltacomb/deltacomb_global_F.inst.cfg index 2f7f2f15ed7..d8015320e40 100755 --- a/resources/quality/deltacomb/deltacomb_global_F.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/deltacomb/deltacomb_global_G.inst.cfg b/resources/quality/deltacomb/deltacomb_global_G.inst.cfg index 412279110b6..86e6afbd003 100755 --- a/resources/quality/deltacomb/deltacomb_global_G.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D060 -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/diy220/diy220_draft.inst.cfg b/resources/quality/diy220/diy220_draft.inst.cfg index c403531471c..b72d99e6b79 100644 --- a/resources/quality/diy220/diy220_draft.inst.cfg +++ b/resources/quality/diy220/diy220_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/diy220/diy220_fast.inst.cfg b/resources/quality/diy220/diy220_fast.inst.cfg index 48cc3518ab1..96cc12594c9 100644 --- a/resources/quality/diy220/diy220_fast.inst.cfg +++ b/resources/quality/diy220/diy220_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/diy220/diy220_high.inst.cfg b/resources/quality/diy220/diy220_high.inst.cfg index 094879b56e2..409b655fedf 100644 --- a/resources/quality/diy220/diy220_high.inst.cfg +++ b/resources/quality/diy220/diy220_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/diy220/diy220_normal.inst.cfg b/resources/quality/diy220/diy220_normal.inst.cfg index ee6b0b3ff45..c9d06fff3bf 100644 --- a/resources/quality/diy220/diy220_normal.inst.cfg +++ b/resources/quality/diy220/diy220_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/draft.inst.cfg b/resources/quality/draft.inst.cfg index 50a7d5ddc63..b0510350d24 100644 --- a/resources/quality/draft.inst.cfg +++ b/resources/quality/draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.10.inst.cfg index fd5d0c54f8c..6a5928fe395 100644 --- a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.15.inst.cfg index e522e06d337..94e0ff76db3 100644 --- a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.20.inst.cfg index 149d17021e6..8e0753df217 100644 --- a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.30.inst.cfg index 9c58ee7fc9c..d15fe355659 100644 --- a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.10.inst.cfg index 3543bf211eb..9c0d0b373f5 100644 --- a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.15.inst.cfg index 588746ddc42..caae30a653a 100644 --- a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.20.inst.cfg index ebb268aae22..821aad26e05 100644 --- a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.30.inst.cfg index e992206e6b5..dda2efc18d3 100644 --- a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/elegoo_layer_0.05.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.05.inst.cfg index 0175d5dbfaa..80daf5e2081 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.05.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_005 -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.10.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.10.inst.cfg index d4fa921e7b7..b8205a51e90 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.15.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.15.inst.cfg index 572a4a7c525..639416de9ad 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.20.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.20.inst.cfg index ee4226a6a87..28df9f27f66 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.30.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.30.inst.cfg index dea809b0635..1027aefde0d 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality weight = -6 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.40.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.40.inst.cfg index cca7b701aaa..abb411e9aac 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.40.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_040 -setting_version = 22 +setting_version = 23 type = quality weight = -6 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.60.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.60.inst.cfg index a7ff7a2610d..60854868a7b 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.60.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.60.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_060 -setting_version = 22 +setting_version = 23 type = quality weight = -6 diff --git a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.10.inst.cfg index 9080be34e67..31f6f2eea50 100644 --- a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.15.inst.cfg index 59a628a2c54..4ceba7f60de 100644 --- a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.20.inst.cfg index 6ff38ad0851..abaf0e45b0f 100644 --- a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.30.inst.cfg index 707dac9c581..05ddbca9c9e 100644 --- a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.05.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.05.inst.cfg index c5ed8f40f81..e7c17603c42 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.05.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_005 -setting_version = 22 +setting_version = 23 type = quality variant = 0.20mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.10.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.10.inst.cfg index fe92906bf3c..56425ebc325 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.20mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg index d5a2f73729c..18057cbd235 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg index e86f4546649..5787dec9abb 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg index db7e5a43c7f..61f1200dc5f 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg index d84cc9e6563..64e054eb603 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.15.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.15.inst.cfg index 043662209bd..a3597c5cfeb 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.20.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.20.inst.cfg index b47c51abeba..6f15cd12b0b 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.30.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.30.inst.cfg index 38de41d075c..326df93ddf4 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.40.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.40.inst.cfg index efb1ababd0c..daf028784f2 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.40.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_040 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg index b6c63fad0fd..64a766b544e 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg index 1e3eec080a6..e2eecb087f2 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_040 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg index 09bc57ffea1..ac50ba359c6 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_060 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.10.inst.cfg index 32e2de589d9..b3354fcc423 100644 --- a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.15.inst.cfg index d2cd594cb72..236f4546c7e 100644 --- a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.20.inst.cfg index 1cd9f3d6ef8..4bff2a9a5c3 100644 --- a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.30.inst.cfg index e5cc440ebab..fdace5abf31 100644 --- a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg index e05b278e4c8..40ddd88c0dc 100644 --- a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg index 412f393a459..9a8a5ff0be5 100644 --- a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg index df3353baed8..4035d17d246 100644 --- a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg index 8219690265c..f9dc125bba7 100644 --- a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg index a0ae0016503..615dc1ef52f 100644 --- a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg index 228eea99dc3..ced818bcec1 100644 --- a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg index df1e5802e7f..29877b0ff2f 100644 --- a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg index 335a479a34f..d9efc991627 100644 --- a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.05.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.05.inst.cfg index 8deff4ba88c..9abf9fd779f 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.05.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_005 -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.10.inst.cfg index 4d19d0f21bd..67163bd6a09 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.15.inst.cfg index 64f00befdfb..6cc3c34161b 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.20.inst.cfg index 06995a4e438..9016c13baf4 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.30.inst.cfg index 09a6e30e7cd..3acd8e9c19a 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality weight = -6 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.40.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.40.inst.cfg index ac180ca1ab7..66a007ae306 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.40.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_040 -setting_version = 22 +setting_version = 23 type = quality weight = -6 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.60.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.60.inst.cfg index a053731bf42..c0f861ed115 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.60.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.60.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_060 -setting_version = 22 +setting_version = 23 type = quality weight = -6 diff --git a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg index 52b8b688105..fdbe91aecbf 100644 --- a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg index ee9fda159b8..12ab4871e61 100644 --- a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg index 0c7c3abf04b..66841fad83a 100644 --- a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg index a3043234b60..6adae27f5d2 100644 --- a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg index 66eb9f49c08..7ec14659ba5 100644 --- a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg index 209ce52fa2b..01f00569fee 100644 --- a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg index 9805a1ae5a8..963b61f6977 100644 --- a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg index cb6ca323e69..256c231275b 100644 --- a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg index f5c76ef6c7a..b9a1aa3dff4 100644 --- a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg index 8762cb12bca..ac71e656147 100644 --- a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg index cb3a64810ec..95fc95df77a 100644 --- a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg index e04d7319e9b..84b045be8bb 100644 --- a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_draft.inst.cfg b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_draft.inst.cfg index 4af6b802be4..d527b02bca3 100644 --- a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_draft.inst.cfg +++ b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_fine.inst.cfg b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_fine.inst.cfg index 11ee7992d3e..267d5935a1f 100644 --- a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_fine.inst.cfg +++ b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_normal.inst.cfg b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_normal.inst.cfg index 19742215b62..e2dc623cfc7 100644 --- a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_normal.inst.cfg +++ b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_draft.inst.cfg b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_draft.inst.cfg index 74ecbb5c973..2a8f9f73de5 100644 --- a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_draft.inst.cfg +++ b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_fine.inst.cfg b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_fine.inst.cfg index 4ac4c374a26..5945ec42dfe 100644 --- a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_fine.inst.cfg +++ b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_normal.inst.cfg b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_normal.inst.cfg index 9474f6a4eb8..c747fb3b2d6 100644 --- a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_normal.inst.cfg +++ b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/eryone_er20/eryone_er20_draft.inst.cfg b/resources/quality/eryone_er20/eryone_er20_draft.inst.cfg index 6da0c1df028..27a692eda50 100644 --- a/resources/quality/eryone_er20/eryone_er20_draft.inst.cfg +++ b/resources/quality/eryone_er20/eryone_er20_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/eryone_er20/eryone_er20_high.inst.cfg b/resources/quality/eryone_er20/eryone_er20_high.inst.cfg index 02018afa924..582b0f6206b 100644 --- a/resources/quality/eryone_er20/eryone_er20_high.inst.cfg +++ b/resources/quality/eryone_er20/eryone_er20_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/eryone_er20/eryone_er20_normal.inst.cfg b/resources/quality/eryone_er20/eryone_er20_normal.inst.cfg index 30387220c0a..79ed3bf4e05 100644 --- a/resources/quality/eryone_er20/eryone_er20_normal.inst.cfg +++ b/resources/quality/eryone_er20/eryone_er20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/eryone_thinker/eryone_thinker_extra_fast.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_extra_fast.inst.cfg index cfaa2a91526..aa29fd73a0a 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_extra_fast.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/eryone_thinker/eryone_thinker_fast.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_fast.inst.cfg index aec233fc9f1..6d02bfab862 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_fast.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/eryone_thinker/eryone_thinker_fine.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_fine.inst.cfg index d4a0e28def6..98d77a84087 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_fine.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/eryone_thinker/eryone_thinker_high.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_high.inst.cfg index 82e16a4d1e8..559a547b757 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_high.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/eryone_thinker/eryone_thinker_normal.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_normal.inst.cfg index 1a27f0b991a..1baad098696 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_normal.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/extra_coarse.inst.cfg b/resources/quality/extra_coarse.inst.cfg index 2dabe4ae3e5..2ef72cde597 100644 --- a/resources/quality/extra_coarse.inst.cfg +++ b/resources/quality/extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/extra_fast.inst.cfg b/resources/quality/extra_fast.inst.cfg index d4f8d0fbfed..3e432ede967 100644 --- a/resources/quality/extra_fast.inst.cfg +++ b/resources/quality/extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/fabtotum/fabtotum_abs_fast.inst.cfg b/resources/quality/fabtotum/fabtotum_abs_fast.inst.cfg index 9a0a77a2d09..28dd970db6b 100644 --- a/resources/quality/fabtotum/fabtotum_abs_fast.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_abs_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = -1 diff --git a/resources/quality/fabtotum/fabtotum_abs_high.inst.cfg b/resources/quality/fabtotum/fabtotum_abs_high.inst.cfg index 571f41a226b..e9b55c86359 100644 --- a/resources/quality/fabtotum/fabtotum_abs_high.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = 1 diff --git a/resources/quality/fabtotum/fabtotum_abs_normal.inst.cfg b/resources/quality/fabtotum/fabtotum_abs_normal.inst.cfg index e745ed6a7b0..dcacb56d017 100644 --- a/resources/quality/fabtotum/fabtotum_abs_normal.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = 0 diff --git a/resources/quality/fabtotum/fabtotum_nylon_fast.inst.cfg b/resources/quality/fabtotum/fabtotum_nylon_fast.inst.cfg index 20ca90e6292..3858c9d91ac 100644 --- a/resources/quality/fabtotum/fabtotum_nylon_fast.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = -1 diff --git a/resources/quality/fabtotum/fabtotum_nylon_high.inst.cfg b/resources/quality/fabtotum/fabtotum_nylon_high.inst.cfg index 349d84c7f72..45bef0403c5 100644 --- a/resources/quality/fabtotum/fabtotum_nylon_high.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = 1 diff --git a/resources/quality/fabtotum/fabtotum_nylon_normal.inst.cfg b/resources/quality/fabtotum/fabtotum_nylon_normal.inst.cfg index 11e69d6a7fa..55532ceb2ac 100644 --- a/resources/quality/fabtotum/fabtotum_nylon_normal.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = 0 diff --git a/resources/quality/fabtotum/fabtotum_pla_fast.inst.cfg b/resources/quality/fabtotum/fabtotum_pla_fast.inst.cfg index d6e02449415..92c4f0dfeb9 100644 --- a/resources/quality/fabtotum/fabtotum_pla_fast.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = -1 diff --git a/resources/quality/fabtotum/fabtotum_pla_high.inst.cfg b/resources/quality/fabtotum/fabtotum_pla_high.inst.cfg index 635704ed986..5f5d9a87dc8 100644 --- a/resources/quality/fabtotum/fabtotum_pla_high.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = 1 diff --git a/resources/quality/fabtotum/fabtotum_pla_normal.inst.cfg b/resources/quality/fabtotum/fabtotum_pla_normal.inst.cfg index e8bfa117da1..b6f13d5efe3 100644 --- a/resources/quality/fabtotum/fabtotum_pla_normal.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = 0 diff --git a/resources/quality/fabtotum/fabtotum_tpu_fast.inst.cfg b/resources/quality/fabtotum/fabtotum_tpu_fast.inst.cfg index 413578becb1..3f206edb69f 100644 --- a/resources/quality/fabtotum/fabtotum_tpu_fast.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_tpu_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = -1 diff --git a/resources/quality/fabtotum/fabtotum_tpu_high.inst.cfg b/resources/quality/fabtotum/fabtotum_tpu_high.inst.cfg index 96c9459e2b1..e5758fd6103 100644 --- a/resources/quality/fabtotum/fabtotum_tpu_high.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_tpu_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = 1 diff --git a/resources/quality/fabtotum/fabtotum_tpu_normal.inst.cfg b/resources/quality/fabtotum/fabtotum_tpu_normal.inst.cfg index acbc66cd2f9..dc86601a444 100644 --- a/resources/quality/fabtotum/fabtotum_tpu_normal.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_tpu_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = 0 diff --git a/resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg index 53b241e1e7d..98022f13717 100644 --- a/resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_abs quality_type = Draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg index 9cb37a009e7..8b3864f9be1 100644 --- a/resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_abs quality_type = Fine -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg index 0cbba43d8b8..c36f61cb8df 100644 --- a/resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_abs quality_type = Normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg index 16662f6dbb5..61d33928a04 100644 --- a/resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_asa quality_type = Draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg index dff57e30dc3..33af821e056 100644 --- a/resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_asa quality_type = Fine -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg index 439851223fb..f6a03c67251 100644 --- a/resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_asa quality_type = Normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg index 1967e62c5c1..ec39636406a 100644 --- a/resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_hips quality_type = Draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg index d722ca9b7bf..44870395ff1 100644 --- a/resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_hips quality_type = Fine -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg index 6c9faff53e3..55d0cbdfe57 100644 --- a/resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_hips quality_type = Normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg index d9de619b077..ac01503afa9 100644 --- a/resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_nylon quality_type = Draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg index ad46a8a0f93..70cf6b75cfe 100644 --- a/resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_nylon quality_type = Fine -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg index 8bf3d5f1727..2afb912967d 100644 --- a/resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_nylon quality_type = Normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg index 536bc78817f..c9668fec6a2 100644 --- a/resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_petg quality_type = Draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg index 5bdc47aa27c..26ac9b1eefa 100644 --- a/resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_petg quality_type = Fine -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg index 507f1919dc1..5596b8911d5 100644 --- a/resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_petg quality_type = Normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg index e9f2da3220e..4e0841b5fab 100644 --- a/resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_pla quality_type = Draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg index 85b3e983e4a..faca76f3598 100644 --- a/resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_pla quality_type = Fine -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg index 7f3d48bb132..db95936528b 100644 --- a/resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_pla quality_type = Normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg index 60334ab70a3..d992ad808fa 100644 --- a/resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_tpe quality_type = Draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg index 6754b148d15..6751fa489a0 100644 --- a/resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_tpe quality_type = Fine -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg index 37b421399a5..be5bf2a03b1 100644 --- a/resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_tpe quality_type = Normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fast.inst.cfg b/resources/quality/fast.inst.cfg index 7fc64242506..2bd950fbf28 100644 --- a/resources/quality/fast.inst.cfg +++ b/resources/quality/fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/flashforge/abs/flashforge_0.20_abs_super.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.20_abs_super.inst.cfg index 2d8aefe9f91..ceeb33ebb0e 100644 --- a/resources/quality/flashforge/abs/flashforge_0.20_abs_super.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.20_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.20_abs_ultra.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.20_abs_ultra.inst.cfg index d4593e2f2b9..59f9dfc21b7 100644 --- a/resources/quality/flashforge/abs/flashforge_0.20_abs_ultra.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.20_abs_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.30_abs_adaptive.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.30_abs_adaptive.inst.cfg index 61dbce2980a..c0ca53f77e1 100644 --- a/resources/quality/flashforge/abs/flashforge_0.30_abs_adaptive.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.30_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.30_abs_standard.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.30_abs_standard.inst.cfg index 792f5d6e28c..214e8838d05 100644 --- a/resources/quality/flashforge/abs/flashforge_0.30_abs_standard.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.30_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.30_abs_super.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.30_abs_super.inst.cfg index a37b7f6f131..840be248622 100644 --- a/resources/quality/flashforge/abs/flashforge_0.30_abs_super.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.30_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.40_abs_adaptive.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.40_abs_adaptive.inst.cfg index 1222bdcdabd..563fabb46a0 100644 --- a/resources/quality/flashforge/abs/flashforge_0.40_abs_adaptive.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.40_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.40_abs_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.40_abs_draft.inst.cfg index 0931880f756..16442849542 100644 --- a/resources/quality/flashforge/abs/flashforge_0.40_abs_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.40_abs_low.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.40_abs_low.inst.cfg index cd6705a7eb5..64deb8c2575 100644 --- a/resources/quality/flashforge/abs/flashforge_0.40_abs_low.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.40_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.40_abs_standard.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.40_abs_standard.inst.cfg index 785d8001da9..d70262d6e3e 100644 --- a/resources/quality/flashforge/abs/flashforge_0.40_abs_standard.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.40_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.40_abs_super.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.40_abs_super.inst.cfg index c29879a70fb..dc92a362279 100644 --- a/resources/quality/flashforge/abs/flashforge_0.40_abs_super.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.40_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.50_abs_adaptive.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.50_abs_adaptive.inst.cfg index 7a2a5f1c531..a3540c2f2a3 100644 --- a/resources/quality/flashforge/abs/flashforge_0.50_abs_adaptive.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.50_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.50_abs_coarse.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.50_abs_coarse.inst.cfg index 8a7f545da38..2af3abe070b 100644 --- a/resources/quality/flashforge/abs/flashforge_0.50_abs_coarse.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.50_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.50_abs_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.50_abs_draft.inst.cfg index cbca7b4f4e4..d1c103a95bb 100644 --- a/resources/quality/flashforge/abs/flashforge_0.50_abs_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.50_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.50_abs_low.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.50_abs_low.inst.cfg index d11945113f8..8558a9af989 100644 --- a/resources/quality/flashforge/abs/flashforge_0.50_abs_low.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.50_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.50_abs_standard.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.50_abs_standard.inst.cfg index 8f9a0d11115..9d95220b242 100644 --- a/resources/quality/flashforge/abs/flashforge_0.50_abs_standard.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.50_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.60_abs_coarse.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.60_abs_coarse.inst.cfg index 25ab9725170..34a0265bad9 100644 --- a/resources/quality/flashforge/abs/flashforge_0.60_abs_coarse.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.60_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.60_abs_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.60_abs_draft.inst.cfg index d9bb2bab9bf..abe8341705d 100644 --- a/resources/quality/flashforge/abs/flashforge_0.60_abs_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.60_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.60_abs_extra_coarse.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.60_abs_extra_coarse.inst.cfg index b4b744f033a..27be971b69d 100644 --- a/resources/quality/flashforge/abs/flashforge_0.60_abs_extra_coarse.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.60_abs_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Xcoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.60_abs_standard.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.60_abs_standard.inst.cfg index f3e0e2b70dc..ff145872789 100644 --- a/resources/quality/flashforge/abs/flashforge_0.60_abs_standard.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.60_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg index a5a800486f3..aae66cffb2a 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg index 316f5872a70..3c0cefacdf7 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg index b322c2784aa..0b679e648b5 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg index d329ebb4d95..19e2ba1fa2c 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg index 0aacffffcc8..1e7d154fa1a 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg index 0a62fdc6646..84e93885264 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg index 9ea811006d5..4454e4caa83 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg index 9d0d042d37f..89552b7d27f 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg index 469930cd21b..5823fde21cf 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg index bd25742c2a2..4749e76a583 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg index 691770bca3d..2e27fad0d19 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg index 9ad2fc4d398..544850b5a13 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg index 69c626d03f4..51be6df1ef5 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg index 8d7a92f553f..92db3f74973 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg index 115387a8153..44c5c7eb4bc 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg index 46f3f2673b5..9385df49535 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg index c0bc64550d7..0f7bb26ea3b 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg index 14ce91d9f3c..eb77c444fcf 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg index cdb13c71d15..b3c8daf0420 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg index 77e222ddcdd..9ca8cbbd12d 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg index cb0dd441c29..577b560d8b6 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg index 10055e2fa0f..d04e5f27135 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg index b85163b595d..e58194790cc 100644 --- a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg index a584b977248..1cc6c7d5a60 100644 --- a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg index e976f9f7b44..004c9706413 100644 --- a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/flashforge_adventurer3_draft.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_draft.inst.cfg index f1dd467a2bd..01722e32eac 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_draft.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/flashforge/flashforge_adventurer3_fast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_fast.inst.cfg index 300481cd3db..ea2288f7122 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_fast.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/flashforge/flashforge_adventurer3_fine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_fine.inst.cfg index 553091b10a8..57ea1716a0e 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_fine.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/flashforge/flashforge_adventurer3_normal.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_normal.inst.cfg index 438b2cc9faf..412236a0b41 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_normal.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/flashforge/flashforge_adventurer3_vfast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_vfast.inst.cfg index fba4eb1091d..2393725b447 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_vfast.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/flashforge/flashforge_adventurer3_vfine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_vfine.inst.cfg index 6ea52128bee..ef88b8f5156 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_vfine.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = veryfine -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/flashforge/flashforge_adventurer4_draft.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_draft.inst.cfg index 7ee52ca8a3a..f0ea2efb265 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_draft.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/flashforge/flashforge_adventurer4_fast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_fast.inst.cfg index 8be5e02e722..1b1a290eca9 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_fast.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/flashforge/flashforge_adventurer4_fine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_fine.inst.cfg index 272e5bc69dc..5045911c777 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_fine.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/flashforge/flashforge_adventurer4_normal.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_normal.inst.cfg index 4eb11924fe2..fdfa82e1823 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_normal.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/flashforge/flashforge_adventurer4_vfast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_vfast.inst.cfg index a2e3718bd26..6049accf3c8 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_vfast.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/flashforge/flashforge_adventurer4_vfine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_vfine.inst.cfg index f7eda2f1949..9ad3086e4d9 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_vfine.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = veryfine -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/flashforge/flashforge_global_0.08_ultra.inst.cfg b/resources/quality/flashforge/flashforge_global_0.08_ultra.inst.cfg index e88180b1f31..4d02730890f 100644 --- a/resources/quality/flashforge/flashforge_global_0.08_ultra.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.08_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/flashforge/flashforge_global_0.12_super.inst.cfg b/resources/quality/flashforge/flashforge_global_0.12_super.inst.cfg index 0da733d6f22..0569e335b95 100644 --- a/resources/quality/flashforge/flashforge_global_0.12_super.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.12_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/flashforge/flashforge_global_0.16_adaptive.inst.cfg b/resources/quality/flashforge/flashforge_global_0.16_adaptive.inst.cfg index bf19c702eb2..ae3e8dbbf29 100644 --- a/resources/quality/flashforge/flashforge_global_0.16_adaptive.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.16_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/flashforge/flashforge_global_0.20_standard.inst.cfg b/resources/quality/flashforge/flashforge_global_0.20_standard.inst.cfg index 7b5c94aa376..057fd5c1647 100644 --- a/resources/quality/flashforge/flashforge_global_0.20_standard.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/flashforge/flashforge_global_0.28_low.inst.cfg b/resources/quality/flashforge/flashforge_global_0.28_low.inst.cfg index ed78aa2e6c6..686394cfc35 100644 --- a/resources/quality/flashforge/flashforge_global_0.28_low.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.28_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/flashforge/flashforge_global_0.32_draft.inst.cfg b/resources/quality/flashforge/flashforge_global_0.32_draft.inst.cfg index c6506bf1df6..df8c6440f16 100644 --- a/resources/quality/flashforge/flashforge_global_0.32_draft.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.32_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/flashforge/flashforge_global_0.40_coarse.inst.cfg b/resources/quality/flashforge/flashforge_global_0.40_coarse.inst.cfg index 6e807e4ea77..8ca5ffe6d52 100644 --- a/resources/quality/flashforge/flashforge_global_0.40_coarse.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -6 diff --git a/resources/quality/flashforge/flashforge_global_0.48_extra_coarse.inst.cfg b/resources/quality/flashforge/flashforge_global_0.48_extra_coarse.inst.cfg index 4d25b6eae41..2daeadc9d88 100644 --- a/resources/quality/flashforge/flashforge_global_0.48_extra_coarse.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.48_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Xcoarse -setting_version = 22 +setting_version = 23 type = quality weight = -7 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg index 03b8d5f74e0..a0c8d9634c1 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg index 0c4322dfeef..fc2a74f13fb 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg index 1047360ee70..7287263674a 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg index cddd593db6c..49a5747768a 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg index 1742dbd9c3e..f381d514043 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg index 7e67c9f1782..f56ef4cea54 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg index c3aecf6625c..140906c9bb2 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg index c60aab13839..8a0958494a7 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg index 4a532fe98b5..2d1d442ae02 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg index b44810bae86..12224722b42 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg index 042d3035224..fe3cb31541a 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg index cb40e63d8cb..987e14ec9c7 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg index e66be5bc7ee..5de2fbac402 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg index 2d2d8bdbdc9..77f453fc032 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/petg/flashforge_0.2_petg_super.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.2_petg_super.inst.cfg index 485effea9c0..3be4591fee4 100644 --- a/resources/quality/flashforge/petg/flashforge_0.2_petg_super.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.2_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.2_petg_ultra.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.2_petg_ultra.inst.cfg index 0c469988fec..28dc975374d 100644 --- a/resources/quality/flashforge/petg/flashforge_0.2_petg_ultra.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.2_petg_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.30_petg_adaptive.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.30_petg_adaptive.inst.cfg index 77a7d139578..36f5894a957 100644 --- a/resources/quality/flashforge/petg/flashforge_0.30_petg_adaptive.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.30_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.30_petg_standard.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.30_petg_standard.inst.cfg index d9e3355b364..328a8a1ef9e 100644 --- a/resources/quality/flashforge/petg/flashforge_0.30_petg_standard.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.30_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.30_petg_super.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.30_petg_super.inst.cfg index 6289044cc74..05907e516c9 100644 --- a/resources/quality/flashforge/petg/flashforge_0.30_petg_super.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.30_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.40_petg_adaptive.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.40_petg_adaptive.inst.cfg index 5bc3a40758c..c7d703e787e 100644 --- a/resources/quality/flashforge/petg/flashforge_0.40_petg_adaptive.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.40_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.40_petg_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.40_petg_draft.inst.cfg index 8cda9a4e98f..ff367e74222 100644 --- a/resources/quality/flashforge/petg/flashforge_0.40_petg_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.40_petg_low.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.40_petg_low.inst.cfg index 4812cc11408..e0837d68e5a 100644 --- a/resources/quality/flashforge/petg/flashforge_0.40_petg_low.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.40_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.40_petg_standard.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.40_petg_standard.inst.cfg index c047e0c1654..b2c7b3ae157 100644 --- a/resources/quality/flashforge/petg/flashforge_0.40_petg_standard.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.40_petg_super.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.40_petg_super.inst.cfg index e456f385cec..8254ecd952e 100644 --- a/resources/quality/flashforge/petg/flashforge_0.40_petg_super.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.40_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.50_petg_adaptive.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.50_petg_adaptive.inst.cfg index af2991d185c..1955a205179 100644 --- a/resources/quality/flashforge/petg/flashforge_0.50_petg_adaptive.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.50_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.50_petg_coarse.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.50_petg_coarse.inst.cfg index 6acb269c0fa..33450d9d86f 100644 --- a/resources/quality/flashforge/petg/flashforge_0.50_petg_coarse.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.50_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.50_petg_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.50_petg_draft.inst.cfg index b7c9b546688..b17e8c421f3 100644 --- a/resources/quality/flashforge/petg/flashforge_0.50_petg_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.50_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.50_petg_low.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.50_petg_low.inst.cfg index 26ef92b68f3..aa39173cb34 100644 --- a/resources/quality/flashforge/petg/flashforge_0.50_petg_low.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.50_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.50_petg_standard.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.50_petg_standard.inst.cfg index b630f3f7df3..ba80b010f48 100644 --- a/resources/quality/flashforge/petg/flashforge_0.50_petg_standard.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.50_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.60_petg_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.60_petg_draft.inst.cfg index 71fcd17ff97..737bb687864 100644 --- a/resources/quality/flashforge/petg/flashforge_0.60_petg_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.60_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.60_petg_extra_coarse.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.60_petg_extra_coarse.inst.cfg index df2af8aab70..055eb431556 100644 --- a/resources/quality/flashforge/petg/flashforge_0.60_petg_extra_coarse.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.60_petg_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Xcoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.60_petg_standard.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.60_petg_standard.inst.cfg index d926c4ffe8a..aae8dae743d 100644 --- a/resources/quality/flashforge/petg/flashforge_0.60_petg_standard.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.60_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg index 3405adaae5d..f1dab1f88a9 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg index 20e2ba9ce5d..940aa1b7041 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg index 45aebad2451..22338239181 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg index 85ef922ea79..94f819068d9 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg index ec8d0e4d046..46fcf05f831 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg index 074d4864ce5..edb4b639320 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg index 66d21845629..3873c089a53 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg index 4f7d0da1c2d..68caeb589af 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg index 2f486d4d5d8..e360f94600b 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg index 9ac73720499..07e9565243c 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg index 744527c1397..279130f4dcf 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg index aeb666c82dd..68475b9a3f8 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg index cb0b7fba373..a64bce087f9 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg index ec087730523..1ff8c936890 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg index 84be0afa3b2..8d6052529a1 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg index 75bde3cd439..fde77f6c689 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg index 5f37b1e8122..bac296cdd98 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg index 844195d2df2..a603d564d1d 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg index 2eb93f1216c..253ed947c18 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg index ff190b0e238..41eeff7317d 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg index 91d617d2347..bbdfb71452c 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg index 22647877b82..bf68f7518cd 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_0.20_pla_super.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.20_pla_super.inst.cfg index 25bb5ab67df..d0f9b2605be 100644 --- a/resources/quality/flashforge/pla/flashforge_0.20_pla_super.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.20_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.20_pla_ultra.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.20_pla_ultra.inst.cfg index d139d9badea..4b673500814 100644 --- a/resources/quality/flashforge/pla/flashforge_0.20_pla_ultra.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.20_pla_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.30_pla_adaptive.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.30_pla_adaptive.inst.cfg index 1360aaf7470..967c4906b0e 100644 --- a/resources/quality/flashforge/pla/flashforge_0.30_pla_adaptive.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.30_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.30_pla_standard.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.30_pla_standard.inst.cfg index 895d454e3fe..93671d76ed0 100644 --- a/resources/quality/flashforge/pla/flashforge_0.30_pla_standard.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.30_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.30_pla_super.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.30_pla_super.inst.cfg index 76a588d33c5..d1becca566c 100644 --- a/resources/quality/flashforge/pla/flashforge_0.30_pla_super.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.30_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.40_pla_adaptive.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.40_pla_adaptive.inst.cfg index b7f7109d9b3..a43dec98ca4 100644 --- a/resources/quality/flashforge/pla/flashforge_0.40_pla_adaptive.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.40_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.40_pla_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.40_pla_draft.inst.cfg index 1d8878cf9fa..e93f061086a 100644 --- a/resources/quality/flashforge/pla/flashforge_0.40_pla_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.40_pla_low.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.40_pla_low.inst.cfg index ee39f73df24..b699f3488d9 100644 --- a/resources/quality/flashforge/pla/flashforge_0.40_pla_low.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.40_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.40_pla_standard.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.40_pla_standard.inst.cfg index 505ef421426..fc9bf8e60cb 100644 --- a/resources/quality/flashforge/pla/flashforge_0.40_pla_standard.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.40_pla_super.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.40_pla_super.inst.cfg index 7da3471196f..402abc4be96 100644 --- a/resources/quality/flashforge/pla/flashforge_0.40_pla_super.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.40_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.50_pla_adaptive.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.50_pla_adaptive.inst.cfg index a3b603704d9..ba5b5d9cd74 100644 --- a/resources/quality/flashforge/pla/flashforge_0.50_pla_adaptive.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.50_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.50_pla_coarse.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.50_pla_coarse.inst.cfg index 886c425d254..e908862f694 100644 --- a/resources/quality/flashforge/pla/flashforge_0.50_pla_coarse.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.50_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.50_pla_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.50_pla_draft.inst.cfg index 4a48cadf097..1fc1c76255d 100644 --- a/resources/quality/flashforge/pla/flashforge_0.50_pla_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.50_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.50_pla_low.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.50_pla_low.inst.cfg index deee1473786..8a785cccecd 100644 --- a/resources/quality/flashforge/pla/flashforge_0.50_pla_low.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.50_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.50_pla_standard.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.50_pla_standard.inst.cfg index b7ab32d1aec..dbfd3fe2739 100644 --- a/resources/quality/flashforge/pla/flashforge_0.50_pla_standard.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.50_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.60_pla_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.60_pla_draft.inst.cfg index 73b814d0e2e..48d67a86578 100644 --- a/resources/quality/flashforge/pla/flashforge_0.60_pla_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.60_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.60_pla_extra Coarse.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.60_pla_extra Coarse.inst.cfg index 27cd8def7e8..c14b3543a43 100644 --- a/resources/quality/flashforge/pla/flashforge_0.60_pla_extra Coarse.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.60_pla_extra Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Xcoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.60_pla_standard.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.60_pla_standard.inst.cfg index 656e85dad26..893f575be8a 100644 --- a/resources/quality/flashforge/pla/flashforge_0.60_pla_standard.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.60_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg index 6dbc8c55dbc..793fc6d10ea 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg index 690c3e6b84b..c983c9fe5f4 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg index 6a4342197ea..a649f8c2bba 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg index 180e648dfd1..84cdfaf7bee 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg index 7e6dee0b1ea..4a6852033ed 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg index 06e24e078da..d71dbd89c88 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg index d82fb0cdadd..d4df69f5f0b 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg index dfd442d63cb..e379ed20356 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg index 45084440554..4520b7cb87e 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg index 782b74a7dc5..b4084177b4b 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg index 22b74b6a252..2b23a1699dd 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg index 747f8a0076a..de66e4f8714 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg index e7a6ef72cd4..4f45dd9a3b9 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg index 18bd03e2fa4..de3ed6f4f1c 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg index a40571318da..ab3f1260e71 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg index b81f729ed71..3b6bd6fa035 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg index 6e3486a0318..cf9a7d73a56 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg index 7635f689449..628dc43a99b 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg index 718dd4d4c74..ce2a91ad6e7 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg index 50e52230453..d91ec1c84de 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg index f81ed661553..1dcbb157145 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg index aa065e31f0f..21139a85fd0 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_adaptive.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_adaptive.inst.cfg index be0422e6a84..aff1ba50177 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_adaptive.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_draft.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_draft.inst.cfg index 17ae6fad79c..a79887ca137 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_draft.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_low.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_low.inst.cfg index f254fd3c0a9..49335a57732 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_low.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_standard.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_standard.inst.cfg index 9414642a421..c648bd5bf30 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_standard.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_super.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_super.inst.cfg index c550dabdf28..874afda0910 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_super.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_adaptive.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_adaptive.inst.cfg index 7be34ff5e00..91eafec12c3 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_adaptive.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_draft.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_draft.inst.cfg index 1a6aab076be..61e83554ed7 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_draft.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_low.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_low.inst.cfg index 9a2466df8cb..dc0da4c92d8 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_low.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_standard.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_standard.inst.cfg index 7f789e0c202..8ca5c89a313 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_standard.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_draft.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_draft.inst.cfg index 2567733c06e..b7c3bbf127b 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_draft.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_low.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_low.inst.cfg index 3c4c0ed5cce..a638f56d613 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_low.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_standard.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_standard.inst.cfg index 8f504647407..bbb162048ce 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_standard.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flsun_sr/flsun_sr_fine.inst.cfg b/resources/quality/flsun_sr/flsun_sr_fine.inst.cfg index c54130d9538..6c598e033db 100644 --- a/resources/quality/flsun_sr/flsun_sr_fine.inst.cfg +++ b/resources/quality/flsun_sr/flsun_sr_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/flsun_sr/flsun_sr_normal.inst.cfg b/resources/quality/flsun_sr/flsun_sr_normal.inst.cfg index 373e5dbf6f9..f74057ed5e2 100644 --- a/resources/quality/flsun_sr/flsun_sr_normal.inst.cfg +++ b/resources/quality/flsun_sr/flsun_sr_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/flsun_v400/flsun_v400_normal.inst.cfg b/resources/quality/flsun_v400/flsun_v400_normal.inst.cfg index 9c990469390..e0a17123104 100644 --- a/resources/quality/flsun_v400/flsun_v400_normal.inst.cfg +++ b/resources/quality/flsun_v400/flsun_v400_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/flyingbear/abs/flyingbear_0.25_abs_super.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.25_abs_super.inst.cfg index 930466e23c9..5ae7ce783f0 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.25_abs_super.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.25_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.25_abs_ultra.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.25_abs_ultra.inst.cfg index 3fc33bbaf69..3b97fbbec30 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.25_abs_ultra.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.25_abs_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_adaptive.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_adaptive.inst.cfg index 61ba30270c7..9067ae4f18d 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_adaptive.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_standard.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_standard.inst.cfg index 9fa0bb768ee..ba555c9b200 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_standard.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_super.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_super.inst.cfg index 79697198c80..712ffc8076c 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_super.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_adaptive.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_adaptive.inst.cfg index aa49d937ad3..7ec3745a349 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_adaptive.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_low.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_low.inst.cfg index f66ea96064a..6d90f7d958b 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_low.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_standard.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_standard.inst.cfg index 8ca14e5f6b5..d6909bc9828 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_standard.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_super.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_super.inst.cfg index 66bdc09d2f9..e7fcde28b55 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_super.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_adaptive.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_adaptive.inst.cfg index 71a29de5f00..5137f14e39d 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_adaptive.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_draft.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_draft.inst.cfg index 82b314fec0c..05ccbc742f0 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_draft.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_low.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_low.inst.cfg index 648c3f97659..4d871723108 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_low.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_standard.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_standard.inst.cfg index adaa26b406e..e645dc6064c 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_standard.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_draft.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_draft.inst.cfg index bef5e104e8c..325f189ce5f 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_draft.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_low.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_low.inst.cfg index 4c613f89f6d..64c4740121f 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_low.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_standard.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_standard.inst.cfg index 6c322658076..af09323a3ae 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_standard.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.80_abs_coarse.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.80_abs_coarse.inst.cfg index 8e0cff9a717..2fe02ed7f06 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.80_abs_coarse.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.80_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.80_abs_draft.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.80_abs_draft.inst.cfg index e37f690bc15..b551a10c001 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.80_abs_draft.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.80_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/flyingbear_global_0.08_ultra.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.08_ultra.inst.cfg index 65ccdb52154..1ab5c72914a 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.08_ultra.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.08_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/flyingbear/flyingbear_global_0.12_super.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.12_super.inst.cfg index 0a4a714bc6e..7fa1bd94892 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.12_super.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.12_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/flyingbear/flyingbear_global_0.16_adaptive.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.16_adaptive.inst.cfg index d2098fbb4eb..e46142baea3 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.16_adaptive.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.16_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/flyingbear/flyingbear_global_0.20_standard.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.20_standard.inst.cfg index 505cb0463e3..14e7112594a 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.20_standard.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/flyingbear/flyingbear_global_0.28_low.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.28_low.inst.cfg index 3f12e491b5a..90777f4f27c 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.28_low.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.28_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/flyingbear/flyingbear_global_0.32_draft.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.32_draft.inst.cfg index 231f0fd01ca..bdffacbf938 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.32_draft.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.32_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/flyingbear/flyingbear_global_0.40_coarse.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.40_coarse.inst.cfg index 8b6dd5bddb7..5f83d785642 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.40_coarse.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -6 diff --git a/resources/quality/flyingbear/hips/flyingbear_0.25_hips_super.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.25_hips_super.inst.cfg index df78a0c3f45..ee4503a01d5 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.25_hips_super.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.25_hips_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.25_hips_ultra.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.25_hips_ultra.inst.cfg index 16c455bb065..1051c04f35b 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.25_hips_ultra.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.25_hips_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_adaptive.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_adaptive.inst.cfg index 24d9ece765f..39b0cd3a95b 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_adaptive.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_standard.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_standard.inst.cfg index f2a45a4c331..992218c567e 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_standard.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_super.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_super.inst.cfg index 4035a9a59c5..a9e55e49654 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_super.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_adaptive.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_adaptive.inst.cfg index 5ec95868eda..639276336a6 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_adaptive.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_low.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_low.inst.cfg index 666e72803a6..176f54fe315 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_low.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_standard.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_standard.inst.cfg index de6ad15bb99..dbde45c7aec 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_standard.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_super.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_super.inst.cfg index bf247f15c6b..b962c50da24 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_super.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_adaptive.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_adaptive.inst.cfg index 7f00389fa0f..7f61cc48934 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_adaptive.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_draft.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_draft.inst.cfg index 151e4129145..4ad64742632 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_draft.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_low.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_low.inst.cfg index 730abc2c952..9f9229d9013 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_low.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_standard.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_standard.inst.cfg index cdef28723f1..23c0c98525b 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_standard.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_draft.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_draft.inst.cfg index 60024c0720d..5ff44cc28b1 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_draft.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_low.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_low.inst.cfg index f6bd94749ed..1bfae457ce4 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_low.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_standard.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_standard.inst.cfg index 682b069da8d..7a5c4dff286 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_standard.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.80_hips_coarse.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.80_hips_coarse.inst.cfg index 51459ab8883..b7deccddd06 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.80_hips_coarse.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.80_hips_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.80_hips_draft.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.80_hips_draft.inst.cfg index fa4b6f0ea5b..30dd959964b 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.80_hips_draft.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.80_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.25_petg_super.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.25_petg_super.inst.cfg index 71acf92c30e..a6c59756d1b 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.25_petg_super.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.25_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.25_petg_ultra.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.25_petg_ultra.inst.cfg index 1436e850e66..5d036770949 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.25_petg_ultra.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.25_petg_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_adaptive.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_adaptive.inst.cfg index 83852fdf48f..80b7ce36321 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_adaptive.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_standard.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_standard.inst.cfg index 1a089cfebca..ed022ff1a72 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_standard.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_super.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_super.inst.cfg index 0554999dce7..fb08d902818 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_super.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_adaptive.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_adaptive.inst.cfg index 2b2b6e8e67e..bee035c6339 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_adaptive.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_low.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_low.inst.cfg index d4f3706cf26..f7e51f3ccfc 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_low.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_standard.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_standard.inst.cfg index ff3604ad2ed..408bbccf1cb 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_standard.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_super.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_super.inst.cfg index 83b9afde7fc..fed9d3d3ac0 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_super.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_adaptive.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_adaptive.inst.cfg index f7ea5866e03..a6c52520c30 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_adaptive.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_draft.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_draft.inst.cfg index 28575d7b40d..6e8556c649f 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_draft.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_low.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_low.inst.cfg index 4ee5424f672..18b5c61b2b6 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_low.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_standard.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_standard.inst.cfg index a0395edf271..92e2b2d84ba 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_standard.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_draft.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_draft.inst.cfg index 80e0f04c763..2990745ee54 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_draft.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_low.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_low.inst.cfg index 031efab026b..6ae9d86cc32 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_low.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_standard.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_standard.inst.cfg index aa619cfd1ee..bef2f08658e 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_standard.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.80_petg_coarse.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.80_petg_coarse.inst.cfg index 0b60eac171b..dccc9296de8 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.80_petg_coarse.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.80_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.80_petg_draft.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.80_petg_draft.inst.cfg index 1886e60500c..00ea0870784 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.80_petg_draft.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.80_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.25_pla_super.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.25_pla_super.inst.cfg index e519b6d142c..5949d2337ca 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.25_pla_super.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.25_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.25_pla_ultra.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.25_pla_ultra.inst.cfg index b97aef5a390..c7fca8f17d9 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.25_pla_ultra.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.25_pla_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_adaptive.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_adaptive.inst.cfg index 20bbf3858f0..b38c4dc5a18 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_adaptive.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_standard.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_standard.inst.cfg index 49b158e03fd..c69fb2a58f4 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_standard.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_super.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_super.inst.cfg index 2ad07694fc2..6936c9506e4 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_super.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_adaptive.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_adaptive.inst.cfg index f34b3b1bb95..e1c669ac7fc 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_adaptive.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_low.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_low.inst.cfg index 6706cbabc65..c2e502ea920 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_low.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_standard.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_standard.inst.cfg index da766f5d1b5..56f9be67c3a 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_standard.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_super.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_super.inst.cfg index 8b5001e62c6..8af62735503 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_super.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_adaptive.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_adaptive.inst.cfg index 19d31e9c937..575a89d77d0 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_adaptive.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_draft.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_draft.inst.cfg index ef476033954..4988d8fcfde 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_draft.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_low.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_low.inst.cfg index b3371769d0e..203d6f9002c 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_low.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_standard.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_standard.inst.cfg index b2ddb8eabe3..d46789d1e38 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_standard.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_draft.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_draft.inst.cfg index 0ec35e6dad3..7fa9b57c3d9 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_draft.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_low.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_low.inst.cfg index 55498bde2e1..01da9606edd 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_low.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_standard.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_standard.inst.cfg index 4c10851db84..1a9d8352273 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_standard.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.80_pla_coarse.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.80_pla_coarse.inst.cfg index 735cdf2f91d..eea62d99010 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.80_pla_coarse.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.80_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.80_pla_draft.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.80_pla_draft.inst.cfg index 0964ebcfe61..f672730f2ae 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.80_pla_draft.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.80_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_super.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_super.inst.cfg index 1dde8db898c..2878b3c2703 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_super.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_ultra.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_ultra.inst.cfg index 78b295e64ef..acfd12f4448 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_ultra.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_adaptive.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_adaptive.inst.cfg index bf7d7fa7bb2..430e88b36a9 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_adaptive.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_standard.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_standard.inst.cfg index 9e282d5aec9..02965b938ee 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_standard.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_super.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_super.inst.cfg index c2faee28a8d..4627852ad28 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_super.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_adaptive.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_adaptive.inst.cfg index 7200eef8fad..a5d4c71cb54 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_adaptive.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_low.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_low.inst.cfg index b842231fac0..bce6a871cf6 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_low.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_standard.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_standard.inst.cfg index a5cb57090e0..f4506c04ec7 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_standard.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_super.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_super.inst.cfg index 28ec247de15..42700664c2e 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_super.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_adaptive.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_adaptive.inst.cfg index 2724300ad67..5002536077c 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_adaptive.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_draft.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_draft.inst.cfg index c9c66e581cb..414afc7d4b2 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_draft.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_low.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_low.inst.cfg index d2cee4ce307..125d504830f 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_low.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_standard.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_standard.inst.cfg index 69bfa6d6e10..2128cebe402 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_standard.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_draft.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_draft.inst.cfg index 0af138b7fc3..844fb8697fa 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_draft.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_low.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_low.inst.cfg index 0dc4f2c24b3..853b1b80d85 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_low.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_standard.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_standard.inst.cfg index 04841b6e409..00fbabdd239 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_standard.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_coarse.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_coarse.inst.cfg index 02628c7d3e8..f0e03321119 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_coarse.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_draft.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_draft.inst.cfg index 0050c4542f6..068b59ac7ce 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_draft.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_adaptive.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_adaptive.inst.cfg index 8aa43affc1c..023d73a5e74 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_adaptive.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_low.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_low.inst.cfg index 28ad82bc82c..ae22d9d0f0a 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_low.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_standard.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_standard.inst.cfg index 8d6924e70a3..fba61c57cdb 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_standard.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_super.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_super.inst.cfg index 2a432b61350..f33ef9889b1 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_super.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_adaptive.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_adaptive.inst.cfg index 18882f74d7f..68dd1abf088 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_adaptive.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_draft.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_draft.inst.cfg index 3f751ac6c38..4c6a7e6bf0a 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_draft.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_low.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_low.inst.cfg index 54be001ebd1..9bf8763a8d2 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_low.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_standard.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_standard.inst.cfg index d8d4148de12..a7ac0d2a0ba 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_standard.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_draft.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_draft.inst.cfg index becd616174d..950b9a87b06 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_draft.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_low.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_low.inst.cfg index 1925f4d5d29..cf7aea8e4fe 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_low.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_standard.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_standard.inst.cfg index f34a24e1f19..80db6008430 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_standard.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_coarse.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_coarse.inst.cfg index c5e16634415..56a06a32613 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_coarse.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_draft.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_draft.inst.cfg index 4ede40b6f99..baf68727fa4 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_draft.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusedform/base/base_PVA_draft.inst.cfg b/resources/quality/fusedform/base/base_PVA_draft.inst.cfg index 3c1797b40e6..f2d1f7d6f2c 100644 --- a/resources/quality/fusedform/base/base_PVA_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_PVA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_PVA_high.inst.cfg b/resources/quality/fusedform/base/base_PVA_high.inst.cfg index c3bd73bb8fc..352494579c9 100644 --- a/resources/quality/fusedform/base/base_PVA_high.inst.cfg +++ b/resources/quality/fusedform/base/base_PVA_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_PVA_normal.inst.cfg b/resources/quality/fusedform/base/base_PVA_normal.inst.cfg index 28ae6d3a512..04154bf4b30 100644 --- a/resources/quality/fusedform/base/base_PVA_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_PVA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_abs_draft.inst.cfg b/resources/quality/fusedform/base/base_abs_draft.inst.cfg index 129e0ae301b..a5c297eca4f 100644 --- a/resources/quality/fusedform/base/base_abs_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/fusedform/base/base_abs_high.inst.cfg b/resources/quality/fusedform/base/base_abs_high.inst.cfg index 37c9670b982..a4f9fa613ab 100644 --- a/resources/quality/fusedform/base/base_abs_high.inst.cfg +++ b/resources/quality/fusedform/base/base_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_abs_normal.inst.cfg b/resources/quality/fusedform/base/base_abs_normal.inst.cfg index 9721d62afb6..4c62b0cc6c5 100644 --- a/resources/quality/fusedform/base/base_abs_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_abs_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_abs_ultra_high.inst.cfg index 33807b2f08d..d007a855a1a 100644 --- a/resources/quality/fusedform/base/base_abs_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_abs_ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_draft.inst.cfg b/resources/quality/fusedform/base/base_draft.inst.cfg index e334ba4b678..8a6910cd1ad 100644 --- a/resources/quality/fusedform/base/base_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/fusedform/base/base_flex_high.inst.cfg b/resources/quality/fusedform/base/base_flex_high.inst.cfg index 4b97e4ed24f..ba3a62ef361 100644 --- a/resources/quality/fusedform/base/base_flex_high.inst.cfg +++ b/resources/quality/fusedform/base/base_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_flex_normal.inst.cfg b/resources/quality/fusedform/base/base_flex_normal.inst.cfg index cd12341ec8d..a247d6f6bfb 100644 --- a/resources/quality/fusedform/base/base_flex_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_flex_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_high.inst.cfg b/resources/quality/fusedform/base/base_high.inst.cfg index 5b996785224..06c28b5c7ab 100644 --- a/resources/quality/fusedform/base/base_high.inst.cfg +++ b/resources/quality/fusedform/base/base_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_hips_draft.inst.cfg b/resources/quality/fusedform/base/base_hips_draft.inst.cfg index da71c1bd1c1..e02c07f97f0 100644 --- a/resources/quality/fusedform/base/base_hips_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/fusedform/base/base_hips_high.inst.cfg b/resources/quality/fusedform/base/base_hips_high.inst.cfg index d10e9eee559..e015f56f53f 100644 --- a/resources/quality/fusedform/base/base_hips_high.inst.cfg +++ b/resources/quality/fusedform/base/base_hips_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_hips_normal.inst.cfg b/resources/quality/fusedform/base/base_hips_normal.inst.cfg index b2d4401f663..416747436c1 100644 --- a/resources/quality/fusedform/base/base_hips_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_hips_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_hips_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_hips_ultra_high.inst.cfg index 0dabd20ee80..462791472ce 100644 --- a/resources/quality/fusedform/base/base_hips_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_hips_ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = ultra high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_normal.inst.cfg b/resources/quality/fusedform/base/base_normal.inst.cfg index 03cac40a621..549dea91457 100644 --- a/resources/quality/fusedform/base/base_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_nylon_draft.inst.cfg b/resources/quality/fusedform/base/base_nylon_draft.inst.cfg index 53bac6523d7..8abb293bf00 100644 --- a/resources/quality/fusedform/base/base_nylon_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/fusedform/base/base_nylon_high.inst.cfg b/resources/quality/fusedform/base/base_nylon_high.inst.cfg index 9b333eff1f1..c9dcdf2af43 100644 --- a/resources/quality/fusedform/base/base_nylon_high.inst.cfg +++ b/resources/quality/fusedform/base/base_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_nylon_normal.inst.cfg b/resources/quality/fusedform/base/base_nylon_normal.inst.cfg index c20f2ea5a30..861a877d650 100644 --- a/resources/quality/fusedform/base/base_nylon_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_nylon_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_nylon_ultra_high.inst.cfg index 754a2023b65..12000acf62f 100644 --- a/resources/quality/fusedform/base/base_nylon_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_nylon_ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultra high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_petg_high.inst.cfg b/resources/quality/fusedform/base/base_petg_high.inst.cfg index f0ceeaadbae..576e790dd26 100644 --- a/resources/quality/fusedform/base/base_petg_high.inst.cfg +++ b/resources/quality/fusedform/base/base_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_petg_normal.inst.cfg b/resources/quality/fusedform/base/base_petg_normal.inst.cfg index 40fe6961d75..2548ddc851c 100644 --- a/resources/quality/fusedform/base/base_petg_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_pla_draft.inst.cfg b/resources/quality/fusedform/base/base_pla_draft.inst.cfg index d0489b1d974..7ff4389b711 100644 --- a/resources/quality/fusedform/base/base_pla_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/fusedform/base/base_pla_high.inst.cfg b/resources/quality/fusedform/base/base_pla_high.inst.cfg index d3e2c502bb5..26fd52efa81 100644 --- a/resources/quality/fusedform/base/base_pla_high.inst.cfg +++ b/resources/quality/fusedform/base/base_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_pla_normal.inst.cfg b/resources/quality/fusedform/base/base_pla_normal.inst.cfg index 5dd85fbcc7d..e95ac622775 100644 --- a/resources/quality/fusedform/base/base_pla_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_pla_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_pla_ultra_high.inst.cfg index bb376bcbc9a..fecf4bafcb3 100644 --- a/resources/quality/fusedform/base/base_pla_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_pla_ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra high -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_ultra_high.inst.cfg index 3bca5f50bb0..853565b80b2 100644 --- a/resources/quality/fusedform/base/base_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusion3/fusion3_0.4_ABS_fine.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ABS_fine.inst.cfg index c9602588fef..b8fb0fc0840 100644 --- a/resources/quality/fusion3/fusion3_0.4_ABS_fine.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_ABS_good.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ABS_good.inst.cfg index b48555902eb..170487b7a81 100644 --- a/resources/quality/fusion3/fusion3_0.4_ABS_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ABS_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_ABS_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ABS_normal.inst.cfg index 70f126a30d8..314d61894ac 100644 --- a/resources/quality/fusion3/fusion3_0.4_ABS_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_ASA_fine.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ASA_fine.inst.cfg index 34e9d8d056c..edbf7c4d7c3 100644 --- a/resources/quality/fusion3/fusion3_0.4_ASA_fine.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ASA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_ASA_good.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ASA_good.inst.cfg index 534ce0e7826..408fd5b062b 100644 --- a/resources/quality/fusion3/fusion3_0.4_ASA_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ASA_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_ASA_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ASA_normal.inst.cfg index c7cb7ddb907..e4e8ecd1577 100644 --- a/resources/quality/fusion3/fusion3_0.4_ASA_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ASA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_CPE_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_CPE_normal.inst.cfg index 09c0a087498..3700253dad5 100644 --- a/resources/quality/fusion3/fusion3_0.4_CPE_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_CPE_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PA_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PA_normal.inst.cfg index 9f68524bb71..923e2527707 100644 --- a/resources/quality/fusion3/fusion3_0.4_PA_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PC_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PC_normal.inst.cfg index bd453749a66..a716730eeda 100644 --- a/resources/quality/fusion3/fusion3_0.4_PC_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PETG_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PETG_normal.inst.cfg index c622ef891d3..9a414b2f15f 100644 --- a/resources/quality/fusion3/fusion3_0.4_PETG_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PLA_fine.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PLA_fine.inst.cfg index af74ae635ef..5b343453d00 100644 --- a/resources/quality/fusion3/fusion3_0.4_PLA_fine.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PLA_good.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PLA_good.inst.cfg index b4b9de8b88e..c57e47950db 100644 --- a/resources/quality/fusion3/fusion3_0.4_PLA_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PLA_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PLA_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PLA_normal.inst.cfg index ab4f8a12391..04bb078949d 100644 --- a/resources/quality/fusion3/fusion3_0.4_PLA_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_TPU_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_TPU_normal.inst.cfg index 3f68a2cfacc..289646eec4c 100644 --- a/resources/quality/fusion3/fusion3_0.4_TPU_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_ABS_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_ABS_good.inst.cfg index dc19e88cd12..560fcf2c35a 100644 --- a/resources/quality/fusion3/fusion3_0.6_ABS_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_ABS_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_ABS_low.inst.cfg b/resources/quality/fusion3/fusion3_0.6_ABS_low.inst.cfg index a85bbac743e..20fb1056bbd 100644 --- a/resources/quality/fusion3/fusion3_0.6_ABS_low.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_ASA_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_ASA_good.inst.cfg index 4176a6720f9..13885dda24b 100644 --- a/resources/quality/fusion3/fusion3_0.6_ASA_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_ASA_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_ASA_low.inst.cfg b/resources/quality/fusion3/fusion3_0.6_ASA_low.inst.cfg index d30ef997701..6e1708c5344 100644 --- a/resources/quality/fusion3/fusion3_0.6_ASA_low.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_ASA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_CPE_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_CPE_good.inst.cfg index f912e562cd2..2e41da31bea 100644 --- a/resources/quality/fusion3/fusion3_0.6_CPE_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_CPE_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_PA_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_PA_good.inst.cfg index 70549b4b592..c15be13de65 100644 --- a/resources/quality/fusion3/fusion3_0.6_PA_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_PA_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_PC_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_PC_good.inst.cfg index 928bc4cff9c..45380a16d42 100644 --- a/resources/quality/fusion3/fusion3_0.6_PC_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_PC_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_PETG_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_PETG_good.inst.cfg index 8203979de35..1a304a07edb 100644 --- a/resources/quality/fusion3/fusion3_0.6_PETG_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_PETG_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_PLA_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_PLA_good.inst.cfg index b464d9fb146..49567c3ebd5 100644 --- a/resources/quality/fusion3/fusion3_0.6_PLA_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_PLA_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_PLA_low.inst.cfg b/resources/quality/fusion3/fusion3_0.6_PLA_low.inst.cfg index 8f2353cb15d..e8e13fa7f26 100644 --- a/resources/quality/fusion3/fusion3_0.6_PLA_low.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_TPU_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_TPU_good.inst.cfg index a40d1d06873..8a9d9752197 100644 --- a/resources/quality/fusion3/fusion3_0.6_TPU_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_TPU_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_ABS_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_ABS_rapid.inst.cfg index 9730a818b46..29adfb091b4 100644 --- a/resources/quality/fusion3/fusion3_0.8_ABS_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_ABS_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_ABS_rough.inst.cfg b/resources/quality/fusion3/fusion3_0.8_ABS_rough.inst.cfg index a4a75cc8151..fbee684ce23 100644 --- a/resources/quality/fusion3/fusion3_0.8_ABS_rough.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_ABS_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_ASA_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_ASA_rapid.inst.cfg index cc916177e53..a268baf68bd 100644 --- a/resources/quality/fusion3/fusion3_0.8_ASA_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_ASA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_ASA_rough.inst.cfg b/resources/quality/fusion3/fusion3_0.8_ASA_rough.inst.cfg index a71256c3aa6..0c918f88ac7 100644 --- a/resources/quality/fusion3/fusion3_0.8_ASA_rough.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_ASA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_CPE_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_CPE_rapid.inst.cfg index d4f4738309b..73d199f6ce3 100644 --- a/resources/quality/fusion3/fusion3_0.8_CPE_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_CPE_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_PA_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_PA_rapid.inst.cfg index 058691fa795..e2beebc76af 100644 --- a/resources/quality/fusion3/fusion3_0.8_PA_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_PA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_PC_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_PC_rapid.inst.cfg index 94921dc336a..16894ed8da1 100644 --- a/resources/quality/fusion3/fusion3_0.8_PC_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_PC_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_PETG_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_PETG_rapid.inst.cfg index 27effc7be82..d3551c51bd1 100644 --- a/resources/quality/fusion3/fusion3_0.8_PETG_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_PETG_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_PLA_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_PLA_rapid.inst.cfg index 1bc905dea87..86b85961281 100644 --- a/resources/quality/fusion3/fusion3_0.8_PLA_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_PLA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_PLA_rough.inst.cfg b/resources/quality/fusion3/fusion3_0.8_PLA_rough.inst.cfg index 59cb70389e1..0e9de77d8ff 100644 --- a/resources/quality/fusion3/fusion3_0.8_PLA_rough.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_PLA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_TPU_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_TPU_rapid.inst.cfg index e6f7bf74d64..ffbc74268d5 100644 --- a/resources/quality/fusion3/fusion3_0.8_TPU_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_TPU_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_global_fine.inst.cfg b/resources/quality/fusion3/fusion3_global_fine.inst.cfg index 550269bb726..4af1cc5535a 100644 --- a/resources/quality/fusion3/fusion3_global_fine.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/fusion3/fusion3_global_good.inst.cfg b/resources/quality/fusion3/fusion3_global_good.inst.cfg index d1a46528a34..5f36f60d738 100644 --- a/resources/quality/fusion3/fusion3_global_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = good -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/fusion3/fusion3_global_low.inst.cfg b/resources/quality/fusion3/fusion3_global_low.inst.cfg index 7a0d9903f9c..84bc1e0a27f 100644 --- a/resources/quality/fusion3/fusion3_global_low.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/fusion3/fusion3_global_normal.inst.cfg b/resources/quality/fusion3/fusion3_global_normal.inst.cfg index 7f96dfd125f..ab2cbf7de09 100644 --- a/resources/quality/fusion3/fusion3_global_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/fusion3/fusion3_global_rapid.inst.cfg b/resources/quality/fusion3/fusion3_global_rapid.inst.cfg index 2b008a34bcc..91b851f5767 100644 --- a/resources/quality/fusion3/fusion3_global_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/fusion3/fusion3_global_rough.inst.cfg b/resources/quality/fusion3/fusion3_global_rough.inst.cfg index b35f187e4f6..e3ad70b5c18 100644 --- a/resources/quality/fusion3/fusion3_global_rough.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = rough -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_super.inst.cfg index 56949ee3598..59475969b8d 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_ultra.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_ultra.inst.cfg index 521c02c0d4a..9fda1b2e510 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_super.inst.cfg index bbf17e47a87..0f3057fe82f 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_ultra.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_ultra.inst.cfg index e2e561fcb1d..e459a9d0968 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_super.inst.cfg index 02050a3ddf6..6e4f55fcba9 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_ultra.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_ultra.inst.cfg index 9ce8fc39422..3e840456741 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_adaptive.inst.cfg index 4b65a92d95e..b5b72a1d6ab 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_low.inst.cfg index 8d23c0dc6b6..d1497b1d4bf 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_standard.inst.cfg index 50cdedebe0d..9fef4f56d2a 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_super.inst.cfg index 126bd092a53..3150c7bf1b3 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_adaptive.inst.cfg index 8587dc79624..321f5841698 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_low.inst.cfg index c296921d464..79203249f85 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_standard.inst.cfg index 0a75d800c72..23ad0fa1363 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_super.inst.cfg index b4bdd0a93be..bd77f7a194d 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_adaptive.inst.cfg index 95fe7f7d8a3..f6e74f21de2 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_low.inst.cfg index d1ade85d185..6a0ace16340 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_standard.inst.cfg index d08208603c0..be9207dfe52 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_super.inst.cfg index 46228e4d7d6..f0087a01353 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_adaptive.inst.cfg index 16373eb8ef6..08174d60e3c 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_standard.inst.cfg index fb007f9a89e..5db816a83ac 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_super.inst.cfg index 8177d8966ca..45179cb24cc 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_adaptive.inst.cfg index 4853c2e5e14..db97cac4f44 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_low.inst.cfg index 19647ca550f..5036b82e308 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_standard.inst.cfg index fff6581a5b6..8a9cdf11c83 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_super.inst.cfg index 41002402783..e3a026eb540 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_adaptive.inst.cfg index ac8a268c163..c5102197702 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_low.inst.cfg index ed70b584307..6ca89507a94 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_standard.inst.cfg index 4bcc9c1d864..f9c427f3dae 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_super.inst.cfg index 95ac3b31317..00afeb3d7b1 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_adaptive.inst.cfg index 6d79a235c5d..013a9a81c2a 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_low.inst.cfg index 920f5775037..5cfefecfadd 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_standard.inst.cfg index 3ff4c8265bc..64662fdfe2b 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_super.inst.cfg index b53467ee0e9..14797b146be 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_adaptive.inst.cfg index e332e2dd0a1..5b47dd59dad 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_standard.inst.cfg index 59ab8728fd6..ebd00a13aae 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_super.inst.cfg index b5f47c0cabb..6abd2e66b65 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_adaptive.inst.cfg index 70a4bdaf536..9b1deace625 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_low.inst.cfg index 5220a0b9d0b..a5415cc14e3 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_standard.inst.cfg index 9d21f11fbbe..16fd1836926 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_super.inst.cfg index 861a42b02b0..6473b022313 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_adaptive.inst.cfg index 3a24d0434ef..696f4ef9471 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_low.inst.cfg index 31f314f7469..362ee45ceb8 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_standard.inst.cfg index 5f0c62b87ce..6a68da9a6bb 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_super.inst.cfg index f4c58e13f49..3647e198948 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_adaptive.inst.cfg index 8099a6d9ab2..1e4e05e520a 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_low.inst.cfg index 7cb4b4a4039..a86131a0419 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_standard.inst.cfg index c5fca47a051..298569b4e45 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_super.inst.cfg index 6eef17f39b3..cb34fe279d5 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_adaptive.inst.cfg index 99d35c0aa14..d650752d4c6 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_standard.inst.cfg index 56a835b8b9c..4bf0718a0b4 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_super.inst.cfg index 611d41e945e..a8c395e18c5 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_ABS_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_ABS_standard.inst.cfg index 9fcc9134b80..238d5721a2a 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_ABS_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_PETG_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_PETG_standard.inst.cfg index 1387a15850b..d4aea0867f2 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_PETG_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_draft.inst.cfg index 949889dfeb3..6ab31aac4ae 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_low.inst.cfg index 4cacb4446c4..4bcdf7c5ae3 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_standard.inst.cfg index a59ad5cb2f6..16a6a8866a2 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_TPU_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_TPU_standard.inst.cfg index 813e0e23f81..2d17a5669a6 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_TPU_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.8_ABS_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.8_ABS_draft.inst.cfg index a739a219855..c23ce9e5909 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.8_ABS_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.8_PETG_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.8_PETG_draft.inst.cfg index b3a37371058..19542d65bd4 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.8_PETG_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.8_PLA_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.8_PLA_draft.inst.cfg index a8eeab044ae..e9634510536 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.8_PLA_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.8_TPU_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.8_TPU_draft.inst.cfg index f03daad1c12..5a718799098 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.8_TPU_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_1.0_ABS_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_1.0_ABS_draft.inst.cfg index b4e4512748a..704342ad44b 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_1.0_ABS_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_1.0_PETG_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_1.0_PETG_draft.inst.cfg index 420564deb5c..a8c9fbdfeac 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_1.0_PETG_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_1.0_PLA_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_1.0_PLA_draft.inst.cfg index 8d3780d66e5..f166dcd8e05 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_1.0_PLA_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_1.0_TPU_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_1.0_TPU_draft.inst.cfg index 86d18c3ae44..a9370c56740 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_1.0_TPU_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_adaptive.inst.cfg index 7099f6599b8..829c96a27a1 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_draft.inst.cfg index 38e93d5c177..eb9747c47d3 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_low.inst.cfg index 3d31995b849..5a4ca40612f 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_standard.inst.cfg index 7aac6404342..29f950977d5 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_super.inst.cfg index 8d12668db0f..41fa4910555 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_ultra.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_ultra.inst.cfg index 0a3b3bb7370..d8036a58855 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_ultra.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg index d9f0a0aaeaf..120b8e9cb33 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg index 620622e555f..6718a49e298 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = course -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg index 05eeb68305a..f42f350d690 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg index b63ef09a6b6..2a65300e359 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra_course -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg index a476f1d2878..4ff40b9db2a 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg index fe59d12cd3d..2aa06147d83 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = course -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg index 7c6c9c5e38f..1ad1a76b9be 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg index b1cdcc129a4..3b0b433ee45 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra_course -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/goofoo/abs/goofoo_far_0.2_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.2_abs_fine.inst.cfg index 6f663495511..44aeccf5452 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.2_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.2_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.2_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.2_abs_standard.inst.cfg index 3056dc187dd..635575d990d 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.2_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.2_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.40_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.40_abs_fine.inst.cfg index 9cf290ce735..2c0df2f7ac3 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.40_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.40_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.40_abs_standard.inst.cfg index cfbc840dee8..4b7e34524e2 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.40_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.40_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.6_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.6_abs_fine.inst.cfg index 35a0b83d816..40370dcd419 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.6_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.6_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.6_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.6_abs_standard.inst.cfg index f7deb1bd433..9ea1e92e5f6 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.6_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.6_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.8_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.8_abs_fine.inst.cfg index 89a5ebe403f..4f899585ecc 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.8_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.8_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.8_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.8_abs_standard.inst.cfg index d8aaa46c563..2c9710a4877 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.8_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.8_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_1.0_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_1.0_abs_fine.inst.cfg index 48a467369c6..b0c8caef65c 100644 --- a/resources/quality/goofoo/abs/goofoo_far_1.0_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_1.0_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_1.0_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_1.0_abs_standard.inst.cfg index c210d234b19..b30bd33e3ca 100644 --- a/resources/quality/goofoo/abs/goofoo_far_1.0_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_1.0_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.2_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.2_abs_fine.inst.cfg index 881a3768d4f..9e6f652f87c 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.2_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.2_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.2_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.2_abs_standard.inst.cfg index a8e2cd84753..7ca5a1939d7 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.2_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.2_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.40_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.40_abs_fine.inst.cfg index 1cc4b042066..d3824533200 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.40_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.40_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.40_abs_standard.inst.cfg index 23c7207715f..617bee3083d 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.40_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.40_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.6_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.6_abs_fine.inst.cfg index af0c913efce..bff7afc626e 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.6_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.6_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.6_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.6_abs_standard.inst.cfg index 16a19e22c26..c6949b58205 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.6_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.6_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.8_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.8_abs_fine.inst.cfg index 3916a8683f6..ee28d12a052 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.8_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.8_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.8_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.8_abs_standard.inst.cfg index c4fd612bceb..981aed3726c 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.8_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.8_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_1.0_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_1.0_abs_fine.inst.cfg index 3ad812b25f9..a752b4ce187 100644 --- a/resources/quality/goofoo/abs/goofoo_near_1.0_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_1.0_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_1.0_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_1.0_abs_standard.inst.cfg index fe8a9112209..602551cd695 100644 --- a/resources/quality/goofoo/abs/goofoo_near_1.0_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_1.0_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.2_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.2_asa_fine.inst.cfg index 4a255eed13a..07cc2fcdae2 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.2_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.2_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.2_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.2_asa_standard.inst.cfg index ecd3ec02e52..cf030a6f8d9 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.2_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.2_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.40_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.40_asa_fine.inst.cfg index d19830d7e29..55e01a8ba14 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.40_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.40_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.40_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.40_asa_standard.inst.cfg index ddcfa7cfb0a..e42993080fd 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.40_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.40_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.6_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.6_asa_fine.inst.cfg index 143a1374e25..1a73f46b857 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.6_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.6_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.6_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.6_asa_standard.inst.cfg index 094bb295057..dbf082da403 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.6_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.6_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.8_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.8_asa_fine.inst.cfg index c2f16c9d709..65321d4fec1 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.8_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.8_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.8_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.8_asa_standard.inst.cfg index f9076384c15..75d8941434b 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.8_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.8_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_1.0_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_1.0_asa_fine.inst.cfg index 47b25e5b378..eb09eda464e 100644 --- a/resources/quality/goofoo/asa/goofoo_far_1.0_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_1.0_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_1.0_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_1.0_asa_standard.inst.cfg index fec406103bf..6f7d6537982 100644 --- a/resources/quality/goofoo/asa/goofoo_far_1.0_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_1.0_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.2_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.2_asa_fine.inst.cfg index 793afcca70e..7f378999662 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.2_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.2_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.2_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.2_asa_standard.inst.cfg index 2f0d73b67bd..d1c6e6beadb 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.2_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.2_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.40_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.40_asa_fine.inst.cfg index 14874b5610b..2daa1107a6c 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.40_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.40_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.40_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.40_asa_standard.inst.cfg index f5fc3026dca..9948b00c8d0 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.40_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.40_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.6_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.6_asa_fine.inst.cfg index a53b02ac90a..9e060de7cfd 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.6_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.6_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.6_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.6_asa_standard.inst.cfg index b6834ea9bfe..4bdd3ef015d 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.6_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.6_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.8_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.8_asa_fine.inst.cfg index dc316d182f8..9f1afa96f6c 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.8_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.8_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.8_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.8_asa_standard.inst.cfg index b29899f5055..ebd0e109083 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.8_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.8_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_1.0_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_1.0_asa_fine.inst.cfg index d554ed89965..01b7889d9bc 100644 --- a/resources/quality/goofoo/asa/goofoo_near_1.0_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_1.0_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_1.0_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_1.0_asa_standard.inst.cfg index edac2f37273..099097d7239 100644 --- a/resources/quality/goofoo/asa/goofoo_near_1.0_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_1.0_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/goofoo_far_global_0.15_fine.inst.cfg b/resources/quality/goofoo/goofoo_far_global_0.15_fine.inst.cfg index 88bf7603eda..cd9beaf5a72 100644 --- a/resources/quality/goofoo/goofoo_far_global_0.15_fine.inst.cfg +++ b/resources/quality/goofoo/goofoo_far_global_0.15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/goofoo/goofoo_far_global_0.1_efine.inst.cfg b/resources/quality/goofoo/goofoo_far_global_0.1_efine.inst.cfg index 01e80cae139..93c7bc6d495 100644 --- a/resources/quality/goofoo/goofoo_far_global_0.1_efine.inst.cfg +++ b/resources/quality/goofoo/goofoo_far_global_0.1_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = efine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/goofoo/goofoo_far_global_0.20_standard.inst.cfg b/resources/quality/goofoo/goofoo_far_global_0.20_standard.inst.cfg index de8881ab864..0011ca9d416 100644 --- a/resources/quality/goofoo/goofoo_far_global_0.20_standard.inst.cfg +++ b/resources/quality/goofoo/goofoo_far_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/goofoo/goofoo_far_global_0.3_draft.inst.cfg b/resources/quality/goofoo/goofoo_far_global_0.3_draft.inst.cfg index 628015037ba..d219cad79c5 100644 --- a/resources/quality/goofoo/goofoo_far_global_0.3_draft.inst.cfg +++ b/resources/quality/goofoo/goofoo_far_global_0.3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/goofoo/goofoo_near_global_0.15_fine.inst.cfg b/resources/quality/goofoo/goofoo_near_global_0.15_fine.inst.cfg index 0644d56d7fe..f57797456b5 100644 --- a/resources/quality/goofoo/goofoo_near_global_0.15_fine.inst.cfg +++ b/resources/quality/goofoo/goofoo_near_global_0.15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/goofoo/goofoo_near_global_0.1_efine.inst.cfg b/resources/quality/goofoo/goofoo_near_global_0.1_efine.inst.cfg index 8176f32de72..3fce59afe3e 100644 --- a/resources/quality/goofoo/goofoo_near_global_0.1_efine.inst.cfg +++ b/resources/quality/goofoo/goofoo_near_global_0.1_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = efine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/goofoo/goofoo_near_global_0.20_standard.inst.cfg b/resources/quality/goofoo/goofoo_near_global_0.20_standard.inst.cfg index aab544c9ae5..fbd171efa28 100644 --- a/resources/quality/goofoo/goofoo_near_global_0.20_standard.inst.cfg +++ b/resources/quality/goofoo/goofoo_near_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/goofoo/goofoo_near_global_0.3_draft.inst.cfg b/resources/quality/goofoo/goofoo_near_global_0.3_draft.inst.cfg index 27733517f32..d2bb27659f6 100644 --- a/resources/quality/goofoo/goofoo_near_global_0.3_draft.inst.cfg +++ b/resources/quality/goofoo/goofoo_near_global_0.3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/goofoo/goofoo_open_global_0.15_fine.inst.cfg b/resources/quality/goofoo/goofoo_open_global_0.15_fine.inst.cfg index 90fc50a985d..99d27a7f561 100644 --- a/resources/quality/goofoo/goofoo_open_global_0.15_fine.inst.cfg +++ b/resources/quality/goofoo/goofoo_open_global_0.15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/goofoo/goofoo_open_global_0.1_efine.inst.cfg b/resources/quality/goofoo/goofoo_open_global_0.1_efine.inst.cfg index 714d26687b1..b0a43343271 100644 --- a/resources/quality/goofoo/goofoo_open_global_0.1_efine.inst.cfg +++ b/resources/quality/goofoo/goofoo_open_global_0.1_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = efine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/goofoo/goofoo_open_global_0.20_standard.inst.cfg b/resources/quality/goofoo/goofoo_open_global_0.20_standard.inst.cfg index 6dd2f5f2c94..6bef72abfca 100644 --- a/resources/quality/goofoo/goofoo_open_global_0.20_standard.inst.cfg +++ b/resources/quality/goofoo/goofoo_open_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/goofoo/goofoo_open_global_0.3_draft.inst.cfg b/resources/quality/goofoo/goofoo_open_global_0.3_draft.inst.cfg index 31dd2d8d9d5..5d0c696b34f 100644 --- a/resources/quality/goofoo/goofoo_open_global_0.3_draft.inst.cfg +++ b/resources/quality/goofoo/goofoo_open_global_0.3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/goofoo/goofoo_small_global_0.15_fine.inst.cfg b/resources/quality/goofoo/goofoo_small_global_0.15_fine.inst.cfg index e2e1890e50a..8e755fb23dc 100644 --- a/resources/quality/goofoo/goofoo_small_global_0.15_fine.inst.cfg +++ b/resources/quality/goofoo/goofoo_small_global_0.15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/goofoo/goofoo_small_global_0.1_efine.inst.cfg b/resources/quality/goofoo/goofoo_small_global_0.1_efine.inst.cfg index a9a5cb78bfd..7527db4b4b2 100644 --- a/resources/quality/goofoo/goofoo_small_global_0.1_efine.inst.cfg +++ b/resources/quality/goofoo/goofoo_small_global_0.1_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = efine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/goofoo/goofoo_small_global_0.20_standard.inst.cfg b/resources/quality/goofoo/goofoo_small_global_0.20_standard.inst.cfg index af856613756..921cc3c0ced 100644 --- a/resources/quality/goofoo/goofoo_small_global_0.20_standard.inst.cfg +++ b/resources/quality/goofoo/goofoo_small_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/goofoo/goofoo_small_global_0.3_draft.inst.cfg b/resources/quality/goofoo/goofoo_small_global_0.3_draft.inst.cfg index 75973f7611f..9c5b3a901f0 100644 --- a/resources/quality/goofoo/goofoo_small_global_0.3_draft.inst.cfg +++ b/resources/quality/goofoo/goofoo_small_global_0.3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_draft.inst.cfg index 382b5b7b61f..bcecf64b08d 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_efine.inst.cfg index 68949c1d6f9..67046360800 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_fine.inst.cfg index 9054c9489d4..89014792ab9 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_standard.inst.cfg index 4e128688b15..7cc9f07223d 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_draft.inst.cfg index 8e3853a0826..ff991d2e921 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_efine.inst.cfg index 7af166b6efa..387bc2803fa 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_fine.inst.cfg index aa3f9309611..4749e808868 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_standard.inst.cfg index ea3069b9ed8..e2cc8ebc5e6 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_draft.inst.cfg index cde0ddc48bd..636cb463248 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_efine.inst.cfg index 9bf54a37fbf..94f7035de6a 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_fine.inst.cfg index 5a7a645b522..046c224eeeb 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_standard.inst.cfg index 7e404b7b904..c82d1e59d51 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_draft.inst.cfg index d3c22945341..ba1f0254162 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_efine.inst.cfg index 7ba6c2a6f78..7c13e9a36ca 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_fine.inst.cfg index 7fefcbba15b..3de4182895c 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_standard.inst.cfg index ce588169fb6..ea23db0653b 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_draft.inst.cfg index fe1739a06a7..0d0d14a5362 100644 --- a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_efine.inst.cfg index aada93345ed..3bb109d6c9a 100644 --- a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_fine.inst.cfg index 02687e6e269..5edf0b9bd8b 100644 --- a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_standard.inst.cfg index 222330b5cbc..ae16cbc3b89 100644 --- a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_draft.inst.cfg index 0861c923582..182a5eb5576 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_efine.inst.cfg index 70c1ba0756a..1bea3a03535 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_fine.inst.cfg index 38beebc234f..8fc710811b2 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_standard.inst.cfg index 9206ce61f1b..8c5e9ebccec 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_draft.inst.cfg index 68b74a82c0f..2a905fb6a75 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_efine.inst.cfg index 701cd1545db..c07fd746d14 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_fine.inst.cfg index d3d259258cf..6f647df03f9 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_standard.inst.cfg index 69bdbab195d..a908ae58c98 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_draft.inst.cfg index f67b726f8ee..503947b2596 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_efine.inst.cfg index b93f42ffc78..e68a6783700 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_fine.inst.cfg index ea4106110ca..2c8ae1a79f5 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_standard.inst.cfg index e2330ad8af9..dd79f1ffa6c 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_draft.inst.cfg index b61e7ef3cb2..a7f82c656d7 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_efine.inst.cfg index 41dce05fc69..5f7de68aa0d 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_fine.inst.cfg index 47487c9e0a1..7594f90b2c5 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_standard.inst.cfg index 41528048ef5..a26870a135c 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_draft.inst.cfg index 479c51c9b71..4728c71a2f3 100644 --- a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_efine.inst.cfg index 733be0fd46c..9c4c3d1b17d 100644 --- a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_fine.inst.cfg index 4d324f8a7bf..93b15b522a7 100644 --- a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_standard.inst.cfg index a5c3b8f34d1..7ca4ae0e0c3 100644 --- a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_draft.inst.cfg index 20861e56cc0..7c6018bf2ca 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_efine.inst.cfg index f9b17d8fa48..4b88ea86541 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_fine.inst.cfg index 54a3390e5e6..9894d7449af 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_standard.inst.cfg index 2817c49e1b4..6ae42916458 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_draft.inst.cfg index 378b6bd04cc..5deaafd5706 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_efine.inst.cfg index bb63251d3ed..1640a2df7be 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_fine.inst.cfg index 63ba70aae57..907140849aa 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_standard.inst.cfg index e5bbe53eaf2..575a91c50b3 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_draft.inst.cfg index 4aa8ebc6400..e336fdd0566 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_efine.inst.cfg index ab2d4f72143..1dadaad261b 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_fine.inst.cfg index a6fab274b75..427fac9af30 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_standard.inst.cfg index 4eff58cc500..723879fbe73 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_draft.inst.cfg index 9e50a5cf80a..b5bb1979f65 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_efine.inst.cfg index 24de9df2e18..5501ac6902d 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_fine.inst.cfg index dc15adb0cd6..9866bd5114a 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_standard.inst.cfg index 1115cf5e0a4..4aa0b532056 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_draft.inst.cfg index e1e666538b8..5cbec449645 100644 --- a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_efine.inst.cfg index 84d9f7e94ca..a6d91a10072 100644 --- a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_fine.inst.cfg index 59a2b761688..8c640dfb5c2 100644 --- a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_standard.inst.cfg index eb1a9273d64..53222d22731 100644 --- a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.2_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.2_pa_fine.inst.cfg index 0b789d09a62..348a785acce 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.2_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.2_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.2_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.2_pa_standard.inst.cfg index 8226e0ca895..46567e57242 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.2_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.2_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.40_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.40_pa_fine.inst.cfg index bb7ae4327c8..4390447146b 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.40_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.40_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.40_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.40_pa_standard.inst.cfg index 75f3570b98f..2d28320a989 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.40_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.40_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.6_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.6_pa_fine.inst.cfg index 681d84301f3..17b8df3dbdc 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.6_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.6_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.6_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.6_pa_standard.inst.cfg index ab2609e0996..e832ecfd9fd 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.6_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.6_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.8_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.8_pa_fine.inst.cfg index 5217639a6f6..3d1af0cfde9 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.8_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.8_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.8_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.8_pa_standard.inst.cfg index 6e99c89bc62..e2bf82bbaf7 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.8_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.8_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_1.0_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_1.0_pa_fine.inst.cfg index 759dd180de9..f7dc4ed76e2 100644 --- a/resources/quality/goofoo/pa/goofoo_far_1.0_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_1.0_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_1.0_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_1.0_pa_standard.inst.cfg index eb4d8f8c694..6c1d838564e 100644 --- a/resources/quality/goofoo/pa/goofoo_far_1.0_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_1.0_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.2_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.2_pa_fine.inst.cfg index fbeebdff0fe..896c4734d88 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.2_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.2_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.2_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.2_pa_standard.inst.cfg index 14402ffb41e..2ef08555de6 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.2_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.2_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.40_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.40_pa_fine.inst.cfg index fdc7cb697cb..674a74b59af 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.40_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.40_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.40_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.40_pa_standard.inst.cfg index a242253f4d5..060f1b20783 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.40_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.40_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.6_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.6_pa_fine.inst.cfg index dfbe334e387..af1847498ee 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.6_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.6_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.6_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.6_pa_standard.inst.cfg index c6bffb0caf4..774904af4ec 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.6_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.6_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.8_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.8_pa_fine.inst.cfg index 3945747b1b3..beb2bce12d8 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.8_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.8_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.8_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.8_pa_standard.inst.cfg index c4d0928d9de..19e0532dc4d 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.8_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.8_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_1.0_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_1.0_pa_fine.inst.cfg index e3410dc1939..da00944e6e5 100644 --- a/resources/quality/goofoo/pa/goofoo_near_1.0_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_1.0_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_1.0_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_1.0_pa_standard.inst.cfg index 1a7d1343e14..e59c08ce03a 100644 --- a/resources/quality/goofoo/pa/goofoo_near_1.0_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_1.0_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_fine.inst.cfg index eea1633018d..121b088b85b 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_standard.inst.cfg index e3b5210a10c..6bba94e2be4 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg index 9301e400d05..e0f595bde6b 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_standard.inst.cfg index 33c548ab335..9ede72af1b5 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_fine.inst.cfg index 3e0b6583c87..0be8604ae47 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_standard.inst.cfg index 59ae5b69b5b..7ba70b1d355 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_fine.inst.cfg index db75bc2c67d..356904c3109 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_standard.inst.cfg index 259440b6a6b..43f9621a4e7 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_fine.inst.cfg index 72c3baa2a15..30365cd67a1 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_standard.inst.cfg index a8adf0b4436..7cda0fac5f7 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_fine.inst.cfg index ab949f6a6a5..527bf85048d 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_standard.inst.cfg index 0eb5a9bc610..2080deeacfb 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_fine.inst.cfg index 6d9549bd624..da0a593f955 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_standard.inst.cfg index a2d72c1a695..d8d1a7ca875 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_fine.inst.cfg index c6a02040718..c22215a97e1 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_standard.inst.cfg index b8e976b1fc5..361687e2ee0 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_fine.inst.cfg index 1b153efe8d9..0b40b616f05 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_standard.inst.cfg index ea80a02e301..a6352e8542b 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_fine.inst.cfg index bc46f2dfa0c..217577960d9 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_standard.inst.cfg index 3315f0d2480..5224461e413 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_draft.inst.cfg index ec03597e07f..d80a21dd472 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_efine.inst.cfg index 086d782b4f9..6e77446e487 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_fine.inst.cfg index fa9eee18b00..5b23f59e2e6 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_standard.inst.cfg index 32f99a349cb..0c8a2e9d47e 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_draft.inst.cfg index d8baf0aabee..9170a6ccd36 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_efine.inst.cfg index 2e51112f230..b7165ca165a 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_fine.inst.cfg index cb3ddd7e7aa..c9e9e48f4d9 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_standard.inst.cfg index d935d4c1b15..c4a2ae6ee6f 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_draft.inst.cfg index 4f5cc865a98..03c98d36200 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_efine.inst.cfg index ce8abce4ac7..0651e514bef 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_fine.inst.cfg index a7d3f6b27a8..ef9c935596e 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_standard.inst.cfg index 6c5ab971eff..dcd50bc969f 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_draft.inst.cfg index ec0ac7ad638..e536456bc9f 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_efine.inst.cfg index 37f541bd8f6..9deab3245f4 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_fine.inst.cfg index be2af8377be..ecf42151cbd 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_standard.inst.cfg index 208e815039f..02c02bc3e6d 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_draft.inst.cfg index 9c6c8d5eba5..245bae2a994 100644 --- a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_efine.inst.cfg index 7e78e26ff83..fb58a85c076 100644 --- a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_fine.inst.cfg index 04dcc09c2c7..4d97e9e32d7 100644 --- a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_standard.inst.cfg index dd60d832ae3..065fc1731c1 100644 --- a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_draft.inst.cfg index 78c695cecef..9ea26f12e81 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_efine.inst.cfg index bf53a8e25c4..5128f225a48 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_fine.inst.cfg index 804cd0e68c5..bdcf429b4b2 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_standard.inst.cfg index 2d539d0b576..2f2985b5212 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_draft.inst.cfg index c0d56f38ecb..c31e8c3165d 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_efine.inst.cfg index 61b977a1db7..77e928ecdea 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_fine.inst.cfg index 758f32d008d..4f300b8df5a 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_standard.inst.cfg index 43b128a8a1c..cf42e403b08 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_draft.inst.cfg index 477da6f14d7..bdfc2bc6ac0 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_efine.inst.cfg index 71fb033e2b4..781e1a49caa 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_fine.inst.cfg index f8cd0df5979..a01576b86cf 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_standard.inst.cfg index 300b611dad6..d6e876a7d52 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_draft.inst.cfg index 3c252ed8622..bb2f366c996 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_efine.inst.cfg index 3854c6d1380..aa93b4aa81c 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_fine.inst.cfg index 8fd500f1258..05ba27ebe5f 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_standard.inst.cfg index ac055896ead..bf53f2de7af 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_draft.inst.cfg index a17a1036626..d6c47ed9f1b 100644 --- a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_efine.inst.cfg index bc2340c2f27..d7238ad4e5e 100644 --- a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_fine.inst.cfg index 60e710cf492..6ec648b3d54 100644 --- a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_standard.inst.cfg index a74c970491c..623995b206a 100644 --- a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_draft.inst.cfg index 4397bed5bbb..44c249c816c 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_efine.inst.cfg index ef364d7dc57..9be8e0a81bc 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_fine.inst.cfg index 8123c177b2c..55946c31140 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_standard.inst.cfg index 336015d1595..905359674c1 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_draft.inst.cfg index 2ee07b5ee03..924af69d3ec 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_efine.inst.cfg index 84409b85602..2397cfaa833 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_fine.inst.cfg index 2f6ecf9b3e5..38a70388ede 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_standard.inst.cfg index 9997e79ff67..62c13964a09 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_draft.inst.cfg index 3856ee39215..390be62de25 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_efine.inst.cfg index 5ce9cd26436..30931645ad1 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_fine.inst.cfg index 9471178bc11..33b80dd5790 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_standard.inst.cfg index d7929e5ae10..250cb060bc6 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_draft.inst.cfg index dd3a2cc5923..a69b7dcc370 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_efine.inst.cfg index 605838791ff..9b822a58c98 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_fine.inst.cfg index 5e9fff72628..59283a5e349 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_standard.inst.cfg index 6f7bfaf0a4e..c55e3ad761f 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_draft.inst.cfg index 6d05e8ce3e0..f0f668ab32b 100644 --- a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_efine.inst.cfg index 2a365bbdd86..2688901e07f 100644 --- a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_fine.inst.cfg index 18b2535fc8b..47045c91b8c 100644 --- a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_standard.inst.cfg index 25c4d060934..7b1b50ad63a 100644 --- a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_draft.inst.cfg index 83a44b24fd1..6cf58193188 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_efine.inst.cfg index cfb5cd1b7ef..156a652a8f6 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_fine.inst.cfg index f1e02ab23f8..1a5215be93a 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_standard.inst.cfg index fc37e37d3d1..8c16dc8cb2a 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_draft.inst.cfg index b10b3392318..aa74e974f80 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_efine.inst.cfg index eccc713d389..dcbe3f44fad 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_fine.inst.cfg index 30c0d7b0289..a69c6e51bcf 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_standard.inst.cfg index d4249dd736a..5cf34da5b30 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_draft.inst.cfg index 52bb7224b1e..ab90f22afd4 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_efine.inst.cfg index 937440d1db8..eb511de63ff 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_fine.inst.cfg index 8c3443e5f52..9a84bc7a231 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_standard.inst.cfg index a125ec88172..af8d148076d 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_draft.inst.cfg index 100aba53bbe..4ab82b5dfd1 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_efine.inst.cfg index 74e44c52494..83dc2864d92 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_fine.inst.cfg index 967ed0a1a5e..43e36bb6405 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_standard.inst.cfg index 5f9443f94f6..deedf0bf1d6 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_draft.inst.cfg index c02f3de3207..142cb157864 100644 --- a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_efine.inst.cfg index 31210dd237a..9b770447bd6 100644 --- a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_fine.inst.cfg index 7103f6f5188..b80eabd35c4 100644 --- a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_standard.inst.cfg index a6cc6efe661..44730ff9d37 100644 --- a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.2_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.2_petg_fine.inst.cfg index 6f05c25a564..1cdf589a096 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.2_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.2_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.2_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.2_petg_standard.inst.cfg index d52397d199e..a4e470199aa 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.2_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.2_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.40_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.40_petg_fine.inst.cfg index 59031fa7646..20d6b7d38bb 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.40_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.40_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.40_petg_standard.inst.cfg index 5886287af01..d71b7310b45 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.40_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.6_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.6_petg_fine.inst.cfg index da4c2925063..75bea2fc24e 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.6_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.6_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.6_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.6_petg_standard.inst.cfg index c6620e11ea9..1d054195e12 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.6_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.6_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.8_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.8_petg_fine.inst.cfg index da4f8144339..d82203c2e70 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.8_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.8_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.8_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.8_petg_standard.inst.cfg index 2806286c733..cfeab2566c4 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.8_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.8_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_1.0_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_1.0_petg_fine.inst.cfg index 4090dbf86ef..2448c605f0e 100644 --- a/resources/quality/goofoo/petg/goofoo_far_1.0_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_1.0_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_1.0_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_1.0_petg_standard.inst.cfg index 64b49409dc0..9a817f0e393 100644 --- a/resources/quality/goofoo/petg/goofoo_far_1.0_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_1.0_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.2_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.2_petg_fine.inst.cfg index d786159358a..380f4e2dd56 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.2_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.2_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.2_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.2_petg_standard.inst.cfg index 9e9f0e8ce67..439bd15e25b 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.2_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.2_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.40_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.40_petg_fine.inst.cfg index f51712a0e37..2fa405b1646 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.40_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.40_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.40_petg_standard.inst.cfg index 0aa5380ef07..5c7cf701fe5 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.40_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.6_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.6_petg_fine.inst.cfg index 7f3ef09e5df..8c59997a600 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.6_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.6_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.6_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.6_petg_standard.inst.cfg index 1042e7b3517..00eca070f82 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.6_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.6_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.8_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.8_petg_fine.inst.cfg index db4e0037ea5..33cb7b1a87d 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.8_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.8_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.8_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.8_petg_standard.inst.cfg index f1505283eef..5f54ebf6478 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.8_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.8_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_1.0_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_1.0_petg_fine.inst.cfg index 0cfc7884604..9eaac26a420 100644 --- a/resources/quality/goofoo/petg/goofoo_near_1.0_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_1.0_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_1.0_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_1.0_petg_standard.inst.cfg index 2f1d6f8a3c6..041302c244b 100644 --- a/resources/quality/goofoo/petg/goofoo_near_1.0_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_1.0_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.2_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.2_petg_fine.inst.cfg index b0924d5ead8..e80ab9d9ee5 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.2_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.2_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.2_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.2_petg_standard.inst.cfg index 5da003b6cd8..ad81d57fb77 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.2_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.2_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.40_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.40_petg_fine.inst.cfg index 7bfc28b0fe7..0443634dc48 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.40_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.40_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.40_petg_standard.inst.cfg index 08f71712201..b5275e5c2e7 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.40_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.6_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.6_petg_fine.inst.cfg index b8fd1635c2c..353632253d0 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.6_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.6_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.6_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.6_petg_standard.inst.cfg index 9bbd2ad7d41..274cbc354e5 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.6_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.6_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.8_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.8_petg_fine.inst.cfg index 5f98ee9cfba..6a85e0c7ed5 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.8_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.8_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.8_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.8_petg_standard.inst.cfg index 58c8b1159c0..08aca6b910c 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.8_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.8_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_1.0_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_1.0_petg_fine.inst.cfg index 6f97ce76bed..1a1e0740283 100644 --- a/resources/quality/goofoo/petg/goofoo_open_1.0_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_1.0_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_1.0_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_1.0_petg_standard.inst.cfg index 53e207635cf..f9f8010d49f 100644 --- a/resources/quality/goofoo/petg/goofoo_open_1.0_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_1.0_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.2_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.2_petg_fine.inst.cfg index 0e316b5c4a0..9defbeb9110 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.2_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.2_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.2_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.2_petg_standard.inst.cfg index 717b5984474..983c32e725f 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.2_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.2_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.40_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.40_petg_fine.inst.cfg index e70c1b67a9c..baa5bcae967 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.40_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.40_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.40_petg_standard.inst.cfg index a13ea62fd28..4f94d09d636 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.40_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.6_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.6_petg_fine.inst.cfg index 9ca061bec6c..2fee6bc6ada 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.6_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.6_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.6_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.6_petg_standard.inst.cfg index 9c3552f6b11..6f205a97a2a 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.6_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.6_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.8_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.8_petg_fine.inst.cfg index 61c42220033..fa705a55208 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.8_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.8_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.8_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.8_petg_standard.inst.cfg index 1bd2aeefb39..0baea309085 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.8_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.8_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_1.0_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_1.0_petg_fine.inst.cfg index 75e485b5601..15c3ea0e2af 100644 --- a/resources/quality/goofoo/petg/goofoo_small_1.0_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_1.0_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_1.0_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_1.0_petg_standard.inst.cfg index 1fa396f1e7b..8b56269c2d3 100644 --- a/resources/quality/goofoo/petg/goofoo_small_1.0_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_1.0_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_draft.inst.cfg index a24167ad8ed..ea804f05f46 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_efine.inst.cfg index 59faa1d11b7..274838e7281 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_fine.inst.cfg index 485c18956f6..0e78ad6acf4 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_standard.inst.cfg index dbeca615661..c340d22e6ff 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_draft.inst.cfg index a34b591de99..92050f0dc80 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_efine.inst.cfg index c0f03fc7d70..7976f5db530 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_fine.inst.cfg index c6854faaec0..44b404c6a1b 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_standard.inst.cfg index 91cd4fe42f0..9f71bdd3066 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_draft.inst.cfg index 943647c0027..d9b23780557 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_efine.inst.cfg index b83988fb941..74ab85f6b9d 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_fine.inst.cfg index a49d3ca4b67..54753bcd6ad 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_standard.inst.cfg index 52e0c9ef2fa..53742da7ba3 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_draft.inst.cfg index f15fde22ecf..1b830d2bb4f 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_efine.inst.cfg index a56bd4d9c6f..e6b6248c657 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_fine.inst.cfg index 835022875a6..ca03daad0eb 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_standard.inst.cfg index a9c9cde3f8b..eda258e7de7 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_draft.inst.cfg index 23083c1a042..7d1fdddb59c 100644 --- a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_efine.inst.cfg index 1a2d3063a4f..474ec201843 100644 --- a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_fine.inst.cfg index 3ba2de10d78..c19ce0e9966 100644 --- a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_standard.inst.cfg index a21f8ad6473..524229cfcd9 100644 --- a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_draft.inst.cfg index fb219067cd9..b4c78531a4c 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_efine.inst.cfg index fc6502628ef..b6f9ae029e1 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_fine.inst.cfg index f14b42e672f..d681300f02c 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_standard.inst.cfg index 9ab81d4ab61..de5b5750617 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_draft.inst.cfg index f96fcc751fd..86536b0e011 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_efine.inst.cfg index cb908e50893..12df7e9cc91 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_fine.inst.cfg index 46aea18e0c5..576c85cdfe4 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_standard.inst.cfg index b00456d97a7..2d739906bf3 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_draft.inst.cfg index 48fd247c178..77e61240d45 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_efine.inst.cfg index b4ced41c47d..27ff3f26f88 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_fine.inst.cfg index b05f7fc31be..85b73e4b6d3 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_standard.inst.cfg index fb393edd18e..21ca35b524e 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_draft.inst.cfg index 8dbca6af018..9ef89bb7c8e 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_efine.inst.cfg index ac7fccc4820..a85340ad4d5 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_fine.inst.cfg index d1b58ffed5c..e2ddb168005 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_standard.inst.cfg index 53b131ad0b0..c820a301e78 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_draft.inst.cfg index dc1b3f52cd0..c0cff5cc4be 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_efine.inst.cfg index bcbb3016618..9931f64de24 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_fine.inst.cfg index 8f6fdaa3395..c954561593c 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_standard.inst.cfg index cf1d7d5b228..cee16a757d9 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_draft.inst.cfg index 4188aebce9c..76215536e68 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_efine.inst.cfg index a511d113516..02e0c41bb54 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_fine.inst.cfg index 59e90a3bb39..5a1e3c456a8 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_standard.inst.cfg index 9c85e6c6bc8..1f364794350 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_draft.inst.cfg index e03114db760..b8c86af3459 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_efine.inst.cfg index 8a5094291e3..d12504ba952 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_fine.inst.cfg index a30cbd04830..e5031178ca7 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_standard.inst.cfg index 647eb3dae45..2e60dcdcc30 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_draft.inst.cfg index c5f58040743..39dee8a34ab 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_efine.inst.cfg index 8d61ff22d0d..7b2eaa4d07e 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_fine.inst.cfg index 75198a3df8e..81378a00feb 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_standard.inst.cfg index 0bba5cf295b..2079e1f0c8b 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_draft.inst.cfg index aa7b5d0b24a..f2380c7cfe7 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_efine.inst.cfg index a83b0e3ad29..e3f6c13bea3 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_fine.inst.cfg index d64032362ac..2dce8f735e4 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_standard.inst.cfg index bda9411fb93..3f60c325636 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_draft.inst.cfg index 6c2d4f0e004..53f23e6eb33 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_efine.inst.cfg index 20cf16c1d40..46e26a0626c 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_fine.inst.cfg index 70074181941..bff51d98fd2 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_standard.inst.cfg index 5759d5678ed..1201a30d5d0 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_draft.inst.cfg index fd3fd0a2000..e9645c7f0f3 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_efine.inst.cfg index 4c811504c1d..7e7fea7877f 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_fine.inst.cfg index afc99b665f3..a4ee3f3bf58 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_standard.inst.cfg index 1bc54841744..125f0e9bebc 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_draft.inst.cfg index 9213ee41508..8a46d6cbd12 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_efine.inst.cfg index 8bce4ab525d..ea6cbec13b4 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_fine.inst.cfg index f9521a40140..f7a613a20b5 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_standard.inst.cfg index 705153c9acd..44ac6c91b74 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_draft.inst.cfg index a7ff3efcdb0..7f93f92adf6 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_efine.inst.cfg index 0103f6ddc86..61a251e2209 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_fine.inst.cfg index 3bdb5f9759b..7db0bfd5575 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_standard.inst.cfg index 77141c38db4..2f8a3bdb57c 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_draft.inst.cfg index f3b67d20fac..d78c1b2bf77 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_efine.inst.cfg index 816ce003670..0513491e114 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_fine.inst.cfg index f2efc7ef98d..3f92cc307b6 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_standard.inst.cfg index 4df8c1e46d7..4c4fcd36058 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_draft.inst.cfg index 1f39390e1ef..e36d6cc922a 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_efine.inst.cfg index ff27767a2f6..16679787e52 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_fine.inst.cfg index 06dff2e66e1..daadf2a25f1 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_standard.inst.cfg index 094c11b8fff..220f3b38e7c 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_draft.inst.cfg index f06b2abb44d..72b6c17e6f2 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_efine.inst.cfg index 8fb89789579..480a6d0d46e 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_fine.inst.cfg index 3de8dd51d8c..4aed3391d2b 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_standard.inst.cfg index 4b023b7c1a4..a8b259e40e3 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_draft.inst.cfg index 4f51919bad6..4515d117869 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_efine.inst.cfg index 0bd2e821a35..9332be7f508 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_fine.inst.cfg index cb27e45ea94..75cec5183e4 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_standard.inst.cfg index 894268c3b7a..875390ef4df 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_draft.inst.cfg index 7c2aab3219e..40834d6db89 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_efine.inst.cfg index d96c20174b7..23c59fb500b 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_fine.inst.cfg index 058655a1e69..e2ad9d6fd4d 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_standard.inst.cfg index 1ff2b340686..c70bdfb20e0 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_draft.inst.cfg index dca5cf9f3c4..9f860abd284 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_efine.inst.cfg index e8375270b5c..520f8fc8a59 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_fine.inst.cfg index c7dec1380f0..8fd2bee0682 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_standard.inst.cfg index 19c660a4f6b..561bde734c8 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_draft.inst.cfg index cdb1911b9a5..671b54bdf44 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_efine.inst.cfg index ded43d09691..ddd379be18a 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_fine.inst.cfg index de7c1f36207..b123bd57218 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_standard.inst.cfg index 10580fbc2b8..36875a4c57e 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_draft.inst.cfg index 79855f83e24..11fafe08098 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_efine.inst.cfg index 91073385f73..0fe62096af2 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_fine.inst.cfg index 56afdac2312..29f1abb2a7e 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_standard.inst.cfg index ef32166d4a9..00deef516c0 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_draft.inst.cfg index bd016036c49..94ae0743fe4 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_efine.inst.cfg index 39a950249a0..f9b94fc2573 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_fine.inst.cfg index cdbf92d318b..46a3a9fa613 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_standard.inst.cfg index f80b9c0f0d0..56f92ab16bb 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_draft.inst.cfg index b321728ed51..bd58e7adf59 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_efine.inst.cfg index 5931a2497aa..cee9e4dccb5 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_fine.inst.cfg index cd3ec9b4d50..9f02a5215ec 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_standard.inst.cfg index 3374a8e2ab6..6f53a862dc2 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_draft.inst.cfg index 2fe1a46d667..6046f738c5e 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_efine.inst.cfg index 829c8fd4910..c07b6dfad42 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_fine.inst.cfg index bf09b685645..bdda4ef8a13 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_standard.inst.cfg index 1d04870b057..fb0fc68a5cf 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_draft.inst.cfg index c1b973352b3..4c01ab631e0 100644 --- a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_efine.inst.cfg index c8da6547bc3..1a4c2426fb4 100644 --- a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_fine.inst.cfg index 69f0e97e0a1..968a7a9c67a 100644 --- a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_standard.inst.cfg index e8a065418fd..6a216a25a1b 100644 --- a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_draft.inst.cfg index 5f8af2b28d9..457eefe2066 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_efine.inst.cfg index 8b8e206a782..5008a6a0ae1 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_fine.inst.cfg index bd93ca1c6ac..2e9e44565b4 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_standard.inst.cfg index e5c179ff45b..bcd800c289c 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_draft.inst.cfg index c6567c80f07..aac1990e10a 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_efine.inst.cfg index 7fa272e40db..d8e6eceaa66 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_fine.inst.cfg index ea049121067..0f3d79ceca8 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_standard.inst.cfg index cdf2ec8d71a..35d29dfef78 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_draft.inst.cfg index 84dbdc550a5..c4bcca20590 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_efine.inst.cfg index caf6cc6cb11..0332a2f238c 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_fine.inst.cfg index 84e1264d369..931a14e7398 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_standard.inst.cfg index 2f178852891..c613d419012 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_draft.inst.cfg index ad526c1bab7..9ca43bb40f6 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_efine.inst.cfg index 0a7582fd7ff..57332ca7b7e 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_fine.inst.cfg index b417b80c86f..a19e30459f0 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_standard.inst.cfg index 838a4401821..c6f687d1869 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_draft.inst.cfg index db4115a0b7b..a8416f211e1 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_efine.inst.cfg index 13dc3b1aebb..7e5063001ff 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_fine.inst.cfg index 95b67c7b19f..80e240c99ec 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_standard.inst.cfg index 3c418caacfa..30c88bcb71e 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_draft.inst.cfg index 946269e6e4f..fb5ce482080 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_efine.inst.cfg index b36d981df95..5e4135d37f1 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_fine.inst.cfg index 3bb2a5c25a6..2ca72b64783 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_standard.inst.cfg index 318b863137a..fb76a0b203d 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_draft.inst.cfg index 19bbd2fee2d..a604d591e79 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_efine.inst.cfg index 1b0ac9a8ad4..36aa675aa59 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_fine.inst.cfg index 35c69885d80..9f8ea69fb5f 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_standard.inst.cfg index 60652b1a404..30b78bc806a 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_draft.inst.cfg index 2e5539a0b6e..440620c4f48 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_efine.inst.cfg index b00f0ce701b..7d04f1fe660 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_fine.inst.cfg index c6b885df4a2..f31ca3a447d 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_standard.inst.cfg index fcbe4aa9ac7..78337e4399a 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_draft.inst.cfg index 54349a9169a..a522b67182f 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_efine.inst.cfg index c0e790de037..a5237fd6880 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_fine.inst.cfg index 1e66935368b..0735eafe6bf 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_standard.inst.cfg index 6d49dbd1178..ac8f22dae56 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_draft.inst.cfg index b74e3acccd3..2137bb44d62 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_efine.inst.cfg index 7501c72ddec..8bf07b71bd9 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_fine.inst.cfg index 3feb6df3a08..1b0303b4a0e 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_standard.inst.cfg index 935f9740030..12af81f8ff2 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_draft.inst.cfg index 39e214fda00..5f23442d9e3 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_efine.inst.cfg index 8a519242811..1e1954997df 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_fine.inst.cfg index 834d64152d0..c2dccc4c292 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_standard.inst.cfg index d6fff7acb88..29be08b1352 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_draft.inst.cfg index 0979c5c314c..d1cf9b5edf4 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_efine.inst.cfg index f92b859fd26..eeb45c2ccab 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_fine.inst.cfg index 7893fa30e98..8205023bcd7 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_standard.inst.cfg index 929c20e5b9b..3495ff4d3b5 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_draft.inst.cfg index aed7875226b..208e9a81bef 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_efine.inst.cfg index bd21d6e301f..2df649ca35f 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_fine.inst.cfg index f720646b8b6..1e56bc12bf5 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_standard.inst.cfg index 26fcc13ceae..f1f8cc59ce0 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_draft.inst.cfg index 060a636082f..ca0921304aa 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_efine.inst.cfg index 736bd6ba524..e2fd6b87d39 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_fine.inst.cfg index 1af5ab5773f..52d36595703 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_standard.inst.cfg index 64752f37e0a..8a005e13f43 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_draft.inst.cfg index 058eab3b51e..35831312bb6 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_efine.inst.cfg index 29dc4ea9c90..0ff8d896641 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_fine.inst.cfg index dcda2fee8ad..43859075e12 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_standard.inst.cfg index bde488d5bbd..09e685a14de 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_draft.inst.cfg index 962ee7df647..99187ad5dff 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_efine.inst.cfg index 6fae0d7de3c..81fdbdbafbe 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_fine.inst.cfg index 045e0dd9a32..3ed41c03099 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_standard.inst.cfg index 69adc588fed..b51daea66f5 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_draft.inst.cfg index a30c01dd541..1a054a12595 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_efine.inst.cfg index 629a750003d..9ba820f8770 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_fine.inst.cfg index 472c51f9ae2..c89eedbf43d 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_standard.inst.cfg index d745270314b..39d4687305a 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_draft.inst.cfg index 25c69b07163..7bd3af8187f 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_efine.inst.cfg index 327f56569ad..da4acd2f6f2 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_fine.inst.cfg index 0bd8183eda6..d3a322e4658 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_standard.inst.cfg index d86ac946c17..a63a8816e7f 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_draft.inst.cfg index 6fa76cf2691..de0137a4e65 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_efine.inst.cfg index 9b67dd691b0..fa28f435c6c 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_fine.inst.cfg index fbcee52ef0c..16534a9d4aa 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_standard.inst.cfg index dc780ccce12..3025e1b77c3 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_draft.inst.cfg index 7e57571e070..ebd9e68fe07 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_efine.inst.cfg index fb11dae28ef..7f039d1a1c5 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_fine.inst.cfg index fe89dfb09f9..cf026efa1d2 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_standard.inst.cfg index 1a8351b2ea5..83700acaf26 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_draft.inst.cfg index 79ee9f35d6d..9c912e786fe 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_efine.inst.cfg index 01ea17738b5..c38c5b2fb0f 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_fine.inst.cfg index b227780b3f9..44f3add9e29 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_standard.inst.cfg index 94b03d66536..573484ba804 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_draft.inst.cfg index ba8a374e6a5..9aa7c8002ef 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_efine.inst.cfg index c526af5f69b..46469f6f296 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_fine.inst.cfg index 9ad5e221eeb..05eedcdbb9e 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_standard.inst.cfg index aa480a3495b..681f07472e9 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_draft.inst.cfg index 2d4c6d35018..30ad404a8c9 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_efine.inst.cfg index d81ddd486f0..fbe87ef6c61 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_fine.inst.cfg index ccc463655e5..9fe7f059cdf 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_standard.inst.cfg index 14acbc16f37..ba0d5867f09 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_draft.inst.cfg index 6f3ebb98ed2..e8848d36ed4 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_efine.inst.cfg index f07208c6627..5a581ba104e 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_fine.inst.cfg index 2c436418cd9..9999ad4926d 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_standard.inst.cfg index c341378f23f..b99ed6619c9 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_draft.inst.cfg index d8bae28f189..e69de84b626 100644 --- a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_efine.inst.cfg index 3a8668d7053..181121e4814 100644 --- a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_fine.inst.cfg index 63506d7c13f..073a976f16c 100644 --- a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_standard.inst.cfg index 8babb653177..4a508a0a06a 100644 --- a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_draft.inst.cfg index e6403083d2b..3c8b00f6262 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_efine.inst.cfg index bc8e85b6634..3ce95f7a639 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_fine.inst.cfg index 802e8c299b9..3b41b07a064 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_standard.inst.cfg index e2128f9758d..3210f1da7ba 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_draft.inst.cfg index 0fce6059223..46e75f38999 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_efine.inst.cfg index 955492c995a..aa4f99fcb3e 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_fine.inst.cfg index bc91dd87718..679e88140f0 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_standard.inst.cfg index e508f330d26..1b3680cf731 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_draft.inst.cfg index 6ac15e5f7c5..dac40bc410e 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_efine.inst.cfg index c72b18b91d0..80b5c6b6506 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_fine.inst.cfg index e143b95b71d..17b366bf720 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_standard.inst.cfg index 528052b6bdc..cee54c23631 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_draft.inst.cfg index d4740559ff8..e4deeed9dbe 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_efine.inst.cfg index 441cada5b9f..adeb9566607 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_fine.inst.cfg index 816d60c36e5..682d398b68d 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_standard.inst.cfg index 2b8626361a4..e465530528e 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_draft.inst.cfg index d28480fa4d9..d7a74a43fe3 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_efine.inst.cfg index 455ba84ee93..50ecaf14ec9 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_fine.inst.cfg index b58b7b1d882..04334a9c556 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_standard.inst.cfg index 3ee1caeca55..427ecf378dc 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_draft.inst.cfg index ab5ec4e7485..98fd96a26d1 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_efine.inst.cfg index db0a844d973..f4dda4780a6 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_fine.inst.cfg index 856335f5adc..6d9bfd898e3 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_standard.inst.cfg index cf6165f701f..83789925b62 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_draft.inst.cfg index ea69168c9c4..6807168f8a4 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_efine.inst.cfg index acd7670bb42..72f6883afdf 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_fine.inst.cfg index 098ab00000e..8070d0e64cc 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_standard.inst.cfg index 8049d029d85..4abf8d0c80e 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_draft.inst.cfg index 54dd0fb0082..4367c59ba83 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_efine.inst.cfg index 5e288f02c21..7290662db69 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_fine.inst.cfg index c01fa7db09b..28b3cbc3bed 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_standard.inst.cfg index 09c08534327..48f13581246 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_draft.inst.cfg index 02513dab07e..63395c97e2b 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_efine.inst.cfg index 92b75c84e89..bb80d477d2b 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_fine.inst.cfg index 8a1a9b7d332..234019da738 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_standard.inst.cfg index 9ac586e25e0..8106b3ef219 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_draft.inst.cfg index 40a51f422fd..7ff797252cc 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_efine.inst.cfg index 924e6f6f534..2a667d64660 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_fine.inst.cfg index 4c63c9486db..df35985225e 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_standard.inst.cfg index 2a21f43111c..e2d4610158d 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_draft.inst.cfg index 910eae2f474..495ce5971cc 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_efine.inst.cfg index 325f0379579..7d13a8dadc5 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_fine.inst.cfg index 811ff42d680..d895be517a2 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_standard.inst.cfg index 827c3c43a72..e34dcbac6d3 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_draft.inst.cfg index 431c8020cc2..86db2a4d457 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_efine.inst.cfg index 4e204492c77..6b4d27dd4a5 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_fine.inst.cfg index 90852fabc16..4886566493d 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_standard.inst.cfg index 8a7f848d330..a38cf1fd2ef 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_draft.inst.cfg index ac321494558..5a23fd57a2b 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_efine.inst.cfg index 2e79e9b88eb..8e4170d9d23 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_fine.inst.cfg index 10b33ca2c4f..938461c5e7c 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_standard.inst.cfg index d2819a8f013..9e4a7628122 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_draft.inst.cfg index c8073b57a06..336196c2caf 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_efine.inst.cfg index 3a7f1c54ab8..16e9d629c1f 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_fine.inst.cfg index 535b1da3c02..cedbff00bf9 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_standard.inst.cfg index b96a76d79ad..434da68f639 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_draft.inst.cfg index c788c0d8876..5e46e31d8f2 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_efine.inst.cfg index e5c236d98cf..a0b4939bf2e 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_fine.inst.cfg index 77230985744..4a39e1c8e10 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_standard.inst.cfg index cf1147a425b..96b2f04cef8 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_draft.inst.cfg index 596c4b79c50..b3e32302ab9 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_efine.inst.cfg index 0d97b4ee376..c64a33386ef 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_fine.inst.cfg index 82848057d42..a7959b6cc9d 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_standard.inst.cfg index aaf25c03c9a..2493925bfda 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_draft.inst.cfg index e9a74178f67..1f98a763f8a 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_efine.inst.cfg index 7e2019db94a..f464e716394 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_fine.inst.cfg index 9cdaf34562c..279a08f94ff 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_standard.inst.cfg index 155219e40ee..29a442d2f22 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_draft.inst.cfg index 68264892fc0..806e5fd9fa9 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_efine.inst.cfg index c5678f48c71..cc432790981 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_fine.inst.cfg index b43f566e080..b308cdd674a 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_standard.inst.cfg index cc8737355e4..5ffd9438278 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.70_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.70_pla_standard.inst.cfg index bf326069be2..90011648e7a 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.70_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.70_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.7mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_draft.inst.cfg index 156132c8a7e..d4be1df6466 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_efine.inst.cfg index b640517870e..c1d11ee1e57 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_fine.inst.cfg index 0763c0b9696..06d65533023 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_standard.inst.cfg index b8e72e2b850..713055db6df 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_draft.inst.cfg index 2fe0334d24d..d537e2bce9d 100644 --- a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_efine.inst.cfg index f6aac1d38f8..67e57f4a4fb 100644 --- a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_fine.inst.cfg index e083b57522b..4bbf391b458 100644 --- a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_standard.inst.cfg index 72066ca6a37..01dc8f7675d 100644 --- a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_draft.inst.cfg index 5256fc3783c..e2dc4fb2baa 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_efine.inst.cfg index 5dabf9f38c5..87062b3c991 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_fine.inst.cfg index a55d9c304df..c6fddf4d72f 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_standard.inst.cfg index 1fe7644f2d5..011559774d6 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_draft.inst.cfg index 60d0b6687ed..7838ee5feeb 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_efine.inst.cfg index e626039e59c..197d91b836b 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_fine.inst.cfg index e9ebc84cf2b..835f59c754f 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_standard.inst.cfg index 8ad915955a8..c5e129679a8 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_draft.inst.cfg index 6864af98d56..2e70de1784e 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_efine.inst.cfg index b8d46420ac7..0b690d4ea6a 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_fine.inst.cfg index 3ca13903683..550659cd4ee 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_standard.inst.cfg index 44c569cd81c..db0e547e98d 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_draft.inst.cfg index b55e079336f..3b341470099 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_efine.inst.cfg index 5f4a94be7b1..506475b0b5d 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_fine.inst.cfg index cc19dd93ec2..75f6251d436 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_standard.inst.cfg index 56f72013817..0020c6afc2b 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_draft.inst.cfg index 7005a15a084..1721758d21b 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_efine.inst.cfg index 4440229bfd6..ae3a1f91958 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_fine.inst.cfg index d7eb2fa3afc..7ceb595c4b6 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_standard.inst.cfg index b36955655dc..436fef5536f 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_draft.inst.cfg index 75559b404fd..ade33240901 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_efine.inst.cfg index 98e1d91ab48..d84355a0dcd 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_fine.inst.cfg index 17d04e94448..a8ac3c5a587 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_standard.inst.cfg index 6cf3047e35a..32d826930a2 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_draft.inst.cfg index 8a0c63554d9..e0b1b838856 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_efine.inst.cfg index a163cc0958b..8b2d5d8dab9 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_fine.inst.cfg index dd3074ee47c..a4e05f0b1be 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_standard.inst.cfg index a1ac06a465b..3dcf5d8cf23 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_draft.inst.cfg index 4d3ded603e4..bebb81291a3 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_efine.inst.cfg index 472bac1b491..fb219f2e16a 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_fine.inst.cfg index d9e9c6baac3..9c23538b5fd 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_standard.inst.cfg index 11a5bf11dad..bd4e3851bea 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_draft.inst.cfg index 73c4381d770..6d788974ce0 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_efine.inst.cfg index 9ab5b47fc87..be1ad19db6c 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_fine.inst.cfg index 1d9a367606d..133e168d63e 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_standard.inst.cfg index e8c63384615..2d895109eda 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_draft.inst.cfg index 1b3a7fc6304..d25c4c2793c 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_efine.inst.cfg index 6365705e9b9..eef04ba0f0a 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_fine.inst.cfg index c19e5744bfe..bc6abd6fde8 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_standard.inst.cfg index 1f06092793a..444258d3e78 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_draft.inst.cfg index 3a66f229687..aafee1609c7 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_efine.inst.cfg index 030a1215a80..91dfb9945f5 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_fine.inst.cfg index 526c675bf5a..383b8148041 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_standard.inst.cfg index 7064d1dbf29..f15973a0e4e 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_draft.inst.cfg index a5c71b0f01c..f1855c07d75 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_efine.inst.cfg index c075dcb8929..2cff52d0d74 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_fine.inst.cfg index ed6df806f25..45b10074a04 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_standard.inst.cfg index 7acce33904c..55c4a61eee2 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_draft.inst.cfg index 436ee3fdaea..243bdcfaea5 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_efine.inst.cfg index 6fcce27f3be..8913a0d7109 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_fine.inst.cfg index 2b2d7700401..7e30359f033 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_standard.inst.cfg index 70d0a9e1d2d..6aabac6e5bb 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_draft.inst.cfg index 8656ed85ad3..61e3bc8944f 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_efine.inst.cfg index 909c82ace33..e24514e9736 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_fine.inst.cfg index 0bc7b9d98f4..f2a18d1a0f6 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_standard.inst.cfg index 746317e2e89..25f5eea2286 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_draft.inst.cfg index f0a74a8fb47..d6f8b70abbc 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_efine.inst.cfg index e63033750f4..78b6abfcce4 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_fine.inst.cfg index 893340e54c6..4d2b12b9525 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_standard.inst.cfg index baf72049930..89863c4c31f 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_draft.inst.cfg index dbf4d02cba1..9f9fef6d608 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_efine.inst.cfg index 8cba0d5d701..f7e1050f200 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_fine.inst.cfg index bea05b2d8dc..c04809b64f7 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_standard.inst.cfg index 172c4bf9d7a..1668ede94c0 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_draft.inst.cfg index 53712efd2e5..62933a4fbd5 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_efine.inst.cfg index de5bd5d1562..7bb06108a0c 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_fine.inst.cfg index 806c5458b17..1c0691a7d60 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_standard.inst.cfg index 55caeae945a..48f165411bc 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_draft.inst.cfg index 7611fdf69a5..a106cf2fd26 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_efine.inst.cfg index 7ff408c45f3..feccfe4d0cb 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_fine.inst.cfg index dadb1f716de..e7c73d65ec7 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_standard.inst.cfg index 675e64af206..072c9b36977 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_draft.inst.cfg index 6b6b9c295f1..0822ed93956 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_efine.inst.cfg index 1abca531675..af138ec9ad1 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_fine.inst.cfg index 2ce84bd9c26..5f56b9858ab 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_standard.inst.cfg index 86f97a674a0..f19c453c06c 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_draft.inst.cfg index 58cd0e49f2b..f771663bc61 100644 --- a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_efine.inst.cfg index 3291eed01db..88619447b86 100644 --- a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_fine.inst.cfg index d6bb3a6fce4..32d055d5197 100644 --- a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_standard.inst.cfg index 3f2ab062936..b387713b73b 100644 --- a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_draft.inst.cfg index 01c73983327..9ef41cae428 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_efine.inst.cfg index c09a540a34d..0f51bcd54ab 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_fine.inst.cfg index 1362015f13f..6d2760a8b6e 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_standard.inst.cfg index 098c80b8997..9024d3af2ce 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_draft.inst.cfg index a44a19eb1fe..6d65d34038a 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_efine.inst.cfg index 4aab660f0da..951d21a24a9 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_fine.inst.cfg index 9721a8e1d07..03902636ee9 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_standard.inst.cfg index 3402c32cbec..b427f6ade87 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_draft.inst.cfg index 9420fbd8d2c..a818846db10 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_efine.inst.cfg index 77982e15591..7156000c897 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_fine.inst.cfg index ac75323db6e..2bcce8c08f5 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_standard.inst.cfg index 173d78ce78f..a89d332e920 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_draft.inst.cfg index d8772778fb3..7accd1dc5d6 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_efine.inst.cfg index d9db15f5e83..eb55f197448 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_fine.inst.cfg index fd78553b0dc..d6cdef8f469 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_standard.inst.cfg index 4e59e51b308..4c7386319d8 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_draft.inst.cfg index 977a1310661..cfb6048bfa5 100644 --- a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_efine.inst.cfg index dd3b88ed5bb..7aa0d816809 100644 --- a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_fine.inst.cfg index 6a4b8f6e3b6..7cbc5d0d5a0 100644 --- a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_standard.inst.cfg index 419a5ad42be..a217770025e 100644 --- a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_draft.inst.cfg index 30323b2e71c..b5e6cfd2da1 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_efine.inst.cfg index 56be469fdae..3bd3ce920f7 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_fine.inst.cfg index e8ad02e14a1..beb9b922a1e 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_standard.inst.cfg index e12df152d57..e167dcac9ff 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_draft.inst.cfg index 4e23322b49a..664f3e6ca17 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_efine.inst.cfg index bba461fb891..444da63072b 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_fine.inst.cfg index 6199be2bd79..3f9ada087ce 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_standard.inst.cfg index 4827fcec139..d00e73fabb4 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_draft.inst.cfg index 546aa829cf1..4343317dfc0 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_efine.inst.cfg index b95d38dc3e7..c286dc24856 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_fine.inst.cfg index a4e727516e1..e31017db6d3 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_standard.inst.cfg index 07d12aea7dd..d05f817415b 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_draft.inst.cfg index b786fe42b36..9a478458711 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_efine.inst.cfg index 16def5703d4..49609c7121a 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_fine.inst.cfg index b3128f40e98..0647fcbeaaa 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_standard.inst.cfg index b1c8aadb1af..9e69c455dd3 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_draft.inst.cfg index 2d28fab21b2..0b1278493c4 100644 --- a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_efine.inst.cfg index 2b6825515cf..1d31469cc32 100644 --- a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_fine.inst.cfg index 4775bfc5a5f..7e9261a810e 100644 --- a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_standard.inst.cfg index 2f3dbe36ffc..abc24c245c4 100644 --- a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_draft.inst.cfg index 647d309c184..9d90340c7d1 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_efine.inst.cfg index 338162a5f05..c3369b073b0 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_fine.inst.cfg index cb1293ea9bf..098e1b27336 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_standard.inst.cfg index 5087d749a26..034b928933d 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_draft.inst.cfg index e147f684960..47443f2158c 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_efine.inst.cfg index c031d264451..aa2c30969bd 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_fine.inst.cfg index 9d23c7aeefc..c0323964768 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_standard.inst.cfg index fe90f6970cb..99e48b52caf 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_draft.inst.cfg index 58c0d71f30a..960ea90df3c 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_efine.inst.cfg index 1ebf0bc71de..f6be30dffb6 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_fine.inst.cfg index 07cde244a58..01f7d71e9b1 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_standard.inst.cfg index d17393a5f06..02adae91d80 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_draft.inst.cfg index f9a2ee471eb..5bbf15d8316 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_efine.inst.cfg index 522e7b66803..22109fa7369 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_fine.inst.cfg index 5f8b9645a95..d005f362941 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_standard.inst.cfg index 7d11410f2ad..51afba93ed0 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_draft.inst.cfg index e0d002c768d..435b079942e 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_efine.inst.cfg index 8606bbe8ef3..ee17b3b5684 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_fine.inst.cfg index dd964bdda51..9d3027b9263 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_standard.inst.cfg index 1fe0d04fa49..b76e7d12376 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_draft.inst.cfg index 1c31950f410..306b13f4999 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_efine.inst.cfg index 77fadaf6687..7fbfd04d18c 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_fine.inst.cfg index 281e4543cdb..3829cd6681f 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_standard.inst.cfg index abe75e6061e..ef53446b4c4 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_draft.inst.cfg index 928eceef5c2..c59f80887ba 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_efine.inst.cfg index 34ab0e6195a..55ffd2c0cad 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_fine.inst.cfg index e84eb91d7f6..a00cca72fee 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_standard.inst.cfg index fedb231ee8f..c0348c50a01 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_draft.inst.cfg index e554c172c6d..9dd50875e1b 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_efine.inst.cfg index 5a10719a81e..5975aed497f 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_fine.inst.cfg index ed09bacb5ba..3e2c862d7b2 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_standard.inst.cfg index 16b12b6b917..67f9a187c8d 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_draft.inst.cfg index 5729092fee8..fd576bf9795 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_efine.inst.cfg index e6e39fd2ba3..ca2db4cbc35 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_fine.inst.cfg index 08e0d0eece3..ba6b8e3bdd0 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_standard.inst.cfg index 37a01916dcc..d30b9f23c72 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_draft.inst.cfg index e7b68bf5710..104e8167c38 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_efine.inst.cfg index cb050a5f5be..28a10003f4e 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_fine.inst.cfg index 1a1029e5592..4acd15ea0f1 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_standard.inst.cfg index d6456988a87..a31b09d1e34 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_draft.inst.cfg index 74855b60923..7de788b6cd3 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_fine.inst.cfg index 534591138fb..d07ac3d50ed 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_standard.inst.cfg index 3c94b57d441..a9c8d61167d 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_draft.inst.cfg index c200e621db4..9e11cd6a418 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_efine.inst.cfg index c8f20b83359..e29af7fa79f 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_fine.inst.cfg index 60d228122d8..a29e3ab72e7 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_standard.inst.cfg index b7075093ffa..bb0e6fe9abd 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_draft.inst.cfg index e307ab96e54..c810bf612fa 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg index 9ee8c7d0c9b..268f749a4e0 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_standard.inst.cfg index 37d15f963bc..4eb93f317e8 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_draft.inst.cfg index 2a69859868a..7b584856beb 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_efine.inst.cfg index 7a6e8dcfa17..d82bad2d385 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg index cc8ecb6e56d..3fbc6b312f6 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_standard.inst.cfg index 1611d21ca52..4380089b590 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_draft.inst.cfg index aa35ac47da1..144a7913ce5 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_fine.inst.cfg index 3ca411484da..e844f9d8990 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_standard.inst.cfg index 7d9787b30b7..38f99727687 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_draft.inst.cfg index 6aeb97bcfc6..ea465314fd9 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_efine.inst.cfg index 96baa3c36b3..4fedd884d28 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_fine.inst.cfg index cbf8db5c182..10dac63a0a0 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_standard.inst.cfg index 444701f3ea4..c196470d717 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_draft.inst.cfg index 0ddf69995b9..ad943c9b4c0 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_fine.inst.cfg index 00a42d0e386..b5829eadfa0 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_standard.inst.cfg index 7bd13060f4e..c062f66dfdc 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_draft.inst.cfg index b2b1eb43bb6..13461b69acd 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_efine.inst.cfg index caa94951a5f..ab3386b24c2 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_fine.inst.cfg index 3eb74338fd3..ec1e72432d6 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_standard.inst.cfg index 4bea650f680..de5ddffaa8c 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_draft.inst.cfg index 1140c0d664d..92727c490aa 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_fine.inst.cfg index a3aa026c585..eb9edd824d7 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_standard.inst.cfg index 22a777527ca..13fced9fa90 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_draft.inst.cfg index a776fd974ac..a54569e07b7 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_efine.inst.cfg index b46485d3336..d21940b51ee 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_fine.inst.cfg index 52f1d6e15f3..9a0b95203e1 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_standard.inst.cfg index 730333d1e35..6b7ee19e86b 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_draft.inst.cfg index 5dd52d68bb2..6ae18a8b21e 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_fine.inst.cfg index 05ead8d6ef9..9ac81270399 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_standard.inst.cfg index 01cc928c5f5..2c703191c8c 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_draft.inst.cfg index d7c9e84fbcf..07a9538f65f 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_efine.inst.cfg index fd2fd649d49..f0fcc87112c 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_fine.inst.cfg index 72644295027..95bd1f3d8e4 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_standard.inst.cfg index a03f83f31bb..bf773f65c4a 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_draft.inst.cfg index 46359875085..59bd0b6edb5 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_fine.inst.cfg index cf7330481a6..a7df472cc21 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_standard.inst.cfg index b70bc4bfd46..0fda0370f21 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_draft.inst.cfg index 1a238231e7a..9d1f7abe98c 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_efine.inst.cfg index 560cff2f9b0..c04888e54bd 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_fine.inst.cfg index 40c0a746348..165a7be1df6 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_standard.inst.cfg index e686cbd2f1a..2487452a5c5 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_draft.inst.cfg index acfba616405..3992eb56365 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_fine.inst.cfg index e5510610359..4fbf3361056 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_standard.inst.cfg index a51f972000f..c71962cb1ee 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_draft.inst.cfg index 33f7343074b..c444297122d 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_efine.inst.cfg index 5be61a07a73..f2448b4f1f7 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_fine.inst.cfg index 70791c31453..bec02e01c07 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_standard.inst.cfg index 4c9805c372f..0b61c518464 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_draft.inst.cfg index d459bfce0db..0d8d49da54f 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_fine.inst.cfg index 9e1c45c8ce0..13bb7b8a48f 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_standard.inst.cfg index d63ff9cffea..900bbfd174f 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_draft.inst.cfg index 576c8bda75d..ac47dccb196 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_efine.inst.cfg index d678e7e1e69..18854e1f8b4 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_fine.inst.cfg index a1e3afd88af..a3d82be7325 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_standard.inst.cfg index feacb669e7e..734be5fbb51 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_draft.inst.cfg index 959288634ba..23b596fef93 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_fine.inst.cfg index 5e1e53eda5c..7fb524d9883 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_standard.inst.cfg index ee1a941e0e9..fc703723a34 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_draft.inst.cfg index fefbd405602..583ccc72339 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_efine.inst.cfg index 10e02d9d167..82e8848521c 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_fine.inst.cfg index 95715b6cd18..93a3eeceeaa 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_standard.inst.cfg index 79a9ee23ac9..23665d699a9 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/gutenberg/gutenberg_global_fast_quality.inst.cfg b/resources/quality/gutenberg/gutenberg_global_fast_quality.inst.cfg index 205b7096966..85f0bb9e0e5 100644 --- a/resources/quality/gutenberg/gutenberg_global_fast_quality.inst.cfg +++ b/resources/quality/gutenberg/gutenberg_global_fast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/gutenberg/gutenberg_global_fine_quality.inst.cfg b/resources/quality/gutenberg/gutenberg_global_fine_quality.inst.cfg index b27aa17940a..55b16379381 100644 --- a/resources/quality/gutenberg/gutenberg_global_fine_quality.inst.cfg +++ b/resources/quality/gutenberg/gutenberg_global_fine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/gutenberg/gutenberg_global_normal_quality.inst.cfg b/resources/quality/gutenberg/gutenberg_global_normal_quality.inst.cfg index f4910f5e06f..a70b33ef308 100644 --- a/resources/quality/gutenberg/gutenberg_global_normal_quality.inst.cfg +++ b/resources/quality/gutenberg/gutenberg_global_normal_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/gutenberg/gutenberg_global_strong_quality.inst.cfg b/resources/quality/gutenberg/gutenberg_global_strong_quality.inst.cfg index 55c3a69a165..12d536938c3 100644 --- a/resources/quality/gutenberg/gutenberg_global_strong_quality.inst.cfg +++ b/resources/quality/gutenberg/gutenberg_global_strong_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = strong -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/high.inst.cfg b/resources/quality/high.inst.cfg index 0b8675085f6..5b78cb99d1b 100644 --- a/resources/quality/high.inst.cfg +++ b/resources/quality/high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/hms434/hms434_global_Coarse_Quality.inst.cfg b/resources/quality/hms434/hms434_global_Coarse_Quality.inst.cfg index 7826d97ee5a..bf18f50f12c 100644 --- a/resources/quality/hms434/hms434_global_Coarse_Quality.inst.cfg +++ b/resources/quality/hms434/hms434_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/hms434/hms434_global_High_Quality.inst.cfg b/resources/quality/hms434/hms434_global_High_Quality.inst.cfg index ef85f8fc943..c70f229a778 100644 --- a/resources/quality/hms434/hms434_global_High_Quality.inst.cfg +++ b/resources/quality/hms434/hms434_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/hms434/hms434_global_Normal_Quality.inst.cfg b/resources/quality/hms434/hms434_global_Normal_Quality.inst.cfg index 3420b89acb0..9b016128d31 100644 --- a/resources/quality/hms434/hms434_global_Normal_Quality.inst.cfg +++ b/resources/quality/hms434/hms434_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/hms434/pla/hms434_0.4_pla_high.inst.cfg b/resources/quality/hms434/pla/hms434_0.4_pla_high.inst.cfg index 22928aaf4be..7c6743494cc 100644 --- a/resources/quality/hms434/pla/hms434_0.4_pla_high.inst.cfg +++ b/resources/quality/hms434/pla/hms434_0.4_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm TP extruder weight = 1 diff --git a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_coarse.inst.cfg b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_coarse.inst.cfg index b38847c3a59..8edf92e6eb1 100644 --- a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_fine.inst.cfg b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_fine.inst.cfg index d1e45c384ca..60703ed4a0a 100644 --- a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_medium.inst.cfg b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_medium.inst.cfg index 4a6bef8a106..50f79ee486a 100644 --- a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_medium.inst.cfg +++ b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_medium.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_coarse.inst.cfg b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_coarse.inst.cfg index 58f20365c5e..4382e3194bd 100644 --- a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_fine.inst.cfg b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_fine.inst.cfg index a411099609c..ff8acff08f1 100644 --- a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_medium.inst.cfg b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_medium.inst.cfg index 40c5abd25d1..194740ca189 100644 --- a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_medium.inst.cfg +++ b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_medium.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_ultrafine.inst.cfg b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_ultrafine.inst.cfg index 49015dd7691..649d0aa573b 100644 --- a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_ultrafine.inst.cfg +++ b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_ultrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultrahigh -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 2 diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg index b84019e7916..33f64bac610 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg index 8aa8ee6203e..55ef0c54bf8 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg index 5e6ed2682c6..e9efa56b410 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg index db92713bd0c..79c5d001560 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultrahigh -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_coarse.inst.cfg b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_coarse.inst.cfg index 58087e1241d..24975658e7e 100644 --- a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_fine.inst.cfg b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_fine.inst.cfg index fbb1051fdc0..92cc50fe64e 100644 --- a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_medium.inst.cfg b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_medium.inst.cfg index 838318b6b29..ee758d4c06b 100644 --- a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_medium.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_medium.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_coarse.inst.cfg b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_coarse.inst.cfg index 7bfac678aee..f400857822a 100644 --- a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_fine.inst.cfg b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_fine.inst.cfg index a7059f87661..ce0a5d45f5a 100644 --- a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_medium.inst.cfg b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_medium.inst.cfg index 6518e6e4106..eddfaeb3ae2 100644 --- a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_medium.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_medium.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_ultrafine.inst.cfg b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_ultrafine.inst.cfg index cba3af5b2b6..4d498a7d4e9 100644 --- a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_ultrafine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_ultrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultrahigh -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 2 diff --git a/resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg b/resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg index 9fde6a87eab..1f0999bac1e 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg b/resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg index 419fa6b300d..4cfc017bffa 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg b/resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg index c352981f2da..952c67285c9 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg b/resources/quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg index a1496e36cce..a9f4ce41365 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultrahigh -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/inat/inat_base_advanced_materials.inst.cfg b/resources/quality/inat/inat_base_advanced_materials.inst.cfg index b8db0944348..ddd332c199d 100644 --- a/resources/quality/inat/inat_base_advanced_materials.inst.cfg +++ b/resources/quality/inat/inat_base_advanced_materials.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal_advanced -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/inat/inat_base_draft.inst.cfg b/resources/quality/inat/inat_base_draft.inst.cfg index b117afb385e..e24e5cb6849 100644 --- a/resources/quality/inat/inat_base_draft.inst.cfg +++ b/resources/quality/inat/inat_base_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/inat/inat_base_fine.inst.cfg b/resources/quality/inat/inat_base_fine.inst.cfg index b60f936a152..3274629305c 100644 --- a/resources/quality/inat/inat_base_fine.inst.cfg +++ b/resources/quality/inat/inat_base_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/inat/inat_base_standard.inst.cfg b/resources/quality/inat/inat_base_standard.inst.cfg index 38b46b98e42..a7ff77f71c0 100644 --- a/resources/quality/inat/inat_base_standard.inst.cfg +++ b/resources/quality/inat/inat_base_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/inat/inat_base_strong.inst.cfg b/resources/quality/inat/inat_base_strong.inst.cfg index 0a305179df0..bb49238d337 100644 --- a/resources/quality/inat/inat_base_strong.inst.cfg +++ b/resources/quality/inat/inat_base_strong.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = strong -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/inat/inat_base_tree_support.inst.cfg b/resources/quality/inat/inat_base_tree_support.inst.cfg index 484defc5346..c7985d704e1 100644 --- a/resources/quality/inat/inat_base_tree_support.inst.cfg +++ b/resources/quality/inat/inat_base_tree_support.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal_tree_supp -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.12_detail.inst.cfg b/resources/quality/jgaurora_a6/jgaurora_a6_0.12_detail.inst.cfg index 748bbc5b328..61f44fe2db8 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.12_detail.inst.cfg +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.12_detail.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = true quality_type = detail -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.16_optimal.inst.cfg b/resources/quality/jgaurora_a6/jgaurora_a6_0.16_optimal.inst.cfg index 30bb6ab0c70..d29c72d391c 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.16_optimal.inst.cfg +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.16_optimal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = true quality_type = optimal -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.24_draft.inst.cfg b/resources/quality/jgaurora_a6/jgaurora_a6_0.24_draft.inst.cfg index 733ff7624ff..1e07e55fff6 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.24_draft.inst.cfg +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.24_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = true quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg b/resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg index f2a7c48e9b0..4ee1bab58b1 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = true quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.2_normal.inst.cfg b/resources/quality/jgaurora_a6/jgaurora_a6_0.2_normal.inst.cfg index 38978f7b0d3..2df4e253282 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.2_normal.inst.cfg +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = true quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/katihal/alya3dp_normal.inst.cfg b/resources/quality/katihal/alya3dp_normal.inst.cfg index acde117ae3d..b9605426b8e 100644 --- a/resources/quality/katihal/alya3dp_normal.inst.cfg +++ b/resources/quality/katihal/alya3dp_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = alya_normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg b/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg index 4e1f5b9fe41..0cfa3151707 100644 --- a/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg +++ b/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = alya_normal -setting_version = 22 +setting_version = 23 type = quality weight = 3 diff --git a/resources/quality/katihal/alyanx3dp_normal.inst.cfg b/resources/quality/katihal/alyanx3dp_normal.inst.cfg index 8e5946f5b9e..4accd0ff522 100644 --- a/resources/quality/katihal/alyanx3dp_normal.inst.cfg +++ b/resources/quality/katihal/alyanx3dp_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = alyanx_normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg b/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg index 8058cff6c09..809f08de220 100644 --- a/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg +++ b/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = alyanx_normal -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/katihal/kupido_normal.inst.cfg b/resources/quality/katihal/kupido_normal.inst.cfg index 2efc4fe1ae3..cb6a330c8bd 100644 --- a/resources/quality/katihal/kupido_normal.inst.cfg +++ b/resources/quality/katihal/kupido_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = kupido_normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg b/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg index fbdfc42b77c..63f63fe1942 100644 --- a/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg +++ b/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = kupido_normal -setting_version = 22 +setting_version = 23 type = quality weight = 3 diff --git a/resources/quality/katihal/kupido_normal_generic_pla.inst.cfg b/resources/quality/katihal/kupido_normal_generic_pla.inst.cfg index ee34e155a26..d3633935935 100644 --- a/resources/quality/katihal/kupido_normal_generic_pla.inst.cfg +++ b/resources/quality/katihal/kupido_normal_generic_pla.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = kupido_normal -setting_version = 22 +setting_version = 23 type = quality weight = 3 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_draft.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_draft.inst.cfg index fe12445795c..d809ae48ad5 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_draft.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_extra_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_extra_fine.inst.cfg index b9de5eb8af1..fc8fd5c7a5c 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_extra_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_fine.inst.cfg index c2dbd5b30c3..34651bc83be 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_low.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_low.inst.cfg index 7a3d2cdf25b..456784f7ca3 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_low.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_normal.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_normal.inst.cfg index 1e20e9f01ed..8a4bcd4968e 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_normal.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_draft.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_draft.inst.cfg index b4cc00888b8..e413d82cf5d 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_draft.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_extra_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_extra_fine.inst.cfg index 9a861742339..ffe75aeb45e 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_extra_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_fine.inst.cfg index 6c0397ec548..099e5081b7a 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_low.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_low.inst.cfg index 4aad3524b3f..6b7c08d2bd2 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_low.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_normal.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_normal.inst.cfg index 873469a2cd1..d8d485ab995 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_normal.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_draft.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_draft.inst.cfg index 2650cf98e85..d92fd6ca253 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_draft.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_extra_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_extra_fine.inst.cfg index d090bb6c4e5..297a0b9e85c 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_extra_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_fine.inst.cfg index fc52768f4e5..5630fdefe0a 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_low.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_low.inst.cfg index 6de5c3e183f..a74f9f83b0b 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_low.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_normal.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_normal.inst.cfg index 89f85943133..cb5baf62b7d 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_normal.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/key3d/key3d_tyro_best.inst.cfg b/resources/quality/key3d/key3d_tyro_best.inst.cfg index c7a207387e1..e5b68e36b8d 100644 --- a/resources/quality/key3d/key3d_tyro_best.inst.cfg +++ b/resources/quality/key3d/key3d_tyro_best.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = best -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/key3d/key3d_tyro_fast.inst.cfg b/resources/quality/key3d/key3d_tyro_fast.inst.cfg index 80c0f84c914..d988800c1ae 100644 --- a/resources/quality/key3d/key3d_tyro_fast.inst.cfg +++ b/resources/quality/key3d/key3d_tyro_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/key3d/key3d_tyro_normal.inst.cfg b/resources/quality/key3d/key3d_tyro_normal.inst.cfg index 3c284849d7b..a7d361bdacc 100644 --- a/resources/quality/key3d/key3d_tyro_normal.inst.cfg +++ b/resources/quality/key3d/key3d_tyro_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/kingroon/ABS/kingroon_0.2_ABS_super.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.2_ABS_super.inst.cfg index 5aff66437a1..6e146e7b701 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.2_ABS_super.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.2_ABS_ultra.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.2_ABS_ultra.inst.cfg index 40a5e5b90a1..1567cdd68d9 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_adaptive.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_adaptive.inst.cfg index 421e1aa1fa0..267c47b676a 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_low.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_low.inst.cfg index bd1ec6bc532..68c797149ef 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_low.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_standard.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_standard.inst.cfg index 0477f43fba4..7b5ed953547 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_standard.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_super.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_super.inst.cfg index 45fc4b20879..0f4d5f9132f 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_super.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_adaptive.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_adaptive.inst.cfg index b931a8aad5e..201e6a7b27c 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_low.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_low.inst.cfg index f436ddcaeb4..4ff7b3bcb51 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_low.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_standard.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_standard.inst.cfg index 36ae1acc9e3..9732857f872 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_standard.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_super.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_super.inst.cfg index f0a128e58df..600158f3281 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_super.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_adaptive.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_adaptive.inst.cfg index 65944f8c3bf..08ae5147ed1 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_low.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_low.inst.cfg index 31a8c4bc303..6bd87de8b18 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_low.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_standard.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_standard.inst.cfg index 22da321da06..a9ee4d58da9 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_standard.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_super.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_super.inst.cfg index 96c378d280c..f92db9d0d3a 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_super.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.6_ABS_standard.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.6_ABS_standard.inst.cfg index 9b63dde5a40..c13c12ff0e0 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.6_ABS_standard.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.8_ABS_draft.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.8_ABS_draft.inst.cfg index 74b867d5bba..9705ae65b44 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.8_ABS_draft.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_1.0_ABS_draft.inst.cfg b/resources/quality/kingroon/ABS/kingroon_1.0_ABS_draft.inst.cfg index a542a404db9..4bf46163385 100644 --- a/resources/quality/kingroon/ABS/kingroon_1.0_ABS_draft.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.2_PETG_super.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.2_PETG_super.inst.cfg index fda03549183..18743bfb144 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.2_PETG_super.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.2_PETG_ultra.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.2_PETG_ultra.inst.cfg index e65797d2a08..90b68a4b2dd 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_adaptive.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_adaptive.inst.cfg index 3fa5e6acf0d..f4e2967c60e 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_low.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_low.inst.cfg index b2f95db0f9b..90161eeb14e 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_low.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_standard.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_standard.inst.cfg index c6aad09ce3f..88b3f0fac3b 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_standard.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_super.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_super.inst.cfg index 21addedb5e7..669ee1ba2d6 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_super.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_adaptive.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_adaptive.inst.cfg index 24e2da4f335..ecda7d46d97 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_low.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_low.inst.cfg index 9615254fd07..c7c486a8b29 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_low.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_standard.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_standard.inst.cfg index 20fbcfb72cb..96103eaecaf 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_standard.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_super.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_super.inst.cfg index a483c928c1c..3b9e7070587 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_super.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_adaptive.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_adaptive.inst.cfg index 9256aa219f4..f65914591b0 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_low.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_low.inst.cfg index 47073a583d3..dd9512693f9 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_low.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_standard.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_standard.inst.cfg index 0a07077e0ba..8ddbf80ae31 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_standard.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_super.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_super.inst.cfg index f9f5a29fb0f..2d3e1274212 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_super.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.6_PETG_standard.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.6_PETG_standard.inst.cfg index cd11cf13415..712d39c19dd 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.6_PETG_standard.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.8_PETG_draft.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.8_PETG_draft.inst.cfg index 54c202b312a..09210cdb3cd 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.8_PETG_draft.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_1.0_PETG_draft.inst.cfg b/resources/quality/kingroon/PETG/kingroon_1.0_PETG_draft.inst.cfg index a9102ff5bca..70efb35bad7 100644 --- a/resources/quality/kingroon/PETG/kingroon_1.0_PETG_draft.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.2_PLA_super.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.2_PLA_super.inst.cfg index a191f9bcff6..0d75516111d 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.2_PLA_super.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.2_PLA_ultra.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.2_PLA_ultra.inst.cfg index 23491e7efdf..a8cf9eac901 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_adaptive.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_adaptive.inst.cfg index 24a9e9b6b8d..096a94fbbd5 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_low.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_low.inst.cfg index e95c9baddb0..184fd09da77 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_low.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_standard.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_standard.inst.cfg index fc4cdaa8e60..825f2a1ef37 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_standard.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_super.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_super.inst.cfg index add438ea604..a2432760921 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_super.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_adaptive.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_adaptive.inst.cfg index e790b8ed55e..0683da11e5b 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_low.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_low.inst.cfg index 33aae2c1f7b..272fd0531fa 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_low.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_standard.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_standard.inst.cfg index 0189652c327..78116453e2e 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_standard.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_super.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_super.inst.cfg index 175135546a1..3b02bf9e147 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_super.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_adaptive.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_adaptive.inst.cfg index 086dfa8ef32..08afefaa7c7 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_low.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_low.inst.cfg index 711f6224f7b..c07aec9317d 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_low.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_standard.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_standard.inst.cfg index 20aa28f47c8..6309f6637e8 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_standard.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_super.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_super.inst.cfg index 62a1033ba7a..58c6b736973 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_super.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_draft.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_draft.inst.cfg index 332f9c28036..8a7142b9c69 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_draft.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_low.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_low.inst.cfg index 748b2515cc6..bf4471ea154 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_low.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_standard.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_standard.inst.cfg index 5cf6bdcc9e6..9e4c79f1a44 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_standard.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.8_PLA_draft.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.8_PLA_draft.inst.cfg index 1cc706dd5ca..43328ed7c25 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.8_PLA_draft.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_1.0_PLA_draft.inst.cfg b/resources/quality/kingroon/PLA/kingroon_1.0_PLA_draft.inst.cfg index 0403091e22c..a22662c9069 100644 --- a/resources/quality/kingroon/PLA/kingroon_1.0_PLA_draft.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_adaptive.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_adaptive.inst.cfg index daa63883b7c..f27334e5f47 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_standard.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_standard.inst.cfg index 6e3240ae1f6..cbc2f2688d5 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_standard.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_super.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_super.inst.cfg index ffdf3375f7a..cd78f0f22db 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_super.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_adaptive.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_adaptive.inst.cfg index 6be460ffcb9..0ff82bd8f19 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_standard.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_standard.inst.cfg index c3cc178ac78..7e15efbd9c7 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_standard.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_super.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_super.inst.cfg index 6d6bd9b5563..91ff4fa64be 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_super.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_adaptive.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_adaptive.inst.cfg index 13507c0291c..335da8db187 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_standard.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_standard.inst.cfg index d4ae296463f..5d2f1f1b45d 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_standard.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_super.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_super.inst.cfg index 3efa4b11262..48fa66b72bb 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_super.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.6_TPU_standard.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.6_TPU_standard.inst.cfg index 29451a74b50..0b965f6a3db 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.6_TPU_standard.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.8_TPU_draft.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.8_TPU_draft.inst.cfg index 99476d6483b..6b7aa3fb021 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.8_TPU_draft.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_1.0_TPU_draft.inst.cfg b/resources/quality/kingroon/TPU/kingroon_1.0_TPU_draft.inst.cfg index f9965becede..8fa29c3e7fe 100644 --- a/resources/quality/kingroon/TPU/kingroon_1.0_TPU_draft.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/kingroon/kingroon_global_adaptive.inst.cfg b/resources/quality/kingroon/kingroon_global_adaptive.inst.cfg index 770cdbc5d21..fd3c7d48c6e 100644 --- a/resources/quality/kingroon/kingroon_global_adaptive.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/kingroon/kingroon_global_draft.inst.cfg b/resources/quality/kingroon/kingroon_global_draft.inst.cfg index c0ef094bf8b..0e1282093d0 100644 --- a/resources/quality/kingroon/kingroon_global_draft.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/kingroon/kingroon_global_low.inst.cfg b/resources/quality/kingroon/kingroon_global_low.inst.cfg index 34ee7bfb8ef..d0687eb4ba2 100644 --- a/resources/quality/kingroon/kingroon_global_low.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/kingroon/kingroon_global_standard.inst.cfg b/resources/quality/kingroon/kingroon_global_standard.inst.cfg index b855418b359..7a6a1a0ff23 100644 --- a/resources/quality/kingroon/kingroon_global_standard.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/kingroon/kingroon_global_super.inst.cfg b/resources/quality/kingroon/kingroon_global_super.inst.cfg index e1ba09843ce..24651d6e30f 100644 --- a/resources/quality/kingroon/kingroon_global_super.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/kingroon/kingroon_global_ultra.inst.cfg b/resources/quality/kingroon/kingroon_global_ultra.inst.cfg index 8f923b9d4cf..ed8f7487eee 100644 --- a/resources/quality/kingroon/kingroon_global_ultra.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/koonovo/koonovo_base_global_draft.inst.cfg b/resources/quality/koonovo/koonovo_base_global_draft.inst.cfg index 0743bebed84..068213f1675 100644 --- a/resources/quality/koonovo/koonovo_base_global_draft.inst.cfg +++ b/resources/quality/koonovo/koonovo_base_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/koonovo/koonovo_base_global_standard.inst.cfg b/resources/quality/koonovo/koonovo_base_global_standard.inst.cfg index fd717fe24d0..79ac2a8dd11 100644 --- a/resources/quality/koonovo/koonovo_base_global_standard.inst.cfg +++ b/resources/quality/koonovo/koonovo_base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/koonovo/koovono_base_global_high.inst.cfg b/resources/quality/koonovo/koovono_base_global_high.inst.cfg index c14a9e65c9a..fa7f77732d3 100644 --- a/resources/quality/koonovo/koovono_base_global_high.inst.cfg +++ b/resources/quality/koonovo/koovono_base_global_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/liquid/liquid_global_Draft_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Draft_Quality.inst.cfg index 77717ab2b0d..529fb00e0cc 100644 --- a/resources/quality/liquid/liquid_global_Draft_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/liquid/liquid_global_Fast_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Fast_Quality.inst.cfg index c5b9fa0acb9..2555cbf1630 100644 --- a/resources/quality/liquid/liquid_global_Fast_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/liquid/liquid_global_High_Quality.inst.cfg b/resources/quality/liquid/liquid_global_High_Quality.inst.cfg index b8a7c1eb8d1..bc4dd518f7e 100644 --- a/resources/quality/liquid/liquid_global_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/liquid/liquid_global_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Normal_Quality.inst.cfg index c5208859479..50d4b9d85cd 100644 --- a/resources/quality/liquid/liquid_global_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/liquid/liquid_global_Superdraft_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Superdraft_Quality.inst.cfg index 355165ec905..0b96cdc9f16 100644 --- a/resources/quality/liquid/liquid_global_Superdraft_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Superdraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/liquid/liquid_global_Verydraft_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Verydraft_Quality.inst.cfg index d47c09e89e1..8ad236a3a54 100644 --- a/resources/quality/liquid/liquid_global_Verydraft_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Verydraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg index 038affd56f4..7edc4475d1f 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg index 5091d36813c..adbf76cf594 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg index 0420284fa85..8f02ace6221 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg index 927bdbe7b9e..481f9286689 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_CPE_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_CPE_Draft_Print.inst.cfg index 998edaada1f..793b1410394 100644 --- a/resources/quality/liquid/liquid_vo0.4_CPE_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_CPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_CPE_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_CPE_Fast_Print.inst.cfg index c78ee91b58f..82d3afb3c3d 100644 --- a/resources/quality/liquid/liquid_vo0.4_CPE_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_CPE_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_CPE_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_CPE_High_Quality.inst.cfg index 33163ca6198..79a9ec7afe1 100644 --- a/resources/quality/liquid/liquid_vo0.4_CPE_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_CPE_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_CPE_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_CPE_Normal_Quality.inst.cfg index b238e6ec0ed..20e046ae9d0 100644 --- a/resources/quality/liquid/liquid_vo0.4_CPE_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_CPE_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_Nylon_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_Nylon_Draft_Print.inst.cfg index 8b18b13ee88..9ab6e00494f 100644 --- a/resources/quality/liquid/liquid_vo0.4_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_Nylon_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_Nylon_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_Nylon_Fast_Print.inst.cfg index d6142952a33..bad45f35ff3 100644 --- a/resources/quality/liquid/liquid_vo0.4_Nylon_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_Nylon_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_Nylon_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_Nylon_High_Quality.inst.cfg index cac80d655dc..2c1b409a61e 100644 --- a/resources/quality/liquid/liquid_vo0.4_Nylon_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_Nylon_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_Nylon_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_Nylon_Normal_Quality.inst.cfg index 5385420a8a3..92e7b6f1dc5 100644 --- a/resources/quality/liquid/liquid_vo0.4_Nylon_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_Nylon_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg index 02d1292c171..43dad6ef40c 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg index b1c540d01ed..61e64bcdce9 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg index 6aac1f4972e..72279f861e8 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg index e831dfb2540..b0c5a190d2b 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg index 6e0ac107189..eb8bfd773d1 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg index 5e84c3e1a12..64ab7b9b1ad 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg index 8974dcbb034..3ed34d7d212 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg index cbada0be182..6f2cace35e5 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg index 70817b06e31..9a99d3d2437 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg index b6991202b2b..fc113b83c23 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg index 930f5cf3fd0..3a2cb07bd10 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg index 6595446feef..3119dc61397 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg index 1904758532a..f873d577d77 100644 --- a/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg index 2a0a5729ece..3eb242372e0 100644 --- a/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg index 304c4f17f0b..65e6e3b18e9 100644 --- a/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_TPU_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_TPU_Draft_Print.inst.cfg index 74f1ad39f3a..796de0a70be 100644 --- a/resources/quality/liquid/liquid_vo0.4_TPU_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_TPU_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_TPU_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_TPU_Fast_Print.inst.cfg index 33eb2e3043c..fee2e033768 100644 --- a/resources/quality/liquid/liquid_vo0.4_TPU_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_TPU_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_TPU_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_TPU_Normal_Quality.inst.cfg index 9390870f89f..bfbcb68eca3 100644 --- a/resources/quality/liquid/liquid_vo0.4_TPU_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_TPU_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.6_CFFCPE_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_CFFCPE_Draft_Print.inst.cfg index 6ebaa7e2b00..da52676e53e 100644 --- a/resources/quality/liquid/liquid_vo0.6_CFFCPE_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_CFFCPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.6_CFFPA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_CFFPA_Draft_Print.inst.cfg index 697a61bcc4d..e4b64bc6dd5 100644 --- a/resources/quality/liquid/liquid_vo0.6_CFFPA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_CFFPA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.6_GFFCPE_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_GFFCPE_Draft_Print.inst.cfg index fc301bb5871..2d2411a178e 100644 --- a/resources/quality/liquid/liquid_vo0.6_GFFCPE_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_GFFCPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.6_GFFPA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_GFFPA_Draft_Print.inst.cfg index 9c97b39ab2c..2b81e1bf5c4 100644 --- a/resources/quality/liquid/liquid_vo0.6_GFFPA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_GFFPA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg index bc712bf9997..b1191d4a496 100644 --- a/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.6 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg index c51c068ae2d..b38068f681f 100644 --- a/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg index 3b6749dfb9b..ac516c91821 100644 --- a/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.6 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg index 45418e5994c..7141c80b651 100644 --- a/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_ABS_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_ABS_Draft_Print.inst.cfg index f2065b827f4..30dc909d488 100644 --- a/resources/quality/liquid/liquid_vo0.8_ABS_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_ABS_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_ABS_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_ABS_Superdraft_Print.inst.cfg index b821b28fd94..2fad19c793e 100644 --- a/resources/quality/liquid/liquid_vo0.8_ABS_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_ABS_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_ABS_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_ABS_Verydraft_Print.inst.cfg index d7acfa7c162..29a059069b0 100644 --- a/resources/quality/liquid/liquid_vo0.8_ABS_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_ABS_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg index 90424ee65e8..504681900fb 100644 --- a/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg index 7857ed00e75..99167908718 100644 --- a/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg index 4194c6f3b7b..9197ac19ea5 100644 --- a/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg index 87dd8765880..650c2927013 100644 --- a/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg index 891a20540dc..e97ebb3a2b1 100644 --- a/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg index e0090947603..23d6bb0ee51 100644 --- a/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_PC_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PC_Fast_Print.inst.cfg index a0343c51737..e833d7f1328 100644 --- a/resources/quality/liquid/liquid_vo0.8_PC_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PC_Fast_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_PC_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PC_Superdraft_Print.inst.cfg index 5d1394e463e..fe21da31070 100644 --- a/resources/quality/liquid/liquid_vo0.8_PC_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PC_Superdraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_PC_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PC_Verydraft_Print.inst.cfg index e945519391e..40970b649c6 100644 --- a/resources/quality/liquid/liquid_vo0.8_PC_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PC_Verydraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg index 947c042b8c2..c889900b38f 100644 --- a/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg index 08cb14cb267..bef9ca1bbe2 100644 --- a/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg index 187ed1f2123..bd78aaee1c4 100644 --- a/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg index 10b6e8185a5..cf03a5eef06 100644 --- a/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg index ed0fc7fd8a5..279bf1b9cd5 100644 --- a/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg index 9def9ecb974..bcb84f17d2b 100644 --- a/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg index 4c3f60a2401..846f1debc2c 100644 --- a/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg index 1b7c05ac3c3..ca74c20bbc8 100644 --- a/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg index 7cbb60c3aac..5397b2ffd68 100644 --- a/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg index 4994e3f9f45..e89de5246ff 100644 --- a/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg index fd15d041b82..f14bf32f35b 100644 --- a/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg index 5c88fb165f8..19b419068a7 100644 --- a/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_super.inst.cfg index 260a3a81c8f..909a8cebee3 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_ultra.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_ultra.inst.cfg index fda970be10b..7ed1077b3ed 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_ultra.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_super.inst.cfg index ada9e0eb897..449deae2ad6 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_ultra.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_ultra.inst.cfg index c5440ccafae..5473b935f65 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_ultra.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_adaptive.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_adaptive.inst.cfg index d2916ea2f0f..0a20b2fbf13 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_adaptive.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_low.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_low.inst.cfg index 290665a0ff6..21a69ce7c24 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_low.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_standard.inst.cfg index bde91591bec..d0f709d405c 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_super.inst.cfg index 2678b7e383d..7bb2651f33d 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_adaptive.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_adaptive.inst.cfg index f38b46a7646..bb773464c8d 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_adaptive.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_low.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_low.inst.cfg index 4860f58cf12..e355bd25b4a 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_low.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_standard.inst.cfg index 4beedcef6b0..617821370ae 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_super.inst.cfg index 277e3af31a5..84339d288ae 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_adaptive.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_adaptive.inst.cfg index e130e03c10e..69869e3fd61 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_adaptive.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_standard.inst.cfg index f1b29175a04..a51303702cb 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_super.inst.cfg index e8d45e0c402..6dda11cc518 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PETG_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PETG_standard.inst.cfg index 4f2bd1f74af..ad87dd1196d 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PETG_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_draft.inst.cfg index be6dcc53706..df5df7cf6ad 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_draft.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_low.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_low.inst.cfg index 38dcfbd232c..d2a4c508176 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_low.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_standard.inst.cfg index a9dfd3aac40..097f8d4eca5 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.6_generic_TPU_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.6_generic_TPU_standard.inst.cfg index 438e4b02297..d30b3f83c55 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.6_generic_TPU_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.8_generic_PETG_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.8_generic_PETG_draft.inst.cfg index fa481c4e8e4..613a72ae4aa 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.8_generic_PETG_draft.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.8_generic_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.8_generic_PLA_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.8_generic_PLA_draft.inst.cfg index aa497ec2432..19c26a6cc3d 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.8_generic_PLA_draft.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.8_generic_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.8_generic_TPU_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.8_generic_TPU_draft.inst.cfg index 9bec35aae73..6e81d2d1c62 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.8_generic_TPU_draft.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.8_generic_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_global_adaptive.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_adaptive.inst.cfg index 7a74241eafd..deabef32a8a 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_adaptive.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/lnl3d/lnl3d_base_global_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_draft.inst.cfg index d6d2eb6304c..fa55dbe4278 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_draft.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/lnl3d/lnl3d_base_global_low.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_low.inst.cfg index cb1f19fb954..3d4f20932a8 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_low.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/lnl3d/lnl3d_base_global_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_standard.inst.cfg index 71f312f4f4a..a5b2708995f 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/lnl3d/lnl3d_base_global_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_super.inst.cfg index 68a37d8f143..fb492bda7bf 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/lnl3d/lnl3d_base_global_ultra.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_ultra.inst.cfg index 7bad9bb2110..e6f942ff5f3 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_ultra.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/longer/ABS/longer_0.4_ABS_adaptive.inst.cfg b/resources/quality/longer/ABS/longer_0.4_ABS_adaptive.inst.cfg index 8f1e23ca36c..c0ad2d4f369 100644 --- a/resources/quality/longer/ABS/longer_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/longer/ABS/longer_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/ABS/longer_0.4_ABS_low.inst.cfg b/resources/quality/longer/ABS/longer_0.4_ABS_low.inst.cfg index 3d9ae4b2453..c617b11b873 100644 --- a/resources/quality/longer/ABS/longer_0.4_ABS_low.inst.cfg +++ b/resources/quality/longer/ABS/longer_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/ABS/longer_0.4_ABS_standard.inst.cfg b/resources/quality/longer/ABS/longer_0.4_ABS_standard.inst.cfg index 3c409fecdaf..3707ac77ffa 100644 --- a/resources/quality/longer/ABS/longer_0.4_ABS_standard.inst.cfg +++ b/resources/quality/longer/ABS/longer_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/ABS/longer_0.4_ABS_super.inst.cfg b/resources/quality/longer/ABS/longer_0.4_ABS_super.inst.cfg index aa240b5986a..64a55d3c0ad 100644 --- a/resources/quality/longer/ABS/longer_0.4_ABS_super.inst.cfg +++ b/resources/quality/longer/ABS/longer_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PETG/longer_0.4_PETG_adaptive.inst.cfg b/resources/quality/longer/PETG/longer_0.4_PETG_adaptive.inst.cfg index 5043c5df61c..940dddc62b4 100644 --- a/resources/quality/longer/PETG/longer_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/longer/PETG/longer_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PETG/longer_0.4_PETG_low.inst.cfg b/resources/quality/longer/PETG/longer_0.4_PETG_low.inst.cfg index 3dbda87b8e7..175bcd85d75 100644 --- a/resources/quality/longer/PETG/longer_0.4_PETG_low.inst.cfg +++ b/resources/quality/longer/PETG/longer_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PETG/longer_0.4_PETG_standard.inst.cfg b/resources/quality/longer/PETG/longer_0.4_PETG_standard.inst.cfg index 31732494cb8..e4fdecd3329 100644 --- a/resources/quality/longer/PETG/longer_0.4_PETG_standard.inst.cfg +++ b/resources/quality/longer/PETG/longer_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PETG/longer_0.4_PETG_super.inst.cfg b/resources/quality/longer/PETG/longer_0.4_PETG_super.inst.cfg index 48418d8b779..c11539a7fed 100644 --- a/resources/quality/longer/PETG/longer_0.4_PETG_super.inst.cfg +++ b/resources/quality/longer/PETG/longer_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PLA/longer_0.4_PLA_adaptive.inst.cfg b/resources/quality/longer/PLA/longer_0.4_PLA_adaptive.inst.cfg index 425ac85661a..47077570bf2 100644 --- a/resources/quality/longer/PLA/longer_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/longer/PLA/longer_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PLA/longer_0.4_PLA_low.inst.cfg b/resources/quality/longer/PLA/longer_0.4_PLA_low.inst.cfg index bccdb2d8f5c..49e6e755c5d 100644 --- a/resources/quality/longer/PLA/longer_0.4_PLA_low.inst.cfg +++ b/resources/quality/longer/PLA/longer_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PLA/longer_0.4_PLA_standard.inst.cfg b/resources/quality/longer/PLA/longer_0.4_PLA_standard.inst.cfg index 619d279154f..3b57ab093a8 100644 --- a/resources/quality/longer/PLA/longer_0.4_PLA_standard.inst.cfg +++ b/resources/quality/longer/PLA/longer_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PLA/longer_0.4_PLA_super.inst.cfg b/resources/quality/longer/PLA/longer_0.4_PLA_super.inst.cfg index d9a9f1e113e..84ce5bc92e4 100644 --- a/resources/quality/longer/PLA/longer_0.4_PLA_super.inst.cfg +++ b/resources/quality/longer/PLA/longer_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/TPU/longer_0.4_TPU_adaptive.inst.cfg b/resources/quality/longer/TPU/longer_0.4_TPU_adaptive.inst.cfg index c3e16ffe4a2..a9c094251b3 100644 --- a/resources/quality/longer/TPU/longer_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/longer/TPU/longer_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/TPU/longer_0.4_TPU_standard.inst.cfg b/resources/quality/longer/TPU/longer_0.4_TPU_standard.inst.cfg index e63a15a0509..fccb8288ed2 100644 --- a/resources/quality/longer/TPU/longer_0.4_TPU_standard.inst.cfg +++ b/resources/quality/longer/TPU/longer_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/TPU/longer_0.4_TPU_super.inst.cfg b/resources/quality/longer/TPU/longer_0.4_TPU_super.inst.cfg index dc0896bfbec..ea294530e0a 100644 --- a/resources/quality/longer/TPU/longer_0.4_TPU_super.inst.cfg +++ b/resources/quality/longer/TPU/longer_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/longer_global_adaptive.inst.cfg b/resources/quality/longer/longer_global_adaptive.inst.cfg index ee1aca1c405..fe9c855ded6 100644 --- a/resources/quality/longer/longer_global_adaptive.inst.cfg +++ b/resources/quality/longer/longer_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/longer/longer_global_draft.inst.cfg b/resources/quality/longer/longer_global_draft.inst.cfg index 1605c4efc94..a93d4aa2550 100644 --- a/resources/quality/longer/longer_global_draft.inst.cfg +++ b/resources/quality/longer/longer_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/longer/longer_global_low.inst.cfg b/resources/quality/longer/longer_global_low.inst.cfg index 44e80b2668a..3e38f97bef4 100644 --- a/resources/quality/longer/longer_global_low.inst.cfg +++ b/resources/quality/longer/longer_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/longer/longer_global_standard.inst.cfg b/resources/quality/longer/longer_global_standard.inst.cfg index 383249951d4..c8ee6fdb8ec 100644 --- a/resources/quality/longer/longer_global_standard.inst.cfg +++ b/resources/quality/longer/longer_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/longer/longer_global_super.inst.cfg b/resources/quality/longer/longer_global_super.inst.cfg index 1793f5c8a92..db208391a3b 100644 --- a/resources/quality/longer/longer_global_super.inst.cfg +++ b/resources/quality/longer/longer_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/longer/longer_global_ultra.inst.cfg b/resources/quality/longer/longer_global_ultra.inst.cfg index cb99daa490a..7bf07f7c855 100644 --- a/resources/quality/longer/longer_global_ultra.inst.cfg +++ b/resources/quality/longer/longer_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/makeblock/makeblock_mcreate_pla_normal.inst.cfg b/resources/quality/makeblock/makeblock_mcreate_pla_normal.inst.cfg index 028c044d19e..5afe35de2cc 100644 --- a/resources/quality/makeblock/makeblock_mcreate_pla_normal.inst.cfg +++ b/resources/quality/makeblock/makeblock_mcreate_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_draft.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_draft.inst.cfg index 9dd8250ed5a..6313dcb6be2 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_draft.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_fast.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_fast.inst.cfg index ecd8f1f0404..37eb3c17627 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_fast.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_high.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_high.inst.cfg index f750b078497..dc2a3dd90f5 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_high.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_normal.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_normal.inst.cfg index 93167419ba7..35498f12372 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_normal.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_superdraft.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_superdraft.inst.cfg index 888b08f59cd..6ba4fa8e52f 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_superdraft.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_thickerdraft.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_thickerdraft.inst.cfg index 94cc19edfba..87bfea805dd 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_thickerdraft.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = thickerdraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_ultra.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_ultra.inst.cfg index bbad204f15b..238f45df169 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_ultra.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_verydraft.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_verydraft.inst.cfg index 79c3b21eeb0..44667c79e08 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_verydraft.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/malyan_m200_global_Draft_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_Draft_Quality.inst.cfg index b321907fee9..4593a16ed90 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_Draft_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/malyan_m200/malyan_m200_global_Fast_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_Fast_Quality.inst.cfg index b339b685c15..0027871b23c 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_Fast_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/malyan_m200/malyan_m200_global_High_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_High_Quality.inst.cfg index e22f15952c9..da25e42b6c8 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_High_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/malyan_m200/malyan_m200_global_Normal_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_Normal_Quality.inst.cfg index 7d84227e1e4..dd8b85c1ab7 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_Normal_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/malyan_m200/malyan_m200_global_SuperDraft_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_SuperDraft_Quality.inst.cfg index 74f1224e3cd..bb9b8101572 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_SuperDraft_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_SuperDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/malyan_m200/malyan_m200_global_ThickerDraft_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_ThickerDraft_Quality.inst.cfg index ba07a565e0f..faa108a83cd 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_ThickerDraft_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_ThickerDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = thickerdraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/malyan_m200_global_Ultra_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_Ultra_Quality.inst.cfg index 35d5f5e9923..528b8779586 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_Ultra_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_Ultra_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/malyan_m200/malyan_m200_global_VeryDraft_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_VeryDraft_Quality.inst.cfg index 263e8fbb8d9..7402b0f81b0 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_VeryDraft_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_VeryDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_draft.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_draft.inst.cfg index 100b52ba68a..259b34ef555 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_draft.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_fast.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_fast.inst.cfg index e8e26cc6d2c..caf8ecbff7a 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_fast.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_high.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_high.inst.cfg index 9b6e0a55109..7dbc1778d09 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_high.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_normal.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_normal.inst.cfg index c73d0f76b37..9bdfb41533c 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_normal.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_superdraft.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_superdraft.inst.cfg index 0a8595bc4c9..6871e99b76d 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_superdraft.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_thickerdraft.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_thickerdraft.inst.cfg index 6d08c78df25..a5f982f2be4 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_thickerdraft.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = thickerdraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_ultra.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_ultra.inst.cfg index 2396e4025f0..33f99e5fcbd 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_ultra.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_verydraft.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_verydraft.inst.cfg index 3e0d002d148..46480c1bf73 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_verydraft.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_draft.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_draft.inst.cfg index aaa3d950cc8..82787afe548 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_draft.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_fast.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_fast.inst.cfg index cc8738df693..642d0810e48 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_fast.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_high.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_high.inst.cfg index 211a735b72c..0695f9fe577 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_high.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_normal.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_normal.inst.cfg index d413ac72f82..18a65ba0c31 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_normal.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_superdraft.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_superdraft.inst.cfg index 7ed81987f9b..f3a017087cf 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_superdraft.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_thickerdraft.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_thickerdraft.inst.cfg index 38797b4912b..e9c279967e5 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_thickerdraft.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = thickerdraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_ultra.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_ultra.inst.cfg index 8669fa32aaa..1a74e53aaf6 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_ultra.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_verydraft.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_verydraft.inst.cfg index 44a16c116b2..99291c7ffce 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_verydraft.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/mingda/ABS/mingda_0.2_ABS_super.inst.cfg b/resources/quality/mingda/ABS/mingda_0.2_ABS_super.inst.cfg index c6012ac34be..7822cc565b2 100644 --- a/resources/quality/mingda/ABS/mingda_0.2_ABS_super.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.2_ABS_ultra.inst.cfg b/resources/quality/mingda/ABS/mingda_0.2_ABS_ultra.inst.cfg index 3de5395463f..72681de427c 100644 --- a/resources/quality/mingda/ABS/mingda_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.3_ABS_adaptive.inst.cfg b/resources/quality/mingda/ABS/mingda_0.3_ABS_adaptive.inst.cfg index f18e89e7837..53fc6550b0a 100644 --- a/resources/quality/mingda/ABS/mingda_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.3_ABS_low.inst.cfg b/resources/quality/mingda/ABS/mingda_0.3_ABS_low.inst.cfg index d05ca5f136c..26dcce8ed6a 100644 --- a/resources/quality/mingda/ABS/mingda_0.3_ABS_low.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.3_ABS_standard.inst.cfg b/resources/quality/mingda/ABS/mingda_0.3_ABS_standard.inst.cfg index 0b2f445dfa2..4695644f2d6 100644 --- a/resources/quality/mingda/ABS/mingda_0.3_ABS_standard.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.3_ABS_super.inst.cfg b/resources/quality/mingda/ABS/mingda_0.3_ABS_super.inst.cfg index 2b22e3f745c..42487ec3e64 100644 --- a/resources/quality/mingda/ABS/mingda_0.3_ABS_super.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.4_ABS_adaptive.inst.cfg b/resources/quality/mingda/ABS/mingda_0.4_ABS_adaptive.inst.cfg index 100d5b24b1a..3c1359073d0 100644 --- a/resources/quality/mingda/ABS/mingda_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.4_ABS_low.inst.cfg b/resources/quality/mingda/ABS/mingda_0.4_ABS_low.inst.cfg index 5727969b79c..d1a28a7653f 100644 --- a/resources/quality/mingda/ABS/mingda_0.4_ABS_low.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.4_ABS_standard.inst.cfg b/resources/quality/mingda/ABS/mingda_0.4_ABS_standard.inst.cfg index c37e7dc9c90..1e7c29a3478 100644 --- a/resources/quality/mingda/ABS/mingda_0.4_ABS_standard.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.4_ABS_super.inst.cfg b/resources/quality/mingda/ABS/mingda_0.4_ABS_super.inst.cfg index 380d4a52550..f8211f3d418 100644 --- a/resources/quality/mingda/ABS/mingda_0.4_ABS_super.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.5_ABS_adaptive.inst.cfg b/resources/quality/mingda/ABS/mingda_0.5_ABS_adaptive.inst.cfg index e39ac13e6b0..3785771f472 100644 --- a/resources/quality/mingda/ABS/mingda_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.5_ABS_low.inst.cfg b/resources/quality/mingda/ABS/mingda_0.5_ABS_low.inst.cfg index 75f79402e7d..f0af9dbc34b 100644 --- a/resources/quality/mingda/ABS/mingda_0.5_ABS_low.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.5_ABS_standard.inst.cfg b/resources/quality/mingda/ABS/mingda_0.5_ABS_standard.inst.cfg index 9a5001c7398..d0d1a4ccf32 100644 --- a/resources/quality/mingda/ABS/mingda_0.5_ABS_standard.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.5_ABS_super.inst.cfg b/resources/quality/mingda/ABS/mingda_0.5_ABS_super.inst.cfg index f69b4328125..c5ced7c9a53 100644 --- a/resources/quality/mingda/ABS/mingda_0.5_ABS_super.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.6_ABS_standard.inst.cfg b/resources/quality/mingda/ABS/mingda_0.6_ABS_standard.inst.cfg index 29e5bec052c..7b7a024bf0e 100644 --- a/resources/quality/mingda/ABS/mingda_0.6_ABS_standard.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.8_ABS_draft.inst.cfg b/resources/quality/mingda/ABS/mingda_0.8_ABS_draft.inst.cfg index d9652a248d1..61160d6bb00 100644 --- a/resources/quality/mingda/ABS/mingda_0.8_ABS_draft.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_1.0_ABS_draft.inst.cfg b/resources/quality/mingda/ABS/mingda_1.0_ABS_draft.inst.cfg index 0f412780b84..acb60b6c9f1 100644 --- a/resources/quality/mingda/ABS/mingda_1.0_ABS_draft.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.2_PETG_super.inst.cfg b/resources/quality/mingda/PETG/mingda_0.2_PETG_super.inst.cfg index e5390fa7b4c..35dec169182 100644 --- a/resources/quality/mingda/PETG/mingda_0.2_PETG_super.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.2_PETG_ultra.inst.cfg b/resources/quality/mingda/PETG/mingda_0.2_PETG_ultra.inst.cfg index a815e91217c..53a2bc13b36 100644 --- a/resources/quality/mingda/PETG/mingda_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.3_PETG_adaptive.inst.cfg b/resources/quality/mingda/PETG/mingda_0.3_PETG_adaptive.inst.cfg index fd1ea41e015..6c126047ad8 100644 --- a/resources/quality/mingda/PETG/mingda_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.3_PETG_low.inst.cfg b/resources/quality/mingda/PETG/mingda_0.3_PETG_low.inst.cfg index 2ccc44a3b77..e6e118e21ff 100644 --- a/resources/quality/mingda/PETG/mingda_0.3_PETG_low.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.3_PETG_standard.inst.cfg b/resources/quality/mingda/PETG/mingda_0.3_PETG_standard.inst.cfg index e8362fc6dbb..0b5acb5a1dd 100644 --- a/resources/quality/mingda/PETG/mingda_0.3_PETG_standard.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.3_PETG_super.inst.cfg b/resources/quality/mingda/PETG/mingda_0.3_PETG_super.inst.cfg index 6d5d14871b8..ebb706385c0 100644 --- a/resources/quality/mingda/PETG/mingda_0.3_PETG_super.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.4_PETG_adaptive.inst.cfg b/resources/quality/mingda/PETG/mingda_0.4_PETG_adaptive.inst.cfg index b35035a02d6..ee0e96899d8 100644 --- a/resources/quality/mingda/PETG/mingda_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.4_PETG_low.inst.cfg b/resources/quality/mingda/PETG/mingda_0.4_PETG_low.inst.cfg index 6d80739a00d..8a8ee114e44 100644 --- a/resources/quality/mingda/PETG/mingda_0.4_PETG_low.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.4_PETG_standard.inst.cfg b/resources/quality/mingda/PETG/mingda_0.4_PETG_standard.inst.cfg index bdc2a7daadc..37c01e84a1c 100644 --- a/resources/quality/mingda/PETG/mingda_0.4_PETG_standard.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.4_PETG_super.inst.cfg b/resources/quality/mingda/PETG/mingda_0.4_PETG_super.inst.cfg index 8859cc46f05..92efaca3e60 100644 --- a/resources/quality/mingda/PETG/mingda_0.4_PETG_super.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.5_PETG_adaptive.inst.cfg b/resources/quality/mingda/PETG/mingda_0.5_PETG_adaptive.inst.cfg index 12d387b8dc6..cedcc4aee87 100644 --- a/resources/quality/mingda/PETG/mingda_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.5_PETG_low.inst.cfg b/resources/quality/mingda/PETG/mingda_0.5_PETG_low.inst.cfg index f7b847384e8..5a47d08a6ee 100644 --- a/resources/quality/mingda/PETG/mingda_0.5_PETG_low.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.5_PETG_standard.inst.cfg b/resources/quality/mingda/PETG/mingda_0.5_PETG_standard.inst.cfg index 25eff322612..ee9baa433e7 100644 --- a/resources/quality/mingda/PETG/mingda_0.5_PETG_standard.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.5_PETG_super.inst.cfg b/resources/quality/mingda/PETG/mingda_0.5_PETG_super.inst.cfg index 181c82ae088..4505d985f6f 100644 --- a/resources/quality/mingda/PETG/mingda_0.5_PETG_super.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.6_PETG_standard.inst.cfg b/resources/quality/mingda/PETG/mingda_0.6_PETG_standard.inst.cfg index e1ddcf5de84..1b6c6b9a64f 100644 --- a/resources/quality/mingda/PETG/mingda_0.6_PETG_standard.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.8_PETG_draft.inst.cfg b/resources/quality/mingda/PETG/mingda_0.8_PETG_draft.inst.cfg index 24d9d323d5e..a69338d3d93 100644 --- a/resources/quality/mingda/PETG/mingda_0.8_PETG_draft.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_1.0_PETG_draft.inst.cfg b/resources/quality/mingda/PETG/mingda_1.0_PETG_draft.inst.cfg index 118a90fcc21..a4519d007e8 100644 --- a/resources/quality/mingda/PETG/mingda_1.0_PETG_draft.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.2_PLA_super.inst.cfg b/resources/quality/mingda/PLA/mingda_0.2_PLA_super.inst.cfg index 84ca0b0dd47..afa0fab2f19 100644 --- a/resources/quality/mingda/PLA/mingda_0.2_PLA_super.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.2_PLA_ultra.inst.cfg b/resources/quality/mingda/PLA/mingda_0.2_PLA_ultra.inst.cfg index 1b93c7fbfbb..9157f938cc8 100644 --- a/resources/quality/mingda/PLA/mingda_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.3_PLA_adaptive.inst.cfg b/resources/quality/mingda/PLA/mingda_0.3_PLA_adaptive.inst.cfg index d2ac93fb123..e74c862004b 100644 --- a/resources/quality/mingda/PLA/mingda_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.3_PLA_low.inst.cfg b/resources/quality/mingda/PLA/mingda_0.3_PLA_low.inst.cfg index bdca2997726..0b4e80354e8 100644 --- a/resources/quality/mingda/PLA/mingda_0.3_PLA_low.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.3_PLA_standard.inst.cfg b/resources/quality/mingda/PLA/mingda_0.3_PLA_standard.inst.cfg index df3e0909c26..09c7cbeb8a3 100644 --- a/resources/quality/mingda/PLA/mingda_0.3_PLA_standard.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.3_PLA_super.inst.cfg b/resources/quality/mingda/PLA/mingda_0.3_PLA_super.inst.cfg index 5c709944bb5..2b37626e564 100644 --- a/resources/quality/mingda/PLA/mingda_0.3_PLA_super.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.4_PLA_adaptive.inst.cfg b/resources/quality/mingda/PLA/mingda_0.4_PLA_adaptive.inst.cfg index a8250b8709f..b23b08c986e 100644 --- a/resources/quality/mingda/PLA/mingda_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.4_PLA_low.inst.cfg b/resources/quality/mingda/PLA/mingda_0.4_PLA_low.inst.cfg index d8aaa5bb6a9..dc73a650d50 100644 --- a/resources/quality/mingda/PLA/mingda_0.4_PLA_low.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.4_PLA_standard.inst.cfg b/resources/quality/mingda/PLA/mingda_0.4_PLA_standard.inst.cfg index 5ac644791b7..2e10d594bf1 100644 --- a/resources/quality/mingda/PLA/mingda_0.4_PLA_standard.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.4_PLA_super.inst.cfg b/resources/quality/mingda/PLA/mingda_0.4_PLA_super.inst.cfg index ee4ccb14f71..a8f4d0d8709 100644 --- a/resources/quality/mingda/PLA/mingda_0.4_PLA_super.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.5_PLA_adaptive.inst.cfg b/resources/quality/mingda/PLA/mingda_0.5_PLA_adaptive.inst.cfg index 77fa8b57fa7..516fd69b222 100644 --- a/resources/quality/mingda/PLA/mingda_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.5_PLA_low.inst.cfg b/resources/quality/mingda/PLA/mingda_0.5_PLA_low.inst.cfg index 65e90311e36..9f620c26e6d 100644 --- a/resources/quality/mingda/PLA/mingda_0.5_PLA_low.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.5_PLA_standard.inst.cfg b/resources/quality/mingda/PLA/mingda_0.5_PLA_standard.inst.cfg index feac2c4212b..26a6e27821a 100644 --- a/resources/quality/mingda/PLA/mingda_0.5_PLA_standard.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.5_PLA_super.inst.cfg b/resources/quality/mingda/PLA/mingda_0.5_PLA_super.inst.cfg index 847bb29f3a0..25155655e7c 100644 --- a/resources/quality/mingda/PLA/mingda_0.5_PLA_super.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.6_PLA_draft.inst.cfg b/resources/quality/mingda/PLA/mingda_0.6_PLA_draft.inst.cfg index f6d396df3af..494357a91d3 100644 --- a/resources/quality/mingda/PLA/mingda_0.6_PLA_draft.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.6_PLA_low.inst.cfg b/resources/quality/mingda/PLA/mingda_0.6_PLA_low.inst.cfg index b6715276ab5..7d870437bf2 100644 --- a/resources/quality/mingda/PLA/mingda_0.6_PLA_low.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.6_PLA_standard.inst.cfg b/resources/quality/mingda/PLA/mingda_0.6_PLA_standard.inst.cfg index 414478c3316..f102e574be8 100644 --- a/resources/quality/mingda/PLA/mingda_0.6_PLA_standard.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.8_PLA_draft.inst.cfg b/resources/quality/mingda/PLA/mingda_0.8_PLA_draft.inst.cfg index de4d732cb48..70842228e23 100644 --- a/resources/quality/mingda/PLA/mingda_0.8_PLA_draft.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_1.0_PLA_draft.inst.cfg b/resources/quality/mingda/PLA/mingda_1.0_PLA_draft.inst.cfg index 34582ea39ae..05cf9e0bbc5 100644 --- a/resources/quality/mingda/PLA/mingda_1.0_PLA_draft.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.3_TPU_adaptive.inst.cfg b/resources/quality/mingda/TPU/mingda_0.3_TPU_adaptive.inst.cfg index 40d9e2723a7..1967d1be9f2 100644 --- a/resources/quality/mingda/TPU/mingda_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.3_TPU_standard.inst.cfg b/resources/quality/mingda/TPU/mingda_0.3_TPU_standard.inst.cfg index 45bbc23d7cf..2c1cf471df2 100644 --- a/resources/quality/mingda/TPU/mingda_0.3_TPU_standard.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.3_TPU_super.inst.cfg b/resources/quality/mingda/TPU/mingda_0.3_TPU_super.inst.cfg index 748163782f4..ff3f81c0344 100644 --- a/resources/quality/mingda/TPU/mingda_0.3_TPU_super.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.4_TPU_adaptive.inst.cfg b/resources/quality/mingda/TPU/mingda_0.4_TPU_adaptive.inst.cfg index 6eadcb6d0d6..77e839eaffe 100644 --- a/resources/quality/mingda/TPU/mingda_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.4_TPU_standard.inst.cfg b/resources/quality/mingda/TPU/mingda_0.4_TPU_standard.inst.cfg index 87a1e3290bf..442065f5097 100644 --- a/resources/quality/mingda/TPU/mingda_0.4_TPU_standard.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.4_TPU_super.inst.cfg b/resources/quality/mingda/TPU/mingda_0.4_TPU_super.inst.cfg index 3f9dcd40f6f..ac3882c1fc1 100644 --- a/resources/quality/mingda/TPU/mingda_0.4_TPU_super.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.5_TPU_adaptive.inst.cfg b/resources/quality/mingda/TPU/mingda_0.5_TPU_adaptive.inst.cfg index a445644cdf3..f705eea1cd7 100644 --- a/resources/quality/mingda/TPU/mingda_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.5_TPU_standard.inst.cfg b/resources/quality/mingda/TPU/mingda_0.5_TPU_standard.inst.cfg index f03044c42c6..7626ff56e7a 100644 --- a/resources/quality/mingda/TPU/mingda_0.5_TPU_standard.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.5_TPU_super.inst.cfg b/resources/quality/mingda/TPU/mingda_0.5_TPU_super.inst.cfg index 11cc64f7376..db3124027b6 100644 --- a/resources/quality/mingda/TPU/mingda_0.5_TPU_super.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.6_TPU_standard.inst.cfg b/resources/quality/mingda/TPU/mingda_0.6_TPU_standard.inst.cfg index 247549fd235..0dc6d716493 100644 --- a/resources/quality/mingda/TPU/mingda_0.6_TPU_standard.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.8_TPU_draft.inst.cfg b/resources/quality/mingda/TPU/mingda_0.8_TPU_draft.inst.cfg index ba5cf6805e7..f34b342364e 100644 --- a/resources/quality/mingda/TPU/mingda_0.8_TPU_draft.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_1.0_TPU_draft.inst.cfg b/resources/quality/mingda/TPU/mingda_1.0_TPU_draft.inst.cfg index dae977ca804..7b410aea17f 100644 --- a/resources/quality/mingda/TPU/mingda_1.0_TPU_draft.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/mingda/mingda_global_adaptive.inst.cfg b/resources/quality/mingda/mingda_global_adaptive.inst.cfg index d67521ba229..79435798a95 100644 --- a/resources/quality/mingda/mingda_global_adaptive.inst.cfg +++ b/resources/quality/mingda/mingda_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/mingda/mingda_global_draft.inst.cfg b/resources/quality/mingda/mingda_global_draft.inst.cfg index 1cf7c29a3a4..b17f84f7427 100644 --- a/resources/quality/mingda/mingda_global_draft.inst.cfg +++ b/resources/quality/mingda/mingda_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/mingda/mingda_global_low.inst.cfg b/resources/quality/mingda/mingda_global_low.inst.cfg index f81f1ae229a..723fe0120ff 100644 --- a/resources/quality/mingda/mingda_global_low.inst.cfg +++ b/resources/quality/mingda/mingda_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/mingda/mingda_global_standard.inst.cfg b/resources/quality/mingda/mingda_global_standard.inst.cfg index 109eec45a7a..e17f3bcd93b 100644 --- a/resources/quality/mingda/mingda_global_standard.inst.cfg +++ b/resources/quality/mingda/mingda_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/mingda/mingda_global_super.inst.cfg b/resources/quality/mingda/mingda_global_super.inst.cfg index a4d81601b3b..64fd4936cfa 100644 --- a/resources/quality/mingda/mingda_global_super.inst.cfg +++ b/resources/quality/mingda/mingda_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/mingda/mingda_global_ultra.inst.cfg b/resources/quality/mingda/mingda_global_ultra.inst.cfg index 5319ad2293e..fb7385fab19 100644 --- a/resources/quality/mingda/mingda_global_ultra.inst.cfg +++ b/resources/quality/mingda/mingda_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/mixware_hyper_k/mixware_hyper_k_draft.inst.cfg b/resources/quality/mixware_hyper_k/mixware_hyper_k_draft.inst.cfg index fa8b7bd4e81..37023141623 100644 --- a/resources/quality/mixware_hyper_k/mixware_hyper_k_draft.inst.cfg +++ b/resources/quality/mixware_hyper_k/mixware_hyper_k_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/mixware_hyper_k/mixware_hyper_k_extra_fast.inst.cfg b/resources/quality/mixware_hyper_k/mixware_hyper_k_extra_fast.inst.cfg index 81fe6931137..1f66a09b627 100644 --- a/resources/quality/mixware_hyper_k/mixware_hyper_k_extra_fast.inst.cfg +++ b/resources/quality/mixware_hyper_k/mixware_hyper_k_extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/mixware_hyper_k/mixware_hyper_k_normal.inst.cfg b/resources/quality/mixware_hyper_k/mixware_hyper_k_normal.inst.cfg index 2f09b41466d..a155a520d3a 100644 --- a/resources/quality/mixware_hyper_k/mixware_hyper_k_normal.inst.cfg +++ b/resources/quality/mixware_hyper_k/mixware_hyper_k_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/mixware_hyper_s/mixware_hyper_s_draft.inst.cfg b/resources/quality/mixware_hyper_s/mixware_hyper_s_draft.inst.cfg index 0167ad3b687..e21090c6001 100644 --- a/resources/quality/mixware_hyper_s/mixware_hyper_s_draft.inst.cfg +++ b/resources/quality/mixware_hyper_s/mixware_hyper_s_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/mixware_hyper_s/mixware_hyper_s_extra_fast.inst.cfg b/resources/quality/mixware_hyper_s/mixware_hyper_s_extra_fast.inst.cfg index 39bc3841ab5..6414ce45893 100644 --- a/resources/quality/mixware_hyper_s/mixware_hyper_s_extra_fast.inst.cfg +++ b/resources/quality/mixware_hyper_s/mixware_hyper_s_extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/mixware_hyper_s/mixware_hyper_s_normal.inst.cfg b/resources/quality/mixware_hyper_s/mixware_hyper_s_normal.inst.cfg index 1267a29fc26..1248585ec4b 100644 --- a/resources/quality/mixware_hyper_s/mixware_hyper_s_normal.inst.cfg +++ b/resources/quality/mixware_hyper_s/mixware_hyper_s_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/mixware_vulcan/mixware_vulcan_draft.inst.cfg b/resources/quality/mixware_vulcan/mixware_vulcan_draft.inst.cfg index 1ff0b50fbe1..e9859c9cb71 100644 --- a/resources/quality/mixware_vulcan/mixware_vulcan_draft.inst.cfg +++ b/resources/quality/mixware_vulcan/mixware_vulcan_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/mixware_vulcan/mixware_vulcan_extra_fast.inst.cfg b/resources/quality/mixware_vulcan/mixware_vulcan_extra_fast.inst.cfg index cbb1a8fddbb..0bfc4bf3389 100644 --- a/resources/quality/mixware_vulcan/mixware_vulcan_extra_fast.inst.cfg +++ b/resources/quality/mixware_vulcan/mixware_vulcan_extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/mixware_vulcan/mixware_vulcan_normal.inst.cfg b/resources/quality/mixware_vulcan/mixware_vulcan_normal.inst.cfg index d371d236c2f..23754001ed6 100644 --- a/resources/quality/mixware_vulcan/mixware_vulcan_normal.inst.cfg +++ b/resources/quality/mixware_vulcan/mixware_vulcan_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/mixware_wand/mixware_wand_draft.inst.cfg b/resources/quality/mixware_wand/mixware_wand_draft.inst.cfg index ba905183069..2d307391150 100644 --- a/resources/quality/mixware_wand/mixware_wand_draft.inst.cfg +++ b/resources/quality/mixware_wand/mixware_wand_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/mixware_wand/mixware_wand_extra_fast.inst.cfg b/resources/quality/mixware_wand/mixware_wand_extra_fast.inst.cfg index 6a942a546d7..00d6e94cb4f 100644 --- a/resources/quality/mixware_wand/mixware_wand_extra_fast.inst.cfg +++ b/resources/quality/mixware_wand/mixware_wand_extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/mixware_wand/mixware_wand_normal.inst.cfg b/resources/quality/mixware_wand/mixware_wand_normal.inst.cfg index 8aada673809..7b2ca97af32 100644 --- a/resources/quality/mixware_wand/mixware_wand_normal.inst.cfg +++ b/resources/quality/mixware_wand/mixware_wand_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_draft.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_draft.inst.cfg index 097a959905e..fd19842b62f 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_draft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_fast.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_fast.inst.cfg index b81a4b8bd4d..d7df5c5ff28 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_fast.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_high.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_high.inst.cfg index 13263426d3a..fc1e193f977 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_high.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_normal.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_normal.inst.cfg index 886312c2ef5..289722633f4 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_normal.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_superdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_superdraft.inst.cfg index 700f5ead703..26caf03d8fe 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_superdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_thickerdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_thickerdraft.inst.cfg index 8a689abe034..0f305d4835e 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_thickerdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = thickerdraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_ultra.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_ultra.inst.cfg index daebcd1df64..ed96f8a8d70 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_ultra.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = thickerdraft -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_verydraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_verydraft.inst.cfg index e32d5f1b048..0272e99c0fe 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_verydraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Draft_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Draft_Quality.inst.cfg index a60d8f42086..018ed5f7d93 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Draft_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Fast_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Fast_Quality.inst.cfg index 62dd3d8052c..76118d401ec 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Fast_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_High_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_High_Quality.inst.cfg index c47f9891908..99cfa4cea86 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_High_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Normal_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Normal_Quality.inst.cfg index 84d9774ce3c..d0158258944 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Normal_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_SuperDraft_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_SuperDraft_Quality.inst.cfg index afa18c866fa..39b0ab1f79e 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_SuperDraft_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_SuperDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_ThickerDraft_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_ThickerDraft_Quality.inst.cfg index 2b30b9fc716..5cf1aa4219d 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_ThickerDraft_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_ThickerDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = thickerdraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Ultra_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Ultra_Quality.inst.cfg index d7bfcc7d5d4..5d5e352eaa0 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Ultra_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Ultra_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_VeryDraft_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_VeryDraft_Quality.inst.cfg index 05e381ae5b1..daa141e4644 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_VeryDraft_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_VeryDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_draft.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_draft.inst.cfg index 8d57fe8287a..2f8d8195b47 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_draft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_fast.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_fast.inst.cfg index ec808fbe565..96d771d5a70 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_fast.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_high.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_high.inst.cfg index b86c774fa43..19c47439708 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_high.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_normal.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_normal.inst.cfg index 1f1f8964d4e..218b8c0769a 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_normal.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_superdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_superdraft.inst.cfg index a2d9070cf05..bc4f11b1e08 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_superdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_thickerdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_thickerdraft.inst.cfg index 1c14bc20307..ad4b1b467b3 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_thickerdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = thickerdraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_ultra.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_ultra.inst.cfg index 09713b91c04..f9c80b0079b 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_ultra.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_verydraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_verydraft.inst.cfg index b34cb9c813d..14784247ddf 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_verydraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_draft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_draft.inst.cfg index 20f0e19467b..151e21fdd54 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_draft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_fast.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_fast.inst.cfg index dc9ecd5fe64..e0735cb0ffd 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_fast.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_high.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_high.inst.cfg index c5f968e6e14..6184ba86b21 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_high.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_normal.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_normal.inst.cfg index 278d07dea29..2a8eeb3dd4c 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_normal.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_superdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_superdraft.inst.cfg index 07a2ac74f6d..e7e772f85c3 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_superdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_thickerdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_thickerdraft.inst.cfg index 592b5e10097..300db25f2e5 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_thickerdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = thickerdraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_ultra.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_ultra.inst.cfg index 1aa8210751c..a3d8287a530 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_ultra.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_verydraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_verydraft.inst.cfg index a6ceb718309..376782ed633 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_verydraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_draft.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_draft.inst.cfg index 753dc626edc..6dda9f5f85a 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_draft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_fast.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_fast.inst.cfg index e6335447697..e67e0128315 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_fast.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_high.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_high.inst.cfg index ec80a8c9e1f..d449cb1f50c 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_high.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_normal.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_normal.inst.cfg index e8046eb5a05..fe8bebaea08 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_normal.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_superdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_superdraft.inst.cfg index 5a5776c7f88..00684445f64 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_superdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_thickerdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_thickerdraft.inst.cfg index 168e1c0bb4c..eaa2f3c8b42 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_thickerdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = thickerdraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_ultra.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_ultra.inst.cfg index 7b92bf37a10..b89c9ca3427 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_ultra.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_verydraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_verydraft.inst.cfg index f8a33603857..7da4ee15c2a 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_verydraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_draft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_draft.inst.cfg index f96a971d8cc..1efd7a48ad5 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_draft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_fast.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_fast.inst.cfg index 75f6f56c15e..1ac637cad12 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_fast.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_high.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_high.inst.cfg index 9b027f0f6cb..c18c95f3858 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_high.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_normal.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_normal.inst.cfg index 5e1ba97ead1..7ec5bbab4e4 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_normal.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_superdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_superdraft.inst.cfg index f38367832a8..74bd8f8aa41 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_superdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_thickerdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_thickerdraft.inst.cfg index 978d45d738c..a60be7f5f68 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_thickerdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = thickerdraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_ultra.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_ultra.inst.cfg index cbdd2c0cba0..cb94eab6965 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_ultra.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_verydraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_verydraft.inst.cfg index 6fbe7ce0cd9..8c2b8b5f67c 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_verydraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/normal.inst.cfg b/resources/quality/normal.inst.cfg index dc30e0e7e9a..cdfedcd6a91 100644 --- a/resources/quality/normal.inst.cfg +++ b/resources/quality/normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/nps/nps_ABS_A.inst.cfg b/resources/quality/nps/nps_ABS_A.inst.cfg index 23debbdf176..8788f2d15a0 100644 --- a/resources/quality/nps/nps_ABS_A.inst.cfg +++ b/resources/quality/nps/nps_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = a -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/nps/nps_ABS_B.inst.cfg b/resources/quality/nps/nps_ABS_B.inst.cfg index 3f700405bdb..c73992eb310 100644 --- a/resources/quality/nps/nps_ABS_B.inst.cfg +++ b/resources/quality/nps/nps_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = b -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/nps/nps_ABS_C.inst.cfg b/resources/quality/nps/nps_ABS_C.inst.cfg index 6138e4004c0..e4b974e03bc 100644 --- a/resources/quality/nps/nps_ABS_C.inst.cfg +++ b/resources/quality/nps/nps_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = c -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/nps/nps_PC_A.inst.cfg b/resources/quality/nps/nps_PC_A.inst.cfg index 8665f8ceaee..811df9ffdc6 100644 --- a/resources/quality/nps/nps_PC_A.inst.cfg +++ b/resources/quality/nps/nps_PC_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = a -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/nps/nps_PC_B.inst.cfg b/resources/quality/nps/nps_PC_B.inst.cfg index 9ccb5cea534..d972b6d5e6e 100644 --- a/resources/quality/nps/nps_PC_B.inst.cfg +++ b/resources/quality/nps/nps_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = b -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/nps/nps_PC_C.inst.cfg b/resources/quality/nps/nps_PC_C.inst.cfg index 30267d42375..1c91d7f3190 100644 --- a/resources/quality/nps/nps_PC_C.inst.cfg +++ b/resources/quality/nps/nps_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = c -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/nps/nps_PETG_A.inst.cfg b/resources/quality/nps/nps_PETG_A.inst.cfg index 3cae430f1cc..098fd7b0e7b 100644 --- a/resources/quality/nps/nps_PETG_A.inst.cfg +++ b/resources/quality/nps/nps_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = a -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/nps/nps_PETG_B.inst.cfg b/resources/quality/nps/nps_PETG_B.inst.cfg index 5860f654146..9121ce0cc89 100644 --- a/resources/quality/nps/nps_PETG_B.inst.cfg +++ b/resources/quality/nps/nps_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = b -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/nps/nps_PETG_C.inst.cfg b/resources/quality/nps/nps_PETG_C.inst.cfg index d35175fbc5b..891103acbb7 100644 --- a/resources/quality/nps/nps_PETG_C.inst.cfg +++ b/resources/quality/nps/nps_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = c -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/nps/nps_PLA_A.inst.cfg b/resources/quality/nps/nps_PLA_A.inst.cfg index 6c557e44772..302e03b8d19 100644 --- a/resources/quality/nps/nps_PLA_A.inst.cfg +++ b/resources/quality/nps/nps_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = a -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/nps/nps_PLA_B.inst.cfg b/resources/quality/nps/nps_PLA_B.inst.cfg index 02571aa0f56..2578ee39200 100644 --- a/resources/quality/nps/nps_PLA_B.inst.cfg +++ b/resources/quality/nps/nps_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = b -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/nps/nps_PLA_C.inst.cfg b/resources/quality/nps/nps_PLA_C.inst.cfg index 6b12b4b169d..7db1e3938a6 100644 --- a/resources/quality/nps/nps_PLA_C.inst.cfg +++ b/resources/quality/nps/nps_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = c -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/nps/nps_TPU_A.inst.cfg b/resources/quality/nps/nps_TPU_A.inst.cfg index c706bf08e85..8bc9697e179 100644 --- a/resources/quality/nps/nps_TPU_A.inst.cfg +++ b/resources/quality/nps/nps_TPU_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = a -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/nps/nps_TPU_B.inst.cfg b/resources/quality/nps/nps_TPU_B.inst.cfg index 5841b4045c3..f6131d5c728 100644 --- a/resources/quality/nps/nps_TPU_B.inst.cfg +++ b/resources/quality/nps/nps_TPU_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = b -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/nps/nps_TPU_C.inst.cfg b/resources/quality/nps/nps_TPU_C.inst.cfg index 8ac308460cc..9004a7aafb9 100644 --- a/resources/quality/nps/nps_TPU_C.inst.cfg +++ b/resources/quality/nps/nps_TPU_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = c -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/nps/nps_global_A.inst.cfg b/resources/quality/nps/nps_global_A.inst.cfg index 1cb73eb1b8d..b406f96b95b 100644 --- a/resources/quality/nps/nps_global_A.inst.cfg +++ b/resources/quality/nps/nps_global_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = a -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/nps/nps_global_B.inst.cfg b/resources/quality/nps/nps_global_B.inst.cfg index 89b4dabeabc..87b79e41854 100644 --- a/resources/quality/nps/nps_global_B.inst.cfg +++ b/resources/quality/nps/nps_global_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = b -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/nps/nps_global_C.inst.cfg b/resources/quality/nps/nps_global_C.inst.cfg index e8a4d989c38..55e03f04bfc 100644 --- a/resources/quality/nps/nps_global_C.inst.cfg +++ b/resources/quality/nps/nps_global_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = c -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg index fe29dcc0177..c62172e2712 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = best -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg index 3c4b16723cb..6eb625350a4 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Engineering -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg index a8351dd223a..dd3303ff21e 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg index 8c65da3d3a6..79a93c2cbb5 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg b/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg index d6f6c73c985..23a53983773 100644 --- a/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg +++ b/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = best -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg b/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg index d92ff21e1a3..9afbe1c9fae 100644 --- a/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg +++ b/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg b/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg index 860c295c189..0282588b313 100644 --- a/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg +++ b/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg index 9b83b18c6f8..2f7e5731a72 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = 3 diff --git a/resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg index ee6b848ec32..e5fd23d4f2b 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/peopoly_moai/peopoly_moai_extra_high.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_extra_high.inst.cfg index 77fa8652b38..11145f31514 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_extra_high.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_extra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra_high -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg index 9385278952e..b3aa4e2cc83 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg index a996b30c8a5..91eb5d46428 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_super.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_super.inst.cfg index adfe0e26a5e..b53926d84e7 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_super.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_ultra.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_ultra.inst.cfg index d0ed1bfc296..5ba1720f7c1 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_ultra.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_adaptive.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_adaptive.inst.cfg index 98bf867ce54..f773bf87c68 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_low.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_low.inst.cfg index 8af36722699..7ad5b63828b 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_low.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_standard.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_standard.inst.cfg index 5c70c697a6b..18d481d92e8 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_standard.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_super.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_super.inst.cfg index af8ea00735d..094f815c579 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_super.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_adaptive.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_adaptive.inst.cfg index 3b4589bd782..ef6926b4d3c 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_low.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_low.inst.cfg index addc6f2c1c7..0de97f85760 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_low.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_standard.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_standard.inst.cfg index e74e3c9015b..f399287eceb 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_standard.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_super.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_super.inst.cfg index 957d89d2bf9..e828bbc5ec6 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_super.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_adaptive.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_adaptive.inst.cfg index 46766b94c21..425efe8bb79 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_low.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_low.inst.cfg index 22e93d8876f..504e601637d 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_low.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_standard.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_standard.inst.cfg index 0d9b6ae5c13..599dfa21199 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_standard.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_super.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_super.inst.cfg index 372d066d4c5..e337cf021d5 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_super.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.6_Nylon_standard.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.6_Nylon_standard.inst.cfg index a57d8e22ca0..5037ea98773 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.6_Nylon_standard.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.6_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.8_Nylon_draft.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.8_Nylon_draft.inst.cfg index 1fc2e48eed3..b11d0cbbfe5 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.8_Nylon_draft.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.8_Nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_1.0_Nylon_draft.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_1.0_Nylon_draft.inst.cfg index bcc88a598c6..1523fe7ace1 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_1.0_Nylon_draft.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_1.0_Nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_super.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_super.inst.cfg index 24419b53025..13f3d3c6b82 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_super.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_ultra.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_ultra.inst.cfg index a55a6ad76aa..e1e0e68adde 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_adaptive.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_adaptive.inst.cfg index 890652591b2..f45f4f0db46 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_low.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_low.inst.cfg index aa3787c2788..f00cfe1f183 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_low.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_standard.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_standard.inst.cfg index a2afefe69ca..4c49ed47cc6 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_standard.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_super.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_super.inst.cfg index a90915b50cf..6c085cf045d 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_super.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_adaptive.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_adaptive.inst.cfg index 765547d6927..1436293e327 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_low.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_low.inst.cfg index d5afe469945..77a5b093b02 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_low.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_standard.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_standard.inst.cfg index ea0ff5ab6bc..fab2b3f6a06 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_standard.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_super.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_super.inst.cfg index 49245f85b23..a22e5570232 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_super.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_adaptive.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_adaptive.inst.cfg index 7147deb58fc..7d53f5a7352 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_low.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_low.inst.cfg index e930a9415e9..bc7763e69ab 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_low.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_standard.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_standard.inst.cfg index 92611f4b717..f50d26c0263 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_standard.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_super.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_super.inst.cfg index d147d877280..32a6e79f733 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_super.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.6_PETG_standard.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.6_PETG_standard.inst.cfg index 80dcecfe210..cb789901f70 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.6_PETG_standard.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.8_PETG_draft.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.8_PETG_draft.inst.cfg index 4d6a9a56719..1ff77f20280 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.8_PETG_draft.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_1.0_PETG_draft.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_1.0_PETG_draft.inst.cfg index bce8d9ccbae..85857390848 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_1.0_PETG_draft.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_super.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_super.inst.cfg index ff81d0d74e0..9d8ef6a9a33 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_super.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_ultra.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_ultra.inst.cfg index 10465057cf0..d0a93f1beb3 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_adaptive.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_adaptive.inst.cfg index 58b51ebf4a5..8e7e337fa5a 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_low.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_low.inst.cfg index 3622a5927be..c6b8308b872 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_low.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_standard.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_standard.inst.cfg index 39c3d776746..67d98a3bf6b 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_standard.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_super.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_super.inst.cfg index 5a6b3bd348a..3bce948dfec 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_super.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_adaptive.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_adaptive.inst.cfg index 4ca7bf94d40..d9647022e45 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_low.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_low.inst.cfg index 0c29c77bde9..1471709c213 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_low.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_standard.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_standard.inst.cfg index 3211f4be860..6434e24870e 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_standard.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_super.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_super.inst.cfg index da6ea197b2d..f0230d0bb6e 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_super.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_adaptive.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_adaptive.inst.cfg index f9d0649016c..4f3739f6bed 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_low.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_low.inst.cfg index 8f55fe30a4a..d6338d23238 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_low.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_standard.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_standard.inst.cfg index f6c42831e39..7ea3bc2e74d 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_standard.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_super.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_super.inst.cfg index 67637bcfeaf..3391515befb 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_super.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_draft.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_draft.inst.cfg index bbafe934fed..425098058e1 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_draft.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_low.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_low.inst.cfg index 115341b00db..82ae46b93c0 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_low.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_standard.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_standard.inst.cfg index f365b98c5a8..fbbf5178a0d 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_standard.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.8_PLA_draft.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.8_PLA_draft.inst.cfg index eba25456a90..8f2413e7eaf 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.8_PLA_draft.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_1.0_PLA_draft.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_1.0_PLA_draft.inst.cfg index ffe30e68ecd..24232e97e56 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_1.0_PLA_draft.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/ratrig_base/ratrig_base_global_adaptive.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_adaptive.inst.cfg index 7dc5adffbc5..f603ac2f49d 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/ratrig_base/ratrig_base_global_draft.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_draft.inst.cfg index 6300ade8f6f..0f1ed527c4e 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_draft.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/ratrig_base/ratrig_base_global_low.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_low.inst.cfg index 5cd4519ac2e..282bffac12a 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_low.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/ratrig_base/ratrig_base_global_standard.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_standard.inst.cfg index d1bbff61ed2..34963f44d63 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_standard.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/ratrig_base/ratrig_base_global_super.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_super.inst.cfg index e73f314a270..0f4c9857c93 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_super.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/ratrig_base/ratrig_base_global_ultra.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_ultra.inst.cfg index 3864f618585..f9c1935ecb3 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_ultra.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg index 6425ec76666..f661ed44149 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_standard.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_standard.inst.cfg index 8f7b5f7cfa0..11e12d4fb1b 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_standard.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_super.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_super.inst.cfg index 4b92df6df69..8a7457fa0a7 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_super.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg index d89b488ce68..199338b92aa 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_standard.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_standard.inst.cfg index caa88e072a3..cd45e2a4a08 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_standard.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_super.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_super.inst.cfg index c37bd5df995..ae00c536ff6 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_super.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg index 4622803d56c..20be9890721 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_standard.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_standard.inst.cfg index 11b90f79a19..85fca68f647 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_standard.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_super.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_super.inst.cfg index d3762fd8395..b85d1041412 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_super.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.6_TPU_standard.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.6_TPU_standard.inst.cfg index 11a0e7cd4ec..e17edf408de 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.6_TPU_standard.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.8_TPU_draft.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.8_TPU_draft.inst.cfg index fb82909a5df..7b663dd97f0 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.8_TPU_draft.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_1.0_TPU_draft.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_1.0_TPU_draft.inst.cfg index 013dbfdcbc7..424b52f5bc0 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_1.0_TPU_draft.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_adaptive.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_adaptive.inst.cfg index 9436f1214dc..825999e09e9 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_good.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_good.inst.cfg index 7075fd5cdb1..e708aa36d76 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_good.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_low.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_low.inst.cfg index 11449b3724b..7e18816e994 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_low.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_standard.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_standard.inst.cfg index 9d5fe97e901..caec94d7428 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_standard.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_super.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_super.inst.cfg index adc821bb0cb..bb58f8a607b 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_super.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_ultra.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_ultra.inst.cfg index 972d6612863..3be043ba9d2 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_adaptive.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_adaptive.inst.cfg index f11e0124c67..6a221187b0b 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_good.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_good.inst.cfg index 8c3f567f092..7f36e8b4880 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_good.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = good -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_low.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_low.inst.cfg index 3e00b6f10b2..8826bcbc1ab 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_low.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_standard.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_standard.inst.cfg index b4dd761b202..ebedcfe46b0 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_standard.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_super.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_super.inst.cfg index 99d3d50454a..5a65e5a3ddb 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_super.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_ultra.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_ultra.inst.cfg index 4a413c2e1ce..2031e51928c 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_adaptive.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_adaptive.inst.cfg index f77c28b5fd0..5e9ef8f6539 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_good.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_good.inst.cfg index 2bc78750ee4..6314c5cf472 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_good.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = good -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_low.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_low.inst.cfg index 656ece98056..2824c346f7c 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_low.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_standard.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_standard.inst.cfg index 5cbba2dadfd..28dbc363709 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_standard.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_super.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_super.inst.cfg index 2e40788daac..d3ed18ec566 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_super.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_ultra.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_ultra.inst.cfg index 8d9de515c9c..54ae63ed9cb 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_adaptive.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_adaptive.inst.cfg index 966a6a208e7..e5800f76303 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_good.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_good.inst.cfg index 56e0589d427..662344bcfd8 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_good.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = good -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_low.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_low.inst.cfg index 67192d43333..20ad51f84c1 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_low.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_standard.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_standard.inst.cfg index 9b78986d8f5..d3ef33dae4b 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_standard.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_super.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_super.inst.cfg index a49f8c71da9..dd1c2c1a402 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_super.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_ultra.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_ultra.inst.cfg index fc7e593fbc4..b57e9643e7a 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_adaptive.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_adaptive.inst.cfg index 7b8576b2de1..7b9edd4240e 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -6 diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_good.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_good.inst.cfg index af0bc1382bf..f110e2ac11c 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_good.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = good -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_low.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_low.inst.cfg index d6c49e5d9a6..def57b4251c 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_low.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_standard.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_standard.inst.cfg index e053edf5f4d..84f85042f79 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_standard.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_super.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_super.inst.cfg index 09976277b5f..692c3f2e81f 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_super.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_ultra.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_ultra.inst.cfg index e0ffe4421e4..1487279aeed 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_adaptive.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_adaptive.inst.cfg index 626025b5156..465d18fef69 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_good.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_good.inst.cfg index bc0151b230a..abf83133280 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_good.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = good -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_low.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_low.inst.cfg index 5a0333e1a75..0686d9d66ce 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_low.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_standard.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_standard.inst.cfg index a61f3984e5c..26238b9fc93 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_standard.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_super.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_super.inst.cfg index 183f1a28c65..2ef1bee0a87 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_super.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_ultra.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_ultra.inst.cfg index 1f2fcc6d36c..debf198a7ec 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/skriware_2/sk2_advanced.inst.cfg b/resources/quality/skriware_2/sk2_advanced.inst.cfg index ac3fa6041de..dd30149d024 100644 --- a/resources/quality/skriware_2/sk2_advanced.inst.cfg +++ b/resources/quality/skriware_2/sk2_advanced.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/skriware_2/sk2_fast.inst.cfg b/resources/quality/skriware_2/sk2_fast.inst.cfg index d0b8208e5a5..6d41a98b923 100644 --- a/resources/quality/skriware_2/sk2_fast.inst.cfg +++ b/resources/quality/skriware_2/sk2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/skriware_2/sk2_precise.inst.cfg b/resources/quality/skriware_2/sk2_precise.inst.cfg index 752902b731f..1372013ad8e 100644 --- a/resources/quality/skriware_2/sk2_precise.inst.cfg +++ b/resources/quality/skriware_2/sk2_precise.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = best -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/snakeoilxy/snakeoilxy_global_fast_quality.inst.cfg b/resources/quality/snakeoilxy/snakeoilxy_global_fast_quality.inst.cfg index 07147785e75..0b62a1385c3 100644 --- a/resources/quality/snakeoilxy/snakeoilxy_global_fast_quality.inst.cfg +++ b/resources/quality/snakeoilxy/snakeoilxy_global_fast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/snakeoilxy/snakeoilxy_global_fine_quality.inst.cfg b/resources/quality/snakeoilxy/snakeoilxy_global_fine_quality.inst.cfg index 672d907afe5..12106d3e9bf 100644 --- a/resources/quality/snakeoilxy/snakeoilxy_global_fine_quality.inst.cfg +++ b/resources/quality/snakeoilxy/snakeoilxy_global_fine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/snakeoilxy/snakeoilxy_global_normal_quality.inst.cfg b/resources/quality/snakeoilxy/snakeoilxy_global_normal_quality.inst.cfg index 3e90b5966fd..12e4ec025e8 100644 --- a/resources/quality/snakeoilxy/snakeoilxy_global_normal_quality.inst.cfg +++ b/resources/quality/snakeoilxy/snakeoilxy_global_normal_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/snakeoilxy/snakeoilxy_global_strong_quality.inst.cfg b/resources/quality/snakeoilxy/snakeoilxy_global_strong_quality.inst.cfg index abbdc4e8464..d51159aa753 100644 --- a/resources/quality/snakeoilxy/snakeoilxy_global_strong_quality.inst.cfg +++ b/resources/quality/snakeoilxy/snakeoilxy_global_strong_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = strong -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg b/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg index ca9845a2fa3..572fc08a853 100644 --- a/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg +++ b/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/snapmaker2/snapmaker2_high.inst.cfg b/resources/quality/snapmaker2/snapmaker2_high.inst.cfg index d3c34f1afd9..8e734798c18 100644 --- a/resources/quality/snapmaker2/snapmaker2_high.inst.cfg +++ b/resources/quality/snapmaker2/snapmaker2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg b/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg index 97514c37887..c2293f55bc0 100644 --- a/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg +++ b/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_super.inst.cfg index 772967217ae..defa6866359 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_ultra.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_ultra.inst.cfg index 0726300d161..806e83a3b2a 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_adaptive.inst.cfg index b856b23909d..f68599df66e 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_low.inst.cfg index ea89399b044..5df799868ef 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_standard.inst.cfg index c4a73d88290..e07f978b903 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_super.inst.cfg index 25dd15c61fb..c0227b5b43c 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_adaptive.inst.cfg index f8ee0564e4f..4984310577d 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_low.inst.cfg index b52d3796bd4..38414cee14b 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_standard.inst.cfg index db41a18c33d..98f393cb39c 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_super.inst.cfg index 8d9f4a89452..ccbb661b749 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_adaptive.inst.cfg index b7a7967e51a..0588caaa201 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_low.inst.cfg index 3ae2ea97eb2..ecd3e8143b7 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_standard.inst.cfg index 49674f357b5..e489d845a70 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_super.inst.cfg index becb6c78136..6e616c299f5 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_adaptive.inst.cfg index 93c936d9052..1f421bdebdc 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_draft.inst.cfg index 3fa8cd175a5..d13758ac171 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_low.inst.cfg index 3ae2ea97eb2..ecd3e8143b7 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_standard.inst.cfg index d4fa086853e..180ef9793ca 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.8_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.8_ABS_draft.inst.cfg index bc3804e57a5..ef400d0393f 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.8_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_1.0_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_1.0_ABS_draft.inst.cfg index fe55f3999f4..229e456c0a1 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_1.0_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_super.inst.cfg index 33de59ca9ea..e762e8be23b 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_ultra.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_ultra.inst.cfg index 7fcfef1f1f1..80ecf4cd5ab 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_adaptive.inst.cfg index f0f87b35aad..88760eddfa2 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_low.inst.cfg index f0be8f8aeb6..ecc9d878afb 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_standard.inst.cfg index 05b9f7aa93e..e89120e4131 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_super.inst.cfg index 62d09912564..b3ed5d750d0 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_adaptive.inst.cfg index 38dbb87871d..df9043526e8 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_low.inst.cfg index 3cffc1c7201..de741e100cf 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_standard.inst.cfg index 05c1b926a96..197974f8dee 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_super.inst.cfg index ab92d6ca325..ffd6a18e6cd 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_adaptive.inst.cfg index 32ec7fe4ff4..81f5628de5f 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_low.inst.cfg index a2042304b6f..e518eeeee7c 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_standard.inst.cfg index b2e1cfcf9cc..13cb1da6082 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_super.inst.cfg index ff270683725..0d2344258f3 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_adaptive.inst.cfg index a85f259ebb0..be6b0a424d9 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_draft.inst.cfg index 7200a5749ff..8fb90b1ebfd 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_low.inst.cfg index a2042304b6f..e518eeeee7c 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_standard.inst.cfg index 84ffaf6c2a8..c1b28d2eed9 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.8_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.8_ABS_draft.inst.cfg index bef6859d3c1..63f0f20b9b8 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.8_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_1.0_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_1.0_ABS_draft.inst.cfg index 1d6669d2bf6..0b2e06b960a 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_1.0_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_super.inst.cfg index 885607c1ee9..632f8562a0f 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_ultra.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_ultra.inst.cfg index bfa41cf9c6b..778faab851d 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_adaptive.inst.cfg index 5ed1d35af6d..e41ac67a4bb 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_low.inst.cfg index 28f77adec5e..125944ab7ba 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_standard.inst.cfg index 76f7ebb4a2b..aadae21f2b3 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_super.inst.cfg index c8236b87b53..4cdf9e82a11 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_adaptive.inst.cfg index 1395cd2a149..87d3cbaba81 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_low.inst.cfg index ddb7913146f..71a71c2074a 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_standard.inst.cfg index d0fff1d3a1c..a7e7c688326 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_super.inst.cfg index d9654ee6ffd..d0e96ddf9e4 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_adaptive.inst.cfg index dfda836cd4a..af21641a941 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_low.inst.cfg index 4c86d9d6015..a48585cceb5 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_standard.inst.cfg index 97dba25e7ac..6cd9377e7f6 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_super.inst.cfg index d0aa02743bb..0bf2ad87fa8 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_adaptive.inst.cfg index 2a49ac86ea8..0b112bb4756 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_draft.inst.cfg index 97102b65a30..924e14928cb 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_low.inst.cfg index 4c86d9d6015..a48585cceb5 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_standard.inst.cfg index 27112ff2ef9..b9a346b74c6 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.8_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.8_ABS_draft.inst.cfg index d52dc0324a1..9575468f221 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.8_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_1.0_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_1.0_ABS_draft.inst.cfg index b3abca606c3..19249525d69 100644 --- a/resources/quality/sovol/ABS/sovol_titan_1.0_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_super.inst.cfg index 053367d17f0..9263813e0fd 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_ultra.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_ultra.inst.cfg index b096237bea6..457c4557edf 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_adaptive.inst.cfg index 06beece2a2b..a5b0dd141cd 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_low.inst.cfg index a33788ca75f..d15b92b2db0 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_standard.inst.cfg index 6e23df6ae8c..0198bb31d15 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_super.inst.cfg index ae20dcb8045..d7a1c155bdc 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_adaptive.inst.cfg index af2ee484132..e46a0fc9e7e 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_low.inst.cfg index 4dfcca87658..b5865b796f4 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_standard.inst.cfg index 7553fd38ce6..909887f7349 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_super.inst.cfg index e4e7cfd9b39..1e77f58d779 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_adaptive.inst.cfg index 65a1ada04d6..53dab10238c 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_low.inst.cfg index 9851ac87981..2309c3d80a0 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_standard.inst.cfg index 9d69f5a6e48..f42e9ed165a 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_super.inst.cfg index b8fb2f71180..68ed0f68bf7 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_adaptive.inst.cfg index 808bc5d2ce0..52445d8e9c5 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_draft.inst.cfg index 759b42945d7..02cab8fbed3 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_low.inst.cfg index 0f7f807acad..0e17e9b5eae 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_standard.inst.cfg index 55f3851458d..41f5bd56eda 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.8_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.8_PETG_draft.inst.cfg index 127cbb7a12b..3455b63eaea 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.8_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_1.0_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_1.0_PETG_draft.inst.cfg index 68994f179ea..b6afb89877b 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_1.0_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_super.inst.cfg index 4d7207b88fa..d73fcd987d8 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_ultra.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_ultra.inst.cfg index e0e337e8239..b1d8446a8a2 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_adaptive.inst.cfg index 35122d480ac..300ff8a9ffd 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_low.inst.cfg index 6ecdb7c2aa5..f2ccdbd5caa 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_standard.inst.cfg index 4312bd0fc92..58a1f4d8e25 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_super.inst.cfg index b5ca42bbfab..2e330c453ec 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_adaptive.inst.cfg index 4e8a03c922a..eeecf62b036 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_low.inst.cfg index 5936703b736..4ec7b7a412d 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_standard.inst.cfg index bec8700d9f2..a1c0e48cbaa 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_super.inst.cfg index 83c414fbb44..7808a3da9ac 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_adaptive.inst.cfg index c1fbefcb96d..33e1e1dc642 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_low.inst.cfg index 8b71219eae6..b7f329a98c8 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_standard.inst.cfg index 2203f512132..0ec707bb869 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_super.inst.cfg index 0a05fd5fbae..8a472a5f715 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_adaptive.inst.cfg index d52169b7b7f..093963d94ba 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_draft.inst.cfg index 2aead633528..28408b23d89 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_low.inst.cfg index 6ffabcf3dbd..79ecbb7de71 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_standard.inst.cfg index 2dcd0202c84..1e04a9ee433 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.8_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.8_PETG_draft.inst.cfg index 759fb5c6d48..ea145cbc74e 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.8_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_1.0_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_1.0_PETG_draft.inst.cfg index 1003b241ade..550bdd503bd 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_1.0_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_super.inst.cfg index 6e961a1f5f9..e38455850f8 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_ultra.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_ultra.inst.cfg index 90561968113..b221a2fb6f2 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_adaptive.inst.cfg index 0f76fb7040b..9bd24541855 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_low.inst.cfg index d3b9987d293..fc823efb6e3 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_standard.inst.cfg index 4daff5d437b..23504f51326 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_super.inst.cfg index ded1525f352..f82812e3a2d 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_adaptive.inst.cfg index beedee39b13..d0e2ca11be5 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_low.inst.cfg index 29790a874a3..cde88b03334 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_standard.inst.cfg index de2429f011d..58d1ddf5f03 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_super.inst.cfg index 9a9e6817a65..ed2f53f573e 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_adaptive.inst.cfg index c905211dfc5..25751681af2 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_low.inst.cfg index 8c31d3411e6..e9ff5631f32 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_standard.inst.cfg index 550a5b8d305..6b6193ef49d 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_super.inst.cfg index 460c927b239..e60d7aad266 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_adaptive.inst.cfg index 07ecb9c628a..d85791b9e6d 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_draft.inst.cfg index 72a3df1170a..266459a784c 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_low.inst.cfg index 32f2aae4cdd..4eac8df6afb 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_standard.inst.cfg index 46a9c121722..e494138b712 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.8_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.8_PETG_draft.inst.cfg index 94fa6d1a45b..b05ccd072dd 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.8_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_1.0_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_1.0_PETG_draft.inst.cfg index d24808cc0a5..155086bbed7 100644 --- a/resources/quality/sovol/PETG/sovol_titan_1.0_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_super.inst.cfg index 60e6b7b56cc..dfb66442314 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_ultra.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_ultra.inst.cfg index 4ea764635cb..1bba7ee0040 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_adaptive.inst.cfg index 2a847c66952..8ceefff1ce4 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_low.inst.cfg index 21bbc433ae8..d99e7a91873 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_standard.inst.cfg index 4b2b5103e8e..c76bd93eb5c 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_super.inst.cfg index 3a2cb3824b0..c008efd6a4b 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_adaptive.inst.cfg index 225d97b51b4..2af72b0eb94 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_low.inst.cfg index 60f61cd0cd9..cda9ceed055 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_standard.inst.cfg index 6e4a98b120b..67303a344c4 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_super.inst.cfg index 66de7a5d67e..480ce19bd26 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_adaptive.inst.cfg index 508fad0d399..818ba54d181 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_low.inst.cfg index 85995dc2e22..0d5763d654f 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_standard.inst.cfg index 9d4c33706f4..462fe35ca8e 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_super.inst.cfg index ca4d2f0aa56..c69290b75c1 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_adaptive.inst.cfg index b669b93ca8e..a842730f71c 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_draft.inst.cfg index 8621005003e..3a30124ba87 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_low.inst.cfg index 734b00804bd..f6d093bcdbe 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_standard.inst.cfg index 3495c72a272..0caf6fde449 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.8_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.8_PLA_draft.inst.cfg index 502ba9fb289..a75db5305a9 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.8_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_1.0_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_1.0_PLA_draft.inst.cfg index cd7c84e72b2..5156a79dbbd 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_1.0_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_super.inst.cfg index 75a24e23380..e79df78c54a 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_ultra.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_ultra.inst.cfg index 8b5a22c7ace..648195d2cb0 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_adaptive.inst.cfg index 75949bd188e..fec5480e935 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_low.inst.cfg index 26536c7f952..7ab1a6eb908 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_standard.inst.cfg index 32cd5417640..2945d9d3fb1 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_super.inst.cfg index a6b5f82afd4..61e9343536d 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_adaptive.inst.cfg index 99ec25faef3..66af6a6e6cc 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_low.inst.cfg index b4f42eef9ba..36b56f53cc0 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_standard.inst.cfg index 280e0f6983a..6e683d4912e 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_super.inst.cfg index 19d6e248dbc..05d13d7f092 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_adaptive.inst.cfg index 8d6b86a5412..25062507a16 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_low.inst.cfg index 2fb09b07d63..fc974c0d23b 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_standard.inst.cfg index de0c5d8f18a..7642a661fc6 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_super.inst.cfg index 95414079ce3..a4d08915b23 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_adaptive.inst.cfg index 1323bcb2583..56c4f6f5356 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_draft.inst.cfg index 7dae15cd820..77260e44b42 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_low.inst.cfg index 52c75c39562..9d3e897f1f3 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_standard.inst.cfg index 8b3f20d9bb9..06468f867f9 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.8_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.8_PLA_draft.inst.cfg index 5150e51684e..49b1a1da830 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.8_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_1.0_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_1.0_PLA_draft.inst.cfg index b4ec36693a6..f4d2249bea9 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_1.0_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_super.inst.cfg index 477b4b71c07..afd059515d9 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_ultra.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_ultra.inst.cfg index f84ba4c463e..935acf87697 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_adaptive.inst.cfg index 4d917548664..4b1bd7186b6 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_low.inst.cfg index 14898f51820..3e8c01bf299 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_standard.inst.cfg index 1eea76a0624..9b0a17a2465 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_super.inst.cfg index 6e037669a33..8a4dd64c3dc 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_adaptive.inst.cfg index 4f92feb3335..e5ffd6c0a1f 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_low.inst.cfg index c36495131e9..6fac81f060f 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_standard.inst.cfg index bf85135170c..0d72cd1018b 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_super.inst.cfg index 3d49a000646..937006edf2a 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_adaptive.inst.cfg index 0325382a415..90ff99d94b2 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_low.inst.cfg index 660ff39cbaa..3a90afe4309 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_standard.inst.cfg index 38bbd3d0266..c50ff9be24a 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_super.inst.cfg index dd8f42789d5..9c2f27d1503 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_adaptive.inst.cfg index fc8bda9ec01..7b9550dd255 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_draft.inst.cfg index 63d2a0db08d..656e646d0bf 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_low.inst.cfg index eca3e66c4fd..789646f896e 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_standard.inst.cfg index 59b67afd703..f52221e9ff9 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.8_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.8_PLA_draft.inst.cfg index dfd7add791a..092849b63a7 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.8_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_1.0_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_1.0_PLA_draft.inst.cfg index b1157e6dc4a..c2acac8b772 100644 --- a/resources/quality/sovol/PLA/sovol_titan_1.0_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_adaptive.inst.cfg index eebdc183e72..ed82bbeba19 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_standard.inst.cfg index 4cb331a963a..e797e28f77c 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_super.inst.cfg index fb39dfd55c5..0ef5dab2507 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_adaptive.inst.cfg index fe249852060..6f8296972a3 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_standard.inst.cfg index 5a077700696..05646b59f74 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_super.inst.cfg index c903119453f..f73639bed54 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_adaptive.inst.cfg index 37c77c084a4..0d65a9e7160 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_standard.inst.cfg index ae5c9b6e3d8..0f98f0af00f 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_super.inst.cfg index e963a88d20f..f3567ed5cda 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.6_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.6_TPU_standard.inst.cfg index 020fbd96b97..f485682a3a0 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.6_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.8_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.8_TPU_draft.inst.cfg index 2bf1d94be32..805f8029de8 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.8_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_1.0_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_1.0_TPU_draft.inst.cfg index af4cdeceaa2..108d25cc2b9 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_1.0_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_adaptive.inst.cfg index 6248e0f2431..3be81fcb24d 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_standard.inst.cfg index d01edeed8d4..89bee3e6e94 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_super.inst.cfg index d690111514b..eff1ec18de1 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_adaptive.inst.cfg index fc3f1d1636f..ae6e439d1e1 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_standard.inst.cfg index 4db78e7df76..fce3d5d5d36 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_super.inst.cfg index eefd4b3298e..14143a43c32 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_adaptive.inst.cfg index 0c8601d49f4..3a59c9cc4fb 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_standard.inst.cfg index 4c53013ea77..25bb9a52cee 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_super.inst.cfg index 19a5aba8c01..56cceef3689 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.6_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.6_TPU_standard.inst.cfg index 1ee0566de1e..06e8e1caf94 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.6_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.8_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.8_TPU_draft.inst.cfg index ccc2834c40d..db6777c29ec 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.8_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_1.0_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_1.0_TPU_draft.inst.cfg index 74433477a51..1ae1708d177 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_1.0_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_adaptive.inst.cfg index 8a22f9e7ed3..40c868739e9 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_standard.inst.cfg index 399a5ad8805..7c4e7656598 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_super.inst.cfg index e88db75f3f1..7c70bcd2e6e 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_adaptive.inst.cfg index 7c464d3d681..8fb59123086 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_standard.inst.cfg index d90798ac595..37e25483e9c 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_super.inst.cfg index e53ad2c481c..0ab905ddea1 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_adaptive.inst.cfg index 08465b50aa6..fd0245d797a 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_standard.inst.cfg index 50806b530ad..16b51398678 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_super.inst.cfg index c5f4a01e99a..e6944b6abc5 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.6_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.6_TPU_standard.inst.cfg index 19ac4a45126..1eda8ed9c3e 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.6_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.8_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.8_TPU_draft.inst.cfg index 3a9c39df03a..796d50d9519 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.8_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_1.0_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_1.0_TPU_draft.inst.cfg index 68280b99b9c..45df6d13e15 100644 --- a/resources/quality/sovol/TPU/sovol_titan_1.0_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/sovol_bowden_global_adaptive.inst.cfg b/resources/quality/sovol/sovol_bowden_global_adaptive.inst.cfg index 8503da623f0..e9cff774809 100644 --- a/resources/quality/sovol/sovol_bowden_global_adaptive.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/sovol/sovol_bowden_global_draft.inst.cfg b/resources/quality/sovol/sovol_bowden_global_draft.inst.cfg index 1b78757f556..dd082f5d456 100644 --- a/resources/quality/sovol/sovol_bowden_global_draft.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/sovol/sovol_bowden_global_low.inst.cfg b/resources/quality/sovol/sovol_bowden_global_low.inst.cfg index a678af6506d..0286357f656 100644 --- a/resources/quality/sovol/sovol_bowden_global_low.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/sovol/sovol_bowden_global_standard.inst.cfg b/resources/quality/sovol/sovol_bowden_global_standard.inst.cfg index d020c7002c3..05c840ab84f 100644 --- a/resources/quality/sovol/sovol_bowden_global_standard.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/sovol/sovol_bowden_global_super.inst.cfg b/resources/quality/sovol/sovol_bowden_global_super.inst.cfg index 9bcd7b6287a..d4cb00ea43c 100644 --- a/resources/quality/sovol/sovol_bowden_global_super.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/sovol/sovol_bowden_global_ultra.inst.cfg b/resources/quality/sovol/sovol_bowden_global_ultra.inst.cfg index 5a8cbef3d7d..90c6235d887 100644 --- a/resources/quality/sovol/sovol_bowden_global_ultra.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/sovol/sovol_planetary_global_adaptive.inst.cfg b/resources/quality/sovol/sovol_planetary_global_adaptive.inst.cfg index 17e0c268bee..a3239e277ee 100644 --- a/resources/quality/sovol/sovol_planetary_global_adaptive.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/sovol/sovol_planetary_global_draft.inst.cfg b/resources/quality/sovol/sovol_planetary_global_draft.inst.cfg index 9ff86b6743d..2dfe9261bdd 100644 --- a/resources/quality/sovol/sovol_planetary_global_draft.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/sovol/sovol_planetary_global_low.inst.cfg b/resources/quality/sovol/sovol_planetary_global_low.inst.cfg index 2ca057564f8..a26036a9f47 100644 --- a/resources/quality/sovol/sovol_planetary_global_low.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/sovol/sovol_planetary_global_standard.inst.cfg b/resources/quality/sovol/sovol_planetary_global_standard.inst.cfg index 3ba5e02cdf3..c39b3a47d25 100644 --- a/resources/quality/sovol/sovol_planetary_global_standard.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/sovol/sovol_planetary_global_super.inst.cfg b/resources/quality/sovol/sovol_planetary_global_super.inst.cfg index 5b47449dc58..9e14ee36a52 100644 --- a/resources/quality/sovol/sovol_planetary_global_super.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/sovol/sovol_planetary_global_ultra.inst.cfg b/resources/quality/sovol/sovol_planetary_global_ultra.inst.cfg index 1036827a892..f3ad3f63f29 100644 --- a/resources/quality/sovol/sovol_planetary_global_ultra.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/sovol/sovol_titan_global_adaptive.inst.cfg b/resources/quality/sovol/sovol_titan_global_adaptive.inst.cfg index e8dcafbd961..d1bdac7e44c 100644 --- a/resources/quality/sovol/sovol_titan_global_adaptive.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/sovol/sovol_titan_global_draft.inst.cfg b/resources/quality/sovol/sovol_titan_global_draft.inst.cfg index 20bd095ff94..7d9574e9c28 100644 --- a/resources/quality/sovol/sovol_titan_global_draft.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/sovol/sovol_titan_global_low.inst.cfg b/resources/quality/sovol/sovol_titan_global_low.inst.cfg index d3e37f54b3a..2bb6d850a6a 100644 --- a/resources/quality/sovol/sovol_titan_global_low.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/sovol/sovol_titan_global_standard.inst.cfg b/resources/quality/sovol/sovol_titan_global_standard.inst.cfg index dd7dbb3786f..c799172723e 100644 --- a/resources/quality/sovol/sovol_titan_global_standard.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/sovol/sovol_titan_global_super.inst.cfg b/resources/quality/sovol/sovol_titan_global_super.inst.cfg index 31cebe4aba8..70744f18ade 100644 --- a/resources/quality/sovol/sovol_titan_global_super.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/sovol/sovol_titan_global_ultra.inst.cfg b/resources/quality/sovol/sovol_titan_global_ultra.inst.cfg index 9040e3d60da..b159e54f610 100644 --- a/resources/quality/sovol/sovol_titan_global_ultra.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg index 39ba32a332a..15c8c492217 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg index dd0d167e6bc..fda7548825e 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg index f894a7dc139..8e65f491a4c 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg index 7642489c2a9..5e03710bc47 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg index bf5c18405bc..6c93c716d08 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg index 6756384e4af..a7e7d2a8727 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg index 978484d8130..be60ed117e6 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg index bcec4fe68f4..bb36ad977f1 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg index 85f79ebe7a0..a04b859e41b 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg index 9b29e496242..e80011a25fe 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg index 07a46f0d05b..caca18acb1d 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg index 60410d8d346..07bcbb951ce 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg index 93046306306..692cc0bf7e8 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg index d39d91c91ae..f481caf900c 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg index e716824cf03..c19d8120bdf 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg index bd964bed2a5..6816682a58c 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg index cd27f777376..49aebe64355 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg index 78191af7be7..8809625bd50 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg index f37a3b4d6d0..f76fc17f7fc 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg index 75fed99b1ec..d88b9f9aaf5 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg index 51911c3811d..50143d95046 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg index e4596d9def1..99364c2edc4 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pekk quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg index d0faf6eb66e..65c7532c8b7 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg index 3a64a522543..cc5f154c0b5 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg index debf74ed0d7..4c55dc1666e 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg index 990d5cf645e..508999aee52 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg index 82f26cd66d7..e642ad6f4ea 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg index a91b035e38e..04e4543c75a 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg index c7194e18d24..39c32ad622b 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg index 078e213a262..59b4b730f3e 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg index bfb4c46c461..200201554de 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg index 8dd1c17ea69..bac0135e9f4 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg index cca98aa5997..2fda0cb9605 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg index 5a343d68931..164e5bf494b 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg index e6be8813412..6c0b7ede594 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg index c4342c149a1..feac83c0d3e 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg index e3581e08230..adec58532a4 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg index 4c451894bdf..4f738ecb9b7 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg index 65c2c9e81f2..53cde676c13 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg index 2f5cf9cfa3f..cb4c1754881 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg index 36d6697edbe..25894a72427 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg index e92561350a1..ddc47eb6ced 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg index e61775fde0b..486503b69ec 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg index 020b95dad20..2b595fecad5 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg index 6688d82ec8c..24f35a41813 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg index 2c8d6a82d3a..d4e78fd7e35 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg index fe012ff8735..e700994fbc6 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg index c0adce0f844..c7b53df000c 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg index 5b58c2f37bc..09ee00f8d0d 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg index f986831fd5f..963ee03862f 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg index 5d360b244b1..8ede6f7f2ae 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg index 3875e668f41..85cf082f995 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg index d4d0e1c17e9..94e5093fb5f 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg index f2bb237ea22..46375505423 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg index f6780fbded2..655e7227dbe 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg index 6e726932a6f..bae5a7326cb 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg index 7ef50ff5b13..40459d1d722 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg index 4d4af1e0f7f..d806f76fb34 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg index 0d88c99c856..896a30bb3ed 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg index de476e6e46b..cfdce044583 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg index 3fe7ff347cc..e3056b27542 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg index 9dd3039b65e..8e1a6328324 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg index 346f33bafb5..69af5bce389 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg index 8571e8c4b02..0df714452eb 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg index 4231e1b3a14..da5e04fe607 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg index c141a0ab079..b16348cc77d 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg index 9cd4262c552..1594c7862c9 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg index 6f49ec9e3bf..f0eacc13ae7 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg index 415379417c3..cf3426952c5 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg index c4ce86563fa..3b281372406 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg index dc4505591f1..444d8edb541 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg index 224fa18cd6a..43f3672bd5d 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg index 44737981b04..57328d0b758 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg index 8bf71b5cf5f..78f773a4d52 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg index 3102afdc2c9..e4fbbaacdd2 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg index ad6e3615825..88ffcba8f06 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg index b7445aee864..2cff0f12eb0 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg index cc849df9bac..93b086eb72a 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg index 10cbd3a4cf2..a5045af80b5 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg index 055bbb76239..fce8e2a6f59 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg index 028586beb47..fd63382cad0 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg index 8bc0b97bc58..4bb693a89b4 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg index ec355cec15a..e3c73b2f18f 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg index 3ab4df020ca..30d829153f8 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg index 455cb44a7b1..3a1e9db7293 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg index 3475c621c3b..7d398914b5b 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg index d7d937fdefd..16198bfe8f7 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg index e83067bdc8a..66a6d4f69a7 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg index 188cddf0d6d..65c4d78b549 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg index 6127c2ec434..54e73194576 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg index ca38be0476c..cdb73084688 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg index caa9003cb3d..867b4a8f4dc 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg index a10cbdac7d1..8fa93b32136 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg index 85fe174e950..a4d6bc24108 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg index 9b48be1b8b3..b95282909de 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg index 0440a0a34a7..737432c653b 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg index 7f124ae4ece..542a7b33057 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg index f662c410485..d9209eca425 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg index dae0dda0981..fae31ae3bd6 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg index 1079c746ecc..940064d2daa 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg index 04991249e9f..4afc1c4fa66 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg index 685778f3f14..07028500c39 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg index ab5eca1d474..a6e3798cfbd 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg index a5a2addbc6e..cc48cc71b7d 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_nylon_1030 quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg index 6ecc9a32650..4171f8070ff 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg index 9e060959ddc..1b628fe5e9a 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg index 322d30a975e..b6a063f3a0d 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg index 5ae6c32cb89..ed6f453beed 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg index 3fbe1f63708..396a85ba310 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg index 46aacdf22ca..a3ac4e486ba 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg index 6997dae536c..3b4b044ac2c 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg index 70bb7206af0..882513bcf12 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg index eb89937deda..0447cf7a929 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg index 4bc567a2d91..413c4fdc726 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg index f08c2e68b74..f1c19a14e4a 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg index 4a9a1472b8e..389fad00085 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg index 41edbc8e328..5c3cdf0f7b9 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg index 10356ad3448..151d368a514 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg index 9f04791ac2a..40738389b68 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg index 56e09ac385a..a44146afe5c 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg index 6c8a5462aa6..68b40d7efa7 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg index be4a045e0d8..34ed767222e 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg index 6b107e9c9bd..cb9446d6c16 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg index ca169572b9b..ef790cc9cad 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg index 7e7a3ed9d11..4ec7d54c1d2 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg index a08e251fe01..262f7960069 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg index 2bcf4d4b1d3..fa9670fe18d 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg index 1352a75a8ab..426b7a2c924 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg index ad699959aac..c34110f8358 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg index 6fdabc1a83e..1764c18e024 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg index 1954931cc71..b4287caadd6 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg index 913af1994be..92968b1bd9b 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg index 573834fc791..78a1f472972 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg index 3d5d1781ae4..097c944cc75 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg index 4910a692729..0598a06be0b 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg index 28d395019a5..cdab1d39a93 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg index b91ceb1f851..98b4d3ee1ba 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg index 4a32ddceaf2..503f07b8894 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg index e45a8970f76..e3b485240c7 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg index c0a9632b95b..2a71e9bddb4 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg index bce7e2891fd..39a078103e8 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg index 0a053f123ea..77fd69de9f6 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg index 4f167ecacc9..80938dbebb7 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg index 8efea7e2640..546f6e4c5ff 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg index d2f6973da76..74f6b45b41d 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg index 57e9fc27a4d..a5621900e9d 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg index 2ef4a5b4794..774c1be097d 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg index a7549a851cd..c4a8b055596 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg index 322f31e9863..27fa20a3988 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg index 6f3fa578bff..943b12b2f49 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg index ee3166e7da1..db502df5753 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg index 05eabcc6a32..03d094cd274 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg index d10b2df53be..53f876c5470 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg index 181d89f9579..3e19a67a138 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg index 38bd72884bf..9dc86fee905 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg index d8b2e660fc8..cc6f751c769 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg index c39338eeca8..589eca1b89f 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg index f88eff16151..5760889bf85 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg index 59a6db473db..c6f23011848 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg index 9a94498b121..5d17c760af1 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg index 2611e1deba9..80c89a7f39e 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg index 35644e47a87..98f3963ec7d 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg index a820dd84676..a0a004afdb8 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg index a4f135a4fae..4967bae5e15 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg index ee58caf9e6d..22cfb59bb82 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg index 6399e7fd1fb..25ebbb19909 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg index e034d49e6e9..9d2e69d0dfc 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg index 632c45a51ff..99a0803d8dd 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg index e882d420151..8921b8b8d79 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg index 7b52c7bb2d8..167fddbf0bc 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg index a0fcdc4a520..09c2aac6a19 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg index 496e5fe2159..82322be5464 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg index 9c676c934bc..252afdeae48 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg index 0b4c3c02811..191d6ffa8ed 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg index ffbb925a229..b43d80d4754 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg index 60af5617e3b..3771f389fd7 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg index 71581b46adc..2cc8e0a30a9 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg index bcbb45062ad..f5e18a93c3d 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg index 827ae4a7ba7..4b5fed9eb48 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg index 29f88f6e15d..cd61c020c5b 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg index 316e5d4447b..200856ca53b 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg index 44203ad144b..a5a3bf83387 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg index e322951476c..96f4b453f99 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg index b4ee9ea9852..cd323aeba09 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg index 708896fdb76..11a27b4fe9e 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg index 63ca3d88ff4..d2b524f3f88 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg index 62ed1914db1..0eaf98e1edd 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg index ac9ec6324e8..9a5f413f85d 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg index b225d8a9112..4dafe54befc 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg index 6e859c8dd04..31111b81480 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg index 6b8ebd9d203..71afad27076 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg index f168d4cf46c..2b8a49811ff 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg index 652876d6b23..1a6d68f6c4d 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg index 482b99c2f60..b2344359282 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg index 551e79a8e48..4ec41d2355e 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg index 57097361478..30ea3d02d9a 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg index 38f3b2b2efe..7173ee3c7d0 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg index 54a6d54cc03..6de97c18b82 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg index abdd37d98da..d7f6693d6f1 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg index 50f3b04e16f..4b6b9e08294 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg index 35e9d199577..a7654a552b4 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg index 6e59384a4d6..375aa70df2b 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg index 9df5f69d750..1c09546eb0c 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg index 45b5a9e4153..7d6239044bc 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg index 70ec1234ff3..d4c2a21dbeb 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg index 63275020274..052cccc4a89 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg index d7056a3f110..3f391c093af 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg index a5ec67621f1..0cae1d52781 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg index 4ddc98ddd2f..e6bd01e7066 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg index 1b3a77ab8b0..0dbffd8dce3 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg index be45c084a56..0dbc2576c4c 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg index c02401c4d5f..11b4408a82d 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg index ba91c749d5d..719d0a9c25f 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg index b1d4c72a345..41a4d1a39f5 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = g -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg index 4fac7e687d8..a9ffd2a459a 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = h -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg index 91b4699598a..fc51245d79a 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg index 8d84bc4fd5d..995ad827b9e 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = g -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg index eafe3eef80e..415f3239ccd 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = h -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg index 3286e7fb083..7328f90a50d 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg index bb164bcd99e..80b17899dd9 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = g -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg index 82ad174a959..5a9511c1a67 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = h -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg index f33abf1ec39..2bf9153b930 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg index 2edb0e32f89..ef96f0aa6af 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = g -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg index 30d7139eb91..da4a8109800 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = h -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg index 1bf36453d18..73ff310e2ae 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg index f413dd3e17b..531a5ddb27e 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = g -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg index 9b228f7b05d..33fe8835606 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = h -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg index 68c8604a95a..a583a7eb465 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg index 66fc7c2f92e..266a3fa223b 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = g -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg index aceba867c23..c833fe412b5 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = h -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg index a34c3a4d45e..4fe456849bc 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg index bd41a808d04..01052c90ae4 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = g -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg index 6036150353b..cd68c8c9006 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = h -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg index c150380c74b..fe304f4e541 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg index 74ce8559d2a..67afd44b647 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = g -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg index f59b68f675a..c638766b261 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = h -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg index 689c1fe0764..3ff175b6a06 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg index 514cdcbfde2..a5f351c529b 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = g -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg index 123dc9a953d..125f19d66f7 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = h -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg index 9c3f620a2d1..071677014ed 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg index 0b841dfb095..ad354adb14f 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = g -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg index adfe8161258..1a1de5bb233 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = h -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg index 4b6108e51d2..911194c25ca 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg index 99af35534f2..c8d9145ada8 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = g -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg index 21043cae581..84e86ffd056 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = h -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/s3d_global_A.inst.cfg b/resources/quality/strateo3d/s3d_global_A.inst.cfg index 08f68b9b72a..0e1f915c0a6 100644 --- a/resources/quality/strateo3d/s3d_global_A.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = a -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_B.inst.cfg b/resources/quality/strateo3d/s3d_global_B.inst.cfg index 0b73e60e398..6396711afa9 100644 --- a/resources/quality/strateo3d/s3d_global_B.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = b -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_C.inst.cfg b/resources/quality/strateo3d/s3d_global_C.inst.cfg index 86c88414eb5..6a15748bc38 100644 --- a/resources/quality/strateo3d/s3d_global_C.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = c -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_D.inst.cfg b/resources/quality/strateo3d/s3d_global_D.inst.cfg index 920b1d7be3a..0dd458dcc6b 100644 --- a/resources/quality/strateo3d/s3d_global_D.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = d -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_E.inst.cfg b/resources/quality/strateo3d/s3d_global_E.inst.cfg index d1ef4ba4f7a..3e17131bd75 100644 --- a/resources/quality/strateo3d/s3d_global_E.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = e -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_F.inst.cfg b/resources/quality/strateo3d/s3d_global_F.inst.cfg index db43ee80a00..52a679028f2 100644 --- a/resources/quality/strateo3d/s3d_global_F.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = f -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_G.inst.cfg b/resources/quality/strateo3d/s3d_global_G.inst.cfg index 0cdde5f1ed1..2f8e5e1da40 100644 --- a/resources/quality/strateo3d/s3d_global_G.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = g -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_H.inst.cfg b/resources/quality/strateo3d/s3d_global_H.inst.cfg index 4afd076d213..8321feb52f6 100644 --- a/resources/quality/strateo3d/s3d_global_H.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_A.inst.cfg index 58c36757a76..36a56da7a36 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_B.inst.cfg index 684ea1e890b..cb85d768d4a 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_C.inst.cfg index fff0d3574f8..153b559376e 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_A.inst.cfg index 0ec67493966..de62bfb3a0b 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_B.inst.cfg index bf36578ddca..1628085b6bf 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_C.inst.cfg index 2c46ffa61f3..64ce3c53f99 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_A.inst.cfg index 8ed5aba9107..4fd837f5799 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_B.inst.cfg index 6dec22352a0..82b987e3e47 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_C.inst.cfg index 8be53b349d8..da992e9d55c 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_A.inst.cfg index ff99c16678e..5d52be9c543 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_B.inst.cfg index b1ad54d6b07..09f961d0182 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_C.inst.cfg index 0646030b215..bc0aa98914a 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_A.inst.cfg index fd5b9c19d6f..2d8139af887 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_B.inst.cfg index 056da8135a3..73f6643cb0e 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_C.inst.cfg index 452bc218988..8c6ea9c565f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_A.inst.cfg index 388fad3168b..800247fa002 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_B.inst.cfg index c3f96c9bb9c..14d4c1265dd 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_C.inst.cfg index 8c7691dbdba..1dd2a3f339a 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_A.inst.cfg index 7dab9a053ae..a48122d0ffd 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_B.inst.cfg index d2b48b53b03..5d3fddf6bf3 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_C.inst.cfg index db7b16192f5..3916aec06b8 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_A.inst.cfg index 69a81b00915..1cfdb072d97 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_B.inst.cfg index 47c0152128f..915faa0e57a 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_C.inst.cfg index 9dd44c03bec..c5fddef5f75 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_A.inst.cfg index 79539b003cb..b6dac973520 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_B.inst.cfg index 4ce28663953..af7be4076ef 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_C.inst.cfg index 93a8299a5bd..455bb6516aa 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_A.inst.cfg index 3cc2e16b1e6..c3196139066 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_B.inst.cfg index ece42a52745..663d3bc141e 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_C.inst.cfg index c58920e59c8..ee7ec5a49b7 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_A.inst.cfg index 2f488482886..32b094a926b 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_B.inst.cfg index 29e117bf293..7d02f484336 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_C.inst.cfg index e4586e8ad10..e0e3f0950d0 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_A.inst.cfg index 8ae61efbff4..cec4307927d 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_B.inst.cfg index 709ec5e8d65..cd312783b10 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_C.inst.cfg index 9d523315c6c..fcf85e5354f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_A.inst.cfg index 3995a4ba50b..d8fa6154d30 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_B.inst.cfg index 99cb933de4b..d3c0b763c13 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_C.inst.cfg index aee5cd3365d..9ce83b7567c 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_A.inst.cfg index 122e430241c..aacd51cfa45 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_B.inst.cfg index 75f331d4980..8d4b467382d 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_C.inst.cfg index 4e7684afbfc..ba1e050fad0 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_A.inst.cfg index 073a39a5a75..78ecc50944f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_B.inst.cfg index b5bc5e4ca4e..af98bbe9e31 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_C.inst.cfg index 64dd1671a00..a57dbad5b7e 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_A.inst.cfg index b475aff0fb3..dde68982592 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_B.inst.cfg index 0668a25edf5..1d9a21f7d53 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_C.inst.cfg index 8b08564904b..f9b8ba9c39b 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_B.inst.cfg index d89b15af640..74ec0b720a7 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_C.inst.cfg index b924a98a97c..04b04f9c3eb 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_D.inst.cfg index e779680a8d7..43b2d9776fb 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_B.inst.cfg index 972ef73de39..a0e25f72078 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_C.inst.cfg index 98fd5bc9181..ddfc162cf90 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_D.inst.cfg index c4e58365680..976eb26ce68 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_B.inst.cfg index 3310f63f5e7..15662bb5d01 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_C.inst.cfg index a9060e57079..f50c4e5d109 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_D.inst.cfg index 53825b850e0..2d2e7d57602 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_B.inst.cfg index 52672102746..0593e108d53 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_C.inst.cfg index 636b6883a96..c6197bb4774 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_D.inst.cfg index e26c6dfdd56..b4f7eac10b1 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_B.inst.cfg index 1aae63778e9..919eae54820 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_C.inst.cfg index 9ebf3b84943..b80de309cb4 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_D.inst.cfg index d79ebb8bbc6..f59791b3b9b 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_B.inst.cfg index 23bb6cf1765..4f7c5ede442 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_C.inst.cfg index eb601b4fd21..5b6ae2d0a00 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_D.inst.cfg index 03c1b935b4b..6ccd25b1d14 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_B.inst.cfg index dd8b77a418f..f5dc7fccdbd 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_C.inst.cfg index 7f554643ce6..9c2eea2718d 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_D.inst.cfg index 61d6a4c82c0..c0a166d66ac 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_B.inst.cfg index 7401461a7d8..e3020b574ca 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_C.inst.cfg index cf3ce523d11..369d563c2fe 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_D.inst.cfg index 5c216aaf821..ba40fe5e033 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_B.inst.cfg index bee1d3cbd8e..dcfc8410faf 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_C.inst.cfg index c23d9b7c222..9bf4670d6d7 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_D.inst.cfg index 84fbde1361c..b16e9a61a74 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_B.inst.cfg index 128f9247644..bff5c6084b4 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_C.inst.cfg index 69fd62c4898..75c22ed7133 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_D.inst.cfg index cc328f066b8..8e7fa092df0 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_B.inst.cfg index 0061e3d9ffa..a08f7f3c3c7 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_C.inst.cfg index 46bd6f0b04c..8aabb6d17ec 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_D.inst.cfg index 424b231c4d0..838c32a83d5 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_B.inst.cfg index f725301738f..3b0b01c1471 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_C.inst.cfg index ee05814302f..094c7917cae 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_D.inst.cfg index 90b40173a14..214db30e47d 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_B.inst.cfg index 1615bd64703..79049032575 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_C.inst.cfg index 3f05d9d6dd9..263716d6bce 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_D.inst.cfg index 740270860f8..43ba181c200 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_B.inst.cfg index e1a65d86271..9a995b15294 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_C.inst.cfg index 770688049e5..c325e4a74c7 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_D.inst.cfg index 0391fe35d42..ac4a1c4e193 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_B.inst.cfg index 589bb2edf3e..daa23def109 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_C.inst.cfg index 7ade544cfc4..08e8a6e78cf 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_D.inst.cfg index f9c214dca6a..5d06e3d2db2 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_B.inst.cfg index 765d8268592..352904ad15a 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_C.inst.cfg index 32187c56562..2e447e96388 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_D.inst.cfg index 2b4b07a64d3..b34912e03ee 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_C.inst.cfg index 178c3afb7ba..7be3e6e4f1b 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_D.inst.cfg index 8284fdd78cc..b97f23a7ce8 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_E.inst.cfg index fd6d4c2a57a..4063b36131a 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_C.inst.cfg index ea7f006c040..0b68f3e4d25 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_D.inst.cfg index 0e7825773f4..61c21d9d0dc 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_E.inst.cfg index 95029eb7b0b..b37201dd298 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_C.inst.cfg index bb869612696..458b47de011 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_D.inst.cfg index 12a37141756..ad114d167d2 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_E.inst.cfg index 046d4100d70..02d29c0f243 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_C.inst.cfg index a120b342b3f..c8ff855a1f2 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_D.inst.cfg index df917dfdea3..0d6f5e4f019 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_E.inst.cfg index b1c3095438a..ecf49161dc2 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_C.inst.cfg index c0145e47645..e3eb6c6bc81 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_D.inst.cfg index a6cdd1d0030..af21c2aa449 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_E.inst.cfg index 813e6d3f692..dbe1833889e 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_C.inst.cfg index a7908dbe64e..38084b916cd 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_D.inst.cfg index 99d791e0459..16ee0c27b46 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_E.inst.cfg index 51e472a6855..60393cf4303 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_C.inst.cfg index 75e01a3018f..39970acd1d9 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_D.inst.cfg index 35e4abeff86..91b94f6131f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_E.inst.cfg index a872a95bcde..2cb4d417948 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_C.inst.cfg index 5574d939318..0f29dec3089 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_D.inst.cfg index 67ea5ae6717..518c53ee18f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_E.inst.cfg index 1e4e6ad644f..c6b41e53c21 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_C.inst.cfg index b6d13637c42..3be87a45b3b 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_D.inst.cfg index 29c8b16abe1..f04c331621f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_E.inst.cfg index 742b61c4396..1a4766dfa11 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_C.inst.cfg index dfdf706e1c8..e0de41cf946 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_D.inst.cfg index 134c221bd0b..e71f50e7c5f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_E.inst.cfg index 2c91ff7e0b9..aec52859fa0 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_C.inst.cfg index eb8c192c238..a8059b82eba 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_D.inst.cfg index bbee484d447..19b8a9213a6 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_E.inst.cfg index 7826680ac11..09d2f59acf9 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_C.inst.cfg index b350f79905d..cc43097e850 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_D.inst.cfg index cc6992ff79c..d949cfb2bc0 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_E.inst.cfg index 194734ac100..0e033e1254d 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_C.inst.cfg index 8d7f260d5a3..aca1b80e06f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_D.inst.cfg index 3aae36e48b9..ce791391e86 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_E.inst.cfg index 3efe15f6a2a..d9d47dfa898 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_C.inst.cfg index ff1d50c5ff0..fb69f050ecb 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_D.inst.cfg index 4f84aba8466..4ecd5bf3ee4 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_E.inst.cfg index d75aac9adde..cbdb6b63a5d 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_C.inst.cfg index 841ee6d98e8..9f9ad2c452e 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_D.inst.cfg index 0114631ae78..dd4b2ee64f5 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_E.inst.cfg index 08fa95d0225..023b51a264c 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_A.inst.cfg b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_A.inst.cfg index 54cca88813e..be55a9e69d5 100644 --- a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = a -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_B.inst.cfg b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_B.inst.cfg index aa2ff4be20e..e29b6fd63e6 100644 --- a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = b -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_C.inst.cfg b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_C.inst.cfg index 942026ea173..3edca642373 100644 --- a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = c -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_D.inst.cfg b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_D.inst.cfg index 0dcff6a21b4..c06e0cc24e7 100644 --- a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = d -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_E.inst.cfg b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_E.inst.cfg index b9bc0b995a1..a45e360a41c 100644 --- a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = e -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/tank_m_base_global_draft.inst.cfg b/resources/quality/tank_m_base_global_draft.inst.cfg index 6abdba29009..cef3e3ced61 100644 --- a/resources/quality/tank_m_base_global_draft.inst.cfg +++ b/resources/quality/tank_m_base_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/tank_m_base_global_high.inst.cfg b/resources/quality/tank_m_base_global_high.inst.cfg index e1e4f399f0c..bc065a8dea9 100644 --- a/resources/quality/tank_m_base_global_high.inst.cfg +++ b/resources/quality/tank_m_base_global_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/tank_m_base_global_standard.inst.cfg b/resources/quality/tank_m_base_global_standard.inst.cfg index de2d1f2e885..4683900a0ad 100644 --- a/resources/quality/tank_m_base_global_standard.inst.cfg +++ b/resources/quality/tank_m_base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg b/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg index a31fbff4ea0..e1f33a089f3 100644 --- a/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg +++ b/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg b/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg index 91c465b4d8f..c7ed7e6c0bf 100644 --- a/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg +++ b/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg b/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg index 1088370d87f..5a932c92619 100644 --- a/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg +++ b/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg index 903b5e3c689..47a22b00b76 100644 --- a/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg b/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg index 83196dbbdcb..dbb15a5989b 100644 --- a/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg index 0f5974d5b56..4f9b30b4cd4 100644 --- a/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg index 2ded3ececed..cb330750518 100644 --- a/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg b/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg index 043b250cb9c..b762c33c229 100644 --- a/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg index d129c14f75f..2ccf5b7d44f 100644 --- a/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg index 96c0d5dd7fa..6a88be57882 100644 --- a/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg b/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg index 61e8ed738cd..1b8fb99784d 100644 --- a/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg index d7675bd700c..33ee02b57f0 100644 --- a/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg index ada9873b4cc..61f7512585c 100644 --- a/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg b/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg index 1b234761f79..30a7ffc3ade 100644 --- a/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg index 4aa5dce88ef..0ed612e0904 100644 --- a/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.2_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.2_abs_high.inst.cfg index 58ded90e057..bb031de52f5 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.2_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.2_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.3_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.3_abs_high.inst.cfg index c260d1e9f1d..7dd86d45d76 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.3_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.3_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_high.inst.cfg index 8777efd32a7..1546674bb1b 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_normal.inst.cfg index eb0c65762c9..bcf8f4c3d98 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_draft.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_draft.inst.cfg index 63653459472..e4af6949cc2 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_draft.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_high.inst.cfg index e6e9ba3566b..768d5f9579a 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_normal.inst.cfg index b3993d94241..6637c178ad7 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_coarse.inst.cfg index fdcdf800c1c..f2c201ff556 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_high.inst.cfg index 88c57d40d55..248f84b5f1f 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_normal.inst.cfg index 0fe0aa16e62..37989390f4a 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_extra_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_extra_coarse.inst.cfg index 7c3a01d73f9..9d1e1f59fd1 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_extra_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_high.inst.cfg index 98f44465c7f..c65d8c98782 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_normal.inst.cfg index bfa6caefdf6..45c48af06f2 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.2_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.2_flex_high.inst.cfg index 680bb1a0fb9..47651b2269c 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.2_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.2_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.3_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.3_flex_high.inst.cfg index 7c6f8424dff..40fb2db3d5c 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.3_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.3_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_high.inst.cfg index 0350280e03b..1d72ea51983 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_normal.inst.cfg index 75e19fcb227..663e4e31842 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_draft.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_draft.inst.cfg index 70a5265943e..af5f4ec3031 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_draft.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_high.inst.cfg index 0ae0bca17e5..dc11ed84302 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_normal.inst.cfg index 11421a756f0..1242c06515d 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_coarse.inst.cfg index a66f43a83c9..f606252f9be 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_high.inst.cfg index f2fb5acade1..2a12a43b1fd 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_normal.inst.cfg index 692ad776fa4..585bde78eb1 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_extra_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_extra_coarse.inst.cfg index bbcecf09bdb..f5f27a16543 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_extra_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_high.inst.cfg index 58000887444..c747105ca0b 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_normal.inst.cfg index a0835937778..465321cb4a8 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.2_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.2_petg_high.inst.cfg index d8b71e65fdd..672fe535c33 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.2_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.2_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.3_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.3_petg_high.inst.cfg index ad526006c1c..271518a4f0c 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.3_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.3_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_high.inst.cfg index 4d1c68c0cb3..4ead3de6429 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_normal.inst.cfg index 78a7161a0cd..8eeb7f7a52e 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_draft.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_draft.inst.cfg index 63a5a544423..6b8ac3bd49a 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_draft.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_high.inst.cfg index aa03c022e49..d4be9496911 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_normal.inst.cfg index 5249770cd5f..ad46ffef48d 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_coarse.inst.cfg index 9dd447e4b97..768c13565f2 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_high.inst.cfg index 723810f2597..5cf3c2d17a4 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_normal.inst.cfg index e330599e954..1d2acf0f101 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_extra_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_extra_coarse.inst.cfg index f440d62f4eb..556df18b046 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_extra_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_high.inst.cfg index c879afab1a3..136f1ad6115 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_normal.inst.cfg index 6d66a27ba62..8c1d96f8f7f 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.2_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.2_pla_high.inst.cfg index 74c52259691..69b8c484b60 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.2_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.2_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.3_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.3_pla_high.inst.cfg index 4de0362205a..e159697c87a 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.3_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.3_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_high.inst.cfg index 5538c370a1a..6f684c07774 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_normal.inst.cfg index a0973bf8dad..b4db252214b 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_draft.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_draft.inst.cfg index fd5fffa8d3b..2ff8f1d568b 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_draft.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_high.inst.cfg index bdf0744d98f..1c197ce362e 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_normal.inst.cfg index ca101ab2d11..30cc3f891e9 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_coarse.inst.cfg index 858f3652432..572bf4075c6 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_high.inst.cfg index d3bb7b6356d..0ff7992da6f 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_normal.inst.cfg index 3211dce29d6..022d6b12f86 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_extra_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_extra_coarse.inst.cfg index a714b854f64..1c13a45be77 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_extra_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_high.inst.cfg index 5898b5e489a..0e40bf105df 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_normal.inst.cfg index 1fe84981329..1dccc444104 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.2_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.2_pla_bois_high.inst.cfg index e754ccb09d0..bc15310d38d 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.2_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.2_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.3_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.3_pla_bois_high.inst.cfg index 75bb872ce2e..f4b1fcaa68d 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.3_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.3_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_high.inst.cfg index e95a76ed32b..8846800d5b5 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_normal.inst.cfg index 7f94a12b2e5..c7b91a24f26 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_draft.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_draft.inst.cfg index 578f8fa05f0..fd242ebf1f4 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_draft.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_high.inst.cfg index 56fce96cd2e..65ee5e4060f 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_normal.inst.cfg index e5e88e8ae4b..bc7192956e0 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_coarse.inst.cfg index 17ad78b0fd5..5aa2a1f7a67 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_high.inst.cfg index 7ba4b036847..b0f80e31957 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_normal.inst.cfg index f91dbbfe7b4..068b46b819f 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_extra_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_extra_coarse.inst.cfg index c51ec6a0e28..c1cb3a139a8 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_extra_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_high.inst.cfg index 708f9fc4e4f..71ba1402116 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_normal.inst.cfg index 7bae46e4405..22df55ae9b0 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Coarse_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Coarse_Quality.inst.cfg index 04200159685..26d51f40488 100644 --- a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Coarse_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Draft_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Draft_Quality.inst.cfg index b053d40c3fc..e3678d65868 100644 --- a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Draft_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Extra_Coarse_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Extra_Coarse_Quality.inst.cfg index 2b4f910fbe2..4250674bf72 100644 --- a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Extra_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_High_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_High_Quality.inst.cfg index da986991675..68366636d1f 100644 --- a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_High_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Normal_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Normal_Quality.inst.cfg index 69115bd494f..65f4a62d9fd 100644 --- a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Normal_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_high.inst.cfg index 4e31f68f2e5..f6ed38a7da2 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_normal.inst.cfg index 337ab660922..ce05cbd1174 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_high.inst.cfg index dc4b03b0010..d1ffc8dee00 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_normal.inst.cfg index b2ac3e69160..90f7f5cafa9 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex.inst.cfg index a98abac5fe3..6ebac449ebc 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex_only.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex_only.inst.cfg index 2e1e59e3858..ecfc90bb0c3 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex_only.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex_only.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = -3 diff --git a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex.inst.cfg index adc6a856cfb..597857775ac 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex_only.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex_only.inst.cfg index 98f8c2182bd..0ab7ebeb7eb 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex_only.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex_only.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = -3 diff --git a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_high.inst.cfg index 74d9ab12fc9..0a8fa2560b7 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_normal.inst.cfg index 1c74e11b166..fa840bb04c8 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_high.inst.cfg index 4fa73cebf87..af5985fa287 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_normal.inst.cfg index 3bc2c217125..c210e1067ce 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex.inst.cfg index cf53d203e2b..4c72239702d 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex_only.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex_only.inst.cfg index 600e5d6d0fa..6552f1b786b 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex_only.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex_only.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = -3 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_high.inst.cfg index 59bcd138e57..6f8a31a5cc0 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_normal.inst.cfg index 455511c62b2..6ffc6af7555 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_pva.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_pva.inst.cfg index bd9b25a105e..b92564848a0 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_pva.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_pva.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex.inst.cfg index f7bd6efbfc6..49b7a3b4864 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex_only.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex_only.inst.cfg index 3c11299e67d..e1fc378b867 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex_only.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex_only.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = -3 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_high.inst.cfg index e401945530d..4ef60bbf984 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_normal.inst.cfg index 00dd53f7614..c65cacdd691 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_pva.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_pva.inst.cfg index f3f50b52741..978d1b8312c 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_pva.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_pva.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_flex.inst.cfg index 3ba99d0a170..1c212d6e557 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_high.inst.cfg index 14915a0d75d..fdf65404541 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_normal.inst.cfg index d47c3df97df..8d02a10d4d2 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_flex.inst.cfg index c22bbec0660..9b067c6d5f4 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_high.inst.cfg index 23bb58ea7a7..6895181f485 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_normal.inst.cfg index 562a39da4c2..c616a33dadc 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_classic_pva_pva.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_classic_pva_pva.inst.cfg index c9b82c8587a..b9c6f1305d9 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_classic_pva_pva.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_classic_pva_pva.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_direct_drive_pva_pva.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_direct_drive_pva_pva.inst.cfg index b1a96c0321d..6ceadf98aab 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_direct_drive_pva_pva.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_direct_drive_pva_pva.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg index ac5f3e5bee7..e54e67f8a8a 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg index eca85becc64..1bd2947b6a0 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg index 8071d7193e5..2a7f08d04cf 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg index 8354fba5e09..04565fcfdb8 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg index 074632abda3..61b931dcceb 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/tizyx/tizyx_k25/tizyx_k25_high.inst.cfg b/resources/quality/tizyx/tizyx_k25/tizyx_k25_high.inst.cfg index 50608d4be08..9ba18d70e8c 100644 --- a/resources/quality/tizyx/tizyx_k25/tizyx_k25_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_k25/tizyx_k25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/tizyx/tizyx_k25/tizyx_k25_normal.inst.cfg b/resources/quality/tizyx/tizyx_k25/tizyx_k25_normal.inst.cfg index 86dcd154ed6..7a8b36873c2 100644 --- a/resources/quality/tizyx/tizyx_k25/tizyx_k25_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_k25/tizyx_k25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_fast.inst.cfg b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_fast.inst.cfg index 21edbe28090..76eb3991eee 100644 --- a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_fast.inst.cfg +++ b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_normal.inst.cfg b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_normal.inst.cfg index 0bd8bb63643..48124047b08 100644 --- a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_normal.inst.cfg +++ b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_slow.inst.cfg b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_slow.inst.cfg index 8df81f55f8f..9f3b21318e6 100644 --- a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_slow.inst.cfg +++ b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_slow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = slow -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/trimaker_nebula/trimaker_nebula_fast.inst.cfg b/resources/quality/trimaker_nebula/trimaker_nebula_fast.inst.cfg index 9a5124e4fc0..86ebed427dd 100644 --- a/resources/quality/trimaker_nebula/trimaker_nebula_fast.inst.cfg +++ b/resources/quality/trimaker_nebula/trimaker_nebula_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/trimaker_nebula/trimaker_nebula_normal.inst.cfg b/resources/quality/trimaker_nebula/trimaker_nebula_normal.inst.cfg index cd7f01f5cac..2f56f89d6c0 100644 --- a/resources/quality/trimaker_nebula/trimaker_nebula_normal.inst.cfg +++ b/resources/quality/trimaker_nebula/trimaker_nebula_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/trimaker_nebula/trimaker_nebula_slow.inst.cfg b/resources/quality/trimaker_nebula/trimaker_nebula_slow.inst.cfg index b88d621681d..cbaf24020b9 100644 --- a/resources/quality/trimaker_nebula/trimaker_nebula_slow.inst.cfg +++ b/resources/quality/trimaker_nebula/trimaker_nebula_slow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = slow -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/tronxy/tronxy_0.2_ABS_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.2_ABS_extra.inst.cfg index 34f9e3e47ce..58c5c5a99cf 100644 --- a/resources/quality/tronxy/tronxy_0.2_ABS_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_ABS_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_ABS_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.2_ABS_fine.inst.cfg index 3e3f8912d2a..07590e6220c 100644 --- a/resources/quality/tronxy/tronxy_0.2_ABS_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_ABS_super.inst.cfg b/resources/quality/tronxy/tronxy_0.2_ABS_super.inst.cfg index c16174957a1..65b78d75e3d 100644 --- a/resources/quality/tronxy/tronxy_0.2_ABS_super.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PETG_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PETG_extra.inst.cfg index 06b8c01db17..db26f43e1c7 100644 --- a/resources/quality/tronxy/tronxy_0.2_PETG_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PETG_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PETG_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PETG_fine.inst.cfg index 10397a2b5b8..2e8907d03d2 100644 --- a/resources/quality/tronxy/tronxy_0.2_PETG_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PETG_super.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PETG_super.inst.cfg index d9f6d69c14e..f4435399795 100644 --- a/resources/quality/tronxy/tronxy_0.2_PETG_super.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PLA_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PLA_extra.inst.cfg index 204eca3683a..a9f594e3383 100644 --- a/resources/quality/tronxy/tronxy_0.2_PLA_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PLA_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PLA_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PLA_fine.inst.cfg index 5929c712bda..258d1b24f7f 100644 --- a/resources/quality/tronxy/tronxy_0.2_PLA_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PLA_super.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PLA_super.inst.cfg index f63750d7322..3ea6f759b6c 100644 --- a/resources/quality/tronxy/tronxy_0.2_PLA_super.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_ABS_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.3_ABS_extra.inst.cfg index 246ad7a8de0..76d849144a7 100644 --- a/resources/quality/tronxy/tronxy_0.3_ABS_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_ABS_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extra -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_ABS_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.3_ABS_fine.inst.cfg index 2bfaa59e9cf..38d0d5a70e0 100644 --- a/resources/quality/tronxy/tronxy_0.3_ABS_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_ABS_low.inst.cfg b/resources/quality/tronxy/tronxy_0.3_ABS_low.inst.cfg index 1a667797bf7..cf315d03117 100644 --- a/resources/quality/tronxy/tronxy_0.3_ABS_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_ABS_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.3_ABS_normal.inst.cfg index c1b7c0eeeb6..b2a9e832625 100644 --- a/resources/quality/tronxy/tronxy_0.3_ABS_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PETG_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PETG_extra.inst.cfg index 168ee1f9c30..a00e734a4b8 100644 --- a/resources/quality/tronxy/tronxy_0.3_PETG_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PETG_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extra -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PETG_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PETG_fine.inst.cfg index f5a4fff0a22..e31eb16a159 100644 --- a/resources/quality/tronxy/tronxy_0.3_PETG_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PETG_low.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PETG_low.inst.cfg index 848f6d60de9..b34e2562251 100644 --- a/resources/quality/tronxy/tronxy_0.3_PETG_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PETG_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PETG_normal.inst.cfg index 8a9cb9d96f6..9b584799681 100644 --- a/resources/quality/tronxy/tronxy_0.3_PETG_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PLA_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PLA_extra.inst.cfg index 9d8c29d1800..fba79329755 100644 --- a/resources/quality/tronxy/tronxy_0.3_PLA_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PLA_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extra -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PLA_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PLA_fine.inst.cfg index e25434749ff..7eeb5abb50f 100644 --- a/resources/quality/tronxy/tronxy_0.3_PLA_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PLA_low.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PLA_low.inst.cfg index 21afc0841a2..0aaf3070a27 100644 --- a/resources/quality/tronxy/tronxy_0.3_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PLA_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PLA_normal.inst.cfg index 2d0dcac3095..0a5e9e57ec4 100644 --- a/resources/quality/tronxy/tronxy_0.3_PLA_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_TPU_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.3_TPU_extra.inst.cfg index 4f94115634b..03f0cf63170 100644 --- a/resources/quality/tronxy/tronxy_0.3_TPU_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_TPU_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = extra -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_TPU_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.3_TPU_fine.inst.cfg index 16118e491ae..0bb51ba7f51 100644 --- a/resources/quality/tronxy/tronxy_0.3_TPU_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_TPU_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_TPU_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.3_TPU_normal.inst.cfg index 4f685b96a6c..b5f0525693c 100644 --- a/resources/quality/tronxy/tronxy_0.3_TPU_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_ABS_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.4_ABS_extra.inst.cfg index 18781c647f1..0be7bc67dfd 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extra -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_ABS_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.4_ABS_fine.inst.cfg index 06de7617521..168f49e05f2 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_ABS_low.inst.cfg b/resources/quality/tronxy/tronxy_0.4_ABS_low.inst.cfg index e945ac01dda..e7404f37da5 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_ABS_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.4_ABS_normal.inst.cfg index 53e16d3f3d7..d57ac22096c 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_ABS_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.4_ABS_rough.inst.cfg index 154d97c11db..443e8e9163d 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PETG_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PETG_extra.inst.cfg index 6d37eec24bb..3c758b080f8 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extra -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PETG_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PETG_fine.inst.cfg index 197c0784e5a..e4e6fd325ac 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PETG_low.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PETG_low.inst.cfg index 2b74aef0eeb..3e521fe5cda 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PETG_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PETG_normal.inst.cfg index dc23c9ce868..50a6a063676 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PETG_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PETG_rough.inst.cfg index e66f4dbf3c6..7efc2925db9 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PLA_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PLA_extra.inst.cfg index 1c0e4292fb1..33c0dd9ed71 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extra -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PLA_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PLA_fine.inst.cfg index 972760e4af2..a9dec2ac7ca 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PLA_low.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PLA_low.inst.cfg index 5ba5b1aa7be..9d8eb29cbea 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PLA_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PLA_normal.inst.cfg index e587de7f49a..3eda4c53911 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PLA_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PLA_rough.inst.cfg index bc6e559bee4..cdb4c8589ec 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_TPU_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.4_TPU_extra.inst.cfg index 9e74cd5116f..c3b10bc011b 100644 --- a/resources/quality/tronxy/tronxy_0.4_TPU_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_TPU_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = extra -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_TPU_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.4_TPU_fine.inst.cfg index d688dc9c469..2f80a69cad0 100644 --- a/resources/quality/tronxy/tronxy_0.4_TPU_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_TPU_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_TPU_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.4_TPU_normal.inst.cfg index cea23b76f14..500654b95e8 100644 --- a/resources/quality/tronxy/tronxy_0.4_TPU_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_ABS_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.5_ABS_fine.inst.cfg index 729428a336a..868647065cf 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_ABS_low.inst.cfg b/resources/quality/tronxy/tronxy_0.5_ABS_low.inst.cfg index b68e94831e8..1bc97978847 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_ABS_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.5_ABS_normal.inst.cfg index e359ea1edc1..5afbc9a0368 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_ABS_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.5_ABS_rapid.inst.cfg index e23722aa77a..793faa0398e 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_ABS_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.5_ABS_rough.inst.cfg index ad66b902ec0..6aa3e37b5cd 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PETG_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PETG_fine.inst.cfg index 9a5899f57d7..8839464be8e 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PETG_low.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PETG_low.inst.cfg index daa17e9534a..a03fe406d63 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PETG_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PETG_normal.inst.cfg index e87962c3e20..0ab68afe6e1 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PETG_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PETG_rapid.inst.cfg index d2b41210084..66bb790b7bb 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PETG_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PETG_rough.inst.cfg index 387f81555c3..aee6a22475a 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PLA_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PLA_fine.inst.cfg index e2d4b0d54de..48b223905e5 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PLA_low.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PLA_low.inst.cfg index a9dd9837d2b..1e2b873e7f7 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PLA_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PLA_normal.inst.cfg index 023e0405370..c3702cdd9e6 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PLA_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PLA_rapid.inst.cfg index 2d539dd6b69..99060723629 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PLA_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PLA_rough.inst.cfg index 7c5eaddd0f9..dab3aaa4907 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_TPU_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.5_TPU_fine.inst.cfg index 9660d1dcf5b..34b0df7d1fb 100644 --- a/resources/quality/tronxy/tronxy_0.5_TPU_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_TPU_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_TPU_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.5_TPU_normal.inst.cfg index 5d11d343740..b6c1244dcb5 100644 --- a/resources/quality/tronxy/tronxy_0.5_TPU_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_TPU_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.5_TPU_rapid.inst.cfg index aaf808dd3b9..1cf6176e490 100644 --- a/resources/quality/tronxy/tronxy_0.5_TPU_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_TPU_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_ABS_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.6_ABS_normal.inst.cfg index 60586feecc2..86519d13051 100644 --- a/resources/quality/tronxy/tronxy_0.6_ABS_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_ABS_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.6_ABS_rapid.inst.cfg index e27b930641e..e8737441da1 100644 --- a/resources/quality/tronxy/tronxy_0.6_ABS_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_ABS_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_ABS_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.6_ABS_rough.inst.cfg index 1e7bb100639..c2f6ea5527a 100644 --- a/resources/quality/tronxy/tronxy_0.6_ABS_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_ABS_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PETG_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PETG_normal.inst.cfg index 607671c47f9..c60b6b7bc24 100644 --- a/resources/quality/tronxy/tronxy_0.6_PETG_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PETG_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PETG_rapid.inst.cfg index b905bd32414..627de7cadf2 100644 --- a/resources/quality/tronxy/tronxy_0.6_PETG_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PETG_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PETG_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PETG_rough.inst.cfg index 044a9d2a461..367597cad21 100644 --- a/resources/quality/tronxy/tronxy_0.6_PETG_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PETG_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PLA_low.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PLA_low.inst.cfg index 51300f1c931..725fcb20a76 100644 --- a/resources/quality/tronxy/tronxy_0.6_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PLA_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PLA_normal.inst.cfg index 4fa07b2983f..651ba5a4c98 100644 --- a/resources/quality/tronxy/tronxy_0.6_PLA_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PLA_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PLA_rapid.inst.cfg index 4189e2f030b..d8620b8ea97 100644 --- a/resources/quality/tronxy/tronxy_0.6_PLA_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PLA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PLA_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PLA_rough.inst.cfg index 96c304d9d3c..bfe7b1127bf 100644 --- a/resources/quality/tronxy/tronxy_0.6_PLA_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PLA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_TPU_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.6_TPU_normal.inst.cfg index b9d8782fa61..89dada6d6dc 100644 --- a/resources/quality/tronxy/tronxy_0.6_TPU_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_TPU_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.6_TPU_rapid.inst.cfg index 50b7ff3fba1..6901d8f5526 100644 --- a/resources/quality/tronxy/tronxy_0.6_TPU_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_TPU_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_ABS_low.inst.cfg b/resources/quality/tronxy/tronxy_0.8_ABS_low.inst.cfg index 42290b3be07..3177aa72da9 100644 --- a/resources/quality/tronxy/tronxy_0.8_ABS_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_ABS_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.8_ABS_rapid.inst.cfg index 137877259a5..23392e8790c 100644 --- a/resources/quality/tronxy/tronxy_0.8_ABS_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_ABS_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_ABS_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.8_ABS_rough.inst.cfg index 867d9d4bca2..4ccda304738 100644 --- a/resources/quality/tronxy/tronxy_0.8_ABS_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_ABS_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PETG_low.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PETG_low.inst.cfg index f55d6ea39ec..9e7e746430d 100644 --- a/resources/quality/tronxy/tronxy_0.8_PETG_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PETG_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PETG_rapid.inst.cfg index 87dcd771e59..d4ff0860ab7 100644 --- a/resources/quality/tronxy/tronxy_0.8_PETG_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PETG_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PETG_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PETG_rough.inst.cfg index cdce5257195..deda6a7f6ce 100644 --- a/resources/quality/tronxy/tronxy_0.8_PETG_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PETG_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PLA_low.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PLA_low.inst.cfg index 1696a160927..ccca511d6e6 100644 --- a/resources/quality/tronxy/tronxy_0.8_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PLA_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PLA_rapid.inst.cfg index 064cd8d1e74..17f2ce6c12c 100644 --- a/resources/quality/tronxy/tronxy_0.8_PLA_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PLA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PLA_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PLA_rough.inst.cfg index 2745bc4ddf5..b32fa4b71ef 100644 --- a/resources/quality/tronxy/tronxy_0.8_PLA_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PLA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_TPU_low.inst.cfg b/resources/quality/tronxy/tronxy_0.8_TPU_low.inst.cfg index 7705be45c1f..f1583a70d2e 100644 --- a/resources/quality/tronxy/tronxy_0.8_TPU_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_TPU_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_TPU_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.8_TPU_rapid.inst.cfg index 68cc7246f5d..a46ab470361 100644 --- a/resources/quality/tronxy/tronxy_0.8_TPU_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_TPU_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_TPU_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.8_TPU_rough.inst.cfg index 64290f624e3..b83c8b5efe2 100644 --- a/resources/quality/tronxy/tronxy_0.8_TPU_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_TPU_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_global_extra.inst.cfg b/resources/quality/tronxy/tronxy_global_extra.inst.cfg index 986c0383f7d..d11d1e39e8d 100644 --- a/resources/quality/tronxy/tronxy_global_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/tronxy/tronxy_global_fine.inst.cfg b/resources/quality/tronxy/tronxy_global_fine.inst.cfg index d5853d87037..1ee5b3d8568 100644 --- a/resources/quality/tronxy/tronxy_global_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/tronxy/tronxy_global_low.inst.cfg b/resources/quality/tronxy/tronxy_global_low.inst.cfg index e5ab0dc3a49..446fadfa8da 100644 --- a/resources/quality/tronxy/tronxy_global_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/tronxy/tronxy_global_normal.inst.cfg b/resources/quality/tronxy/tronxy_global_normal.inst.cfg index 55ecad6eacd..07697c710cc 100644 --- a/resources/quality/tronxy/tronxy_global_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/tronxy/tronxy_global_rapid.inst.cfg b/resources/quality/tronxy/tronxy_global_rapid.inst.cfg index ed2fc3425e9..4b49afa97ab 100644 --- a/resources/quality/tronxy/tronxy_global_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/tronxy/tronxy_global_rough.inst.cfg b/resources/quality/tronxy/tronxy_global_rough.inst.cfg index 97f0ae05c7f..6bbf2615bbd 100644 --- a/resources/quality/tronxy/tronxy_global_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = rough -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/tronxy/tronxy_global_super.inst.cfg b/resources/quality/tronxy/tronxy_global_super.inst.cfg index 5f17af54a27..2ba5b0aaec0 100644 --- a/resources/quality/tronxy/tronxy_global_super.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/twotrees/abs/two_trees_0.2_ABS_super.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.2_ABS_super.inst.cfg index 6f00503f5ab..ebc52fdf837 100644 --- a/resources/quality/twotrees/abs/two_trees_0.2_ABS_super.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.2_ABS_ultra.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.2_ABS_ultra.inst.cfg index e5327c74e69..a51d2ee8266 100644 --- a/resources/quality/twotrees/abs/two_trees_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.3_ABS_adaptive.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.3_ABS_adaptive.inst.cfg index be1e007609f..498e38ab67c 100644 --- a/resources/quality/twotrees/abs/two_trees_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.3_ABS_low.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.3_ABS_low.inst.cfg index e24d1292ef6..f3ef6c692d5 100644 --- a/resources/quality/twotrees/abs/two_trees_0.3_ABS_low.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.3_ABS_standard.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.3_ABS_standard.inst.cfg index d2688767ff8..27e856a11c8 100644 --- a/resources/quality/twotrees/abs/two_trees_0.3_ABS_standard.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.3_ABS_super.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.3_ABS_super.inst.cfg index b857a977dad..61f983c1f17 100644 --- a/resources/quality/twotrees/abs/two_trees_0.3_ABS_super.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.4_ABS_adaptive.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.4_ABS_adaptive.inst.cfg index 2c0cf7462c0..acf9a2d79b6 100644 --- a/resources/quality/twotrees/abs/two_trees_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.4_ABS_low.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.4_ABS_low.inst.cfg index 00fe14ba9c7..fa26a3e621d 100644 --- a/resources/quality/twotrees/abs/two_trees_0.4_ABS_low.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.4_ABS_standard.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.4_ABS_standard.inst.cfg index 89443e35991..70ea753138a 100644 --- a/resources/quality/twotrees/abs/two_trees_0.4_ABS_standard.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.4_ABS_super.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.4_ABS_super.inst.cfg index e8b58d0285f..57e2cc95eb9 100644 --- a/resources/quality/twotrees/abs/two_trees_0.4_ABS_super.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.5_ABS_adaptive.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.5_ABS_adaptive.inst.cfg index 01176c7cd5c..0a6247df5e8 100644 --- a/resources/quality/twotrees/abs/two_trees_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.5_ABS_low.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.5_ABS_low.inst.cfg index 90669a7baee..e7d5a413d3f 100644 --- a/resources/quality/twotrees/abs/two_trees_0.5_ABS_low.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.5_ABS_standard.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.5_ABS_standard.inst.cfg index 553b764395c..59d727e0ee8 100644 --- a/resources/quality/twotrees/abs/two_trees_0.5_ABS_standard.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.5_ABS_super.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.5_ABS_super.inst.cfg index 452062d3b82..8093f901b3f 100644 --- a/resources/quality/twotrees/abs/two_trees_0.5_ABS_super.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.6_ABS_standard.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.6_ABS_standard.inst.cfg index 9f4d56bab1e..4da10a58b70 100644 --- a/resources/quality/twotrees/abs/two_trees_0.6_ABS_standard.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.8_ABS_draft.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.8_ABS_draft.inst.cfg index 989d115cee9..a2928c11ae9 100644 --- a/resources/quality/twotrees/abs/two_trees_0.8_ABS_draft.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_1.0_ABS_draft.inst.cfg b/resources/quality/twotrees/abs/two_trees_1.0_ABS_draft.inst.cfg index 901cb8ddfcb..d3acc3d676b 100644 --- a/resources/quality/twotrees/abs/two_trees_1.0_ABS_draft.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.2_PETG_super.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.2_PETG_super.inst.cfg index bd431e4d8af..00e1753f59f 100644 --- a/resources/quality/twotrees/petg/two_trees_0.2_PETG_super.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.2_PETG_ultra.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.2_PETG_ultra.inst.cfg index 31e4283783a..cd456caa859 100644 --- a/resources/quality/twotrees/petg/two_trees_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.3_PETG_adaptive.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.3_PETG_adaptive.inst.cfg index b565f26eabe..c3681301cf3 100644 --- a/resources/quality/twotrees/petg/two_trees_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.3_PETG_low.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.3_PETG_low.inst.cfg index f10771f87dc..a330602fdd3 100644 --- a/resources/quality/twotrees/petg/two_trees_0.3_PETG_low.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.3_PETG_standard.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.3_PETG_standard.inst.cfg index e15f473ceb8..bf9e99eea59 100644 --- a/resources/quality/twotrees/petg/two_trees_0.3_PETG_standard.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.3_PETG_super.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.3_PETG_super.inst.cfg index 0d95bba0edf..a5b2744362d 100644 --- a/resources/quality/twotrees/petg/two_trees_0.3_PETG_super.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.4_PETG_adaptive.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.4_PETG_adaptive.inst.cfg index 56607f5f295..766b6ef1ff5 100644 --- a/resources/quality/twotrees/petg/two_trees_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.4_PETG_low.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.4_PETG_low.inst.cfg index be195e72efd..529cb826282 100644 --- a/resources/quality/twotrees/petg/two_trees_0.4_PETG_low.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.4_PETG_standard.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.4_PETG_standard.inst.cfg index eb0be813137..9a9213c25e8 100644 --- a/resources/quality/twotrees/petg/two_trees_0.4_PETG_standard.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.4_PETG_super.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.4_PETG_super.inst.cfg index f544466fd27..32174de8066 100644 --- a/resources/quality/twotrees/petg/two_trees_0.4_PETG_super.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.5_PETG_adaptive.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.5_PETG_adaptive.inst.cfg index 0a88af62794..f55cc7c36dd 100644 --- a/resources/quality/twotrees/petg/two_trees_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.5_PETG_low.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.5_PETG_low.inst.cfg index 28414c38973..4d1989d0741 100644 --- a/resources/quality/twotrees/petg/two_trees_0.5_PETG_low.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.5_PETG_standard.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.5_PETG_standard.inst.cfg index ff2cde5e65e..47b93b14f59 100644 --- a/resources/quality/twotrees/petg/two_trees_0.5_PETG_standard.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.5_PETG_super.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.5_PETG_super.inst.cfg index 93bc9bf622b..ac3ab464203 100644 --- a/resources/quality/twotrees/petg/two_trees_0.5_PETG_super.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.6_PETG_standard.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.6_PETG_standard.inst.cfg index 925270ecfc0..7ba8d13fc7a 100644 --- a/resources/quality/twotrees/petg/two_trees_0.6_PETG_standard.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.8_PETG_draft.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.8_PETG_draft.inst.cfg index 93b52215f07..8d9b052abe9 100644 --- a/resources/quality/twotrees/petg/two_trees_0.8_PETG_draft.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_1.0_PETG_draft.inst.cfg b/resources/quality/twotrees/petg/two_trees_1.0_PETG_draft.inst.cfg index e2f943a9607..6654f3a13dd 100644 --- a/resources/quality/twotrees/petg/two_trees_1.0_PETG_draft.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.2_PLA_super.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.2_PLA_super.inst.cfg index a7863a4acff..292d3964c9e 100644 --- a/resources/quality/twotrees/pla/two_trees_0.2_PLA_super.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.2_PLA_ultra.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.2_PLA_ultra.inst.cfg index f943d089620..a18faa24967 100644 --- a/resources/quality/twotrees/pla/two_trees_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.3_PLA_adaptive.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.3_PLA_adaptive.inst.cfg index 9afa6cab04a..d73b38625fd 100644 --- a/resources/quality/twotrees/pla/two_trees_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.3_PLA_low.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.3_PLA_low.inst.cfg index 5049cb98cda..bc1d930f5cd 100644 --- a/resources/quality/twotrees/pla/two_trees_0.3_PLA_low.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.3_PLA_standard.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.3_PLA_standard.inst.cfg index 9249ab7ce22..2aed3e25e3a 100644 --- a/resources/quality/twotrees/pla/two_trees_0.3_PLA_standard.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.3_PLA_super.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.3_PLA_super.inst.cfg index b41052239bc..672344afe9a 100644 --- a/resources/quality/twotrees/pla/two_trees_0.3_PLA_super.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.4_PLA_adaptive.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.4_PLA_adaptive.inst.cfg index 022a9870dc3..be051364fd7 100644 --- a/resources/quality/twotrees/pla/two_trees_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.4_PLA_low.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.4_PLA_low.inst.cfg index a250afa8f1f..50ef6ef118a 100644 --- a/resources/quality/twotrees/pla/two_trees_0.4_PLA_low.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.4_PLA_standard.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.4_PLA_standard.inst.cfg index 7d7deb7cba9..ffaa82b9f16 100644 --- a/resources/quality/twotrees/pla/two_trees_0.4_PLA_standard.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.4_PLA_super.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.4_PLA_super.inst.cfg index 92f63b1d9d1..0142c3df2db 100644 --- a/resources/quality/twotrees/pla/two_trees_0.4_PLA_super.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.5_PLA_adaptive.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.5_PLA_adaptive.inst.cfg index e4157be72d5..fab1c4d9685 100644 --- a/resources/quality/twotrees/pla/two_trees_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.5_PLA_low.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.5_PLA_low.inst.cfg index 13d90a8ce8d..26f374607e9 100644 --- a/resources/quality/twotrees/pla/two_trees_0.5_PLA_low.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.5_PLA_standard.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.5_PLA_standard.inst.cfg index 4e4812aa1fe..9f334a996a1 100644 --- a/resources/quality/twotrees/pla/two_trees_0.5_PLA_standard.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.5_PLA_super.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.5_PLA_super.inst.cfg index 2c4200b39c4..45f87521afe 100644 --- a/resources/quality/twotrees/pla/two_trees_0.5_PLA_super.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.6_PLA_draft.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.6_PLA_draft.inst.cfg index 946e26addb2..a259e5d7590 100644 --- a/resources/quality/twotrees/pla/two_trees_0.6_PLA_draft.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.6_PLA_low.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.6_PLA_low.inst.cfg index c97a313d2ba..cdc8b281b51 100644 --- a/resources/quality/twotrees/pla/two_trees_0.6_PLA_low.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.6_PLA_standard.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.6_PLA_standard.inst.cfg index 681c46222af..b47b18b9e45 100644 --- a/resources/quality/twotrees/pla/two_trees_0.6_PLA_standard.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.8_PLA_draft.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.8_PLA_draft.inst.cfg index 203d30088b7..731c9371bb3 100644 --- a/resources/quality/twotrees/pla/two_trees_0.8_PLA_draft.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_1.0_PLA_draft.inst.cfg b/resources/quality/twotrees/pla/two_trees_1.0_PLA_draft.inst.cfg index 30d4eff84fb..61dedfdfc70 100644 --- a/resources/quality/twotrees/pla/two_trees_1.0_PLA_draft.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_adaptive.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_adaptive.inst.cfg index e980a58a03a..d3233fd303e 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_standard.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_standard.inst.cfg index 17c1b418e81..c9fc819a6c0 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_standard.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_super.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_super.inst.cfg index 5049ec77014..db08081c753 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_super.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_adaptive.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_adaptive.inst.cfg index c9036336275..bc90a60fa84 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_standard.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_standard.inst.cfg index 1a494193327..f424abd5d91 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_standard.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_super.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_super.inst.cfg index 3c32939c547..db575821d81 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_super.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_adaptive.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_adaptive.inst.cfg index bd7f9bf0a94..3fbea6b8991 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_standard.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_standard.inst.cfg index 00422a3217b..c4e806ae5e5 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_standard.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_super.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_super.inst.cfg index 6b671fd76f4..eedbf5abe2e 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_super.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.6_TPU_standard.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.6_TPU_standard.inst.cfg index ae8948a49c6..eb2f3f269f8 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.6_TPU_standard.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.8_TPU_draft.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.8_TPU_draft.inst.cfg index 34463e5264b..9383f9a018e 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.8_TPU_draft.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_1.0_TPU_draft.inst.cfg b/resources/quality/twotrees/tpu/two_trees_1.0_TPU_draft.inst.cfg index fcff0923c5c..a6dfedc3003 100644 --- a/resources/quality/twotrees/tpu/two_trees_1.0_TPU_draft.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/twotrees/two_trees_global_adaptive.inst.cfg b/resources/quality/twotrees/two_trees_global_adaptive.inst.cfg index 9f3b28447de..35dcbfdc7c0 100644 --- a/resources/quality/twotrees/two_trees_global_adaptive.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/twotrees/two_trees_global_draft.inst.cfg b/resources/quality/twotrees/two_trees_global_draft.inst.cfg index afaeba67cad..57d6acaea17 100644 --- a/resources/quality/twotrees/two_trees_global_draft.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/twotrees/two_trees_global_low.inst.cfg b/resources/quality/twotrees/two_trees_global_low.inst.cfg index 7f3f524486c..53991fb83c6 100644 --- a/resources/quality/twotrees/two_trees_global_low.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/twotrees/two_trees_global_standard.inst.cfg b/resources/quality/twotrees/two_trees_global_standard.inst.cfg index 38560b306df..15c704f00c7 100644 --- a/resources/quality/twotrees/two_trees_global_standard.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/twotrees/two_trees_global_super.inst.cfg b/resources/quality/twotrees/two_trees_global_super.inst.cfg index 63178d95811..373a4ac415e 100644 --- a/resources/quality/twotrees/two_trees_global_super.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/twotrees/two_trees_global_ultra.inst.cfg b/resources/quality/twotrees/two_trees_global_ultra.inst.cfg index 99a10435bf4..ac28e1163f6 100644 --- a/resources/quality/twotrees/two_trees_global_ultra.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/ultimaker2/um2_draft.inst.cfg b/resources/quality/ultimaker2/um2_draft.inst.cfg index 5011c27069a..842364a0e20 100644 --- a/resources/quality/ultimaker2/um2_draft.inst.cfg +++ b/resources/quality/ultimaker2/um2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/ultimaker2/um2_fast.inst.cfg b/resources/quality/ultimaker2/um2_fast.inst.cfg index 794dcf23778..a4b3b53d9a6 100644 --- a/resources/quality/ultimaker2/um2_fast.inst.cfg +++ b/resources/quality/ultimaker2/um2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/ultimaker2/um2_high.inst.cfg b/resources/quality/ultimaker2/um2_high.inst.cfg index d4e03496575..d3906d40a43 100644 --- a/resources/quality/ultimaker2/um2_high.inst.cfg +++ b/resources/quality/ultimaker2/um2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/ultimaker2/um2_normal.inst.cfg b/resources/quality/ultimaker2/um2_normal.inst.cfg index ca4a29a1d95..ce35f5fdf67 100644 --- a/resources/quality/ultimaker2/um2_normal.inst.cfg +++ b/resources/quality/ultimaker2/um2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/ultimaker2_plus/pla_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.25_normal.inst.cfg index dfb3c868ef7..a66b8d893aa 100644 --- a/resources/quality/ultimaker2_plus/pla_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/pla_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.4_fast.inst.cfg index 6dae7ed2012..b33d5b96019 100644 --- a/resources/quality/ultimaker2_plus/pla_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/pla_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.4_high.inst.cfg index 929b1a32169..1ae2910d5ff 100644 --- a/resources/quality/ultimaker2_plus/pla_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/pla_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.4_normal.inst.cfg index f6a15613455..e7668c52ff6 100644 --- a/resources/quality/ultimaker2_plus/pla_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/pla_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.6_normal.inst.cfg index 347050c648b..87b3fc43f14 100644 --- a/resources/quality/ultimaker2_plus/pla_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/pla_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.8_normal.inst.cfg index 4dfee6ba545..8e8abd0af31 100644 --- a/resources/quality/ultimaker2_plus/pla_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.25_normal.inst.cfg index caedbce198b..aa23c2d29e8 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.4_fast.inst.cfg index 39a81d5f019..35cc2eb58c9 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.4_high.inst.cfg index 97fb479fad1..7ec4b73d060 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.4_normal.inst.cfg index 8d6fefbe1de..4c0d9734a4e 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.6_normal.inst.cfg index 671351c49b7..89132582c27 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.8_normal.inst.cfg index 0ab8ca241cc..e6029681798 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.25_normal.inst.cfg index 696aeed7586..268629808d2 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_fast.inst.cfg index 80dbf780057..1bc04ea32ac 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_high.inst.cfg index e1d6d1c46a8..de94c44cb21 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_normal.inst.cfg index 885bc9d6274..7a077555643 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.6_normal.inst.cfg index 743c75fd26e..9261d6a8284 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.8_normal.inst.cfg index e06b5806a13..ee9c1786869 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.4_draft.inst.cfg index 5222c4f8c4c..c29f258765b 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.4_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.4_normal.inst.cfg index 72aef4be2f9..7a1ef4d328b 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.6_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.6_draft.inst.cfg index d04e932f563..6c1226cb943 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.6_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.6_normal.inst.cfg index 7a65666930c..7733a6542f2 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.8_draft.inst.cfg index c715197c4b7..64b20d76972 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.8_normal.inst.cfg index 8d3f5e1e909..a3f73e630fa 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Coarse_Quality.inst.cfg index e74435cce2f..dad85dbf32f 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Draft_Quality.inst.cfg index 32409eb11df..c545bc162b6 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Extra_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Extra_Coarse_Quality.inst.cfg index 24fd8ad5281..b90a08e1640 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Extra_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extracoarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Fast_Quality.inst.cfg index a969efd90d3..c3c6ec1ccbb 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_global_High_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_High_Quality.inst.cfg index 93da7dd17a1..b2301907f1e 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Normal_Quality.inst.cfg index b8a355c1341..4e8d0b98dd8 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Slightly_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Slightly_Coarse_Quality.inst.cfg index 29435450a40..9fe60b531c9 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Slightly_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Slightly_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.25_high.inst.cfg index 65a3845fba6..05ac13318e0 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.25_normal.inst.cfg index 9d6b67f05a7..6af095a0345 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.4_fast.inst.cfg index 9c5c4c6f443..512444d2d09 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.4_normal.inst.cfg index 5c4a5cae794..c81aa84dd1b 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.6_fast.inst.cfg index 1d46e2deed9..c201d3c1904 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.6_normal.inst.cfg index 04a0f9e7669..af44fbb77a1 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.8_draft.inst.cfg index 6a64213e355..bf548fe1da5 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.8_normal.inst.cfg index cbb77c254fd..fef262b2e9c 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.25_high.inst.cfg index ffa19bf6c12..42394c95c54 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.25_normal.inst.cfg index e6c465d42fa..c620b6d6390 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.4_fast.inst.cfg index 00d99624b5b..2007aed6e83 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.4_normal.inst.cfg index 0b9cb7f968f..2297ed8f46f 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.6_fast.inst.cfg index 845543b4764..aa2cefdeed3 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.6_normal.inst.cfg index 332af0cfbea..8ad024143d0 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.8_draft.inst.cfg index c1cc2156df0..8ce3d3fc8a1 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extracoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.8_normal.inst.cfg index 6cc6edb7e4b..7b04f77daed 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.4_fast.inst.cfg index 22c1c509a20..20cf3f4f399 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.4_normal.inst.cfg index fc85fc5b805..b47d8dcbbf4 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.6_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.6_draft.inst.cfg index 2efd0057e1e..635691d3df2 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.6_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.6_fast.inst.cfg index dfccddb68f0..9e631ee4a29 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.8_draft.inst.cfg index 36d8fe8b65b..69911019eeb 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.8_verydraft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.8_verydraft.inst.cfg index bb454cc5086..af5fab1f9cc 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.8_verydraft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.8_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -3 diff --git a/resources/quality/ultimaker2_plus/um2p_tpu_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus/um2p_tpu_0.25_high.inst.cfg index 716556770c9..e4ba9b64a5f 100644 --- a/resources/quality/ultimaker2_plus/um2p_tpu_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_tpu_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_tpu_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_tpu_0.4_normal.inst.cfg index e9577ec1efa..d6beb15c1b6 100644 --- a/resources/quality/ultimaker2_plus/um2p_tpu_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_tpu_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_tpu_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_tpu_0.6_fast.inst.cfg index c8c4c793a5a..82e9444d962 100644 --- a/resources/quality/ultimaker2_plus/um2p_tpu_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_tpu_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.25_normal.inst.cfg index 1c5393bf2f0..dc6e6470a89 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_fast.inst.cfg index 68903f8d2bd..226d4f417d9 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_high.inst.cfg index 40dfe13c5d1..6ea8c1855ac 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_normal.inst.cfg index 8dbc445e88b..45960525a17 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.6_normal.inst.cfg index 65d0cf82a1c..bccbceb94bb 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.8_normal.inst.cfg index cbc3c1d3eb6..7a7bbd77b63 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.25_normal.inst.cfg index 9ac9c655d16..dbdf7ff3ce5 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_fast.inst.cfg index 12406ab6082..425b2140862 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_high.inst.cfg index 0923ec23a81..a53fa1d41cc 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_normal.inst.cfg index 3b5228f9d39..ba09e6f5983 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.6_normal.inst.cfg index 37f71e1bc0e..b39d2167e50 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.8_normal.inst.cfg index 000be268ec1..02ef1861598 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_draft.inst.cfg index dc234ed19d8..4365af97287 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_normal.inst.cfg index 0f4d7770322..839d10fb5b8 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_draft.inst.cfg index 6b998e8fb2a..deb4633e6fa 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_normal.inst.cfg index b1d349c2791..42542ca2c20 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_draft.inst.cfg index 4373028ddf4..606286b5452 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_normal.inst.cfg index e2f8600292b..7f4ab594d15 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Coarse_Quality.inst.cfg index f8d0116b7c4..3f739736a45 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Draft_Quality.inst.cfg index 44f42f986ca..86767b07348 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Extra_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Extra_Coarse_Quality.inst.cfg index 8d9fff5b70e..cc0b73b62a7 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Extra_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extracoarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Fast_Quality.inst.cfg index a33c8ae3ceb..432f5c88bee 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_High_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_High_Quality.inst.cfg index 58db5e0095f..ff05cd8e3b7 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Normal_Quality.inst.cfg index c2bb284c748..315bed236d9 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Slightly_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Slightly_Coarse_Quality.inst.cfg index 9b56520d74a..9be9845ccfc 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Slightly_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Slightly_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_high.inst.cfg index 0333f112d26..22b98a2bef1 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_normal.inst.cfg index 240a7011a76..f0bf3998454 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_fast.inst.cfg index 9c3ad03ceb4..5e9bfe3f102 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_normal.inst.cfg index 6485615ce29..0acedb59a48 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_fast.inst.cfg index 2b97c09d638..83645f994ef 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_normal.inst.cfg index 7fbef3d30ab..35cdc1c7935 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_draft.inst.cfg index 48f94b51346..49518bcc83b 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_normal.inst.cfg index 1641791a2ea..4c9d6de0116 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_high.inst.cfg index 0ef8c166c4d..9ba27afdba0 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_normal.inst.cfg index 435548e7988..081fd35b40a 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_fast.inst.cfg index 67c33e88476..175e85ceee5 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_normal.inst.cfg index 2e99824362b..4546b75ecd6 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_fast.inst.cfg index e9ad4482715..8acbf177bbb 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_normal.inst.cfg index 3cf8b80fb89..c591382c171 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.8_normal.inst.cfg index c9219171e71..247cb35fb1a 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.25_normal.inst.cfg index 110fe13e0bc..b61cd02dae1 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_draft.inst.cfg index 0934eb1eae3..24cdf93b52d 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_fast.inst.cfg index cf6c7350c6e..7c805175899 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_normal.inst.cfg index ba1d9bfb533..89fe4a4e34e 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.6_normal.inst.cfg index 1945d233cd9..84745a9d012 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.8_normal.inst.cfg index 8bf08cb7732..c8bc5074241 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.25_normal.inst.cfg index b3100bdb1ca..0d06ee23f4a 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_draft.inst.cfg index d243ed781aa..4fcdc54f98a 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_fast.inst.cfg index 5c66c13b1fb..b9b838e14e7 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_high.inst.cfg index 6d6ee19834e..462282adc69 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_normal.inst.cfg index 052353a1cf2..2d2a424ebc4 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.6_normal.inst.cfg index 3a41b7dce22..f274f95f8d9 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.8_normal.inst.cfg index 69f1a496609..01920524400 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_fast.inst.cfg index fc7c6ab4c24..d5aaa0a754b 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_normal.inst.cfg index 9e88be9084d..f4fdd278612 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_draft.inst.cfg index 583cf3cdce3..0e2fef1c911 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_fast.inst.cfg index 5b0f5e405c8..ba01ab72d7a 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_draft.inst.cfg index d24c6508d12..b61dda88da2 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_verydraft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_verydraft.inst.cfg index 1bd6b8e3c5b..c5cd0c61b2a 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_verydraft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -3 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.25_normal.inst.cfg index 9a8f87f3390..972bfda8015 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_draft.inst.cfg index f4c494114da..f81f88276e4 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_fast.inst.cfg index a382bb2d36e..d0ef8d2b5cb 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_normal.inst.cfg index f426935b2b2..782a08c6edf 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.6_normal.inst.cfg index 093332e5b75..42b6f2ea89e 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.8_normal.inst.cfg index c172116a679..e49f37cc77d 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.25_high.inst.cfg index d4deb83116e..45acc00ce90 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.4_normal.inst.cfg index a2b133afe6e..6354670e288 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.6_fast.inst.cfg index 090f8d08ee4..e53d36940cb 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.25_ABS_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_ABS_Normal_Quality.inst.cfg index 60a1d80a3ca..eff671f0e7b 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_ABS_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_CPE_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_CPE_Normal_Quality.inst.cfg index 80339723e24..261dc31a8d7 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_CPE_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_CPE_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_Nylon_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_Nylon_Normal_Quality.inst.cfg index 6815ea04e13..13330087fc4 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_Nylon_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_Nylon_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg index eeb924906f6..56ee69253d3 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_PETG_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_PETG_Normal_Quality.inst.cfg index c0805a5854e..07a7f1eb954 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_PETG_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_PETG_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_PLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_PLA_Normal_Quality.inst.cfg index 529cb2deaf7..001364bd92c 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_PLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg index a64c8298a2d..10e384276b1 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pp quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_TPLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_TPLA_Normal_Quality.inst.cfg index 0b6ae2320bb..e9fb3a82588 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_TPLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_TPLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg index 16be0db845c..b64e3dfb1eb 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg index 916b283c9ce..41b5031de15 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg index 5dcbe80bbbb..8195470e4f4 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg index 1420880995f..ecb9faad445 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg index e0dd43cc28a..d6731e02b04 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg index 16ece7c2dda..55af57f67a6 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg index ca7fd8cbf35..367fe5dcf66 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg index 5de59e58c99..9d9203c2ac6 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg index b2020831d77..0a9b2d9f026 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg index 4be3a9c13aa..577538fac13 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg index 2e24f485d0a..b52f60361b8 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPE_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPE_Draft_Print.inst.cfg index 6cfba34af90..cb6e303af32 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPE_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPE_Fast_Print.inst.cfg index faa7730e2c2..1505a30d228 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPE_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPE_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPE_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPE_High_Quality.inst.cfg index a4af9865070..e9e926660c5 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPE_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPE_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPE_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPE_Normal_Quality.inst.cfg index de85c4aeacf..68004b632d8 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPE_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPE_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Draft_Print.inst.cfg index 666aaef664d..4a79e5728af 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Fast_Print.inst.cfg index bc890977eb2..b65fe71a63a 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_Nylon_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_Nylon_High_Quality.inst.cfg index 8080dc18250..7d6d2eabaf2 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_Nylon_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_Nylon_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Normal_Quality.inst.cfg index f0344130017..4739ce4f5ca 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg index 28e8ccbf75a..7c894abf0b7 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg index 5113277ab2c..542c9a51bf3 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg index 636ce41e716..1f5cba710db 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg index a7c533bfea7..4bfa09ae9e2 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PETG_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PETG_Draft_Print.inst.cfg index 72990ea79e5..21748938045 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PETG_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PETG_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PETG_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PETG_Fast_Print.inst.cfg index 8bde02fd500..434e7ce54cd 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PETG_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PETG_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PETG_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PETG_Normal_Quality.inst.cfg index 9ecea87834a..c139608ff1d 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PETG_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PETG_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg index 1d44e48193d..44e49ed1604 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg index 6b99ed5a70e..0fa970bc70b 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg index 97be45babc7..42784f075a0 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg index f305caa82d7..994d781aefc 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg index c82043d3afc..4fbcdedfa63 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg index 74a628f7cb9..0655fa158bf 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg index fa9b4c54ea4..375f79a0aa0 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg index cffd1e60758..f5eb8575b0c 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg index 94fe824f5e2..3cf1ad08e8e 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg index 05a68966469..df4cd1cb5ee 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPU_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPU_Draft_Print.inst.cfg index ca88ca09863..833b2e2ba49 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPU_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPU_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg index e084600c428..667efc592c8 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPU_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPU_Normal_Quality.inst.cfg index e6ea1f555df..13c119ffae4 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPU_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPU_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.8_ABS_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_ABS_Draft_Print.inst.cfg index d863230b106..4614943320d 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_ABS_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_ABS_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_ABS_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_ABS_Superdraft_Print.inst.cfg index 1a95bcb77fd..c02bf624d8f 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_ABS_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_ABS_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_ABS_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_ABS_Verydraft_Print.inst.cfg index 7ff4d13b02b..ad0d2c1d5ed 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_ABS_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_ABS_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg index dcca81f3ef2..d9a75905401 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg index 585ae8eefe2..4696e86a1e7 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg index 2280a837aed..8bea04ec524 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg index b1f867807bd..5a2b0be4006 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg index a75ae74ada6..61e169f2274 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg index c1544a00e22..889c7d559ec 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg index a0fc0365660..d551dac42ed 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg index 547ab013fb7..60092ffe172 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg index b17789ad0f8..b144fd3a445 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PC_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PC_Fast_Print.inst.cfg index 2a3cd5df62c..b4a09c306da 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PC_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PC_Fast_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PC_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PC_Superdraft_Print.inst.cfg index ddd5a34efac..8b90dd7c42c 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PC_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PC_Superdraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PC_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PC_Verydraft_Print.inst.cfg index bf4fc9b6ab5..cb7e0df75eb 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PC_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PC_Verydraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg index 3eafff9a071..4541fd17ea0 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg index fe36a86948d..a23d38188bd 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg index 2bba762e2df..8ca93cd8131 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg index 57a830402a6..c59367946ef 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg index 40f710327f1..40d91ace755 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg index 702c64bb78a..dc387d1358a 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg index 145389fbe4e..1d64336e577 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg index 68d54bd406b..0ea5def31a4 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg index 2aa79cad795..83b73eea9ec 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg index a9b7a929180..3404da85e43 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg index 16e17c500ef..40926c6d925 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg index 96dec4f1c5c..b1ccf767d05 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg index 859eb3b33a0..67a81efc7bb 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg index 61ace7da80b..8596784c18f 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg index e45b8f2d1d5..8e0ce7b6b31 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg index eab1a39931e..3a38fd1b355 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg index ad1e26c7dae..f7f71924837 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg index e5ae49b17dd..0cab2765200 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg index 38334b43587..da82ad30ebd 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_bb0.8_PVA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.8_PVA_Draft_Print.inst.cfg index 107e29b30f2..4b6a6781f1c 100644 --- a/resources/quality/ultimaker3/um3_bb0.8_PVA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.8_PVA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_bb0.8_PVA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.8_PVA_Superdraft_Print.inst.cfg index 7c9d28ae29b..7cb3be4d0a2 100644 --- a/resources/quality/ultimaker3/um3_bb0.8_PVA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.8_PVA_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_bb0.8_PVA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.8_PVA_Verydraft_Print.inst.cfg index 66df697ddf1..c85cc5c30f9 100644 --- a/resources/quality/ultimaker3/um3_bb0.8_PVA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.8_PVA_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Draft_Quality.inst.cfg index 820c25f6ba7..1195b490518 100644 --- a/resources/quality/ultimaker3/um3_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg index 1db93cc34f0..23b5bda7143 100644 --- a/resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg index c27bc8b96c6..277909301e1 100644 --- a/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/ultimaker3/um3_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Normal_Quality.inst.cfg index 3f1f52f5630..cd4be3a7486 100644 --- a/resources/quality/ultimaker3/um3_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/ultimaker3/um3_global_Superdraft_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Superdraft_Quality.inst.cfg index be0be2dfbfc..4c59ff74cdf 100644 --- a/resources/quality/ultimaker3/um3_global_Superdraft_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Superdraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/ultimaker3/um3_global_Verydraft_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Verydraft_Quality.inst.cfg index 53addba1342..b09024d0708 100644 --- a/resources/quality/ultimaker3/um3_global_Verydraft_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Verydraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm.inst.cfg index 3fb0c11ffc2..d4263531115 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abscf_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm.inst.cfg index 9f0d8c9a7cd..3272134e2d7 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_absr_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm.inst.cfg index f0e0a4fdedd..f2d399ff3b0 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm.inst.cfg index 32d64ed5b19..78e7b96bc83 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm.inst.cfg index b64da2988f6..eda37306024 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_absr_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1XA weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm.inst.cfg index e032e3a3b80..e46ee25b093 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1XA weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_2xa_um-rapidrinse-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_2xa_um-rapidrinse-175_0.2mm.inst.cfg index 3dae18f97a4..4cfb9c9276e 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_2xa_um-rapidrinse-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_2xa_um-rapidrinse-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_rapidrinse_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 2XA weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm.inst.cfg index 5ebc2b4560b..2ee2106356e 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_sr30_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 2XA weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg index bf35842e178..f3d1eea2040 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm.inst.cfg index da9564ae9d1..444d893bc77 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abscf_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm.inst.cfg index b3107e14a3a..d95a0176085 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_absr_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm.inst.cfg index 3c9f4500fc1..384f85381cb 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm.inst.cfg index 7bb14d9107d..afc790abb45 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm.inst.cfg index 8af0b5ce3f5..f1422160628 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abscf_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm.inst.cfg index 2688d88ad3e..c18441b7cd5 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_absr_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm.inst.cfg index 5aaee1f2c6b..e8ee70b2b40 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm.inst.cfg index 575189deae6..5d5f891daff 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg index fd224e87984..ea2a441350e 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_absr_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1XA weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm.inst.cfg index 504ab8c10b7..acbd50b36e1 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1XA weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-rapidrinse-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-rapidrinse-175_0.2mm.inst.cfg index c3fda29d4cd..f73e194cc28 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-rapidrinse-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-rapidrinse-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_rapidrinse_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 2XA weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm.inst.cfg index ebc6ecfe982..370a22fd34e 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_sr30_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 2XA weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_global_Draft_Quality.inst.cfg index 307c51c6bd2..115568be2c9 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm.inst.cfg index 5becec44d97..77acd4f2b9e 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abscf_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm.inst.cfg index 4af8230b24a..94895b5fa4b 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_absr_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm.inst.cfg index 14c15fd3c5e..0ecfa145540 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm.inst.cfg index 110fa5e4b5c..cc075adf90f 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_original/umo_global_Coarse_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_Coarse_Quality.inst.cfg index 2d7da87e554..8eba38b4cc9 100644 --- a/resources/quality/ultimaker_original/umo_global_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/ultimaker_original/umo_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_Draft_Quality.inst.cfg index 8f77b3b3307..7fb577145ee 100644 --- a/resources/quality/ultimaker_original/umo_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/ultimaker_original/umo_global_Extra_Coarse_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_Extra_Coarse_Quality.inst.cfg index c28b33c7155..c7d9e9707ef 100644 --- a/resources/quality/ultimaker_original/umo_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Extra_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/ultimaker_original/umo_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_Fast_Quality.inst.cfg index 931ba6a129d..0014913d10e 100644 --- a/resources/quality/ultimaker_original/umo_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/ultimaker_original/umo_global_High_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_High_Quality.inst.cfg index 74ab824a8d8..d865eb9860e 100644 --- a/resources/quality/ultimaker_original/umo_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/ultimaker_original/umo_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_Normal_Quality.inst.cfg index 0229a765f4b..cc7eda9652e 100644 --- a/resources/quality/ultimaker_original/umo_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg index ec9ff192a92..bfb11749123 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_cpe_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_cpe_0.1mm.inst.cfg index de251c92dd4..8f8cd8f46eb 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_cpe_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_cpe_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg index e0d3aa4d50f..e0fcdf55305 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg index 369cbcd5630..2135e5deaf8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_petg_0.1mm.inst.cfg index bf1b51dfdc1..7f7b9da311a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_pla_0.1mm.inst.cfg index a09a6eb09ab..ed70f807c8b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg index 6485844da80..75740231e34 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pp quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_tough-pla_0.1mm.inst.cfg index b751075b850..fb8f230a5f9 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg index f989bcc3f64..eeb51a14286 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg index e3965d9c5c6..fb5bcc256bf 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg index 9589f2f915a..042058d1f07 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg index b8aec4972ff..7d124c4578f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg index 6877d9b6a22..b86675ae954 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg index de1905e4101..7ec6ff5bba1 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg index ae5c9bcbc11..a51bbfd3e5b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg index 701a2db84d3..ff2b386de65 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg index 684336d1eb4..d7cc2fd3460 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg index a7a17e5f693..bcca24890b8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg index a3b8129ed70..f398a6a42dc 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg index 5c051039d0b..522f155ad0c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg index 61073067fc8..acd966f3ab0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_bam quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg index 880461bccf2..6d9947b2944 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg index 5dd5e61f828..3566b82f904 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg index 7617b35b3b0..f720fa71c1b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg index 7ed1fcd2980..5e94d1f585a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.06mm.inst.cfg index 97dc8ef3e0f..c0767352a9b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm.inst.cfg index 51a4f565270..7c5f9caab49 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm.inst.cfg index b53ff26056e..191290bdec0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.2mm.inst.cfg index 776a06004b8..b33a421c02b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.06mm.inst.cfg index f30d77be95c..bf59d609734 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm.inst.cfg index a7eefa98679..31ce3c39284 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm.inst.cfg index 8a2a2810d67..7a30166c376 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.2mm.inst.cfg index d000e3ec205..04f83b8aef0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg index c9eebee8a0c..87eb0679859 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg index bcd04f4b24c..a78b80f7867 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg index 278e502231a..1f5f8ba874e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg index 1baf43933c0..43480fb647e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.06mm.inst.cfg index adc4670e8d5..70f9815aae1 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.15mm.inst.cfg index 6838afede35..cab76194212 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.1mm.inst.cfg index 7829f46334e..ae89f045112 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.2mm.inst.cfg index db079b04c9f..3bdd528ea28 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.3mm.inst.cfg index b035dcd5f46..09b62fda689 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg index 4b8f9f433b0..9b2325250c6 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg index 5581284de49..caf4248a910 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg index 30af138465b..3e79a33e69d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg index e5dc960d98c..3e814754e48 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg index 719adc820b4..87eeb609a7e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg index 3b106196f27..d1de0713dbc 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg index 455338a9016..5ee4b4ea78d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg index b1f5e1f19a9..45489cdfe1f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg index b5253cb0779..c9e2ca784ef 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg index 69cf85f3497..98120114f5f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg index 397992c551e..90a53df66a2 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg index 773da6d3acf..fe574fc80b8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg index 10e43b5699c..6b66454bc79 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg index 008a119dd22..8e3ab5173e0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg index 2b585a73ba8..7469d30453f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg index 1932cf72138..4c702e3b273 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg index de5e0faf2e1..e8cb2907b74 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg index c39c6d42c81..a08e98868ff 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg index 08bb2befdf4..54ca472acf6 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg index 89b8386d2f9..54acafc477a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg index cc0da1a2531..78d2da225f5 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg index 7eb5de8b646..2ae056128c7 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg index d4431382ddb..7b57ca8f7ae 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg index bb7de56356f..b19beadf429 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg index c304f13e349..77c839688ba 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg index 854b868259c..647261b0c00 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg index 9678ba95235..00c4be354fd 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg index c53596bc9f0..432f722013d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg index 58a8a1ebb09..39aa770c102 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg index 2870c09199b..8a2a5b19a77 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg index 6f450463b9a..1851be3eab2 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg index e193aa51c33..e902727c41d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg index 622f2030e46..15566dd63da 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg index 09f02aa3751..c1f93a6ac66 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg index 3b82ebfac7b..fd0e3e5344e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg index 2fd9e5ef2c5..3f62d21120a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.2mm.inst.cfg index 2be5fb643ec..13aa3ea9168 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.3mm.inst.cfg index 219d5f1d562..3b51b39fdd5 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.4mm.inst.cfg index 7f0ce6b1319..b15ed15d51c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg index c2d04c9bade..6125cdd468c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg index caf16e5f940..b57bbfcfd41 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg index 1cd46fab48d..63cb5c6b62c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg index f9ee324f336..572d6a14c1f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg index f883fe19987..bf36800e961 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg index a5c059c5e6f..54c18728760 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg index e7d656dcc4f..b93480ecaca 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg index 08c1f4933b9..90156ac8a35 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg index c4d2894885d..f2d50ef5299 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.2mm.inst.cfg index 9a79c3831c9..f3e73ac51f7 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.3mm.inst.cfg index 77355d22b58..61227b58c0b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.4mm.inst.cfg index 6669edeaf40..0fb4f697ff6 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.4mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg index d901c6c0dd7..1b559783ef8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg index 02798823463..588ff80120d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg index 373d6a0b789..246aa7f2e02 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg index 1feae070fcb..87b1b648048 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg index f93f0848db1..75b5ddfd5f3 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg index 67f9cdfcf02..5eccf9bef4d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg index 7619fcf43da..65a7d476c35 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg index b157ed198c6..f3e3c1f062d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg index 550a26c7f86..f091059d191 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg index 1f706632ce9..788182ad91d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg index b1437e9160e..d18423fb207 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg index 7c3c4ff6e91..52006ce8013 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg index c2e0ba68afd..cc082aa98bc 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg index 156d645694a..60b74e9e8bd 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg index 0f1e8357b3e..d2112a066d6 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg index 9d7b4455d6f..3bcab3006c0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg index e2a5c54c66d..d5f5439634e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg index 26d3dc7fb8f..58369c92526 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg index b1dae1cb7a9..5a804ae0e83 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg index 4d4ffa00591..b66dba1dee0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg index 5cc6a43e132..30d0e49ede3 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg index 59f8409483d..336beaf1179 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg index a4cdd898f1f..07641eb84ae 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg index 79dc105f863..880ac666d7f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg index a76864a1a3c..b5463988936 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg index d3642327268..403e44d04c8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg index 02a71fa9b71..867154ac70d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg index 12b815d5ab9..44a7379dcb3 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg index 5390b3ecb7f..3541afe3505 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg index b15b5958a77..23ac57b4743 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg index e273e85eb50..e12a164f808 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.3mm.inst.cfg index e8401bc0250..4b148bd5fda 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pva quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.2mm.inst.cfg index 34873606af8..563f4413353 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.3mm.inst.cfg index c30007a6366..66e9d39a078 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.4mm.inst.cfg index 4bb2a411aa3..ee6d9fce33c 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.15mm.inst.cfg index f205541fe90..9ab5d056124 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.2mm.inst.cfg index 5745328e166..a6dbc29c7d0 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.15mm.inst.cfg index dd4f4c1da11..827c8d2ef9b 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.2mm.inst.cfg index b594e050097..7359087b446 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.15mm.inst.cfg index ff6a9fb197e..956b60d524a 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.2mm.inst.cfg index d57c195038b..67038511716 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.15mm.inst.cfg index 3ff36e0f354..3a3d53aa328 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.2mm.inst.cfg index 879abf7d08a..ae5a395ffb1 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm.inst.cfg index fd25f84ca51..d13d630f5e2 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm.inst.cfg index ea26d6b1461..e89e9de845a 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg index ea2902cd6c8..b45c225162b 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg index bbbad9be1fe..ed0186e5d08 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg index 300e2ebaedb..f5077c90db4 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg index 84040ede4ea..70a278ea32b 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_cffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_cffcpe_0.2mm.inst.cfg index 2021632327f..aa60eec702a 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_cffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_cffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_cffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_cffpa_0.2mm.inst.cfg index 831bf6e90bc..eeaf1e492c4 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_cffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_cffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_gffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_gffcpe_0.2mm.inst.cfg index 44850349f21..cee7f7c04f7 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_gffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_gffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_gffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_gffpa_0.2mm.inst.cfg index b20fe941457..43dd326538d 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_gffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_gffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm.inst.cfg index b49ee3061e7..300d5b02b3d 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm.inst.cfg index db82d6e40eb..d7b2c394684 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.3mm.inst.cfg index 8e94df9387a..502f5fa11b6 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg index 402ae15ebae..9c1570ee8f5 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg index 0c9154a2334..0ed8088a9b6 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg index e7b72d6cd09..2a596778ff2 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg index 38c857de5e9..6ecdf06d8f8 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_Draft_Quality.inst.cfg index 7f29b2a7fcf..0758e705063 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_Fast_Quality.inst.cfg index a81faa637bb..292e8f458ff 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_global_High_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_High_Quality.inst.cfg index 432531edba9..af119d34d33 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_Normal_Quality.inst.cfg index c48aee95919..fe51a0fc67f 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_global_Superdraft_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_Superdraft_Quality.inst.cfg index 73600ea4aa9..32dfff4185a 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_Superdraft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_Superdraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_global_Verydraft_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_Verydraft_Quality.inst.cfg index 8d331bb8f58..a90aaceab82 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_Verydraft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_Verydraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg index d26fe0daee0..049396232a9 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_cpe_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_cpe_0.1mm.inst.cfg index eb98d025937..69776856995 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_cpe_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_cpe_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg index ea86a9a9a6e..54be78e0341 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg index eef6e66a5e6..0d9a1ed9821 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_petg_0.1mm.inst.cfg index b1fc1b99040..0907b2f03e1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_pla_0.1mm.inst.cfg index ab26722d874..e2d11052941 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg index 56689c4bfa8..ec510c886d6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pp quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_tough-pla_0.1mm.inst.cfg index 97a82173331..3b414db0922 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg index 29057ff13b9..a31045f9ed7 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg index a2233703d49..b171fdef80d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg index 44f6670085e..fec58e9d8ce 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg index 997f823e51a..74f71b970f0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg index 573b758705b..6aa6f233657 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg index 926ef499223..72e3d668dbd 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg index 598e83d9222..f1c40d435fd 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg index 5f5e9e2fd3c..ac070dcf590 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg index 8656a280676..e1d20b47864 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg index a4381e0e3b7..6b118fde63b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg index 5f4c480fa4b..6422d61996e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg index 9e3c0153b17..4b82ec4068b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg index bd4e13ebaf6..6a910b3deb7 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_bam quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg index a77d1b42335..c262d3ae315 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg index 805fb08ead6..fec5e0a4c08 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg index 77f775d6723..25ed3adb96f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg index 877c48c42d9..d16b3578f8c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.06mm.inst.cfg index ec98c131a98..c9448b8e9a2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm.inst.cfg index 95c436a4492..6672a867bf2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm.inst.cfg index 8f9877eebc6..4aa50490466 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.2mm.inst.cfg index f5ecef3fc59..2f6b9483d31 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.06mm.inst.cfg index b9b89ef3b7e..656822b80b8 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm.inst.cfg index 33c05d16ce0..950170017f5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm.inst.cfg index 0248ef6169d..911fb56357b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.2mm.inst.cfg index 7440015ced6..7b30fd474ef 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg index c58107dcf9e..1442f1b1806 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg index b210b894e55..fb1502f4f16 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg index aa17d35a978..920e807c306 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg index 616443b1292..f9e78aeea67 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.06mm.inst.cfg index 6fe817fba1d..32daf56a058 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.15mm.inst.cfg index 8a47953164b..e311a70015f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.1mm.inst.cfg index 1e04aad8ce0..3d3f08ee59c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.2mm.inst.cfg index aaf279f115b..c78b64128e8 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.3mm.inst.cfg index 78971b4a15b..c7c5c6582c9 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg index f34549bc781..a06de49699a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg index 4a9e914b99d..de3e873bd77 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg index dc73f13bb55..f6b0cc0a722 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg index ead512bb507..c520a270cdf 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg index c6641e7a08e..3d7d7bf0e82 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg index 8eb0d257d6f..238da076376 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg index bd4dd317bb6..8a36acf81c3 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg index 1e5ea9efb62..cec826b2b2a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg index cf7a8335b86..928699193b2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg index a7dcb611285..1cd2ca0af62 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg index f053b33478d..a127f1bafcf 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg index 4e98b6005ae..f8b8b835cab 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg index 5c6ed285489..f475ac64847 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg index d718e44a027..bf5504f7e55 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg index 55a724e2600..095b9a55249 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg index 591e8e91bd2..618f0c10438 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg index c0b4799ca95..d0950efea04 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg index d430f867d85..74c3a780821 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg index b2c25e26c70..f71fe4a1643 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg index 15b87d8229c..b319290e662 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg index 9a100248130..8ff6abf0617 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg index ef58c146639..eb665657321 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg index 5d14f014b94..c40db10dd57 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg index d23a7b8ceab..db70a58d81a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg index 4e1b0f535f5..53e9e671a1b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg index ab66eed0ab2..6b3a4ade868 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg index 2b192e8c1c9..dc83ca3836a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg index 11301a29907..05ace5503b1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg index 1d07e0f63c8..9c47aedd1b5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg index 28cf131812b..f88ae2633fc 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg index a01b433eb2b..ff6107a869c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg index f368ac13d87..1c06b3206a4 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg index b699ebc9f33..1107e0ae891 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg index d0ee391c657..f504aed78df 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg index 9869a18bb34..9453aa41cd5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg index fc8507c42b2..b4d37055033 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.2mm.inst.cfg index 0448dbc35c1..a57f3d1db1f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.3mm.inst.cfg index 5100bd460b8..3617a0f3209 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.4mm.inst.cfg index 6c677be864f..c0960ecbb80 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg index 0dd369e4dd3..36793d479c7 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg index e6ce183f4a6..35959b5b462 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg index 0c3abc6e3fc..42e8ebafa71 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg index eb6e07e0806..e4f905a7bdc 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg index e7958d98416..36fde0b907e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg index 0683b2959bd..9aed2a8c55b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg index 5a774e07508..4498143d4b6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg index bed4ac46d7f..02c9ecd708e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg index a0d58757da8..7a84fe749cd 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.2mm.inst.cfg index ddce4d41ab4..492b4683f1e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.3mm.inst.cfg index dd51965c6e2..09092de98c1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.4mm.inst.cfg index da4671d5af5..c943037a960 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.4mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg index 6208ad9bec5..0700bad762c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg index 98b0d3f5f8c..f0fee5fb38b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg index 156113b809c..b39cbb1f445 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg index 10bf06fbb5c..a91d5232132 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg index 1a63005ced6..8a0f863da86 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg index 5e22cee246e..c9aa0476a20 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg index c338c4b7ff5..6c7ccf90f33 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg index 62d9eb235d7..09c4b047023 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg index b2792b6feef..7905d943047 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg index 26c20268eac..50c25a914be 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg index cc28dc51505..864c0dde9bd 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg index eb338d1e1db..0df55e97992 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg index 941bfb3736d..9aa0eed8534 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg index 11db9e5a622..759cf36e2f6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg index ac2049daae0..118c2524ce5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg index 9ba4a38c6e7..a7d3b780e56 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg index 4ab74980ef0..46c4e0e0e50 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg index 269d51dd4b5..81c80a3c872 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg index 4f56167ffde..a049c751732 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg index 9fdf9a665b1..9efdfc7d575 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg index 3368ae6e2d2..ffdb1772477 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg index ca93df9dc10..0736e60059c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg index 4461ae07724..5c7b8fa4410 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg index 1acdad53a0c..1f2e30f4021 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg index 4973ec35bbc..468ebdb9d60 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg index 2bcf3fa82d4..24221a06488 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg index 3e4693c115f..133469116dc 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg index 2bc28f4c1a0..79c891b5137 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg index f5b8c352984..0606d82159b 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg index 6457f97c9c9..a4e78383583 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg index eef90f5f17c..1f9754b2a28 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg index e1862ce3c41..04a35d798ad 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pva quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.2mm.inst.cfg index bf3a4420702..bab8bce504d 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.3mm.inst.cfg index ff02ecedd5b..31b316d5d26 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.4mm.inst.cfg index 7db02b4cdc2..773fae8204d 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.15mm.inst.cfg index 18061adda3b..2446ef813d8 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.2mm.inst.cfg index 066e75b4853..9f206ee50c0 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.15mm.inst.cfg index 15f3b3e6a58..e20af2439a0 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.2mm.inst.cfg index 52627f2a585..09ee04d1a0d 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.15mm.inst.cfg index 5e29f112225..ba21c26c553 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.2mm.inst.cfg index 85b50e6768a..5be5e1e49e7 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.15mm.inst.cfg index 371f646cb6f..0f3360608b6 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.2mm.inst.cfg index 778637cf3ff..68824a89161 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm.inst.cfg index 88ee346758a..7c3e86ee84a 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm.inst.cfg index 00f9ef51ff6..56346c81df7 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg index 8b807c1eb5f..0797ce3a740 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg index ebc58413e2a..5efec81bb24 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg index 1204be4c15e..ceedc5958dc 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg index 6a7d52af4b3..9cd74fd0b2c 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_cffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_cffcpe_0.2mm.inst.cfg index ad7c2f58771..863d292ddd6 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_cffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_cffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_cffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_cffpa_0.2mm.inst.cfg index 72bd69f4017..958256683be 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_cffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_cffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_gffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_gffcpe_0.2mm.inst.cfg index 8d68d5c92f0..57f79f77425 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_gffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_gffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_gffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_gffpa_0.2mm.inst.cfg index 6366ee8a7e0..69639343f55 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_gffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_gffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm.inst.cfg index c9a6a2bafe2..e82826f87a0 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm.inst.cfg index 7abb9e4018e..f2cbe9b3e58 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.3mm.inst.cfg index e0c6719bde6..d241e2c86e2 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg index 40d414cbcb6..b5258d92887 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg index 6144a2c3f03..eac67e08c85 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg index 5bf5d910e81..f4b98360cb0 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg index 21407b6e66a..2e5abe5101e 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_Draft_Quality.inst.cfg index 09226692361..2342971e464 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_Fast_Quality.inst.cfg index 3dd039c01ff..7ee52748788 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_global_High_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_High_Quality.inst.cfg index 4c5b7f3462b..7a1f7698d59 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_Normal_Quality.inst.cfg index 18b14b14f9f..0cbe93963c4 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_global_Superdraft_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_Superdraft_Quality.inst.cfg index 8f55162a47f..601c994b95e 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_Superdraft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_Superdraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_global_Verydraft_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_Verydraft_Quality.inst.cfg index 1b89f8fdce3..cb1c88548af 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_Verydraft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_Verydraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.10.inst.cfg index f3c9f4557c3..d076e5e9bce 100644 --- a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.15.inst.cfg index 5593994febe..58796f169cd 100644 --- a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.20.inst.cfg index 1f8cba9c8c2..ea995b18df4 100644 --- a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.25.inst.cfg index c261f4a6bdc..037722df8f4 100644 --- a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.10.inst.cfg index b7ae054c4a5..86478076913 100644 --- a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.15.inst.cfg index 71e42cbb5c7..ead1a20886f 100644 --- a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.20.inst.cfg index 6540355cb7a..a5d5f5e1bbe 100644 --- a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.25.inst.cfg index f2cb0f2b377..ef28599bf20 100644 --- a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.30.inst.cfg index ebdd40c6bee..d14443bfb88 100644 --- a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.15.inst.cfg index dfb91488bae..7945311f471 100644 --- a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.20.inst.cfg index 528315c4796..897d3b0ba2a 100644 --- a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.25.inst.cfg index 4edfec56fff..d15a3bdf712 100644 --- a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.30.inst.cfg index a9edd8aef07..34f5d3cf262 100644 --- a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.35.inst.cfg index cff924336b6..eadeb1bf75a 100644 --- a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.10.inst.cfg index 203f68c18b4..dcbe57dd5e1 100644 --- a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.15.inst.cfg index 3b0a4a9c757..ce50864b51b 100644 --- a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.20.inst.cfg index 506f5b8f49b..0a0e16f7eb6 100644 --- a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.25.inst.cfg index cebd2db2c61..afbbe015411 100644 --- a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.10.inst.cfg index 5fd4d006610..276ab9c4ceb 100644 --- a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.15.inst.cfg index bf01ff3a844..ee3de82b74a 100644 --- a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.20.inst.cfg index 58180de36ec..f6333c6e59c 100644 --- a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.25.inst.cfg index 4dae58ad457..ecc3aec0079 100644 --- a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.30.inst.cfg index 3b3314bd6e2..c653bed0e7a 100644 --- a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.15.inst.cfg index 8dd3de6dddb..bdc1bc20e4b 100644 --- a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.20.inst.cfg index 4cc6e4fe01b..54f27659edc 100644 --- a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.25.inst.cfg index a0be80b8176..4620fa57121 100644 --- a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.30.inst.cfg index 18e5e32104e..6bd9406cccd 100644 --- a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.35.inst.cfg index 0ef270c55a8..bb4d584e6d8 100644 --- a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/layer_0.05.inst.cfg b/resources/quality/uni_base/layer_0.05.inst.cfg index f9cc2b93199..e641d64fc7c 100644 --- a/resources/quality/uni_base/layer_0.05.inst.cfg +++ b/resources/quality/uni_base/layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q005 -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/uni_base/layer_0.10.inst.cfg b/resources/quality/uni_base/layer_0.10.inst.cfg index c8c12bbe0c8..2527e5b3d42 100644 --- a/resources/quality/uni_base/layer_0.10.inst.cfg +++ b/resources/quality/uni_base/layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q010 -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/uni_base/layer_0.15.inst.cfg b/resources/quality/uni_base/layer_0.15.inst.cfg index 3d80994db83..3bc9d1ff872 100644 --- a/resources/quality/uni_base/layer_0.15.inst.cfg +++ b/resources/quality/uni_base/layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/uni_base/layer_0.20.inst.cfg b/resources/quality/uni_base/layer_0.20.inst.cfg index ef5b96040a0..05f9ad61517 100644 --- a/resources/quality/uni_base/layer_0.20.inst.cfg +++ b/resources/quality/uni_base/layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/uni_base/layer_0.25.inst.cfg b/resources/quality/uni_base/layer_0.25.inst.cfg index 6e41376988d..200a80d416a 100644 --- a/resources/quality/uni_base/layer_0.25.inst.cfg +++ b/resources/quality/uni_base/layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/uni_base/layer_0.30.inst.cfg b/resources/quality/uni_base/layer_0.30.inst.cfg index e92496a1d2d..217cc39d136 100644 --- a/resources/quality/uni_base/layer_0.30.inst.cfg +++ b/resources/quality/uni_base/layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q030 -setting_version = 22 +setting_version = 23 type = quality weight = -6 diff --git a/resources/quality/uni_base/layer_0.35.inst.cfg b/resources/quality/uni_base/layer_0.35.inst.cfg index 443932fb54a..8eff4a4b8ba 100644 --- a/resources/quality/uni_base/layer_0.35.inst.cfg +++ b/resources/quality/uni_base/layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q035 -setting_version = 22 +setting_version = 23 type = quality weight = -7 diff --git a/resources/quality/uni_base/layer_0.40.inst.cfg b/resources/quality/uni_base/layer_0.40.inst.cfg index 11fda6fa87e..cd353afa3b8 100644 --- a/resources/quality/uni_base/layer_0.40.inst.cfg +++ b/resources/quality/uni_base/layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q040 -setting_version = 22 +setting_version = 23 type = quality weight = -8 diff --git a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.10.inst.cfg index 9841118e2bd..de0913379d3 100644 --- a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.15.inst.cfg index 18e02aed4ff..1c2e9d9953e 100644 --- a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.20.inst.cfg index a93a42df02c..35de218dcb4 100644 --- a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.25.inst.cfg index 79b2c22e7a7..5b68da394b5 100644 --- a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.10.inst.cfg index 6d05047b3df..2769e9c11b9 100644 --- a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.15.inst.cfg index 79c9d10d866..b370177f2af 100644 --- a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.20.inst.cfg index 6b99af5fe68..9b093148960 100644 --- a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.25.inst.cfg index 3e4ff411d56..4175b3b882d 100644 --- a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.30.inst.cfg index 3a6917a9b63..513cc23f41a 100644 --- a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.15.inst.cfg index 06fb65b9c13..12556d6daad 100644 --- a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.20.inst.cfg index cf28c3752f0..efb0f497aaa 100644 --- a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.25.inst.cfg index 025ee67e811..60149a698ab 100644 --- a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.30.inst.cfg index a80ee052008..14c0ae80bb5 100644 --- a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.35.inst.cfg index c2198ed29d2..0caae6620cb 100644 --- a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.10.inst.cfg index f36516d08dd..4d348529233 100644 --- a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.15.inst.cfg index 37016d040b8..508e79e005c 100644 --- a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.20.inst.cfg index 929803a398a..2d427ac5060 100644 --- a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.25.inst.cfg index 39aa19d003f..96e5a7e9236 100644 --- a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.10.inst.cfg index 6e0f68c476d..0807042bb08 100644 --- a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.15.inst.cfg index e53e6b0b70a..7a680d07dda 100644 --- a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.20.inst.cfg index 84caa4a7073..90dae71153a 100644 --- a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.25.inst.cfg index d48114e887d..4dd470095b2 100644 --- a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.30.inst.cfg index be1401a0759..cf55c91bd7d 100644 --- a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.15.inst.cfg index 2052bbe9701..880a2547083 100644 --- a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.20.inst.cfg index b262d36cf7d..4ef63d7b08a 100644 --- a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.25.inst.cfg index ec443cc82f0..f06d5264319 100644 --- a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.30.inst.cfg index fd0605bfddf..2ff7650db7d 100644 --- a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.35.inst.cfg index 0605347cc51..6f4fb83eab4 100644 --- a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/vertex_delta_k8800/k8800_ABS_Extreme_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_ABS_Extreme_Quality.inst.cfg index 8a95ba4ab8e..1c6e89f0fcd 100644 --- a/resources/quality/vertex_delta_k8800/k8800_ABS_Extreme_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_ABS_Extreme_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_ABS quality_type = extreme -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/vertex_delta_k8800/k8800_ABS_High_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_ABS_High_Quality.inst.cfg index 8bd8593036b..6d0017cbe46 100644 --- a/resources/quality/vertex_delta_k8800/k8800_ABS_High_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_ABS_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_ABS quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/vertex_delta_k8800/k8800_ABS_Normal_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_ABS_Normal_Quality.inst.cfg index 973eea0d5af..0f99d857c6f 100644 --- a/resources/quality/vertex_delta_k8800/k8800_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_ABS_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_ABS quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/vertex_delta_k8800/k8800_Global_Extreme_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_Global_Extreme_Quality.inst.cfg index cc67d80bb5b..93eee7b63e0 100644 --- a/resources/quality/vertex_delta_k8800/k8800_Global_Extreme_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_Global_Extreme_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extreme -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/vertex_delta_k8800/k8800_Global_High_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_Global_High_Quality.inst.cfg index 943befece39..1c65c533e8d 100644 --- a/resources/quality/vertex_delta_k8800/k8800_Global_High_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_Global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/vertex_delta_k8800/k8800_Global_Normal_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_Global_Normal_Quality.inst.cfg index ce5fd765798..d169d4d59ac 100644 --- a/resources/quality/vertex_delta_k8800/k8800_Global_Normal_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_Global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/vertex_delta_k8800/k8800_PET_Extreme_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PET_Extreme_Quality.inst.cfg index 67c9b8b2e11..17ddd32edbc 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PET_Extreme_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PET_Extreme_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PET quality_type = extreme -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/vertex_delta_k8800/k8800_PET_High_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PET_High_Quality.inst.cfg index d7f5cfef48b..bd1c5850c6f 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PET_High_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PET_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PET quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/vertex_delta_k8800/k8800_PET_Normal_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PET_Normal_Quality.inst.cfg index 210ada27f40..e9dc2460677 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PET_Normal_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PET_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PET quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/vertex_delta_k8800/k8800_PLA_Extreme_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PLA_Extreme_Quality.inst.cfg index 2eef80f6f9c..95b43d256ed 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PLA_Extreme_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PLA_Extreme_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PLA quality_type = extreme -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/vertex_delta_k8800/k8800_PLA_High_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PLA_High_Quality.inst.cfg index 55f23a2b796..ed5f38c3307 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PLA_High_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PLA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PLA quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/vertex_delta_k8800/k8800_PLA_Normal_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PLA_Normal_Quality.inst.cfg index daa1ee388a7..22072f12b45 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PLA quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/vertex_delta_k8800/k8800_TPU_Extreme_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_TPU_Extreme_Quality.inst.cfg index 1cf2f69c289..ff7abe36f52 100644 --- a/resources/quality/vertex_delta_k8800/k8800_TPU_Extreme_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_TPU_Extreme_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_TPU quality_type = extreme -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/vertex_delta_k8800/k8800_TPU_High_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_TPU_High_Quality.inst.cfg index d9d7bd586bf..02a59ad0f50 100644 --- a/resources/quality/vertex_delta_k8800/k8800_TPU_High_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_TPU_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_TPU quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/vertex_delta_k8800/k8800_TPU_Normal_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_TPU_Normal_Quality.inst.cfg index 4abfc9cd55e..468668bc59e 100644 --- a/resources/quality/vertex_delta_k8800/k8800_TPU_Normal_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_TPU_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_TPU quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_super.inst.cfg index 8400d63613d..d568325ccee 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_ultra.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_ultra.inst.cfg index b4f6d842192..6b5c2865d88 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_super.inst.cfg index 43754cf4d02..17a4f24cb20 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_ultra.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_ultra.inst.cfg index 51aca4c8f87..cf540a99320 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_super.inst.cfg index 123039f744b..d9b7be615c2 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_ultra.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_ultra.inst.cfg index 2778738cc45..0d2405589c4 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_adaptive.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_adaptive.inst.cfg index 5ec01f33853..3f2515bbf5f 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_low.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_low.inst.cfg index fcf9eac0787..d6064b9a596 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_low.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_standard.inst.cfg index 4e4f96e9a6c..a0083995a51 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_super.inst.cfg index bbc3c0c2cd4..f6545fa60cb 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_adaptive.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_adaptive.inst.cfg index 18741cb1f44..28d9186b299 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_low.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_low.inst.cfg index 8235de7cf3d..7f65012c932 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_low.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_standard.inst.cfg index 73d6ba0150c..4949b12a623 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_super.inst.cfg index 4c7b04faba3..745f3df40e7 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_adaptive.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_adaptive.inst.cfg index f12be977358..cfc4942cbbd 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_low.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_low.inst.cfg index a3c95de877c..e00e416f060 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_low.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_standard.inst.cfg index 26f09735ace..3a258261274 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_super.inst.cfg index 7d70600e6d3..29081be573e 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_adaptive.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_adaptive.inst.cfg index fcafe45b1a6..a200039cdca 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_standard.inst.cfg index 3e7fad20e72..eef989fadb7 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_super.inst.cfg index 214992da9c3..02690c101de 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_ABS_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_ABS_standard.inst.cfg index fe33c34b007..53bc180c214 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_ABS_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PETG_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PETG_standard.inst.cfg index cd03bbf51ac..290a06a2c41 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PETG_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_draft.inst.cfg index 9b0210c925c..8f0e13f1446 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_low.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_low.inst.cfg index 1edcc0aca85..c90b7011348 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_low.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_standard.inst.cfg index 275409e3945..857497278e7 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_TPU_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_TPU_standard.inst.cfg index 76756b07f59..79e9a7d18c4 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_TPU_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.8_ABS_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.8_ABS_draft.inst.cfg index c95d7a0cbce..17664cded08 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.8_ABS_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.8_PETG_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.8_PETG_draft.inst.cfg index 4a03f1bc16c..c672c86d723 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.8_PETG_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.8_PLA_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.8_PLA_draft.inst.cfg index dd10ada2c3f..8d7a5a486e1 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.8_PLA_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.8_TPU_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.8_TPU_draft.inst.cfg index fb5b65747f1..2d6cbc5e52d 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.8_TPU_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_adaptive.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_adaptive.inst.cfg index 1265bc05005..d12c7e66e31 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_draft.inst.cfg index 2af82ca7972..564190eb444 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_low.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_low.inst.cfg index faa561e87cc..086845dc3c0 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_low.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_standard.inst.cfg index 7f7c62fac0e..83ca6841364 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_super.inst.cfg index 74e59d47127..df1455f3086 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_ultra.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_ultra.inst.cfg index d84b13132d5..301acfa9393 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_ultra.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/vivedino/trex3/trex3_0.2_ABS_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_ABS_super.inst.cfg index a3ac617a886..7241dd65f3b 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_ABS_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.2_ABS_ultra.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_ABS_ultra.inst.cfg index a38fbaf5ac0..95b8201f1dd 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.2_PETG_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_PETG_super.inst.cfg index ffeb8a7186c..40c59a6dac3 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_PETG_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.2_PETG_ultra.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_PETG_ultra.inst.cfg index 6b1e6cc04f5..77739985e92 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.2_PLA_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_PLA_super.inst.cfg index deb8efc0726..25abb907f4c 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_PLA_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.2_PLA_ultra.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_PLA_ultra.inst.cfg index b18db947bab..58732f9d7e9 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_ABS_adaptive.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_ABS_adaptive.inst.cfg index 56fc7ca2559..6b57e6b6c98 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_ABS_low.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_ABS_low.inst.cfg index 52c33c7a435..8e02902a417 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_ABS_low.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_ABS_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_ABS_standard.inst.cfg index a43fa1416fc..494a384e4a5 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_ABS_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_ABS_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_ABS_super.inst.cfg index 7066b13d53e..5b4c240f012 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_ABS_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PETG_adaptive.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PETG_adaptive.inst.cfg index d0b07652769..f0ddd4e581d 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PETG_low.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PETG_low.inst.cfg index f58eb4cc78d..e0351ea2705 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PETG_low.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PETG_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PETG_standard.inst.cfg index 65d0b2f86eb..d9362f1fdea 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PETG_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PETG_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PETG_super.inst.cfg index 83a7bf1d585..e4d0f933e14 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PETG_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PLA_adaptive.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PLA_adaptive.inst.cfg index 9f075001b7c..1ccfed86f9a 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PLA_low.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PLA_low.inst.cfg index b39c54e5216..15252d1ccf9 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PLA_low.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PLA_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PLA_standard.inst.cfg index 7465e927a27..ba247803be9 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PLA_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PLA_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PLA_super.inst.cfg index d4beec1d172..c1449e986ad 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PLA_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_TPU_adaptive.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_TPU_adaptive.inst.cfg index 24823515fcf..8e83bb561c1 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_TPU_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_TPU_standard.inst.cfg index ddb10577616..f196808f60a 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_TPU_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_TPU_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_TPU_super.inst.cfg index d18ac9b7437..68b4d68f35c 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_TPU_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_ABS_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_ABS_standard.inst.cfg index bd7d1b0244f..64fa8215bd2 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_ABS_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_PETG_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_PETG_standard.inst.cfg index 7e5655563d5..5dc644e22b3 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_PETG_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_PLA_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_PLA_draft.inst.cfg index 05e47b6e01f..807605532b2 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_PLA_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_PLA_low.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_PLA_low.inst.cfg index de0768bca2f..69b811b4135 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_PLA_low.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_PLA_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_PLA_standard.inst.cfg index 39d448b89c5..bbacab15aca 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_PLA_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_TPU_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_TPU_standard.inst.cfg index afc319902cc..464b184e9a7 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_TPU_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.8_ABS_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.8_ABS_draft.inst.cfg index 6540732950d..fd88d032b44 100644 --- a/resources/quality/vivedino/trex3/trex3_0.8_ABS_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.8_PETG_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.8_PETG_draft.inst.cfg index 5dc7b1b7bf9..e08d8b68423 100644 --- a/resources/quality/vivedino/trex3/trex3_0.8_PETG_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.8_PLA_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.8_PLA_draft.inst.cfg index 0f548bc44aa..8039e2d102c 100644 --- a/resources/quality/vivedino/trex3/trex3_0.8_PLA_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.8_TPU_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.8_TPU_draft.inst.cfg index 5e75225fe91..91b42d6988b 100644 --- a/resources/quality/vivedino/trex3/trex3_0.8_TPU_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_global_adaptive.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_adaptive.inst.cfg index 10661dc372f..7017c58fb3c 100644 --- a/resources/quality/vivedino/trex3/trex3_global_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/vivedino/trex3/trex3_global_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_draft.inst.cfg index 6de78a03e2d..dfb030a717c 100644 --- a/resources/quality/vivedino/trex3/trex3_global_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/vivedino/trex3/trex3_global_low.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_low.inst.cfg index 7727bd3a624..46e4c526402 100644 --- a/resources/quality/vivedino/trex3/trex3_global_low.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/vivedino/trex3/trex3_global_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_standard.inst.cfg index 8548b27c88a..067d541bbd8 100644 --- a/resources/quality/vivedino/trex3/trex3_global_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/vivedino/trex3/trex3_global_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_super.inst.cfg index 209825b5ea4..20be9356b50 100644 --- a/resources/quality/vivedino/trex3/trex3_global_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/vivedino/trex3/trex3_global_ultra.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_ultra.inst.cfg index a4158b482e3..84663c26f87 100644 --- a/resources/quality/vivedino/trex3/trex3_global_ultra.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/volumic/sh65_coarse.inst.cfg b/resources/quality/volumic/sh65_coarse.inst.cfg index f6002271a75..4ee607642d0 100644 --- a/resources/quality/volumic/sh65_coarse.inst.cfg +++ b/resources/quality/volumic/sh65_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/volumic/sh65_draft.inst.cfg b/resources/quality/volumic/sh65_draft.inst.cfg index 61844b3d8ee..d20069ba377 100644 --- a/resources/quality/volumic/sh65_draft.inst.cfg +++ b/resources/quality/volumic/sh65_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/volumic/sh65_extra_coarse.inst.cfg b/resources/quality/volumic/sh65_extra_coarse.inst.cfg index 6795e06c5ba..aaf4f6d4b99 100644 --- a/resources/quality/volumic/sh65_extra_coarse.inst.cfg +++ b/resources/quality/volumic/sh65_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/volumic/sh65_fast.inst.cfg b/resources/quality/volumic/sh65_fast.inst.cfg index 5cab0242023..0e917104107 100644 --- a/resources/quality/volumic/sh65_fast.inst.cfg +++ b/resources/quality/volumic/sh65_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/volumic/sh65_high.inst.cfg b/resources/quality/volumic/sh65_high.inst.cfg index f9e974e5c83..f077f59a213 100644 --- a/resources/quality/volumic/sh65_high.inst.cfg +++ b/resources/quality/volumic/sh65_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/volumic/sh65_normal.inst.cfg b/resources/quality/volumic/sh65_normal.inst.cfg index c96946f5a86..4dfe95931ef 100644 --- a/resources/quality/volumic/sh65_normal.inst.cfg +++ b/resources/quality/volumic/sh65_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/volumic/stream20dual_mk2_coarse.inst.cfg b/resources/quality/volumic/stream20dual_mk2_coarse.inst.cfg index 01ae434bd0c..f17c733d651 100644 --- a/resources/quality/volumic/stream20dual_mk2_coarse.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/volumic/stream20dual_mk2_draft.inst.cfg b/resources/quality/volumic/stream20dual_mk2_draft.inst.cfg index 203e63efe0e..811f769693e 100644 --- a/resources/quality/volumic/stream20dual_mk2_draft.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/volumic/stream20dual_mk2_extra_coarse.inst.cfg b/resources/quality/volumic/stream20dual_mk2_extra_coarse.inst.cfg index 7d0269a6114..b95a225cbf2 100644 --- a/resources/quality/volumic/stream20dual_mk2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/volumic/stream20dual_mk2_fast.inst.cfg b/resources/quality/volumic/stream20dual_mk2_fast.inst.cfg index 58abc1beac4..fcc2659b55c 100644 --- a/resources/quality/volumic/stream20dual_mk2_fast.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/volumic/stream20dual_mk2_high.inst.cfg b/resources/quality/volumic/stream20dual_mk2_high.inst.cfg index fbed3cb579e..79b8722ad7a 100644 --- a/resources/quality/volumic/stream20dual_mk2_high.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/volumic/stream20dual_mk2_normal.inst.cfg b/resources/quality/volumic/stream20dual_mk2_normal.inst.cfg index 46d007e0436..dc39fc3c8cc 100644 --- a/resources/quality/volumic/stream20dual_mk2_normal.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/volumic/stream20pro_mk2_coarse.inst.cfg b/resources/quality/volumic/stream20pro_mk2_coarse.inst.cfg index f30fc5bddec..3226c97f8ef 100644 --- a/resources/quality/volumic/stream20pro_mk2_coarse.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/volumic/stream20pro_mk2_draft.inst.cfg b/resources/quality/volumic/stream20pro_mk2_draft.inst.cfg index 8bdddbdd1f2..2e326bcff83 100644 --- a/resources/quality/volumic/stream20pro_mk2_draft.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/volumic/stream20pro_mk2_extra_coarse.inst.cfg b/resources/quality/volumic/stream20pro_mk2_extra_coarse.inst.cfg index 610dd6e7a01..19cc0ddcef8 100644 --- a/resources/quality/volumic/stream20pro_mk2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/volumic/stream20pro_mk2_fast.inst.cfg b/resources/quality/volumic/stream20pro_mk2_fast.inst.cfg index b542119eba5..58edf8244aa 100644 --- a/resources/quality/volumic/stream20pro_mk2_fast.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/volumic/stream20pro_mk2_high.inst.cfg b/resources/quality/volumic/stream20pro_mk2_high.inst.cfg index 703b59bf4a6..3a2f4ebc8eb 100644 --- a/resources/quality/volumic/stream20pro_mk2_high.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/volumic/stream20pro_mk2_normal.inst.cfg b/resources/quality/volumic/stream20pro_mk2_normal.inst.cfg index f30aa090139..de4a217293b 100644 --- a/resources/quality/volumic/stream20pro_mk2_normal.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30dual_mk2_coarse.inst.cfg b/resources/quality/volumic/stream30dual_mk2_coarse.inst.cfg index bdcbbdb5e78..f9d939edde2 100644 --- a/resources/quality/volumic/stream30dual_mk2_coarse.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30dual_mk2_draft.inst.cfg b/resources/quality/volumic/stream30dual_mk2_draft.inst.cfg index c521eb96cc4..c89e1d95f9e 100644 --- a/resources/quality/volumic/stream30dual_mk2_draft.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30dual_mk2_extra_coarse.inst.cfg b/resources/quality/volumic/stream30dual_mk2_extra_coarse.inst.cfg index 2b168507c37..808ff582c6f 100644 --- a/resources/quality/volumic/stream30dual_mk2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30dual_mk2_fast.inst.cfg b/resources/quality/volumic/stream30dual_mk2_fast.inst.cfg index 73a73817e15..8e8c03caa99 100644 --- a/resources/quality/volumic/stream30dual_mk2_fast.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30dual_mk2_high.inst.cfg b/resources/quality/volumic/stream30dual_mk2_high.inst.cfg index a18d0e71788..6d22eff318a 100644 --- a/resources/quality/volumic/stream30dual_mk2_high.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30dual_mk2_normal.inst.cfg b/resources/quality/volumic/stream30dual_mk2_normal.inst.cfg index 5e46e5a4cb2..03689321a1f 100644 --- a/resources/quality/volumic/stream30dual_mk2_normal.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30mk3_coarse.inst.cfg b/resources/quality/volumic/stream30mk3_coarse.inst.cfg index 82b9d849f44..7da72446a11 100644 --- a/resources/quality/volumic/stream30mk3_coarse.inst.cfg +++ b/resources/quality/volumic/stream30mk3_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30mk3_draft.inst.cfg b/resources/quality/volumic/stream30mk3_draft.inst.cfg index a82fbc93ffe..21122e01485 100644 --- a/resources/quality/volumic/stream30mk3_draft.inst.cfg +++ b/resources/quality/volumic/stream30mk3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30mk3_extra_coarse.inst.cfg b/resources/quality/volumic/stream30mk3_extra_coarse.inst.cfg index 3d79662132f..9c046df8d02 100644 --- a/resources/quality/volumic/stream30mk3_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30mk3_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30mk3_fast.inst.cfg b/resources/quality/volumic/stream30mk3_fast.inst.cfg index 5f47d9dc52b..a9a0abfe44a 100644 --- a/resources/quality/volumic/stream30mk3_fast.inst.cfg +++ b/resources/quality/volumic/stream30mk3_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30mk3_high.inst.cfg b/resources/quality/volumic/stream30mk3_high.inst.cfg index 99070092d02..59b18958ea8 100644 --- a/resources/quality/volumic/stream30mk3_high.inst.cfg +++ b/resources/quality/volumic/stream30mk3_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30mk3_normal.inst.cfg b/resources/quality/volumic/stream30mk3_normal.inst.cfg index 168eaa13a9d..13236aa24e5 100644 --- a/resources/quality/volumic/stream30mk3_normal.inst.cfg +++ b/resources/quality/volumic/stream30mk3_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30pro_mk2_coarse.inst.cfg b/resources/quality/volumic/stream30pro_mk2_coarse.inst.cfg index 4ab380a91ec..093717c0cfa 100644 --- a/resources/quality/volumic/stream30pro_mk2_coarse.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30pro_mk2_draft.inst.cfg b/resources/quality/volumic/stream30pro_mk2_draft.inst.cfg index 9601e0ae6c0..fc6ad396c7d 100644 --- a/resources/quality/volumic/stream30pro_mk2_draft.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30pro_mk2_extra_coarse.inst.cfg b/resources/quality/volumic/stream30pro_mk2_extra_coarse.inst.cfg index 5de2da310ba..af4cbf94cf2 100644 --- a/resources/quality/volumic/stream30pro_mk2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30pro_mk2_fast.inst.cfg b/resources/quality/volumic/stream30pro_mk2_fast.inst.cfg index 8a0b9af92b0..2e85dd0709d 100644 --- a/resources/quality/volumic/stream30pro_mk2_fast.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30pro_mk2_high.inst.cfg b/resources/quality/volumic/stream30pro_mk2_high.inst.cfg index 13c1186f613..a88bbec9eae 100644 --- a/resources/quality/volumic/stream30pro_mk2_high.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30pro_mk2_normal.inst.cfg b/resources/quality/volumic/stream30pro_mk2_normal.inst.cfg index ead12ea85fd..a4d5156c75f 100644 --- a/resources/quality/volumic/stream30pro_mk2_normal.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30ultra_coarse.inst.cfg b/resources/quality/volumic/stream30ultra_coarse.inst.cfg index b03ca36b6e7..c88987710ae 100644 --- a/resources/quality/volumic/stream30ultra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30ultra_draft.inst.cfg b/resources/quality/volumic/stream30ultra_draft.inst.cfg index 98c9205303e..da798b475f4 100644 --- a/resources/quality/volumic/stream30ultra_draft.inst.cfg +++ b/resources/quality/volumic/stream30ultra_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30ultra_extra_coarse.inst.cfg b/resources/quality/volumic/stream30ultra_extra_coarse.inst.cfg index 88820df0298..6c0c43ef213 100644 --- a/resources/quality/volumic/stream30ultra_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultra_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30ultra_fast.inst.cfg b/resources/quality/volumic/stream30ultra_fast.inst.cfg index 15e025f4ffe..874cdaab8f8 100644 --- a/resources/quality/volumic/stream30ultra_fast.inst.cfg +++ b/resources/quality/volumic/stream30ultra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30ultra_high.inst.cfg b/resources/quality/volumic/stream30ultra_high.inst.cfg index b183ec66656..74807196565 100644 --- a/resources/quality/volumic/stream30ultra_high.inst.cfg +++ b/resources/quality/volumic/stream30ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30ultra_normal.inst.cfg b/resources/quality/volumic/stream30ultra_normal.inst.cfg index 4db17e0066f..0d46173ef46 100644 --- a/resources/quality/volumic/stream30ultra_normal.inst.cfg +++ b/resources/quality/volumic/stream30ultra_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30ultrasc2_coarse.inst.cfg b/resources/quality/volumic/stream30ultrasc2_coarse.inst.cfg index c3ca990cb26..32dbfe249bc 100644 --- a/resources/quality/volumic/stream30ultrasc2_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30ultrasc2_draft.inst.cfg b/resources/quality/volumic/stream30ultrasc2_draft.inst.cfg index 49b593c8a4e..3e0e6513e9e 100644 --- a/resources/quality/volumic/stream30ultrasc2_draft.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30ultrasc2_extra_coarse.inst.cfg b/resources/quality/volumic/stream30ultrasc2_extra_coarse.inst.cfg index 72e5a4f16f0..89bb2c6fb30 100644 --- a/resources/quality/volumic/stream30ultrasc2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30ultrasc2_fast.inst.cfg b/resources/quality/volumic/stream30ultrasc2_fast.inst.cfg index 56a6998bc27..260247659bd 100644 --- a/resources/quality/volumic/stream30ultrasc2_fast.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30ultrasc2_high.inst.cfg b/resources/quality/volumic/stream30ultrasc2_high.inst.cfg index 94f01b46d98..a747b2cb404 100644 --- a/resources/quality/volumic/stream30ultrasc2_high.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30ultrasc2_normal.inst.cfg b/resources/quality/volumic/stream30ultrasc2_normal.inst.cfg index 7284277d187..843d7b584fe 100644 --- a/resources/quality/volumic/stream30ultrasc2_normal.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30ultrasc_coarse.inst.cfg b/resources/quality/volumic/stream30ultrasc_coarse.inst.cfg index 616e45f9358..f8a7d60eb25 100644 --- a/resources/quality/volumic/stream30ultrasc_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30ultrasc_draft.inst.cfg b/resources/quality/volumic/stream30ultrasc_draft.inst.cfg index d77fec91e2e..25342c42057 100644 --- a/resources/quality/volumic/stream30ultrasc_draft.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30ultrasc_extra_coarse.inst.cfg b/resources/quality/volumic/stream30ultrasc_extra_coarse.inst.cfg index 27a0a8556c7..5fe5874ef55 100644 --- a/resources/quality/volumic/stream30ultrasc_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30ultrasc_fast.inst.cfg b/resources/quality/volumic/stream30ultrasc_fast.inst.cfg index d399f7a972a..ca187fd9694 100644 --- a/resources/quality/volumic/stream30ultrasc_fast.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30ultrasc_high.inst.cfg b/resources/quality/volumic/stream30ultrasc_high.inst.cfg index 6fc17a0c07a..41170d02610 100644 --- a/resources/quality/volumic/stream30ultrasc_high.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30ultrasc_normal.inst.cfg b/resources/quality/volumic/stream30ultrasc_normal.inst.cfg index 032c6787f65..1ef8a673702 100644 --- a/resources/quality/volumic/stream30ultrasc_normal.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/voron2/voron2_global_extrafast_quality.inst.cfg b/resources/quality/voron2/voron2_global_extrafast_quality.inst.cfg index d1c3338e9e0..ca793bd4cdf 100644 --- a/resources/quality/voron2/voron2_global_extrafast_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_extrafast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_extrafine_quality.inst.cfg b/resources/quality/voron2/voron2_global_extrafine_quality.inst.cfg index eaa1ab94a92..ce40e624458 100644 --- a/resources/quality/voron2/voron2_global_extrafine_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_extrafine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_fast_quality.inst.cfg b/resources/quality/voron2/voron2_global_fast_quality.inst.cfg index 68d875074a2..0449c493fa1 100644 --- a/resources/quality/voron2/voron2_global_fast_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_fast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_fine_quality.inst.cfg b/resources/quality/voron2/voron2_global_fine_quality.inst.cfg index 28f798ac3cf..6f29ec5055f 100644 --- a/resources/quality/voron2/voron2_global_fine_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_fine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_normal_quality.inst.cfg b/resources/quality/voron2/voron2_global_normal_quality.inst.cfg index 4da5a189bc6..e3d8fbbd5af 100644 --- a/resources/quality/voron2/voron2_global_normal_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_normal_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_sprint_quality.inst.cfg b/resources/quality/voron2/voron2_global_sprint_quality.inst.cfg index 601f2e7938d..1ace1241f19 100644 --- a/resources/quality/voron2/voron2_global_sprint_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_sprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_supersprint_quality.inst.cfg b/resources/quality/voron2/voron2_global_supersprint_quality.inst.cfg index 73c001a0c00..f294ceb8bb7 100644 --- a/resources/quality/voron2/voron2_global_supersprint_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_supersprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_ultrasprint_quality.inst.cfg b/resources/quality/voron2/voron2_global_ultrasprint_quality.inst.cfg index f0e8f84207b..999e2cf9dbc 100644 --- a/resources/quality/voron2/voron2_global_ultrasprint_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_ultrasprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/voron2/voron2_v6_0.25_ABS_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_ABS_extrafine.inst.cfg index 807fe41ed82..d875200d07e 100644 --- a/resources/quality/voron2/voron2_v6_0.25_ABS_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_ABS_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_ABS_fast.inst.cfg index cb536784b95..41fa3934fdc 100644 --- a/resources/quality/voron2/voron2_v6_0.25_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_ABS_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_ABS_fine.inst.cfg index 34b45927efb..7cacd10f627 100644 --- a/resources/quality/voron2/voron2_v6_0.25_ABS_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_ABS_normal.inst.cfg index ff77c263f52..27c9b2baa4b 100644 --- a/resources/quality/voron2/voron2_v6_0.25_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_Nylon_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_Nylon_extrafine.inst.cfg index d239904200e..6aaa0a5cec8 100644 --- a/resources/quality/voron2/voron2_v6_0.25_Nylon_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_Nylon_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_Nylon_fast.inst.cfg index f12c40aff3c..20c0c546271 100644 --- a/resources/quality/voron2/voron2_v6_0.25_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_Nylon_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_Nylon_fine.inst.cfg index 6bc2d68be4f..98433b300a2 100644 --- a/resources/quality/voron2/voron2_v6_0.25_Nylon_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_Nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_Nylon_normal.inst.cfg index 6a0a63e7c89..c52e1edc697 100644 --- a/resources/quality/voron2/voron2_v6_0.25_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PC_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PC_extrafine.inst.cfg index 8518310a7ef..7701363d27f 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PC_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PC_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PC_fast.inst.cfg index 640856b1a3e..db3304c8bda 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PC_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PC_fine.inst.cfg index 705d06eae4d..2340ac5eb55 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PC_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PC_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PC_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PC_normal.inst.cfg index de7bdeb500e..8cb43102a98 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PETG_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PETG_extrafine.inst.cfg index a11e4262d02..1da27306416 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PETG_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PETG_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PETG_fast.inst.cfg index 491d0834c9e..e880dfde900 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PETG_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PETG_fine.inst.cfg index 9bdf9f755bb..64eb944a8e3 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PETG_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PETG_normal.inst.cfg index ad3591ebad6..16b89df09dd 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PLA_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PLA_extrafine.inst.cfg index 4f108362890..5ab36fdc1d6 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PLA_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PLA_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PLA_fast.inst.cfg index 8f13a10f464..128f4f3519a 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PLA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PLA_fine.inst.cfg index f7f934ebaee..bef1c297b90 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PLA_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PLA_normal.inst.cfg index 7611969448c..0fbe2717ff9 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.30_ABS_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_ABS_extrafine.inst.cfg index 77cfd3a2cba..8c340b49729 100644 --- a/resources/quality/voron2/voron2_v6_0.30_ABS_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_ABS_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_ABS_fast.inst.cfg index 14147f9d2a8..b618f271856 100644 --- a/resources/quality/voron2/voron2_v6_0.30_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_ABS_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_ABS_fine.inst.cfg index 08db73af24c..5fc1baf868a 100644 --- a/resources/quality/voron2/voron2_v6_0.30_ABS_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_ABS_normal.inst.cfg index a23bf4a3b7b..0e79604c855 100644 --- a/resources/quality/voron2/voron2_v6_0.30_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_Nylon_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_Nylon_extrafine.inst.cfg index 38fb11d4199..aab9828c89a 100644 --- a/resources/quality/voron2/voron2_v6_0.30_Nylon_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_Nylon_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_Nylon_fast.inst.cfg index 33fd3dac2fa..5e68a88b28a 100644 --- a/resources/quality/voron2/voron2_v6_0.30_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_Nylon_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_Nylon_fine.inst.cfg index 24c351401df..47cc7bd3aab 100644 --- a/resources/quality/voron2/voron2_v6_0.30_Nylon_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_Nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_Nylon_normal.inst.cfg index 406ce90e291..c265542a593 100644 --- a/resources/quality/voron2/voron2_v6_0.30_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PC_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PC_extrafine.inst.cfg index 61e1ec3a7e3..2eda5bfb6de 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PC_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PC_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PC_fast.inst.cfg index 030fabf15fb..a1891a441dc 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PC_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PC_fine.inst.cfg index 2224d795bf4..cb5a8185c65 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PC_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PC_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PC_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PC_normal.inst.cfg index 3d9349daa00..38716319729 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PETG_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PETG_extrafine.inst.cfg index 8e2a03761c4..b3540539e9f 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PETG_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PETG_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PETG_fast.inst.cfg index 9dd178f0f37..8d0a0683e44 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PETG_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PETG_fine.inst.cfg index fcf74f3a4cd..1e1f83bcd8f 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PETG_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PETG_normal.inst.cfg index 20ff970fc6d..25eeb9671a4 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PLA_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PLA_extrafine.inst.cfg index b3795a3ef54..a2fdab44e18 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PLA_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PLA_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PLA_fast.inst.cfg index 965d900bbb8..0d90f4563fc 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PLA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PLA_fine.inst.cfg index 65aa7f0343e..38be216020c 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PLA_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PLA_normal.inst.cfg index 2a57475a785..a85824d26eb 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.35_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_ABS_fast.inst.cfg index 7846447eb7b..f4b4c535307 100644 --- a/resources/quality/voron2/voron2_v6_0.35_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_ABS_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_ABS_fine.inst.cfg index 015a9c9aae1..765f525e3a8 100644 --- a/resources/quality/voron2/voron2_v6_0.35_ABS_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_ABS_normal.inst.cfg index 87389e8e226..79147ed396f 100644 --- a/resources/quality/voron2/voron2_v6_0.35_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_Nylon_fast.inst.cfg index 2516c359413..bccc0df919a 100644 --- a/resources/quality/voron2/voron2_v6_0.35_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_Nylon_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_Nylon_fine.inst.cfg index 03c36126e34..e66e09de2eb 100644 --- a/resources/quality/voron2/voron2_v6_0.35_Nylon_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_Nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_Nylon_normal.inst.cfg index 755376e6267..ffa5c7474d5 100644 --- a/resources/quality/voron2/voron2_v6_0.35_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PC_fast.inst.cfg index 0852b1bf540..8c4ff0e135f 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PC_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PC_fine.inst.cfg index 268ba62a656..aa522f9bf15 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PC_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PC_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PC_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PC_normal.inst.cfg index 51b4afc60ad..46218916caa 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PETG_fast.inst.cfg index 1f08c7bc500..96efd1e41eb 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PETG_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PETG_fine.inst.cfg index facfc8056c7..dbcc850ccde 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PETG_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PETG_normal.inst.cfg index 6661209790f..0653734b260 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PLA_fast.inst.cfg index c60ceef721b..2c68fe3d54d 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PLA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PLA_fine.inst.cfg index 0881d6ab968..2d6094cb4c1 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PLA_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PLA_normal.inst.cfg index 6bf236e0f9a..7a665711e0d 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.40_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_ABS_extrafast.inst.cfg index 2db034efebb..0d531943391 100644 --- a/resources/quality/voron2/voron2_v6_0.40_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_ABS_fast.inst.cfg index 109f47e2ed0..beb9e634874 100644 --- a/resources/quality/voron2/voron2_v6_0.40_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_ABS_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_ABS_fine.inst.cfg index d2c90a076d0..f0ae26fdecf 100644 --- a/resources/quality/voron2/voron2_v6_0.40_ABS_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_ABS_normal.inst.cfg index 190acad43cf..afab3158607 100644 --- a/resources/quality/voron2/voron2_v6_0.40_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_Nylon_extrafast.inst.cfg index d5aa2294071..c28857b5654 100644 --- a/resources/quality/voron2/voron2_v6_0.40_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_Nylon_fast.inst.cfg index 5b36de7fbf1..cc3433b18e4 100644 --- a/resources/quality/voron2/voron2_v6_0.40_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_Nylon_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_Nylon_fine.inst.cfg index 191c3b638ae..3f0760ac527 100644 --- a/resources/quality/voron2/voron2_v6_0.40_Nylon_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_Nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_Nylon_normal.inst.cfg index 29c8875ceaa..ae4eb6a72ab 100644 --- a/resources/quality/voron2/voron2_v6_0.40_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PC_extrafast.inst.cfg index 62f9aa7c610..d44de8b675e 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PC_fast.inst.cfg index 8527ebc5e03..5d957259259 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PC_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PC_fine.inst.cfg index de2688f5026..393ebdc42f3 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PC_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PC_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PC_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PC_normal.inst.cfg index 2c310f8cdf8..a702679bd3c 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PETG_extrafast.inst.cfg index 7823e910540..9c187e99e68 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PETG_fast.inst.cfg index 72395f4992f..c92c574d3cb 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PETG_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PETG_fine.inst.cfg index f89dd4482df..a1694ce1606 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PETG_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PETG_normal.inst.cfg index e39dc24194b..3c45b57b038 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PLA_extrafast.inst.cfg index bc279381b58..087ba0b07ae 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PLA_fast.inst.cfg index d2bda88545b..15223eb5e77 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PLA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PLA_fine.inst.cfg index 812bb233838..cfe44ff106a 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PLA_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PLA_normal.inst.cfg index a0225cdf3c7..d2a81b81c05 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.50_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_ABS_extrafast.inst.cfg index 32dcd984dc1..595c1a99663 100644 --- a/resources/quality/voron2/voron2_v6_0.50_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_ABS_fast.inst.cfg index 6c6030bfb35..203f6be5698 100644 --- a/resources/quality/voron2/voron2_v6_0.50_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_ABS_normal.inst.cfg index 360ce976f6b..9ac625d6857 100644 --- a/resources/quality/voron2/voron2_v6_0.50_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_ABS_sprint.inst.cfg index 27d1008e36d..1792fcafd23 100644 --- a/resources/quality/voron2/voron2_v6_0.50_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_Nylon_extrafast.inst.cfg index 4c6105e2fc5..cfbbb3e9c40 100644 --- a/resources/quality/voron2/voron2_v6_0.50_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_Nylon_fast.inst.cfg index 78fb176a6e5..5f5347c9c23 100644 --- a/resources/quality/voron2/voron2_v6_0.50_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_Nylon_normal.inst.cfg index c6d8677655f..67461a9d8ca 100644 --- a/resources/quality/voron2/voron2_v6_0.50_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_Nylon_sprint.inst.cfg index 13dfcbabd31..5772fc5a710 100644 --- a/resources/quality/voron2/voron2_v6_0.50_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PC_extrafast.inst.cfg index 1427d8af111..e6977e5443d 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PC_fast.inst.cfg index 7dd17ae4627..cbf5f70b5a6 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PC_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PC_normal.inst.cfg index 5aaee843ca6..0e5a6959e81 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PC_sprint.inst.cfg index 3d0aa8c7164..0ccd36651d2 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PETG_extrafast.inst.cfg index 848aaa56f89..c0aae829e51 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PETG_fast.inst.cfg index 8146bf16687..322d1bcf21e 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PETG_normal.inst.cfg index 946e15b3c76..1b1bb7fe600 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PETG_sprint.inst.cfg index 6f05dbb9aa0..ff9950d5427 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PLA_extrafast.inst.cfg index 9596c888d5d..84da32fd55f 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PLA_fast.inst.cfg index 578b7f4f122..1dc52397a44 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PLA_normal.inst.cfg index 0f9fdcdf292..a0c6f2b9a1e 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PLA_sprint.inst.cfg index 09b6be0fb0d..5a959cf6403 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.60_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_ABS_extrafast.inst.cfg index d091e8eb3e0..9b52a77ee34 100644 --- a/resources/quality/voron2/voron2_v6_0.60_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_ABS_fast.inst.cfg index ff5838849ac..a8aaecefdc4 100644 --- a/resources/quality/voron2/voron2_v6_0.60_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_ABS_sprint.inst.cfg index d7c7a7da08d..9dcf32c5f27 100644 --- a/resources/quality/voron2/voron2_v6_0.60_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_Nylon_extrafast.inst.cfg index bc862958916..cd8c3d5e9a6 100644 --- a/resources/quality/voron2/voron2_v6_0.60_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_Nylon_fast.inst.cfg index 7c7beb32fa1..0efae053b73 100644 --- a/resources/quality/voron2/voron2_v6_0.60_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_Nylon_sprint.inst.cfg index 627f90a972a..b22db497558 100644 --- a/resources/quality/voron2/voron2_v6_0.60_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PC_extrafast.inst.cfg index 5343ff9dbaa..d7b5010821d 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PC_fast.inst.cfg index 10644c60d9a..1f6a1c8c55a 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PC_sprint.inst.cfg index 8cc8f02d7b8..1d206a3b7d3 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PETG_extrafast.inst.cfg index 1e212ae713f..bc76b30b69c 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PETG_fast.inst.cfg index 998805303ca..c39253d0406 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PETG_sprint.inst.cfg index f07e9a93136..b77ca6d386a 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PLA_extrafast.inst.cfg index ad505c92431..8cf6106b62c 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PLA_fast.inst.cfg index 66c5fa28bbe..309c742ef03 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PLA_sprint.inst.cfg index 63721b8a695..519cb6d205d 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.80_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_ABS_extrafast.inst.cfg index 75c1416018e..66431111821 100644 --- a/resources/quality/voron2/voron2_v6_0.80_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_ABS_sprint.inst.cfg index d1c87bb9b4f..ef77e1bd65e 100644 --- a/resources/quality/voron2/voron2_v6_0.80_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_ABS_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_ABS_supersprint.inst.cfg index fbc56b53e01..ab46c7db252 100644 --- a/resources/quality/voron2/voron2_v6_0.80_ABS_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_ABS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_Nylon_extrafast.inst.cfg index 742d00a38c9..e6dd968958b 100644 --- a/resources/quality/voron2/voron2_v6_0.80_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_Nylon_sprint.inst.cfg index 842d4baa79a..4ff5f027025 100644 --- a/resources/quality/voron2/voron2_v6_0.80_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_Nylon_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_Nylon_supersprint.inst.cfg index 503edd35ffb..e55e5e9495f 100644 --- a/resources/quality/voron2/voron2_v6_0.80_Nylon_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_Nylon_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PC_extrafast.inst.cfg index 6e6d9d17ccd..845df530221 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PC_sprint.inst.cfg index 52984fb0952..1ed64c7b524 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PC_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PC_supersprint.inst.cfg index 9d2e267a30e..c8f280ef000 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PC_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PC_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PETG_extrafast.inst.cfg index 896f8af6396..920a63bd220 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PETG_sprint.inst.cfg index 27ffdc10ca2..3bfc1889cfc 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PETG_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PETG_supersprint.inst.cfg index 103912cd5cd..465756d926b 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PETG_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PETG_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PLA_extrafast.inst.cfg index 0dff83cd4b3..10726885f68 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PLA_sprint.inst.cfg index 936f9c75c72..2b9ff22a157 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PLA_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PLA_supersprint.inst.cfg index 24800eb333d..6729522329f 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PLA_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PLA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_ABS_extrafast.inst.cfg index 97c0b3263c1..ac05f4a8593 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_ABS_fast.inst.cfg index 74119f18248..ea91d0e7472 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_ABS_normal.inst.cfg index 5f7eedb9d73..59c5ec65561 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_Nylon_extrafast.inst.cfg index d29432fa70b..a20ea38fc17 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_Nylon_fast.inst.cfg index 9b8d157d5e8..fb9a3747e61 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_Nylon_normal.inst.cfg index a96a6d6c3fc..7f52ed666a6 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PC_extrafast.inst.cfg index 4bec6f3a537..461496d9382 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PC_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PC_fast.inst.cfg index a918a9e517d..d399a9ddc05 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PC_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PC_normal.inst.cfg index 9f61ac52cc3..2d8cdd34b2b 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PETG_extrafast.inst.cfg index e1428ab8d50..5ee59d8f8df 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PETG_fast.inst.cfg index eb69a3af6c3..6469d5fba1c 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PETG_normal.inst.cfg index 33f27cd0da2..a49742d3fce 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PLA_extrafast.inst.cfg index b2e08fe8994..400d3d25ad9 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PLA_fast.inst.cfg index 5b1991be046..81b6163b52e 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PLA_normal.inst.cfg index 9c9d57f0f77..94c1c4419d2 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_ABS_extrafast.inst.cfg index 270869fced4..c7f8225bf83 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_ABS_fast.inst.cfg index ba14bb25fc9..31c38aa2eba 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_ABS_sprint.inst.cfg index d06264cb286..9b3c4a3187a 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_Nylon_extrafast.inst.cfg index 589c88ffd81..e21c2d9cec6 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_Nylon_fast.inst.cfg index f38c2900c1f..e54b55903e8 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_Nylon_sprint.inst.cfg index c72942f9b17..a324716f29c 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PC_extrafast.inst.cfg index ded1dea38ab..a6af14319a2 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PC_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PC_fast.inst.cfg index 7cb82763e24..0f0cacd9bfa 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PC_sprint.inst.cfg index a90951179cc..e9d99c608d4 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PETG_extrafast.inst.cfg index abf3f6ae2ba..0ea66c9ef38 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PETG_fast.inst.cfg index 5d08831931c..b5459490ce1 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PETG_sprint.inst.cfg index 2e5f186d3d4..5cc95ff206c 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PLA_extrafast.inst.cfg index 12768f239e4..a656bf8e135 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PLA_fast.inst.cfg index 4d32ef9a489..8fad6d93eea 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PLA_sprint.inst.cfg index ce434aba610..9b49097136f 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_ABS_extrafast.inst.cfg index 0bdb6f9bf1e..4aa795e5f37 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_ABS_sprint.inst.cfg index 59dc9ea4df8..0e666729f93 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_ABS_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_ABS_supersprint.inst.cfg index f63011cd56d..be5e2a7e276 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_ABS_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_ABS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_Nylon_extrafast.inst.cfg index 815c69c8b47..333fe0c7064 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_Nylon_sprint.inst.cfg index 6bdc89730ce..d6f3f600564 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_Nylon_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_Nylon_supersprint.inst.cfg index 4d7bff8c566..d90b2b2a043 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_Nylon_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_Nylon_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PC_extrafast.inst.cfg index 4c4d326974f..a228f481df4 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PC_sprint.inst.cfg index 7eb9b2989ef..a1be60d0d02 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PC_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PC_supersprint.inst.cfg index 97c00b70ca1..a78bd40fea4 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PC_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PC_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PETG_extrafast.inst.cfg index 78b15e3173c..498a142787e 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PETG_sprint.inst.cfg index fa489ea005b..e67efe5ac49 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PETG_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PETG_supersprint.inst.cfg index c4cb559bce0..ca4c177dbe1 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PETG_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PETG_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PLA_extrafast.inst.cfg index 2279251ee4c..062a9e73e83 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PLA_sprint.inst.cfg index 7df50dba1e2..3927460cf05 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PLA_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PLA_supersprint.inst.cfg index 6252c23a197..b217a395adf 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PLA_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PLA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_ABS_sprint.inst.cfg index 98f16122552..380dd8b8c5a 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_ABS_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_ABS_supersprint.inst.cfg index 97a24a3640e..49e4ebc4556 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_ABS_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_ABS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_ABS_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_ABS_ultrasprint.inst.cfg index 42cc3edab99..86db81b3e7f 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_ABS_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_ABS_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_Nylon_sprint.inst.cfg index a8108009939..479eebde1c7 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_Nylon_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_Nylon_supersprint.inst.cfg index 9b503365629..84da8963032 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_Nylon_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_Nylon_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_Nylon_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_Nylon_ultrasprint.inst.cfg index 244ffb5bb2c..28a398c0851 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_Nylon_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_Nylon_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PC_sprint.inst.cfg index c0a352add00..a06c882cfae 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PC_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PC_supersprint.inst.cfg index bb04609e983..5c486595073 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PC_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PC_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PC_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PC_ultrasprint.inst.cfg index e35937e03da..37d33416765 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PC_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PC_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PETG_sprint.inst.cfg index 958fe470a3f..8bf4e535e75 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PETG_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PETG_supersprint.inst.cfg index 2ed2fae3e0e..06fe686ef5f 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PETG_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PETG_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PETG_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PETG_ultrasprint.inst.cfg index ee395213671..c2272389794 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PETG_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PETG_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PLA_sprint.inst.cfg index cf846204dfa..9d34cef806f 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PLA_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PLA_supersprint.inst.cfg index 04d88283007..62fefa64b57 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PLA_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PLA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PLA_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PLA_ultrasprint.inst.cfg index 2dfb7ca04f8..00d88a23a31 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PLA_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PLA_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_ABS_sprint.inst.cfg index f1314e9c868..4dc2b48b24a 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_ABS_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_ABS_supersprint.inst.cfg index df746eb5068..b469ab4c268 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_ABS_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_ABS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_ABS_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_ABS_ultrasprint.inst.cfg index 1cd7aab2a61..130b7b29481 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_ABS_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_ABS_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_Nylon_sprint.inst.cfg index 257500c2f6d..8b837d16581 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_Nylon_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_Nylon_supersprint.inst.cfg index 24839241bac..58f6a271901 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_Nylon_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_Nylon_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_Nylon_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_Nylon_ultrasprint.inst.cfg index 71985a26267..1706d2be72a 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_Nylon_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_Nylon_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PC_sprint.inst.cfg index 9dd007e6149..e948d3bbc84 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PC_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PC_supersprint.inst.cfg index de1061db4dc..6257674f482 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PC_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PC_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PC_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PC_ultrasprint.inst.cfg index 5a71bd3907a..5f386d21224 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PC_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PC_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PETG_sprint.inst.cfg index d622a799d8c..2c907beb2d3 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PETG_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PETG_supersprint.inst.cfg index 81f97d6cf59..71b308a4086 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PETG_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PETG_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PETG_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PETG_ultrasprint.inst.cfg index a0bc875d44b..37afa42967d 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PETG_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PETG_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PLA_sprint.inst.cfg index 78f3195510e..c829d0d0799 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PLA_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PLA_supersprint.inst.cfg index 9f13d92c4f6..c7c996050c0 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PLA_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PLA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PLA_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PLA_ultrasprint.inst.cfg index 2363a6959c9..6960fad5017 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PLA_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PLA_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_super.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_super.inst.cfg index c6a3459f5b4..c38a8e3c4d4 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_super.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_ultra.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_ultra.inst.cfg index 157f0fd96b6..d159ef3b050 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_adaptive.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_adaptive.inst.cfg index 481982f2a52..58e66cebb6c 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_low.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_low.inst.cfg index faa8b622d9c..3e140ef0f97 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_low.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_standard.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_standard.inst.cfg index fa7787df939..bc05a7a3fbf 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_standard.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_super.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_super.inst.cfg index 0bd3884a2ab..25ab4e1a3d3 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_super.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_adaptive.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_adaptive.inst.cfg index 513f9e5463e..ab3e231391c 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_low.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_low.inst.cfg index e9843de1b1c..5dcdb4806d9 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_low.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_standard.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_standard.inst.cfg index f67a0585fe8..a3fe0bad617 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_standard.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_super.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_super.inst.cfg index 9645040b22c..8ab320354ac 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_super.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_adaptive.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_adaptive.inst.cfg index 9abe239b62d..0e7a2a0c55e 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_low.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_low.inst.cfg index caf5339cad6..be687eaae38 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_low.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_standard.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_standard.inst.cfg index eb2615ddd29..335be4aaf83 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_standard.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_super.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_super.inst.cfg index 636f2d20828..03f442d9502 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_super.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.6_ABS_standard.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.6_ABS_standard.inst.cfg index 5c3e44cc57e..bae54fd0a48 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.6_ABS_standard.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.8_ABS_draft.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.8_ABS_draft.inst.cfg index 7b69963f1dc..45d2fbb4a4f 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.8_ABS_draft.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_1.0_ABS_draft.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_1.0_ABS_draft.inst.cfg index 1a168c407e4..99ede3bb4ad 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_1.0_ABS_draft.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.2_PC_super.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.2_PC_super.inst.cfg index 3d0ea75ea14..2bb7d54289f 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.2_PC_super.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.2_PC_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.2_PC_ultra.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.2_PC_ultra.inst.cfg index eba20c612c6..0f858c688f5 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.2_PC_ultra.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.2_PC_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_adaptive.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_adaptive.inst.cfg index 7c16b9590ea..ad91d8fa082 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_low.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_low.inst.cfg index 93977a721c7..7129c6ed938 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_low.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_standard.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_standard.inst.cfg index 7b32091f5a1..f31af997b76 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_standard.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_super.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_super.inst.cfg index a6c8e4be9f7..f96705db92f 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_super.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_adaptive.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_adaptive.inst.cfg index b2fdcafebb5..fd16a17ea0f 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_low.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_low.inst.cfg index 32f5d5ff4eb..a1520959d72 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_low.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_standard.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_standard.inst.cfg index 35f7bb0f992..3b1b532f461 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_standard.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_super.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_super.inst.cfg index d20ca864cbb..897eeaa4405 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_super.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_adaptive.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_adaptive.inst.cfg index 29df29a057e..bb24ea54269 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_low.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_low.inst.cfg index 85adae20425..e5c3a2f82fd 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_low.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_standard.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_standard.inst.cfg index ff4079d0175..1c0cf0ea199 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_standard.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_super.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_super.inst.cfg index c4467c7f8d2..d5928742192 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_super.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.6_PC_standard.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.6_PC_standard.inst.cfg index 1bba36d296e..dc3d6c66f6a 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.6_PC_standard.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.6_PC_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.8_PC_draft.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.8_PC_draft.inst.cfg index 70f6abcb226..8703ce746ee 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.8_PC_draft.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.8_PC_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_1.0_PC_draft.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_1.0_PC_draft.inst.cfg index 41d14cdac85..3ed5fbad9ea 100644 --- a/resources/quality/vzbot/base/PC/vzbot_1.0_PC_draft.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_1.0_PC_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_super.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_super.inst.cfg index 282bffcfea4..885c0e1f1f6 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_super.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_ultra.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_ultra.inst.cfg index 09494811546..0b775f9a7ac 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_adaptive.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_adaptive.inst.cfg index 83c8e71d6ca..8a95360b480 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_low.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_low.inst.cfg index 702204591cb..00fe2eea355 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_low.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_standard.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_standard.inst.cfg index b2dca805f04..8afa3b3c11c 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_standard.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_super.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_super.inst.cfg index 2f169f25182..63af2d3ecce 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_super.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_adaptive.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_adaptive.inst.cfg index 726f99974b5..5d5803b7efe 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_low.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_low.inst.cfg index 8408f97681d..d807851a31f 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_low.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_standard.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_standard.inst.cfg index c57fa9d3826..ffc89f4389b 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_standard.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_super.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_super.inst.cfg index 3393cd1afaf..959cd5f697e 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_super.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_adaptive.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_adaptive.inst.cfg index 8f086577742..2ec0991fdfa 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_low.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_low.inst.cfg index 95b8935e7b9..223dac0ef8c 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_low.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_standard.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_standard.inst.cfg index 0ec9bb591e6..aa02d0471c7 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_standard.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_super.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_super.inst.cfg index 91f3d3a84a9..72b9fd211cf 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_super.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.6_PETG_standard.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.6_PETG_standard.inst.cfg index 29aaf7e614a..68b0ac18da6 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.6_PETG_standard.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.8_PETG_draft.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.8_PETG_draft.inst.cfg index d280ba1cf69..d846803c713 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.8_PETG_draft.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_1.0_PETG_draft.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_1.0_PETG_draft.inst.cfg index 207b3163e8d..b5941d2cdf2 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_1.0_PETG_draft.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_super.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_super.inst.cfg index 1ba4de6a040..95ad976385b 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_super.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_ultra.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_ultra.inst.cfg index a4dd03021ae..f7e01b9d1fc 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_adaptive.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_adaptive.inst.cfg index cc42c9ef489..2435b9c9f43 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_low.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_low.inst.cfg index 76c087ccb91..6e695dd07dd 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_low.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_standard.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_standard.inst.cfg index db142e567eb..c9f1bedd3cb 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_super.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_super.inst.cfg index 0c45d949b8c..b8e8471993a 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_super.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_adaptive.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_adaptive.inst.cfg index 98fa1142682..698ae5c327e 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_low.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_low.inst.cfg index 15ef5287afb..5d7c1e64e0b 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_low.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_standard.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_standard.inst.cfg index 5ce8e6b81c1..72f1b0afb36 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_super.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_super.inst.cfg index 7eb9b186776..2b1a6836db6 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_super.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_adaptive.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_adaptive.inst.cfg index 24fc4af465f..286bd3af697 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_low.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_low.inst.cfg index b5681cdd885..3f89d1d8cd5 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_low.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_standard.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_standard.inst.cfg index 344ea576518..663740a7820 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_super.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_super.inst.cfg index 6a555146599..949ce8e1bf5 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_super.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_draft.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_draft.inst.cfg index 18a3243485e..3fc5b428a30 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_draft.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_low.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_low.inst.cfg index d3fcb1f82da..8b7ddcb334b 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_low.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_standard.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_standard.inst.cfg index 94fd3fd2bc2..c663ba030f5 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.8_PLA_draft.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.8_PLA_draft.inst.cfg index f98cced5085..f20d1f0fafc 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.8_PLA_draft.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_1.0_PLA_draft.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_1.0_PLA_draft.inst.cfg index 7d00f47c366..0257e3cc519 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_1.0_PLA_draft.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_super.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_super.inst.cfg index 2f350f3b618..26b174bfd88 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_super.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_ultra.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_ultra.inst.cfg index b5c4c463cf9..773b7624cb5 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_ultra.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_adaptive.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_adaptive.inst.cfg index 2f645e79dc7..6e1e26c272a 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_low.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_low.inst.cfg index 4944bce9677..e0c652f62db 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_low.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_standard.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_standard.inst.cfg index dfd3eb975d7..adff9d37bcb 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_super.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_super.inst.cfg index 28dccd8ab20..afdd46b8c21 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_super.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_adaptive.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_adaptive.inst.cfg index 98a378727a3..2d034d97968 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_low.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_low.inst.cfg index 972f9a29731..f4c791a5e44 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_low.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_standard.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_standard.inst.cfg index d788a8af610..f4653302e15 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_super.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_super.inst.cfg index 2f0f04f9321..300a60fd842 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_super.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_adaptive.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_adaptive.inst.cfg index 1d77ef19728..a3ddc5b6a19 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_low.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_low.inst.cfg index b3c474ce4bd..ffefba73230 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_low.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_standard.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_standard.inst.cfg index 596e6bb6cfc..f26406f11c7 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_super.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_super.inst.cfg index 2cbc4e515d5..530ca4e81f4 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_super.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.6_PVA_standard.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.6_PVA_standard.inst.cfg index a6ec48458f1..2fa4ad5ed46 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.6_PVA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.6_PVA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.8_PVA_draft.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.8_PVA_draft.inst.cfg index 80ed31a013a..c8f07d26d60 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.8_PVA_draft.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.8_PVA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_1.0_PVA_draft.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_1.0_PVA_draft.inst.cfg index bf9adb95a34..db31efadb27 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_1.0_PVA_draft.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_1.0_PVA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_adaptive.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_adaptive.inst.cfg index 2e65982ad3c..f2d7cf6f509 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_standard.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_standard.inst.cfg index 5c3ccc2b7e2..8cc077a9d91 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_standard.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_super.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_super.inst.cfg index d6b86e06d9b..44d307e8b85 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_super.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_adaptive.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_adaptive.inst.cfg index 3fdb89ec10c..7957687ef1f 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_standard.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_standard.inst.cfg index 5b15f3c811b..414112a49ba 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_standard.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_super.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_super.inst.cfg index d702b8715e0..8240cf57a69 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_super.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_adaptive.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_adaptive.inst.cfg index 14f8adc388a..c686638790e 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_standard.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_standard.inst.cfg index 9e203f6ee7f..c77a6912f89 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_standard.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_super.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_super.inst.cfg index 2cacc0f92ac..9cd86ac1645 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_super.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.6_TPU_standard.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.6_TPU_standard.inst.cfg index 7269be8ab34..95962ed7d4d 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.6_TPU_standard.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.8_TPU_draft.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.8_TPU_draft.inst.cfg index ab2fab7a051..8c86c131c59 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.8_TPU_draft.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_1.0_TPU_draft.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_1.0_TPU_draft.inst.cfg index 43b6b458c0c..f82a374f6db 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_1.0_TPU_draft.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_super.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_super.inst.cfg index 5594dda9ef7..097d431c168 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_super.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_ultra.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_ultra.inst.cfg index 17739b73b41..5d9ac91bccd 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_ultra.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_adaptive.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_adaptive.inst.cfg index f9903d7b062..2b9e75ae8b8 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_low.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_low.inst.cfg index a40ab396ae3..7d4b01c7244 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_low.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_standard.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_standard.inst.cfg index 029ef05aa96..2665e85c0b0 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_standard.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_super.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_super.inst.cfg index 3803d78c52f..e7d80cd0d91 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_super.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_adaptive.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_adaptive.inst.cfg index 6cc56eefdb1..06fd7b2fb1b 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_low.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_low.inst.cfg index b0f35540362..554c3115660 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_low.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_standard.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_standard.inst.cfg index f0f37b095d2..f9597996784 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_standard.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_super.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_super.inst.cfg index b5ea731a26a..8842f5b91a6 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_super.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_adaptive.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_adaptive.inst.cfg index a1adffd0273..4438ee4a355 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_low.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_low.inst.cfg index fb00ba27630..2f17f7a12d6 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_low.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_standard.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_standard.inst.cfg index e3bfc434c9c..9c23e0e7b01 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_standard.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_super.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_super.inst.cfg index dff4884e7cf..9519418da0a 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_super.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.6_nylon_standard.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.6_nylon_standard.inst.cfg index fa7f4c43857..6a5bd488c2b 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.6_nylon_standard.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.6_nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.8_nylon_draft.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.8_nylon_draft.inst.cfg index 78ba0a7812f..8d76e83f6a6 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.8_nylon_draft.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.8_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_1.0_nylon_draft.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_1.0_nylon_draft.inst.cfg index e6e2e3efa84..f20f206402e 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_1.0_nylon_draft.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_1.0_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/vzbot_global_adaptive.inst.cfg b/resources/quality/vzbot/base/vzbot_global_adaptive.inst.cfg index 8ba6ac54491..97148aba4b0 100644 --- a/resources/quality/vzbot/base/vzbot_global_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/vzbot/base/vzbot_global_draft.inst.cfg b/resources/quality/vzbot/base/vzbot_global_draft.inst.cfg index 26b763930a0..d974febf496 100644 --- a/resources/quality/vzbot/base/vzbot_global_draft.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/vzbot/base/vzbot_global_low.inst.cfg b/resources/quality/vzbot/base/vzbot_global_low.inst.cfg index c1ae5ab0d63..81835248fff 100644 --- a/resources/quality/vzbot/base/vzbot_global_low.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/vzbot/base/vzbot_global_standard.inst.cfg b/resources/quality/vzbot/base/vzbot_global_standard.inst.cfg index 9d13b93d59a..7d807d7d087 100644 --- a/resources/quality/vzbot/base/vzbot_global_standard.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/vzbot/base/vzbot_global_super.inst.cfg b/resources/quality/vzbot/base/vzbot_global_super.inst.cfg index cfeeddae385..4c8bc6cfa31 100644 --- a/resources/quality/vzbot/base/vzbot_global_super.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/vzbot/base/vzbot_global_ultra.inst.cfg b/resources/quality/vzbot/base/vzbot_global_ultra.inst.cfg index bd8cee28bc7..90f100d4295 100644 --- a/resources/quality/vzbot/base/vzbot_global_ultra.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Draft.inst.cfg b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Draft.inst.cfg index 60db4d8da27..42f779cf2c7 100644 --- a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Draft.inst.cfg +++ b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Extrudr_GreenTECPro_Black_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Extra_Fine.inst.cfg index 1c2d66e5ace..0a161802d17 100644 --- a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Extrudr_GreenTECPro_Black_175 quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Fine.inst.cfg b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Fine.inst.cfg index 29a2e29e493..c370f585a9e 100644 --- a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Fine.inst.cfg +++ b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Extrudr_GreenTECPro_Black_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Normal.inst.cfg b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Normal.inst.cfg index 9fdab359909..dec810299c8 100644 --- a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Normal.inst.cfg +++ b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Extrudr_GreenTECPro_Black_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Draft.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Draft.inst.cfg index 3c3ad46dd2e..f5d825fb07b 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Draft.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Extra_Fine.inst.cfg index 3cf19e9bb53..e7d32af0447 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Fine.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Fine.inst.cfg index 9fcb579495f..92d33217766 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Fine.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Normal.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Normal.inst.cfg index 6abccb44563..cd66505617d 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Normal.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Coarse.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Coarse.inst.cfg index 8173539ea17..80a3505ce02 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Draft.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Draft.inst.cfg index cebd7bdacb1..47f485baab0 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Draft.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Fine.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Fine.inst.cfg index 83e3b111d5b..b9b4633a4e7 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Fine.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Normal.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Normal.inst.cfg index 907dc2b9cf7..00f715e8496 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Normal.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Draft.inst.cfg index bdf527a4774..5433fee3f01 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Extra_Fine.inst.cfg index 5bddc81ee13..935bb04771f 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Fine.inst.cfg index c906dc8709f..499ca8a49d3 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Normal.inst.cfg index 631cf77259e..cc4726085af 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Draft.inst.cfg index b8142f94b71..4b4a59f4c39 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Extra_Fine.inst.cfg index a9909d525ea..3fca0ffe2c2 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Fine.inst.cfg index 50e65d73a0a..8af0c87fa72 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Normal.inst.cfg index 37e53fb8ee3..d13ecc61394 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Draft.inst.cfg index a61293d3e7b..a52b581ae6b 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Extra_Fine.inst.cfg index 41df2934104..2f3762e422b 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Fine.inst.cfg index c88ec8a8ae4..15198eb8bc9 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Normal.inst.cfg index 6e4fad47327..f8fb28dd1f4 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Draft.inst.cfg index 611863084e3..eee4be2ad98 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Extra_Fine.inst.cfg index db76f97ead4..8fb7cd4f130 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Fine.inst.cfg index 46a410f048f..3cbc4d65506 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Normal.inst.cfg index 24f1bd07b59..d47b0d621b0 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Draft.inst.cfg index 924dd7033b5..d4f84c3497d 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Extra_Fine.inst.cfg index d4178544434..9da7c5afa22 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Fine.inst.cfg index a8b36663f44..498eda6c6f0 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Normal.inst.cfg index 59b47919568..88d4dae71d7 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Draft.inst.cfg index ed173db3908..d98c37c97de 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Extra_Fine.inst.cfg index 19a2740616f..3f4371cdc0d 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Fine.inst.cfg index f6352fc9d3b..56dd8c7c10a 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Normal.inst.cfg index 9e757a0997f..a22c9344b20 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Draft.inst.cfg index 1b7365c7fa0..3504f38cc64 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Extra_Fine.inst.cfg index b2190f031ca..a7f8b8d5a2a 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Fine.inst.cfg index a42f2d10a5d..96c636c4a8e 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Normal.inst.cfg index e774b3c18d0..b3868b1060e 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Draft.inst.cfg index a8accaee834..e5510ab98de 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Extra_Fine.inst.cfg index 91bd443d366..c8c695a1186 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Fine.inst.cfg index 5010b401471..513ed1bbaa4 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Normal.inst.cfg index 47d62dccfec..a25f5ae6ab6 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Draft.inst.cfg index 2a08a6471ba..b230eeb8ec7 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Extra_Fine.inst.cfg index 3c6619eea09..8ca8ed63d7d 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Fine.inst.cfg index f81efbd6c5a..7521a10a831 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Normal.inst.cfg index ee81d48190a..75103814be7 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Coarse.inst.cfg index 830f1d104f8..0be067404a1 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Draft.inst.cfg index b4534aa43d1..e9a5d045c56 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Fine.inst.cfg index 409d2470477..785d08ee2ca 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Normal.inst.cfg index c5aacd1f12c..e8d3699d326 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Coarse.inst.cfg index 8c220bab911..7b42c6fbc74 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Draft.inst.cfg index 583e2f289d3..90596e627b2 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Fine.inst.cfg index 8dde36c3401..34af6eca5b6 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Normal.inst.cfg index 50d0826d110..316dc4eae92 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Coarse.inst.cfg index c02af712212..ac02d341b30 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Draft.inst.cfg index 3defdf6af24..11fabf6a1e8 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Fine.inst.cfg index f92080c1d85..a0aba43e099 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Normal.inst.cfg index 5726f496e8e..72778821cf2 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Coarse.inst.cfg index af4e729c378..bae5ea68579 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Draft.inst.cfg index a35080a7622..be23f5feb5b 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Fine.inst.cfg index 46108d5ffd9..b84c435327b 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Normal.inst.cfg index e75c205ef6d..a9b6f0b08cf 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Coarse.inst.cfg index 1522f67f298..e12e5f79aff 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Draft.inst.cfg index 6c3a0a05184..3d2aa461207 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Fine.inst.cfg index 351c79534ec..6cb80412b61 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Normal.inst.cfg index 6e888de8f83..37b75b7be13 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Coarse.inst.cfg index dad45e01b9c..9fc8c83ffaf 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Draft.inst.cfg index 4507853c6d0..75469d5848d 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Fine.inst.cfg index 5fd038f42bb..bbf29ad1d28 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Normal.inst.cfg index 602877cc276..afbcfa28fe9 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Coarse.inst.cfg index 1413c53fcc6..3a5f26f7396 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Draft.inst.cfg index 53ea9b321eb..574f50beb99 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Fine.inst.cfg index a71118f84c7..abbaa923f43 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Normal.inst.cfg index ea7f24ff14c..1e99dce5910 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Coarse.inst.cfg index ca45d7b2309..bb53a5837c7 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Draft.inst.cfg index b91d19e6488..49646d89f73 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Fine.inst.cfg index 2d74cd443b3..5cc87733b6a 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Normal.inst.cfg index acbb00c60be..59a94add3f6 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Coarse.inst.cfg index 3ff10fc432e..6d7c083a553 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Draft.inst.cfg index c682e158e6a..3fc2eaab341 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Fine.inst.cfg index 0d26fae8f8e..cbdf1352c48 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Normal.inst.cfg index fff16d13ec2..dfb740c32e2 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Coarse.inst.cfg index 033e1863370..f127f9d48ae 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Draft.inst.cfg index dc11c217001..c095cdb9c8c 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Extra_Coarse.inst.cfg index a63d3438b3d..1049791434f 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Normal.inst.cfg index 8073d88a4b0..3789c153c32 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Coarse.inst.cfg index 93da2791495..9bc86cf2cdb 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Draft.inst.cfg index dd90f0f653f..372d21826e6 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Extra_Coarse.inst.cfg index 9e2422757ea..fd5b25d0e6b 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Normal.inst.cfg index ee0a5647326..b3ebc040d69 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Coarse.inst.cfg index 617677c786b..8a856b77e90 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Draft.inst.cfg index 519328a14a4..cb06e795568 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Extra_Coarse.inst.cfg index 07d8ac8f800..b29f952e49a 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Normal.inst.cfg index e27acc9af12..40b97d7bd49 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Coarse.inst.cfg index b87b07168f8..7b2c4a584dc 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Draft.inst.cfg index ce7792946e6..5f9976a518e 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Extra_Coarse.inst.cfg index 152159f5a70..51b90f24962 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Normal.inst.cfg index ddf38e060f9..71c535b8a71 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Coarse.inst.cfg index bd07962ec94..ffbd55c80bc 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Draft.inst.cfg index 804376c3051..22cba0bd811 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Extra_Coarse.inst.cfg index c921034de30..74d3c6af5b6 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Normal.inst.cfg index b0f546a488e..cf6cc5fd79a 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Coarse.inst.cfg index 4b37e8b61fe..6c863df0d1e 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Draft.inst.cfg index c43d8825151..5b16bb04faf 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Extra_Coarse.inst.cfg index 4f33319cafe..6b82c296365 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Normal.inst.cfg index f42ace9ca7a..0905caa1aa8 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Coarse.inst.cfg index 2b3590dca88..0ef7cb58994 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Draft.inst.cfg index e233c8910a7..69b8330c07b 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Extra_Coarse.inst.cfg index b11c3cca6b2..7dc376d99c9 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Normal.inst.cfg index f650fd251c0..4982856b124 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Coarse.inst.cfg index cbe818a971f..f79b1f49fa7 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Draft.inst.cfg index ba96247176f..af316f211c5 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Extra_Coarse.inst.cfg index c36eb39a129..4c217b80030 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Normal.inst.cfg index 0794bce0599..8db55632561 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Coarse.inst.cfg index fb07cb601ad..94c943bc125 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Draft.inst.cfg index aed0f028bab..34e40cde51e 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Extra_Coarse.inst.cfg index fe6e427fd85..ab8b2fba65b 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Normal.inst.cfg index 2b03ccf60f9..8c30df2bfde 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Coarse.inst.cfg index 2e0b53abc2e..ef72c98cc86 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Draft.inst.cfg index a7ea9036056..4d0ea19afd2 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Extra_Coarse.inst.cfg index 0eebd3efd65..d9d0eeb7bd2 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Extra_Fine.inst.cfg index 45d8a6375e6..27af18c4aa5 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Fine.inst.cfg index ddfeba0be4d..2d751b4be99 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Normal.inst.cfg index a7eeb06d72c..9d166c4ca1d 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_coarse.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_coarse.inst.cfg index 6372e7982ee..8b055da1b1d 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_coarse.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_draft.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_draft.inst.cfg index 90995009fca..87ea2bd2df6 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_draft.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_fine.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_fine.inst.cfg index 92a711f355c..f4b70421fd2 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_fine.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_normal.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_normal.inst.cfg index 5d013c8ae7f..962ae53a1a5 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_normal.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_coarse.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_coarse.inst.cfg index ebdc1f974e2..69a13819c31 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_coarse.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_draft.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_draft.inst.cfg index df43e307a21..b49e2f34d98 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_draft.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_fine.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_fine.inst.cfg index 39fe306e40d..a35585cfb1c 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_fine.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_normal.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_normal.inst.cfg index 5cbada15092..eeff179d11c 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_normal.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_coarse.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_coarse.inst.cfg index f2e8aeda464..7b12352a7c6 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_coarse.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_draft.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_draft.inst.cfg index c53ee55e411..89cbbb4fbef 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_draft.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_fine.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_fine.inst.cfg index ebb8cf5bdb9..14025817ded 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_fine.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_normal.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_normal.inst.cfg index cd66844ed0c..5ff20c78efa 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_normal.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_coarse.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_coarse.inst.cfg index 18a61320f8e..7faa4375ae1 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_coarse.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_draft.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_draft.inst.cfg index 595d8147335..8f183630933 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_draft.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_fine.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_fine.inst.cfg index 99f3b15bd9e..ee66705aa20 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_fine.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_normal.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_normal.inst.cfg index 5e3200fcec0..6f83a222002 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_normal.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_coarse.inst.cfg index 8a939f5e3e8..be14abacb15 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_draft.inst.cfg index df0940fd635..f6bb53dabb4 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_fine.inst.cfg index b2a0e360376..ae119642c36 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_normal.inst.cfg index 9dbb188b2dd..cbc5acead1d 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_coarse.inst.cfg index b74aebf3433..a5c2bf5f8b3 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_draft.inst.cfg index b31a658e4e8..0e584bb8bc5 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_fine.inst.cfg index baf32c97c8d..c2006b02523 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_normal.inst.cfg index b9f88da61c1..867ae368699 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_coarse.inst.cfg index 295cf6f81b5..17dfa7acab6 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_draft.inst.cfg index 6c0e8446335..26bce43c538 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_fine.inst.cfg index 36f59295745..ce0b7f24489 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_normal.inst.cfg index 3bf30cac0fc..8a4b3304960 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_coarse.inst.cfg index 529085f7991..9eee8d2cd5e 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_draft.inst.cfg index a4d60e73cab..d82776c5e97 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_fine.inst.cfg index 8f412e9d818..58de7bf0527 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_normal.inst.cfg index dce8e99ed38..c51bafa8042 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_coarse.inst.cfg index 2d983942eb1..8835eacb700 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_draft.inst.cfg index 492088f2a2c..c3d5d45deb2 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_fine.inst.cfg index e4da7beb108..679f33704b2 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_normal.inst.cfg index 4f6491dfbf4..270eb086c3a 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_coarse.inst.cfg index bd4912d5a6f..d57f1a22ab6 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_draft.inst.cfg index aa198f9e35b..45c021ec8eb 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_fine.inst.cfg index 229e9f0e775..9b60b89354a 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_normal.inst.cfg index 9692a06a340..0384c514711 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_coarse.inst.cfg index 395fc53a70c..74641c118f6 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_draft.inst.cfg index 395670e79c9..29a162272ec 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_fine.inst.cfg index 38b0e2e230e..942fcf77b28 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_normal.inst.cfg index 7ba3de4e79c..51b5d8fd6e7 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_coarse.inst.cfg index 9e165cd6500..0a8cef554f9 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_draft.inst.cfg index 2daccac140c..706578940ac 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_fine.inst.cfg index aab14d84440..74c16012537 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_normal.inst.cfg index ac80cd0fcc5..76400c36d65 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_coarse.inst.cfg index d98194e70e5..78c2a6b7846 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_draft.inst.cfg index e4e2f449eaa..77b40d3b1d9 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_fine.inst.cfg index 851b2f3cef1..a3e88b92286 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_normal.inst.cfg index 514d463fdc7..7f6e4ef3aa3 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_coarse.inst.cfg index 4333f73cea8..0196554b9e5 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_draft.inst.cfg index 2444d99971a..0aa156be818 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_fine.inst.cfg index 36c6b782b98..deb85910bfb 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_normal.inst.cfg index 51db9810930..83faffbff35 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_coarse.inst.cfg index 1f6b852c07f..6113f03bbf7 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_draft.inst.cfg index 23ad943a2f2..0f78dffbd31 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_fine.inst.cfg index efda1f0adbe..e8a71e84e4e 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_normal.inst.cfg index 14f03df4fd8..960c9b0482a 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_coarse.inst.cfg index 666051dd420..1a156620c59 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_draft.inst.cfg index 387ca026e3a..5d94712c7ba 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_fine.inst.cfg index e6e6bf29569..2c0fad134f3 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_normal.inst.cfg index fd588fa2744..fbb4f8b7338 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_coarse.inst.cfg index 894afece462..167899a2166 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_draft.inst.cfg index bba2d8f06bd..7b0fc584174 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_fine.inst.cfg index 7485968470a..3f1871d1245 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_normal.inst.cfg index 97a6df75a3f..d2369fb6df3 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_coarse.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_coarse.inst.cfg index 12a816c06ef..e99a362f114 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_draft.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_draft.inst.cfg index 257b2c77464..48190a39c8c 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_fine.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_fine.inst.cfg index 3261a8fb275..158a0afe4df 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_normal.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_normal.inst.cfg index 32df932fb68..809dad450a7 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_coarse.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_coarse.inst.cfg index de70014369e..40be1a66f30 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_draft.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_draft.inst.cfg index ad1a8f44b9a..078db5939d4 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_fine.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_fine.inst.cfg index b78710f8a02..fc620a8ad8b 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_normal.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_normal.inst.cfg index 9f803f3610e..0420440d2d5 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_coarse.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_coarse.inst.cfg index f83b2ebe592..d0510dbbb29 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_draft.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_draft.inst.cfg index 2b7312c8536..3c1dacf0bf9 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_fine.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_fine.inst.cfg index d1902eedc04..6f38cef91da 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_normal.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_normal.inst.cfg index 0c6cfd7268b..754e0c043ff 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_coarse.inst.cfg b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_coarse.inst.cfg index 08db3f2e4e3..baf535b6aab 100644 --- a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_coarse.inst.cfg +++ b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_flexible quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_draft.inst.cfg b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_draft.inst.cfg index c815247dd41..d1ca554b51f 100644 --- a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_draft.inst.cfg +++ b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_flexible quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_fine.inst.cfg b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_fine.inst.cfg index f019192a71e..14cc24c2ac4 100644 --- a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_fine.inst.cfg +++ b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_flexible quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_normal.inst.cfg b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_normal.inst.cfg index 6c509740303..5862641cf96 100644 --- a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_normal.inst.cfg +++ b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_flexible quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_coarse.inst.cfg index e448f131f6e..27089f11349 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_draft.inst.cfg index c169a450adb..6a7add51735 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_fine.inst.cfg index dc575ae9b48..3dfd802dbae 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_normal.inst.cfg index 6a3233b1ea3..af7890163be 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_coarse.inst.cfg index 95232ae85fd..fa3e586ac2f 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_draft.inst.cfg index 23218c0ac00..ae0696ee271 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_fine.inst.cfg index ad8762e6ad7..dc6520596bc 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_normal.inst.cfg index 7ebf1423951..eb2a9cbc5b3 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_coarse.inst.cfg index 0d8d5217d08..945026a4cfe 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_draft.inst.cfg index 185021708b7..667a5c90d37 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_fine.inst.cfg index 8ff7608693e..b074312e873 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_normal.inst.cfg index 6af4cd74838..d6d37c2fc25 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_coarse.inst.cfg index 9dcc94a2841..3bb8528ffbc 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_draft.inst.cfg index 88d373084c6..e771ca6ff20 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_fine.inst.cfg index a74fa56f949..3407585e4c2 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_normal.inst.cfg index cf0b95050f2..0c77e17bb05 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_coarse.inst.cfg index 705878fadc8..5192822dcec 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_draft.inst.cfg index b3020e861e2..c98a39242a8 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_fine.inst.cfg index 592fab50c94..ae56ea638c2 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_normal.inst.cfg index b22706ddd12..aef3cf163b3 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_coarse.inst.cfg index e73335fc95c..0cd062ec0a8 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_draft.inst.cfg index 55d1167d23f..343efe3d126 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_fine.inst.cfg index b92706ae7b9..74131501eaf 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_normal.inst.cfg index cfb3f2ff97a..8e193ffcd20 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_coarse.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_coarse.inst.cfg index 5a53c2a437c..6eb370cdcf2 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_coarse.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_draft.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_draft.inst.cfg index 70ebfad1a21..5b4cede195b 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_draft.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_fine.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_fine.inst.cfg index 3f8ad268048..a79fc05fcde 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_fine.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_normal.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_normal.inst.cfg index 151556a2f4f..ea6ce880d64 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_normal.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_coarse.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_coarse.inst.cfg index 9237e4f137a..1ae2f24a971 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_coarse.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_draft.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_draft.inst.cfg index 0d28ade067e..9743f42e5d5 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_draft.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_fine.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_fine.inst.cfg index 2b9f6f1218c..31f6987cb4d 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_fine.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_normal.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_normal.inst.cfg index 62666f84009..d4ce99974d5 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_normal.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_coarse.inst.cfg b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_coarse.inst.cfg index 7daf31408de..85d0e690243 100644 --- a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pahtcf15 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_draft.inst.cfg b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_draft.inst.cfg index a202067fd07..57fff56e16f 100644 --- a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_draft.inst.cfg +++ b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pahtcf15 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_fine.inst.cfg b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_fine.inst.cfg index c5574e0dfda..79f268fb7dc 100644 --- a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_fine.inst.cfg +++ b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pahtcf15 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_normal.inst.cfg b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_normal.inst.cfg index 7c75c4db5ab..5c091c87034 100644 --- a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_normal.inst.cfg +++ b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pahtcf15 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_coarse.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_coarse.inst.cfg index f012edda146..02eefc3a33a 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_draft.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_draft.inst.cfg index b9f314ac658..834c345fb37 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_draft.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_fine.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_fine.inst.cfg index e8606611d70..e2678f5e212 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_fine.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_normal.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_normal.inst.cfg index b91caf62a49..0843e0b1053 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_normal.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_coarse.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_coarse.inst.cfg index a1c197e007d..0d7abc9a99c 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_draft.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_draft.inst.cfg index a8345d3ea27..300bc57cb52 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_draft.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_fine.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_fine.inst.cfg index 4dfbf5b0a2c..5ecafd0fac2 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_fine.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_normal.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_normal.inst.cfg index da6b3e2bb60..e8a36359333 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_normal.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_coarse.inst.cfg b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_coarse.inst.cfg index e39dea36956..4dd6934bcaf 100644 --- a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petcf15 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_draft.inst.cfg b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_draft.inst.cfg index 28e232b3cc3..5bd32e2d498 100644 --- a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_draft.inst.cfg +++ b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petcf15 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_fine.inst.cfg b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_fine.inst.cfg index ca6ac38c983..540a7bc6058 100644 --- a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_fine.inst.cfg +++ b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petcf15 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_normal.inst.cfg b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_normal.inst.cfg index d86fec1184c..29721774e9d 100644 --- a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_normal.inst.cfg +++ b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petcf15 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_coarse.inst.cfg index f41645ef5aa..8c8107eaa06 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_draft.inst.cfg index 0b62de35122..2e1c873b2a8 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_fine.inst.cfg index 252e0ee2322..e173522f328 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_normal.inst.cfg index f2c540043f6..5a588a8a451 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_coarse.inst.cfg index 8ebdd98ce20..5423fe1023b 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_draft.inst.cfg index 135bb9412dc..0512ed8cb62 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_fine.inst.cfg index 8367001312a..8c494c4f7ad 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_normal.inst.cfg index e79478cef51..f9611a31a44 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_coarse.inst.cfg index f8292483ad4..5c28312b17f 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_draft.inst.cfg index dbc56a9ba18..f640948b9d9 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_fine.inst.cfg index f1db488d9aa..4d981c4d723 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_normal.inst.cfg index d1795c03721..f4843e7b458 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_coarse.inst.cfg index 33e2e70d187..e954e29f544 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_draft.inst.cfg index 06ad2ea0fc8..27897985dd8 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_fine.inst.cfg index d924074ab38..9d0762f8767 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_normal.inst.cfg index 8f7d4487d41..2679df5548e 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_coarse.inst.cfg index c1f6a545603..35d69b02d51 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_draft.inst.cfg index b149a594dd5..79add5b99ca 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_fine.inst.cfg index 526acc21a93..ee06416687f 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_normal.inst.cfg index 11c99afd770..bde5f0bedd5 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_coarse.inst.cfg index e209a4a2fd8..d63aa387421 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_draft.inst.cfg index 7233571ca9c..3d3aed671c8 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_fine.inst.cfg index 2d57b58b467..36a96d351a0 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_normal.inst.cfg index c447696fd26..7f7cf375562 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_coarse.inst.cfg index ceba9259a2d..4bb90e8a88f 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_draft.inst.cfg index f43b8eaca8d..4018aec0543 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_fine.inst.cfg index b08bdcdfe36..31399b5bf9c 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_normal.inst.cfg index c8751ef51e7..ff52f3200b2 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_coarse.inst.cfg index c2768833eab..0421fe33088 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_draft.inst.cfg index 16a49bea43c..3ce44a0a648 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_fine.inst.cfg index 6d5d7763666..1a36437faa8 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_normal.inst.cfg index f0631cd3355..144940c8a7f 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_coarse.inst.cfg index 581d5cc11f0..6292722fa6a 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_draft.inst.cfg index a3c4616ce25..4718b09f2cd 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_fine.inst.cfg index 582f9f24316..4aea2ba9782 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_normal.inst.cfg index 280beaffc58..cc4d4001e0b 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_coarse.inst.cfg index bc55d669bb4..c173ee2e9e1 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_draft.inst.cfg index e785d674d8e..b7acd4e0877 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_fine.inst.cfg index 72faa03585a..7c949cfd451 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_normal.inst.cfg index 503d268491e..18c4be3745d 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_coarse.inst.cfg index d82b7a650be..996379feb9e 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_draft.inst.cfg index f6bb8f9d6ce..ba9991dcfb6 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_fine.inst.cfg index 0dd024cb10e..e90ffd5dfc7 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_normal.inst.cfg index f74653aaa53..be9b7a66360 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_coarse.inst.cfg index 92b3a3b202a..3fa9a52cf2b 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_draft.inst.cfg index b9cd16449dc..3fb1b5e82be 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_fine.inst.cfg index fefdf4b01c5..b4124b7ee3d 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_normal.inst.cfg index c297a7c5b92..6564a1bfc4b 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_coarse.inst.cfg index 562745810b1..6615eb0ef1e 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_draft.inst.cfg index 2f7e3540213..8484320f12a 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_fine.inst.cfg index a2c8f9026e9..b1bb184f241 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_normal.inst.cfg index c3e915b7cf2..ac966a5f21d 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_coarse.inst.cfg index 089bd58712a..0c8078074d4 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_draft.inst.cfg index 4f29f7b89de..ddf88b56c77 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_fine.inst.cfg index 4c7ce054209..a420b198397 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_normal.inst.cfg index 956491ca05b..88a42a943e4 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_coarse.inst.cfg b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_coarse.inst.cfg index effe0ae6cee..0c72737a09e 100644 --- a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_coarse.inst.cfg +++ b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_ppgf30 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_draft.inst.cfg b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_draft.inst.cfg index d376594bf8f..8509d110d2f 100644 --- a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_draft.inst.cfg +++ b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_ppgf30 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_fine.inst.cfg b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_fine.inst.cfg index 9e7c659b9f3..84f2d5f2205 100644 --- a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_fine.inst.cfg +++ b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_ppgf30 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_normal.inst.cfg b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_normal.inst.cfg index 9442f440bb1..e2604f6cd17 100644 --- a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_normal.inst.cfg +++ b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_ppgf30 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_coarse.inst.cfg index b9f7178137d..8163b0f4f01 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_draft.inst.cfg index 5ab51306a3b..2b3a677da08 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_fine.inst.cfg index 24026eda666..2de8dcd257d 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_normal.inst.cfg index fc8c33bcaa2..b92efb4bb4e 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_coarse.inst.cfg index c1e5bc2ab6a..84f2b863ea0 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_draft.inst.cfg index bd11bb9b2f8..7d396bdb4b3 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_fine.inst.cfg index 7522344ea1b..239ce61a853 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_normal.inst.cfg index a5b98f0be7d..bf1e456e9df 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_coarse.inst.cfg index 811f816545b..c05ce1ef16a 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_draft.inst.cfg index b7ca4dad12f..c2412a4b10c 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_fine.inst.cfg index 8ff536484e6..62c827e31f4 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_normal.inst.cfg index 7a087f8de76..920960b1f1c 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_coarse.inst.cfg index c820fb73747..86255b299c0 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_draft.inst.cfg index f67c83b8a16..f699ade12ea 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_fine.inst.cfg index 3d0c91f8d09..c8b24198583 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_normal.inst.cfg index 8129fa14bc6..986f61603c1 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_coarse.inst.cfg index 6d8294f3210..1a55a0d7dc8 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_draft.inst.cfg index 6671af7abbf..72c1d0c0a29 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_fine.inst.cfg index 5faad48deee..2e404b0f081 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_normal.inst.cfg index cb7662e85ba..bb7c76089cd 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_coarse.inst.cfg index 2f374f711c0..9f50854c982 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_draft.inst.cfg index df90cef5e18..5075d97c65c 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_fine.inst.cfg index e16fecd8098..176a28b1882 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_normal.inst.cfg index c301df97ecc..c2dd1c4990b 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_coarse.inst.cfg index 07f2d2e9705..b5144668cbd 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_draft.inst.cfg index d7d418b8864..bb678333dcf 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_fine.inst.cfg index b91c31863a9..ad545491551 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_normal.inst.cfg index b5f25b64381..fb8cba3041d 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_coarse.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_coarse.inst.cfg index 25f0d8bf968..1943eef0f4d 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_draft.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_draft.inst.cfg index f29002d3654..55a39c03a77 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_draft.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_fine.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_fine.inst.cfg index 99d716b04ca..9826104ccb2 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_fine.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_normal.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_normal.inst.cfg index 32603cbb9bc..053d09767e0 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_normal.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_coarse.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_coarse.inst.cfg index 1a842c234c2..c5ada4d5904 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_draft.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_draft.inst.cfg index d5f733f24e7..8bb07d06649 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_draft.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_fine.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_fine.inst.cfg index 81d50301b5b..2a06b48905a 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_fine.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_normal.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_normal.inst.cfg index 48ee7515a69..ff0cb4a7e00 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_normal.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.10_fine.inst.cfg index f10186620cb..1a90f61f465 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.20_normal.inst.cfg index 441f20b96e8..9970928d625 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.30_draft.inst.cfg index 8aed00c1083..a6822bb56a8 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.40_coarse.inst.cfg index a6cce09509c..343d413403b 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.10_fine.inst.cfg index 627a5831632..0232e0222ff 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.20_normal.inst.cfg index adf3edf197b..05d60959ad9 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.30_draft.inst.cfg index 73096761d49..6cddf912cef 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.40_coarse.inst.cfg index 6a59c3f495e..9036f083501 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.10_fine.inst.cfg index 2ab9c6dd3c1..72b2ac34b56 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.20_normal.inst.cfg index 125dbe516e2..9c6e1ca45b3 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.30_draft.inst.cfg index dceb31ce0b3..b2fd3b1fb6d 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.40_coarse.inst.cfg index 948a405306a..1d6b2ff0d1d 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.10_fine.inst.cfg index b79a41ac4e2..a372b5d37a0 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.20_normal.inst.cfg index 13760e7dee0..a2cf5f780b0 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.30_draft.inst.cfg index e13b324c140..77a9bcf4475 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.40_coarse.inst.cfg index 6d9434d0c8a..b760682e22d 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.10_fine.inst.cfg index 7f7d839e97b..958918c010f 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.20_normal.inst.cfg index 031ba33f7fb..40c39e74601 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.30_draft.inst.cfg index 44fc013460c..5f01b400ceb 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.40_coarse.inst.cfg index 468c89d14a7..7918d012470 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.10_fine.inst.cfg index 4c17bca4efc..a28c2a05e2d 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.20_normal.inst.cfg index 70688d38bfe..6438abd22c8 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.30_draft.inst.cfg index d491bac5ea1..481574e4099 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.40_coarse.inst.cfg index a9131265b9c..e0b0d18bb50 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.10_fine.inst.cfg index 266cdf8bcd5..30a5507237c 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.20_normal.inst.cfg index 4ec758bc56a..e4ba451bc10 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.30_draft.inst.cfg index 7dd545c180a..65139b39932 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.40_coarse.inst.cfg index e9f9c5548f7..b0997befe9a 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.05.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.05.inst.cfg index 29c4883c8ac..25e85a7c508 100644 --- a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_005 -setting_version = 22 +setting_version = 23 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.10.inst.cfg index 02835da0227..d8bb913ee60 100644 --- a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.15.inst.cfg index adcfdf8083c..9616f723f6d 100644 --- a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.05.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.05.inst.cfg index 228205bb66c..8fb86d315a9 100644 --- a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_005 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.10.inst.cfg index 4a1e655226f..05bd6ed4e72 100644 --- a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.15.inst.cfg index 2cae8e47a7c..4bd1827021f 100644 --- a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.20.inst.cfg index 2bffc1cdbb8..7e7466769e1 100644 --- a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.10.inst.cfg index be2ffd421a4..9e1db971ffb 100644 --- a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.15.inst.cfg index 102049778bd..282894c4390 100644 --- a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.20.inst.cfg index 046e1c87bd8..a7e30338042 100644 --- a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.25.inst.cfg index b88d47fa6f6..5fbe8655d33 100644 --- a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.10.inst.cfg index 0bd539c4f70..e7ce0940657 100644 --- a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.15.inst.cfg index cd9afd7a4ba..3fa7f903764 100644 --- a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.20.inst.cfg index 080d63fea0e..df6be877268 100644 --- a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.25.inst.cfg index a32f9f1f1d8..6c2f48d4aa5 100644 --- a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.10.inst.cfg index 0635795d955..409463370dd 100644 --- a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.15.inst.cfg index 3defa66ad55..775fb209f37 100644 --- a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.20.inst.cfg index 1b906624ee2..1eb05bd4823 100644 --- a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.25.inst.cfg index 12a8ec6ba75..186e4ae790d 100644 --- a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.30.inst.cfg index ee41b6498b5..baf5abbb096 100644 --- a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.10.inst.cfg index 555fa476b02..ad5f65c5d10 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.15.inst.cfg index c2d9bef5580..6b1e4390290 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.20.inst.cfg index 11c14792d09..fae81972e9b 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.25.inst.cfg index b152a1f9056..3d842adac0f 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.30.inst.cfg index 70326714ba9..bba35f5e6c0 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.35.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.35.inst.cfg index d02d437029a..e9aafef0b32 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.15.inst.cfg index 1c8ac217458..9e8ac0fe073 100644 --- a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.20.inst.cfg index e0f90176307..e7aa39026ef 100644 --- a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.25.inst.cfg index 2d789cb1a83..4a119a3b786 100644 --- a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.30.inst.cfg index e6ae6f2012d..8c7652f358c 100644 --- a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.35.inst.cfg index aa79fa3cd13..9a2b2bbb458 100644 --- a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.15.inst.cfg index f1c171d147a..3cea25782b7 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.20.inst.cfg index 1183f562580..fb28d98eb8b 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.25.inst.cfg index cd8227a7948..23178b5adf2 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.30.inst.cfg index b936a23ec23..59622fc3190 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.35.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.35.inst.cfg index 4f4fd90dea2..d59245ae3bf 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.40.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.40.inst.cfg index ab4c21d9eb6..a97a6833bc2 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_040 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.20.inst.cfg index 51fbac0be08..b9e10a6bf02 100644 --- a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.25.inst.cfg index f02f6d1a3d4..9e29238068e 100644 --- a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.30.inst.cfg index 575dd45b334..e8ef2edd8f1 100644 --- a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.35.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.35.inst.cfg index 42ca6e96563..1b10439afc5 100644 --- a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.40.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.40.inst.cfg index 7cc7a48912e..67b6a26a728 100644 --- a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_040 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.25.inst.cfg index a6b5631adba..f6405d5ceca 100644 --- a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.30.inst.cfg index 645c565be07..228ddddc13e 100644 --- a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.35.inst.cfg b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.35.inst.cfg index 77df9c65ce0..725e885a1e5 100644 --- a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.40.inst.cfg b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.40.inst.cfg index 1589129fecc..42a8cf6770c 100644 --- a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_040 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.05.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.05.inst.cfg index 019344886e9..3a8189a2427 100644 --- a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_005 -setting_version = 22 +setting_version = 23 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.10.inst.cfg index fc53c3f830e..96f8ac2ba8b 100644 --- a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.15.inst.cfg index 208d90d9802..1c522258798 100644 --- a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.05.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.05.inst.cfg index be84b22ab3c..42d6059b2b6 100644 --- a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_005 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.10.inst.cfg index 676f4d3a5a8..0f300418d49 100644 --- a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.15.inst.cfg index 8b43a0dfc89..0841a4e683f 100644 --- a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.20.inst.cfg index c6e8abbac8f..d6293b8dd65 100644 --- a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.10.inst.cfg index 9ad587cb8b6..3cae06a9124 100644 --- a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.15.inst.cfg index 2416a15f1a8..85515279fa6 100644 --- a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.20.inst.cfg index bf8f1edcfb5..dc76ed4260d 100644 --- a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.25.inst.cfg index c53303a9435..2f93ba6669d 100644 --- a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.10.inst.cfg index 97f46add803..d566aa424ae 100644 --- a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.15.inst.cfg index e955f348c39..5799506d1ef 100644 --- a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.20.inst.cfg index 6636cc5df43..0c29bd477b9 100644 --- a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.25.inst.cfg index 80a411f4ee1..bb4cb5e5318 100644 --- a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.10.inst.cfg index 268a3b5fded..4f7b41945e8 100644 --- a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.15.inst.cfg index 5fc2fefe608..abaa1eedb66 100644 --- a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.20.inst.cfg index 1b025eff1b9..992234ba25e 100644 --- a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.25.inst.cfg index 3a1099913dd..73e2a07a8f6 100644 --- a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.30.inst.cfg index ce35c74a9e2..c00e9ecb00c 100644 --- a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.10.inst.cfg index b41a1c2d779..101fe44c823 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.15.inst.cfg index 967ca447d2b..6b084130dbb 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.20.inst.cfg index fd6749a78a0..948eefca176 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.25.inst.cfg index 1f93f389717..40dde2cf312 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.30.inst.cfg index f0f47461578..4090f8f855d 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.35.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.35.inst.cfg index 2512eda3372..5d6045a8e8d 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.15.inst.cfg index f129210b398..7ecdefdfe16 100644 --- a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.20.inst.cfg index 0d28659b59f..149e4d4109e 100644 --- a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.25.inst.cfg index 93bd9380386..da20e0651c6 100644 --- a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.30.inst.cfg index a4986efd93a..79a5566f672 100644 --- a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.35.inst.cfg index 56150eb5934..2726c46ff6e 100644 --- a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.15.inst.cfg index dcd11674bb4..ab747e927ca 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.20.inst.cfg index a287a857eb4..c85a32723d6 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.25.inst.cfg index c2e5f1111ae..dd474c0aaca 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.30.inst.cfg index cbd29ceefd0..83cd051b097 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.35.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.35.inst.cfg index 65329a712df..ab9d4ebe1ca 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.40.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.40.inst.cfg index fe790d3b0b0..9ad7853cdc4 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_040 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.20.inst.cfg index 2fa55f29474..724a51b8d85 100644 --- a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.25.inst.cfg index 1487ce9dc16..3c4d788df8f 100644 --- a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.30.inst.cfg index 466720c7492..5644483fde1 100644 --- a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.35.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.35.inst.cfg index 1258357326d..57d99f35de3 100644 --- a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.40.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.40.inst.cfg index 92280179de2..e75f3c35b04 100644 --- a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_040 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.25.inst.cfg index 1e4765a8690..368647795b5 100644 --- a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.30.inst.cfg index 8035afca89a..dd82a4775b2 100644 --- a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.35.inst.cfg b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.35.inst.cfg index 8d90e28f217..d7d4fbe412f 100644 --- a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.40.inst.cfg b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.40.inst.cfg index ff1d103b51f..91033d2bf51 100644 --- a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_040 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.05.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.05.inst.cfg index 7039988817c..f01da6ca32c 100644 --- a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_005 -setting_version = 22 +setting_version = 23 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.10.inst.cfg index 44df8539bd3..4eb395fb9a8 100644 --- a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.15.inst.cfg index 4b1036b2388..6f88469db6d 100644 --- a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.05.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.05.inst.cfg index 092f9664c6c..ba7ecfa53c3 100644 --- a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_005 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.10.inst.cfg index 18aec55b975..f6aa3822cad 100644 --- a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.15.inst.cfg index ff75c4473e4..195a34ba439 100644 --- a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.20.inst.cfg index ebd407c71a0..2c438ce53c1 100644 --- a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.10.inst.cfg index de44e9432a0..d343990b9d4 100644 --- a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.15.inst.cfg index 104ad9bb793..5b49c34064c 100644 --- a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.20.inst.cfg index 6a65a21a3d3..e4f58831b6e 100644 --- a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.25.inst.cfg index b1e69200486..3122c05e65a 100644 --- a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.10.inst.cfg index 72aef2b2de2..fc174af3706 100644 --- a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.15.inst.cfg index 61a004c456e..33df915b4c9 100644 --- a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.20.inst.cfg index 7d81acca8ac..048565919e8 100644 --- a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.25.inst.cfg index 56c16236251..d08823a8091 100644 --- a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.10.inst.cfg index 27d7f6a72d6..afaf24bd2aa 100644 --- a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.15.inst.cfg index 1a4390c9b00..cb71636a843 100644 --- a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.20.inst.cfg index d168ee10216..14c9525787c 100644 --- a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.25.inst.cfg index d98250ffef9..38c899216fb 100644 --- a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.30.inst.cfg index b84b2247ea0..caddf1980aa 100644 --- a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.10.inst.cfg index e0183f4ac68..610a8011d81 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.15.inst.cfg index da91e51addc..ea4244d4900 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.20.inst.cfg index 32c00925934..b2adf228fbc 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.25.inst.cfg index e1a05305d59..ee133982c27 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.30.inst.cfg index cb2868ecb40..0ac2b0afd17 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.35.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.35.inst.cfg index 7ec72a8a802..75132444978 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.15.inst.cfg index 646656843df..ac57d8b0741 100644 --- a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.20.inst.cfg index 4d236b723bc..5f718f55f1c 100644 --- a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.25.inst.cfg index a75d5f66532..8ac9a8b3439 100644 --- a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.30.inst.cfg index 61aa9b3f0a1..5f5b9fd44e4 100644 --- a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.35.inst.cfg index c3e5963988b..60368382822 100644 --- a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.15.inst.cfg index 4d58f8de3ce..9e7ca6b7fee 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.20.inst.cfg index a80320fe868..7f1d7584729 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.25.inst.cfg index 8bc55ffebc6..78b351455e1 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.30.inst.cfg index 47460c884e8..2dcc08eaaf1 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.35.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.35.inst.cfg index a940ece953a..c5c89b9df0c 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.40.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.40.inst.cfg index 09bfdb8cdc9..556df5c158d 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_040 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.20.inst.cfg index 12238edb52e..98284b527ad 100644 --- a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.25.inst.cfg index 8f8054ea990..d3304afba1c 100644 --- a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.30.inst.cfg index 3c4151c237a..aec24595d48 100644 --- a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.35.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.35.inst.cfg index f7d1cb13d09..e8ab9c5148f 100644 --- a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.40.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.40.inst.cfg index e4c48cbd471..4e99df07865 100644 --- a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_040 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.25.inst.cfg index e0aa85b29c6..88000bd7fbc 100644 --- a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.30.inst.cfg index 830845db85f..b30b616a7c5 100644 --- a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.35.inst.cfg b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.35.inst.cfg index d166b3683d9..1d2bb106127 100644 --- a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.40.inst.cfg b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.40.inst.cfg index db41444bedd..e3c4c6ed7b4 100644 --- a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_040 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/zav_layer_0.05.inst.cfg b/resources/quality/zav_base/zav_layer_0.05.inst.cfg index bfe990a2613..20bdc019502 100644 --- a/resources/quality/zav_base/zav_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_005 -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/zav_base/zav_layer_0.10.inst.cfg b/resources/quality/zav_base/zav_layer_0.10.inst.cfg index 1d472b6a7cb..b3a6325f861 100644 --- a/resources/quality/zav_base/zav_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/zav_base/zav_layer_0.15.inst.cfg b/resources/quality/zav_base/zav_layer_0.15.inst.cfg index 1e4f18a996a..d5c16701a22 100644 --- a/resources/quality/zav_base/zav_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/zav_base/zav_layer_0.20.inst.cfg b/resources/quality/zav_base/zav_layer_0.20.inst.cfg index b576e281787..bf855f6fe7b 100644 --- a/resources/quality/zav_base/zav_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/zav_base/zav_layer_0.25.inst.cfg b/resources/quality/zav_base/zav_layer_0.25.inst.cfg index a7069d1409e..8cd48165301 100644 --- a/resources/quality/zav_base/zav_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/zav_base/zav_layer_0.30.inst.cfg b/resources/quality/zav_base/zav_layer_0.30.inst.cfg index c575a0e4d21..9121f834145 100644 --- a/resources/quality/zav_base/zav_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality weight = -6 diff --git a/resources/quality/zav_base/zav_layer_0.35.inst.cfg b/resources/quality/zav_base/zav_layer_0.35.inst.cfg index 1b0e10edcdc..c3e37d97d94 100644 --- a/resources/quality/zav_base/zav_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality weight = -7 diff --git a/resources/quality/zav_base/zav_layer_0.40.inst.cfg b/resources/quality/zav_base/zav_layer_0.40.inst.cfg index 1587fe0f252..bbb88a8e865 100644 --- a/resources/quality/zav_base/zav_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_040 -setting_version = 22 +setting_version = 23 type = quality weight = -8 diff --git a/resources/quality/zyyx/zyyx_agile_global_fast.inst.cfg b/resources/quality/zyyx/zyyx_agile_global_fast.inst.cfg index 26c80e6a84b..8532b1d9cb8 100644 --- a/resources/quality/zyyx/zyyx_agile_global_fast.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_global_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_global_fine.inst.cfg b/resources/quality/zyyx/zyyx_agile_global_fine.inst.cfg index df7928149f2..5358ee99acd 100644 --- a/resources/quality/zyyx/zyyx_agile_global_fine.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_global_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_global_normal.inst.cfg b/resources/quality/zyyx/zyyx_agile_global_normal.inst.cfg index afa1010fa0c..2356a128b0e 100644 --- a/resources/quality/zyyx/zyyx_agile_global_normal.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_global_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/zyyx/zyyx_agile_pro_flex_fast.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_flex_fast.inst.cfg index 6a09f183c32..b18d8a67299 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_flex_fast.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_flex_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_pro_flex_fine.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_flex_fine.inst.cfg index 35531d33bc5..920c92633d6 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_flex_fine.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_flex_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_pro_flex_normal.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_flex_normal.inst.cfg index ed44af21e2c..e893ca4af11 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_flex_normal.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_flex_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/zyyx/zyyx_agile_pro_pla_fast.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_pla_fast.inst.cfg index a0e76d45cdd..3b3ed243764 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_pla_fast.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_pro_pla_fine.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_pla_fine.inst.cfg index a97fec7061b..347e3ccd74e 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_pla_fine.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_pro_pla_normal.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_pla_normal.inst.cfg index ed4a9057839..9af81dc5206 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_pla_normal.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/variants/arjun/arjun300_0.2.inst.cfg b/resources/variants/arjun/arjun300_0.2.inst.cfg index 577c9cea82f..93a9cda252d 100644 --- a/resources/variants/arjun/arjun300_0.2.inst.cfg +++ b/resources/variants/arjun/arjun300_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_0.3.inst.cfg b/resources/variants/arjun/arjun300_0.3.inst.cfg index 23e5d5d3b9e..6680413525b 100644 --- a/resources/variants/arjun/arjun300_0.3.inst.cfg +++ b/resources/variants/arjun/arjun300_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_0.4.inst.cfg b/resources/variants/arjun/arjun300_0.4.inst.cfg index 4b966b4b154..f0e78bd67ba 100644 --- a/resources/variants/arjun/arjun300_0.4.inst.cfg +++ b/resources/variants/arjun/arjun300_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_0.5.inst.cfg b/resources/variants/arjun/arjun300_0.5.inst.cfg index 279755a8e24..f5287a28485 100644 --- a/resources/variants/arjun/arjun300_0.5.inst.cfg +++ b/resources/variants/arjun/arjun300_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_0.6.inst.cfg b/resources/variants/arjun/arjun300_0.6.inst.cfg index 79ccd382864..acfb70d4265 100644 --- a/resources/variants/arjun/arjun300_0.6.inst.cfg +++ b/resources/variants/arjun/arjun300_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_0.8.inst.cfg b/resources/variants/arjun/arjun300_0.8.inst.cfg index c0be27c6718..081b1fe6136 100644 --- a/resources/variants/arjun/arjun300_0.8.inst.cfg +++ b/resources/variants/arjun/arjun300_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.2.inst.cfg b/resources/variants/arjun/arjun300_dm_0.2.inst.cfg index 441881b7b27..c09ec180e8d 100644 --- a/resources/variants/arjun/arjun300_dm_0.2.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.3.inst.cfg b/resources/variants/arjun/arjun300_dm_0.3.inst.cfg index 38737edbd73..bf777b0e823 100644 --- a/resources/variants/arjun/arjun300_dm_0.3.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.4.inst.cfg b/resources/variants/arjun/arjun300_dm_0.4.inst.cfg index ef5cf7b7f5d..0c83b6b21c0 100644 --- a/resources/variants/arjun/arjun300_dm_0.4.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.5.inst.cfg b/resources/variants/arjun/arjun300_dm_0.5.inst.cfg index 6e6f03f9231..a5fa9703087 100644 --- a/resources/variants/arjun/arjun300_dm_0.5.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.6.inst.cfg b/resources/variants/arjun/arjun300_dm_0.6.inst.cfg index 0fe27b5fcd3..23019db4c2b 100644 --- a/resources/variants/arjun/arjun300_dm_0.6.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.8.inst.cfg b/resources/variants/arjun/arjun300_dm_0.8.inst.cfg index 5700539ff40..0a44cd4a89e 100644 --- a/resources/variants/arjun/arjun300_dm_0.8.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.2.inst.cfg b/resources/variants/arjun/arjun300_mm_0.2.inst.cfg index bbdf6bc7f3a..ab3c18911b6 100644 --- a/resources/variants/arjun/arjun300_mm_0.2.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.3.inst.cfg b/resources/variants/arjun/arjun300_mm_0.3.inst.cfg index 3d2e71f3ef7..29999d094af 100644 --- a/resources/variants/arjun/arjun300_mm_0.3.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.4.inst.cfg b/resources/variants/arjun/arjun300_mm_0.4.inst.cfg index 155231c20ff..bc6a26bbae7 100644 --- a/resources/variants/arjun/arjun300_mm_0.4.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.5.inst.cfg b/resources/variants/arjun/arjun300_mm_0.5.inst.cfg index 1ae108dd585..2cb3776d91f 100644 --- a/resources/variants/arjun/arjun300_mm_0.5.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.6.inst.cfg b/resources/variants/arjun/arjun300_mm_0.6.inst.cfg index 5716d2037fd..64193bc3338 100644 --- a/resources/variants/arjun/arjun300_mm_0.6.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.8.inst.cfg b/resources/variants/arjun/arjun300_mm_0.8.inst.cfg index 7274d191a70..a00eb4737d1 100644 --- a/resources/variants/arjun/arjun300_mm_0.8.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_pva_0.2.inst.cfg b/resources/variants/arjun/arjun300_pva_0.2.inst.cfg index 065fecd92b7..af032b8d320 100644 --- a/resources/variants/arjun/arjun300_pva_0.2.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_pva_0.3.inst.cfg b/resources/variants/arjun/arjun300_pva_0.3.inst.cfg index cef64896b1d..94679d03104 100644 --- a/resources/variants/arjun/arjun300_pva_0.3.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_pva_0.4.inst.cfg b/resources/variants/arjun/arjun300_pva_0.4.inst.cfg index 273bab3848b..c4e63bff057 100644 --- a/resources/variants/arjun/arjun300_pva_0.4.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_pva_0.5.inst.cfg b/resources/variants/arjun/arjun300_pva_0.5.inst.cfg index 4ac74b10b05..9647cc0ddf8 100644 --- a/resources/variants/arjun/arjun300_pva_0.5.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_pva_0.6.inst.cfg b/resources/variants/arjun/arjun300_pva_0.6.inst.cfg index 9522f1a103a..6b8ff4aee4a 100644 --- a/resources/variants/arjun/arjun300_pva_0.6.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_pva_0.8.inst.cfg b/resources/variants/arjun/arjun300_pva_0.8.inst.cfg index 1e47424034d..75df806b085 100644 --- a/resources/variants/arjun/arjun300_pva_0.8.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_0.2.inst.cfg b/resources/variants/arjun/arjunpro300_0.2.inst.cfg index f5d15066100..810c6887b14 100644 --- a/resources/variants/arjun/arjunpro300_0.2.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_0.3.inst.cfg b/resources/variants/arjun/arjunpro300_0.3.inst.cfg index ad2c0ad0c70..36a3c1bab63 100644 --- a/resources/variants/arjun/arjunpro300_0.3.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_0.4.inst.cfg b/resources/variants/arjun/arjunpro300_0.4.inst.cfg index ace0f0bb40f..75a58cd9783 100644 --- a/resources/variants/arjun/arjunpro300_0.4.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_0.5.inst.cfg b/resources/variants/arjun/arjunpro300_0.5.inst.cfg index 085a1d5ea2c..19c08457c57 100644 --- a/resources/variants/arjun/arjunpro300_0.5.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_0.6.inst.cfg b/resources/variants/arjun/arjunpro300_0.6.inst.cfg index 2976b3a7b09..8d4d1d914ae 100644 --- a/resources/variants/arjun/arjunpro300_0.6.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_0.8.inst.cfg b/resources/variants/arjun/arjunpro300_0.8.inst.cfg index bee58c2f5f6..52f028cba0d 100644 --- a/resources/variants/arjun/arjunpro300_0.8.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.2.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.2.inst.cfg index 091ad83670a..4373356eeae 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.2.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.3.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.3.inst.cfg index b6f9eb65221..8f78856b630 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.3.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.4.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.4.inst.cfg index c60c55ad05f..00467ec7377 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.4.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.5.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.5.inst.cfg index 0ad2553b8e0..c4860fbcc9f 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.5.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.6.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.6.inst.cfg index 581f430e03f..45c2c5392ca 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.6.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.8.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.8.inst.cfg index 7bbe6039693..c396dd139ce 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.8.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.2.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.2.inst.cfg index 45a05c0eea6..cc3d0e8c52b 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.2.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.3.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.3.inst.cfg index 4475cdcded2..9ece24fc84b 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.3.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.4.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.4.inst.cfg index 02c50dfac70..2489d0d4fce 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.4.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.5.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.5.inst.cfg index 07443b9d269..c8864fbb178 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.5.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.6.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.6.inst.cfg index b0ed67209c4..bf2019c7a2d 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.6.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.8.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.8.inst.cfg index 64733eeff1d..13ed3b65e75 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.8.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_pva_0.2.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.2.inst.cfg index 3fc340152c1..cc0c010ce2f 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.2.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_pva_0.3.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.3.inst.cfg index 8ae2ffb70ae..9204d755cc6 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.3.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_pva_0.4.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.4.inst.cfg index b444d14925d..2b36ddec9c1 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.4.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_pva_0.5.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.5.inst.cfg index e78ca2f27aa..167eaaf99d5 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.5.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_pva_0.6.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.6.inst.cfg index d6a3770cd90..4cf68ad45a7 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.6.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_pva_0.8.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.8.inst.cfg index c19c8ca79ae..cb05da3c8ab 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.8.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_base_0.2.inst.cfg b/resources/variants/artillery/artillery_base_0.2.inst.cfg index f2ff1eecce2..4e78b919d91 100644 --- a/resources/variants/artillery/artillery_base_0.2.inst.cfg +++ b/resources/variants/artillery/artillery_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_base_0.3.inst.cfg b/resources/variants/artillery/artillery_base_0.3.inst.cfg index 1c2e7e39b10..3b1fdb4c30e 100644 --- a/resources/variants/artillery/artillery_base_0.3.inst.cfg +++ b/resources/variants/artillery/artillery_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_base_0.4.inst.cfg b/resources/variants/artillery/artillery_base_0.4.inst.cfg index ced36c984c0..d64f66e1107 100644 --- a/resources/variants/artillery/artillery_base_0.4.inst.cfg +++ b/resources/variants/artillery/artillery_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_base_0.6.inst.cfg b/resources/variants/artillery/artillery_base_0.6.inst.cfg index 8a5d140461f..89753a63428 100644 --- a/resources/variants/artillery/artillery_base_0.6.inst.cfg +++ b/resources/variants/artillery/artillery_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_base_0.8.inst.cfg b/resources/variants/artillery/artillery_base_0.8.inst.cfg index f2b8936aa6e..0c217a6d955 100644 --- a/resources/variants/artillery/artillery_base_0.8.inst.cfg +++ b/resources/variants/artillery/artillery_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_base_1.0.inst.cfg b/resources/variants/artillery/artillery_base_1.0.inst.cfg index 8aef4b39198..d484d543476 100644 --- a/resources/variants/artillery/artillery_base_1.0.inst.cfg +++ b/resources/variants/artillery/artillery_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.2.inst.cfg b/resources/variants/artillery/artillery_genius_0.2.inst.cfg index 81f21a98033..97e014d9df7 100644 --- a/resources/variants/artillery/artillery_genius_0.2.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.3.inst.cfg b/resources/variants/artillery/artillery_genius_0.3.inst.cfg index aeee90957ae..d2debe768f3 100644 --- a/resources/variants/artillery/artillery_genius_0.3.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.4.inst.cfg b/resources/variants/artillery/artillery_genius_0.4.inst.cfg index 9ae2dcd26cb..ad3ec300adc 100644 --- a/resources/variants/artillery/artillery_genius_0.4.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.5.inst.cfg b/resources/variants/artillery/artillery_genius_0.5.inst.cfg index 1ceec2ae13c..048d51b35bf 100644 --- a/resources/variants/artillery/artillery_genius_0.5.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.6.inst.cfg b/resources/variants/artillery/artillery_genius_0.6.inst.cfg index ca4f68f56d7..8206e862e98 100644 --- a/resources/variants/artillery/artillery_genius_0.6.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.8.inst.cfg b/resources/variants/artillery/artillery_genius_0.8.inst.cfg index a25fe2ead9f..d5b9ba26fe2 100644 --- a/resources/variants/artillery/artillery_genius_0.8.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_1.0.inst.cfg b/resources/variants/artillery/artillery_genius_1.0.inst.cfg index 9fe74fa826d..5bd5ee157c1 100644 --- a/resources/variants/artillery/artillery_genius_1.0.inst.cfg +++ b/resources/variants/artillery/artillery_genius_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.2.inst.cfg b/resources/variants/artillery/artillery_hornet_0.2.inst.cfg index 6d28800ee59..b489bb232fd 100644 --- a/resources/variants/artillery/artillery_hornet_0.2.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.3.inst.cfg b/resources/variants/artillery/artillery_hornet_0.3.inst.cfg index c57bd0ff2c5..1b2d03d4460 100644 --- a/resources/variants/artillery/artillery_hornet_0.3.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.4.inst.cfg b/resources/variants/artillery/artillery_hornet_0.4.inst.cfg index b9dc76e966f..15601bce9fb 100644 --- a/resources/variants/artillery/artillery_hornet_0.4.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.5.inst.cfg b/resources/variants/artillery/artillery_hornet_0.5.inst.cfg index 51ce6bc2bdf..625732f8be5 100644 --- a/resources/variants/artillery/artillery_hornet_0.5.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.6.inst.cfg b/resources/variants/artillery/artillery_hornet_0.6.inst.cfg index 690360bf154..ee5b4d5b73b 100644 --- a/resources/variants/artillery/artillery_hornet_0.6.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.8.inst.cfg b/resources/variants/artillery/artillery_hornet_0.8.inst.cfg index 14de186199c..ad3c82bc2b6 100644 --- a/resources/variants/artillery/artillery_hornet_0.8.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_1.0.inst.cfg b/resources/variants/artillery/artillery_hornet_1.0.inst.cfg index 4ca3b07d682..c3b43f462a6 100644 --- a/resources/variants/artillery/artillery_hornet_1.0.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_0.2.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_0.2.inst.cfg index 1c1d017ca49..b7cedae9830 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_0.2.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_0.3.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_0.3.inst.cfg index a6ac9c3a725..0b0b9c52d48 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_0.3.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_0.4.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_0.4.inst.cfg index 3dbeb3e6125..ca7d41cc6a7 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_0.4.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_0.6.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_0.6.inst.cfg index e0baaf8ff8d..344852dbe65 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_0.6.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_0.8.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_0.8.inst.cfg index 1191969b3fb..2796719d49e 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_0.8.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_1.0.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_1.0.inst.cfg index 9983a827213..f18dc59570e 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_1.0.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_asterion_ht_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_asterion_ht_v6_0.40.inst.cfg index bff78347597..f5ded16281e 100644 --- a/resources/variants/atmat/atmat_asterion_ht_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_asterion_ht_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_asterion_ht_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_asterion_ht_v6_0.80.inst.cfg index 9a2eb1303af..efc2f441959 100644 --- a/resources/variants/atmat/atmat_asterion_ht_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_asterion_ht_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_asterion_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_asterion_v6_0.40.inst.cfg index 43ffb126266..2d98543eb4b 100644 --- a/resources/variants/atmat/atmat_asterion_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_asterion_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_asterion_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_asterion_v6_0.80.inst.cfg index ecdd2feef8a..88049192882 100644 --- a/resources/variants/atmat/atmat_asterion_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_asterion_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_galaxy_500_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_galaxy_500_v6_0.40.inst.cfg index e3df8ef738c..4c4e32aea84 100644 --- a/resources/variants/atmat/atmat_galaxy_500_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_galaxy_500_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_galaxy_500_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_galaxy_500_v6_0.80.inst.cfg index 359c455dd5a..0c40d52a3fc 100644 --- a/resources/variants/atmat/atmat_galaxy_500_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_galaxy_500_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_galaxy_600_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_galaxy_600_v6_0.40.inst.cfg index 3ff08a04866..a5f670c7d95 100644 --- a/resources/variants/atmat/atmat_galaxy_600_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_galaxy_600_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_galaxy_600_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_galaxy_600_v6_0.80.inst.cfg index d0265cec285..3f8339500ad 100644 --- a/resources/variants/atmat/atmat_galaxy_600_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_galaxy_600_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.40.inst.cfg index 828e64805be..667962e5de1 100644 --- a/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.80.inst.cfg index 775ccd53738..69bb3f9c70f 100644 --- a/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.40.inst.cfg index 25f75703aea..f8cb3c1f844 100644 --- a/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.80.inst.cfg index e3df3728585..1d319e7f030 100644 --- a/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.40.inst.cfg index a757ec6ad18..c70d0c1ecbd 100644 --- a/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.80.inst.cfg index 3c8dedb3a3a..38174decad2 100644 --- a/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.40.inst.cfg index 7a2891e9ce8..6725cedd8ab 100644 --- a/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.80.inst.cfg index b4e33629dd5..4ea72f75dbc 100644 --- a/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.40.inst.cfg index d71af8d02a0..b28e7ddfc01 100644 --- a/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.80.inst.cfg index e1e1012e7f5..27678a3b2ed 100644 --- a/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.40.inst.cfg index 80706e803d4..901d036966b 100644 --- a/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.80.inst.cfg index 533e8e0ed83..386d623a52c 100644 --- a/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xl_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_xl_v6_0.40.inst.cfg index 86ff65c5335..06c58bb8836 100644 --- a/resources/variants/atmat/atmat_signal_xl_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xl_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xl_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_xl_v6_0.80.inst.cfg index 3f8f603c374..dfeba978deb 100644 --- a/resources/variants/atmat/atmat_signal_xl_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xl_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xxl_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_xxl_v6_0.40.inst.cfg index 461ff2a018e..dfac869cec9 100644 --- a/resources/variants/atmat/atmat_signal_xxl_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xxl_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xxl_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_xxl_v6_0.80.inst.cfg index 186e18b8816..8aae3a6eb62 100644 --- a/resources/variants/atmat/atmat_signal_xxl_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xxl_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xxxl_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_xxxl_v6_0.40.inst.cfg index 3261fd1b4e0..6558650b251 100644 --- a/resources/variants/atmat/atmat_signal_xxxl_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xxxl_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xxxl_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_xxxl_v6_0.80.inst.cfg index 2b60dace640..4a1f710176a 100644 --- a/resources/variants/atmat/atmat_signal_xxxl_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xxxl_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_all_metal_brass_0.2.inst.cfg b/resources/variants/atmat/atom3_all_metal_brass_0.2.inst.cfg index 482efd61b54..2c6c67e10f6 100644 --- a/resources/variants/atmat/atom3_all_metal_brass_0.2.inst.cfg +++ b/resources/variants/atmat/atom3_all_metal_brass_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_all_metal_brass_0.4.inst.cfg b/resources/variants/atmat/atom3_all_metal_brass_0.4.inst.cfg index 11fc3b222e0..37107ab53b4 100644 --- a/resources/variants/atmat/atom3_all_metal_brass_0.4.inst.cfg +++ b/resources/variants/atmat/atom3_all_metal_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_all_metal_brass_0.6.inst.cfg b/resources/variants/atmat/atom3_all_metal_brass_0.6.inst.cfg index 0cd4aa92eaa..25865d3408b 100644 --- a/resources/variants/atmat/atom3_all_metal_brass_0.6.inst.cfg +++ b/resources/variants/atmat/atom3_all_metal_brass_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_all_metal_brass_0.2.inst.cfg b/resources/variants/atmat/atom3_lite_all_metal_brass_0.2.inst.cfg index 33c16b9e3b6..c6fcc777e29 100644 --- a/resources/variants/atmat/atom3_lite_all_metal_brass_0.2.inst.cfg +++ b/resources/variants/atmat/atom3_lite_all_metal_brass_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_all_metal_brass_0.4.inst.cfg b/resources/variants/atmat/atom3_lite_all_metal_brass_0.4.inst.cfg index 13bd63686d9..2b9a166b816 100644 --- a/resources/variants/atmat/atom3_lite_all_metal_brass_0.4.inst.cfg +++ b/resources/variants/atmat/atom3_lite_all_metal_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_all_metal_brass_0.6.inst.cfg b/resources/variants/atmat/atom3_lite_all_metal_brass_0.6.inst.cfg index 869e0d3cc23..a8893848959 100644 --- a/resources/variants/atmat/atom3_lite_all_metal_brass_0.6.inst.cfg +++ b/resources/variants/atmat/atom3_lite_all_metal_brass_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_ptfe_brass_0.2.inst.cfg b/resources/variants/atmat/atom3_lite_ptfe_brass_0.2.inst.cfg index e7a55716027..9ffd271caa5 100644 --- a/resources/variants/atmat/atom3_lite_ptfe_brass_0.2.inst.cfg +++ b/resources/variants/atmat/atom3_lite_ptfe_brass_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_ptfe_brass_0.4.inst.cfg b/resources/variants/atmat/atom3_lite_ptfe_brass_0.4.inst.cfg index c52d2bd3ab1..8b1fcf08d15 100644 --- a/resources/variants/atmat/atom3_lite_ptfe_brass_0.4.inst.cfg +++ b/resources/variants/atmat/atom3_lite_ptfe_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_ptfe_brass_0.6.inst.cfg b/resources/variants/atmat/atom3_lite_ptfe_brass_0.6.inst.cfg index 1d46ba57679..e2dee19e6c1 100644 --- a/resources/variants/atmat/atom3_lite_ptfe_brass_0.6.inst.cfg +++ b/resources/variants/atmat/atom3_lite_ptfe_brass_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_ptfe_brass_0.2.inst.cfg b/resources/variants/atmat/atom3_ptfe_brass_0.2.inst.cfg index 3702ab85990..1c80d91604f 100644 --- a/resources/variants/atmat/atom3_ptfe_brass_0.2.inst.cfg +++ b/resources/variants/atmat/atom3_ptfe_brass_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_ptfe_brass_0.4.inst.cfg b/resources/variants/atmat/atom3_ptfe_brass_0.4.inst.cfg index e121b2d94ef..b8a92d06f34 100644 --- a/resources/variants/atmat/atom3_ptfe_brass_0.4.inst.cfg +++ b/resources/variants/atmat/atom3_ptfe_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_ptfe_brass_0.6.inst.cfg b/resources/variants/atmat/atom3_ptfe_brass_0.6.inst.cfg index 168d4ee0016..ae11da958a9 100644 --- a/resources/variants/atmat/atom3_ptfe_brass_0.6.inst.cfg +++ b/resources/variants/atmat/atom3_ptfe_brass_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_0.2.inst.cfg b/resources/variants/biqu/biqu_b1_0.2.inst.cfg index bd07a701988..33cc8cddf06 100755 --- a/resources/variants/biqu/biqu_b1_0.2.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_0.3.inst.cfg b/resources/variants/biqu/biqu_b1_0.3.inst.cfg index 1a657b58742..5eda2edd831 100755 --- a/resources/variants/biqu/biqu_b1_0.3.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_0.4.inst.cfg b/resources/variants/biqu/biqu_b1_0.4.inst.cfg index 34544d9d2b7..20e5e4e90af 100755 --- a/resources/variants/biqu/biqu_b1_0.4.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_0.5.inst.cfg b/resources/variants/biqu/biqu_b1_0.5.inst.cfg index e20297039af..6fa7a4543b6 100755 --- a/resources/variants/biqu/biqu_b1_0.5.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_0.6.inst.cfg b/resources/variants/biqu/biqu_b1_0.6.inst.cfg index 620b5c385d3..fbeeb8ba59f 100755 --- a/resources/variants/biqu/biqu_b1_0.6.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_0.8.inst.cfg b/resources/variants/biqu/biqu_b1_0.8.inst.cfg index 2ba4ad82353..39b4ffdc2b2 100755 --- a/resources/variants/biqu/biqu_b1_0.8.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.2.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.2.inst.cfg index dd3838dcb3c..f5fd67b87d6 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.2.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.3.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.3.inst.cfg index 665915ca7bd..d6cfb2a776f 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.3.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.4.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.4.inst.cfg index c9d4b008d40..6cde06bf356 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.4.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.5.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.5.inst.cfg index 6669153af02..8fcb3f9788d 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.5.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.6.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.6.inst.cfg index ec42aefc617..40bf791ec53 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.6.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.8.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.8.inst.cfg index 670956305c1..514a3792325 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.8.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_base_0.2.inst.cfg b/resources/variants/biqu/biqu_base_0.2.inst.cfg index 13643d69ec8..b42d0c87f35 100755 --- a/resources/variants/biqu/biqu_base_0.2.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_base_0.3.inst.cfg b/resources/variants/biqu/biqu_base_0.3.inst.cfg index 3d92db130a3..f486854eebb 100755 --- a/resources/variants/biqu/biqu_base_0.3.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_base_0.4.inst.cfg b/resources/variants/biqu/biqu_base_0.4.inst.cfg index 57494b698b5..4236b861780 100755 --- a/resources/variants/biqu/biqu_base_0.4.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_base_0.5.inst.cfg b/resources/variants/biqu/biqu_base_0.5.inst.cfg index cc8c9768a07..37f5505bded 100755 --- a/resources/variants/biqu/biqu_base_0.5.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_base_0.6.inst.cfg b/resources/variants/biqu/biqu_base_0.6.inst.cfg index 36de8654120..9793718e5da 100755 --- a/resources/variants/biqu/biqu_base_0.6.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_base_0.8.inst.cfg b/resources/variants/biqu/biqu_base_0.8.inst.cfg index 45f79ec8464..f720f7fd9cf 100755 --- a/resources/variants/biqu/biqu_base_0.8.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.2.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.2.inst.cfg index e1477d6752d..5498de417a6 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.2.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.3.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.3.inst.cfg index e811da5750f..86be976e203 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.3.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.4.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.4.inst.cfg index 5fe45484411..8c04da610d4 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.4.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.5.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.5.inst.cfg index f55767ede31..f886e6b1061 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.5.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.6.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.6.inst.cfg index f19b140683d..74e59e38c85 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.6.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.8.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.8.inst.cfg index 7acc8686fbb..70d8d131b49 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.8.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.2.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.2.inst.cfg index 86bb2dd6704..cb199db0263 100755 --- a/resources/variants/biqu/biqu_hurakan_0.2.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.3.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.3.inst.cfg index 4eb7a8011ad..d3ceab8f55e 100755 --- a/resources/variants/biqu/biqu_hurakan_0.3.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.4.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.4.inst.cfg index 807cb5ddd67..a4ef00cc0e6 100755 --- a/resources/variants/biqu/biqu_hurakan_0.4.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.5.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.5.inst.cfg index daceb747d72..045a3f99cc9 100755 --- a/resources/variants/biqu/biqu_hurakan_0.5.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.6.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.6.inst.cfg index 544623031bd..a69f4fa8161 100755 --- a/resources/variants/biqu/biqu_hurakan_0.6.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.8.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.8.inst.cfg index 8ec65206738..8bad103e9d2 100755 --- a/resources/variants/biqu/biqu_hurakan_0.8.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.20.inst.cfg b/resources/variants/blocks/blocks_mkii_0.20.inst.cfg index 167ef6d5592..c4fe2e68f29 100644 --- a/resources/variants/blocks/blocks_mkii_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.30.inst.cfg b/resources/variants/blocks/blocks_mkii_0.30.inst.cfg index eb0d9014968..5351019fc3b 100644 --- a/resources/variants/blocks/blocks_mkii_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.40.inst.cfg b/resources/variants/blocks/blocks_mkii_0.40.inst.cfg index ec2f9874589..2b7a2edf752 100644 --- a/resources/variants/blocks/blocks_mkii_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.50.inst.cfg b/resources/variants/blocks/blocks_mkii_0.50.inst.cfg index ae89e827618..8a186ad31a4 100644 --- a/resources/variants/blocks/blocks_mkii_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.60.inst.cfg b/resources/variants/blocks/blocks_mkii_0.60.inst.cfg index 0426baadd78..9ee17968fc0 100644 --- a/resources/variants/blocks/blocks_mkii_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.80.inst.cfg b/resources/variants/blocks/blocks_mkii_0.80.inst.cfg index cc602bfdc80..d2847e54105 100644 --- a/resources/variants/blocks/blocks_mkii_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.20.inst.cfg b/resources/variants/blocks/blocks_one_0.20.inst.cfg index fe8cb9c8655..f85d14be4f9 100644 --- a/resources/variants/blocks/blocks_one_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.30.inst.cfg b/resources/variants/blocks/blocks_one_0.30.inst.cfg index 65b86a5d55c..da4aecc1ff6 100644 --- a/resources/variants/blocks/blocks_one_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.40.inst.cfg b/resources/variants/blocks/blocks_one_0.40.inst.cfg index 1c6e33046cb..fc00de5356d 100644 --- a/resources/variants/blocks/blocks_one_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.50.inst.cfg b/resources/variants/blocks/blocks_one_0.50.inst.cfg index 6163a0a0d5e..af4d3206f19 100644 --- a/resources/variants/blocks/blocks_one_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.60.inst.cfg b/resources/variants/blocks/blocks_one_0.60.inst.cfg index 82b6799ae97..ef2c7d5e8d3 100644 --- a/resources/variants/blocks/blocks_one_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.80.inst.cfg b/resources/variants/blocks/blocks_one_0.80.inst.cfg index abca2ad27cc..933a875b53c 100644 --- a/resources/variants/blocks/blocks_one_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_0.40.inst.cfg b/resources/variants/blocks/blocks_pros100_0.40.inst.cfg index 1855a2ed5e2..b927508991f 100644 --- a/resources/variants/blocks/blocks_pros100_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_0.50.inst.cfg b/resources/variants/blocks/blocks_pros100_0.50.inst.cfg index b731e20f89f..8c68a6ced70 100644 --- a/resources/variants/blocks/blocks_pros100_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_0.60.inst.cfg b/resources/variants/blocks/blocks_pros100_0.60.inst.cfg index c3a6ac9bbbb..e3994bfe5e6 100644 --- a/resources/variants/blocks/blocks_pros100_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_0.80.inst.cfg b/resources/variants/blocks/blocks_pros100_0.80.inst.cfg index a08712376be..df4c5e7047e 100644 --- a/resources/variants/blocks/blocks_pros100_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_1.0.inst.cfg b/resources/variants/blocks/blocks_pros100_1.0.inst.cfg index 3f968bf5203..ea3718470af 100644 --- a/resources/variants/blocks/blocks_pros100_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_1.2.inst.cfg b/resources/variants/blocks/blocks_pros100_1.2.inst.cfg index cba7d886f5f..88cb2d46b25 100644 --- a/resources/variants/blocks/blocks_pros100_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_0.40.inst.cfg b/resources/variants/blocks/blocks_pros30_0.40.inst.cfg index d5686657600..f5b36fcb86a 100644 --- a/resources/variants/blocks/blocks_pros30_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_0.50.inst.cfg b/resources/variants/blocks/blocks_pros30_0.50.inst.cfg index f023173e28f..72a17f4c666 100644 --- a/resources/variants/blocks/blocks_pros30_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_0.60.inst.cfg b/resources/variants/blocks/blocks_pros30_0.60.inst.cfg index 7479ff06a45..e8b9735ebbc 100644 --- a/resources/variants/blocks/blocks_pros30_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_0.80.inst.cfg b/resources/variants/blocks/blocks_pros30_0.80.inst.cfg index 4ffb9f2a13c..c7eda949551 100644 --- a/resources/variants/blocks/blocks_pros30_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_1.0.inst.cfg b/resources/variants/blocks/blocks_pros30_1.0.inst.cfg index eca0070ed3e..6a8101f419a 100644 --- a/resources/variants/blocks/blocks_pros30_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_1.2.inst.cfg b/resources/variants/blocks/blocks_pros30_1.2.inst.cfg index 4b1eda711ad..b63d6d49305 100644 --- a/resources/variants/blocks/blocks_pros30_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_ht_0.3.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.3.inst.cfg index 6d26776aadc..f01cdae8738 100644 --- a/resources/variants/blocks/blocks_r21_ht_0.3.inst.cfg +++ b/resources/variants/blocks/blocks_r21_ht_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_ht_0.4.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.4.inst.cfg index e3c44dfd886..953c109864a 100644 --- a/resources/variants/blocks/blocks_r21_ht_0.4.inst.cfg +++ b/resources/variants/blocks/blocks_r21_ht_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_ht_0.5.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.5.inst.cfg index 67a08f1eca3..f37090cc343 100644 --- a/resources/variants/blocks/blocks_r21_ht_0.5.inst.cfg +++ b/resources/variants/blocks/blocks_r21_ht_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_ht_0.6.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.6.inst.cfg index 0bf24b9a8b4..884d6985e8d 100644 --- a/resources/variants/blocks/blocks_r21_ht_0.6.inst.cfg +++ b/resources/variants/blocks/blocks_r21_ht_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_ht_0.8.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.8.inst.cfg index 6730ce6147c..503e7dbc379 100644 --- a/resources/variants/blocks/blocks_r21_ht_0.8.inst.cfg +++ b/resources/variants/blocks/blocks_r21_ht_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.20.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.20.inst.cfg index 29d404547e4..92520d74123 100644 --- a/resources/variants/blocks/blocks_r21_st_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.30.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.30.inst.cfg index 10aa0527419..c3ef2742348 100644 --- a/resources/variants/blocks/blocks_r21_st_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.40.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.40.inst.cfg index 6e596d6f55c..0a70809ed48 100644 --- a/resources/variants/blocks/blocks_r21_st_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.50.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.50.inst.cfg index 90eb8127dd9..72280956ca6 100644 --- a/resources/variants/blocks/blocks_r21_st_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.60.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.60.inst.cfg index 58f45943b96..b0a2437841b 100644 --- a/resources/variants/blocks/blocks_r21_st_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.80.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.80.inst.cfg index 4b63981c604..0f4f86afc66 100644 --- a/resources/variants/blocks/blocks_r21_st_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_1.0.inst.cfg b/resources/variants/blocks/blocks_r21_st_1.0.inst.cfg index ed49040e452..65c00081e67 100644 --- a/resources/variants/blocks/blocks_r21_st_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_1.2.inst.cfg b/resources/variants/blocks/blocks_r21_st_1.2.inst.cfg index a1ca742b055..f7550f5709a 100644 --- a/resources/variants/blocks/blocks_r21_st_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_ht_0.3.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.3.inst.cfg index e6255aaf4bc..ac3cfb8a778 100644 --- a/resources/variants/blocks/blocks_rd50_ht_0.3.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_ht_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_ht_0.4.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.4.inst.cfg index 0af109a035f..930ef1c9565 100644 --- a/resources/variants/blocks/blocks_rd50_ht_0.4.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_ht_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_ht_0.5.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.5.inst.cfg index d34ed634743..ee7c7af5683 100644 --- a/resources/variants/blocks/blocks_rd50_ht_0.5.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_ht_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_ht_0.6.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.6.inst.cfg index 531bbc5159b..cd4a03a63f3 100644 --- a/resources/variants/blocks/blocks_rd50_ht_0.6.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_ht_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_ht_0.8.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.8.inst.cfg index df29382e6bb..ed2b2c05e80 100644 --- a/resources/variants/blocks/blocks_rd50_ht_0.8.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_ht_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.20.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.20.inst.cfg index c340c7f8dc8..3c6659b8779 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.30.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.30.inst.cfg index 577c37ac1b8..b6479ccf55c 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.40.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.40.inst.cfg index 174794aa8b5..fedb0eb3cb5 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.50.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.50.inst.cfg index d51641b6562..4706b132649 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.60.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.60.inst.cfg index bfb6e03bd60..f3438683c31 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.80.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.80.inst.cfg index ee98152381a..e3392fef46d 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_1.0.inst.cfg b/resources/variants/blocks/blocks_rd50_st_1.0.inst.cfg index 2f017c559b8..f0267d08012 100644 --- a/resources/variants/blocks/blocks_rd50_st_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_1.2.inst.cfg b/resources/variants/blocks/blocks_rd50_st_1.2.inst.cfg index ca99d821776..f59324621b4 100644 --- a/resources/variants/blocks/blocks_rd50_st_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.3.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.3.inst.cfg index aebe3c094e4..91c2314f6c0 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_ht_0.3.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.4.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.4.inst.cfg index d834ee11e76..4615f9296db 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_ht_0.4.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.5.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.5.inst.cfg index 1903f4b568e..0b9a42a44f0 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_ht_0.5.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.6.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.6.inst.cfg index 27986f2d81a..ec94cf47007 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_ht_0.6.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.8.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.8.inst.cfg index 29f328c9c13..f2ea9ceac0c 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_ht_0.8.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.20.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.20.inst.cfg index 333f6402860..6cd7003c11f 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.30.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.30.inst.cfg index 3c21f6eb335..b47b774176e 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.40.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.40.inst.cfg index d1600007ea3..23bfc0aeddc 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.50.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.50.inst.cfg index 7ce36f41c22..9734deca273 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.60.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.60.inst.cfg index 4d345c42b9b..556ca65c965 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.80.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.80.inst.cfg index 34ebf3f7c0b..7a4ce91202b 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_1.0.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_1.0.inst.cfg index ce6e8f932ca..d0f4b458fe3 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_1.2.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_1.2.inst.cfg index 373e6e8ad2c..1b7173778ed 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.3.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.3.inst.cfg index cef05a9ea8e..bc964011f8e 100644 --- a/resources/variants/blocks/blocks_rd50mirror_ht_0.3.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.4.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.4.inst.cfg index c6d548b993b..07e845e9d6e 100644 --- a/resources/variants/blocks/blocks_rd50mirror_ht_0.4.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.5.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.5.inst.cfg index ff2ef479faf..725cb8c639e 100644 --- a/resources/variants/blocks/blocks_rd50mirror_ht_0.5.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.6.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.6.inst.cfg index 562ed73e929..0d0f9628f71 100644 --- a/resources/variants/blocks/blocks_rd50mirror_ht_0.6.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.8.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.8.inst.cfg index 277a0dcb9ee..00e1b1c48cb 100644 --- a/resources/variants/blocks/blocks_rd50mirror_ht_0.8.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.20.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.20.inst.cfg index d813be41230..a61baae115b 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.30.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.30.inst.cfg index 505a0b78139..2e13045b90d 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.40.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.40.inst.cfg index 1184a973602..85e6363e904 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.50.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.50.inst.cfg index 51b8dd0926b..cf56050d822 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.60.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.60.inst.cfg index 24ab1bc2075..d3e8d29a658 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.80.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.80.inst.cfg index e3a6b373dbd..5a13d8d69f9 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_1.0.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_1.0.inst.cfg index da5bb72adba..eb1272e9f3a 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_1.2.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_1.2.inst.cfg index ca99d821776..f59324621b4 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.20.inst.cfg b/resources/variants/blocks/blocks_zero_0.20.inst.cfg index d37c55e9272..426cb0ef770 100644 --- a/resources/variants/blocks/blocks_zero_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.30.inst.cfg b/resources/variants/blocks/blocks_zero_0.30.inst.cfg index 9d669d5c712..150e957f361 100644 --- a/resources/variants/blocks/blocks_zero_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.40.inst.cfg b/resources/variants/blocks/blocks_zero_0.40.inst.cfg index c8ed122a982..f58f3c4b467 100644 --- a/resources/variants/blocks/blocks_zero_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.50.inst.cfg b/resources/variants/blocks/blocks_zero_0.50.inst.cfg index fa967614662..5114247fe11 100644 --- a/resources/variants/blocks/blocks_zero_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.60.inst.cfg b/resources/variants/blocks/blocks_zero_0.60.inst.cfg index e6560787dba..26bedb14485 100644 --- a/resources/variants/blocks/blocks_zero_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.80.inst.cfg b/resources/variants/blocks/blocks_zero_0.80.inst.cfg index 4d4f0d2cea9..525ab6dca80 100644 --- a/resources/variants/blocks/blocks_zero_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/cartesio/cartesio_0.25.inst.cfg b/resources/variants/cartesio/cartesio_0.25.inst.cfg index bfd0306f16c..acff9bda4d0 100644 --- a/resources/variants/cartesio/cartesio_0.25.inst.cfg +++ b/resources/variants/cartesio/cartesio_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Cartesio hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/cartesio/cartesio_0.4.inst.cfg b/resources/variants/cartesio/cartesio_0.4.inst.cfg index 3e8936d09b1..10b56a610e0 100644 --- a/resources/variants/cartesio/cartesio_0.4.inst.cfg +++ b/resources/variants/cartesio/cartesio_0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Cartesio hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/cartesio/cartesio_0.8.inst.cfg b/resources/variants/cartesio/cartesio_0.8.inst.cfg index 6e87eb69b41..3e4662c89c0 100644 --- a/resources/variants/cartesio/cartesio_0.8.inst.cfg +++ b/resources/variants/cartesio/cartesio_0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Cartesio hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/crazy3dprint/crazy3dprint_base_0.40.inst.cfg b/resources/variants/crazy3dprint/crazy3dprint_base_0.40.inst.cfg index 730ec5b5f7e..eb4548b7b5f 100644 --- a/resources/variants/crazy3dprint/crazy3dprint_base_0.40.inst.cfg +++ b/resources/variants/crazy3dprint/crazy3dprint_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/crazy3dprint/crazy3dprint_cz_300_0.40.inst.cfg b/resources/variants/crazy3dprint/crazy3dprint_cz_300_0.40.inst.cfg index 8855dd7021d..3b2312d0b4d 100644 --- a/resources/variants/crazy3dprint/crazy3dprint_cz_300_0.40.inst.cfg +++ b/resources/variants/crazy3dprint/crazy3dprint_cz_300_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.2.inst.cfg b/resources/variants/creality/creality_base_0.2.inst.cfg index d163876973e..8e7c2994093 100644 --- a/resources/variants/creality/creality_base_0.2.inst.cfg +++ b/resources/variants/creality/creality_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.3.inst.cfg b/resources/variants/creality/creality_base_0.3.inst.cfg index c21f6d9c947..d2422e5d804 100644 --- a/resources/variants/creality/creality_base_0.3.inst.cfg +++ b/resources/variants/creality/creality_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.4.inst.cfg b/resources/variants/creality/creality_base_0.4.inst.cfg index 7b450e3de04..652c9b3f652 100644 --- a/resources/variants/creality/creality_base_0.4.inst.cfg +++ b/resources/variants/creality/creality_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.5.inst.cfg b/resources/variants/creality/creality_base_0.5.inst.cfg index d78687ce4b3..59c011bf868 100644 --- a/resources/variants/creality/creality_base_0.5.inst.cfg +++ b/resources/variants/creality/creality_base_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.6.inst.cfg b/resources/variants/creality/creality_base_0.6.inst.cfg index 6022e0bf1b6..2c2c36bf6aa 100644 --- a/resources/variants/creality/creality_base_0.6.inst.cfg +++ b/resources/variants/creality/creality_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.8.inst.cfg b/resources/variants/creality/creality_base_0.8.inst.cfg index ff41e7e5621..88c2f2427c8 100644 --- a/resources/variants/creality/creality_base_0.8.inst.cfg +++ b/resources/variants/creality/creality_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_base_1.0.inst.cfg b/resources/variants/creality/creality_base_1.0.inst.cfg index 1a18b2fcb73..5954b7fcd0b 100644 --- a/resources/variants/creality/creality_base_1.0.inst.cfg +++ b/resources/variants/creality/creality_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr100_0.4.inst.cfg b/resources/variants/creality/creality_cr100_0.4.inst.cfg index a0b2f5caa4e..5d28b0baa90 100644 --- a/resources/variants/creality/creality_cr100_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr100_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.2.inst.cfg b/resources/variants/creality/creality_cr10_0.2.inst.cfg index afeb46fa7e1..3b2924a7585 100644 --- a/resources/variants/creality/creality_cr10_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.3.inst.cfg b/resources/variants/creality/creality_cr10_0.3.inst.cfg index 5babe4a2d08..0cc70a0ec76 100644 --- a/resources/variants/creality/creality_cr10_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.4.inst.cfg b/resources/variants/creality/creality_cr10_0.4.inst.cfg index 6267bb8215f..19b8b2abb7a 100644 --- a/resources/variants/creality/creality_cr10_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.5.inst.cfg b/resources/variants/creality/creality_cr10_0.5.inst.cfg index 939e73dbcd5..78805b4af75 100644 --- a/resources/variants/creality/creality_cr10_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.6.inst.cfg b/resources/variants/creality/creality_cr10_0.6.inst.cfg index 1f873276450..3059d671e55 100644 --- a/resources/variants/creality/creality_cr10_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.8.inst.cfg b/resources/variants/creality/creality_cr10_0.8.inst.cfg index 9cf84420b88..48c85895be2 100644 --- a/resources/variants/creality/creality_cr10_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_1.0.inst.cfg b/resources/variants/creality/creality_cr10_1.0.inst.cfg index 285cb7837c3..d58fca26f26 100644 --- a/resources/variants/creality/creality_cr10_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.2.inst.cfg b/resources/variants/creality/creality_cr10max_0.2.inst.cfg index 412c2d30160..1fcb49f147e 100644 --- a/resources/variants/creality/creality_cr10max_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.3.inst.cfg b/resources/variants/creality/creality_cr10max_0.3.inst.cfg index 5ee839276e4..ec92685f222 100644 --- a/resources/variants/creality/creality_cr10max_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.4.inst.cfg b/resources/variants/creality/creality_cr10max_0.4.inst.cfg index 04b56b2592c..4aab97419c5 100644 --- a/resources/variants/creality/creality_cr10max_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.5.inst.cfg b/resources/variants/creality/creality_cr10max_0.5.inst.cfg index b398c33ecf4..b7b503a1d5d 100644 --- a/resources/variants/creality/creality_cr10max_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.6.inst.cfg b/resources/variants/creality/creality_cr10max_0.6.inst.cfg index 8708331abfd..0caad2868d1 100644 --- a/resources/variants/creality/creality_cr10max_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.8.inst.cfg b/resources/variants/creality/creality_cr10max_0.8.inst.cfg index 526c12726e5..8b379f0c6e2 100644 --- a/resources/variants/creality/creality_cr10max_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_1.0.inst.cfg b/resources/variants/creality/creality_cr10max_1.0.inst.cfg index d7ba5c8ecca..dc9507c40d2 100644 --- a/resources/variants/creality/creality_cr10max_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10max_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.2.inst.cfg b/resources/variants/creality/creality_cr10mini_0.2.inst.cfg index a83558e7591..8d17b568028 100644 --- a/resources/variants/creality/creality_cr10mini_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.3.inst.cfg b/resources/variants/creality/creality_cr10mini_0.3.inst.cfg index 64b46bd4e96..5a97059d3f2 100644 --- a/resources/variants/creality/creality_cr10mini_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.4.inst.cfg b/resources/variants/creality/creality_cr10mini_0.4.inst.cfg index 52b976b78c6..eca0fb5f31b 100644 --- a/resources/variants/creality/creality_cr10mini_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.5.inst.cfg b/resources/variants/creality/creality_cr10mini_0.5.inst.cfg index 135b7d488c7..bb8052aa0f8 100644 --- a/resources/variants/creality/creality_cr10mini_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.6.inst.cfg b/resources/variants/creality/creality_cr10mini_0.6.inst.cfg index b719afa194c..d0bd98cf249 100644 --- a/resources/variants/creality/creality_cr10mini_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.8.inst.cfg b/resources/variants/creality/creality_cr10mini_0.8.inst.cfg index 9dfd0181d04..6024084037d 100644 --- a/resources/variants/creality/creality_cr10mini_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_1.0.inst.cfg b/resources/variants/creality/creality_cr10mini_1.0.inst.cfg index 6fe3a59bf63..3d2285791e8 100644 --- a/resources/variants/creality/creality_cr10mini_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.2.inst.cfg b/resources/variants/creality/creality_cr10s4_0.2.inst.cfg index 6e064cef5e6..cbd53e4a05b 100644 --- a/resources/variants/creality/creality_cr10s4_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.3.inst.cfg b/resources/variants/creality/creality_cr10s4_0.3.inst.cfg index dc289384567..7189e5d3e07 100644 --- a/resources/variants/creality/creality_cr10s4_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.4.inst.cfg b/resources/variants/creality/creality_cr10s4_0.4.inst.cfg index 8151b7fdfb7..2429c773e71 100644 --- a/resources/variants/creality/creality_cr10s4_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.5.inst.cfg b/resources/variants/creality/creality_cr10s4_0.5.inst.cfg index af422f3a2bb..5382fb830ab 100644 --- a/resources/variants/creality/creality_cr10s4_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.6.inst.cfg b/resources/variants/creality/creality_cr10s4_0.6.inst.cfg index 41c7c3e1b2e..4b65a1c311d 100644 --- a/resources/variants/creality/creality_cr10s4_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.8.inst.cfg b/resources/variants/creality/creality_cr10s4_0.8.inst.cfg index cdb30a7bdd7..50460847e46 100644 --- a/resources/variants/creality/creality_cr10s4_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_1.0.inst.cfg b/resources/variants/creality/creality_cr10s4_1.0.inst.cfg index 4e40f38ba41..590003b0a7e 100644 --- a/resources/variants/creality/creality_cr10s4_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.2.inst.cfg b/resources/variants/creality/creality_cr10s5_0.2.inst.cfg index 288ed89049a..1e2afc21edb 100644 --- a/resources/variants/creality/creality_cr10s5_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.3.inst.cfg b/resources/variants/creality/creality_cr10s5_0.3.inst.cfg index 1f5c0518df3..481adf21a55 100644 --- a/resources/variants/creality/creality_cr10s5_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.4.inst.cfg b/resources/variants/creality/creality_cr10s5_0.4.inst.cfg index 8f081c75aef..8edccc6fbc8 100644 --- a/resources/variants/creality/creality_cr10s5_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.5.inst.cfg b/resources/variants/creality/creality_cr10s5_0.5.inst.cfg index bd57815fa59..be31c1a1754 100644 --- a/resources/variants/creality/creality_cr10s5_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.6.inst.cfg b/resources/variants/creality/creality_cr10s5_0.6.inst.cfg index f6994925a45..55f55cc02c1 100644 --- a/resources/variants/creality/creality_cr10s5_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.8.inst.cfg b/resources/variants/creality/creality_cr10s5_0.8.inst.cfg index 58a8f9b487c..79117e99709 100644 --- a/resources/variants/creality/creality_cr10s5_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_1.0.inst.cfg b/resources/variants/creality/creality_cr10s5_1.0.inst.cfg index 099900111eb..dab77489252 100644 --- a/resources/variants/creality/creality_cr10s5_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.2.inst.cfg b/resources/variants/creality/creality_cr10s_0.2.inst.cfg index 31d415dbc1b..eb7dbfb848a 100644 --- a/resources/variants/creality/creality_cr10s_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.3.inst.cfg b/resources/variants/creality/creality_cr10s_0.3.inst.cfg index 75696e2e53a..164abd5f844 100644 --- a/resources/variants/creality/creality_cr10s_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.4.inst.cfg b/resources/variants/creality/creality_cr10s_0.4.inst.cfg index ddc5d01d0e9..9a17bb77ff9 100644 --- a/resources/variants/creality/creality_cr10s_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.5.inst.cfg b/resources/variants/creality/creality_cr10s_0.5.inst.cfg index 9591d2248c5..f4e6e0a7287 100644 --- a/resources/variants/creality/creality_cr10s_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.6.inst.cfg b/resources/variants/creality/creality_cr10s_0.6.inst.cfg index a67f6b10d24..ed90ef591ad 100644 --- a/resources/variants/creality/creality_cr10s_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.8.inst.cfg b/resources/variants/creality/creality_cr10s_0.8.inst.cfg index 58ec50067ca..359440b6dab 100644 --- a/resources/variants/creality/creality_cr10s_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_1.0.inst.cfg b/resources/variants/creality/creality_cr10s_1.0.inst.cfg index bea99edabd4..06c6ed0c84b 100644 --- a/resources/variants/creality/creality_cr10s_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10s_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.2.inst.cfg b/resources/variants/creality/creality_cr10smart_0.2.inst.cfg index 5f702aa5302..6684f0c83d6 100644 --- a/resources/variants/creality/creality_cr10smart_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.3.inst.cfg b/resources/variants/creality/creality_cr10smart_0.3.inst.cfg index c42ec54840f..32e8f48e30a 100644 --- a/resources/variants/creality/creality_cr10smart_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.4.inst.cfg b/resources/variants/creality/creality_cr10smart_0.4.inst.cfg index bc126d3f2d1..0e6e105f38c 100644 --- a/resources/variants/creality/creality_cr10smart_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.5.inst.cfg b/resources/variants/creality/creality_cr10smart_0.5.inst.cfg index 20b89226e11..9e32aed915b 100644 --- a/resources/variants/creality/creality_cr10smart_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.6.inst.cfg b/resources/variants/creality/creality_cr10smart_0.6.inst.cfg index fab1010ae64..7ebd75a340e 100644 --- a/resources/variants/creality/creality_cr10smart_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.8.inst.cfg b/resources/variants/creality/creality_cr10smart_0.8.inst.cfg index 041ac8c3b68..8877a939968 100644 --- a/resources/variants/creality/creality_cr10smart_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_1.0.inst.cfg b/resources/variants/creality/creality_cr10smart_1.0.inst.cfg index 51373cdf990..ee740ac8ba0 100644 --- a/resources/variants/creality/creality_cr10smart_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.2.inst.cfg b/resources/variants/creality/creality_cr10spro_0.2.inst.cfg index dde72987117..13be034c1bf 100644 --- a/resources/variants/creality/creality_cr10spro_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.3.inst.cfg b/resources/variants/creality/creality_cr10spro_0.3.inst.cfg index 301174ba677..2f11107b6bb 100644 --- a/resources/variants/creality/creality_cr10spro_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.4.inst.cfg b/resources/variants/creality/creality_cr10spro_0.4.inst.cfg index 92d934776b3..cc38161b0fc 100644 --- a/resources/variants/creality/creality_cr10spro_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.5.inst.cfg b/resources/variants/creality/creality_cr10spro_0.5.inst.cfg index f6745d55b27..60cefb9afbb 100644 --- a/resources/variants/creality/creality_cr10spro_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.6.inst.cfg b/resources/variants/creality/creality_cr10spro_0.6.inst.cfg index f046370e091..33f16b154db 100644 --- a/resources/variants/creality/creality_cr10spro_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.8.inst.cfg b/resources/variants/creality/creality_cr10spro_0.8.inst.cfg index 8373a2c8198..8c90a1cb5d6 100644 --- a/resources/variants/creality/creality_cr10spro_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_1.0.inst.cfg b/resources/variants/creality/creality_cr10spro_1.0.inst.cfg index 2e127dd9fa4..8f57bfa8e64 100644 --- a/resources/variants/creality/creality_cr10spro_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.2.inst.cfg b/resources/variants/creality/creality_cr20_0.2.inst.cfg index ea037b6ffb8..e8335c4e202 100644 --- a/resources/variants/creality/creality_cr20_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.3.inst.cfg b/resources/variants/creality/creality_cr20_0.3.inst.cfg index 33262eeffc6..81f86270950 100644 --- a/resources/variants/creality/creality_cr20_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.4.inst.cfg b/resources/variants/creality/creality_cr20_0.4.inst.cfg index cd7e827812d..6d75fb33e25 100644 --- a/resources/variants/creality/creality_cr20_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.5.inst.cfg b/resources/variants/creality/creality_cr20_0.5.inst.cfg index eeaf6d7f533..6e3d6331da5 100644 --- a/resources/variants/creality/creality_cr20_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.6.inst.cfg b/resources/variants/creality/creality_cr20_0.6.inst.cfg index 091117252a3..0b8d92acbae 100644 --- a/resources/variants/creality/creality_cr20_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.8.inst.cfg b/resources/variants/creality/creality_cr20_0.8.inst.cfg index d30e5e5d942..734c9090f52 100644 --- a/resources/variants/creality/creality_cr20_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_1.0.inst.cfg b/resources/variants/creality/creality_cr20_1.0.inst.cfg index e049a09d903..8ac15853b38 100644 --- a/resources/variants/creality/creality_cr20_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr20_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.2.inst.cfg b/resources/variants/creality/creality_cr20pro_0.2.inst.cfg index 6a95f5a2944..96506c32898 100644 --- a/resources/variants/creality/creality_cr20pro_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.3.inst.cfg b/resources/variants/creality/creality_cr20pro_0.3.inst.cfg index a1c35d864f9..d9aa9b276b1 100644 --- a/resources/variants/creality/creality_cr20pro_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.4.inst.cfg b/resources/variants/creality/creality_cr20pro_0.4.inst.cfg index 74dd69988b6..0aa80d1faee 100644 --- a/resources/variants/creality/creality_cr20pro_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.5.inst.cfg b/resources/variants/creality/creality_cr20pro_0.5.inst.cfg index 0f58c2a686f..2bb70c7b7a7 100644 --- a/resources/variants/creality/creality_cr20pro_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.6.inst.cfg b/resources/variants/creality/creality_cr20pro_0.6.inst.cfg index f8c1f8850ca..b43b8e29ff3 100644 --- a/resources/variants/creality/creality_cr20pro_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.8.inst.cfg b/resources/variants/creality/creality_cr20pro_0.8.inst.cfg index 83998525b45..d006d966de2 100644 --- a/resources/variants/creality/creality_cr20pro_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_1.0.inst.cfg b/resources/variants/creality/creality_cr20pro_1.0.inst.cfg index 52516050cd1..6c8be83737b 100644 --- a/resources/variants/creality/creality_cr20pro_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.2.inst.cfg b/resources/variants/creality/creality_cr6se_0.2.inst.cfg index 3d3fb182f93..9932ff2a43b 100644 --- a/resources/variants/creality/creality_cr6se_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.3.inst.cfg b/resources/variants/creality/creality_cr6se_0.3.inst.cfg index feeeac902d3..2c0a808113c 100644 --- a/resources/variants/creality/creality_cr6se_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.4.inst.cfg b/resources/variants/creality/creality_cr6se_0.4.inst.cfg index 7af510f84f5..0e8580d9d36 100644 --- a/resources/variants/creality/creality_cr6se_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.5.inst.cfg b/resources/variants/creality/creality_cr6se_0.5.inst.cfg index 35abb7341de..dbfff554e68 100644 --- a/resources/variants/creality/creality_cr6se_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.6.inst.cfg b/resources/variants/creality/creality_cr6se_0.6.inst.cfg index 300487bd15b..11b763d74c1 100644 --- a/resources/variants/creality/creality_cr6se_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.8.inst.cfg b/resources/variants/creality/creality_cr6se_0.8.inst.cfg index 262e286962d..431baae79c5 100644 --- a/resources/variants/creality/creality_cr6se_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_1.0.inst.cfg b/resources/variants/creality/creality_cr6se_1.0.inst.cfg index 9d56cbe2d06..ac7d9dbcb6c 100644 --- a/resources/variants/creality/creality_cr6se_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr6se_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_0.2.inst.cfg b/resources/variants/creality/creality_ender2_0.2.inst.cfg index d7d9b84b81b..8f30d0f6fe2 100644 --- a/resources/variants/creality/creality_ender2_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_0.3.inst.cfg b/resources/variants/creality/creality_ender2_0.3.inst.cfg index bea726a4195..0784478a1b6 100644 --- a/resources/variants/creality/creality_ender2_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_0.4.inst.cfg b/resources/variants/creality/creality_ender2_0.4.inst.cfg index c5a3718023e..2ac7aba90f6 100644 --- a/resources/variants/creality/creality_ender2_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_0.5.inst.cfg b/resources/variants/creality/creality_ender2_0.5.inst.cfg index 322d4cf86ab..b580a5cde6c 100644 --- a/resources/variants/creality/creality_ender2_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_0.6.inst.cfg b/resources/variants/creality/creality_ender2_0.6.inst.cfg index 71ad4b4e0ab..c0907e9ad70 100644 --- a/resources/variants/creality/creality_ender2_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_0.8.inst.cfg b/resources/variants/creality/creality_ender2_0.8.inst.cfg index f74437fe8c2..e3c6805cce2 100644 --- a/resources/variants/creality/creality_ender2_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_1.0.inst.cfg b/resources/variants/creality/creality_ender2_1.0.inst.cfg index 18b9b33507e..8b0eb7362c2 100644 --- a/resources/variants/creality/creality_ender2_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender2_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.2.inst.cfg b/resources/variants/creality/creality_ender3_0.2.inst.cfg index 969a476b0b4..454ec0377be 100644 --- a/resources/variants/creality/creality_ender3_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.3.inst.cfg b/resources/variants/creality/creality_ender3_0.3.inst.cfg index 34e6ce4f3ba..e5340203411 100644 --- a/resources/variants/creality/creality_ender3_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.4.inst.cfg b/resources/variants/creality/creality_ender3_0.4.inst.cfg index 7bf09221a19..1ac41b37149 100644 --- a/resources/variants/creality/creality_ender3_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.5.inst.cfg b/resources/variants/creality/creality_ender3_0.5.inst.cfg index ed376717883..c5eb7768b0a 100644 --- a/resources/variants/creality/creality_ender3_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.6.inst.cfg b/resources/variants/creality/creality_ender3_0.6.inst.cfg index b890bbe67c3..e5c98ee7a70 100644 --- a/resources/variants/creality/creality_ender3_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.8.inst.cfg b/resources/variants/creality/creality_ender3_0.8.inst.cfg index 30099acc042..06c3fbf5b93 100644 --- a/resources/variants/creality/creality_ender3_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_1.0.inst.cfg b/resources/variants/creality/creality_ender3_1.0.inst.cfg index c30af4410a1..9107793f157 100644 --- a/resources/variants/creality/creality_ender3_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.2.inst.cfg b/resources/variants/creality/creality_ender3max_0.2.inst.cfg index 8eb336c3561..17e74e4b977 100644 --- a/resources/variants/creality/creality_ender3max_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.3.inst.cfg b/resources/variants/creality/creality_ender3max_0.3.inst.cfg index 24f21f93de9..1f55310dc8d 100644 --- a/resources/variants/creality/creality_ender3max_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.4.inst.cfg b/resources/variants/creality/creality_ender3max_0.4.inst.cfg index 0b13727228a..55baed73235 100644 --- a/resources/variants/creality/creality_ender3max_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.5.inst.cfg b/resources/variants/creality/creality_ender3max_0.5.inst.cfg index b0527d929c6..844a1eca5c4 100644 --- a/resources/variants/creality/creality_ender3max_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.6.inst.cfg b/resources/variants/creality/creality_ender3max_0.6.inst.cfg index 1970ecd7257..3c6c0fb6b40 100644 --- a/resources/variants/creality/creality_ender3max_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.8.inst.cfg b/resources/variants/creality/creality_ender3max_0.8.inst.cfg index 23d78b05844..ae0afbc2804 100644 --- a/resources/variants/creality/creality_ender3max_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_1.0.inst.cfg b/resources/variants/creality/creality_ender3max_1.0.inst.cfg index 42450e22821..7da936ffa87 100644 --- a/resources/variants/creality/creality_ender3max_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3max_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.2.inst.cfg b/resources/variants/creality/creality_ender3pro_0.2.inst.cfg index 813436be65f..8ecf20846ae 100644 --- a/resources/variants/creality/creality_ender3pro_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.3.inst.cfg b/resources/variants/creality/creality_ender3pro_0.3.inst.cfg index 5eadcfb975f..6b3576a42d3 100644 --- a/resources/variants/creality/creality_ender3pro_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.4.inst.cfg b/resources/variants/creality/creality_ender3pro_0.4.inst.cfg index aeb092a76b0..299550c19b7 100644 --- a/resources/variants/creality/creality_ender3pro_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.5.inst.cfg b/resources/variants/creality/creality_ender3pro_0.5.inst.cfg index 5a5d1fcbf97..99a817f8b9a 100644 --- a/resources/variants/creality/creality_ender3pro_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.6.inst.cfg b/resources/variants/creality/creality_ender3pro_0.6.inst.cfg index fcd5707c4c1..89022bcea6a 100644 --- a/resources/variants/creality/creality_ender3pro_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.8.inst.cfg b/resources/variants/creality/creality_ender3pro_0.8.inst.cfg index 42767a94a71..874c63ba24e 100644 --- a/resources/variants/creality/creality_ender3pro_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_1.0.inst.cfg b/resources/variants/creality/creality_ender3pro_1.0.inst.cfg index b1689a28914..93c2ec21873 100644 --- a/resources/variants/creality/creality_ender3pro_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.2.inst.cfg b/resources/variants/creality/creality_ender3s1_0.2.inst.cfg index ac944ab1dcf..8d9e1a1e8c9 100644 --- a/resources/variants/creality/creality_ender3s1_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.3.inst.cfg b/resources/variants/creality/creality_ender3s1_0.3.inst.cfg index d58e18d238b..5ed26fdbad4 100644 --- a/resources/variants/creality/creality_ender3s1_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.4.inst.cfg b/resources/variants/creality/creality_ender3s1_0.4.inst.cfg index fdaddc91ab0..1658bf59e37 100644 --- a/resources/variants/creality/creality_ender3s1_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.5.inst.cfg b/resources/variants/creality/creality_ender3s1_0.5.inst.cfg index 0093cc7356f..2ac65e3abc5 100644 --- a/resources/variants/creality/creality_ender3s1_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.6.inst.cfg b/resources/variants/creality/creality_ender3s1_0.6.inst.cfg index e1aa8a44486..62112135a76 100644 --- a/resources/variants/creality/creality_ender3s1_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.8.inst.cfg b/resources/variants/creality/creality_ender3s1_0.8.inst.cfg index 0b584c6e87e..a9b60bbefce 100644 --- a/resources/variants/creality/creality_ender3s1_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_1.0.inst.cfg b/resources/variants/creality/creality_ender3s1_1.0.inst.cfg index a1de29ad896..30820921fda 100644 --- a/resources/variants/creality/creality_ender3s1_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.2.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.2.inst.cfg index a8ed1f1d377..95c7c83ab81 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.3.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.3.inst.cfg index 039c47debe2..75095886a18 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.4.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.4.inst.cfg index a4101903894..041139f89c4 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.5.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.5.inst.cfg index 81d93cef97f..ceb15fe521d 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.6.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.6.inst.cfg index 7804f5ed157..dc316c8e45f 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.8.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.8.inst.cfg index 882f18b408b..800e70cb816 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_1.0.inst.cfg b/resources/variants/creality/creality_ender3s1plus_1.0.inst.cfg index c76ff38862e..12652aa70d7 100644 --- a/resources/variants/creality/creality_ender3s1plus_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.2.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.2.inst.cfg index 3697ba6288e..1c0454ec614 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.3.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.3.inst.cfg index 3b7675aa6ae..91e2ebfc3dd 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.4.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.4.inst.cfg index 37eb70d09cd..74ef00ec764 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.5.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.5.inst.cfg index c4c1b183473..31c82d1cf09 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.6.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.6.inst.cfg index d609218f5e3..ee342667198 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.8.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.8.inst.cfg index ee7a039075b..f65002a11a8 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_1.0.inst.cfg b/resources/variants/creality/creality_ender3s1pro_1.0.inst.cfg index 4c8200ec9c2..945953dfc04 100644 --- a/resources/variants/creality/creality_ender3s1pro_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_0.2.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.2.inst.cfg index bed0bbe51f6..d1983086162 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_0.3.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.3.inst.cfg index fba4336839c..061112ebadf 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_0.4.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.4.inst.cfg index 80a2f5cb712..cfd6f021d78 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_0.5.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.5.inst.cfg index d6071382f82..3d0682c2705 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_0.6.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.6.inst.cfg index 4abca4f34e1..0f8264dabed 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_0.8.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.8.inst.cfg index d5ef899ed67..639f4fd4f29 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_1.0.inst.cfg b/resources/variants/creality/creality_ender3v2neo_1.0.inst.cfg index 8dee589cd10..638e75887d6 100644 --- a/resources/variants/creality/creality_ender3v2neo_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_0.2.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.2.inst.cfg index 691b6eccb4f..b523a38f414 100644 --- a/resources/variants/creality/creality_ender3v3se_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_0.3.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.3.inst.cfg index 074386a24e3..6cf40ce9997 100644 --- a/resources/variants/creality/creality_ender3v3se_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_0.4.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.4.inst.cfg index c586b77f970..fd870564ece 100644 --- a/resources/variants/creality/creality_ender3v3se_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_0.5.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.5.inst.cfg index d97ae16d7f6..45ca3a01841 100644 --- a/resources/variants/creality/creality_ender3v3se_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_0.6.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.6.inst.cfg index e3caad0a868..4b7379635ed 100644 --- a/resources/variants/creality/creality_ender3v3se_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_0.8.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.8.inst.cfg index 21e3629a6bc..0978a0e8015 100644 --- a/resources/variants/creality/creality_ender3v3se_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_1.0.inst.cfg b/resources/variants/creality/creality_ender3v3se_1.0.inst.cfg index 13fd7c97fab..e2c6b803b93 100644 --- a/resources/variants/creality/creality_ender3v3se_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.2.inst.cfg b/resources/variants/creality/creality_ender4_0.2.inst.cfg index cc9e0b9d793..0034158d3f0 100644 --- a/resources/variants/creality/creality_ender4_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.3.inst.cfg b/resources/variants/creality/creality_ender4_0.3.inst.cfg index fd9c0d85c74..c54a86e2930 100644 --- a/resources/variants/creality/creality_ender4_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.4.inst.cfg b/resources/variants/creality/creality_ender4_0.4.inst.cfg index 431454efadb..0152f1c9579 100644 --- a/resources/variants/creality/creality_ender4_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.5.inst.cfg b/resources/variants/creality/creality_ender4_0.5.inst.cfg index 89c5b10479f..37c216cbfa2 100644 --- a/resources/variants/creality/creality_ender4_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.6.inst.cfg b/resources/variants/creality/creality_ender4_0.6.inst.cfg index 42be35588c4..aa48e63e09a 100644 --- a/resources/variants/creality/creality_ender4_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.8.inst.cfg b/resources/variants/creality/creality_ender4_0.8.inst.cfg index c695d8d92fa..1a980e4adaf 100644 --- a/resources/variants/creality/creality_ender4_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_1.0.inst.cfg b/resources/variants/creality/creality_ender4_1.0.inst.cfg index c7b47380425..35ed12644df 100644 --- a/resources/variants/creality/creality_ender4_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender4_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.2.inst.cfg b/resources/variants/creality/creality_ender5_0.2.inst.cfg index 9caa965f98a..a371ccb35b8 100644 --- a/resources/variants/creality/creality_ender5_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.3.inst.cfg b/resources/variants/creality/creality_ender5_0.3.inst.cfg index 290994c5436..2075784b2c5 100644 --- a/resources/variants/creality/creality_ender5_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.4.inst.cfg b/resources/variants/creality/creality_ender5_0.4.inst.cfg index 311b19acaf7..96733fd5271 100644 --- a/resources/variants/creality/creality_ender5_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.5.inst.cfg b/resources/variants/creality/creality_ender5_0.5.inst.cfg index 905089c0c09..ee184b97a4b 100644 --- a/resources/variants/creality/creality_ender5_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.6.inst.cfg b/resources/variants/creality/creality_ender5_0.6.inst.cfg index 219aa4cd1f7..e3cf08f93e1 100644 --- a/resources/variants/creality/creality_ender5_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.8.inst.cfg b/resources/variants/creality/creality_ender5_0.8.inst.cfg index cce7eef2d69..990162becc6 100644 --- a/resources/variants/creality/creality_ender5_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_1.0.inst.cfg b/resources/variants/creality/creality_ender5_1.0.inst.cfg index 848e52b9e33..8bb5a67d24a 100644 --- a/resources/variants/creality/creality_ender5_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender5_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.2.inst.cfg b/resources/variants/creality/creality_ender5plus_0.2.inst.cfg index 3890f624291..a0c1b19d198 100644 --- a/resources/variants/creality/creality_ender5plus_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.3.inst.cfg b/resources/variants/creality/creality_ender5plus_0.3.inst.cfg index 3b6871266cd..30c7d397ce6 100644 --- a/resources/variants/creality/creality_ender5plus_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.4.inst.cfg b/resources/variants/creality/creality_ender5plus_0.4.inst.cfg index 13bf3cd0fb4..40ac79b50e3 100644 --- a/resources/variants/creality/creality_ender5plus_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.5.inst.cfg b/resources/variants/creality/creality_ender5plus_0.5.inst.cfg index d42832dbcf6..a0cb2b6572b 100644 --- a/resources/variants/creality/creality_ender5plus_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.6.inst.cfg b/resources/variants/creality/creality_ender5plus_0.6.inst.cfg index d39802eed74..89cfdab22e8 100644 --- a/resources/variants/creality/creality_ender5plus_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.8.inst.cfg b/resources/variants/creality/creality_ender5plus_0.8.inst.cfg index c6125f40992..3a343352f14 100644 --- a/resources/variants/creality/creality_ender5plus_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_1.0.inst.cfg b/resources/variants/creality/creality_ender5plus_1.0.inst.cfg index dbb895e3171..8af92e62cdd 100644 --- a/resources/variants/creality/creality_ender5plus_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.2.inst.cfg b/resources/variants/creality/creality_ender5s1_0.2.inst.cfg index bb3e5312eab..abddcdccfb6 100644 --- a/resources/variants/creality/creality_ender5s1_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.3.inst.cfg b/resources/variants/creality/creality_ender5s1_0.3.inst.cfg index f7aa3350bc6..b7e32ab75bb 100644 --- a/resources/variants/creality/creality_ender5s1_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.4.inst.cfg b/resources/variants/creality/creality_ender5s1_0.4.inst.cfg index 6e38f503fcb..488dbcd893d 100644 --- a/resources/variants/creality/creality_ender5s1_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.5.inst.cfg b/resources/variants/creality/creality_ender5s1_0.5.inst.cfg index cb2b6845426..61a51c7cd13 100644 --- a/resources/variants/creality/creality_ender5s1_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.6.inst.cfg b/resources/variants/creality/creality_ender5s1_0.6.inst.cfg index 2c2d0480ff6..60a69f9b4c5 100644 --- a/resources/variants/creality/creality_ender5s1_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.8.inst.cfg b/resources/variants/creality/creality_ender5s1_0.8.inst.cfg index 2e95f8e3d00..04d29eedc6f 100644 --- a/resources/variants/creality/creality_ender5s1_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_1.0.inst.cfg b/resources/variants/creality/creality_ender5s1_1.0.inst.cfg index 48fba7a715b..f5d8bb3adbd 100644 --- a/resources/variants/creality/creality_ender5s1_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.2.inst.cfg b/resources/variants/creality/creality_ender6_0.2.inst.cfg index e21c3659f49..5057234c7f6 100644 --- a/resources/variants/creality/creality_ender6_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.3.inst.cfg b/resources/variants/creality/creality_ender6_0.3.inst.cfg index c129731e9bd..ffd82833b0a 100644 --- a/resources/variants/creality/creality_ender6_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.4.inst.cfg b/resources/variants/creality/creality_ender6_0.4.inst.cfg index b1e14dfb455..bf288d354d7 100644 --- a/resources/variants/creality/creality_ender6_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.5.inst.cfg b/resources/variants/creality/creality_ender6_0.5.inst.cfg index b4f0aa9199f..01cb313eb88 100644 --- a/resources/variants/creality/creality_ender6_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.6.inst.cfg b/resources/variants/creality/creality_ender6_0.6.inst.cfg index e1cba4411ce..12044c5a152 100644 --- a/resources/variants/creality/creality_ender6_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.8.inst.cfg b/resources/variants/creality/creality_ender6_0.8.inst.cfg index d8ebefe7056..3f3bf9f0d45 100644 --- a/resources/variants/creality/creality_ender6_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_1.0.inst.cfg b/resources/variants/creality/creality_ender6_1.0.inst.cfg index e4f2aea7e62..5221d2db3c0 100644 --- a/resources/variants/creality/creality_ender6_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender6_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_0.2.inst.cfg b/resources/variants/creality/creality_sermoond1_0.2.inst.cfg index e3f4be79345..b123de554ef 100644 --- a/resources/variants/creality/creality_sermoond1_0.2.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_0.3.inst.cfg b/resources/variants/creality/creality_sermoond1_0.3.inst.cfg index e78ba1f27d6..89358a5324f 100644 --- a/resources/variants/creality/creality_sermoond1_0.3.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_0.4.inst.cfg b/resources/variants/creality/creality_sermoond1_0.4.inst.cfg index 03c6120b0db..c42bd666b89 100644 --- a/resources/variants/creality/creality_sermoond1_0.4.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_0.5.inst.cfg b/resources/variants/creality/creality_sermoond1_0.5.inst.cfg index 72014114320..abbf2920921 100644 --- a/resources/variants/creality/creality_sermoond1_0.5.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_0.6.inst.cfg b/resources/variants/creality/creality_sermoond1_0.6.inst.cfg index d7e7ef40827..9e11dbbd850 100644 --- a/resources/variants/creality/creality_sermoond1_0.6.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_0.8.inst.cfg b/resources/variants/creality/creality_sermoond1_0.8.inst.cfg index 714a46c4d29..3d8ab3bde29 100644 --- a/resources/variants/creality/creality_sermoond1_0.8.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_1.0.inst.cfg b/resources/variants/creality/creality_sermoond1_1.0.inst.cfg index e48fcb9bbd3..d2fc1cc66af 100644 --- a/resources/variants/creality/creality_sermoond1_1.0.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_sermoonv1_0.4.inst.cfg b/resources/variants/creality/creality_sermoonv1_0.4.inst.cfg index 7955b804b46..d83b26b9b59 100644 --- a/resources/variants/creality/creality_sermoonv1_0.4.inst.cfg +++ b/resources/variants/creality/creality_sermoonv1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.4.inst.cfg index c87bcdbb9c3..fb2873bfcac 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.8.inst.cfg index e40fe89651e..33b2f0c7575 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_1.0.inst.cfg index 590e5cd9bb8..b672317c15e 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.2.inst.cfg index 2de668d64a7..9c5397b535c 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.4.inst.cfg index dfd771e72b4..4d3bb38df9e 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.6.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.6.inst.cfg index ef5ae3341bb..71cd43dc29f 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.6.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.8.inst.cfg index efa201d3d4a..3862119ecd4 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.0.inst.cfg index 42123ce059e..a3010896eba 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.2.inst.cfg index a30cdf14ec1..572e3a0a05c 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.4.inst.cfg index b4b4005e615..b91da5cce56 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.8.inst.cfg index e79dcfdcd03..1790d9ef274 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.4.inst.cfg index 4856377ec58..566688fedce 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.8.inst.cfg index dbc7c0e8ef7..17f5f768c5a 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_1.0.inst.cfg index 692c4f25cde..c78ce860302 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.2.inst.cfg index 3734f5254b2..fe5aab9f9cd 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.4.inst.cfg index c0a0e5883b8..26841774434 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.6.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.6.inst.cfg index 2d1ff5b1083..91c59f0e6dd 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.6.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.8.inst.cfg index 56c0388ecf0..431d7eb7e11 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.0.inst.cfg index 49d817fb033..eae1a408f44 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.2.inst.cfg index 70ebe157add..754bb93c020 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.4.inst.cfg index 46bf6148c43..8ea81a3972c 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.8.inst.cfg index 4bcdd1cb58e..84eca0f2531 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.4.inst.cfg index 0a15ae83163..3ac5e342054 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.8.inst.cfg index f090565c4ca..f9ae98aa0f0 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_brass_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_brass_1.0.inst.cfg index a15400a6db6..e1749cb4297 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_brass_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_brass_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.2.inst.cfg index 1b02f9637b5..cb0d9a6d61a 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.4.inst.cfg index 69b6b5e872d..f5995c20dcb 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.6.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.6.inst.cfg index 2df35e31dc0..f907b89e87d 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.6.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.8.inst.cfg index 6fd73a0fe40..badcdc87f7a 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.0.inst.cfg index addcb3fb55a..65c35eea1e6 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.2.inst.cfg index 634a91f5330..021c0f141c2 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.4.inst.cfg index 4b0b6853f25..25f25029a04 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.8.inst.cfg index 12e4881d48c..b9cbe805d47 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_0.4.inst.cfg b/resources/variants/dagoma/dagoma_sigma_0.4.inst.cfg index 4008817b37d..431f06f81f1 100644 --- a/resources/variants/dagoma/dagoma_sigma_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_0.8.inst.cfg b/resources/variants/dagoma/dagoma_sigma_0.8.inst.cfg index ea1c8673667..46cad40b286 100644 --- a/resources/variants/dagoma/dagoma_sigma_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_brass_0.4.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_brass_0.4.inst.cfg index 0e090023fae..567cf160cc3 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_brass_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_brass_0.8.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_brass_0.8.inst.cfg index bc9a8e9ea52..a509a373107 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_brass_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_brass_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.4.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.4.inst.cfg index 0ea1a14227f..42c01ad004e 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.8.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.8.inst.cfg index 96f9d485dc5..6498a7a26bc 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.4.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.4.inst.cfg index 1e1664a0ac6..82e80ddd920 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.8.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.8.inst.cfg index b2dd1421d77..8df2ac5bf5a 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_steel_0.4.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_steel_0.4.inst.cfg index d85b89aaa31..33d95852419 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_steel_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_steel_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_steel_0.8.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_steel_0.8.inst.cfg index d36c2e344d3..7ad9767f093 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_steel_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_steel_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20_fbe025.inst.cfg index 291d9cc5555..dd991034be7 100644 --- a/resources/variants/deltacomb/deltacomb_dc20_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20_fbe025.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Deltacomb 3D hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20_fbe040.inst.cfg index a8c5aed70b3..9eeb0d57980 100644 --- a/resources/variants/deltacomb/deltacomb_dc20_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20_fbe040.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Deltacomb 3D hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20_fbe060.inst.cfg index 73ecc333b30..aceb33a763c 100644 --- a/resources/variants/deltacomb/deltacomb_dc20_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20_fbe060.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Deltacomb 3D hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg index af9f1010d80..2eba3d6b5f6 100755 --- a/resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg index 9653ed674c4..a617f78b93d 100755 --- a/resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg index 0afd0643d80..a5c92a83dd6 100755 --- a/resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg index b7648046f70..2dedb7fa94f 100755 --- a/resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg index 524758ad65e..0972964ca5b 100755 --- a/resources/variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg index e93cfb33d0c..20cb7fb9602 100755 --- a/resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg index 099be9cc5e4..e24cd0ea6d3 100755 --- a/resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg index 34eb1f7b2ac..3ae6090e662 100755 --- a/resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg index 6bc04858079..c40597cb87b 100755 --- a/resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg index 6d057424c71..6742aedfc96 100755 --- a/resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg index 0c6221f45d3..0e03d17023c 100755 --- a/resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg index 0edb30443a4..60a4286938e 100755 --- a/resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg index 98cadeed245..dc2925f77c7 100755 --- a/resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg index 0bec048c025..15e4915e2ac 100755 --- a/resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg index 73dfd411343..6d491181196 100755 --- a/resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg index cf7a19bc713..1cdcb390e93 100755 --- a/resources/variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg index aab69dd988e..da67df45fd9 100755 --- a/resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg index 72e267f34f6..cf4e85908d5 100755 --- a/resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg index 7a3ffa4745d..150e4a17b56 100755 --- a/resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg index e05a8e4e2dd..4854a810f81 100755 --- a/resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg index 3fa9cdc970c..d8195ef346f 100755 --- a/resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg index 8ffd17d7333..a033fefc153 100755 --- a/resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg index 7c2ebcfe705..c37b96738ad 100755 --- a/resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg index 80a83e0d6b2..3e953323962 100755 --- a/resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg index 3cdcb1927c3..0daf1de4387 100755 --- a/resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg index 63fb3106812..070d8421e8a 100755 --- a/resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg index 56de1f467aa..7131e12280f 100755 --- a/resources/variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg index 809cd48e852..a441f1a043c 100755 --- a/resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg index 410b162d1dd..dd9fd9d17d2 100755 --- a/resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg index cb7adbdefc8..988ec955572 100755 --- a/resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/diy/diy220_0.2.inst.cfg b/resources/variants/diy/diy220_0.2.inst.cfg index c427394af92..b7233a9d25c 100644 --- a/resources/variants/diy/diy220_0.2.inst.cfg +++ b/resources/variants/diy/diy220_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/diy/diy220_0.3.inst.cfg b/resources/variants/diy/diy220_0.3.inst.cfg index 0b593365721..22dd3a30322 100644 --- a/resources/variants/diy/diy220_0.3.inst.cfg +++ b/resources/variants/diy/diy220_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/diy/diy220_0.4.inst.cfg b/resources/variants/diy/diy220_0.4.inst.cfg index 9579c201e52..bc4ac126c10 100644 --- a/resources/variants/diy/diy220_0.4.inst.cfg +++ b/resources/variants/diy/diy220_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/diy/diy220_0.5.inst.cfg b/resources/variants/diy/diy220_0.5.inst.cfg index d04fd167e22..13f0d6c6178 100644 --- a/resources/variants/diy/diy220_0.5.inst.cfg +++ b/resources/variants/diy/diy220_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/diy/diy220_0.6.inst.cfg b/resources/variants/diy/diy220_0.6.inst.cfg index 519b04d1863..f3b1d65bded 100644 --- a/resources/variants/diy/diy220_0.6.inst.cfg +++ b/resources/variants/diy/diy220_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/diy/diy220_0.8.inst.cfg b/resources/variants/diy/diy220_0.8.inst.cfg index b27a536efb5..ca159b00b91 100644 --- a/resources/variants/diy/diy220_0.8.inst.cfg +++ b/resources/variants/diy/diy220_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_0.25.inst.cfg b/resources/variants/dxu/dxu_0.25.inst.cfg index 16ee7f4e154..a488e4d1796 100644 --- a/resources/variants/dxu/dxu_0.25.inst.cfg +++ b/resources/variants/dxu/dxu_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_0.4.inst.cfg b/resources/variants/dxu/dxu_0.4.inst.cfg index ecf4cbf83c0..7302b73604e 100644 --- a/resources/variants/dxu/dxu_0.4.inst.cfg +++ b/resources/variants/dxu/dxu_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_0.6.inst.cfg b/resources/variants/dxu/dxu_0.6.inst.cfg index 4d04dac66b9..b3850a06009 100644 --- a/resources/variants/dxu/dxu_0.6.inst.cfg +++ b/resources/variants/dxu/dxu_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_0.8.inst.cfg b/resources/variants/dxu/dxu_0.8.inst.cfg index 1a6f0f22bed..bbdc10ab072 100644 --- a/resources/variants/dxu/dxu_0.8.inst.cfg +++ b/resources/variants/dxu/dxu_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_dual_0.25.inst.cfg b/resources/variants/dxu/dxu_dual_0.25.inst.cfg index 9a6516bb7be..6983e959b79 100644 --- a/resources/variants/dxu/dxu_dual_0.25.inst.cfg +++ b/resources/variants/dxu/dxu_dual_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_dual_0.4.inst.cfg b/resources/variants/dxu/dxu_dual_0.4.inst.cfg index 10daf54b52c..0dd99cc77d5 100644 --- a/resources/variants/dxu/dxu_dual_0.4.inst.cfg +++ b/resources/variants/dxu/dxu_dual_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_dual_0.6.inst.cfg b/resources/variants/dxu/dxu_dual_0.6.inst.cfg index 798377f3ac9..5dcac9741e6 100644 --- a/resources/variants/dxu/dxu_dual_0.6.inst.cfg +++ b/resources/variants/dxu/dxu_dual_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_dual_0.8.inst.cfg b/resources/variants/dxu/dxu_dual_0.8.inst.cfg index a392b95292c..cedb16e925e 100644 --- a/resources/variants/dxu/dxu_dual_0.8.inst.cfg +++ b/resources/variants/dxu/dxu_dual_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_0.25.inst.cfg b/resources/variants/dxu/dxu_umo_0.25.inst.cfg index 2fc196bf198..8f8d06cb5fe 100644 --- a/resources/variants/dxu/dxu_umo_0.25.inst.cfg +++ b/resources/variants/dxu/dxu_umo_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_0.4.inst.cfg b/resources/variants/dxu/dxu_umo_0.4.inst.cfg index d98fdbcc7bd..e840ab33f82 100644 --- a/resources/variants/dxu/dxu_umo_0.4.inst.cfg +++ b/resources/variants/dxu/dxu_umo_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_0.6.inst.cfg b/resources/variants/dxu/dxu_umo_0.6.inst.cfg index 9d564db4a10..87cedca49c5 100644 --- a/resources/variants/dxu/dxu_umo_0.6.inst.cfg +++ b/resources/variants/dxu/dxu_umo_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_0.8.inst.cfg b/resources/variants/dxu/dxu_umo_0.8.inst.cfg index fc667138800..07945af6230 100644 --- a/resources/variants/dxu/dxu_umo_0.8.inst.cfg +++ b/resources/variants/dxu/dxu_umo_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_dual_0.25.inst.cfg b/resources/variants/dxu/dxu_umo_dual_0.25.inst.cfg index fc4fffcb4e1..86430accc95 100644 --- a/resources/variants/dxu/dxu_umo_dual_0.25.inst.cfg +++ b/resources/variants/dxu/dxu_umo_dual_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_dual_0.4.inst.cfg b/resources/variants/dxu/dxu_umo_dual_0.4.inst.cfg index 85f5b17d2d3..255ffc9dd14 100644 --- a/resources/variants/dxu/dxu_umo_dual_0.4.inst.cfg +++ b/resources/variants/dxu/dxu_umo_dual_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_dual_0.6.inst.cfg b/resources/variants/dxu/dxu_umo_dual_0.6.inst.cfg index 5af2ac18a15..5a16beb3c63 100644 --- a/resources/variants/dxu/dxu_umo_dual_0.6.inst.cfg +++ b/resources/variants/dxu/dxu_umo_dual_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_dual_0.8.inst.cfg b/resources/variants/dxu/dxu_umo_dual_0.8.inst.cfg index eae270181b5..57e7bd70e01 100644 --- a/resources/variants/dxu/dxu_umo_dual_0.8.inst.cfg +++ b/resources/variants/dxu/dxu_umo_dual_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.20.inst.cfg index ff14878f695..54af683b9c9 100644 --- a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.40.inst.cfg index 30ee88ddd37..3217a1a6ce7 100644 --- a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.60.inst.cfg index 8a5d31cca26..bc82566e9cb 100644 --- a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.80.inst.cfg index 558d8fbdadb..2a33d85bddc 100644 --- a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.20.inst.cfg index 4c1180e555a..17298221b2f 100644 --- a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.40.inst.cfg index a38d2db9890..fc59701f7a3 100644 --- a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.60.inst.cfg index 13cd15ad7d3..0da41f7840a 100644 --- a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.80.inst.cfg index 785396f64a0..7beae5d3e5b 100644 --- a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.20.inst.cfg index eded48e16d5..9a5939570f3 100644 --- a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.40.inst.cfg index 68655ba6f6d..12ff110d2f1 100644 --- a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.60.inst.cfg index 93094eced63..b4767809f01 100644 --- a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.80.inst.cfg index cc5430a6875..1982bc0cf50 100644 --- a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.20.inst.cfg index dba8f4835c5..037e20a244c 100644 --- a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.40.inst.cfg index c289d4595f9..c10c29be43a 100644 --- a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.60.inst.cfg index 23a9449b569..cdec82e36ca 100644 --- a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.80.inst.cfg index a4ec2af878c..71b05584c77 100644 --- a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.20.inst.cfg index 253e434aaa9..79905f009ef 100644 --- a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.40.inst.cfg index 1a638c6f36c..23fd5dbe3be 100644 --- a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.60.inst.cfg index 4ae27b83f3b..192b22cd3d7 100644 --- a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.80.inst.cfg index bd4be2b2dc5..385b1078813 100644 --- a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.20.inst.cfg index 502b18c49a6..e3dece63997 100644 --- a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.40.inst.cfg index 8e5aa468d8a..c47b9bd4108 100644 --- a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.60.inst.cfg index 58dd28cbc1f..a1eddd732ae 100644 --- a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.80.inst.cfg index 669d7207e54..7ee345c400c 100644 --- a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.20.inst.cfg index ef39a4560f0..7f1bd2395ca 100644 --- a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.40.inst.cfg index 4331b27eda0..6825ef8695b 100644 --- a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.60.inst.cfg index 7d518a6df6f..15bb5938edd 100644 --- a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.80.inst.cfg index c5183f0e7d8..4c75c5ab10b 100644 --- a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.20.inst.cfg index 54301e7ad8e..83c207f638e 100644 --- a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.40.inst.cfg index 0e49ef7d518..c7177f03c4c 100644 --- a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.60.inst.cfg index 9e60d5aaa50..a9531188900 100644 --- a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.80.inst.cfg index c69d81dab84..508fba410cf 100644 --- a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.20.inst.cfg index 3498effd991..7f982712ef1 100644 --- a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.40.inst.cfg index 086826b12b9..dac5cd8317e 100644 --- a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.60.inst.cfg index 5ad651685a7..4c69919d3d1 100644 --- a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.80.inst.cfg index 3380d42cc8a..bcb9cc218dc 100644 --- a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.20.inst.cfg index 5dea2c50ce0..8b8fdb67c10 100644 --- a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.40.inst.cfg index a7d62bdcffd..7bb3f29a7c7 100644 --- a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.60.inst.cfg index 018d6d4881e..012d6b6ce7a 100644 --- a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.80.inst.cfg index fc7177d14c5..9baa55881e5 100644 --- a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.20.inst.cfg index 16ac330f8ab..474b80a73f9 100644 --- a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.40.inst.cfg index 2d0237ff34f..c67b0aeae62 100644 --- a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.60.inst.cfg index bd960d80e16..bb9711b1985 100644 --- a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.80.inst.cfg index 32d38604985..2ffbd30b177 100644 --- a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg index b938fd368e2..ff0e79e8f9e 100644 --- a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg index 6b6401b95f7..c74a427847d 100644 --- a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg index f7b4f3dccde..77378889589 100644 --- a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg index e3c2e1ed54b..37f1b635520 100644 --- a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.20.inst.cfg index c06a52f29b9..41bfaa08a07 100644 --- a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.40.inst.cfg index 2d3802546f9..91f42e476e5 100644 --- a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.60.inst.cfg index e0a715a717d..aa13f03c451 100644 --- a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.80.inst.cfg index 196a9f8ce0e..5808e0a6772 100644 --- a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_hyb35.inst.cfg b/resources/variants/fabtotum/fabtotum_hyb35.inst.cfg index 627675315c0..60ef115b5f5 100644 --- a/resources/variants/fabtotum/fabtotum_hyb35.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_hyb35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_lite04.inst.cfg b/resources/variants/fabtotum/fabtotum_lite04.inst.cfg index 1367297a485..56f51646792 100644 --- a/resources/variants/fabtotum/fabtotum_lite04.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_lite04.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_lite06.inst.cfg b/resources/variants/fabtotum/fabtotum_lite06.inst.cfg index 57c84f42f78..cc9f291bde7 100644 --- a/resources/variants/fabtotum/fabtotum_lite06.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_lite06.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_pro02.inst.cfg b/resources/variants/fabtotum/fabtotum_pro02.inst.cfg index 6808a335862..63e13314a63 100644 --- a/resources/variants/fabtotum/fabtotum_pro02.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_pro02.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_pro04.inst.cfg b/resources/variants/fabtotum/fabtotum_pro04.inst.cfg index bab320bb9a1..ce5beb4e347 100644 --- a/resources/variants/fabtotum/fabtotum_pro04.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_pro04.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_pro06.inst.cfg b/resources/variants/fabtotum/fabtotum_pro06.inst.cfg index 616f1984d45..faad25df652 100644 --- a/resources/variants/fabtotum/fabtotum_pro06.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_pro06.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_pro08.inst.cfg b/resources/variants/fabtotum/fabtotum_pro08.inst.cfg index ecf117c1dd9..01661cf9a96 100644 --- a/resources/variants/fabtotum/fabtotum_pro08.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_pro08.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/farm2/farm2_ce_printhead_0.2.inst.cfg b/resources/variants/farm2/farm2_ce_printhead_0.2.inst.cfg index b32fab27a98..2806a0e56c3 100644 --- a/resources/variants/farm2/farm2_ce_printhead_0.2.inst.cfg +++ b/resources/variants/farm2/farm2_ce_printhead_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/farm2/farm2_ce_printhead_0.3.inst.cfg b/resources/variants/farm2/farm2_ce_printhead_0.3.inst.cfg index dc61348f5e1..c0ed4d0b82b 100644 --- a/resources/variants/farm2/farm2_ce_printhead_0.3.inst.cfg +++ b/resources/variants/farm2/farm2_ce_printhead_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/farm2/farm2_ce_printhead_0.4.inst.cfg b/resources/variants/farm2/farm2_ce_printhead_0.4.inst.cfg index f6317d5a6bf..c49f4b8f7f8 100644 --- a/resources/variants/farm2/farm2_ce_printhead_0.4.inst.cfg +++ b/resources/variants/farm2/farm2_ce_printhead_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/farm2/farm2_ce_printhead_0.5.inst.cfg b/resources/variants/farm2/farm2_ce_printhead_0.5.inst.cfg index f6d668441f5..7eda0784d34 100644 --- a/resources/variants/farm2/farm2_ce_printhead_0.5.inst.cfg +++ b/resources/variants/farm2/farm2_ce_printhead_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/farm2/farm2_printhead_0.2.inst.cfg b/resources/variants/farm2/farm2_printhead_0.2.inst.cfg index 884f277d711..c32dd5b7ee2 100644 --- a/resources/variants/farm2/farm2_printhead_0.2.inst.cfg +++ b/resources/variants/farm2/farm2_printhead_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/farm2/farm2_printhead_0.3.inst.cfg b/resources/variants/farm2/farm2_printhead_0.3.inst.cfg index 348d84f431e..c85557732e1 100644 --- a/resources/variants/farm2/farm2_printhead_0.3.inst.cfg +++ b/resources/variants/farm2/farm2_printhead_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/farm2/farm2_printhead_0.4.inst.cfg b/resources/variants/farm2/farm2_printhead_0.4.inst.cfg index fb324a7b942..d1d5139ef19 100644 --- a/resources/variants/farm2/farm2_printhead_0.4.inst.cfg +++ b/resources/variants/farm2/farm2_printhead_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/farm2/farm2_printhead_0.5.inst.cfg b/resources/variants/farm2/farm2_printhead_0.5.inst.cfg index 51e1998f73e..f3800018ecf 100644 --- a/resources/variants/farm2/farm2_printhead_0.5.inst.cfg +++ b/resources/variants/farm2/farm2_printhead_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/felix/felixpro2_0.25.inst.cfg b/resources/variants/felix/felixpro2_0.25.inst.cfg index c29733b4b5f..0517d24161b 100644 --- a/resources/variants/felix/felixpro2_0.25.inst.cfg +++ b/resources/variants/felix/felixpro2_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = pnks hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/felix/felixpro2_0.35.inst.cfg b/resources/variants/felix/felixpro2_0.35.inst.cfg index 3e63477be23..e9265c414e1 100644 --- a/resources/variants/felix/felixpro2_0.35.inst.cfg +++ b/resources/variants/felix/felixpro2_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = pnks hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/felix/felixpro2_0.50.inst.cfg b/resources/variants/felix/felixpro2_0.50.inst.cfg index 7aa71ab40a4..8a69b37e2d9 100644 --- a/resources/variants/felix/felixpro2_0.50.inst.cfg +++ b/resources/variants/felix/felixpro2_0.50.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = pnks hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/felix/felixpro2_0.70.inst.cfg b/resources/variants/felix/felixpro2_0.70.inst.cfg index 7650505cb98..e0b67653159 100644 --- a/resources/variants/felix/felixpro2_0.70.inst.cfg +++ b/resources/variants/felix/felixpro2_0.70.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = pnks hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/felix/felixtec4_0.25.inst.cfg b/resources/variants/felix/felixtec4_0.25.inst.cfg index f07db133084..9e3586ebe9c 100644 --- a/resources/variants/felix/felixtec4_0.25.inst.cfg +++ b/resources/variants/felix/felixtec4_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = kerog777 hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/felix/felixtec4_0.35.inst.cfg b/resources/variants/felix/felixtec4_0.35.inst.cfg index 590a3a3664d..84090ef30c7 100644 --- a/resources/variants/felix/felixtec4_0.35.inst.cfg +++ b/resources/variants/felix/felixtec4_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = kerog777 hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/felix/felixtec4_0.50.inst.cfg b/resources/variants/felix/felixtec4_0.50.inst.cfg index 5c75a42e069..09086168e0c 100644 --- a/resources/variants/felix/felixtec4_0.50.inst.cfg +++ b/resources/variants/felix/felixtec4_0.50.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = kerog777 hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/felix/felixtec4_0.70.inst.cfg b/resources/variants/felix/felixtec4_0.70.inst.cfg index b5ff8d48842..c9f492ecfef 100644 --- a/resources/variants/felix/felixtec4_0.70.inst.cfg +++ b/resources/variants/felix/felixtec4_0.70.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = kerog777 hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3_0.3.inst.cfg index fdaea7e9f06..6eb9b886f0b 100644 --- a/resources/variants/flashforge/flashforge_adventurer3_0.3.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3_0.4.inst.cfg index 5a7a2520ada..5c7a08ba03b 100644 --- a/resources/variants/flashforge/flashforge_adventurer3_0.4.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3_0.6.inst.cfg index bee4393cc95..c05e4758805 100644 --- a/resources/variants/flashforge/flashforge_adventurer3_0.6.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg index 404c0efb06f..c8d7535ede5 100644 --- a/resources/variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg index 20cb91c62ed..f3b9aa3bf22 100644 --- a/resources/variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg index 531763721a1..974b554bf4f 100644 --- a/resources/variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4_0.3.inst.cfg index 661de9a8020..4c41f5e7676 100644 --- a/resources/variants/flashforge/flashforge_adventurer4_0.3.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4_0.4.inst.cfg index 7944ab4d6ae..afb2a463a9d 100644 --- a/resources/variants/flashforge/flashforge_adventurer4_0.4.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4_0.6.inst.cfg index 2e0bb4d36a6..efdc18da4c8 100644 --- a/resources/variants/flashforge/flashforge_adventurer4_0.6.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg index 25f6eba9bf7..208cb50e2c5 100644 --- a/resources/variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg index c073e058315..7a74b5a8393 100644 --- a/resources/variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg index 5801637f402..674858edadb 100644 --- a/resources/variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_base_0.20.inst.cfg b/resources/variants/flashforge/flashforge_base_0.20.inst.cfg index daf917a360f..142c5293dc6 100644 --- a/resources/variants/flashforge/flashforge_base_0.20.inst.cfg +++ b/resources/variants/flashforge/flashforge_base_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_base_0.30.inst.cfg b/resources/variants/flashforge/flashforge_base_0.30.inst.cfg index fce9cb55f40..d533d14756a 100644 --- a/resources/variants/flashforge/flashforge_base_0.30.inst.cfg +++ b/resources/variants/flashforge/flashforge_base_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_base_0.40.inst.cfg b/resources/variants/flashforge/flashforge_base_0.40.inst.cfg index 0744c7c68e7..f6c0995f8da 100644 --- a/resources/variants/flashforge/flashforge_base_0.40.inst.cfg +++ b/resources/variants/flashforge/flashforge_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_base_0.50.inst.cfg b/resources/variants/flashforge/flashforge_base_0.50.inst.cfg index 6a0f694e229..4562c778851 100644 --- a/resources/variants/flashforge/flashforge_base_0.50.inst.cfg +++ b/resources/variants/flashforge/flashforge_base_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_base_0.60.inst.cfg b/resources/variants/flashforge/flashforge_base_0.60.inst.cfg index 67d3fcd4c67..80fc272e50c 100644 --- a/resources/variants/flashforge/flashforge_base_0.60.inst.cfg +++ b/resources/variants/flashforge/flashforge_base_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_dreamer_nx_0.20.inst.cfg b/resources/variants/flashforge/flashforge_dreamer_nx_0.20.inst.cfg index 2336dc5429b..a165b04fb7d 100644 --- a/resources/variants/flashforge/flashforge_dreamer_nx_0.20.inst.cfg +++ b/resources/variants/flashforge/flashforge_dreamer_nx_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_dreamer_nx_0.30.inst.cfg b/resources/variants/flashforge/flashforge_dreamer_nx_0.30.inst.cfg index a3944902b3e..44d4f6da078 100644 --- a/resources/variants/flashforge/flashforge_dreamer_nx_0.30.inst.cfg +++ b/resources/variants/flashforge/flashforge_dreamer_nx_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_dreamer_nx_0.40.inst.cfg b/resources/variants/flashforge/flashforge_dreamer_nx_0.40.inst.cfg index b63fabe9456..5da36327492 100644 --- a/resources/variants/flashforge/flashforge_dreamer_nx_0.40.inst.cfg +++ b/resources/variants/flashforge/flashforge_dreamer_nx_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_dreamer_nx_0.50.inst.cfg b/resources/variants/flashforge/flashforge_dreamer_nx_0.50.inst.cfg index ec81a7c2e90..0c49c7a5545 100644 --- a/resources/variants/flashforge/flashforge_dreamer_nx_0.50.inst.cfg +++ b/resources/variants/flashforge/flashforge_dreamer_nx_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_dreamer_nx_0.60.inst.cfg b/resources/variants/flashforge/flashforge_dreamer_nx_0.60.inst.cfg index 53ff0d67a75..8812d008459 100644 --- a/resources/variants/flashforge/flashforge_dreamer_nx_0.60.inst.cfg +++ b/resources/variants/flashforge/flashforge_dreamer_nx_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.25.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.25.inst.cfg index 39a0d590c96..ec850a35128 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.25.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.30.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.30.inst.cfg index ec73fcc5256..e360bc54ac0 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.30.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.40.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.40.inst.cfg index 16d8371149f..559efcc3e33 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.40.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.50.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.50.inst.cfg index cc22daaec0f..b24ba7b7f73 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.50.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.60.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.60.inst.cfg index 03b72994c54..dcf4ee1cbbc 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.60.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.80.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.80.inst.cfg index dd543e2675a..a0eec97673c 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.80.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.25.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.25.inst.cfg index 5bae98edc14..a2bfce3a5e8 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.25.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.30.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.30.inst.cfg index 233f3eb2be2..eeaaa3c7ec4 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.30.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.40.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.40.inst.cfg index 4c1365fbee8..350768d4893 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.40.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.50.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.50.inst.cfg index 24739c79ccf..f999358203b 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.50.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.60.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.60.inst.cfg index 06620b39cf9..68da0ebe581 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.60.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.80.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.80.inst.cfg index 32fb9abcdc5..f4361655538 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.80.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.25.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.25.inst.cfg index 69457b3e961..18e877f0490 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.25.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.30.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.30.inst.cfg index 9bff6523b59..a06bf2b2e71 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.30.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.40.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.40.inst.cfg index 5e1bf0c0e3c..dcbc1c59471 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.40.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.50.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.50.inst.cfg index 5dcc310b584..7b8d3a09506 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.50.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.60.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.60.inst.cfg index 97bda891936..ed4178c2e62 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.60.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.80.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.80.inst.cfg index 79e4dfcfe59..9b6752cddfe 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.80.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.25.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.25.inst.cfg index bb673ccc53d..558ba90c08a 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.25.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.30.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.30.inst.cfg index ffae1f125d7..533e4910924 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.30.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.40.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.40.inst.cfg index 574ec2638a3..ee4bfe444ee 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.40.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.50.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.50.inst.cfg index 908a07a12eb..0be6244d22f 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.50.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.60.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.60.inst.cfg index 816401bed08..2b6fdc91b50 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.60.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.80.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.80.inst.cfg index c34767b93e5..2ce93740e6b 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.80.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fusion3/fusion3_0.4.inst.cfg b/resources/variants/fusion3/fusion3_0.4.inst.cfg index 261f26604f0..032d1df8d6f 100644 --- a/resources/variants/fusion3/fusion3_0.4.inst.cfg +++ b/resources/variants/fusion3/fusion3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fusion3/fusion3_0.6.inst.cfg b/resources/variants/fusion3/fusion3_0.6.inst.cfg index 005f95660e7..d71f9bf60ae 100644 --- a/resources/variants/fusion3/fusion3_0.6.inst.cfg +++ b/resources/variants/fusion3/fusion3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fusion3/fusion3_0.8.inst.cfg b/resources/variants/fusion3/fusion3_0.8.inst.cfg index 7d0fdd0cead..82d13ac5094 100644 --- a/resources/variants/fusion3/fusion3_0.8.inst.cfg +++ b/resources/variants/fusion3/fusion3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fusion3/fusion3_f410_0.4.inst.cfg b/resources/variants/fusion3/fusion3_f410_0.4.inst.cfg index 261f26604f0..032d1df8d6f 100644 --- a/resources/variants/fusion3/fusion3_f410_0.4.inst.cfg +++ b/resources/variants/fusion3/fusion3_f410_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fusion3/fusion3_f410_0.6.inst.cfg b/resources/variants/fusion3/fusion3_f410_0.6.inst.cfg index 005f95660e7..d71f9bf60ae 100644 --- a/resources/variants/fusion3/fusion3_f410_0.6.inst.cfg +++ b/resources/variants/fusion3/fusion3_f410_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fusion3/fusion3_f410_0.8.inst.cfg b/resources/variants/fusion3/fusion3_f410_0.8.inst.cfg index 7d0fdd0cead..82d13ac5094 100644 --- a/resources/variants/fusion3/fusion3_f410_0.8.inst.cfg +++ b/resources/variants/fusion3/fusion3_f410_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.2.inst.cfg index 9a9e9878e90..073bfde093d 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.3.inst.cfg index 2202e0a978f..35738c38b4d 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.4.inst.cfg index fc88f406112..771d388981a 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.5.inst.cfg index 698b17ef685..3def0e3b77e 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.6.inst.cfg index 65f63a11a1e..c3339144f02 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.8.inst.cfg index 1430a9d5cb9..d9d55c53bab 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_1.0.inst.cfg index 8c29cae1bb8..67928921d48 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.2.inst.cfg index 7be8d97e018..b1214cc24b5 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.3.inst.cfg index 3201d2b9c36..55648cf4be6 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.4.inst.cfg index 568b11da35e..8a7aeae477f 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.5.inst.cfg index 720f7f2dced..7edabf63275 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.6.inst.cfg index ecdddc5cbd0..ead8c5b8917 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.8.inst.cfg index 5e85dd0b29c..cdfa9fe6717 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_1.0.inst.cfg index fdb5b146bcc..faee4e113b3 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.2.inst.cfg index 2f00ab96559..88156da5e3f 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.3.inst.cfg index c19b8e959fc..57da0f5263c 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.4.inst.cfg index 9d2ab142a9f..93b6d43e9db 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.5.inst.cfg index 8ade0c96d53..51e95b839cf 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.6.inst.cfg index 5fe235062e4..e46f80f6855 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.8.inst.cfg index fe6e60220c5..bf1850752f8 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_1.0.inst.cfg index 19de98bcf73..ae25d00c77f 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.2.inst.cfg index ee96e1c069f..7ce2a570e2e 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.3.inst.cfg index e86a3f42655..5029b53c1db 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.4.inst.cfg index 187ad167f92..6940fc607c5 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.5.inst.cfg index 73f36e97c9b..0086d1c6034 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.6.inst.cfg index b685d8b0acc..5b27a712db6 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.8.inst.cfg index 3a961ab375e..e4dc87a4938 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_1.0.inst.cfg index 45e7f7b6fc0..76cb672edab 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.2.inst.cfg index 1500608c0f5..0be00235ea4 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.3.inst.cfg index 028454782f1..9cec948b0a7 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.4.inst.cfg index 6a0384123b8..f35d51b4a11 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.5.inst.cfg index 8beb28df6d2..563f8b902b7 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.6.inst.cfg index 690db843a82..d1902b60c74 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.8.inst.cfg index 55482393649..50c7f204577 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_1.0.inst.cfg index 64b436c163a..207f845af0a 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.2.inst.cfg index 81ed9dfa9da..205ef057b44 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.3.inst.cfg index c987c0d0895..640fd67b3fc 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.4.inst.cfg index 24f25650204..7737cb527bf 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.5.inst.cfg index c6fdbe00ec8..8c9d8ec96f5 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.6.inst.cfg index 0025650b9e3..c38d74d549b 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.8.inst.cfg index 0b85e692060..0b942550362 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_1.0.inst.cfg index 655f01f84d8..70e3f7a1e0a 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.2.inst.cfg index d7f363ad541..91a561d4596 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.3.inst.cfg index 78e32292a9b..a69f11ecf43 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.4.inst.cfg index 24b83a1403d..4b3f2f9a2dd 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.5.inst.cfg index e2fb8c11c45..b9ea6e9f9fe 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.6.inst.cfg index 050609fd6cb..87ea7a7951d 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.8.inst.cfg index 3a95ad3e797..78d066ae44f 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_1.0.inst.cfg index c7cd51bc8df..82d05d6f695 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.2.inst.cfg index c1256d94e69..2d08c3a349c 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.3.inst.cfg index a68a22081d7..9c6dfcc9a9d 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.4.inst.cfg index 1197b828445..923ec6db031 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.5.inst.cfg index 7b816051bcb..440c72ca1e7 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.6.inst.cfg index 44ac8d0d846..b853c0ec3a2 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.8.inst.cfg index b5ed03911ff..66d1be9510d 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_1.0.inst.cfg index cf1b29a5dbc..70dd52e71f7 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.2.inst.cfg index b615fdf9568..3d086a71299 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.3.inst.cfg index fdcac4247c1..e7d5a500c8a 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.4.inst.cfg index e8a30cb72de..7c3e19e18e7 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.5.inst.cfg index 96e2165217d..a41b890f1cd 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.6.inst.cfg index 05de4f03fcc..9d0968940fd 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.8.inst.cfg index e1ca78c632b..2918812f148 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_1.0.inst.cfg index 3bc4fb47912..a7a5cbc5169 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.2.inst.cfg index 29098cad270..464246ea609 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.3.inst.cfg index 14ab2423adc..738fc3458d7 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.4.inst.cfg index ff64aaf57c2..9c0507ee7f6 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.5.inst.cfg index cb75505ad85..c46105ee964 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.6.inst.cfg index 4a606afa5e6..47197c50c4b 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.8.inst.cfg index de9f4a6eacd..79994015e05 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_1.0.inst.cfg index b8d702dd927..64473d57c67 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.2.inst.cfg index b2758076262..94353d46454 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.3.inst.cfg index 444cd8c49ec..7276bfe5c83 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.4.inst.cfg index b12b83d69da..6ef937964fb 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.5.inst.cfg index fd808f3a2d1..bbd1a135bfe 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.6.inst.cfg index 304bf82ed64..13f0c386f62 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.8.inst.cfg index e2a2d917bdf..7a9f1cd96ec 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_1.0.inst.cfg index 503ee475234..16b62b79ecd 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.2.inst.cfg index 008949a21a0..ac5014f44e9 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.3.inst.cfg index 011102c56d2..06db2686449 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.4.inst.cfg index 31b0a7b2902..66d27fbaeba 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.5.inst.cfg index 4cf9cdde6ad..05665e2f1c3 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.6.inst.cfg index a514327da31..e19a3b7ac72 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.8.inst.cfg index 78e14970c61..7edbb4db5fa 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_1.0.inst.cfg index 731eebadcf5..d366f986c0d 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.2.inst.cfg index f3372f51303..7cbba5a681e 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.3.inst.cfg index 2c1b42a7d3d..834c7b97727 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.4.inst.cfg index f47174704da..608d17b7a24 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.5.inst.cfg index 103013e2213..192ccda494f 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.6.inst.cfg index f4ba7996b60..ff70e1b2c50 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.8.inst.cfg index 06e9293f084..9be2fda82d9 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_1.0.inst.cfg index 2f15045922c..dd6c2e03449 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.2.inst.cfg index 27897ba995f..48dac05f841 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.3.inst.cfg index cbda21f3a8b..59fac38bda3 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.4.inst.cfg index 7f3b37557b8..e8477d9dbd3 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.5.inst.cfg index 7f928eb7d72..fc260787840 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.6.inst.cfg index f50565bd15c..974667f4623 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.8.inst.cfg index 7c164087d88..2d9e169eb5a 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_1.0.inst.cfg index a4239bb42f0..3be895b6d74 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.2.inst.cfg index f28d5017812..0ba2b440cd4 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.3.inst.cfg index 4fbb3f0926b..8e3980c13b1 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.4.inst.cfg index 99e2398e708..d64df8faf4c 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.5.inst.cfg index d017e391d96..6b41030cdfc 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.6.inst.cfg index 670d6e9668d..220550d38b8 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.8.inst.cfg index 850ebfc9ace..46df1945e3d 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_1.0.inst.cfg index 009a647ab04..84f86b78250 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_025_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_025_e3d.inst.cfg index f3ffadd4efd..feee98341fd 100644 --- a/resources/variants/gmax/gmax15plus_025_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_025_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_04_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_04_e3d.inst.cfg index 3eb5c892d88..ea6031a55f8 100644 --- a/resources/variants/gmax/gmax15plus_04_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_04_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_05_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_05_e3d.inst.cfg index 9a2e0b9baab..dc2013400ad 100644 --- a/resources/variants/gmax/gmax15plus_05_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_05_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_05_jhead.inst.cfg b/resources/variants/gmax/gmax15plus_05_jhead.inst.cfg index 2aa34bdedd0..7bb73d376b1 100644 --- a/resources/variants/gmax/gmax15plus_05_jhead.inst.cfg +++ b/resources/variants/gmax/gmax15plus_05_jhead.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_06_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_06_e3d.inst.cfg index 97da3458b81..20a68280f56 100644 --- a/resources/variants/gmax/gmax15plus_06_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_06_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_08_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_08_e3d.inst.cfg index d76fb1ab6d4..5554348466c 100644 --- a/resources/variants/gmax/gmax15plus_08_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_08_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_10_jhead.inst.cfg b/resources/variants/gmax/gmax15plus_10_jhead.inst.cfg index 10241ec4aee..e14b37d410a 100644 --- a/resources/variants/gmax/gmax15plus_10_jhead.inst.cfg +++ b/resources/variants/gmax/gmax15plus_10_jhead.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_12_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_12_e3d.inst.cfg index 75bd587acaa..da6f85cd787 100644 --- a/resources/variants/gmax/gmax15plus_12_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_12_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_025_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_dual_025_e3d.inst.cfg index 304dd70619b..b83cc5e0cbb 100644 --- a/resources/variants/gmax/gmax15plus_dual_025_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_025_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_04_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_dual_04_e3d.inst.cfg index ba54ecbc239..2c5b950fa7b 100644 --- a/resources/variants/gmax/gmax15plus_dual_04_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_04_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_05_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_dual_05_e3d.inst.cfg index ec91df6fc0e..f8e5949f32a 100644 --- a/resources/variants/gmax/gmax15plus_dual_05_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_05_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_05_jhead.inst.cfg b/resources/variants/gmax/gmax15plus_dual_05_jhead.inst.cfg index 7ac4be04d40..ae2c4c2e2c6 100644 --- a/resources/variants/gmax/gmax15plus_dual_05_jhead.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_05_jhead.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_06_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_dual_06_e3d.inst.cfg index 43f487f522a..6dae917b2fa 100644 --- a/resources/variants/gmax/gmax15plus_dual_06_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_06_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_08_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_dual_08_e3d.inst.cfg index 41c3a810cf7..108db8a2c1e 100644 --- a/resources/variants/gmax/gmax15plus_dual_08_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_08_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_10_jhead.inst.cfg b/resources/variants/gmax/gmax15plus_dual_10_jhead.inst.cfg index 3a9fbc00b32..23e1ba20473 100644 --- a/resources/variants/gmax/gmax15plus_dual_10_jhead.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_10_jhead.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_base_0.4.inst.cfg b/resources/variants/goofoo/goofoo_base_0.4.inst.cfg index b37d8481fb2..edd56cb8b06 100644 --- a/resources/variants/goofoo/goofoo_base_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_cube_0.7.inst.cfg b/resources/variants/goofoo/goofoo_cube_0.7.inst.cfg index fa289fd3f65..7313a769eac 100644 --- a/resources/variants/goofoo/goofoo_cube_0.7.inst.cfg +++ b/resources/variants/goofoo/goofoo_cube_0.7.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_e-one_0.2.inst.cfg b/resources/variants/goofoo/goofoo_e-one_0.2.inst.cfg index d58c829c098..7ada6238e5c 100644 --- a/resources/variants/goofoo/goofoo_e-one_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_e-one_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_e-one_0.4.inst.cfg b/resources/variants/goofoo/goofoo_e-one_0.4.inst.cfg index aeed0bafc01..5e317ddbaa9 100644 --- a/resources/variants/goofoo/goofoo_e-one_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_e-one_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_e-one_0.6.inst.cfg b/resources/variants/goofoo/goofoo_e-one_0.6.inst.cfg index 147a685eca2..2ea49513615 100644 --- a/resources/variants/goofoo/goofoo_e-one_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_e-one_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_e-one_0.8.inst.cfg b/resources/variants/goofoo/goofoo_e-one_0.8.inst.cfg index 0248637e1a6..9d4fae1ab86 100644 --- a/resources/variants/goofoo/goofoo_e-one_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_e-one_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_e-one_1.0.inst.cfg b/resources/variants/goofoo/goofoo_e-one_1.0.inst.cfg index 70b1eebafa0..b4b70b2804b 100644 --- a/resources/variants/goofoo/goofoo_e-one_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_e-one_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_gemini_0.2.inst.cfg b/resources/variants/goofoo/goofoo_gemini_0.2.inst.cfg index c73ab7ad5bb..d78fbb80896 100644 --- a/resources/variants/goofoo/goofoo_gemini_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_gemini_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_gemini_0.4.inst.cfg b/resources/variants/goofoo/goofoo_gemini_0.4.inst.cfg index c68dc99c956..45e088df352 100644 --- a/resources/variants/goofoo/goofoo_gemini_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_gemini_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_gemini_0.6.inst.cfg b/resources/variants/goofoo/goofoo_gemini_0.6.inst.cfg index 2114e78b0a6..070fcb73595 100644 --- a/resources/variants/goofoo/goofoo_gemini_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_gemini_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_gemini_0.8.inst.cfg b/resources/variants/goofoo/goofoo_gemini_0.8.inst.cfg index cf72e50f95c..93681c06e08 100644 --- a/resources/variants/goofoo/goofoo_gemini_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_gemini_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_gemini_1.0.inst.cfg b/resources/variants/goofoo/goofoo_gemini_1.0.inst.cfg index 2ee9a5892df..0fcb2d256fc 100644 --- a/resources/variants/goofoo/goofoo_gemini_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_gemini_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_giant_0.2.inst.cfg b/resources/variants/goofoo/goofoo_giant_0.2.inst.cfg index 7b6bb6168bc..623eb82821b 100644 --- a/resources/variants/goofoo/goofoo_giant_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_giant_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_giant_0.4.inst.cfg b/resources/variants/goofoo/goofoo_giant_0.4.inst.cfg index 646bd838d90..4fdd5889227 100644 --- a/resources/variants/goofoo/goofoo_giant_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_giant_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_giant_0.6.inst.cfg b/resources/variants/goofoo/goofoo_giant_0.6.inst.cfg index e27af8852f1..53a36b3d1db 100644 --- a/resources/variants/goofoo/goofoo_giant_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_giant_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_giant_0.8.inst.cfg b/resources/variants/goofoo/goofoo_giant_0.8.inst.cfg index 2668a4abf5c..979eb3ee473 100644 --- a/resources/variants/goofoo/goofoo_giant_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_giant_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_giant_1.0.inst.cfg b/resources/variants/goofoo/goofoo_giant_1.0.inst.cfg index ddd0196d45e..8cd6591c7d7 100644 --- a/resources/variants/goofoo/goofoo_giant_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_giant_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_max_0.2.inst.cfg b/resources/variants/goofoo/goofoo_max_0.2.inst.cfg index 1f1ac3e61d4..85cb28cf951 100644 --- a/resources/variants/goofoo/goofoo_max_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_max_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_max_0.4.inst.cfg b/resources/variants/goofoo/goofoo_max_0.4.inst.cfg index 8e9fe3bf93b..82388a823b9 100644 --- a/resources/variants/goofoo/goofoo_max_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_max_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_max_0.6.inst.cfg b/resources/variants/goofoo/goofoo_max_0.6.inst.cfg index 4a8838a97ba..6f40759e133 100644 --- a/resources/variants/goofoo/goofoo_max_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_max_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_max_0.8.inst.cfg b/resources/variants/goofoo/goofoo_max_0.8.inst.cfg index 9cba9c182bd..c521a9e8ba2 100644 --- a/resources/variants/goofoo/goofoo_max_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_max_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_max_1.0.inst.cfg b/resources/variants/goofoo/goofoo_max_1.0.inst.cfg index 378879d8fca..92ef73f8fdf 100644 --- a/resources/variants/goofoo/goofoo_max_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_max_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_mido_0.2.inst.cfg b/resources/variants/goofoo/goofoo_mido_0.2.inst.cfg index cb320b755a2..4d75934903d 100644 --- a/resources/variants/goofoo/goofoo_mido_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_mido_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_mido_0.4.inst.cfg b/resources/variants/goofoo/goofoo_mido_0.4.inst.cfg index 7aa7995d5f5..432f4e4eb11 100644 --- a/resources/variants/goofoo/goofoo_mido_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_mido_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_mido_0.6.inst.cfg b/resources/variants/goofoo/goofoo_mido_0.6.inst.cfg index d4f0f0ebbcd..842c973865d 100644 --- a/resources/variants/goofoo/goofoo_mido_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_mido_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_mido_0.8.inst.cfg b/resources/variants/goofoo/goofoo_mido_0.8.inst.cfg index 49016ad3bc2..5956dbc848f 100644 --- a/resources/variants/goofoo/goofoo_mido_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_mido_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_mido_1.0.inst.cfg b/resources/variants/goofoo/goofoo_mido_1.0.inst.cfg index e79ef6553a0..22210336fac 100644 --- a/resources/variants/goofoo/goofoo_mido_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_mido_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_miniplus_0.2.inst.cfg b/resources/variants/goofoo/goofoo_miniplus_0.2.inst.cfg index d1fbaabb38f..db56fd8a68b 100644 --- a/resources/variants/goofoo/goofoo_miniplus_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_miniplus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_miniplus_0.4.inst.cfg b/resources/variants/goofoo/goofoo_miniplus_0.4.inst.cfg index 63f75c8f07f..eab49f6ff2d 100644 --- a/resources/variants/goofoo/goofoo_miniplus_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_miniplus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_miniplus_0.6.inst.cfg b/resources/variants/goofoo/goofoo_miniplus_0.6.inst.cfg index d4457a95f3a..c443ac435f9 100644 --- a/resources/variants/goofoo/goofoo_miniplus_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_miniplus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_miniplus_0.8.inst.cfg b/resources/variants/goofoo/goofoo_miniplus_0.8.inst.cfg index 8c755e45e91..0918d2b0eab 100644 --- a/resources/variants/goofoo/goofoo_miniplus_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_miniplus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_miniplus_1.0.inst.cfg b/resources/variants/goofoo/goofoo_miniplus_1.0.inst.cfg index 441ca6516ca..8657cd34a49 100644 --- a/resources/variants/goofoo/goofoo_miniplus_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_miniplus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_nova_0.2.inst.cfg b/resources/variants/goofoo/goofoo_nova_0.2.inst.cfg index dd9bb88f484..b0629040094 100644 --- a/resources/variants/goofoo/goofoo_nova_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_nova_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_nova_0.4.inst.cfg b/resources/variants/goofoo/goofoo_nova_0.4.inst.cfg index bfee7afe9a4..e2a711bc230 100644 --- a/resources/variants/goofoo/goofoo_nova_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_nova_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_nova_0.6.inst.cfg b/resources/variants/goofoo/goofoo_nova_0.6.inst.cfg index 1fcb9146255..ca8d77c73ef 100644 --- a/resources/variants/goofoo/goofoo_nova_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_nova_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_nova_0.8.inst.cfg b/resources/variants/goofoo/goofoo_nova_0.8.inst.cfg index 71d1d2dc524..ef0b26c2e1a 100644 --- a/resources/variants/goofoo/goofoo_nova_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_nova_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_nova_1.0.inst.cfg b/resources/variants/goofoo/goofoo_nova_1.0.inst.cfg index 3f9c883b819..9039055f482 100644 --- a/resources/variants/goofoo/goofoo_nova_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_nova_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_plus_0.2.inst.cfg b/resources/variants/goofoo/goofoo_plus_0.2.inst.cfg index 32ab5c41d40..5df2ea85507 100644 --- a/resources/variants/goofoo/goofoo_plus_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_plus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_plus_0.4.inst.cfg b/resources/variants/goofoo/goofoo_plus_0.4.inst.cfg index 0af036d5a3e..bcb84bc11f0 100644 --- a/resources/variants/goofoo/goofoo_plus_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_plus_0.6.inst.cfg b/resources/variants/goofoo/goofoo_plus_0.6.inst.cfg index 1f1735b7119..29262517986 100644 --- a/resources/variants/goofoo/goofoo_plus_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_plus_0.8.inst.cfg b/resources/variants/goofoo/goofoo_plus_0.8.inst.cfg index c960de06d4e..eab2762d8fb 100644 --- a/resources/variants/goofoo/goofoo_plus_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_plus_1.0.inst.cfg b/resources/variants/goofoo/goofoo_plus_1.0.inst.cfg index 2b1d126cb7b..74124351430 100644 --- a/resources/variants/goofoo/goofoo_plus_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_plus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_t-one_0.2.inst.cfg b/resources/variants/goofoo/goofoo_t-one_0.2.inst.cfg index c3ba8d4f4a9..ce14d3252a2 100644 --- a/resources/variants/goofoo/goofoo_t-one_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_t-one_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_t-one_0.4.inst.cfg b/resources/variants/goofoo/goofoo_t-one_0.4.inst.cfg index 6e18bd23585..647f52efff4 100644 --- a/resources/variants/goofoo/goofoo_t-one_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_t-one_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_t-one_0.6.inst.cfg b/resources/variants/goofoo/goofoo_t-one_0.6.inst.cfg index 0d1414e4201..5037e706f39 100644 --- a/resources/variants/goofoo/goofoo_t-one_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_t-one_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_t-one_0.8.inst.cfg b/resources/variants/goofoo/goofoo_t-one_0.8.inst.cfg index 2160585bf92..f43062c605a 100644 --- a/resources/variants/goofoo/goofoo_t-one_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_t-one_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_t-one_1.0.inst.cfg b/resources/variants/goofoo/goofoo_t-one_1.0.inst.cfg index 0d03fe5d623..042d5cbbf0c 100644 --- a/resources/variants/goofoo/goofoo_t-one_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_t-one_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tiny_0.2.inst.cfg b/resources/variants/goofoo/goofoo_tiny_0.2.inst.cfg index a72d9bb26a7..660658ba582 100644 --- a/resources/variants/goofoo/goofoo_tiny_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_tiny_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tiny_0.4.inst.cfg b/resources/variants/goofoo/goofoo_tiny_0.4.inst.cfg index 9858154106d..1177030f93d 100644 --- a/resources/variants/goofoo/goofoo_tiny_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_tiny_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tiny_0.6.inst.cfg b/resources/variants/goofoo/goofoo_tiny_0.6.inst.cfg index a3f7b0fcf53..497c117e6ec 100644 --- a/resources/variants/goofoo/goofoo_tiny_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_tiny_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tiny_0.8.inst.cfg b/resources/variants/goofoo/goofoo_tiny_0.8.inst.cfg index 0036f5babdb..05ca9eca789 100644 --- a/resources/variants/goofoo/goofoo_tiny_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_tiny_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tiny_1.0.inst.cfg b/resources/variants/goofoo/goofoo_tiny_1.0.inst.cfg index 2906a243ba5..2ba839b3402 100644 --- a/resources/variants/goofoo/goofoo_tiny_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_tiny_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tinyplus_0.2.inst.cfg b/resources/variants/goofoo/goofoo_tinyplus_0.2.inst.cfg index d1d06fd35e9..b38b300dcbb 100644 --- a/resources/variants/goofoo/goofoo_tinyplus_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_tinyplus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tinyplus_0.4.inst.cfg b/resources/variants/goofoo/goofoo_tinyplus_0.4.inst.cfg index 87fe1cb6452..ca2dbe67905 100644 --- a/resources/variants/goofoo/goofoo_tinyplus_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_tinyplus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tinyplus_0.6.inst.cfg b/resources/variants/goofoo/goofoo_tinyplus_0.6.inst.cfg index 05f5c41e4d0..5973febc70e 100644 --- a/resources/variants/goofoo/goofoo_tinyplus_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_tinyplus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tinyplus_0.8.inst.cfg b/resources/variants/goofoo/goofoo_tinyplus_0.8.inst.cfg index ba6734bc991..28a472e72f9 100644 --- a/resources/variants/goofoo/goofoo_tinyplus_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_tinyplus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tinyplus_1.0.inst.cfg b/resources/variants/goofoo/goofoo_tinyplus_1.0.inst.cfg index 564189bab58..f5fdec77565 100644 --- a/resources/variants/goofoo/goofoo_tinyplus_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_tinyplus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/hms434/hms434_0.4tpnozzle.inst.cfg b/resources/variants/hms434/hms434_0.4tpnozzle.inst.cfg index 144b0401c09..0a28dd00e1c 100644 --- a/resources/variants/hms434/hms434_0.4tpnozzle.inst.cfg +++ b/resources/variants/hms434/hms434_0.4tpnozzle.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/hms434/hms434_0.8tpnozzle.inst.cfg b/resources/variants/hms434/hms434_0.8tpnozzle.inst.cfg index 75062afd05e..92c05577b8a 100644 --- a/resources/variants/hms434/hms434_0.8tpnozzle.inst.cfg +++ b/resources/variants/hms434/hms434_0.8tpnozzle.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/imade3d/imade3d_jellybox_0.4.inst.cfg b/resources/variants/imade3d/imade3d_jellybox_0.4.inst.cfg index 34e6780ff0f..71e1c6cb299 100644 --- a/resources/variants/imade3d/imade3d_jellybox_0.4.inst.cfg +++ b/resources/variants/imade3d/imade3d_jellybox_0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = IMADE3D hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/imade3d/imade3d_jellybox_2_0.4.inst.cfg b/resources/variants/imade3d/imade3d_jellybox_2_0.4.inst.cfg index beb652c36c2..94ad9c2e175 100644 --- a/resources/variants/imade3d/imade3d_jellybox_2_0.4.inst.cfg +++ b/resources/variants/imade3d/imade3d_jellybox_2_0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = IMADE3D hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.2.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.2.inst.cfg index 923f826dfd7..a34a0f4587f 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.2.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.3.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.3.inst.cfg index 587f9597f50..d7dd0b3746f 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.3.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.4.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.4.inst.cfg index 33823a9182d..1944ad57513 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.4.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.5.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.5.inst.cfg index c8eb6ccaba9..f2e80a208cc 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.5.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.6.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.6.inst.cfg index 8babba283c4..5ffb9996d26 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.6.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.8.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.8.inst.cfg index cbcef16f416..516e0c99c9d 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.8.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_1.0.inst.cfg b/resources/variants/kingroon/kingroon_kp3_1.0.inst.cfg index 0d5b4f0b01c..66c473929fa 100644 --- a/resources/variants/kingroon/kingroon_kp3_1.0.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.2.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.2.inst.cfg index 4a68bb7e11f..935e62e0592 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.2.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.3.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.3.inst.cfg index f49df9fd338..b8918d2b42e 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.3.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.4.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.4.inst.cfg index 92c337beb39..4ffeaeee2ce 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.4.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.5.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.5.inst.cfg index c4b44284060..a4f6abd2a4e 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.5.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.6.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.6.inst.cfg index d52eb29e8d9..cc14b87ebbd 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.6.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.8.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.8.inst.cfg index 7907785dfb8..7ba0f27162d 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.8.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_1.0.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_1.0.inst.cfg index e7f24084c3e..0c5fa111447 100644 --- a/resources/variants/kingroon/kingroon_kp3s_1.0.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.2.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.2.inst.cfg index 4d0858a5738..90409a027ee 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.2.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.3.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.3.inst.cfg index e127a63c76e..d90512fc699 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.3.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.4.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.4.inst.cfg index 3422da8b90f..ae48963d8a1 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.4.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.5.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.5.inst.cfg index 744e7e441de..36b1dcbbc4b 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.5.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.6.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.6.inst.cfg index 289eb3bd96e..57914a8ab3b 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.6.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.8.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.8.inst.cfg index 68aa6dc7daf..fb1a6b5e8f5 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.8.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_1.0.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_1.0.inst.cfg index 5e332ea26bf..b05acc56760 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_1.0.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.2.inst.cfg b/resources/variants/kosher/kosher220_0.2.inst.cfg index 9f18ba241c4..59547730844 100644 --- a/resources/variants/kosher/kosher220_0.2.inst.cfg +++ b/resources/variants/kosher/kosher220_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.3.inst.cfg b/resources/variants/kosher/kosher220_0.3.inst.cfg index dd2f8c5f5ea..cc5cd3e5089 100644 --- a/resources/variants/kosher/kosher220_0.3.inst.cfg +++ b/resources/variants/kosher/kosher220_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.4.inst.cfg b/resources/variants/kosher/kosher220_0.4.inst.cfg index 13e50382a54..07992ddbb52 100644 --- a/resources/variants/kosher/kosher220_0.4.inst.cfg +++ b/resources/variants/kosher/kosher220_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.5.inst.cfg b/resources/variants/kosher/kosher220_0.5.inst.cfg index 84a205114cd..dd80c290dd3 100644 --- a/resources/variants/kosher/kosher220_0.5.inst.cfg +++ b/resources/variants/kosher/kosher220_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.6.inst.cfg b/resources/variants/kosher/kosher220_0.6.inst.cfg index 817cc898f40..d42d48ceebb 100644 --- a/resources/variants/kosher/kosher220_0.6.inst.cfg +++ b/resources/variants/kosher/kosher220_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.8.inst.cfg b/resources/variants/kosher/kosher220_0.8.inst.cfg index fa1ba81ba01..dcd90b0864f 100644 --- a/resources/variants/kosher/kosher220_0.8.inst.cfg +++ b/resources/variants/kosher/kosher220_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.2.inst.cfg b/resources/variants/kosher/kosher220_dm_0.2.inst.cfg index 4e9cdb9c0eb..009eb8114d2 100644 --- a/resources/variants/kosher/kosher220_dm_0.2.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.3.inst.cfg b/resources/variants/kosher/kosher220_dm_0.3.inst.cfg index 5d5f10e7e19..26ff2fcad92 100644 --- a/resources/variants/kosher/kosher220_dm_0.3.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.4.inst.cfg b/resources/variants/kosher/kosher220_dm_0.4.inst.cfg index 91f26e2a9aa..50fe460de23 100644 --- a/resources/variants/kosher/kosher220_dm_0.4.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.5.inst.cfg b/resources/variants/kosher/kosher220_dm_0.5.inst.cfg index 1d864fb7cc4..c3bf8c8dbae 100644 --- a/resources/variants/kosher/kosher220_dm_0.5.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.6.inst.cfg b/resources/variants/kosher/kosher220_dm_0.6.inst.cfg index 46216a8ccd8..617dfb541fe 100644 --- a/resources/variants/kosher/kosher220_dm_0.6.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.8.inst.cfg b/resources/variants/kosher/kosher220_dm_0.8.inst.cfg index 08e3d294b25..5c445451990 100644 --- a/resources/variants/kosher/kosher220_dm_0.8.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.2.inst.cfg b/resources/variants/kosher/kosher220_mm_0.2.inst.cfg index d7e41a99843..c8e377c8e70 100644 --- a/resources/variants/kosher/kosher220_mm_0.2.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.3.inst.cfg b/resources/variants/kosher/kosher220_mm_0.3.inst.cfg index 86694cc2dbf..6c457bf6070 100644 --- a/resources/variants/kosher/kosher220_mm_0.3.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.4.inst.cfg b/resources/variants/kosher/kosher220_mm_0.4.inst.cfg index 80539d1bc9f..b2f718d2779 100644 --- a/resources/variants/kosher/kosher220_mm_0.4.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.5.inst.cfg b/resources/variants/kosher/kosher220_mm_0.5.inst.cfg index 9d6aebfda65..14a534767a9 100644 --- a/resources/variants/kosher/kosher220_mm_0.5.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.6.inst.cfg b/resources/variants/kosher/kosher220_mm_0.6.inst.cfg index 4a433c838ee..f0fae06951b 100644 --- a/resources/variants/kosher/kosher220_mm_0.6.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.8.inst.cfg b/resources/variants/kosher/kosher220_mm_0.8.inst.cfg index d452fef2942..369569c1f25 100644 --- a/resources/variants/kosher/kosher220_mm_0.8.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_pva_0.2.inst.cfg b/resources/variants/kosher/kosher220_pva_0.2.inst.cfg index ea3b821ceac..200d961bf62 100644 --- a/resources/variants/kosher/kosher220_pva_0.2.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_pva_0.3.inst.cfg b/resources/variants/kosher/kosher220_pva_0.3.inst.cfg index 216388c64b0..d5fee608134 100644 --- a/resources/variants/kosher/kosher220_pva_0.3.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_pva_0.4.inst.cfg b/resources/variants/kosher/kosher220_pva_0.4.inst.cfg index 024d842630d..15470c782a0 100644 --- a/resources/variants/kosher/kosher220_pva_0.4.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_pva_0.5.inst.cfg b/resources/variants/kosher/kosher220_pva_0.5.inst.cfg index 6197e0ab9ce..56f719ce121 100644 --- a/resources/variants/kosher/kosher220_pva_0.5.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_pva_0.6.inst.cfg b/resources/variants/kosher/kosher220_pva_0.6.inst.cfg index 211a361c2ba..4c2d7bcae38 100644 --- a/resources/variants/kosher/kosher220_pva_0.6.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_pva_0.8.inst.cfg b/resources/variants/kosher/kosher220_pva_0.8.inst.cfg index 6f6a9dd6b40..83ea1b57810 100644 --- a/resources/variants/kosher/kosher220_pva_0.8.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/leapfrog/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg b/resources/variants/leapfrog/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg index 0e498466d1f..df90214208e 100644 --- a/resources/variants/leapfrog/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg +++ b/resources/variants/leapfrog/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/leapfrog/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg b/resources/variants/leapfrog/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg index 5b6b78faaed..0b8d012a9e7 100644 --- a/resources/variants/leapfrog/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg +++ b/resources/variants/leapfrog/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/liquid/liquid_vo04.inst.cfg b/resources/variants/liquid/liquid_vo04.inst.cfg index b6a2166d9c9..684f763c770 100644 --- a/resources/variants/liquid/liquid_vo04.inst.cfg +++ b/resources/variants/liquid/liquid_vo04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/liquid/liquid_vo06.inst.cfg b/resources/variants/liquid/liquid_vo06.inst.cfg index 19039b3c78f..318ded18614 100644 --- a/resources/variants/liquid/liquid_vo06.inst.cfg +++ b/resources/variants/liquid/liquid_vo06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/liquid/liquid_vo08.inst.cfg b/resources/variants/liquid/liquid_vo08.inst.cfg index 58cbea1b9db..f6c3e346e97 100644 --- a/resources/variants/liquid/liquid_vo08.inst.cfg +++ b/resources/variants/liquid/liquid_vo08.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_0.2.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_0.2.inst.cfg index 0cafffacc74..e30e219078d 100644 --- a/resources/variants/lnl3d/lnl3d_d3_0.2.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_0.4.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_0.4.inst.cfg index 146aff28dbc..a405b36c2f1 100644 --- a/resources/variants/lnl3d/lnl3d_d3_0.4.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_0.6.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_0.6.inst.cfg index d6e273309de..80bf9215ec6 100644 --- a/resources/variants/lnl3d/lnl3d_d3_0.6.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_0.8.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_0.8.inst.cfg index 238c9bde559..b14753a6152 100644 --- a/resources/variants/lnl3d/lnl3d_d3_0.8.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.2.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.2.inst.cfg index a8f05aa01ba..bffc9144859 100644 --- a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.2.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.4.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.4.inst.cfg index e7c7124d857..7bcab41a1ca 100644 --- a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.4.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.6.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.6.inst.cfg index aee1c069f82..6fc8d120c2e 100644 --- a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.6.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.8.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.8.inst.cfg index a383d94a152..ef8bd0cda87 100644 --- a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.8.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d5_0.2.inst.cfg b/resources/variants/lnl3d/lnl3d_d5_0.2.inst.cfg index 059dbe1656b..35dedaae3c0 100644 --- a/resources/variants/lnl3d/lnl3d_d5_0.2.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d5_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d5_0.4.inst.cfg b/resources/variants/lnl3d/lnl3d_d5_0.4.inst.cfg index d50c897d369..9dce1e88c85 100644 --- a/resources/variants/lnl3d/lnl3d_d5_0.4.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d5_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d5_0.6.inst.cfg b/resources/variants/lnl3d/lnl3d_d5_0.6.inst.cfg index 0d9fe1fd117..e4a79bb457c 100644 --- a/resources/variants/lnl3d/lnl3d_d5_0.6.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d5_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d5_0.8.inst.cfg b/resources/variants/lnl3d/lnl3d_d5_0.8.inst.cfg index 67a3cac7210..9a2eaa51d22 100644 --- a/resources/variants/lnl3d/lnl3d_d5_0.8.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d5_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d6_0.2.inst.cfg b/resources/variants/lnl3d/lnl3d_d6_0.2.inst.cfg index c81cbbe277c..d6f8a1aa37c 100644 --- a/resources/variants/lnl3d/lnl3d_d6_0.2.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d6_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d6_0.4.inst.cfg b/resources/variants/lnl3d/lnl3d_d6_0.4.inst.cfg index cd8e2485ea9..0c78cf88faf 100644 --- a/resources/variants/lnl3d/lnl3d_d6_0.4.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d6_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d6_0.6.inst.cfg b/resources/variants/lnl3d/lnl3d_d6_0.6.inst.cfg index 7b627bd768f..023e077f167 100644 --- a/resources/variants/lnl3d/lnl3d_d6_0.6.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d6_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d6_0.8.inst.cfg b/resources/variants/lnl3d/lnl3d_d6_0.8.inst.cfg index 4345b950a54..187a2891b96 100644 --- a/resources/variants/lnl3d/lnl3d_d6_0.8.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d6_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/longer/longer_base_0.4.inst.cfg b/resources/variants/longer/longer_base_0.4.inst.cfg index d024b576e34..33d9f1dd4b2 100644 --- a/resources/variants/longer/longer_base_0.4.inst.cfg +++ b/resources/variants/longer/longer_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/longer/longer_cube2_0.4.inst.cfg b/resources/variants/longer/longer_cube2_0.4.inst.cfg index 6c2af6a0f34..38ad1f1ddc1 100644 --- a/resources/variants/longer/longer_cube2_0.4.inst.cfg +++ b/resources/variants/longer/longer_cube2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/longer/longer_lk1_0.4.inst.cfg b/resources/variants/longer/longer_lk1_0.4.inst.cfg index 7743e4c9cbe..4ed47af8702 100644 --- a/resources/variants/longer/longer_lk1_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/longer/longer_lk1plus_0.4.inst.cfg b/resources/variants/longer/longer_lk1plus_0.4.inst.cfg index b19e2fd0962..a84646565db 100644 --- a/resources/variants/longer/longer_lk1plus_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk1plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/longer/longer_lk1pro_0.4.inst.cfg b/resources/variants/longer/longer_lk1pro_0.4.inst.cfg index be0e81f22a2..5f00991b40a 100644 --- a/resources/variants/longer/longer_lk1pro_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk1pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/longer/longer_lk4_0.4.inst.cfg b/resources/variants/longer/longer_lk4_0.4.inst.cfg index d5cba95d684..e7ac3ea123c 100644 --- a/resources/variants/longer/longer_lk4_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk4_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/longer/longer_lk4pro_0.4.inst.cfg b/resources/variants/longer/longer_lk4pro_0.4.inst.cfg index b68012fe195..89bd3df55e3 100644 --- a/resources/variants/longer/longer_lk4pro_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk4pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/longer/longer_lk4x_0.4.inst.cfg b/resources/variants/longer/longer_lk4x_0.4.inst.cfg index 839df818c46..c8f5cd4dbf4 100644 --- a/resources/variants/longer/longer_lk4x_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk4x_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/longer/longer_lk5_0.4.inst.cfg b/resources/variants/longer/longer_lk5_0.4.inst.cfg index b34e18ae048..22b3e76ab0c 100644 --- a/resources/variants/longer/longer_lk5_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk5_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/longer/longer_lk5pro_0.4.inst.cfg b/resources/variants/longer/longer_lk5pro_0.4.inst.cfg index 5416c7a8107..f6dfd5e62c7 100644 --- a/resources/variants/longer/longer_lk5pro_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk5pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mark2/Mark2_for_Ultimaker2_0.25.inst.cfg b/resources/variants/mark2/Mark2_for_Ultimaker2_0.25.inst.cfg index 2ce7a6d1a34..8dec02c1012 100644 --- a/resources/variants/mark2/Mark2_for_Ultimaker2_0.25.inst.cfg +++ b/resources/variants/mark2/Mark2_for_Ultimaker2_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mark2/Mark2_for_Ultimaker2_0.4.inst.cfg b/resources/variants/mark2/Mark2_for_Ultimaker2_0.4.inst.cfg index e7847ad492d..1553f9338d0 100644 --- a/resources/variants/mark2/Mark2_for_Ultimaker2_0.4.inst.cfg +++ b/resources/variants/mark2/Mark2_for_Ultimaker2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mark2/Mark2_for_Ultimaker2_0.6.inst.cfg b/resources/variants/mark2/Mark2_for_Ultimaker2_0.6.inst.cfg index c8631a6be30..7f9792a7528 100644 --- a/resources/variants/mark2/Mark2_for_Ultimaker2_0.6.inst.cfg +++ b/resources/variants/mark2/Mark2_for_Ultimaker2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mark2/Mark2_for_Ultimaker2_0.8.inst.cfg b/resources/variants/mark2/Mark2_for_Ultimaker2_0.8.inst.cfg index df41a39ab10..76df0108565 100644 --- a/resources/variants/mark2/Mark2_for_Ultimaker2_0.8.inst.cfg +++ b/resources/variants/mark2/Mark2_for_Ultimaker2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.2.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.2.inst.cfg index 9fedbdcd4ed..1e76c76b36a 100644 --- a/resources/variants/mingda/mingda_1000pro_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.3.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.3.inst.cfg index 2f80c7df75a..e8c15d58d68 100644 --- a/resources/variants/mingda/mingda_1000pro_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.4.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.4.inst.cfg index 9a065336fd8..c94caecd4af 100644 --- a/resources/variants/mingda/mingda_1000pro_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.5.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.5.inst.cfg index e84f7d89f91..d2e0591d39d 100644 --- a/resources/variants/mingda/mingda_1000pro_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.6.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.6.inst.cfg index b40a27f68c1..5259e59ca49 100644 --- a/resources/variants/mingda/mingda_1000pro_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.8.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.8.inst.cfg index 937bcb14489..e821bcf124b 100644 --- a/resources/variants/mingda/mingda_1000pro_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_1.0.inst.cfg b/resources/variants/mingda/mingda_1000pro_1.0.inst.cfg index f731d6d0514..1e35828ec9d 100644 --- a/resources/variants/mingda/mingda_1000pro_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.2.inst.cfg b/resources/variants/mingda/mingda_4h_0.2.inst.cfg index 75f5d1d79c9..b39905c685e 100644 --- a/resources/variants/mingda/mingda_4h_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.3.inst.cfg b/resources/variants/mingda/mingda_4h_0.3.inst.cfg index cb4e88ff8ff..ad6d817f5b5 100644 --- a/resources/variants/mingda/mingda_4h_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.4.inst.cfg b/resources/variants/mingda/mingda_4h_0.4.inst.cfg index 5db585bfcc2..c7207e9e724 100644 --- a/resources/variants/mingda/mingda_4h_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.5.inst.cfg b/resources/variants/mingda/mingda_4h_0.5.inst.cfg index 2bda5e1a22f..994d0c587c2 100644 --- a/resources/variants/mingda/mingda_4h_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.6.inst.cfg b/resources/variants/mingda/mingda_4h_0.6.inst.cfg index 488f88f2c92..a455e254dc0 100644 --- a/resources/variants/mingda/mingda_4h_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.8.inst.cfg b/resources/variants/mingda/mingda_4h_0.8.inst.cfg index bc92392977c..9fcc1051491 100644 --- a/resources/variants/mingda/mingda_4h_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_1.0.inst.cfg b/resources/variants/mingda/mingda_4h_1.0.inst.cfg index 8a7b50a044c..ecff382b36a 100644 --- a/resources/variants/mingda/mingda_4h_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_4h_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.2.inst.cfg b/resources/variants/mingda/mingda_600pro_0.2.inst.cfg index 8cb6baa5603..0990e204141 100644 --- a/resources/variants/mingda/mingda_600pro_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.3.inst.cfg b/resources/variants/mingda/mingda_600pro_0.3.inst.cfg index 51f9e8ab55d..fc41b19424c 100644 --- a/resources/variants/mingda/mingda_600pro_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.4.inst.cfg b/resources/variants/mingda/mingda_600pro_0.4.inst.cfg index 0035577e856..485604b550e 100644 --- a/resources/variants/mingda/mingda_600pro_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.5.inst.cfg b/resources/variants/mingda/mingda_600pro_0.5.inst.cfg index 1041e0d20d7..f0d1a8b4a72 100644 --- a/resources/variants/mingda/mingda_600pro_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.6.inst.cfg b/resources/variants/mingda/mingda_600pro_0.6.inst.cfg index dbc0fd3d71f..a024f70e882 100644 --- a/resources/variants/mingda/mingda_600pro_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.8.inst.cfg b/resources/variants/mingda/mingda_600pro_0.8.inst.cfg index f8c9c71fde3..e8aa2462220 100644 --- a/resources/variants/mingda/mingda_600pro_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_1.0.inst.cfg b/resources/variants/mingda/mingda_600pro_1.0.inst.cfg index 27b4ffee84c..70fa4471bd1 100644 --- a/resources/variants/mingda/mingda_600pro_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.2.inst.cfg b/resources/variants/mingda/mingda_6h_0.2.inst.cfg index 65b78cecc38..b7d394f037e 100644 --- a/resources/variants/mingda/mingda_6h_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.3.inst.cfg b/resources/variants/mingda/mingda_6h_0.3.inst.cfg index 3e38a46e8e0..2a162da44b7 100644 --- a/resources/variants/mingda/mingda_6h_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.4.inst.cfg b/resources/variants/mingda/mingda_6h_0.4.inst.cfg index cd6d2d2e86d..6bed3473743 100644 --- a/resources/variants/mingda/mingda_6h_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.5.inst.cfg b/resources/variants/mingda/mingda_6h_0.5.inst.cfg index 1c92a90edbf..80d7243cd33 100644 --- a/resources/variants/mingda/mingda_6h_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.6.inst.cfg b/resources/variants/mingda/mingda_6h_0.6.inst.cfg index 081b149f82b..d6333520c52 100644 --- a/resources/variants/mingda/mingda_6h_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.8.inst.cfg b/resources/variants/mingda/mingda_6h_0.8.inst.cfg index 55e19ddf14f..0c776ca48fc 100644 --- a/resources/variants/mingda/mingda_6h_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_1.0.inst.cfg b/resources/variants/mingda/mingda_6h_1.0.inst.cfg index 0767b232fbe..c19a0113df3 100644 --- a/resources/variants/mingda/mingda_6h_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_6h_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_0.2.inst.cfg b/resources/variants/mingda/mingda_base_0.2.inst.cfg index 0648b25eda7..ecf6c85f7a3 100644 --- a/resources/variants/mingda/mingda_base_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_0.3.inst.cfg b/resources/variants/mingda/mingda_base_0.3.inst.cfg index 9864095aebf..4ad14e631b9 100644 --- a/resources/variants/mingda/mingda_base_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_0.4.inst.cfg b/resources/variants/mingda/mingda_base_0.4.inst.cfg index a65958f2dfe..7819e22a0ca 100644 --- a/resources/variants/mingda/mingda_base_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_0.6.inst.cfg b/resources/variants/mingda/mingda_base_0.6.inst.cfg index f50df518bf0..458f415aa60 100644 --- a/resources/variants/mingda/mingda_base_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_0.8.inst.cfg b/resources/variants/mingda/mingda_base_0.8.inst.cfg index 360cf533c55..d477a9f1699 100644 --- a/resources/variants/mingda/mingda_base_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_1.0.inst.cfg b/resources/variants/mingda/mingda_base_1.0.inst.cfg index 559410315c8..4f4415b48f1 100644 --- a/resources/variants/mingda/mingda_base_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.2.inst.cfg b/resources/variants/mingda/mingda_d2_0.2.inst.cfg index 5d799a609cc..d5affb8e539 100644 --- a/resources/variants/mingda/mingda_d2_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.3.inst.cfg b/resources/variants/mingda/mingda_d2_0.3.inst.cfg index 8743b0469c5..d1c5787a322 100644 --- a/resources/variants/mingda/mingda_d2_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.4.inst.cfg b/resources/variants/mingda/mingda_d2_0.4.inst.cfg index 8f4c2f1a446..a93871b21c7 100644 --- a/resources/variants/mingda/mingda_d2_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.5.inst.cfg b/resources/variants/mingda/mingda_d2_0.5.inst.cfg index b9bb2d683a7..b1cac2e520a 100644 --- a/resources/variants/mingda/mingda_d2_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.6.inst.cfg b/resources/variants/mingda/mingda_d2_0.6.inst.cfg index b9b009e80c8..fb12d1eea9e 100644 --- a/resources/variants/mingda/mingda_d2_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.8.inst.cfg b/resources/variants/mingda/mingda_d2_0.8.inst.cfg index cf92b6cd2b7..d5615fd39ae 100644 --- a/resources/variants/mingda/mingda_d2_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_1.0.inst.cfg b/resources/variants/mingda/mingda_d2_1.0.inst.cfg index e37c306bc71..0fc96e5c064 100644 --- a/resources/variants/mingda/mingda_d2_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_d2_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.2.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.2.inst.cfg index 8e399533a3e..7f7853c0476 100644 --- a/resources/variants/mingda/mingda_d3pro_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.3.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.3.inst.cfg index 7be7d69a37f..f51c153ac6e 100644 --- a/resources/variants/mingda/mingda_d3pro_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.4.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.4.inst.cfg index a4141ea0d10..3b78e26d93b 100644 --- a/resources/variants/mingda/mingda_d3pro_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.5.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.5.inst.cfg index 44fb6f5afef..819d3651dfb 100644 --- a/resources/variants/mingda/mingda_d3pro_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.6.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.6.inst.cfg index 3e22aa033d3..b6ceb3d219c 100644 --- a/resources/variants/mingda/mingda_d3pro_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.8.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.8.inst.cfg index f426af89e5b..5a1796de7ea 100644 --- a/resources/variants/mingda/mingda_d3pro_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_1.0.inst.cfg b/resources/variants/mingda/mingda_d3pro_1.0.inst.cfg index 596418b7dfb..331e3c320b3 100644 --- a/resources/variants/mingda/mingda_d3pro_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.2.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.2.inst.cfg index b0578e5b48e..44f8f26bb79 100644 --- a/resources/variants/mingda/mingda_d4pro_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.3.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.3.inst.cfg index 9ae9d8878ac..43f510e304b 100644 --- a/resources/variants/mingda/mingda_d4pro_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.4.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.4.inst.cfg index 8c57a7aca61..50593d35e89 100644 --- a/resources/variants/mingda/mingda_d4pro_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.5.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.5.inst.cfg index 4ec36f2c5df..3727fb8c907 100644 --- a/resources/variants/mingda/mingda_d4pro_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.6.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.6.inst.cfg index 934329e29bf..e4dbd96907b 100644 --- a/resources/variants/mingda/mingda_d4pro_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.8.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.8.inst.cfg index 492fb69ce6a..8010b5cd712 100644 --- a/resources/variants/mingda/mingda_d4pro_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_1.0.inst.cfg b/resources/variants/mingda/mingda_d4pro_1.0.inst.cfg index b3cf883b0fc..8ab02e4b730 100644 --- a/resources/variants/mingda/mingda_d4pro_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.2.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.2.inst.cfg index 4fda39ef436..dc6281101d8 100644 --- a/resources/variants/mingda/mingda_magician_max_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.3.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.3.inst.cfg index 0aeacb4707d..27a268c2ce1 100644 --- a/resources/variants/mingda/mingda_magician_max_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.4.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.4.inst.cfg index bef2a46d78a..3d37b97f892 100644 --- a/resources/variants/mingda/mingda_magician_max_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.5.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.5.inst.cfg index cf9b29ab368..1b72c3ebe5d 100644 --- a/resources/variants/mingda/mingda_magician_max_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.6.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.6.inst.cfg index 37e46faec17..7808993454e 100644 --- a/resources/variants/mingda/mingda_magician_max_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.8.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.8.inst.cfg index 15685a39032..0d7f764ad79 100644 --- a/resources/variants/mingda/mingda_magician_max_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_1.0.inst.cfg b/resources/variants/mingda/mingda_magician_max_1.0.inst.cfg index bcd8277a499..11ef656d499 100644 --- a/resources/variants/mingda/mingda_magician_max_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.2.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.2.inst.cfg index c0531cc8527..d7ed29ccccf 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.3.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.3.inst.cfg index 6199ccfdc9a..07d83ef87fe 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.4.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.4.inst.cfg index 43b7ff34e6a..c4fc96a6ee8 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.5.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.5.inst.cfg index 0306b328636..62eb622e30e 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.6.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.6.inst.cfg index 6cf09ed8fe8..d2efcf7a548 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.8.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.8.inst.cfg index 319514c395a..1f790ea81b0 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_1.0.inst.cfg b/resources/variants/mingda/mingda_magician_pro_1.0.inst.cfg index cdd044af5c5..96784fcc423 100644 --- a/resources/variants/mingda/mingda_magician_pro_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.2.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.2.inst.cfg index 18e659950be..9b225512fdf 100644 --- a/resources/variants/mingda/mingda_magician_x_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.3.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.3.inst.cfg index a08f4aae645..e82d82deed7 100644 --- a/resources/variants/mingda/mingda_magician_x_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.4.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.4.inst.cfg index ee626d27c3d..3efa1acda7c 100644 --- a/resources/variants/mingda/mingda_magician_x_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.5.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.5.inst.cfg index a3c51043d52..141ec15e98e 100644 --- a/resources/variants/mingda/mingda_magician_x_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.6.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.6.inst.cfg index 283c1291714..6fbac0e0ece 100644 --- a/resources/variants/mingda/mingda_magician_x_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.8.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.8.inst.cfg index dede9bdcd89..7592d1b7e09 100644 --- a/resources/variants/mingda/mingda_magician_x_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_1.0.inst.cfg b/resources/variants/mingda/mingda_magician_x_1.0.inst.cfg index 69b8b21bea7..a6aac74b09d 100644 --- a/resources/variants/mingda/mingda_magician_x_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.2.inst.cfg b/resources/variants/mingda/mingda_rock3_0.2.inst.cfg index 468981aaadf..77dbeccb886 100644 --- a/resources/variants/mingda/mingda_rock3_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.3.inst.cfg b/resources/variants/mingda/mingda_rock3_0.3.inst.cfg index aaaad835767..6ff94a3e13b 100644 --- a/resources/variants/mingda/mingda_rock3_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.4.inst.cfg b/resources/variants/mingda/mingda_rock3_0.4.inst.cfg index c476451a989..6f4ad9490a1 100644 --- a/resources/variants/mingda/mingda_rock3_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.5.inst.cfg b/resources/variants/mingda/mingda_rock3_0.5.inst.cfg index a759c5471ab..41803b28847 100644 --- a/resources/variants/mingda/mingda_rock3_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.6.inst.cfg b/resources/variants/mingda/mingda_rock3_0.6.inst.cfg index fa03c399cf8..cbd52b2814a 100644 --- a/resources/variants/mingda/mingda_rock3_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.8.inst.cfg b/resources/variants/mingda/mingda_rock3_0.8.inst.cfg index 79083181cd7..9fb0b2b199c 100644 --- a/resources/variants/mingda/mingda_rock3_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_1.0.inst.cfg b/resources/variants/mingda/mingda_rock3_1.0.inst.cfg index 0c9f1ba2a29..e8f7d626726 100644 --- a/resources/variants/mingda/mingda_rock3_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_0.4.inst.cfg b/resources/variants/modix/modix_v3_base_0.4.inst.cfg index cb017ace963..a5f23659c78 100644 --- a/resources/variants/modix/modix_v3_base_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_0.6.inst.cfg b/resources/variants/modix/modix_v3_base_0.6.inst.cfg index 649d953823e..ec1144d4b1c 100644 --- a/resources/variants/modix/modix_v3_base_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_0.8.inst.cfg b/resources/variants/modix/modix_v3_base_0.8.inst.cfg index 5c0008601b3..b1074fc87b5 100644 --- a/resources/variants/modix/modix_v3_base_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_1.0.inst.cfg b/resources/variants/modix/modix_v3_base_1.0.inst.cfg index 272242aa7d4..bd4ffc1d0ec 100644 --- a/resources/variants/modix/modix_v3_base_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_1.2.inst.cfg b/resources/variants/modix/modix_v3_base_1.2.inst.cfg index 53ebdd056dc..08371bbe608 100644 --- a/resources/variants/modix/modix_v3_base_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_base_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_1.4.inst.cfg b/resources/variants/modix/modix_v3_base_1.4.inst.cfg index cfd9bdfd958..e9fa4ae5fcd 100644 --- a/resources/variants/modix/modix_v3_base_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_base_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_0.4.inst.cfg b/resources/variants/modix/modix_v3_big120X_0.4.inst.cfg index de4f6f39aab..93c61e90af2 100644 --- a/resources/variants/modix/modix_v3_big120X_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_0.6.inst.cfg b/resources/variants/modix/modix_v3_big120X_0.6.inst.cfg index 07dc1b5d1a3..3b77f922638 100644 --- a/resources/variants/modix/modix_v3_big120X_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_0.8.inst.cfg b/resources/variants/modix/modix_v3_big120X_0.8.inst.cfg index 84479b17f5f..ed33a502936 100644 --- a/resources/variants/modix/modix_v3_big120X_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_1.0.inst.cfg b/resources/variants/modix/modix_v3_big120X_1.0.inst.cfg index 1e47572d40b..31a29baaaa6 100644 --- a/resources/variants/modix/modix_v3_big120X_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_1.2.inst.cfg b/resources/variants/modix/modix_v3_big120X_1.2.inst.cfg index 642c348886b..67239ec5e89 100644 --- a/resources/variants/modix/modix_v3_big120X_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_1.4.inst.cfg b/resources/variants/modix/modix_v3_big120X_1.4.inst.cfg index cec17a4aa86..093d6b23673 100644 --- a/resources/variants/modix/modix_v3_big120X_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_0.4.inst.cfg b/resources/variants/modix/modix_v3_big120Z_0.4.inst.cfg index c0f50e57edf..e4094352be9 100644 --- a/resources/variants/modix/modix_v3_big120Z_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_0.6.inst.cfg b/resources/variants/modix/modix_v3_big120Z_0.6.inst.cfg index 06fb3b0f02f..19fdc4d8a20 100644 --- a/resources/variants/modix/modix_v3_big120Z_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_0.8.inst.cfg b/resources/variants/modix/modix_v3_big120Z_0.8.inst.cfg index ef87979b9f2..54a1d3f6d7d 100644 --- a/resources/variants/modix/modix_v3_big120Z_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_1.0.inst.cfg b/resources/variants/modix/modix_v3_big120Z_1.0.inst.cfg index 2f94e456cf2..1c11bb230c3 100644 --- a/resources/variants/modix/modix_v3_big120Z_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_1.2.inst.cfg b/resources/variants/modix/modix_v3_big120Z_1.2.inst.cfg index 113efb86102..e841cc98410 100644 --- a/resources/variants/modix/modix_v3_big120Z_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_1.4.inst.cfg b/resources/variants/modix/modix_v3_big120Z_1.4.inst.cfg index e6e6b6095de..522c6bddd57 100644 --- a/resources/variants/modix/modix_v3_big120Z_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_0.4.inst.cfg b/resources/variants/modix/modix_v3_big180X_0.4.inst.cfg index 0a1957e0e9f..9cc8cc91159 100644 --- a/resources/variants/modix/modix_v3_big180X_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_0.6.inst.cfg b/resources/variants/modix/modix_v3_big180X_0.6.inst.cfg index 85f48319d28..64538b559ac 100644 --- a/resources/variants/modix/modix_v3_big180X_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_0.8.inst.cfg b/resources/variants/modix/modix_v3_big180X_0.8.inst.cfg index e191ca93987..4961c0e72d5 100644 --- a/resources/variants/modix/modix_v3_big180X_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_1.0.inst.cfg b/resources/variants/modix/modix_v3_big180X_1.0.inst.cfg index d525a6ad832..dfec34fff20 100644 --- a/resources/variants/modix/modix_v3_big180X_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_1.2.inst.cfg b/resources/variants/modix/modix_v3_big180X_1.2.inst.cfg index 25f248964f5..8b97f86daf7 100644 --- a/resources/variants/modix/modix_v3_big180X_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_1.4.inst.cfg b/resources/variants/modix/modix_v3_big180X_1.4.inst.cfg index af6f22f9c36..b4c7ac89985 100644 --- a/resources/variants/modix/modix_v3_big180X_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_0.4.inst.cfg b/resources/variants/modix/modix_v3_big40_0.4.inst.cfg index 6de9e192572..7f610622eba 100644 --- a/resources/variants/modix/modix_v3_big40_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_0.6.inst.cfg b/resources/variants/modix/modix_v3_big40_0.6.inst.cfg index 2e838b6f611..86778410ab5 100644 --- a/resources/variants/modix/modix_v3_big40_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_0.8.inst.cfg b/resources/variants/modix/modix_v3_big40_0.8.inst.cfg index 1d3eb15e01b..08b13addbac 100644 --- a/resources/variants/modix/modix_v3_big40_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_1.0.inst.cfg b/resources/variants/modix/modix_v3_big40_1.0.inst.cfg index bd35c7a25c3..3b717733719 100644 --- a/resources/variants/modix/modix_v3_big40_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_1.2.inst.cfg b/resources/variants/modix/modix_v3_big40_1.2.inst.cfg index 1f95020a3ce..dd844eaad84 100644 --- a/resources/variants/modix/modix_v3_big40_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_1.4.inst.cfg b/resources/variants/modix/modix_v3_big40_1.4.inst.cfg index 7694865f216..9ebc22a2725 100644 --- a/resources/variants/modix/modix_v3_big40_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_0.4.inst.cfg b/resources/variants/modix/modix_v3_big60_0.4.inst.cfg index 513942ae114..2dc9247c3cc 100644 --- a/resources/variants/modix/modix_v3_big60_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_0.6.inst.cfg b/resources/variants/modix/modix_v3_big60_0.6.inst.cfg index 0ffce3eff8f..9b10cbf5ea3 100644 --- a/resources/variants/modix/modix_v3_big60_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_0.8.inst.cfg b/resources/variants/modix/modix_v3_big60_0.8.inst.cfg index 6c06692a931..bbdc550ae95 100644 --- a/resources/variants/modix/modix_v3_big60_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_1.0.inst.cfg b/resources/variants/modix/modix_v3_big60_1.0.inst.cfg index 564703d1143..a40f3641e6d 100644 --- a/resources/variants/modix/modix_v3_big60_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_1.2.inst.cfg b/resources/variants/modix/modix_v3_big60_1.2.inst.cfg index 60cedbe3ded..5d625d132e7 100644 --- a/resources/variants/modix/modix_v3_big60_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_1.4.inst.cfg b/resources/variants/modix/modix_v3_big60_1.4.inst.cfg index e34222a3db5..24e54939a5e 100644 --- a/resources/variants/modix/modix_v3_big60_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_0.4.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_0.4.inst.cfg index 426adc3082e..5f6eade7485 100644 --- a/resources/variants/modix/modix_v3_bigmeter_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_0.6.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_0.6.inst.cfg index 55c62d85b8a..f91a2591ecc 100644 --- a/resources/variants/modix/modix_v3_bigmeter_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_0.8.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_0.8.inst.cfg index fb8389e1e27..af13575ebba 100644 --- a/resources/variants/modix/modix_v3_bigmeter_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_1.0.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_1.0.inst.cfg index 61ef19159ba..e623a4ad3a2 100644 --- a/resources/variants/modix/modix_v3_bigmeter_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_1.2.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_1.2.inst.cfg index 710f713918c..4d0db841386 100644 --- a/resources/variants/modix/modix_v3_bigmeter_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_1.4.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_1.4.inst.cfg index 37b12893b50..dc5374c87c1 100644 --- a/resources/variants/modix/modix_v3_bigmeter_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_0.4.inst.cfg b/resources/variants/modix/modix_v4_base_0.4.inst.cfg index 41dbef049a0..968712e72e4 100644 --- a/resources/variants/modix/modix_v4_base_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_0.6.inst.cfg b/resources/variants/modix/modix_v4_base_0.6.inst.cfg index 854259e4e1f..f83f4e23a46 100644 --- a/resources/variants/modix/modix_v4_base_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_0.8.inst.cfg b/resources/variants/modix/modix_v4_base_0.8.inst.cfg index b20cd0f3ce8..ad87dfa4cc7 100644 --- a/resources/variants/modix/modix_v4_base_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_1.0.inst.cfg b/resources/variants/modix/modix_v4_base_1.0.inst.cfg index 49281a641f9..fdc01c05e6b 100644 --- a/resources/variants/modix/modix_v4_base_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_1.2.inst.cfg b/resources/variants/modix/modix_v4_base_1.2.inst.cfg index e9f38e4bcc3..a72ca947796 100644 --- a/resources/variants/modix/modix_v4_base_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_base_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_1.4.inst.cfg b/resources/variants/modix/modix_v4_base_1.4.inst.cfg index 156ad718016..62967ea303d 100644 --- a/resources/variants/modix/modix_v4_base_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_base_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_0.4.inst.cfg b/resources/variants/modix/modix_v4_big120X_0.4.inst.cfg index 4a1edc2e9aa..9b3b9b5024c 100644 --- a/resources/variants/modix/modix_v4_big120X_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_0.6.inst.cfg b/resources/variants/modix/modix_v4_big120X_0.6.inst.cfg index 502ec9d80b9..6046383104a 100644 --- a/resources/variants/modix/modix_v4_big120X_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_0.8.inst.cfg b/resources/variants/modix/modix_v4_big120X_0.8.inst.cfg index e32506f020c..d7cc3a4cdfd 100644 --- a/resources/variants/modix/modix_v4_big120X_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_1.0.inst.cfg b/resources/variants/modix/modix_v4_big120X_1.0.inst.cfg index 8014e1af367..963e9f8ac73 100644 --- a/resources/variants/modix/modix_v4_big120X_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_1.2.inst.cfg b/resources/variants/modix/modix_v4_big120X_1.2.inst.cfg index 63b898164c5..7e84bd034d7 100644 --- a/resources/variants/modix/modix_v4_big120X_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_1.4.inst.cfg b/resources/variants/modix/modix_v4_big120X_1.4.inst.cfg index a99530b13ae..73d57eedfab 100644 --- a/resources/variants/modix/modix_v4_big120X_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_0.4.inst.cfg b/resources/variants/modix/modix_v4_big120Z_0.4.inst.cfg index 8527d717a74..1c6672972c6 100644 --- a/resources/variants/modix/modix_v4_big120Z_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_0.6.inst.cfg b/resources/variants/modix/modix_v4_big120Z_0.6.inst.cfg index 8796b02d5e9..6f0d1c42ae1 100644 --- a/resources/variants/modix/modix_v4_big120Z_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_0.8.inst.cfg b/resources/variants/modix/modix_v4_big120Z_0.8.inst.cfg index 58a1a485669..36d79c6509f 100644 --- a/resources/variants/modix/modix_v4_big120Z_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_1.0.inst.cfg b/resources/variants/modix/modix_v4_big120Z_1.0.inst.cfg index 884f21be349..6a6a9de9bf9 100644 --- a/resources/variants/modix/modix_v4_big120Z_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_1.2.inst.cfg b/resources/variants/modix/modix_v4_big120Z_1.2.inst.cfg index d880f3ae96c..64955ea44f3 100644 --- a/resources/variants/modix/modix_v4_big120Z_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_1.4.inst.cfg b/resources/variants/modix/modix_v4_big120Z_1.4.inst.cfg index 5852ce2f760..8b9f425894e 100644 --- a/resources/variants/modix/modix_v4_big120Z_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_0.4.inst.cfg b/resources/variants/modix/modix_v4_big180X_0.4.inst.cfg index 3f10dc14ddb..64086a3a2b4 100644 --- a/resources/variants/modix/modix_v4_big180X_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_0.6.inst.cfg b/resources/variants/modix/modix_v4_big180X_0.6.inst.cfg index 4c0c019f721..5240e890859 100644 --- a/resources/variants/modix/modix_v4_big180X_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_0.8.inst.cfg b/resources/variants/modix/modix_v4_big180X_0.8.inst.cfg index 721629f3889..71d1f66537e 100644 --- a/resources/variants/modix/modix_v4_big180X_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_1.0.inst.cfg b/resources/variants/modix/modix_v4_big180X_1.0.inst.cfg index c8071626d88..5b69f2036c2 100644 --- a/resources/variants/modix/modix_v4_big180X_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_1.2.inst.cfg b/resources/variants/modix/modix_v4_big180X_1.2.inst.cfg index 86b37a4d4a4..f5d5004a373 100644 --- a/resources/variants/modix/modix_v4_big180X_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_1.4.inst.cfg b/resources/variants/modix/modix_v4_big180X_1.4.inst.cfg index dbb6dc9004c..5fee5b3ee9a 100644 --- a/resources/variants/modix/modix_v4_big180X_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_0.4.inst.cfg b/resources/variants/modix/modix_v4_big60_0.4.inst.cfg index 9a7c1b2c1f7..a04deb4f411 100644 --- a/resources/variants/modix/modix_v4_big60_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_0.6.inst.cfg b/resources/variants/modix/modix_v4_big60_0.6.inst.cfg index e0a946bb6a2..07ab30b98de 100644 --- a/resources/variants/modix/modix_v4_big60_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_0.8.inst.cfg b/resources/variants/modix/modix_v4_big60_0.8.inst.cfg index 4491035dd92..1d0c073349c 100644 --- a/resources/variants/modix/modix_v4_big60_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_1.0.inst.cfg b/resources/variants/modix/modix_v4_big60_1.0.inst.cfg index 1d5ca3e4489..540a57a2cad 100644 --- a/resources/variants/modix/modix_v4_big60_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_1.2.inst.cfg b/resources/variants/modix/modix_v4_big60_1.2.inst.cfg index e2d630a8c45..051131ac0ac 100644 --- a/resources/variants/modix/modix_v4_big60_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_1.4.inst.cfg b/resources/variants/modix/modix_v4_big60_1.4.inst.cfg index 1fd7f0bd4c4..c109c6e8eed 100644 --- a/resources/variants/modix/modix_v4_big60_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_0.4.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_0.4.inst.cfg index ed406c9ad72..1c132afabdc 100644 --- a/resources/variants/modix/modix_v4_bigmeter_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_0.6.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_0.6.inst.cfg index f0b40510d71..8258617bf81 100644 --- a/resources/variants/modix/modix_v4_bigmeter_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_0.8.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_0.8.inst.cfg index d69e9964bf8..1db24a8191e 100644 --- a/resources/variants/modix/modix_v4_bigmeter_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_1.0.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_1.0.inst.cfg index 814e94fb882..9cb4c333f1f 100644 --- a/resources/variants/modix/modix_v4_bigmeter_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_1.2.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_1.2.inst.cfg index 5d783782752..54ffc66c2b2 100644 --- a/resources/variants/modix/modix_v4_bigmeter_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_1.4.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_1.4.inst.cfg index 570c683c817..5cb242da14d 100644 --- a/resources/variants/modix/modix_v4_bigmeter_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/multicomp/multicomp_mcpi200_0.2.inst.cfg b/resources/variants/multicomp/multicomp_mcpi200_0.2.inst.cfg index eb96860dcb8..9164f9ea781 100644 --- a/resources/variants/multicomp/multicomp_mcpi200_0.2.inst.cfg +++ b/resources/variants/multicomp/multicomp_mcpi200_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/multicomp/multicomp_mcpi200_0.4.inst.cfg b/resources/variants/multicomp/multicomp_mcpi200_0.4.inst.cfg index b84fee233ed..e07fbeee220 100644 --- a/resources/variants/multicomp/multicomp_mcpi200_0.4.inst.cfg +++ b/resources/variants/multicomp/multicomp_mcpi200_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/multicomp/multicomp_mcpi200_0.6.inst.cfg b/resources/variants/multicomp/multicomp_mcpi200_0.6.inst.cfg index b9f32820640..1c3771a1ce2 100644 --- a/resources/variants/multicomp/multicomp_mcpi200_0.6.inst.cfg +++ b/resources/variants/multicomp/multicomp_mcpi200_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/multicomp/multicomp_mcpi200_0.8.inst.cfg b/resources/variants/multicomp/multicomp_mcpi200_0.8.inst.cfg index ca17db8e86b..74f748a20e7 100644 --- a/resources/variants/multicomp/multicomp_mcpi200_0.8.inst.cfg +++ b/resources/variants/multicomp/multicomp_mcpi200_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/multicomp/multicomp_mcpi200_1.0.inst.cfg b/resources/variants/multicomp/multicomp_mcpi200_1.0.inst.cfg index 7f71cd6c190..31e027a18ec 100644 --- a/resources/variants/multicomp/multicomp_mcpi200_1.0.inst.cfg +++ b/resources/variants/multicomp/multicomp_mcpi200_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/nwa3d/nwa3d_a31_04.inst.cfg b/resources/variants/nwa3d/nwa3d_a31_04.inst.cfg index 71595314b63..c46b934fb15 100644 --- a/resources/variants/nwa3d/nwa3d_a31_04.inst.cfg +++ b/resources/variants/nwa3d/nwa3d_a31_04.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = DragonJe hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/nwa3d/nwa3d_a31_06.inst.cfg b/resources/variants/nwa3d/nwa3d_a31_06.inst.cfg index ceaec2b6e16..3c31742b451 100644 --- a/resources/variants/nwa3d/nwa3d_a31_06.inst.cfg +++ b/resources/variants/nwa3d/nwa3d_a31_06.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = DragonJe hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_base_0.2.inst.cfg b/resources/variants/ratrig/ratrig_base_0.2.inst.cfg index bb337f309ad..553f869f011 100644 --- a/resources/variants/ratrig/ratrig_base_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_base_0.3.inst.cfg b/resources/variants/ratrig/ratrig_base_0.3.inst.cfg index ba4d9f74b9b..7aaabc34770 100644 --- a/resources/variants/ratrig/ratrig_base_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_base_0.4.inst.cfg b/resources/variants/ratrig/ratrig_base_0.4.inst.cfg index e7849987084..1e79ffca331 100644 --- a/resources/variants/ratrig/ratrig_base_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_base_0.6.inst.cfg b/resources/variants/ratrig/ratrig_base_0.6.inst.cfg index da6595ad28a..901033a2efd 100644 --- a/resources/variants/ratrig/ratrig_base_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_base_0.8.inst.cfg b/resources/variants/ratrig/ratrig_base_0.8.inst.cfg index d710879bd0e..59e891f8c15 100644 --- a/resources/variants/ratrig/ratrig_base_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_base_1.0.inst.cfg b/resources/variants/ratrig/ratrig_base_1.0.inst.cfg index 3a8241c15a4..19c37d17687 100644 --- a/resources/variants/ratrig/ratrig_base_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.2.inst.cfg index 495d2ba3a3d..6352cdb6bc1 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.3.inst.cfg index 890d7bf30f9..4a351bd9f45 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.4.inst.cfg index e640ef7adff..3a0200217ff 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.6.inst.cfg index b25e6ee64a5..44df8992219 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.8.inst.cfg index 9462fa77481..a0d8c925983 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_200_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_1.0.inst.cfg index f817ee13a87..0753222b539 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.2.inst.cfg index a39e02aab2a..f4c80c33894 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.3.inst.cfg index a49459aac39..f062f4c7c86 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.4.inst.cfg index e0bf634a2c3..1a67b8c307f 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.6.inst.cfg index c2026ce463f..2eca8c927ac 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.8.inst.cfg index 99d6d7e38b4..1a7ca3c932a 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_300_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_1.0.inst.cfg index 7ad21e8c092..1af12f82cd0 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.2.inst.cfg index bd02a121255..4b6f94ffba9 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.3.inst.cfg index 85a585d692b..c8f002caaa4 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.4.inst.cfg index 0bcee4f0115..baa8fe1efe7 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.6.inst.cfg index 0b7ea7fc2e0..645e14a199f 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.8.inst.cfg index e5baf012f09..48815a88976 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_400_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_1.0.inst.cfg index 4b13608cf1e..dc88ce1850e 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.2.inst.cfg index 3866031f655..cf77712b11c 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.3.inst.cfg index c3dcc2fa25d..80d7a6bbf0d 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.4.inst.cfg index 8c1911df415..0d3801a983f 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.6.inst.cfg index fa9170ee161..fba4902ba20 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.8.inst.cfg index ee71589ca25..f4e761ea367 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_500_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_1.0.inst.cfg index 6e91017f1e3..11de67bfdbc 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vminion_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.2.inst.cfg index 0f9433e1b2d..191326cae95 100644 --- a/resources/variants/ratrig/ratrig_vminion_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vminion_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.3.inst.cfg index 0faf86e4d0f..6e3619f095d 100644 --- a/resources/variants/ratrig/ratrig_vminion_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vminion_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.4.inst.cfg index 0d126748d18..5ea05dfa9b1 100644 --- a/resources/variants/ratrig/ratrig_vminion_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vminion_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.6.inst.cfg index 189218b1515..c2ee92e9442 100644 --- a/resources/variants/ratrig/ratrig_vminion_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vminion_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.8.inst.cfg index e8a6437abdd..a24e0c67233 100644 --- a/resources/variants/ratrig/ratrig_vminion_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vminion_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vminion_1.0.inst.cfg index 9a552948533..fbabf642fef 100644 --- a/resources/variants/ratrig/ratrig_vminion_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_basic3_0.2.inst.cfg b/resources/variants/renkforce/renkforce_basic3_0.2.inst.cfg index 60b83e57e4b..8681f4a8a10 100644 --- a/resources/variants/renkforce/renkforce_basic3_0.2.inst.cfg +++ b/resources/variants/renkforce/renkforce_basic3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_basic3_0.4.inst.cfg b/resources/variants/renkforce/renkforce_basic3_0.4.inst.cfg index 9091a6144c2..c3b364aa416 100644 --- a/resources/variants/renkforce/renkforce_basic3_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_basic3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_basic3_0.6.inst.cfg b/resources/variants/renkforce/renkforce_basic3_0.6.inst.cfg index 9f107a665aa..e1c5ce38c88 100644 --- a/resources/variants/renkforce/renkforce_basic3_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_basic3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_basic3_0.8.inst.cfg b/resources/variants/renkforce/renkforce_basic3_0.8.inst.cfg index f63ca79ed2b..4d5ee05f26d 100644 --- a/resources/variants/renkforce/renkforce_basic3_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_basic3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_basic3_1.0.inst.cfg b/resources/variants/renkforce/renkforce_basic3_1.0.inst.cfg index a8c515229ca..2c9a63fd2f0 100644 --- a/resources/variants/renkforce/renkforce_basic3_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_basic3_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_cubeone_0.7.inst.cfg b/resources/variants/renkforce/renkforce_cubeone_0.7.inst.cfg index 53d4d0a2792..28a7abf81a1 100644 --- a/resources/variants/renkforce/renkforce_cubeone_0.7.inst.cfg +++ b/resources/variants/renkforce/renkforce_cubeone_0.7.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro10plus_0.2.inst.cfg b/resources/variants/renkforce/renkforce_pro10plus_0.2.inst.cfg index e2a36778c66..7af87e50c4f 100644 --- a/resources/variants/renkforce/renkforce_pro10plus_0.2.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro10plus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro10plus_0.4.inst.cfg b/resources/variants/renkforce/renkforce_pro10plus_0.4.inst.cfg index aea6acc5e52..70ca42b4145 100644 --- a/resources/variants/renkforce/renkforce_pro10plus_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro10plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro10plus_0.6.inst.cfg b/resources/variants/renkforce/renkforce_pro10plus_0.6.inst.cfg index 228ea984256..7b253ecf4b7 100644 --- a/resources/variants/renkforce/renkforce_pro10plus_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro10plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro10plus_0.8.inst.cfg b/resources/variants/renkforce/renkforce_pro10plus_0.8.inst.cfg index c7b037a84d4..c4e1a6771e0 100644 --- a/resources/variants/renkforce/renkforce_pro10plus_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro10plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro10plus_1.0.inst.cfg b/resources/variants/renkforce/renkforce_pro10plus_1.0.inst.cfg index 2c1e6194ed6..e0ec053bda9 100644 --- a/resources/variants/renkforce/renkforce_pro10plus_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro10plus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro3_0.2.inst.cfg b/resources/variants/renkforce/renkforce_pro3_0.2.inst.cfg index 21ba3e3fa41..93ba24d86e6 100644 --- a/resources/variants/renkforce/renkforce_pro3_0.2.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro3_0.4.inst.cfg b/resources/variants/renkforce/renkforce_pro3_0.4.inst.cfg index 5b52a0479e3..707b302ed67 100644 --- a/resources/variants/renkforce/renkforce_pro3_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro3_0.6.inst.cfg b/resources/variants/renkforce/renkforce_pro3_0.6.inst.cfg index 89d204ff0bd..26d51c1bf05 100644 --- a/resources/variants/renkforce/renkforce_pro3_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro3_0.8.inst.cfg b/resources/variants/renkforce/renkforce_pro3_0.8.inst.cfg index 37d6d17c560..7d5eada60a8 100644 --- a/resources/variants/renkforce/renkforce_pro3_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro3_1.0.inst.cfg b/resources/variants/renkforce/renkforce_pro3_1.0.inst.cfg index 8ebb971022d..ecb5cb827f5 100644 --- a/resources/variants/renkforce/renkforce_pro3_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro3_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6_0.2.inst.cfg b/resources/variants/renkforce/renkforce_pro6_0.2.inst.cfg index 203cbb5b8d5..871a337348b 100644 --- a/resources/variants/renkforce/renkforce_pro6_0.2.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6_0.4.inst.cfg b/resources/variants/renkforce/renkforce_pro6_0.4.inst.cfg index b71d1b2d841..2c265e3b053 100644 --- a/resources/variants/renkforce/renkforce_pro6_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6_0.6.inst.cfg b/resources/variants/renkforce/renkforce_pro6_0.6.inst.cfg index 6796ef989a0..f1479e81993 100644 --- a/resources/variants/renkforce/renkforce_pro6_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6_0.8.inst.cfg b/resources/variants/renkforce/renkforce_pro6_0.8.inst.cfg index d9114dc05ae..287933123f8 100644 --- a/resources/variants/renkforce/renkforce_pro6_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6_1.0.inst.cfg b/resources/variants/renkforce/renkforce_pro6_1.0.inst.cfg index 83332acfa96..bade0df4bec 100644 --- a/resources/variants/renkforce/renkforce_pro6_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6plus_0.4.inst.cfg b/resources/variants/renkforce/renkforce_pro6plus_0.4.inst.cfg index 5e276f3584e..d8cd4cf3057 100644 --- a/resources/variants/renkforce/renkforce_pro6plus_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6plus_0.6.inst.cfg b/resources/variants/renkforce/renkforce_pro6plus_0.6.inst.cfg index 51b3389ea67..6162c38a7e0 100644 --- a/resources/variants/renkforce/renkforce_pro6plus_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6plus_0.8.inst.cfg b/resources/variants/renkforce/renkforce_pro6plus_0.8.inst.cfg index 7eb129d4d53..e3cde95994b 100644 --- a/resources/variants/renkforce/renkforce_pro6plus_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6plus_1.0.inst.cfg b/resources/variants/renkforce/renkforce_pro6plus_1.0.inst.cfg index 79f9ad7959c..427f6b3c07b 100644 --- a/resources/variants/renkforce/renkforce_pro6plus_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6plus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro7dual_0.2.inst.cfg b/resources/variants/renkforce/renkforce_pro7dual_0.2.inst.cfg index 703fc81fd3b..0972aeccb61 100755 --- a/resources/variants/renkforce/renkforce_pro7dual_0.2.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro7dual_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro7dual_0.4.inst.cfg b/resources/variants/renkforce/renkforce_pro7dual_0.4.inst.cfg index 64a558c3dd6..235a3a45587 100755 --- a/resources/variants/renkforce/renkforce_pro7dual_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro7dual_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro7dual_0.6.inst.cfg b/resources/variants/renkforce/renkforce_pro7dual_0.6.inst.cfg index e3f73d36449..c2af0c2532f 100755 --- a/resources/variants/renkforce/renkforce_pro7dual_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro7dual_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro7dual_0.8.inst.cfg b/resources/variants/renkforce/renkforce_pro7dual_0.8.inst.cfg index 7c060510e33..37c7b58f085 100755 --- a/resources/variants/renkforce/renkforce_pro7dual_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro7dual_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro7dual_1.0.inst.cfg b/resources/variants/renkforce/renkforce_pro7dual_1.0.inst.cfg index 1c9a155153c..b9c1fb3d955 100755 --- a/resources/variants/renkforce/renkforce_pro7dual_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro7dual_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.2.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.2.inst.cfg index cdc699ec08a..95676e994a3 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.3.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.3.inst.cfg index 6d61a4aab8d..7cfc3efc576 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.4.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.4.inst.cfg index 9b9c3448baf..4c49dec4027 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.5.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.5.inst.cfg index 599fdf099db..91bb80628e3 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.6.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.6.inst.cfg index 509e7f20258..9c0e6ecddcc 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.8.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.8.inst.cfg index eb2f8fa9fd4..b078d6089e7 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_1.0.inst.cfg b/resources/variants/sovol/sovol_base_bowden_1.0.inst.cfg index 0eedaad4a1a..40fcf0f5564 100644 --- a/resources/variants/sovol/sovol_base_bowden_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.2.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.2.inst.cfg index cdc699ec08a..95676e994a3 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.3.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.3.inst.cfg index 6d61a4aab8d..7cfc3efc576 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.4.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.4.inst.cfg index 9b9c3448baf..4c49dec4027 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.5.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.5.inst.cfg index 599fdf099db..91bb80628e3 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.6.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.6.inst.cfg index 509e7f20258..9c0e6ecddcc 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.8.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.8.inst.cfg index eb2f8fa9fd4..b078d6089e7 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_1.0.inst.cfg b/resources/variants/sovol/sovol_base_planetary_1.0.inst.cfg index 0eedaad4a1a..40fcf0f5564 100644 --- a/resources/variants/sovol/sovol_base_planetary_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.2.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.2.inst.cfg index cdc699ec08a..95676e994a3 100644 --- a/resources/variants/sovol/sovol_base_titan_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.3.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.3.inst.cfg index 6d61a4aab8d..7cfc3efc576 100644 --- a/resources/variants/sovol/sovol_base_titan_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.4.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.4.inst.cfg index 9b9c3448baf..4c49dec4027 100644 --- a/resources/variants/sovol/sovol_base_titan_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.5.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.5.inst.cfg index 599fdf099db..91bb80628e3 100644 --- a/resources/variants/sovol/sovol_base_titan_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.6.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.6.inst.cfg index 509e7f20258..9c0e6ecddcc 100644 --- a/resources/variants/sovol/sovol_base_titan_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.8.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.8.inst.cfg index eb2f8fa9fd4..b078d6089e7 100644 --- a/resources/variants/sovol/sovol_base_titan_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_1.0.inst.cfg b/resources/variants/sovol/sovol_base_titan_1.0.inst.cfg index 0eedaad4a1a..40fcf0f5564 100644 --- a/resources/variants/sovol/sovol_base_titan_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.2.inst.cfg b/resources/variants/sovol/sovol_sv01_0.2.inst.cfg index 8cb6eb9fd6c..4675382ac7f 100644 --- a/resources/variants/sovol/sovol_sv01_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.3.inst.cfg b/resources/variants/sovol/sovol_sv01_0.3.inst.cfg index 6c1cf8aa25e..1f4dc19dbc8 100644 --- a/resources/variants/sovol/sovol_sv01_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.4.inst.cfg b/resources/variants/sovol/sovol_sv01_0.4.inst.cfg index fcdd265d042..8a9ff336d63 100644 --- a/resources/variants/sovol/sovol_sv01_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.5.inst.cfg b/resources/variants/sovol/sovol_sv01_0.5.inst.cfg index 5fbd113f8e5..18cf8af2433 100644 --- a/resources/variants/sovol/sovol_sv01_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.6.inst.cfg b/resources/variants/sovol/sovol_sv01_0.6.inst.cfg index 1cb46e18f51..076b31f4ea7 100644 --- a/resources/variants/sovol/sovol_sv01_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.8.inst.cfg b/resources/variants/sovol/sovol_sv01_0.8.inst.cfg index 2aeab0e239c..02088701c9f 100644 --- a/resources/variants/sovol/sovol_sv01_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_1.0.inst.cfg b/resources/variants/sovol/sovol_sv01_1.0.inst.cfg index 4b822dc95bc..67c4921b418 100644 --- a/resources/variants/sovol/sovol_sv01_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.2.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.2.inst.cfg index cdbcdb33377..f7ef67df9a0 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.3.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.3.inst.cfg index d984439be4b..66418fccdde 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.4.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.4.inst.cfg index db9fe5749b4..b6651990277 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.5.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.5.inst.cfg index 9b34ca0a2e5..3ac09cd534a 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.6.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.6.inst.cfg index 247f3ac25cb..2b4ba7a8e69 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.8.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.8.inst.cfg index 12e667ae056..d19443e26a9 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_1.0.inst.cfg b/resources/variants/sovol/sovol_sv01pro_1.0.inst.cfg index ac71470ed67..79db65ef8c4 100644 --- a/resources/variants/sovol/sovol_sv01pro_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.2.inst.cfg b/resources/variants/sovol/sovol_sv03_0.2.inst.cfg index d8cb16668c8..b27c368ba7b 100644 --- a/resources/variants/sovol/sovol_sv03_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.3.inst.cfg b/resources/variants/sovol/sovol_sv03_0.3.inst.cfg index 068bdbc98ff..c0e0ea8e030 100644 --- a/resources/variants/sovol/sovol_sv03_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.4.inst.cfg b/resources/variants/sovol/sovol_sv03_0.4.inst.cfg index 8f60d5fe1fa..88fe704558b 100644 --- a/resources/variants/sovol/sovol_sv03_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.5.inst.cfg b/resources/variants/sovol/sovol_sv03_0.5.inst.cfg index 97cddbd75cb..aa3b6dcbd63 100644 --- a/resources/variants/sovol/sovol_sv03_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.6.inst.cfg b/resources/variants/sovol/sovol_sv03_0.6.inst.cfg index a89fe331f91..d42f878ed64 100644 --- a/resources/variants/sovol/sovol_sv03_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.8.inst.cfg b/resources/variants/sovol/sovol_sv03_0.8.inst.cfg index 27e6366a212..6eb0061d4c3 100644 --- a/resources/variants/sovol/sovol_sv03_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_1.0.inst.cfg b/resources/variants/sovol/sovol_sv03_1.0.inst.cfg index 3cb063e03ed..72800bf3a17 100644 --- a/resources/variants/sovol/sovol_sv03_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.2.inst.cfg b/resources/variants/sovol/sovol_sv05_0.2.inst.cfg index 17e45bc4eb6..bbb14c29613 100644 --- a/resources/variants/sovol/sovol_sv05_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.3.inst.cfg b/resources/variants/sovol/sovol_sv05_0.3.inst.cfg index 207bfe8750b..429aa180249 100644 --- a/resources/variants/sovol/sovol_sv05_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.4.inst.cfg b/resources/variants/sovol/sovol_sv05_0.4.inst.cfg index cb766a176f8..d3b71026062 100644 --- a/resources/variants/sovol/sovol_sv05_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.5.inst.cfg b/resources/variants/sovol/sovol_sv05_0.5.inst.cfg index 40877fe343b..398012ed4fa 100644 --- a/resources/variants/sovol/sovol_sv05_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.6.inst.cfg b/resources/variants/sovol/sovol_sv05_0.6.inst.cfg index 043f6621ab0..df3b34602a4 100644 --- a/resources/variants/sovol/sovol_sv05_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.8.inst.cfg b/resources/variants/sovol/sovol_sv05_0.8.inst.cfg index 1bf2de97a72..80b859c9fff 100644 --- a/resources/variants/sovol/sovol_sv05_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_1.0.inst.cfg b/resources/variants/sovol/sovol_sv05_1.0.inst.cfg index 2ccf5ce5b78..08a03569a58 100644 --- a/resources/variants/sovol/sovol_sv05_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.2.inst.cfg b/resources/variants/sovol/sovol_sv06_0.2.inst.cfg index 0feeee93b79..e8bb5f98236 100644 --- a/resources/variants/sovol/sovol_sv06_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.3.inst.cfg b/resources/variants/sovol/sovol_sv06_0.3.inst.cfg index f6badce3996..e56a618f9ef 100644 --- a/resources/variants/sovol/sovol_sv06_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.4.inst.cfg b/resources/variants/sovol/sovol_sv06_0.4.inst.cfg index 1ef526b59aa..729f0a80994 100644 --- a/resources/variants/sovol/sovol_sv06_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.5.inst.cfg b/resources/variants/sovol/sovol_sv06_0.5.inst.cfg index b702272de8a..697c0a8cbd7 100644 --- a/resources/variants/sovol/sovol_sv06_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.6.inst.cfg b/resources/variants/sovol/sovol_sv06_0.6.inst.cfg index cc2cfb918fe..76afaa41152 100644 --- a/resources/variants/sovol/sovol_sv06_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.8.inst.cfg b/resources/variants/sovol/sovol_sv06_0.8.inst.cfg index 645d9af3881..57aaba95d0e 100644 --- a/resources/variants/sovol/sovol_sv06_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_1.0.inst.cfg b/resources/variants/sovol/sovol_sv06_1.0.inst.cfg index f012540e97e..1def6c310d0 100644 --- a/resources/variants/sovol/sovol_sv06_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.2.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.2.inst.cfg index be7bcbab110..801913f2a8b 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.3.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.3.inst.cfg index 8cc510304bc..24746b4b005 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.4.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.4.inst.cfg index 470c5995549..36c4c01724a 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.5.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.5.inst.cfg index 26a940fa512..a4ab21f715b 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.6.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.6.inst.cfg index c891fafd9ff..d502887d21f 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.8.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.8.inst.cfg index 8bd7ba9c250..4d27ed19d4d 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_1.0.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_1.0.inst.cfg index 729ff0d845d..f45e0f73d05 100644 --- a/resources/variants/sovol/sovol_sv06_plus_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_brass_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_brass_04.inst.cfg index c4e2e42cf40..5e1ead766f9 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_brass_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_brass_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_brass_06.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_brass_06.inst.cfg index af86dfec839..87265e5a160 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_brass_06.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_brass_06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_brass_08.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_brass_08.inst.cfg index 5a769c4a081..9f04f01e67f 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_brass_08.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_brass_08.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_04.inst.cfg index 37e404e4fb8..4ef793240b5 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_06.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_06.inst.cfg index 4e803ccaf1c..fc5ace3f860 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_06.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_08.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_08.inst.cfg index fec8ced11d5..0c4514dfd59 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_08.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_08.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_hardened_steel_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_hardened_steel_04.inst.cfg index 8db5cf2a63b..4ed76619dd1 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_hardened_steel_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_hardened_steel_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_hardened_steel_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_hardened_steel_04.inst.cfg index 51a91a5aed7..0ffce60431b 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_hardened_steel_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_hardened_steel_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_04.inst.cfg index 29c92096474..3f71d274043 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_06.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_06.inst.cfg index 6659d54c3ea..5910177288c 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_06.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_08.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_08.inst.cfg index 45aa9d1f7d8..49688ae6f4a 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_08.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_08.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_hardened_steel_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_hardened_steel_04.inst.cfg index 1847a09a91d..92748d4d3dd 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_hardened_steel_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_hardened_steel_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg b/resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg index 4bf51a967ad..dd9958c48bc 100644 --- a/resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_standard_04.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_04.inst.cfg index 3d705453d87..37cf713a158 100644 --- a/resources/variants/strateo3d/strateo3d_standard_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_standard_06.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_06.inst.cfg index 3443f64531e..269c25aaa53 100644 --- a/resources/variants/strateo3d/strateo3d_standard_06.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_standard_08.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_08.inst.cfg index f436ce1fe74..58441eba1e3 100644 --- a/resources/variants/strateo3d/strateo3d_standard_08.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_08.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_standard_10.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_10.inst.cfg index b957d58d9fe..4ab3b3926d8 100644 --- a/resources/variants/strateo3d/strateo3d_standard_10.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_10.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_standard_12.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_12.inst.cfg index 3a35f9c4a20..94a250cae2c 100644 --- a/resources/variants/strateo3d/strateo3d_standard_12.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_12.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg index 634cb55aae4..a062e40eaa8 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg index 736dc65e3bd..4f7c872f83d 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg index e8c6ccbb37e..bac385cd611 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg index 2cb0ceec7d0..2200d028c1e 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg index dca75697a42..c82ea7b8ced 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg index b3313dfc25b..a3b6e8ab7a1 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg index a3290a298a3..6e59413f39b 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.2.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.2.inst.cfg index 4a3161ad318..c6f6a59cc9c 100644 --- a/resources/variants/tizyx/tizyx_evy_0.2.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.3.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.3.inst.cfg index bd492a22244..1bcc6f9f80d 100644 --- a/resources/variants/tizyx/tizyx_evy_0.3.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.4.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.4.inst.cfg index d92f9805418..0184650eac6 100644 --- a/resources/variants/tizyx/tizyx_evy_0.4.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.5.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.5.inst.cfg index 0c70e642fad..85f310a75cf 100644 --- a/resources/variants/tizyx/tizyx_evy_0.5.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.5.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.6.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.6.inst.cfg index a8f810227c3..c11278805fb 100644 --- a/resources/variants/tizyx/tizyx_evy_0.6.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.8.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.8.inst.cfg index 9d5134ba87d..db57e2489df 100644 --- a/resources/variants/tizyx/tizyx_evy_0.8.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_1.0.inst.cfg b/resources/variants/tizyx/tizyx_evy_1.0.inst.cfg index 040840898ad..25919c41cbc 100644 --- a/resources/variants/tizyx/tizyx_evy_1.0.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_1.0.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_dual_classic.inst.cfg b/resources/variants/tizyx/tizyx_evy_dual_classic.inst.cfg index 42c8a0cd1af..b74479ed9b7 100644 --- a/resources/variants/tizyx/tizyx_evy_dual_classic.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_dual_classic.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_dual_direct_drive.inst.cfg b/resources/variants/tizyx/tizyx_evy_dual_direct_drive.inst.cfg index e9174895d60..e423042abac 100644 --- a/resources/variants/tizyx/tizyx_evy_dual_direct_drive.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_dual_direct_drive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.2.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.2.inst.cfg index 1dac3325892..849ff5b5497 100644 --- a/resources/variants/tizyx/tizyx_k25_0.2.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.3.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.3.inst.cfg index 604408728f9..f21aaeb9c41 100644 --- a/resources/variants/tizyx/tizyx_k25_0.3.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.4.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.4.inst.cfg index 74446c4ef11..1b96c65430a 100644 --- a/resources/variants/tizyx/tizyx_k25_0.4.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.5.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.5.inst.cfg index cf952469089..5dd314fc6e0 100644 --- a/resources/variants/tizyx/tizyx_k25_0.5.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.6.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.6.inst.cfg index 3f700e6fc60..4d63f1e3156 100644 --- a/resources/variants/tizyx/tizyx_k25_0.6.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.8.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.8.inst.cfg index f384dbc5144..6eb8ad3808b 100644 --- a/resources/variants/tizyx/tizyx_k25_0.8.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_1.0.inst.cfg b/resources/variants/tizyx/tizyx_k25_1.0.inst.cfg index 85341749fa5..e28afbbd31d 100644 --- a/resources/variants/tizyx/tizyx_k25_1.0.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.2.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.2.inst.cfg index 40a1d23b469..4ebd9d8b253 100644 --- a/resources/variants/tronxy/tronxy_d01_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.3.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.3.inst.cfg index 9e04c916593..3350cbd4616 100644 --- a/resources/variants/tronxy/tronxy_d01_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.4.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.4.inst.cfg index a695a7b8987..bfc8757ad31 100644 --- a/resources/variants/tronxy/tronxy_d01_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.5.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.5.inst.cfg index 2fed2b9f4ce..34763768cbe 100644 --- a/resources/variants/tronxy/tronxy_d01_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.6.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.6.inst.cfg index 1c64d304f19..b8a463eb60a 100644 --- a/resources/variants/tronxy/tronxy_d01_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.8.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.8.inst.cfg index 6a19699f347..825d7601203 100644 --- a/resources/variants/tronxy/tronxy_d01_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.2.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.2.inst.cfg index 764aa1fe12a..c42982fa970 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.3.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.3.inst.cfg index fb79bbcc37e..518bd27d4fe 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.4.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.4.inst.cfg index 2367710a734..b5038480590 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.5.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.5.inst.cfg index 78de9fbbf89..c64ca108d27 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.6.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.6.inst.cfg index 902db8e3786..c02e91690dd 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.8.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.8.inst.cfg index 06cc0beb0ff..6b486043aaf 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.2.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.2.inst.cfg index 2789bd37149..5c037481a11 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.3.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.3.inst.cfg index 32dfae92e33..3c571bdb8da 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.4.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.4.inst.cfg index a135b895790..d84021788f6 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.5.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.5.inst.cfg index 76bbf7c4c25..f8b83d537fb 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.6.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.6.inst.cfg index 25aa27be373..1e9d8b78136 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.8.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.8.inst.cfg index efe536c1ce5..918b620ec58 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.2.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.2.inst.cfg index 987aebfbed3..151b1b04723 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.3.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.3.inst.cfg index 7c0dd2d6487..b479c964376 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.4.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.4.inst.cfg index 671ea01991a..bf8a8c41938 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.5.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.5.inst.cfg index a275d9d7d9e..0d1fc72a92a 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.6.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.6.inst.cfg index a46103edaa7..b90788f72b8 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.8.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.8.inst.cfg index c9ff4eee7bb..8671621b0d2 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.2.inst.cfg b/resources/variants/tronxy/tronxy_x_0.2.inst.cfg index 804ee11837e..a5a48065b7c 100644 --- a/resources/variants/tronxy/tronxy_x_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.3.inst.cfg b/resources/variants/tronxy/tronxy_x_0.3.inst.cfg index ed1a34ccd45..55be830f9a9 100644 --- a/resources/variants/tronxy/tronxy_x_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.4.inst.cfg b/resources/variants/tronxy/tronxy_x_0.4.inst.cfg index 30cdb91f79d..bca306577f1 100644 --- a/resources/variants/tronxy/tronxy_x_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.5.inst.cfg b/resources/variants/tronxy/tronxy_x_0.5.inst.cfg index 5b637198c30..da9038083f2 100644 --- a/resources/variants/tronxy/tronxy_x_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.6.inst.cfg b/resources/variants/tronxy/tronxy_x_0.6.inst.cfg index 6e48dc855e7..d235caf8bac 100644 --- a/resources/variants/tronxy/tronxy_x_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.8.inst.cfg b/resources/variants/tronxy/tronxy_x_0.8.inst.cfg index 8340de4d80c..6e6a213099e 100644 --- a/resources/variants/tronxy/tronxy_x_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.2.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.2.inst.cfg index c3f734e5c55..28a372882a1 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.3.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.3.inst.cfg index f2abb657ad9..bb0bc6c05d5 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.4.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.4.inst.cfg index 3f5a42d8e6a..6e1a243fcd3 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.5.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.5.inst.cfg index aa585f0f545..6f23af4befa 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.6.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.6.inst.cfg index 45edf499858..c4ac9172589 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.8.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.8.inst.cfg index 36f22177823..dd253d02b30 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.2.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.2.inst.cfg index e37c5d62ad0..997eeec9806 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.3.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.3.inst.cfg index 1b75373c943..b039c68bf99 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.4.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.4.inst.cfg index 8d7eea1d9aa..16a41c96f5b 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.5.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.5.inst.cfg index 8a3044a9d96..0d6fc5596a9 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.6.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.6.inst.cfg index 8630fdcc7d5..234f4967b55 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.8.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.8.inst.cfg index e8b980bc7e8..4f47a1d6bbe 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.2.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.2.inst.cfg index 821ef65fc0c..fa88c7cb80e 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.3.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.3.inst.cfg index c5bd4ce26ca..0fb159eb588 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.4.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.4.inst.cfg index 462cfdd08bb..8788191875f 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.5.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.5.inst.cfg index 12325f64743..89495854303 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.6.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.6.inst.cfg index cc667ce66ba..881c9cc12d9 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.8.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.8.inst.cfg index 706eba90f92..39730a67941 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.2.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.2.inst.cfg index 48a16c26864..b6d369887d4 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.3.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.3.inst.cfg index c3c9f85b98f..3938926d4ec 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.4.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.4.inst.cfg index db81b08c2af..1460fae8520 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.5.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.5.inst.cfg index 0cf66885ff3..465351877a1 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.6.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.6.inst.cfg index bee63cb6717..a61dfa6a41d 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.8.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.8.inst.cfg index b4b8fcaaf76..acf463f1a29 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.2.inst.cfg b/resources/variants/two_trees/two_trees_base_0.2.inst.cfg index b0b48054fa7..5d00116eb2e 100644 --- a/resources/variants/two_trees/two_trees_base_0.2.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.3.inst.cfg b/resources/variants/two_trees/two_trees_base_0.3.inst.cfg index bf4c206b70b..432c55a4b28 100644 --- a/resources/variants/two_trees/two_trees_base_0.3.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.4.inst.cfg b/resources/variants/two_trees/two_trees_base_0.4.inst.cfg index 50b64732fa3..70d24160302 100644 --- a/resources/variants/two_trees/two_trees_base_0.4.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.5.inst.cfg b/resources/variants/two_trees/two_trees_base_0.5.inst.cfg index dda348b557c..125370a2479 100644 --- a/resources/variants/two_trees/two_trees_base_0.5.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.6.inst.cfg b/resources/variants/two_trees/two_trees_base_0.6.inst.cfg index e5e503c2afa..2f580b6ed91 100644 --- a/resources/variants/two_trees/two_trees_base_0.6.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.8.inst.cfg b/resources/variants/two_trees/two_trees_base_0.8.inst.cfg index dd803465499..9bb89c1a052 100644 --- a/resources/variants/two_trees/two_trees_base_0.8.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_1.0.inst.cfg b/resources/variants/two_trees/two_trees_base_1.0.inst.cfg index 2f33edf8b3b..732abfd7914 100644 --- a/resources/variants/two_trees/two_trees_base_1.0.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.2.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.2.inst.cfg index 42273edd7ad..c0cf712a9ec 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.2.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.3.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.3.inst.cfg index c0a5591e09d..3630aecfe75 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.3.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.4.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.4.inst.cfg index 9e2c0077f75..faa479d6fa6 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.4.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.5.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.5.inst.cfg index 170fa9abb59..691bee192b8 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.5.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.6.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.6.inst.cfg index 008606f0b8a..c97ce33271c 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.6.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.8.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.8.inst.cfg index a25a5f275d0..e391ad8e202 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.8.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_1.0.inst.cfg b/resources/variants/two_trees/two_trees_bluer_1.0.inst.cfg index e6286486dec..7553db150ad 100644 --- a/resources/variants/two_trees/two_trees_bluer_1.0.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.2.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.2.inst.cfg index f3de8c6d994..b455cba30a8 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.2.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.3.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.3.inst.cfg index d7d8be1d687..abdd6c0a70d 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.3.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.4.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.4.inst.cfg index 25d8a264cab..ee171d1ca9b 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.4.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.5.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.5.inst.cfg index 92f0c6323c4..e9e702b4de2 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.5.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.6.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.6.inst.cfg index 4b0255019d2..2c123df75cf 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.6.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.8.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.8.inst.cfg index 9e6e78f7fcb..c0e271e76f3 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.8.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_1.0.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_1.0.inst.cfg index c8f50ab9264..42e4794f6de 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_1.0.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.2.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.2.inst.cfg index a2a849dd6af..e8efa941e0a 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.2.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.3.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.3.inst.cfg index 9e0ff0f8f19..bc8495b121d 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.3.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.4.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.4.inst.cfg index 7ec834604c7..49a3b37883d 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.4.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.5.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.5.inst.cfg index 0f254451872..750c72175f5 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.5.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.6.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.6.inst.cfg index ea4f869435a..7d65ea1195c 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.6.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.8.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.8.inst.cfg index 4d8a971361f..d2d2e961a2d 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.8.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_1.0.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_1.0.inst.cfg index 7366f7cef9e..59ecdce7215 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_1.0.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.2.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.2.inst.cfg index 09083d9c7de..3016320978e 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.2.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.3.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.3.inst.cfg index 4167cead959..73a9f123324 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.3.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.4.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.4.inst.cfg index 50fba07f50a..6f72dc5c888 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.4.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.5.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.5.inst.cfg index df8b31288ad..56140477f05 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.5.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.6.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.6.inst.cfg index b82025b8ae7..6e0aa7a76aa 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.6.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.8.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.8.inst.cfg index 775e46775df..dbe99001e18 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.8.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_1.0.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_1.0.inst.cfg index a6e66802091..9c9f41a21ae 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_1.0.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_olsson_0.25.inst.cfg b/resources/variants/ultimaker2_extended_olsson_0.25.inst.cfg index 0e6d8e2cf4c..2b41a131bf0 100644 --- a/resources/variants/ultimaker2_extended_olsson_0.25.inst.cfg +++ b/resources/variants/ultimaker2_extended_olsson_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_olsson_0.4.inst.cfg b/resources/variants/ultimaker2_extended_olsson_0.4.inst.cfg index 3edc01a2fa2..b9da9cb427d 100644 --- a/resources/variants/ultimaker2_extended_olsson_0.4.inst.cfg +++ b/resources/variants/ultimaker2_extended_olsson_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_olsson_0.6.inst.cfg b/resources/variants/ultimaker2_extended_olsson_0.6.inst.cfg index 2694d2b862b..d1435a038f9 100644 --- a/resources/variants/ultimaker2_extended_olsson_0.6.inst.cfg +++ b/resources/variants/ultimaker2_extended_olsson_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_olsson_0.8.inst.cfg b/resources/variants/ultimaker2_extended_olsson_0.8.inst.cfg index 66806f698de..7939329760f 100644 --- a/resources/variants/ultimaker2_extended_olsson_0.8.inst.cfg +++ b/resources/variants/ultimaker2_extended_olsson_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_plus_0.25.inst.cfg b/resources/variants/ultimaker2_extended_plus_0.25.inst.cfg index 79d87fc1249..f390522673a 100644 --- a/resources/variants/ultimaker2_extended_plus_0.25.inst.cfg +++ b/resources/variants/ultimaker2_extended_plus_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_plus_0.4.inst.cfg b/resources/variants/ultimaker2_extended_plus_0.4.inst.cfg index cfdb8d8cb37..fe1f3f7cf83 100644 --- a/resources/variants/ultimaker2_extended_plus_0.4.inst.cfg +++ b/resources/variants/ultimaker2_extended_plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_plus_0.6.inst.cfg b/resources/variants/ultimaker2_extended_plus_0.6.inst.cfg index 66aa764c603..7cf05dc5cef 100644 --- a/resources/variants/ultimaker2_extended_plus_0.6.inst.cfg +++ b/resources/variants/ultimaker2_extended_plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_plus_0.8.inst.cfg b/resources/variants/ultimaker2_extended_plus_0.8.inst.cfg index bccd63f423b..96bdd72b37c 100644 --- a/resources/variants/ultimaker2_extended_plus_0.8.inst.cfg +++ b/resources/variants/ultimaker2_extended_plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_olsson_0.25.inst.cfg b/resources/variants/ultimaker2_olsson_0.25.inst.cfg index 8b759962edc..7ac69be938d 100644 --- a/resources/variants/ultimaker2_olsson_0.25.inst.cfg +++ b/resources/variants/ultimaker2_olsson_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_olsson_0.4.inst.cfg b/resources/variants/ultimaker2_olsson_0.4.inst.cfg index 650782d9c99..b3bd76d2bb6 100644 --- a/resources/variants/ultimaker2_olsson_0.4.inst.cfg +++ b/resources/variants/ultimaker2_olsson_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_olsson_0.6.inst.cfg b/resources/variants/ultimaker2_olsson_0.6.inst.cfg index 646aba5b0b5..1ef825ce735 100644 --- a/resources/variants/ultimaker2_olsson_0.6.inst.cfg +++ b/resources/variants/ultimaker2_olsson_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_olsson_0.8.inst.cfg b/resources/variants/ultimaker2_olsson_0.8.inst.cfg index 77c689c8c36..78f9a448d9e 100644 --- a/resources/variants/ultimaker2_olsson_0.8.inst.cfg +++ b/resources/variants/ultimaker2_olsson_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_0.25.inst.cfg b/resources/variants/ultimaker2_plus_0.25.inst.cfg index 106a1cde2ab..8191646d70e 100644 --- a/resources/variants/ultimaker2_plus_0.25.inst.cfg +++ b/resources/variants/ultimaker2_plus_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_0.4.inst.cfg b/resources/variants/ultimaker2_plus_0.4.inst.cfg index 22ef7d78584..b93a69a37b1 100644 --- a/resources/variants/ultimaker2_plus_0.4.inst.cfg +++ b/resources/variants/ultimaker2_plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_0.6.inst.cfg b/resources/variants/ultimaker2_plus_0.6.inst.cfg index 41c589f8789..7d26c7235cb 100644 --- a/resources/variants/ultimaker2_plus_0.6.inst.cfg +++ b/resources/variants/ultimaker2_plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_0.8.inst.cfg b/resources/variants/ultimaker2_plus_0.8.inst.cfg index 5eeaef95769..dae23df0882 100644 --- a/resources/variants/ultimaker2_plus_0.8.inst.cfg +++ b/resources/variants/ultimaker2_plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_connect_0.25.inst.cfg b/resources/variants/ultimaker2_plus_connect_0.25.inst.cfg index dc909a71555..25a6d69377e 100644 --- a/resources/variants/ultimaker2_plus_connect_0.25.inst.cfg +++ b/resources/variants/ultimaker2_plus_connect_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_connect_0.4.inst.cfg b/resources/variants/ultimaker2_plus_connect_0.4.inst.cfg index f4da1e9bc87..4b031270187 100644 --- a/resources/variants/ultimaker2_plus_connect_0.4.inst.cfg +++ b/resources/variants/ultimaker2_plus_connect_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_connect_0.6.inst.cfg b/resources/variants/ultimaker2_plus_connect_0.6.inst.cfg index efb4f986092..12ed089c829 100644 --- a/resources/variants/ultimaker2_plus_connect_0.6.inst.cfg +++ b/resources/variants/ultimaker2_plus_connect_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_connect_0.8.inst.cfg b/resources/variants/ultimaker2_plus_connect_0.8.inst.cfg index a4306331f1e..b049720372a 100644 --- a/resources/variants/ultimaker2_plus_connect_0.8.inst.cfg +++ b/resources/variants/ultimaker2_plus_connect_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker3_aa0.25.inst.cfg b/resources/variants/ultimaker3_aa0.25.inst.cfg index 1f1152ba414..134d7d48061 100644 --- a/resources/variants/ultimaker3_aa0.25.inst.cfg +++ b/resources/variants/ultimaker3_aa0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker3_aa0.8.inst.cfg b/resources/variants/ultimaker3_aa0.8.inst.cfg index 4190aab0cd1..eb1ec461e71 100644 --- a/resources/variants/ultimaker3_aa0.8.inst.cfg +++ b/resources/variants/ultimaker3_aa0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker3_aa04.inst.cfg b/resources/variants/ultimaker3_aa04.inst.cfg index e9afd4620c8..85c2fcba1c4 100644 --- a/resources/variants/ultimaker3_aa04.inst.cfg +++ b/resources/variants/ultimaker3_aa04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker3_bb0.8.inst.cfg b/resources/variants/ultimaker3_bb0.8.inst.cfg index 62227f50f65..55a93ee5ccc 100644 --- a/resources/variants/ultimaker3_bb0.8.inst.cfg +++ b/resources/variants/ultimaker3_bb0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker3_bb04.inst.cfg b/resources/variants/ultimaker3_bb04.inst.cfg index b3ba87ac597..1c095aa2622 100644 --- a/resources/variants/ultimaker3_bb04.inst.cfg +++ b/resources/variants/ultimaker3_bb04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker3_extended_aa0.25.inst.cfg b/resources/variants/ultimaker3_extended_aa0.25.inst.cfg index 44b669e7811..26a65b4a11d 100644 --- a/resources/variants/ultimaker3_extended_aa0.25.inst.cfg +++ b/resources/variants/ultimaker3_extended_aa0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker3_extended_aa0.8.inst.cfg b/resources/variants/ultimaker3_extended_aa0.8.inst.cfg index 941634e3a61..bff1fd5469f 100644 --- a/resources/variants/ultimaker3_extended_aa0.8.inst.cfg +++ b/resources/variants/ultimaker3_extended_aa0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker3_extended_aa04.inst.cfg b/resources/variants/ultimaker3_extended_aa04.inst.cfg index ef66df6477a..f57f1f8bbd3 100644 --- a/resources/variants/ultimaker3_extended_aa04.inst.cfg +++ b/resources/variants/ultimaker3_extended_aa04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker3_extended_bb0.8.inst.cfg b/resources/variants/ultimaker3_extended_bb0.8.inst.cfg index 2a88f165e61..1db324d3955 100644 --- a/resources/variants/ultimaker3_extended_bb0.8.inst.cfg +++ b/resources/variants/ultimaker3_extended_bb0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker3_extended_bb04.inst.cfg b/resources/variants/ultimaker3_extended_bb04.inst.cfg index 1fa6241d201..92416cbe6f3 100644 --- a/resources/variants/ultimaker3_extended_bb04.inst.cfg +++ b/resources/variants/ultimaker3_extended_bb04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_methodx_1C.inst.cfg b/resources/variants/ultimaker_methodx_1C.inst.cfg index b2bd39e9067..83dd3e9ed8b 100644 --- a/resources/variants/ultimaker_methodx_1C.inst.cfg +++ b/resources/variants/ultimaker_methodx_1C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_c -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_methodx_1XA.inst.cfg b/resources/variants/ultimaker_methodx_1XA.inst.cfg index f63c2a4df76..8e940228e8f 100644 --- a/resources/variants/ultimaker_methodx_1XA.inst.cfg +++ b/resources/variants/ultimaker_methodx_1XA.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_hot -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_methodx_2XA.inst.cfg b/resources/variants/ultimaker_methodx_2XA.inst.cfg index 24461cd5ef4..d395d17d531 100644 --- a/resources/variants/ultimaker_methodx_2XA.inst.cfg +++ b/resources/variants/ultimaker_methodx_2XA.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_hot_s -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_methodx_LABS.inst.cfg b/resources/variants/ultimaker_methodx_LABS.inst.cfg index 2c667e37f10..a150a0df5d8 100644 --- a/resources/variants/ultimaker_methodx_LABS.inst.cfg +++ b/resources/variants/ultimaker_methodx_LABS.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_e -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_methodxl_1C.inst.cfg b/resources/variants/ultimaker_methodxl_1C.inst.cfg index 527415ca353..299d05d0296 100644 --- a/resources/variants/ultimaker_methodxl_1C.inst.cfg +++ b/resources/variants/ultimaker_methodxl_1C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_c -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_methodxl_1XA.inst.cfg b/resources/variants/ultimaker_methodxl_1XA.inst.cfg index 6da0eb3bb2e..77965ea5258 100644 --- a/resources/variants/ultimaker_methodxl_1XA.inst.cfg +++ b/resources/variants/ultimaker_methodxl_1XA.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_hot -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_methodxl_2XA.inst.cfg b/resources/variants/ultimaker_methodxl_2XA.inst.cfg index a64b66b89f6..4e929f2853c 100644 --- a/resources/variants/ultimaker_methodxl_2XA.inst.cfg +++ b/resources/variants/ultimaker_methodxl_2XA.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_hot_s -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_methodxl_LABS.inst.cfg b/resources/variants/ultimaker_methodxl_LABS.inst.cfg index fa726c02abb..c579f7f8e60 100644 --- a/resources/variants/ultimaker_methodxl_LABS.inst.cfg +++ b/resources/variants/ultimaker_methodxl_LABS.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_e -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s3_aa0.25.inst.cfg b/resources/variants/ultimaker_s3_aa0.25.inst.cfg index 97b303035c2..67d10fdd5f5 100644 --- a/resources/variants/ultimaker_s3_aa0.25.inst.cfg +++ b/resources/variants/ultimaker_s3_aa0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s3_aa0.8.inst.cfg b/resources/variants/ultimaker_s3_aa0.8.inst.cfg index e7d3487503e..68a3eb620d5 100644 --- a/resources/variants/ultimaker_s3_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s3_aa0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s3_aa04.inst.cfg b/resources/variants/ultimaker_s3_aa04.inst.cfg index 76992b58052..340c5d0f863 100644 --- a/resources/variants/ultimaker_s3_aa04.inst.cfg +++ b/resources/variants/ultimaker_s3_aa04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s3_bb0.8.inst.cfg b/resources/variants/ultimaker_s3_bb0.8.inst.cfg index d0f78ac3bd1..a4677452b4b 100644 --- a/resources/variants/ultimaker_s3_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s3_bb0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s3_bb04.inst.cfg b/resources/variants/ultimaker_s3_bb04.inst.cfg index 4e232cbb5e1..79f3f7e8c94 100644 --- a/resources/variants/ultimaker_s3_bb04.inst.cfg +++ b/resources/variants/ultimaker_s3_bb04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s3_cc04.inst.cfg b/resources/variants/ultimaker_s3_cc04.inst.cfg index 38f04547aa7..3c010ed5817 100644 --- a/resources/variants/ultimaker_s3_cc04.inst.cfg +++ b/resources/variants/ultimaker_s3_cc04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s3_cc06.inst.cfg b/resources/variants/ultimaker_s3_cc06.inst.cfg index e42817e8f8b..02d19fd112f 100644 --- a/resources/variants/ultimaker_s3_cc06.inst.cfg +++ b/resources/variants/ultimaker_s3_cc06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s3_dd04.inst.cfg b/resources/variants/ultimaker_s3_dd04.inst.cfg index bf93b66be78..803ae14982f 100644 --- a/resources/variants/ultimaker_s3_dd04.inst.cfg +++ b/resources/variants/ultimaker_s3_dd04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s5_aa0.25.inst.cfg b/resources/variants/ultimaker_s5_aa0.25.inst.cfg index 08ed6132f59..904c657549e 100644 --- a/resources/variants/ultimaker_s5_aa0.25.inst.cfg +++ b/resources/variants/ultimaker_s5_aa0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s5_aa0.8.inst.cfg b/resources/variants/ultimaker_s5_aa0.8.inst.cfg index 04a3a97d115..570f3357181 100644 --- a/resources/variants/ultimaker_s5_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s5_aa0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s5_aa04.inst.cfg b/resources/variants/ultimaker_s5_aa04.inst.cfg index fd4f1ff7789..fe44ba9d039 100644 --- a/resources/variants/ultimaker_s5_aa04.inst.cfg +++ b/resources/variants/ultimaker_s5_aa04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s5_aluminum.inst.cfg b/resources/variants/ultimaker_s5_aluminum.inst.cfg index b13d4b5c864..3d926cbfc58 100644 --- a/resources/variants/ultimaker_s5_aluminum.inst.cfg +++ b/resources/variants/ultimaker_s5_aluminum.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = buildplate -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s5_bb0.8.inst.cfg b/resources/variants/ultimaker_s5_bb0.8.inst.cfg index 07b556d2068..92953793fa5 100644 --- a/resources/variants/ultimaker_s5_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s5_bb0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s5_bb04.inst.cfg b/resources/variants/ultimaker_s5_bb04.inst.cfg index 7959fc75c2a..77dfccf3bf6 100644 --- a/resources/variants/ultimaker_s5_bb04.inst.cfg +++ b/resources/variants/ultimaker_s5_bb04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s5_cc04.inst.cfg b/resources/variants/ultimaker_s5_cc04.inst.cfg index 5510d0126fc..de9d490ad81 100644 --- a/resources/variants/ultimaker_s5_cc04.inst.cfg +++ b/resources/variants/ultimaker_s5_cc04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s5_cc06.inst.cfg b/resources/variants/ultimaker_s5_cc06.inst.cfg index a49c790e4f1..d4cd9c6616d 100644 --- a/resources/variants/ultimaker_s5_cc06.inst.cfg +++ b/resources/variants/ultimaker_s5_cc06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s5_dd04.inst.cfg b/resources/variants/ultimaker_s5_dd04.inst.cfg index bcf9dae1315..6c0be44f465 100644 --- a/resources/variants/ultimaker_s5_dd04.inst.cfg +++ b/resources/variants/ultimaker_s5_dd04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s5_glass.inst.cfg b/resources/variants/ultimaker_s5_glass.inst.cfg index dff0498792d..9cddb471957 100644 --- a/resources/variants/ultimaker_s5_glass.inst.cfg +++ b/resources/variants/ultimaker_s5_glass.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = buildplate -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s7_aa0.25.inst.cfg b/resources/variants/ultimaker_s7_aa0.25.inst.cfg index fc1bdcfef2a..2654143fb85 100644 --- a/resources/variants/ultimaker_s7_aa0.25.inst.cfg +++ b/resources/variants/ultimaker_s7_aa0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s7_aa0.8.inst.cfg b/resources/variants/ultimaker_s7_aa0.8.inst.cfg index b3253f7d258..ffe01b344a6 100644 --- a/resources/variants/ultimaker_s7_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s7_aa0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s7_aa04.inst.cfg b/resources/variants/ultimaker_s7_aa04.inst.cfg index 6aee6597e00..76162269642 100644 --- a/resources/variants/ultimaker_s7_aa04.inst.cfg +++ b/resources/variants/ultimaker_s7_aa04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s7_bb0.8.inst.cfg b/resources/variants/ultimaker_s7_bb0.8.inst.cfg index 010d5c7cf11..2f4fb50a8bd 100644 --- a/resources/variants/ultimaker_s7_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s7_bb0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s7_bb04.inst.cfg b/resources/variants/ultimaker_s7_bb04.inst.cfg index 1ec0dfab981..e44142b3ed3 100644 --- a/resources/variants/ultimaker_s7_bb04.inst.cfg +++ b/resources/variants/ultimaker_s7_bb04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s7_cc04.inst.cfg b/resources/variants/ultimaker_s7_cc04.inst.cfg index 6949c5be74d..30ffef58b6d 100644 --- a/resources/variants/ultimaker_s7_cc04.inst.cfg +++ b/resources/variants/ultimaker_s7_cc04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s7_cc06.inst.cfg b/resources/variants/ultimaker_s7_cc06.inst.cfg index 576701fc2b8..f752b63cf36 100644 --- a/resources/variants/ultimaker_s7_cc06.inst.cfg +++ b/resources/variants/ultimaker_s7_cc06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s7_dd04.inst.cfg b/resources/variants/ultimaker_s7_dd04.inst.cfg index a9c0bb66025..7ea915f610a 100644 --- a/resources/variants/ultimaker_s7_dd04.inst.cfg +++ b/resources/variants/ultimaker_s7_dd04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_200_0.30.inst.cfg b/resources/variants/uni/uni_200_0.30.inst.cfg index 8c5c61f1025..69ea894c630 100644 --- a/resources/variants/uni/uni_200_0.30.inst.cfg +++ b/resources/variants/uni/uni_200_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_200_0.40.inst.cfg b/resources/variants/uni/uni_200_0.40.inst.cfg index 34e44afa052..499866af300 100644 --- a/resources/variants/uni/uni_200_0.40.inst.cfg +++ b/resources/variants/uni/uni_200_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_200_0.50.inst.cfg b/resources/variants/uni/uni_200_0.50.inst.cfg index 0dbdc557963..e1948488d35 100644 --- a/resources/variants/uni/uni_200_0.50.inst.cfg +++ b/resources/variants/uni/uni_200_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_250_0.30.inst.cfg b/resources/variants/uni/uni_250_0.30.inst.cfg index f135aa31785..1e2d3e36901 100644 --- a/resources/variants/uni/uni_250_0.30.inst.cfg +++ b/resources/variants/uni/uni_250_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_250_0.40.inst.cfg b/resources/variants/uni/uni_250_0.40.inst.cfg index e2fde31e5e6..4ae51548abc 100644 --- a/resources/variants/uni/uni_250_0.40.inst.cfg +++ b/resources/variants/uni/uni_250_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_250_0.50.inst.cfg b/resources/variants/uni/uni_250_0.50.inst.cfg index 6e5d54e6af0..bd91f0063f3 100644 --- a/resources/variants/uni/uni_250_0.50.inst.cfg +++ b/resources/variants/uni/uni_250_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_300_0.30.inst.cfg b/resources/variants/uni/uni_300_0.30.inst.cfg index 322ed8c1334..920200412f6 100644 --- a/resources/variants/uni/uni_300_0.30.inst.cfg +++ b/resources/variants/uni/uni_300_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_300_0.40.inst.cfg b/resources/variants/uni/uni_300_0.40.inst.cfg index f9366b8a54a..3d808fc4c0e 100644 --- a/resources/variants/uni/uni_300_0.40.inst.cfg +++ b/resources/variants/uni/uni_300_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_300_0.50.inst.cfg b/resources/variants/uni/uni_300_0.50.inst.cfg index 3d264e83751..d3911215630 100644 --- a/resources/variants/uni/uni_300_0.50.inst.cfg +++ b/resources/variants/uni/uni_300_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_base_0.30.inst.cfg b/resources/variants/uni/uni_base_0.30.inst.cfg index 34424ef287d..e0fec2e1eb1 100644 --- a/resources/variants/uni/uni_base_0.30.inst.cfg +++ b/resources/variants/uni/uni_base_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_base_0.40.inst.cfg b/resources/variants/uni/uni_base_0.40.inst.cfg index 6449e280265..090dd0de50c 100644 --- a/resources/variants/uni/uni_base_0.40.inst.cfg +++ b/resources/variants/uni/uni_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_base_0.50.inst.cfg b/resources/variants/uni/uni_base_0.50.inst.cfg index 1106b4ba983..094826b97eb 100644 --- a/resources/variants/uni/uni_base_0.50.inst.cfg +++ b/resources/variants/uni/uni_base_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_mini_0.30.inst.cfg b/resources/variants/uni/uni_mini_0.30.inst.cfg index de0c0b6d719..66adcf18080 100644 --- a/resources/variants/uni/uni_mini_0.30.inst.cfg +++ b/resources/variants/uni/uni_mini_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_mini_0.40.inst.cfg b/resources/variants/uni/uni_mini_0.40.inst.cfg index 4b40d2bc777..0aa9d3e787d 100644 --- a/resources/variants/uni/uni_mini_0.40.inst.cfg +++ b/resources/variants/uni/uni_mini_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_mini_0.50.inst.cfg b/resources/variants/uni/uni_mini_0.50.inst.cfg index b6c96a0283f..68fd46d45f1 100644 --- a/resources/variants/uni/uni_mini_0.50.inst.cfg +++ b/resources/variants/uni/uni_mini_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex2plus_0.2.inst.cfg b/resources/variants/vivedino/vivedino_trex2plus_0.2.inst.cfg index c505c64831f..d3aead1fe3b 100644 --- a/resources/variants/vivedino/vivedino_trex2plus_0.2.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex2plus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex2plus_0.4.inst.cfg b/resources/variants/vivedino/vivedino_trex2plus_0.4.inst.cfg index cb67e87aaa0..ea89fd11109 100644 --- a/resources/variants/vivedino/vivedino_trex2plus_0.4.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex2plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex2plus_0.6.inst.cfg b/resources/variants/vivedino/vivedino_trex2plus_0.6.inst.cfg index c5ad54b52b9..c30afb6068c 100644 --- a/resources/variants/vivedino/vivedino_trex2plus_0.6.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex2plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex2plus_0.8.inst.cfg b/resources/variants/vivedino/vivedino_trex2plus_0.8.inst.cfg index dda1465bc1c..a4c832975e4 100644 --- a/resources/variants/vivedino/vivedino_trex2plus_0.8.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex2plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex3_0.2.inst.cfg b/resources/variants/vivedino/vivedino_trex3_0.2.inst.cfg index ce4a0daf5ef..e341327f845 100644 --- a/resources/variants/vivedino/vivedino_trex3_0.2.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex3_0.4.inst.cfg b/resources/variants/vivedino/vivedino_trex3_0.4.inst.cfg index c1e15ee4d86..db442efed85 100644 --- a/resources/variants/vivedino/vivedino_trex3_0.4.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex3_0.6.inst.cfg b/resources/variants/vivedino/vivedino_trex3_0.6.inst.cfg index 53e39a4842f..85e144fc677 100644 --- a/resources/variants/vivedino/vivedino_trex3_0.6.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex3_0.8.inst.cfg b/resources/variants/vivedino/vivedino_trex3_0.8.inst.cfg index 84d866c76bc..63bf4722b01 100644 --- a/resources/variants/vivedino/vivedino_trex3_0.8.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.25.inst.cfg b/resources/variants/voron/voron0_120_v6_0.25.inst.cfg index e2a29b5e2ea..1c050856b29 100644 --- a/resources/variants/voron/voron0_120_v6_0.25.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.30.inst.cfg b/resources/variants/voron/voron0_120_v6_0.30.inst.cfg index a22bb078c6c..be6ea9cbabe 100644 --- a/resources/variants/voron/voron0_120_v6_0.30.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.40.inst.cfg b/resources/variants/voron/voron0_120_v6_0.40.inst.cfg index fa8590cccaf..e1a6ac0585c 100644 --- a/resources/variants/voron/voron0_120_v6_0.40.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.50.inst.cfg b/resources/variants/voron/voron0_120_v6_0.50.inst.cfg index 07ebee11821..527524441e5 100644 --- a/resources/variants/voron/voron0_120_v6_0.50.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.60.inst.cfg b/resources/variants/voron/voron0_120_v6_0.60.inst.cfg index 8486c644e95..30e74385722 100644 --- a/resources/variants/voron/voron0_120_v6_0.60.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.80.inst.cfg b/resources/variants/voron/voron0_120_v6_0.80.inst.cfg index 0a84fa93200..dfd412c82bd 100644 --- a/resources/variants/voron/voron0_120_v6_0.80.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.25.inst.cfg b/resources/variants/voron/voron2_250_v6_0.25.inst.cfg index 003af1860be..115fb34cb56 100644 --- a/resources/variants/voron/voron2_250_v6_0.25.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.30.inst.cfg b/resources/variants/voron/voron2_250_v6_0.30.inst.cfg index dacf75fff76..6d4ac7b9d55 100644 --- a/resources/variants/voron/voron2_250_v6_0.30.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.35.inst.cfg b/resources/variants/voron/voron2_250_v6_0.35.inst.cfg index fe1bf4c7cd5..344b4857891 100644 --- a/resources/variants/voron/voron2_250_v6_0.35.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.40.inst.cfg b/resources/variants/voron/voron2_250_v6_0.40.inst.cfg index 0ddac759b12..d0f10145838 100644 --- a/resources/variants/voron/voron2_250_v6_0.40.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.50.inst.cfg b/resources/variants/voron/voron2_250_v6_0.50.inst.cfg index 17cbb0edc45..16723a1fe57 100644 --- a/resources/variants/voron/voron2_250_v6_0.50.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.60.inst.cfg b/resources/variants/voron/voron2_250_v6_0.60.inst.cfg index 1d037bf31fd..9e4c7061eb9 100644 --- a/resources/variants/voron/voron2_250_v6_0.60.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.80.inst.cfg b/resources/variants/voron/voron2_250_v6_0.80.inst.cfg index 9869adb2c78..9841269b467 100644 --- a/resources/variants/voron/voron2_250_v6_0.80.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_volcano_0.40.inst.cfg b/resources/variants/voron/voron2_250_volcano_0.40.inst.cfg index 371495b3161..700a55fecb3 100644 --- a/resources/variants/voron/voron2_250_volcano_0.40.inst.cfg +++ b/resources/variants/voron/voron2_250_volcano_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_volcano_0.60.inst.cfg b/resources/variants/voron/voron2_250_volcano_0.60.inst.cfg index a939c1ae211..c87b19d9956 100644 --- a/resources/variants/voron/voron2_250_volcano_0.60.inst.cfg +++ b/resources/variants/voron/voron2_250_volcano_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_volcano_0.80.inst.cfg b/resources/variants/voron/voron2_250_volcano_0.80.inst.cfg index 717907672ae..327bbb42a8f 100644 --- a/resources/variants/voron/voron2_250_volcano_0.80.inst.cfg +++ b/resources/variants/voron/voron2_250_volcano_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_volcano_1.00.inst.cfg b/resources/variants/voron/voron2_250_volcano_1.00.inst.cfg index f2ffb7771a6..8329f46a895 100644 --- a/resources/variants/voron/voron2_250_volcano_1.00.inst.cfg +++ b/resources/variants/voron/voron2_250_volcano_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_volcano_1.20.inst.cfg b/resources/variants/voron/voron2_250_volcano_1.20.inst.cfg index fda1a1341bc..dd51720e8ed 100644 --- a/resources/variants/voron/voron2_250_volcano_1.20.inst.cfg +++ b/resources/variants/voron/voron2_250_volcano_1.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.25.inst.cfg b/resources/variants/voron/voron2_300_v6_0.25.inst.cfg index 224e50eb853..bcac7fb2cb6 100644 --- a/resources/variants/voron/voron2_300_v6_0.25.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.30.inst.cfg b/resources/variants/voron/voron2_300_v6_0.30.inst.cfg index b8eeeec8b44..cb37b9bb504 100644 --- a/resources/variants/voron/voron2_300_v6_0.30.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.35.inst.cfg b/resources/variants/voron/voron2_300_v6_0.35.inst.cfg index f07bd3e7bec..334d665eb27 100644 --- a/resources/variants/voron/voron2_300_v6_0.35.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.40.inst.cfg b/resources/variants/voron/voron2_300_v6_0.40.inst.cfg index 1540fabec14..584f52bd6c5 100644 --- a/resources/variants/voron/voron2_300_v6_0.40.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.50.inst.cfg b/resources/variants/voron/voron2_300_v6_0.50.inst.cfg index 2f408ec6acd..ee394e8e02c 100644 --- a/resources/variants/voron/voron2_300_v6_0.50.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.60.inst.cfg b/resources/variants/voron/voron2_300_v6_0.60.inst.cfg index 2030eba596c..9b83eb69b45 100644 --- a/resources/variants/voron/voron2_300_v6_0.60.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.80.inst.cfg b/resources/variants/voron/voron2_300_v6_0.80.inst.cfg index 47cfe743f73..e0277458764 100644 --- a/resources/variants/voron/voron2_300_v6_0.80.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_volcano_0.40.inst.cfg b/resources/variants/voron/voron2_300_volcano_0.40.inst.cfg index 3b61c9c392e..0b905e7f387 100644 --- a/resources/variants/voron/voron2_300_volcano_0.40.inst.cfg +++ b/resources/variants/voron/voron2_300_volcano_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_volcano_0.60.inst.cfg b/resources/variants/voron/voron2_300_volcano_0.60.inst.cfg index d578191e1e5..e9788c559cc 100644 --- a/resources/variants/voron/voron2_300_volcano_0.60.inst.cfg +++ b/resources/variants/voron/voron2_300_volcano_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_volcano_0.80.inst.cfg b/resources/variants/voron/voron2_300_volcano_0.80.inst.cfg index f705c431087..ea1154d3682 100644 --- a/resources/variants/voron/voron2_300_volcano_0.80.inst.cfg +++ b/resources/variants/voron/voron2_300_volcano_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_volcano_1.00.inst.cfg b/resources/variants/voron/voron2_300_volcano_1.00.inst.cfg index 4bf563951bd..b1fe3067943 100644 --- a/resources/variants/voron/voron2_300_volcano_1.00.inst.cfg +++ b/resources/variants/voron/voron2_300_volcano_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_volcano_1.20.inst.cfg b/resources/variants/voron/voron2_300_volcano_1.20.inst.cfg index 97e8a3284b8..5d0d2bc2ba7 100644 --- a/resources/variants/voron/voron2_300_volcano_1.20.inst.cfg +++ b/resources/variants/voron/voron2_300_volcano_1.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.25.inst.cfg b/resources/variants/voron/voron2_350_v6_0.25.inst.cfg index 86c1c6f4ad8..747fc478ecb 100644 --- a/resources/variants/voron/voron2_350_v6_0.25.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.30.inst.cfg b/resources/variants/voron/voron2_350_v6_0.30.inst.cfg index 0e3d7acefda..4ed5b5f4780 100644 --- a/resources/variants/voron/voron2_350_v6_0.30.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.35.inst.cfg b/resources/variants/voron/voron2_350_v6_0.35.inst.cfg index 512153bedac..e4cefb26739 100644 --- a/resources/variants/voron/voron2_350_v6_0.35.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.40.inst.cfg b/resources/variants/voron/voron2_350_v6_0.40.inst.cfg index d6fe7433d63..cf3189d2d8c 100644 --- a/resources/variants/voron/voron2_350_v6_0.40.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.50.inst.cfg b/resources/variants/voron/voron2_350_v6_0.50.inst.cfg index b16e3b8e812..1d5840d1340 100644 --- a/resources/variants/voron/voron2_350_v6_0.50.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.60.inst.cfg b/resources/variants/voron/voron2_350_v6_0.60.inst.cfg index 477b72e0fa1..0f2f7987234 100644 --- a/resources/variants/voron/voron2_350_v6_0.60.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.80.inst.cfg b/resources/variants/voron/voron2_350_v6_0.80.inst.cfg index 40cb92eba59..092ebaf869a 100644 --- a/resources/variants/voron/voron2_350_v6_0.80.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_volcano_0.40.inst.cfg b/resources/variants/voron/voron2_350_volcano_0.40.inst.cfg index ec16aaa2698..c4e67a6e4ba 100644 --- a/resources/variants/voron/voron2_350_volcano_0.40.inst.cfg +++ b/resources/variants/voron/voron2_350_volcano_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_volcano_0.60.inst.cfg b/resources/variants/voron/voron2_350_volcano_0.60.inst.cfg index de966abb4e7..e214e4a39a0 100644 --- a/resources/variants/voron/voron2_350_volcano_0.60.inst.cfg +++ b/resources/variants/voron/voron2_350_volcano_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_volcano_0.80.inst.cfg b/resources/variants/voron/voron2_350_volcano_0.80.inst.cfg index fccb25f12b5..16fb67b22f7 100644 --- a/resources/variants/voron/voron2_350_volcano_0.80.inst.cfg +++ b/resources/variants/voron/voron2_350_volcano_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_volcano_1.00.inst.cfg b/resources/variants/voron/voron2_350_volcano_1.00.inst.cfg index f24c10015dd..603ca7f7f5b 100644 --- a/resources/variants/voron/voron2_350_volcano_1.00.inst.cfg +++ b/resources/variants/voron/voron2_350_volcano_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_volcano_1.20.inst.cfg b/resources/variants/voron/voron2_350_volcano_1.20.inst.cfg index 599c5064aae..e8289b75881 100644 --- a/resources/variants/voron/voron2_350_volcano_1.20.inst.cfg +++ b/resources/variants/voron/voron2_350_volcano_1.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.25.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.25.inst.cfg index a5869586f64..a640cb732de 100644 --- a/resources/variants/voron/voron2_custom_v6_0.25.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.30.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.30.inst.cfg index edb540b1a24..2574e3e45cc 100644 --- a/resources/variants/voron/voron2_custom_v6_0.30.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.35.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.35.inst.cfg index a2bb53398d8..26e7ac31493 100644 --- a/resources/variants/voron/voron2_custom_v6_0.35.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.40.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.40.inst.cfg index 749f18a3dd6..d6eb771afaa 100644 --- a/resources/variants/voron/voron2_custom_v6_0.40.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.50.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.50.inst.cfg index c6c21baaf04..310833dbc0b 100644 --- a/resources/variants/voron/voron2_custom_v6_0.50.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.60.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.60.inst.cfg index 8e8a1e79009..05aaa43d324 100644 --- a/resources/variants/voron/voron2_custom_v6_0.60.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.80.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.80.inst.cfg index 89bee318c72..e662fd7edf0 100644 --- a/resources/variants/voron/voron2_custom_v6_0.80.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_volcano_0.40.inst.cfg b/resources/variants/voron/voron2_custom_volcano_0.40.inst.cfg index daf4c54a063..61b74ca3130 100644 --- a/resources/variants/voron/voron2_custom_volcano_0.40.inst.cfg +++ b/resources/variants/voron/voron2_custom_volcano_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_volcano_0.60.inst.cfg b/resources/variants/voron/voron2_custom_volcano_0.60.inst.cfg index e0d62380f99..4b533d4b6a4 100644 --- a/resources/variants/voron/voron2_custom_volcano_0.60.inst.cfg +++ b/resources/variants/voron/voron2_custom_volcano_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_volcano_0.80.inst.cfg b/resources/variants/voron/voron2_custom_volcano_0.80.inst.cfg index 312908a37c8..2b66bd9a3c5 100644 --- a/resources/variants/voron/voron2_custom_volcano_0.80.inst.cfg +++ b/resources/variants/voron/voron2_custom_volcano_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_volcano_1.00.inst.cfg b/resources/variants/voron/voron2_custom_volcano_1.00.inst.cfg index 6f62852f179..ccb7fd07769 100644 --- a/resources/variants/voron/voron2_custom_volcano_1.00.inst.cfg +++ b/resources/variants/voron/voron2_custom_volcano_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_volcano_1.20.inst.cfg b/resources/variants/voron/voron2_custom_volcano_1.20.inst.cfg index c5d3452befc..0c83605ce16 100644 --- a/resources/variants/voron/voron2_custom_volcano_1.20.inst.cfg +++ b/resources/variants/voron/voron2_custom_volcano_1.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_250_0.25.inst.cfg b/resources/variants/voron/voron_trident_250_0.25.inst.cfg index 2ba2351c560..20c74f4145f 100644 --- a/resources/variants/voron/voron_trident_250_0.25.inst.cfg +++ b/resources/variants/voron/voron_trident_250_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_250_0.40.inst.cfg b/resources/variants/voron/voron_trident_250_0.40.inst.cfg index aea87773651..2c8a35bc3a8 100644 --- a/resources/variants/voron/voron_trident_250_0.40.inst.cfg +++ b/resources/variants/voron/voron_trident_250_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_250_0.50.inst.cfg b/resources/variants/voron/voron_trident_250_0.50.inst.cfg index deae0b748c2..ca6224ff72d 100644 --- a/resources/variants/voron/voron_trident_250_0.50.inst.cfg +++ b/resources/variants/voron/voron_trident_250_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_250_0.60.inst.cfg b/resources/variants/voron/voron_trident_250_0.60.inst.cfg index fe7ceef87e0..2487a87fa15 100644 --- a/resources/variants/voron/voron_trident_250_0.60.inst.cfg +++ b/resources/variants/voron/voron_trident_250_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_250_0.80.inst.cfg b/resources/variants/voron/voron_trident_250_0.80.inst.cfg index 911fd5bc235..c513b2ccb38 100644 --- a/resources/variants/voron/voron_trident_250_0.80.inst.cfg +++ b/resources/variants/voron/voron_trident_250_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_300_0.25.inst.cfg b/resources/variants/voron/voron_trident_300_0.25.inst.cfg index 99b00d76839..120e03f615a 100644 --- a/resources/variants/voron/voron_trident_300_0.25.inst.cfg +++ b/resources/variants/voron/voron_trident_300_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_300_0.40.inst.cfg b/resources/variants/voron/voron_trident_300_0.40.inst.cfg index 5d427352bb5..2c522afeb69 100644 --- a/resources/variants/voron/voron_trident_300_0.40.inst.cfg +++ b/resources/variants/voron/voron_trident_300_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_300_0.50.inst.cfg b/resources/variants/voron/voron_trident_300_0.50.inst.cfg index 5a9bde2f79e..3ab11833a53 100644 --- a/resources/variants/voron/voron_trident_300_0.50.inst.cfg +++ b/resources/variants/voron/voron_trident_300_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_300_0.60.inst.cfg b/resources/variants/voron/voron_trident_300_0.60.inst.cfg index 569e9ecc33a..1623f6c293c 100644 --- a/resources/variants/voron/voron_trident_300_0.60.inst.cfg +++ b/resources/variants/voron/voron_trident_300_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_300_0.80.inst.cfg b/resources/variants/voron/voron_trident_300_0.80.inst.cfg index d9d23712ae1..45aafd8265e 100644 --- a/resources/variants/voron/voron_trident_300_0.80.inst.cfg +++ b/resources/variants/voron/voron_trident_300_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_350_0.25.inst.cfg b/resources/variants/voron/voron_trident_350_0.25.inst.cfg index 8d124cca032..3ae6061c8ba 100644 --- a/resources/variants/voron/voron_trident_350_0.25.inst.cfg +++ b/resources/variants/voron/voron_trident_350_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_350_0.40.inst.cfg b/resources/variants/voron/voron_trident_350_0.40.inst.cfg index 8340efe9abd..dee2a7ba3d7 100644 --- a/resources/variants/voron/voron_trident_350_0.40.inst.cfg +++ b/resources/variants/voron/voron_trident_350_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_350_0.50.inst.cfg b/resources/variants/voron/voron_trident_350_0.50.inst.cfg index 896a12aee72..7a058f6d243 100644 --- a/resources/variants/voron/voron_trident_350_0.50.inst.cfg +++ b/resources/variants/voron/voron_trident_350_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_350_0.60.inst.cfg b/resources/variants/voron/voron_trident_350_0.60.inst.cfg index f93347b676d..910119a1ab5 100644 --- a/resources/variants/voron/voron_trident_350_0.60.inst.cfg +++ b/resources/variants/voron/voron_trident_350_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_350_0.80.inst.cfg b/resources/variants/voron/voron_trident_350_0.80.inst.cfg index cd5cbf44107..28780c78172 100644 --- a/resources/variants/voron/voron_trident_350_0.80.inst.cfg +++ b/resources/variants/voron/voron_trident_350_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.2.inst.cfg b/resources/variants/vzbot/vzbot_235_0.2.inst.cfg index fa2cb94114d..a9257c13309 100644 --- a/resources/variants/vzbot/vzbot_235_0.2.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.3.inst.cfg b/resources/variants/vzbot/vzbot_235_0.3.inst.cfg index a06febff04d..f7465c1b0fa 100644 --- a/resources/variants/vzbot/vzbot_235_0.3.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.4.inst.cfg b/resources/variants/vzbot/vzbot_235_0.4.inst.cfg index 8247a4d7087..5e6946a90ed 100644 --- a/resources/variants/vzbot/vzbot_235_0.4.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.5.inst.cfg b/resources/variants/vzbot/vzbot_235_0.5.inst.cfg index 564aecbf92f..431859e5379 100644 --- a/resources/variants/vzbot/vzbot_235_0.5.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.6.inst.cfg b/resources/variants/vzbot/vzbot_235_0.6.inst.cfg index c84d0f5c576..a1b50cd27d0 100644 --- a/resources/variants/vzbot/vzbot_235_0.6.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.8.inst.cfg b/resources/variants/vzbot/vzbot_235_0.8.inst.cfg index dfe232062f8..fe74be22a54 100644 --- a/resources/variants/vzbot/vzbot_235_0.8.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_1.0.inst.cfg b/resources/variants/vzbot/vzbot_235_1.0.inst.cfg index 1df83fd5323..05c82524339 100644 --- a/resources/variants/vzbot/vzbot_235_1.0.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.2.inst.cfg b/resources/variants/vzbot/vzbot_330_0.2.inst.cfg index 316e2a476ce..c24abe0c1e9 100644 --- a/resources/variants/vzbot/vzbot_330_0.2.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.3.inst.cfg b/resources/variants/vzbot/vzbot_330_0.3.inst.cfg index 431f262e63a..c660618cb62 100644 --- a/resources/variants/vzbot/vzbot_330_0.3.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.4.inst.cfg b/resources/variants/vzbot/vzbot_330_0.4.inst.cfg index bb954427a76..628179d0549 100644 --- a/resources/variants/vzbot/vzbot_330_0.4.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.5.inst.cfg b/resources/variants/vzbot/vzbot_330_0.5.inst.cfg index eac9b47c5e3..2cd10160359 100644 --- a/resources/variants/vzbot/vzbot_330_0.5.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.6.inst.cfg b/resources/variants/vzbot/vzbot_330_0.6.inst.cfg index 6ecac4a4e6d..b4dd2d553b4 100644 --- a/resources/variants/vzbot/vzbot_330_0.6.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.8.inst.cfg b/resources/variants/vzbot/vzbot_330_0.8.inst.cfg index 654970c4412..763c2896ef5 100644 --- a/resources/variants/vzbot/vzbot_330_0.8.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_1.0.inst.cfg b/resources/variants/vzbot/vzbot_330_1.0.inst.cfg index 0285df5ae54..81e8965c38f 100644 --- a/resources/variants/vzbot/vzbot_330_1.0.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.2.inst.cfg b/resources/variants/vzbot/vzbot_base_0.2.inst.cfg index 5be96194af5..8f222cf3b67 100644 --- a/resources/variants/vzbot/vzbot_base_0.2.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.3.inst.cfg b/resources/variants/vzbot/vzbot_base_0.3.inst.cfg index 05f66d75fe8..6d0ca279d48 100644 --- a/resources/variants/vzbot/vzbot_base_0.3.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.4.inst.cfg b/resources/variants/vzbot/vzbot_base_0.4.inst.cfg index 37bcf18c7a9..c96251e4dee 100644 --- a/resources/variants/vzbot/vzbot_base_0.4.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.5.inst.cfg b/resources/variants/vzbot/vzbot_base_0.5.inst.cfg index d212c38eb11..5f423faf6db 100644 --- a/resources/variants/vzbot/vzbot_base_0.5.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.6.inst.cfg b/resources/variants/vzbot/vzbot_base_0.6.inst.cfg index 85760340fa3..b6a7ba7cd2a 100644 --- a/resources/variants/vzbot/vzbot_base_0.6.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.8.inst.cfg b/resources/variants/vzbot/vzbot_base_0.8.inst.cfg index 86f2a6fc181..f1f8ce8dde1 100644 --- a/resources/variants/vzbot/vzbot_base_0.8.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_1.0.inst.cfg b/resources/variants/vzbot/vzbot_base_1.0.inst.cfg index 7466d2aa72b..d6e97c5dc67 100644 --- a/resources/variants/vzbot/vzbot_base_1.0.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.2.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.2.inst.cfg index d146c747929..842899a87da 100644 --- a/resources/variants/vzbot/vzbot_custom_0.2.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.3.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.3.inst.cfg index e0dd0299dbe..e4d1d430be6 100644 --- a/resources/variants/vzbot/vzbot_custom_0.3.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.4.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.4.inst.cfg index bf7d9d6117e..0deed9bddc4 100644 --- a/resources/variants/vzbot/vzbot_custom_0.4.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.5.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.5.inst.cfg index bf0da7276e8..2c1b78428da 100644 --- a/resources/variants/vzbot/vzbot_custom_0.5.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.6.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.6.inst.cfg index 3524f585de5..44975147887 100644 --- a/resources/variants/vzbot/vzbot_custom_0.6.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.8.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.8.inst.cfg index c8db19a83cc..8c9fc89fde6 100644 --- a/resources/variants/vzbot/vzbot_custom_0.8.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_1.0.inst.cfg b/resources/variants/vzbot/vzbot_custom_1.0.inst.cfg index df7635ecb5a..6c068f79b1e 100644 --- a/resources/variants/vzbot/vzbot_custom_1.0.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/weedo/weedo_x40_weedo_0.4.inst.cfg b/resources/variants/weedo/weedo_x40_weedo_0.4.inst.cfg index a350aa9eeff..9d05b2fb231 100644 --- a/resources/variants/weedo/weedo_x40_weedo_0.4.inst.cfg +++ b/resources/variants/weedo/weedo_x40_weedo_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/weedo/weedo_x40_weedo_0.6.inst.cfg b/resources/variants/weedo/weedo_x40_weedo_0.6.inst.cfg index 9f55df85c04..815369bc272 100644 --- a/resources/variants/weedo/weedo_x40_weedo_0.6.inst.cfg +++ b/resources/variants/weedo/weedo_x40_weedo_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/weedo/weedo_x40_weedo_0.8.inst.cfg b/resources/variants/weedo/weedo_x40_weedo_0.8.inst.cfg index 0deade08694..da97849b695 100644 --- a/resources/variants/weedo/weedo_x40_weedo_0.8.inst.cfg +++ b/resources/variants/weedo/weedo_x40_weedo_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_base_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_base_0.40.inst.cfg index 9181d019281..17e90ab90ed 100644 --- a/resources/variants/xyz_printing/xyzprinting_base_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_1p0_pro_copper_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_1p0_pro_copper_0.40.inst.cfg index 157baad8b46..020b6c5a436 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_1p0_pro_copper_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_1p0_pro_copper_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40.inst.cfg index 6d9f9123e0e..cf7cbea3471 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40.inst.cfg index 7d4c829d96a..9f40514694e 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40.inst.cfg index 40062a321a7..a6e75293f38 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40.inst.cfg index 0aaef4de4aa..70b3254b58e 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40.inst.cfg index 491861dfa76..9a064a3773c 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40.inst.cfg index 3c56030b110..bc19df88e04 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_hs_0.40.inst.cfg index a0f71419edb..b9d10157540 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_ss_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_ss_0.40.inst.cfg index 1b1ad1c1850..eb89d9c4347 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_ss_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_ss_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hs_0.40.inst.cfg index 78b5989c1c9..b2e4e94d330 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hsht_0.60.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hsht_0.60.inst.cfg index fc276f59978..13c4eadee72 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hsht_0.60.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hsht_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_super_copper_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_super_copper_0.40.inst.cfg index 7362bc75520..fab6b115f00 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_super_copper_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_super_copper_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_super_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_super_hs_0.40.inst.cfg index ae4bb645821..0614a7c60a7 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_super_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_super_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.20.inst.cfg b/resources/variants/zav/zav_base_0.20.inst.cfg index 4e44a094a29..ad0e738e39d 100644 --- a/resources/variants/zav/zav_base_0.20.inst.cfg +++ b/resources/variants/zav/zav_base_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.25.inst.cfg b/resources/variants/zav/zav_base_0.25.inst.cfg index a33ac4b63c2..f383c876ef9 100644 --- a/resources/variants/zav/zav_base_0.25.inst.cfg +++ b/resources/variants/zav/zav_base_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.30.inst.cfg b/resources/variants/zav/zav_base_0.30.inst.cfg index f00379132b4..65da7fa1428 100644 --- a/resources/variants/zav/zav_base_0.30.inst.cfg +++ b/resources/variants/zav/zav_base_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.35.inst.cfg b/resources/variants/zav/zav_base_0.35.inst.cfg index a89f471161e..a2dfed7389c 100644 --- a/resources/variants/zav/zav_base_0.35.inst.cfg +++ b/resources/variants/zav/zav_base_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.40.inst.cfg b/resources/variants/zav/zav_base_0.40.inst.cfg index d0c0e2aa072..8a9ae2ab915 100644 --- a/resources/variants/zav/zav_base_0.40.inst.cfg +++ b/resources/variants/zav/zav_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.45.inst.cfg b/resources/variants/zav/zav_base_0.45.inst.cfg index 717f95274dd..9df3434ecf4 100644 --- a/resources/variants/zav/zav_base_0.45.inst.cfg +++ b/resources/variants/zav/zav_base_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.50.inst.cfg b/resources/variants/zav/zav_base_0.50.inst.cfg index e9acba6ec19..4e94f54a22f 100644 --- a/resources/variants/zav/zav_base_0.50.inst.cfg +++ b/resources/variants/zav/zav_base_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.60.inst.cfg b/resources/variants/zav/zav_base_0.60.inst.cfg index 4eb3a28ecb0..5198dc479a3 100644 --- a/resources/variants/zav/zav_base_0.60.inst.cfg +++ b/resources/variants/zav/zav_base_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.80.inst.cfg b/resources/variants/zav/zav_base_0.80.inst.cfg index 936bcc18d52..4fc53197d47 100644 --- a/resources/variants/zav/zav_base_0.80.inst.cfg +++ b/resources/variants/zav/zav_base_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_base_1.00.inst.cfg b/resources/variants/zav/zav_base_1.00.inst.cfg index 3beda59b755..a4995d2ad0f 100644 --- a/resources/variants/zav/zav_base_1.00.inst.cfg +++ b/resources/variants/zav/zav_base_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.20.inst.cfg b/resources/variants/zav/zav_big_0.20.inst.cfg index 819d5f0ee56..10fd2eaf809 100644 --- a/resources/variants/zav/zav_big_0.20.inst.cfg +++ b/resources/variants/zav/zav_big_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.25.inst.cfg b/resources/variants/zav/zav_big_0.25.inst.cfg index 6fd29ce3946..d52f66eb51e 100644 --- a/resources/variants/zav/zav_big_0.25.inst.cfg +++ b/resources/variants/zav/zav_big_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.30.inst.cfg b/resources/variants/zav/zav_big_0.30.inst.cfg index 02d876e6412..70a15fb6a1e 100644 --- a/resources/variants/zav/zav_big_0.30.inst.cfg +++ b/resources/variants/zav/zav_big_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.35.inst.cfg b/resources/variants/zav/zav_big_0.35.inst.cfg index e9def8ef5ff..d57c6c0fef4 100644 --- a/resources/variants/zav/zav_big_0.35.inst.cfg +++ b/resources/variants/zav/zav_big_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.40.inst.cfg b/resources/variants/zav/zav_big_0.40.inst.cfg index b7086e0a4bd..bb82e0db549 100644 --- a/resources/variants/zav/zav_big_0.40.inst.cfg +++ b/resources/variants/zav/zav_big_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.45.inst.cfg b/resources/variants/zav/zav_big_0.45.inst.cfg index 676dce58dd3..904d4911e2b 100644 --- a/resources/variants/zav/zav_big_0.45.inst.cfg +++ b/resources/variants/zav/zav_big_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.50.inst.cfg b/resources/variants/zav/zav_big_0.50.inst.cfg index 34cba143edd..00de9e8790f 100644 --- a/resources/variants/zav/zav_big_0.50.inst.cfg +++ b/resources/variants/zav/zav_big_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.60.inst.cfg b/resources/variants/zav/zav_big_0.60.inst.cfg index 8ffe1f0474f..67c856f703b 100644 --- a/resources/variants/zav/zav_big_0.60.inst.cfg +++ b/resources/variants/zav/zav_big_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.80.inst.cfg b/resources/variants/zav/zav_big_0.80.inst.cfg index 362065f210b..0b18636938c 100644 --- a/resources/variants/zav/zav_big_0.80.inst.cfg +++ b/resources/variants/zav/zav_big_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_big_1.00.inst.cfg b/resources/variants/zav/zav_big_1.00.inst.cfg index df2a7450572..a726d9d05b3 100644 --- a/resources/variants/zav/zav_big_1.00.inst.cfg +++ b/resources/variants/zav/zav_big_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.20.inst.cfg b/resources/variants/zav/zav_bigplus_0.20.inst.cfg index 4fa17d9e1f0..331dd6f067c 100644 --- a/resources/variants/zav/zav_bigplus_0.20.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.25.inst.cfg b/resources/variants/zav/zav_bigplus_0.25.inst.cfg index e9a4d63228e..80974382326 100644 --- a/resources/variants/zav/zav_bigplus_0.25.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.30.inst.cfg b/resources/variants/zav/zav_bigplus_0.30.inst.cfg index 31c10f4b681..838d6f4394f 100644 --- a/resources/variants/zav/zav_bigplus_0.30.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.35.inst.cfg b/resources/variants/zav/zav_bigplus_0.35.inst.cfg index 0e0cff36db5..1525949e3bf 100644 --- a/resources/variants/zav/zav_bigplus_0.35.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.40.inst.cfg b/resources/variants/zav/zav_bigplus_0.40.inst.cfg index 5648641180d..b463d344add 100644 --- a/resources/variants/zav/zav_bigplus_0.40.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.45.inst.cfg b/resources/variants/zav/zav_bigplus_0.45.inst.cfg index 9365c882fb2..15b91bf090d 100644 --- a/resources/variants/zav/zav_bigplus_0.45.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.50.inst.cfg b/resources/variants/zav/zav_bigplus_0.50.inst.cfg index 6fa5aae4a30..7fbdcae3dc3 100644 --- a/resources/variants/zav/zav_bigplus_0.50.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.60.inst.cfg b/resources/variants/zav/zav_bigplus_0.60.inst.cfg index 1d56233594f..a017964412f 100644 --- a/resources/variants/zav/zav_bigplus_0.60.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.80.inst.cfg b/resources/variants/zav/zav_bigplus_0.80.inst.cfg index 38e0c446faf..7d05464c35c 100644 --- a/resources/variants/zav/zav_bigplus_0.80.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_1.00.inst.cfg b/resources/variants/zav/zav_bigplus_1.00.inst.cfg index b183720df79..9df217c9d28 100644 --- a/resources/variants/zav/zav_bigplus_1.00.inst.cfg +++ b/resources/variants/zav/zav_bigplus_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.20.inst.cfg b/resources/variants/zav/zav_l_0.20.inst.cfg index 570ad1e8045..36c221e17e2 100644 --- a/resources/variants/zav/zav_l_0.20.inst.cfg +++ b/resources/variants/zav/zav_l_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.25.inst.cfg b/resources/variants/zav/zav_l_0.25.inst.cfg index 0bb46590a29..5c70cc59e2e 100644 --- a/resources/variants/zav/zav_l_0.25.inst.cfg +++ b/resources/variants/zav/zav_l_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.30.inst.cfg b/resources/variants/zav/zav_l_0.30.inst.cfg index 2031947fe32..b3b27911ac9 100644 --- a/resources/variants/zav/zav_l_0.30.inst.cfg +++ b/resources/variants/zav/zav_l_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.35.inst.cfg b/resources/variants/zav/zav_l_0.35.inst.cfg index c94b03b5939..363456995d5 100644 --- a/resources/variants/zav/zav_l_0.35.inst.cfg +++ b/resources/variants/zav/zav_l_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.40.inst.cfg b/resources/variants/zav/zav_l_0.40.inst.cfg index a9439a74220..c6669ad9a44 100644 --- a/resources/variants/zav/zav_l_0.40.inst.cfg +++ b/resources/variants/zav/zav_l_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.45.inst.cfg b/resources/variants/zav/zav_l_0.45.inst.cfg index c2962b60bac..65db0556eaa 100644 --- a/resources/variants/zav/zav_l_0.45.inst.cfg +++ b/resources/variants/zav/zav_l_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.50.inst.cfg b/resources/variants/zav/zav_l_0.50.inst.cfg index d0ce3b7f886..e3f2ef936d7 100644 --- a/resources/variants/zav/zav_l_0.50.inst.cfg +++ b/resources/variants/zav/zav_l_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.60.inst.cfg b/resources/variants/zav/zav_l_0.60.inst.cfg index eec1d7d3a26..4931819d79e 100644 --- a/resources/variants/zav/zav_l_0.60.inst.cfg +++ b/resources/variants/zav/zav_l_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.80.inst.cfg b/resources/variants/zav/zav_l_0.80.inst.cfg index 9a151bc35bc..e142040df62 100644 --- a/resources/variants/zav/zav_l_0.80.inst.cfg +++ b/resources/variants/zav/zav_l_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_l_1.00.inst.cfg b/resources/variants/zav/zav_l_1.00.inst.cfg index 32e430d2093..32bd8bc3abc 100644 --- a/resources/variants/zav/zav_l_1.00.inst.cfg +++ b/resources/variants/zav/zav_l_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.20.inst.cfg b/resources/variants/zav/zav_max_0.20.inst.cfg index e02d20d6b50..b7d24f2b1b4 100644 --- a/resources/variants/zav/zav_max_0.20.inst.cfg +++ b/resources/variants/zav/zav_max_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.25.inst.cfg b/resources/variants/zav/zav_max_0.25.inst.cfg index 453ab07d8f6..d3b54f4cbd8 100644 --- a/resources/variants/zav/zav_max_0.25.inst.cfg +++ b/resources/variants/zav/zav_max_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.30.inst.cfg b/resources/variants/zav/zav_max_0.30.inst.cfg index cbc4dca202f..cc335e2d234 100644 --- a/resources/variants/zav/zav_max_0.30.inst.cfg +++ b/resources/variants/zav/zav_max_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.35.inst.cfg b/resources/variants/zav/zav_max_0.35.inst.cfg index bb82e132c5d..a5daa9a2669 100644 --- a/resources/variants/zav/zav_max_0.35.inst.cfg +++ b/resources/variants/zav/zav_max_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.40.inst.cfg b/resources/variants/zav/zav_max_0.40.inst.cfg index b3d86fc8e71..f0d48219f4c 100644 --- a/resources/variants/zav/zav_max_0.40.inst.cfg +++ b/resources/variants/zav/zav_max_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.45.inst.cfg b/resources/variants/zav/zav_max_0.45.inst.cfg index c94ba4c136e..1ec70c2d33c 100644 --- a/resources/variants/zav/zav_max_0.45.inst.cfg +++ b/resources/variants/zav/zav_max_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.50.inst.cfg b/resources/variants/zav/zav_max_0.50.inst.cfg index cd2deaa6111..6e3c61c1425 100644 --- a/resources/variants/zav/zav_max_0.50.inst.cfg +++ b/resources/variants/zav/zav_max_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.60.inst.cfg b/resources/variants/zav/zav_max_0.60.inst.cfg index d18e1b0f4c9..56dcfa5b4e4 100644 --- a/resources/variants/zav/zav_max_0.60.inst.cfg +++ b/resources/variants/zav/zav_max_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.80.inst.cfg b/resources/variants/zav/zav_max_0.80.inst.cfg index e65fcfa0693..7899a7d3215 100644 --- a/resources/variants/zav/zav_max_0.80.inst.cfg +++ b/resources/variants/zav/zav_max_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_max_1.00.inst.cfg b/resources/variants/zav/zav_max_1.00.inst.cfg index 4b75bb9fc02..c14b0b25a07 100644 --- a/resources/variants/zav/zav_max_1.00.inst.cfg +++ b/resources/variants/zav/zav_max_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.20.inst.cfg b/resources/variants/zav/zav_maxpro_0.20.inst.cfg index 0f250052ab2..2f693153e24 100644 --- a/resources/variants/zav/zav_maxpro_0.20.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.25.inst.cfg b/resources/variants/zav/zav_maxpro_0.25.inst.cfg index a9f2ec80583..07b3cbb2996 100644 --- a/resources/variants/zav/zav_maxpro_0.25.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.30.inst.cfg b/resources/variants/zav/zav_maxpro_0.30.inst.cfg index 0fcd6148289..becb97fbafe 100644 --- a/resources/variants/zav/zav_maxpro_0.30.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.35.inst.cfg b/resources/variants/zav/zav_maxpro_0.35.inst.cfg index e7d8de04df0..bf9ad26e28a 100644 --- a/resources/variants/zav/zav_maxpro_0.35.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.40.inst.cfg b/resources/variants/zav/zav_maxpro_0.40.inst.cfg index b8e7e3f5099..bd99c768857 100644 --- a/resources/variants/zav/zav_maxpro_0.40.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.45.inst.cfg b/resources/variants/zav/zav_maxpro_0.45.inst.cfg index 6b7bd64bf38..8848639582e 100644 --- a/resources/variants/zav/zav_maxpro_0.45.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.50.inst.cfg b/resources/variants/zav/zav_maxpro_0.50.inst.cfg index 7db70a401a5..9aba2b9fbbb 100644 --- a/resources/variants/zav/zav_maxpro_0.50.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.60.inst.cfg b/resources/variants/zav/zav_maxpro_0.60.inst.cfg index ba8e30d5b92..027a4fc96a4 100644 --- a/resources/variants/zav/zav_maxpro_0.60.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.80.inst.cfg b/resources/variants/zav/zav_maxpro_0.80.inst.cfg index e8fe9a1bf4f..1ef39b36630 100644 --- a/resources/variants/zav/zav_maxpro_0.80.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_1.00.inst.cfg b/resources/variants/zav/zav_maxpro_1.00.inst.cfg index 4c65159ccfc..15872422f6a 100644 --- a/resources/variants/zav/zav_maxpro_1.00.inst.cfg +++ b/resources/variants/zav/zav_maxpro_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.20.inst.cfg b/resources/variants/zav/zav_mini_0.20.inst.cfg index 10a6733a1b0..f66717ae192 100644 --- a/resources/variants/zav/zav_mini_0.20.inst.cfg +++ b/resources/variants/zav/zav_mini_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.25.inst.cfg b/resources/variants/zav/zav_mini_0.25.inst.cfg index 5b32e6cab09..fe43c80041c 100644 --- a/resources/variants/zav/zav_mini_0.25.inst.cfg +++ b/resources/variants/zav/zav_mini_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.30.inst.cfg b/resources/variants/zav/zav_mini_0.30.inst.cfg index e3680c1c009..d393760b573 100644 --- a/resources/variants/zav/zav_mini_0.30.inst.cfg +++ b/resources/variants/zav/zav_mini_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.35.inst.cfg b/resources/variants/zav/zav_mini_0.35.inst.cfg index b0b2dc4cb7a..f33ef12e6fa 100644 --- a/resources/variants/zav/zav_mini_0.35.inst.cfg +++ b/resources/variants/zav/zav_mini_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.40.inst.cfg b/resources/variants/zav/zav_mini_0.40.inst.cfg index 8ad44c42fb6..3d16bc3a110 100644 --- a/resources/variants/zav/zav_mini_0.40.inst.cfg +++ b/resources/variants/zav/zav_mini_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.45.inst.cfg b/resources/variants/zav/zav_mini_0.45.inst.cfg index 787f44e6da8..827aa1fe3bd 100644 --- a/resources/variants/zav/zav_mini_0.45.inst.cfg +++ b/resources/variants/zav/zav_mini_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.50.inst.cfg b/resources/variants/zav/zav_mini_0.50.inst.cfg index dfd4c5b36ef..70e5fe2fd74 100644 --- a/resources/variants/zav/zav_mini_0.50.inst.cfg +++ b/resources/variants/zav/zav_mini_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.60.inst.cfg b/resources/variants/zav/zav_mini_0.60.inst.cfg index 3588219551b..d7f4915d171 100644 --- a/resources/variants/zav/zav_mini_0.60.inst.cfg +++ b/resources/variants/zav/zav_mini_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.80.inst.cfg b/resources/variants/zav/zav_mini_0.80.inst.cfg index 18082058719..f1518d7e778 100644 --- a/resources/variants/zav/zav_mini_0.80.inst.cfg +++ b/resources/variants/zav/zav_mini_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_mini_1.00.inst.cfg b/resources/variants/zav/zav_mini_1.00.inst.cfg index f47f8777f3a..3e85f4c25fe 100644 --- a/resources/variants/zav/zav_mini_1.00.inst.cfg +++ b/resources/variants/zav/zav_mini_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] From 9f5a952d110e09fe35799b8325247a721fbe2007 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Fri, 15 Mar 2024 10:28:29 +0100 Subject: [PATCH 675/765] changelog for beta CURA-11738 --- resources/texts/change_log.txt | 69 ++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) diff --git a/resources/texts/change_log.txt b/resources/texts/change_log.txt index de95562b6eb..8861ee60ea1 100644 --- a/resources/texts/change_log.txt +++ b/resources/texts/change_log.txt @@ -1,3 +1,72 @@ +[5.7] +* New features and improvements: +- Introduced a way that you can open models from Thingiverse from your browser +- Introduced Universal Cura Project files. They contain models and settings and can be shared with people who have different printers. +- Introduced settings that define the raft offset for top, middle and bottom raft layers +- Introduced an analyzing tool in the cura engine to better track slicing crashes, and started fixing the biggest reports coming in. +- New Primetower option; Sparse, next to the current Bucket, contributed by @wawanbreton +- Brim only on the inside setting +- Allowing to define print sequence manually, contributed by @alexandr-vladimirov (Github) +- Introduced a setting to apply Monotonic ordering to the Raft Top Surface +- Introduced a Raft Wall Line Count for the Bottom, Middle and Top of the raft +- The play speed of the nozzle in the preview is now closer to the movement of the printhead +- Introduced an option to choose Drop Model to Buildplate every time a project file is loaded +- Introduced DisplayInfoOnLCD Post Processing Script which combines DisplayFilenameAndLayerOnLCD with DisplayProgress, contributed by @GregValiant +- Introduced alternative camera navigation similar to FreeCAD Trackpad, contributed by @quarnster +- Introduced a way to set print sequence manually when printing One at a time, contributed by @alexandr-vladimirov + + +* MethodX specific improvements +- Enabled Print over Cloud for UltiMaker MethodX and Method XL printers +- Introduced ASA, SR30, and Nylon12-CF profiles for MethodX and Method XL Printers +- Improved the predicted printing time so it's closer to the actual printing time on the MethodX and MethodXL +- Improved the idle nozzle temperature for dual extrusion printing on MethodX and MethodXL +- Resolved a crash for the Method printer when navigating to the Monitor tab +- Improved the way that the fanspeeds were listed and controlled for MethodX and MethodXL printers +- Updated Raft settings for UltiMaker MethodX and MethodXL +- Enabled Monotonic Raft Surface to improve adhesion +- Increased the Minimum Retract Distance to improve infill pattern wall overlaps + +* Bug fixes: +- Fixed significantly slower slicing for models with a lot of holes +- Fixed a significant amount of crashes that are caused by self intersecting polygons +- FIxeda bug where Align to Buildplate did not work for grouped meshes, resolves https://github.com/Ultimaker/Cura/issues/14237 +- Fixed a bug where the models in a 3mf file would not load in their saved position, note that this also changes the behavior of the "import models" feature of a 3mf file, for this feature the saved model location will be ignored +- Reduced the amount of floating support in area's near the support overhang angle threshold +- Fixed a bug with the Initial Extruder Number in the start gcode, resolves https://github.com/Ultimaker/Cura/issues/17501 +- Fixed a bug where Z could be negative if Remove Empty Layers was enabled, resolves https://github.com/Ultimaker/Cura/issues/15975 +- Fixed a bug where you are signed out if you leave Cura open for a longer time or let the PC fall asleep. +- Fixed tree support-related crashes if there are no overhangs, contributed by @thomasrahm +- Pressing the Esc key now doesn't exiting full screen mode, contributed by @Sophist-UK, resolves https://github.com/Ultimaker/Cura/issues/7499 +- Improved the OAuth protocol to improve signing in with plug-ins, contributed by @wawanbreton +- Fixed some slicing crashes with tree support, contributed by @ThomasRahm +- Fixed available height when adding modifier mesh in One at a Time printing, contributed by @fieldofView resolves https://github.com/Ultimaker/Cura/issues/16566 +- Improved behavior for loading 3mfs by giving the models original names, contributed by @pietchaki, resolves https://github.com/Ultimaker/Cura/issues/12089 +- Added an error so LimitXYAccelJerk doesn't run unless Accel Control is enabled in Cura, contributed by @Gregvaliant +- Some helpful code cleanup contributed by @dmitrygribenchuk + + +* Printer definitions, profiles and materials: +- Introduced high-speed profiles for the layer heights <0.15mm for Ultimaker PLA, T-PLA, ABS and PETG. +- Updated Initial Layer Speed settings for UltiMaker S3, and UltiMaker S5 +- Updated the Shrinkage Factor for PET CF to improve dimensional accuracy +- Renamed UltiMaker PP Transparent to UltiMaker PP Natural +- Increased part strengths of high speed modes by compensating for slip in high flow rates +- Improved self-support settings for UltiMaker Materials +- Improved adhesion settings for UltiMaker ABS +- Introduced Elegoo Neptune 4 Plus and Max, and updated Elegoo Neptune 4 and Pro, contributed by @mastercaution, @BremerButjer, @gsthnz, @ArthurREGNARD, @NovaScotianNorse, @ToaterUwU, @CharlKlein, @si0ls, @AlbeDarned @fuji97 and @Ev1dentFir3 +- Introduced Anycubic Kobra 2 Printer Definition contributed by @ThatGuyZim +- Introduced Flying Bear Ghost 6, contributed by @Barrnet +- Introduced Creality Ender 3 V2 Neo, contributed by @Hougaard22 +- Introduced Dagoma Sigma Pro 500z, and Dagoma Sigma Pro 500z Dual, contributed by @0r31 +- Introduced RRatRig V-Core 3, 200mm, 300mm, 400mm, 500mm and RatRig V-Minion, contributed by @Nu-hin +- Introduced Flashforge Adventurer 3 (AD3 / AD3C / AD3 Lite / AD3 Pro) & Adventurer AD4, and AD4 Lite , contributed by @jeremie-C +- Updated the dimensions for Ender 3 V3 S, contributed by @mcuprojects +- Updated start Gcode for creality_ender3v3se & Anycubic Kobra Go/Kobra 2, contributed by @zanghao912 +- Updated print and retraction settings for Sovol 3D printers, contributed by @asterchades +- Updated Creality Ender 5 Plus Bed Leveling Command, contributed by @dsnsgithub +- Updated Voron definition to support Voron/Klipper, contributed by @NerdyGriffin + [5.6] * New features and improvements: From bb3c4b455cf756eb898acd3d26b6879b9fa348ba Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 15 Mar 2024 10:28:45 +0100 Subject: [PATCH 676/765] Bumb sdk version CURA-11526 --- cura/ApplicationMetadata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/ApplicationMetadata.py b/cura/ApplicationMetadata.py index 621f3b9ac1c..b0230fefa11 100644 --- a/cura/ApplicationMetadata.py +++ b/cura/ApplicationMetadata.py @@ -14,7 +14,7 @@ # Each release has a fixed SDK version coupled with it. It doesn't make sense to make it configurable because, for # example Cura 3.2 with SDK version 6.1 will not work. So the SDK version is hard-coded here and left out of the # CuraVersion.py.in template. -CuraSDKVersion = "8.6.0" +CuraSDKVersion = "8.7.0" try: from cura.CuraVersion import CuraLatestURL From 597fbb06a04721c6b492d8352df39b84b8779dcf Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 15 Mar 2024 11:44:37 +0100 Subject: [PATCH 677/765] Revert "Bumb version in profiles" This reverts commit 3aa32298dc54f734d4ddd4fc506fb94ea86e63a2. --- .../deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_B.inst.cfg | 2 +- .../deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_C.inst.cfg | 2 +- .../deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_D.inst.cfg | 2 +- .../intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_D.inst.cfg | 2 +- .../intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_E.inst.cfg | 2 +- .../deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_B.inst.cfg | 2 +- .../deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_C.inst.cfg | 2 +- .../deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_D.inst.cfg | 2 +- .../intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_D.inst.cfg | 2 +- .../intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_E.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_B.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_C.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_D.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_C.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_D.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_E.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_B.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_C.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_D.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_C.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_D.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_E.inst.cfg | 2 +- .../deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg | 2 +- .../deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg | 2 +- .../deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg | 2 +- .../intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_D.inst.cfg | 2 +- .../intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_E.inst.cfg | 2 +- .../deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg | 2 +- .../deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg | 2 +- .../deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg | 2 +- .../intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_D.inst.cfg | 2 +- .../intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_E.inst.cfg | 2 +- .../PLA/elegoo_base_aa0.4_pla_0.05mm_visual.inst.cfg | 2 +- .../PLA/elegoo_base_aa0.4_pla_0.15mm_engineering.inst.cfg | 2 +- .../PLA/elegoo_base_aa0.4_pla_0.15mm_visual.inst.cfg | 2 +- .../PLA/elegoo_base_aa0.4_pla_0.1mm_engineering.inst.cfg | 2 +- .../elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_visual.inst.cfg | 2 +- .../elegoo_base/PLA/elegoo_base_aa0.4_pla_0.2mm_quick.inst.cfg | 2 +- .../elegoo_base/PLA/elegoo_base_aa0.4_pla_0.3mm_quick.inst.cfg | 2 +- .../PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg | 2 +- .../PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg | 2 +- .../PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg | 2 +- .../PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg | 2 +- .../PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg | 2 +- .../PLA/elegoo_n4_aa0.4_pla_0.2mm_engineering.inst.cfg | 2 +- .../PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg | 2 +- .../PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg | 2 +- .../intent/liquid/liquid_vo0.4_ABS_Draft_Print_Quick.inst.cfg | 2 +- .../intent/liquid/liquid_vo0.4_ABS_Fast_Print_Accurate.inst.cfg | 2 +- resources/intent/liquid/liquid_vo0.4_ABS_Fast_Visual.inst.cfg | 2 +- resources/intent/liquid/liquid_vo0.4_ABS_High_Visual.inst.cfg | 2 +- .../liquid/liquid_vo0.4_ABS_Normal_Quality_Accurate.inst.cfg | 2 +- resources/intent/liquid/liquid_vo0.4_ABS_Normal_Visual.inst.cfg | 2 +- .../intent/liquid/liquid_vo0.4_CPE_Fast_Print_Accurate.inst.cfg | 2 +- .../liquid/liquid_vo0.4_CPE_Normal_Quality_Accurate.inst.cfg | 2 +- .../liquid/liquid_vo0.4_Nylon_Fast_Print_Accurate.inst.cfg | 2 +- .../liquid/liquid_vo0.4_Nylon_Normal_Quality_Accurate.inst.cfg | 2 +- .../intent/liquid/liquid_vo0.4_PC_Fast_Print_Accurate.inst.cfg | 2 +- .../liquid/liquid_vo0.4_PC_Normal_Quality_Accurate.inst.cfg | 2 +- .../intent/liquid/liquid_vo0.4_PETG_Draft_Print_Quick.inst.cfg | 2 +- .../liquid/liquid_vo0.4_PETG_Fast_Print_Accurate.inst.cfg | 2 +- resources/intent/liquid/liquid_vo0.4_PETG_Fast_Visual.inst.cfg | 2 +- resources/intent/liquid/liquid_vo0.4_PETG_High_Visual.inst.cfg | 2 +- .../liquid/liquid_vo0.4_PETG_Normal_Quality_Accurate.inst.cfg | 2 +- .../intent/liquid/liquid_vo0.4_PETG_Normal_Visual.inst.cfg | 2 +- .../intent/liquid/liquid_vo0.4_PLA_Draft_Print_Quick.inst.cfg | 2 +- .../intent/liquid/liquid_vo0.4_PLA_Fast_Print_Accurate.inst.cfg | 2 +- resources/intent/liquid/liquid_vo0.4_PLA_Fast_Visual.inst.cfg | 2 +- resources/intent/liquid/liquid_vo0.4_PLA_High_Visual.inst.cfg | 2 +- .../liquid/liquid_vo0.4_PLA_Normal_Quality_Accurate.inst.cfg | 2 +- resources/intent/liquid/liquid_vo0.4_PLA_Normal_Visual.inst.cfg | 2 +- .../um_methodx_1c_um-abscf-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodx_1c_um-absr-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodx_1c_um-asa-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodx_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodx_1xa_um-absr-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodx_1xa_um-asa-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodx_2xa_um-sr30-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodx_labs_um-abscf-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodx_labs_um-absr-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodx_labs_um-asa-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodx_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodxl_1c_um-abscf-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodxl_1c_um-absr-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodxl_1c_um-asa-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodxl_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodxl_1xa_um-absr-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodxl_1xa_um-asa-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodxl_2xa_um-sr30-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodxl_labs_um-abscf-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodxl_labs_um-absr-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodxl_labs_um-asa-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodxl_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_abs_0.06mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_abs_0.15mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_abs_0.1mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_abs_0.2mm_quick.inst.cfg | 2 +- .../um_s3_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg | 2 +- .../um_s3_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_cpe_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_cpe_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_nylon_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_nylon_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_pc_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_pc_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_petg_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_petg_0.1mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_pla_0.06mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_pla_0.15mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_pla_0.1mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_pla_0.2mm_quick.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_pla_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm_visual.inst.cfg | 2 +- .../um_s3_aa0.4_tough-pla_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_visual.inst.cfg | 2 +- .../um_s3_aa0.4_tough-pla_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg | 2 +- .../um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg | 2 +- .../um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg | 2 +- .../um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg | 2 +- .../um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg | 2 +- .../um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg | 2 +- .../um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg | 2 +- .../um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg | 2 +- .../ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg | 2 +- .../ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg | 2 +- .../ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg | 2 +- .../ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_abs_0.06mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_abs_0.15mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_abs_0.1mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_abs_0.2mm_quick.inst.cfg | 2 +- .../um_s5_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg | 2 +- .../um_s5_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_cpe_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_cpe_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_nylon_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_nylon_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_pc_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_pc_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_petg_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_petg_0.1mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_pla_0.06mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_pla_0.15mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_pla_0.1mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_pla_0.2mm_quick.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_pla_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm_visual.inst.cfg | 2 +- .../um_s5_aa0.4_tough-pla_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_visual.inst.cfg | 2 +- .../um_s5_aa0.4_tough-pla_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg | 2 +- .../um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg | 2 +- .../um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg | 2 +- .../um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg | 2 +- .../um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg | 2 +- .../um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg | 2 +- .../um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg | 2 +- .../um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg | 2 +- .../ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg | 2 +- .../ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg | 2 +- .../ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg | 2 +- .../ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_engineering.inst.cfg | 2 +- .../abs/abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg | 2 +- .../uni_base/abs/abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg | 2 +- .../abs/abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg | 2 +- .../uni_base/abs/abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg | 2 +- .../uni_base/abs/abs_nozzle_0.40_layer_0.20_quick.inst.cfg | 2 +- .../abs/abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg | 2 +- .../uni_base/abs/abs_nozzle_0.40_layer_0.25_quick.inst.cfg | 2 +- .../uni_base/abs/abs_nozzle_0.40_layer_0.30_quick.inst.cfg | 2 +- .../petg/petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg | 2 +- .../uni_base/petg/petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg | 2 +- .../petg/petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg | 2 +- .../uni_base/petg/petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg | 2 +- .../uni_base/petg/petg_nozzle_0.40_layer_0.20_quick.inst.cfg | 2 +- .../petg/petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg | 2 +- .../uni_base/petg/petg_nozzle_0.40_layer_0.25_quick.inst.cfg | 2 +- .../uni_base/petg/petg_nozzle_0.40_layer_0.30_quick.inst.cfg | 2 +- .../pla/pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg | 2 +- .../uni_base/pla/pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg | 2 +- .../pla/pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg | 2 +- .../uni_base/pla/pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg | 2 +- .../uni_base/pla/pla_nozzle_0.40_layer_0.20_quick.inst.cfg | 2 +- .../pla/pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg | 2 +- .../uni_base/pla/pla_nozzle_0.40_layer_0.25_quick.inst.cfg | 2 +- .../uni_base/pla/pla_nozzle_0.40_layer_0.30_quick.inst.cfg | 2 +- .../abs/zav_abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg | 2 +- .../abs/zav_abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg | 2 +- .../abs/zav_abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg | 2 +- .../abs/zav_abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg | 2 +- .../zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_quick.inst.cfg | 2 +- .../abs/zav_abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg | 2 +- .../zav_base/abs/zav_abs_nozzle_0.40_layer_0.25_quick.inst.cfg | 2 +- .../zav_base/abs/zav_abs_nozzle_0.40_layer_0.30_quick.inst.cfg | 2 +- .../petg/zav_petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg | 2 +- .../petg/zav_petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg | 2 +- .../petg/zav_petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg | 2 +- .../petg/zav_petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg | 2 +- .../petg/zav_petg_nozzle_0.40_layer_0.20_quick.inst.cfg | 2 +- .../petg/zav_petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg | 2 +- .../petg/zav_petg_nozzle_0.40_layer_0.25_quick.inst.cfg | 2 +- .../petg/zav_petg_nozzle_0.40_layer_0.30_quick.inst.cfg | 2 +- .../pla/zav_pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg | 2 +- .../pla/zav_pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg | 2 +- .../pla/zav_pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg | 2 +- .../pla/zav_pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg | 2 +- .../zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_quick.inst.cfg | 2 +- .../pla/zav_pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg | 2 +- .../zav_base/pla/zav_pla_nozzle_0.40_layer_0.25_quick.inst.cfg | 2 +- .../zav_base/pla/zav_pla_nozzle_0.40_layer_0.30_quick.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_global_standard.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg | 2 +- resources/quality/abax_pri3/apri3_pla_fast.inst.cfg | 2 +- resources/quality/abax_pri3/apri3_pla_high.inst.cfg | 2 +- resources/quality/abax_pri3/apri3_pla_normal.inst.cfg | 2 +- resources/quality/abax_pri5/apri5_pla_fast.inst.cfg | 2 +- resources/quality/abax_pri5/apri5_pla_high.inst.cfg | 2 +- resources/quality/abax_pri5/apri5_pla_normal.inst.cfg | 2 +- resources/quality/abax_titan/atitan_pla_fast.inst.cfg | 2 +- resources/quality/abax_titan/atitan_pla_high.inst.cfg | 2 +- resources/quality/abax_titan/atitan_pla_normal.inst.cfg | 2 +- resources/quality/ankermake_m5/ankermake_m5_draft.inst.cfg | 2 +- resources/quality/ankermake_m5/ankermake_m5_fine.inst.cfg | 2 +- resources/quality/ankermake_m5/ankermake_m5_normal.inst.cfg | 2 +- .../quality/anycubic_4max/abs/anycubic_4max_abs_draft.inst.cfg | 2 +- .../quality/anycubic_4max/abs/anycubic_4max_abs_high.inst.cfg | 2 +- .../quality/anycubic_4max/abs/anycubic_4max_abs_normal.inst.cfg | 2 +- resources/quality/anycubic_4max/anycubic_4max_draft.inst.cfg | 2 +- resources/quality/anycubic_4max/anycubic_4max_high.inst.cfg | 2 +- resources/quality/anycubic_4max/anycubic_4max_normal.inst.cfg | 2 +- .../anycubic_4max/hips/anycubic_4max_hips_draft.inst.cfg | 2 +- .../quality/anycubic_4max/hips/anycubic_4max_hips_high.inst.cfg | 2 +- .../anycubic_4max/hips/anycubic_4max_hips_normal.inst.cfg | 2 +- .../anycubic_4max/petg/anycubic_4max_petg_draft.inst.cfg | 2 +- .../quality/anycubic_4max/petg/anycubic_4max_petg_high.inst.cfg | 2 +- .../anycubic_4max/petg/anycubic_4max_petg_normal.inst.cfg | 2 +- .../quality/anycubic_4max/pla/anycubic_4max_pla_draft.inst.cfg | 2 +- .../quality/anycubic_4max/pla/anycubic_4max_pla_high.inst.cfg | 2 +- .../quality/anycubic_4max/pla/anycubic_4max_pla_normal.inst.cfg | 2 +- .../quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg | 2 +- resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg | 2 +- .../quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg | 2 +- .../quality/anycubic_i3_mega/anycubic_i3_mega_draft.inst.cfg | 2 +- .../quality/anycubic_i3_mega/anycubic_i3_mega_high.inst.cfg | 2 +- .../quality/anycubic_i3_mega/anycubic_i3_mega_normal.inst.cfg | 2 +- .../anycubic_i3_mega_s/anycubic_i3_mega_s_draft.inst.cfg | 2 +- .../quality/anycubic_i3_mega_s/anycubic_i3_mega_s_high.inst.cfg | 2 +- .../anycubic_i3_mega_s/anycubic_i3_mega_s_normal.inst.cfg | 2 +- resources/quality/anycubic_kobra/anycubic_kobra_abs.inst.cfg | 2 +- resources/quality/anycubic_kobra/anycubic_kobra_pla.inst.cfg | 2 +- resources/quality/anycubic_kobra/anycubic_kobra_tpu.inst.cfg | 2 +- .../quality/anycubic_kobra_go/anycubic_kobra_go_abs.inst.cfg | 2 +- .../quality/anycubic_kobra_go/anycubic_kobra_go_pla.inst.cfg | 2 +- .../quality/anycubic_kobra_go/anycubic_kobra_go_tpu.inst.cfg | 2 +- .../quality/anycubic_kobra_max/anycubic_kobra_max_pla.inst.cfg | 2 +- .../quality/anycubic_kobra_max/anycubic_kobra_max_tpu.inst.cfg | 2 +- .../anycubic_kobra_plus/anycubic_kobra_plus_normal.inst.cfg | 2 +- .../anycubic_mega_zero/anycubic_mega_zero_draft.inst.cfg | 2 +- .../quality/anycubic_mega_zero/anycubic_mega_zero_high.inst.cfg | 2 +- .../anycubic_mega_zero/anycubic_mega_zero_normal.inst.cfg | 2 +- resources/quality/anycubic_predator/predator_coarse.inst.cfg | 2 +- resources/quality/anycubic_predator/predator_draft.inst.cfg | 2 +- .../quality/anycubic_predator/predator_extra_coarse.inst.cfg | 2 +- .../quality/anycubic_predator/predator_extra_fine.inst.cfg | 2 +- resources/quality/anycubic_predator/predator_fine.inst.cfg | 2 +- resources/quality/anycubic_predator/predator_normal.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.2_ABS_super.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.2_ABS_ultra.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.3_ABS_adaptive.inst.cfg | 2 +- resources/quality/artillery/ABS/artillery_0.3_ABS_low.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.3_ABS_standard.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.3_ABS_super.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.4_ABS_adaptive.inst.cfg | 2 +- resources/quality/artillery/ABS/artillery_0.4_ABS_low.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.4_ABS_standard.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.4_ABS_super.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.5_ABS_adaptive.inst.cfg | 2 +- resources/quality/artillery/ABS/artillery_0.5_ABS_low.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.5_ABS_standard.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.5_ABS_super.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.6_ABS_standard.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.8_ABS_draft.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_1.0_ABS_draft.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.2_PETG_super.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.2_PETG_ultra.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.3_PETG_adaptive.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.3_PETG_low.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.3_PETG_standard.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.3_PETG_super.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.4_PETG_adaptive.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.4_PETG_low.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.4_PETG_standard.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.4_PETG_super.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.5_PETG_adaptive.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.5_PETG_low.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.5_PETG_standard.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.5_PETG_super.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.6_PETG_standard.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.8_PETG_draft.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_1.0_PETG_draft.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.2_PLA_super.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.2_PLA_ultra.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.3_PLA_adaptive.inst.cfg | 2 +- resources/quality/artillery/PLA/artillery_0.3_PLA_low.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.3_PLA_standard.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.3_PLA_super.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.4_PLA_adaptive.inst.cfg | 2 +- resources/quality/artillery/PLA/artillery_0.4_PLA_low.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.4_PLA_standard.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.4_PLA_super.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.5_PLA_adaptive.inst.cfg | 2 +- resources/quality/artillery/PLA/artillery_0.5_PLA_low.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.5_PLA_standard.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.5_PLA_super.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.6_PLA_draft.inst.cfg | 2 +- resources/quality/artillery/PLA/artillery_0.6_PLA_low.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.6_PLA_standard.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.8_PLA_draft.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_1.0_PLA_draft.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_0.3_TPU_adaptive.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_0.3_TPU_standard.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_0.3_TPU_super.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_0.4_TPU_adaptive.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_0.4_TPU_standard.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_0.4_TPU_super.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_0.5_TPU_adaptive.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_0.5_TPU_standard.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_0.5_TPU_super.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_0.6_TPU_standard.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_0.8_TPU_draft.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_1.0_TPU_draft.inst.cfg | 2 +- resources/quality/artillery/artillery_global_adaptive.inst.cfg | 2 +- resources/quality/artillery/artillery_global_draft.inst.cfg | 2 +- resources/quality/artillery/artillery_global_low.inst.cfg | 2 +- resources/quality/artillery/artillery_global_standard.inst.cfg | 2 +- resources/quality/artillery/artillery_global_super.inst.cfg | 2 +- resources/quality/artillery/artillery_global_ultra.inst.cfg | 2 +- .../quality/artillery/nylon/artillery_0.2_Nylon_super.inst.cfg | 2 +- .../quality/artillery/nylon/artillery_0.2_Nylon_ultra.inst.cfg | 2 +- .../artillery/nylon/artillery_0.3_Nylon_adaptive.inst.cfg | 2 +- .../quality/artillery/nylon/artillery_0.3_Nylon_low.inst.cfg | 2 +- .../artillery/nylon/artillery_0.3_Nylon_standard.inst.cfg | 2 +- .../quality/artillery/nylon/artillery_0.3_Nylon_super.inst.cfg | 2 +- .../artillery/nylon/artillery_0.4_Nylon_adaptive.inst.cfg | 2 +- .../quality/artillery/nylon/artillery_0.4_Nylon_low.inst.cfg | 2 +- .../artillery/nylon/artillery_0.4_Nylon_standard.inst.cfg | 2 +- .../quality/artillery/nylon/artillery_0.4_Nylon_super.inst.cfg | 2 +- .../artillery/nylon/artillery_0.5_Nylon_adaptive.inst.cfg | 2 +- .../quality/artillery/nylon/artillery_0.5_Nylon_low.inst.cfg | 2 +- .../artillery/nylon/artillery_0.5_Nylon_standard.inst.cfg | 2 +- .../quality/artillery/nylon/artillery_0.5_Nylon_super.inst.cfg | 2 +- .../artillery/nylon/artillery_0.6_Nylon_standard.inst.cfg | 2 +- .../quality/artillery/nylon/artillery_0.8_Nylon_draft.inst.cfg | 2 +- .../quality/artillery/nylon/artillery_1.0_Nylon_draft.inst.cfg | 2 +- .../signal_pro_global_extrafast_quality.inst.cfg | 2 +- .../signal_pro_global_extrafine_quality.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_global_fast_quality.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_global_fine_quality.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_global_normal_quality.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_global_sprint_quality.inst.cfg | 2 +- .../signal_pro_global_supersprint_quality.inst.cfg | 2 +- .../signal_pro_global_ultrasprint_quality.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_ABS_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_ABS_fast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_ABS_fine.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_ABS_normal.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_HIPS_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_HIPS_fast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_HIPS_fine.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_HIPS_normal.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PA_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PA_fast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PA_fine.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PA_normal.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PC_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PC_fast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PC_fine.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PC_normal.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PETG_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PETG_fast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PETG_fine.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PETG_normal.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PLA_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PLA_fast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PLA_fine.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PLA_normal.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PVA_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PVA_fast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PVA_fine.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PVA_normal.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_TPU_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_TPU_fast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_TPU_fine.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_TPU_normal.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_ABS_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_ABS_sprint.inst.cfg | 2 +- .../signal_pro_v6_0.80_ABS_supersprint.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_HIPS_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_HIPS_sprint.inst.cfg | 2 +- .../signal_pro_v6_0.80_HIPS_supersprint.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PA_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PA_sprint.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PA_supersprint.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PC_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PC_sprint.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PC_supersprint.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PETG_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PETG_sprint.inst.cfg | 2 +- .../signal_pro_v6_0.80_PETG_supersprint.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PLA_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PLA_sprint.inst.cfg | 2 +- .../signal_pro_v6_0.80_PLA_supersprint.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PVA_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PVA_sprint.inst.cfg | 2 +- .../signal_pro_v6_0.80_PVA_supersprint.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_TPU_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_TPU_sprint.inst.cfg | 2 +- .../signal_pro_v6_0.80_TPU_supersprint.inst.cfg | 2 +- resources/quality/beamup_l/beamup_l_coarse.inst.cfg | 2 +- resources/quality/beamup_l/beamup_l_draft.inst.cfg | 2 +- resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg | 2 +- resources/quality/beamup_l/beamup_l_fine.inst.cfg | 2 +- resources/quality/beamup_l/beamup_l_normal.inst.cfg | 2 +- resources/quality/beamup_s/beamup_s_coarse.inst.cfg | 2 +- resources/quality/beamup_s/beamup_s_draft.inst.cfg | 2 +- resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg | 2 +- resources/quality/beamup_s/beamup_s_fine.inst.cfg | 2 +- resources/quality/beamup_s/beamup_s_normal.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.2_ABS_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.2_ABS_ultra.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.2_PETG_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.2_PETG_ultra.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.2_PLA_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.2_PLA_ultra.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_ABS_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_ABS_low.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_ABS_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_ABS_super.inst.cfg | 2 +- .../quality/biqu/base/biqu_base_0.3_PETG_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_PETG_low.inst.cfg | 2 +- .../quality/biqu/base/biqu_base_0.3_PETG_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_PETG_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_PLA_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_PLA_low.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_PLA_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_PLA_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_TPU_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_TPU_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_TPU_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_ABS_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_ABS_low.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_ABS_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_ABS_super.inst.cfg | 2 +- .../quality/biqu/base/biqu_base_0.4_PETG_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_PETG_low.inst.cfg | 2 +- .../quality/biqu/base/biqu_base_0.4_PETG_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_PETG_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_PLA_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_PLA_low.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_PLA_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_PLA_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_TPU_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_TPU_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_TPU_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_ABS_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_ABS_low.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_ABS_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_ABS_super.inst.cfg | 2 +- .../quality/biqu/base/biqu_base_0.5_PETG_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_PETG_low.inst.cfg | 2 +- .../quality/biqu/base/biqu_base_0.5_PETG_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_PETG_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_PLA_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_PLA_low.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_PLA_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_PLA_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_TPU_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_TPU_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_TPU_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.6_ABS_standard.inst.cfg | 2 +- .../quality/biqu/base/biqu_base_0.6_PETG_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.6_PLA_draft.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.6_PLA_low.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.6_PLA_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.6_TPU_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.8_ABS_draft.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.8_PETG_draft.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.8_PLA_draft.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.8_TPU_draft.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_1.0_ABS_draft.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_1.0_PETG_draft.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_1.0_PLA_draft.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_1.0_TPU_draft.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_global_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_global_draft.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_global_low.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_global_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_global_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_global_ultra.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.20_draft.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.20_standard.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.30_draft.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.30_standard.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.30_ultra.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.40_adaptive.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.40_draft.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.40_standard.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.40_ultra.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.50_adaptive.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.50_draft.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.50_standard.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.50_ultra.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.60_adaptive.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.60_draft.inst.cfg | 2 +- resources/quality/blocks/Nozzle/blocks_global_0.60_low.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.60_standard.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.60_ultra.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.80_adaptive.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.80_draft.inst.cfg | 2 +- resources/quality/blocks/Nozzle/blocks_global_0.80_low.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.80_standard.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.80_superlow.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.80_ultra.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_1.0_adaptive.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_1.0_draft.inst.cfg | 2 +- resources/quality/blocks/Nozzle/blocks_global_1.0_low.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_1.0_standard.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_1.0_superlow.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_1.0_ultra.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_1.2_adaptive.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_1.2_draft.inst.cfg | 2 +- resources/quality/blocks/Nozzle/blocks_global_1.2_low.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_1.2_standard.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_1.2_superlow.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_1.2_ultra.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.40_adaptive.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.40_draft.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.40_standard.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.40_ultra.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.50_adaptive.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.50_draft.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.50_standard.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.50_ultra.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.60_adaptive.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.60_draft.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.60_low.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.60_standard.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.60_ultra.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.80_adaptive.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.80_draft.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.80_low.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.80_standard.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.80_superlow.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.80_ultra.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.20_adaptive.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.20_ultra.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.30_adaptive.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.30_standard.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.30_ultra.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.40_adaptive.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.40_draft.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.40_standard.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.40_ultra.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.50_adaptive.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.50_draft.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.50_standard.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.50_ultra.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.60_adaptive.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.60_draft.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.60_low.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.60_standard.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.60_ultra.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.80_adaptive.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.80_draft.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.80_low.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.80_standard.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.80_superlow.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.80_ultra.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.0_adaptive.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.0_draft.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.0_low.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.0_standard.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.0_superlow.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.0_ultra.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.2_adaptive.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.2_draft.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.2_low.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.2_standard.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.2_superlow.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.2_ultra.inst.cfg | 2 +- .../quality/builder_premium/bp_BVOH_Coarse_Quality.inst.cfg | 2 +- resources/quality/builder_premium/bp_BVOH_High_Quality.inst.cfg | 2 +- .../quality/builder_premium/bp_BVOH_Normal_Quality.inst.cfg | 2 +- .../builder_premium/bp_Innoflex60_Coarse_Quality.inst.cfg | 2 +- .../quality/builder_premium/bp_Innoflex60_High_Quality.inst.cfg | 2 +- .../builder_premium/bp_Innoflex60_Normal_Quality.inst.cfg | 2 +- .../quality/builder_premium/bp_PET_Coarse_Quality.inst.cfg | 2 +- resources/quality/builder_premium/bp_PET_High_Quality.inst.cfg | 2 +- .../quality/builder_premium/bp_PET_Normal_Quality.inst.cfg | 2 +- .../quality/builder_premium/bp_PLA_Coarse_Quality.inst.cfg | 2 +- resources/quality/builder_premium/bp_PLA_High_Quality.inst.cfg | 2 +- .../quality/builder_premium/bp_PLA_Normal_Quality.inst.cfg | 2 +- .../quality/builder_premium/bp_PVA_Coarse_Quality.inst.cfg | 2 +- resources/quality/builder_premium/bp_PVA_High_Quality.inst.cfg | 2 +- .../quality/builder_premium/bp_PVA_Normal_Quality.inst.cfg | 2 +- .../quality/builder_premium/bp_global_Coarse_Quality.inst.cfg | 2 +- .../quality/builder_premium/bp_global_High_Quality.inst.cfg | 2 +- .../quality/builder_premium/bp_global_Normal_Quality.inst.cfg | 2 +- resources/quality/cartesio/abs/cartesio_0.25_abs_high.inst.cfg | 2 +- .../quality/cartesio/abs/cartesio_0.25_abs_normal.inst.cfg | 2 +- resources/quality/cartesio/abs/cartesio_0.4_abs_high.inst.cfg | 2 +- resources/quality/cartesio/abs/cartesio_0.4_abs_normal.inst.cfg | 2 +- resources/quality/cartesio/abs/cartesio_0.8_abs_coarse.inst.cfg | 2 +- .../quality/cartesio/abs/cartesio_0.8_abs_extra_coarse.inst.cfg | 2 +- resources/quality/cartesio/abs/cartesio_0.8_abs_high.inst.cfg | 2 +- resources/quality/cartesio/abs/cartesio_0.8_abs_normal.inst.cfg | 2 +- .../cartesio/arnitel/cartesio_0.4_arnitel2045_high.inst.cfg | 2 +- .../cartesio/arnitel/cartesio_0.4_arnitel2045_normal.inst.cfg | 2 +- .../quality/cartesio/cartesio_global_Coarse_Quality.inst.cfg | 2 +- .../cartesio/cartesio_global_Extra_Coarse_Quality.inst.cfg | 2 +- .../quality/cartesio/cartesio_global_High_Quality.inst.cfg | 2 +- .../quality/cartesio/cartesio_global_Normal_Quality.inst.cfg | 2 +- .../quality/cartesio/hips/cartesio_0.25_hips_high.inst.cfg | 2 +- .../quality/cartesio/hips/cartesio_0.25_hips_normal.inst.cfg | 2 +- resources/quality/cartesio/hips/cartesio_0.4_hips_high.inst.cfg | 2 +- .../quality/cartesio/hips/cartesio_0.4_hips_normal.inst.cfg | 2 +- .../quality/cartesio/hips/cartesio_0.8_hips_coarse.inst.cfg | 2 +- .../cartesio/hips/cartesio_0.8_hips_extra_coarse.inst.cfg | 2 +- resources/quality/cartesio/hips/cartesio_0.8_hips_high.inst.cfg | 2 +- .../quality/cartesio/hips/cartesio_0.8_hips_normal.inst.cfg | 2 +- .../quality/cartesio/nylon/cartesio_0.25_nylon_high.inst.cfg | 2 +- .../quality/cartesio/nylon/cartesio_0.25_nylon_normal.inst.cfg | 2 +- .../quality/cartesio/nylon/cartesio_0.4_nylon_high.inst.cfg | 2 +- .../quality/cartesio/nylon/cartesio_0.4_nylon_normal.inst.cfg | 2 +- .../quality/cartesio/nylon/cartesio_0.8_nylon_coarse.inst.cfg | 2 +- .../cartesio/nylon/cartesio_0.8_nylon_extra_coarse.inst.cfg | 2 +- .../quality/cartesio/nylon/cartesio_0.8_nylon_high.inst.cfg | 2 +- .../quality/cartesio/nylon/cartesio_0.8_nylon_normal.inst.cfg | 2 +- resources/quality/cartesio/pc/cartesio_0.25_pc_high.inst.cfg | 2 +- resources/quality/cartesio/pc/cartesio_0.25_pc_normal.inst.cfg | 2 +- resources/quality/cartesio/pc/cartesio_0.4_pc_high.inst.cfg | 2 +- resources/quality/cartesio/pc/cartesio_0.4_pc_normal.inst.cfg | 2 +- resources/quality/cartesio/pc/cartesio_0.8_pc_coarse.inst.cfg | 2 +- .../quality/cartesio/pc/cartesio_0.8_pc_extra_coarse.inst.cfg | 2 +- resources/quality/cartesio/pc/cartesio_0.8_pc_high.inst.cfg | 2 +- resources/quality/cartesio/pc/cartesio_0.8_pc_normal.inst.cfg | 2 +- .../quality/cartesio/petg/cartesio_0.25_petg_high.inst.cfg | 2 +- .../quality/cartesio/petg/cartesio_0.25_petg_normal.inst.cfg | 2 +- resources/quality/cartesio/petg/cartesio_0.4_petg_high.inst.cfg | 2 +- .../quality/cartesio/petg/cartesio_0.4_petg_normal.inst.cfg | 2 +- .../quality/cartesio/petg/cartesio_0.8_petg_coarse.inst.cfg | 2 +- .../cartesio/petg/cartesio_0.8_petg_extra_coarse.inst.cfg | 2 +- resources/quality/cartesio/petg/cartesio_0.8_petg_high.inst.cfg | 2 +- .../quality/cartesio/petg/cartesio_0.8_petg_normal.inst.cfg | 2 +- resources/quality/cartesio/pla/cartesio_0.25_pla_high.inst.cfg | 2 +- .../quality/cartesio/pla/cartesio_0.25_pla_normal.inst.cfg | 2 +- resources/quality/cartesio/pla/cartesio_0.4_pla_high.inst.cfg | 2 +- resources/quality/cartesio/pla/cartesio_0.4_pla_normal.inst.cfg | 2 +- resources/quality/cartesio/pla/cartesio_0.8_pla_coarse.inst.cfg | 2 +- .../quality/cartesio/pla/cartesio_0.8_pla_extra_coarse.inst.cfg | 2 +- resources/quality/cartesio/pla/cartesio_0.8_pla_high.inst.cfg | 2 +- resources/quality/cartesio/pla/cartesio_0.8_pla_normal.inst.cfg | 2 +- resources/quality/cartesio/pva/cartesio_0.25_pva_high.inst.cfg | 2 +- .../quality/cartesio/pva/cartesio_0.25_pva_normal.inst.cfg | 2 +- resources/quality/cartesio/pva/cartesio_0.4_pva_high.inst.cfg | 2 +- resources/quality/cartesio/pva/cartesio_0.4_pva_normal.inst.cfg | 2 +- resources/quality/cartesio/pva/cartesio_0.8_pva_coarse.inst.cfg | 2 +- .../quality/cartesio/pva/cartesio_0.8_pva_extra_coarse.inst.cfg | 2 +- resources/quality/cartesio/pva/cartesio_0.8_pva_high.inst.cfg | 2 +- resources/quality/cartesio/pva/cartesio_0.8_pva_normal.inst.cfg | 2 +- resources/quality/coarse.inst.cfg | 2 +- .../crazy3dprint/abs/crazy3dprint_0.40_abs_coarse.inst.cfg | 2 +- .../crazy3dprint/abs/crazy3dprint_0.40_abs_draft.inst.cfg | 2 +- .../crazy3dprint/abs/crazy3dprint_0.40_abs_fine.inst.cfg | 2 +- .../crazy3dprint/abs/crazy3dprint_0.40_abs_normal.inst.cfg | 2 +- .../quality/crazy3dprint/crazy3dprint_global_0.10_fine.inst.cfg | 2 +- .../crazy3dprint/crazy3dprint_global_0.20_normal.inst.cfg | 2 +- .../crazy3dprint/crazy3dprint_global_0.30_draft.inst.cfg | 2 +- .../crazy3dprint/crazy3dprint_global_0.40_coarse.inst.cfg | 2 +- .../crazy3dprint/pla/crazy3dprint_0.40_pla_coarse.inst.cfg | 2 +- .../crazy3dprint/pla/crazy3dprint_0.40_pla_draft.inst.cfg | 2 +- .../crazy3dprint/pla/crazy3dprint_0.40_pla_fine.inst.cfg | 2 +- .../crazy3dprint/pla/crazy3dprint_0.40_pla_normal.inst.cfg | 2 +- resources/quality/creality/base/base_0.2_ABS_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.2_ABS_ultra.inst.cfg | 2 +- resources/quality/creality/base/base_0.2_PETG_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.2_PETG_ultra.inst.cfg | 2 +- resources/quality/creality/base/base_0.2_PLA_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.2_PLA_ultra.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_ABS_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_ABS_low.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_ABS_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_ABS_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_PETG_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_PETG_low.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_PETG_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_PETG_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_PLA_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_PLA_low.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_PLA_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_PLA_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_TPU_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_TPU_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_TPU_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_ABS_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_ABS_low.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_ABS_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_ABS_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_PETG_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_PETG_low.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_PETG_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_PETG_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_PLA_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_PLA_low.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_PLA_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_PLA_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_TPU_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_TPU_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_TPU_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_ABS_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_ABS_low.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_ABS_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_ABS_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_PETG_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_PETG_low.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_PETG_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_PETG_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_PLA_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_PLA_low.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_PLA_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_PLA_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_TPU_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_TPU_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_TPU_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.6_ABS_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.6_PETG_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.6_PLA_draft.inst.cfg | 2 +- resources/quality/creality/base/base_0.6_PLA_low.inst.cfg | 2 +- resources/quality/creality/base/base_0.6_PLA_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.6_TPU_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.8_ABS_draft.inst.cfg | 2 +- resources/quality/creality/base/base_0.8_PETG_draft.inst.cfg | 2 +- resources/quality/creality/base/base_0.8_PLA_draft.inst.cfg | 2 +- resources/quality/creality/base/base_0.8_TPU_draft.inst.cfg | 2 +- resources/quality/creality/base/base_1.0_ABS_draft.inst.cfg | 2 +- resources/quality/creality/base/base_1.0_PETG_draft.inst.cfg | 2 +- resources/quality/creality/base/base_1.0_PLA_draft.inst.cfg | 2 +- resources/quality/creality/base/base_1.0_TPU_draft.inst.cfg | 2 +- resources/quality/creality/base/base_global_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_global_draft.inst.cfg | 2 +- resources/quality/creality/base/base_global_low.inst.cfg | 2 +- resources/quality/creality/base/base_global_standard.inst.cfg | 2 +- resources/quality/creality/base/base_global_super.inst.cfg | 2 +- resources/quality/creality/base/base_global_ultra.inst.cfg | 2 +- .../dagoma/dagoma_discoeasy200_bicolor_pla_fast.inst.cfg | 2 +- .../dagoma/dagoma_discoeasy200_bicolor_pla_fine.inst.cfg | 2 +- .../dagoma/dagoma_discoeasy200_bicolor_pla_standard.inst.cfg | 2 +- resources/quality/dagoma/dagoma_discoeasy200_pla_fast.inst.cfg | 2 +- resources/quality/dagoma/dagoma_discoeasy200_pla_fine.inst.cfg | 2 +- .../quality/dagoma/dagoma_discoeasy200_pla_standard.inst.cfg | 2 +- .../dagoma/dagoma_discoultimate_bicolor_pla_fast.inst.cfg | 2 +- .../dagoma/dagoma_discoultimate_bicolor_pla_fine.inst.cfg | 2 +- .../dagoma/dagoma_discoultimate_bicolor_pla_standard.inst.cfg | 2 +- resources/quality/dagoma/dagoma_discoultimate_pla_fast.inst.cfg | 2 +- resources/quality/dagoma/dagoma_discoultimate_pla_fine.inst.cfg | 2 +- .../quality/dagoma/dagoma_discoultimate_pla_standard.inst.cfg | 2 +- resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg | 2 +- resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg | 2 +- resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg | 2 +- resources/quality/dagoma/dagoma_neva_pla_fast.inst.cfg | 2 +- resources/quality/dagoma/dagoma_neva_pla_fine.inst.cfg | 2 +- resources/quality/dagoma/dagoma_neva_pla_standard.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.1.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.2.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.3.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.8.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.05.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.1.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.15.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.1.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.2.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.3.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.2.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.8.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.8.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_bowden_global_h0.05.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_bowden_global_h0.1.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_bowden_global_h0.15.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_bowden_global_h0.2.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_bowden_global_h0.3.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_bowden_global_h0.4.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_bowden_global_h0.6.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_bowden_global_h0.8.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.1.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.2.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.3.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.6.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_brass_0.4_pla_h0.1.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_brass_0.4_pla_h0.2.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_brass_0.4_pla_h0.3.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_brass_0.4_tpu_h0.2.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_brass_0.8_pla_h0.4.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_brass_0.8_pla_h0.6.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_brass_1.0_pla_h0.4.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_brass_1.0_pla_h0.6.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_brass_1.0_pla_h0.8.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_0.2_pla_h0.05.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_0.2_pla_h0.1.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_0.2_pla_h0.15.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_0.4_pla_h0.1.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_0.4_pla_h0.2.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_0.4_pla_h0.3.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_0.6_pla_h0.2.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_0.6_pla_h0.4.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_0.8_pla_h0.4.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_0.8_pla_h0.6.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_1.0_pla_h0.4.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_1.0_pla_h0.6.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_1.0_pla_h0.8.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_1.2_pla_h0.6.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_1.2_pla_h0.8.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_global_h0.05.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_global_h0.1.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_global_h0.15.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_global_h0.2.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_global_h0.3.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_global_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_global_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_global_h0.8.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_steel_0.4_pla_h0.1.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_steel_0.4_pla_h0.2.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_steel_0.4_pla_h0.3.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_steel_0.8_pla_h0.4.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_steel_0.8_pla_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.05.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.1.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.15.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.1.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.2.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.3.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.2.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.8.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.8.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_dual_global_h0.05.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_dual_global_h0.1.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_dual_global_h0.15.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_dual_global_h0.2.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_dual_global_h0.3.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_dual_global_h0.4.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_dual_global_h0.6.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_dual_global_h0.8.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.1.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.2.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.3.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.4.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.6inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.8.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_global_h0.1.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_global_h0.2.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_global_h0.3.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_global_h0.4.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_global_h0.6.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_global_h0.8.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_dual_global_h0.1.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_dual_global_h0.2.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_dual_global_h0.3.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_dual_global_h0.4.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_dual_global_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.2.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_pro_global_h0.1.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_pro_global_h0.2.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_pro_global_h0.3.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_pro_global_h0.4.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_pro_global_h0.6.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.2.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_A.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_B.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_C.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_A.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_B.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_C.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_D.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_E.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_C.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_D.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_E.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_F.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_A.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_B.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_C.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_A.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_B.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_C.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_D.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_E.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_C.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_D.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_E.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_F.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_D.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_E.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_F.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_G.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_D.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_E.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_F.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_G.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_A.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_B.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_C.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_D.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_E.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_C.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_D.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_E.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_F.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_A.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_B.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_C.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_D.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_E.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_C.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_D.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_E.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_F.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_A.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_B.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_C.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_A.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_B.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_C.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_D.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_E.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_C.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_D.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_E.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_F.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_A.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_B.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_C.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_A.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_B.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_C.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_D.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_E.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_C.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_D.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_E.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_F.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_D.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_E.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_F.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_G.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_D.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_E.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_F.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_G.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg | 2 +- .../quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_B.inst.cfg | 2 +- .../quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_C.inst.cfg | 2 +- .../quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_D.inst.cfg | 2 +- .../quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_B.inst.cfg | 2 +- .../quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_C.inst.cfg | 2 +- .../quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_D.inst.cfg | 2 +- resources/quality/deltacomb/deltacomb_global_A.inst.cfg | 2 +- resources/quality/deltacomb/deltacomb_global_B.inst.cfg | 2 +- resources/quality/deltacomb/deltacomb_global_C.inst.cfg | 2 +- resources/quality/deltacomb/deltacomb_global_D.inst.cfg | 2 +- resources/quality/deltacomb/deltacomb_global_E.inst.cfg | 2 +- resources/quality/deltacomb/deltacomb_global_F.inst.cfg | 2 +- resources/quality/deltacomb/deltacomb_global_G.inst.cfg | 2 +- resources/quality/diy220/diy220_draft.inst.cfg | 2 +- resources/quality/diy220/diy220_fast.inst.cfg | 2 +- resources/quality/diy220/diy220_high.inst.cfg | 2 +- resources/quality/diy220/diy220_normal.inst.cfg | 2 +- resources/quality/draft.inst.cfg | 2 +- .../abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.30.inst.cfg | 2 +- resources/quality/elegoo/base/elegoo_layer_0.05.inst.cfg | 2 +- resources/quality/elegoo/base/elegoo_layer_0.10.inst.cfg | 2 +- resources/quality/elegoo/base/elegoo_layer_0.15.inst.cfg | 2 +- resources/quality/elegoo/base/elegoo_layer_0.20.inst.cfg | 2 +- resources/quality/elegoo/base/elegoo_layer_0.30.inst.cfg | 2 +- resources/quality/elegoo/base/elegoo_layer_0.40.inst.cfg | 2 +- resources/quality/elegoo/base/elegoo_layer_0.60.inst.cfg | 2 +- .../nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.05.inst.cfg | 2 +- .../pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.10.inst.cfg | 2 +- .../pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.40.inst.cfg | 2 +- .../pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg | 2 +- .../pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg | 2 +- .../tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../quality/elegoo/neptune_4/elegoo_n4_layer_0.05.inst.cfg | 2 +- .../quality/elegoo/neptune_4/elegoo_n4_layer_0.10.inst.cfg | 2 +- .../quality/elegoo/neptune_4/elegoo_n4_layer_0.15.inst.cfg | 2 +- .../quality/elegoo/neptune_4/elegoo_n4_layer_0.20.inst.cfg | 2 +- .../quality/elegoo/neptune_4/elegoo_n4_layer_0.30.inst.cfg | 2 +- .../quality/elegoo/neptune_4/elegoo_n4_layer_0.40.inst.cfg | 2 +- .../quality/elegoo/neptune_4/elegoo_n4_layer_0.60.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../quality/elegoo_neptune_2/elegoo_neptune_2_draft.inst.cfg | 2 +- .../quality/elegoo_neptune_2/elegoo_neptune_2_fine.inst.cfg | 2 +- .../quality/elegoo_neptune_2/elegoo_neptune_2_normal.inst.cfg | 2 +- .../quality/elegoo_neptune_2D/elegoo_neptune_2D_draft.inst.cfg | 2 +- .../quality/elegoo_neptune_2D/elegoo_neptune_2D_fine.inst.cfg | 2 +- .../quality/elegoo_neptune_2D/elegoo_neptune_2D_normal.inst.cfg | 2 +- resources/quality/eryone_er20/eryone_er20_draft.inst.cfg | 2 +- resources/quality/eryone_er20/eryone_er20_high.inst.cfg | 2 +- resources/quality/eryone_er20/eryone_er20_normal.inst.cfg | 2 +- .../quality/eryone_thinker/eryone_thinker_extra_fast.inst.cfg | 2 +- resources/quality/eryone_thinker/eryone_thinker_fast.inst.cfg | 2 +- resources/quality/eryone_thinker/eryone_thinker_fine.inst.cfg | 2 +- resources/quality/eryone_thinker/eryone_thinker_high.inst.cfg | 2 +- resources/quality/eryone_thinker/eryone_thinker_normal.inst.cfg | 2 +- resources/quality/extra_coarse.inst.cfg | 2 +- resources/quality/extra_fast.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_abs_fast.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_abs_high.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_abs_normal.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_nylon_fast.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_nylon_high.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_nylon_normal.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_pla_fast.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_pla_high.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_pla_normal.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_tpu_fast.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_tpu_high.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_tpu_normal.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg | 2 +- resources/quality/fast.inst.cfg | 2 +- .../quality/flashforge/abs/flashforge_0.20_abs_super.inst.cfg | 2 +- .../quality/flashforge/abs/flashforge_0.20_abs_ultra.inst.cfg | 2 +- .../flashforge/abs/flashforge_0.30_abs_adaptive.inst.cfg | 2 +- .../flashforge/abs/flashforge_0.30_abs_standard.inst.cfg | 2 +- .../quality/flashforge/abs/flashforge_0.30_abs_super.inst.cfg | 2 +- .../flashforge/abs/flashforge_0.40_abs_adaptive.inst.cfg | 2 +- .../quality/flashforge/abs/flashforge_0.40_abs_draft.inst.cfg | 2 +- .../quality/flashforge/abs/flashforge_0.40_abs_low.inst.cfg | 2 +- .../flashforge/abs/flashforge_0.40_abs_standard.inst.cfg | 2 +- .../quality/flashforge/abs/flashforge_0.40_abs_super.inst.cfg | 2 +- .../flashforge/abs/flashforge_0.50_abs_adaptive.inst.cfg | 2 +- .../quality/flashforge/abs/flashforge_0.50_abs_coarse.inst.cfg | 2 +- .../quality/flashforge/abs/flashforge_0.50_abs_draft.inst.cfg | 2 +- .../quality/flashforge/abs/flashforge_0.50_abs_low.inst.cfg | 2 +- .../flashforge/abs/flashforge_0.50_abs_standard.inst.cfg | 2 +- .../quality/flashforge/abs/flashforge_0.60_abs_coarse.inst.cfg | 2 +- .../quality/flashforge/abs/flashforge_0.60_abs_draft.inst.cfg | 2 +- .../flashforge/abs/flashforge_0.60_abs_extra_coarse.inst.cfg | 2 +- .../flashforge/abs/flashforge_0.60_abs_standard.inst.cfg | 2 +- .../flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg | 2 +- .../abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg | 2 +- .../abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg | 2 +- .../flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg | 2 +- .../flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg | 2 +- .../abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg | 2 +- .../abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg | 2 +- .../abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg | 2 +- .../abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg | 2 +- .../flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg | 2 +- .../abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg | 2 +- .../flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg | 2 +- .../abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg | 2 +- .../abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg | 2 +- .../flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg | 2 +- .../flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg | 2 +- .../abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg | 2 +- .../abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg | 2 +- .../abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg | 2 +- .../abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg | 2 +- .../flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg | 2 +- .../abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg | 2 +- .../flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg | 2 +- .../flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg | 2 +- .../asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer3_draft.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer3_fast.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer3_fine.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer3_normal.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer3_vfast.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer3_vfine.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer4_draft.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer4_fast.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer4_fine.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer4_normal.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer4_vfast.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer4_vfine.inst.cfg | 2 +- .../quality/flashforge/flashforge_global_0.08_ultra.inst.cfg | 2 +- .../quality/flashforge/flashforge_global_0.12_super.inst.cfg | 2 +- .../quality/flashforge/flashforge_global_0.16_adaptive.inst.cfg | 2 +- .../quality/flashforge/flashforge_global_0.20_standard.inst.cfg | 2 +- .../quality/flashforge/flashforge_global_0.28_low.inst.cfg | 2 +- .../quality/flashforge/flashforge_global_0.32_draft.inst.cfg | 2 +- .../quality/flashforge/flashforge_global_0.40_coarse.inst.cfg | 2 +- .../flashforge/flashforge_global_0.48_extra_coarse.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg | 2 +- .../quality/flashforge/petg/flashforge_0.2_petg_super.inst.cfg | 2 +- .../quality/flashforge/petg/flashforge_0.2_petg_ultra.inst.cfg | 2 +- .../flashforge/petg/flashforge_0.30_petg_adaptive.inst.cfg | 2 +- .../flashforge/petg/flashforge_0.30_petg_standard.inst.cfg | 2 +- .../quality/flashforge/petg/flashforge_0.30_petg_super.inst.cfg | 2 +- .../flashforge/petg/flashforge_0.40_petg_adaptive.inst.cfg | 2 +- .../quality/flashforge/petg/flashforge_0.40_petg_draft.inst.cfg | 2 +- .../quality/flashforge/petg/flashforge_0.40_petg_low.inst.cfg | 2 +- .../flashforge/petg/flashforge_0.40_petg_standard.inst.cfg | 2 +- .../quality/flashforge/petg/flashforge_0.40_petg_super.inst.cfg | 2 +- .../flashforge/petg/flashforge_0.50_petg_adaptive.inst.cfg | 2 +- .../flashforge/petg/flashforge_0.50_petg_coarse.inst.cfg | 2 +- .../quality/flashforge/petg/flashforge_0.50_petg_draft.inst.cfg | 2 +- .../quality/flashforge/petg/flashforge_0.50_petg_low.inst.cfg | 2 +- .../flashforge/petg/flashforge_0.50_petg_standard.inst.cfg | 2 +- .../quality/flashforge/petg/flashforge_0.60_petg_draft.inst.cfg | 2 +- .../flashforge/petg/flashforge_0.60_petg_extra_coarse.inst.cfg | 2 +- .../flashforge/petg/flashforge_0.60_petg_standard.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg | 2 +- .../quality/flashforge/pla/flashforge_0.20_pla_super.inst.cfg | 2 +- .../quality/flashforge/pla/flashforge_0.20_pla_ultra.inst.cfg | 2 +- .../flashforge/pla/flashforge_0.30_pla_adaptive.inst.cfg | 2 +- .../flashforge/pla/flashforge_0.30_pla_standard.inst.cfg | 2 +- .../quality/flashforge/pla/flashforge_0.30_pla_super.inst.cfg | 2 +- .../flashforge/pla/flashforge_0.40_pla_adaptive.inst.cfg | 2 +- .../quality/flashforge/pla/flashforge_0.40_pla_draft.inst.cfg | 2 +- .../quality/flashforge/pla/flashforge_0.40_pla_low.inst.cfg | 2 +- .../flashforge/pla/flashforge_0.40_pla_standard.inst.cfg | 2 +- .../quality/flashforge/pla/flashforge_0.40_pla_super.inst.cfg | 2 +- .../flashforge/pla/flashforge_0.50_pla_adaptive.inst.cfg | 2 +- .../quality/flashforge/pla/flashforge_0.50_pla_coarse.inst.cfg | 2 +- .../quality/flashforge/pla/flashforge_0.50_pla_draft.inst.cfg | 2 +- .../quality/flashforge/pla/flashforge_0.50_pla_low.inst.cfg | 2 +- .../flashforge/pla/flashforge_0.50_pla_standard.inst.cfg | 2 +- .../quality/flashforge/pla/flashforge_0.60_pla_draft.inst.cfg | 2 +- .../flashforge/pla/flashforge_0.60_pla_extra Coarse.inst.cfg | 2 +- .../flashforge/pla/flashforge_0.60_pla_standard.inst.cfg | 2 +- .../flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg | 2 +- .../pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg | 2 +- .../pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg | 2 +- .../flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg | 2 +- .../flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg | 2 +- .../pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg | 2 +- .../pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg | 2 +- .../pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg | 2 +- .../pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg | 2 +- .../flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg | 2 +- .../pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg | 2 +- .../flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg | 2 +- .../pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg | 2 +- .../pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg | 2 +- .../flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg | 2 +- .../flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg | 2 +- .../pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg | 2 +- .../pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg | 2 +- .../pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg | 2 +- .../pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg | 2 +- .../flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg | 2 +- .../pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg | 2 +- .../flashforge/tpu/flashforge_0.40_tpu_adaptive.inst.cfg | 2 +- .../quality/flashforge/tpu/flashforge_0.40_tpu_draft.inst.cfg | 2 +- .../quality/flashforge/tpu/flashforge_0.40_tpu_low.inst.cfg | 2 +- .../flashforge/tpu/flashforge_0.40_tpu_standard.inst.cfg | 2 +- .../quality/flashforge/tpu/flashforge_0.40_tpu_super.inst.cfg | 2 +- .../flashforge/tpu/flashforge_0.50_tpu_adaptive.inst.cfg | 2 +- .../quality/flashforge/tpu/flashforge_0.50_tpu_draft.inst.cfg | 2 +- .../quality/flashforge/tpu/flashforge_0.50_tpu_low.inst.cfg | 2 +- .../flashforge/tpu/flashforge_0.50_tpu_standard.inst.cfg | 2 +- .../quality/flashforge/tpu/flashforge_0.60_tpu_draft.inst.cfg | 2 +- .../quality/flashforge/tpu/flashforge_0.60_tpu_low.inst.cfg | 2 +- .../flashforge/tpu/flashforge_0.60_tpu_standard.inst.cfg | 2 +- resources/quality/flsun_sr/flsun_sr_fine.inst.cfg | 2 +- resources/quality/flsun_sr/flsun_sr_normal.inst.cfg | 2 +- resources/quality/flsun_v400/flsun_v400_normal.inst.cfg | 2 +- .../quality/flyingbear/abs/flyingbear_0.25_abs_super.inst.cfg | 2 +- .../quality/flyingbear/abs/flyingbear_0.25_abs_ultra.inst.cfg | 2 +- .../flyingbear/abs/flyingbear_0.30_abs_adaptive.inst.cfg | 2 +- .../flyingbear/abs/flyingbear_0.30_abs_standard.inst.cfg | 2 +- .../quality/flyingbear/abs/flyingbear_0.30_abs_super.inst.cfg | 2 +- .../flyingbear/abs/flyingbear_0.40_abs_adaptive.inst.cfg | 2 +- .../quality/flyingbear/abs/flyingbear_0.40_abs_low.inst.cfg | 2 +- .../flyingbear/abs/flyingbear_0.40_abs_standard.inst.cfg | 2 +- .../quality/flyingbear/abs/flyingbear_0.40_abs_super.inst.cfg | 2 +- .../flyingbear/abs/flyingbear_0.50_abs_adaptive.inst.cfg | 2 +- .../quality/flyingbear/abs/flyingbear_0.50_abs_draft.inst.cfg | 2 +- .../quality/flyingbear/abs/flyingbear_0.50_abs_low.inst.cfg | 2 +- .../flyingbear/abs/flyingbear_0.50_abs_standard.inst.cfg | 2 +- .../quality/flyingbear/abs/flyingbear_0.60_abs_draft.inst.cfg | 2 +- .../quality/flyingbear/abs/flyingbear_0.60_abs_low.inst.cfg | 2 +- .../flyingbear/abs/flyingbear_0.60_abs_standard.inst.cfg | 2 +- .../quality/flyingbear/abs/flyingbear_0.80_abs_coarse.inst.cfg | 2 +- .../quality/flyingbear/abs/flyingbear_0.80_abs_draft.inst.cfg | 2 +- .../quality/flyingbear/flyingbear_global_0.08_ultra.inst.cfg | 2 +- .../quality/flyingbear/flyingbear_global_0.12_super.inst.cfg | 2 +- .../quality/flyingbear/flyingbear_global_0.16_adaptive.inst.cfg | 2 +- .../quality/flyingbear/flyingbear_global_0.20_standard.inst.cfg | 2 +- .../quality/flyingbear/flyingbear_global_0.28_low.inst.cfg | 2 +- .../quality/flyingbear/flyingbear_global_0.32_draft.inst.cfg | 2 +- .../quality/flyingbear/flyingbear_global_0.40_coarse.inst.cfg | 2 +- .../quality/flyingbear/hips/flyingbear_0.25_hips_super.inst.cfg | 2 +- .../quality/flyingbear/hips/flyingbear_0.25_hips_ultra.inst.cfg | 2 +- .../flyingbear/hips/flyingbear_0.30_hips_adaptive.inst.cfg | 2 +- .../flyingbear/hips/flyingbear_0.30_hips_standard.inst.cfg | 2 +- .../quality/flyingbear/hips/flyingbear_0.30_hips_super.inst.cfg | 2 +- .../flyingbear/hips/flyingbear_0.40_hips_adaptive.inst.cfg | 2 +- .../quality/flyingbear/hips/flyingbear_0.40_hips_low.inst.cfg | 2 +- .../flyingbear/hips/flyingbear_0.40_hips_standard.inst.cfg | 2 +- .../quality/flyingbear/hips/flyingbear_0.40_hips_super.inst.cfg | 2 +- .../flyingbear/hips/flyingbear_0.50_hips_adaptive.inst.cfg | 2 +- .../quality/flyingbear/hips/flyingbear_0.50_hips_draft.inst.cfg | 2 +- .../quality/flyingbear/hips/flyingbear_0.50_hips_low.inst.cfg | 2 +- .../flyingbear/hips/flyingbear_0.50_hips_standard.inst.cfg | 2 +- .../quality/flyingbear/hips/flyingbear_0.60_hips_draft.inst.cfg | 2 +- .../quality/flyingbear/hips/flyingbear_0.60_hips_low.inst.cfg | 2 +- .../flyingbear/hips/flyingbear_0.60_hips_standard.inst.cfg | 2 +- .../flyingbear/hips/flyingbear_0.80_hips_coarse.inst.cfg | 2 +- .../quality/flyingbear/hips/flyingbear_0.80_hips_draft.inst.cfg | 2 +- .../quality/flyingbear/petg/flyingbear_0.25_petg_super.inst.cfg | 2 +- .../quality/flyingbear/petg/flyingbear_0.25_petg_ultra.inst.cfg | 2 +- .../flyingbear/petg/flyingbear_0.30_petg_adaptive.inst.cfg | 2 +- .../flyingbear/petg/flyingbear_0.30_petg_standard.inst.cfg | 2 +- .../quality/flyingbear/petg/flyingbear_0.30_petg_super.inst.cfg | 2 +- .../flyingbear/petg/flyingbear_0.40_petg_adaptive.inst.cfg | 2 +- .../quality/flyingbear/petg/flyingbear_0.40_petg_low.inst.cfg | 2 +- .../flyingbear/petg/flyingbear_0.40_petg_standard.inst.cfg | 2 +- .../quality/flyingbear/petg/flyingbear_0.40_petg_super.inst.cfg | 2 +- .../flyingbear/petg/flyingbear_0.50_petg_adaptive.inst.cfg | 2 +- .../quality/flyingbear/petg/flyingbear_0.50_petg_draft.inst.cfg | 2 +- .../quality/flyingbear/petg/flyingbear_0.50_petg_low.inst.cfg | 2 +- .../flyingbear/petg/flyingbear_0.50_petg_standard.inst.cfg | 2 +- .../quality/flyingbear/petg/flyingbear_0.60_petg_draft.inst.cfg | 2 +- .../quality/flyingbear/petg/flyingbear_0.60_petg_low.inst.cfg | 2 +- .../flyingbear/petg/flyingbear_0.60_petg_standard.inst.cfg | 2 +- .../flyingbear/petg/flyingbear_0.80_petg_coarse.inst.cfg | 2 +- .../quality/flyingbear/petg/flyingbear_0.80_petg_draft.inst.cfg | 2 +- .../quality/flyingbear/pla/flyingbear_0.25_pla_super.inst.cfg | 2 +- .../quality/flyingbear/pla/flyingbear_0.25_pla_ultra.inst.cfg | 2 +- .../flyingbear/pla/flyingbear_0.30_pla_adaptive.inst.cfg | 2 +- .../flyingbear/pla/flyingbear_0.30_pla_standard.inst.cfg | 2 +- .../quality/flyingbear/pla/flyingbear_0.30_pla_super.inst.cfg | 2 +- .../flyingbear/pla/flyingbear_0.40_pla_adaptive.inst.cfg | 2 +- .../quality/flyingbear/pla/flyingbear_0.40_pla_low.inst.cfg | 2 +- .../flyingbear/pla/flyingbear_0.40_pla_standard.inst.cfg | 2 +- .../quality/flyingbear/pla/flyingbear_0.40_pla_super.inst.cfg | 2 +- .../flyingbear/pla/flyingbear_0.50_pla_adaptive.inst.cfg | 2 +- .../quality/flyingbear/pla/flyingbear_0.50_pla_draft.inst.cfg | 2 +- .../quality/flyingbear/pla/flyingbear_0.50_pla_low.inst.cfg | 2 +- .../flyingbear/pla/flyingbear_0.50_pla_standard.inst.cfg | 2 +- .../quality/flyingbear/pla/flyingbear_0.60_pla_draft.inst.cfg | 2 +- .../quality/flyingbear/pla/flyingbear_0.60_pla_low.inst.cfg | 2 +- .../flyingbear/pla/flyingbear_0.60_pla_standard.inst.cfg | 2 +- .../quality/flyingbear/pla/flyingbear_0.80_pla_coarse.inst.cfg | 2 +- .../quality/flyingbear/pla/flyingbear_0.80_pla_draft.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.25_plapro_super.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.25_plapro_ultra.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.30_plapro_adaptive.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.30_plapro_standard.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.30_plapro_super.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.40_plapro_adaptive.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.40_plapro_low.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.40_plapro_standard.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.40_plapro_super.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.50_plapro_adaptive.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.50_plapro_draft.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.50_plapro_low.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.50_plapro_standard.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.60_plapro_draft.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.60_plapro_low.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.60_plapro_standard.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.80_plapro_coarse.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.80_plapro_draft.inst.cfg | 2 +- .../flyingbear/tpu/flyingbear_0.40_tpu_adaptive.inst.cfg | 2 +- .../quality/flyingbear/tpu/flyingbear_0.40_tpu_low.inst.cfg | 2 +- .../flyingbear/tpu/flyingbear_0.40_tpu_standard.inst.cfg | 2 +- .../quality/flyingbear/tpu/flyingbear_0.40_tpu_super.inst.cfg | 2 +- .../flyingbear/tpu/flyingbear_0.50_tpu_adaptive.inst.cfg | 2 +- .../quality/flyingbear/tpu/flyingbear_0.50_tpu_draft.inst.cfg | 2 +- .../quality/flyingbear/tpu/flyingbear_0.50_tpu_low.inst.cfg | 2 +- .../flyingbear/tpu/flyingbear_0.50_tpu_standard.inst.cfg | 2 +- .../quality/flyingbear/tpu/flyingbear_0.60_tpu_draft.inst.cfg | 2 +- .../quality/flyingbear/tpu/flyingbear_0.60_tpu_low.inst.cfg | 2 +- .../flyingbear/tpu/flyingbear_0.60_tpu_standard.inst.cfg | 2 +- .../quality/flyingbear/tpu/flyingbear_0.80_tpu_coarse.inst.cfg | 2 +- .../quality/flyingbear/tpu/flyingbear_0.80_tpu_draft.inst.cfg | 2 +- resources/quality/fusedform/base/base_PVA_draft.inst.cfg | 2 +- resources/quality/fusedform/base/base_PVA_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_PVA_normal.inst.cfg | 2 +- resources/quality/fusedform/base/base_abs_draft.inst.cfg | 2 +- resources/quality/fusedform/base/base_abs_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_abs_normal.inst.cfg | 2 +- resources/quality/fusedform/base/base_abs_ultra_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_draft.inst.cfg | 2 +- resources/quality/fusedform/base/base_flex_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_flex_normal.inst.cfg | 2 +- resources/quality/fusedform/base/base_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_hips_draft.inst.cfg | 2 +- resources/quality/fusedform/base/base_hips_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_hips_normal.inst.cfg | 2 +- resources/quality/fusedform/base/base_hips_ultra_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_normal.inst.cfg | 2 +- resources/quality/fusedform/base/base_nylon_draft.inst.cfg | 2 +- resources/quality/fusedform/base/base_nylon_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_nylon_normal.inst.cfg | 2 +- resources/quality/fusedform/base/base_nylon_ultra_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_petg_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_petg_normal.inst.cfg | 2 +- resources/quality/fusedform/base/base_pla_draft.inst.cfg | 2 +- resources/quality/fusedform/base/base_pla_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_pla_normal.inst.cfg | 2 +- resources/quality/fusedform/base/base_pla_ultra_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_ultra_high.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_ABS_fine.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_ABS_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_ABS_normal.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_ASA_fine.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_ASA_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_ASA_normal.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_CPE_normal.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_PA_normal.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_PC_normal.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_PETG_normal.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_PLA_fine.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_PLA_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_PLA_normal.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_TPU_normal.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.6_ABS_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.6_ABS_low.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.6_ASA_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.6_ASA_low.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.6_CPE_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.6_PA_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.6_PC_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.6_PETG_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.6_PLA_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.6_PLA_low.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.6_TPU_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.8_ABS_rapid.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.8_ABS_rough.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.8_ASA_rapid.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.8_ASA_rough.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.8_CPE_rapid.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.8_PA_rapid.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.8_PC_rapid.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.8_PETG_rapid.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.8_PLA_rapid.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.8_PLA_rough.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.8_TPU_rapid.inst.cfg | 2 +- resources/quality/fusion3/fusion3_global_fine.inst.cfg | 2 +- resources/quality/fusion3/fusion3_global_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_global_low.inst.cfg | 2 +- resources/quality/fusion3/fusion3_global_normal.inst.cfg | 2 +- resources/quality/fusion3/fusion3_global_rapid.inst.cfg | 2 +- resources/quality/fusion3/fusion3_global_rough.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.2_ABS_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.2_ABS_ultra.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.2_PETG_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.2_PETG_ultra.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.2_PLA_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.2_PLA_ultra.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_ABS_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_ABS_low.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_ABS_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_ABS_super.inst.cfg | 2 +- .../geeetech_quality_0.3_PETG_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_PETG_low.inst.cfg | 2 +- .../geeetech_quality_0.3_PETG_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_PETG_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_PLA_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_PLA_low.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_PLA_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_PLA_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_TPU_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_TPU_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_TPU_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_ABS_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_ABS_low.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_ABS_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_ABS_super.inst.cfg | 2 +- .../geeetech_quality_0.4_PETG_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_PETG_low.inst.cfg | 2 +- .../geeetech_quality_0.4_PETG_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_PETG_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_PLA_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_PLA_low.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_PLA_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_PLA_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_TPU_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_TPU_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_TPU_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_ABS_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_ABS_low.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_ABS_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_ABS_super.inst.cfg | 2 +- .../geeetech_quality_0.5_PETG_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_PETG_low.inst.cfg | 2 +- .../geeetech_quality_0.5_PETG_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_PETG_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_PLA_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_PLA_low.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_PLA_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_PLA_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_TPU_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_TPU_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_TPU_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.6_ABS_standard.inst.cfg | 2 +- .../geeetech_quality_0.6_PETG_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.6_PLA_draft.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.6_PLA_low.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.6_PLA_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.6_TPU_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.8_ABS_draft.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.8_PETG_draft.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.8_PLA_draft.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.8_TPU_draft.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_1.0_ABS_draft.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_1.0_PETG_draft.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_1.0_PLA_draft.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_1.0_TPU_draft.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_global_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_global_draft.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_global_low.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_global_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_global_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_global_ultra.inst.cfg | 2 +- .../quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg | 2 +- .../quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg | 2 +- .../quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg | 2 +- .../gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg | 2 +- resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg | 2 +- resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg | 2 +- resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg | 2 +- .../quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg | 2 +- resources/quality/goofoo/abs/goofoo_far_0.2_abs_fine.inst.cfg | 2 +- .../quality/goofoo/abs/goofoo_far_0.2_abs_standard.inst.cfg | 2 +- resources/quality/goofoo/abs/goofoo_far_0.40_abs_fine.inst.cfg | 2 +- .../quality/goofoo/abs/goofoo_far_0.40_abs_standard.inst.cfg | 2 +- resources/quality/goofoo/abs/goofoo_far_0.6_abs_fine.inst.cfg | 2 +- .../quality/goofoo/abs/goofoo_far_0.6_abs_standard.inst.cfg | 2 +- resources/quality/goofoo/abs/goofoo_far_0.8_abs_fine.inst.cfg | 2 +- .../quality/goofoo/abs/goofoo_far_0.8_abs_standard.inst.cfg | 2 +- resources/quality/goofoo/abs/goofoo_far_1.0_abs_fine.inst.cfg | 2 +- .../quality/goofoo/abs/goofoo_far_1.0_abs_standard.inst.cfg | 2 +- resources/quality/goofoo/abs/goofoo_near_0.2_abs_fine.inst.cfg | 2 +- .../quality/goofoo/abs/goofoo_near_0.2_abs_standard.inst.cfg | 2 +- resources/quality/goofoo/abs/goofoo_near_0.40_abs_fine.inst.cfg | 2 +- .../quality/goofoo/abs/goofoo_near_0.40_abs_standard.inst.cfg | 2 +- resources/quality/goofoo/abs/goofoo_near_0.6_abs_fine.inst.cfg | 2 +- .../quality/goofoo/abs/goofoo_near_0.6_abs_standard.inst.cfg | 2 +- resources/quality/goofoo/abs/goofoo_near_0.8_abs_fine.inst.cfg | 2 +- .../quality/goofoo/abs/goofoo_near_0.8_abs_standard.inst.cfg | 2 +- resources/quality/goofoo/abs/goofoo_near_1.0_abs_fine.inst.cfg | 2 +- .../quality/goofoo/abs/goofoo_near_1.0_abs_standard.inst.cfg | 2 +- resources/quality/goofoo/asa/goofoo_far_0.2_asa_fine.inst.cfg | 2 +- .../quality/goofoo/asa/goofoo_far_0.2_asa_standard.inst.cfg | 2 +- resources/quality/goofoo/asa/goofoo_far_0.40_asa_fine.inst.cfg | 2 +- .../quality/goofoo/asa/goofoo_far_0.40_asa_standard.inst.cfg | 2 +- resources/quality/goofoo/asa/goofoo_far_0.6_asa_fine.inst.cfg | 2 +- .../quality/goofoo/asa/goofoo_far_0.6_asa_standard.inst.cfg | 2 +- resources/quality/goofoo/asa/goofoo_far_0.8_asa_fine.inst.cfg | 2 +- .../quality/goofoo/asa/goofoo_far_0.8_asa_standard.inst.cfg | 2 +- resources/quality/goofoo/asa/goofoo_far_1.0_asa_fine.inst.cfg | 2 +- .../quality/goofoo/asa/goofoo_far_1.0_asa_standard.inst.cfg | 2 +- resources/quality/goofoo/asa/goofoo_near_0.2_asa_fine.inst.cfg | 2 +- .../quality/goofoo/asa/goofoo_near_0.2_asa_standard.inst.cfg | 2 +- resources/quality/goofoo/asa/goofoo_near_0.40_asa_fine.inst.cfg | 2 +- .../quality/goofoo/asa/goofoo_near_0.40_asa_standard.inst.cfg | 2 +- resources/quality/goofoo/asa/goofoo_near_0.6_asa_fine.inst.cfg | 2 +- .../quality/goofoo/asa/goofoo_near_0.6_asa_standard.inst.cfg | 2 +- resources/quality/goofoo/asa/goofoo_near_0.8_asa_fine.inst.cfg | 2 +- .../quality/goofoo/asa/goofoo_near_0.8_asa_standard.inst.cfg | 2 +- resources/quality/goofoo/asa/goofoo_near_1.0_asa_fine.inst.cfg | 2 +- .../quality/goofoo/asa/goofoo_near_1.0_asa_standard.inst.cfg | 2 +- resources/quality/goofoo/goofoo_far_global_0.15_fine.inst.cfg | 2 +- resources/quality/goofoo/goofoo_far_global_0.1_efine.inst.cfg | 2 +- .../quality/goofoo/goofoo_far_global_0.20_standard.inst.cfg | 2 +- resources/quality/goofoo/goofoo_far_global_0.3_draft.inst.cfg | 2 +- resources/quality/goofoo/goofoo_near_global_0.15_fine.inst.cfg | 2 +- resources/quality/goofoo/goofoo_near_global_0.1_efine.inst.cfg | 2 +- .../quality/goofoo/goofoo_near_global_0.20_standard.inst.cfg | 2 +- resources/quality/goofoo/goofoo_near_global_0.3_draft.inst.cfg | 2 +- resources/quality/goofoo/goofoo_open_global_0.15_fine.inst.cfg | 2 +- resources/quality/goofoo/goofoo_open_global_0.1_efine.inst.cfg | 2 +- .../quality/goofoo/goofoo_open_global_0.20_standard.inst.cfg | 2 +- resources/quality/goofoo/goofoo_open_global_0.3_draft.inst.cfg | 2 +- resources/quality/goofoo/goofoo_small_global_0.15_fine.inst.cfg | 2 +- resources/quality/goofoo/goofoo_small_global_0.1_efine.inst.cfg | 2 +- .../quality/goofoo/goofoo_small_global_0.20_standard.inst.cfg | 2 +- resources/quality/goofoo/goofoo_small_global_0.3_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.2_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.2_hips_efine.inst.cfg | 2 +- resources/quality/goofoo/hips/goofoo_far_0.2_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.2_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.40_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.40_hips_efine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.40_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.40_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.6_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.6_hips_efine.inst.cfg | 2 +- resources/quality/goofoo/hips/goofoo_far_0.6_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.6_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.8_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.8_hips_efine.inst.cfg | 2 +- resources/quality/goofoo/hips/goofoo_far_0.8_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.8_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_1.0_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_1.0_hips_efine.inst.cfg | 2 +- resources/quality/goofoo/hips/goofoo_far_1.0_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_1.0_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.2_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.2_hips_efine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.2_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.2_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.40_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.40_hips_efine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.40_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.40_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.6_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.6_hips_efine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.6_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.6_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.8_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.8_hips_efine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.8_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.8_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_1.0_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_1.0_hips_efine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_1.0_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_1.0_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.2_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.2_hips_efine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.2_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.2_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.40_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.40_hips_efine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.40_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.40_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.6_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.6_hips_efine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.6_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.6_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.8_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.8_hips_efine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.8_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.8_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_1.0_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_1.0_hips_efine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_1.0_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_1.0_hips_standard.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_far_0.2_pa_fine.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_far_0.2_pa_standard.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_far_0.40_pa_fine.inst.cfg | 2 +- .../quality/goofoo/pa/goofoo_far_0.40_pa_standard.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_far_0.6_pa_fine.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_far_0.6_pa_standard.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_far_0.8_pa_fine.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_far_0.8_pa_standard.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_far_1.0_pa_fine.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_far_1.0_pa_standard.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_near_0.2_pa_fine.inst.cfg | 2 +- .../quality/goofoo/pa/goofoo_near_0.2_pa_standard.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_near_0.40_pa_fine.inst.cfg | 2 +- .../quality/goofoo/pa/goofoo_near_0.40_pa_standard.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_near_0.6_pa_fine.inst.cfg | 2 +- .../quality/goofoo/pa/goofoo_near_0.6_pa_standard.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_near_0.8_pa_fine.inst.cfg | 2 +- .../quality/goofoo/pa/goofoo_near_0.8_pa_standard.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_near_1.0_pa_fine.inst.cfg | 2 +- .../quality/goofoo/pa/goofoo_near_1.0_pa_standard.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_fine.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_standard.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg | 2 +- .../goofoo/pa_cf/goofoo_far_0.40_pa_cf_standard.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_fine.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_standard.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_fine.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_standard.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_fine.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_standard.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_fine.inst.cfg | 2 +- .../goofoo/pa_cf/goofoo_near_0.2_pa_cf_standard.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_fine.inst.cfg | 2 +- .../goofoo/pa_cf/goofoo_near_0.40_pa_cf_standard.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_fine.inst.cfg | 2 +- .../goofoo/pa_cf/goofoo_near_0.6_pa_cf_standard.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_fine.inst.cfg | 2 +- .../goofoo/pa_cf/goofoo_near_0.8_pa_cf_standard.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_fine.inst.cfg | 2 +- .../goofoo/pa_cf/goofoo_near_1.0_pa_cf_standard.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.2_pc_draft.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.2_pc_efine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.2_pc_fine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.2_pc_standard.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.40_pc_draft.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.40_pc_efine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.40_pc_fine.inst.cfg | 2 +- .../quality/goofoo/pc/goofoo_far_0.40_pc_standard.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.6_pc_draft.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.6_pc_efine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.6_pc_fine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.6_pc_standard.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.8_pc_draft.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.8_pc_efine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.8_pc_fine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.8_pc_standard.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_1.0_pc_draft.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_1.0_pc_efine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_1.0_pc_fine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_1.0_pc_standard.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.2_pc_draft.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.2_pc_efine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.2_pc_fine.inst.cfg | 2 +- .../quality/goofoo/pc/goofoo_near_0.2_pc_standard.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.40_pc_draft.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.40_pc_efine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.40_pc_fine.inst.cfg | 2 +- .../quality/goofoo/pc/goofoo_near_0.40_pc_standard.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.6_pc_draft.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.6_pc_efine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.6_pc_fine.inst.cfg | 2 +- .../quality/goofoo/pc/goofoo_near_0.6_pc_standard.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.8_pc_draft.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.8_pc_efine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.8_pc_fine.inst.cfg | 2 +- .../quality/goofoo/pc/goofoo_near_0.8_pc_standard.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_1.0_pc_draft.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_1.0_pc_efine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_1.0_pc_fine.inst.cfg | 2 +- .../quality/goofoo/pc/goofoo_near_1.0_pc_standard.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.2_peek_draft.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.2_peek_efine.inst.cfg | 2 +- resources/quality/goofoo/peek/goofoo_far_0.2_peek_fine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.2_peek_standard.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.40_peek_draft.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.40_peek_efine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.40_peek_fine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.40_peek_standard.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.6_peek_draft.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.6_peek_efine.inst.cfg | 2 +- resources/quality/goofoo/peek/goofoo_far_0.6_peek_fine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.6_peek_standard.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.8_peek_draft.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.8_peek_efine.inst.cfg | 2 +- resources/quality/goofoo/peek/goofoo_far_0.8_peek_fine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.8_peek_standard.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_1.0_peek_draft.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_1.0_peek_efine.inst.cfg | 2 +- resources/quality/goofoo/peek/goofoo_far_1.0_peek_fine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_1.0_peek_standard.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.2_peek_draft.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.2_peek_efine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.2_peek_fine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.2_peek_standard.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.40_peek_draft.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.40_peek_efine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.40_peek_fine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.40_peek_standard.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.6_peek_draft.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.6_peek_efine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.6_peek_fine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.6_peek_standard.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.8_peek_draft.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.8_peek_efine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.8_peek_fine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.8_peek_standard.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_1.0_peek_draft.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_1.0_peek_efine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_1.0_peek_fine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_1.0_peek_standard.inst.cfg | 2 +- resources/quality/goofoo/petg/goofoo_far_0.2_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_far_0.2_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_far_0.40_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_far_0.40_petg_standard.inst.cfg | 2 +- resources/quality/goofoo/petg/goofoo_far_0.6_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_far_0.6_petg_standard.inst.cfg | 2 +- resources/quality/goofoo/petg/goofoo_far_0.8_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_far_0.8_petg_standard.inst.cfg | 2 +- resources/quality/goofoo/petg/goofoo_far_1.0_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_far_1.0_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_near_0.2_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_near_0.2_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_near_0.40_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_near_0.40_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_near_0.6_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_near_0.6_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_near_0.8_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_near_0.8_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_near_1.0_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_near_1.0_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_open_0.2_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_open_0.2_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_open_0.40_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_open_0.40_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_open_0.6_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_open_0.6_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_open_0.8_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_open_0.8_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_open_1.0_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_open_1.0_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_small_0.2_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_small_0.2_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_small_0.40_petg_fine.inst.cfg | 2 +- .../goofoo/petg/goofoo_small_0.40_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_small_0.6_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_small_0.6_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_small_0.8_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_small_0.8_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_small_1.0_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_small_1.0_petg_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.2_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.2_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.2_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_0.2_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.40_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.40_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.40_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_0.40_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.6_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.6_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.6_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_0.6_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.8_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.8_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.8_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_0.8_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_1.0_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_1.0_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_1.0_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_1.0_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_0.2_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_0.2_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_bronze_0.2_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_bronze_0.40_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_bronze_0.40_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_bronze_0.40_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_0.6_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_0.6_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_bronze_0.6_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_0.8_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_0.8_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_bronze_0.8_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_1.0_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_1.0_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_bronze_1.0_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.2_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.2_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_emarble_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.2_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.40_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.40_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.40_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.6_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.6_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_emarble_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.6_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.8_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.8_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_emarble_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.8_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_1.0_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_1.0_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_emarble_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_1.0_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.2_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.2_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_esilk_0.2_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.40_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.40_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_esilk_0.40_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.6_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.6_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_esilk_0.6_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.8_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.8_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_esilk_0.8_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_1.0_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_1.0_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_esilk_1.0_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.2_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.2_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_wood_0.2_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.40_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.40_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_wood_0.40_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.6_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.6_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_wood_0.6_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.8_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.8_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_wood_0.8_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_1.0_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_1.0_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_wood_1.0_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_0.2_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_0.2_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_0.2_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_0.2_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_0.40_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_0.40_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_0.40_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_0.40_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_0.6_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_0.6_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_0.6_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_0.6_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_0.8_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_0.8_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_0.8_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_0.8_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_1.0_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_1.0_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_1.0_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_1.0_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.2_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.2_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_bronze_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.2_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.40_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.40_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.40_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.6_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.6_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_bronze_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.6_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.8_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.8_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_bronze_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.8_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_1.0_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_1.0_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_bronze_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_1.0_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.2_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.2_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.2_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.40_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.40_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.40_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.6_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.6_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.6_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.8_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.8_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.8_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_1.0_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_1.0_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_1.0_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_0.2_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_0.2_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_esilk_0.2_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_esilk_0.40_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_esilk_0.40_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_esilk_0.40_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_0.6_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_0.6_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_esilk_0.6_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_0.8_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_0.8_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_esilk_0.8_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_1.0_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_1.0_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_esilk_1.0_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.2_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.2_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_wood_0.2_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.40_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.40_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_wood_0.40_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.6_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.6_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_wood_0.6_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.8_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.8_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_wood_0.8_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_1.0_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_1.0_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_wood_1.0_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_0.2_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_0.2_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_0.2_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_0.2_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_0.40_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_0.40_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_0.40_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_0.40_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_0.6_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_0.6_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_0.6_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_0.6_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_0.8_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_0.8_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_0.8_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_0.8_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_1.0_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_1.0_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_1.0_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_1.0_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.2_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.2_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.2_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.40_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.40_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.40_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.6_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.6_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.6_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.8_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.8_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.8_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_1.0_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_1.0_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_1.0_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_0.2_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_0.2_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_esilk_0.2_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_esilk_0.40_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_esilk_0.40_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_esilk_0.40_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_0.6_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_0.6_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_esilk_0.6_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_0.8_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_0.8_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_esilk_0.8_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_1.0_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_1.0_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_esilk_1.0_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.2_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.2_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_wood_0.2_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.40_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.40_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_wood_0.40_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.6_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.6_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_wood_0.6_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.8_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.8_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_wood_0.8_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_1.0_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_1.0_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_wood_1.0_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.2_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.2_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_small_0.2_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.2_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.40_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.40_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.40_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.40_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.6_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.6_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_small_0.6_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.6_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.70_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.8_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.8_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_small_0.8_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.8_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_1.0_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_1.0_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_small_1.0_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_1.0_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.2_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.2_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.2_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.40_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.40_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.40_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.6_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.6_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.6_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.8_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.8_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.8_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_1.0_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_1.0_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_1.0_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.2_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.2_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_esilk_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.2_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.40_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.40_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.40_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.6_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.6_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_esilk_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.6_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.8_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.8_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_esilk_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.8_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_1.0_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_1.0_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_esilk_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_1.0_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_0.2_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_0.2_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_wood_0.2_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_wood_0.40_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_wood_0.40_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_wood_0.40_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_0.6_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_0.6_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_wood_0.6_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_0.8_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_0.8_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_wood_0.8_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_1.0_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_1.0_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_wood_1.0_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.2_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.2_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.2_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_far_0.2_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.40_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.40_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.40_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_far_0.40_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.6_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.6_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.6_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_far_0.6_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.8_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.8_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.8_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_far_0.8_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_1.0_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_1.0_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_1.0_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_far_1.0_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_0.2_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_0.2_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_0.2_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_near_0.2_pva_standard.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_near_0.40_pva_draft.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_near_0.40_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_0.40_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_near_0.40_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_0.6_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_0.6_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_0.6_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_near_0.6_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_0.8_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_0.8_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_0.8_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_near_0.8_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_1.0_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_1.0_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_1.0_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_near_1.0_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_0.2_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_0.2_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_0.2_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_open_0.2_pva_standard.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_open_0.40_pva_draft.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_open_0.40_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_0.40_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_open_0.40_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_0.6_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_0.6_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_0.6_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_open_0.6_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_0.8_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_0.8_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_0.8_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_open_0.8_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_1.0_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_1.0_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_1.0_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_open_1.0_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_draft.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_efine.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_fine.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_far_0.2_tpe_standard.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_draft.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_efine.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_fine.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_far_0.40_tpe_standard.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_draft.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_efine.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_fine.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_far_0.6_tpe_standard.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_draft.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_efine.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_fine.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_far_0.8_tpe_standard.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_draft.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_efine.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_fine.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_far_1.0_tpe_standard.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_draft.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_efine.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_fine.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_near_0.2_tpe_standard.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_near_0.40_tpe_draft.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_near_0.40_tpe_efine.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_fine.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_near_0.40_tpe_standard.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_draft.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_efine.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_fine.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_near_0.6_tpe_standard.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_draft.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_efine.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_fine.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_near_0.8_tpe_standard.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_draft.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_efine.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_fine.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_near_1.0_tpe_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_fine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_efine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_fine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_far_0.40_tpu_87a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_efine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_far_0.40_tpu_95a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_fine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_efine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_fine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_fine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_efine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_fine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_fine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_efine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_fine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_near_0.2_tpu_87a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_efine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_near_0.2_tpu_95a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_near_0.40_tpu_87a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_efine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_near_0.40_tpu_95a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_near_0.6_tpu_87a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_efine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_near_0.6_tpu_95a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_near_0.8_tpu_87a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_efine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_near_0.8_tpu_95a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_near_1.0_tpu_87a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_efine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_near_1.0_tpu_95a_standard.inst.cfg | 2 +- .../quality/gutenberg/gutenberg_global_fast_quality.inst.cfg | 2 +- .../quality/gutenberg/gutenberg_global_fine_quality.inst.cfg | 2 +- .../quality/gutenberg/gutenberg_global_normal_quality.inst.cfg | 2 +- .../quality/gutenberg/gutenberg_global_strong_quality.inst.cfg | 2 +- resources/quality/high.inst.cfg | 2 +- resources/quality/hms434/hms434_global_Coarse_Quality.inst.cfg | 2 +- resources/quality/hms434/hms434_global_High_Quality.inst.cfg | 2 +- resources/quality/hms434/hms434_global_Normal_Quality.inst.cfg | 2 +- resources/quality/hms434/pla/hms434_0.4_pla_high.inst.cfg | 2 +- .../imade3d_jellybox/PETG/jbo_generic_petg_0.4_coarse.inst.cfg | 2 +- .../imade3d_jellybox/PETG/jbo_generic_petg_0.4_fine.inst.cfg | 2 +- .../imade3d_jellybox/PETG/jbo_generic_petg_0.4_medium.inst.cfg | 2 +- .../imade3d_jellybox/PLA/jbo_generic_pla_0.4_coarse.inst.cfg | 2 +- .../imade3d_jellybox/PLA/jbo_generic_pla_0.4_fine.inst.cfg | 2 +- .../imade3d_jellybox/PLA/jbo_generic_pla_0.4_medium.inst.cfg | 2 +- .../imade3d_jellybox/PLA/jbo_generic_pla_0.4_ultrafine.inst.cfg | 2 +- .../quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg | 2 +- .../quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg | 2 +- .../quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg | 2 +- .../imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg | 2 +- .../PETG/jb2_generic_petg_0.4_coarse.inst.cfg | 2 +- .../imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_fine.inst.cfg | 2 +- .../PETG/jb2_generic_petg_0.4_medium.inst.cfg | 2 +- .../imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_coarse.inst.cfg | 2 +- .../imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_fine.inst.cfg | 2 +- .../imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_medium.inst.cfg | 2 +- .../PLA/jb2_generic_pla_0.4_ultrafine.inst.cfg | 2 +- resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg | 2 +- resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg | 2 +- resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg | 2 +- .../quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg | 2 +- resources/quality/inat/inat_base_advanced_materials.inst.cfg | 2 +- resources/quality/inat/inat_base_draft.inst.cfg | 2 +- resources/quality/inat/inat_base_fine.inst.cfg | 2 +- resources/quality/inat/inat_base_standard.inst.cfg | 2 +- resources/quality/inat/inat_base_strong.inst.cfg | 2 +- resources/quality/inat/inat_base_tree_support.inst.cfg | 2 +- resources/quality/jgaurora_a6/jgaurora_a6_0.12_detail.inst.cfg | 2 +- resources/quality/jgaurora_a6/jgaurora_a6_0.16_optimal.inst.cfg | 2 +- resources/quality/jgaurora_a6/jgaurora_a6_0.24_draft.inst.cfg | 2 +- resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg | 2 +- resources/quality/jgaurora_a6/jgaurora_a6_0.2_normal.inst.cfg | 2 +- resources/quality/katihal/alya3dp_normal.inst.cfg | 2 +- resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg | 2 +- resources/quality/katihal/alyanx3dp_normal.inst.cfg | 2 +- resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg | 2 +- resources/quality/katihal/kupido_normal.inst.cfg | 2 +- resources/quality/katihal/kupido_normal_generic_abs.inst.cfg | 2 +- resources/quality/katihal/kupido_normal_generic_pla.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_beta_abs_draft.inst.cfg | 2 +- .../quality/kemiq_q2/kemiq_q2_beta_abs_extra_fine.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_beta_abs_fine.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_beta_abs_low.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_beta_abs_normal.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_beta_pla_draft.inst.cfg | 2 +- .../quality/kemiq_q2/kemiq_q2_beta_pla_extra_fine.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_beta_pla_fine.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_beta_pla_low.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_beta_pla_normal.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_gama_pla_draft.inst.cfg | 2 +- .../quality/kemiq_q2/kemiq_q2_gama_pla_extra_fine.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_gama_pla_fine.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_gama_pla_low.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_gama_pla_normal.inst.cfg | 2 +- resources/quality/key3d/key3d_tyro_best.inst.cfg | 2 +- resources/quality/key3d/key3d_tyro_fast.inst.cfg | 2 +- resources/quality/key3d/key3d_tyro_normal.inst.cfg | 2 +- resources/quality/kingroon/ABS/kingroon_0.2_ABS_super.inst.cfg | 2 +- resources/quality/kingroon/ABS/kingroon_0.2_ABS_ultra.inst.cfg | 2 +- .../quality/kingroon/ABS/kingroon_0.3_ABS_adaptive.inst.cfg | 2 +- resources/quality/kingroon/ABS/kingroon_0.3_ABS_low.inst.cfg | 2 +- .../quality/kingroon/ABS/kingroon_0.3_ABS_standard.inst.cfg | 2 +- resources/quality/kingroon/ABS/kingroon_0.3_ABS_super.inst.cfg | 2 +- .../quality/kingroon/ABS/kingroon_0.4_ABS_adaptive.inst.cfg | 2 +- resources/quality/kingroon/ABS/kingroon_0.4_ABS_low.inst.cfg | 2 +- .../quality/kingroon/ABS/kingroon_0.4_ABS_standard.inst.cfg | 2 +- resources/quality/kingroon/ABS/kingroon_0.4_ABS_super.inst.cfg | 2 +- .../quality/kingroon/ABS/kingroon_0.5_ABS_adaptive.inst.cfg | 2 +- resources/quality/kingroon/ABS/kingroon_0.5_ABS_low.inst.cfg | 2 +- .../quality/kingroon/ABS/kingroon_0.5_ABS_standard.inst.cfg | 2 +- resources/quality/kingroon/ABS/kingroon_0.5_ABS_super.inst.cfg | 2 +- .../quality/kingroon/ABS/kingroon_0.6_ABS_standard.inst.cfg | 2 +- resources/quality/kingroon/ABS/kingroon_0.8_ABS_draft.inst.cfg | 2 +- resources/quality/kingroon/ABS/kingroon_1.0_ABS_draft.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.2_PETG_super.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.2_PETG_ultra.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.3_PETG_adaptive.inst.cfg | 2 +- resources/quality/kingroon/PETG/kingroon_0.3_PETG_low.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.3_PETG_standard.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.3_PETG_super.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.4_PETG_adaptive.inst.cfg | 2 +- resources/quality/kingroon/PETG/kingroon_0.4_PETG_low.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.4_PETG_standard.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.4_PETG_super.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.5_PETG_adaptive.inst.cfg | 2 +- resources/quality/kingroon/PETG/kingroon_0.5_PETG_low.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.5_PETG_standard.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.5_PETG_super.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.6_PETG_standard.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.8_PETG_draft.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_1.0_PETG_draft.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_0.2_PLA_super.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_0.2_PLA_ultra.inst.cfg | 2 +- .../quality/kingroon/PLA/kingroon_0.3_PLA_adaptive.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_0.3_PLA_low.inst.cfg | 2 +- .../quality/kingroon/PLA/kingroon_0.3_PLA_standard.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_0.3_PLA_super.inst.cfg | 2 +- .../quality/kingroon/PLA/kingroon_0.4_PLA_adaptive.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_0.4_PLA_low.inst.cfg | 2 +- .../quality/kingroon/PLA/kingroon_0.4_PLA_standard.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_0.4_PLA_super.inst.cfg | 2 +- .../quality/kingroon/PLA/kingroon_0.5_PLA_adaptive.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_0.5_PLA_low.inst.cfg | 2 +- .../quality/kingroon/PLA/kingroon_0.5_PLA_standard.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_0.5_PLA_super.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_0.6_PLA_draft.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_0.6_PLA_low.inst.cfg | 2 +- .../quality/kingroon/PLA/kingroon_0.6_PLA_standard.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_0.8_PLA_draft.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_1.0_PLA_draft.inst.cfg | 2 +- .../quality/kingroon/TPU/kingroon_0.3_TPU_adaptive.inst.cfg | 2 +- .../quality/kingroon/TPU/kingroon_0.3_TPU_standard.inst.cfg | 2 +- resources/quality/kingroon/TPU/kingroon_0.3_TPU_super.inst.cfg | 2 +- .../quality/kingroon/TPU/kingroon_0.4_TPU_adaptive.inst.cfg | 2 +- .../quality/kingroon/TPU/kingroon_0.4_TPU_standard.inst.cfg | 2 +- resources/quality/kingroon/TPU/kingroon_0.4_TPU_super.inst.cfg | 2 +- .../quality/kingroon/TPU/kingroon_0.5_TPU_adaptive.inst.cfg | 2 +- .../quality/kingroon/TPU/kingroon_0.5_TPU_standard.inst.cfg | 2 +- resources/quality/kingroon/TPU/kingroon_0.5_TPU_super.inst.cfg | 2 +- .../quality/kingroon/TPU/kingroon_0.6_TPU_standard.inst.cfg | 2 +- resources/quality/kingroon/TPU/kingroon_0.8_TPU_draft.inst.cfg | 2 +- resources/quality/kingroon/TPU/kingroon_1.0_TPU_draft.inst.cfg | 2 +- resources/quality/kingroon/kingroon_global_adaptive.inst.cfg | 2 +- resources/quality/kingroon/kingroon_global_draft.inst.cfg | 2 +- resources/quality/kingroon/kingroon_global_low.inst.cfg | 2 +- resources/quality/kingroon/kingroon_global_standard.inst.cfg | 2 +- resources/quality/kingroon/kingroon_global_super.inst.cfg | 2 +- resources/quality/kingroon/kingroon_global_ultra.inst.cfg | 2 +- resources/quality/koonovo/koonovo_base_global_draft.inst.cfg | 2 +- resources/quality/koonovo/koonovo_base_global_standard.inst.cfg | 2 +- resources/quality/koonovo/koovono_base_global_high.inst.cfg | 2 +- resources/quality/liquid/liquid_global_Draft_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_global_Fast_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_global_High_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_global_Normal_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_global_Superdraft_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_global_Verydraft_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_CPE_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_CPE_Fast_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_CPE_High_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_CPE_Normal_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_Nylon_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_Nylon_Fast_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_Nylon_High_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_Nylon_Normal_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_TPU_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_TPU_Fast_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_TPU_Normal_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.6_CFFCPE_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.6_CFFPA_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.6_GFFCPE_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.6_GFFPA_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.8_ABS_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_ABS_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_ABS_Verydraft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.8_PC_Fast_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PC_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PC_Verydraft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.2_generic_PETG_super.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.2_generic_PETG_ultra.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.2_generic_PLA_super.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.2_generic_PLA_ultra.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.4_generic_PETG_adaptive.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.4_generic_PETG_low.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.4_generic_PETG_standard.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.4_generic_PETG_super.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.4_generic_PLA_adaptive.inst.cfg | 2 +- resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_low.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.4_generic_PLA_standard.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.4_generic_PLA_super.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.4_generic_TPU_adaptive.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.4_generic_TPU_standard.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.4_generic_TPU_super.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.6_generic_PETG_standard.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.6_generic_PLA_draft.inst.cfg | 2 +- resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_low.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.6_generic_PLA_standard.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.6_generic_TPU_standard.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.8_generic_PETG_draft.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.8_generic_PLA_draft.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.8_generic_TPU_draft.inst.cfg | 2 +- resources/quality/lnl3d/lnl3d_base_global_adaptive.inst.cfg | 2 +- resources/quality/lnl3d/lnl3d_base_global_draft.inst.cfg | 2 +- resources/quality/lnl3d/lnl3d_base_global_low.inst.cfg | 2 +- resources/quality/lnl3d/lnl3d_base_global_standard.inst.cfg | 2 +- resources/quality/lnl3d/lnl3d_base_global_super.inst.cfg | 2 +- resources/quality/lnl3d/lnl3d_base_global_ultra.inst.cfg | 2 +- resources/quality/longer/ABS/longer_0.4_ABS_adaptive.inst.cfg | 2 +- resources/quality/longer/ABS/longer_0.4_ABS_low.inst.cfg | 2 +- resources/quality/longer/ABS/longer_0.4_ABS_standard.inst.cfg | 2 +- resources/quality/longer/ABS/longer_0.4_ABS_super.inst.cfg | 2 +- resources/quality/longer/PETG/longer_0.4_PETG_adaptive.inst.cfg | 2 +- resources/quality/longer/PETG/longer_0.4_PETG_low.inst.cfg | 2 +- resources/quality/longer/PETG/longer_0.4_PETG_standard.inst.cfg | 2 +- resources/quality/longer/PETG/longer_0.4_PETG_super.inst.cfg | 2 +- resources/quality/longer/PLA/longer_0.4_PLA_adaptive.inst.cfg | 2 +- resources/quality/longer/PLA/longer_0.4_PLA_low.inst.cfg | 2 +- resources/quality/longer/PLA/longer_0.4_PLA_standard.inst.cfg | 2 +- resources/quality/longer/PLA/longer_0.4_PLA_super.inst.cfg | 2 +- resources/quality/longer/TPU/longer_0.4_TPU_adaptive.inst.cfg | 2 +- resources/quality/longer/TPU/longer_0.4_TPU_standard.inst.cfg | 2 +- resources/quality/longer/TPU/longer_0.4_TPU_super.inst.cfg | 2 +- resources/quality/longer/longer_global_adaptive.inst.cfg | 2 +- resources/quality/longer/longer_global_draft.inst.cfg | 2 +- resources/quality/longer/longer_global_low.inst.cfg | 2 +- resources/quality/longer/longer_global_standard.inst.cfg | 2 +- resources/quality/longer/longer_global_super.inst.cfg | 2 +- resources/quality/longer/longer_global_ultra.inst.cfg | 2 +- .../quality/makeblock/makeblock_mcreate_pla_normal.inst.cfg | 2 +- .../quality/malyan_m200/abs/malyan_m200_abs_draft.inst.cfg | 2 +- resources/quality/malyan_m200/abs/malyan_m200_abs_fast.inst.cfg | 2 +- resources/quality/malyan_m200/abs/malyan_m200_abs_high.inst.cfg | 2 +- .../quality/malyan_m200/abs/malyan_m200_abs_normal.inst.cfg | 2 +- .../quality/malyan_m200/abs/malyan_m200_abs_superdraft.inst.cfg | 2 +- .../malyan_m200/abs/malyan_m200_abs_thickerdraft.inst.cfg | 2 +- .../quality/malyan_m200/abs/malyan_m200_abs_ultra.inst.cfg | 2 +- .../quality/malyan_m200/abs/malyan_m200_abs_verydraft.inst.cfg | 2 +- .../malyan_m200/malyan_m200_global_Draft_Quality.inst.cfg | 2 +- .../malyan_m200/malyan_m200_global_Fast_Quality.inst.cfg | 2 +- .../malyan_m200/malyan_m200_global_High_Quality.inst.cfg | 2 +- .../malyan_m200/malyan_m200_global_Normal_Quality.inst.cfg | 2 +- .../malyan_m200/malyan_m200_global_SuperDraft_Quality.inst.cfg | 2 +- .../malyan_m200_global_ThickerDraft_Quality.inst.cfg | 2 +- .../malyan_m200/malyan_m200_global_Ultra_Quality.inst.cfg | 2 +- .../malyan_m200/malyan_m200_global_VeryDraft_Quality.inst.cfg | 2 +- .../quality/malyan_m200/petg/malyan_m200_petg_draft.inst.cfg | 2 +- .../quality/malyan_m200/petg/malyan_m200_petg_fast.inst.cfg | 2 +- .../quality/malyan_m200/petg/malyan_m200_petg_high.inst.cfg | 2 +- .../quality/malyan_m200/petg/malyan_m200_petg_normal.inst.cfg | 2 +- .../malyan_m200/petg/malyan_m200_petg_superdraft.inst.cfg | 2 +- .../malyan_m200/petg/malyan_m200_petg_thickerdraft.inst.cfg | 2 +- .../quality/malyan_m200/petg/malyan_m200_petg_ultra.inst.cfg | 2 +- .../malyan_m200/petg/malyan_m200_petg_verydraft.inst.cfg | 2 +- .../quality/malyan_m200/pla/malyan_m200_pla_draft.inst.cfg | 2 +- resources/quality/malyan_m200/pla/malyan_m200_pla_fast.inst.cfg | 2 +- resources/quality/malyan_m200/pla/malyan_m200_pla_high.inst.cfg | 2 +- .../quality/malyan_m200/pla/malyan_m200_pla_normal.inst.cfg | 2 +- .../quality/malyan_m200/pla/malyan_m200_pla_superdraft.inst.cfg | 2 +- .../malyan_m200/pla/malyan_m200_pla_thickerdraft.inst.cfg | 2 +- .../quality/malyan_m200/pla/malyan_m200_pla_ultra.inst.cfg | 2 +- .../quality/malyan_m200/pla/malyan_m200_pla_verydraft.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.2_ABS_super.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.2_ABS_ultra.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.3_ABS_adaptive.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.3_ABS_low.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.3_ABS_standard.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.3_ABS_super.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.4_ABS_adaptive.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.4_ABS_low.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.4_ABS_standard.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.4_ABS_super.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.5_ABS_adaptive.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.5_ABS_low.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.5_ABS_standard.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.5_ABS_super.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.6_ABS_standard.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.8_ABS_draft.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_1.0_ABS_draft.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.2_PETG_super.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.2_PETG_ultra.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.3_PETG_adaptive.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.3_PETG_low.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.3_PETG_standard.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.3_PETG_super.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.4_PETG_adaptive.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.4_PETG_low.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.4_PETG_standard.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.4_PETG_super.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.5_PETG_adaptive.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.5_PETG_low.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.5_PETG_standard.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.5_PETG_super.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.6_PETG_standard.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.8_PETG_draft.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_1.0_PETG_draft.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.2_PLA_super.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.2_PLA_ultra.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.3_PLA_adaptive.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.3_PLA_low.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.3_PLA_standard.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.3_PLA_super.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.4_PLA_adaptive.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.4_PLA_low.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.4_PLA_standard.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.4_PLA_super.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.5_PLA_adaptive.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.5_PLA_low.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.5_PLA_standard.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.5_PLA_super.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.6_PLA_draft.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.6_PLA_low.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.6_PLA_standard.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.8_PLA_draft.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_1.0_PLA_draft.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_0.3_TPU_adaptive.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_0.3_TPU_standard.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_0.3_TPU_super.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_0.4_TPU_adaptive.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_0.4_TPU_standard.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_0.4_TPU_super.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_0.5_TPU_adaptive.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_0.5_TPU_standard.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_0.5_TPU_super.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_0.6_TPU_standard.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_0.8_TPU_draft.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_1.0_TPU_draft.inst.cfg | 2 +- resources/quality/mingda/mingda_global_adaptive.inst.cfg | 2 +- resources/quality/mingda/mingda_global_draft.inst.cfg | 2 +- resources/quality/mingda/mingda_global_low.inst.cfg | 2 +- resources/quality/mingda/mingda_global_standard.inst.cfg | 2 +- resources/quality/mingda/mingda_global_super.inst.cfg | 2 +- resources/quality/mingda/mingda_global_ultra.inst.cfg | 2 +- .../quality/mixware_hyper_k/mixware_hyper_k_draft.inst.cfg | 2 +- .../quality/mixware_hyper_k/mixware_hyper_k_extra_fast.inst.cfg | 2 +- .../quality/mixware_hyper_k/mixware_hyper_k_normal.inst.cfg | 2 +- .../quality/mixware_hyper_s/mixware_hyper_s_draft.inst.cfg | 2 +- .../quality/mixware_hyper_s/mixware_hyper_s_extra_fast.inst.cfg | 2 +- .../quality/mixware_hyper_s/mixware_hyper_s_normal.inst.cfg | 2 +- resources/quality/mixware_vulcan/mixware_vulcan_draft.inst.cfg | 2 +- .../quality/mixware_vulcan/mixware_vulcan_extra_fast.inst.cfg | 2 +- resources/quality/mixware_vulcan/mixware_vulcan_normal.inst.cfg | 2 +- resources/quality/mixware_wand/mixware_wand_draft.inst.cfg | 2 +- resources/quality/mixware_wand/mixware_wand_extra_fast.inst.cfg | 2 +- resources/quality/mixware_wand/mixware_wand_normal.inst.cfg | 2 +- .../abs/monoprice_select_mini_v2_abs_draft.inst.cfg | 2 +- .../abs/monoprice_select_mini_v2_abs_fast.inst.cfg | 2 +- .../abs/monoprice_select_mini_v2_abs_high.inst.cfg | 2 +- .../abs/monoprice_select_mini_v2_abs_normal.inst.cfg | 2 +- .../abs/monoprice_select_mini_v2_abs_superdraft.inst.cfg | 2 +- .../abs/monoprice_select_mini_v2_abs_thickerdraft.inst.cfg | 2 +- .../abs/monoprice_select_mini_v2_abs_ultra.inst.cfg | 2 +- .../abs/monoprice_select_mini_v2_abs_verydraft.inst.cfg | 2 +- .../monoprice_select_mini_v2_global_Draft_Quality.inst.cfg | 2 +- .../monoprice_select_mini_v2_global_Fast_Quality.inst.cfg | 2 +- .../monoprice_select_mini_v2_global_High_Quality.inst.cfg | 2 +- .../monoprice_select_mini_v2_global_Normal_Quality.inst.cfg | 2 +- .../monoprice_select_mini_v2_global_SuperDraft_Quality.inst.cfg | 2 +- ...onoprice_select_mini_v2_global_ThickerDraft_Quality.inst.cfg | 2 +- .../monoprice_select_mini_v2_global_Ultra_Quality.inst.cfg | 2 +- .../monoprice_select_mini_v2_global_VeryDraft_Quality.inst.cfg | 2 +- .../nylon/monoprice_select_mini_v2_nylon_draft.inst.cfg | 2 +- .../nylon/monoprice_select_mini_v2_nylon_fast.inst.cfg | 2 +- .../nylon/monoprice_select_mini_v2_nylon_high.inst.cfg | 2 +- .../nylon/monoprice_select_mini_v2_nylon_normal.inst.cfg | 2 +- .../nylon/monoprice_select_mini_v2_nylon_superdraft.inst.cfg | 2 +- .../nylon/monoprice_select_mini_v2_nylon_thickerdraft.inst.cfg | 2 +- .../nylon/monoprice_select_mini_v2_nylon_ultra.inst.cfg | 2 +- .../nylon/monoprice_select_mini_v2_nylon_verydraft.inst.cfg | 2 +- .../pc/monoprice_select_mini_v2_pc_draft.inst.cfg | 2 +- .../pc/monoprice_select_mini_v2_pc_fast.inst.cfg | 2 +- .../pc/monoprice_select_mini_v2_pc_high.inst.cfg | 2 +- .../pc/monoprice_select_mini_v2_pc_normal.inst.cfg | 2 +- .../pc/monoprice_select_mini_v2_pc_superdraft.inst.cfg | 2 +- .../pc/monoprice_select_mini_v2_pc_thickerdraft.inst.cfg | 2 +- .../pc/monoprice_select_mini_v2_pc_ultra.inst.cfg | 2 +- .../pc/monoprice_select_mini_v2_pc_verydraft.inst.cfg | 2 +- .../petg/monoprice_select_mini_v2_petg_draft.inst.cfg | 2 +- .../petg/monoprice_select_mini_v2_petg_fast.inst.cfg | 2 +- .../petg/monoprice_select_mini_v2_petg_high.inst.cfg | 2 +- .../petg/monoprice_select_mini_v2_petg_normal.inst.cfg | 2 +- .../petg/monoprice_select_mini_v2_petg_superdraft.inst.cfg | 2 +- .../petg/monoprice_select_mini_v2_petg_thickerdraft.inst.cfg | 2 +- .../petg/monoprice_select_mini_v2_petg_ultra.inst.cfg | 2 +- .../petg/monoprice_select_mini_v2_petg_verydraft.inst.cfg | 2 +- .../pla/monoprice_select_mini_v2_pla_draft.inst.cfg | 2 +- .../pla/monoprice_select_mini_v2_pla_fast.inst.cfg | 2 +- .../pla/monoprice_select_mini_v2_pla_high.inst.cfg | 2 +- .../pla/monoprice_select_mini_v2_pla_normal.inst.cfg | 2 +- .../pla/monoprice_select_mini_v2_pla_superdraft.inst.cfg | 2 +- .../pla/monoprice_select_mini_v2_pla_thickerdraft.inst.cfg | 2 +- .../pla/monoprice_select_mini_v2_pla_ultra.inst.cfg | 2 +- .../pla/monoprice_select_mini_v2_pla_verydraft.inst.cfg | 2 +- resources/quality/normal.inst.cfg | 2 +- resources/quality/nps/nps_ABS_A.inst.cfg | 2 +- resources/quality/nps/nps_ABS_B.inst.cfg | 2 +- resources/quality/nps/nps_ABS_C.inst.cfg | 2 +- resources/quality/nps/nps_PC_A.inst.cfg | 2 +- resources/quality/nps/nps_PC_B.inst.cfg | 2 +- resources/quality/nps/nps_PC_C.inst.cfg | 2 +- resources/quality/nps/nps_PETG_A.inst.cfg | 2 +- resources/quality/nps/nps_PETG_B.inst.cfg | 2 +- resources/quality/nps/nps_PETG_C.inst.cfg | 2 +- resources/quality/nps/nps_PLA_A.inst.cfg | 2 +- resources/quality/nps/nps_PLA_B.inst.cfg | 2 +- resources/quality/nps/nps_PLA_C.inst.cfg | 2 +- resources/quality/nps/nps_TPU_A.inst.cfg | 2 +- resources/quality/nps/nps_TPU_B.inst.cfg | 2 +- resources/quality/nps/nps_TPU_C.inst.cfg | 2 +- resources/quality/nps/nps_global_A.inst.cfg | 2 +- resources/quality/nps/nps_global_B.inst.cfg | 2 +- resources/quality/nps/nps_global_C.inst.cfg | 2 +- resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg | 2 +- resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg | 2 +- resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg | 2 +- resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg | 2 +- resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg | 2 +- resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg | 2 +- resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg | 2 +- resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg | 2 +- resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg | 2 +- resources/quality/peopoly_moai/peopoly_moai_extra_high.inst.cfg | 2 +- resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg | 2 +- resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.2_Nylon_super.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.2_Nylon_ultra.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.3_Nylon_adaptive.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.3_Nylon_low.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.3_Nylon_standard.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.3_Nylon_super.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.4_Nylon_adaptive.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.4_Nylon_low.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.4_Nylon_standard.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.4_Nylon_super.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.5_Nylon_adaptive.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.5_Nylon_low.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.5_Nylon_standard.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.5_Nylon_super.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.6_Nylon_standard.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.8_Nylon_draft.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_1.0_Nylon_draft.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.2_PETG_super.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.2_PETG_ultra.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.3_PETG_adaptive.inst.cfg | 2 +- .../quality/ratrig_base/petg/ratrig_base_0.3_PETG_low.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.3_PETG_standard.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.3_PETG_super.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.4_PETG_adaptive.inst.cfg | 2 +- .../quality/ratrig_base/petg/ratrig_base_0.4_PETG_low.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.4_PETG_standard.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.4_PETG_super.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.5_PETG_adaptive.inst.cfg | 2 +- .../quality/ratrig_base/petg/ratrig_base_0.5_PETG_low.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.5_PETG_standard.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.5_PETG_super.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.6_PETG_standard.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.8_PETG_draft.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_1.0_PETG_draft.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_0.2_PLA_super.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_0.2_PLA_ultra.inst.cfg | 2 +- .../ratrig_base/pla/ratrig_base_0.3_PLA_adaptive.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_0.3_PLA_low.inst.cfg | 2 +- .../ratrig_base/pla/ratrig_base_0.3_PLA_standard.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_0.3_PLA_super.inst.cfg | 2 +- .../ratrig_base/pla/ratrig_base_0.4_PLA_adaptive.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_0.4_PLA_low.inst.cfg | 2 +- .../ratrig_base/pla/ratrig_base_0.4_PLA_standard.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_0.4_PLA_super.inst.cfg | 2 +- .../ratrig_base/pla/ratrig_base_0.5_PLA_adaptive.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_0.5_PLA_low.inst.cfg | 2 +- .../ratrig_base/pla/ratrig_base_0.5_PLA_standard.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_0.5_PLA_super.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_0.6_PLA_draft.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_0.6_PLA_low.inst.cfg | 2 +- .../ratrig_base/pla/ratrig_base_0.6_PLA_standard.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_0.8_PLA_draft.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_1.0_PLA_draft.inst.cfg | 2 +- .../quality/ratrig_base/ratrig_base_global_adaptive.inst.cfg | 2 +- resources/quality/ratrig_base/ratrig_base_global_draft.inst.cfg | 2 +- resources/quality/ratrig_base/ratrig_base_global_low.inst.cfg | 2 +- .../quality/ratrig_base/ratrig_base_global_standard.inst.cfg | 2 +- resources/quality/ratrig_base/ratrig_base_global_super.inst.cfg | 2 +- resources/quality/ratrig_base/ratrig_base_global_ultra.inst.cfg | 2 +- .../ratrig_base/tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg | 2 +- .../ratrig_base/tpu/ratrig_base_0.3_TPU_standard.inst.cfg | 2 +- .../quality/ratrig_base/tpu/ratrig_base_0.3_TPU_super.inst.cfg | 2 +- .../ratrig_base/tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg | 2 +- .../ratrig_base/tpu/ratrig_base_0.4_TPU_standard.inst.cfg | 2 +- .../quality/ratrig_base/tpu/ratrig_base_0.4_TPU_super.inst.cfg | 2 +- .../ratrig_base/tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg | 2 +- .../ratrig_base/tpu/ratrig_base_0.5_TPU_standard.inst.cfg | 2 +- .../quality/ratrig_base/tpu/ratrig_base_0.5_TPU_super.inst.cfg | 2 +- .../ratrig_base/tpu/ratrig_base_0.6_TPU_standard.inst.cfg | 2 +- .../quality/ratrig_base/tpu/ratrig_base_0.8_TPU_draft.inst.cfg | 2 +- .../quality/ratrig_base/tpu/ratrig_base_1.0_TPU_draft.inst.cfg | 2 +- .../quality/rigid3d_base/abs/rigid3d_base_abs_adaptive.inst.cfg | 2 +- .../quality/rigid3d_base/abs/rigid3d_base_abs_good.inst.cfg | 2 +- .../quality/rigid3d_base/abs/rigid3d_base_abs_low.inst.cfg | 2 +- .../quality/rigid3d_base/abs/rigid3d_base_abs_standard.inst.cfg | 2 +- .../quality/rigid3d_base/abs/rigid3d_base_abs_super.inst.cfg | 2 +- .../quality/rigid3d_base/abs/rigid3d_base_abs_ultra.inst.cfg | 2 +- .../rigid3d_base/nylon/rigid3d_base_nylon_adaptive.inst.cfg | 2 +- .../quality/rigid3d_base/nylon/rigid3d_base_nylon_good.inst.cfg | 2 +- .../quality/rigid3d_base/nylon/rigid3d_base_nylon_low.inst.cfg | 2 +- .../rigid3d_base/nylon/rigid3d_base_nylon_standard.inst.cfg | 2 +- .../rigid3d_base/nylon/rigid3d_base_nylon_super.inst.cfg | 2 +- .../rigid3d_base/nylon/rigid3d_base_nylon_ultra.inst.cfg | 2 +- .../rigid3d_base/petg/rigid3d_base_petg_adaptive.inst.cfg | 2 +- .../quality/rigid3d_base/petg/rigid3d_base_petg_good.inst.cfg | 2 +- .../quality/rigid3d_base/petg/rigid3d_base_petg_low.inst.cfg | 2 +- .../rigid3d_base/petg/rigid3d_base_petg_standard.inst.cfg | 2 +- .../quality/rigid3d_base/petg/rigid3d_base_petg_super.inst.cfg | 2 +- .../quality/rigid3d_base/petg/rigid3d_base_petg_ultra.inst.cfg | 2 +- .../quality/rigid3d_base/pla/rigid3d_base_pla_adaptive.inst.cfg | 2 +- .../quality/rigid3d_base/pla/rigid3d_base_pla_good.inst.cfg | 2 +- .../quality/rigid3d_base/pla/rigid3d_base_pla_low.inst.cfg | 2 +- .../quality/rigid3d_base/pla/rigid3d_base_pla_standard.inst.cfg | 2 +- .../quality/rigid3d_base/pla/rigid3d_base_pla_super.inst.cfg | 2 +- .../quality/rigid3d_base/pla/rigid3d_base_pla_ultra.inst.cfg | 2 +- .../quality/rigid3d_base/rigid3d_base_global_adaptive.inst.cfg | 2 +- .../quality/rigid3d_base/rigid3d_base_global_good.inst.cfg | 2 +- resources/quality/rigid3d_base/rigid3d_base_global_low.inst.cfg | 2 +- .../quality/rigid3d_base/rigid3d_base_global_standard.inst.cfg | 2 +- .../quality/rigid3d_base/rigid3d_base_global_super.inst.cfg | 2 +- .../quality/rigid3d_base/rigid3d_base_global_ultra.inst.cfg | 2 +- .../quality/rigid3d_base/tpu/rigid3d_base_tpu_adaptive.inst.cfg | 2 +- .../quality/rigid3d_base/tpu/rigid3d_base_tpu_good.inst.cfg | 2 +- .../quality/rigid3d_base/tpu/rigid3d_base_tpu_low.inst.cfg | 2 +- .../quality/rigid3d_base/tpu/rigid3d_base_tpu_standard.inst.cfg | 2 +- .../quality/rigid3d_base/tpu/rigid3d_base_tpu_super.inst.cfg | 2 +- .../quality/rigid3d_base/tpu/rigid3d_base_tpu_ultra.inst.cfg | 2 +- resources/quality/skriware_2/sk2_advanced.inst.cfg | 2 +- resources/quality/skriware_2/sk2_fast.inst.cfg | 2 +- resources/quality/skriware_2/sk2_precise.inst.cfg | 2 +- .../quality/snakeoilxy/snakeoilxy_global_fast_quality.inst.cfg | 2 +- .../quality/snakeoilxy/snakeoilxy_global_fine_quality.inst.cfg | 2 +- .../snakeoilxy/snakeoilxy_global_normal_quality.inst.cfg | 2 +- .../snakeoilxy/snakeoilxy_global_strong_quality.inst.cfg | 2 +- resources/quality/snapmaker2/snapmaker2_fast.inst.cfg | 2 +- resources/quality/snapmaker2/snapmaker2_high.inst.cfg | 2 +- resources/quality/snapmaker2/snapmaker2_normal.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_super.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_ultra.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_bowden_0.3_ABS_adaptive.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_bowden_0.3_ABS_standard.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_super.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_bowden_0.4_ABS_adaptive.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_bowden_0.4_ABS_standard.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_super.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_bowden_0.5_ABS_adaptive.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_bowden_0.5_ABS_standard.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_super.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_bowden_0.6_ABS_adaptive.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_draft.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_bowden_0.6_ABS_standard.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_0.8_ABS_draft.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_1.0_ABS_draft.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.2_ABS_super.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.2_ABS_ultra.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.3_ABS_adaptive.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.3_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.3_ABS_standard.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.3_ABS_super.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.4_ABS_adaptive.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.4_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.4_ABS_standard.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.4_ABS_super.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.5_ABS_adaptive.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.5_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.5_ABS_standard.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.5_ABS_super.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.6_ABS_adaptive.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.6_ABS_draft.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.6_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.6_ABS_standard.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.8_ABS_draft.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_1.0_ABS_draft.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_0.2_ABS_super.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_0.2_ABS_ultra.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_titan_0.3_ABS_adaptive.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_0.3_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_titan_0.3_ABS_standard.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_0.3_ABS_super.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_titan_0.4_ABS_adaptive.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_0.4_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_titan_0.4_ABS_standard.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_0.4_ABS_super.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_titan_0.5_ABS_adaptive.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_0.5_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_titan_0.5_ABS_standard.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_0.5_ABS_super.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_titan_0.6_ABS_adaptive.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_0.6_ABS_draft.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_0.6_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_titan_0.6_ABS_standard.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_0.8_ABS_draft.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_1.0_ABS_draft.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.2_PETG_super.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.2_PETG_ultra.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.3_PETG_adaptive.inst.cfg | 2 +- resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_low.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.3_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.3_PETG_super.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.4_PETG_adaptive.inst.cfg | 2 +- resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_low.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.4_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.4_PETG_super.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.5_PETG_adaptive.inst.cfg | 2 +- resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_low.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.5_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.5_PETG_super.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.6_PETG_adaptive.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.6_PETG_draft.inst.cfg | 2 +- resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_low.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.6_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.8_PETG_draft.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_1.0_PETG_draft.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_0.2_PETG_super.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_0.2_PETG_ultra.inst.cfg | 2 +- .../sovol/PETG/sovol_planetary_0.3_PETG_adaptive.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_0.3_PETG_low.inst.cfg | 2 +- .../sovol/PETG/sovol_planetary_0.3_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_0.3_PETG_super.inst.cfg | 2 +- .../sovol/PETG/sovol_planetary_0.4_PETG_adaptive.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_0.4_PETG_low.inst.cfg | 2 +- .../sovol/PETG/sovol_planetary_0.4_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_0.4_PETG_super.inst.cfg | 2 +- .../sovol/PETG/sovol_planetary_0.5_PETG_adaptive.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_0.5_PETG_low.inst.cfg | 2 +- .../sovol/PETG/sovol_planetary_0.5_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_0.5_PETG_super.inst.cfg | 2 +- .../sovol/PETG/sovol_planetary_0.6_PETG_adaptive.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_0.6_PETG_draft.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_0.6_PETG_low.inst.cfg | 2 +- .../sovol/PETG/sovol_planetary_0.6_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_0.8_PETG_draft.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_1.0_PETG_draft.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.2_PETG_super.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.2_PETG_ultra.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.3_PETG_adaptive.inst.cfg | 2 +- resources/quality/sovol/PETG/sovol_titan_0.3_PETG_low.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.3_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.3_PETG_super.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.4_PETG_adaptive.inst.cfg | 2 +- resources/quality/sovol/PETG/sovol_titan_0.4_PETG_low.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.4_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.4_PETG_super.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.5_PETG_adaptive.inst.cfg | 2 +- resources/quality/sovol/PETG/sovol_titan_0.5_PETG_low.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.5_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.5_PETG_super.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.6_PETG_adaptive.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.6_PETG_draft.inst.cfg | 2 +- resources/quality/sovol/PETG/sovol_titan_0.6_PETG_low.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.6_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.8_PETG_draft.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_1.0_PETG_draft.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_super.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_ultra.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_bowden_0.3_PLA_adaptive.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_bowden_0.3_PLA_standard.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_super.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_bowden_0.4_PLA_adaptive.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_bowden_0.4_PLA_standard.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_super.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_bowden_0.5_PLA_adaptive.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_bowden_0.5_PLA_standard.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_super.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_bowden_0.6_PLA_adaptive.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_draft.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_bowden_0.6_PLA_standard.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_0.8_PLA_draft.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_1.0_PLA_draft.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.2_PLA_super.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.2_PLA_ultra.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.3_PLA_adaptive.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.3_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.3_PLA_standard.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.3_PLA_super.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.4_PLA_adaptive.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.4_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.4_PLA_standard.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.4_PLA_super.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.5_PLA_adaptive.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.5_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.5_PLA_standard.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.5_PLA_super.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.6_PLA_adaptive.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.6_PLA_draft.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.6_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.6_PLA_standard.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.8_PLA_draft.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_1.0_PLA_draft.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_0.2_PLA_super.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_0.2_PLA_ultra.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_titan_0.3_PLA_adaptive.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_0.3_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_titan_0.3_PLA_standard.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_0.3_PLA_super.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_titan_0.4_PLA_adaptive.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_0.4_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_titan_0.4_PLA_standard.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_0.4_PLA_super.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_titan_0.5_PLA_adaptive.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_0.5_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_titan_0.5_PLA_standard.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_0.5_PLA_super.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_titan_0.6_PLA_adaptive.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_0.6_PLA_draft.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_0.6_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_titan_0.6_PLA_standard.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_0.8_PLA_draft.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_1.0_PLA_draft.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_bowden_0.3_TPU_adaptive.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_bowden_0.3_TPU_standard.inst.cfg | 2 +- resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_super.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_bowden_0.4_TPU_adaptive.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_bowden_0.4_TPU_standard.inst.cfg | 2 +- resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_super.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_bowden_0.5_TPU_adaptive.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_bowden_0.5_TPU_standard.inst.cfg | 2 +- resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_super.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_bowden_0.6_TPU_standard.inst.cfg | 2 +- resources/quality/sovol/TPU/sovol_bowden_0.8_TPU_draft.inst.cfg | 2 +- resources/quality/sovol/TPU/sovol_bowden_1.0_TPU_draft.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_0.3_TPU_adaptive.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_0.3_TPU_standard.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_0.3_TPU_super.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_0.4_TPU_adaptive.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_0.4_TPU_standard.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_0.4_TPU_super.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_0.5_TPU_adaptive.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_0.5_TPU_standard.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_0.5_TPU_super.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_0.6_TPU_standard.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_0.8_TPU_draft.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_1.0_TPU_draft.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_titan_0.3_TPU_adaptive.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_titan_0.3_TPU_standard.inst.cfg | 2 +- resources/quality/sovol/TPU/sovol_titan_0.3_TPU_super.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_titan_0.4_TPU_adaptive.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_titan_0.4_TPU_standard.inst.cfg | 2 +- resources/quality/sovol/TPU/sovol_titan_0.4_TPU_super.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_titan_0.5_TPU_adaptive.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_titan_0.5_TPU_standard.inst.cfg | 2 +- resources/quality/sovol/TPU/sovol_titan_0.5_TPU_super.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_titan_0.6_TPU_standard.inst.cfg | 2 +- resources/quality/sovol/TPU/sovol_titan_0.8_TPU_draft.inst.cfg | 2 +- resources/quality/sovol/TPU/sovol_titan_1.0_TPU_draft.inst.cfg | 2 +- resources/quality/sovol/sovol_bowden_global_adaptive.inst.cfg | 2 +- resources/quality/sovol/sovol_bowden_global_draft.inst.cfg | 2 +- resources/quality/sovol/sovol_bowden_global_low.inst.cfg | 2 +- resources/quality/sovol/sovol_bowden_global_standard.inst.cfg | 2 +- resources/quality/sovol/sovol_bowden_global_super.inst.cfg | 2 +- resources/quality/sovol/sovol_bowden_global_ultra.inst.cfg | 2 +- .../quality/sovol/sovol_planetary_global_adaptive.inst.cfg | 2 +- resources/quality/sovol/sovol_planetary_global_draft.inst.cfg | 2 +- resources/quality/sovol/sovol_planetary_global_low.inst.cfg | 2 +- .../quality/sovol/sovol_planetary_global_standard.inst.cfg | 2 +- resources/quality/sovol/sovol_planetary_global_super.inst.cfg | 2 +- resources/quality/sovol/sovol_planetary_global_ultra.inst.cfg | 2 +- resources/quality/sovol/sovol_titan_global_adaptive.inst.cfg | 2 +- resources/quality/sovol/sovol_titan_global_draft.inst.cfg | 2 +- resources/quality/sovol/sovol_titan_global_low.inst.cfg | 2 +- resources/quality/sovol/sovol_titan_global_standard.inst.cfg | 2 +- resources/quality/sovol/sovol_titan_global_super.inst.cfg | 2 +- resources/quality/sovol/sovol_titan_global_ultra.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg | 2 +- .../strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg | 2 +- .../strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg | 2 +- .../strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg | 2 +- .../strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg | 2 +- .../strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg | 2 +- .../strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg | 2 +- .../strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg | 2 +- resources/quality/strateo3d/s3d_global_A.inst.cfg | 2 +- resources/quality/strateo3d/s3d_global_B.inst.cfg | 2 +- resources/quality/strateo3d/s3d_global_C.inst.cfg | 2 +- resources/quality/strateo3d/s3d_global_D.inst.cfg | 2 +- resources/quality/strateo3d/s3d_global_E.inst.cfg | 2 +- resources/quality/strateo3d/s3d_global_F.inst.cfg | 2 +- resources/quality/strateo3d/s3d_global_G.inst.cfg | 2 +- resources/quality/strateo3d/s3d_global_H.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ABS-X_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ABS-X_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ABS-X_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ABS_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ABS_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ABS_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ACETATE_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ACETATE_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ACETATE_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ASA-X_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ASA-X_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ASA-X_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_BVOH_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_BVOH_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_BVOH_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_COPA_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_COPA_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_COPA_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_HIPS_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_HIPS_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_HIPS_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PA6CF_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PA6CF_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PA6CF_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PA6GF_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PA6GF_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PA6GF_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PC_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PC_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PC_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PETG_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PETG_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PETG_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PLA_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PLA_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PLA_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PVA-M_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PVA-M_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PVA-M_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PVA-S_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PVA-S_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PVA-S_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_TPU98A_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_TPU98A_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_TPU98A_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ABS-X_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ABS-X_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ABS-X_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ABS_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ABS_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ABS_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ACETATE_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ACETATE_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ACETATE_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ASA-X_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ASA-X_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ASA-X_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_BVOH_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_BVOH_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_BVOH_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_COPA_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_COPA_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_COPA_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_HIPS_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_HIPS_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_HIPS_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PA6CF_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PA6CF_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PA6CF_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PA6GF_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PA6GF_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PA6GF_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PC_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PC_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PC_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PETG_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PETG_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PETG_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PLA_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PLA_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PLA_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PVA-M_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PVA-M_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PVA-M_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PVA-S_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PVA-S_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PVA-S_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_TPU98A_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_TPU98A_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_TPU98A_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_ABS-X_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_ABS-X_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_ABS-X_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_ABS_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_ABS_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_ABS_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_ASA-X_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_ASA-X_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_ASA-X_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_BVOH_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_BVOH_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_BVOH_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_COPA_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_COPA_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_COPA_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_HIPS_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_HIPS_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_HIPS_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PA6CF_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PA6CF_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PA6CF_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PA6GF_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PA6GF_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PA6GF_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PC_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PC_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PC_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PETG_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PETG_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PETG_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PLA_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PLA_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PLA_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PVA-M_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PVA-M_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PVA-M_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PVA-S_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PVA-S_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PVA-S_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_TPU98A_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_TPU98A_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_TPU98A_E.inst.cfg | 2 +- .../quality/strateo3d_IDEX420/s3d_IDEX420_global_A.inst.cfg | 2 +- .../quality/strateo3d_IDEX420/s3d_IDEX420_global_B.inst.cfg | 2 +- .../quality/strateo3d_IDEX420/s3d_IDEX420_global_C.inst.cfg | 2 +- .../quality/strateo3d_IDEX420/s3d_IDEX420_global_D.inst.cfg | 2 +- .../quality/strateo3d_IDEX420/s3d_IDEX420_global_E.inst.cfg | 2 +- resources/quality/tank_m_base_global_draft.inst.cfg | 2 +- resources/quality/tank_m_base_global_high.inst.cfg | 2 +- resources/quality/tank_m_base_global_standard.inst.cfg | 2 +- .../quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg | 2 +- resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg | 2 +- .../quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_e10_high.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_e16_high.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/abs/tizyx_evy_0.2_abs_high.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/abs/tizyx_evy_0.3_abs_high.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_draft.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_coarse.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_extra_coarse.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.2_flex_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.3_flex_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_draft.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_coarse.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_normal.inst.cfg | 2 +- .../tizyx_evy/flex/tizyx_evy_0.8_flex_extra_coarse.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.2_petg_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.3_petg_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_draft.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_coarse.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_normal.inst.cfg | 2 +- .../tizyx_evy/petg/tizyx_evy_0.8_petg_extra_coarse.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_normal.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/pla/tizyx_evy_0.2_pla_high.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/pla/tizyx_evy_0.3_pla_high.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_draft.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_coarse.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_extra_coarse.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_normal.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.2_pla_bois_high.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.3_pla_bois_high.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_high.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_normal.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_draft.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_high.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_normal.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_coarse.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_high.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_normal.inst.cfg | 2 +- .../pla_bois/tizyx_evy_0.8_pla_bois_extra_coarse.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_high.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/tizyx_evy_global_Coarse_Quality.inst.cfg | 2 +- .../tizyx/tizyx_evy/tizyx_evy_global_Draft_Quality.inst.cfg | 2 +- .../tizyx_evy/tizyx_evy_global_Extra_Coarse_Quality.inst.cfg | 2 +- .../tizyx/tizyx_evy/tizyx_evy_global_High_Quality.inst.cfg | 2 +- .../tizyx/tizyx_evy/tizyx_evy_global_Normal_Quality.inst.cfg | 2 +- .../tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_high.inst.cfg | 2 +- .../abs/tizyx_evy_dual_classic_abs_normal.inst.cfg | 2 +- .../abs/tizyx_evy_dual_direct_drive_abs_high.inst.cfg | 2 +- .../abs/tizyx_evy_dual_direct_drive_abs_normal.inst.cfg | 2 +- .../flex/tizyx_evy_dual_classic_flex_flex.inst.cfg | 2 +- .../flex/tizyx_evy_dual_classic_flex_flex_only.inst.cfg | 2 +- .../flex/tizyx_evy_dual_direct_drive_flex_flex.inst.cfg | 2 +- .../flex/tizyx_evy_dual_direct_drive_flex_flex_only.inst.cfg | 2 +- .../petg/tizyx_evy_dual_classic_petg_high.inst.cfg | 2 +- .../petg/tizyx_evy_dual_classic_petg_normal.inst.cfg | 2 +- .../petg/tizyx_evy_dual_direct_drive_petg_high.inst.cfg | 2 +- .../petg/tizyx_evy_dual_direct_drive_petg_normal.inst.cfg | 2 +- .../tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex.inst.cfg | 2 +- .../pla/tizyx_evy_dual_classic_pla_flex_only.inst.cfg | 2 +- .../tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_high.inst.cfg | 2 +- .../pla/tizyx_evy_dual_classic_pla_normal.inst.cfg | 2 +- .../tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_pva.inst.cfg | 2 +- .../pla/tizyx_evy_dual_direct_drive_pla_flex.inst.cfg | 2 +- .../pla/tizyx_evy_dual_direct_drive_pla_flex_only.inst.cfg | 2 +- .../pla/tizyx_evy_dual_direct_drive_pla_high.inst.cfg | 2 +- .../pla/tizyx_evy_dual_direct_drive_pla_normal.inst.cfg | 2 +- .../pla/tizyx_evy_dual_direct_drive_pla_pva.inst.cfg | 2 +- .../pla_bois/tizyx_evy_dual_classic_pla_bois_flex.inst.cfg | 2 +- .../pla_bois/tizyx_evy_dual_classic_pla_bois_high.inst.cfg | 2 +- .../pla_bois/tizyx_evy_dual_classic_pla_bois_normal.inst.cfg | 2 +- .../pla_bois/tizyx_evy_dual_direct_drive_pla_bois_flex.inst.cfg | 2 +- .../pla_bois/tizyx_evy_dual_direct_drive_pla_bois_high.inst.cfg | 2 +- .../tizyx_evy_dual_direct_drive_pla_bois_normal.inst.cfg | 2 +- .../tizyx_evy_dual/pva/tizyx_evy_dual_classic_pva_pva.inst.cfg | 2 +- .../pva/tizyx_evy_dual_direct_drive_pva_pva.inst.cfg | 2 +- .../tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg | 2 +- .../tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg | 2 +- .../tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg | 2 +- .../tizyx_evy_dual_global_Normal_Quality.inst.cfg | 2 +- .../tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg | 2 +- resources/quality/tizyx/tizyx_k25/tizyx_k25_high.inst.cfg | 2 +- resources/quality/tizyx/tizyx_k25/tizyx_k25_normal.inst.cfg | 2 +- .../quality/trimaker_cosmosII/trimaker_cosmosII_fast.inst.cfg | 2 +- .../quality/trimaker_cosmosII/trimaker_cosmosII_normal.inst.cfg | 2 +- .../quality/trimaker_cosmosII/trimaker_cosmosII_slow.inst.cfg | 2 +- resources/quality/trimaker_nebula/trimaker_nebula_fast.inst.cfg | 2 +- .../quality/trimaker_nebula/trimaker_nebula_normal.inst.cfg | 2 +- resources/quality/trimaker_nebula/trimaker_nebula_slow.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.2_ABS_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.2_ABS_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.2_ABS_super.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.2_PETG_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.2_PETG_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.2_PETG_super.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.2_PLA_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.2_PLA_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.2_PLA_super.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_ABS_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_ABS_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_ABS_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_ABS_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_PETG_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_PETG_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_PETG_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_PETG_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_PLA_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_PLA_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_PLA_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_PLA_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_TPU_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_TPU_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_TPU_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_ABS_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_ABS_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_ABS_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_ABS_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_ABS_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_PETG_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_PETG_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_PETG_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_PETG_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_PETG_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_PLA_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_PLA_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_PLA_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_PLA_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_PLA_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_TPU_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_TPU_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_TPU_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_ABS_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_ABS_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_ABS_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_ABS_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_ABS_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_PETG_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_PETG_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_PETG_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_PETG_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_PETG_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_PLA_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_PLA_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_PLA_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_PLA_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_PLA_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_TPU_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_TPU_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_TPU_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_ABS_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_ABS_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_ABS_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_PETG_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_PETG_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_PETG_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_PLA_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_PLA_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_PLA_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_PLA_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_TPU_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_TPU_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_ABS_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_ABS_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_ABS_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_PETG_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_PETG_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_PETG_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_PLA_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_PLA_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_PLA_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_TPU_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_TPU_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_TPU_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_global_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_global_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_global_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_global_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_global_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_global_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_global_super.inst.cfg | 2 +- resources/quality/twotrees/abs/two_trees_0.2_ABS_super.inst.cfg | 2 +- resources/quality/twotrees/abs/two_trees_0.2_ABS_ultra.inst.cfg | 2 +- .../quality/twotrees/abs/two_trees_0.3_ABS_adaptive.inst.cfg | 2 +- resources/quality/twotrees/abs/two_trees_0.3_ABS_low.inst.cfg | 2 +- .../quality/twotrees/abs/two_trees_0.3_ABS_standard.inst.cfg | 2 +- resources/quality/twotrees/abs/two_trees_0.3_ABS_super.inst.cfg | 2 +- .../quality/twotrees/abs/two_trees_0.4_ABS_adaptive.inst.cfg | 2 +- resources/quality/twotrees/abs/two_trees_0.4_ABS_low.inst.cfg | 2 +- .../quality/twotrees/abs/two_trees_0.4_ABS_standard.inst.cfg | 2 +- resources/quality/twotrees/abs/two_trees_0.4_ABS_super.inst.cfg | 2 +- .../quality/twotrees/abs/two_trees_0.5_ABS_adaptive.inst.cfg | 2 +- resources/quality/twotrees/abs/two_trees_0.5_ABS_low.inst.cfg | 2 +- .../quality/twotrees/abs/two_trees_0.5_ABS_standard.inst.cfg | 2 +- resources/quality/twotrees/abs/two_trees_0.5_ABS_super.inst.cfg | 2 +- .../quality/twotrees/abs/two_trees_0.6_ABS_standard.inst.cfg | 2 +- resources/quality/twotrees/abs/two_trees_0.8_ABS_draft.inst.cfg | 2 +- resources/quality/twotrees/abs/two_trees_1.0_ABS_draft.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.2_PETG_super.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.2_PETG_ultra.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.3_PETG_adaptive.inst.cfg | 2 +- resources/quality/twotrees/petg/two_trees_0.3_PETG_low.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.3_PETG_standard.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.3_PETG_super.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.4_PETG_adaptive.inst.cfg | 2 +- resources/quality/twotrees/petg/two_trees_0.4_PETG_low.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.4_PETG_standard.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.4_PETG_super.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.5_PETG_adaptive.inst.cfg | 2 +- resources/quality/twotrees/petg/two_trees_0.5_PETG_low.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.5_PETG_standard.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.5_PETG_super.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.6_PETG_standard.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.8_PETG_draft.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_1.0_PETG_draft.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_0.2_PLA_super.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_0.2_PLA_ultra.inst.cfg | 2 +- .../quality/twotrees/pla/two_trees_0.3_PLA_adaptive.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_0.3_PLA_low.inst.cfg | 2 +- .../quality/twotrees/pla/two_trees_0.3_PLA_standard.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_0.3_PLA_super.inst.cfg | 2 +- .../quality/twotrees/pla/two_trees_0.4_PLA_adaptive.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_0.4_PLA_low.inst.cfg | 2 +- .../quality/twotrees/pla/two_trees_0.4_PLA_standard.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_0.4_PLA_super.inst.cfg | 2 +- .../quality/twotrees/pla/two_trees_0.5_PLA_adaptive.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_0.5_PLA_low.inst.cfg | 2 +- .../quality/twotrees/pla/two_trees_0.5_PLA_standard.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_0.5_PLA_super.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_0.6_PLA_draft.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_0.6_PLA_low.inst.cfg | 2 +- .../quality/twotrees/pla/two_trees_0.6_PLA_standard.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_0.8_PLA_draft.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_1.0_PLA_draft.inst.cfg | 2 +- .../quality/twotrees/tpu/two_trees_0.3_TPU_adaptive.inst.cfg | 2 +- .../quality/twotrees/tpu/two_trees_0.3_TPU_standard.inst.cfg | 2 +- resources/quality/twotrees/tpu/two_trees_0.3_TPU_super.inst.cfg | 2 +- .../quality/twotrees/tpu/two_trees_0.4_TPU_adaptive.inst.cfg | 2 +- .../quality/twotrees/tpu/two_trees_0.4_TPU_standard.inst.cfg | 2 +- resources/quality/twotrees/tpu/two_trees_0.4_TPU_super.inst.cfg | 2 +- .../quality/twotrees/tpu/two_trees_0.5_TPU_adaptive.inst.cfg | 2 +- .../quality/twotrees/tpu/two_trees_0.5_TPU_standard.inst.cfg | 2 +- resources/quality/twotrees/tpu/two_trees_0.5_TPU_super.inst.cfg | 2 +- .../quality/twotrees/tpu/two_trees_0.6_TPU_standard.inst.cfg | 2 +- resources/quality/twotrees/tpu/two_trees_0.8_TPU_draft.inst.cfg | 2 +- resources/quality/twotrees/tpu/two_trees_1.0_TPU_draft.inst.cfg | 2 +- resources/quality/twotrees/two_trees_global_adaptive.inst.cfg | 2 +- resources/quality/twotrees/two_trees_global_draft.inst.cfg | 2 +- resources/quality/twotrees/two_trees_global_low.inst.cfg | 2 +- resources/quality/twotrees/two_trees_global_standard.inst.cfg | 2 +- resources/quality/twotrees/two_trees_global_super.inst.cfg | 2 +- resources/quality/twotrees/two_trees_global_ultra.inst.cfg | 2 +- resources/quality/ultimaker2/um2_draft.inst.cfg | 2 +- resources/quality/ultimaker2/um2_fast.inst.cfg | 2 +- resources/quality/ultimaker2/um2_high.inst.cfg | 2 +- resources/quality/ultimaker2/um2_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/pla_0.25_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/pla_0.4_fast.inst.cfg | 2 +- resources/quality/ultimaker2_plus/pla_0.4_high.inst.cfg | 2 +- resources/quality/ultimaker2_plus/pla_0.4_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/pla_0.6_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/pla_0.8_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_abs_0.25_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_abs_0.4_fast.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_abs_0.4_high.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_abs_0.4_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_abs_0.6_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_abs_0.8_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpe_0.25_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpe_0.4_fast.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpe_0.4_high.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpe_0.4_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpe_0.6_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpe_0.8_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpep_0.4_draft.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpep_0.4_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpep_0.6_draft.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpep_0.6_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpep_0.8_draft.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpep_0.8_normal.inst.cfg | 2 +- .../quality/ultimaker2_plus/um2p_global_Coarse_Quality.inst.cfg | 2 +- .../quality/ultimaker2_plus/um2p_global_Draft_Quality.inst.cfg | 2 +- .../ultimaker2_plus/um2p_global_Extra_Coarse_Quality.inst.cfg | 2 +- .../quality/ultimaker2_plus/um2p_global_Fast_Quality.inst.cfg | 2 +- .../quality/ultimaker2_plus/um2p_global_High_Quality.inst.cfg | 2 +- .../quality/ultimaker2_plus/um2p_global_Normal_Quality.inst.cfg | 2 +- .../um2p_global_Slightly_Coarse_Quality.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_nylon_0.25_high.inst.cfg | 2 +- .../quality/ultimaker2_plus/um2p_nylon_0.25_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_nylon_0.4_fast.inst.cfg | 2 +- .../quality/ultimaker2_plus/um2p_nylon_0.4_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_nylon_0.6_fast.inst.cfg | 2 +- .../quality/ultimaker2_plus/um2p_nylon_0.6_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_nylon_0.8_draft.inst.cfg | 2 +- .../quality/ultimaker2_plus/um2p_nylon_0.8_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pc_0.25_high.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pc_0.25_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pc_0.4_fast.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pc_0.4_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pc_0.6_fast.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pc_0.6_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pc_0.8_draft.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pc_0.8_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pp_0.4_fast.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pp_0.4_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pp_0.6_draft.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pp_0.6_fast.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pp_0.8_draft.inst.cfg | 2 +- .../quality/ultimaker2_plus/um2p_pp_0.8_verydraft.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_tpu_0.25_high.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_tpu_0.4_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_tpu_0.6_fast.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_abs_0.25_normal.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_abs_0.4_fast.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_abs_0.4_high.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_abs_0.4_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_abs_0.6_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_abs_0.8_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_cpe_0.25_normal.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_cpe_0.4_fast.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_cpe_0.4_high.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_cpe_0.4_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_cpe_0.6_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_cpe_0.8_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_cpep_0.4_draft.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_cpep_0.4_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_cpep_0.6_draft.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_cpep_0.6_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_cpep_0.8_draft.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_cpep_0.8_normal.inst.cfg | 2 +- .../um2pc_global_Coarse_Quality.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_global_Draft_Quality.inst.cfg | 2 +- .../um2pc_global_Extra_Coarse_Quality.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_global_Fast_Quality.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_global_High_Quality.inst.cfg | 2 +- .../um2pc_global_Normal_Quality.inst.cfg | 2 +- .../um2pc_global_Slightly_Coarse_Quality.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_nylon_0.25_high.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_nylon_0.25_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_nylon_0.4_fast.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_nylon_0.4_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_nylon_0.6_fast.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_nylon_0.6_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_nylon_0.8_draft.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_nylon_0.8_normal.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_pc_0.25_high.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_pc_0.25_normal.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_pc_0.4_fast.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_pc_0.4_normal.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_pc_0.6_fast.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_pc_0.6_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_pc_0.8_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_petg_0.25_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_petg_0.4_draft.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_petg_0.4_fast.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_petg_0.4_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_petg_0.6_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_petg_0.8_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_pla_0.25_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_pla_0.4_draft.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_pla_0.4_fast.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_pla_0.4_high.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_pla_0.4_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_pla_0.6_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_pla_0.8_normal.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_pp_0.4_fast.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_pp_0.4_normal.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_pp_0.6_draft.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_pp_0.6_fast.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_pp_0.8_draft.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_pp_0.8_verydraft.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_tpla_0.25_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_tpla_0.4_draft.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_tpla_0.4_fast.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_tpla_0.4_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_tpla_0.6_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_tpla_0.8_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_tpu_0.25_high.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_tpu_0.4_normal.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_tpu_0.6_fast.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.25_ABS_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.25_CPE_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.25_Nylon_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.25_PETG_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.25_PLA_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.25_TPLA_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_CPE_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_CPE_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_CPE_High_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_CPE_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_Nylon_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_Nylon_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_Nylon_High_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_Nylon_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_PETG_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PETG_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_PETG_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_TPU_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_TPU_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.8_ABS_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_ABS_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_ABS_Verydraft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg | 2 +- .../ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.8_PC_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PC_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PC_Verydraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_bb0.8_PVA_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_bb0.8_PVA_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_bb0.8_PVA_Verydraft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_global_Draft_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_global_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_global_Superdraft_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_global_Verydraft_Quality.inst.cfg | 2 +- .../ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm.inst.cfg | 2 +- .../ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm.inst.cfg | 2 +- .../ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm.inst.cfg | 2 +- .../um_methodx_1c_um-nylon12-cf-175_0.2mm.inst.cfg | 2 +- .../ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm.inst.cfg | 2 +- .../ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm.inst.cfg | 2 +- .../um_methodx_2xa_um-rapidrinse-175_0.2mm.inst.cfg | 2 +- .../ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm.inst.cfg | 2 +- .../ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg | 2 +- .../um_methodx_labs_um-abscf-175_0.2mm.inst.cfg | 2 +- .../um_methodx_labs_um-absr-175_0.2mm.inst.cfg | 2 +- .../ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm.inst.cfg | 2 +- .../um_methodx_labs_um-nylon12-cf-175_0.2mm.inst.cfg | 2 +- .../um_methodxl_1c_um-abscf-175_0.2mm.inst.cfg | 2 +- .../um_methodxl_1c_um-absr-175_0.2mm.inst.cfg | 2 +- .../ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm.inst.cfg | 2 +- .../um_methodxl_1c_um-nylon12-cf-175_0.2mm.inst.cfg | 2 +- .../um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg | 2 +- .../um_methodxl_1xa_um-asa-175_0.2mm.inst.cfg | 2 +- .../um_methodxl_2xa_um-rapidrinse-175_0.2mm.inst.cfg | 2 +- .../um_methodxl_2xa_um-sr30-175_0.2mm.inst.cfg | 2 +- .../um_methodxl_global_Draft_Quality.inst.cfg | 2 +- .../um_methodxl_labs_um-abscf-175_0.2mm.inst.cfg | 2 +- .../um_methodxl_labs_um-absr-175_0.2mm.inst.cfg | 2 +- .../um_methodxl_labs_um-asa-175_0.2mm.inst.cfg | 2 +- .../um_methodxl_labs_um-nylon12-cf-175_0.2mm.inst.cfg | 2 +- .../ultimaker_original/umo_global_Coarse_Quality.inst.cfg | 2 +- .../ultimaker_original/umo_global_Draft_Quality.inst.cfg | 2 +- .../ultimaker_original/umo_global_Extra_Coarse_Quality.inst.cfg | 2 +- .../quality/ultimaker_original/umo_global_Fast_Quality.inst.cfg | 2 +- .../quality/ultimaker_original/umo_global_High_Quality.inst.cfg | 2 +- .../ultimaker_original/umo_global_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.25_cpe_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.25_petg_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.25_pla_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.25_tough-pla_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_nylon_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.6_cffcpe_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.6_cffpa_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.6_gffcpe_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.6_gffpa_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_global_Draft_Quality.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_global_Fast_Quality.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_global_High_Quality.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_global_Normal_Quality.inst.cfg | 2 +- .../ultimaker_s3/um_s3_global_Superdraft_Quality.inst.cfg | 2 +- .../ultimaker_s3/um_s3_global_Verydraft_Quality.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.25_cpe_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.25_petg_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.25_pla_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.25_tough-pla_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_nylon_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.6_cffcpe_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.6_cffpa_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.6_gffcpe_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.6_gffpa_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_global_Draft_Quality.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_global_Fast_Quality.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_global_High_Quality.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_global_Normal_Quality.inst.cfg | 2 +- .../ultimaker_s5/um_s5_global_Superdraft_Quality.inst.cfg | 2 +- .../ultimaker_s5/um_s5_global_Verydraft_Quality.inst.cfg | 2 +- .../abs/nozzle_0_30/abs_nozzle_0.30_layer_0.10.inst.cfg | 2 +- .../abs/nozzle_0_30/abs_nozzle_0.30_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_30/abs_nozzle_0.30_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_30/abs_nozzle_0.30_layer_0.25.inst.cfg | 2 +- .../abs/nozzle_0_40/abs_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../abs/nozzle_0_40/abs_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_40/abs_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_40/abs_nozzle_0.40_layer_0.25.inst.cfg | 2 +- .../abs/nozzle_0_40/abs_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../abs/nozzle_0_50/abs_nozzle_0.50_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_50/abs_nozzle_0.50_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_50/abs_nozzle_0.50_layer_0.25.inst.cfg | 2 +- .../abs/nozzle_0_50/abs_nozzle_0.50_layer_0.30.inst.cfg | 2 +- .../abs/nozzle_0_50/abs_nozzle_0.50_layer_0.35.inst.cfg | 2 +- .../hips/nozzle_0_30/hips_nozzle_0.30_layer_0.10.inst.cfg | 2 +- .../hips/nozzle_0_30/hips_nozzle_0.30_layer_0.15.inst.cfg | 2 +- .../hips/nozzle_0_30/hips_nozzle_0.30_layer_0.20.inst.cfg | 2 +- .../hips/nozzle_0_30/hips_nozzle_0.30_layer_0.25.inst.cfg | 2 +- .../hips/nozzle_0_40/hips_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../hips/nozzle_0_40/hips_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../hips/nozzle_0_40/hips_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../hips/nozzle_0_40/hips_nozzle_0.40_layer_0.25.inst.cfg | 2 +- .../hips/nozzle_0_40/hips_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../hips/nozzle_0_50/hips_nozzle_0.50_layer_0.15.inst.cfg | 2 +- .../hips/nozzle_0_50/hips_nozzle_0.50_layer_0.20.inst.cfg | 2 +- .../hips/nozzle_0_50/hips_nozzle_0.50_layer_0.25.inst.cfg | 2 +- .../hips/nozzle_0_50/hips_nozzle_0.50_layer_0.30.inst.cfg | 2 +- .../hips/nozzle_0_50/hips_nozzle_0.50_layer_0.35.inst.cfg | 2 +- resources/quality/uni_base/layer_0.05.inst.cfg | 2 +- resources/quality/uni_base/layer_0.10.inst.cfg | 2 +- resources/quality/uni_base/layer_0.15.inst.cfg | 2 +- resources/quality/uni_base/layer_0.20.inst.cfg | 2 +- resources/quality/uni_base/layer_0.25.inst.cfg | 2 +- resources/quality/uni_base/layer_0.30.inst.cfg | 2 +- resources/quality/uni_base/layer_0.35.inst.cfg | 2 +- resources/quality/uni_base/layer_0.40.inst.cfg | 2 +- .../petg/nozzle_0_30/petg_nozzle_0.30_layer_0.10.inst.cfg | 2 +- .../petg/nozzle_0_30/petg_nozzle_0.30_layer_0.15.inst.cfg | 2 +- .../petg/nozzle_0_30/petg_nozzle_0.30_layer_0.20.inst.cfg | 2 +- .../petg/nozzle_0_30/petg_nozzle_0.30_layer_0.25.inst.cfg | 2 +- .../petg/nozzle_0_40/petg_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../petg/nozzle_0_40/petg_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../petg/nozzle_0_40/petg_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../petg/nozzle_0_40/petg_nozzle_0.40_layer_0.25.inst.cfg | 2 +- .../petg/nozzle_0_40/petg_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../petg/nozzle_0_50/petg_nozzle_0.50_layer_0.15.inst.cfg | 2 +- .../petg/nozzle_0_50/petg_nozzle_0.50_layer_0.20.inst.cfg | 2 +- .../petg/nozzle_0_50/petg_nozzle_0.50_layer_0.25.inst.cfg | 2 +- .../petg/nozzle_0_50/petg_nozzle_0.50_layer_0.30.inst.cfg | 2 +- .../petg/nozzle_0_50/petg_nozzle_0.50_layer_0.35.inst.cfg | 2 +- .../pla/nozzle_0_30/pla_nozzle_0.30_layer_0.10.inst.cfg | 2 +- .../pla/nozzle_0_30/pla_nozzle_0.30_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_30/pla_nozzle_0.30_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_30/pla_nozzle_0.30_layer_0.25.inst.cfg | 2 +- .../pla/nozzle_0_40/pla_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../pla/nozzle_0_40/pla_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_40/pla_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_40/pla_nozzle_0.40_layer_0.25.inst.cfg | 2 +- .../pla/nozzle_0_40/pla_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_50/pla_nozzle_0.50_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_50/pla_nozzle_0.50_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_50/pla_nozzle_0.50_layer_0.25.inst.cfg | 2 +- .../pla/nozzle_0_50/pla_nozzle_0.50_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_50/pla_nozzle_0.50_layer_0.35.inst.cfg | 2 +- .../vertex_delta_k8800/k8800_ABS_Extreme_Quality.inst.cfg | 2 +- .../quality/vertex_delta_k8800/k8800_ABS_High_Quality.inst.cfg | 2 +- .../vertex_delta_k8800/k8800_ABS_Normal_Quality.inst.cfg | 2 +- .../vertex_delta_k8800/k8800_Global_Extreme_Quality.inst.cfg | 2 +- .../vertex_delta_k8800/k8800_Global_High_Quality.inst.cfg | 2 +- .../vertex_delta_k8800/k8800_Global_Normal_Quality.inst.cfg | 2 +- .../vertex_delta_k8800/k8800_PET_Extreme_Quality.inst.cfg | 2 +- .../quality/vertex_delta_k8800/k8800_PET_High_Quality.inst.cfg | 2 +- .../vertex_delta_k8800/k8800_PET_Normal_Quality.inst.cfg | 2 +- .../vertex_delta_k8800/k8800_PLA_Extreme_Quality.inst.cfg | 2 +- .../quality/vertex_delta_k8800/k8800_PLA_High_Quality.inst.cfg | 2 +- .../vertex_delta_k8800/k8800_PLA_Normal_Quality.inst.cfg | 2 +- .../vertex_delta_k8800/k8800_TPU_Extreme_Quality.inst.cfg | 2 +- .../quality/vertex_delta_k8800/k8800_TPU_High_Quality.inst.cfg | 2 +- .../vertex_delta_k8800/k8800_TPU_Normal_Quality.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.2_ABS_super.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.2_ABS_ultra.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.2_PETG_super.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.2_PETG_ultra.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.2_PLA_super.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.2_PLA_ultra.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.4_ABS_adaptive.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.4_ABS_low.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.4_ABS_standard.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.4_ABS_super.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.4_PETG_adaptive.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.4_PETG_low.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.4_PETG_standard.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.4_PETG_super.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.4_PLA_adaptive.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.4_PLA_low.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.4_PLA_standard.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.4_PLA_super.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.4_TPU_adaptive.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.4_TPU_standard.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.4_TPU_super.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.6_ABS_standard.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.6_PETG_standard.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.6_PLA_draft.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.6_PLA_low.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.6_PLA_standard.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.6_TPU_standard.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.8_ABS_draft.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.8_PETG_draft.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.8_PLA_draft.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.8_TPU_draft.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_global_adaptive.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_global_draft.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_global_low.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_global_standard.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_global_super.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_global_ultra.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.2_ABS_super.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.2_ABS_ultra.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.2_PETG_super.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.2_PETG_ultra.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.2_PLA_super.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.2_PLA_ultra.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.4_ABS_adaptive.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.4_ABS_low.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.4_ABS_standard.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.4_ABS_super.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.4_PETG_adaptive.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.4_PETG_low.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.4_PETG_standard.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.4_PETG_super.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.4_PLA_adaptive.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.4_PLA_low.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.4_PLA_standard.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.4_PLA_super.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.4_TPU_adaptive.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.4_TPU_standard.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.4_TPU_super.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.6_ABS_standard.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.6_PETG_standard.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.6_PLA_draft.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.6_PLA_low.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.6_PLA_standard.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.6_TPU_standard.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.8_ABS_draft.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.8_PETG_draft.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.8_PLA_draft.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.8_TPU_draft.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_global_adaptive.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_global_draft.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_global_low.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_global_standard.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_global_super.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_global_ultra.inst.cfg | 2 +- resources/quality/volumic/sh65_coarse.inst.cfg | 2 +- resources/quality/volumic/sh65_draft.inst.cfg | 2 +- resources/quality/volumic/sh65_extra_coarse.inst.cfg | 2 +- resources/quality/volumic/sh65_fast.inst.cfg | 2 +- resources/quality/volumic/sh65_high.inst.cfg | 2 +- resources/quality/volumic/sh65_normal.inst.cfg | 2 +- resources/quality/volumic/stream20dual_mk2_coarse.inst.cfg | 2 +- resources/quality/volumic/stream20dual_mk2_draft.inst.cfg | 2 +- .../quality/volumic/stream20dual_mk2_extra_coarse.inst.cfg | 2 +- resources/quality/volumic/stream20dual_mk2_fast.inst.cfg | 2 +- resources/quality/volumic/stream20dual_mk2_high.inst.cfg | 2 +- resources/quality/volumic/stream20dual_mk2_normal.inst.cfg | 2 +- resources/quality/volumic/stream20pro_mk2_coarse.inst.cfg | 2 +- resources/quality/volumic/stream20pro_mk2_draft.inst.cfg | 2 +- resources/quality/volumic/stream20pro_mk2_extra_coarse.inst.cfg | 2 +- resources/quality/volumic/stream20pro_mk2_fast.inst.cfg | 2 +- resources/quality/volumic/stream20pro_mk2_high.inst.cfg | 2 +- resources/quality/volumic/stream20pro_mk2_normal.inst.cfg | 2 +- resources/quality/volumic/stream30dual_mk2_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30dual_mk2_draft.inst.cfg | 2 +- .../quality/volumic/stream30dual_mk2_extra_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30dual_mk2_fast.inst.cfg | 2 +- resources/quality/volumic/stream30dual_mk2_high.inst.cfg | 2 +- resources/quality/volumic/stream30dual_mk2_normal.inst.cfg | 2 +- resources/quality/volumic/stream30mk3_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30mk3_draft.inst.cfg | 2 +- resources/quality/volumic/stream30mk3_extra_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30mk3_fast.inst.cfg | 2 +- resources/quality/volumic/stream30mk3_high.inst.cfg | 2 +- resources/quality/volumic/stream30mk3_normal.inst.cfg | 2 +- resources/quality/volumic/stream30pro_mk2_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30pro_mk2_draft.inst.cfg | 2 +- resources/quality/volumic/stream30pro_mk2_extra_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30pro_mk2_fast.inst.cfg | 2 +- resources/quality/volumic/stream30pro_mk2_high.inst.cfg | 2 +- resources/quality/volumic/stream30pro_mk2_normal.inst.cfg | 2 +- resources/quality/volumic/stream30ultra_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30ultra_draft.inst.cfg | 2 +- resources/quality/volumic/stream30ultra_extra_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30ultra_fast.inst.cfg | 2 +- resources/quality/volumic/stream30ultra_high.inst.cfg | 2 +- resources/quality/volumic/stream30ultra_normal.inst.cfg | 2 +- resources/quality/volumic/stream30ultrasc2_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30ultrasc2_draft.inst.cfg | 2 +- .../quality/volumic/stream30ultrasc2_extra_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30ultrasc2_fast.inst.cfg | 2 +- resources/quality/volumic/stream30ultrasc2_high.inst.cfg | 2 +- resources/quality/volumic/stream30ultrasc2_normal.inst.cfg | 2 +- resources/quality/volumic/stream30ultrasc_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30ultrasc_draft.inst.cfg | 2 +- resources/quality/volumic/stream30ultrasc_extra_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30ultrasc_fast.inst.cfg | 2 +- resources/quality/volumic/stream30ultrasc_high.inst.cfg | 2 +- resources/quality/volumic/stream30ultrasc_normal.inst.cfg | 2 +- .../quality/voron2/voron2_global_extrafast_quality.inst.cfg | 2 +- .../quality/voron2/voron2_global_extrafine_quality.inst.cfg | 2 +- resources/quality/voron2/voron2_global_fast_quality.inst.cfg | 2 +- resources/quality/voron2/voron2_global_fine_quality.inst.cfg | 2 +- resources/quality/voron2/voron2_global_normal_quality.inst.cfg | 2 +- resources/quality/voron2/voron2_global_sprint_quality.inst.cfg | 2 +- .../quality/voron2/voron2_global_supersprint_quality.inst.cfg | 2 +- .../quality/voron2/voron2_global_ultrasprint_quality.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_ABS_extrafine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_ABS_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_ABS_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_ABS_normal.inst.cfg | 2 +- .../quality/voron2/voron2_v6_0.25_Nylon_extrafine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_Nylon_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_Nylon_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_Nylon_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PC_extrafine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PC_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PC_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PC_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PETG_extrafine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PETG_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PETG_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PETG_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PLA_extrafine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PLA_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PLA_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PLA_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_ABS_extrafine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_ABS_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_ABS_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_ABS_normal.inst.cfg | 2 +- .../quality/voron2/voron2_v6_0.30_Nylon_extrafine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_Nylon_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_Nylon_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_Nylon_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PC_extrafine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PC_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PC_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PC_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PETG_extrafine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PETG_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PETG_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PETG_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PLA_extrafine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PLA_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PLA_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PLA_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_ABS_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_ABS_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_ABS_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_Nylon_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_Nylon_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_Nylon_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_PC_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_PC_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_PC_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_PETG_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_PETG_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_PETG_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_PLA_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_PLA_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_PLA_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_ABS_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_ABS_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_ABS_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_ABS_normal.inst.cfg | 2 +- .../quality/voron2/voron2_v6_0.40_Nylon_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_Nylon_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_Nylon_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_Nylon_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PC_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PC_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PC_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PC_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PETG_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PETG_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PETG_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PETG_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PLA_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PLA_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PLA_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PLA_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_ABS_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_ABS_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_ABS_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_ABS_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_v6_0.50_Nylon_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_Nylon_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_Nylon_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_Nylon_sprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PC_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PC_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PC_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PC_sprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PETG_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PETG_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PETG_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PETG_sprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PLA_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PLA_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PLA_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PLA_sprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_ABS_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_ABS_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_ABS_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_v6_0.60_Nylon_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_Nylon_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_Nylon_sprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_PC_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_PC_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_PC_sprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_PETG_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_PETG_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_PETG_sprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_PLA_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_PLA_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_PLA_sprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.80_ABS_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.80_ABS_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_v6_0.80_ABS_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_v6_0.80_Nylon_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.80_Nylon_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_v6_0.80_Nylon_supersprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.80_PC_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.80_PC_sprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.80_PC_supersprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.80_PETG_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.80_PETG_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_v6_0.80_PETG_supersprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.80_PLA_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.80_PLA_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_v6_0.80_PLA_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.40_ABS_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_0.40_ABS_fast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.40_ABS_normal.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.40_Nylon_extrafast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.40_Nylon_fast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.40_Nylon_normal.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.40_PC_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_0.40_PC_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_0.40_PC_normal.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.40_PETG_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_0.40_PETG_fast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.40_PETG_normal.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.40_PLA_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_0.40_PLA_fast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.40_PLA_normal.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.60_ABS_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_0.60_ABS_fast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.60_ABS_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.60_Nylon_extrafast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.60_Nylon_fast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.60_Nylon_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.60_PC_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_0.60_PC_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_0.60_PC_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.60_PETG_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_0.60_PETG_fast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.60_PETG_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.60_PLA_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_0.60_PLA_fast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.60_PLA_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_ABS_extrafast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_ABS_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_ABS_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_Nylon_extrafast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_Nylon_sprint.inst.cfg | 2 +- .../voron2/voron2_volcano_0.80_Nylon_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_PC_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_0.80_PC_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_PC_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_PETG_extrafast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_PETG_sprint.inst.cfg | 2 +- .../voron2/voron2_volcano_0.80_PETG_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_PLA_extrafast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_PLA_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_PLA_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.00_ABS_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.00_ABS_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.00_ABS_ultrasprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.00_Nylon_sprint.inst.cfg | 2 +- .../voron2/voron2_volcano_1.00_Nylon_supersprint.inst.cfg | 2 +- .../voron2/voron2_volcano_1.00_Nylon_ultrasprint.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_1.00_PC_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.00_PC_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.00_PC_ultrasprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.00_PETG_sprint.inst.cfg | 2 +- .../voron2/voron2_volcano_1.00_PETG_supersprint.inst.cfg | 2 +- .../voron2/voron2_volcano_1.00_PETG_ultrasprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.00_PLA_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.00_PLA_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.00_PLA_ultrasprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.20_ABS_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.20_ABS_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.20_ABS_ultrasprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.20_Nylon_sprint.inst.cfg | 2 +- .../voron2/voron2_volcano_1.20_Nylon_supersprint.inst.cfg | 2 +- .../voron2/voron2_volcano_1.20_Nylon_ultrasprint.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_1.20_PC_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.20_PC_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.20_PC_ultrasprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.20_PETG_sprint.inst.cfg | 2 +- .../voron2/voron2_volcano_1.20_PETG_supersprint.inst.cfg | 2 +- .../voron2/voron2_volcano_1.20_PETG_ultrasprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.20_PLA_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.20_PLA_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.20_PLA_ultrasprint.inst.cfg | 2 +- resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_super.inst.cfg | 2 +- resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_ultra.inst.cfg | 2 +- .../quality/vzbot/base/ABS/vzbot_0.3_ABS_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_low.inst.cfg | 2 +- .../quality/vzbot/base/ABS/vzbot_0.3_ABS_standard.inst.cfg | 2 +- resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_super.inst.cfg | 2 +- .../quality/vzbot/base/ABS/vzbot_0.4_ABS_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_low.inst.cfg | 2 +- .../quality/vzbot/base/ABS/vzbot_0.4_ABS_standard.inst.cfg | 2 +- resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_super.inst.cfg | 2 +- .../quality/vzbot/base/ABS/vzbot_0.5_ABS_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_low.inst.cfg | 2 +- .../quality/vzbot/base/ABS/vzbot_0.5_ABS_standard.inst.cfg | 2 +- resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_super.inst.cfg | 2 +- .../quality/vzbot/base/ABS/vzbot_0.6_ABS_standard.inst.cfg | 2 +- resources/quality/vzbot/base/ABS/vzbot_0.8_ABS_draft.inst.cfg | 2 +- resources/quality/vzbot/base/ABS/vzbot_1.0_ABS_draft.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.2_PC_super.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.2_PC_ultra.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.3_PC_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.3_PC_low.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.3_PC_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.3_PC_super.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.4_PC_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.4_PC_low.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.4_PC_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.4_PC_super.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.5_PC_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.5_PC_low.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.5_PC_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.5_PC_super.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.6_PC_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.8_PC_draft.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_1.0_PC_draft.inst.cfg | 2 +- resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_super.inst.cfg | 2 +- resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_ultra.inst.cfg | 2 +- .../quality/vzbot/base/PETG/vzbot_0.3_PETG_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_low.inst.cfg | 2 +- .../quality/vzbot/base/PETG/vzbot_0.3_PETG_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_super.inst.cfg | 2 +- .../quality/vzbot/base/PETG/vzbot_0.4_PETG_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_low.inst.cfg | 2 +- .../quality/vzbot/base/PETG/vzbot_0.4_PETG_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_super.inst.cfg | 2 +- .../quality/vzbot/base/PETG/vzbot_0.5_PETG_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_low.inst.cfg | 2 +- .../quality/vzbot/base/PETG/vzbot_0.5_PETG_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_super.inst.cfg | 2 +- .../quality/vzbot/base/PETG/vzbot_0.6_PETG_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PETG/vzbot_0.8_PETG_draft.inst.cfg | 2 +- resources/quality/vzbot/base/PETG/vzbot_1.0_PETG_draft.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_super.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_ultra.inst.cfg | 2 +- .../quality/vzbot/base/PLA/vzbot_0.3_PLA_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_low.inst.cfg | 2 +- .../quality/vzbot/base/PLA/vzbot_0.3_PLA_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_super.inst.cfg | 2 +- .../quality/vzbot/base/PLA/vzbot_0.4_PLA_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_low.inst.cfg | 2 +- .../quality/vzbot/base/PLA/vzbot_0.4_PLA_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_super.inst.cfg | 2 +- .../quality/vzbot/base/PLA/vzbot_0.5_PLA_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_low.inst.cfg | 2 +- .../quality/vzbot/base/PLA/vzbot_0.5_PLA_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_super.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_draft.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_low.inst.cfg | 2 +- .../quality/vzbot/base/PLA/vzbot_0.6_PLA_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_0.8_PLA_draft.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_1.0_PLA_draft.inst.cfg | 2 +- resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_super.inst.cfg | 2 +- resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_ultra.inst.cfg | 2 +- .../quality/vzbot/base/PVA/vzbot_0.3_PVA_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_low.inst.cfg | 2 +- .../quality/vzbot/base/PVA/vzbot_0.3_PVA_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_super.inst.cfg | 2 +- .../quality/vzbot/base/PVA/vzbot_0.4_PVA_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_low.inst.cfg | 2 +- .../quality/vzbot/base/PVA/vzbot_0.4_PVA_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_super.inst.cfg | 2 +- .../quality/vzbot/base/PVA/vzbot_0.5_PVA_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_low.inst.cfg | 2 +- .../quality/vzbot/base/PVA/vzbot_0.5_PVA_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_super.inst.cfg | 2 +- .../quality/vzbot/base/PVA/vzbot_0.6_PVA_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PVA/vzbot_0.8_PVA_draft.inst.cfg | 2 +- resources/quality/vzbot/base/PVA/vzbot_1.0_PVA_draft.inst.cfg | 2 +- .../quality/vzbot/base/TPU/vzbot_0.3_TPU_adaptive.inst.cfg | 2 +- .../quality/vzbot/base/TPU/vzbot_0.3_TPU_standard.inst.cfg | 2 +- resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_super.inst.cfg | 2 +- .../quality/vzbot/base/TPU/vzbot_0.4_TPU_adaptive.inst.cfg | 2 +- .../quality/vzbot/base/TPU/vzbot_0.4_TPU_standard.inst.cfg | 2 +- resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_super.inst.cfg | 2 +- .../quality/vzbot/base/TPU/vzbot_0.5_TPU_adaptive.inst.cfg | 2 +- .../quality/vzbot/base/TPU/vzbot_0.5_TPU_standard.inst.cfg | 2 +- resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_super.inst.cfg | 2 +- .../quality/vzbot/base/TPU/vzbot_0.6_TPU_standard.inst.cfg | 2 +- resources/quality/vzbot/base/TPU/vzbot_0.8_TPU_draft.inst.cfg | 2 +- resources/quality/vzbot/base/TPU/vzbot_1.0_TPU_draft.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.2_nylon_super.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.2_nylon_ultra.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.3_nylon_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_low.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.3_nylon_standard.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.3_nylon_super.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.4_nylon_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_low.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.4_nylon_standard.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.4_nylon_super.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.5_nylon_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_low.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.5_nylon_standard.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.5_nylon_super.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.6_nylon_standard.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.8_nylon_draft.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_1.0_nylon_draft.inst.cfg | 2 +- resources/quality/vzbot/base/vzbot_global_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/vzbot_global_draft.inst.cfg | 2 +- resources/quality/vzbot/base/vzbot_global_low.inst.cfg | 2 +- resources/quality/vzbot/base/vzbot_global_standard.inst.cfg | 2 +- resources/quality/vzbot/base/vzbot_global_super.inst.cfg | 2 +- resources/quality/vzbot/base/vzbot_global_ultra.inst.cfg | 2 +- .../weedo_x40_0.4_extrudr_GreenTECPro_Black_Draft.inst.cfg | 2 +- .../weedo_x40_0.4_extrudr_GreenTECPro_Black_Extra_Fine.inst.cfg | 2 +- .../weedo_x40_0.4_extrudr_GreenTECPro_Black_Fine.inst.cfg | 2 +- .../weedo_x40_0.4_extrudr_GreenTECPro_Black_Normal.inst.cfg | 2 +- .../Verbatim/weedo_x40_0.4_Verbatim_BVOH_Draft.inst.cfg | 2 +- .../Verbatim/weedo_x40_0.4_Verbatim_BVOH_Extra_Fine.inst.cfg | 2 +- .../Verbatim/weedo_x40_0.4_Verbatim_BVOH_Fine.inst.cfg | 2 +- .../Verbatim/weedo_x40_0.4_Verbatim_BVOH_Normal.inst.cfg | 2 +- .../Verbatim/weedo_x40_0.6_Verbatim_BVOH_Coarse.inst.cfg | 2 +- .../Verbatim/weedo_x40_0.6_Verbatim_BVOH_Draft.inst.cfg | 2 +- .../Verbatim/weedo_x40_0.6_Verbatim_BVOH_Fine.inst.cfg | 2 +- .../Verbatim/weedo_x40_0.6_Verbatim_BVOH_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_ABS_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_ABS_Extra_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_ABS_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_ABS_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_ASA_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_ASA_Extra_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_ASA_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_ASA_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_BVOH_Extra_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Fine.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_BVOH_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_CPE_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_CPE_Extra_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_CPE_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_CPE_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_HIPS_Extra_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Fine.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_HIPS_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_PETG_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_PETG_Extra_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_PETG_Fine.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_PETG_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_PLA_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_PLA_Extra_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_PLA_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_PLA_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_PVA_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_PVA_Extra_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_PVA_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_PVA_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_TPU_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_TPU_Extra_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_TPU_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_TPU_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_ABS_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_ABS_Draft.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_ABS_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_ABS_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_ASA_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_ASA_Draft.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_ASA_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_ASA_Normal.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.6_generic_BVOH_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Draft.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Fine.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.6_generic_BVOH_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_CPE_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_CPE_Draft.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_CPE_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_CPE_Normal.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.6_generic_HIPS_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Draft.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Fine.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.6_generic_HIPS_Normal.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.6_generic_PETG_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_PETG_Draft.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_PETG_Fine.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.6_generic_PETG_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_PLA_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_PLA_Draft.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_PLA_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_PLA_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_PVA_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_PVA_Draft.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_PVA_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_PVA_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_TPU_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_TPU_Draft.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_TPU_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_TPU_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_ABS_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_ABS_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_ABS_Extra_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_ABS_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_ASA_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_ASA_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_ASA_Extra_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_ASA_Normal.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_BVOH_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_BVOH_Extra_Coarse.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_BVOH_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_CPE_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_CPE_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_CPE_Extra_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_CPE_Normal.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_HIPS_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_HIPS_Extra_Coarse.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_HIPS_Normal.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_PETG_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_PETG_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_PETG_Extra_Coarse.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_PETG_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_PLA_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_PLA_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_PLA_Extra_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_PLA_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_PVA_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_PVA_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_PVA_Extra_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_PVA_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_TPU_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_TPU_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_TPU_Extra_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_TPU_Normal.inst.cfg | 2 +- resources/quality/weedo_x40/weedo_x40_global_Coarse.inst.cfg | 2 +- resources/quality/weedo_x40/weedo_x40_global_Draft.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_global_Extra_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_global_Extra_Fine.inst.cfg | 2 +- resources/quality/weedo_x40/weedo_x40_global_Fine.inst.cfg | 2 +- resources/quality/weedo_x40/weedo_x40_global_Normal.inst.cfg | 2 +- ...xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_fine.inst.cfg | 2 +- ...xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_normal.inst.cfg | 2 +- ...inting_da_vinci_jr_pro_xplus_copper_0.40_abs_coarse.inst.cfg | 2 +- ...rinting_da_vinci_jr_pro_xplus_copper_0.40_abs_draft.inst.cfg | 2 +- ...printing_da_vinci_jr_pro_xplus_copper_0.40_abs_fine.inst.cfg | 2 +- ...inting_da_vinci_jr_pro_xplus_copper_0.40_abs_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_abs_coarse.inst.cfg | 2 +- .../abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_draft.inst.cfg | 2 +- .../abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_abs_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_abs_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_abs_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_abs_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_abs_normal.inst.cfg | 2 +- ...inting_da_vinci_1p0_pro_copper_0.40_antibact_coarse.inst.cfg | 2 +- ...rinting_da_vinci_1p0_pro_copper_0.40_antibact_draft.inst.cfg | 2 +- ...printing_da_vinci_1p0_pro_copper_0.40_antibact_fine.inst.cfg | 2 +- ...inting_da_vinci_1p0_pro_copper_0.40_antibact_normal.inst.cfg | 2 +- ...ng_da_vinci_jr_1p0a_pro_copper_0.40_antibact_coarse.inst.cfg | 2 +- ...ing_da_vinci_jr_1p0a_pro_copper_0.40_antibact_draft.inst.cfg | 2 +- ...ting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_fine.inst.cfg | 2 +- ...ng_da_vinci_jr_1p0a_pro_copper_0.40_antibact_normal.inst.cfg | 2 +- ..._da_vinci_jr_pro_xeplus_copper_0.40_antibact_coarse.inst.cfg | 2 +- ...g_da_vinci_jr_pro_xeplus_copper_0.40_antibact_draft.inst.cfg | 2 +- ...ng_da_vinci_jr_pro_xeplus_copper_0.40_antibact_fine.inst.cfg | 2 +- ..._da_vinci_jr_pro_xeplus_copper_0.40_antibact_normal.inst.cfg | 2 +- ...g_da_vinci_jr_pro_xplus_copper_0.40_antibact_coarse.inst.cfg | 2 +- ...ng_da_vinci_jr_pro_xplus_copper_0.40_antibact_draft.inst.cfg | 2 +- ...ing_da_vinci_jr_pro_xplus_copper_0.40_antibact_fine.inst.cfg | 2 +- ...g_da_vinci_jr_pro_xplus_copper_0.40_antibact_normal.inst.cfg | 2 +- ...zprinting_da_vinci_jr_w_pro_ss_0.40_antibact_coarse.inst.cfg | 2 +- ...yzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_draft.inst.cfg | 2 +- ...xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_fine.inst.cfg | 2 +- ...zprinting_da_vinci_jr_w_pro_ss_0.40_antibact_normal.inst.cfg | 2 +- ...yzprinting_da_vinci_pro_evo_hs_0.40_antibact_coarse.inst.cfg | 2 +- ...xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_fine.inst.cfg | 2 +- ...yzprinting_da_vinci_pro_evo_hs_0.40_antibact_normal.inst.cfg | 2 +- ...printing_da_vinci_super_copper_0.40_antibact_coarse.inst.cfg | 2 +- ...zprinting_da_vinci_super_copper_0.40_antibact_draft.inst.cfg | 2 +- ...yzprinting_da_vinci_super_copper_0.40_antibact_fine.inst.cfg | 2 +- ...printing_da_vinci_super_copper_0.40_antibact_normal.inst.cfg | 2 +- ...ng_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_coarse.inst.cfg | 2 +- ...ing_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_draft.inst.cfg | 2 +- ...ting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_fine.inst.cfg | 2 +- ...ng_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_normal.inst.cfg | 2 +- ..._da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_coarse.inst.cfg | 2 +- ...g_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_draft.inst.cfg | 2 +- ...ng_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_fine.inst.cfg | 2 +- ..._da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_normal.inst.cfg | 2 +- ...g_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_coarse.inst.cfg | 2 +- ...ng_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_draft.inst.cfg | 2 +- ...ing_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_fine.inst.cfg | 2 +- ...g_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_normal.inst.cfg | 2 +- ...nting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_coarse.inst.cfg | 2 +- ...inting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_draft.inst.cfg | 2 +- ...rinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_fine.inst.cfg | 2 +- ...nting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_normal.inst.cfg | 2 +- ...inting_da_vinci_pro_evo_hs_0.40_carbon_fiber_coarse.inst.cfg | 2 +- ...rinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_draft.inst.cfg | 2 +- ...printing_da_vinci_pro_evo_hs_0.40_carbon_fiber_fine.inst.cfg | 2 +- ...inting_da_vinci_pro_evo_hs_0.40_carbon_fiber_normal.inst.cfg | 2 +- ...printing_da_vinci_super_hs_0.40_carbon_fiber_coarse.inst.cfg | 2 +- ...zprinting_da_vinci_super_hs_0.40_carbon_fiber_draft.inst.cfg | 2 +- ...yzprinting_da_vinci_super_hs_0.40_carbon_fiber_fine.inst.cfg | 2 +- ...printing_da_vinci_super_hs_0.40_carbon_fiber_normal.inst.cfg | 2 +- ...inci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_coarse.inst.cfg | 2 +- ...vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_draft.inst.cfg | 2 +- ..._vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_fine.inst.cfg | 2 +- ...inci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_normal.inst.cfg | 2 +- ...ng_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_coarse.inst.cfg | 2 +- ...ing_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_draft.inst.cfg | 2 +- ...ting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_fine.inst.cfg | 2 +- ...ng_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_normal.inst.cfg | 2 +- ...g_da_vinci_super_copper_0.40_colorinkjet_pla_coarse.inst.cfg | 2 +- ...ng_da_vinci_super_copper_0.40_colorinkjet_pla_draft.inst.cfg | 2 +- ...ing_da_vinci_super_copper_0.40_colorinkjet_pla_fine.inst.cfg | 2 +- ...g_da_vinci_super_copper_0.40_colorinkjet_pla_normal.inst.cfg | 2 +- ...printing_da_vinci_super_copper_0.40_flexible_coarse.inst.cfg | 2 +- ...zprinting_da_vinci_super_copper_0.40_flexible_draft.inst.cfg | 2 +- ...yzprinting_da_vinci_super_copper_0.40_flexible_fine.inst.cfg | 2 +- ...printing_da_vinci_super_copper_0.40_flexible_normal.inst.cfg | 2 +- ...inting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_coarse.inst.cfg | 2 +- ...rinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_draft.inst.cfg | 2 +- ...printing_da_vinci_jr_1p0a_pro_hs_0.40_metallic_fine.inst.cfg | 2 +- ...inting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_normal.inst.cfg | 2 +- ...ting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_coarse.inst.cfg | 2 +- ...nting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_draft.inst.cfg | 2 +- ...inting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_fine.inst.cfg | 2 +- ...ting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_normal.inst.cfg | 2 +- ...nting_da_vinci_jr_pro_xplus_hs_0.40_metallic_coarse.inst.cfg | 2 +- ...inting_da_vinci_jr_pro_xplus_hs_0.40_metallic_draft.inst.cfg | 2 +- ...rinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_fine.inst.cfg | 2 +- ...nting_da_vinci_jr_pro_xplus_hs_0.40_metallic_normal.inst.cfg | 2 +- ...zprinting_da_vinci_jr_w_pro_hs_0.40_metallic_coarse.inst.cfg | 2 +- ...yzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_draft.inst.cfg | 2 +- ...xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_fine.inst.cfg | 2 +- ...zprinting_da_vinci_jr_w_pro_hs_0.40_metallic_normal.inst.cfg | 2 +- ...yzprinting_da_vinci_pro_evo_hs_0.40_metallic_coarse.inst.cfg | 2 +- ...xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_fine.inst.cfg | 2 +- ...yzprinting_da_vinci_pro_evo_hs_0.40_metallic_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_hs_0.40_metallic_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_hs_0.40_metallic_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_hs_0.40_metallic_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_hs_0.40_metallic_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_normal.inst.cfg | 2 +- ...xyzprinting_da_vinci_super_copper_0.40_nylon_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_nylon_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_nylon_fine.inst.cfg | 2 +- ...xyzprinting_da_vinci_super_copper_0.40_nylon_normal.inst.cfg | 2 +- ...printing_da_vinci_pro_evo_hsht_0.60_pahtcf15_coarse.inst.cfg | 2 +- ...zprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_draft.inst.cfg | 2 +- ...yzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_fine.inst.cfg | 2 +- ...printing_da_vinci_pro_evo_hsht_0.60_pahtcf15_normal.inst.cfg | 2 +- .../pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_coarse.inst.cfg | 2 +- .../pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_draft.inst.cfg | 2 +- .../pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_fine.inst.cfg | 2 +- .../pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_coarse.inst.cfg | 2 +- .../pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_draft.inst.cfg | 2 +- .../pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_normal.inst.cfg | 2 +- ...zprinting_da_vinci_pro_evo_hsht_0.60_petcf15_coarse.inst.cfg | 2 +- ...yzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_draft.inst.cfg | 2 +- ...xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_fine.inst.cfg | 2 +- ...zprinting_da_vinci_pro_evo_hsht_0.60_petcf15_normal.inst.cfg | 2 +- ...yzprinting_da_vinci_1p0_pro_copper_0.40_petg_coarse.inst.cfg | 2 +- ...xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_fine.inst.cfg | 2 +- ...yzprinting_da_vinci_1p0_pro_copper_0.40_petg_normal.inst.cfg | 2 +- ...inting_da_vinci_jr_1p0a_pro_copper_0.40_petg_coarse.inst.cfg | 2 +- ...rinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_draft.inst.cfg | 2 +- ...printing_da_vinci_jr_1p0a_pro_copper_0.40_petg_fine.inst.cfg | 2 +- ...inting_da_vinci_jr_1p0a_pro_copper_0.40_petg_normal.inst.cfg | 2 +- ...ting_da_vinci_jr_pro_xeplus_copper_0.40_petg_coarse.inst.cfg | 2 +- ...nting_da_vinci_jr_pro_xeplus_copper_0.40_petg_draft.inst.cfg | 2 +- ...inting_da_vinci_jr_pro_xeplus_copper_0.40_petg_fine.inst.cfg | 2 +- ...ting_da_vinci_jr_pro_xeplus_copper_0.40_petg_normal.inst.cfg | 2 +- ...nting_da_vinci_jr_pro_xplus_copper_0.40_petg_coarse.inst.cfg | 2 +- ...inting_da_vinci_jr_pro_xplus_copper_0.40_petg_draft.inst.cfg | 2 +- ...rinting_da_vinci_jr_pro_xplus_copper_0.40_petg_fine.inst.cfg | 2 +- ...nting_da_vinci_jr_pro_xplus_copper_0.40_petg_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_petg_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_petg_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_petg_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_petg_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_petg_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_petg_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_petg_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_petg_normal.inst.cfg | 2 +- ...xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_fine.inst.cfg | 2 +- ...xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_normal.inst.cfg | 2 +- ...rinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_coarse.inst.cfg | 2 +- ...printing_da_vinci_jr_1p0a_pro_copper_0.40_pla_draft.inst.cfg | 2 +- ...zprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_fine.inst.cfg | 2 +- ...rinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_normal.inst.cfg | 2 +- ...nting_da_vinci_jr_pro_xeplus_copper_0.40_pla_coarse.inst.cfg | 2 +- ...inting_da_vinci_jr_pro_xeplus_copper_0.40_pla_draft.inst.cfg | 2 +- ...rinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_fine.inst.cfg | 2 +- ...nting_da_vinci_jr_pro_xeplus_copper_0.40_pla_normal.inst.cfg | 2 +- ...inting_da_vinci_jr_pro_xplus_copper_0.40_pla_coarse.inst.cfg | 2 +- ...rinting_da_vinci_jr_pro_xplus_copper_0.40_pla_draft.inst.cfg | 2 +- ...printing_da_vinci_jr_pro_xplus_copper_0.40_pla_fine.inst.cfg | 2 +- ...inting_da_vinci_jr_pro_xplus_copper_0.40_pla_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_draft.inst.cfg | 2 +- .../pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_pla_coarse.inst.cfg | 2 +- .../pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_draft.inst.cfg | 2 +- .../pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_pla_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_pla_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_pla_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_pla_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_pla_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_normal.inst.cfg | 2 +- ...nting_da_vinci_1p0_pro_copper_0.40_tough_pla_coarse.inst.cfg | 2 +- ...inting_da_vinci_1p0_pro_copper_0.40_tough_pla_draft.inst.cfg | 2 +- ...rinting_da_vinci_1p0_pro_copper_0.40_tough_pla_fine.inst.cfg | 2 +- ...nting_da_vinci_1p0_pro_copper_0.40_tough_pla_normal.inst.cfg | 2 +- ...g_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_coarse.inst.cfg | 2 +- ...ng_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_draft.inst.cfg | 2 +- ...ing_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_fine.inst.cfg | 2 +- ...g_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_normal.inst.cfg | 2 +- ...da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_coarse.inst.cfg | 2 +- ..._da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_draft.inst.cfg | 2 +- ...g_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_fine.inst.cfg | 2 +- ...da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_normal.inst.cfg | 2 +- ..._da_vinci_jr_pro_xplus_copper_0.40_tough_pla_coarse.inst.cfg | 2 +- ...g_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_draft.inst.cfg | 2 +- ...ng_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_fine.inst.cfg | 2 +- ..._da_vinci_jr_pro_xplus_copper_0.40_tough_pla_normal.inst.cfg | 2 +- ...printing_da_vinci_jr_w_pro_ss_0.40_tough_pla_coarse.inst.cfg | 2 +- ...zprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_draft.inst.cfg | 2 +- ...yzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_fine.inst.cfg | 2 +- ...printing_da_vinci_jr_w_pro_ss_0.40_tough_pla_normal.inst.cfg | 2 +- ...zprinting_da_vinci_pro_evo_hs_0.40_tough_pla_coarse.inst.cfg | 2 +- ...yzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_draft.inst.cfg | 2 +- ...xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_fine.inst.cfg | 2 +- ...zprinting_da_vinci_pro_evo_hs_0.40_tough_pla_normal.inst.cfg | 2 +- ...rinting_da_vinci_super_copper_0.40_tough_pla_coarse.inst.cfg | 2 +- ...printing_da_vinci_super_copper_0.40_tough_pla_draft.inst.cfg | 2 +- ...zprinting_da_vinci_super_copper_0.40_tough_pla_fine.inst.cfg | 2 +- ...rinting_da_vinci_super_copper_0.40_tough_pla_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_coarse.inst.cfg | 2 +- .../tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_draft.inst.cfg | 2 +- .../tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_tpu_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_tpu_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_tpu_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_tpu_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_1p0_pro_global_0.10_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_1p0_pro_global_0.20_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_1p0_pro_global_0.30_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_1p0_pro_global_0.40_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_1p0a_pro_global_0.10_fine.inst.cfg | 2 +- ...xyzprinting_da_vinci_jr_1p0a_pro_global_0.20_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_1p0a_pro_global_0.30_draft.inst.cfg | 2 +- ...xyzprinting_da_vinci_jr_1p0a_pro_global_0.40_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xep_global_0.10_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xep_global_0.20_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xep_global_0.30_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xep_global_0.40_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xp_global_0.10_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xp_global_0.20_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xp_global_0.30_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xp_global_0.40_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_w_pro_global_0.10_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_w_pro_global_0.20_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_w_pro_global_0.30_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_w_pro_global_0.40_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_global_0.10_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_global_0.20_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_global_0.30_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_global_0.40_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_global_0.10_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_global_0.20_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_global_0.30_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_global_0.40_coarse.inst.cfg | 2 +- .../abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.05.inst.cfg | 2 +- .../abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.10.inst.cfg | 2 +- .../abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.05.inst.cfg | 2 +- .../abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.10.inst.cfg | 2 +- .../abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.10.inst.cfg | 2 +- .../abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.25.inst.cfg | 2 +- .../abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.10.inst.cfg | 2 +- .../abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.25.inst.cfg | 2 +- .../abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.25.inst.cfg | 2 +- .../abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.10.inst.cfg | 2 +- .../abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.25.inst.cfg | 2 +- .../abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.30.inst.cfg | 2 +- .../abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.35.inst.cfg | 2 +- .../abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.25.inst.cfg | 2 +- .../abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.30.inst.cfg | 2 +- .../abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.35.inst.cfg | 2 +- .../abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.25.inst.cfg | 2 +- .../abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.30.inst.cfg | 2 +- .../abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.35.inst.cfg | 2 +- .../abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.40.inst.cfg | 2 +- .../abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.25.inst.cfg | 2 +- .../abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.30.inst.cfg | 2 +- .../abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.35.inst.cfg | 2 +- .../abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.40.inst.cfg | 2 +- .../abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.25.inst.cfg | 2 +- .../abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.30.inst.cfg | 2 +- .../abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.35.inst.cfg | 2 +- .../abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.40.inst.cfg | 2 +- .../petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.05.inst.cfg | 2 +- .../petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.10.inst.cfg | 2 +- .../petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.15.inst.cfg | 2 +- .../petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.05.inst.cfg | 2 +- .../petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.10.inst.cfg | 2 +- .../petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.15.inst.cfg | 2 +- .../petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.20.inst.cfg | 2 +- .../petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.10.inst.cfg | 2 +- .../petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.15.inst.cfg | 2 +- .../petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.20.inst.cfg | 2 +- .../petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.25.inst.cfg | 2 +- .../petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.10.inst.cfg | 2 +- .../petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.15.inst.cfg | 2 +- .../petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.20.inst.cfg | 2 +- .../petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.25.inst.cfg | 2 +- .../petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.25.inst.cfg | 2 +- .../petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.10.inst.cfg | 2 +- .../petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.15.inst.cfg | 2 +- .../petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.20.inst.cfg | 2 +- .../petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.25.inst.cfg | 2 +- .../petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.30.inst.cfg | 2 +- .../petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.35.inst.cfg | 2 +- .../petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.15.inst.cfg | 2 +- .../petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.20.inst.cfg | 2 +- .../petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.25.inst.cfg | 2 +- .../petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.30.inst.cfg | 2 +- .../petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.35.inst.cfg | 2 +- .../petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.15.inst.cfg | 2 +- .../petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.20.inst.cfg | 2 +- .../petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.25.inst.cfg | 2 +- .../petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.30.inst.cfg | 2 +- .../petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.35.inst.cfg | 2 +- .../petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.40.inst.cfg | 2 +- .../petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.20.inst.cfg | 2 +- .../petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.25.inst.cfg | 2 +- .../petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.30.inst.cfg | 2 +- .../petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.35.inst.cfg | 2 +- .../petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.40.inst.cfg | 2 +- .../petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.25.inst.cfg | 2 +- .../petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.30.inst.cfg | 2 +- .../petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.35.inst.cfg | 2 +- .../petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.40.inst.cfg | 2 +- .../pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.05.inst.cfg | 2 +- .../pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.10.inst.cfg | 2 +- .../pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.05.inst.cfg | 2 +- .../pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.10.inst.cfg | 2 +- .../pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.10.inst.cfg | 2 +- .../pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.25.inst.cfg | 2 +- .../pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.10.inst.cfg | 2 +- .../pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.25.inst.cfg | 2 +- .../pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.25.inst.cfg | 2 +- .../pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.10.inst.cfg | 2 +- .../pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.25.inst.cfg | 2 +- .../pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.35.inst.cfg | 2 +- .../pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.25.inst.cfg | 2 +- .../pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.35.inst.cfg | 2 +- .../pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.25.inst.cfg | 2 +- .../pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.35.inst.cfg | 2 +- .../pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.40.inst.cfg | 2 +- .../pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.25.inst.cfg | 2 +- .../pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.35.inst.cfg | 2 +- .../pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.40.inst.cfg | 2 +- .../pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.25.inst.cfg | 2 +- .../pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.35.inst.cfg | 2 +- .../pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.40.inst.cfg | 2 +- resources/quality/zav_base/zav_layer_0.05.inst.cfg | 2 +- resources/quality/zav_base/zav_layer_0.10.inst.cfg | 2 +- resources/quality/zav_base/zav_layer_0.15.inst.cfg | 2 +- resources/quality/zav_base/zav_layer_0.20.inst.cfg | 2 +- resources/quality/zav_base/zav_layer_0.25.inst.cfg | 2 +- resources/quality/zav_base/zav_layer_0.30.inst.cfg | 2 +- resources/quality/zav_base/zav_layer_0.35.inst.cfg | 2 +- resources/quality/zav_base/zav_layer_0.40.inst.cfg | 2 +- resources/quality/zyyx/zyyx_agile_global_fast.inst.cfg | 2 +- resources/quality/zyyx/zyyx_agile_global_fine.inst.cfg | 2 +- resources/quality/zyyx/zyyx_agile_global_normal.inst.cfg | 2 +- resources/quality/zyyx/zyyx_agile_pro_flex_fast.inst.cfg | 2 +- resources/quality/zyyx/zyyx_agile_pro_flex_fine.inst.cfg | 2 +- resources/quality/zyyx/zyyx_agile_pro_flex_normal.inst.cfg | 2 +- resources/quality/zyyx/zyyx_agile_pro_pla_fast.inst.cfg | 2 +- resources/quality/zyyx/zyyx_agile_pro_pla_fine.inst.cfg | 2 +- resources/quality/zyyx/zyyx_agile_pro_pla_normal.inst.cfg | 2 +- resources/variants/arjun/arjun300_0.2.inst.cfg | 2 +- resources/variants/arjun/arjun300_0.3.inst.cfg | 2 +- resources/variants/arjun/arjun300_0.4.inst.cfg | 2 +- resources/variants/arjun/arjun300_0.5.inst.cfg | 2 +- resources/variants/arjun/arjun300_0.6.inst.cfg | 2 +- resources/variants/arjun/arjun300_0.8.inst.cfg | 2 +- resources/variants/arjun/arjun300_dm_0.2.inst.cfg | 2 +- resources/variants/arjun/arjun300_dm_0.3.inst.cfg | 2 +- resources/variants/arjun/arjun300_dm_0.4.inst.cfg | 2 +- resources/variants/arjun/arjun300_dm_0.5.inst.cfg | 2 +- resources/variants/arjun/arjun300_dm_0.6.inst.cfg | 2 +- resources/variants/arjun/arjun300_dm_0.8.inst.cfg | 2 +- resources/variants/arjun/arjun300_mm_0.2.inst.cfg | 2 +- resources/variants/arjun/arjun300_mm_0.3.inst.cfg | 2 +- resources/variants/arjun/arjun300_mm_0.4.inst.cfg | 2 +- resources/variants/arjun/arjun300_mm_0.5.inst.cfg | 2 +- resources/variants/arjun/arjun300_mm_0.6.inst.cfg | 2 +- resources/variants/arjun/arjun300_mm_0.8.inst.cfg | 2 +- resources/variants/arjun/arjun300_pva_0.2.inst.cfg | 2 +- resources/variants/arjun/arjun300_pva_0.3.inst.cfg | 2 +- resources/variants/arjun/arjun300_pva_0.4.inst.cfg | 2 +- resources/variants/arjun/arjun300_pva_0.5.inst.cfg | 2 +- resources/variants/arjun/arjun300_pva_0.6.inst.cfg | 2 +- resources/variants/arjun/arjun300_pva_0.8.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_0.2.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_0.3.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_0.4.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_0.5.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_0.6.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_0.8.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_dm_0.2.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_dm_0.3.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_dm_0.4.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_dm_0.5.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_dm_0.6.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_dm_0.8.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_mm_0.2.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_mm_0.3.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_mm_0.4.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_mm_0.5.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_mm_0.6.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_mm_0.8.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_pva_0.2.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_pva_0.3.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_pva_0.4.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_pva_0.5.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_pva_0.6.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_pva_0.8.inst.cfg | 2 +- resources/variants/artillery/artillery_base_0.2.inst.cfg | 2 +- resources/variants/artillery/artillery_base_0.3.inst.cfg | 2 +- resources/variants/artillery/artillery_base_0.4.inst.cfg | 2 +- resources/variants/artillery/artillery_base_0.6.inst.cfg | 2 +- resources/variants/artillery/artillery_base_0.8.inst.cfg | 2 +- resources/variants/artillery/artillery_base_1.0.inst.cfg | 2 +- resources/variants/artillery/artillery_genius_0.2.inst.cfg | 2 +- resources/variants/artillery/artillery_genius_0.3.inst.cfg | 2 +- resources/variants/artillery/artillery_genius_0.4.inst.cfg | 2 +- resources/variants/artillery/artillery_genius_0.5.inst.cfg | 2 +- resources/variants/artillery/artillery_genius_0.6.inst.cfg | 2 +- resources/variants/artillery/artillery_genius_0.8.inst.cfg | 2 +- resources/variants/artillery/artillery_genius_1.0.inst.cfg | 2 +- resources/variants/artillery/artillery_hornet_0.2.inst.cfg | 2 +- resources/variants/artillery/artillery_hornet_0.3.inst.cfg | 2 +- resources/variants/artillery/artillery_hornet_0.4.inst.cfg | 2 +- resources/variants/artillery/artillery_hornet_0.5.inst.cfg | 2 +- resources/variants/artillery/artillery_hornet_0.6.inst.cfg | 2 +- resources/variants/artillery/artillery_hornet_0.8.inst.cfg | 2 +- resources/variants/artillery/artillery_hornet_1.0.inst.cfg | 2 +- .../variants/artillery/artillery_sidewinder_x1_0.2.inst.cfg | 2 +- .../variants/artillery/artillery_sidewinder_x1_0.3.inst.cfg | 2 +- .../variants/artillery/artillery_sidewinder_x1_0.4.inst.cfg | 2 +- .../variants/artillery/artillery_sidewinder_x1_0.6.inst.cfg | 2 +- .../variants/artillery/artillery_sidewinder_x1_0.8.inst.cfg | 2 +- .../variants/artillery/artillery_sidewinder_x1_1.0.inst.cfg | 2 +- resources/variants/atmat/atmat_asterion_ht_v6_0.40.inst.cfg | 2 +- resources/variants/atmat/atmat_asterion_ht_v6_0.80.inst.cfg | 2 +- resources/variants/atmat/atmat_asterion_v6_0.40.inst.cfg | 2 +- resources/variants/atmat/atmat_asterion_v6_0.80.inst.cfg | 2 +- resources/variants/atmat/atmat_galaxy_500_v6_0.40.inst.cfg | 2 +- resources/variants/atmat/atmat_galaxy_500_v6_0.80.inst.cfg | 2 +- resources/variants/atmat/atmat_galaxy_600_v6_0.40.inst.cfg | 2 +- resources/variants/atmat/atmat_galaxy_600_v6_0.80.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_300_v1_v6_0.40.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_300_v1_v6_0.80.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_300_v2_v6_0.40.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_300_v2_v6_0.80.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_400_v1_v6_0.40.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_400_v1_v6_0.80.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_400_v2_v6_0.40.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_400_v2_v6_0.80.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_500_v1_v6_0.40.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_500_v1_v6_0.80.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_500_v2_v6_0.40.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_500_v2_v6_0.80.inst.cfg | 2 +- resources/variants/atmat/atmat_signal_xl_v6_0.40.inst.cfg | 2 +- resources/variants/atmat/atmat_signal_xl_v6_0.80.inst.cfg | 2 +- resources/variants/atmat/atmat_signal_xxl_v6_0.40.inst.cfg | 2 +- resources/variants/atmat/atmat_signal_xxl_v6_0.80.inst.cfg | 2 +- resources/variants/atmat/atmat_signal_xxxl_v6_0.40.inst.cfg | 2 +- resources/variants/atmat/atmat_signal_xxxl_v6_0.80.inst.cfg | 2 +- resources/variants/atmat/atom3_all_metal_brass_0.2.inst.cfg | 2 +- resources/variants/atmat/atom3_all_metal_brass_0.4.inst.cfg | 2 +- resources/variants/atmat/atom3_all_metal_brass_0.6.inst.cfg | 2 +- .../variants/atmat/atom3_lite_all_metal_brass_0.2.inst.cfg | 2 +- .../variants/atmat/atom3_lite_all_metal_brass_0.4.inst.cfg | 2 +- .../variants/atmat/atom3_lite_all_metal_brass_0.6.inst.cfg | 2 +- resources/variants/atmat/atom3_lite_ptfe_brass_0.2.inst.cfg | 2 +- resources/variants/atmat/atom3_lite_ptfe_brass_0.4.inst.cfg | 2 +- resources/variants/atmat/atom3_lite_ptfe_brass_0.6.inst.cfg | 2 +- resources/variants/atmat/atom3_ptfe_brass_0.2.inst.cfg | 2 +- resources/variants/atmat/atom3_ptfe_brass_0.4.inst.cfg | 2 +- resources/variants/atmat/atom3_ptfe_brass_0.6.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_0.2.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_0.3.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_0.4.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_0.5.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_0.6.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_0.8.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_abl_0.2.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_abl_0.3.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_abl_0.4.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_abl_0.5.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_abl_0.6.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_abl_0.8.inst.cfg | 2 +- resources/variants/biqu/biqu_base_0.2.inst.cfg | 2 +- resources/variants/biqu/biqu_base_0.3.inst.cfg | 2 +- resources/variants/biqu/biqu_base_0.4.inst.cfg | 2 +- resources/variants/biqu/biqu_base_0.5.inst.cfg | 2 +- resources/variants/biqu/biqu_base_0.6.inst.cfg | 2 +- resources/variants/biqu/biqu_base_0.8.inst.cfg | 2 +- resources/variants/biqu/biqu_bx_abl_0.2.inst.cfg | 2 +- resources/variants/biqu/biqu_bx_abl_0.3.inst.cfg | 2 +- resources/variants/biqu/biqu_bx_abl_0.4.inst.cfg | 2 +- resources/variants/biqu/biqu_bx_abl_0.5.inst.cfg | 2 +- resources/variants/biqu/biqu_bx_abl_0.6.inst.cfg | 2 +- resources/variants/biqu/biqu_bx_abl_0.8.inst.cfg | 2 +- resources/variants/biqu/biqu_hurakan_0.2.inst.cfg | 2 +- resources/variants/biqu/biqu_hurakan_0.3.inst.cfg | 2 +- resources/variants/biqu/biqu_hurakan_0.4.inst.cfg | 2 +- resources/variants/biqu/biqu_hurakan_0.5.inst.cfg | 2 +- resources/variants/biqu/biqu_hurakan_0.6.inst.cfg | 2 +- resources/variants/biqu/biqu_hurakan_0.8.inst.cfg | 2 +- resources/variants/blocks/blocks_mkii_0.20.inst.cfg | 2 +- resources/variants/blocks/blocks_mkii_0.30.inst.cfg | 2 +- resources/variants/blocks/blocks_mkii_0.40.inst.cfg | 2 +- resources/variants/blocks/blocks_mkii_0.50.inst.cfg | 2 +- resources/variants/blocks/blocks_mkii_0.60.inst.cfg | 2 +- resources/variants/blocks/blocks_mkii_0.80.inst.cfg | 2 +- resources/variants/blocks/blocks_one_0.20.inst.cfg | 2 +- resources/variants/blocks/blocks_one_0.30.inst.cfg | 2 +- resources/variants/blocks/blocks_one_0.40.inst.cfg | 2 +- resources/variants/blocks/blocks_one_0.50.inst.cfg | 2 +- resources/variants/blocks/blocks_one_0.60.inst.cfg | 2 +- resources/variants/blocks/blocks_one_0.80.inst.cfg | 2 +- resources/variants/blocks/blocks_pros100_0.40.inst.cfg | 2 +- resources/variants/blocks/blocks_pros100_0.50.inst.cfg | 2 +- resources/variants/blocks/blocks_pros100_0.60.inst.cfg | 2 +- resources/variants/blocks/blocks_pros100_0.80.inst.cfg | 2 +- resources/variants/blocks/blocks_pros100_1.0.inst.cfg | 2 +- resources/variants/blocks/blocks_pros100_1.2.inst.cfg | 2 +- resources/variants/blocks/blocks_pros30_0.40.inst.cfg | 2 +- resources/variants/blocks/blocks_pros30_0.50.inst.cfg | 2 +- resources/variants/blocks/blocks_pros30_0.60.inst.cfg | 2 +- resources/variants/blocks/blocks_pros30_0.80.inst.cfg | 2 +- resources/variants/blocks/blocks_pros30_1.0.inst.cfg | 2 +- resources/variants/blocks/blocks_pros30_1.2.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_ht_0.3.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_ht_0.4.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_ht_0.5.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_ht_0.6.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_ht_0.8.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_st_0.20.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_st_0.30.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_st_0.40.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_st_0.50.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_st_0.60.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_st_0.80.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_st_1.0.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_st_1.2.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_ht_0.3.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_ht_0.4.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_ht_0.5.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_ht_0.6.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_ht_0.8.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_st_0.20.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_st_0.30.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_st_0.40.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_st_0.50.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_st_0.60.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_st_0.80.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_st_1.0.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_st_1.2.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_ht_0.3.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_ht_0.4.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_ht_0.5.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_ht_0.6.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_ht_0.8.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_st_0.20.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_st_0.30.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_st_0.40.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_st_0.50.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_st_0.60.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_st_0.80.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_st_1.0.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_st_1.2.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_ht_0.3.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_ht_0.4.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_ht_0.5.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_ht_0.6.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_ht_0.8.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_st_0.20.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_st_0.30.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_st_0.40.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_st_0.50.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_st_0.60.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_st_0.80.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_st_1.0.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_st_1.2.inst.cfg | 2 +- resources/variants/blocks/blocks_zero_0.20.inst.cfg | 2 +- resources/variants/blocks/blocks_zero_0.30.inst.cfg | 2 +- resources/variants/blocks/blocks_zero_0.40.inst.cfg | 2 +- resources/variants/blocks/blocks_zero_0.50.inst.cfg | 2 +- resources/variants/blocks/blocks_zero_0.60.inst.cfg | 2 +- resources/variants/blocks/blocks_zero_0.80.inst.cfg | 2 +- resources/variants/cartesio/cartesio_0.25.inst.cfg | 2 +- resources/variants/cartesio/cartesio_0.4.inst.cfg | 2 +- resources/variants/cartesio/cartesio_0.8.inst.cfg | 2 +- resources/variants/crazy3dprint/crazy3dprint_base_0.40.inst.cfg | 2 +- .../variants/crazy3dprint/crazy3dprint_cz_300_0.40.inst.cfg | 2 +- resources/variants/creality/creality_base_0.2.inst.cfg | 2 +- resources/variants/creality/creality_base_0.3.inst.cfg | 2 +- resources/variants/creality/creality_base_0.4.inst.cfg | 2 +- resources/variants/creality/creality_base_0.5.inst.cfg | 2 +- resources/variants/creality/creality_base_0.6.inst.cfg | 2 +- resources/variants/creality/creality_base_0.8.inst.cfg | 2 +- resources/variants/creality/creality_base_1.0.inst.cfg | 2 +- resources/variants/creality/creality_cr100_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr10_0.2.inst.cfg | 2 +- resources/variants/creality/creality_cr10_0.3.inst.cfg | 2 +- resources/variants/creality/creality_cr10_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr10_0.5.inst.cfg | 2 +- resources/variants/creality/creality_cr10_0.6.inst.cfg | 2 +- resources/variants/creality/creality_cr10_0.8.inst.cfg | 2 +- resources/variants/creality/creality_cr10_1.0.inst.cfg | 2 +- resources/variants/creality/creality_cr10max_0.2.inst.cfg | 2 +- resources/variants/creality/creality_cr10max_0.3.inst.cfg | 2 +- resources/variants/creality/creality_cr10max_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr10max_0.5.inst.cfg | 2 +- resources/variants/creality/creality_cr10max_0.6.inst.cfg | 2 +- resources/variants/creality/creality_cr10max_0.8.inst.cfg | 2 +- resources/variants/creality/creality_cr10max_1.0.inst.cfg | 2 +- resources/variants/creality/creality_cr10mini_0.2.inst.cfg | 2 +- resources/variants/creality/creality_cr10mini_0.3.inst.cfg | 2 +- resources/variants/creality/creality_cr10mini_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr10mini_0.5.inst.cfg | 2 +- resources/variants/creality/creality_cr10mini_0.6.inst.cfg | 2 +- resources/variants/creality/creality_cr10mini_0.8.inst.cfg | 2 +- resources/variants/creality/creality_cr10mini_1.0.inst.cfg | 2 +- resources/variants/creality/creality_cr10s4_0.2.inst.cfg | 2 +- resources/variants/creality/creality_cr10s4_0.3.inst.cfg | 2 +- resources/variants/creality/creality_cr10s4_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr10s4_0.5.inst.cfg | 2 +- resources/variants/creality/creality_cr10s4_0.6.inst.cfg | 2 +- resources/variants/creality/creality_cr10s4_0.8.inst.cfg | 2 +- resources/variants/creality/creality_cr10s4_1.0.inst.cfg | 2 +- resources/variants/creality/creality_cr10s5_0.2.inst.cfg | 2 +- resources/variants/creality/creality_cr10s5_0.3.inst.cfg | 2 +- resources/variants/creality/creality_cr10s5_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr10s5_0.5.inst.cfg | 2 +- resources/variants/creality/creality_cr10s5_0.6.inst.cfg | 2 +- resources/variants/creality/creality_cr10s5_0.8.inst.cfg | 2 +- resources/variants/creality/creality_cr10s5_1.0.inst.cfg | 2 +- resources/variants/creality/creality_cr10s_0.2.inst.cfg | 2 +- resources/variants/creality/creality_cr10s_0.3.inst.cfg | 2 +- resources/variants/creality/creality_cr10s_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr10s_0.5.inst.cfg | 2 +- resources/variants/creality/creality_cr10s_0.6.inst.cfg | 2 +- resources/variants/creality/creality_cr10s_0.8.inst.cfg | 2 +- resources/variants/creality/creality_cr10s_1.0.inst.cfg | 2 +- resources/variants/creality/creality_cr10smart_0.2.inst.cfg | 2 +- resources/variants/creality/creality_cr10smart_0.3.inst.cfg | 2 +- resources/variants/creality/creality_cr10smart_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr10smart_0.5.inst.cfg | 2 +- resources/variants/creality/creality_cr10smart_0.6.inst.cfg | 2 +- resources/variants/creality/creality_cr10smart_0.8.inst.cfg | 2 +- resources/variants/creality/creality_cr10smart_1.0.inst.cfg | 2 +- resources/variants/creality/creality_cr10spro_0.2.inst.cfg | 2 +- resources/variants/creality/creality_cr10spro_0.3.inst.cfg | 2 +- resources/variants/creality/creality_cr10spro_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr10spro_0.5.inst.cfg | 2 +- resources/variants/creality/creality_cr10spro_0.6.inst.cfg | 2 +- resources/variants/creality/creality_cr10spro_0.8.inst.cfg | 2 +- resources/variants/creality/creality_cr10spro_1.0.inst.cfg | 2 +- resources/variants/creality/creality_cr20_0.2.inst.cfg | 2 +- resources/variants/creality/creality_cr20_0.3.inst.cfg | 2 +- resources/variants/creality/creality_cr20_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr20_0.5.inst.cfg | 2 +- resources/variants/creality/creality_cr20_0.6.inst.cfg | 2 +- resources/variants/creality/creality_cr20_0.8.inst.cfg | 2 +- resources/variants/creality/creality_cr20_1.0.inst.cfg | 2 +- resources/variants/creality/creality_cr20pro_0.2.inst.cfg | 2 +- resources/variants/creality/creality_cr20pro_0.3.inst.cfg | 2 +- resources/variants/creality/creality_cr20pro_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr20pro_0.5.inst.cfg | 2 +- resources/variants/creality/creality_cr20pro_0.6.inst.cfg | 2 +- resources/variants/creality/creality_cr20pro_0.8.inst.cfg | 2 +- resources/variants/creality/creality_cr20pro_1.0.inst.cfg | 2 +- resources/variants/creality/creality_cr6se_0.2.inst.cfg | 2 +- resources/variants/creality/creality_cr6se_0.3.inst.cfg | 2 +- resources/variants/creality/creality_cr6se_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr6se_0.5.inst.cfg | 2 +- resources/variants/creality/creality_cr6se_0.6.inst.cfg | 2 +- resources/variants/creality/creality_cr6se_0.8.inst.cfg | 2 +- resources/variants/creality/creality_cr6se_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender2_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender2_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender2_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender2_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender2_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender2_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender2_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender3_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender3_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender3_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender3_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender3_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender3_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender3_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender3max_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender3max_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender3max_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender3max_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender3max_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender3max_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender3max_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender3pro_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender3pro_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender3pro_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender3pro_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender3pro_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender3pro_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender3pro_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1plus_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1plus_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1plus_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1plus_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1plus_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1plus_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1plus_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1pro_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1pro_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1pro_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1pro_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1pro_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1pro_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1pro_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender3v2neo_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender3v2neo_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender3v2neo_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender3v2neo_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender3v2neo_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender3v2neo_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender3v2neo_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender3v3se_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender3v3se_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender3v3se_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender3v3se_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender3v3se_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender3v3se_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender3v3se_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender4_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender4_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender4_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender4_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender4_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender4_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender4_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender5_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender5_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender5_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender5_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender5_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender5_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender5_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender5plus_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender5plus_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender5plus_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender5plus_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender5plus_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender5plus_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender5plus_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender5s1_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender5s1_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender5s1_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender5s1_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender5s1_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender5s1_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender5s1_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender6_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender6_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender6_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender6_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender6_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender6_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender6_1.0.inst.cfg | 2 +- resources/variants/creality/creality_sermoond1_0.2.inst.cfg | 2 +- resources/variants/creality/creality_sermoond1_0.3.inst.cfg | 2 +- resources/variants/creality/creality_sermoond1_0.4.inst.cfg | 2 +- resources/variants/creality/creality_sermoond1_0.5.inst.cfg | 2 +- resources/variants/creality/creality_sermoond1_0.6.inst.cfg | 2 +- resources/variants/creality/creality_sermoond1_0.8.inst.cfg | 2 +- resources/variants/creality/creality_sermoond1_1.0.inst.cfg | 2 +- resources/variants/creality/creality_sermoonv1_0.4.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_bowden_brass_0.4.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_bowden_brass_0.8.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_bowden_brass_1.0.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_bowden_generic_0.2.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_bowden_generic_0.4.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_bowden_generic_0.6.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_bowden_generic_0.8.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_bowden_generic_1.0.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_bowden_generic_1.2.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_bowden_steel_0.4.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_bowden_steel_0.8.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_brass_0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_brass_0.8.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_brass_1.0.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_generic_0.2.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_generic_0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_generic_0.6.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_generic_0.8.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_generic_1.0.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_generic_1.2.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_steel_0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_steel_0.8.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_dual_brass_0.4.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_dual_brass_0.8.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_dual_brass_1.0.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_dual_generic_0.2.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_dual_generic_0.4.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_dual_generic_0.6.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_dual_generic_0.8.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_dual_generic_1.0.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_dual_generic_1.2.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_dual_steel_0.4.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_dual_steel_0.8.inst.cfg | 2 +- resources/variants/dagoma/dagoma_sigma_0.4.inst.cfg | 2 +- resources/variants/dagoma/dagoma_sigma_0.8.inst.cfg | 2 +- resources/variants/dagoma/dagoma_sigma_pro_brass_0.4.inst.cfg | 2 +- resources/variants/dagoma/dagoma_sigma_pro_brass_0.8.inst.cfg | 2 +- .../variants/dagoma/dagoma_sigma_pro_dual_brass_0.4.inst.cfg | 2 +- .../variants/dagoma/dagoma_sigma_pro_dual_brass_0.8.inst.cfg | 2 +- .../variants/dagoma/dagoma_sigma_pro_dual_steel_0.4.inst.cfg | 2 +- .../variants/dagoma/dagoma_sigma_pro_dual_steel_0.8.inst.cfg | 2 +- resources/variants/dagoma/dagoma_sigma_pro_steel_0.4.inst.cfg | 2 +- resources/variants/dagoma/dagoma_sigma_pro_steel_0.8.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc20_fbe025.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc20_fbe040.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc20_fbe060.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg | 2 +- .../variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg | 2 +- .../variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg | 2 +- .../variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg | 2 +- resources/variants/diy/diy220_0.2.inst.cfg | 2 +- resources/variants/diy/diy220_0.3.inst.cfg | 2 +- resources/variants/diy/diy220_0.4.inst.cfg | 2 +- resources/variants/diy/diy220_0.5.inst.cfg | 2 +- resources/variants/diy/diy220_0.6.inst.cfg | 2 +- resources/variants/diy/diy220_0.8.inst.cfg | 2 +- resources/variants/dxu/dxu_0.25.inst.cfg | 2 +- resources/variants/dxu/dxu_0.4.inst.cfg | 2 +- resources/variants/dxu/dxu_0.6.inst.cfg | 2 +- resources/variants/dxu/dxu_0.8.inst.cfg | 2 +- resources/variants/dxu/dxu_dual_0.25.inst.cfg | 2 +- resources/variants/dxu/dxu_dual_0.4.inst.cfg | 2 +- resources/variants/dxu/dxu_dual_0.6.inst.cfg | 2 +- resources/variants/dxu/dxu_dual_0.8.inst.cfg | 2 +- resources/variants/dxu/dxu_umo_0.25.inst.cfg | 2 +- resources/variants/dxu/dxu_umo_0.4.inst.cfg | 2 +- resources/variants/dxu/dxu_umo_0.6.inst.cfg | 2 +- resources/variants/dxu/dxu_umo_0.8.inst.cfg | 2 +- resources/variants/dxu/dxu_umo_dual_0.25.inst.cfg | 2 +- resources/variants/dxu/dxu_umo_dual_0.4.inst.cfg | 2 +- resources/variants/dxu/dxu_umo_dual_0.6.inst.cfg | 2 +- resources/variants/dxu/dxu_umo_dual_0.8.inst.cfg | 2 +- .../elegoo/elegoo_neptune_1/elegoo_neptune_1_0.20.inst.cfg | 2 +- .../elegoo/elegoo_neptune_1/elegoo_neptune_1_0.40.inst.cfg | 2 +- .../elegoo/elegoo_neptune_1/elegoo_neptune_1_0.60.inst.cfg | 2 +- .../elegoo/elegoo_neptune_1/elegoo_neptune_1_0.80.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2/elegoo_neptune_2_0.20.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2/elegoo_neptune_2_0.40.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2/elegoo_neptune_2_0.60.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2/elegoo_neptune_2_0.80.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.20.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.40.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.60.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.80.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.20.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.40.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.60.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.80.inst.cfg | 2 +- .../elegoo/elegoo_neptune_3/elegoo_neptune_3_0.20.inst.cfg | 2 +- .../elegoo/elegoo_neptune_3/elegoo_neptune_3_0.40.inst.cfg | 2 +- .../elegoo/elegoo_neptune_3/elegoo_neptune_3_0.60.inst.cfg | 2 +- .../elegoo/elegoo_neptune_3/elegoo_neptune_3_0.80.inst.cfg | 2 +- .../elegoo_neptune_3max/elegoo_neptune_3max_0.20.inst.cfg | 2 +- .../elegoo_neptune_3max/elegoo_neptune_3max_0.40.inst.cfg | 2 +- .../elegoo_neptune_3max/elegoo_neptune_3max_0.60.inst.cfg | 2 +- .../elegoo_neptune_3max/elegoo_neptune_3max_0.80.inst.cfg | 2 +- .../elegoo_neptune_3plus/elegoo_neptune_3plus_0.20.inst.cfg | 2 +- .../elegoo_neptune_3plus/elegoo_neptune_3plus_0.40.inst.cfg | 2 +- .../elegoo_neptune_3plus/elegoo_neptune_3plus_0.60.inst.cfg | 2 +- .../elegoo_neptune_3plus/elegoo_neptune_3plus_0.80.inst.cfg | 2 +- .../elegoo_neptune_3pro/elegoo_neptune_3pro_0.20.inst.cfg | 2 +- .../elegoo_neptune_3pro/elegoo_neptune_3pro_0.40.inst.cfg | 2 +- .../elegoo_neptune_3pro/elegoo_neptune_3pro_0.60.inst.cfg | 2 +- .../elegoo_neptune_3pro/elegoo_neptune_3pro_0.80.inst.cfg | 2 +- .../elegoo/elegoo_neptune_4/elegoo_neptune_4_0.20.inst.cfg | 2 +- .../elegoo/elegoo_neptune_4/elegoo_neptune_4_0.40.inst.cfg | 2 +- .../elegoo/elegoo_neptune_4/elegoo_neptune_4_0.60.inst.cfg | 2 +- .../elegoo/elegoo_neptune_4/elegoo_neptune_4_0.80.inst.cfg | 2 +- .../elegoo_neptune_4max/elegoo_neptune_4max_0.20.inst.cfg | 2 +- .../elegoo_neptune_4max/elegoo_neptune_4max_0.40.inst.cfg | 2 +- .../elegoo_neptune_4max/elegoo_neptune_4max_0.60.inst.cfg | 2 +- .../elegoo_neptune_4max/elegoo_neptune_4max_0.80.inst.cfg | 2 +- .../elegoo_neptune_4plus/elegoo_neptune_4plus_0.20.inst.cfg | 2 +- .../elegoo_neptune_4plus/elegoo_neptune_4plus_0.40.inst.cfg | 2 +- .../elegoo_neptune_4plus/elegoo_neptune_4plus_0.60.inst.cfg | 2 +- .../elegoo_neptune_4plus/elegoo_neptune_4plus_0.80.inst.cfg | 2 +- .../elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg | 2 +- .../elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg | 2 +- .../elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg | 2 +- .../elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg | 2 +- .../elegoo/elegoo_neptune_x/elegoo_neptune_x_0.20.inst.cfg | 2 +- .../elegoo/elegoo_neptune_x/elegoo_neptune_x_0.40.inst.cfg | 2 +- .../elegoo/elegoo_neptune_x/elegoo_neptune_x_0.60.inst.cfg | 2 +- .../elegoo/elegoo_neptune_x/elegoo_neptune_x_0.80.inst.cfg | 2 +- resources/variants/fabtotum/fabtotum_hyb35.inst.cfg | 2 +- resources/variants/fabtotum/fabtotum_lite04.inst.cfg | 2 +- resources/variants/fabtotum/fabtotum_lite06.inst.cfg | 2 +- resources/variants/fabtotum/fabtotum_pro02.inst.cfg | 2 +- resources/variants/fabtotum/fabtotum_pro04.inst.cfg | 2 +- resources/variants/fabtotum/fabtotum_pro06.inst.cfg | 2 +- resources/variants/fabtotum/fabtotum_pro08.inst.cfg | 2 +- resources/variants/farm2/farm2_ce_printhead_0.2.inst.cfg | 2 +- resources/variants/farm2/farm2_ce_printhead_0.3.inst.cfg | 2 +- resources/variants/farm2/farm2_ce_printhead_0.4.inst.cfg | 2 +- resources/variants/farm2/farm2_ce_printhead_0.5.inst.cfg | 2 +- resources/variants/farm2/farm2_printhead_0.2.inst.cfg | 2 +- resources/variants/farm2/farm2_printhead_0.3.inst.cfg | 2 +- resources/variants/farm2/farm2_printhead_0.4.inst.cfg | 2 +- resources/variants/farm2/farm2_printhead_0.5.inst.cfg | 2 +- resources/variants/felix/felixpro2_0.25.inst.cfg | 2 +- resources/variants/felix/felixpro2_0.35.inst.cfg | 2 +- resources/variants/felix/felixpro2_0.50.inst.cfg | 2 +- resources/variants/felix/felixpro2_0.70.inst.cfg | 2 +- resources/variants/felix/felixtec4_0.25.inst.cfg | 2 +- resources/variants/felix/felixtec4_0.35.inst.cfg | 2 +- resources/variants/felix/felixtec4_0.50.inst.cfg | 2 +- resources/variants/felix/felixtec4_0.70.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer3_0.3.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer3_0.4.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer3_0.6.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer4_0.3.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer4_0.4.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer4_0.6.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg | 2 +- resources/variants/flashforge/flashforge_base_0.20.inst.cfg | 2 +- resources/variants/flashforge/flashforge_base_0.30.inst.cfg | 2 +- resources/variants/flashforge/flashforge_base_0.40.inst.cfg | 2 +- resources/variants/flashforge/flashforge_base_0.50.inst.cfg | 2 +- resources/variants/flashforge/flashforge_base_0.60.inst.cfg | 2 +- .../variants/flashforge/flashforge_dreamer_nx_0.20.inst.cfg | 2 +- .../variants/flashforge/flashforge_dreamer_nx_0.30.inst.cfg | 2 +- .../variants/flashforge/flashforge_dreamer_nx_0.40.inst.cfg | 2 +- .../variants/flashforge/flashforge_dreamer_nx_0.50.inst.cfg | 2 +- .../variants/flashforge/flashforge_dreamer_nx_0.60.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_base_0.25.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_base_0.30.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_base_0.40.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_base_0.50.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_base_0.60.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_base_0.80.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_4s_0.25.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_4s_0.30.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_4s_0.40.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_4s_0.50.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_4s_0.60.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_4s_0.80.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_5_0.25.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_5_0.30.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_5_0.40.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_5_0.50.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_5_0.60.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_5_0.80.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_6_0.25.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_6_0.30.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_6_0.40.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_6_0.50.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_6_0.60.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_6_0.80.inst.cfg | 2 +- resources/variants/fusion3/fusion3_0.4.inst.cfg | 2 +- resources/variants/fusion3/fusion3_0.6.inst.cfg | 2 +- resources/variants/fusion3/fusion3_0.8.inst.cfg | 2 +- resources/variants/fusion3/fusion3_f410_0.4.inst.cfg | 2 +- resources/variants/fusion3/fusion3_f410_0.6.inst.cfg | 2 +- resources/variants/fusion3/fusion3_f410_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A10Pro_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A10Pro_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A10Pro_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A10Pro_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A10Pro_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A10Pro_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A10Pro_1.0.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_A20_0.2.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_A20_0.3.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_A20_0.4.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_A20_0.5.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_A20_0.6.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_A20_0.8.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_A20_1.0.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A30Pro_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A30Pro_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A30Pro_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A30Pro_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A30Pro_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A30Pro_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A30Pro_1.0.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_E180_0.2.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_E180_0.3.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_E180_0.4.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_E180_0.5.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_E180_0.6.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_E180_0.8.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_E180_1.0.inst.cfg | 2 +- .../geeetech_variants/geeetech_GiantArmD200_0.2.inst.cfg | 2 +- .../geeetech_variants/geeetech_GiantArmD200_0.3.inst.cfg | 2 +- .../geeetech_variants/geeetech_GiantArmD200_0.4.inst.cfg | 2 +- .../geeetech_variants/geeetech_GiantArmD200_0.5.inst.cfg | 2 +- .../geeetech_variants/geeetech_GiantArmD200_0.6.inst.cfg | 2 +- .../geeetech_variants/geeetech_GiantArmD200_0.8.inst.cfg | 2 +- .../geeetech_variants/geeetech_GiantArmD200_1.0.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProB_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProB_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProB_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProB_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProB_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProB_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProB_1.0.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProW_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProW_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProW_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProW_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProW_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProW_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProW_1.0.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator2_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator2_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator2_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator2_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator2_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator2_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator2_1.0.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator_1.0.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeDucer_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeDucer_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeDucer_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeDucer_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeDucer_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeDucer_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeDucer_1.0.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarMax_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarMax_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarMax_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarMax_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarMax_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarMax_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarMax_1.0.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarPro_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarPro_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarPro_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarPro_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarPro_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarPro_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarPro_1.0.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarS_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarS_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarS_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarS_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarS_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarS_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarS_1.0.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Mizar_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Mizar_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Mizar_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Mizar_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Mizar_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Mizar_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Mizar_1.0.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Thunder_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Thunder_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Thunder_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Thunder_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Thunder_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Thunder_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Thunder_1.0.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_025_e3d.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_04_e3d.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_05_e3d.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_05_jhead.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_06_e3d.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_08_e3d.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_10_jhead.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_12_e3d.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_dual_025_e3d.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_dual_04_e3d.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_dual_05_e3d.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_dual_05_jhead.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_dual_06_e3d.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_dual_08_e3d.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_dual_10_jhead.inst.cfg | 2 +- resources/variants/goofoo/goofoo_base_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_cube_0.7.inst.cfg | 2 +- resources/variants/goofoo/goofoo_e-one_0.2.inst.cfg | 2 +- resources/variants/goofoo/goofoo_e-one_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_e-one_0.6.inst.cfg | 2 +- resources/variants/goofoo/goofoo_e-one_0.8.inst.cfg | 2 +- resources/variants/goofoo/goofoo_e-one_1.0.inst.cfg | 2 +- resources/variants/goofoo/goofoo_gemini_0.2.inst.cfg | 2 +- resources/variants/goofoo/goofoo_gemini_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_gemini_0.6.inst.cfg | 2 +- resources/variants/goofoo/goofoo_gemini_0.8.inst.cfg | 2 +- resources/variants/goofoo/goofoo_gemini_1.0.inst.cfg | 2 +- resources/variants/goofoo/goofoo_giant_0.2.inst.cfg | 2 +- resources/variants/goofoo/goofoo_giant_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_giant_0.6.inst.cfg | 2 +- resources/variants/goofoo/goofoo_giant_0.8.inst.cfg | 2 +- resources/variants/goofoo/goofoo_giant_1.0.inst.cfg | 2 +- resources/variants/goofoo/goofoo_max_0.2.inst.cfg | 2 +- resources/variants/goofoo/goofoo_max_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_max_0.6.inst.cfg | 2 +- resources/variants/goofoo/goofoo_max_0.8.inst.cfg | 2 +- resources/variants/goofoo/goofoo_max_1.0.inst.cfg | 2 +- resources/variants/goofoo/goofoo_mido_0.2.inst.cfg | 2 +- resources/variants/goofoo/goofoo_mido_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_mido_0.6.inst.cfg | 2 +- resources/variants/goofoo/goofoo_mido_0.8.inst.cfg | 2 +- resources/variants/goofoo/goofoo_mido_1.0.inst.cfg | 2 +- resources/variants/goofoo/goofoo_miniplus_0.2.inst.cfg | 2 +- resources/variants/goofoo/goofoo_miniplus_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_miniplus_0.6.inst.cfg | 2 +- resources/variants/goofoo/goofoo_miniplus_0.8.inst.cfg | 2 +- resources/variants/goofoo/goofoo_miniplus_1.0.inst.cfg | 2 +- resources/variants/goofoo/goofoo_nova_0.2.inst.cfg | 2 +- resources/variants/goofoo/goofoo_nova_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_nova_0.6.inst.cfg | 2 +- resources/variants/goofoo/goofoo_nova_0.8.inst.cfg | 2 +- resources/variants/goofoo/goofoo_nova_1.0.inst.cfg | 2 +- resources/variants/goofoo/goofoo_plus_0.2.inst.cfg | 2 +- resources/variants/goofoo/goofoo_plus_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_plus_0.6.inst.cfg | 2 +- resources/variants/goofoo/goofoo_plus_0.8.inst.cfg | 2 +- resources/variants/goofoo/goofoo_plus_1.0.inst.cfg | 2 +- resources/variants/goofoo/goofoo_t-one_0.2.inst.cfg | 2 +- resources/variants/goofoo/goofoo_t-one_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_t-one_0.6.inst.cfg | 2 +- resources/variants/goofoo/goofoo_t-one_0.8.inst.cfg | 2 +- resources/variants/goofoo/goofoo_t-one_1.0.inst.cfg | 2 +- resources/variants/goofoo/goofoo_tiny_0.2.inst.cfg | 2 +- resources/variants/goofoo/goofoo_tiny_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_tiny_0.6.inst.cfg | 2 +- resources/variants/goofoo/goofoo_tiny_0.8.inst.cfg | 2 +- resources/variants/goofoo/goofoo_tiny_1.0.inst.cfg | 2 +- resources/variants/goofoo/goofoo_tinyplus_0.2.inst.cfg | 2 +- resources/variants/goofoo/goofoo_tinyplus_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_tinyplus_0.6.inst.cfg | 2 +- resources/variants/goofoo/goofoo_tinyplus_0.8.inst.cfg | 2 +- resources/variants/goofoo/goofoo_tinyplus_1.0.inst.cfg | 2 +- resources/variants/hms434/hms434_0.4tpnozzle.inst.cfg | 2 +- resources/variants/hms434/hms434_0.8tpnozzle.inst.cfg | 2 +- resources/variants/imade3d/imade3d_jellybox_0.4.inst.cfg | 2 +- resources/variants/imade3d/imade3d_jellybox_2_0.4.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3_0.2.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3_0.3.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3_0.4.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3_0.5.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3_0.6.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3_0.8.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3_1.0.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_0.2.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_0.3.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_0.4.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_0.5.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_0.6.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_0.8.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_1.0.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_pro_0.2.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_pro_0.3.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_pro_0.4.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_pro_0.5.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_pro_0.6.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_pro_0.8.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_pro_1.0.inst.cfg | 2 +- resources/variants/kosher/kosher220_0.2.inst.cfg | 2 +- resources/variants/kosher/kosher220_0.3.inst.cfg | 2 +- resources/variants/kosher/kosher220_0.4.inst.cfg | 2 +- resources/variants/kosher/kosher220_0.5.inst.cfg | 2 +- resources/variants/kosher/kosher220_0.6.inst.cfg | 2 +- resources/variants/kosher/kosher220_0.8.inst.cfg | 2 +- resources/variants/kosher/kosher220_dm_0.2.inst.cfg | 2 +- resources/variants/kosher/kosher220_dm_0.3.inst.cfg | 2 +- resources/variants/kosher/kosher220_dm_0.4.inst.cfg | 2 +- resources/variants/kosher/kosher220_dm_0.5.inst.cfg | 2 +- resources/variants/kosher/kosher220_dm_0.6.inst.cfg | 2 +- resources/variants/kosher/kosher220_dm_0.8.inst.cfg | 2 +- resources/variants/kosher/kosher220_mm_0.2.inst.cfg | 2 +- resources/variants/kosher/kosher220_mm_0.3.inst.cfg | 2 +- resources/variants/kosher/kosher220_mm_0.4.inst.cfg | 2 +- resources/variants/kosher/kosher220_mm_0.5.inst.cfg | 2 +- resources/variants/kosher/kosher220_mm_0.6.inst.cfg | 2 +- resources/variants/kosher/kosher220_mm_0.8.inst.cfg | 2 +- resources/variants/kosher/kosher220_pva_0.2.inst.cfg | 2 +- resources/variants/kosher/kosher220_pva_0.3.inst.cfg | 2 +- resources/variants/kosher/kosher220_pva_0.4.inst.cfg | 2 +- resources/variants/kosher/kosher220_pva_0.5.inst.cfg | 2 +- resources/variants/kosher/kosher220_pva_0.6.inst.cfg | 2 +- resources/variants/kosher/kosher220_pva_0.8.inst.cfg | 2 +- .../variants/leapfrog/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg | 2 +- .../variants/leapfrog/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg | 2 +- resources/variants/liquid/liquid_vo04.inst.cfg | 2 +- resources/variants/liquid/liquid_vo06.inst.cfg | 2 +- resources/variants/liquid/liquid_vo08.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d3_0.2.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d3_0.4.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d3_0.6.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d3_0.8.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d3_vulcan_0.2.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d3_vulcan_0.4.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d3_vulcan_0.6.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d3_vulcan_0.8.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d5_0.2.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d5_0.4.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d5_0.6.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d5_0.8.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d6_0.2.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d6_0.4.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d6_0.6.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d6_0.8.inst.cfg | 2 +- resources/variants/longer/longer_base_0.4.inst.cfg | 2 +- resources/variants/longer/longer_cube2_0.4.inst.cfg | 2 +- resources/variants/longer/longer_lk1_0.4.inst.cfg | 2 +- resources/variants/longer/longer_lk1plus_0.4.inst.cfg | 2 +- resources/variants/longer/longer_lk1pro_0.4.inst.cfg | 2 +- resources/variants/longer/longer_lk4_0.4.inst.cfg | 2 +- resources/variants/longer/longer_lk4pro_0.4.inst.cfg | 2 +- resources/variants/longer/longer_lk4x_0.4.inst.cfg | 2 +- resources/variants/longer/longer_lk5_0.4.inst.cfg | 2 +- resources/variants/longer/longer_lk5pro_0.4.inst.cfg | 2 +- resources/variants/mark2/Mark2_for_Ultimaker2_0.25.inst.cfg | 2 +- resources/variants/mark2/Mark2_for_Ultimaker2_0.4.inst.cfg | 2 +- resources/variants/mark2/Mark2_for_Ultimaker2_0.6.inst.cfg | 2 +- resources/variants/mark2/Mark2_for_Ultimaker2_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_1000pro_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_1000pro_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_1000pro_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_1000pro_0.5.inst.cfg | 2 +- resources/variants/mingda/mingda_1000pro_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_1000pro_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_1000pro_1.0.inst.cfg | 2 +- resources/variants/mingda/mingda_4h_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_4h_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_4h_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_4h_0.5.inst.cfg | 2 +- resources/variants/mingda/mingda_4h_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_4h_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_4h_1.0.inst.cfg | 2 +- resources/variants/mingda/mingda_600pro_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_600pro_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_600pro_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_600pro_0.5.inst.cfg | 2 +- resources/variants/mingda/mingda_600pro_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_600pro_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_600pro_1.0.inst.cfg | 2 +- resources/variants/mingda/mingda_6h_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_6h_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_6h_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_6h_0.5.inst.cfg | 2 +- resources/variants/mingda/mingda_6h_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_6h_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_6h_1.0.inst.cfg | 2 +- resources/variants/mingda/mingda_base_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_base_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_base_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_base_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_base_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_base_1.0.inst.cfg | 2 +- resources/variants/mingda/mingda_d2_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_d2_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_d2_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_d2_0.5.inst.cfg | 2 +- resources/variants/mingda/mingda_d2_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_d2_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_d2_1.0.inst.cfg | 2 +- resources/variants/mingda/mingda_d3pro_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_d3pro_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_d3pro_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_d3pro_0.5.inst.cfg | 2 +- resources/variants/mingda/mingda_d3pro_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_d3pro_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_d3pro_1.0.inst.cfg | 2 +- resources/variants/mingda/mingda_d4pro_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_d4pro_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_d4pro_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_d4pro_0.5.inst.cfg | 2 +- resources/variants/mingda/mingda_d4pro_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_d4pro_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_d4pro_1.0.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_max_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_max_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_max_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_max_0.5.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_max_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_max_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_max_1.0.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_pro_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_pro_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_pro_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_pro_0.5.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_pro_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_pro_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_pro_1.0.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_x_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_x_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_x_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_x_0.5.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_x_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_x_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_x_1.0.inst.cfg | 2 +- resources/variants/mingda/mingda_rock3_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_rock3_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_rock3_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_rock3_0.5.inst.cfg | 2 +- resources/variants/mingda/mingda_rock3_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_rock3_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_rock3_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v3_base_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_base_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v3_base_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v3_base_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v3_base_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v3_base_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120X_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120X_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120X_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120X_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120X_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120X_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120Z_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120Z_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120Z_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120Z_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120Z_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120Z_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_big180X_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_big180X_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v3_big180X_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v3_big180X_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v3_big180X_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v3_big180X_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_big40_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_big40_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v3_big40_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v3_big40_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v3_big40_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v3_big40_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_big60_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_big60_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v3_big60_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v3_big60_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v3_big60_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v3_big60_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_bigmeter_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_bigmeter_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v3_bigmeter_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v3_bigmeter_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v3_bigmeter_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v3_bigmeter_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_base_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_base_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v4_base_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v4_base_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v4_base_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v4_base_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120X_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120X_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120X_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120X_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120X_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120X_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120Z_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120Z_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120Z_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120Z_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120Z_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120Z_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_big180X_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_big180X_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v4_big180X_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v4_big180X_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v4_big180X_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v4_big180X_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_big60_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_big60_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v4_big60_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v4_big60_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v4_big60_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v4_big60_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_bigmeter_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_bigmeter_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v4_bigmeter_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v4_bigmeter_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v4_bigmeter_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v4_bigmeter_1.4.inst.cfg | 2 +- resources/variants/multicomp/multicomp_mcpi200_0.2.inst.cfg | 2 +- resources/variants/multicomp/multicomp_mcpi200_0.4.inst.cfg | 2 +- resources/variants/multicomp/multicomp_mcpi200_0.6.inst.cfg | 2 +- resources/variants/multicomp/multicomp_mcpi200_0.8.inst.cfg | 2 +- resources/variants/multicomp/multicomp_mcpi200_1.0.inst.cfg | 2 +- resources/variants/nwa3d/nwa3d_a31_04.inst.cfg | 2 +- resources/variants/nwa3d/nwa3d_a31_06.inst.cfg | 2 +- resources/variants/ratrig/ratrig_base_0.2.inst.cfg | 2 +- resources/variants/ratrig/ratrig_base_0.3.inst.cfg | 2 +- resources/variants/ratrig/ratrig_base_0.4.inst.cfg | 2 +- resources/variants/ratrig/ratrig_base_0.6.inst.cfg | 2 +- resources/variants/ratrig/ratrig_base_0.8.inst.cfg | 2 +- resources/variants/ratrig/ratrig_base_1.0.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_200_0.2.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_200_0.3.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_200_0.4.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_200_0.6.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_200_0.8.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_200_1.0.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_300_0.2.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_300_0.3.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_300_0.4.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_300_0.6.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_300_0.8.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_300_1.0.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_400_0.2.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_400_0.3.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_400_0.4.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_400_0.6.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_400_0.8.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_400_1.0.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_500_0.2.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_500_0.3.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_500_0.4.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_500_0.6.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_500_0.8.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_500_1.0.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vminion_0.2.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vminion_0.3.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vminion_0.4.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vminion_0.6.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vminion_0.8.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vminion_1.0.inst.cfg | 2 +- resources/variants/renkforce/renkforce_basic3_0.2.inst.cfg | 2 +- resources/variants/renkforce/renkforce_basic3_0.4.inst.cfg | 2 +- resources/variants/renkforce/renkforce_basic3_0.6.inst.cfg | 2 +- resources/variants/renkforce/renkforce_basic3_0.8.inst.cfg | 2 +- resources/variants/renkforce/renkforce_basic3_1.0.inst.cfg | 2 +- resources/variants/renkforce/renkforce_cubeone_0.7.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro10plus_0.2.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro10plus_0.4.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro10plus_0.6.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro10plus_0.8.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro10plus_1.0.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro3_0.2.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro3_0.4.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro3_0.6.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro3_0.8.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro3_1.0.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro6_0.2.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro6_0.4.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro6_0.6.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro6_0.8.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro6_1.0.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro6plus_0.4.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro6plus_0.6.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro6plus_0.8.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro6plus_1.0.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro7dual_0.2.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro7dual_0.4.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro7dual_0.6.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro7dual_0.8.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro7dual_1.0.inst.cfg | 2 +- resources/variants/sovol/sovol_base_bowden_0.2.inst.cfg | 2 +- resources/variants/sovol/sovol_base_bowden_0.3.inst.cfg | 2 +- resources/variants/sovol/sovol_base_bowden_0.4.inst.cfg | 2 +- resources/variants/sovol/sovol_base_bowden_0.5.inst.cfg | 2 +- resources/variants/sovol/sovol_base_bowden_0.6.inst.cfg | 2 +- resources/variants/sovol/sovol_base_bowden_0.8.inst.cfg | 2 +- resources/variants/sovol/sovol_base_bowden_1.0.inst.cfg | 2 +- resources/variants/sovol/sovol_base_planetary_0.2.inst.cfg | 2 +- resources/variants/sovol/sovol_base_planetary_0.3.inst.cfg | 2 +- resources/variants/sovol/sovol_base_planetary_0.4.inst.cfg | 2 +- resources/variants/sovol/sovol_base_planetary_0.5.inst.cfg | 2 +- resources/variants/sovol/sovol_base_planetary_0.6.inst.cfg | 2 +- resources/variants/sovol/sovol_base_planetary_0.8.inst.cfg | 2 +- resources/variants/sovol/sovol_base_planetary_1.0.inst.cfg | 2 +- resources/variants/sovol/sovol_base_titan_0.2.inst.cfg | 2 +- resources/variants/sovol/sovol_base_titan_0.3.inst.cfg | 2 +- resources/variants/sovol/sovol_base_titan_0.4.inst.cfg | 2 +- resources/variants/sovol/sovol_base_titan_0.5.inst.cfg | 2 +- resources/variants/sovol/sovol_base_titan_0.6.inst.cfg | 2 +- resources/variants/sovol/sovol_base_titan_0.8.inst.cfg | 2 +- resources/variants/sovol/sovol_base_titan_1.0.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01_0.2.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01_0.3.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01_0.4.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01_0.5.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01_0.6.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01_0.8.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01_1.0.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01pro_0.2.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01pro_0.3.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01pro_0.4.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01pro_0.5.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01pro_0.6.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01pro_0.8.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01pro_1.0.inst.cfg | 2 +- resources/variants/sovol/sovol_sv03_0.2.inst.cfg | 2 +- resources/variants/sovol/sovol_sv03_0.3.inst.cfg | 2 +- resources/variants/sovol/sovol_sv03_0.4.inst.cfg | 2 +- resources/variants/sovol/sovol_sv03_0.5.inst.cfg | 2 +- resources/variants/sovol/sovol_sv03_0.6.inst.cfg | 2 +- resources/variants/sovol/sovol_sv03_0.8.inst.cfg | 2 +- resources/variants/sovol/sovol_sv03_1.0.inst.cfg | 2 +- resources/variants/sovol/sovol_sv05_0.2.inst.cfg | 2 +- resources/variants/sovol/sovol_sv05_0.3.inst.cfg | 2 +- resources/variants/sovol/sovol_sv05_0.4.inst.cfg | 2 +- resources/variants/sovol/sovol_sv05_0.5.inst.cfg | 2 +- resources/variants/sovol/sovol_sv05_0.6.inst.cfg | 2 +- resources/variants/sovol/sovol_sv05_0.8.inst.cfg | 2 +- resources/variants/sovol/sovol_sv05_1.0.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_0.2.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_0.3.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_0.4.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_0.5.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_0.6.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_0.8.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_1.0.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_plus_0.2.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_plus_0.3.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_plus_0.4.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_plus_0.5.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_plus_0.6.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_plus_0.8.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_plus_1.0.inst.cfg | 2 +- .../variants/strateo3d/strateo3d_IDEX420_brass_04.inst.cfg | 2 +- .../variants/strateo3d/strateo3d_IDEX420_brass_06.inst.cfg | 2 +- .../variants/strateo3d/strateo3d_IDEX420_brass_08.inst.cfg | 2 +- .../strateo3d/strateo3d_IDEX420_duplicate_brass_04.inst.cfg | 2 +- .../strateo3d/strateo3d_IDEX420_duplicate_brass_06.inst.cfg | 2 +- .../strateo3d/strateo3d_IDEX420_duplicate_brass_08.inst.cfg | 2 +- .../strateo3d_IDEX420_duplicate_hardened_steel_04.inst.cfg | 2 +- .../strateo3d/strateo3d_IDEX420_hardened_steel_04.inst.cfg | 2 +- .../strateo3d/strateo3d_IDEX420_mirror_brass_04.inst.cfg | 2 +- .../strateo3d/strateo3d_IDEX420_mirror_brass_06.inst.cfg | 2 +- .../strateo3d/strateo3d_IDEX420_mirror_brass_08.inst.cfg | 2 +- .../strateo3d_IDEX420_mirror_hardened_steel_04.inst.cfg | 2 +- resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg | 2 +- resources/variants/strateo3d/strateo3d_standard_04.inst.cfg | 2 +- resources/variants/strateo3d/strateo3d_standard_06.inst.cfg | 2 +- resources/variants/strateo3d/strateo3d_standard_08.inst.cfg | 2 +- resources/variants/strateo3d/strateo3d_standard_10.inst.cfg | 2 +- resources/variants/strateo3d/strateo3d_standard_12.inst.cfg | 2 +- .../structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg | 2 +- .../structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg | 2 +- .../structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg | 2 +- .../structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg | 2 +- .../structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg | 2 +- .../structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg | 2 +- .../structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg | 2 +- resources/variants/tizyx/tizyx_evy_0.2.inst.cfg | 2 +- resources/variants/tizyx/tizyx_evy_0.3.inst.cfg | 2 +- resources/variants/tizyx/tizyx_evy_0.4.inst.cfg | 2 +- resources/variants/tizyx/tizyx_evy_0.5.inst.cfg | 2 +- resources/variants/tizyx/tizyx_evy_0.6.inst.cfg | 2 +- resources/variants/tizyx/tizyx_evy_0.8.inst.cfg | 2 +- resources/variants/tizyx/tizyx_evy_1.0.inst.cfg | 2 +- resources/variants/tizyx/tizyx_evy_dual_classic.inst.cfg | 2 +- resources/variants/tizyx/tizyx_evy_dual_direct_drive.inst.cfg | 2 +- resources/variants/tizyx/tizyx_k25_0.2.inst.cfg | 2 +- resources/variants/tizyx/tizyx_k25_0.3.inst.cfg | 2 +- resources/variants/tizyx/tizyx_k25_0.4.inst.cfg | 2 +- resources/variants/tizyx/tizyx_k25_0.5.inst.cfg | 2 +- resources/variants/tizyx/tizyx_k25_0.6.inst.cfg | 2 +- resources/variants/tizyx/tizyx_k25_0.8.inst.cfg | 2 +- resources/variants/tizyx/tizyx_k25_1.0.inst.cfg | 2 +- resources/variants/tronxy/tronxy_d01_0.2.inst.cfg | 2 +- resources/variants/tronxy/tronxy_d01_0.3.inst.cfg | 2 +- resources/variants/tronxy/tronxy_d01_0.4.inst.cfg | 2 +- resources/variants/tronxy/tronxy_d01_0.5.inst.cfg | 2 +- resources/variants/tronxy/tronxy_d01_0.6.inst.cfg | 2 +- resources/variants/tronxy/tronxy_d01_0.8.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_0.2.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_0.3.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_0.4.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_0.5.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_0.6.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_0.8.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_400_0.2.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_400_0.3.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_400_0.4.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_400_0.5.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_400_0.6.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_400_0.8.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_500_0.2.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_500_0.3.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_500_0.4.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_500_0.5.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_500_0.6.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_500_0.8.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x_0.2.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x_0.3.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x_0.4.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x_0.5.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x_0.6.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x_0.8.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2_0.2.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2_0.3.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2_0.4.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2_0.5.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2_0.6.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2_0.8.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2pro_0.2.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2pro_0.3.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2pro_0.4.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2pro_0.5.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2pro_0.6.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2pro_0.8.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3_0.2.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3_0.3.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3_0.4.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3_0.5.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3_0.6.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3_0.8.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3proV2_0.2.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3proV2_0.3.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3proV2_0.4.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3proV2_0.5.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3proV2_0.6.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3proV2_0.8.inst.cfg | 2 +- resources/variants/two_trees/two_trees_base_0.2.inst.cfg | 2 +- resources/variants/two_trees/two_trees_base_0.3.inst.cfg | 2 +- resources/variants/two_trees/two_trees_base_0.4.inst.cfg | 2 +- resources/variants/two_trees/two_trees_base_0.5.inst.cfg | 2 +- resources/variants/two_trees/two_trees_base_0.6.inst.cfg | 2 +- resources/variants/two_trees/two_trees_base_0.8.inst.cfg | 2 +- resources/variants/two_trees/two_trees_base_1.0.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluer_0.2.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluer_0.3.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluer_0.4.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluer_0.5.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluer_0.6.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluer_0.8.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluer_1.0.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluerplus_0.2.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluerplus_0.3.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluerplus_0.4.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluerplus_0.5.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluerplus_0.6.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluerplus_0.8.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluerplus_1.0.inst.cfg | 2 +- .../variants/two_trees/two_trees_sapphireplus_0.2.inst.cfg | 2 +- .../variants/two_trees/two_trees_sapphireplus_0.3.inst.cfg | 2 +- .../variants/two_trees/two_trees_sapphireplus_0.4.inst.cfg | 2 +- .../variants/two_trees/two_trees_sapphireplus_0.5.inst.cfg | 2 +- .../variants/two_trees/two_trees_sapphireplus_0.6.inst.cfg | 2 +- .../variants/two_trees/two_trees_sapphireplus_0.8.inst.cfg | 2 +- .../variants/two_trees/two_trees_sapphireplus_1.0.inst.cfg | 2 +- resources/variants/two_trees/two_trees_sapphirepro_0.2.inst.cfg | 2 +- resources/variants/two_trees/two_trees_sapphirepro_0.3.inst.cfg | 2 +- resources/variants/two_trees/two_trees_sapphirepro_0.4.inst.cfg | 2 +- resources/variants/two_trees/two_trees_sapphirepro_0.5.inst.cfg | 2 +- resources/variants/two_trees/two_trees_sapphirepro_0.6.inst.cfg | 2 +- resources/variants/two_trees/two_trees_sapphirepro_0.8.inst.cfg | 2 +- resources/variants/two_trees/two_trees_sapphirepro_1.0.inst.cfg | 2 +- resources/variants/ultimaker2_extended_olsson_0.25.inst.cfg | 2 +- resources/variants/ultimaker2_extended_olsson_0.4.inst.cfg | 2 +- resources/variants/ultimaker2_extended_olsson_0.6.inst.cfg | 2 +- resources/variants/ultimaker2_extended_olsson_0.8.inst.cfg | 2 +- resources/variants/ultimaker2_extended_plus_0.25.inst.cfg | 2 +- resources/variants/ultimaker2_extended_plus_0.4.inst.cfg | 2 +- resources/variants/ultimaker2_extended_plus_0.6.inst.cfg | 2 +- resources/variants/ultimaker2_extended_plus_0.8.inst.cfg | 2 +- resources/variants/ultimaker2_olsson_0.25.inst.cfg | 2 +- resources/variants/ultimaker2_olsson_0.4.inst.cfg | 2 +- resources/variants/ultimaker2_olsson_0.6.inst.cfg | 2 +- resources/variants/ultimaker2_olsson_0.8.inst.cfg | 2 +- resources/variants/ultimaker2_plus_0.25.inst.cfg | 2 +- resources/variants/ultimaker2_plus_0.4.inst.cfg | 2 +- resources/variants/ultimaker2_plus_0.6.inst.cfg | 2 +- resources/variants/ultimaker2_plus_0.8.inst.cfg | 2 +- resources/variants/ultimaker2_plus_connect_0.25.inst.cfg | 2 +- resources/variants/ultimaker2_plus_connect_0.4.inst.cfg | 2 +- resources/variants/ultimaker2_plus_connect_0.6.inst.cfg | 2 +- resources/variants/ultimaker2_plus_connect_0.8.inst.cfg | 2 +- resources/variants/ultimaker3_aa0.25.inst.cfg | 2 +- resources/variants/ultimaker3_aa0.8.inst.cfg | 2 +- resources/variants/ultimaker3_aa04.inst.cfg | 2 +- resources/variants/ultimaker3_bb0.8.inst.cfg | 2 +- resources/variants/ultimaker3_bb04.inst.cfg | 2 +- resources/variants/ultimaker3_extended_aa0.25.inst.cfg | 2 +- resources/variants/ultimaker3_extended_aa0.8.inst.cfg | 2 +- resources/variants/ultimaker3_extended_aa04.inst.cfg | 2 +- resources/variants/ultimaker3_extended_bb0.8.inst.cfg | 2 +- resources/variants/ultimaker3_extended_bb04.inst.cfg | 2 +- resources/variants/ultimaker_methodx_1C.inst.cfg | 2 +- resources/variants/ultimaker_methodx_1XA.inst.cfg | 2 +- resources/variants/ultimaker_methodx_2XA.inst.cfg | 2 +- resources/variants/ultimaker_methodx_LABS.inst.cfg | 2 +- resources/variants/ultimaker_methodxl_1C.inst.cfg | 2 +- resources/variants/ultimaker_methodxl_1XA.inst.cfg | 2 +- resources/variants/ultimaker_methodxl_2XA.inst.cfg | 2 +- resources/variants/ultimaker_methodxl_LABS.inst.cfg | 2 +- resources/variants/ultimaker_s3_aa0.25.inst.cfg | 2 +- resources/variants/ultimaker_s3_aa0.8.inst.cfg | 2 +- resources/variants/ultimaker_s3_aa04.inst.cfg | 2 +- resources/variants/ultimaker_s3_bb0.8.inst.cfg | 2 +- resources/variants/ultimaker_s3_bb04.inst.cfg | 2 +- resources/variants/ultimaker_s3_cc04.inst.cfg | 2 +- resources/variants/ultimaker_s3_cc06.inst.cfg | 2 +- resources/variants/ultimaker_s3_dd04.inst.cfg | 2 +- resources/variants/ultimaker_s5_aa0.25.inst.cfg | 2 +- resources/variants/ultimaker_s5_aa0.8.inst.cfg | 2 +- resources/variants/ultimaker_s5_aa04.inst.cfg | 2 +- resources/variants/ultimaker_s5_aluminum.inst.cfg | 2 +- resources/variants/ultimaker_s5_bb0.8.inst.cfg | 2 +- resources/variants/ultimaker_s5_bb04.inst.cfg | 2 +- resources/variants/ultimaker_s5_cc04.inst.cfg | 2 +- resources/variants/ultimaker_s5_cc06.inst.cfg | 2 +- resources/variants/ultimaker_s5_dd04.inst.cfg | 2 +- resources/variants/ultimaker_s5_glass.inst.cfg | 2 +- resources/variants/ultimaker_s7_aa0.25.inst.cfg | 2 +- resources/variants/ultimaker_s7_aa0.8.inst.cfg | 2 +- resources/variants/ultimaker_s7_aa04.inst.cfg | 2 +- resources/variants/ultimaker_s7_bb0.8.inst.cfg | 2 +- resources/variants/ultimaker_s7_bb04.inst.cfg | 2 +- resources/variants/ultimaker_s7_cc04.inst.cfg | 2 +- resources/variants/ultimaker_s7_cc06.inst.cfg | 2 +- resources/variants/ultimaker_s7_dd04.inst.cfg | 2 +- resources/variants/uni/uni_200_0.30.inst.cfg | 2 +- resources/variants/uni/uni_200_0.40.inst.cfg | 2 +- resources/variants/uni/uni_200_0.50.inst.cfg | 2 +- resources/variants/uni/uni_250_0.30.inst.cfg | 2 +- resources/variants/uni/uni_250_0.40.inst.cfg | 2 +- resources/variants/uni/uni_250_0.50.inst.cfg | 2 +- resources/variants/uni/uni_300_0.30.inst.cfg | 2 +- resources/variants/uni/uni_300_0.40.inst.cfg | 2 +- resources/variants/uni/uni_300_0.50.inst.cfg | 2 +- resources/variants/uni/uni_base_0.30.inst.cfg | 2 +- resources/variants/uni/uni_base_0.40.inst.cfg | 2 +- resources/variants/uni/uni_base_0.50.inst.cfg | 2 +- resources/variants/uni/uni_mini_0.30.inst.cfg | 2 +- resources/variants/uni/uni_mini_0.40.inst.cfg | 2 +- resources/variants/uni/uni_mini_0.50.inst.cfg | 2 +- resources/variants/vivedino/vivedino_trex2plus_0.2.inst.cfg | 2 +- resources/variants/vivedino/vivedino_trex2plus_0.4.inst.cfg | 2 +- resources/variants/vivedino/vivedino_trex2plus_0.6.inst.cfg | 2 +- resources/variants/vivedino/vivedino_trex2plus_0.8.inst.cfg | 2 +- resources/variants/vivedino/vivedino_trex3_0.2.inst.cfg | 2 +- resources/variants/vivedino/vivedino_trex3_0.4.inst.cfg | 2 +- resources/variants/vivedino/vivedino_trex3_0.6.inst.cfg | 2 +- resources/variants/vivedino/vivedino_trex3_0.8.inst.cfg | 2 +- resources/variants/voron/voron0_120_v6_0.25.inst.cfg | 2 +- resources/variants/voron/voron0_120_v6_0.30.inst.cfg | 2 +- resources/variants/voron/voron0_120_v6_0.40.inst.cfg | 2 +- resources/variants/voron/voron0_120_v6_0.50.inst.cfg | 2 +- resources/variants/voron/voron0_120_v6_0.60.inst.cfg | 2 +- resources/variants/voron/voron0_120_v6_0.80.inst.cfg | 2 +- resources/variants/voron/voron2_250_v6_0.25.inst.cfg | 2 +- resources/variants/voron/voron2_250_v6_0.30.inst.cfg | 2 +- resources/variants/voron/voron2_250_v6_0.35.inst.cfg | 2 +- resources/variants/voron/voron2_250_v6_0.40.inst.cfg | 2 +- resources/variants/voron/voron2_250_v6_0.50.inst.cfg | 2 +- resources/variants/voron/voron2_250_v6_0.60.inst.cfg | 2 +- resources/variants/voron/voron2_250_v6_0.80.inst.cfg | 2 +- resources/variants/voron/voron2_250_volcano_0.40.inst.cfg | 2 +- resources/variants/voron/voron2_250_volcano_0.60.inst.cfg | 2 +- resources/variants/voron/voron2_250_volcano_0.80.inst.cfg | 2 +- resources/variants/voron/voron2_250_volcano_1.00.inst.cfg | 2 +- resources/variants/voron/voron2_250_volcano_1.20.inst.cfg | 2 +- resources/variants/voron/voron2_300_v6_0.25.inst.cfg | 2 +- resources/variants/voron/voron2_300_v6_0.30.inst.cfg | 2 +- resources/variants/voron/voron2_300_v6_0.35.inst.cfg | 2 +- resources/variants/voron/voron2_300_v6_0.40.inst.cfg | 2 +- resources/variants/voron/voron2_300_v6_0.50.inst.cfg | 2 +- resources/variants/voron/voron2_300_v6_0.60.inst.cfg | 2 +- resources/variants/voron/voron2_300_v6_0.80.inst.cfg | 2 +- resources/variants/voron/voron2_300_volcano_0.40.inst.cfg | 2 +- resources/variants/voron/voron2_300_volcano_0.60.inst.cfg | 2 +- resources/variants/voron/voron2_300_volcano_0.80.inst.cfg | 2 +- resources/variants/voron/voron2_300_volcano_1.00.inst.cfg | 2 +- resources/variants/voron/voron2_300_volcano_1.20.inst.cfg | 2 +- resources/variants/voron/voron2_350_v6_0.25.inst.cfg | 2 +- resources/variants/voron/voron2_350_v6_0.30.inst.cfg | 2 +- resources/variants/voron/voron2_350_v6_0.35.inst.cfg | 2 +- resources/variants/voron/voron2_350_v6_0.40.inst.cfg | 2 +- resources/variants/voron/voron2_350_v6_0.50.inst.cfg | 2 +- resources/variants/voron/voron2_350_v6_0.60.inst.cfg | 2 +- resources/variants/voron/voron2_350_v6_0.80.inst.cfg | 2 +- resources/variants/voron/voron2_350_volcano_0.40.inst.cfg | 2 +- resources/variants/voron/voron2_350_volcano_0.60.inst.cfg | 2 +- resources/variants/voron/voron2_350_volcano_0.80.inst.cfg | 2 +- resources/variants/voron/voron2_350_volcano_1.00.inst.cfg | 2 +- resources/variants/voron/voron2_350_volcano_1.20.inst.cfg | 2 +- resources/variants/voron/voron2_custom_v6_0.25.inst.cfg | 2 +- resources/variants/voron/voron2_custom_v6_0.30.inst.cfg | 2 +- resources/variants/voron/voron2_custom_v6_0.35.inst.cfg | 2 +- resources/variants/voron/voron2_custom_v6_0.40.inst.cfg | 2 +- resources/variants/voron/voron2_custom_v6_0.50.inst.cfg | 2 +- resources/variants/voron/voron2_custom_v6_0.60.inst.cfg | 2 +- resources/variants/voron/voron2_custom_v6_0.80.inst.cfg | 2 +- resources/variants/voron/voron2_custom_volcano_0.40.inst.cfg | 2 +- resources/variants/voron/voron2_custom_volcano_0.60.inst.cfg | 2 +- resources/variants/voron/voron2_custom_volcano_0.80.inst.cfg | 2 +- resources/variants/voron/voron2_custom_volcano_1.00.inst.cfg | 2 +- resources/variants/voron/voron2_custom_volcano_1.20.inst.cfg | 2 +- resources/variants/voron/voron_trident_250_0.25.inst.cfg | 2 +- resources/variants/voron/voron_trident_250_0.40.inst.cfg | 2 +- resources/variants/voron/voron_trident_250_0.50.inst.cfg | 2 +- resources/variants/voron/voron_trident_250_0.60.inst.cfg | 2 +- resources/variants/voron/voron_trident_250_0.80.inst.cfg | 2 +- resources/variants/voron/voron_trident_300_0.25.inst.cfg | 2 +- resources/variants/voron/voron_trident_300_0.40.inst.cfg | 2 +- resources/variants/voron/voron_trident_300_0.50.inst.cfg | 2 +- resources/variants/voron/voron_trident_300_0.60.inst.cfg | 2 +- resources/variants/voron/voron_trident_300_0.80.inst.cfg | 2 +- resources/variants/voron/voron_trident_350_0.25.inst.cfg | 2 +- resources/variants/voron/voron_trident_350_0.40.inst.cfg | 2 +- resources/variants/voron/voron_trident_350_0.50.inst.cfg | 2 +- resources/variants/voron/voron_trident_350_0.60.inst.cfg | 2 +- resources/variants/voron/voron_trident_350_0.80.inst.cfg | 2 +- resources/variants/vzbot/vzbot_235_0.2.inst.cfg | 2 +- resources/variants/vzbot/vzbot_235_0.3.inst.cfg | 2 +- resources/variants/vzbot/vzbot_235_0.4.inst.cfg | 2 +- resources/variants/vzbot/vzbot_235_0.5.inst.cfg | 2 +- resources/variants/vzbot/vzbot_235_0.6.inst.cfg | 2 +- resources/variants/vzbot/vzbot_235_0.8.inst.cfg | 2 +- resources/variants/vzbot/vzbot_235_1.0.inst.cfg | 2 +- resources/variants/vzbot/vzbot_330_0.2.inst.cfg | 2 +- resources/variants/vzbot/vzbot_330_0.3.inst.cfg | 2 +- resources/variants/vzbot/vzbot_330_0.4.inst.cfg | 2 +- resources/variants/vzbot/vzbot_330_0.5.inst.cfg | 2 +- resources/variants/vzbot/vzbot_330_0.6.inst.cfg | 2 +- resources/variants/vzbot/vzbot_330_0.8.inst.cfg | 2 +- resources/variants/vzbot/vzbot_330_1.0.inst.cfg | 2 +- resources/variants/vzbot/vzbot_base_0.2.inst.cfg | 2 +- resources/variants/vzbot/vzbot_base_0.3.inst.cfg | 2 +- resources/variants/vzbot/vzbot_base_0.4.inst.cfg | 2 +- resources/variants/vzbot/vzbot_base_0.5.inst.cfg | 2 +- resources/variants/vzbot/vzbot_base_0.6.inst.cfg | 2 +- resources/variants/vzbot/vzbot_base_0.8.inst.cfg | 2 +- resources/variants/vzbot/vzbot_base_1.0.inst.cfg | 2 +- resources/variants/vzbot/vzbot_custom_0.2.inst.cfg | 2 +- resources/variants/vzbot/vzbot_custom_0.3.inst.cfg | 2 +- resources/variants/vzbot/vzbot_custom_0.4.inst.cfg | 2 +- resources/variants/vzbot/vzbot_custom_0.5.inst.cfg | 2 +- resources/variants/vzbot/vzbot_custom_0.6.inst.cfg | 2 +- resources/variants/vzbot/vzbot_custom_0.8.inst.cfg | 2 +- resources/variants/vzbot/vzbot_custom_1.0.inst.cfg | 2 +- resources/variants/weedo/weedo_x40_weedo_0.4.inst.cfg | 2 +- resources/variants/weedo/weedo_x40_weedo_0.6.inst.cfg | 2 +- resources/variants/weedo/weedo_x40_weedo_0.8.inst.cfg | 2 +- resources/variants/xyz_printing/xyzprinting_base_0.40.inst.cfg | 2 +- .../xyzprinting_da_vinci_1p0_pro_copper_0.40.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xplus_copper_0.40.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xplus_hs_0.40.inst.cfg | 2 +- .../xyz_printing/xyzprinting_da_vinci_jr_w_pro_hs_0.40.inst.cfg | 2 +- .../xyz_printing/xyzprinting_da_vinci_jr_w_pro_ss_0.40.inst.cfg | 2 +- .../xyz_printing/xyzprinting_da_vinci_pro_evo_hs_0.40.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hsht_0.60.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40.inst.cfg | 2 +- .../xyz_printing/xyzprinting_da_vinci_super_hs_0.40.inst.cfg | 2 +- resources/variants/zav/zav_base_0.20.inst.cfg | 2 +- resources/variants/zav/zav_base_0.25.inst.cfg | 2 +- resources/variants/zav/zav_base_0.30.inst.cfg | 2 +- resources/variants/zav/zav_base_0.35.inst.cfg | 2 +- resources/variants/zav/zav_base_0.40.inst.cfg | 2 +- resources/variants/zav/zav_base_0.45.inst.cfg | 2 +- resources/variants/zav/zav_base_0.50.inst.cfg | 2 +- resources/variants/zav/zav_base_0.60.inst.cfg | 2 +- resources/variants/zav/zav_base_0.80.inst.cfg | 2 +- resources/variants/zav/zav_base_1.00.inst.cfg | 2 +- resources/variants/zav/zav_big_0.20.inst.cfg | 2 +- resources/variants/zav/zav_big_0.25.inst.cfg | 2 +- resources/variants/zav/zav_big_0.30.inst.cfg | 2 +- resources/variants/zav/zav_big_0.35.inst.cfg | 2 +- resources/variants/zav/zav_big_0.40.inst.cfg | 2 +- resources/variants/zav/zav_big_0.45.inst.cfg | 2 +- resources/variants/zav/zav_big_0.50.inst.cfg | 2 +- resources/variants/zav/zav_big_0.60.inst.cfg | 2 +- resources/variants/zav/zav_big_0.80.inst.cfg | 2 +- resources/variants/zav/zav_big_1.00.inst.cfg | 2 +- resources/variants/zav/zav_bigplus_0.20.inst.cfg | 2 +- resources/variants/zav/zav_bigplus_0.25.inst.cfg | 2 +- resources/variants/zav/zav_bigplus_0.30.inst.cfg | 2 +- resources/variants/zav/zav_bigplus_0.35.inst.cfg | 2 +- resources/variants/zav/zav_bigplus_0.40.inst.cfg | 2 +- resources/variants/zav/zav_bigplus_0.45.inst.cfg | 2 +- resources/variants/zav/zav_bigplus_0.50.inst.cfg | 2 +- resources/variants/zav/zav_bigplus_0.60.inst.cfg | 2 +- resources/variants/zav/zav_bigplus_0.80.inst.cfg | 2 +- resources/variants/zav/zav_bigplus_1.00.inst.cfg | 2 +- resources/variants/zav/zav_l_0.20.inst.cfg | 2 +- resources/variants/zav/zav_l_0.25.inst.cfg | 2 +- resources/variants/zav/zav_l_0.30.inst.cfg | 2 +- resources/variants/zav/zav_l_0.35.inst.cfg | 2 +- resources/variants/zav/zav_l_0.40.inst.cfg | 2 +- resources/variants/zav/zav_l_0.45.inst.cfg | 2 +- resources/variants/zav/zav_l_0.50.inst.cfg | 2 +- resources/variants/zav/zav_l_0.60.inst.cfg | 2 +- resources/variants/zav/zav_l_0.80.inst.cfg | 2 +- resources/variants/zav/zav_l_1.00.inst.cfg | 2 +- resources/variants/zav/zav_max_0.20.inst.cfg | 2 +- resources/variants/zav/zav_max_0.25.inst.cfg | 2 +- resources/variants/zav/zav_max_0.30.inst.cfg | 2 +- resources/variants/zav/zav_max_0.35.inst.cfg | 2 +- resources/variants/zav/zav_max_0.40.inst.cfg | 2 +- resources/variants/zav/zav_max_0.45.inst.cfg | 2 +- resources/variants/zav/zav_max_0.50.inst.cfg | 2 +- resources/variants/zav/zav_max_0.60.inst.cfg | 2 +- resources/variants/zav/zav_max_0.80.inst.cfg | 2 +- resources/variants/zav/zav_max_1.00.inst.cfg | 2 +- resources/variants/zav/zav_maxpro_0.20.inst.cfg | 2 +- resources/variants/zav/zav_maxpro_0.25.inst.cfg | 2 +- resources/variants/zav/zav_maxpro_0.30.inst.cfg | 2 +- resources/variants/zav/zav_maxpro_0.35.inst.cfg | 2 +- resources/variants/zav/zav_maxpro_0.40.inst.cfg | 2 +- resources/variants/zav/zav_maxpro_0.45.inst.cfg | 2 +- resources/variants/zav/zav_maxpro_0.50.inst.cfg | 2 +- resources/variants/zav/zav_maxpro_0.60.inst.cfg | 2 +- resources/variants/zav/zav_maxpro_0.80.inst.cfg | 2 +- resources/variants/zav/zav_maxpro_1.00.inst.cfg | 2 +- resources/variants/zav/zav_mini_0.20.inst.cfg | 2 +- resources/variants/zav/zav_mini_0.25.inst.cfg | 2 +- resources/variants/zav/zav_mini_0.30.inst.cfg | 2 +- resources/variants/zav/zav_mini_0.35.inst.cfg | 2 +- resources/variants/zav/zav_mini_0.40.inst.cfg | 2 +- resources/variants/zav/zav_mini_0.45.inst.cfg | 2 +- resources/variants/zav/zav_mini_0.50.inst.cfg | 2 +- resources/variants/zav/zav_mini_0.60.inst.cfg | 2 +- resources/variants/zav/zav_mini_0.80.inst.cfg | 2 +- resources/variants/zav/zav_mini_1.00.inst.cfg | 2 +- 7258 files changed, 7258 insertions(+), 7258 deletions(-) diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_B.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_B.inst.cfg index fc0708041a7..d6629aeb1c3 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D010 -setting_version = 23 +setting_version = 22 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_C.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_C.inst.cfg index 4d0e53deeab..9dcbbf4f5f5 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D015 -setting_version = 23 +setting_version = 22 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_D.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_D.inst.cfg index 919e49294e0..4f12d0c6709 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D020 -setting_version = 23 +setting_version = 22 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_D.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_D.inst.cfg index 30e95a48d9d..54a76b81927 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_D.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = D020 -setting_version = 23 +setting_version = 22 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_E.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_E.inst.cfg index b2351a8a806..173d99acbc5 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_E.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = D030 -setting_version = 23 +setting_version = 22 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_B.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_B.inst.cfg index a52ff655802..a5d3f342ea1 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D010 -setting_version = 23 +setting_version = 22 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_C.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_C.inst.cfg index 07d62c2915a..d30d8f67b88 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D015 -setting_version = 23 +setting_version = 22 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_D.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_D.inst.cfg index 4f0fbf74a21..cdce34e01a8 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D020 -setting_version = 23 +setting_version = 22 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_D.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_D.inst.cfg index 39becd3cd07..00363e3dba5 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_D.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = D020 -setting_version = 23 +setting_version = 22 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_E.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_E.inst.cfg index 3c4df2d1118..cf4c937e753 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_E.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = D030 -setting_version = 23 +setting_version = 22 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_B.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_B.inst.cfg index f3eba51e984..9cf8e2a47b1 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D010 -setting_version = 23 +setting_version = 22 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_C.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_C.inst.cfg index 4e3ca827957..a7c6e21278c 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D015 -setting_version = 23 +setting_version = 22 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_D.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_D.inst.cfg index 20dcc02fdf9..c1f4f49b6d9 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D020 -setting_version = 23 +setting_version = 22 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_C.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_C.inst.cfg index c7470b8c258..ac2faaf5898 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_C.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D020 -setting_version = 23 +setting_version = 22 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_D.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_D.inst.cfg index c7470b8c258..ac2faaf5898 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_D.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D020 -setting_version = 23 +setting_version = 22 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_E.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_E.inst.cfg index 130b5d2a278..40cbc081d07 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_E.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D030 -setting_version = 23 +setting_version = 22 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_B.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_B.inst.cfg index 8ced2813965..6b76d5b201b 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D010 -setting_version = 23 +setting_version = 22 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_C.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_C.inst.cfg index 514973ccefd..af6eafd5fd5 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D015 -setting_version = 23 +setting_version = 22 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_D.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_D.inst.cfg index c9366697a80..ae9ae28b768 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D020 -setting_version = 23 +setting_version = 22 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_C.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_C.inst.cfg index a7fef7976d8..a668f692658 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_C.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D015 -setting_version = 23 +setting_version = 22 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_D.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_D.inst.cfg index 56b2e6ff8da..a077cd2ced3 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_D.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D020 -setting_version = 23 +setting_version = 22 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_E.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_E.inst.cfg index 57e8f521da7..fde93818556 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_E.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D030 -setting_version = 23 +setting_version = 22 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg index 382b2e8af36..496c28b43ea 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D010 -setting_version = 23 +setting_version = 22 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg index 5cb4664213a..05a545e4dce 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D015 -setting_version = 23 +setting_version = 22 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg index f1035271b03..b07338020dc 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D020 -setting_version = 23 +setting_version = 22 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_D.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_D.inst.cfg index 2f92c3ccef6..d9271d1082d 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_D.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = D020 -setting_version = 23 +setting_version = 22 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_E.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_E.inst.cfg index ffb00077c7e..0e014c6e044 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_E.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = D030 -setting_version = 23 +setting_version = 22 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg index 4afa610eb1a..94df4366f9c 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D010 -setting_version = 23 +setting_version = 22 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg index bceefcec97a..54bdb53002d 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D015 -setting_version = 23 +setting_version = 22 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg index b3dd716c0f7..c163d8f6300 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D020 -setting_version = 23 +setting_version = 22 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_D.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_D.inst.cfg index 3d95d1b19d7..31f6a9a62d2 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_D.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = D020 -setting_version = 23 +setting_version = 22 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_E.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_E.inst.cfg index e87daed110c..4cc2f49777f 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_E.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = D030 -setting_version = 23 +setting_version = 22 type = intent variant = FBE 0.40mm diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.05mm_visual.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.05mm_visual.inst.cfg index 4df23b911b2..e82884e3fb8 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.05mm_visual.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.05mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = Elegoo_layer_005 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_engineering.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_engineering.inst.cfg index 1a5695f4904..bdbeef66b4b 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_visual.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_visual.inst.cfg index 4bb742ae0e9..9d8758f6050 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_visual.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_engineering.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_engineering.inst.cfg index 349dbc5919f..de7bdc5730d 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_visual.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_visual.inst.cfg index 21241f2bb4d..d89f8510ec3 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_visual.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.2mm_quick.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.2mm_quick.inst.cfg index 578fba233f2..c1fd50eab32 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.2mm_quick.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.3mm_quick.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.3mm_quick.inst.cfg index f00efd13559..9dc2c50697c 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.3mm_quick.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.3mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_pla quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg index 081446828b6..e0e87bffc3d 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = Elegoo_layer_005 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg index 60f6c9965a6..1ad1d4cb795 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg @@ -8,7 +8,7 @@ intent_category = engineering is_experimental = True material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg index 86b1b505f77..df6271085f6 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg index c2bbab0d5db..4a6b207a919 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg @@ -8,7 +8,7 @@ intent_category = engineering is_experimental = True material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg index 48452cc240b..c3c5e329509 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_engineering.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_engineering.inst.cfg index 19f3592c4ae..1e9703215da 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_engineering.inst.cfg @@ -8,7 +8,7 @@ intent_category = engineering is_experimental = True material = generic_pla quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg index 195edc6b3c7..6f36752648f 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_pla quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg index a16e6730727..f56023baef0 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_pla quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_Draft_Print_Quick.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_Draft_Print_Quick.inst.cfg index 8b63f5bc662..402359dd84f 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_Draft_Print_Quick.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_Draft_Print_Quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Print_Accurate.inst.cfg index 6904c4079fa..3f334fdf2d2 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Visual.inst.cfg index d0487bfe7a6..8c8a23e85e9 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_High_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_High_Visual.inst.cfg index 8ebe0c0c46f..9405c8b295a 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_High_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_High_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = high -setting_version = 23 +setting_version = 22 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Quality_Accurate.inst.cfg index 19c41a33881..c23a110e09b 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Visual.inst.cfg index c66d224a1f1..61db2930044 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_CPE_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_CPE_Fast_Print_Accurate.inst.cfg index 02acaefd55d..5c8d8dcab58 100644 --- a/resources/intent/liquid/liquid_vo0.4_CPE_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_CPE_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_CPE_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_CPE_Normal_Quality_Accurate.inst.cfg index 4997ebbad39..7e957a64015 100644 --- a/resources/intent/liquid/liquid_vo0.4_CPE_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_CPE_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_Nylon_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_Nylon_Fast_Print_Accurate.inst.cfg index 5c4b525c156..58b46b6a59a 100644 --- a/resources/intent/liquid/liquid_vo0.4_Nylon_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_Nylon_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_Nylon_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_Nylon_Normal_Quality_Accurate.inst.cfg index a5070b131bf..236f1dee612 100644 --- a/resources/intent/liquid/liquid_vo0.4_Nylon_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_Nylon_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PC_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PC_Fast_Print_Accurate.inst.cfg index 8620632bed5..0b3060b0ac1 100644 --- a/resources/intent/liquid/liquid_vo0.4_PC_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PC_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PC_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PC_Normal_Quality_Accurate.inst.cfg index a8ceaaf218d..13ac4647ff7 100644 --- a/resources/intent/liquid/liquid_vo0.4_PC_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PC_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_Draft_Print_Quick.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_Draft_Print_Quick.inst.cfg index f769152ea4d..6a19492587a 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_Draft_Print_Quick.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_Draft_Print_Quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Print_Accurate.inst.cfg index c26d8e408e1..0aaf41e0be1 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Visual.inst.cfg index 85e6aaec5e5..481634d7ba5 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_High_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_High_Visual.inst.cfg index 9f916946d7e..2e418c390fb 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_High_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_High_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = high -setting_version = 23 +setting_version = 22 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Quality_Accurate.inst.cfg index ed8001b2963..068d775fc4b 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Visual.inst.cfg index 4dc720417a6..9f91179da0b 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_Draft_Print_Quick.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_Draft_Print_Quick.inst.cfg index 9f2b7ab77d6..1773ad01892 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_Draft_Print_Quick.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_Draft_Print_Quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Print_Accurate.inst.cfg index b05a492e397..ee4a315c200 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Visual.inst.cfg index 4bd00759a31..dfe92c80896 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_High_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_High_Visual.inst.cfg index cf65345e342..ead3f9f64d6 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_High_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_High_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Quality_Accurate.inst.cfg index f46cb21d87a..74557539971 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Visual.inst.cfg index ecf1b624c09..b5789fe9e94 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = VO 0.4 diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm_solid.inst.cfg index 697aa8842e9..509347edd4d 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_abscf_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = 1C diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_solid.inst.cfg index 8826f7e7d4b..64433fec7ea 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = 1C diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm_solid.inst.cfg index aa04992d122..23c8807afd0 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm_solid.inst.cfg @@ -8,7 +8,7 @@ intent_category = solid is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = 1C diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg index 364eea5b521..cdff2f30cea 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg @@ -8,7 +8,7 @@ intent_category = solid is_experimental = True material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = 1C diff --git a/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_solid.inst.cfg index c426a994992..a14203b9c4e 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = 1XA diff --git a/resources/intent/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm_solid.inst.cfg index 7d1ead2caf0..3a781b61aa0 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm_solid.inst.cfg @@ -8,7 +8,7 @@ intent_category = solid is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = 1XA diff --git a/resources/intent/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm_solid.inst.cfg index 4c7586d0dd9..a833556bd8b 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm_solid.inst.cfg @@ -8,7 +8,7 @@ intent_category = solid is_experimental = True material = ultimaker_sr30_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = 2XA diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm_solid.inst.cfg index 3d8106d85e1..a7e099e431b 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_abscf_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = LABS diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm_solid.inst.cfg index ec07c4b98a3..80c26ac0b43 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = LABS diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm_solid.inst.cfg index 9020c8fdccd..87823a01a6b 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm_solid.inst.cfg @@ -8,7 +8,7 @@ intent_category = solid is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = LABS diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg index 3a5e5e4491b..bb769198883 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg @@ -8,7 +8,7 @@ intent_category = solid is_experimental = True material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = LABS diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm_solid.inst.cfg index 5714a796b3e..36c71e8fde0 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_abscf_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = 1C diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_solid.inst.cfg index 603a19fa4f2..8a2601d408a 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = 1C diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm_solid.inst.cfg index e5ad1ab92ca..12bc3f27080 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm_solid.inst.cfg @@ -8,7 +8,7 @@ intent_category = solid is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = 1C diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg index 4594c37f50f..55336726361 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg @@ -8,7 +8,7 @@ intent_category = solid is_experimental = True material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = 1C diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_solid.inst.cfg index 470f5547c1c..855cf57e222 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = 1XA diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm_solid.inst.cfg index 5dd7ea0eb8c..82aa8e9bad7 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm_solid.inst.cfg @@ -8,7 +8,7 @@ intent_category = solid is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = 1XA diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm_solid.inst.cfg index 799966741ff..01a55c85a42 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm_solid.inst.cfg @@ -8,7 +8,7 @@ intent_category = solid is_experimental = True material = ultimaker_sr30_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = 2XA diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm_solid.inst.cfg index 21e54ab083f..82735775a60 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_abscf_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = LABS diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm_solid.inst.cfg index f1058ebdebd..87e0495be7f 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = LABS diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm_solid.inst.cfg index 3655b78cf16..ae7100bc86b 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm_solid.inst.cfg @@ -8,7 +8,7 @@ intent_category = solid is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = LABS diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg index 0ae080086d1..af43c95cd2d 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg @@ -8,7 +8,7 @@ intent_category = solid is_experimental = True material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = LABS diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.06mm_visual.inst.cfg index d12071d3a5d..850ab8b2136 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = high -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_engineering.inst.cfg index 4ae011e6925..c1ade2391e2 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_visual.inst.cfg index 8207705b545..95644621ad5 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_engineering.inst.cfg index 546d21fe4be..c9e5804306a 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_visual.inst.cfg index 09e842f5025..57df5208d66 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.2mm_quick.inst.cfg index e73af4a87ed..c50a4c6331c 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg index b190eefc572..4e538290566 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe_plus quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg index 54e2e78789e..9513f56dfe5 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe_plus quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm_engineering.inst.cfg index 6956d40573e..66196a42156 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm_engineering.inst.cfg index 599affff457..295e4681f55 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm_engineering.inst.cfg index e8cee0ef323..5c95a8bb6b2 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm_engineering.inst.cfg index 87bf4f93d2f..0143426335d 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.15mm_engineering.inst.cfg index 7120a9d6b78..5deb69e5abf 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.1mm_engineering.inst.cfg index 83ad4584de7..8c1a60b5b4c 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.15mm_engineering.inst.cfg index b32d9fc1497..50011a31884 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.1mm_engineering.inst.cfg index 9ea1d2b08f9..8e1cbd003b8 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.06mm_visual.inst.cfg index 9304974dc9a..f3cd83f0fbf 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_engineering.inst.cfg index deaf4b77e67..853db370a7b 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_visual.inst.cfg index 07bf6028e95..6f3a0aa8d9b 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_engineering.inst.cfg index 4714e516c74..ed0c770c33f 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_visual.inst.cfg index ff6c3cc6b5c..3aec759ed83 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.2mm_quick.inst.cfg index a521f1f019e..7db781a22ea 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.3mm_quick.inst.cfg index 634efc45e57..f5bcf98ba2f 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.3mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm_visual.inst.cfg index fb349859b04..ce4c717c548 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = high -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_engineering.inst.cfg index a75aa86806e..01d2128f623 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_tough_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_visual.inst.cfg index 4113a9fe8e2..83f9024c20a 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_engineering.inst.cfg index 0be0b9d398f..ead230ea213 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_visual.inst.cfg index faa1084c275..bad763a0aed 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm_quick.inst.cfg index 377b5d122c8..7ce3655a1fa 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm_quick.inst.cfg index 66b03e33b65..e359e6d1ab8 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg index 8fa7230f62d..62e3254f8ba 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = high -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg index 162e979a83f..e06ccbc3c6a 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg index c14e2d0c24d..d0d5bf5c2ec 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg index de545bf35ea..b61495c66ff 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg index 7e4a2be5181..2b113bb10cb 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg index d7a8e069986..e5c66d6b889 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg index 0efe56e0dcf..d51b925c244 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg index e6a3c4c30ff..98840cccdc8 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg index 1155247785a..a3533c805d1 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = verydraft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg index 392be6c5489..6cb091dafbb 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = high -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg index 205b8f4d518..0b2c1c3a96b 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg index f6cbbba69de..a5e918bf823 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg index 09d2f2ba99a..7c1de8fd56b 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg index 6e60a687fab..0cb3fae8f0a 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg index 286a6b0e072..698fa97fc8e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg index 6254e3b68f2..fddbf1a350f 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg index a8ebd1b54ca..144994eb9b3 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg index 09673e60980..638560ae82a 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = verydraft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg index 7cf830c8331..7bde0a1a84f 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = high -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg index 9454381e88d..031ab34fa2a 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg index 25c24997cda..32fb3da04bb 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg index 77c867c2add..ed573773e15 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg index 170dfd90ea6..b5e414e2a71 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg index 14f9aa110c8..1cd8170e8fd 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg index 08899429199..3810165c12e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg index 5d1ef78b715..8f242b8bf30 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg index 6371e933dc2..c301cb76b8e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = verydraft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg index ac5904d91fa..f1a72ac90bb 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = high -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg index bb457acb89c..f5f5a33ca7e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg index 2d6592179a1..7b0e9ff88bb 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg index 7b66700a7d6..61916c3da7e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg index 2e254c0db05..75345728fb1 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg index 24c1c424b83..2c2efb74acb 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg index b1abec13648..cea390491da 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg index 06957baa1f5..d206bcffb91 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg index 61b67043135..85bc2ebf772 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg index c1db44dcc4b..60413405bb0 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg index 1d6c709517c..8557038cdf8 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg index 6c58b08d101..8480dd96fee 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg index 6552e6e66aa..b6175f198a2 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = verydraft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg index 9ed04a21418..3058369081a 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = superdraft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg index b961efe0eb9..5db19be11f3 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg index 1f65b1be8a9..0d34733f077 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg index 9253f808f9d..354e2e980ac 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg index 339f02e070e..6dc6a308567 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = verydraft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg index f1aa58b68ed..13f9d21fac7 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = superdraft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg index 1a94de81f89..5361dfeb62f 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg index 7769b3ed665..1a8f8c0d0f6 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg index 7d18b5d3bfc..f7e5233aa38 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg index 1e55929f44c..b4b346a730d 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = verydraft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg index 531ffab0637..b98d27da01e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = superdraft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg index 5d470eabcab..c4cad5993d0 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg index 010abc23542..83f9d417b3c 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg index a01998fc4dc..3bb47b25d7a 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg index f8d86eb50a5..1ffe95220bf 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg index 365fea42ab5..11c28e9be1e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = superdraft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg index c07b72ee47c..0c1e598e6c6 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_engineering.inst.cfg index a2135797939..2edf56f19b6 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg index e19ed4a7b12..7961bb5ca08 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_engineering.inst.cfg index 3ee351e6d83..7204c13c5e0 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg index 05c22d33237..90401c220cb 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_engineering.inst.cfg index 51a584d0383..f8a4feb35e7 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg index 3c2efc99eb8..3b05f8fd309 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_engineering.inst.cfg index f7c9f266176..4ff1aa7403f 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.06mm_visual.inst.cfg index 1088ed3384c..01af38e7103 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = high -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_engineering.inst.cfg index e4195e37a31..015f9de7413 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_visual.inst.cfg index 67d74786ea3..767644af8fb 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_engineering.inst.cfg index f3da8e539cd..8912a439f50 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_visual.inst.cfg index 41062bcddf4..9fbe2d656b9 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.2mm_quick.inst.cfg index e69b9dd0302..a06a8056844 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg index e5a59502a58..6310212dadc 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe_plus quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg index 78b888abb0e..4737b633fcc 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe_plus quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm_engineering.inst.cfg index 682bfe2f97a..7225bab9367 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm_engineering.inst.cfg index ab8338bc9e4..eefe6379548 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm_engineering.inst.cfg index 825220e353a..63207f8f14b 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm_engineering.inst.cfg index 727fdc935be..d20118ef97a 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.15mm_engineering.inst.cfg index 2f21d6eff95..296959f646d 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.1mm_engineering.inst.cfg index 6c29211dc04..13369f1eab7 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.15mm_engineering.inst.cfg index 5bd7bea421e..b952bc3f2b0 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.1mm_engineering.inst.cfg index 64e81fbf1dc..c8a9e7ec654 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.06mm_visual.inst.cfg index f0b22300885..5fdb90d5e5b 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_engineering.inst.cfg index e32dbabeb68..9bb289a3b1f 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_visual.inst.cfg index 50d90a00eb2..6fa63725c57 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_engineering.inst.cfg index a3197dd697f..ad06050ef12 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_visual.inst.cfg index 23eb85c3358..e2b41d7445b 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.2mm_quick.inst.cfg index 2352570231a..3428f1fddaa 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.3mm_quick.inst.cfg index 571a3aa68f5..899fa76b615 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.3mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm_visual.inst.cfg index 18bdf427580..ce5961883a1 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = high -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_engineering.inst.cfg index a7cbafcc0e8..d71cea9bdca 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_tough_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_visual.inst.cfg index d4562bf3a2c..31aaa88fc1f 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_engineering.inst.cfg index af9c92d891a..84c80685634 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_visual.inst.cfg index 99ff066ecc1..c9455300ecd 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm_quick.inst.cfg index 9ea2f46ec11..b657f45d71a 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm_quick.inst.cfg index fc200dd76c8..f4e1bab7629 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg index dc4a8e87341..7b919a96f53 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = high -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg index e74ed67f23b..908186790eb 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg index e20abaae698..6f90ea70acd 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg index 17a78ae0f42..43edfa3548d 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg index 1738a2a7d4c..62a6fb4fdff 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg index 20d5b34c303..c8ead2040c9 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg index 663980f2e9c..c77fa51e12e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg index 75aab7d69f8..a0d9fb34e50 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg index db1684399e6..eab329b62b8 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = verydraft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg index 6613e5fa4ba..de4a5cf6d2a 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = high -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg index e03d98bbd8e..b0057d80ed2 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg index cbb246eda0c..142c9960d14 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg index 056ecd41770..a251a24a6e7 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg index 2bd5ad82d57..f918839805a 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg index ac93bc17d5d..da575d938f9 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg index a6d971eb51b..c4b84e20533 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg index a2f07990b8f..b12ea3e1e6f 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg index be73a3ad1b9..f7a0557a60f 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = verydraft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg index 9764374cd2d..464c17a4308 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = high -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg index 9f15ad8ed6e..446f68db01e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg index 4736d18dae1..cd8490c5045 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg index 7b2b42ae0b5..5f6d7ee67b1 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg index 4eb56441b38..2dcc5e18509 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg index ce5666e06a1..248fee213c6 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg index de02366f812..d3c5a2cb0d7 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg index bd2f1f1b9c3..ea2b547829f 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg index 15891975a30..1a3db01b5e7 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = verydraft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg index ef32bc56db1..c0c3ccc3836 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = high -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg index 6ef21ed75f4..dd54779d5da 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg index 34b0afb5b18..ac3173d5c21 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg index 0f4db503b24..411d22b0abc 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg index 70f539cfe89..9a3c677fe91 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg index eedc26a9475..aea6b01bff2 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg index 3831ec4895e..14195283728 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg index 9f4de00ec60..4a1ab82c04e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg index 0eef7bf1eda..f066438a257 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg index ded0f97db31..8281aefcf04 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg index 78813503468..15804a08211 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg index 10e967fc412..0c5210e5b23 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg index f6defe9a0c5..4c1898658bb 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = verydraft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg index cf05092f62f..f69ca749155 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = superdraft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg index 83c84bf1624..ed5a152040b 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg index 5990c5cb2b7..d723ee511fb 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg index 01fa9a6e911..8959431e83e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg index 5584c5e00a6..623ae45d75c 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = verydraft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg index eba95b253b8..994f21610e0 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = superdraft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg index 56887755724..9e15b423a21 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg index efbe56dee75..c0bdc89f87a 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg index 95716c5d9f0..a3dce2468cc 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg index c32dce45b5e..3d04b22ffab 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = verydraft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg index 8f24be0b25e..8976d8902c9 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = superdraft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg index cc382d57f53..bf180f24e3b 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg index b2708141539..e53ae6a7dc9 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg index ddb8021eba5..9471e497141 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg index c844739f285..912a50d05ce 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg index 1e60bc88066..c6e45c7f896 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = superdraft -setting_version = 23 +setting_version = 22 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg index f4a6913edcd..e3da6ecedbb 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_engineering.inst.cfg index ba99c577498..502547c056b 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg index e6b4075cd83..5141dba9475 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_engineering.inst.cfg index 10127fb3fc1..796c2b39c2c 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg index 48b90a7c692..6ce13e175fe 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_engineering.inst.cfg index 877143419b5..99778037cb7 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 22 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg index ad94617c151..ceea80d7fd6 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_engineering.inst.cfg index 6bc6a2725e2..ec3ae4c8ac9 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 22 type = intent variant = CC 0.6 diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index d22f44e19e9..2f4ea429a75 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = q010 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index d7e03a5348b..59e028f9d9d 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = q015 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index e663e68a4c5..8de69b4d8d4 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = q015 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index 0d854c132e7..4dd79af2b2e 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = q020 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_quick.inst.cfg index a297d027997..ea85344a436 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = q020 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index 047208076f1..8d85083a2b0 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = q020 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.25_quick.inst.cfg index 9c58a24882d..7dad65fadc9 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = q025 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.30_quick.inst.cfg index f008edb43da..3d3ea1858a2 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = q030 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index 658b6ac44bb..d132622930c 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = q010 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index 19c36c46e83..fdb0f4c4437 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = q015 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index 44284f4642d..266774c67fb 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = q015 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index 6d208856f29..d8544e80aee 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = q020 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_quick.inst.cfg index f967de3d145..4883a59ca8b 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = q020 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index c838f0874d6..45c5f8efb79 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = q020 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.25_quick.inst.cfg index fc18580ee5a..1766ed7762d 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = q025 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.30_quick.inst.cfg index bd7f577015c..e3effc7247a 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = q030 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index a93308863b5..4b26c6f8d28 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = q010 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index 65253671d69..03ead6e755f 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = q015 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index 8ceb763be83..4ec6a43fc3a 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = q015 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index d73f209556a..380b25ec39a 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = q020 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_quick.inst.cfg index c3e9e2aba35..de4a124a632 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = q020 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index d885c8a731a..9406777b94b 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = q020 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.25_quick.inst.cfg index 9a7d9be4886..295313baf9e 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = q025 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.30_quick.inst.cfg index 0165ae7ad85..bf3880d4a5d 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = q030 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index 162e4441a38..1b5440da224 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index 07719831a39..7eedd16f1d7 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index 93e329110e5..b3249837d45 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index a3f1130928a..133b2403b09 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_quick.inst.cfg index 18f7ee286ca..7fd74b45e0b 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index 1c1c9aa789b..1c36175ac57 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.25_quick.inst.cfg index a853d12a340..d683c6f889c 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.30_quick.inst.cfg index 9414a124470..590790f820d 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index 3b8ddec8101..1bcc1d1ef3e 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index 14100af127b..7e8356dab71 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index 54aec6ef6fd..09326033b72 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index ce797bd5a32..8ddf724274a 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_quick.inst.cfg index 8429f26ad55..11a5cf6bf4f 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index 8db18e54458..576892e25f8 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.25_quick.inst.cfg index 5b83e0f77bd..e9ecec5b4b8 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.30_quick.inst.cfg index 1ca0f4c2a7e..de644ce01be 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index 33d6a1c897c..ca21b4caba5 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index 8de74ecd6c5..34edf422d1d 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index 411b4d5b397..1113fd75a7a 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index 2bc167470c0..277d0a16497 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_quick.inst.cfg index 3eea60ab406..7f7e8ca1577 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index ae86f86f119..63e2723f410 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.25_quick.inst.cfg index 4fed70ca47d..c64f4660dd2 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.30_quick.inst.cfg index 3261669acd8..eedf055bb8d 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 22 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/Leapfrog_Bolt_Pro/Leapfrog_Bolt_Pro_global_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/Leapfrog_Bolt_Pro_global_standard.inst.cfg index b81f16ec61d..0f079c315fc 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/Leapfrog_Bolt_Pro_global_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/Leapfrog_Bolt_Pro_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg index d0c72198572..59fec06a3ef 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_abs_natural quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = Brass 0.4 weight = 0 diff --git a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg index 1e9a2e43f5c..549c24a6c6b 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_abs_natural quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = NozzleX 0.4 weight = 0 diff --git a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg index a6640512a3f..145cd34ead9 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_epla_natural quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = Brass 0.4 weight = 0 diff --git a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg index 5be2675226f..e6e2cb78a00 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_epla_natural quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = NozzleX 0.4 weight = 0 diff --git a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg index cf8577fdd91..56587fe8838 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_pva_natural quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = Brass 0.4 weight = 0 diff --git a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg index ef2a78edca2..10353f61103 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_pva_natural quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = NozzleX 0.4 weight = 0 diff --git a/resources/quality/abax_pri3/apri3_pla_fast.inst.cfg b/resources/quality/abax_pri3/apri3_pla_fast.inst.cfg index 9acf14f5931..910acc73e55 100644 --- a/resources/quality/abax_pri3/apri3_pla_fast.inst.cfg +++ b/resources/quality/abax_pri3/apri3_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/abax_pri3/apri3_pla_high.inst.cfg b/resources/quality/abax_pri3/apri3_pla_high.inst.cfg index f293b9f43a5..aea37fb13f2 100644 --- a/resources/quality/abax_pri3/apri3_pla_high.inst.cfg +++ b/resources/quality/abax_pri3/apri3_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/abax_pri3/apri3_pla_normal.inst.cfg b/resources/quality/abax_pri3/apri3_pla_normal.inst.cfg index 3af1a557a50..8f5ac4aa338 100644 --- a/resources/quality/abax_pri3/apri3_pla_normal.inst.cfg +++ b/resources/quality/abax_pri3/apri3_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/abax_pri5/apri5_pla_fast.inst.cfg b/resources/quality/abax_pri5/apri5_pla_fast.inst.cfg index 8264717b80c..032d1b817e1 100644 --- a/resources/quality/abax_pri5/apri5_pla_fast.inst.cfg +++ b/resources/quality/abax_pri5/apri5_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/abax_pri5/apri5_pla_high.inst.cfg b/resources/quality/abax_pri5/apri5_pla_high.inst.cfg index d210d49036f..6380dc18ef9 100644 --- a/resources/quality/abax_pri5/apri5_pla_high.inst.cfg +++ b/resources/quality/abax_pri5/apri5_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/abax_pri5/apri5_pla_normal.inst.cfg b/resources/quality/abax_pri5/apri5_pla_normal.inst.cfg index e1ce9538fb9..c3576521570 100644 --- a/resources/quality/abax_pri5/apri5_pla_normal.inst.cfg +++ b/resources/quality/abax_pri5/apri5_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/abax_titan/atitan_pla_fast.inst.cfg b/resources/quality/abax_titan/atitan_pla_fast.inst.cfg index 09cebca9c2e..c235e36996a 100644 --- a/resources/quality/abax_titan/atitan_pla_fast.inst.cfg +++ b/resources/quality/abax_titan/atitan_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/abax_titan/atitan_pla_high.inst.cfg b/resources/quality/abax_titan/atitan_pla_high.inst.cfg index af299953630..b3b5295366a 100644 --- a/resources/quality/abax_titan/atitan_pla_high.inst.cfg +++ b/resources/quality/abax_titan/atitan_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/abax_titan/atitan_pla_normal.inst.cfg b/resources/quality/abax_titan/atitan_pla_normal.inst.cfg index 2bc6d4ef85c..aab42f4f4c5 100644 --- a/resources/quality/abax_titan/atitan_pla_normal.inst.cfg +++ b/resources/quality/abax_titan/atitan_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/ankermake_m5/ankermake_m5_draft.inst.cfg b/resources/quality/ankermake_m5/ankermake_m5_draft.inst.cfg index 653fe519851..0570c1cd400 100644 --- a/resources/quality/ankermake_m5/ankermake_m5_draft.inst.cfg +++ b/resources/quality/ankermake_m5/ankermake_m5_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/ankermake_m5/ankermake_m5_fine.inst.cfg b/resources/quality/ankermake_m5/ankermake_m5_fine.inst.cfg index b51b9ab3575..2aac68b60cd 100644 --- a/resources/quality/ankermake_m5/ankermake_m5_fine.inst.cfg +++ b/resources/quality/ankermake_m5/ankermake_m5_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/ankermake_m5/ankermake_m5_normal.inst.cfg b/resources/quality/ankermake_m5/ankermake_m5_normal.inst.cfg index 144d56eca60..5c2193dacf2 100644 --- a/resources/quality/ankermake_m5/ankermake_m5_normal.inst.cfg +++ b/resources/quality/ankermake_m5/ankermake_m5_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_draft.inst.cfg b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_draft.inst.cfg index 10e78081b9d..7100f73522c 100644 --- a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_draft.inst.cfg +++ b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_high.inst.cfg b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_high.inst.cfg index 9e4aee0e440..07acba4e3d6 100644 --- a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_high.inst.cfg +++ b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_normal.inst.cfg b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_normal.inst.cfg index 32d10397bce..53f1785709e 100644 --- a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_normal.inst.cfg +++ b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/anycubic_4max/anycubic_4max_draft.inst.cfg b/resources/quality/anycubic_4max/anycubic_4max_draft.inst.cfg index 1a1b8572bb0..42b5ce116df 100644 --- a/resources/quality/anycubic_4max/anycubic_4max_draft.inst.cfg +++ b/resources/quality/anycubic_4max/anycubic_4max_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/anycubic_4max/anycubic_4max_high.inst.cfg b/resources/quality/anycubic_4max/anycubic_4max_high.inst.cfg index af3b74fc0c0..0565f91e057 100644 --- a/resources/quality/anycubic_4max/anycubic_4max_high.inst.cfg +++ b/resources/quality/anycubic_4max/anycubic_4max_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/anycubic_4max/anycubic_4max_normal.inst.cfg b/resources/quality/anycubic_4max/anycubic_4max_normal.inst.cfg index 18c0acaf011..003f787aac8 100644 --- a/resources/quality/anycubic_4max/anycubic_4max_normal.inst.cfg +++ b/resources/quality/anycubic_4max/anycubic_4max_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_draft.inst.cfg b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_draft.inst.cfg index a100908a537..c1e54314baf 100644 --- a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_draft.inst.cfg +++ b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_high.inst.cfg b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_high.inst.cfg index 41fc5c20aeb..0f0fa7e70da 100644 --- a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_high.inst.cfg +++ b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_normal.inst.cfg b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_normal.inst.cfg index 898c3e131aa..8ae13498b41 100644 --- a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_normal.inst.cfg +++ b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_draft.inst.cfg b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_draft.inst.cfg index be43f63425f..06ff5899b6e 100644 --- a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_draft.inst.cfg +++ b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_high.inst.cfg b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_high.inst.cfg index 9d8b7c99198..20890528ae2 100644 --- a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_high.inst.cfg +++ b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_normal.inst.cfg b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_normal.inst.cfg index b57341f9a25..f09dd654b84 100644 --- a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_normal.inst.cfg +++ b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_draft.inst.cfg b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_draft.inst.cfg index e358bb9e172..44c435f79a8 100644 --- a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_draft.inst.cfg +++ b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_high.inst.cfg b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_high.inst.cfg index 8663045149d..3e35582b03a 100644 --- a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_high.inst.cfg +++ b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_normal.inst.cfg b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_normal.inst.cfg index 8e3d3abc54e..df146144ca5 100644 --- a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_normal.inst.cfg +++ b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg b/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg index c9de15f7925..662e3cc7c43 100644 --- a/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg +++ b/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg b/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg index 1b8db2a1e0d..bcf355d7f46 100644 --- a/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg +++ b/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg b/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg index df989f6adc7..bd8a9bae433 100644 --- a/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg +++ b/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_draft.inst.cfg b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_draft.inst.cfg index 3d372ceef1b..2902ef4f534 100644 --- a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_draft.inst.cfg +++ b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_high.inst.cfg b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_high.inst.cfg index d5d27481a0c..32ea52665ae 100644 --- a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_high.inst.cfg +++ b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_normal.inst.cfg b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_normal.inst.cfg index 73910af2338..320e39eaa29 100644 --- a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_normal.inst.cfg +++ b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_draft.inst.cfg b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_draft.inst.cfg index bb1ba766611..1045f06adc6 100644 --- a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_draft.inst.cfg +++ b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_high.inst.cfg b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_high.inst.cfg index 6806a23c2b8..f400daeb352 100644 --- a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_high.inst.cfg +++ b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_normal.inst.cfg b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_normal.inst.cfg index 4ce99960430..2ac1ab0dc7b 100644 --- a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_normal.inst.cfg +++ b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/anycubic_kobra/anycubic_kobra_abs.inst.cfg b/resources/quality/anycubic_kobra/anycubic_kobra_abs.inst.cfg index 824d4e6fa54..52a0365291d 100644 --- a/resources/quality/anycubic_kobra/anycubic_kobra_abs.inst.cfg +++ b/resources/quality/anycubic_kobra/anycubic_kobra_abs.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = abs -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/anycubic_kobra/anycubic_kobra_pla.inst.cfg b/resources/quality/anycubic_kobra/anycubic_kobra_pla.inst.cfg index 6a0462b35bb..a0222dcf7fa 100644 --- a/resources/quality/anycubic_kobra/anycubic_kobra_pla.inst.cfg +++ b/resources/quality/anycubic_kobra/anycubic_kobra_pla.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = pla -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/anycubic_kobra/anycubic_kobra_tpu.inst.cfg b/resources/quality/anycubic_kobra/anycubic_kobra_tpu.inst.cfg index 4be68e74e51..e6a92a2f571 100644 --- a/resources/quality/anycubic_kobra/anycubic_kobra_tpu.inst.cfg +++ b/resources/quality/anycubic_kobra/anycubic_kobra_tpu.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = tpu -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_abs.inst.cfg b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_abs.inst.cfg index 0b9632a9c97..da09c0d2c26 100644 --- a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_abs.inst.cfg +++ b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_abs.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_abs quality_type = abs -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_pla.inst.cfg b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_pla.inst.cfg index 2d91d4c5840..01869b9db50 100644 --- a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_pla.inst.cfg +++ b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_pla.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = pla -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_tpu.inst.cfg b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_tpu.inst.cfg index 93bfca84fef..971664b1238 100644 --- a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_tpu.inst.cfg +++ b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_tpu.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_tpu quality_type = tpu -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/anycubic_kobra_max/anycubic_kobra_max_pla.inst.cfg b/resources/quality/anycubic_kobra_max/anycubic_kobra_max_pla.inst.cfg index e04940df10e..34f0ef1268c 100644 --- a/resources/quality/anycubic_kobra_max/anycubic_kobra_max_pla.inst.cfg +++ b/resources/quality/anycubic_kobra_max/anycubic_kobra_max_pla.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = pla -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/anycubic_kobra_max/anycubic_kobra_max_tpu.inst.cfg b/resources/quality/anycubic_kobra_max/anycubic_kobra_max_tpu.inst.cfg index ce518fc4e11..36788383bbb 100644 --- a/resources/quality/anycubic_kobra_max/anycubic_kobra_max_tpu.inst.cfg +++ b/resources/quality/anycubic_kobra_max/anycubic_kobra_max_tpu.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = tpu -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/anycubic_kobra_plus/anycubic_kobra_plus_normal.inst.cfg b/resources/quality/anycubic_kobra_plus/anycubic_kobra_plus_normal.inst.cfg index 7ac90930a98..47983fe3b13 100644 --- a/resources/quality/anycubic_kobra_plus/anycubic_kobra_plus_normal.inst.cfg +++ b/resources/quality/anycubic_kobra_plus/anycubic_kobra_plus_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_draft.inst.cfg b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_draft.inst.cfg index ffdbb120386..6579e5f77b3 100644 --- a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_draft.inst.cfg +++ b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_high.inst.cfg b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_high.inst.cfg index 69ea4437368..01b6fa8039c 100644 --- a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_high.inst.cfg +++ b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_normal.inst.cfg b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_normal.inst.cfg index 23467c9bc3d..16ec95bd61b 100644 --- a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_normal.inst.cfg +++ b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/anycubic_predator/predator_coarse.inst.cfg b/resources/quality/anycubic_predator/predator_coarse.inst.cfg index cecac7c4176..d0b25f3d86d 100644 --- a/resources/quality/anycubic_predator/predator_coarse.inst.cfg +++ b/resources/quality/anycubic_predator/predator_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/anycubic_predator/predator_draft.inst.cfg b/resources/quality/anycubic_predator/predator_draft.inst.cfg index b675f04ca41..6817b49bf9f 100644 --- a/resources/quality/anycubic_predator/predator_draft.inst.cfg +++ b/resources/quality/anycubic_predator/predator_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/anycubic_predator/predator_extra_coarse.inst.cfg b/resources/quality/anycubic_predator/predator_extra_coarse.inst.cfg index 21b398c1bbc..48c388b8455 100644 --- a/resources/quality/anycubic_predator/predator_extra_coarse.inst.cfg +++ b/resources/quality/anycubic_predator/predator_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Xcoarse -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/anycubic_predator/predator_extra_fine.inst.cfg b/resources/quality/anycubic_predator/predator_extra_fine.inst.cfg index 0b4735578c3..3d162850831 100644 --- a/resources/quality/anycubic_predator/predator_extra_fine.inst.cfg +++ b/resources/quality/anycubic_predator/predator_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Xfine -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/anycubic_predator/predator_fine.inst.cfg b/resources/quality/anycubic_predator/predator_fine.inst.cfg index 0d3015814d1..704ddbecc53 100644 --- a/resources/quality/anycubic_predator/predator_fine.inst.cfg +++ b/resources/quality/anycubic_predator/predator_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/anycubic_predator/predator_normal.inst.cfg b/resources/quality/anycubic_predator/predator_normal.inst.cfg index a684d4d35b9..d2f46d49fb3 100644 --- a/resources/quality/anycubic_predator/predator_normal.inst.cfg +++ b/resources/quality/anycubic_predator/predator_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/artillery/ABS/artillery_0.2_ABS_super.inst.cfg b/resources/quality/artillery/ABS/artillery_0.2_ABS_super.inst.cfg index 11acec995db..2494ab41c8d 100644 --- a/resources/quality/artillery/ABS/artillery_0.2_ABS_super.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.2_ABS_ultra.inst.cfg b/resources/quality/artillery/ABS/artillery_0.2_ABS_ultra.inst.cfg index c7666a95ec4..18471cfe93f 100644 --- a/resources/quality/artillery/ABS/artillery_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.3_ABS_adaptive.inst.cfg b/resources/quality/artillery/ABS/artillery_0.3_ABS_adaptive.inst.cfg index a3f3a42ca61..b72fd9065df 100644 --- a/resources/quality/artillery/ABS/artillery_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.3_ABS_low.inst.cfg b/resources/quality/artillery/ABS/artillery_0.3_ABS_low.inst.cfg index 5128f6fe3f7..467cc928c8d 100644 --- a/resources/quality/artillery/ABS/artillery_0.3_ABS_low.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.3_ABS_standard.inst.cfg b/resources/quality/artillery/ABS/artillery_0.3_ABS_standard.inst.cfg index f1931b93e99..ef8c7f8be94 100644 --- a/resources/quality/artillery/ABS/artillery_0.3_ABS_standard.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.3_ABS_super.inst.cfg b/resources/quality/artillery/ABS/artillery_0.3_ABS_super.inst.cfg index 2fb224f03ad..81b2e8dce0e 100644 --- a/resources/quality/artillery/ABS/artillery_0.3_ABS_super.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.4_ABS_adaptive.inst.cfg b/resources/quality/artillery/ABS/artillery_0.4_ABS_adaptive.inst.cfg index 117f78ff384..58cb101bd12 100644 --- a/resources/quality/artillery/ABS/artillery_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.4_ABS_low.inst.cfg b/resources/quality/artillery/ABS/artillery_0.4_ABS_low.inst.cfg index add5e339d49..8ac08cff99f 100644 --- a/resources/quality/artillery/ABS/artillery_0.4_ABS_low.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.4_ABS_standard.inst.cfg b/resources/quality/artillery/ABS/artillery_0.4_ABS_standard.inst.cfg index 0eb908acf63..79131e8e274 100644 --- a/resources/quality/artillery/ABS/artillery_0.4_ABS_standard.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.4_ABS_super.inst.cfg b/resources/quality/artillery/ABS/artillery_0.4_ABS_super.inst.cfg index 25983e79c28..ff27e50cae3 100644 --- a/resources/quality/artillery/ABS/artillery_0.4_ABS_super.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.5_ABS_adaptive.inst.cfg b/resources/quality/artillery/ABS/artillery_0.5_ABS_adaptive.inst.cfg index 6980b4c848f..30baac9a32f 100644 --- a/resources/quality/artillery/ABS/artillery_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.5_ABS_low.inst.cfg b/resources/quality/artillery/ABS/artillery_0.5_ABS_low.inst.cfg index 549506a69ad..1a96e7a128f 100644 --- a/resources/quality/artillery/ABS/artillery_0.5_ABS_low.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.5_ABS_standard.inst.cfg b/resources/quality/artillery/ABS/artillery_0.5_ABS_standard.inst.cfg index d6136c9f177..7a83721c7a9 100644 --- a/resources/quality/artillery/ABS/artillery_0.5_ABS_standard.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.5_ABS_super.inst.cfg b/resources/quality/artillery/ABS/artillery_0.5_ABS_super.inst.cfg index 258a45ba893..18323af856e 100644 --- a/resources/quality/artillery/ABS/artillery_0.5_ABS_super.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.6_ABS_standard.inst.cfg b/resources/quality/artillery/ABS/artillery_0.6_ABS_standard.inst.cfg index 1c556e55640..a83f31e6ea7 100644 --- a/resources/quality/artillery/ABS/artillery_0.6_ABS_standard.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.8_ABS_draft.inst.cfg b/resources/quality/artillery/ABS/artillery_0.8_ABS_draft.inst.cfg index bad27f445d5..04b5256bd0f 100644 --- a/resources/quality/artillery/ABS/artillery_0.8_ABS_draft.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_1.0_ABS_draft.inst.cfg b/resources/quality/artillery/ABS/artillery_1.0_ABS_draft.inst.cfg index 7fd0913c5ef..c1ff99aa05d 100644 --- a/resources/quality/artillery/ABS/artillery_1.0_ABS_draft.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.2_PETG_super.inst.cfg b/resources/quality/artillery/PETG/artillery_0.2_PETG_super.inst.cfg index c27c00e6d93..2c9681732da 100644 --- a/resources/quality/artillery/PETG/artillery_0.2_PETG_super.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.2_PETG_ultra.inst.cfg b/resources/quality/artillery/PETG/artillery_0.2_PETG_ultra.inst.cfg index 84099e707d0..0d2b8f11eb6 100644 --- a/resources/quality/artillery/PETG/artillery_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.3_PETG_adaptive.inst.cfg b/resources/quality/artillery/PETG/artillery_0.3_PETG_adaptive.inst.cfg index d8ab5b47088..e97603e9714 100644 --- a/resources/quality/artillery/PETG/artillery_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.3_PETG_low.inst.cfg b/resources/quality/artillery/PETG/artillery_0.3_PETG_low.inst.cfg index 859d7010b19..af3c4ee0402 100644 --- a/resources/quality/artillery/PETG/artillery_0.3_PETG_low.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.3_PETG_standard.inst.cfg b/resources/quality/artillery/PETG/artillery_0.3_PETG_standard.inst.cfg index 121e957c300..c30f59b5ebb 100644 --- a/resources/quality/artillery/PETG/artillery_0.3_PETG_standard.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.3_PETG_super.inst.cfg b/resources/quality/artillery/PETG/artillery_0.3_PETG_super.inst.cfg index 92551aa821c..7a5eff86ffe 100644 --- a/resources/quality/artillery/PETG/artillery_0.3_PETG_super.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.4_PETG_adaptive.inst.cfg b/resources/quality/artillery/PETG/artillery_0.4_PETG_adaptive.inst.cfg index 776636a8fd1..d654b8faade 100644 --- a/resources/quality/artillery/PETG/artillery_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.4_PETG_low.inst.cfg b/resources/quality/artillery/PETG/artillery_0.4_PETG_low.inst.cfg index daceab0a294..0baa04e044d 100644 --- a/resources/quality/artillery/PETG/artillery_0.4_PETG_low.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.4_PETG_standard.inst.cfg b/resources/quality/artillery/PETG/artillery_0.4_PETG_standard.inst.cfg index 50314b8361b..3d9c96953e0 100644 --- a/resources/quality/artillery/PETG/artillery_0.4_PETG_standard.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.4_PETG_super.inst.cfg b/resources/quality/artillery/PETG/artillery_0.4_PETG_super.inst.cfg index 2f4b5206de6..81fa019be81 100644 --- a/resources/quality/artillery/PETG/artillery_0.4_PETG_super.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.5_PETG_adaptive.inst.cfg b/resources/quality/artillery/PETG/artillery_0.5_PETG_adaptive.inst.cfg index 207b81227e9..447b328688a 100644 --- a/resources/quality/artillery/PETG/artillery_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.5_PETG_low.inst.cfg b/resources/quality/artillery/PETG/artillery_0.5_PETG_low.inst.cfg index 24cf0d5390d..70a4decabf2 100644 --- a/resources/quality/artillery/PETG/artillery_0.5_PETG_low.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.5_PETG_standard.inst.cfg b/resources/quality/artillery/PETG/artillery_0.5_PETG_standard.inst.cfg index 8b6b8a05993..f738879edaf 100644 --- a/resources/quality/artillery/PETG/artillery_0.5_PETG_standard.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.5_PETG_super.inst.cfg b/resources/quality/artillery/PETG/artillery_0.5_PETG_super.inst.cfg index 48a329febc5..0fa123d7b39 100644 --- a/resources/quality/artillery/PETG/artillery_0.5_PETG_super.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.6_PETG_standard.inst.cfg b/resources/quality/artillery/PETG/artillery_0.6_PETG_standard.inst.cfg index d9230a63981..2ea0e2d35d1 100644 --- a/resources/quality/artillery/PETG/artillery_0.6_PETG_standard.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.8_PETG_draft.inst.cfg b/resources/quality/artillery/PETG/artillery_0.8_PETG_draft.inst.cfg index 2f923948922..fcd245f96db 100644 --- a/resources/quality/artillery/PETG/artillery_0.8_PETG_draft.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_1.0_PETG_draft.inst.cfg b/resources/quality/artillery/PETG/artillery_1.0_PETG_draft.inst.cfg index 4c58a5698e9..6cdd2dd4354 100644 --- a/resources/quality/artillery/PETG/artillery_1.0_PETG_draft.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.2_PLA_super.inst.cfg b/resources/quality/artillery/PLA/artillery_0.2_PLA_super.inst.cfg index 8ec277000a2..c63856afd59 100644 --- a/resources/quality/artillery/PLA/artillery_0.2_PLA_super.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.2_PLA_ultra.inst.cfg b/resources/quality/artillery/PLA/artillery_0.2_PLA_ultra.inst.cfg index f020dd2225a..91fb63af226 100644 --- a/resources/quality/artillery/PLA/artillery_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.3_PLA_adaptive.inst.cfg b/resources/quality/artillery/PLA/artillery_0.3_PLA_adaptive.inst.cfg index a8ead0ef611..a7f8e38f123 100644 --- a/resources/quality/artillery/PLA/artillery_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.3_PLA_low.inst.cfg b/resources/quality/artillery/PLA/artillery_0.3_PLA_low.inst.cfg index 201cc59e1df..6bf0e70f966 100644 --- a/resources/quality/artillery/PLA/artillery_0.3_PLA_low.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.3_PLA_standard.inst.cfg b/resources/quality/artillery/PLA/artillery_0.3_PLA_standard.inst.cfg index 2bb875f22dd..217987265db 100644 --- a/resources/quality/artillery/PLA/artillery_0.3_PLA_standard.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.3_PLA_super.inst.cfg b/resources/quality/artillery/PLA/artillery_0.3_PLA_super.inst.cfg index e6295131e68..312f20eb778 100644 --- a/resources/quality/artillery/PLA/artillery_0.3_PLA_super.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.4_PLA_adaptive.inst.cfg b/resources/quality/artillery/PLA/artillery_0.4_PLA_adaptive.inst.cfg index 71cef9cc68a..7f50db49369 100644 --- a/resources/quality/artillery/PLA/artillery_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.4_PLA_low.inst.cfg b/resources/quality/artillery/PLA/artillery_0.4_PLA_low.inst.cfg index 84905f95d90..e2fc24f53bd 100644 --- a/resources/quality/artillery/PLA/artillery_0.4_PLA_low.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.4_PLA_standard.inst.cfg b/resources/quality/artillery/PLA/artillery_0.4_PLA_standard.inst.cfg index 83c159d91fc..b2f5fefdfe9 100644 --- a/resources/quality/artillery/PLA/artillery_0.4_PLA_standard.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.4_PLA_super.inst.cfg b/resources/quality/artillery/PLA/artillery_0.4_PLA_super.inst.cfg index 118494b3801..842a8833e6f 100644 --- a/resources/quality/artillery/PLA/artillery_0.4_PLA_super.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.5_PLA_adaptive.inst.cfg b/resources/quality/artillery/PLA/artillery_0.5_PLA_adaptive.inst.cfg index e2b8eb9d5c0..946344995b7 100644 --- a/resources/quality/artillery/PLA/artillery_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.5_PLA_low.inst.cfg b/resources/quality/artillery/PLA/artillery_0.5_PLA_low.inst.cfg index ecd83573078..0c1f57dced1 100644 --- a/resources/quality/artillery/PLA/artillery_0.5_PLA_low.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.5_PLA_standard.inst.cfg b/resources/quality/artillery/PLA/artillery_0.5_PLA_standard.inst.cfg index 46487edb08f..19c810fad0b 100644 --- a/resources/quality/artillery/PLA/artillery_0.5_PLA_standard.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.5_PLA_super.inst.cfg b/resources/quality/artillery/PLA/artillery_0.5_PLA_super.inst.cfg index 6d31588cf0d..b04f766a553 100644 --- a/resources/quality/artillery/PLA/artillery_0.5_PLA_super.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.6_PLA_draft.inst.cfg b/resources/quality/artillery/PLA/artillery_0.6_PLA_draft.inst.cfg index ea6dfa3f9e2..7bae27f1438 100644 --- a/resources/quality/artillery/PLA/artillery_0.6_PLA_draft.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.6_PLA_low.inst.cfg b/resources/quality/artillery/PLA/artillery_0.6_PLA_low.inst.cfg index 2b281b57f7e..b03d45d3ad9 100644 --- a/resources/quality/artillery/PLA/artillery_0.6_PLA_low.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.6_PLA_standard.inst.cfg b/resources/quality/artillery/PLA/artillery_0.6_PLA_standard.inst.cfg index d349693711f..32e11e0e66d 100644 --- a/resources/quality/artillery/PLA/artillery_0.6_PLA_standard.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.8_PLA_draft.inst.cfg b/resources/quality/artillery/PLA/artillery_0.8_PLA_draft.inst.cfg index 08a00715be1..504ce9c63ac 100644 --- a/resources/quality/artillery/PLA/artillery_0.8_PLA_draft.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_1.0_PLA_draft.inst.cfg b/resources/quality/artillery/PLA/artillery_1.0_PLA_draft.inst.cfg index bd3c5127104..35bbb0a3b57 100644 --- a/resources/quality/artillery/PLA/artillery_1.0_PLA_draft.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.3_TPU_adaptive.inst.cfg b/resources/quality/artillery/TPU/artillery_0.3_TPU_adaptive.inst.cfg index 964c5c1a829..889d97872a4 100644 --- a/resources/quality/artillery/TPU/artillery_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.3_TPU_standard.inst.cfg b/resources/quality/artillery/TPU/artillery_0.3_TPU_standard.inst.cfg index c8df48da97a..41b43ad93a2 100644 --- a/resources/quality/artillery/TPU/artillery_0.3_TPU_standard.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.3_TPU_super.inst.cfg b/resources/quality/artillery/TPU/artillery_0.3_TPU_super.inst.cfg index c91abe6f606..32ae52bd351 100644 --- a/resources/quality/artillery/TPU/artillery_0.3_TPU_super.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.4_TPU_adaptive.inst.cfg b/resources/quality/artillery/TPU/artillery_0.4_TPU_adaptive.inst.cfg index 4f609193b97..188f0535068 100644 --- a/resources/quality/artillery/TPU/artillery_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.4_TPU_standard.inst.cfg b/resources/quality/artillery/TPU/artillery_0.4_TPU_standard.inst.cfg index 643d3f802ce..e9f095caa4f 100644 --- a/resources/quality/artillery/TPU/artillery_0.4_TPU_standard.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.4_TPU_super.inst.cfg b/resources/quality/artillery/TPU/artillery_0.4_TPU_super.inst.cfg index fd9770ad13e..0d88514cc88 100644 --- a/resources/quality/artillery/TPU/artillery_0.4_TPU_super.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.5_TPU_adaptive.inst.cfg b/resources/quality/artillery/TPU/artillery_0.5_TPU_adaptive.inst.cfg index 7e20a4e4440..a9ea17fa94a 100644 --- a/resources/quality/artillery/TPU/artillery_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.5_TPU_standard.inst.cfg b/resources/quality/artillery/TPU/artillery_0.5_TPU_standard.inst.cfg index b172c720a66..e831ef8c1c5 100644 --- a/resources/quality/artillery/TPU/artillery_0.5_TPU_standard.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.5_TPU_super.inst.cfg b/resources/quality/artillery/TPU/artillery_0.5_TPU_super.inst.cfg index 8488194de36..fcacad6c24b 100644 --- a/resources/quality/artillery/TPU/artillery_0.5_TPU_super.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.6_TPU_standard.inst.cfg b/resources/quality/artillery/TPU/artillery_0.6_TPU_standard.inst.cfg index f19464ad8cf..ae01f298f0f 100644 --- a/resources/quality/artillery/TPU/artillery_0.6_TPU_standard.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.8_TPU_draft.inst.cfg b/resources/quality/artillery/TPU/artillery_0.8_TPU_draft.inst.cfg index f49e7541acd..2ce5883f07f 100644 --- a/resources/quality/artillery/TPU/artillery_0.8_TPU_draft.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_1.0_TPU_draft.inst.cfg b/resources/quality/artillery/TPU/artillery_1.0_TPU_draft.inst.cfg index 7d21369ee53..98be4f17761 100644 --- a/resources/quality/artillery/TPU/artillery_1.0_TPU_draft.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/artillery/artillery_global_adaptive.inst.cfg b/resources/quality/artillery/artillery_global_adaptive.inst.cfg index c38437a2b05..4b9222e74ed 100644 --- a/resources/quality/artillery/artillery_global_adaptive.inst.cfg +++ b/resources/quality/artillery/artillery_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/artillery/artillery_global_draft.inst.cfg b/resources/quality/artillery/artillery_global_draft.inst.cfg index f2623b07ca2..0a615d65a8e 100644 --- a/resources/quality/artillery/artillery_global_draft.inst.cfg +++ b/resources/quality/artillery/artillery_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/artillery/artillery_global_low.inst.cfg b/resources/quality/artillery/artillery_global_low.inst.cfg index b68bb9cad02..da9ca07ad09 100644 --- a/resources/quality/artillery/artillery_global_low.inst.cfg +++ b/resources/quality/artillery/artillery_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/artillery/artillery_global_standard.inst.cfg b/resources/quality/artillery/artillery_global_standard.inst.cfg index 3c4b7e3f3f9..a30f5a3596b 100644 --- a/resources/quality/artillery/artillery_global_standard.inst.cfg +++ b/resources/quality/artillery/artillery_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/artillery/artillery_global_super.inst.cfg b/resources/quality/artillery/artillery_global_super.inst.cfg index e70190eb90d..87ca064f924 100644 --- a/resources/quality/artillery/artillery_global_super.inst.cfg +++ b/resources/quality/artillery/artillery_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/artillery/artillery_global_ultra.inst.cfg b/resources/quality/artillery/artillery_global_ultra.inst.cfg index 850cc73f835..00f75e3681a 100644 --- a/resources/quality/artillery/artillery_global_ultra.inst.cfg +++ b/resources/quality/artillery/artillery_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/artillery/nylon/artillery_0.2_Nylon_super.inst.cfg b/resources/quality/artillery/nylon/artillery_0.2_Nylon_super.inst.cfg index 9244ae9335b..df48b1e465d 100644 --- a/resources/quality/artillery/nylon/artillery_0.2_Nylon_super.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.2_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.2_Nylon_ultra.inst.cfg b/resources/quality/artillery/nylon/artillery_0.2_Nylon_ultra.inst.cfg index 9523866c1df..442680d4d51 100644 --- a/resources/quality/artillery/nylon/artillery_0.2_Nylon_ultra.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.2_Nylon_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.3_Nylon_adaptive.inst.cfg b/resources/quality/artillery/nylon/artillery_0.3_Nylon_adaptive.inst.cfg index f59bf7aaf9c..e23792a6fcf 100644 --- a/resources/quality/artillery/nylon/artillery_0.3_Nylon_adaptive.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.3_Nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.3_Nylon_low.inst.cfg b/resources/quality/artillery/nylon/artillery_0.3_Nylon_low.inst.cfg index 7ca002b987b..4a27e7e3b28 100644 --- a/resources/quality/artillery/nylon/artillery_0.3_Nylon_low.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.3_Nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.3_Nylon_standard.inst.cfg b/resources/quality/artillery/nylon/artillery_0.3_Nylon_standard.inst.cfg index ba93b1d995c..d8c593629fd 100644 --- a/resources/quality/artillery/nylon/artillery_0.3_Nylon_standard.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.3_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.3_Nylon_super.inst.cfg b/resources/quality/artillery/nylon/artillery_0.3_Nylon_super.inst.cfg index 1ba4d7b89f2..c5b1f436762 100644 --- a/resources/quality/artillery/nylon/artillery_0.3_Nylon_super.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.3_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.4_Nylon_adaptive.inst.cfg b/resources/quality/artillery/nylon/artillery_0.4_Nylon_adaptive.inst.cfg index 3a738b966ff..ec9fbc5d512 100644 --- a/resources/quality/artillery/nylon/artillery_0.4_Nylon_adaptive.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.4_Nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.4_Nylon_low.inst.cfg b/resources/quality/artillery/nylon/artillery_0.4_Nylon_low.inst.cfg index 10ea2fe33ff..1865da04549 100644 --- a/resources/quality/artillery/nylon/artillery_0.4_Nylon_low.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.4_Nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.4_Nylon_standard.inst.cfg b/resources/quality/artillery/nylon/artillery_0.4_Nylon_standard.inst.cfg index 7b40781160e..beddca58ae3 100644 --- a/resources/quality/artillery/nylon/artillery_0.4_Nylon_standard.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.4_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.4_Nylon_super.inst.cfg b/resources/quality/artillery/nylon/artillery_0.4_Nylon_super.inst.cfg index 1bfa6501b86..9806fe11108 100644 --- a/resources/quality/artillery/nylon/artillery_0.4_Nylon_super.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.4_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.5_Nylon_adaptive.inst.cfg b/resources/quality/artillery/nylon/artillery_0.5_Nylon_adaptive.inst.cfg index 68e9d252315..608f1288a79 100644 --- a/resources/quality/artillery/nylon/artillery_0.5_Nylon_adaptive.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.5_Nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.5_Nylon_low.inst.cfg b/resources/quality/artillery/nylon/artillery_0.5_Nylon_low.inst.cfg index 055614c812b..0667e04e5b8 100644 --- a/resources/quality/artillery/nylon/artillery_0.5_Nylon_low.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.5_Nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.5_Nylon_standard.inst.cfg b/resources/quality/artillery/nylon/artillery_0.5_Nylon_standard.inst.cfg index 37f8e3ca188..212526e52c1 100644 --- a/resources/quality/artillery/nylon/artillery_0.5_Nylon_standard.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.5_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.5_Nylon_super.inst.cfg b/resources/quality/artillery/nylon/artillery_0.5_Nylon_super.inst.cfg index ea878073401..7c9931026c8 100644 --- a/resources/quality/artillery/nylon/artillery_0.5_Nylon_super.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.5_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.6_Nylon_standard.inst.cfg b/resources/quality/artillery/nylon/artillery_0.6_Nylon_standard.inst.cfg index a4d8b5cf892..67fab7e1297 100644 --- a/resources/quality/artillery/nylon/artillery_0.6_Nylon_standard.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.6_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.8_Nylon_draft.inst.cfg b/resources/quality/artillery/nylon/artillery_0.8_Nylon_draft.inst.cfg index 450ff10e653..477864dd2fb 100644 --- a/resources/quality/artillery/nylon/artillery_0.8_Nylon_draft.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.8_Nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_1.0_Nylon_draft.inst.cfg b/resources/quality/artillery/nylon/artillery_1.0_Nylon_draft.inst.cfg index 651b7b91ce1..3247349db6f 100644 --- a/resources/quality/artillery/nylon/artillery_1.0_Nylon_draft.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_1.0_Nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_extrafast_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_extrafast_quality.inst.cfg index c618f22ec61..4a20a7b9c81 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_extrafast_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_extrafast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_extrafine_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_extrafine_quality.inst.cfg index 9045688eb56..805bd9ac2ef 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_extrafine_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_extrafine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extrafine -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_fast_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_fast_quality.inst.cfg index c20770e7eb4..a0bad4bd6fc 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_fast_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_fast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_fine_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_fine_quality.inst.cfg index 21a9b4977d2..454d4bd066a 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_fine_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_fine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_normal_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_normal_quality.inst.cfg index 5783d4035ed..a51bb0e40a0 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_normal_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_normal_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_sprint_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_sprint_quality.inst.cfg index ebf22409812..3285ac2f7fb 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_sprint_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_sprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_supersprint_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_supersprint_quality.inst.cfg index 45ac5f30e18..7c6bbd87177 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_supersprint_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_supersprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = supersprint -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_ultrasprint_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_ultrasprint_quality.inst.cfg index abea65986db..8fc83c12f1b 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_ultrasprint_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_ultrasprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultrasprint -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_extrafast.inst.cfg index 92112915038..8aece3d5e67 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fast.inst.cfg index 0037dc8e3be..e1faf41888d 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fine.inst.cfg index 7814f10d5ad..02ff6d5e636 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_normal.inst.cfg index f4f52b4f641..0d0a89e4cfc 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_extrafast.inst.cfg index 7e0700c9127..3e79486620c 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fast.inst.cfg index f31ac3b7631..9aaadf6456c 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fine.inst.cfg index da88ed8e0a8..1d9e208e7e4 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_normal.inst.cfg index b5f6a23b1a0..72e8ad4951a 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_extrafast.inst.cfg index cfe64233116..0e1f420c0a9 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fast.inst.cfg index f12e118679b..badfe12feee 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fine.inst.cfg index cfd4c48e3c9..1940b724b43 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_normal.inst.cfg index e2267a15be7..d62cced041c 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_extrafast.inst.cfg index 4895e1bad9e..95e4eda1cc8 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fast.inst.cfg index 594c8cc3404..4cab5ed3926 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fine.inst.cfg index f98243c8706..9cc4a1c86f0 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_normal.inst.cfg index 9a392d3fe7a..ab3be954b32 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_extrafast.inst.cfg index 204bc3c6ce1..a3c927e449f 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fast.inst.cfg index 8b70a44c017..01df85d5e59 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fine.inst.cfg index 8674f58cd12..6bf277081a3 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_normal.inst.cfg index f9e1c1575a4..674ff8d7462 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_extrafast.inst.cfg index b6bd7593374..c60aecae73c 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fast.inst.cfg index 1aa556f1898..1bd6efc9981 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fine.inst.cfg index cd021a0cbcd..799d7770873 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_normal.inst.cfg index 6b4a6173944..1d609a9b5b5 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_extrafast.inst.cfg index c40580028ae..99a80a7f046 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fast.inst.cfg index 03f80e8e840..9d5e84588c4 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fine.inst.cfg index 820c8b74ac3..f418bb75acd 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_normal.inst.cfg index 6ad627d3e14..5b2d7d82442 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_extrafast.inst.cfg index e9b0b4fd9c5..a7f1d0b0e5d 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fast.inst.cfg index d5e5334a226..4ff61c22b53 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fine.inst.cfg index 962d4dcce6d..620225e814f 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_normal.inst.cfg index 89cfdadfd52..d581f868001 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_extrafast.inst.cfg index 17323226f9d..d0a7f429b69 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_sprint.inst.cfg index d81d212335f..1269e55fc09 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_supersprint.inst.cfg index 98ef74f7d24..9d9b88f342c 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = supersprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_extrafast.inst.cfg index 40c8023fb6d..227c8b174bb 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_sprint.inst.cfg index b1de8aaba13..ad6061154d8 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_supersprint.inst.cfg index ae011922939..a5fb56480ad 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = supersprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_extrafast.inst.cfg index 65582f5b0d8..c4be47cafda 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_sprint.inst.cfg index a156e49b781..e6afaf235bb 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_supersprint.inst.cfg index 28aa90f61a7..2edad0b4775 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = supersprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_extrafast.inst.cfg index b1d9efc34aa..9074add48c6 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_sprint.inst.cfg index 672c65f51cd..43db60ad356 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_supersprint.inst.cfg index b29b85b8f2c..ae91df6c8fd 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = supersprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_extrafast.inst.cfg index bf044f95413..cb2d7d8adc4 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_sprint.inst.cfg index 99aa800fd3d..94a2cb199f5 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_supersprint.inst.cfg index 61092813453..a1e9de0c4bf 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = supersprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_extrafast.inst.cfg index d5e6e8f61d0..070706df536 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_sprint.inst.cfg index e558d3c272e..2161bbfe5e6 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_supersprint.inst.cfg index 034dd296818..d9a8ddcaedc 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = supersprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_extrafast.inst.cfg index 8bffcdd8c5c..aae1778e7b2 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_sprint.inst.cfg index e64eee6119b..5fae9d17f4e 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_supersprint.inst.cfg index fa25a246fb9..a33aa63546e 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = supersprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_extrafast.inst.cfg index a68aded6cec..88f895a788e 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_sprint.inst.cfg index 908298d6c43..cb430693092 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_supersprint.inst.cfg index db69b0d7104..dd81906dd05 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = supersprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/beamup_l/beamup_l_coarse.inst.cfg b/resources/quality/beamup_l/beamup_l_coarse.inst.cfg index 0c492f7651d..2fd1b8afcae 100644 --- a/resources/quality/beamup_l/beamup_l_coarse.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/beamup_l/beamup_l_draft.inst.cfg b/resources/quality/beamup_l/beamup_l_draft.inst.cfg index 8f3fb7ce5dd..e3cf82651be 100644 --- a/resources/quality/beamup_l/beamup_l_draft.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg b/resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg index 203f8da1650..8b4e8eccc75 100644 --- a/resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/beamup_l/beamup_l_fine.inst.cfg b/resources/quality/beamup_l/beamup_l_fine.inst.cfg index e62534025d7..87ed50905c9 100644 --- a/resources/quality/beamup_l/beamup_l_fine.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/beamup_l/beamup_l_normal.inst.cfg b/resources/quality/beamup_l/beamup_l_normal.inst.cfg index 86d73af1ef1..59ad26fc039 100644 --- a/resources/quality/beamup_l/beamup_l_normal.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/beamup_s/beamup_s_coarse.inst.cfg b/resources/quality/beamup_s/beamup_s_coarse.inst.cfg index d7b636cbc77..673950dca82 100644 --- a/resources/quality/beamup_s/beamup_s_coarse.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/beamup_s/beamup_s_draft.inst.cfg b/resources/quality/beamup_s/beamup_s_draft.inst.cfg index 50a8d2fe50a..a307f2d8727 100644 --- a/resources/quality/beamup_s/beamup_s_draft.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg b/resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg index eaa39d9cf75..daf1c8c5e53 100644 --- a/resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/beamup_s/beamup_s_fine.inst.cfg b/resources/quality/beamup_s/beamup_s_fine.inst.cfg index 726d48be205..798cc6bb68b 100644 --- a/resources/quality/beamup_s/beamup_s_fine.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/beamup_s/beamup_s_normal.inst.cfg b/resources/quality/beamup_s/beamup_s_normal.inst.cfg index eaafcc1164b..cab58403303 100644 --- a/resources/quality/beamup_s/beamup_s_normal.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/biqu/base/biqu_base_0.2_ABS_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_ABS_super.inst.cfg index 6aa4fae4880..036be998b8f 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_ABS_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.2_ABS_ultra.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_ABS_ultra.inst.cfg index a521feca637..38dd0a39e9c 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.2_PETG_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_PETG_super.inst.cfg index 8811d1f8370..9de7b59deb3 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_PETG_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.2_PETG_ultra.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_PETG_ultra.inst.cfg index d7a307f57a4..16b26530eee 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.2_PLA_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_PLA_super.inst.cfg index e672eb93164..d1f35d9b952 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_PLA_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.2_PLA_ultra.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_PLA_ultra.inst.cfg index be00db90b33..a8469a4ea90 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_ABS_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_ABS_adaptive.inst.cfg index b565e8f74c5..1e194642437 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_ABS_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_ABS_low.inst.cfg index 51dc9fbb767..9fdab1172d2 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_ABS_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_ABS_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_ABS_standard.inst.cfg index 0738ff8ef8c..1d8769491da 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_ABS_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_ABS_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_ABS_super.inst.cfg index 07c7f0ded11..41ad0484b6e 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_ABS_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PETG_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PETG_adaptive.inst.cfg index c014b267d02..58785c33ae9 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PETG_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PETG_low.inst.cfg index 09f14d8c01c..119ca0f89ee 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PETG_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PETG_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PETG_standard.inst.cfg index 363762ac851..2d5d033fd07 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PETG_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PETG_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PETG_super.inst.cfg index fb21754f0fd..a8b77b9c422 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PETG_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PLA_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PLA_adaptive.inst.cfg index ce554b27552..9fb5cb6d1b6 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PLA_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PLA_low.inst.cfg index 07b0d4d369e..1ee6fb803cd 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PLA_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PLA_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PLA_standard.inst.cfg index 06258db290c..822a0635a7f 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PLA_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PLA_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PLA_super.inst.cfg index 68157037265..5b52d5a0d9c 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PLA_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_TPU_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_TPU_adaptive.inst.cfg index 8d5cc949032..b4c9741aa32 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_TPU_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_TPU_standard.inst.cfg index 84eaa67a290..b890ee3ed6a 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_TPU_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_TPU_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_TPU_super.inst.cfg index 000779dbbad..0dd669dd917 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_TPU_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_ABS_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_ABS_adaptive.inst.cfg index ea02181e29b..b5ab386c530 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_ABS_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_ABS_low.inst.cfg index 1301d6b732c..daff0575d47 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_ABS_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_ABS_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_ABS_standard.inst.cfg index 005a64b24d3..fa099cce34f 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_ABS_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_ABS_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_ABS_super.inst.cfg index f9b4caf8fb7..b84a7f81829 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_ABS_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PETG_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PETG_adaptive.inst.cfg index 4af0e371e88..7c050006bf4 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PETG_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PETG_low.inst.cfg index 78825c5d8d2..6649f1541d0 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PETG_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PETG_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PETG_standard.inst.cfg index aa96425455b..28134387ec9 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PETG_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PETG_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PETG_super.inst.cfg index c62eb066553..8b0cbd7a9e8 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PETG_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PLA_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PLA_adaptive.inst.cfg index a507e2555e9..5f20bf45a54 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PLA_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PLA_low.inst.cfg index 588b3dacc19..23cbf503dca 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PLA_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PLA_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PLA_standard.inst.cfg index df611979247..cbf5114492e 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PLA_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PLA_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PLA_super.inst.cfg index 1dbcb62fb3f..e81de9145f1 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PLA_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_TPU_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_TPU_adaptive.inst.cfg index 8bff839e453..d12bd473f11 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_TPU_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_TPU_standard.inst.cfg index f0333fac757..4ca89c2c0e7 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_TPU_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_TPU_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_TPU_super.inst.cfg index 924dd669d1c..a95fc1f16f2 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_TPU_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_ABS_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_ABS_adaptive.inst.cfg index 05e3644675c..7ebed839a99 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_ABS_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_ABS_low.inst.cfg index 91466498c55..e7265c56636 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_ABS_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_ABS_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_ABS_standard.inst.cfg index 68e774f2053..0ed78dd5fb6 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_ABS_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_ABS_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_ABS_super.inst.cfg index 0f84569bad8..f761120b8af 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_ABS_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PETG_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PETG_adaptive.inst.cfg index 724d76d23b8..f691230889b 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PETG_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PETG_low.inst.cfg index b801e75cc30..f510370d291 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PETG_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PETG_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PETG_standard.inst.cfg index 7340f539f2e..cf99fbf92de 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PETG_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PETG_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PETG_super.inst.cfg index 754c2a43eaf..9a3b7c79f1c 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PETG_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PLA_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PLA_adaptive.inst.cfg index f21e6e3b084..c451ac23729 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PLA_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PLA_low.inst.cfg index 157b8eb9e3e..609304cd6b6 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PLA_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PLA_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PLA_standard.inst.cfg index e116b7ec11a..f08b2636fb2 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PLA_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PLA_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PLA_super.inst.cfg index 1ea39a2d1ee..96284914bb3 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PLA_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_TPU_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_TPU_adaptive.inst.cfg index 7009c6d5fbd..34e8acaab72 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_TPU_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_TPU_standard.inst.cfg index 2f0f770507b..76214d104ed 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_TPU_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_TPU_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_TPU_super.inst.cfg index 8a23e888c58..ccf43bf03a2 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_TPU_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_ABS_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_ABS_standard.inst.cfg index 9c5164287ed..e77a774aab1 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_ABS_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_PETG_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_PETG_standard.inst.cfg index 1ac3ee85a3b..0965a5a7269 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_PETG_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_PLA_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_PLA_draft.inst.cfg index 6b90e734830..0d3444cebe9 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_PLA_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_PLA_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_PLA_low.inst.cfg index c4db9c19791..a47f650cabe 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_PLA_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_PLA_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_PLA_standard.inst.cfg index 23f06b83d7e..c1d91222469 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_PLA_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_TPU_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_TPU_standard.inst.cfg index a95181b9070..5aac2b8121b 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_TPU_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.8_ABS_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_0.8_ABS_draft.inst.cfg index 5df16e09a61..160372ef046 100644 --- a/resources/quality/biqu/base/biqu_base_0.8_ABS_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.8_PETG_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_0.8_PETG_draft.inst.cfg index bcbf4eb1e64..063dfef2c21 100644 --- a/resources/quality/biqu/base/biqu_base_0.8_PETG_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.8_PLA_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_0.8_PLA_draft.inst.cfg index ef2c484653b..89706e6c0b6 100644 --- a/resources/quality/biqu/base/biqu_base_0.8_PLA_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.8_TPU_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_0.8_TPU_draft.inst.cfg index d3a92884d1e..c4b20eaa9e7 100644 --- a/resources/quality/biqu/base/biqu_base_0.8_TPU_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_1.0_ABS_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_1.0_ABS_draft.inst.cfg index c5d553b9d92..0892112dc73 100644 --- a/resources/quality/biqu/base/biqu_base_1.0_ABS_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_1.0_PETG_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_1.0_PETG_draft.inst.cfg index 8c999eb1614..491307ecd43 100644 --- a/resources/quality/biqu/base/biqu_base_1.0_PETG_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_1.0_PLA_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_1.0_PLA_draft.inst.cfg index f509a3b5728..f37a42f08f1 100644 --- a/resources/quality/biqu/base/biqu_base_1.0_PLA_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_1.0_TPU_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_1.0_TPU_draft.inst.cfg index d712d097b27..cdd5ee3b7e5 100644 --- a/resources/quality/biqu/base/biqu_base_1.0_TPU_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_global_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_global_adaptive.inst.cfg index 1096d25f8c2..5d3ab9951c6 100644 --- a/resources/quality/biqu/base/biqu_base_global_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/biqu/base/biqu_base_global_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_global_draft.inst.cfg index bfe1b9a4b19..c8be622c9b4 100644 --- a/resources/quality/biqu/base/biqu_base_global_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/biqu/base/biqu_base_global_low.inst.cfg b/resources/quality/biqu/base/biqu_base_global_low.inst.cfg index f3023002322..32c8498457d 100644 --- a/resources/quality/biqu/base/biqu_base_global_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/biqu/base/biqu_base_global_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_global_standard.inst.cfg index 7361f29fa01..15a6c391589 100644 --- a/resources/quality/biqu/base/biqu_base_global_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/biqu/base/biqu_base_global_super.inst.cfg b/resources/quality/biqu/base/biqu_base_global_super.inst.cfg index 8c6c8d09194..9180d9e17fe 100644 --- a/resources/quality/biqu/base/biqu_base_global_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/biqu/base/biqu_base_global_ultra.inst.cfg b/resources/quality/biqu/base/biqu_base_global_ultra.inst.cfg index fbea0a9ed8d..4c100e76658 100644 --- a/resources/quality/biqu/base/biqu_base_global_ultra.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.20_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.20_draft.inst.cfg index bd1da0170aa..b232427d3c2 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.20_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.20_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low 0.2 -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.20_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.20_standard.inst.cfg index 08fc7386191..a022de74e8f 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.20_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal 0.2 -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.30_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.30_draft.inst.cfg index 0993d1e9382..11c59d44c21 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.30_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.30_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.30_standard.inst.cfg index 60df32c5615..4a058d050a0 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.30_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.30_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal 0.3 -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.30_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.30_ultra.inst.cfg index c54ce24ba47..50176898a64 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.30_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.30_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.40_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.40_adaptive.inst.cfg index dbbd5b37880..9efd41ac622 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.40_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.40_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.40_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.40_draft.inst.cfg index 6fa18591f69..dd86c5d2cdc 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.40_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.40_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.40_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.40_standard.inst.cfg index 1c630a6e143..eafdafdda92 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.40_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.40_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.40_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.40_ultra.inst.cfg index 7b5af6f41ba..99272b1686f 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.40_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.40_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.50_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.50_adaptive.inst.cfg index 92deb8ba49b..5e7b27e25c4 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.50_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.50_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.50_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.50_draft.inst.cfg index e09730ba942..06b62ea74a6 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.50_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.50_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.50_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.50_standard.inst.cfg index d04036f8d8f..496773ae3c9 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.50_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.50_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.50_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.50_ultra.inst.cfg index 9713c85edeb..f8bcbd83c52 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.50_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.50_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.60_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.60_adaptive.inst.cfg index f9597d54b56..6f5560e1038 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.60_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.60_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.60_draft.inst.cfg index 2e26c89cd2d..e0ec3a106b8 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.60_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.60_low.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.60_low.inst.cfg index 0706d578440..39139e2f53a 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.60_low.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.60_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.60_standard.inst.cfg index ca494c37776..6050a15f3ac 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.60_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.60_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.60_ultra.inst.cfg index 97eb1907692..ffff45ea6ca 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.60_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_adaptive.inst.cfg index 7eb8ddd9202..d8512d64278 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_draft.inst.cfg index 7b80e3ba890..2d59bcae6fa 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_low.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_low.inst.cfg index 22389c7f596..112e469f3e9 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_low.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_standard.inst.cfg index bfe070b2ef8..0d7228ac5a4 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_superlow.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_superlow.inst.cfg index 5420a1f6b80..79cd34d8055 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_superlow.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_ultra.inst.cfg index 33071d96b4e..d68fea886de 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_adaptive.inst.cfg index 241a81753ec..c8432e47202 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_draft.inst.cfg index 17033f013df..33bb04910c3 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_low.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_low.inst.cfg index 0b6985238b0..e3c16ff6744 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_low.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_standard.inst.cfg index abdf0409f00..179b68a4805 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_superlow.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_superlow.inst.cfg index d83be541317..b077c5e302f 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_superlow.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_ultra.inst.cfg index f97453339bb..5984ebc0a75 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_adaptive.inst.cfg index 66ef59fac8b..c0ab994e6fa 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 1.2mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_draft.inst.cfg index 45549791bf2..6f8cc1cb79b 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.2mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_low.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_low.inst.cfg index 0f95a2c5f36..fa51646a965 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_low.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 1.2mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_standard.inst.cfg index 4b777fb89d8..d06ca688786 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.2mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_superlow.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_superlow.inst.cfg index b1d01bfc870..06bd9a5e2c7 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_superlow.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 23 +setting_version = 22 type = quality variant = 1.2mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_ultra.inst.cfg index 61c875e6177..ddc1f73edc5 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 1.2mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_adaptive.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_adaptive.inst.cfg index dd9168741c6..b9e01c054d2 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = HT - 0.4mm weight = -2 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_draft.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_draft.inst.cfg index 7ac14cd8f32..120840adac3 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = HT - 0.4mm weight = -5 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_standard.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_standard.inst.cfg index 7c7f10fe645..655fe020a1e 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = HT - 0.4mm weight = -3 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_ultra.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_ultra.inst.cfg index a74ca975ffb..dfe34641906 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = HT - 0.4mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_adaptive.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_adaptive.inst.cfg index 815027d6ef5..b4dfc2cc14b 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = HT - 0.5mm weight = -2 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_draft.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_draft.inst.cfg index c3c4a03bd62..a8c9f6712ef 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = HT - 0.5mm weight = -5 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_standard.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_standard.inst.cfg index 66790c739a7..28f7b8bf6f0 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = HT - 0.5mm weight = -3 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_ultra.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_ultra.inst.cfg index a3f8ed15b93..930057a7d6a 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = HT - 0.5mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_adaptive.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_adaptive.inst.cfg index 99432f51c0a..5ad66257e08 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = HT - 0.6mm weight = -2 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_draft.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_draft.inst.cfg index e789d4ae4bd..a24adbeaec6 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = HT - 0.6mm weight = -5 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_low.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_low.inst.cfg index d54e44fff1e..62c319c0295 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_low.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = HT - 0.6mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_standard.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_standard.inst.cfg index a97de1a9a34..f1a804636b2 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = HT - 0.6mm weight = -3 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_ultra.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_ultra.inst.cfg index 92ca89fa6f3..057e2ba26e1 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = HT - 0.6mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_adaptive.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_adaptive.inst.cfg index 6727b950c88..9ca72154a3d 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = HT - 0.8mm weight = -2 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_draft.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_draft.inst.cfg index 2dbee187a83..aacf1e24912 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = HT - 0.8mm weight = -5 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_low.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_low.inst.cfg index ef6e16e3f30..ed3f6ceb527 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_low.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = HT - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_standard.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_standard.inst.cfg index 2d85d53f4e6..cd67b1b5e82 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = HT - 0.8mm weight = -3 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_superlow.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_superlow.inst.cfg index 109c79608fa..0e44809ac0a 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_superlow.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 23 +setting_version = 22 type = quality variant = HT - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_ultra.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_ultra.inst.cfg index b87d68962e1..c7128bef555 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = HT - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_adaptive.inst.cfg index 10806f53c4a..d2c122fb0c8 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = ST - 0.2mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_ultra.inst.cfg index 8f747c08e9a..a08caaa26ce 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = ST - 0.2mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_adaptive.inst.cfg index b0d9447b822..f8c7e9d4478 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = ST - 0.3mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_standard.inst.cfg index 2c8444df01d..fdf046454c0 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = ST - 0.3mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_ultra.inst.cfg index 8410e56e1d3..fc8d16ea0dd 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = ST - 0.3mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_adaptive.inst.cfg index 0dee28da76c..2012d231ef2 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = ST - 0.4mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_draft.inst.cfg index 86be97d7efa..73f4028d6f6 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = ST - 0.4mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_standard.inst.cfg index b3b20834ec6..9e92c831703 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = ST - 0.4mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_ultra.inst.cfg index ea1c5269f4f..3711657b559 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = ST - 0.4mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_adaptive.inst.cfg index d95326a2cd2..a8675b93744 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = ST - 0.5mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_draft.inst.cfg index 6139f477a93..772d62c38ba 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = ST - 0.5mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_standard.inst.cfg index d6b10ead40b..0535ee955db 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = ST - 0.5mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_ultra.inst.cfg index 501fd433054..4261f7f5d57 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = ST - 0.5mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_adaptive.inst.cfg index 9210920b17c..592df1449bf 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = ST - 0.6mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_draft.inst.cfg index 37071e37ec3..9ff016accfb 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = ST - 0.6mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_low.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_low.inst.cfg index 4d7a139ee4a..9b99f668085 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_low.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = ST - 0.6mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_standard.inst.cfg index 0f4fb4da2a2..e39eea4e85e 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = ST - 0.6mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_ultra.inst.cfg index c0d98feb507..67c4bea2afd 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = ST - 0.6mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_adaptive.inst.cfg index f3b66ecd9ff..b6169d07136 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = ST - 0.8mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_draft.inst.cfg index 075bc33bdf2..52c7644d5a7 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = ST - 0.8mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_low.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_low.inst.cfg index bfe0c1efb31..e3dec5014a3 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_low.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = ST - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_standard.inst.cfg index cdeffbce07b..81e8d45a476 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = ST - 0.8mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_superlow.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_superlow.inst.cfg index 6aa91424469..67ea92825ca 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_superlow.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 23 +setting_version = 22 type = quality variant = ST - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_ultra.inst.cfg index 4f196bd070f..9ab6e323789 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = ST - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_adaptive.inst.cfg index 8df63decc44..4abe78cce66 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = ST - 1.0mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_draft.inst.cfg index cc34498a546..c5ce3a5968e 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = ST - 1.0mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_low.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_low.inst.cfg index 5dcd5eca8c9..2dfac120d36 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_low.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = ST - 1.0mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_standard.inst.cfg index 12c5e568ab3..414d9199f15 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = ST - 1.0mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_superlow.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_superlow.inst.cfg index 910efb62445..a8fdd08b26c 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_superlow.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 23 +setting_version = 22 type = quality variant = ST - 1.0mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_ultra.inst.cfg index a9d00ea40dc..a11570f62eb 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = ST - 1.0mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_adaptive.inst.cfg index 3acda8b9dc8..d2eb89bc5b1 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = ST - 1.2mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_draft.inst.cfg index ced39e298bc..19fac2508f1 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = ST - 1.2mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_low.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_low.inst.cfg index 068ed810572..f97ac6ac093 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_low.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = ST - 1.2mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_standard.inst.cfg index f094968a1ad..c72b9b5f059 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = ST - 1.2mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_superlow.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_superlow.inst.cfg index 2f34faba86b..6488766287d 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_superlow.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 23 +setting_version = 22 type = quality variant = ST - 1.2mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_ultra.inst.cfg index 416ed6cce1e..c52b1f7791f 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = ST - 1.2mm weight = 0 diff --git a/resources/quality/builder_premium/bp_BVOH_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_BVOH_Coarse_Quality.inst.cfg index 0c86d1922b5..6e501397491 100644 --- a/resources/quality/builder_premium/bp_BVOH_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_BVOH_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_BVOH_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_BVOH_High_Quality.inst.cfg index f2f475d324f..0d47c689d45 100644 --- a/resources/quality/builder_premium/bp_BVOH_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_BVOH_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_BVOH_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_BVOH_Normal_Quality.inst.cfg index f96020401d0..582c7f8d4d3 100644 --- a/resources/quality/builder_premium/bp_BVOH_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_BVOH_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/builder_premium/bp_Innoflex60_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_Innoflex60_Coarse_Quality.inst.cfg index fbd2b1b6488..16ba6965868 100644 --- a/resources/quality/builder_premium/bp_Innoflex60_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_Innoflex60_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = innofill_innoflex60_175 quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_Innoflex60_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_Innoflex60_High_Quality.inst.cfg index 18b43d1fce2..a9684cd5073 100644 --- a/resources/quality/builder_premium/bp_Innoflex60_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_Innoflex60_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = innofill_innoflex60_175 quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_Innoflex60_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_Innoflex60_Normal_Quality.inst.cfg index c25fe48eee4..ba1c10d19be 100644 --- a/resources/quality/builder_premium/bp_Innoflex60_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_Innoflex60_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = innofill_innoflex60_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/builder_premium/bp_PET_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_PET_Coarse_Quality.inst.cfg index a662fd199a6..6bc4ae64da0 100644 --- a/resources/quality/builder_premium/bp_PET_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PET_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_PET_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_PET_High_Quality.inst.cfg index 5be817574fc..4eb383fa3e1 100644 --- a/resources/quality/builder_premium/bp_PET_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PET_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_PET_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_PET_Normal_Quality.inst.cfg index 955c533ee09..2d938385744 100644 --- a/resources/quality/builder_premium/bp_PET_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PET_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/builder_premium/bp_PLA_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_PLA_Coarse_Quality.inst.cfg index 81c3bac17a5..04b51ffdc38 100644 --- a/resources/quality/builder_premium/bp_PLA_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PLA_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_PLA_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_PLA_High_Quality.inst.cfg index 0270042c6d3..a24d877812c 100644 --- a/resources/quality/builder_premium/bp_PLA_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PLA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_PLA_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_PLA_Normal_Quality.inst.cfg index 10cd3774a11..1c80bd5a74c 100644 --- a/resources/quality/builder_premium/bp_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/builder_premium/bp_PVA_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_PVA_Coarse_Quality.inst.cfg index 55b35c33a16..a491cd26330 100644 --- a/resources/quality/builder_premium/bp_PVA_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PVA_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_PVA_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_PVA_High_Quality.inst.cfg index 5c744cde482..396e082ec2e 100644 --- a/resources/quality/builder_premium/bp_PVA_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PVA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_PVA_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_PVA_Normal_Quality.inst.cfg index da56e1c7d02..f9fd78beb50 100644 --- a/resources/quality/builder_premium/bp_PVA_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PVA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/builder_premium/bp_global_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_global_Coarse_Quality.inst.cfg index 74ac09ab1ff..f5f235c0b0e 100644 --- a/resources/quality/builder_premium/bp_global_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_global_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_global_High_Quality.inst.cfg index 4185c32c2de..cad3d0f17fb 100644 --- a/resources/quality/builder_premium/bp_global_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_global_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_global_Normal_Quality.inst.cfg index 6ffc2dc31ae..c3826e1b23f 100644 --- a/resources/quality/builder_premium/bp_global_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/cartesio/abs/cartesio_0.25_abs_high.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.25_abs_high.inst.cfg index 747d7c0bbe4..ceb247023e3 100644 --- a/resources/quality/cartesio/abs/cartesio_0.25_abs_high.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.25_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/abs/cartesio_0.25_abs_normal.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.25_abs_normal.inst.cfg index 8d9db6ef9da..0cc705b9c85 100644 --- a/resources/quality/cartesio/abs/cartesio_0.25_abs_normal.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.25_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/abs/cartesio_0.4_abs_high.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.4_abs_high.inst.cfg index 756f8f29173..442c341254b 100644 --- a/resources/quality/cartesio/abs/cartesio_0.4_abs_high.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.4_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/abs/cartesio_0.4_abs_normal.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.4_abs_normal.inst.cfg index 2b50d823dba..e58a5440b37 100644 --- a/resources/quality/cartesio/abs/cartesio_0.4_abs_normal.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.4_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/abs/cartesio_0.8_abs_coarse.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.8_abs_coarse.inst.cfg index e20ed3a4a54..d028044fdf0 100644 --- a/resources/quality/cartesio/abs/cartesio_0.8_abs_coarse.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.8_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/abs/cartesio_0.8_abs_extra_coarse.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.8_abs_extra_coarse.inst.cfg index 89c3c5ddf18..c39bb7ea215 100644 --- a/resources/quality/cartesio/abs/cartesio_0.8_abs_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.8_abs_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extra coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/abs/cartesio_0.8_abs_high.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.8_abs_high.inst.cfg index 98ec1d290c7..73d7207c72c 100644 --- a/resources/quality/cartesio/abs/cartesio_0.8_abs_high.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.8_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/abs/cartesio_0.8_abs_normal.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.8_abs_normal.inst.cfg index 1102445d733..9df4675747c 100644 --- a/resources/quality/cartesio/abs/cartesio_0.8_abs_normal.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.8_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_high.inst.cfg b/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_high.inst.cfg index fdebf331146..921fdd7ae5e 100644 --- a/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_high.inst.cfg +++ b/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = dsm_arnitel2045_175 quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_normal.inst.cfg b/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_normal.inst.cfg index dc583398e3f..5b2edc11bd5 100644 --- a/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_normal.inst.cfg +++ b/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = dsm_arnitel2045_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/cartesio_global_Coarse_Quality.inst.cfg b/resources/quality/cartesio/cartesio_global_Coarse_Quality.inst.cfg index 275f1afb76a..e0cbb77608c 100644 --- a/resources/quality/cartesio/cartesio_global_Coarse_Quality.inst.cfg +++ b/resources/quality/cartesio/cartesio_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/cartesio/cartesio_global_Extra_Coarse_Quality.inst.cfg b/resources/quality/cartesio/cartesio_global_Extra_Coarse_Quality.inst.cfg index 0db9ae1a245..e1c754d30af 100644 --- a/resources/quality/cartesio/cartesio_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/cartesio/cartesio_global_Extra_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/cartesio/cartesio_global_High_Quality.inst.cfg b/resources/quality/cartesio/cartesio_global_High_Quality.inst.cfg index 30633b369d8..0bf8080ea3b 100644 --- a/resources/quality/cartesio/cartesio_global_High_Quality.inst.cfg +++ b/resources/quality/cartesio/cartesio_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/cartesio/cartesio_global_Normal_Quality.inst.cfg b/resources/quality/cartesio/cartesio_global_Normal_Quality.inst.cfg index 3037c3aaad2..d455551b3b5 100644 --- a/resources/quality/cartesio/cartesio_global_Normal_Quality.inst.cfg +++ b/resources/quality/cartesio/cartesio_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/cartesio/hips/cartesio_0.25_hips_high.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.25_hips_high.inst.cfg index 59d3cde27fb..2899281b339 100644 --- a/resources/quality/cartesio/hips/cartesio_0.25_hips_high.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.25_hips_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/hips/cartesio_0.25_hips_normal.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.25_hips_normal.inst.cfg index 237b9c99970..cdf0b5a69c9 100644 --- a/resources/quality/cartesio/hips/cartesio_0.25_hips_normal.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.25_hips_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/hips/cartesio_0.4_hips_high.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.4_hips_high.inst.cfg index d045650dd1f..4f4b84c5276 100644 --- a/resources/quality/cartesio/hips/cartesio_0.4_hips_high.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.4_hips_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/hips/cartesio_0.4_hips_normal.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.4_hips_normal.inst.cfg index 9edbe0795b7..3f3be29dac6 100644 --- a/resources/quality/cartesio/hips/cartesio_0.4_hips_normal.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.4_hips_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/hips/cartesio_0.8_hips_coarse.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.8_hips_coarse.inst.cfg index 07cb20a6a3f..61e422cd01f 100644 --- a/resources/quality/cartesio/hips/cartesio_0.8_hips_coarse.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.8_hips_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/hips/cartesio_0.8_hips_extra_coarse.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.8_hips_extra_coarse.inst.cfg index f83ece82c96..2f7616d3c0b 100644 --- a/resources/quality/cartesio/hips/cartesio_0.8_hips_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.8_hips_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = extra coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/hips/cartesio_0.8_hips_high.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.8_hips_high.inst.cfg index 432bdb51817..7ae39664dbe 100644 --- a/resources/quality/cartesio/hips/cartesio_0.8_hips_high.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.8_hips_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/hips/cartesio_0.8_hips_normal.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.8_hips_normal.inst.cfg index 56767df5886..74cc5e1a8cb 100644 --- a/resources/quality/cartesio/hips/cartesio_0.8_hips_normal.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.8_hips_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/nylon/cartesio_0.25_nylon_high.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.25_nylon_high.inst.cfg index cd90509f5f5..a0fcba66c97 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.25_nylon_high.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.25_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/nylon/cartesio_0.25_nylon_normal.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.25_nylon_normal.inst.cfg index 8b67e6343f8..91c26bb39f2 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.25_nylon_normal.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.25_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/nylon/cartesio_0.4_nylon_high.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.4_nylon_high.inst.cfg index c2602f9f9b9..5458875049c 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.4_nylon_high.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.4_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/nylon/cartesio_0.4_nylon_normal.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.4_nylon_normal.inst.cfg index c20a955d02c..a5a99f8ba35 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.4_nylon_normal.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.4_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_coarse.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_coarse.inst.cfg index 0aa49b222d0..40a394d0203 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_coarse.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_extra_coarse.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_extra_coarse.inst.cfg index a31c713bdeb..560388f549c 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extra coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_high.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_high.inst.cfg index ba853061da1..c57a810e969 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_high.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_normal.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_normal.inst.cfg index 3907f5ceca2..038ee37b2a1 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_normal.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pc/cartesio_0.25_pc_high.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.25_pc_high.inst.cfg index 59e92e733f3..c9d10a366a8 100644 --- a/resources/quality/cartesio/pc/cartesio_0.25_pc_high.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.25_pc_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pc/cartesio_0.25_pc_normal.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.25_pc_normal.inst.cfg index 4e408ceef7e..ea78515888d 100644 --- a/resources/quality/cartesio/pc/cartesio_0.25_pc_normal.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.25_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pc/cartesio_0.4_pc_high.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.4_pc_high.inst.cfg index f01fae14b4a..8d66f49534b 100644 --- a/resources/quality/cartesio/pc/cartesio_0.4_pc_high.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.4_pc_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pc/cartesio_0.4_pc_normal.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.4_pc_normal.inst.cfg index b70d03a3410..7b5a3560dfe 100644 --- a/resources/quality/cartesio/pc/cartesio_0.4_pc_normal.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.4_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pc/cartesio_0.8_pc_coarse.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.8_pc_coarse.inst.cfg index 3dfa6bbc07a..da79a1e7d77 100644 --- a/resources/quality/cartesio/pc/cartesio_0.8_pc_coarse.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.8_pc_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/pc/cartesio_0.8_pc_extra_coarse.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.8_pc_extra_coarse.inst.cfg index 48851fed3e8..511da60d544 100644 --- a/resources/quality/cartesio/pc/cartesio_0.8_pc_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.8_pc_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extra coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/pc/cartesio_0.8_pc_high.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.8_pc_high.inst.cfg index feed09fb66b..9967dc12c40 100644 --- a/resources/quality/cartesio/pc/cartesio_0.8_pc_high.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.8_pc_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pc/cartesio_0.8_pc_normal.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.8_pc_normal.inst.cfg index e510fc14532..5810601f773 100644 --- a/resources/quality/cartesio/pc/cartesio_0.8_pc_normal.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.8_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/petg/cartesio_0.25_petg_high.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.25_petg_high.inst.cfg index b6422335ff0..fb7ceb891a1 100644 --- a/resources/quality/cartesio/petg/cartesio_0.25_petg_high.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.25_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/petg/cartesio_0.25_petg_normal.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.25_petg_normal.inst.cfg index 79c4b15ea8d..13a7b1d4137 100644 --- a/resources/quality/cartesio/petg/cartesio_0.25_petg_normal.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.25_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/petg/cartesio_0.4_petg_high.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.4_petg_high.inst.cfg index fd94e73fd19..81f56b432cd 100644 --- a/resources/quality/cartesio/petg/cartesio_0.4_petg_high.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.4_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/petg/cartesio_0.4_petg_normal.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.4_petg_normal.inst.cfg index e648a5bb240..ef092ab09f5 100644 --- a/resources/quality/cartesio/petg/cartesio_0.4_petg_normal.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.4_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/petg/cartesio_0.8_petg_coarse.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.8_petg_coarse.inst.cfg index 2a824cbd42b..594c277948d 100644 --- a/resources/quality/cartesio/petg/cartesio_0.8_petg_coarse.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.8_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/petg/cartesio_0.8_petg_extra_coarse.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.8_petg_extra_coarse.inst.cfg index efd1f9a6d7d..12c049c4ca5 100644 --- a/resources/quality/cartesio/petg/cartesio_0.8_petg_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.8_petg_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extra coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/petg/cartesio_0.8_petg_high.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.8_petg_high.inst.cfg index 7a294b95320..e8a2a46be81 100644 --- a/resources/quality/cartesio/petg/cartesio_0.8_petg_high.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.8_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/petg/cartesio_0.8_petg_normal.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.8_petg_normal.inst.cfg index 1fb094b684d..14e9cbec6bc 100644 --- a/resources/quality/cartesio/petg/cartesio_0.8_petg_normal.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.8_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pla/cartesio_0.25_pla_high.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.25_pla_high.inst.cfg index f4c45020eac..75f07846567 100644 --- a/resources/quality/cartesio/pla/cartesio_0.25_pla_high.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.25_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pla/cartesio_0.25_pla_normal.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.25_pla_normal.inst.cfg index 88a4cbaf4be..ae4139bca9a 100644 --- a/resources/quality/cartesio/pla/cartesio_0.25_pla_normal.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.25_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pla/cartesio_0.4_pla_high.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.4_pla_high.inst.cfg index d68392a58e5..504e8292b24 100644 --- a/resources/quality/cartesio/pla/cartesio_0.4_pla_high.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.4_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pla/cartesio_0.4_pla_normal.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.4_pla_normal.inst.cfg index 52d9cbefa08..3869918c087 100644 --- a/resources/quality/cartesio/pla/cartesio_0.4_pla_normal.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.4_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pla/cartesio_0.8_pla_coarse.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.8_pla_coarse.inst.cfg index 1664e93b376..b91c8e1f2e5 100644 --- a/resources/quality/cartesio/pla/cartesio_0.8_pla_coarse.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.8_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm thermoplastic extruder weight = -3 diff --git a/resources/quality/cartesio/pla/cartesio_0.8_pla_extra_coarse.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.8_pla_extra_coarse.inst.cfg index e269557ea5e..7ea8197b873 100644 --- a/resources/quality/cartesio/pla/cartesio_0.8_pla_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.8_pla_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extra coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm thermoplastic extruder weight = -4 diff --git a/resources/quality/cartesio/pla/cartesio_0.8_pla_high.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.8_pla_high.inst.cfg index e8af9745d75..e3f5e40feeb 100644 --- a/resources/quality/cartesio/pla/cartesio_0.8_pla_high.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.8_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pla/cartesio_0.8_pla_normal.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.8_pla_normal.inst.cfg index d2a7e8d6730..7929c6d9f47 100644 --- a/resources/quality/cartesio/pla/cartesio_0.8_pla_normal.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.8_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pva/cartesio_0.25_pva_high.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.25_pva_high.inst.cfg index c077347a27f..63c487a4b9b 100644 --- a/resources/quality/cartesio/pva/cartesio_0.25_pva_high.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.25_pva_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pva/cartesio_0.25_pva_normal.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.25_pva_normal.inst.cfg index 7689cb72967..8c36a3f9db0 100644 --- a/resources/quality/cartesio/pva/cartesio_0.25_pva_normal.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.25_pva_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pva/cartesio_0.4_pva_high.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.4_pva_high.inst.cfg index a764523419d..fa9118e5b34 100644 --- a/resources/quality/cartesio/pva/cartesio_0.4_pva_high.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.4_pva_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pva/cartesio_0.4_pva_normal.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.4_pva_normal.inst.cfg index 5d96b324b82..e8c8c53c453 100644 --- a/resources/quality/cartesio/pva/cartesio_0.4_pva_normal.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.4_pva_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pva/cartesio_0.8_pva_coarse.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.8_pva_coarse.inst.cfg index c97c5e0d113..212c3cc2d19 100644 --- a/resources/quality/cartesio/pva/cartesio_0.8_pva_coarse.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.8_pva_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/pva/cartesio_0.8_pva_extra_coarse.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.8_pva_extra_coarse.inst.cfg index b9ccbec940d..67ab181dc42 100644 --- a/resources/quality/cartesio/pva/cartesio_0.8_pva_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.8_pva_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = extra coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/pva/cartesio_0.8_pva_high.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.8_pva_high.inst.cfg index 7be3729c54e..861401346ea 100644 --- a/resources/quality/cartesio/pva/cartesio_0.8_pva_high.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.8_pva_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pva/cartesio_0.8_pva_normal.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.8_pva_normal.inst.cfg index c5575d58fcf..fd062c8a108 100644 --- a/resources/quality/cartesio/pva/cartesio_0.8_pva_normal.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.8_pva_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/coarse.inst.cfg b/resources/quality/coarse.inst.cfg index 28df0a1c18c..85af3b88d24 100644 --- a/resources/quality/coarse.inst.cfg +++ b/resources/quality/coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_coarse.inst.cfg b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_coarse.inst.cfg index 510e7f1c3d5..8e659e9aa04 100644 --- a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_coarse.inst.cfg +++ b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_draft.inst.cfg b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_draft.inst.cfg index 2901a92b341..f55649264c1 100644 --- a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_draft.inst.cfg +++ b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_fine.inst.cfg b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_fine.inst.cfg index 37390c4f2c9..2c708faa07e 100644 --- a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_fine.inst.cfg +++ b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_normal.inst.cfg b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_normal.inst.cfg index e631278a129..6a2535f8e63 100644 --- a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_normal.inst.cfg +++ b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/crazy3dprint_global_0.10_fine.inst.cfg b/resources/quality/crazy3dprint/crazy3dprint_global_0.10_fine.inst.cfg index 0cc925e81c0..22c0be933a4 100644 --- a/resources/quality/crazy3dprint/crazy3dprint_global_0.10_fine.inst.cfg +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/crazy3dprint/crazy3dprint_global_0.20_normal.inst.cfg b/resources/quality/crazy3dprint/crazy3dprint_global_0.20_normal.inst.cfg index 42a05036bf9..a83db8a5b86 100644 --- a/resources/quality/crazy3dprint/crazy3dprint_global_0.20_normal.inst.cfg +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/crazy3dprint/crazy3dprint_global_0.30_draft.inst.cfg b/resources/quality/crazy3dprint/crazy3dprint_global_0.30_draft.inst.cfg index be04111ffca..f676d805f51 100644 --- a/resources/quality/crazy3dprint/crazy3dprint_global_0.30_draft.inst.cfg +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/crazy3dprint/crazy3dprint_global_0.40_coarse.inst.cfg b/resources/quality/crazy3dprint/crazy3dprint_global_0.40_coarse.inst.cfg index 0a89b548aff..ca4c6e02bf1 100644 --- a/resources/quality/crazy3dprint/crazy3dprint_global_0.40_coarse.inst.cfg +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_coarse.inst.cfg b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_coarse.inst.cfg index a215b77102a..2e4a9e541e7 100644 --- a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_coarse.inst.cfg +++ b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_draft.inst.cfg b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_draft.inst.cfg index f8bd706b136..7ffbfc983b8 100644 --- a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_draft.inst.cfg +++ b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_fine.inst.cfg b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_fine.inst.cfg index 59769cff2c9..1f2536dd6b5 100644 --- a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_fine.inst.cfg +++ b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_normal.inst.cfg b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_normal.inst.cfg index 07e3bdfc331..1d2323c2303 100644 --- a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_normal.inst.cfg +++ b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_ABS_super.inst.cfg b/resources/quality/creality/base/base_0.2_ABS_super.inst.cfg index 17f02a5341d..2e80729b964 100644 --- a/resources/quality/creality/base/base_0.2_ABS_super.inst.cfg +++ b/resources/quality/creality/base/base_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_ABS_ultra.inst.cfg b/resources/quality/creality/base/base_0.2_ABS_ultra.inst.cfg index 249d81eda4a..1921452cd42 100644 --- a/resources/quality/creality/base/base_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/creality/base/base_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_PETG_super.inst.cfg b/resources/quality/creality/base/base_0.2_PETG_super.inst.cfg index f202bc039fd..3462ba60b16 100644 --- a/resources/quality/creality/base/base_0.2_PETG_super.inst.cfg +++ b/resources/quality/creality/base/base_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_PETG_ultra.inst.cfg b/resources/quality/creality/base/base_0.2_PETG_ultra.inst.cfg index f014c4d817a..5732177e41f 100644 --- a/resources/quality/creality/base/base_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/creality/base/base_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_PLA_super.inst.cfg b/resources/quality/creality/base/base_0.2_PLA_super.inst.cfg index 9069c6217d0..eb69f993c2d 100644 --- a/resources/quality/creality/base/base_0.2_PLA_super.inst.cfg +++ b/resources/quality/creality/base/base_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_PLA_ultra.inst.cfg b/resources/quality/creality/base/base_0.2_PLA_ultra.inst.cfg index e7549eb0cd1..101b4b4f934 100644 --- a/resources/quality/creality/base/base_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/creality/base/base_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_ABS_adaptive.inst.cfg b/resources/quality/creality/base/base_0.3_ABS_adaptive.inst.cfg index c459673c03b..44b2371f2be 100644 --- a/resources/quality/creality/base/base_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_ABS_low.inst.cfg b/resources/quality/creality/base/base_0.3_ABS_low.inst.cfg index 3ac36051efa..ed9bb131c84 100644 --- a/resources/quality/creality/base/base_0.3_ABS_low.inst.cfg +++ b/resources/quality/creality/base/base_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_ABS_standard.inst.cfg b/resources/quality/creality/base/base_0.3_ABS_standard.inst.cfg index 0747c9470ec..8b034ebbac9 100644 --- a/resources/quality/creality/base/base_0.3_ABS_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_ABS_super.inst.cfg b/resources/quality/creality/base/base_0.3_ABS_super.inst.cfg index 32520aa212d..b0b7a71b2d7 100644 --- a/resources/quality/creality/base/base_0.3_ABS_super.inst.cfg +++ b/resources/quality/creality/base/base_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PETG_adaptive.inst.cfg b/resources/quality/creality/base/base_0.3_PETG_adaptive.inst.cfg index c131707e19e..876d8bec263 100644 --- a/resources/quality/creality/base/base_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PETG_low.inst.cfg b/resources/quality/creality/base/base_0.3_PETG_low.inst.cfg index b20f448ba0e..45bc46ce572 100644 --- a/resources/quality/creality/base/base_0.3_PETG_low.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PETG_standard.inst.cfg b/resources/quality/creality/base/base_0.3_PETG_standard.inst.cfg index b8e5ad16c20..0eba756cec6 100644 --- a/resources/quality/creality/base/base_0.3_PETG_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PETG_super.inst.cfg b/resources/quality/creality/base/base_0.3_PETG_super.inst.cfg index e5c59aade73..44c78d98416 100644 --- a/resources/quality/creality/base/base_0.3_PETG_super.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PLA_adaptive.inst.cfg b/resources/quality/creality/base/base_0.3_PLA_adaptive.inst.cfg index a1b31cbb369..672be97d5e7 100644 --- a/resources/quality/creality/base/base_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PLA_low.inst.cfg b/resources/quality/creality/base/base_0.3_PLA_low.inst.cfg index 4958661ff4e..bce81ed8aa0 100644 --- a/resources/quality/creality/base/base_0.3_PLA_low.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PLA_standard.inst.cfg b/resources/quality/creality/base/base_0.3_PLA_standard.inst.cfg index f5319c95ac8..b203c49a5d9 100644 --- a/resources/quality/creality/base/base_0.3_PLA_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PLA_super.inst.cfg b/resources/quality/creality/base/base_0.3_PLA_super.inst.cfg index 91518c75fc4..205cb74fcfd 100644 --- a/resources/quality/creality/base/base_0.3_PLA_super.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_TPU_adaptive.inst.cfg b/resources/quality/creality/base/base_0.3_TPU_adaptive.inst.cfg index 24b32bccdb9..aef986f74ad 100644 --- a/resources/quality/creality/base/base_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_TPU_standard.inst.cfg b/resources/quality/creality/base/base_0.3_TPU_standard.inst.cfg index cc15f42fb15..2509d7888e9 100644 --- a/resources/quality/creality/base/base_0.3_TPU_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_TPU_super.inst.cfg b/resources/quality/creality/base/base_0.3_TPU_super.inst.cfg index 6e9a67af5c1..b0f60d34981 100644 --- a/resources/quality/creality/base/base_0.3_TPU_super.inst.cfg +++ b/resources/quality/creality/base/base_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_ABS_adaptive.inst.cfg b/resources/quality/creality/base/base_0.4_ABS_adaptive.inst.cfg index cb84911e813..5f3d8c911f6 100644 --- a/resources/quality/creality/base/base_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_ABS_low.inst.cfg b/resources/quality/creality/base/base_0.4_ABS_low.inst.cfg index 38b057a7443..3c9690fafe0 100644 --- a/resources/quality/creality/base/base_0.4_ABS_low.inst.cfg +++ b/resources/quality/creality/base/base_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_ABS_standard.inst.cfg b/resources/quality/creality/base/base_0.4_ABS_standard.inst.cfg index 400bc2a1907..998c4ef9153 100644 --- a/resources/quality/creality/base/base_0.4_ABS_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_ABS_super.inst.cfg b/resources/quality/creality/base/base_0.4_ABS_super.inst.cfg index 4501bb52279..29faf9d49d4 100644 --- a/resources/quality/creality/base/base_0.4_ABS_super.inst.cfg +++ b/resources/quality/creality/base/base_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PETG_adaptive.inst.cfg b/resources/quality/creality/base/base_0.4_PETG_adaptive.inst.cfg index 09122ad76bc..e0f46c3564b 100644 --- a/resources/quality/creality/base/base_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PETG_low.inst.cfg b/resources/quality/creality/base/base_0.4_PETG_low.inst.cfg index 316291ca09d..38a5829e606 100644 --- a/resources/quality/creality/base/base_0.4_PETG_low.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PETG_standard.inst.cfg b/resources/quality/creality/base/base_0.4_PETG_standard.inst.cfg index b279711da0a..ac606c34318 100644 --- a/resources/quality/creality/base/base_0.4_PETG_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PETG_super.inst.cfg b/resources/quality/creality/base/base_0.4_PETG_super.inst.cfg index cf31ad62b5a..a7c88bc67f7 100644 --- a/resources/quality/creality/base/base_0.4_PETG_super.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PLA_adaptive.inst.cfg b/resources/quality/creality/base/base_0.4_PLA_adaptive.inst.cfg index 7ba40dcd483..d048641758b 100644 --- a/resources/quality/creality/base/base_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PLA_low.inst.cfg b/resources/quality/creality/base/base_0.4_PLA_low.inst.cfg index 356a9390b04..91e96c67145 100644 --- a/resources/quality/creality/base/base_0.4_PLA_low.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PLA_standard.inst.cfg b/resources/quality/creality/base/base_0.4_PLA_standard.inst.cfg index 2ca57936c33..5e92b31a7c1 100644 --- a/resources/quality/creality/base/base_0.4_PLA_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PLA_super.inst.cfg b/resources/quality/creality/base/base_0.4_PLA_super.inst.cfg index 873563a5abc..378ebe4d8ac 100644 --- a/resources/quality/creality/base/base_0.4_PLA_super.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_TPU_adaptive.inst.cfg b/resources/quality/creality/base/base_0.4_TPU_adaptive.inst.cfg index 3e33d4d2806..33b0725bad5 100644 --- a/resources/quality/creality/base/base_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_TPU_standard.inst.cfg b/resources/quality/creality/base/base_0.4_TPU_standard.inst.cfg index 39244b0cc67..4b5d9e4aec9 100644 --- a/resources/quality/creality/base/base_0.4_TPU_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_TPU_super.inst.cfg b/resources/quality/creality/base/base_0.4_TPU_super.inst.cfg index 3e3e8ac50eb..2086bc635a8 100644 --- a/resources/quality/creality/base/base_0.4_TPU_super.inst.cfg +++ b/resources/quality/creality/base/base_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_ABS_adaptive.inst.cfg b/resources/quality/creality/base/base_0.5_ABS_adaptive.inst.cfg index 7f1bb0bc66a..792af41ee90 100644 --- a/resources/quality/creality/base/base_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_ABS_low.inst.cfg b/resources/quality/creality/base/base_0.5_ABS_low.inst.cfg index 878286e616f..ce4fd9f3569 100644 --- a/resources/quality/creality/base/base_0.5_ABS_low.inst.cfg +++ b/resources/quality/creality/base/base_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_ABS_standard.inst.cfg b/resources/quality/creality/base/base_0.5_ABS_standard.inst.cfg index 7724c1001a6..1cb9e497035 100644 --- a/resources/quality/creality/base/base_0.5_ABS_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_ABS_super.inst.cfg b/resources/quality/creality/base/base_0.5_ABS_super.inst.cfg index c33d5a48b71..8ebedcf0063 100644 --- a/resources/quality/creality/base/base_0.5_ABS_super.inst.cfg +++ b/resources/quality/creality/base/base_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PETG_adaptive.inst.cfg b/resources/quality/creality/base/base_0.5_PETG_adaptive.inst.cfg index 675794832b7..e9074441d36 100644 --- a/resources/quality/creality/base/base_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PETG_low.inst.cfg b/resources/quality/creality/base/base_0.5_PETG_low.inst.cfg index d55b54dc8b6..36b727d11c0 100644 --- a/resources/quality/creality/base/base_0.5_PETG_low.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PETG_standard.inst.cfg b/resources/quality/creality/base/base_0.5_PETG_standard.inst.cfg index b8b08fba46c..ae04d305a6b 100644 --- a/resources/quality/creality/base/base_0.5_PETG_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PETG_super.inst.cfg b/resources/quality/creality/base/base_0.5_PETG_super.inst.cfg index dd64434c066..5b59905ac70 100644 --- a/resources/quality/creality/base/base_0.5_PETG_super.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PLA_adaptive.inst.cfg b/resources/quality/creality/base/base_0.5_PLA_adaptive.inst.cfg index bea35796784..d03f8d5d1c8 100644 --- a/resources/quality/creality/base/base_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PLA_low.inst.cfg b/resources/quality/creality/base/base_0.5_PLA_low.inst.cfg index 85809f8aaf6..61ebda86606 100644 --- a/resources/quality/creality/base/base_0.5_PLA_low.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PLA_standard.inst.cfg b/resources/quality/creality/base/base_0.5_PLA_standard.inst.cfg index f4a885cd2cd..969f3501991 100644 --- a/resources/quality/creality/base/base_0.5_PLA_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PLA_super.inst.cfg b/resources/quality/creality/base/base_0.5_PLA_super.inst.cfg index d4caac8486a..c1b2571eaef 100644 --- a/resources/quality/creality/base/base_0.5_PLA_super.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_TPU_adaptive.inst.cfg b/resources/quality/creality/base/base_0.5_TPU_adaptive.inst.cfg index 4c8f24db64c..a01fd327bd2 100644 --- a/resources/quality/creality/base/base_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_TPU_standard.inst.cfg b/resources/quality/creality/base/base_0.5_TPU_standard.inst.cfg index f437fc220ce..aaeba0c6f6f 100644 --- a/resources/quality/creality/base/base_0.5_TPU_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_TPU_super.inst.cfg b/resources/quality/creality/base/base_0.5_TPU_super.inst.cfg index 7c4a2dc2d7c..4fc70ac0bd2 100644 --- a/resources/quality/creality/base/base_0.5_TPU_super.inst.cfg +++ b/resources/quality/creality/base/base_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_ABS_standard.inst.cfg b/resources/quality/creality/base/base_0.6_ABS_standard.inst.cfg index 0faaf8e45d0..216efb7feb3 100644 --- a/resources/quality/creality/base/base_0.6_ABS_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_PETG_standard.inst.cfg b/resources/quality/creality/base/base_0.6_PETG_standard.inst.cfg index 040da082a4e..7d6238e0183 100644 --- a/resources/quality/creality/base/base_0.6_PETG_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_PLA_draft.inst.cfg b/resources/quality/creality/base/base_0.6_PLA_draft.inst.cfg index 9ce2b0454bc..0bdd7561254 100644 --- a/resources/quality/creality/base/base_0.6_PLA_draft.inst.cfg +++ b/resources/quality/creality/base/base_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_PLA_low.inst.cfg b/resources/quality/creality/base/base_0.6_PLA_low.inst.cfg index 463b652b05b..99ca1726a87 100644 --- a/resources/quality/creality/base/base_0.6_PLA_low.inst.cfg +++ b/resources/quality/creality/base/base_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_PLA_standard.inst.cfg b/resources/quality/creality/base/base_0.6_PLA_standard.inst.cfg index 377b68b0d88..3cd403610ff 100644 --- a/resources/quality/creality/base/base_0.6_PLA_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_TPU_standard.inst.cfg b/resources/quality/creality/base/base_0.6_TPU_standard.inst.cfg index 1057a431a65..9441027751f 100644 --- a/resources/quality/creality/base/base_0.6_TPU_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.8_ABS_draft.inst.cfg b/resources/quality/creality/base/base_0.8_ABS_draft.inst.cfg index 3f4026061c1..75faf8511de 100644 --- a/resources/quality/creality/base/base_0.8_ABS_draft.inst.cfg +++ b/resources/quality/creality/base/base_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/creality/base/base_0.8_PETG_draft.inst.cfg b/resources/quality/creality/base/base_0.8_PETG_draft.inst.cfg index 587724a118b..9c715fcec51 100644 --- a/resources/quality/creality/base/base_0.8_PETG_draft.inst.cfg +++ b/resources/quality/creality/base/base_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/creality/base/base_0.8_PLA_draft.inst.cfg b/resources/quality/creality/base/base_0.8_PLA_draft.inst.cfg index 1e865377130..5f57198c495 100644 --- a/resources/quality/creality/base/base_0.8_PLA_draft.inst.cfg +++ b/resources/quality/creality/base/base_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/creality/base/base_0.8_TPU_draft.inst.cfg b/resources/quality/creality/base/base_0.8_TPU_draft.inst.cfg index d660e3b15b7..4861a38b1d6 100644 --- a/resources/quality/creality/base/base_0.8_TPU_draft.inst.cfg +++ b/resources/quality/creality/base/base_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/creality/base/base_1.0_ABS_draft.inst.cfg b/resources/quality/creality/base/base_1.0_ABS_draft.inst.cfg index 13a66ff4944..1431ab85306 100644 --- a/resources/quality/creality/base/base_1.0_ABS_draft.inst.cfg +++ b/resources/quality/creality/base/base_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/creality/base/base_1.0_PETG_draft.inst.cfg b/resources/quality/creality/base/base_1.0_PETG_draft.inst.cfg index b2e58f29752..07ccf302ec3 100644 --- a/resources/quality/creality/base/base_1.0_PETG_draft.inst.cfg +++ b/resources/quality/creality/base/base_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/creality/base/base_1.0_PLA_draft.inst.cfg b/resources/quality/creality/base/base_1.0_PLA_draft.inst.cfg index 76de4101012..b00db633247 100644 --- a/resources/quality/creality/base/base_1.0_PLA_draft.inst.cfg +++ b/resources/quality/creality/base/base_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/creality/base/base_1.0_TPU_draft.inst.cfg b/resources/quality/creality/base/base_1.0_TPU_draft.inst.cfg index fd999f6b0db..bc81bc03718 100644 --- a/resources/quality/creality/base/base_1.0_TPU_draft.inst.cfg +++ b/resources/quality/creality/base/base_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/creality/base/base_global_adaptive.inst.cfg b/resources/quality/creality/base/base_global_adaptive.inst.cfg index 9a9841afbee..b6b8b523497 100644 --- a/resources/quality/creality/base/base_global_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/creality/base/base_global_draft.inst.cfg b/resources/quality/creality/base/base_global_draft.inst.cfg index dd5078d648b..de99319e536 100644 --- a/resources/quality/creality/base/base_global_draft.inst.cfg +++ b/resources/quality/creality/base/base_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/creality/base/base_global_low.inst.cfg b/resources/quality/creality/base/base_global_low.inst.cfg index fd0a08e352e..bddb8ae6530 100644 --- a/resources/quality/creality/base/base_global_low.inst.cfg +++ b/resources/quality/creality/base/base_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/creality/base/base_global_standard.inst.cfg b/resources/quality/creality/base/base_global_standard.inst.cfg index a3fd5f59562..91140677bf3 100644 --- a/resources/quality/creality/base/base_global_standard.inst.cfg +++ b/resources/quality/creality/base/base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/creality/base/base_global_super.inst.cfg b/resources/quality/creality/base/base_global_super.inst.cfg index a4bbfed83d6..6f21593188f 100644 --- a/resources/quality/creality/base/base_global_super.inst.cfg +++ b/resources/quality/creality/base/base_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/creality/base/base_global_ultra.inst.cfg b/resources/quality/creality/base/base_global_ultra.inst.cfg index 85c78d7b8dd..383024037fe 100644 --- a/resources/quality/creality/base/base_global_ultra.inst.cfg +++ b/resources/quality/creality/base/base_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fast.inst.cfg index b75eb896a49..a5a9879d72c 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fine.inst.cfg index 9ce13339994..3d5ec38d355 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_standard.inst.cfg index cf231a76319..f698da2d69a 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_pla_fast.inst.cfg index 4487d7314a1..622a93a0876 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_pla_fine.inst.cfg index 18c2c9e8c2e..98eb36c1440 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_pla_standard.inst.cfg index 18b92d7b8bb..5de5ad8dcae 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fast.inst.cfg index 2964bd84245..c35fe262b47 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fine.inst.cfg index db5d49de7b3..cfdff1319fc 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_standard.inst.cfg index 99940ba8e4a..0030e89bbb3 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_discoultimate_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_pla_fast.inst.cfg index 7873309c265..4a08d336160 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_discoultimate_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_pla_fine.inst.cfg index 194a9d2eccd..bc270289223 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_discoultimate_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_pla_standard.inst.cfg index 2bc213d8ba5..734edc39200 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg index 815d889a1bf..5c7ccc5b9f4 100644 --- a/resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg index 17493da3ac5..1778c341603 100644 --- a/resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg index 83988387dde..d6f86947c43 100644 --- a/resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_neva_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_neva_pla_fast.inst.cfg index 1ab336b3bd1..bcc46035846 100644 --- a/resources/quality/dagoma/dagoma_neva_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_neva_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_neva_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_neva_pla_fine.inst.cfg index 6095afc7a96..dd428dc3ccd 100644 --- a/resources/quality/dagoma/dagoma_neva_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_neva_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_neva_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_neva_pla_standard.inst.cfg index 14cb361ba57..52c7d86ae01 100644 --- a/resources/quality/dagoma/dagoma_neva_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_neva_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.1.inst.cfg index 7299109537f..96ea38ade95 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 22 type = quality variant = Brass 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.2.inst.cfg index e1cbebad599..1e6d59df5b1 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 22 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.3.inst.cfg index 8f52deed730..96af2f714ca 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 22 type = quality variant = Brass 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.4.inst.cfg index c66b230b3f1..c3cdc7d9af8 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 22 type = quality variant = Brass 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.6.inst.cfg index 5ca0aff282b..1165fc2ee84 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 22 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.4.inst.cfg index e4e9a63b3bc..f6200a7fd7b 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 22 type = quality variant = Brass 1.0mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.6.inst.cfg index 50af708e6d8..abfcfebc288 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 22 type = quality variant = Brass 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.8.inst.cfg index 2c07478c3b1..079fe5831c7 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 22 type = quality variant = Brass 1.0mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.05.inst.cfg index 652346f10b9..f34520fa2be 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.05 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.1.inst.cfg index 2bbf4ca5486..ebe50da2cdf 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.15.inst.cfg index cc458da8d14..16d047f188c 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.15 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.1.inst.cfg index abf58a72a4b..e13eb0566df 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.2.inst.cfg index 129ea34c392..5be7d6f0676 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.3.inst.cfg index 10dcfad171e..1969d8dd976 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.2.inst.cfg index 39d12f25730..26d1bb6b49f 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 0.6mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.4.inst.cfg index 5c79e53906e..20f44d7343b 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 0.6mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.4.inst.cfg index 6ba205b42ee..f02540ffe35 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.6.inst.cfg index 3f8e4d098f7..d2ecfa7c129 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.4.inst.cfg index 41ceb4e795f..3bfdd6350e2 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 1.0mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.6.inst.cfg index 5604950ca35..e7c4078d25d 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.8.inst.cfg index f0462b9356f..3f2d903175d 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.6.inst.cfg index 2d175ae2fae..43244be05fd 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 1.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.8.inst.cfg index 606a7336642..f4f3277db5e 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 1.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.05.inst.cfg index 6fc1ba32865..f4699dd42dc 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.05.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.05 -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.1.inst.cfg index 74a331f160b..973fca320e2 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.1.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.15.inst.cfg index cacb37c73d7..fbc78a9b014 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.15.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.15 -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.2.inst.cfg index 671147552cd..2fdbc7549da 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.2.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.3.inst.cfg index e41b33ce6ed..feb709164fb 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.3.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.4.inst.cfg index 42875c40dde..79e2d90b77f 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.4.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.6.inst.cfg index fb4d097abb7..498ff3750c1 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.6.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.8.inst.cfg index 6223ddba969..0f9baad3ff2 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.8.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.1.inst.cfg index bff77312787..355ef66112f 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 22 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.2.inst.cfg index 7dadd7ef79b..c160324f03a 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 22 type = quality variant = Steel 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.3.inst.cfg index 8c90a1f3044..eb642e6e48d 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 22 type = quality variant = Steel 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.4.inst.cfg index cb2ad61411c..59933f6f69d 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 22 type = quality variant = Steel 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.6.inst.cfg index 36e59de2e3a..ccaa29a0d81 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 22 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.1.inst.cfg index 9c87a86afc2..7dba8943687 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 22 type = quality variant = Brass 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.2.inst.cfg index 7d017686437..eecd00f1541 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 22 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.3.inst.cfg index 1a372f26890..074fcab081d 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 22 type = quality variant = Brass 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_tpu_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_tpu_h0.2.inst.cfg index 03735e73c96..40caac85b73 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_tpu_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_tpu_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = h0.2 -setting_version = 23 +setting_version = 22 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.4.inst.cfg index fd0e2092fee..a54d67164fb 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 22 type = quality variant = Brass 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.6.inst.cfg index 764fae3340c..877c714bd28 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 22 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.4.inst.cfg index 105457d8ddf..d1e846d8ef7 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 22 type = quality variant = Brass 1.0mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.6.inst.cfg index 418750d4bf1..587816e51d8 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 22 type = quality variant = Brass 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.8.inst.cfg index 3d823e2b158..aaf0443bf3b 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 22 type = quality variant = Brass 1.0mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.05.inst.cfg index bc56d30d7ce..19744cb04a7 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.05 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 0.2mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.1.inst.cfg index aa03342cb28..b77985d74aa 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 0.2mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.15.inst.cfg index 9c58bafbbcc..f33ed01e889 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.15 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 0.2mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.1.inst.cfg index 736ac60dee6..f4dedc6698d 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.2.inst.cfg index 60cd6a68350..12924a1e88d 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.3.inst.cfg index cda0198ba2e..d4ba2e1f8a1 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.2.inst.cfg index 5d48f19122d..a5e375ee62f 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 0.6mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.4.inst.cfg index d4c97e93871..23af3a293d6 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 0.6mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.4.inst.cfg index 8e9ce5df5ce..a1c971ab986 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.6.inst.cfg index 706e4937486..cab9e49b7aa 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.4.inst.cfg index 5fa87f6a3d2..6397f44f7dc 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 1.0mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.6.inst.cfg index 1ec3a05ef30..66f620995a1 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.8.inst.cfg index c9976361959..51315f0adc3 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 1.0mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.6.inst.cfg index 6866799752a..b5c1b5a457a 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 1.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.8.inst.cfg index a7b08617c65..c25d184d817 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 1.2mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.05.inst.cfg index 0aa380fcffc..e277ae7d215 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.05.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.05 -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.1.inst.cfg index 487bac34b24..1bc5d20d89a 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.1.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.15.inst.cfg index bdf235bd295..f9d453be320 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.15.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.15 -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.2.inst.cfg index 4ac4a2b7986..cc7fd06726a 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.2.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.3.inst.cfg index bdef20e4f87..8a12a51635d 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.3.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.4.inst.cfg index 897f9fc63a1..a9b846ca8bc 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.4.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.6.inst.cfg index 1203ab3c8df..03e6b0b6c5f 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.6.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.8.inst.cfg index 9fd1c538119..faa311ad573 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.8.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.1.inst.cfg index 70de54d92f3..f219f6e880c 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 22 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.2.inst.cfg index faa45bd0d8d..68455d34537 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 22 type = quality variant = Steel 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.3.inst.cfg index eb8aec270f0..e6e3508722b 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 22 type = quality variant = Steel 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.4.inst.cfg index 75c4f287eb6..a34676603ea 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 22 type = quality variant = Steel 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.6.inst.cfg index 45f129d8b42..36d3e3351ca 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 22 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.05.inst.cfg index 5349318ce59..139fff75b02 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.05 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.1.inst.cfg index 515114f3a22..44a7d230805 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.15.inst.cfg index 9b81d1096a0..e36d71db8e8 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.15 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.1.inst.cfg index d039abd7d7b..72c7db1513f 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.2.inst.cfg index 9a3f73e717c..01d2f6e0e4c 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.3.inst.cfg index f5c8e5c226c..cb03a9decc0 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.2.inst.cfg index 9e24a016dbc..17164e0ab89 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 0.6mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.4.inst.cfg index 0457db771eb..4aee58e6f32 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 0.6mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.4.inst.cfg index c27869d8587..c3171fcb896 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.6.inst.cfg index 54a8cf3c59b..130b80c9bc6 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.4.inst.cfg index 5eecef0be1e..c058d2f937d 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 1.0mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.6.inst.cfg index e99408614c0..e3e286cd317 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.8.inst.cfg index d89273d34bd..4da458f122e 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.6.inst.cfg index 6e4e2441df3..11120db31cc 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 1.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.8.inst.cfg index 2ee463e2f76..9ffc2f057ca 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 22 type = quality variant = Serie 1.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.05.inst.cfg index 6e26fa8520d..c5146b18c2c 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.05.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.05 -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.1.inst.cfg index 621303c03f5..2c2a6140d5e 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.1.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.15.inst.cfg index 37bcb1de38c..f504d2df4a8 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.15.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.15 -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.2.inst.cfg index 9b3c4204614..25491d48367 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.2.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.3.inst.cfg index 29dcfd687e8..88559bb8ddb 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.3.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.4.inst.cfg index 11fa0af1202..ec48205bd8b 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.4.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.6.inst.cfg index a84246755cf..1fa9953ada6 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.6.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.8.inst.cfg index 2a35c530291..a0f60cc1e80 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.8.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.1.inst.cfg index 87b536ce003..5f877759d79 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.2.inst.cfg index 7caa4f19b35..4457176cee4 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.3.inst.cfg index 3d18ae5645d..014d2a0a6ca 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.4.inst.cfg index 26c55325d3c..fda7f5bef86 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.6inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.6inst.cfg index f6f9bdcfd5a..b338c04c60a 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.6inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.6inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = dagoma_sigma [metadata] -setting_version = 23 +setting_version = 22 type = quality quality_type = h0.6 weight = -3 diff --git a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.8.inst.cfg index c0dd1bdc228..a0346640b8c 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm weight = -4 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.1.inst.cfg index 39d1311f88b..f4854e35901 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.1 -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.2.inst.cfg index 30bd0b88f4a..fe081fea2b0 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.2 -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.3.inst.cfg index 6f5e1594a3d..5fc3621a60b 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.3 -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.4.inst.cfg index 11627f7cc01..7fa09620a2e 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.4 -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.6.inst.cfg index 13f032f573b..fe91f957688 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.6 -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.8.inst.cfg index 2d3a252effa..ee029f1031c 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.8 -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg index 2f4b38a21cb..9f24b9ff18f 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 22 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg index 6cf00327bc3..8792a7527a8 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 22 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg index 89f3b80443e..c38b789f6b7 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 22 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg index d4bfe2a43de..035ab244cca 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 22 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg index d8e4c1c2e2d..193c64708bd 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 22 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg index a5e83f03bee..e961f9c59eb 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 22 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg index 94261daf9e1..eb38d71eec2 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 22 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg index 16b40d8c6b2..33a8956b39a 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 22 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg index b6973e84ae1..540dc947b2b 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 22 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg index d69a78f115e..bd6d2b41769 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 22 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg index 3f1fbabc677..2da4d4af4ff 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 22 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg index 8c0008450de..82ae79a60d5 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 22 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.1.inst.cfg index 6d675bba9cc..62b8f6da3e9 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.1.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.2.inst.cfg index 254c651f8bd..e6467c116b0 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.2.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.3.inst.cfg index 055d0a803ea..3f2f23cc15e 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.3.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.4.inst.cfg index e64d5457252..9fbedce8b4a 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.4.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.6.inst.cfg index a0d307ee22c..45f5d6f59b6 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.6.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg index 982b7761fa5..26368409b28 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 22 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.2.inst.cfg index 235498bc96f..9d860526ac9 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 22 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg index 290910742d8..e9cbd8f8c0a 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 22 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg index 58656290ee4..f0d1931321b 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 22 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg index be38030f9fc..d7430e59530 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 22 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg index f313d739e24..a431051e77b 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 22 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.1.inst.cfg index 3b0c42ca937..ddcdb5a4e43 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.1.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.2.inst.cfg index 5755713fe3f..b5a534784dc 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.2.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.3.inst.cfg index a055df78fb3..a648eee325a 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.3.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.4.inst.cfg index 0f39dc88039..b173c5e6f2e 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.4.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.6.inst.cfg index 9640066226d..70c094d2e35 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.6.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg index 6156764dbf4..d7009cd72f0 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 22 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.2.inst.cfg index d0aad40ed39..bc1c894bccf 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 22 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg index 456c6ea7983..380e162e1c4 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 22 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg index d365c172a41..3baede10207 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 22 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg index 7dee9e73175..df97ec19f57 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 22 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg index d5e2a394a06..64237734781 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 22 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_A.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_A.inst.cfg index e42c085ea20..11aa6f6507c 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_A.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D005 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_B.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_B.inst.cfg index 20f232643c0..2f83de4ed00 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_B.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D010 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_C.inst.cfg index b62f57aab6b..83178814300 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_A.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_A.inst.cfg index e8e1200b577..31a1896b583 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_A.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D005 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_B.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_B.inst.cfg index 78e3e522581..5377ed0e30a 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_B.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D010 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_C.inst.cfg index 75321948b3d..acc20d48114 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_D.inst.cfg index 43e7c86bbaf..a9eb22c049f 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_E.inst.cfg index 255e5e84ac3..c3eb63c1cdc 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_C.inst.cfg index 94ff2c2f315..1e1104c7d5c 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_D.inst.cfg index 212aaf3863c..af25db2d411 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_E.inst.cfg index 7d5b705561c..e7af80eea9e 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_F.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_F.inst.cfg index 58c39a178de..d75f2de82f6 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_F.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D045 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_A.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_A.inst.cfg index 168d4644531..18c60ed91f1 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_A.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D005 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_B.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_B.inst.cfg index aa26014230d..2d983918046 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_B.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D010 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_C.inst.cfg index 1bbd8503576..8565f8b755a 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_A.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_A.inst.cfg index df0b816a227..9f0b4b686a4 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_A.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D005 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_B.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_B.inst.cfg index b8557252d5b..a00fb62edf0 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_B.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D010 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_C.inst.cfg index f9ecee8b9ad..de41c515069 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_D.inst.cfg index 5129278efd4..f44d704144c 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_E.inst.cfg index 1e6378bbff6..47bec0fb2b0 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_C.inst.cfg index ad052174fd0..52f4cb6d183 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_D.inst.cfg index 8f04ff05be3..21d53035f95 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_E.inst.cfg index c6fd1a5b34e..916fe406c74 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_F.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_F.inst.cfg index 7a281473bfd..2ba586ef71a 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_F.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D045 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_D.inst.cfg index dee783d9efe..dc5351515bb 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 23 +setting_version = 22 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_E.inst.cfg index 39cd500d38d..2d0a92bdce5 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 23 +setting_version = 22 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_F.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_F.inst.cfg index 5cd566790ae..fc327140a84 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_F.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D045 -setting_version = 23 +setting_version = 22 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_G.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_G.inst.cfg index bd2767eb92a..f3bc78f2ca2 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_G.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D060 -setting_version = 23 +setting_version = 22 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_D.inst.cfg index 657f0acb132..c53bb930fbd 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 23 +setting_version = 22 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_E.inst.cfg index ecd5808a634..7753924c315 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 23 +setting_version = 22 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_F.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_F.inst.cfg index 073abec7a4c..78ff239fedb 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_F.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D045 -setting_version = 23 +setting_version = 22 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_G.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_G.inst.cfg index cc893ee6dcd..124a0663c98 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_G.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D060 -setting_version = 23 +setting_version = 22 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_A.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_A.inst.cfg index ddd1eb6d159..c17e03cca79 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_A.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D005 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_B.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_B.inst.cfg index 42681e7332b..351fe10bac6 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_B.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D010 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_C.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_C.inst.cfg index 48620f80def..7142884b518 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_C.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D015 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_D.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_D.inst.cfg index 814a31f541a..42b997af7ae 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_D.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D020 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_E.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_E.inst.cfg index 3e58d17c2b1..60faed8b770 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_E.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D030 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_C.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_C.inst.cfg index 422fd262ebf..c0fe8ef102c 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_C.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D015 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_D.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_D.inst.cfg index 7c09cea5e62..93b85e78f8e 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_D.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D020 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_E.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_E.inst.cfg index 04fd4eb0001..1d930aae1ff 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_E.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D030 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_F.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_F.inst.cfg index e69dbee1da9..c5b90b06878 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_F.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D045 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_A.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_A.inst.cfg index 8fa17b68ae7..98f25804006 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_A.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D005 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_B.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_B.inst.cfg index 228f9ef2ead..fbfcb4447f7 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_B.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D010 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_C.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_C.inst.cfg index f7759e4ac25..5f8c6766b46 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_C.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D015 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_D.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_D.inst.cfg index 40ab119290e..4e409923b8e 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_D.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D020 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_E.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_E.inst.cfg index f12afe9f2f4..4c66839fbcb 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_E.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D030 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_C.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_C.inst.cfg index 28d9bd7a1e4..8063002f957 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_C.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D015 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_D.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_D.inst.cfg index 4926b470de9..d1759d62d34 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_D.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D020 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_E.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_E.inst.cfg index 83bc04f13b8..8101fbe35f4 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_E.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D030 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_F.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_F.inst.cfg index de3b81ec1cf..56e1b5d3139 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_F.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D045 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_A.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_A.inst.cfg index 84e69b2c51b..b50557725d2 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_A.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D005 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_B.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_B.inst.cfg index e751ff9df69..0e8054dd279 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_B.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D010 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_C.inst.cfg index 63fe58d5a7c..bd45965d4b8 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_A.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_A.inst.cfg index 7feff9db8dd..f020d2f102c 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_A.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D005 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_B.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_B.inst.cfg index 63f28107d5f..295e777a2f2 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_B.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D010 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_C.inst.cfg index a4ac0de94f5..7b39f2a7f9b 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_D.inst.cfg index 8e0a0f89f9a..d2c3add06dd 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_E.inst.cfg index a8d4d43e62e..dfbf63f11cb 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_C.inst.cfg index 639b632459a..0d8b1dae2a5 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_D.inst.cfg index 878eb66f4fe..f6fffd5ba60 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_E.inst.cfg index 9beead6171d..9b1ba588003 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_F.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_F.inst.cfg index d443dd99fce..16d09699dc0 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_F.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D045 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_A.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_A.inst.cfg index 94a9161ac1c..5e7be2d1fb5 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_A.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D005 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_B.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_B.inst.cfg index 963b6330e34..bf01db2049f 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_B.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D010 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_C.inst.cfg index 813ef05b3ec..ecbfacae2b9 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_A.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_A.inst.cfg index dd9f03094a7..241686cb365 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_A.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D005 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_B.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_B.inst.cfg index 85c84cc075c..b9a32b3cb78 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_B.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D010 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_C.inst.cfg index 1963e7531f7..448c3e5967c 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_D.inst.cfg index edb5b6a2b34..6ab71e22956 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_E.inst.cfg index bfe360e0a09..75844ac2dc0 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_C.inst.cfg index 1f9fe6362d9..2c3bfd17eca 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_D.inst.cfg index 7c75a8f9745..64a49a9700a 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_E.inst.cfg index f054df6a1d9..063dcf8aac0 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_F.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_F.inst.cfg index c54e26b6a3c..9b4ef0761bb 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_F.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D045 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_D.inst.cfg index 63fc3efa35c..cf8780e0d3b 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 23 +setting_version = 22 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_E.inst.cfg index b9d742bae39..4f9ad94b0e1 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 23 +setting_version = 22 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_F.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_F.inst.cfg index 892a526b0dc..4a0a27225bb 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_F.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D045 -setting_version = 23 +setting_version = 22 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_G.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_G.inst.cfg index 25a4e96755f..80bd1ed96ee 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_G.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D060 -setting_version = 23 +setting_version = 22 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_D.inst.cfg index 00aacd61410..29432968918 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 23 +setting_version = 22 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_E.inst.cfg index 91c16e5c672..3b0f9b28921 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 23 +setting_version = 22 type = quality variant = V-FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_F.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_F.inst.cfg index 3668246197d..1744414d276 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_F.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D045 -setting_version = 23 +setting_version = 22 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_G.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_G.inst.cfg index 519e1f5eaf7..e8d01f930d0 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_G.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D060 -setting_version = 23 +setting_version = 22 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg index 1149937c879..33b5c2c1110 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D005 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg index 352d4de3418..5be0dc95270 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D010 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg index e06a0a73228..76aa867f8fa 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D015 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg index 7ac8c617152..20bb125cd9d 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg index b39b5d2e963..cc0224cf23f 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg index 7a3ef1b326d..ec2ebdc647f 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D015 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg index 373de4e4b45..136ec93d164 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg index 0b175880b97..3a0a94782cb 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg index 508911edfd4..719a4bdcbd0 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D045 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg index 0ecb10b88b8..4486a1d3bc3 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D005 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg index fcd493bc51c..b938502e857 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D010 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg index 208f17e7c3b..3b88ca6b671 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D015 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg index 07bf612a394..41347177703 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg index eb2e6a695e0..e267e7c6eb1 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg index 644cc467e4c..35e2e07b41d 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D015 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg index 219153ea6d8..dd944cbfd1c 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg index a654a9c09d2..8aa462e206f 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg index fb793f17f6b..0691a01debd 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D045 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg index 13026b5e409..a4d0582c3a1 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 23 +setting_version = 22 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg index 21dc4e258eb..831e17c018e 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 23 +setting_version = 22 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg index 7bc46489766..d9a57d60123 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D045 -setting_version = 23 +setting_version = 22 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg index b8e9e60a71a..8408fbc0148 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D060 -setting_version = 23 +setting_version = 22 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg index 99c9fbb302f..18c813a79a2 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 23 +setting_version = 22 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg index 2d0575447bb..660c536a5e2 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 23 +setting_version = 22 type = quality variant = V-FBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg index 6aaad334479..5dbea58c49f 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D045 -setting_version = 23 +setting_version = 22 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg index 854c30e5461..9bfd649e99e 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D060 -setting_version = 23 +setting_version = 22 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_B.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_B.inst.cfg index 29601ca25eb..b0eafd229af 100644 --- a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_B.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D010 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_C.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_C.inst.cfg index 136ddf125b6..dae89bcf980 100644 --- a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_C.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D015 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_D.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_D.inst.cfg index 6e67b7bc50d..1df4e6596a4 100644 --- a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_D.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D020 -setting_version = 23 +setting_version = 22 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_B.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_B.inst.cfg index 58f9f71b7d3..710e0f56159 100755 --- a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_B.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D010 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_C.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_C.inst.cfg index 53b1fdebe11..fd47c2736d3 100755 --- a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_C.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D015 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_D.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_D.inst.cfg index cb83ab0b667..f55395526ee 100755 --- a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_D.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D020 -setting_version = 23 +setting_version = 22 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/deltacomb_global_A.inst.cfg b/resources/quality/deltacomb/deltacomb_global_A.inst.cfg index ead1fb1073a..37253cf6a9b 100755 --- a/resources/quality/deltacomb/deltacomb_global_A.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D005 -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/deltacomb/deltacomb_global_B.inst.cfg b/resources/quality/deltacomb/deltacomb_global_B.inst.cfg index 91d2b0c01dd..f7875876018 100755 --- a/resources/quality/deltacomb/deltacomb_global_B.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D010 -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/deltacomb/deltacomb_global_C.inst.cfg b/resources/quality/deltacomb/deltacomb_global_C.inst.cfg index e2ed0c55ec7..de606ef4240 100755 --- a/resources/quality/deltacomb/deltacomb_global_C.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D015 -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/deltacomb/deltacomb_global_D.inst.cfg b/resources/quality/deltacomb/deltacomb_global_D.inst.cfg index c5a78b5fee7..0f2d7c8b701 100755 --- a/resources/quality/deltacomb/deltacomb_global_D.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D020 -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/deltacomb/deltacomb_global_E.inst.cfg b/resources/quality/deltacomb/deltacomb_global_E.inst.cfg index c4db01ca7a8..cdef82876d9 100755 --- a/resources/quality/deltacomb/deltacomb_global_E.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D030 -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/deltacomb/deltacomb_global_F.inst.cfg b/resources/quality/deltacomb/deltacomb_global_F.inst.cfg index d8015320e40..2f7f2f15ed7 100755 --- a/resources/quality/deltacomb/deltacomb_global_F.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D045 -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/deltacomb/deltacomb_global_G.inst.cfg b/resources/quality/deltacomb/deltacomb_global_G.inst.cfg index 86e6afbd003..412279110b6 100755 --- a/resources/quality/deltacomb/deltacomb_global_G.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D060 -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/diy220/diy220_draft.inst.cfg b/resources/quality/diy220/diy220_draft.inst.cfg index b72d99e6b79..c403531471c 100644 --- a/resources/quality/diy220/diy220_draft.inst.cfg +++ b/resources/quality/diy220/diy220_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/diy220/diy220_fast.inst.cfg b/resources/quality/diy220/diy220_fast.inst.cfg index 96cc12594c9..48cc3518ab1 100644 --- a/resources/quality/diy220/diy220_fast.inst.cfg +++ b/resources/quality/diy220/diy220_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/diy220/diy220_high.inst.cfg b/resources/quality/diy220/diy220_high.inst.cfg index 409b655fedf..094879b56e2 100644 --- a/resources/quality/diy220/diy220_high.inst.cfg +++ b/resources/quality/diy220/diy220_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/diy220/diy220_normal.inst.cfg b/resources/quality/diy220/diy220_normal.inst.cfg index c9d06fff3bf..ee6b0b3ff45 100644 --- a/resources/quality/diy220/diy220_normal.inst.cfg +++ b/resources/quality/diy220/diy220_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/draft.inst.cfg b/resources/quality/draft.inst.cfg index b0510350d24..50a7d5ddc63 100644 --- a/resources/quality/draft.inst.cfg +++ b/resources/quality/draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.10.inst.cfg index 6a5928fe395..fd5d0c54f8c 100644 --- a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.15.inst.cfg index 94e0ff76db3..e522e06d337 100644 --- a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.20.inst.cfg index 8e0753df217..149d17021e6 100644 --- a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.30.inst.cfg index d15fe355659..9c58ee7fc9c 100644 --- a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.10.inst.cfg index 9c0d0b373f5..3543bf211eb 100644 --- a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.15.inst.cfg index caae30a653a..588746ddc42 100644 --- a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.20.inst.cfg index 821aad26e05..ebb268aae22 100644 --- a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.30.inst.cfg index dda2efc18d3..e992206e6b5 100644 --- a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/elegoo_layer_0.05.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.05.inst.cfg index 80daf5e2081..0175d5dbfaa 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.05.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_005 -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.10.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.10.inst.cfg index b8205a51e90..d4fa921e7b7 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.15.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.15.inst.cfg index 639416de9ad..572a4a7c525 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.20.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.20.inst.cfg index 28df9f27f66..ee4226a6a87 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.30.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.30.inst.cfg index 1027aefde0d..dea809b0635 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 22 type = quality weight = -6 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.40.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.40.inst.cfg index abb411e9aac..cca7b701aaa 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.40.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_040 -setting_version = 23 +setting_version = 22 type = quality weight = -6 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.60.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.60.inst.cfg index 60854868a7b..a7ff7a2610d 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.60.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.60.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_060 -setting_version = 23 +setting_version = 22 type = quality weight = -6 diff --git a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.10.inst.cfg index 31f6f2eea50..9080be34e67 100644 --- a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.15.inst.cfg index 4ceba7f60de..59a628a2c54 100644 --- a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.20.inst.cfg index abaf0e45b0f..6ff38ad0851 100644 --- a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.30.inst.cfg index 05ddbca9c9e..707dac9c581 100644 --- a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.05.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.05.inst.cfg index e7c17603c42..c5ed8f40f81 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.05.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_005 -setting_version = 23 +setting_version = 22 type = quality variant = 0.20mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.10.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.10.inst.cfg index 56425ebc325..fe92906bf3c 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.20mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg index 18057cbd235..d5a2f73729c 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg index 5787dec9abb..e86f4546649 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg index 61f1200dc5f..db7e5a43c7f 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg index 64e054eb603..d84cc9e6563 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.15.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.15.inst.cfg index a3597c5cfeb..043662209bd 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.60mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.20.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.20.inst.cfg index 6f15cd12b0b..b47c51abeba 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.60mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.30.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.30.inst.cfg index 326df93ddf4..38de41d075c 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 22 type = quality variant = 0.60mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.40.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.40.inst.cfg index daf028784f2..efb1ababd0c 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.40.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_040 -setting_version = 23 +setting_version = 22 type = quality variant = 0.60mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg index 64a766b544e..b6c63fad0fd 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 22 type = quality variant = 0.80mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg index e2eecb087f2..1e3eec080a6 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_040 -setting_version = 23 +setting_version = 22 type = quality variant = 0.80mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg index ac50ba359c6..09bc57ffea1 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_060 -setting_version = 23 +setting_version = 22 type = quality variant = 0.80mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.10.inst.cfg index b3354fcc423..32e2de589d9 100644 --- a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.15.inst.cfg index 236f4546c7e..d2cd594cb72 100644 --- a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.20.inst.cfg index 4bff2a9a5c3..1cd9f3d6ef8 100644 --- a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.30.inst.cfg index fdace5abf31..e5cc440ebab 100644 --- a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg index 40ddd88c0dc..e05b278e4c8 100644 --- a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg index 9a8a5ff0be5..412f393a459 100644 --- a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg index 4035d17d246..df3353baed8 100644 --- a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg index f9dc125bba7..8219690265c 100644 --- a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg index 615dc1ef52f..a0ae0016503 100644 --- a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg index ced818bcec1..228eea99dc3 100644 --- a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg index 29877b0ff2f..df1e5802e7f 100644 --- a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg index d9efc991627..335a479a34f 100644 --- a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.05.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.05.inst.cfg index 9abf9fd779f..8deff4ba88c 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.05.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_005 -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.10.inst.cfg index 67163bd6a09..4d19d0f21bd 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.15.inst.cfg index 6cc3c34161b..64f00befdfb 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.20.inst.cfg index 9016c13baf4..06995a4e438 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.30.inst.cfg index 3acd8e9c19a..09a6e30e7cd 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 22 type = quality weight = -6 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.40.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.40.inst.cfg index 66a007ae306..ac180ca1ab7 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.40.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_040 -setting_version = 23 +setting_version = 22 type = quality weight = -6 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.60.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.60.inst.cfg index c0f861ed115..a053731bf42 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.60.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.60.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_060 -setting_version = 23 +setting_version = 22 type = quality weight = -6 diff --git a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg index fdbe91aecbf..52b8b688105 100644 --- a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg index 12ab4871e61..ee9fda159b8 100644 --- a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg index 66841fad83a..0c7c3abf04b 100644 --- a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg index 6adae27f5d2..a3043234b60 100644 --- a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg index 7ec14659ba5..66eb9f49c08 100644 --- a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg index 01f00569fee..209ce52fa2b 100644 --- a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg index 963b61f6977..9805a1ae5a8 100644 --- a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg index 256c231275b..cb6ca323e69 100644 --- a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg index b9a1aa3dff4..f5c76ef6c7a 100644 --- a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg index ac71e656147..8762cb12bca 100644 --- a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg index 95fc95df77a..cb3a64810ec 100644 --- a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg index 84b045be8bb..e04d7319e9b 100644 --- a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_draft.inst.cfg b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_draft.inst.cfg index d527b02bca3..4af6b802be4 100644 --- a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_draft.inst.cfg +++ b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_fine.inst.cfg b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_fine.inst.cfg index 267d5935a1f..11ee7992d3e 100644 --- a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_fine.inst.cfg +++ b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_normal.inst.cfg b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_normal.inst.cfg index e2dc623cfc7..19742215b62 100644 --- a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_normal.inst.cfg +++ b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_draft.inst.cfg b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_draft.inst.cfg index 2a8f9f73de5..74ecbb5c973 100644 --- a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_draft.inst.cfg +++ b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_fine.inst.cfg b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_fine.inst.cfg index 5945ec42dfe..4ac4c374a26 100644 --- a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_fine.inst.cfg +++ b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_normal.inst.cfg b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_normal.inst.cfg index c747fb3b2d6..9474f6a4eb8 100644 --- a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_normal.inst.cfg +++ b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/eryone_er20/eryone_er20_draft.inst.cfg b/resources/quality/eryone_er20/eryone_er20_draft.inst.cfg index 27a692eda50..6da0c1df028 100644 --- a/resources/quality/eryone_er20/eryone_er20_draft.inst.cfg +++ b/resources/quality/eryone_er20/eryone_er20_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/eryone_er20/eryone_er20_high.inst.cfg b/resources/quality/eryone_er20/eryone_er20_high.inst.cfg index 582b0f6206b..02018afa924 100644 --- a/resources/quality/eryone_er20/eryone_er20_high.inst.cfg +++ b/resources/quality/eryone_er20/eryone_er20_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/eryone_er20/eryone_er20_normal.inst.cfg b/resources/quality/eryone_er20/eryone_er20_normal.inst.cfg index 79ed3bf4e05..30387220c0a 100644 --- a/resources/quality/eryone_er20/eryone_er20_normal.inst.cfg +++ b/resources/quality/eryone_er20/eryone_er20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/eryone_thinker/eryone_thinker_extra_fast.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_extra_fast.inst.cfg index aa29fd73a0a..cfaa2a91526 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_extra_fast.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/eryone_thinker/eryone_thinker_fast.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_fast.inst.cfg index 6d02bfab862..aec233fc9f1 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_fast.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/eryone_thinker/eryone_thinker_fine.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_fine.inst.cfg index 98d77a84087..d4a0e28def6 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_fine.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 22 type = quality weight = 2 diff --git a/resources/quality/eryone_thinker/eryone_thinker_high.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_high.inst.cfg index 559a547b757..82e16a4d1e8 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_high.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/eryone_thinker/eryone_thinker_normal.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_normal.inst.cfg index 1baad098696..1a27f0b991a 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_normal.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/extra_coarse.inst.cfg b/resources/quality/extra_coarse.inst.cfg index 2ef72cde597..2dabe4ae3e5 100644 --- a/resources/quality/extra_coarse.inst.cfg +++ b/resources/quality/extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/extra_fast.inst.cfg b/resources/quality/extra_fast.inst.cfg index 3e432ede967..d4f8d0fbfed 100644 --- a/resources/quality/extra_fast.inst.cfg +++ b/resources/quality/extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/fabtotum/fabtotum_abs_fast.inst.cfg b/resources/quality/fabtotum/fabtotum_abs_fast.inst.cfg index 28dd970db6b..9a0a77a2d09 100644 --- a/resources/quality/fabtotum/fabtotum_abs_fast.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_abs_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = Lite 0.4 mm weight = -1 diff --git a/resources/quality/fabtotum/fabtotum_abs_high.inst.cfg b/resources/quality/fabtotum/fabtotum_abs_high.inst.cfg index e9b55c86359..571f41a226b 100644 --- a/resources/quality/fabtotum/fabtotum_abs_high.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = Lite 0.4 mm weight = 1 diff --git a/resources/quality/fabtotum/fabtotum_abs_normal.inst.cfg b/resources/quality/fabtotum/fabtotum_abs_normal.inst.cfg index dcacb56d017..e745ed6a7b0 100644 --- a/resources/quality/fabtotum/fabtotum_abs_normal.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Lite 0.4 mm weight = 0 diff --git a/resources/quality/fabtotum/fabtotum_nylon_fast.inst.cfg b/resources/quality/fabtotum/fabtotum_nylon_fast.inst.cfg index 3858c9d91ac..20ca90e6292 100644 --- a/resources/quality/fabtotum/fabtotum_nylon_fast.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = Lite 0.4 mm weight = -1 diff --git a/resources/quality/fabtotum/fabtotum_nylon_high.inst.cfg b/resources/quality/fabtotum/fabtotum_nylon_high.inst.cfg index 45bef0403c5..349d84c7f72 100644 --- a/resources/quality/fabtotum/fabtotum_nylon_high.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = Lite 0.4 mm weight = 1 diff --git a/resources/quality/fabtotum/fabtotum_nylon_normal.inst.cfg b/resources/quality/fabtotum/fabtotum_nylon_normal.inst.cfg index 55532ceb2ac..11e69d6a7fa 100644 --- a/resources/quality/fabtotum/fabtotum_nylon_normal.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Lite 0.4 mm weight = 0 diff --git a/resources/quality/fabtotum/fabtotum_pla_fast.inst.cfg b/resources/quality/fabtotum/fabtotum_pla_fast.inst.cfg index 92c4f0dfeb9..d6e02449415 100644 --- a/resources/quality/fabtotum/fabtotum_pla_fast.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = Lite 0.4 mm weight = -1 diff --git a/resources/quality/fabtotum/fabtotum_pla_high.inst.cfg b/resources/quality/fabtotum/fabtotum_pla_high.inst.cfg index 5f5d9a87dc8..635704ed986 100644 --- a/resources/quality/fabtotum/fabtotum_pla_high.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = Lite 0.4 mm weight = 1 diff --git a/resources/quality/fabtotum/fabtotum_pla_normal.inst.cfg b/resources/quality/fabtotum/fabtotum_pla_normal.inst.cfg index b6f13d5efe3..e8bfa117da1 100644 --- a/resources/quality/fabtotum/fabtotum_pla_normal.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Lite 0.4 mm weight = 0 diff --git a/resources/quality/fabtotum/fabtotum_tpu_fast.inst.cfg b/resources/quality/fabtotum/fabtotum_tpu_fast.inst.cfg index 3f206edb69f..413578becb1 100644 --- a/resources/quality/fabtotum/fabtotum_tpu_fast.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_tpu_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = Lite 0.4 mm weight = -1 diff --git a/resources/quality/fabtotum/fabtotum_tpu_high.inst.cfg b/resources/quality/fabtotum/fabtotum_tpu_high.inst.cfg index e5758fd6103..96c9459e2b1 100644 --- a/resources/quality/fabtotum/fabtotum_tpu_high.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_tpu_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = Lite 0.4 mm weight = 1 diff --git a/resources/quality/fabtotum/fabtotum_tpu_normal.inst.cfg b/resources/quality/fabtotum/fabtotum_tpu_normal.inst.cfg index dc86601a444..acbc66cd2f9 100644 --- a/resources/quality/fabtotum/fabtotum_tpu_normal.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_tpu_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Lite 0.4 mm weight = 0 diff --git a/resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg index 98022f13717..53b241e1e7d 100644 --- a/resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_abs quality_type = Draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg index 8b3864f9be1..9cb37a009e7 100644 --- a/resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_abs quality_type = Fine -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg index c36f61cb8df..0cbba43d8b8 100644 --- a/resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_abs quality_type = Normal -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg index 61d33928a04..16662f6dbb5 100644 --- a/resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_asa quality_type = Draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg index 33af821e056..dff57e30dc3 100644 --- a/resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_asa quality_type = Fine -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg index f6a03c67251..439851223fb 100644 --- a/resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_asa quality_type = Normal -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg index ec39636406a..1967e62c5c1 100644 --- a/resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_hips quality_type = Draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg index 44870395ff1..d722ca9b7bf 100644 --- a/resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_hips quality_type = Fine -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg index 55d0cbdfe57..6c9faff53e3 100644 --- a/resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_hips quality_type = Normal -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg index ac01503afa9..d9de619b077 100644 --- a/resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_nylon quality_type = Draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg index 70cf6b75cfe..ad46a8a0f93 100644 --- a/resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_nylon quality_type = Fine -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg index 2afb912967d..8bf3d5f1727 100644 --- a/resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_nylon quality_type = Normal -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg index c9668fec6a2..536bc78817f 100644 --- a/resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_petg quality_type = Draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg index 26ac9b1eefa..5bdc47aa27c 100644 --- a/resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_petg quality_type = Fine -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg index 5596b8911d5..507f1919dc1 100644 --- a/resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_petg quality_type = Normal -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg index 4e0841b5fab..e9f2da3220e 100644 --- a/resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_pla quality_type = Draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg index faca76f3598..85b3e983e4a 100644 --- a/resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_pla quality_type = Fine -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg index db95936528b..7f3d48bb132 100644 --- a/resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_pla quality_type = Normal -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg index d992ad808fa..60334ab70a3 100644 --- a/resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_tpe quality_type = Draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg index 6751fa489a0..6754b148d15 100644 --- a/resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_tpe quality_type = Fine -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg index be5bf2a03b1..37b421399a5 100644 --- a/resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_tpe quality_type = Normal -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/fast.inst.cfg b/resources/quality/fast.inst.cfg index 2bd950fbf28..7fc64242506 100644 --- a/resources/quality/fast.inst.cfg +++ b/resources/quality/fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/flashforge/abs/flashforge_0.20_abs_super.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.20_abs_super.inst.cfg index ceeb33ebb0e..2d8aefe9f91 100644 --- a/resources/quality/flashforge/abs/flashforge_0.20_abs_super.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.20_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.20_abs_ultra.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.20_abs_ultra.inst.cfg index 59f9dfc21b7..d4593e2f2b9 100644 --- a/resources/quality/flashforge/abs/flashforge_0.20_abs_ultra.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.20_abs_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.30_abs_adaptive.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.30_abs_adaptive.inst.cfg index c0ca53f77e1..61dbce2980a 100644 --- a/resources/quality/flashforge/abs/flashforge_0.30_abs_adaptive.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.30_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.30_abs_standard.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.30_abs_standard.inst.cfg index 214e8838d05..792f5d6e28c 100644 --- a/resources/quality/flashforge/abs/flashforge_0.30_abs_standard.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.30_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.30_abs_super.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.30_abs_super.inst.cfg index 840be248622..a37b7f6f131 100644 --- a/resources/quality/flashforge/abs/flashforge_0.30_abs_super.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.30_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.40_abs_adaptive.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.40_abs_adaptive.inst.cfg index 563fabb46a0..1222bdcdabd 100644 --- a/resources/quality/flashforge/abs/flashforge_0.40_abs_adaptive.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.40_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.40_abs_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.40_abs_draft.inst.cfg index 16442849542..0931880f756 100644 --- a/resources/quality/flashforge/abs/flashforge_0.40_abs_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.40_abs_low.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.40_abs_low.inst.cfg index 64deb8c2575..cd6705a7eb5 100644 --- a/resources/quality/flashforge/abs/flashforge_0.40_abs_low.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.40_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.40_abs_standard.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.40_abs_standard.inst.cfg index d70262d6e3e..785d8001da9 100644 --- a/resources/quality/flashforge/abs/flashforge_0.40_abs_standard.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.40_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.40_abs_super.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.40_abs_super.inst.cfg index dc92a362279..c29879a70fb 100644 --- a/resources/quality/flashforge/abs/flashforge_0.40_abs_super.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.40_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.50_abs_adaptive.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.50_abs_adaptive.inst.cfg index a3540c2f2a3..7a2a5f1c531 100644 --- a/resources/quality/flashforge/abs/flashforge_0.50_abs_adaptive.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.50_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.50_abs_coarse.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.50_abs_coarse.inst.cfg index 2af3abe070b..8a7f545da38 100644 --- a/resources/quality/flashforge/abs/flashforge_0.50_abs_coarse.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.50_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.50_abs_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.50_abs_draft.inst.cfg index d1c103a95bb..cbca7b4f4e4 100644 --- a/resources/quality/flashforge/abs/flashforge_0.50_abs_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.50_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.50_abs_low.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.50_abs_low.inst.cfg index 8558a9af989..d11945113f8 100644 --- a/resources/quality/flashforge/abs/flashforge_0.50_abs_low.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.50_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.50_abs_standard.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.50_abs_standard.inst.cfg index 9d95220b242..8f9a0d11115 100644 --- a/resources/quality/flashforge/abs/flashforge_0.50_abs_standard.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.50_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.60_abs_coarse.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.60_abs_coarse.inst.cfg index 34a0265bad9..25ab9725170 100644 --- a/resources/quality/flashforge/abs/flashforge_0.60_abs_coarse.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.60_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.60_abs_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.60_abs_draft.inst.cfg index abe8341705d..d9bb2bab9bf 100644 --- a/resources/quality/flashforge/abs/flashforge_0.60_abs_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.60_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.60_abs_extra_coarse.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.60_abs_extra_coarse.inst.cfg index 27be971b69d..b4b744f033a 100644 --- a/resources/quality/flashforge/abs/flashforge_0.60_abs_extra_coarse.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.60_abs_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Xcoarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.60_abs_standard.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.60_abs_standard.inst.cfg index ff145872789..f3e0e2b70dc 100644 --- a/resources/quality/flashforge/abs/flashforge_0.60_abs_standard.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.60_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg index aae66cffb2a..a5a800486f3 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg index 3c0cefacdf7..316f5872a70 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfine -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg index 0b679e648b5..b322c2784aa 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg index 19e2ba1fa2c..d329ebb4d95 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg index 1e7d154fa1a..0aacffffcc8 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg index 84e93885264..0a62fdc6646 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg index 4454e4caa83..9ea811006d5 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfast -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg index 89552b7d27f..9d0d042d37f 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg index 5823fde21cf..469930cd21b 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg index 4749e76a583..bd25742c2a2 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg index 2e27fad0d19..691770bca3d 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfast -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg index 544850b5a13..9ad2fc4d398 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg index 51be6df1ef5..69c626d03f4 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfine -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg index 92db3f74973..8d7a92f553f 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg index 44c5c7eb4bc..115387a8153 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg index 9385df49535..46f3f2673b5 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg index 0f7bb26ea3b..c0bc64550d7 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg index eb77c444fcf..14ce91d9f3c 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfast -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg index b3c8daf0420..cdb13c71d15 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg index 9ca8cbbd12d..77e222ddcdd 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg index 577b560d8b6..cb0dd441c29 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg index d04e5f27135..10055e2fa0f 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfast -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg index e58194790cc..b85163b595d 100644 --- a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg index 1cc6c7d5a60..a584b977248 100644 --- a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg index 004c9706413..e976f9f7b44 100644 --- a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/flashforge_adventurer3_draft.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_draft.inst.cfg index 01722e32eac..f1dd467a2bd 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_draft.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/flashforge/flashforge_adventurer3_fast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_fast.inst.cfg index ea2288f7122..300481cd3db 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_fast.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/flashforge/flashforge_adventurer3_fine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_fine.inst.cfg index 57ea1716a0e..553091b10a8 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_fine.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/flashforge/flashforge_adventurer3_normal.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_normal.inst.cfg index 412236a0b41..438b2cc9faf 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_normal.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/flashforge/flashforge_adventurer3_vfast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_vfast.inst.cfg index 2393725b447..fba4eb1091d 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_vfast.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = veryfast -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/flashforge/flashforge_adventurer3_vfine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_vfine.inst.cfg index ef88b8f5156..6ea52128bee 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_vfine.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = veryfine -setting_version = 23 +setting_version = 22 type = quality weight = 2 diff --git a/resources/quality/flashforge/flashforge_adventurer4_draft.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_draft.inst.cfg index f0ea2efb265..7ee52ca8a3a 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_draft.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/flashforge/flashforge_adventurer4_fast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_fast.inst.cfg index 1b1a290eca9..8be5e02e722 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_fast.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/flashforge/flashforge_adventurer4_fine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_fine.inst.cfg index 5045911c777..272e5bc69dc 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_fine.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/flashforge/flashforge_adventurer4_normal.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_normal.inst.cfg index fdfa82e1823..4eb11924fe2 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_normal.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/flashforge/flashforge_adventurer4_vfast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_vfast.inst.cfg index 6049accf3c8..a2e3718bd26 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_vfast.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = veryfast -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/flashforge/flashforge_adventurer4_vfine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_vfine.inst.cfg index 9ad3086e4d9..f7eda2f1949 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_vfine.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = veryfine -setting_version = 23 +setting_version = 22 type = quality weight = 2 diff --git a/resources/quality/flashforge/flashforge_global_0.08_ultra.inst.cfg b/resources/quality/flashforge/flashforge_global_0.08_ultra.inst.cfg index 4d02730890f..e88180b1f31 100644 --- a/resources/quality/flashforge/flashforge_global_0.08_ultra.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.08_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/flashforge/flashforge_global_0.12_super.inst.cfg b/resources/quality/flashforge/flashforge_global_0.12_super.inst.cfg index 0569e335b95..0da733d6f22 100644 --- a/resources/quality/flashforge/flashforge_global_0.12_super.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.12_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/flashforge/flashforge_global_0.16_adaptive.inst.cfg b/resources/quality/flashforge/flashforge_global_0.16_adaptive.inst.cfg index ae3e8dbbf29..bf19c702eb2 100644 --- a/resources/quality/flashforge/flashforge_global_0.16_adaptive.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.16_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/flashforge/flashforge_global_0.20_standard.inst.cfg b/resources/quality/flashforge/flashforge_global_0.20_standard.inst.cfg index 057fd5c1647..7b5c94aa376 100644 --- a/resources/quality/flashforge/flashforge_global_0.20_standard.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/flashforge/flashforge_global_0.28_low.inst.cfg b/resources/quality/flashforge/flashforge_global_0.28_low.inst.cfg index 686394cfc35..ed78aa2e6c6 100644 --- a/resources/quality/flashforge/flashforge_global_0.28_low.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.28_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/flashforge/flashforge_global_0.32_draft.inst.cfg b/resources/quality/flashforge/flashforge_global_0.32_draft.inst.cfg index df8c6440f16..c6506bf1df6 100644 --- a/resources/quality/flashforge/flashforge_global_0.32_draft.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.32_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/flashforge/flashforge_global_0.40_coarse.inst.cfg b/resources/quality/flashforge/flashforge_global_0.40_coarse.inst.cfg index 8ca5ffe6d52..6e807e4ea77 100644 --- a/resources/quality/flashforge/flashforge_global_0.40_coarse.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -6 diff --git a/resources/quality/flashforge/flashforge_global_0.48_extra_coarse.inst.cfg b/resources/quality/flashforge/flashforge_global_0.48_extra_coarse.inst.cfg index 2daeadc9d88..4d25b6eae41 100644 --- a/resources/quality/flashforge/flashforge_global_0.48_extra_coarse.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.48_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Xcoarse -setting_version = 23 +setting_version = 22 type = quality weight = -7 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg index a0c8d9634c1..03b8d5f74e0 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg index fc2a74f13fb..0c4322dfeef 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg index 7287263674a..1047360ee70 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg index 49a5747768a..cddd593db6c 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = veryfast -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg index f381d514043..1742dbd9c3e 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg index f56ef4cea54..7e67c9f1782 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg index 140906c9bb2..c3aecf6625c 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = veryfast -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg index 8a0958494a7..c60aab13839 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg index 2d1d442ae02..4a532fe98b5 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg index 12224722b42..b44810bae86 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg index fe3cb31541a..042d3035224 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = veryfast -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg index 987e14ec9c7..cb40e63d8cb 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg index 5de2fbac402..e66be5bc7ee 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg index 77f453fc032..2d2d8bdbdc9 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = veryfast -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/petg/flashforge_0.2_petg_super.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.2_petg_super.inst.cfg index 3be4591fee4..485effea9c0 100644 --- a/resources/quality/flashforge/petg/flashforge_0.2_petg_super.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.2_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.2_petg_ultra.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.2_petg_ultra.inst.cfg index 28dc975374d..0c469988fec 100644 --- a/resources/quality/flashforge/petg/flashforge_0.2_petg_ultra.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.2_petg_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.30_petg_adaptive.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.30_petg_adaptive.inst.cfg index 36f5894a957..77a7d139578 100644 --- a/resources/quality/flashforge/petg/flashforge_0.30_petg_adaptive.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.30_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.30_petg_standard.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.30_petg_standard.inst.cfg index 328a8a1ef9e..d9e3355b364 100644 --- a/resources/quality/flashforge/petg/flashforge_0.30_petg_standard.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.30_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.30_petg_super.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.30_petg_super.inst.cfg index 05907e516c9..6289044cc74 100644 --- a/resources/quality/flashforge/petg/flashforge_0.30_petg_super.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.30_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.40_petg_adaptive.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.40_petg_adaptive.inst.cfg index c7d703e787e..5bc3a40758c 100644 --- a/resources/quality/flashforge/petg/flashforge_0.40_petg_adaptive.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.40_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.40_petg_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.40_petg_draft.inst.cfg index ff367e74222..8cda9a4e98f 100644 --- a/resources/quality/flashforge/petg/flashforge_0.40_petg_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.40_petg_low.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.40_petg_low.inst.cfg index e0837d68e5a..4812cc11408 100644 --- a/resources/quality/flashforge/petg/flashforge_0.40_petg_low.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.40_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.40_petg_standard.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.40_petg_standard.inst.cfg index b2c7b3ae157..c047e0c1654 100644 --- a/resources/quality/flashforge/petg/flashforge_0.40_petg_standard.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.40_petg_super.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.40_petg_super.inst.cfg index 8254ecd952e..e456f385cec 100644 --- a/resources/quality/flashforge/petg/flashforge_0.40_petg_super.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.40_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.50_petg_adaptive.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.50_petg_adaptive.inst.cfg index 1955a205179..af2991d185c 100644 --- a/resources/quality/flashforge/petg/flashforge_0.50_petg_adaptive.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.50_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.50_petg_coarse.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.50_petg_coarse.inst.cfg index 33450d9d86f..6acb269c0fa 100644 --- a/resources/quality/flashforge/petg/flashforge_0.50_petg_coarse.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.50_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.50_petg_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.50_petg_draft.inst.cfg index b17e8c421f3..b7c9b546688 100644 --- a/resources/quality/flashforge/petg/flashforge_0.50_petg_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.50_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.50_petg_low.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.50_petg_low.inst.cfg index aa39173cb34..26ef92b68f3 100644 --- a/resources/quality/flashforge/petg/flashforge_0.50_petg_low.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.50_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.50_petg_standard.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.50_petg_standard.inst.cfg index ba80b010f48..b630f3f7df3 100644 --- a/resources/quality/flashforge/petg/flashforge_0.50_petg_standard.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.50_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.60_petg_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.60_petg_draft.inst.cfg index 737bb687864..71fcd17ff97 100644 --- a/resources/quality/flashforge/petg/flashforge_0.60_petg_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.60_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.60_petg_extra_coarse.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.60_petg_extra_coarse.inst.cfg index 055eb431556..df2af8aab70 100644 --- a/resources/quality/flashforge/petg/flashforge_0.60_petg_extra_coarse.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.60_petg_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Xcoarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.60_petg_standard.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.60_petg_standard.inst.cfg index aae8dae743d..d926c4ffe8a 100644 --- a/resources/quality/flashforge/petg/flashforge_0.60_petg_standard.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.60_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg index f1dab1f88a9..3405adaae5d 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg index 940aa1b7041..20e2ba9ce5d 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfine -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg index 22338239181..45aebad2451 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg index 94f819068d9..85ef922ea79 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg index 46fcf05f831..ec8d0e4d046 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg index edb4b639320..074d4864ce5 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg index 3873c089a53..66d21845629 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfast -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg index 68caeb589af..4f7d0da1c2d 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg index e360f94600b..2f486d4d5d8 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg index 07e9565243c..9ac73720499 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg index 279130f4dcf..744527c1397 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfast -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg index 68475b9a3f8..aeb666c82dd 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg index a64bce087f9..cb0b7fba373 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfine -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg index 1ff8c936890..ec087730523 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg index 8d6052529a1..84be0afa3b2 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg index fde77f6c689..75bde3cd439 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg index bac296cdd98..5f37b1e8122 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg index a603d564d1d..844195d2df2 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfast -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg index 253ed947c18..2eb93f1216c 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg index 41eeff7317d..ff190b0e238 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg index bbdfb71452c..91d617d2347 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg index bf68f7518cd..22647877b82 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfast -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_0.20_pla_super.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.20_pla_super.inst.cfg index d0f9b2605be..25bb5ab67df 100644 --- a/resources/quality/flashforge/pla/flashforge_0.20_pla_super.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.20_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.20_pla_ultra.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.20_pla_ultra.inst.cfg index 4b673500814..d139d9badea 100644 --- a/resources/quality/flashforge/pla/flashforge_0.20_pla_ultra.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.20_pla_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.30_pla_adaptive.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.30_pla_adaptive.inst.cfg index 967c4906b0e..1360aaf7470 100644 --- a/resources/quality/flashforge/pla/flashforge_0.30_pla_adaptive.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.30_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.30_pla_standard.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.30_pla_standard.inst.cfg index 93671d76ed0..895d454e3fe 100644 --- a/resources/quality/flashforge/pla/flashforge_0.30_pla_standard.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.30_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.30_pla_super.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.30_pla_super.inst.cfg index d1becca566c..76a588d33c5 100644 --- a/resources/quality/flashforge/pla/flashforge_0.30_pla_super.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.30_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.40_pla_adaptive.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.40_pla_adaptive.inst.cfg index a43dec98ca4..b7f7109d9b3 100644 --- a/resources/quality/flashforge/pla/flashforge_0.40_pla_adaptive.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.40_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.40_pla_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.40_pla_draft.inst.cfg index e93f061086a..1d8878cf9fa 100644 --- a/resources/quality/flashforge/pla/flashforge_0.40_pla_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.40_pla_low.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.40_pla_low.inst.cfg index b699f3488d9..ee39f73df24 100644 --- a/resources/quality/flashforge/pla/flashforge_0.40_pla_low.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.40_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.40_pla_standard.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.40_pla_standard.inst.cfg index fc9bf8e60cb..505ef421426 100644 --- a/resources/quality/flashforge/pla/flashforge_0.40_pla_standard.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.40_pla_super.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.40_pla_super.inst.cfg index 402abc4be96..7da3471196f 100644 --- a/resources/quality/flashforge/pla/flashforge_0.40_pla_super.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.40_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.50_pla_adaptive.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.50_pla_adaptive.inst.cfg index ba5b5d9cd74..a3b603704d9 100644 --- a/resources/quality/flashforge/pla/flashforge_0.50_pla_adaptive.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.50_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.50_pla_coarse.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.50_pla_coarse.inst.cfg index e908862f694..886c425d254 100644 --- a/resources/quality/flashforge/pla/flashforge_0.50_pla_coarse.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.50_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.50_pla_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.50_pla_draft.inst.cfg index 1fc1c76255d..4a48cadf097 100644 --- a/resources/quality/flashforge/pla/flashforge_0.50_pla_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.50_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.50_pla_low.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.50_pla_low.inst.cfg index 8a785cccecd..deee1473786 100644 --- a/resources/quality/flashforge/pla/flashforge_0.50_pla_low.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.50_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.50_pla_standard.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.50_pla_standard.inst.cfg index dbfd3fe2739..b7ab32d1aec 100644 --- a/resources/quality/flashforge/pla/flashforge_0.50_pla_standard.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.50_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.60_pla_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.60_pla_draft.inst.cfg index 48d67a86578..73b814d0e2e 100644 --- a/resources/quality/flashforge/pla/flashforge_0.60_pla_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.60_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.60_pla_extra Coarse.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.60_pla_extra Coarse.inst.cfg index c14b3543a43..27cd8def7e8 100644 --- a/resources/quality/flashforge/pla/flashforge_0.60_pla_extra Coarse.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.60_pla_extra Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Xcoarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.60_pla_standard.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.60_pla_standard.inst.cfg index 893f575be8a..656e85dad26 100644 --- a/resources/quality/flashforge/pla/flashforge_0.60_pla_standard.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.60_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg index 793fc6d10ea..6dbc8c55dbc 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg index c983c9fe5f4..690c3e6b84b 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfine -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg index a649f8c2bba..6a4342197ea 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg index 84cdfaf7bee..180e648dfd1 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg index 4a6852033ed..7e6dee0b1ea 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg index d71dbd89c88..06e24e078da 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg index d4df69f5f0b..d82fb0cdadd 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfast -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg index e379ed20356..dfd442d63cb 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg index 4520b7cb87e..45084440554 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg index b4084177b4b..782b74a7dc5 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg index 2b23a1699dd..22b74b6a252 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfast -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg index de66e4f8714..747f8a0076a 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg index 4f45dd9a3b9..e7a6ef72cd4 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfine -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg index de3ed6f4f1c..18bd03e2fa4 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg index ab3f1260e71..a40571318da 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg index 3b6bd6fa035..b81f729ed71 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg index cf9a7d73a56..6e3486a0318 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg index 628dc43a99b..7635f689449 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfast -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg index ce2a91ad6e7..718dd4d4c74 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg index d91ec1c84de..50e52230453 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg index 1dcbb157145..f81ed661553 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg index 21139a85fd0..aa065e31f0f 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfast -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_adaptive.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_adaptive.inst.cfg index aff1ba50177..be0422e6a84 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_adaptive.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_draft.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_draft.inst.cfg index a79887ca137..17ae6fad79c 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_draft.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_low.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_low.inst.cfg index 49335a57732..f254fd3c0a9 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_low.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_standard.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_standard.inst.cfg index c648bd5bf30..9414642a421 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_standard.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_super.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_super.inst.cfg index 874afda0910..c550dabdf28 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_super.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_adaptive.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_adaptive.inst.cfg index 91eafec12c3..7be34ff5e00 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_adaptive.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_draft.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_draft.inst.cfg index 61e83554ed7..1a6aab076be 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_draft.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_low.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_low.inst.cfg index dc0da4c92d8..9a2466df8cb 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_low.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_standard.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_standard.inst.cfg index 8ca5c89a313..7f789e0c202 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_standard.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_draft.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_draft.inst.cfg index b7c3bbf127b..2567733c06e 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_draft.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_low.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_low.inst.cfg index a638f56d613..3c4c0ed5cce 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_low.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_standard.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_standard.inst.cfg index bbb162048ce..8f504647407 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_standard.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flsun_sr/flsun_sr_fine.inst.cfg b/resources/quality/flsun_sr/flsun_sr_fine.inst.cfg index 6c598e033db..c54130d9538 100644 --- a/resources/quality/flsun_sr/flsun_sr_fine.inst.cfg +++ b/resources/quality/flsun_sr/flsun_sr_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/flsun_sr/flsun_sr_normal.inst.cfg b/resources/quality/flsun_sr/flsun_sr_normal.inst.cfg index f74057ed5e2..373e5dbf6f9 100644 --- a/resources/quality/flsun_sr/flsun_sr_normal.inst.cfg +++ b/resources/quality/flsun_sr/flsun_sr_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/flsun_v400/flsun_v400_normal.inst.cfg b/resources/quality/flsun_v400/flsun_v400_normal.inst.cfg index e0a17123104..9c990469390 100644 --- a/resources/quality/flsun_v400/flsun_v400_normal.inst.cfg +++ b/resources/quality/flsun_v400/flsun_v400_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/flyingbear/abs/flyingbear_0.25_abs_super.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.25_abs_super.inst.cfg index 5ae7ce783f0..930466e23c9 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.25_abs_super.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.25_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.25_abs_ultra.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.25_abs_ultra.inst.cfg index 3b97fbbec30..3fc33bbaf69 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.25_abs_ultra.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.25_abs_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_adaptive.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_adaptive.inst.cfg index 9067ae4f18d..61ba30270c7 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_adaptive.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_standard.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_standard.inst.cfg index ba555c9b200..9fa0bb768ee 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_standard.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_super.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_super.inst.cfg index 712ffc8076c..79697198c80 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_super.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_adaptive.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_adaptive.inst.cfg index 7ec3745a349..aa49d937ad3 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_adaptive.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_low.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_low.inst.cfg index 6d90f7d958b..f66ea96064a 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_low.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_standard.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_standard.inst.cfg index d6909bc9828..8ca14e5f6b5 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_standard.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_super.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_super.inst.cfg index e7fcde28b55..66bdc09d2f9 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_super.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_adaptive.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_adaptive.inst.cfg index 5137f14e39d..71a29de5f00 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_adaptive.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_draft.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_draft.inst.cfg index 05ccbc742f0..82b314fec0c 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_draft.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_low.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_low.inst.cfg index 4d871723108..648c3f97659 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_low.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_standard.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_standard.inst.cfg index e645dc6064c..adaa26b406e 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_standard.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_draft.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_draft.inst.cfg index 325f189ce5f..bef5e104e8c 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_draft.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_low.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_low.inst.cfg index 64c4740121f..4c613f89f6d 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_low.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_standard.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_standard.inst.cfg index af09323a3ae..6c322658076 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_standard.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.80_abs_coarse.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.80_abs_coarse.inst.cfg index 2fe02ed7f06..8e0cff9a717 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.80_abs_coarse.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.80_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.80_abs_draft.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.80_abs_draft.inst.cfg index b551a10c001..e37f690bc15 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.80_abs_draft.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.80_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/flyingbear_global_0.08_ultra.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.08_ultra.inst.cfg index 1ab5c72914a..65ccdb52154 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.08_ultra.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.08_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/flyingbear/flyingbear_global_0.12_super.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.12_super.inst.cfg index 7fa1bd94892..0a4a714bc6e 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.12_super.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.12_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/flyingbear/flyingbear_global_0.16_adaptive.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.16_adaptive.inst.cfg index e46142baea3..d2098fbb4eb 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.16_adaptive.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.16_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/flyingbear/flyingbear_global_0.20_standard.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.20_standard.inst.cfg index 14e7112594a..505cb0463e3 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.20_standard.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/flyingbear/flyingbear_global_0.28_low.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.28_low.inst.cfg index 90777f4f27c..3f12e491b5a 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.28_low.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.28_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/flyingbear/flyingbear_global_0.32_draft.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.32_draft.inst.cfg index bdffacbf938..231f0fd01ca 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.32_draft.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.32_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/flyingbear/flyingbear_global_0.40_coarse.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.40_coarse.inst.cfg index 5f83d785642..8b6dd5bddb7 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.40_coarse.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -6 diff --git a/resources/quality/flyingbear/hips/flyingbear_0.25_hips_super.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.25_hips_super.inst.cfg index ee4503a01d5..df78a0c3f45 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.25_hips_super.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.25_hips_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.25_hips_ultra.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.25_hips_ultra.inst.cfg index 1051c04f35b..16c455bb065 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.25_hips_ultra.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.25_hips_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_adaptive.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_adaptive.inst.cfg index 39b0cd3a95b..24d9ece765f 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_adaptive.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_standard.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_standard.inst.cfg index 992218c567e..f2a45a4c331 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_standard.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_super.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_super.inst.cfg index a9e55e49654..4035a9a59c5 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_super.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_adaptive.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_adaptive.inst.cfg index 639276336a6..5ec95868eda 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_adaptive.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_low.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_low.inst.cfg index 176f54fe315..666e72803a6 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_low.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_standard.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_standard.inst.cfg index dbde45c7aec..de6ad15bb99 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_standard.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_super.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_super.inst.cfg index b962c50da24..bf247f15c6b 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_super.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_adaptive.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_adaptive.inst.cfg index 7f61cc48934..7f00389fa0f 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_adaptive.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_draft.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_draft.inst.cfg index 4ad64742632..151e4129145 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_draft.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_low.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_low.inst.cfg index 9f9229d9013..730abc2c952 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_low.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_standard.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_standard.inst.cfg index 23c0c98525b..cdef28723f1 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_standard.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_draft.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_draft.inst.cfg index 5ff44cc28b1..60024c0720d 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_draft.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_low.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_low.inst.cfg index 1bfae457ce4..f6bd94749ed 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_low.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_standard.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_standard.inst.cfg index 7a5c4dff286..682b069da8d 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_standard.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.80_hips_coarse.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.80_hips_coarse.inst.cfg index b7deccddd06..51459ab8883 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.80_hips_coarse.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.80_hips_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.80_hips_draft.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.80_hips_draft.inst.cfg index 30dd959964b..fa4b6f0ea5b 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.80_hips_draft.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.80_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.25_petg_super.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.25_petg_super.inst.cfg index a6c59756d1b..71acf92c30e 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.25_petg_super.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.25_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.25_petg_ultra.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.25_petg_ultra.inst.cfg index 5d036770949..1436e850e66 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.25_petg_ultra.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.25_petg_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_adaptive.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_adaptive.inst.cfg index 80b7ce36321..83852fdf48f 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_adaptive.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_standard.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_standard.inst.cfg index ed022ff1a72..1a089cfebca 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_standard.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_super.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_super.inst.cfg index fb08d902818..0554999dce7 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_super.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_adaptive.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_adaptive.inst.cfg index bee035c6339..2b2b6e8e67e 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_adaptive.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_low.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_low.inst.cfg index f7e51f3ccfc..d4f3706cf26 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_low.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_standard.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_standard.inst.cfg index 408bbccf1cb..ff3604ad2ed 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_standard.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_super.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_super.inst.cfg index fed9d3d3ac0..83b9afde7fc 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_super.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_adaptive.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_adaptive.inst.cfg index a6c52520c30..f7ea5866e03 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_adaptive.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_draft.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_draft.inst.cfg index 6e8556c649f..28575d7b40d 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_draft.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_low.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_low.inst.cfg index 18b5c61b2b6..4ee5424f672 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_low.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_standard.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_standard.inst.cfg index 92e2b2d84ba..a0395edf271 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_standard.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_draft.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_draft.inst.cfg index 2990745ee54..80e0f04c763 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_draft.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_low.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_low.inst.cfg index 6ae9d86cc32..031efab026b 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_low.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_standard.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_standard.inst.cfg index bef2f08658e..aa619cfd1ee 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_standard.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.80_petg_coarse.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.80_petg_coarse.inst.cfg index dccc9296de8..0b60eac171b 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.80_petg_coarse.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.80_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.80_petg_draft.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.80_petg_draft.inst.cfg index 00ea0870784..1886e60500c 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.80_petg_draft.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.80_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.25_pla_super.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.25_pla_super.inst.cfg index 5949d2337ca..e519b6d142c 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.25_pla_super.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.25_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.25_pla_ultra.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.25_pla_ultra.inst.cfg index c7fca8f17d9..b97aef5a390 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.25_pla_ultra.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.25_pla_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_adaptive.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_adaptive.inst.cfg index b38c4dc5a18..20bbf3858f0 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_adaptive.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_standard.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_standard.inst.cfg index c69fb2a58f4..49b158e03fd 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_standard.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_super.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_super.inst.cfg index 6936c9506e4..2ad07694fc2 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_super.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_adaptive.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_adaptive.inst.cfg index e1c669ac7fc..f34b3b1bb95 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_adaptive.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_low.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_low.inst.cfg index c2e502ea920..6706cbabc65 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_low.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_standard.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_standard.inst.cfg index 56f9be67c3a..da766f5d1b5 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_standard.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_super.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_super.inst.cfg index 8af62735503..8b5001e62c6 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_super.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_adaptive.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_adaptive.inst.cfg index 575a89d77d0..19d31e9c937 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_adaptive.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_draft.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_draft.inst.cfg index 4988d8fcfde..ef476033954 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_draft.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_low.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_low.inst.cfg index 203d6f9002c..b3371769d0e 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_low.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_standard.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_standard.inst.cfg index d46789d1e38..b2ddb8eabe3 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_standard.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_draft.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_draft.inst.cfg index 7fa9b57c3d9..0ec35e6dad3 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_draft.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_low.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_low.inst.cfg index 01da9606edd..55498bde2e1 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_low.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_standard.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_standard.inst.cfg index 1a9d8352273..4c10851db84 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_standard.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.80_pla_coarse.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.80_pla_coarse.inst.cfg index eea62d99010..735cdf2f91d 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.80_pla_coarse.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.80_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.80_pla_draft.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.80_pla_draft.inst.cfg index f672730f2ae..0964ebcfe61 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.80_pla_draft.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.80_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_super.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_super.inst.cfg index 2878b3c2703..1dde8db898c 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_super.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_ultra.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_ultra.inst.cfg index acfd12f4448..78b295e64ef 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_ultra.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_adaptive.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_adaptive.inst.cfg index 430e88b36a9..bf7d7fa7bb2 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_adaptive.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_standard.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_standard.inst.cfg index 02965b938ee..9e282d5aec9 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_standard.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_super.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_super.inst.cfg index 4627852ad28..c2faee28a8d 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_super.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_adaptive.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_adaptive.inst.cfg index a5d4c71cb54..7200eef8fad 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_adaptive.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_low.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_low.inst.cfg index bce6a871cf6..b842231fac0 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_low.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_standard.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_standard.inst.cfg index f4506c04ec7..a5cb57090e0 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_standard.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_super.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_super.inst.cfg index 42700664c2e..28ec247de15 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_super.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_adaptive.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_adaptive.inst.cfg index 5002536077c..2724300ad67 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_adaptive.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_draft.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_draft.inst.cfg index 414afc7d4b2..c9c66e581cb 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_draft.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_low.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_low.inst.cfg index 125d504830f..d2cee4ce307 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_low.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_standard.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_standard.inst.cfg index 2128cebe402..69bfa6d6e10 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_standard.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_draft.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_draft.inst.cfg index 844fb8697fa..0af138b7fc3 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_draft.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_low.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_low.inst.cfg index 853b1b80d85..0dc4f2c24b3 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_low.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_standard.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_standard.inst.cfg index 00fbabdd239..04841b6e409 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_standard.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_coarse.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_coarse.inst.cfg index f0e03321119..02628c7d3e8 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_coarse.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_draft.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_draft.inst.cfg index 068b59ac7ce..0050c4542f6 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_draft.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_adaptive.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_adaptive.inst.cfg index 023d73a5e74..8aa43affc1c 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_adaptive.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_low.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_low.inst.cfg index ae22d9d0f0a..28ad82bc82c 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_low.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_standard.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_standard.inst.cfg index fba61c57cdb..8d6924e70a3 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_standard.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_super.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_super.inst.cfg index f33ef9889b1..2a432b61350 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_super.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_adaptive.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_adaptive.inst.cfg index 68dd1abf088..18882f74d7f 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_adaptive.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_draft.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_draft.inst.cfg index 4c6a7e6bf0a..3f751ac6c38 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_draft.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_low.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_low.inst.cfg index 9bf8763a8d2..54be001ebd1 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_low.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_standard.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_standard.inst.cfg index a7ac0d2a0ba..d8d4148de12 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_standard.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_draft.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_draft.inst.cfg index 950b9a87b06..becd616174d 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_draft.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_low.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_low.inst.cfg index cf7aea8e4fe..1925f4d5d29 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_low.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_standard.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_standard.inst.cfg index 80db6008430..f34a24e1f19 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_standard.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_coarse.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_coarse.inst.cfg index 56a06a32613..c5e16634415 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_coarse.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_draft.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_draft.inst.cfg index baf68727fa4..4ede40b6f99 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_draft.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusedform/base/base_PVA_draft.inst.cfg b/resources/quality/fusedform/base/base_PVA_draft.inst.cfg index f2d1f7d6f2c..3c1797b40e6 100644 --- a/resources/quality/fusedform/base/base_PVA_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_PVA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_PVA_high.inst.cfg b/resources/quality/fusedform/base/base_PVA_high.inst.cfg index 352494579c9..c3bd73bb8fc 100644 --- a/resources/quality/fusedform/base/base_PVA_high.inst.cfg +++ b/resources/quality/fusedform/base/base_PVA_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_PVA_normal.inst.cfg b/resources/quality/fusedform/base/base_PVA_normal.inst.cfg index 04154bf4b30..28ae6d3a512 100644 --- a/resources/quality/fusedform/base/base_PVA_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_PVA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_abs_draft.inst.cfg b/resources/quality/fusedform/base/base_abs_draft.inst.cfg index a5c297eca4f..129e0ae301b 100644 --- a/resources/quality/fusedform/base/base_abs_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/fusedform/base/base_abs_high.inst.cfg b/resources/quality/fusedform/base/base_abs_high.inst.cfg index a4f9fa613ab..37c9670b982 100644 --- a/resources/quality/fusedform/base/base_abs_high.inst.cfg +++ b/resources/quality/fusedform/base/base_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_abs_normal.inst.cfg b/resources/quality/fusedform/base/base_abs_normal.inst.cfg index 4c62b0cc6c5..9721d62afb6 100644 --- a/resources/quality/fusedform/base/base_abs_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_abs_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_abs_ultra_high.inst.cfg index d007a855a1a..33807b2f08d 100644 --- a/resources/quality/fusedform/base/base_abs_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_abs_ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra high -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_draft.inst.cfg b/resources/quality/fusedform/base/base_draft.inst.cfg index 8a6910cd1ad..e334ba4b678 100644 --- a/resources/quality/fusedform/base/base_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/fusedform/base/base_flex_high.inst.cfg b/resources/quality/fusedform/base/base_flex_high.inst.cfg index ba3a62ef361..4b97e4ed24f 100644 --- a/resources/quality/fusedform/base/base_flex_high.inst.cfg +++ b/resources/quality/fusedform/base/base_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_flex_normal.inst.cfg b/resources/quality/fusedform/base/base_flex_normal.inst.cfg index a247d6f6bfb..cd12341ec8d 100644 --- a/resources/quality/fusedform/base/base_flex_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_flex_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_high.inst.cfg b/resources/quality/fusedform/base/base_high.inst.cfg index 06c28b5c7ab..5b996785224 100644 --- a/resources/quality/fusedform/base/base_high.inst.cfg +++ b/resources/quality/fusedform/base/base_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_hips_draft.inst.cfg b/resources/quality/fusedform/base/base_hips_draft.inst.cfg index e02c07f97f0..da71c1bd1c1 100644 --- a/resources/quality/fusedform/base/base_hips_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = draft -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/fusedform/base/base_hips_high.inst.cfg b/resources/quality/fusedform/base/base_hips_high.inst.cfg index e015f56f53f..d10e9eee559 100644 --- a/resources/quality/fusedform/base/base_hips_high.inst.cfg +++ b/resources/quality/fusedform/base/base_hips_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_hips_normal.inst.cfg b/resources/quality/fusedform/base/base_hips_normal.inst.cfg index 416747436c1..b2d4401f663 100644 --- a/resources/quality/fusedform/base/base_hips_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_hips_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_hips_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_hips_ultra_high.inst.cfg index 462791472ce..0dabd20ee80 100644 --- a/resources/quality/fusedform/base/base_hips_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_hips_ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = ultra high -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_normal.inst.cfg b/resources/quality/fusedform/base/base_normal.inst.cfg index 549dea91457..03cac40a621 100644 --- a/resources/quality/fusedform/base/base_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_nylon_draft.inst.cfg b/resources/quality/fusedform/base/base_nylon_draft.inst.cfg index 8abb293bf00..53bac6523d7 100644 --- a/resources/quality/fusedform/base/base_nylon_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/fusedform/base/base_nylon_high.inst.cfg b/resources/quality/fusedform/base/base_nylon_high.inst.cfg index c9dcdf2af43..9b333eff1f1 100644 --- a/resources/quality/fusedform/base/base_nylon_high.inst.cfg +++ b/resources/quality/fusedform/base/base_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_nylon_normal.inst.cfg b/resources/quality/fusedform/base/base_nylon_normal.inst.cfg index 861a877d650..c20f2ea5a30 100644 --- a/resources/quality/fusedform/base/base_nylon_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_nylon_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_nylon_ultra_high.inst.cfg index 12000acf62f..754a2023b65 100644 --- a/resources/quality/fusedform/base/base_nylon_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_nylon_ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultra high -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_petg_high.inst.cfg b/resources/quality/fusedform/base/base_petg_high.inst.cfg index 576e790dd26..f0ceeaadbae 100644 --- a/resources/quality/fusedform/base/base_petg_high.inst.cfg +++ b/resources/quality/fusedform/base/base_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_petg_normal.inst.cfg b/resources/quality/fusedform/base/base_petg_normal.inst.cfg index 2548ddc851c..40fe6961d75 100644 --- a/resources/quality/fusedform/base/base_petg_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_pla_draft.inst.cfg b/resources/quality/fusedform/base/base_pla_draft.inst.cfg index 7ff4389b711..d0489b1d974 100644 --- a/resources/quality/fusedform/base/base_pla_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/fusedform/base/base_pla_high.inst.cfg b/resources/quality/fusedform/base/base_pla_high.inst.cfg index 26fd52efa81..d3e2c502bb5 100644 --- a/resources/quality/fusedform/base/base_pla_high.inst.cfg +++ b/resources/quality/fusedform/base/base_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_pla_normal.inst.cfg b/resources/quality/fusedform/base/base_pla_normal.inst.cfg index e95ac622775..5dd85fbcc7d 100644 --- a/resources/quality/fusedform/base/base_pla_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_pla_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_pla_ultra_high.inst.cfg index fecf4bafcb3..bb376bcbc9a 100644 --- a/resources/quality/fusedform/base/base_pla_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_pla_ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra high -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_ultra_high.inst.cfg index 853565b80b2..3bca5f50bb0 100644 --- a/resources/quality/fusedform/base/base_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra high -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/fusion3/fusion3_0.4_ABS_fine.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ABS_fine.inst.cfg index b8fb0fc0840..c9602588fef 100644 --- a/resources/quality/fusion3/fusion3_0.4_ABS_fine.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_ABS_good.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ABS_good.inst.cfg index 170487b7a81..b48555902eb 100644 --- a/resources/quality/fusion3/fusion3_0.4_ABS_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ABS_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = good -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_ABS_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ABS_normal.inst.cfg index 314d61894ac..70f126a30d8 100644 --- a/resources/quality/fusion3/fusion3_0.4_ABS_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_ASA_fine.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ASA_fine.inst.cfg index edbf7c4d7c3..34e9d8d056c 100644 --- a/resources/quality/fusion3/fusion3_0.4_ASA_fine.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ASA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_ASA_good.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ASA_good.inst.cfg index 408fd5b062b..534ce0e7826 100644 --- a/resources/quality/fusion3/fusion3_0.4_ASA_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ASA_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = good -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_ASA_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ASA_normal.inst.cfg index e4e8ecd1577..c7cb7ddb907 100644 --- a/resources/quality/fusion3/fusion3_0.4_ASA_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ASA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_CPE_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_CPE_normal.inst.cfg index 3700253dad5..09c0a087498 100644 --- a/resources/quality/fusion3/fusion3_0.4_CPE_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_CPE_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PA_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PA_normal.inst.cfg index 923e2527707..9f68524bb71 100644 --- a/resources/quality/fusion3/fusion3_0.4_PA_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PC_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PC_normal.inst.cfg index a716730eeda..bd453749a66 100644 --- a/resources/quality/fusion3/fusion3_0.4_PC_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PETG_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PETG_normal.inst.cfg index 9a414b2f15f..c622ef891d3 100644 --- a/resources/quality/fusion3/fusion3_0.4_PETG_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PLA_fine.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PLA_fine.inst.cfg index 5b343453d00..af74ae635ef 100644 --- a/resources/quality/fusion3/fusion3_0.4_PLA_fine.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PLA_good.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PLA_good.inst.cfg index c57e47950db..b4b9de8b88e 100644 --- a/resources/quality/fusion3/fusion3_0.4_PLA_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PLA_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = good -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PLA_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PLA_normal.inst.cfg index 04bb078949d..ab4f8a12391 100644 --- a/resources/quality/fusion3/fusion3_0.4_PLA_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_TPU_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_TPU_normal.inst.cfg index 289646eec4c..3f68a2cfacc 100644 --- a/resources/quality/fusion3/fusion3_0.4_TPU_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_ABS_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_ABS_good.inst.cfg index 560fcf2c35a..dc19e88cd12 100644 --- a/resources/quality/fusion3/fusion3_0.6_ABS_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_ABS_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = good -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_ABS_low.inst.cfg b/resources/quality/fusion3/fusion3_0.6_ABS_low.inst.cfg index 20fb1056bbd..a85bbac743e 100644 --- a/resources/quality/fusion3/fusion3_0.6_ABS_low.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_ASA_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_ASA_good.inst.cfg index 13885dda24b..4176a6720f9 100644 --- a/resources/quality/fusion3/fusion3_0.6_ASA_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_ASA_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = good -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_ASA_low.inst.cfg b/resources/quality/fusion3/fusion3_0.6_ASA_low.inst.cfg index 6e1708c5344..d30ef997701 100644 --- a/resources/quality/fusion3/fusion3_0.6_ASA_low.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_ASA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_CPE_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_CPE_good.inst.cfg index 2e41da31bea..f912e562cd2 100644 --- a/resources/quality/fusion3/fusion3_0.6_CPE_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_CPE_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = good -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_PA_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_PA_good.inst.cfg index c15be13de65..70549b4b592 100644 --- a/resources/quality/fusion3/fusion3_0.6_PA_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_PA_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = good -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_PC_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_PC_good.inst.cfg index 45380a16d42..928bc4cff9c 100644 --- a/resources/quality/fusion3/fusion3_0.6_PC_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_PC_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = good -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_PETG_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_PETG_good.inst.cfg index 1a304a07edb..8203979de35 100644 --- a/resources/quality/fusion3/fusion3_0.6_PETG_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_PETG_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = good -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_PLA_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_PLA_good.inst.cfg index 49567c3ebd5..b464d9fb146 100644 --- a/resources/quality/fusion3/fusion3_0.6_PLA_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_PLA_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = good -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_PLA_low.inst.cfg b/resources/quality/fusion3/fusion3_0.6_PLA_low.inst.cfg index e8e13fa7f26..8f2353cb15d 100644 --- a/resources/quality/fusion3/fusion3_0.6_PLA_low.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_TPU_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_TPU_good.inst.cfg index 8a9d9752197..a40d1d06873 100644 --- a/resources/quality/fusion3/fusion3_0.6_TPU_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_TPU_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = good -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_ABS_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_ABS_rapid.inst.cfg index 29adfb091b4..9730a818b46 100644 --- a/resources/quality/fusion3/fusion3_0.8_ABS_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_ABS_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rapid -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_ABS_rough.inst.cfg b/resources/quality/fusion3/fusion3_0.8_ABS_rough.inst.cfg index fbee684ce23..a4a75cc8151 100644 --- a/resources/quality/fusion3/fusion3_0.8_ABS_rough.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_ABS_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rough -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_ASA_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_ASA_rapid.inst.cfg index a268baf68bd..cc916177e53 100644 --- a/resources/quality/fusion3/fusion3_0.8_ASA_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_ASA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = rapid -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_ASA_rough.inst.cfg b/resources/quality/fusion3/fusion3_0.8_ASA_rough.inst.cfg index 0c918f88ac7..a71256c3aa6 100644 --- a/resources/quality/fusion3/fusion3_0.8_ASA_rough.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_ASA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = rough -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_CPE_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_CPE_rapid.inst.cfg index 73d199f6ce3..d4f4738309b 100644 --- a/resources/quality/fusion3/fusion3_0.8_CPE_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_CPE_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = rapid -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_PA_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_PA_rapid.inst.cfg index e2beebc76af..058691fa795 100644 --- a/resources/quality/fusion3/fusion3_0.8_PA_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_PA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = rapid -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_PC_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_PC_rapid.inst.cfg index 16894ed8da1..94921dc336a 100644 --- a/resources/quality/fusion3/fusion3_0.8_PC_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_PC_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = rapid -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_PETG_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_PETG_rapid.inst.cfg index d3551c51bd1..27effc7be82 100644 --- a/resources/quality/fusion3/fusion3_0.8_PETG_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_PETG_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rapid -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_PLA_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_PLA_rapid.inst.cfg index 86b85961281..1bc905dea87 100644 --- a/resources/quality/fusion3/fusion3_0.8_PLA_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_PLA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rapid -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_PLA_rough.inst.cfg b/resources/quality/fusion3/fusion3_0.8_PLA_rough.inst.cfg index 0e9de77d8ff..59cb70389e1 100644 --- a/resources/quality/fusion3/fusion3_0.8_PLA_rough.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_PLA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rough -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_TPU_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_TPU_rapid.inst.cfg index ffbc74268d5..e6f7bf74d64 100644 --- a/resources/quality/fusion3/fusion3_0.8_TPU_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_TPU_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = rapid -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_global_fine.inst.cfg b/resources/quality/fusion3/fusion3_global_fine.inst.cfg index 4af1cc5535a..550269bb726 100644 --- a/resources/quality/fusion3/fusion3_global_fine.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/fusion3/fusion3_global_good.inst.cfg b/resources/quality/fusion3/fusion3_global_good.inst.cfg index 5f36f60d738..d1a46528a34 100644 --- a/resources/quality/fusion3/fusion3_global_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = good -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/fusion3/fusion3_global_low.inst.cfg b/resources/quality/fusion3/fusion3_global_low.inst.cfg index 84bc1e0a27f..7a0d9903f9c 100644 --- a/resources/quality/fusion3/fusion3_global_low.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/fusion3/fusion3_global_normal.inst.cfg b/resources/quality/fusion3/fusion3_global_normal.inst.cfg index ab2cbf7de09..7f96dfd125f 100644 --- a/resources/quality/fusion3/fusion3_global_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/fusion3/fusion3_global_rapid.inst.cfg b/resources/quality/fusion3/fusion3_global_rapid.inst.cfg index 91b851f5767..2b008a34bcc 100644 --- a/resources/quality/fusion3/fusion3_global_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = rapid -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/fusion3/fusion3_global_rough.inst.cfg b/resources/quality/fusion3/fusion3_global_rough.inst.cfg index e3ad70b5c18..b35f187e4f6 100644 --- a/resources/quality/fusion3/fusion3_global_rough.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = rough -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_super.inst.cfg index 59475969b8d..56949ee3598 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_ultra.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_ultra.inst.cfg index 9fda1b2e510..521c02c0d4a 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_super.inst.cfg index 0f3057fe82f..bbf17e47a87 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_ultra.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_ultra.inst.cfg index e459a9d0968..e2e561fcb1d 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_super.inst.cfg index 6e4f55fcba9..02050a3ddf6 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_ultra.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_ultra.inst.cfg index 3e840456741..9ce8fc39422 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_adaptive.inst.cfg index b5b72a1d6ab..4b65a92d95e 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_low.inst.cfg index d1497b1d4bf..8d23c0dc6b6 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_standard.inst.cfg index 9fef4f56d2a..50cdedebe0d 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_super.inst.cfg index 3150c7bf1b3..126bd092a53 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_adaptive.inst.cfg index 321f5841698..8587dc79624 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_low.inst.cfg index 79203249f85..c296921d464 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_standard.inst.cfg index 23ad0fa1363..0a75d800c72 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_super.inst.cfg index bd77f7a194d..b4bdd0a93be 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_adaptive.inst.cfg index f6e74f21de2..95fe7f7d8a3 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_low.inst.cfg index 6a0ace16340..d1ade85d185 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_standard.inst.cfg index be9207dfe52..d08208603c0 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_super.inst.cfg index f0087a01353..46228e4d7d6 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_adaptive.inst.cfg index 08174d60e3c..16373eb8ef6 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_standard.inst.cfg index 5db816a83ac..fb007f9a89e 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_super.inst.cfg index 45179cb24cc..8177d8966ca 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_adaptive.inst.cfg index db97cac4f44..4853c2e5e14 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_low.inst.cfg index 5036b82e308..19647ca550f 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_standard.inst.cfg index 8a9cdf11c83..fff6581a5b6 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_super.inst.cfg index e3a026eb540..41002402783 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_adaptive.inst.cfg index c5102197702..ac8a268c163 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_low.inst.cfg index 6ca89507a94..ed70b584307 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_standard.inst.cfg index f9c427f3dae..4bcc9c1d864 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_super.inst.cfg index 00afeb3d7b1..95ac3b31317 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_adaptive.inst.cfg index 013a9a81c2a..6d79a235c5d 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_low.inst.cfg index 5cfefecfadd..920f5775037 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_standard.inst.cfg index 64662fdfe2b..3ff4c8265bc 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_super.inst.cfg index 14797b146be..b53467ee0e9 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_adaptive.inst.cfg index 5b47dd59dad..e332e2dd0a1 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_standard.inst.cfg index ebd00a13aae..59ab8728fd6 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_super.inst.cfg index 6abd2e66b65..b5f47c0cabb 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_adaptive.inst.cfg index 9b1deace625..70a4bdaf536 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_low.inst.cfg index a5415cc14e3..5220a0b9d0b 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_standard.inst.cfg index 16fd1836926..9d21f11fbbe 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_super.inst.cfg index 6473b022313..861a42b02b0 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_adaptive.inst.cfg index 696f4ef9471..3a24d0434ef 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_low.inst.cfg index 362ee45ceb8..31f314f7469 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_standard.inst.cfg index 6a68da9a6bb..5f0c62b87ce 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_super.inst.cfg index 3647e198948..f4c58e13f49 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_adaptive.inst.cfg index 1e4e05e520a..8099a6d9ab2 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_low.inst.cfg index a86131a0419..7cb4b4a4039 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_standard.inst.cfg index 298569b4e45..c5fca47a051 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_super.inst.cfg index cb34fe279d5..6eef17f39b3 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_adaptive.inst.cfg index d650752d4c6..99d35c0aa14 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_standard.inst.cfg index 4bf0718a0b4..56a835b8b9c 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_super.inst.cfg index a8c395e18c5..611d41e945e 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_ABS_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_ABS_standard.inst.cfg index 238d5721a2a..9fcc9134b80 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_ABS_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_PETG_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_PETG_standard.inst.cfg index d4aea0867f2..1387a15850b 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_PETG_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_draft.inst.cfg index 6ab31aac4ae..949889dfeb3 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_low.inst.cfg index 4bcdf7c5ae3..4cacb4446c4 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_standard.inst.cfg index 16a6a8866a2..a59ad5cb2f6 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_TPU_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_TPU_standard.inst.cfg index 2d17a5669a6..813e0e23f81 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_TPU_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.8_ABS_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.8_ABS_draft.inst.cfg index c23ce9e5909..a739a219855 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.8_ABS_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.8_PETG_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.8_PETG_draft.inst.cfg index 19542d65bd4..b3a37371058 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.8_PETG_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.8_PLA_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.8_PLA_draft.inst.cfg index e9634510536..a8eeab044ae 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.8_PLA_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.8_TPU_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.8_TPU_draft.inst.cfg index 5a718799098..f03daad1c12 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.8_TPU_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_1.0_ABS_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_1.0_ABS_draft.inst.cfg index 704342ad44b..b4e4512748a 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_1.0_ABS_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_1.0_PETG_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_1.0_PETG_draft.inst.cfg index a8c9fbdfeac..420564deb5c 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_1.0_PETG_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_1.0_PLA_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_1.0_PLA_draft.inst.cfg index f166dcd8e05..8d3780d66e5 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_1.0_PLA_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_1.0_TPU_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_1.0_TPU_draft.inst.cfg index a9370c56740..86d18c3ae44 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_1.0_TPU_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_adaptive.inst.cfg index 829c96a27a1..7099f6599b8 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_draft.inst.cfg index eb9747c47d3..38e93d5c177 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_low.inst.cfg index 5a4ca40612f..3d31995b849 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_standard.inst.cfg index 29f950977d5..7aac6404342 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_super.inst.cfg index 41fa4910555..8d12668db0f 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_ultra.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_ultra.inst.cfg index d8036a58855..0a3b3bb7370 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_ultra.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg index 120b8e9cb33..d9f0a0aaeaf 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg index 6718a49e298..620622e555f 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = course -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg index f42f350d690..05eeb68305a 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg index 2a65300e359..b63ef09a6b6 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra_course -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg index 4ff40b9db2a..a476f1d2878 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg index 2aa06147d83..fe59d12cd3d 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = course -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg index 1ad1a76b9be..7c6c9c5e38f 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg index 3b0b433ee45..b1cdcc129a4 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra_course -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/goofoo/abs/goofoo_far_0.2_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.2_abs_fine.inst.cfg index 44aeccf5452..6f663495511 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.2_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.2_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.2_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.2_abs_standard.inst.cfg index 635575d990d..3056dc187dd 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.2_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.2_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.40_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.40_abs_fine.inst.cfg index 2c0df2f7ac3..9cf290ce735 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.40_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.40_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.40_abs_standard.inst.cfg index 4b7e34524e2..cfbc840dee8 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.40_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.40_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.6_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.6_abs_fine.inst.cfg index 40370dcd419..35a0b83d816 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.6_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.6_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.6_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.6_abs_standard.inst.cfg index 9ea1e92e5f6..f7deb1bd433 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.6_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.6_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.8_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.8_abs_fine.inst.cfg index 4f899585ecc..89a5ebe403f 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.8_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.8_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.8_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.8_abs_standard.inst.cfg index 2c9710a4877..d8aaa46c563 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.8_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.8_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_1.0_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_1.0_abs_fine.inst.cfg index b0c8caef65c..48a467369c6 100644 --- a/resources/quality/goofoo/abs/goofoo_far_1.0_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_1.0_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_1.0_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_1.0_abs_standard.inst.cfg index b30bd33e3ca..c210d234b19 100644 --- a/resources/quality/goofoo/abs/goofoo_far_1.0_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_1.0_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.2_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.2_abs_fine.inst.cfg index 9e6f652f87c..881a3768d4f 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.2_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.2_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.2_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.2_abs_standard.inst.cfg index 7ca5a1939d7..a8e2cd84753 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.2_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.2_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.40_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.40_abs_fine.inst.cfg index d3824533200..1cc4b042066 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.40_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.40_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.40_abs_standard.inst.cfg index 617bee3083d..23c7207715f 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.40_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.40_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.6_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.6_abs_fine.inst.cfg index bff7afc626e..af0c913efce 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.6_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.6_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.6_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.6_abs_standard.inst.cfg index c6949b58205..16a19e22c26 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.6_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.6_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.8_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.8_abs_fine.inst.cfg index ee28d12a052..3916a8683f6 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.8_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.8_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.8_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.8_abs_standard.inst.cfg index 981aed3726c..c4fd612bceb 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.8_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.8_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_1.0_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_1.0_abs_fine.inst.cfg index a752b4ce187..3ad812b25f9 100644 --- a/resources/quality/goofoo/abs/goofoo_near_1.0_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_1.0_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_1.0_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_1.0_abs_standard.inst.cfg index 602551cd695..fe8a9112209 100644 --- a/resources/quality/goofoo/abs/goofoo_near_1.0_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_1.0_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.2_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.2_asa_fine.inst.cfg index 07cc2fcdae2..4a255eed13a 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.2_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.2_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.2_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.2_asa_standard.inst.cfg index cf030a6f8d9..ecd3ec02e52 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.2_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.2_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.40_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.40_asa_fine.inst.cfg index 55e01a8ba14..d19830d7e29 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.40_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.40_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.40_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.40_asa_standard.inst.cfg index e42993080fd..ddcfa7cfb0a 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.40_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.40_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.6_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.6_asa_fine.inst.cfg index 1a73f46b857..143a1374e25 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.6_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.6_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.6_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.6_asa_standard.inst.cfg index dbf082da403..094bb295057 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.6_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.6_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.8_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.8_asa_fine.inst.cfg index 65321d4fec1..c2f16c9d709 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.8_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.8_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.8_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.8_asa_standard.inst.cfg index 75d8941434b..f9076384c15 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.8_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.8_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_1.0_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_1.0_asa_fine.inst.cfg index eb09eda464e..47b25e5b378 100644 --- a/resources/quality/goofoo/asa/goofoo_far_1.0_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_1.0_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_1.0_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_1.0_asa_standard.inst.cfg index 6f7d6537982..fec406103bf 100644 --- a/resources/quality/goofoo/asa/goofoo_far_1.0_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_1.0_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.2_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.2_asa_fine.inst.cfg index 7f378999662..793afcca70e 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.2_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.2_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.2_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.2_asa_standard.inst.cfg index d1c6e6beadb..2f0d73b67bd 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.2_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.2_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.40_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.40_asa_fine.inst.cfg index 2daa1107a6c..14874b5610b 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.40_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.40_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.40_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.40_asa_standard.inst.cfg index 9948b00c8d0..f5fc3026dca 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.40_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.40_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.6_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.6_asa_fine.inst.cfg index 9e060de7cfd..a53b02ac90a 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.6_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.6_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.6_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.6_asa_standard.inst.cfg index 4bdd3ef015d..b6834ea9bfe 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.6_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.6_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.8_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.8_asa_fine.inst.cfg index 9f1afa96f6c..dc316d182f8 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.8_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.8_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.8_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.8_asa_standard.inst.cfg index ebd0e109083..b29899f5055 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.8_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.8_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_1.0_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_1.0_asa_fine.inst.cfg index 01b7889d9bc..d554ed89965 100644 --- a/resources/quality/goofoo/asa/goofoo_near_1.0_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_1.0_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_1.0_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_1.0_asa_standard.inst.cfg index 099097d7239..edac2f37273 100644 --- a/resources/quality/goofoo/asa/goofoo_near_1.0_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_1.0_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/goofoo_far_global_0.15_fine.inst.cfg b/resources/quality/goofoo/goofoo_far_global_0.15_fine.inst.cfg index cd9beaf5a72..88bf7603eda 100644 --- a/resources/quality/goofoo/goofoo_far_global_0.15_fine.inst.cfg +++ b/resources/quality/goofoo/goofoo_far_global_0.15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/goofoo/goofoo_far_global_0.1_efine.inst.cfg b/resources/quality/goofoo/goofoo_far_global_0.1_efine.inst.cfg index 93c7bc6d495..01e80cae139 100644 --- a/resources/quality/goofoo/goofoo_far_global_0.1_efine.inst.cfg +++ b/resources/quality/goofoo/goofoo_far_global_0.1_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = efine -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/goofoo/goofoo_far_global_0.20_standard.inst.cfg b/resources/quality/goofoo/goofoo_far_global_0.20_standard.inst.cfg index 0011ca9d416..de8881ab864 100644 --- a/resources/quality/goofoo/goofoo_far_global_0.20_standard.inst.cfg +++ b/resources/quality/goofoo/goofoo_far_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/goofoo/goofoo_far_global_0.3_draft.inst.cfg b/resources/quality/goofoo/goofoo_far_global_0.3_draft.inst.cfg index d219cad79c5..628015037ba 100644 --- a/resources/quality/goofoo/goofoo_far_global_0.3_draft.inst.cfg +++ b/resources/quality/goofoo/goofoo_far_global_0.3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/goofoo/goofoo_near_global_0.15_fine.inst.cfg b/resources/quality/goofoo/goofoo_near_global_0.15_fine.inst.cfg index f57797456b5..0644d56d7fe 100644 --- a/resources/quality/goofoo/goofoo_near_global_0.15_fine.inst.cfg +++ b/resources/quality/goofoo/goofoo_near_global_0.15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/goofoo/goofoo_near_global_0.1_efine.inst.cfg b/resources/quality/goofoo/goofoo_near_global_0.1_efine.inst.cfg index 3fce59afe3e..8176f32de72 100644 --- a/resources/quality/goofoo/goofoo_near_global_0.1_efine.inst.cfg +++ b/resources/quality/goofoo/goofoo_near_global_0.1_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = efine -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/goofoo/goofoo_near_global_0.20_standard.inst.cfg b/resources/quality/goofoo/goofoo_near_global_0.20_standard.inst.cfg index fbd171efa28..aab544c9ae5 100644 --- a/resources/quality/goofoo/goofoo_near_global_0.20_standard.inst.cfg +++ b/resources/quality/goofoo/goofoo_near_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/goofoo/goofoo_near_global_0.3_draft.inst.cfg b/resources/quality/goofoo/goofoo_near_global_0.3_draft.inst.cfg index d2bb27659f6..27733517f32 100644 --- a/resources/quality/goofoo/goofoo_near_global_0.3_draft.inst.cfg +++ b/resources/quality/goofoo/goofoo_near_global_0.3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/goofoo/goofoo_open_global_0.15_fine.inst.cfg b/resources/quality/goofoo/goofoo_open_global_0.15_fine.inst.cfg index 99d27a7f561..90fc50a985d 100644 --- a/resources/quality/goofoo/goofoo_open_global_0.15_fine.inst.cfg +++ b/resources/quality/goofoo/goofoo_open_global_0.15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/goofoo/goofoo_open_global_0.1_efine.inst.cfg b/resources/quality/goofoo/goofoo_open_global_0.1_efine.inst.cfg index b0a43343271..714d26687b1 100644 --- a/resources/quality/goofoo/goofoo_open_global_0.1_efine.inst.cfg +++ b/resources/quality/goofoo/goofoo_open_global_0.1_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = efine -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/goofoo/goofoo_open_global_0.20_standard.inst.cfg b/resources/quality/goofoo/goofoo_open_global_0.20_standard.inst.cfg index 6bef72abfca..6dd2f5f2c94 100644 --- a/resources/quality/goofoo/goofoo_open_global_0.20_standard.inst.cfg +++ b/resources/quality/goofoo/goofoo_open_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/goofoo/goofoo_open_global_0.3_draft.inst.cfg b/resources/quality/goofoo/goofoo_open_global_0.3_draft.inst.cfg index 5d0c696b34f..31dd2d8d9d5 100644 --- a/resources/quality/goofoo/goofoo_open_global_0.3_draft.inst.cfg +++ b/resources/quality/goofoo/goofoo_open_global_0.3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/goofoo/goofoo_small_global_0.15_fine.inst.cfg b/resources/quality/goofoo/goofoo_small_global_0.15_fine.inst.cfg index 8e755fb23dc..e2e1890e50a 100644 --- a/resources/quality/goofoo/goofoo_small_global_0.15_fine.inst.cfg +++ b/resources/quality/goofoo/goofoo_small_global_0.15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/goofoo/goofoo_small_global_0.1_efine.inst.cfg b/resources/quality/goofoo/goofoo_small_global_0.1_efine.inst.cfg index 7527db4b4b2..a9a5cb78bfd 100644 --- a/resources/quality/goofoo/goofoo_small_global_0.1_efine.inst.cfg +++ b/resources/quality/goofoo/goofoo_small_global_0.1_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = efine -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/goofoo/goofoo_small_global_0.20_standard.inst.cfg b/resources/quality/goofoo/goofoo_small_global_0.20_standard.inst.cfg index 921cc3c0ced..af856613756 100644 --- a/resources/quality/goofoo/goofoo_small_global_0.20_standard.inst.cfg +++ b/resources/quality/goofoo/goofoo_small_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/goofoo/goofoo_small_global_0.3_draft.inst.cfg b/resources/quality/goofoo/goofoo_small_global_0.3_draft.inst.cfg index 9c5b3a901f0..75973f7611f 100644 --- a/resources/quality/goofoo/goofoo_small_global_0.3_draft.inst.cfg +++ b/resources/quality/goofoo/goofoo_small_global_0.3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_draft.inst.cfg index bcecf64b08d..382b5b7b61f 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_efine.inst.cfg index 67046360800..68949c1d6f9 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_fine.inst.cfg index 89014792ab9..9054c9489d4 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_standard.inst.cfg index 7cc9f07223d..4e128688b15 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_draft.inst.cfg index ff991d2e921..8e3853a0826 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_efine.inst.cfg index 387bc2803fa..7af166b6efa 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_fine.inst.cfg index 4749e808868..aa3f9309611 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_standard.inst.cfg index e2cc8ebc5e6..ea3069b9ed8 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_draft.inst.cfg index 636cb463248..cde0ddc48bd 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_efine.inst.cfg index 94f7035de6a..9bf54a37fbf 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_fine.inst.cfg index 046c224eeeb..5a7a645b522 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_standard.inst.cfg index c82d1e59d51..7e404b7b904 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_draft.inst.cfg index ba1f0254162..d3c22945341 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_efine.inst.cfg index 7c13e9a36ca..7ba6c2a6f78 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_fine.inst.cfg index 3de4182895c..7fefcbba15b 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_standard.inst.cfg index ea23db0653b..ce588169fb6 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_draft.inst.cfg index 0d0d14a5362..fe1739a06a7 100644 --- a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_efine.inst.cfg index 3bb109d6c9a..aada93345ed 100644 --- a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_fine.inst.cfg index 5edf0b9bd8b..02687e6e269 100644 --- a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_standard.inst.cfg index ae16cbc3b89..222330b5cbc 100644 --- a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_draft.inst.cfg index 182a5eb5576..0861c923582 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_efine.inst.cfg index 1bea3a03535..70c1ba0756a 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_fine.inst.cfg index 8fc710811b2..38beebc234f 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_standard.inst.cfg index 8c5e9ebccec..9206ce61f1b 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_draft.inst.cfg index 2a905fb6a75..68b74a82c0f 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_efine.inst.cfg index c07fd746d14..701cd1545db 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_fine.inst.cfg index 6f647df03f9..d3d259258cf 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_standard.inst.cfg index a908ae58c98..69bdbab195d 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_draft.inst.cfg index 503947b2596..f67b726f8ee 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_efine.inst.cfg index e68a6783700..b93f42ffc78 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_fine.inst.cfg index 2c8ae1a79f5..ea4106110ca 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_standard.inst.cfg index dd79f1ffa6c..e2330ad8af9 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_draft.inst.cfg index a7f82c656d7..b61e7ef3cb2 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_efine.inst.cfg index 5f7de68aa0d..41dce05fc69 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_fine.inst.cfg index 7594f90b2c5..47487c9e0a1 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_standard.inst.cfg index a26870a135c..41528048ef5 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_draft.inst.cfg index 4728c71a2f3..479c51c9b71 100644 --- a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_efine.inst.cfg index 9c4c3d1b17d..733be0fd46c 100644 --- a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_fine.inst.cfg index 93b15b522a7..4d324f8a7bf 100644 --- a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_standard.inst.cfg index 7ca4ae0e0c3..a5c3b8f34d1 100644 --- a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_draft.inst.cfg index 7c6018bf2ca..20861e56cc0 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_efine.inst.cfg index 4b88ea86541..f9b17d8fa48 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_fine.inst.cfg index 9894d7449af..54a3390e5e6 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_standard.inst.cfg index 6ae42916458..2817c49e1b4 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_draft.inst.cfg index 5deaafd5706..378b6bd04cc 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_efine.inst.cfg index 1640a2df7be..bb63251d3ed 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_fine.inst.cfg index 907140849aa..63ba70aae57 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_standard.inst.cfg index 575a91c50b3..e5bbe53eaf2 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_draft.inst.cfg index e336fdd0566..4aa8ebc6400 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_efine.inst.cfg index 1dadaad261b..ab2d4f72143 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_fine.inst.cfg index 427fac9af30..a6fab274b75 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_standard.inst.cfg index 723879fbe73..4eff58cc500 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_draft.inst.cfg index b5bb1979f65..9e50a5cf80a 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_efine.inst.cfg index 5501ac6902d..24de9df2e18 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_fine.inst.cfg index 9866bd5114a..dc15adb0cd6 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_standard.inst.cfg index 4aa0b532056..1115cf5e0a4 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_draft.inst.cfg index 5cbec449645..e1e666538b8 100644 --- a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_efine.inst.cfg index a6d91a10072..84d9f7e94ca 100644 --- a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_fine.inst.cfg index 8c640dfb5c2..59a2b761688 100644 --- a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_standard.inst.cfg index 53222d22731..eb1a9273d64 100644 --- a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.2_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.2_pa_fine.inst.cfg index 348a785acce..0b789d09a62 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.2_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.2_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.2_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.2_pa_standard.inst.cfg index 46567e57242..8226e0ca895 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.2_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.2_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.40_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.40_pa_fine.inst.cfg index 4390447146b..bb7ae4327c8 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.40_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.40_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.40_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.40_pa_standard.inst.cfg index 2d28320a989..75f3570b98f 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.40_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.40_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.6_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.6_pa_fine.inst.cfg index 17b8df3dbdc..681d84301f3 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.6_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.6_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.6_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.6_pa_standard.inst.cfg index e832ecfd9fd..ab2609e0996 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.6_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.6_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.8_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.8_pa_fine.inst.cfg index 3d1af0cfde9..5217639a6f6 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.8_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.8_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.8_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.8_pa_standard.inst.cfg index e2bf82bbaf7..6e99c89bc62 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.8_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.8_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_1.0_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_1.0_pa_fine.inst.cfg index f7dc4ed76e2..759dd180de9 100644 --- a/resources/quality/goofoo/pa/goofoo_far_1.0_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_1.0_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_1.0_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_1.0_pa_standard.inst.cfg index 6c1d838564e..eb4d8f8c694 100644 --- a/resources/quality/goofoo/pa/goofoo_far_1.0_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_1.0_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.2_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.2_pa_fine.inst.cfg index 896c4734d88..fbeebdff0fe 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.2_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.2_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.2_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.2_pa_standard.inst.cfg index 2ef08555de6..14402ffb41e 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.2_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.2_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.40_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.40_pa_fine.inst.cfg index 674a74b59af..fdc7cb697cb 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.40_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.40_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.40_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.40_pa_standard.inst.cfg index 060f1b20783..a242253f4d5 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.40_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.40_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.6_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.6_pa_fine.inst.cfg index af1847498ee..dfbe334e387 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.6_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.6_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.6_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.6_pa_standard.inst.cfg index 774904af4ec..c6bffb0caf4 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.6_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.6_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.8_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.8_pa_fine.inst.cfg index beb2bce12d8..3945747b1b3 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.8_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.8_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.8_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.8_pa_standard.inst.cfg index 19e0532dc4d..c4d0928d9de 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.8_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.8_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_1.0_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_1.0_pa_fine.inst.cfg index da00944e6e5..e3410dc1939 100644 --- a/resources/quality/goofoo/pa/goofoo_near_1.0_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_1.0_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_1.0_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_1.0_pa_standard.inst.cfg index e59c08ce03a..1a7d1343e14 100644 --- a/resources/quality/goofoo/pa/goofoo_near_1.0_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_1.0_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_fine.inst.cfg index 121b088b85b..eea1633018d 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_standard.inst.cfg index 6bba94e2be4..e3b5210a10c 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg index e0f595bde6b..9301e400d05 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_standard.inst.cfg index 9ede72af1b5..33c548ab335 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_fine.inst.cfg index 0be8604ae47..3e0b6583c87 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_standard.inst.cfg index 7ba70b1d355..59ae5b69b5b 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_fine.inst.cfg index 356904c3109..db75bc2c67d 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_standard.inst.cfg index 43f9621a4e7..259440b6a6b 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_fine.inst.cfg index 30365cd67a1..72c3baa2a15 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_standard.inst.cfg index 7cda0fac5f7..a8adf0b4436 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_fine.inst.cfg index 527bf85048d..ab949f6a6a5 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_standard.inst.cfg index 2080deeacfb..0eb5a9bc610 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_fine.inst.cfg index da0a593f955..6d9549bd624 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_standard.inst.cfg index d8d1a7ca875..a2d72c1a695 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_fine.inst.cfg index c22215a97e1..c6a02040718 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_standard.inst.cfg index 361687e2ee0..b8e976b1fc5 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_fine.inst.cfg index 0b40b616f05..1b153efe8d9 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_standard.inst.cfg index a6352e8542b..ea80a02e301 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_fine.inst.cfg index 217577960d9..bc46f2dfa0c 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_standard.inst.cfg index 5224461e413..3315f0d2480 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_draft.inst.cfg index d80a21dd472..ec03597e07f 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_efine.inst.cfg index 6e77446e487..086d782b4f9 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_fine.inst.cfg index 5b23f59e2e6..fa9eee18b00 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_standard.inst.cfg index 0c8a2e9d47e..32f99a349cb 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_draft.inst.cfg index 9170a6ccd36..d8baf0aabee 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_efine.inst.cfg index b7165ca165a..2e51112f230 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_fine.inst.cfg index c9e9e48f4d9..cb3ddd7e7aa 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_standard.inst.cfg index c4a2ae6ee6f..d935d4c1b15 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_draft.inst.cfg index 03c98d36200..4f5cc865a98 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_efine.inst.cfg index 0651e514bef..ce8abce4ac7 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_fine.inst.cfg index ef9c935596e..a7d3f6b27a8 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_standard.inst.cfg index dcd50bc969f..6c5ab971eff 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_draft.inst.cfg index e536456bc9f..ec0ac7ad638 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_efine.inst.cfg index 9deab3245f4..37f541bd8f6 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_fine.inst.cfg index ecf42151cbd..be2af8377be 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_standard.inst.cfg index 02c02bc3e6d..208e815039f 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_draft.inst.cfg index 245bae2a994..9c6c8d5eba5 100644 --- a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_efine.inst.cfg index fb58a85c076..7e78e26ff83 100644 --- a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_fine.inst.cfg index 4d97e9e32d7..04dcc09c2c7 100644 --- a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_standard.inst.cfg index 065fc1731c1..dd60d832ae3 100644 --- a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_draft.inst.cfg index 9ea26f12e81..78c695cecef 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_efine.inst.cfg index 5128f225a48..bf53a8e25c4 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_fine.inst.cfg index bdcf429b4b2..804cd0e68c5 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_standard.inst.cfg index 2f2985b5212..2d539d0b576 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_draft.inst.cfg index c31e8c3165d..c0d56f38ecb 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_efine.inst.cfg index 77e928ecdea..61b977a1db7 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_fine.inst.cfg index 4f300b8df5a..758f32d008d 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_standard.inst.cfg index cf42e403b08..43b128a8a1c 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_draft.inst.cfg index bdfc2bc6ac0..477da6f14d7 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_efine.inst.cfg index 781e1a49caa..71fb033e2b4 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_fine.inst.cfg index a01576b86cf..f8cd0df5979 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_standard.inst.cfg index d6e876a7d52..300b611dad6 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_draft.inst.cfg index bb2f366c996..3c252ed8622 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_efine.inst.cfg index aa93b4aa81c..3854c6d1380 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_fine.inst.cfg index 05ba27ebe5f..8fd500f1258 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_standard.inst.cfg index bf53f2de7af..ac055896ead 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_draft.inst.cfg index d6c47ed9f1b..a17a1036626 100644 --- a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_efine.inst.cfg index d7238ad4e5e..bc2340c2f27 100644 --- a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_fine.inst.cfg index 6ec648b3d54..60e710cf492 100644 --- a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_standard.inst.cfg index 623995b206a..a74c970491c 100644 --- a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_draft.inst.cfg index 44c249c816c..4397bed5bbb 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_efine.inst.cfg index 9be8e0a81bc..ef364d7dc57 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_fine.inst.cfg index 55946c31140..8123c177b2c 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_standard.inst.cfg index 905359674c1..336015d1595 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_draft.inst.cfg index 924af69d3ec..2ee07b5ee03 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_efine.inst.cfg index 2397cfaa833..84409b85602 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_fine.inst.cfg index 38a70388ede..2f6ecf9b3e5 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_standard.inst.cfg index 62c13964a09..9997e79ff67 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_draft.inst.cfg index 390be62de25..3856ee39215 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_efine.inst.cfg index 30931645ad1..5ce9cd26436 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_fine.inst.cfg index 33b80dd5790..9471178bc11 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_standard.inst.cfg index 250cb060bc6..d7929e5ae10 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_draft.inst.cfg index a69b7dcc370..dd3a2cc5923 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_efine.inst.cfg index 9b822a58c98..605838791ff 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_fine.inst.cfg index 59283a5e349..5e9fff72628 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_standard.inst.cfg index c55e3ad761f..6f7bfaf0a4e 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_draft.inst.cfg index f0f668ab32b..6d05e8ce3e0 100644 --- a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_efine.inst.cfg index 2688901e07f..2a365bbdd86 100644 --- a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_fine.inst.cfg index 47045c91b8c..18b2535fc8b 100644 --- a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_standard.inst.cfg index 7b1b50ad63a..25c4d060934 100644 --- a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_draft.inst.cfg index 6cf58193188..83a44b24fd1 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_efine.inst.cfg index 156a652a8f6..cfb5cd1b7ef 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_fine.inst.cfg index 1a5215be93a..f1e02ab23f8 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_standard.inst.cfg index 8c16dc8cb2a..fc37e37d3d1 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_draft.inst.cfg index aa74e974f80..b10b3392318 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_efine.inst.cfg index dcbe3f44fad..eccc713d389 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_fine.inst.cfg index a69c6e51bcf..30c0d7b0289 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_standard.inst.cfg index 5cf34da5b30..d4249dd736a 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_draft.inst.cfg index ab90f22afd4..52bb7224b1e 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_efine.inst.cfg index eb511de63ff..937440d1db8 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_fine.inst.cfg index 9a84bc7a231..8c3443e5f52 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_standard.inst.cfg index af8d148076d..a125ec88172 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_draft.inst.cfg index 4ab82b5dfd1..100aba53bbe 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_efine.inst.cfg index 83dc2864d92..74e44c52494 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_fine.inst.cfg index 43e36bb6405..967ed0a1a5e 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_standard.inst.cfg index deedf0bf1d6..5f9443f94f6 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_draft.inst.cfg index 142cb157864..c02f3de3207 100644 --- a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_efine.inst.cfg index 9b770447bd6..31210dd237a 100644 --- a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_fine.inst.cfg index b80eabd35c4..7103f6f5188 100644 --- a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_standard.inst.cfg index 44730ff9d37..a6cc6efe661 100644 --- a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.2_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.2_petg_fine.inst.cfg index 1cdf589a096..6f05c25a564 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.2_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.2_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.2_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.2_petg_standard.inst.cfg index a4e470199aa..d52397d199e 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.2_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.2_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.40_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.40_petg_fine.inst.cfg index 20d6b7d38bb..59031fa7646 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.40_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.40_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.40_petg_standard.inst.cfg index d71b7310b45..5886287af01 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.40_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.6_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.6_petg_fine.inst.cfg index 75bea2fc24e..da4c2925063 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.6_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.6_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.6_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.6_petg_standard.inst.cfg index 1d054195e12..c6620e11ea9 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.6_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.6_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.8_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.8_petg_fine.inst.cfg index d82203c2e70..da4f8144339 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.8_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.8_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.8_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.8_petg_standard.inst.cfg index cfeab2566c4..2806286c733 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.8_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.8_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_1.0_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_1.0_petg_fine.inst.cfg index 2448c605f0e..4090dbf86ef 100644 --- a/resources/quality/goofoo/petg/goofoo_far_1.0_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_1.0_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_1.0_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_1.0_petg_standard.inst.cfg index 9a817f0e393..64b49409dc0 100644 --- a/resources/quality/goofoo/petg/goofoo_far_1.0_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_1.0_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.2_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.2_petg_fine.inst.cfg index 380f4e2dd56..d786159358a 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.2_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.2_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.2_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.2_petg_standard.inst.cfg index 439bd15e25b..9e9f0e8ce67 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.2_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.2_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.40_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.40_petg_fine.inst.cfg index 2fa405b1646..f51712a0e37 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.40_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.40_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.40_petg_standard.inst.cfg index 5c7cf701fe5..0aa5380ef07 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.40_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.6_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.6_petg_fine.inst.cfg index 8c59997a600..7f3ef09e5df 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.6_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.6_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.6_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.6_petg_standard.inst.cfg index 00eca070f82..1042e7b3517 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.6_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.6_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.8_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.8_petg_fine.inst.cfg index 33cb7b1a87d..db4e0037ea5 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.8_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.8_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.8_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.8_petg_standard.inst.cfg index 5f54ebf6478..f1505283eef 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.8_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.8_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_1.0_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_1.0_petg_fine.inst.cfg index 9eaac26a420..0cfc7884604 100644 --- a/resources/quality/goofoo/petg/goofoo_near_1.0_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_1.0_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_1.0_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_1.0_petg_standard.inst.cfg index 041302c244b..2f1d6f8a3c6 100644 --- a/resources/quality/goofoo/petg/goofoo_near_1.0_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_1.0_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.2_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.2_petg_fine.inst.cfg index e80ab9d9ee5..b0924d5ead8 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.2_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.2_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.2_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.2_petg_standard.inst.cfg index ad81d57fb77..5da003b6cd8 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.2_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.2_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.40_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.40_petg_fine.inst.cfg index 0443634dc48..7bfc28b0fe7 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.40_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.40_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.40_petg_standard.inst.cfg index b5275e5c2e7..08f71712201 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.40_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.6_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.6_petg_fine.inst.cfg index 353632253d0..b8fd1635c2c 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.6_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.6_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.6_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.6_petg_standard.inst.cfg index 274cbc354e5..9bbd2ad7d41 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.6_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.6_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.8_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.8_petg_fine.inst.cfg index 6a85e0c7ed5..5f98ee9cfba 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.8_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.8_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.8_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.8_petg_standard.inst.cfg index 08aca6b910c..58c8b1159c0 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.8_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.8_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_1.0_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_1.0_petg_fine.inst.cfg index 1a1e0740283..6f97ce76bed 100644 --- a/resources/quality/goofoo/petg/goofoo_open_1.0_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_1.0_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_1.0_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_1.0_petg_standard.inst.cfg index f9f8010d49f..53e207635cf 100644 --- a/resources/quality/goofoo/petg/goofoo_open_1.0_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_1.0_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.2_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.2_petg_fine.inst.cfg index 9defbeb9110..0e316b5c4a0 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.2_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.2_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.2_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.2_petg_standard.inst.cfg index 983c32e725f..717b5984474 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.2_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.2_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.40_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.40_petg_fine.inst.cfg index baa5bcae967..e70c1b67a9c 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.40_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.40_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.40_petg_standard.inst.cfg index 4f94d09d636..a13ea62fd28 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.40_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.6_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.6_petg_fine.inst.cfg index 2fee6bc6ada..9ca061bec6c 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.6_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.6_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.6_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.6_petg_standard.inst.cfg index 6f205a97a2a..9c3552f6b11 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.6_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.6_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.8_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.8_petg_fine.inst.cfg index fa705a55208..61c42220033 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.8_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.8_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.8_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.8_petg_standard.inst.cfg index 0baea309085..1bd2aeefb39 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.8_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.8_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_1.0_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_1.0_petg_fine.inst.cfg index 15c3ea0e2af..75e485b5601 100644 --- a/resources/quality/goofoo/petg/goofoo_small_1.0_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_1.0_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_1.0_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_1.0_petg_standard.inst.cfg index 8b56269c2d3..1fa396f1e7b 100644 --- a/resources/quality/goofoo/petg/goofoo_small_1.0_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_1.0_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_draft.inst.cfg index ea804f05f46..a24167ad8ed 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_efine.inst.cfg index 274838e7281..59faa1d11b7 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_fine.inst.cfg index 0e78ad6acf4..485c18956f6 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_standard.inst.cfg index c340d22e6ff..dbeca615661 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_draft.inst.cfg index 92050f0dc80..a34b591de99 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_efine.inst.cfg index 7976f5db530..c0f03fc7d70 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_fine.inst.cfg index 44b404c6a1b..c6854faaec0 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_standard.inst.cfg index 9f71bdd3066..91cd4fe42f0 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_draft.inst.cfg index d9b23780557..943647c0027 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_efine.inst.cfg index 74ab85f6b9d..b83988fb941 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_fine.inst.cfg index 54753bcd6ad..a49d3ca4b67 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_standard.inst.cfg index 53742da7ba3..52e0c9ef2fa 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_draft.inst.cfg index 1b830d2bb4f..f15fde22ecf 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_efine.inst.cfg index e6b6248c657..a56bd4d9c6f 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_fine.inst.cfg index ca03daad0eb..835022875a6 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_standard.inst.cfg index eda258e7de7..a9c9cde3f8b 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_draft.inst.cfg index 7d1fdddb59c..23083c1a042 100644 --- a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_efine.inst.cfg index 474ec201843..1a2d3063a4f 100644 --- a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_fine.inst.cfg index c19ce0e9966..3ba2de10d78 100644 --- a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_standard.inst.cfg index 524229cfcd9..a21f8ad6473 100644 --- a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_draft.inst.cfg index b4c78531a4c..fb219067cd9 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_efine.inst.cfg index b6f9ae029e1..fc6502628ef 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_fine.inst.cfg index d681300f02c..f14b42e672f 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_standard.inst.cfg index de5b5750617..9ab81d4ab61 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_draft.inst.cfg index 86536b0e011..f96fcc751fd 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_efine.inst.cfg index 12df7e9cc91..cb908e50893 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_fine.inst.cfg index 576c85cdfe4..46aea18e0c5 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_standard.inst.cfg index 2d739906bf3..b00456d97a7 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_draft.inst.cfg index 77e61240d45..48fd247c178 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_efine.inst.cfg index 27ff3f26f88..b4ced41c47d 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_fine.inst.cfg index 85b73e4b6d3..b05f7fc31be 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_standard.inst.cfg index 21ca35b524e..fb393edd18e 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_draft.inst.cfg index 9ef89bb7c8e..8dbca6af018 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_efine.inst.cfg index a85340ad4d5..ac7fccc4820 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_fine.inst.cfg index e2ddb168005..d1b58ffed5c 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_standard.inst.cfg index c820a301e78..53b131ad0b0 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_draft.inst.cfg index c0cff5cc4be..dc1b3f52cd0 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_efine.inst.cfg index 9931f64de24..bcbb3016618 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_fine.inst.cfg index c954561593c..8f6fdaa3395 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_standard.inst.cfg index cee16a757d9..cf1d7d5b228 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_draft.inst.cfg index 76215536e68..4188aebce9c 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_efine.inst.cfg index 02e0c41bb54..a511d113516 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_fine.inst.cfg index 5a1e3c456a8..59e90a3bb39 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_standard.inst.cfg index 1f364794350..9c85e6c6bc8 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_draft.inst.cfg index b8c86af3459..e03114db760 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_efine.inst.cfg index d12504ba952..8a5094291e3 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_fine.inst.cfg index e5031178ca7..a30cbd04830 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_standard.inst.cfg index 2e60dcdcc30..647eb3dae45 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_draft.inst.cfg index 39dee8a34ab..c5f58040743 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_efine.inst.cfg index 7b2eaa4d07e..8d61ff22d0d 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_fine.inst.cfg index 81378a00feb..75198a3df8e 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_standard.inst.cfg index 2079e1f0c8b..0bba5cf295b 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_draft.inst.cfg index f2380c7cfe7..aa7b5d0b24a 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_efine.inst.cfg index e3f6c13bea3..a83b0e3ad29 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_fine.inst.cfg index 2dce8f735e4..d64032362ac 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_standard.inst.cfg index 3f60c325636..bda9411fb93 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_draft.inst.cfg index 53f23e6eb33..6c2d4f0e004 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_efine.inst.cfg index 46e26a0626c..20cf16c1d40 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_fine.inst.cfg index bff51d98fd2..70074181941 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_standard.inst.cfg index 1201a30d5d0..5759d5678ed 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_draft.inst.cfg index e9645c7f0f3..fd3fd0a2000 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_efine.inst.cfg index 7e7fea7877f..4c811504c1d 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_fine.inst.cfg index a4ee3f3bf58..afc99b665f3 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_standard.inst.cfg index 125f0e9bebc..1bc54841744 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_draft.inst.cfg index 8a46d6cbd12..9213ee41508 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_efine.inst.cfg index ea6cbec13b4..8bce4ab525d 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_fine.inst.cfg index f7a613a20b5..f9521a40140 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_standard.inst.cfg index 44ac6c91b74..705153c9acd 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_draft.inst.cfg index 7f93f92adf6..a7ff3efcdb0 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_efine.inst.cfg index 61a251e2209..0103f6ddc86 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_fine.inst.cfg index 7db0bfd5575..3bdb5f9759b 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_standard.inst.cfg index 2f8a3bdb57c..77141c38db4 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_draft.inst.cfg index d78c1b2bf77..f3b67d20fac 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_efine.inst.cfg index 0513491e114..816ce003670 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_fine.inst.cfg index 3f92cc307b6..f2efc7ef98d 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_standard.inst.cfg index 4c4fcd36058..4df8c1e46d7 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_draft.inst.cfg index e36d6cc922a..1f39390e1ef 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_efine.inst.cfg index 16679787e52..ff27767a2f6 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_fine.inst.cfg index daadf2a25f1..06dff2e66e1 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_standard.inst.cfg index 220f3b38e7c..094c11b8fff 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_draft.inst.cfg index 72b6c17e6f2..f06b2abb44d 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_efine.inst.cfg index 480a6d0d46e..8fb89789579 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_fine.inst.cfg index 4aed3391d2b..3de8dd51d8c 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_standard.inst.cfg index a8b259e40e3..4b023b7c1a4 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_draft.inst.cfg index 4515d117869..4f51919bad6 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_efine.inst.cfg index 9332be7f508..0bd2e821a35 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_fine.inst.cfg index 75cec5183e4..cb27e45ea94 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_standard.inst.cfg index 875390ef4df..894268c3b7a 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_draft.inst.cfg index 40834d6db89..7c2aab3219e 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_efine.inst.cfg index 23c59fb500b..d96c20174b7 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_fine.inst.cfg index e2ad9d6fd4d..058655a1e69 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_standard.inst.cfg index c70bdfb20e0..1ff2b340686 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_draft.inst.cfg index 9f860abd284..dca5cf9f3c4 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_efine.inst.cfg index 520f8fc8a59..e8375270b5c 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_fine.inst.cfg index 8fd2bee0682..c7dec1380f0 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_standard.inst.cfg index 561bde734c8..19c660a4f6b 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_draft.inst.cfg index 671b54bdf44..cdb1911b9a5 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_efine.inst.cfg index ddd379be18a..ded43d09691 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_fine.inst.cfg index b123bd57218..de7c1f36207 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_standard.inst.cfg index 36875a4c57e..10580fbc2b8 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_draft.inst.cfg index 11fafe08098..79855f83e24 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_efine.inst.cfg index 0fe62096af2..91073385f73 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_fine.inst.cfg index 29f1abb2a7e..56afdac2312 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_standard.inst.cfg index 00deef516c0..ef32166d4a9 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_draft.inst.cfg index 94ae0743fe4..bd016036c49 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_efine.inst.cfg index f9b94fc2573..39a950249a0 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_fine.inst.cfg index 46a3a9fa613..cdbf92d318b 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_standard.inst.cfg index 56f92ab16bb..f80b9c0f0d0 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_draft.inst.cfg index bd58e7adf59..b321728ed51 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_efine.inst.cfg index cee9e4dccb5..5931a2497aa 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_fine.inst.cfg index 9f02a5215ec..cd3ec9b4d50 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_standard.inst.cfg index 6f53a862dc2..3374a8e2ab6 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_draft.inst.cfg index 6046f738c5e..2fe1a46d667 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_efine.inst.cfg index c07b6dfad42..829c8fd4910 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_fine.inst.cfg index bdda4ef8a13..bf09b685645 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_standard.inst.cfg index fb0fc68a5cf..1d04870b057 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_draft.inst.cfg index 4c01ab631e0..c1b973352b3 100644 --- a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_efine.inst.cfg index 1a4c2426fb4..c8da6547bc3 100644 --- a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_fine.inst.cfg index 968a7a9c67a..69f0e97e0a1 100644 --- a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_standard.inst.cfg index 6a216a25a1b..e8a065418fd 100644 --- a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_draft.inst.cfg index 457eefe2066..5f8af2b28d9 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_efine.inst.cfg index 5008a6a0ae1..8b8e206a782 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_fine.inst.cfg index 2e9e44565b4..bd93ca1c6ac 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_standard.inst.cfg index bcd800c289c..e5c179ff45b 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_draft.inst.cfg index aac1990e10a..c6567c80f07 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_efine.inst.cfg index d8e6eceaa66..7fa272e40db 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_fine.inst.cfg index 0f3d79ceca8..ea049121067 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_standard.inst.cfg index 35d29dfef78..cdf2ec8d71a 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_draft.inst.cfg index c4bcca20590..84dbdc550a5 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_efine.inst.cfg index 0332a2f238c..caf6cc6cb11 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_fine.inst.cfg index 931a14e7398..84e1264d369 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_standard.inst.cfg index c613d419012..2f178852891 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_draft.inst.cfg index 9ca43bb40f6..ad526c1bab7 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_efine.inst.cfg index 57332ca7b7e..0a7582fd7ff 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_fine.inst.cfg index a19e30459f0..b417b80c86f 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_standard.inst.cfg index c6f687d1869..838a4401821 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_draft.inst.cfg index a8416f211e1..db4115a0b7b 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_efine.inst.cfg index 7e5063001ff..13dc3b1aebb 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_fine.inst.cfg index 80e240c99ec..95b67c7b19f 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_standard.inst.cfg index 30c88bcb71e..3c418caacfa 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_draft.inst.cfg index fb5ce482080..946269e6e4f 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_efine.inst.cfg index 5e4135d37f1..b36d981df95 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_fine.inst.cfg index 2ca72b64783..3bb2a5c25a6 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_standard.inst.cfg index fb76a0b203d..318b863137a 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_draft.inst.cfg index a604d591e79..19bbd2fee2d 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_efine.inst.cfg index 36aa675aa59..1b0ac9a8ad4 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_fine.inst.cfg index 9f8ea69fb5f..35c69885d80 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_standard.inst.cfg index 30b78bc806a..60652b1a404 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_draft.inst.cfg index 440620c4f48..2e5539a0b6e 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_efine.inst.cfg index 7d04f1fe660..b00f0ce701b 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_fine.inst.cfg index f31ca3a447d..c6b885df4a2 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_standard.inst.cfg index 78337e4399a..fcbe4aa9ac7 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_draft.inst.cfg index a522b67182f..54349a9169a 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_efine.inst.cfg index a5237fd6880..c0e790de037 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_fine.inst.cfg index 0735eafe6bf..1e66935368b 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_standard.inst.cfg index ac8f22dae56..6d49dbd1178 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_draft.inst.cfg index 2137bb44d62..b74e3acccd3 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_efine.inst.cfg index 8bf07b71bd9..7501c72ddec 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_fine.inst.cfg index 1b0303b4a0e..3feb6df3a08 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_standard.inst.cfg index 12af81f8ff2..935f9740030 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_draft.inst.cfg index 5f23442d9e3..39e214fda00 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_efine.inst.cfg index 1e1954997df..8a519242811 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_fine.inst.cfg index c2dccc4c292..834d64152d0 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_standard.inst.cfg index 29be08b1352..d6fff7acb88 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_draft.inst.cfg index d1cf9b5edf4..0979c5c314c 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_efine.inst.cfg index eeb45c2ccab..f92b859fd26 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_fine.inst.cfg index 8205023bcd7..7893fa30e98 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_standard.inst.cfg index 3495ff4d3b5..929c20e5b9b 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_draft.inst.cfg index 208e9a81bef..aed7875226b 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_efine.inst.cfg index 2df649ca35f..bd21d6e301f 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_fine.inst.cfg index 1e56bc12bf5..f720646b8b6 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_standard.inst.cfg index f1f8cc59ce0..26fcc13ceae 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_draft.inst.cfg index ca0921304aa..060a636082f 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_efine.inst.cfg index e2fd6b87d39..736bd6ba524 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_fine.inst.cfg index 52d36595703..1af5ab5773f 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_standard.inst.cfg index 8a005e13f43..64752f37e0a 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_draft.inst.cfg index 35831312bb6..058eab3b51e 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_efine.inst.cfg index 0ff8d896641..29dc4ea9c90 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_fine.inst.cfg index 43859075e12..dcda2fee8ad 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_standard.inst.cfg index 09e685a14de..bde488d5bbd 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_draft.inst.cfg index 99187ad5dff..962ee7df647 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_efine.inst.cfg index 81fdbdbafbe..6fae0d7de3c 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_fine.inst.cfg index 3ed41c03099..045e0dd9a32 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_standard.inst.cfg index b51daea66f5..69adc588fed 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_draft.inst.cfg index 1a054a12595..a30c01dd541 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_efine.inst.cfg index 9ba820f8770..629a750003d 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_fine.inst.cfg index c89eedbf43d..472c51f9ae2 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_standard.inst.cfg index 39d4687305a..d745270314b 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_draft.inst.cfg index 7bd3af8187f..25c69b07163 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_efine.inst.cfg index da4acd2f6f2..327f56569ad 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_fine.inst.cfg index d3a322e4658..0bd8183eda6 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_standard.inst.cfg index a63a8816e7f..d86ac946c17 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_draft.inst.cfg index de0137a4e65..6fa76cf2691 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_efine.inst.cfg index fa28f435c6c..9b67dd691b0 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_fine.inst.cfg index 16534a9d4aa..fbcee52ef0c 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_standard.inst.cfg index 3025e1b77c3..dc780ccce12 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_draft.inst.cfg index ebd9e68fe07..7e57571e070 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_efine.inst.cfg index 7f039d1a1c5..fb11dae28ef 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_fine.inst.cfg index cf026efa1d2..fe89dfb09f9 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_standard.inst.cfg index 83700acaf26..1a8351b2ea5 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_draft.inst.cfg index 9c912e786fe..79ee9f35d6d 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_efine.inst.cfg index c38c5b2fb0f..01ea17738b5 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_fine.inst.cfg index 44f3add9e29..b227780b3f9 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_standard.inst.cfg index 573484ba804..94b03d66536 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_draft.inst.cfg index 9aa7c8002ef..ba8a374e6a5 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_efine.inst.cfg index 46469f6f296..c526af5f69b 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_fine.inst.cfg index 05eedcdbb9e..9ad5e221eeb 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_standard.inst.cfg index 681f07472e9..aa480a3495b 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_draft.inst.cfg index 30ad404a8c9..2d4c6d35018 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_efine.inst.cfg index fbe87ef6c61..d81ddd486f0 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_fine.inst.cfg index 9fe7f059cdf..ccc463655e5 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_standard.inst.cfg index ba0d5867f09..14acbc16f37 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_draft.inst.cfg index e8848d36ed4..6f3ebb98ed2 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_efine.inst.cfg index 5a581ba104e..f07208c6627 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_fine.inst.cfg index 9999ad4926d..2c436418cd9 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_standard.inst.cfg index b99ed6619c9..c341378f23f 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_draft.inst.cfg index e69de84b626..d8bae28f189 100644 --- a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_efine.inst.cfg index 181121e4814..3a8668d7053 100644 --- a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_fine.inst.cfg index 073a976f16c..63506d7c13f 100644 --- a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_standard.inst.cfg index 4a508a0a06a..8babb653177 100644 --- a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_draft.inst.cfg index 3c8b00f6262..e6403083d2b 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_efine.inst.cfg index 3ce95f7a639..bc8e85b6634 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_fine.inst.cfg index 3b41b07a064..802e8c299b9 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_standard.inst.cfg index 3210f1da7ba..e2128f9758d 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_draft.inst.cfg index 46e75f38999..0fce6059223 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_efine.inst.cfg index aa4f99fcb3e..955492c995a 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_fine.inst.cfg index 679e88140f0..bc91dd87718 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_standard.inst.cfg index 1b3680cf731..e508f330d26 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_draft.inst.cfg index dac40bc410e..6ac15e5f7c5 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_efine.inst.cfg index 80b5c6b6506..c72b18b91d0 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_fine.inst.cfg index 17b366bf720..e143b95b71d 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_standard.inst.cfg index cee54c23631..528052b6bdc 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_draft.inst.cfg index e4deeed9dbe..d4740559ff8 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_efine.inst.cfg index adeb9566607..441cada5b9f 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_fine.inst.cfg index 682d398b68d..816d60c36e5 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_standard.inst.cfg index e465530528e..2b8626361a4 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_draft.inst.cfg index d7a74a43fe3..d28480fa4d9 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_efine.inst.cfg index 50ecaf14ec9..455ba84ee93 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_fine.inst.cfg index 04334a9c556..b58b7b1d882 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_standard.inst.cfg index 427ecf378dc..3ee1caeca55 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_draft.inst.cfg index 98fd96a26d1..ab5ec4e7485 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_efine.inst.cfg index f4dda4780a6..db0a844d973 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_fine.inst.cfg index 6d9bfd898e3..856335f5adc 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_standard.inst.cfg index 83789925b62..cf6165f701f 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_draft.inst.cfg index 6807168f8a4..ea69168c9c4 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_efine.inst.cfg index 72f6883afdf..acd7670bb42 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_fine.inst.cfg index 8070d0e64cc..098ab00000e 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_standard.inst.cfg index 4abf8d0c80e..8049d029d85 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_draft.inst.cfg index 4367c59ba83..54dd0fb0082 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_efine.inst.cfg index 7290662db69..5e288f02c21 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_fine.inst.cfg index 28b3cbc3bed..c01fa7db09b 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_standard.inst.cfg index 48f13581246..09c08534327 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_draft.inst.cfg index 63395c97e2b..02513dab07e 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_efine.inst.cfg index bb80d477d2b..92b75c84e89 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_fine.inst.cfg index 234019da738..8a1a9b7d332 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_standard.inst.cfg index 8106b3ef219..9ac586e25e0 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_draft.inst.cfg index 7ff797252cc..40a51f422fd 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_efine.inst.cfg index 2a667d64660..924e6f6f534 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_fine.inst.cfg index df35985225e..4c63c9486db 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_standard.inst.cfg index e2d4610158d..2a21f43111c 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_draft.inst.cfg index 495ce5971cc..910eae2f474 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_efine.inst.cfg index 7d13a8dadc5..325f0379579 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_fine.inst.cfg index d895be517a2..811ff42d680 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_standard.inst.cfg index e34dcbac6d3..827c3c43a72 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_draft.inst.cfg index 86db2a4d457..431c8020cc2 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_efine.inst.cfg index 6b4d27dd4a5..4e204492c77 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_fine.inst.cfg index 4886566493d..90852fabc16 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_standard.inst.cfg index a38cf1fd2ef..8a7f848d330 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_draft.inst.cfg index 5a23fd57a2b..ac321494558 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_efine.inst.cfg index 8e4170d9d23..2e79e9b88eb 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_fine.inst.cfg index 938461c5e7c..10b33ca2c4f 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_standard.inst.cfg index 9e4a7628122..d2819a8f013 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_draft.inst.cfg index 336196c2caf..c8073b57a06 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_efine.inst.cfg index 16e9d629c1f..3a7f1c54ab8 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_fine.inst.cfg index cedbff00bf9..535b1da3c02 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_standard.inst.cfg index 434da68f639..b96a76d79ad 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_draft.inst.cfg index 5e46e31d8f2..c788c0d8876 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_efine.inst.cfg index a0b4939bf2e..e5c236d98cf 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_fine.inst.cfg index 4a39e1c8e10..77230985744 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_standard.inst.cfg index 96b2f04cef8..cf1147a425b 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_draft.inst.cfg index b3e32302ab9..596c4b79c50 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_efine.inst.cfg index c64a33386ef..0d97b4ee376 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_fine.inst.cfg index a7959b6cc9d..82848057d42 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_standard.inst.cfg index 2493925bfda..aaf25c03c9a 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_draft.inst.cfg index 1f98a763f8a..e9a74178f67 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_efine.inst.cfg index f464e716394..7e2019db94a 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_fine.inst.cfg index 279a08f94ff..9cdaf34562c 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_standard.inst.cfg index 29a442d2f22..155219e40ee 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_draft.inst.cfg index 806e5fd9fa9..68264892fc0 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_efine.inst.cfg index cc432790981..c5678f48c71 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_fine.inst.cfg index b308cdd674a..b43f566e080 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_standard.inst.cfg index 5ffd9438278..cc8737355e4 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.70_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.70_pla_standard.inst.cfg index 90011648e7a..bf326069be2 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.70_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.70_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.7mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_draft.inst.cfg index d4be1df6466..156132c8a7e 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_efine.inst.cfg index c1d11ee1e57..b640517870e 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_fine.inst.cfg index 06d65533023..0763c0b9696 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_standard.inst.cfg index 713055db6df..b8e72e2b850 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_draft.inst.cfg index d537e2bce9d..2fe0334d24d 100644 --- a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_efine.inst.cfg index 67e57f4a4fb..f6aac1d38f8 100644 --- a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_fine.inst.cfg index 4bbf391b458..e083b57522b 100644 --- a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_standard.inst.cfg index 01dc8f7675d..72066ca6a37 100644 --- a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_draft.inst.cfg index e2dc4fb2baa..5256fc3783c 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_efine.inst.cfg index 87062b3c991..5dabf9f38c5 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_fine.inst.cfg index c6fddf4d72f..a55d9c304df 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_standard.inst.cfg index 011559774d6..1fe7644f2d5 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_draft.inst.cfg index 7838ee5feeb..60d0b6687ed 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_efine.inst.cfg index 197d91b836b..e626039e59c 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_fine.inst.cfg index 835f59c754f..e9ebc84cf2b 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_standard.inst.cfg index c5e129679a8..8ad915955a8 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_draft.inst.cfg index 2e70de1784e..6864af98d56 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_efine.inst.cfg index 0b690d4ea6a..b8d46420ac7 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_fine.inst.cfg index 550659cd4ee..3ca13903683 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_standard.inst.cfg index db0e547e98d..44c569cd81c 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_draft.inst.cfg index 3b341470099..b55e079336f 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_efine.inst.cfg index 506475b0b5d..5f4a94be7b1 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_fine.inst.cfg index 75f6251d436..cc19dd93ec2 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_standard.inst.cfg index 0020c6afc2b..56f72013817 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_draft.inst.cfg index 1721758d21b..7005a15a084 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_efine.inst.cfg index ae3a1f91958..4440229bfd6 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_fine.inst.cfg index 7ceb595c4b6..d7eb2fa3afc 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_standard.inst.cfg index 436fef5536f..b36955655dc 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_draft.inst.cfg index ade33240901..75559b404fd 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_efine.inst.cfg index d84355a0dcd..98e1d91ab48 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_fine.inst.cfg index a8ac3c5a587..17d04e94448 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_standard.inst.cfg index 32d826930a2..6cf3047e35a 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_draft.inst.cfg index e0b1b838856..8a0c63554d9 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_efine.inst.cfg index 8b2d5d8dab9..a163cc0958b 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_fine.inst.cfg index a4e05f0b1be..dd3074ee47c 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_standard.inst.cfg index 3dcf5d8cf23..a1ac06a465b 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_draft.inst.cfg index bebb81291a3..4d3ded603e4 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_efine.inst.cfg index fb219f2e16a..472bac1b491 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_fine.inst.cfg index 9c23538b5fd..d9e9c6baac3 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_standard.inst.cfg index bd4e3851bea..11a5bf11dad 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_draft.inst.cfg index 6d788974ce0..73c4381d770 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_efine.inst.cfg index be1ad19db6c..9ab5b47fc87 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_fine.inst.cfg index 133e168d63e..1d9a367606d 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_standard.inst.cfg index 2d895109eda..e8c63384615 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_draft.inst.cfg index d25c4c2793c..1b3a7fc6304 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_efine.inst.cfg index eef04ba0f0a..6365705e9b9 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_fine.inst.cfg index bc6abd6fde8..c19e5744bfe 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_standard.inst.cfg index 444258d3e78..1f06092793a 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_draft.inst.cfg index aafee1609c7..3a66f229687 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_efine.inst.cfg index 91dfb9945f5..030a1215a80 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_fine.inst.cfg index 383b8148041..526c675bf5a 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_standard.inst.cfg index f15973a0e4e..7064d1dbf29 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_draft.inst.cfg index f1855c07d75..a5c71b0f01c 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_efine.inst.cfg index 2cff52d0d74..c075dcb8929 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_fine.inst.cfg index 45b10074a04..ed6df806f25 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_standard.inst.cfg index 55c4a61eee2..7acce33904c 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_draft.inst.cfg index 243bdcfaea5..436ee3fdaea 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_efine.inst.cfg index 8913a0d7109..6fcce27f3be 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_fine.inst.cfg index 7e30359f033..2b2d7700401 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_standard.inst.cfg index 6aabac6e5bb..70d0a9e1d2d 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_draft.inst.cfg index 61e3bc8944f..8656ed85ad3 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_efine.inst.cfg index e24514e9736..909c82ace33 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_fine.inst.cfg index f2a18d1a0f6..0bc7b9d98f4 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_standard.inst.cfg index 25f5eea2286..746317e2e89 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_draft.inst.cfg index d6f8b70abbc..f0a74a8fb47 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_efine.inst.cfg index 78b6abfcce4..e63033750f4 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_fine.inst.cfg index 4d2b12b9525..893340e54c6 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_standard.inst.cfg index 89863c4c31f..baf72049930 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_draft.inst.cfg index 9f9fef6d608..dbf4d02cba1 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_efine.inst.cfg index f7e1050f200..8cba0d5d701 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_fine.inst.cfg index c04809b64f7..bea05b2d8dc 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_standard.inst.cfg index 1668ede94c0..172c4bf9d7a 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_draft.inst.cfg index 62933a4fbd5..53712efd2e5 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_efine.inst.cfg index 7bb06108a0c..de5bd5d1562 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_fine.inst.cfg index 1c0691a7d60..806c5458b17 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_standard.inst.cfg index 48f165411bc..55caeae945a 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_draft.inst.cfg index a106cf2fd26..7611fdf69a5 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_efine.inst.cfg index feccfe4d0cb..7ff408c45f3 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_fine.inst.cfg index e7c73d65ec7..dadb1f716de 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_standard.inst.cfg index 072c9b36977..675e64af206 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_draft.inst.cfg index 0822ed93956..6b6b9c295f1 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_efine.inst.cfg index af138ec9ad1..1abca531675 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_fine.inst.cfg index 5f56b9858ab..2ce84bd9c26 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_standard.inst.cfg index f19c453c06c..86f97a674a0 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_draft.inst.cfg index f771663bc61..58cd0e49f2b 100644 --- a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_efine.inst.cfg index 88619447b86..3291eed01db 100644 --- a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_fine.inst.cfg index 32d055d5197..d6bb3a6fce4 100644 --- a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_standard.inst.cfg index b387713b73b..3f2ab062936 100644 --- a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_draft.inst.cfg index 9ef41cae428..01c73983327 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_efine.inst.cfg index 0f51bcd54ab..c09a540a34d 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_fine.inst.cfg index 6d2760a8b6e..1362015f13f 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_standard.inst.cfg index 9024d3af2ce..098c80b8997 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_draft.inst.cfg index 6d65d34038a..a44a19eb1fe 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_efine.inst.cfg index 951d21a24a9..4aab660f0da 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_fine.inst.cfg index 03902636ee9..9721a8e1d07 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_standard.inst.cfg index b427f6ade87..3402c32cbec 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_draft.inst.cfg index a818846db10..9420fbd8d2c 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_efine.inst.cfg index 7156000c897..77982e15591 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_fine.inst.cfg index 2bcce8c08f5..ac75323db6e 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_standard.inst.cfg index a89d332e920..173d78ce78f 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_draft.inst.cfg index 7accd1dc5d6..d8772778fb3 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_efine.inst.cfg index eb55f197448..d9db15f5e83 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_fine.inst.cfg index d6cdef8f469..fd78553b0dc 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_standard.inst.cfg index 4c7386319d8..4e59e51b308 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_draft.inst.cfg index cfb6048bfa5..977a1310661 100644 --- a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_efine.inst.cfg index 7aa0d816809..dd3b88ed5bb 100644 --- a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_fine.inst.cfg index 7cbc5d0d5a0..6a4b8f6e3b6 100644 --- a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_standard.inst.cfg index a217770025e..419a5ad42be 100644 --- a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_draft.inst.cfg index b5e6cfd2da1..30323b2e71c 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_efine.inst.cfg index 3bd3ce920f7..56be469fdae 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_fine.inst.cfg index beb9b922a1e..e8ad02e14a1 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_standard.inst.cfg index e167dcac9ff..e12df152d57 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_draft.inst.cfg index 664f3e6ca17..4e23322b49a 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_efine.inst.cfg index 444da63072b..bba461fb891 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_fine.inst.cfg index 3f9ada087ce..6199be2bd79 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_standard.inst.cfg index d00e73fabb4..4827fcec139 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_draft.inst.cfg index 4343317dfc0..546aa829cf1 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_efine.inst.cfg index c286dc24856..b95d38dc3e7 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_fine.inst.cfg index e31017db6d3..a4e727516e1 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_standard.inst.cfg index d05f817415b..07d12aea7dd 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_draft.inst.cfg index 9a478458711..b786fe42b36 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_efine.inst.cfg index 49609c7121a..16def5703d4 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_fine.inst.cfg index 0647fcbeaaa..b3128f40e98 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_standard.inst.cfg index 9e69c455dd3..b1c8aadb1af 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_draft.inst.cfg index 0b1278493c4..2d28fab21b2 100644 --- a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_efine.inst.cfg index 1d31469cc32..2b6825515cf 100644 --- a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_fine.inst.cfg index 7e9261a810e..4775bfc5a5f 100644 --- a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_standard.inst.cfg index abc24c245c4..2f3dbe36ffc 100644 --- a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_draft.inst.cfg index 9d90340c7d1..647d309c184 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_efine.inst.cfg index c3369b073b0..338162a5f05 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_fine.inst.cfg index 098e1b27336..cb1293ea9bf 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_standard.inst.cfg index 034b928933d..5087d749a26 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_draft.inst.cfg index 47443f2158c..e147f684960 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_efine.inst.cfg index aa2c30969bd..c031d264451 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_fine.inst.cfg index c0323964768..9d23c7aeefc 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_standard.inst.cfg index 99e48b52caf..fe90f6970cb 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_draft.inst.cfg index 960ea90df3c..58c0d71f30a 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_efine.inst.cfg index f6be30dffb6..1ebf0bc71de 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_fine.inst.cfg index 01f7d71e9b1..07cde244a58 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_standard.inst.cfg index 02adae91d80..d17393a5f06 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_draft.inst.cfg index 5bbf15d8316..f9a2ee471eb 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_efine.inst.cfg index 22109fa7369..522e7b66803 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_fine.inst.cfg index d005f362941..5f8b9645a95 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_standard.inst.cfg index 51afba93ed0..7d11410f2ad 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_draft.inst.cfg index 435b079942e..e0d002c768d 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_efine.inst.cfg index ee17b3b5684..8606bbe8ef3 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_fine.inst.cfg index 9d3027b9263..dd964bdda51 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_standard.inst.cfg index b76e7d12376..1fe0d04fa49 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_draft.inst.cfg index 306b13f4999..1c31950f410 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_efine.inst.cfg index 7fbfd04d18c..77fadaf6687 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_fine.inst.cfg index 3829cd6681f..281e4543cdb 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_standard.inst.cfg index ef53446b4c4..abe75e6061e 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_draft.inst.cfg index c59f80887ba..928eceef5c2 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_efine.inst.cfg index 55ffd2c0cad..34ab0e6195a 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_fine.inst.cfg index a00cca72fee..e84eb91d7f6 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_standard.inst.cfg index c0348c50a01..fedb231ee8f 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_draft.inst.cfg index 9dd50875e1b..e554c172c6d 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_efine.inst.cfg index 5975aed497f..5a10719a81e 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_fine.inst.cfg index 3e2c862d7b2..ed09bacb5ba 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_standard.inst.cfg index 67f9a187c8d..16b12b6b917 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_draft.inst.cfg index fd576bf9795..5729092fee8 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_efine.inst.cfg index ca2db4cbc35..e6e39fd2ba3 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_fine.inst.cfg index ba6b8e3bdd0..08e0d0eece3 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_standard.inst.cfg index d30b9f23c72..37a01916dcc 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_draft.inst.cfg index 104e8167c38..e7b68bf5710 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_efine.inst.cfg index 28a10003f4e..cb050a5f5be 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_fine.inst.cfg index 4acd15ea0f1..1a1029e5592 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_standard.inst.cfg index a31b09d1e34..d6456988a87 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_draft.inst.cfg index 7de788b6cd3..74855b60923 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_fine.inst.cfg index d07ac3d50ed..534591138fb 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_standard.inst.cfg index a9c8d61167d..3c94b57d441 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_draft.inst.cfg index 9e11cd6a418..c200e621db4 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_efine.inst.cfg index e29af7fa79f..c8f20b83359 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_fine.inst.cfg index a29e3ab72e7..60d228122d8 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_standard.inst.cfg index bb0e6fe9abd..b7075093ffa 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_draft.inst.cfg index c810bf612fa..e307ab96e54 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg index 268f749a4e0..9ee8c7d0c9b 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_standard.inst.cfg index 4eb93f317e8..37d15f963bc 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_draft.inst.cfg index 7b584856beb..2a69859868a 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_efine.inst.cfg index d82bad2d385..7a6e8dcfa17 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg index 3fbc6b312f6..cc8ecb6e56d 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_standard.inst.cfg index 4380089b590..1611d21ca52 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_draft.inst.cfg index 144a7913ce5..aa35ac47da1 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_fine.inst.cfg index e844f9d8990..3ca411484da 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_standard.inst.cfg index 38f99727687..7d9787b30b7 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_draft.inst.cfg index ea465314fd9..6aeb97bcfc6 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_efine.inst.cfg index 4fedd884d28..96baa3c36b3 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_fine.inst.cfg index 10dac63a0a0..cbf8db5c182 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_standard.inst.cfg index c196470d717..444701f3ea4 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_draft.inst.cfg index ad943c9b4c0..0ddf69995b9 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_fine.inst.cfg index b5829eadfa0..00a42d0e386 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_standard.inst.cfg index c062f66dfdc..7bd13060f4e 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_draft.inst.cfg index 13461b69acd..b2b1eb43bb6 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_efine.inst.cfg index ab3386b24c2..caa94951a5f 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_fine.inst.cfg index ec1e72432d6..3eb74338fd3 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_standard.inst.cfg index de5ddffaa8c..4bea650f680 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_draft.inst.cfg index 92727c490aa..1140c0d664d 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_fine.inst.cfg index eb9edd824d7..a3aa026c585 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_standard.inst.cfg index 13fced9fa90..22a777527ca 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_draft.inst.cfg index a54569e07b7..a776fd974ac 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_efine.inst.cfg index d21940b51ee..b46485d3336 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_fine.inst.cfg index 9a0b95203e1..52f1d6e15f3 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_standard.inst.cfg index 6b7ee19e86b..730333d1e35 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_draft.inst.cfg index 6ae18a8b21e..5dd52d68bb2 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_fine.inst.cfg index 9ac81270399..05ead8d6ef9 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_standard.inst.cfg index 2c703191c8c..01cc928c5f5 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_draft.inst.cfg index 07a9538f65f..d7c9e84fbcf 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_efine.inst.cfg index f0fcc87112c..fd2fd649d49 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_fine.inst.cfg index 95bd1f3d8e4..72644295027 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_standard.inst.cfg index bf773f65c4a..a03f83f31bb 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_draft.inst.cfg index 59bd0b6edb5..46359875085 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_fine.inst.cfg index a7df472cc21..cf7330481a6 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_standard.inst.cfg index 0fda0370f21..b70bc4bfd46 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_draft.inst.cfg index 9d1f7abe98c..1a238231e7a 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_efine.inst.cfg index c04888e54bd..560cff2f9b0 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_fine.inst.cfg index 165a7be1df6..40c0a746348 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_standard.inst.cfg index 2487452a5c5..e686cbd2f1a 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_draft.inst.cfg index 3992eb56365..acfba616405 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_fine.inst.cfg index 4fbf3361056..e5510610359 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_standard.inst.cfg index c71962cb1ee..a51f972000f 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_draft.inst.cfg index c444297122d..33f7343074b 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_efine.inst.cfg index f2448b4f1f7..5be61a07a73 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_fine.inst.cfg index bec02e01c07..70791c31453 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_standard.inst.cfg index 0b61c518464..4c9805c372f 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_draft.inst.cfg index 0d8d49da54f..d459bfce0db 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_fine.inst.cfg index 13bb7b8a48f..9e1c45c8ce0 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_standard.inst.cfg index 900bbfd174f..d63ff9cffea 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_draft.inst.cfg index ac47dccb196..576c8bda75d 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_efine.inst.cfg index 18854e1f8b4..d678e7e1e69 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_fine.inst.cfg index a3d82be7325..a1e3afd88af 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_standard.inst.cfg index 734be5fbb51..feacb669e7e 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_draft.inst.cfg index 23b596fef93..959288634ba 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_fine.inst.cfg index 7fb524d9883..5e1e53eda5c 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_standard.inst.cfg index fc703723a34..ee1a941e0e9 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_draft.inst.cfg index 583ccc72339..fefbd405602 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_efine.inst.cfg index 82e8848521c..10e02d9d167 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_fine.inst.cfg index 93a3eeceeaa..95715b6cd18 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_standard.inst.cfg index 23665d699a9..79a9ee23ac9 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/gutenberg/gutenberg_global_fast_quality.inst.cfg b/resources/quality/gutenberg/gutenberg_global_fast_quality.inst.cfg index 85f0bb9e0e5..205b7096966 100644 --- a/resources/quality/gutenberg/gutenberg_global_fast_quality.inst.cfg +++ b/resources/quality/gutenberg/gutenberg_global_fast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/gutenberg/gutenberg_global_fine_quality.inst.cfg b/resources/quality/gutenberg/gutenberg_global_fine_quality.inst.cfg index 55b16379381..b27aa17940a 100644 --- a/resources/quality/gutenberg/gutenberg_global_fine_quality.inst.cfg +++ b/resources/quality/gutenberg/gutenberg_global_fine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/gutenberg/gutenberg_global_normal_quality.inst.cfg b/resources/quality/gutenberg/gutenberg_global_normal_quality.inst.cfg index a70b33ef308..f4910f5e06f 100644 --- a/resources/quality/gutenberg/gutenberg_global_normal_quality.inst.cfg +++ b/resources/quality/gutenberg/gutenberg_global_normal_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/gutenberg/gutenberg_global_strong_quality.inst.cfg b/resources/quality/gutenberg/gutenberg_global_strong_quality.inst.cfg index 12d536938c3..55c3a69a165 100644 --- a/resources/quality/gutenberg/gutenberg_global_strong_quality.inst.cfg +++ b/resources/quality/gutenberg/gutenberg_global_strong_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = strong -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/high.inst.cfg b/resources/quality/high.inst.cfg index 5b78cb99d1b..0b8675085f6 100644 --- a/resources/quality/high.inst.cfg +++ b/resources/quality/high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/hms434/hms434_global_Coarse_Quality.inst.cfg b/resources/quality/hms434/hms434_global_Coarse_Quality.inst.cfg index bf18f50f12c..7826d97ee5a 100644 --- a/resources/quality/hms434/hms434_global_Coarse_Quality.inst.cfg +++ b/resources/quality/hms434/hms434_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/hms434/hms434_global_High_Quality.inst.cfg b/resources/quality/hms434/hms434_global_High_Quality.inst.cfg index c70f229a778..ef85f8fc943 100644 --- a/resources/quality/hms434/hms434_global_High_Quality.inst.cfg +++ b/resources/quality/hms434/hms434_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/hms434/hms434_global_Normal_Quality.inst.cfg b/resources/quality/hms434/hms434_global_Normal_Quality.inst.cfg index 9b016128d31..3420b89acb0 100644 --- a/resources/quality/hms434/hms434_global_Normal_Quality.inst.cfg +++ b/resources/quality/hms434/hms434_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/hms434/pla/hms434_0.4_pla_high.inst.cfg b/resources/quality/hms434/pla/hms434_0.4_pla_high.inst.cfg index 7c6743494cc..22928aaf4be 100644 --- a/resources/quality/hms434/pla/hms434_0.4_pla_high.inst.cfg +++ b/resources/quality/hms434/pla/hms434_0.4_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm TP extruder weight = 1 diff --git a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_coarse.inst.cfg b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_coarse.inst.cfg index 8edf92e6eb1..b38847c3a59 100644 --- a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_fine.inst.cfg b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_fine.inst.cfg index 60703ed4a0a..d1e45c384ca 100644 --- a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_medium.inst.cfg b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_medium.inst.cfg index 50f79ee486a..4a6bef8a106 100644 --- a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_medium.inst.cfg +++ b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_medium.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_coarse.inst.cfg b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_coarse.inst.cfg index 4382e3194bd..58f20365c5e 100644 --- a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_fine.inst.cfg b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_fine.inst.cfg index ff8acff08f1..a411099609c 100644 --- a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_medium.inst.cfg b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_medium.inst.cfg index 194740ca189..40c5abd25d1 100644 --- a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_medium.inst.cfg +++ b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_medium.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_ultrafine.inst.cfg b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_ultrafine.inst.cfg index 649d0aa573b..49015dd7691 100644 --- a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_ultrafine.inst.cfg +++ b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_ultrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultrahigh -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = 2 diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg index 33f64bac610..b84019e7916 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg index 55ef0c54bf8..8aa8ee6203e 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg index e9efa56b410..5e6ed2682c6 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg index 79c5d001560..db92713bd0c 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultrahigh -setting_version = 23 +setting_version = 22 type = quality weight = 2 diff --git a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_coarse.inst.cfg b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_coarse.inst.cfg index 24975658e7e..58087e1241d 100644 --- a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_fine.inst.cfg b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_fine.inst.cfg index 92cc50fe64e..fbb1051fdc0 100644 --- a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_medium.inst.cfg b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_medium.inst.cfg index ee758d4c06b..838318b6b29 100644 --- a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_medium.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_medium.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_coarse.inst.cfg b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_coarse.inst.cfg index f400857822a..7bfac678aee 100644 --- a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_fine.inst.cfg b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_fine.inst.cfg index ce0a5d45f5a..a7059f87661 100644 --- a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_medium.inst.cfg b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_medium.inst.cfg index eddfaeb3ae2..6518e6e4106 100644 --- a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_medium.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_medium.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_ultrafine.inst.cfg b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_ultrafine.inst.cfg index 4d498a7d4e9..cba3af5b2b6 100644 --- a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_ultrafine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_ultrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultrahigh -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = 2 diff --git a/resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg b/resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg index 1f0999bac1e..9fde6a87eab 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg b/resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg index 4cfc017bffa..419fa6b300d 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg b/resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg index 952c67285c9..c352981f2da 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg b/resources/quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg index a9f4ce41365..a1496e36cce 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultrahigh -setting_version = 23 +setting_version = 22 type = quality weight = 2 diff --git a/resources/quality/inat/inat_base_advanced_materials.inst.cfg b/resources/quality/inat/inat_base_advanced_materials.inst.cfg index ddd332c199d..b8db0944348 100644 --- a/resources/quality/inat/inat_base_advanced_materials.inst.cfg +++ b/resources/quality/inat/inat_base_advanced_materials.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal_advanced -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/inat/inat_base_draft.inst.cfg b/resources/quality/inat/inat_base_draft.inst.cfg index e24e5cb6849..b117afb385e 100644 --- a/resources/quality/inat/inat_base_draft.inst.cfg +++ b/resources/quality/inat/inat_base_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/inat/inat_base_fine.inst.cfg b/resources/quality/inat/inat_base_fine.inst.cfg index 3274629305c..b60f936a152 100644 --- a/resources/quality/inat/inat_base_fine.inst.cfg +++ b/resources/quality/inat/inat_base_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/inat/inat_base_standard.inst.cfg b/resources/quality/inat/inat_base_standard.inst.cfg index a7ff77f71c0..38b46b98e42 100644 --- a/resources/quality/inat/inat_base_standard.inst.cfg +++ b/resources/quality/inat/inat_base_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/inat/inat_base_strong.inst.cfg b/resources/quality/inat/inat_base_strong.inst.cfg index bb49238d337..0a305179df0 100644 --- a/resources/quality/inat/inat_base_strong.inst.cfg +++ b/resources/quality/inat/inat_base_strong.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = strong -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/inat/inat_base_tree_support.inst.cfg b/resources/quality/inat/inat_base_tree_support.inst.cfg index c7985d704e1..484defc5346 100644 --- a/resources/quality/inat/inat_base_tree_support.inst.cfg +++ b/resources/quality/inat/inat_base_tree_support.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal_tree_supp -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.12_detail.inst.cfg b/resources/quality/jgaurora_a6/jgaurora_a6_0.12_detail.inst.cfg index 61f44fe2db8..748bbc5b328 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.12_detail.inst.cfg +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.12_detail.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = true quality_type = detail -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.16_optimal.inst.cfg b/resources/quality/jgaurora_a6/jgaurora_a6_0.16_optimal.inst.cfg index d29c72d391c..30bb6ab0c70 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.16_optimal.inst.cfg +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.16_optimal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = true quality_type = optimal -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.24_draft.inst.cfg b/resources/quality/jgaurora_a6/jgaurora_a6_0.24_draft.inst.cfg index 1e07e55fff6..733ff7624ff 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.24_draft.inst.cfg +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.24_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = true quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg b/resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg index 4ee1bab58b1..f2a7c48e9b0 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = true quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.2_normal.inst.cfg b/resources/quality/jgaurora_a6/jgaurora_a6_0.2_normal.inst.cfg index 2df4e253282..38978f7b0d3 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.2_normal.inst.cfg +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = true quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/katihal/alya3dp_normal.inst.cfg b/resources/quality/katihal/alya3dp_normal.inst.cfg index b9605426b8e..acde117ae3d 100644 --- a/resources/quality/katihal/alya3dp_normal.inst.cfg +++ b/resources/quality/katihal/alya3dp_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = alya_normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg b/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg index 0cfa3151707..4e1f5b9fe41 100644 --- a/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg +++ b/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = alya_normal -setting_version = 23 +setting_version = 22 type = quality weight = 3 diff --git a/resources/quality/katihal/alyanx3dp_normal.inst.cfg b/resources/quality/katihal/alyanx3dp_normal.inst.cfg index 4accd0ff522..8e5946f5b9e 100644 --- a/resources/quality/katihal/alyanx3dp_normal.inst.cfg +++ b/resources/quality/katihal/alyanx3dp_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = alyanx_normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg b/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg index 809f08de220..8058cff6c09 100644 --- a/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg +++ b/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = alyanx_normal -setting_version = 23 +setting_version = 22 type = quality weight = 2 diff --git a/resources/quality/katihal/kupido_normal.inst.cfg b/resources/quality/katihal/kupido_normal.inst.cfg index cb6a330c8bd..2efc4fe1ae3 100644 --- a/resources/quality/katihal/kupido_normal.inst.cfg +++ b/resources/quality/katihal/kupido_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = kupido_normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg b/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg index 63f63fe1942..fbdfc42b77c 100644 --- a/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg +++ b/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = kupido_normal -setting_version = 23 +setting_version = 22 type = quality weight = 3 diff --git a/resources/quality/katihal/kupido_normal_generic_pla.inst.cfg b/resources/quality/katihal/kupido_normal_generic_pla.inst.cfg index d3633935935..ee34e155a26 100644 --- a/resources/quality/katihal/kupido_normal_generic_pla.inst.cfg +++ b/resources/quality/katihal/kupido_normal_generic_pla.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = kupido_normal -setting_version = 23 +setting_version = 22 type = quality weight = 3 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_draft.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_draft.inst.cfg index d809ae48ad5..fe12445795c 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_draft.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_extra_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_extra_fine.inst.cfg index fc8fd5c7a5c..b9de5eb8af1 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_extra_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_fine.inst.cfg index 34651bc83be..c2dbd5b30c3 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_low.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_low.inst.cfg index 456784f7ca3..7a3d2cdf25b 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_low.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_normal.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_normal.inst.cfg index 8a4bcd4968e..1e20e9f01ed 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_normal.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_draft.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_draft.inst.cfg index e413d82cf5d..b4cc00888b8 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_draft.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_extra_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_extra_fine.inst.cfg index ffe75aeb45e..9a861742339 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_extra_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_fine.inst.cfg index 099e5081b7a..6c0397ec548 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_low.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_low.inst.cfg index 6b7c08d2bd2..4aad3524b3f 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_low.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_normal.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_normal.inst.cfg index d8d485ab995..873469a2cd1 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_normal.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_draft.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_draft.inst.cfg index d92fd6ca253..2650cf98e85 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_draft.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_extra_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_extra_fine.inst.cfg index 297a0b9e85c..d090bb6c4e5 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_extra_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_fine.inst.cfg index 5630fdefe0a..fc52768f4e5 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_low.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_low.inst.cfg index a74f9f83b0b..6de5c3e183f 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_low.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_normal.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_normal.inst.cfg index cb5baf62b7d..89f85943133 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_normal.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/key3d/key3d_tyro_best.inst.cfg b/resources/quality/key3d/key3d_tyro_best.inst.cfg index e5b68e36b8d..c7a207387e1 100644 --- a/resources/quality/key3d/key3d_tyro_best.inst.cfg +++ b/resources/quality/key3d/key3d_tyro_best.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = best -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/key3d/key3d_tyro_fast.inst.cfg b/resources/quality/key3d/key3d_tyro_fast.inst.cfg index d988800c1ae..80c0f84c914 100644 --- a/resources/quality/key3d/key3d_tyro_fast.inst.cfg +++ b/resources/quality/key3d/key3d_tyro_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/key3d/key3d_tyro_normal.inst.cfg b/resources/quality/key3d/key3d_tyro_normal.inst.cfg index a7d361bdacc..3c284849d7b 100644 --- a/resources/quality/key3d/key3d_tyro_normal.inst.cfg +++ b/resources/quality/key3d/key3d_tyro_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/kingroon/ABS/kingroon_0.2_ABS_super.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.2_ABS_super.inst.cfg index 6e146e7b701..5aff66437a1 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.2_ABS_super.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.2_ABS_ultra.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.2_ABS_ultra.inst.cfg index 1567cdd68d9..40a5e5b90a1 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_adaptive.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_adaptive.inst.cfg index 267c47b676a..421e1aa1fa0 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_low.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_low.inst.cfg index 68c797149ef..bd1ec6bc532 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_low.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_standard.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_standard.inst.cfg index 7b5ed953547..0477f43fba4 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_standard.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_super.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_super.inst.cfg index 0f4d5f9132f..45fc4b20879 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_super.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_adaptive.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_adaptive.inst.cfg index 201e6a7b27c..b931a8aad5e 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_low.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_low.inst.cfg index 4ff7b3bcb51..f436ddcaeb4 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_low.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_standard.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_standard.inst.cfg index 9732857f872..36ae1acc9e3 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_standard.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_super.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_super.inst.cfg index 600158f3281..f0a128e58df 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_super.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_adaptive.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_adaptive.inst.cfg index 08ae5147ed1..65944f8c3bf 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_low.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_low.inst.cfg index 6bd87de8b18..31a8c4bc303 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_low.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_standard.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_standard.inst.cfg index a9ee4d58da9..22da321da06 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_standard.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_super.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_super.inst.cfg index f92db9d0d3a..96c378d280c 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_super.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.6_ABS_standard.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.6_ABS_standard.inst.cfg index c13c12ff0e0..9b63dde5a40 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.6_ABS_standard.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.8_ABS_draft.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.8_ABS_draft.inst.cfg index 9705ae65b44..74b867d5bba 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.8_ABS_draft.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_1.0_ABS_draft.inst.cfg b/resources/quality/kingroon/ABS/kingroon_1.0_ABS_draft.inst.cfg index 4bf46163385..a542a404db9 100644 --- a/resources/quality/kingroon/ABS/kingroon_1.0_ABS_draft.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.2_PETG_super.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.2_PETG_super.inst.cfg index 18743bfb144..fda03549183 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.2_PETG_super.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.2_PETG_ultra.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.2_PETG_ultra.inst.cfg index 90b68a4b2dd..e65797d2a08 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_adaptive.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_adaptive.inst.cfg index f4e2967c60e..3fa5e6acf0d 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_low.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_low.inst.cfg index 90161eeb14e..b2f95db0f9b 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_low.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_standard.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_standard.inst.cfg index 88b3f0fac3b..c6aad09ce3f 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_standard.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_super.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_super.inst.cfg index 669ee1ba2d6..21addedb5e7 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_super.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_adaptive.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_adaptive.inst.cfg index ecda7d46d97..24e2da4f335 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_low.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_low.inst.cfg index c7c486a8b29..9615254fd07 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_low.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_standard.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_standard.inst.cfg index 96103eaecaf..20fbcfb72cb 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_standard.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_super.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_super.inst.cfg index 3b9e7070587..a483c928c1c 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_super.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_adaptive.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_adaptive.inst.cfg index f65914591b0..9256aa219f4 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_low.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_low.inst.cfg index dd9512693f9..47073a583d3 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_low.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_standard.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_standard.inst.cfg index 8ddbf80ae31..0a07077e0ba 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_standard.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_super.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_super.inst.cfg index 2d3e1274212..f9f5a29fb0f 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_super.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.6_PETG_standard.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.6_PETG_standard.inst.cfg index 712d39c19dd..cd11cf13415 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.6_PETG_standard.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.8_PETG_draft.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.8_PETG_draft.inst.cfg index 09210cdb3cd..54c202b312a 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.8_PETG_draft.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_1.0_PETG_draft.inst.cfg b/resources/quality/kingroon/PETG/kingroon_1.0_PETG_draft.inst.cfg index 70efb35bad7..a9102ff5bca 100644 --- a/resources/quality/kingroon/PETG/kingroon_1.0_PETG_draft.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.2_PLA_super.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.2_PLA_super.inst.cfg index 0d75516111d..a191f9bcff6 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.2_PLA_super.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.2_PLA_ultra.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.2_PLA_ultra.inst.cfg index a8cf9eac901..23491e7efdf 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_adaptive.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_adaptive.inst.cfg index 096a94fbbd5..24a9e9b6b8d 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_low.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_low.inst.cfg index 184fd09da77..e95c9baddb0 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_low.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_standard.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_standard.inst.cfg index 825f2a1ef37..fc4cdaa8e60 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_standard.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_super.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_super.inst.cfg index a2432760921..add438ea604 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_super.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_adaptive.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_adaptive.inst.cfg index 0683da11e5b..e790b8ed55e 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_low.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_low.inst.cfg index 272fd0531fa..33aae2c1f7b 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_low.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_standard.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_standard.inst.cfg index 78116453e2e..0189652c327 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_standard.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_super.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_super.inst.cfg index 3b02bf9e147..175135546a1 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_super.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_adaptive.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_adaptive.inst.cfg index 08afefaa7c7..086dfa8ef32 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_low.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_low.inst.cfg index c07aec9317d..711f6224f7b 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_low.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_standard.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_standard.inst.cfg index 6309f6637e8..20aa28f47c8 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_standard.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_super.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_super.inst.cfg index 58c6b736973..62a1033ba7a 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_super.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_draft.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_draft.inst.cfg index 8a7142b9c69..332f9c28036 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_draft.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_low.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_low.inst.cfg index bf4471ea154..748b2515cc6 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_low.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_standard.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_standard.inst.cfg index 9e4c79f1a44..5cf6bdcc9e6 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_standard.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.8_PLA_draft.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.8_PLA_draft.inst.cfg index 43328ed7c25..1cc706dd5ca 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.8_PLA_draft.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_1.0_PLA_draft.inst.cfg b/resources/quality/kingroon/PLA/kingroon_1.0_PLA_draft.inst.cfg index a22662c9069..0403091e22c 100644 --- a/resources/quality/kingroon/PLA/kingroon_1.0_PLA_draft.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_adaptive.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_adaptive.inst.cfg index f27334e5f47..daa63883b7c 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_standard.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_standard.inst.cfg index cbc2f2688d5..6e3240ae1f6 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_standard.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_super.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_super.inst.cfg index cd78f0f22db..ffdf3375f7a 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_super.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_adaptive.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_adaptive.inst.cfg index 0ff82bd8f19..6be460ffcb9 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_standard.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_standard.inst.cfg index 7e15efbd9c7..c3cc178ac78 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_standard.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_super.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_super.inst.cfg index 91ff4fa64be..6d6bd9b5563 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_super.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_adaptive.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_adaptive.inst.cfg index 335da8db187..13507c0291c 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_standard.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_standard.inst.cfg index 5d2f1f1b45d..d4ae296463f 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_standard.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_super.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_super.inst.cfg index 48fa66b72bb..3efa4b11262 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_super.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.6_TPU_standard.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.6_TPU_standard.inst.cfg index 0b965f6a3db..29451a74b50 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.6_TPU_standard.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.8_TPU_draft.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.8_TPU_draft.inst.cfg index 6b7aa3fb021..99476d6483b 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.8_TPU_draft.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_1.0_TPU_draft.inst.cfg b/resources/quality/kingroon/TPU/kingroon_1.0_TPU_draft.inst.cfg index 8fa29c3e7fe..f9965becede 100644 --- a/resources/quality/kingroon/TPU/kingroon_1.0_TPU_draft.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/kingroon/kingroon_global_adaptive.inst.cfg b/resources/quality/kingroon/kingroon_global_adaptive.inst.cfg index fd3c7d48c6e..770cdbc5d21 100644 --- a/resources/quality/kingroon/kingroon_global_adaptive.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/kingroon/kingroon_global_draft.inst.cfg b/resources/quality/kingroon/kingroon_global_draft.inst.cfg index 0e1282093d0..c0ef094bf8b 100644 --- a/resources/quality/kingroon/kingroon_global_draft.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/kingroon/kingroon_global_low.inst.cfg b/resources/quality/kingroon/kingroon_global_low.inst.cfg index d0687eb4ba2..34ee7bfb8ef 100644 --- a/resources/quality/kingroon/kingroon_global_low.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/kingroon/kingroon_global_standard.inst.cfg b/resources/quality/kingroon/kingroon_global_standard.inst.cfg index 7a6a1a0ff23..b855418b359 100644 --- a/resources/quality/kingroon/kingroon_global_standard.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/kingroon/kingroon_global_super.inst.cfg b/resources/quality/kingroon/kingroon_global_super.inst.cfg index 24651d6e30f..e1ba09843ce 100644 --- a/resources/quality/kingroon/kingroon_global_super.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/kingroon/kingroon_global_ultra.inst.cfg b/resources/quality/kingroon/kingroon_global_ultra.inst.cfg index ed8f7487eee..8f923b9d4cf 100644 --- a/resources/quality/kingroon/kingroon_global_ultra.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/koonovo/koonovo_base_global_draft.inst.cfg b/resources/quality/koonovo/koonovo_base_global_draft.inst.cfg index 068213f1675..0743bebed84 100644 --- a/resources/quality/koonovo/koonovo_base_global_draft.inst.cfg +++ b/resources/quality/koonovo/koonovo_base_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/koonovo/koonovo_base_global_standard.inst.cfg b/resources/quality/koonovo/koonovo_base_global_standard.inst.cfg index 79ac2a8dd11..fd717fe24d0 100644 --- a/resources/quality/koonovo/koonovo_base_global_standard.inst.cfg +++ b/resources/quality/koonovo/koonovo_base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/koonovo/koovono_base_global_high.inst.cfg b/resources/quality/koonovo/koovono_base_global_high.inst.cfg index fa7f77732d3..c14a9e65c9a 100644 --- a/resources/quality/koonovo/koovono_base_global_high.inst.cfg +++ b/resources/quality/koonovo/koovono_base_global_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/liquid/liquid_global_Draft_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Draft_Quality.inst.cfg index 529fb00e0cc..77717ab2b0d 100644 --- a/resources/quality/liquid/liquid_global_Draft_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/liquid/liquid_global_Fast_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Fast_Quality.inst.cfg index 2555cbf1630..c5b9fa0acb9 100644 --- a/resources/quality/liquid/liquid_global_Fast_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/liquid/liquid_global_High_Quality.inst.cfg b/resources/quality/liquid/liquid_global_High_Quality.inst.cfg index bc4dd518f7e..b8a7c1eb8d1 100644 --- a/resources/quality/liquid/liquid_global_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/liquid/liquid_global_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Normal_Quality.inst.cfg index 50d4b9d85cd..c5208859479 100644 --- a/resources/quality/liquid/liquid_global_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/liquid/liquid_global_Superdraft_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Superdraft_Quality.inst.cfg index 0b96cdc9f16..355165ec905 100644 --- a/resources/quality/liquid/liquid_global_Superdraft_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Superdraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/liquid/liquid_global_Verydraft_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Verydraft_Quality.inst.cfg index 8ad236a3a54..d47c09e89e1 100644 --- a/resources/quality/liquid/liquid_global_Verydraft_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Verydraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg index 7edc4475d1f..038affd56f4 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg index adbf76cf594..5091d36813c 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg index 8f02ace6221..0420284fa85 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg index 481f9286689..927bdbe7b9e 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_CPE_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_CPE_Draft_Print.inst.cfg index 793b1410394..998edaada1f 100644 --- a/resources/quality/liquid/liquid_vo0.4_CPE_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_CPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_CPE_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_CPE_Fast_Print.inst.cfg index 82d3afb3c3d..c78ee91b58f 100644 --- a/resources/quality/liquid/liquid_vo0.4_CPE_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_CPE_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_CPE_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_CPE_High_Quality.inst.cfg index 79a9ec7afe1..33163ca6198 100644 --- a/resources/quality/liquid/liquid_vo0.4_CPE_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_CPE_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_CPE_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_CPE_Normal_Quality.inst.cfg index 20e046ae9d0..b238e6ec0ed 100644 --- a/resources/quality/liquid/liquid_vo0.4_CPE_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_CPE_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_Nylon_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_Nylon_Draft_Print.inst.cfg index 9ab6e00494f..8b18b13ee88 100644 --- a/resources/quality/liquid/liquid_vo0.4_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_Nylon_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_Nylon_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_Nylon_Fast_Print.inst.cfg index bad45f35ff3..d6142952a33 100644 --- a/resources/quality/liquid/liquid_vo0.4_Nylon_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_Nylon_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_Nylon_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_Nylon_High_Quality.inst.cfg index 2c1b409a61e..cac80d655dc 100644 --- a/resources/quality/liquid/liquid_vo0.4_Nylon_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_Nylon_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_Nylon_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_Nylon_Normal_Quality.inst.cfg index 92e7b6f1dc5..5385420a8a3 100644 --- a/resources/quality/liquid/liquid_vo0.4_Nylon_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_Nylon_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg index 43dad6ef40c..02d1292c171 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg index 61e64bcdce9..b1c540d01ed 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg index 72279f861e8..6aac1f4972e 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg index b0c5a190d2b..e831dfb2540 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg index eb8bfd773d1..6e0ac107189 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg index 64ab7b9b1ad..5e84c3e1a12 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg index 3ed34d7d212..8974dcbb034 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg index 6f2cace35e5..cbada0be182 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg index 9a99d3d2437..70817b06e31 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg index fc113b83c23..b6991202b2b 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg index 3a2cb07bd10..930f5cf3fd0 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg index 3119dc61397..6595446feef 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg index f873d577d77..1904758532a 100644 --- a/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg index 3eb242372e0..2a0a5729ece 100644 --- a/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg index 65e6e3b18e9..304c4f17f0b 100644 --- a/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_TPU_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_TPU_Draft_Print.inst.cfg index 796de0a70be..74f1ad39f3a 100644 --- a/resources/quality/liquid/liquid_vo0.4_TPU_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_TPU_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_TPU_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_TPU_Fast_Print.inst.cfg index fee2e033768..33eb2e3043c 100644 --- a/resources/quality/liquid/liquid_vo0.4_TPU_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_TPU_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_TPU_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_TPU_Normal_Quality.inst.cfg index bfbcb68eca3..9390870f89f 100644 --- a/resources/quality/liquid/liquid_vo0.4_TPU_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_TPU_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.6_CFFCPE_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_CFFCPE_Draft_Print.inst.cfg index da52676e53e..6ebaa7e2b00 100644 --- a/resources/quality/liquid/liquid_vo0.6_CFFCPE_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_CFFCPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.6_CFFPA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_CFFPA_Draft_Print.inst.cfg index e4b64bc6dd5..697a61bcc4d 100644 --- a/resources/quality/liquid/liquid_vo0.6_CFFPA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_CFFPA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.6_GFFCPE_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_GFFCPE_Draft_Print.inst.cfg index 2d2411a178e..fc301bb5871 100644 --- a/resources/quality/liquid/liquid_vo0.6_GFFCPE_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_GFFCPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.6_GFFPA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_GFFPA_Draft_Print.inst.cfg index 2b81e1bf5c4..9c97b39ab2c 100644 --- a/resources/quality/liquid/liquid_vo0.6_GFFPA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_GFFPA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg index b1191d4a496..bc712bf9997 100644 --- a/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.6 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg index b38068f681f..c51c068ae2d 100644 --- a/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg index ac516c91821..3b6749dfb9b 100644 --- a/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.6 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg index 7141c80b651..45418e5994c 100644 --- a/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_ABS_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_ABS_Draft_Print.inst.cfg index 30dc909d488..f2065b827f4 100644 --- a/resources/quality/liquid/liquid_vo0.8_ABS_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_ABS_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_ABS_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_ABS_Superdraft_Print.inst.cfg index 2fad19c793e..b821b28fd94 100644 --- a/resources/quality/liquid/liquid_vo0.8_ABS_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_ABS_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_ABS_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_ABS_Verydraft_Print.inst.cfg index 29a059069b0..d7acfa7c162 100644 --- a/resources/quality/liquid/liquid_vo0.8_ABS_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_ABS_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg index 504681900fb..90424ee65e8 100644 --- a/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg index 99167908718..7857ed00e75 100644 --- a/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg index 9197ac19ea5..4194c6f3b7b 100644 --- a/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg index 650c2927013..87dd8765880 100644 --- a/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg index e97ebb3a2b1..891a20540dc 100644 --- a/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg index 23d6bb0ee51..e0090947603 100644 --- a/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_PC_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PC_Fast_Print.inst.cfg index e833d7f1328..a0343c51737 100644 --- a/resources/quality/liquid/liquid_vo0.8_PC_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PC_Fast_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_PC_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PC_Superdraft_Print.inst.cfg index fe21da31070..5d1394e463e 100644 --- a/resources/quality/liquid/liquid_vo0.8_PC_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PC_Superdraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_PC_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PC_Verydraft_Print.inst.cfg index 40970b649c6..e945519391e 100644 --- a/resources/quality/liquid/liquid_vo0.8_PC_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PC_Verydraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg index c889900b38f..947c042b8c2 100644 --- a/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg index bef9ca1bbe2..08cb14cb267 100644 --- a/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg index bd78aaee1c4..187ed1f2123 100644 --- a/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg index cf03a5eef06..10b6e8185a5 100644 --- a/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg index 279bf1b9cd5..ed0fc7fd8a5 100644 --- a/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg index bcb84f17d2b..9def9ecb974 100644 --- a/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg index 846f1debc2c..4c3f60a2401 100644 --- a/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg index ca74c20bbc8..1b7c05ac3c3 100644 --- a/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg index 5397b2ffd68..7cbb60c3aac 100644 --- a/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg index e89de5246ff..4994e3f9f45 100644 --- a/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg index f14bf32f35b..fd15d041b82 100644 --- a/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg index 19b419068a7..5c88fb165f8 100644 --- a/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_super.inst.cfg index 909a8cebee3..260a3a81c8f 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_ultra.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_ultra.inst.cfg index 7ed1077b3ed..fda970be10b 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_ultra.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_super.inst.cfg index 449deae2ad6..ada9e0eb897 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_ultra.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_ultra.inst.cfg index 5473b935f65..c5440ccafae 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_ultra.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_adaptive.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_adaptive.inst.cfg index 0a20b2fbf13..d2916ea2f0f 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_adaptive.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_low.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_low.inst.cfg index 21a69ce7c24..290665a0ff6 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_low.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_standard.inst.cfg index d0f709d405c..bde91591bec 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_super.inst.cfg index 7bb2651f33d..2678b7e383d 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_adaptive.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_adaptive.inst.cfg index bb773464c8d..f38b46a7646 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_adaptive.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_low.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_low.inst.cfg index e355bd25b4a..4860f58cf12 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_low.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_standard.inst.cfg index 617821370ae..4beedcef6b0 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_super.inst.cfg index 84339d288ae..277e3af31a5 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_adaptive.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_adaptive.inst.cfg index 69869e3fd61..e130e03c10e 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_adaptive.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_standard.inst.cfg index a51303702cb..f1b29175a04 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_super.inst.cfg index 6dda11cc518..e8d45e0c402 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PETG_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PETG_standard.inst.cfg index ad87dd1196d..4f2bd1f74af 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PETG_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_draft.inst.cfg index df5df7cf6ad..be6dcc53706 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_draft.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_low.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_low.inst.cfg index d2a4c508176..38dcfbd232c 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_low.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_standard.inst.cfg index 097f8d4eca5..a9dfd3aac40 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.6_generic_TPU_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.6_generic_TPU_standard.inst.cfg index d30b3f83c55..438e4b02297 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.6_generic_TPU_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.8_generic_PETG_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.8_generic_PETG_draft.inst.cfg index 613a72ae4aa..fa481c4e8e4 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.8_generic_PETG_draft.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.8_generic_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.8_generic_PLA_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.8_generic_PLA_draft.inst.cfg index 19c26a6cc3d..aa497ec2432 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.8_generic_PLA_draft.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.8_generic_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.8_generic_TPU_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.8_generic_TPU_draft.inst.cfg index 6e81d2d1c62..9bec35aae73 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.8_generic_TPU_draft.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.8_generic_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_global_adaptive.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_adaptive.inst.cfg index deabef32a8a..7a74241eafd 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_adaptive.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/lnl3d/lnl3d_base_global_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_draft.inst.cfg index fa55dbe4278..d6d2eb6304c 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_draft.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/lnl3d/lnl3d_base_global_low.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_low.inst.cfg index 3d4f20932a8..cb1f19fb954 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_low.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/lnl3d/lnl3d_base_global_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_standard.inst.cfg index a5b2708995f..71f312f4f4a 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/lnl3d/lnl3d_base_global_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_super.inst.cfg index fb492bda7bf..68a37d8f143 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/lnl3d/lnl3d_base_global_ultra.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_ultra.inst.cfg index e6f942ff5f3..7bad9bb2110 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_ultra.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/longer/ABS/longer_0.4_ABS_adaptive.inst.cfg b/resources/quality/longer/ABS/longer_0.4_ABS_adaptive.inst.cfg index c0ad2d4f369..8f1e23ca36c 100644 --- a/resources/quality/longer/ABS/longer_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/longer/ABS/longer_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/ABS/longer_0.4_ABS_low.inst.cfg b/resources/quality/longer/ABS/longer_0.4_ABS_low.inst.cfg index c617b11b873..3d9ae4b2453 100644 --- a/resources/quality/longer/ABS/longer_0.4_ABS_low.inst.cfg +++ b/resources/quality/longer/ABS/longer_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/ABS/longer_0.4_ABS_standard.inst.cfg b/resources/quality/longer/ABS/longer_0.4_ABS_standard.inst.cfg index 3707ac77ffa..3c409fecdaf 100644 --- a/resources/quality/longer/ABS/longer_0.4_ABS_standard.inst.cfg +++ b/resources/quality/longer/ABS/longer_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/ABS/longer_0.4_ABS_super.inst.cfg b/resources/quality/longer/ABS/longer_0.4_ABS_super.inst.cfg index 64a55d3c0ad..aa240b5986a 100644 --- a/resources/quality/longer/ABS/longer_0.4_ABS_super.inst.cfg +++ b/resources/quality/longer/ABS/longer_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PETG/longer_0.4_PETG_adaptive.inst.cfg b/resources/quality/longer/PETG/longer_0.4_PETG_adaptive.inst.cfg index 940dddc62b4..5043c5df61c 100644 --- a/resources/quality/longer/PETG/longer_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/longer/PETG/longer_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PETG/longer_0.4_PETG_low.inst.cfg b/resources/quality/longer/PETG/longer_0.4_PETG_low.inst.cfg index 175bcd85d75..3dbda87b8e7 100644 --- a/resources/quality/longer/PETG/longer_0.4_PETG_low.inst.cfg +++ b/resources/quality/longer/PETG/longer_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PETG/longer_0.4_PETG_standard.inst.cfg b/resources/quality/longer/PETG/longer_0.4_PETG_standard.inst.cfg index e4fdecd3329..31732494cb8 100644 --- a/resources/quality/longer/PETG/longer_0.4_PETG_standard.inst.cfg +++ b/resources/quality/longer/PETG/longer_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PETG/longer_0.4_PETG_super.inst.cfg b/resources/quality/longer/PETG/longer_0.4_PETG_super.inst.cfg index c11539a7fed..48418d8b779 100644 --- a/resources/quality/longer/PETG/longer_0.4_PETG_super.inst.cfg +++ b/resources/quality/longer/PETG/longer_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PLA/longer_0.4_PLA_adaptive.inst.cfg b/resources/quality/longer/PLA/longer_0.4_PLA_adaptive.inst.cfg index 47077570bf2..425ac85661a 100644 --- a/resources/quality/longer/PLA/longer_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/longer/PLA/longer_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PLA/longer_0.4_PLA_low.inst.cfg b/resources/quality/longer/PLA/longer_0.4_PLA_low.inst.cfg index 49e6e755c5d..bccdb2d8f5c 100644 --- a/resources/quality/longer/PLA/longer_0.4_PLA_low.inst.cfg +++ b/resources/quality/longer/PLA/longer_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PLA/longer_0.4_PLA_standard.inst.cfg b/resources/quality/longer/PLA/longer_0.4_PLA_standard.inst.cfg index 3b57ab093a8..619d279154f 100644 --- a/resources/quality/longer/PLA/longer_0.4_PLA_standard.inst.cfg +++ b/resources/quality/longer/PLA/longer_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PLA/longer_0.4_PLA_super.inst.cfg b/resources/quality/longer/PLA/longer_0.4_PLA_super.inst.cfg index 84ce5bc92e4..d9a9f1e113e 100644 --- a/resources/quality/longer/PLA/longer_0.4_PLA_super.inst.cfg +++ b/resources/quality/longer/PLA/longer_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/TPU/longer_0.4_TPU_adaptive.inst.cfg b/resources/quality/longer/TPU/longer_0.4_TPU_adaptive.inst.cfg index a9c094251b3..c3e16ffe4a2 100644 --- a/resources/quality/longer/TPU/longer_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/longer/TPU/longer_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/TPU/longer_0.4_TPU_standard.inst.cfg b/resources/quality/longer/TPU/longer_0.4_TPU_standard.inst.cfg index fccb8288ed2..e63a15a0509 100644 --- a/resources/quality/longer/TPU/longer_0.4_TPU_standard.inst.cfg +++ b/resources/quality/longer/TPU/longer_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/TPU/longer_0.4_TPU_super.inst.cfg b/resources/quality/longer/TPU/longer_0.4_TPU_super.inst.cfg index ea294530e0a..dc0896bfbec 100644 --- a/resources/quality/longer/TPU/longer_0.4_TPU_super.inst.cfg +++ b/resources/quality/longer/TPU/longer_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/longer_global_adaptive.inst.cfg b/resources/quality/longer/longer_global_adaptive.inst.cfg index fe9c855ded6..ee1aca1c405 100644 --- a/resources/quality/longer/longer_global_adaptive.inst.cfg +++ b/resources/quality/longer/longer_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/longer/longer_global_draft.inst.cfg b/resources/quality/longer/longer_global_draft.inst.cfg index a93d4aa2550..1605c4efc94 100644 --- a/resources/quality/longer/longer_global_draft.inst.cfg +++ b/resources/quality/longer/longer_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/longer/longer_global_low.inst.cfg b/resources/quality/longer/longer_global_low.inst.cfg index 3e38f97bef4..44e80b2668a 100644 --- a/resources/quality/longer/longer_global_low.inst.cfg +++ b/resources/quality/longer/longer_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/longer/longer_global_standard.inst.cfg b/resources/quality/longer/longer_global_standard.inst.cfg index c8ee6fdb8ec..383249951d4 100644 --- a/resources/quality/longer/longer_global_standard.inst.cfg +++ b/resources/quality/longer/longer_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/longer/longer_global_super.inst.cfg b/resources/quality/longer/longer_global_super.inst.cfg index db208391a3b..1793f5c8a92 100644 --- a/resources/quality/longer/longer_global_super.inst.cfg +++ b/resources/quality/longer/longer_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/longer/longer_global_ultra.inst.cfg b/resources/quality/longer/longer_global_ultra.inst.cfg index 7bf07f7c855..cb99daa490a 100644 --- a/resources/quality/longer/longer_global_ultra.inst.cfg +++ b/resources/quality/longer/longer_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/makeblock/makeblock_mcreate_pla_normal.inst.cfg b/resources/quality/makeblock/makeblock_mcreate_pla_normal.inst.cfg index 5afe35de2cc..028c044d19e 100644 --- a/resources/quality/makeblock/makeblock_mcreate_pla_normal.inst.cfg +++ b/resources/quality/makeblock/makeblock_mcreate_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_draft.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_draft.inst.cfg index 6313dcb6be2..9dd8250ed5a 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_draft.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_fast.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_fast.inst.cfg index 37eb3c17627..ecd8f1f0404 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_fast.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_high.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_high.inst.cfg index dc2a3dd90f5..f750b078497 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_high.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_normal.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_normal.inst.cfg index 35498f12372..93167419ba7 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_normal.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_superdraft.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_superdraft.inst.cfg index 6ba4fa8e52f..888b08f59cd 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_superdraft.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_thickerdraft.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_thickerdraft.inst.cfg index 87bfea805dd..94cc19edfba 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_thickerdraft.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = thickerdraft -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_ultra.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_ultra.inst.cfg index 238f45df169..bbad204f15b 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_ultra.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality weight = 2 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_verydraft.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_verydraft.inst.cfg index 44667c79e08..79c3b21eeb0 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_verydraft.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/malyan_m200_global_Draft_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_Draft_Quality.inst.cfg index 4593a16ed90..b321907fee9 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_Draft_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/malyan_m200/malyan_m200_global_Fast_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_Fast_Quality.inst.cfg index 0027871b23c..b339b685c15 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_Fast_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/malyan_m200/malyan_m200_global_High_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_High_Quality.inst.cfg index da25e42b6c8..e22f15952c9 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_High_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/malyan_m200/malyan_m200_global_Normal_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_Normal_Quality.inst.cfg index dd8b85c1ab7..7d84227e1e4 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_Normal_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/malyan_m200/malyan_m200_global_SuperDraft_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_SuperDraft_Quality.inst.cfg index bb9b8101572..74f1224e3cd 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_SuperDraft_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_SuperDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/malyan_m200/malyan_m200_global_ThickerDraft_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_ThickerDraft_Quality.inst.cfg index faa108a83cd..ba07a565e0f 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_ThickerDraft_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_ThickerDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = thickerdraft -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/malyan_m200_global_Ultra_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_Ultra_Quality.inst.cfg index 528b8779586..35d5f5e9923 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_Ultra_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_Ultra_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality weight = 2 diff --git a/resources/quality/malyan_m200/malyan_m200_global_VeryDraft_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_VeryDraft_Quality.inst.cfg index 7402b0f81b0..263e8fbb8d9 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_VeryDraft_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_VeryDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_draft.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_draft.inst.cfg index 259b34ef555..100b52ba68a 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_draft.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_fast.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_fast.inst.cfg index caf8ecbff7a..e8e26cc6d2c 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_fast.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_high.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_high.inst.cfg index 7dbc1778d09..9b6e0a55109 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_high.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_normal.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_normal.inst.cfg index 9bdfb41533c..c73d0f76b37 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_normal.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_superdraft.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_superdraft.inst.cfg index 6871e99b76d..0a8595bc4c9 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_superdraft.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_thickerdraft.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_thickerdraft.inst.cfg index a5f982f2be4..6d08c78df25 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_thickerdraft.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = thickerdraft -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_ultra.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_ultra.inst.cfg index 33f99e5fcbd..2396e4025f0 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_ultra.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality weight = 2 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_verydraft.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_verydraft.inst.cfg index 46480c1bf73..3e0d002d148 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_verydraft.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_draft.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_draft.inst.cfg index 82787afe548..aaa3d950cc8 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_draft.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_fast.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_fast.inst.cfg index 642d0810e48..cc8738df693 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_fast.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_high.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_high.inst.cfg index 0695f9fe577..211a735b72c 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_high.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_normal.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_normal.inst.cfg index 18a65ba0c31..d413ac72f82 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_normal.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_superdraft.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_superdraft.inst.cfg index f3a017087cf..7ed81987f9b 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_superdraft.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_thickerdraft.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_thickerdraft.inst.cfg index e9c279967e5..38797b4912b 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_thickerdraft.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = thickerdraft -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_ultra.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_ultra.inst.cfg index 1a74e53aaf6..8669fa32aaa 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_ultra.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality weight = 2 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_verydraft.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_verydraft.inst.cfg index 99291c7ffce..44a16c116b2 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_verydraft.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/mingda/ABS/mingda_0.2_ABS_super.inst.cfg b/resources/quality/mingda/ABS/mingda_0.2_ABS_super.inst.cfg index 7822cc565b2..c6012ac34be 100644 --- a/resources/quality/mingda/ABS/mingda_0.2_ABS_super.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.2_ABS_ultra.inst.cfg b/resources/quality/mingda/ABS/mingda_0.2_ABS_ultra.inst.cfg index 72681de427c..3de5395463f 100644 --- a/resources/quality/mingda/ABS/mingda_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.3_ABS_adaptive.inst.cfg b/resources/quality/mingda/ABS/mingda_0.3_ABS_adaptive.inst.cfg index 53fc6550b0a..f18e89e7837 100644 --- a/resources/quality/mingda/ABS/mingda_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.3_ABS_low.inst.cfg b/resources/quality/mingda/ABS/mingda_0.3_ABS_low.inst.cfg index 26dcce8ed6a..d05ca5f136c 100644 --- a/resources/quality/mingda/ABS/mingda_0.3_ABS_low.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.3_ABS_standard.inst.cfg b/resources/quality/mingda/ABS/mingda_0.3_ABS_standard.inst.cfg index 4695644f2d6..0b2f445dfa2 100644 --- a/resources/quality/mingda/ABS/mingda_0.3_ABS_standard.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.3_ABS_super.inst.cfg b/resources/quality/mingda/ABS/mingda_0.3_ABS_super.inst.cfg index 42487ec3e64..2b22e3f745c 100644 --- a/resources/quality/mingda/ABS/mingda_0.3_ABS_super.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.4_ABS_adaptive.inst.cfg b/resources/quality/mingda/ABS/mingda_0.4_ABS_adaptive.inst.cfg index 3c1359073d0..100d5b24b1a 100644 --- a/resources/quality/mingda/ABS/mingda_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.4_ABS_low.inst.cfg b/resources/quality/mingda/ABS/mingda_0.4_ABS_low.inst.cfg index d1a28a7653f..5727969b79c 100644 --- a/resources/quality/mingda/ABS/mingda_0.4_ABS_low.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.4_ABS_standard.inst.cfg b/resources/quality/mingda/ABS/mingda_0.4_ABS_standard.inst.cfg index 1e7c29a3478..c37e7dc9c90 100644 --- a/resources/quality/mingda/ABS/mingda_0.4_ABS_standard.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.4_ABS_super.inst.cfg b/resources/quality/mingda/ABS/mingda_0.4_ABS_super.inst.cfg index f8211f3d418..380d4a52550 100644 --- a/resources/quality/mingda/ABS/mingda_0.4_ABS_super.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.5_ABS_adaptive.inst.cfg b/resources/quality/mingda/ABS/mingda_0.5_ABS_adaptive.inst.cfg index 3785771f472..e39ac13e6b0 100644 --- a/resources/quality/mingda/ABS/mingda_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.5_ABS_low.inst.cfg b/resources/quality/mingda/ABS/mingda_0.5_ABS_low.inst.cfg index f0af9dbc34b..75f79402e7d 100644 --- a/resources/quality/mingda/ABS/mingda_0.5_ABS_low.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.5_ABS_standard.inst.cfg b/resources/quality/mingda/ABS/mingda_0.5_ABS_standard.inst.cfg index d0d1a4ccf32..9a5001c7398 100644 --- a/resources/quality/mingda/ABS/mingda_0.5_ABS_standard.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.5_ABS_super.inst.cfg b/resources/quality/mingda/ABS/mingda_0.5_ABS_super.inst.cfg index c5ced7c9a53..f69b4328125 100644 --- a/resources/quality/mingda/ABS/mingda_0.5_ABS_super.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.6_ABS_standard.inst.cfg b/resources/quality/mingda/ABS/mingda_0.6_ABS_standard.inst.cfg index 7b7a024bf0e..29e5bec052c 100644 --- a/resources/quality/mingda/ABS/mingda_0.6_ABS_standard.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.8_ABS_draft.inst.cfg b/resources/quality/mingda/ABS/mingda_0.8_ABS_draft.inst.cfg index 61160d6bb00..d9652a248d1 100644 --- a/resources/quality/mingda/ABS/mingda_0.8_ABS_draft.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_1.0_ABS_draft.inst.cfg b/resources/quality/mingda/ABS/mingda_1.0_ABS_draft.inst.cfg index acb60b6c9f1..0f412780b84 100644 --- a/resources/quality/mingda/ABS/mingda_1.0_ABS_draft.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.2_PETG_super.inst.cfg b/resources/quality/mingda/PETG/mingda_0.2_PETG_super.inst.cfg index 35dec169182..e5390fa7b4c 100644 --- a/resources/quality/mingda/PETG/mingda_0.2_PETG_super.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.2_PETG_ultra.inst.cfg b/resources/quality/mingda/PETG/mingda_0.2_PETG_ultra.inst.cfg index 53a2bc13b36..a815e91217c 100644 --- a/resources/quality/mingda/PETG/mingda_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.3_PETG_adaptive.inst.cfg b/resources/quality/mingda/PETG/mingda_0.3_PETG_adaptive.inst.cfg index 6c126047ad8..fd1ea41e015 100644 --- a/resources/quality/mingda/PETG/mingda_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.3_PETG_low.inst.cfg b/resources/quality/mingda/PETG/mingda_0.3_PETG_low.inst.cfg index e6e118e21ff..2ccc44a3b77 100644 --- a/resources/quality/mingda/PETG/mingda_0.3_PETG_low.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.3_PETG_standard.inst.cfg b/resources/quality/mingda/PETG/mingda_0.3_PETG_standard.inst.cfg index 0b5acb5a1dd..e8362fc6dbb 100644 --- a/resources/quality/mingda/PETG/mingda_0.3_PETG_standard.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.3_PETG_super.inst.cfg b/resources/quality/mingda/PETG/mingda_0.3_PETG_super.inst.cfg index ebb706385c0..6d5d14871b8 100644 --- a/resources/quality/mingda/PETG/mingda_0.3_PETG_super.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.4_PETG_adaptive.inst.cfg b/resources/quality/mingda/PETG/mingda_0.4_PETG_adaptive.inst.cfg index ee0e96899d8..b35035a02d6 100644 --- a/resources/quality/mingda/PETG/mingda_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.4_PETG_low.inst.cfg b/resources/quality/mingda/PETG/mingda_0.4_PETG_low.inst.cfg index 8a8ee114e44..6d80739a00d 100644 --- a/resources/quality/mingda/PETG/mingda_0.4_PETG_low.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.4_PETG_standard.inst.cfg b/resources/quality/mingda/PETG/mingda_0.4_PETG_standard.inst.cfg index 37c01e84a1c..bdc2a7daadc 100644 --- a/resources/quality/mingda/PETG/mingda_0.4_PETG_standard.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.4_PETG_super.inst.cfg b/resources/quality/mingda/PETG/mingda_0.4_PETG_super.inst.cfg index 92efaca3e60..8859cc46f05 100644 --- a/resources/quality/mingda/PETG/mingda_0.4_PETG_super.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.5_PETG_adaptive.inst.cfg b/resources/quality/mingda/PETG/mingda_0.5_PETG_adaptive.inst.cfg index cedcc4aee87..12d387b8dc6 100644 --- a/resources/quality/mingda/PETG/mingda_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.5_PETG_low.inst.cfg b/resources/quality/mingda/PETG/mingda_0.5_PETG_low.inst.cfg index 5a47d08a6ee..f7b847384e8 100644 --- a/resources/quality/mingda/PETG/mingda_0.5_PETG_low.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.5_PETG_standard.inst.cfg b/resources/quality/mingda/PETG/mingda_0.5_PETG_standard.inst.cfg index ee9baa433e7..25eff322612 100644 --- a/resources/quality/mingda/PETG/mingda_0.5_PETG_standard.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.5_PETG_super.inst.cfg b/resources/quality/mingda/PETG/mingda_0.5_PETG_super.inst.cfg index 4505d985f6f..181c82ae088 100644 --- a/resources/quality/mingda/PETG/mingda_0.5_PETG_super.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.6_PETG_standard.inst.cfg b/resources/quality/mingda/PETG/mingda_0.6_PETG_standard.inst.cfg index 1b6c6b9a64f..e1ddcf5de84 100644 --- a/resources/quality/mingda/PETG/mingda_0.6_PETG_standard.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.8_PETG_draft.inst.cfg b/resources/quality/mingda/PETG/mingda_0.8_PETG_draft.inst.cfg index a69338d3d93..24d9d323d5e 100644 --- a/resources/quality/mingda/PETG/mingda_0.8_PETG_draft.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_1.0_PETG_draft.inst.cfg b/resources/quality/mingda/PETG/mingda_1.0_PETG_draft.inst.cfg index a4519d007e8..118a90fcc21 100644 --- a/resources/quality/mingda/PETG/mingda_1.0_PETG_draft.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.2_PLA_super.inst.cfg b/resources/quality/mingda/PLA/mingda_0.2_PLA_super.inst.cfg index afa0fab2f19..84ca0b0dd47 100644 --- a/resources/quality/mingda/PLA/mingda_0.2_PLA_super.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.2_PLA_ultra.inst.cfg b/resources/quality/mingda/PLA/mingda_0.2_PLA_ultra.inst.cfg index 9157f938cc8..1b93c7fbfbb 100644 --- a/resources/quality/mingda/PLA/mingda_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.3_PLA_adaptive.inst.cfg b/resources/quality/mingda/PLA/mingda_0.3_PLA_adaptive.inst.cfg index e74c862004b..d2ac93fb123 100644 --- a/resources/quality/mingda/PLA/mingda_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.3_PLA_low.inst.cfg b/resources/quality/mingda/PLA/mingda_0.3_PLA_low.inst.cfg index 0b4e80354e8..bdca2997726 100644 --- a/resources/quality/mingda/PLA/mingda_0.3_PLA_low.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.3_PLA_standard.inst.cfg b/resources/quality/mingda/PLA/mingda_0.3_PLA_standard.inst.cfg index 09c7cbeb8a3..df3e0909c26 100644 --- a/resources/quality/mingda/PLA/mingda_0.3_PLA_standard.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.3_PLA_super.inst.cfg b/resources/quality/mingda/PLA/mingda_0.3_PLA_super.inst.cfg index 2b37626e564..5c709944bb5 100644 --- a/resources/quality/mingda/PLA/mingda_0.3_PLA_super.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.4_PLA_adaptive.inst.cfg b/resources/quality/mingda/PLA/mingda_0.4_PLA_adaptive.inst.cfg index b23b08c986e..a8250b8709f 100644 --- a/resources/quality/mingda/PLA/mingda_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.4_PLA_low.inst.cfg b/resources/quality/mingda/PLA/mingda_0.4_PLA_low.inst.cfg index dc73a650d50..d8aaa5bb6a9 100644 --- a/resources/quality/mingda/PLA/mingda_0.4_PLA_low.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.4_PLA_standard.inst.cfg b/resources/quality/mingda/PLA/mingda_0.4_PLA_standard.inst.cfg index 2e10d594bf1..5ac644791b7 100644 --- a/resources/quality/mingda/PLA/mingda_0.4_PLA_standard.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.4_PLA_super.inst.cfg b/resources/quality/mingda/PLA/mingda_0.4_PLA_super.inst.cfg index a8f4d0d8709..ee4ccb14f71 100644 --- a/resources/quality/mingda/PLA/mingda_0.4_PLA_super.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.5_PLA_adaptive.inst.cfg b/resources/quality/mingda/PLA/mingda_0.5_PLA_adaptive.inst.cfg index 516fd69b222..77fa8b57fa7 100644 --- a/resources/quality/mingda/PLA/mingda_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.5_PLA_low.inst.cfg b/resources/quality/mingda/PLA/mingda_0.5_PLA_low.inst.cfg index 9f620c26e6d..65e90311e36 100644 --- a/resources/quality/mingda/PLA/mingda_0.5_PLA_low.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.5_PLA_standard.inst.cfg b/resources/quality/mingda/PLA/mingda_0.5_PLA_standard.inst.cfg index 26a6e27821a..feac2c4212b 100644 --- a/resources/quality/mingda/PLA/mingda_0.5_PLA_standard.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.5_PLA_super.inst.cfg b/resources/quality/mingda/PLA/mingda_0.5_PLA_super.inst.cfg index 25155655e7c..847bb29f3a0 100644 --- a/resources/quality/mingda/PLA/mingda_0.5_PLA_super.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.6_PLA_draft.inst.cfg b/resources/quality/mingda/PLA/mingda_0.6_PLA_draft.inst.cfg index 494357a91d3..f6d396df3af 100644 --- a/resources/quality/mingda/PLA/mingda_0.6_PLA_draft.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.6_PLA_low.inst.cfg b/resources/quality/mingda/PLA/mingda_0.6_PLA_low.inst.cfg index 7d870437bf2..b6715276ab5 100644 --- a/resources/quality/mingda/PLA/mingda_0.6_PLA_low.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.6_PLA_standard.inst.cfg b/resources/quality/mingda/PLA/mingda_0.6_PLA_standard.inst.cfg index f102e574be8..414478c3316 100644 --- a/resources/quality/mingda/PLA/mingda_0.6_PLA_standard.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.8_PLA_draft.inst.cfg b/resources/quality/mingda/PLA/mingda_0.8_PLA_draft.inst.cfg index 70842228e23..de4d732cb48 100644 --- a/resources/quality/mingda/PLA/mingda_0.8_PLA_draft.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_1.0_PLA_draft.inst.cfg b/resources/quality/mingda/PLA/mingda_1.0_PLA_draft.inst.cfg index 05cf9e0bbc5..34582ea39ae 100644 --- a/resources/quality/mingda/PLA/mingda_1.0_PLA_draft.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.3_TPU_adaptive.inst.cfg b/resources/quality/mingda/TPU/mingda_0.3_TPU_adaptive.inst.cfg index 1967d1be9f2..40d9e2723a7 100644 --- a/resources/quality/mingda/TPU/mingda_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.3_TPU_standard.inst.cfg b/resources/quality/mingda/TPU/mingda_0.3_TPU_standard.inst.cfg index 2c1cf471df2..45bbc23d7cf 100644 --- a/resources/quality/mingda/TPU/mingda_0.3_TPU_standard.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.3_TPU_super.inst.cfg b/resources/quality/mingda/TPU/mingda_0.3_TPU_super.inst.cfg index ff3f81c0344..748163782f4 100644 --- a/resources/quality/mingda/TPU/mingda_0.3_TPU_super.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.4_TPU_adaptive.inst.cfg b/resources/quality/mingda/TPU/mingda_0.4_TPU_adaptive.inst.cfg index 77e839eaffe..6eadcb6d0d6 100644 --- a/resources/quality/mingda/TPU/mingda_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.4_TPU_standard.inst.cfg b/resources/quality/mingda/TPU/mingda_0.4_TPU_standard.inst.cfg index 442065f5097..87a1e3290bf 100644 --- a/resources/quality/mingda/TPU/mingda_0.4_TPU_standard.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.4_TPU_super.inst.cfg b/resources/quality/mingda/TPU/mingda_0.4_TPU_super.inst.cfg index ac3882c1fc1..3f9dcd40f6f 100644 --- a/resources/quality/mingda/TPU/mingda_0.4_TPU_super.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.5_TPU_adaptive.inst.cfg b/resources/quality/mingda/TPU/mingda_0.5_TPU_adaptive.inst.cfg index f705eea1cd7..a445644cdf3 100644 --- a/resources/quality/mingda/TPU/mingda_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.5_TPU_standard.inst.cfg b/resources/quality/mingda/TPU/mingda_0.5_TPU_standard.inst.cfg index 7626ff56e7a..f03044c42c6 100644 --- a/resources/quality/mingda/TPU/mingda_0.5_TPU_standard.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.5_TPU_super.inst.cfg b/resources/quality/mingda/TPU/mingda_0.5_TPU_super.inst.cfg index db3124027b6..11cc64f7376 100644 --- a/resources/quality/mingda/TPU/mingda_0.5_TPU_super.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.6_TPU_standard.inst.cfg b/resources/quality/mingda/TPU/mingda_0.6_TPU_standard.inst.cfg index 0dc6d716493..247549fd235 100644 --- a/resources/quality/mingda/TPU/mingda_0.6_TPU_standard.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.8_TPU_draft.inst.cfg b/resources/quality/mingda/TPU/mingda_0.8_TPU_draft.inst.cfg index f34b342364e..ba5cf6805e7 100644 --- a/resources/quality/mingda/TPU/mingda_0.8_TPU_draft.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_1.0_TPU_draft.inst.cfg b/resources/quality/mingda/TPU/mingda_1.0_TPU_draft.inst.cfg index 7b410aea17f..dae977ca804 100644 --- a/resources/quality/mingda/TPU/mingda_1.0_TPU_draft.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/mingda/mingda_global_adaptive.inst.cfg b/resources/quality/mingda/mingda_global_adaptive.inst.cfg index 79435798a95..d67521ba229 100644 --- a/resources/quality/mingda/mingda_global_adaptive.inst.cfg +++ b/resources/quality/mingda/mingda_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/mingda/mingda_global_draft.inst.cfg b/resources/quality/mingda/mingda_global_draft.inst.cfg index b17f84f7427..1cf7c29a3a4 100644 --- a/resources/quality/mingda/mingda_global_draft.inst.cfg +++ b/resources/quality/mingda/mingda_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/mingda/mingda_global_low.inst.cfg b/resources/quality/mingda/mingda_global_low.inst.cfg index 723fe0120ff..f81f1ae229a 100644 --- a/resources/quality/mingda/mingda_global_low.inst.cfg +++ b/resources/quality/mingda/mingda_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/mingda/mingda_global_standard.inst.cfg b/resources/quality/mingda/mingda_global_standard.inst.cfg index e17f3bcd93b..109eec45a7a 100644 --- a/resources/quality/mingda/mingda_global_standard.inst.cfg +++ b/resources/quality/mingda/mingda_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/mingda/mingda_global_super.inst.cfg b/resources/quality/mingda/mingda_global_super.inst.cfg index 64fd4936cfa..a4d81601b3b 100644 --- a/resources/quality/mingda/mingda_global_super.inst.cfg +++ b/resources/quality/mingda/mingda_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/mingda/mingda_global_ultra.inst.cfg b/resources/quality/mingda/mingda_global_ultra.inst.cfg index fb7385fab19..5319ad2293e 100644 --- a/resources/quality/mingda/mingda_global_ultra.inst.cfg +++ b/resources/quality/mingda/mingda_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/mixware_hyper_k/mixware_hyper_k_draft.inst.cfg b/resources/quality/mixware_hyper_k/mixware_hyper_k_draft.inst.cfg index 37023141623..fa8b7bd4e81 100644 --- a/resources/quality/mixware_hyper_k/mixware_hyper_k_draft.inst.cfg +++ b/resources/quality/mixware_hyper_k/mixware_hyper_k_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/mixware_hyper_k/mixware_hyper_k_extra_fast.inst.cfg b/resources/quality/mixware_hyper_k/mixware_hyper_k_extra_fast.inst.cfg index 1f66a09b627..81fe6931137 100644 --- a/resources/quality/mixware_hyper_k/mixware_hyper_k_extra_fast.inst.cfg +++ b/resources/quality/mixware_hyper_k/mixware_hyper_k_extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/mixware_hyper_k/mixware_hyper_k_normal.inst.cfg b/resources/quality/mixware_hyper_k/mixware_hyper_k_normal.inst.cfg index a155a520d3a..2f09b41466d 100644 --- a/resources/quality/mixware_hyper_k/mixware_hyper_k_normal.inst.cfg +++ b/resources/quality/mixware_hyper_k/mixware_hyper_k_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/mixware_hyper_s/mixware_hyper_s_draft.inst.cfg b/resources/quality/mixware_hyper_s/mixware_hyper_s_draft.inst.cfg index e21090c6001..0167ad3b687 100644 --- a/resources/quality/mixware_hyper_s/mixware_hyper_s_draft.inst.cfg +++ b/resources/quality/mixware_hyper_s/mixware_hyper_s_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/mixware_hyper_s/mixware_hyper_s_extra_fast.inst.cfg b/resources/quality/mixware_hyper_s/mixware_hyper_s_extra_fast.inst.cfg index 6414ce45893..39bc3841ab5 100644 --- a/resources/quality/mixware_hyper_s/mixware_hyper_s_extra_fast.inst.cfg +++ b/resources/quality/mixware_hyper_s/mixware_hyper_s_extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/mixware_hyper_s/mixware_hyper_s_normal.inst.cfg b/resources/quality/mixware_hyper_s/mixware_hyper_s_normal.inst.cfg index 1248585ec4b..1267a29fc26 100644 --- a/resources/quality/mixware_hyper_s/mixware_hyper_s_normal.inst.cfg +++ b/resources/quality/mixware_hyper_s/mixware_hyper_s_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/mixware_vulcan/mixware_vulcan_draft.inst.cfg b/resources/quality/mixware_vulcan/mixware_vulcan_draft.inst.cfg index e9859c9cb71..1ff0b50fbe1 100644 --- a/resources/quality/mixware_vulcan/mixware_vulcan_draft.inst.cfg +++ b/resources/quality/mixware_vulcan/mixware_vulcan_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/mixware_vulcan/mixware_vulcan_extra_fast.inst.cfg b/resources/quality/mixware_vulcan/mixware_vulcan_extra_fast.inst.cfg index 0bfc4bf3389..cbb1a8fddbb 100644 --- a/resources/quality/mixware_vulcan/mixware_vulcan_extra_fast.inst.cfg +++ b/resources/quality/mixware_vulcan/mixware_vulcan_extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/mixware_vulcan/mixware_vulcan_normal.inst.cfg b/resources/quality/mixware_vulcan/mixware_vulcan_normal.inst.cfg index 23754001ed6..d371d236c2f 100644 --- a/resources/quality/mixware_vulcan/mixware_vulcan_normal.inst.cfg +++ b/resources/quality/mixware_vulcan/mixware_vulcan_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/mixware_wand/mixware_wand_draft.inst.cfg b/resources/quality/mixware_wand/mixware_wand_draft.inst.cfg index 2d307391150..ba905183069 100644 --- a/resources/quality/mixware_wand/mixware_wand_draft.inst.cfg +++ b/resources/quality/mixware_wand/mixware_wand_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/mixware_wand/mixware_wand_extra_fast.inst.cfg b/resources/quality/mixware_wand/mixware_wand_extra_fast.inst.cfg index 00d6e94cb4f..6a942a546d7 100644 --- a/resources/quality/mixware_wand/mixware_wand_extra_fast.inst.cfg +++ b/resources/quality/mixware_wand/mixware_wand_extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/mixware_wand/mixware_wand_normal.inst.cfg b/resources/quality/mixware_wand/mixware_wand_normal.inst.cfg index 7b2ca97af32..8aada673809 100644 --- a/resources/quality/mixware_wand/mixware_wand_normal.inst.cfg +++ b/resources/quality/mixware_wand/mixware_wand_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_draft.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_draft.inst.cfg index fd19842b62f..097a959905e 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_draft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_fast.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_fast.inst.cfg index d7df5c5ff28..b81a4b8bd4d 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_fast.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_high.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_high.inst.cfg index fc1e193f977..13263426d3a 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_high.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_normal.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_normal.inst.cfg index 289722633f4..886312c2ef5 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_normal.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_superdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_superdraft.inst.cfg index 26caf03d8fe..700f5ead703 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_superdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_thickerdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_thickerdraft.inst.cfg index 0f305d4835e..8a689abe034 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_thickerdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = thickerdraft -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_ultra.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_ultra.inst.cfg index ed96f8a8d70..daebcd1df64 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_ultra.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = thickerdraft -setting_version = 23 +setting_version = 22 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_verydraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_verydraft.inst.cfg index 0272e99c0fe..e32d5f1b048 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_verydraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Draft_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Draft_Quality.inst.cfg index 018ed5f7d93..a60d8f42086 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Draft_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Fast_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Fast_Quality.inst.cfg index 76118d401ec..62dd3d8052c 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Fast_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_High_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_High_Quality.inst.cfg index 99cfa4cea86..c47f9891908 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_High_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Normal_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Normal_Quality.inst.cfg index d0158258944..84d9774ce3c 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Normal_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_SuperDraft_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_SuperDraft_Quality.inst.cfg index 39b0ab1f79e..afa18c866fa 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_SuperDraft_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_SuperDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_ThickerDraft_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_ThickerDraft_Quality.inst.cfg index 5cf1aa4219d..2b30b9fc716 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_ThickerDraft_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_ThickerDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = thickerdraft -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Ultra_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Ultra_Quality.inst.cfg index 5d5e352eaa0..d7bfcc7d5d4 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Ultra_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Ultra_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_VeryDraft_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_VeryDraft_Quality.inst.cfg index daa141e4644..05e381ae5b1 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_VeryDraft_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_VeryDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_draft.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_draft.inst.cfg index 2f8d8195b47..8d57fe8287a 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_draft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_fast.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_fast.inst.cfg index 96d771d5a70..ec808fbe565 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_fast.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_high.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_high.inst.cfg index 19c47439708..b86c774fa43 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_high.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_normal.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_normal.inst.cfg index 218b8c0769a..1f1f8964d4e 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_normal.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_superdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_superdraft.inst.cfg index bc4f11b1e08..a2d9070cf05 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_superdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_thickerdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_thickerdraft.inst.cfg index ad4b1b467b3..1c14bc20307 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_thickerdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = thickerdraft -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_ultra.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_ultra.inst.cfg index f9c80b0079b..09713b91c04 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_ultra.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_verydraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_verydraft.inst.cfg index 14784247ddf..b34cb9c813d 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_verydraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_draft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_draft.inst.cfg index 151e21fdd54..20f0e19467b 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_draft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_fast.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_fast.inst.cfg index e0735cb0ffd..dc9ecd5fe64 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_fast.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_high.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_high.inst.cfg index 6184ba86b21..c5f968e6e14 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_high.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_normal.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_normal.inst.cfg index 2a8eeb3dd4c..278d07dea29 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_normal.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_superdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_superdraft.inst.cfg index e7e772f85c3..07a2ac74f6d 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_superdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_thickerdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_thickerdraft.inst.cfg index 300db25f2e5..592b5e10097 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_thickerdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = thickerdraft -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_ultra.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_ultra.inst.cfg index a3d8287a530..1aa8210751c 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_ultra.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_verydraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_verydraft.inst.cfg index 376782ed633..a6ceb718309 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_verydraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_draft.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_draft.inst.cfg index 6dda9f5f85a..753dc626edc 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_draft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_fast.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_fast.inst.cfg index e67e0128315..e6335447697 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_fast.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_high.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_high.inst.cfg index d449cb1f50c..ec80a8c9e1f 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_high.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_normal.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_normal.inst.cfg index fe8bebaea08..e8046eb5a05 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_normal.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_superdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_superdraft.inst.cfg index 00684445f64..5a5776c7f88 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_superdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_thickerdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_thickerdraft.inst.cfg index eaa2f3c8b42..168e1c0bb4c 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_thickerdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = thickerdraft -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_ultra.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_ultra.inst.cfg index b89c9ca3427..7b92bf37a10 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_ultra.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_verydraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_verydraft.inst.cfg index 7da4ee15c2a..f8a33603857 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_verydraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_draft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_draft.inst.cfg index 1efd7a48ad5..f96a971d8cc 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_draft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_fast.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_fast.inst.cfg index 1ac637cad12..75f6f56c15e 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_fast.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_high.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_high.inst.cfg index c18c95f3858..9b027f0f6cb 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_high.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_normal.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_normal.inst.cfg index 7ec5bbab4e4..5e1ba97ead1 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_normal.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_superdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_superdraft.inst.cfg index 74bd8f8aa41..f38367832a8 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_superdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_thickerdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_thickerdraft.inst.cfg index a60be7f5f68..978d45d738c 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_thickerdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = thickerdraft -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_ultra.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_ultra.inst.cfg index cb94eab6965..cbdd2c0cba0 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_ultra.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_verydraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_verydraft.inst.cfg index 8c2b8b5f67c..6fbe7ce0cd9 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_verydraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/normal.inst.cfg b/resources/quality/normal.inst.cfg index cdfedcd6a91..dc30e0e7e9a 100644 --- a/resources/quality/normal.inst.cfg +++ b/resources/quality/normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/nps/nps_ABS_A.inst.cfg b/resources/quality/nps/nps_ABS_A.inst.cfg index 8788f2d15a0..23debbdf176 100644 --- a/resources/quality/nps/nps_ABS_A.inst.cfg +++ b/resources/quality/nps/nps_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = a -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/nps/nps_ABS_B.inst.cfg b/resources/quality/nps/nps_ABS_B.inst.cfg index c73992eb310..3f700405bdb 100644 --- a/resources/quality/nps/nps_ABS_B.inst.cfg +++ b/resources/quality/nps/nps_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = b -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/nps/nps_ABS_C.inst.cfg b/resources/quality/nps/nps_ABS_C.inst.cfg index e4b974e03bc..6138e4004c0 100644 --- a/resources/quality/nps/nps_ABS_C.inst.cfg +++ b/resources/quality/nps/nps_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = c -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/nps/nps_PC_A.inst.cfg b/resources/quality/nps/nps_PC_A.inst.cfg index 811df9ffdc6..8665f8ceaee 100644 --- a/resources/quality/nps/nps_PC_A.inst.cfg +++ b/resources/quality/nps/nps_PC_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = a -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/nps/nps_PC_B.inst.cfg b/resources/quality/nps/nps_PC_B.inst.cfg index d972b6d5e6e..9ccb5cea534 100644 --- a/resources/quality/nps/nps_PC_B.inst.cfg +++ b/resources/quality/nps/nps_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = b -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/nps/nps_PC_C.inst.cfg b/resources/quality/nps/nps_PC_C.inst.cfg index 1c91d7f3190..30267d42375 100644 --- a/resources/quality/nps/nps_PC_C.inst.cfg +++ b/resources/quality/nps/nps_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = c -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/nps/nps_PETG_A.inst.cfg b/resources/quality/nps/nps_PETG_A.inst.cfg index 098fd7b0e7b..3cae430f1cc 100644 --- a/resources/quality/nps/nps_PETG_A.inst.cfg +++ b/resources/quality/nps/nps_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = a -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/nps/nps_PETG_B.inst.cfg b/resources/quality/nps/nps_PETG_B.inst.cfg index 9121ce0cc89..5860f654146 100644 --- a/resources/quality/nps/nps_PETG_B.inst.cfg +++ b/resources/quality/nps/nps_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = b -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/nps/nps_PETG_C.inst.cfg b/resources/quality/nps/nps_PETG_C.inst.cfg index 891103acbb7..d35175fbc5b 100644 --- a/resources/quality/nps/nps_PETG_C.inst.cfg +++ b/resources/quality/nps/nps_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = c -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/nps/nps_PLA_A.inst.cfg b/resources/quality/nps/nps_PLA_A.inst.cfg index 302e03b8d19..6c557e44772 100644 --- a/resources/quality/nps/nps_PLA_A.inst.cfg +++ b/resources/quality/nps/nps_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = a -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/nps/nps_PLA_B.inst.cfg b/resources/quality/nps/nps_PLA_B.inst.cfg index 2578ee39200..02571aa0f56 100644 --- a/resources/quality/nps/nps_PLA_B.inst.cfg +++ b/resources/quality/nps/nps_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = b -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/nps/nps_PLA_C.inst.cfg b/resources/quality/nps/nps_PLA_C.inst.cfg index 7db1e3938a6..6b12b4b169d 100644 --- a/resources/quality/nps/nps_PLA_C.inst.cfg +++ b/resources/quality/nps/nps_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = c -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/nps/nps_TPU_A.inst.cfg b/resources/quality/nps/nps_TPU_A.inst.cfg index 8bc9697e179..c706bf08e85 100644 --- a/resources/quality/nps/nps_TPU_A.inst.cfg +++ b/resources/quality/nps/nps_TPU_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = a -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/nps/nps_TPU_B.inst.cfg b/resources/quality/nps/nps_TPU_B.inst.cfg index f6131d5c728..5841b4045c3 100644 --- a/resources/quality/nps/nps_TPU_B.inst.cfg +++ b/resources/quality/nps/nps_TPU_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = b -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/nps/nps_TPU_C.inst.cfg b/resources/quality/nps/nps_TPU_C.inst.cfg index 9004a7aafb9..8ac308460cc 100644 --- a/resources/quality/nps/nps_TPU_C.inst.cfg +++ b/resources/quality/nps/nps_TPU_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = c -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/nps/nps_global_A.inst.cfg b/resources/quality/nps/nps_global_A.inst.cfg index b406f96b95b..1cb73eb1b8d 100644 --- a/resources/quality/nps/nps_global_A.inst.cfg +++ b/resources/quality/nps/nps_global_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = a -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/nps/nps_global_B.inst.cfg b/resources/quality/nps/nps_global_B.inst.cfg index 87b79e41854..89b4dabeabc 100644 --- a/resources/quality/nps/nps_global_B.inst.cfg +++ b/resources/quality/nps/nps_global_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = b -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/nps/nps_global_C.inst.cfg b/resources/quality/nps/nps_global_C.inst.cfg index 55e03f04bfc..e8a4d989c38 100644 --- a/resources/quality/nps/nps_global_C.inst.cfg +++ b/resources/quality/nps/nps_global_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = c -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg index c62172e2712..fe29dcc0177 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = best -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg index 6eb625350a4..3c4b16723cb 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Engineering -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg index dd3303ff21e..a8351dd223a 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg index 79a93c2cbb5..8c65da3d3a6 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg b/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg index 23a53983773..d6f6c73c985 100644 --- a/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg +++ b/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = best -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg b/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg index 9afbe1c9fae..d92ff21e1a3 100644 --- a/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg +++ b/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg b/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg index 0282588b313..860c295c189 100644 --- a/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg +++ b/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg index 2f7e5731a72..9b83b18c6f8 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = 3 diff --git a/resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg index e5fd23d4f2b..ee6b848ec32 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/peopoly_moai/peopoly_moai_extra_high.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_extra_high.inst.cfg index 11145f31514..77fa8652b38 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_extra_high.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_extra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra_high -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg index b3aa4e2cc83..9385278952e 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg index 91eb5d46428..a996b30c8a5 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_super.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_super.inst.cfg index b53926d84e7..adfe0e26a5e 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_super.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_ultra.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_ultra.inst.cfg index 5ba1720f7c1..d0ed1bfc296 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_ultra.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_adaptive.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_adaptive.inst.cfg index f773bf87c68..98bf867ce54 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_low.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_low.inst.cfg index 7ad5b63828b..8af36722699 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_low.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_standard.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_standard.inst.cfg index 18d481d92e8..5c70c697a6b 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_standard.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_super.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_super.inst.cfg index 094f815c579..af8ea00735d 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_super.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_adaptive.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_adaptive.inst.cfg index ef6926b4d3c..3b4589bd782 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_low.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_low.inst.cfg index 0de97f85760..addc6f2c1c7 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_low.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_standard.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_standard.inst.cfg index f399287eceb..e74e3c9015b 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_standard.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_super.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_super.inst.cfg index e828bbc5ec6..957d89d2bf9 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_super.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_adaptive.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_adaptive.inst.cfg index 425efe8bb79..46766b94c21 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_low.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_low.inst.cfg index 504e601637d..22e93d8876f 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_low.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_standard.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_standard.inst.cfg index 599dfa21199..0d9b6ae5c13 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_standard.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_super.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_super.inst.cfg index e337cf021d5..372d066d4c5 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_super.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.6_Nylon_standard.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.6_Nylon_standard.inst.cfg index 5037ea98773..a57d8e22ca0 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.6_Nylon_standard.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.6_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.8_Nylon_draft.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.8_Nylon_draft.inst.cfg index b11d0cbbfe5..1fc2e48eed3 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.8_Nylon_draft.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.8_Nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_1.0_Nylon_draft.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_1.0_Nylon_draft.inst.cfg index 1523fe7ace1..bcc88a598c6 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_1.0_Nylon_draft.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_1.0_Nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_super.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_super.inst.cfg index 13f3d3c6b82..24419b53025 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_super.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_ultra.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_ultra.inst.cfg index e1e0e68adde..a55a6ad76aa 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_adaptive.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_adaptive.inst.cfg index f45f4f0db46..890652591b2 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_low.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_low.inst.cfg index f00cfe1f183..aa3787c2788 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_low.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_standard.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_standard.inst.cfg index 4c49ed47cc6..a2afefe69ca 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_standard.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_super.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_super.inst.cfg index 6c085cf045d..a90915b50cf 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_super.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_adaptive.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_adaptive.inst.cfg index 1436293e327..765547d6927 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_low.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_low.inst.cfg index 77a5b093b02..d5afe469945 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_low.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_standard.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_standard.inst.cfg index fab2b3f6a06..ea0ff5ab6bc 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_standard.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_super.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_super.inst.cfg index a22e5570232..49245f85b23 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_super.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_adaptive.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_adaptive.inst.cfg index 7d53f5a7352..7147deb58fc 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_low.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_low.inst.cfg index bc7763e69ab..e930a9415e9 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_low.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_standard.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_standard.inst.cfg index f50d26c0263..92611f4b717 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_standard.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_super.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_super.inst.cfg index 32a6e79f733..d147d877280 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_super.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.6_PETG_standard.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.6_PETG_standard.inst.cfg index cb789901f70..80dcecfe210 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.6_PETG_standard.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.8_PETG_draft.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.8_PETG_draft.inst.cfg index 1ff77f20280..4d6a9a56719 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.8_PETG_draft.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_1.0_PETG_draft.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_1.0_PETG_draft.inst.cfg index 85857390848..bce8d9ccbae 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_1.0_PETG_draft.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_super.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_super.inst.cfg index 9d8ef6a9a33..ff81d0d74e0 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_super.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_ultra.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_ultra.inst.cfg index d0a93f1beb3..10465057cf0 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_adaptive.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_adaptive.inst.cfg index 8e7e337fa5a..58b51ebf4a5 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_low.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_low.inst.cfg index c6b8308b872..3622a5927be 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_low.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_standard.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_standard.inst.cfg index 67d98a3bf6b..39c3d776746 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_standard.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_super.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_super.inst.cfg index 3bce948dfec..5a6b3bd348a 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_super.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_adaptive.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_adaptive.inst.cfg index d9647022e45..4ca7bf94d40 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_low.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_low.inst.cfg index 1471709c213..0c29c77bde9 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_low.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_standard.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_standard.inst.cfg index 6434e24870e..3211f4be860 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_standard.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_super.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_super.inst.cfg index f0230d0bb6e..da6ea197b2d 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_super.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_adaptive.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_adaptive.inst.cfg index 4f3739f6bed..f9d0649016c 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_low.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_low.inst.cfg index d6338d23238..8f55fe30a4a 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_low.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_standard.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_standard.inst.cfg index 7ea3bc2e74d..f6c42831e39 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_standard.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_super.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_super.inst.cfg index 3391515befb..67637bcfeaf 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_super.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_draft.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_draft.inst.cfg index 425098058e1..bbafe934fed 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_draft.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_low.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_low.inst.cfg index 82ae46b93c0..115341b00db 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_low.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_standard.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_standard.inst.cfg index fbbf5178a0d..f365b98c5a8 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_standard.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.8_PLA_draft.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.8_PLA_draft.inst.cfg index 8f2413e7eaf..eba25456a90 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.8_PLA_draft.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_1.0_PLA_draft.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_1.0_PLA_draft.inst.cfg index 24232e97e56..ffe30e68ecd 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_1.0_PLA_draft.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/ratrig_base/ratrig_base_global_adaptive.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_adaptive.inst.cfg index f603ac2f49d..7dc5adffbc5 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/ratrig_base/ratrig_base_global_draft.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_draft.inst.cfg index 0f1ed527c4e..6300ade8f6f 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_draft.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/ratrig_base/ratrig_base_global_low.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_low.inst.cfg index 282bffac12a..5cd4519ac2e 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_low.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/ratrig_base/ratrig_base_global_standard.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_standard.inst.cfg index 34963f44d63..d1bbff61ed2 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_standard.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/ratrig_base/ratrig_base_global_super.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_super.inst.cfg index 0f4c9857c93..e73f314a270 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_super.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/ratrig_base/ratrig_base_global_ultra.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_ultra.inst.cfg index f9c1935ecb3..3864f618585 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_ultra.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg index f661ed44149..6425ec76666 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_standard.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_standard.inst.cfg index 11e12d4fb1b..8f7b5f7cfa0 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_standard.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_super.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_super.inst.cfg index 8a7457fa0a7..4b92df6df69 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_super.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg index 199338b92aa..d89b488ce68 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_standard.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_standard.inst.cfg index cd45e2a4a08..caa88e072a3 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_standard.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_super.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_super.inst.cfg index ae00c536ff6..c37bd5df995 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_super.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg index 20be9890721..4622803d56c 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_standard.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_standard.inst.cfg index 85fca68f647..11b90f79a19 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_standard.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_super.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_super.inst.cfg index b85d1041412..d3762fd8395 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_super.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.6_TPU_standard.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.6_TPU_standard.inst.cfg index e17edf408de..11a0e7cd4ec 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.6_TPU_standard.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.8_TPU_draft.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.8_TPU_draft.inst.cfg index 7b663dd97f0..fb82909a5df 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.8_TPU_draft.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_1.0_TPU_draft.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_1.0_TPU_draft.inst.cfg index 424b52f5bc0..013dbfdcbc7 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_1.0_TPU_draft.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_adaptive.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_adaptive.inst.cfg index 825999e09e9..9436f1214dc 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_good.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_good.inst.cfg index e708aa36d76..7075fd5cdb1 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_good.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = good -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_low.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_low.inst.cfg index 7e18816e994..11449b3724b 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_low.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_standard.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_standard.inst.cfg index caec94d7428..9d5fe97e901 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_standard.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_super.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_super.inst.cfg index bb58f8a607b..adc821bb0cb 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_super.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_ultra.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_ultra.inst.cfg index 3be043ba9d2..972d6612863 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_adaptive.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_adaptive.inst.cfg index 6a221187b0b..f11e0124c67 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_good.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_good.inst.cfg index 7f36e8b4880..8c3f567f092 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_good.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = good -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_low.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_low.inst.cfg index 8826bcbc1ab..3e00b6f10b2 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_low.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_standard.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_standard.inst.cfg index ebedcfe46b0..b4dd761b202 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_standard.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_super.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_super.inst.cfg index 5a65e5a3ddb..99d3d50454a 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_super.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_ultra.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_ultra.inst.cfg index 2031e51928c..4a413c2e1ce 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_adaptive.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_adaptive.inst.cfg index 5e9ef8f6539..f77c28b5fd0 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_good.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_good.inst.cfg index 6314c5cf472..2bc78750ee4 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_good.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = good -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_low.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_low.inst.cfg index 2824c346f7c..656ece98056 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_low.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_standard.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_standard.inst.cfg index 28dbc363709..5cbba2dadfd 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_standard.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_super.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_super.inst.cfg index d3ed18ec566..2e40788daac 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_super.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_ultra.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_ultra.inst.cfg index 54ae63ed9cb..8d9de515c9c 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_adaptive.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_adaptive.inst.cfg index e5800f76303..966a6a208e7 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_good.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_good.inst.cfg index 662344bcfd8..56e0589d427 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_good.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = good -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_low.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_low.inst.cfg index 20ad51f84c1..67192d43333 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_low.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_standard.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_standard.inst.cfg index d3ef33dae4b..9b78986d8f5 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_standard.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_super.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_super.inst.cfg index dd1c2c1a402..a49f8c71da9 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_super.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_ultra.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_ultra.inst.cfg index b57e9643e7a..fc7e593fbc4 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_adaptive.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_adaptive.inst.cfg index 7b9edd4240e..7b8576b2de1 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality weight = -6 diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_good.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_good.inst.cfg index f110e2ac11c..af0bc1382bf 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_good.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = good -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_low.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_low.inst.cfg index def57b4251c..d6c49e5d9a6 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_low.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_standard.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_standard.inst.cfg index 84f85042f79..e053edf5f4d 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_standard.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_super.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_super.inst.cfg index 692c3f2e81f..09976277b5f 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_super.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_ultra.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_ultra.inst.cfg index 1487279aeed..e0ffe4421e4 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_adaptive.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_adaptive.inst.cfg index 465d18fef69..626025b5156 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_good.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_good.inst.cfg index abf83133280..bc0151b230a 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_good.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = good -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_low.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_low.inst.cfg index 0686d9d66ce..5a0333e1a75 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_low.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_standard.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_standard.inst.cfg index 26238b9fc93..a61f3984e5c 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_standard.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_super.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_super.inst.cfg index 2ef1bee0a87..183f1a28c65 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_super.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_ultra.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_ultra.inst.cfg index debf198a7ec..1f2fcc6d36c 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/skriware_2/sk2_advanced.inst.cfg b/resources/quality/skriware_2/sk2_advanced.inst.cfg index dd30149d024..ac3fa6041de 100644 --- a/resources/quality/skriware_2/sk2_advanced.inst.cfg +++ b/resources/quality/skriware_2/sk2_advanced.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/skriware_2/sk2_fast.inst.cfg b/resources/quality/skriware_2/sk2_fast.inst.cfg index 6d41a98b923..d0b8208e5a5 100644 --- a/resources/quality/skriware_2/sk2_fast.inst.cfg +++ b/resources/quality/skriware_2/sk2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/skriware_2/sk2_precise.inst.cfg b/resources/quality/skriware_2/sk2_precise.inst.cfg index 1372013ad8e..752902b731f 100644 --- a/resources/quality/skriware_2/sk2_precise.inst.cfg +++ b/resources/quality/skriware_2/sk2_precise.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = best -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/snakeoilxy/snakeoilxy_global_fast_quality.inst.cfg b/resources/quality/snakeoilxy/snakeoilxy_global_fast_quality.inst.cfg index 0b62a1385c3..07147785e75 100644 --- a/resources/quality/snakeoilxy/snakeoilxy_global_fast_quality.inst.cfg +++ b/resources/quality/snakeoilxy/snakeoilxy_global_fast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/snakeoilxy/snakeoilxy_global_fine_quality.inst.cfg b/resources/quality/snakeoilxy/snakeoilxy_global_fine_quality.inst.cfg index 12106d3e9bf..672d907afe5 100644 --- a/resources/quality/snakeoilxy/snakeoilxy_global_fine_quality.inst.cfg +++ b/resources/quality/snakeoilxy/snakeoilxy_global_fine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/snakeoilxy/snakeoilxy_global_normal_quality.inst.cfg b/resources/quality/snakeoilxy/snakeoilxy_global_normal_quality.inst.cfg index 12e4ec025e8..3e90b5966fd 100644 --- a/resources/quality/snakeoilxy/snakeoilxy_global_normal_quality.inst.cfg +++ b/resources/quality/snakeoilxy/snakeoilxy_global_normal_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/snakeoilxy/snakeoilxy_global_strong_quality.inst.cfg b/resources/quality/snakeoilxy/snakeoilxy_global_strong_quality.inst.cfg index d51159aa753..abbdc4e8464 100644 --- a/resources/quality/snakeoilxy/snakeoilxy_global_strong_quality.inst.cfg +++ b/resources/quality/snakeoilxy/snakeoilxy_global_strong_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = strong -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg b/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg index 572fc08a853..ca9845a2fa3 100644 --- a/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg +++ b/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/snapmaker2/snapmaker2_high.inst.cfg b/resources/quality/snapmaker2/snapmaker2_high.inst.cfg index 8e734798c18..d3c34f1afd9 100644 --- a/resources/quality/snapmaker2/snapmaker2_high.inst.cfg +++ b/resources/quality/snapmaker2/snapmaker2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg b/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg index c2293f55bc0..97514c37887 100644 --- a/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg +++ b/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_super.inst.cfg index defa6866359..772967217ae 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_ultra.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_ultra.inst.cfg index 806e83a3b2a..0726300d161 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_adaptive.inst.cfg index f68599df66e..b856b23909d 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_low.inst.cfg index 5df799868ef..ea89399b044 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_standard.inst.cfg index e07f978b903..c4a73d88290 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_super.inst.cfg index c0227b5b43c..25dd15c61fb 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_adaptive.inst.cfg index 4984310577d..f8ee0564e4f 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_low.inst.cfg index 38414cee14b..b52d3796bd4 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_standard.inst.cfg index 98f393cb39c..db41a18c33d 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_super.inst.cfg index ccbb661b749..8d9f4a89452 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_adaptive.inst.cfg index 0588caaa201..b7a7967e51a 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_low.inst.cfg index ecd3e8143b7..3ae2ea97eb2 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_standard.inst.cfg index e489d845a70..49674f357b5 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_super.inst.cfg index 6e616c299f5..becb6c78136 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_adaptive.inst.cfg index 1f421bdebdc..93c936d9052 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_draft.inst.cfg index d13758ac171..3fa8cd175a5 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_low.inst.cfg index ecd3e8143b7..3ae2ea97eb2 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_standard.inst.cfg index 180ef9793ca..d4fa086853e 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.8_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.8_ABS_draft.inst.cfg index ef400d0393f..bc3804e57a5 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.8_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_1.0_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_1.0_ABS_draft.inst.cfg index 229e456c0a1..fe55f3999f4 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_1.0_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_super.inst.cfg index e762e8be23b..33de59ca9ea 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_ultra.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_ultra.inst.cfg index 80ecf4cd5ab..7fcfef1f1f1 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_adaptive.inst.cfg index 88760eddfa2..f0f87b35aad 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_low.inst.cfg index ecc9d878afb..f0be8f8aeb6 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_standard.inst.cfg index e89120e4131..05b9f7aa93e 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_super.inst.cfg index b3ed5d750d0..62d09912564 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_adaptive.inst.cfg index df9043526e8..38dbb87871d 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_low.inst.cfg index de741e100cf..3cffc1c7201 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_standard.inst.cfg index 197974f8dee..05c1b926a96 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_super.inst.cfg index ffd6a18e6cd..ab92d6ca325 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_adaptive.inst.cfg index 81f5628de5f..32ec7fe4ff4 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_low.inst.cfg index e518eeeee7c..a2042304b6f 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_standard.inst.cfg index 13cb1da6082..b2e1cfcf9cc 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_super.inst.cfg index 0d2344258f3..ff270683725 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_adaptive.inst.cfg index be6b0a424d9..a85f259ebb0 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_draft.inst.cfg index 8fb90b1ebfd..7200a5749ff 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_low.inst.cfg index e518eeeee7c..a2042304b6f 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_standard.inst.cfg index c1b28d2eed9..84ffaf6c2a8 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.8_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.8_ABS_draft.inst.cfg index 63f0f20b9b8..bef6859d3c1 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.8_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_1.0_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_1.0_ABS_draft.inst.cfg index 0b2e06b960a..1d6669d2bf6 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_1.0_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_super.inst.cfg index 632f8562a0f..885607c1ee9 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_ultra.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_ultra.inst.cfg index 778faab851d..bfa41cf9c6b 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_adaptive.inst.cfg index e41ac67a4bb..5ed1d35af6d 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_low.inst.cfg index 125944ab7ba..28f77adec5e 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_standard.inst.cfg index aadae21f2b3..76f7ebb4a2b 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_super.inst.cfg index 4cdf9e82a11..c8236b87b53 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_adaptive.inst.cfg index 87d3cbaba81..1395cd2a149 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_low.inst.cfg index 71a71c2074a..ddb7913146f 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_standard.inst.cfg index a7e7c688326..d0fff1d3a1c 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_super.inst.cfg index d0e96ddf9e4..d9654ee6ffd 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_adaptive.inst.cfg index af21641a941..dfda836cd4a 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_low.inst.cfg index a48585cceb5..4c86d9d6015 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_standard.inst.cfg index 6cd9377e7f6..97dba25e7ac 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_super.inst.cfg index 0bf2ad87fa8..d0aa02743bb 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_adaptive.inst.cfg index 0b112bb4756..2a49ac86ea8 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_draft.inst.cfg index 924e14928cb..97102b65a30 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_low.inst.cfg index a48585cceb5..4c86d9d6015 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_standard.inst.cfg index b9a346b74c6..27112ff2ef9 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.8_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.8_ABS_draft.inst.cfg index 9575468f221..d52dc0324a1 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.8_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_1.0_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_1.0_ABS_draft.inst.cfg index 19249525d69..b3abca606c3 100644 --- a/resources/quality/sovol/ABS/sovol_titan_1.0_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_super.inst.cfg index 9263813e0fd..053367d17f0 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_ultra.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_ultra.inst.cfg index 457c4557edf..b096237bea6 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_adaptive.inst.cfg index a5b0dd141cd..06beece2a2b 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_low.inst.cfg index d15b92b2db0..a33788ca75f 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_standard.inst.cfg index 0198bb31d15..6e23df6ae8c 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_super.inst.cfg index d7a1c155bdc..ae20dcb8045 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_adaptive.inst.cfg index e46a0fc9e7e..af2ee484132 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_low.inst.cfg index b5865b796f4..4dfcca87658 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_standard.inst.cfg index 909887f7349..7553fd38ce6 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_super.inst.cfg index 1e77f58d779..e4e7cfd9b39 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_adaptive.inst.cfg index 53dab10238c..65a1ada04d6 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_low.inst.cfg index 2309c3d80a0..9851ac87981 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_standard.inst.cfg index f42e9ed165a..9d69f5a6e48 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_super.inst.cfg index 68ed0f68bf7..b8fb2f71180 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_adaptive.inst.cfg index 52445d8e9c5..808bc5d2ce0 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_draft.inst.cfg index 02cab8fbed3..759b42945d7 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_low.inst.cfg index 0e17e9b5eae..0f7f807acad 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_standard.inst.cfg index 41f5bd56eda..55f3851458d 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.8_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.8_PETG_draft.inst.cfg index 3455b63eaea..127cbb7a12b 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.8_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_1.0_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_1.0_PETG_draft.inst.cfg index b6afb89877b..68994f179ea 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_1.0_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_super.inst.cfg index d73fcd987d8..4d7207b88fa 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_ultra.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_ultra.inst.cfg index b1d8446a8a2..e0e337e8239 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_adaptive.inst.cfg index 300ff8a9ffd..35122d480ac 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_low.inst.cfg index f2ccdbd5caa..6ecdb7c2aa5 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_standard.inst.cfg index 58a1f4d8e25..4312bd0fc92 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_super.inst.cfg index 2e330c453ec..b5ca42bbfab 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_adaptive.inst.cfg index eeecf62b036..4e8a03c922a 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_low.inst.cfg index 4ec7b7a412d..5936703b736 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_standard.inst.cfg index a1c0e48cbaa..bec8700d9f2 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_super.inst.cfg index 7808a3da9ac..83c414fbb44 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_adaptive.inst.cfg index 33e1e1dc642..c1fbefcb96d 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_low.inst.cfg index b7f329a98c8..8b71219eae6 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_standard.inst.cfg index 0ec707bb869..2203f512132 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_super.inst.cfg index 8a472a5f715..0a05fd5fbae 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_adaptive.inst.cfg index 093963d94ba..d52169b7b7f 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_draft.inst.cfg index 28408b23d89..2aead633528 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_low.inst.cfg index 79ecbb7de71..6ffabcf3dbd 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_standard.inst.cfg index 1e04a9ee433..2dcd0202c84 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.8_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.8_PETG_draft.inst.cfg index ea145cbc74e..759fb5c6d48 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.8_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_1.0_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_1.0_PETG_draft.inst.cfg index 550bdd503bd..1003b241ade 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_1.0_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_super.inst.cfg index e38455850f8..6e961a1f5f9 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_ultra.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_ultra.inst.cfg index b221a2fb6f2..90561968113 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_adaptive.inst.cfg index 9bd24541855..0f76fb7040b 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_low.inst.cfg index fc823efb6e3..d3b9987d293 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_standard.inst.cfg index 23504f51326..4daff5d437b 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_super.inst.cfg index f82812e3a2d..ded1525f352 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_adaptive.inst.cfg index d0e2ca11be5..beedee39b13 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_low.inst.cfg index cde88b03334..29790a874a3 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_standard.inst.cfg index 58d1ddf5f03..de2429f011d 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_super.inst.cfg index ed2f53f573e..9a9e6817a65 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_adaptive.inst.cfg index 25751681af2..c905211dfc5 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_low.inst.cfg index e9ff5631f32..8c31d3411e6 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_standard.inst.cfg index 6b6193ef49d..550a5b8d305 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_super.inst.cfg index e60d7aad266..460c927b239 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_adaptive.inst.cfg index d85791b9e6d..07ecb9c628a 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_draft.inst.cfg index 266459a784c..72a3df1170a 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_low.inst.cfg index 4eac8df6afb..32f2aae4cdd 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_standard.inst.cfg index e494138b712..46a9c121722 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.8_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.8_PETG_draft.inst.cfg index b05ccd072dd..94fa6d1a45b 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.8_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_1.0_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_1.0_PETG_draft.inst.cfg index 155086bbed7..d24808cc0a5 100644 --- a/resources/quality/sovol/PETG/sovol_titan_1.0_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_super.inst.cfg index dfb66442314..60e6b7b56cc 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_ultra.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_ultra.inst.cfg index 1bba7ee0040..4ea764635cb 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_adaptive.inst.cfg index 8ceefff1ce4..2a847c66952 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_low.inst.cfg index d99e7a91873..21bbc433ae8 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_standard.inst.cfg index c76bd93eb5c..4b2b5103e8e 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_super.inst.cfg index c008efd6a4b..3a2cb3824b0 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_adaptive.inst.cfg index 2af72b0eb94..225d97b51b4 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_low.inst.cfg index cda9ceed055..60f61cd0cd9 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_standard.inst.cfg index 67303a344c4..6e4a98b120b 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_super.inst.cfg index 480ce19bd26..66de7a5d67e 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_adaptive.inst.cfg index 818ba54d181..508fad0d399 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_low.inst.cfg index 0d5763d654f..85995dc2e22 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_standard.inst.cfg index 462fe35ca8e..9d4c33706f4 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_super.inst.cfg index c69290b75c1..ca4d2f0aa56 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_adaptive.inst.cfg index a842730f71c..b669b93ca8e 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_draft.inst.cfg index 3a30124ba87..8621005003e 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_low.inst.cfg index f6d093bcdbe..734b00804bd 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_standard.inst.cfg index 0caf6fde449..3495c72a272 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.8_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.8_PLA_draft.inst.cfg index a75db5305a9..502ba9fb289 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.8_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_1.0_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_1.0_PLA_draft.inst.cfg index 5156a79dbbd..cd7c84e72b2 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_1.0_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_super.inst.cfg index e79df78c54a..75a24e23380 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_ultra.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_ultra.inst.cfg index 648195d2cb0..8b5a22c7ace 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_adaptive.inst.cfg index fec5480e935..75949bd188e 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_low.inst.cfg index 7ab1a6eb908..26536c7f952 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_standard.inst.cfg index 2945d9d3fb1..32cd5417640 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_super.inst.cfg index 61e9343536d..a6b5f82afd4 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_adaptive.inst.cfg index 66af6a6e6cc..99ec25faef3 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_low.inst.cfg index 36b56f53cc0..b4f42eef9ba 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_standard.inst.cfg index 6e683d4912e..280e0f6983a 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_super.inst.cfg index 05d13d7f092..19d6e248dbc 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_adaptive.inst.cfg index 25062507a16..8d6b86a5412 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_low.inst.cfg index fc974c0d23b..2fb09b07d63 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_standard.inst.cfg index 7642a661fc6..de0c5d8f18a 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_super.inst.cfg index a4d08915b23..95414079ce3 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_adaptive.inst.cfg index 56c4f6f5356..1323bcb2583 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_draft.inst.cfg index 77260e44b42..7dae15cd820 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_low.inst.cfg index 9d3e897f1f3..52c75c39562 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_standard.inst.cfg index 06468f867f9..8b3f20d9bb9 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.8_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.8_PLA_draft.inst.cfg index 49b1a1da830..5150e51684e 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.8_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_1.0_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_1.0_PLA_draft.inst.cfg index f4d2249bea9..b4ec36693a6 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_1.0_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_super.inst.cfg index afd059515d9..477b4b71c07 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_ultra.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_ultra.inst.cfg index 935acf87697..f84ba4c463e 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_adaptive.inst.cfg index 4b1bd7186b6..4d917548664 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_low.inst.cfg index 3e8c01bf299..14898f51820 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_standard.inst.cfg index 9b0a17a2465..1eea76a0624 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_super.inst.cfg index 8a4dd64c3dc..6e037669a33 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_adaptive.inst.cfg index e5ffd6c0a1f..4f92feb3335 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_low.inst.cfg index 6fac81f060f..c36495131e9 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_standard.inst.cfg index 0d72cd1018b..bf85135170c 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_super.inst.cfg index 937006edf2a..3d49a000646 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_adaptive.inst.cfg index 90ff99d94b2..0325382a415 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_low.inst.cfg index 3a90afe4309..660ff39cbaa 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_standard.inst.cfg index c50ff9be24a..38bbd3d0266 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_super.inst.cfg index 9c2f27d1503..dd8f42789d5 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_adaptive.inst.cfg index 7b9550dd255..fc8bda9ec01 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_draft.inst.cfg index 656e646d0bf..63d2a0db08d 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_low.inst.cfg index 789646f896e..eca3e66c4fd 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_standard.inst.cfg index f52221e9ff9..59b67afd703 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.8_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.8_PLA_draft.inst.cfg index 092849b63a7..dfd7add791a 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.8_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_1.0_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_1.0_PLA_draft.inst.cfg index c2acac8b772..b1157e6dc4a 100644 --- a/resources/quality/sovol/PLA/sovol_titan_1.0_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_adaptive.inst.cfg index ed82bbeba19..eebdc183e72 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_standard.inst.cfg index e797e28f77c..4cb331a963a 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_super.inst.cfg index 0ef5dab2507..fb39dfd55c5 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_adaptive.inst.cfg index 6f8296972a3..fe249852060 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_standard.inst.cfg index 05646b59f74..5a077700696 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_super.inst.cfg index f73639bed54..c903119453f 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_adaptive.inst.cfg index 0d65a9e7160..37c77c084a4 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_standard.inst.cfg index 0f98f0af00f..ae5c9b6e3d8 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_super.inst.cfg index f3567ed5cda..e963a88d20f 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.6_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.6_TPU_standard.inst.cfg index f485682a3a0..020fbd96b97 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.6_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.8_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.8_TPU_draft.inst.cfg index 805f8029de8..2bf1d94be32 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.8_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_1.0_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_1.0_TPU_draft.inst.cfg index 108d25cc2b9..af4cdeceaa2 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_1.0_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_adaptive.inst.cfg index 3be81fcb24d..6248e0f2431 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_standard.inst.cfg index 89bee3e6e94..d01edeed8d4 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_super.inst.cfg index eff1ec18de1..d690111514b 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_adaptive.inst.cfg index ae6e439d1e1..fc3f1d1636f 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_standard.inst.cfg index fce3d5d5d36..4db78e7df76 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_super.inst.cfg index 14143a43c32..eefd4b3298e 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_adaptive.inst.cfg index 3a59c9cc4fb..0c8601d49f4 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_standard.inst.cfg index 25bb9a52cee..4c53013ea77 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_super.inst.cfg index 56cceef3689..19a5aba8c01 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.6_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.6_TPU_standard.inst.cfg index 06e8e1caf94..1ee0566de1e 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.6_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.8_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.8_TPU_draft.inst.cfg index db6777c29ec..ccc2834c40d 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.8_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_1.0_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_1.0_TPU_draft.inst.cfg index 1ae1708d177..74433477a51 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_1.0_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_adaptive.inst.cfg index 40c868739e9..8a22f9e7ed3 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_standard.inst.cfg index 7c4e7656598..399a5ad8805 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_super.inst.cfg index 7c70bcd2e6e..e88db75f3f1 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_adaptive.inst.cfg index 8fb59123086..7c464d3d681 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_standard.inst.cfg index 37e25483e9c..d90798ac595 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_super.inst.cfg index 0ab905ddea1..e53ad2c481c 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_adaptive.inst.cfg index fd0245d797a..08465b50aa6 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_standard.inst.cfg index 16b51398678..50806b530ad 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_super.inst.cfg index e6944b6abc5..c5f4a01e99a 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.6_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.6_TPU_standard.inst.cfg index 1eda8ed9c3e..19ac4a45126 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.6_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.8_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.8_TPU_draft.inst.cfg index 796d50d9519..3a9c39df03a 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.8_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_1.0_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_1.0_TPU_draft.inst.cfg index 45df6d13e15..68280b99b9c 100644 --- a/resources/quality/sovol/TPU/sovol_titan_1.0_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/sovol_bowden_global_adaptive.inst.cfg b/resources/quality/sovol/sovol_bowden_global_adaptive.inst.cfg index e9cff774809..8503da623f0 100644 --- a/resources/quality/sovol/sovol_bowden_global_adaptive.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/sovol/sovol_bowden_global_draft.inst.cfg b/resources/quality/sovol/sovol_bowden_global_draft.inst.cfg index dd082f5d456..1b78757f556 100644 --- a/resources/quality/sovol/sovol_bowden_global_draft.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/sovol/sovol_bowden_global_low.inst.cfg b/resources/quality/sovol/sovol_bowden_global_low.inst.cfg index 0286357f656..a678af6506d 100644 --- a/resources/quality/sovol/sovol_bowden_global_low.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/sovol/sovol_bowden_global_standard.inst.cfg b/resources/quality/sovol/sovol_bowden_global_standard.inst.cfg index 05c840ab84f..d020c7002c3 100644 --- a/resources/quality/sovol/sovol_bowden_global_standard.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/sovol/sovol_bowden_global_super.inst.cfg b/resources/quality/sovol/sovol_bowden_global_super.inst.cfg index d4cb00ea43c..9bcd7b6287a 100644 --- a/resources/quality/sovol/sovol_bowden_global_super.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/sovol/sovol_bowden_global_ultra.inst.cfg b/resources/quality/sovol/sovol_bowden_global_ultra.inst.cfg index 90c6235d887..5a8cbef3d7d 100644 --- a/resources/quality/sovol/sovol_bowden_global_ultra.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/sovol/sovol_planetary_global_adaptive.inst.cfg b/resources/quality/sovol/sovol_planetary_global_adaptive.inst.cfg index a3239e277ee..17e0c268bee 100644 --- a/resources/quality/sovol/sovol_planetary_global_adaptive.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/sovol/sovol_planetary_global_draft.inst.cfg b/resources/quality/sovol/sovol_planetary_global_draft.inst.cfg index 2dfe9261bdd..9ff86b6743d 100644 --- a/resources/quality/sovol/sovol_planetary_global_draft.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/sovol/sovol_planetary_global_low.inst.cfg b/resources/quality/sovol/sovol_planetary_global_low.inst.cfg index a26036a9f47..2ca057564f8 100644 --- a/resources/quality/sovol/sovol_planetary_global_low.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/sovol/sovol_planetary_global_standard.inst.cfg b/resources/quality/sovol/sovol_planetary_global_standard.inst.cfg index c39b3a47d25..3ba5e02cdf3 100644 --- a/resources/quality/sovol/sovol_planetary_global_standard.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/sovol/sovol_planetary_global_super.inst.cfg b/resources/quality/sovol/sovol_planetary_global_super.inst.cfg index 9e14ee36a52..5b47449dc58 100644 --- a/resources/quality/sovol/sovol_planetary_global_super.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/sovol/sovol_planetary_global_ultra.inst.cfg b/resources/quality/sovol/sovol_planetary_global_ultra.inst.cfg index f3ad3f63f29..1036827a892 100644 --- a/resources/quality/sovol/sovol_planetary_global_ultra.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/sovol/sovol_titan_global_adaptive.inst.cfg b/resources/quality/sovol/sovol_titan_global_adaptive.inst.cfg index d1bdac7e44c..e8dcafbd961 100644 --- a/resources/quality/sovol/sovol_titan_global_adaptive.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/sovol/sovol_titan_global_draft.inst.cfg b/resources/quality/sovol/sovol_titan_global_draft.inst.cfg index 7d9574e9c28..20bd095ff94 100644 --- a/resources/quality/sovol/sovol_titan_global_draft.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/sovol/sovol_titan_global_low.inst.cfg b/resources/quality/sovol/sovol_titan_global_low.inst.cfg index 2bb6d850a6a..d3e37f54b3a 100644 --- a/resources/quality/sovol/sovol_titan_global_low.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/sovol/sovol_titan_global_standard.inst.cfg b/resources/quality/sovol/sovol_titan_global_standard.inst.cfg index c799172723e..dd7dbb3786f 100644 --- a/resources/quality/sovol/sovol_titan_global_standard.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/sovol/sovol_titan_global_super.inst.cfg b/resources/quality/sovol/sovol_titan_global_super.inst.cfg index 70744f18ade..31cebe4aba8 100644 --- a/resources/quality/sovol/sovol_titan_global_super.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/sovol/sovol_titan_global_ultra.inst.cfg b/resources/quality/sovol/sovol_titan_global_ultra.inst.cfg index b159e54f610..9040e3d60da 100644 --- a/resources/quality/sovol/sovol_titan_global_ultra.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg index 15c8c492217..39ba32a332a 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg index fda7548825e..dd0d167e6bc 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg index 8e65f491a4c..f894a7dc139 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg index 5e03710bc47..7642489c2a9 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg index 6c93c716d08..bf5c18405bc 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg index a7e7d2a8727..6756384e4af 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg index be60ed117e6..978484d8130 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg index bb36ad977f1..bcec4fe68f4 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg index a04b859e41b..85f79ebe7a0 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg index e80011a25fe..9b29e496242 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg index caca18acb1d..07a46f0d05b 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg index 07bcbb951ce..60410d8d346 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg index 692cc0bf7e8..93046306306 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg index f481caf900c..d39d91c91ae 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg index c19d8120bdf..e716824cf03 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg index 6816682a58c..bd964bed2a5 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg index 49aebe64355..cd27f777376 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg index 8809625bd50..78191af7be7 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg index f76fc17f7fc..f37a3b4d6d0 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg index d88b9f9aaf5..75fed99b1ec 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg index 50143d95046..51911c3811d 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg index 99364c2edc4..e4596d9def1 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pekk quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg index 65c7532c8b7..d0faf6eb66e 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg index cc5f154c0b5..3a64a522543 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg index 4c55dc1666e..debf74ed0d7 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg index 508999aee52..990d5cf645e 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg index e642ad6f4ea..82f26cd66d7 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg index 04e4543c75a..a91b035e38e 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg index 39c32ad622b..c7194e18d24 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg index 59b4b730f3e..078e213a262 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg index 200201554de..bfb4c46c461 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg index bac0135e9f4..8dd1c17ea69 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg index 2fda0cb9605..cca98aa5997 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg index 164e5bf494b..5a343d68931 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg index 6c0b7ede594..e6be8813412 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg index feac83c0d3e..c4342c149a1 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg index adec58532a4..e3581e08230 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg index 4f738ecb9b7..4c451894bdf 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg index 53cde676c13..65c2c9e81f2 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg index cb4c1754881..2f5cf9cfa3f 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg index 25894a72427..36d6697edbe 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg index ddc47eb6ced..e92561350a1 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg index 486503b69ec..e61775fde0b 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg index 2b595fecad5..020b95dad20 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg index 24f35a41813..6688d82ec8c 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg index d4e78fd7e35..2c8d6a82d3a 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg index e700994fbc6..fe012ff8735 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg index c7b53df000c..c0adce0f844 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg index 09ee00f8d0d..5b58c2f37bc 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg index 963ee03862f..f986831fd5f 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg index 8ede6f7f2ae..5d360b244b1 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg index 85cf082f995..3875e668f41 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg index 94e5093fb5f..d4d0e1c17e9 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg index 46375505423..f2bb237ea22 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg index 655e7227dbe..f6780fbded2 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg index bae5a7326cb..6e726932a6f 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg index 40459d1d722..7ef50ff5b13 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg index d806f76fb34..4d4af1e0f7f 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg index 896a30bb3ed..0d88c99c856 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg index cfdce044583..de476e6e46b 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg index e3056b27542..3fe7ff347cc 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg index 8e1a6328324..9dd3039b65e 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg index 69af5bce389..346f33bafb5 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg index 0df714452eb..8571e8c4b02 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg index da5e04fe607..4231e1b3a14 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg index b16348cc77d..c141a0ab079 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg index 1594c7862c9..9cd4262c552 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg index f0eacc13ae7..6f49ec9e3bf 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg index cf3426952c5..415379417c3 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg index 3b281372406..c4ce86563fa 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg index 444d8edb541..dc4505591f1 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg index 43f3672bd5d..224fa18cd6a 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg index 57328d0b758..44737981b04 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg index 78f773a4d52..8bf71b5cf5f 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg index e4fbbaacdd2..3102afdc2c9 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg index 88ffcba8f06..ad6e3615825 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg index 2cff0f12eb0..b7445aee864 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg index 93b086eb72a..cc849df9bac 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg index a5045af80b5..10cbd3a4cf2 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg index fce8e2a6f59..055bbb76239 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg index fd63382cad0..028586beb47 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg index 4bb693a89b4..8bc0b97bc58 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg index e3c73b2f18f..ec355cec15a 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg index 30d829153f8..3ab4df020ca 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg index 3a1e9db7293..455cb44a7b1 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg index 7d398914b5b..3475c621c3b 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg index 16198bfe8f7..d7d937fdefd 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg index 66a6d4f69a7..e83067bdc8a 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg index 65c4d78b549..188cddf0d6d 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg index 54e73194576..6127c2ec434 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg index cdb73084688..ca38be0476c 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg index 867b4a8f4dc..caa9003cb3d 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg index 8fa93b32136..a10cbdac7d1 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg index a4d6bc24108..85fe174e950 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg index b95282909de..9b48be1b8b3 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg index 737432c653b..0440a0a34a7 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg index 542a7b33057..7f124ae4ece 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg index d9209eca425..f662c410485 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg index fae31ae3bd6..dae0dda0981 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg index 940064d2daa..1079c746ecc 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg index 4afc1c4fa66..04991249e9f 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg index 07028500c39..685778f3f14 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg index a6e3798cfbd..ab5eca1d474 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg index cc48cc71b7d..a5a2addbc6e 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_nylon_1030 quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg index 4171f8070ff..6ecc9a32650 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg index 1b628fe5e9a..9e060959ddc 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg index b6a063f3a0d..322d30a975e 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg index ed6f453beed..5ae6c32cb89 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg index 396a85ba310..3fbe1f63708 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg index a3ac4e486ba..46aacdf22ca 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg index 3b4b044ac2c..6997dae536c 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg index 882513bcf12..70bb7206af0 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg index 0447cf7a929..eb89937deda 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg index 413c4fdc726..4bc567a2d91 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg index f1c19a14e4a..f08c2e68b74 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg index 389fad00085..4a9a1472b8e 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg index 5c3cdf0f7b9..41edbc8e328 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg index 151d368a514..10356ad3448 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg index 40738389b68..9f04791ac2a 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg index a44146afe5c..56e09ac385a 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg index 68b40d7efa7..6c8a5462aa6 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg index 34ed767222e..be4a045e0d8 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg index cb9446d6c16..6b107e9c9bd 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg index ef790cc9cad..ca169572b9b 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg index 4ec7d54c1d2..7e7a3ed9d11 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg index 262f7960069..a08e251fe01 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg index fa9670fe18d..2bcf4d4b1d3 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg index 426b7a2c924..1352a75a8ab 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg index c34110f8358..ad699959aac 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg index 1764c18e024..6fdabc1a83e 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg index b4287caadd6..1954931cc71 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg index 92968b1bd9b..913af1994be 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg index 78a1f472972..573834fc791 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg index 097c944cc75..3d5d1781ae4 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg index 0598a06be0b..4910a692729 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg index cdab1d39a93..28d395019a5 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg index 98b4d3ee1ba..b91ceb1f851 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg index 503f07b8894..4a32ddceaf2 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg index e3b485240c7..e45a8970f76 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg index 2a71e9bddb4..c0a9632b95b 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg index 39a078103e8..bce7e2891fd 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg index 77fd69de9f6..0a053f123ea 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg index 80938dbebb7..4f167ecacc9 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg index 546f6e4c5ff..8efea7e2640 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg index 74f6b45b41d..d2f6973da76 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg index a5621900e9d..57e9fc27a4d 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg index 774c1be097d..2ef4a5b4794 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg index c4a8b055596..a7549a851cd 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg index 27fa20a3988..322f31e9863 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg index 943b12b2f49..6f3fa578bff 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg index db502df5753..ee3166e7da1 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg index 03d094cd274..05eabcc6a32 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg index 53f876c5470..d10b2df53be 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg index 3e19a67a138..181d89f9579 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg index 9dc86fee905..38bd72884bf 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg index cc6f751c769..d8b2e660fc8 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg index 589eca1b89f..c39338eeca8 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg index 5760889bf85..f88eff16151 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg index c6f23011848..59a6db473db 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg index 5d17c760af1..9a94498b121 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg index 80c89a7f39e..2611e1deba9 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg index 98f3963ec7d..35644e47a87 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg index a0a004afdb8..a820dd84676 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg index 4967bae5e15..a4f135a4fae 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg index 22cfb59bb82..ee58caf9e6d 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg index 25ebbb19909..6399e7fd1fb 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg index 9d2e69d0dfc..e034d49e6e9 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg index 99a0803d8dd..632c45a51ff 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg index 8921b8b8d79..e882d420151 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg index 167fddbf0bc..7b52c7bb2d8 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg index 09c2aac6a19..a0fcdc4a520 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg index 82322be5464..496e5fe2159 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg index 252afdeae48..9c676c934bc 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg index 191d6ffa8ed..0b4c3c02811 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg index b43d80d4754..ffbb925a229 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg index 3771f389fd7..60af5617e3b 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg index 2cc8e0a30a9..71581b46adc 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg index f5e18a93c3d..bcbb45062ad 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg index 4b5fed9eb48..827ae4a7ba7 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg index cd61c020c5b..29f88f6e15d 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg index 200856ca53b..316e5d4447b 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg index a5a3bf83387..44203ad144b 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = f -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg index 96f4b453f99..e322951476c 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg index cd323aeba09..b4ee9ea9852 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg index 11a27b4fe9e..708896fdb76 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = f -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg index d2b524f3f88..63ca3d88ff4 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg index 0eaf98e1edd..62ed1914db1 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg index 9a5f413f85d..ac9ec6324e8 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = f -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg index 4dafe54befc..b225d8a9112 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg index 31111b81480..6e859c8dd04 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg index 71afad27076..6b8ebd9d203 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = f -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg index 2b8a49811ff..f168d4cf46c 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.0 weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg index 1a6d68f6c4d..652876d6b23 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.0 weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg index b2344359282..482b99c2f60 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = f -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.0 weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg index 4ec41d2355e..551e79a8e48 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.0 weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg index 30ea3d02d9a..57097361478 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.0 weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg index 7173ee3c7d0..38f3b2b2efe 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = f -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.0 weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg index 6de97c18b82..54a6d54cc03 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg index d7f6693d6f1..abdd37d98da 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg index 4b6b9e08294..50f3b04e16f 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = f -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg index a7654a552b4..35e9d199577 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg index 375aa70df2b..6e59384a4d6 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg index 1c09546eb0c..9df5f69d750 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = f -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg index 7d6239044bc..45b5a9e4153 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg index d4c2a21dbeb..70ec1234ff3 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg index 052cccc4a89..63275020274 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = f -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg index 3f391c093af..d7056a3f110 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg index 0cae1d52781..a5ec67621f1 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg index e6bd01e7066..4ddc98ddd2f 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = f -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg index 0dbffd8dce3..1b3a77ab8b0 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg index 0dbc2576c4c..be45c084a56 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg index 11b4408a82d..c02401c4d5f 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = f -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg index 719d0a9c25f..ba91c749d5d 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = f -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg index 41a4d1a39f5..b1d4c72a345 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = g -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg index a9ffd2a459a..4fac7e687d8 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = h -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg index fc51245d79a..91b4699598a 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = f -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg index 995ad827b9e..8d84bc4fd5d 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = g -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg index 415f3239ccd..eafe3eef80e 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = h -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg index 7328f90a50d..3286e7fb083 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = f -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg index 80b17899dd9..bb164bcd99e 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = g -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg index 5a9511c1a67..82ad174a959 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = h -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg index 2bf9153b930..f33abf1ec39 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = f -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg index ef96f0aa6af..2edb0e32f89 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = g -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg index da4a8109800..30d7139eb91 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = h -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg index 73ff310e2ae..1bf36453d18 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = f -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.2 weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg index 531a5ddb27e..f413dd3e17b 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = g -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.2 weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg index 33fe8835606..9b228f7b05d 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = h -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.2 weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg index a583a7eb465..68c8604a95a 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = f -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.2 weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg index 266a3fa223b..66fc7c2f92e 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = g -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.2 weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg index c833fe412b5..aceba867c23 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = h -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.2 weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg index 4fe456849bc..a34c3a4d45e 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = f -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg index 01052c90ae4..bd41a808d04 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = g -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg index cd68c8c9006..6036150353b 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = h -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg index fe304f4e541..c150380c74b 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = f -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg index 67afd44b647..74ce8559d2a 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = g -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg index c638766b261..f59b68f675a 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = h -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg index 3ff175b6a06..689c1fe0764 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = f -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg index a5f351c529b..514cdcbfde2 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = g -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg index 125f19d66f7..123dc9a953d 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = h -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg index 071677014ed..9c3f620a2d1 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = f -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg index ad354adb14f..0b841dfb095 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = g -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg index 1a1de5bb233..adfe8161258 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = h -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg index 911194c25ca..4b6108e51d2 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = f -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg index c8d9145ada8..99af35534f2 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = g -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg index 84e86ffd056..21043cae581 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = h -setting_version = 23 +setting_version = 22 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/s3d_global_A.inst.cfg b/resources/quality/strateo3d/s3d_global_A.inst.cfg index 0e1f915c0a6..08f68b9b72a 100644 --- a/resources/quality/strateo3d/s3d_global_A.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = a -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_B.inst.cfg b/resources/quality/strateo3d/s3d_global_B.inst.cfg index 6396711afa9..0b73e60e398 100644 --- a/resources/quality/strateo3d/s3d_global_B.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = b -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_C.inst.cfg b/resources/quality/strateo3d/s3d_global_C.inst.cfg index 6a15748bc38..86c88414eb5 100644 --- a/resources/quality/strateo3d/s3d_global_C.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = c -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_D.inst.cfg b/resources/quality/strateo3d/s3d_global_D.inst.cfg index 0dd458dcc6b..920b1d7be3a 100644 --- a/resources/quality/strateo3d/s3d_global_D.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = d -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_E.inst.cfg b/resources/quality/strateo3d/s3d_global_E.inst.cfg index 3e17131bd75..d1ef4ba4f7a 100644 --- a/resources/quality/strateo3d/s3d_global_E.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = e -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_F.inst.cfg b/resources/quality/strateo3d/s3d_global_F.inst.cfg index 52a679028f2..db43ee80a00 100644 --- a/resources/quality/strateo3d/s3d_global_F.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = f -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_G.inst.cfg b/resources/quality/strateo3d/s3d_global_G.inst.cfg index 2f8e5e1da40..0cdde5f1ed1 100644 --- a/resources/quality/strateo3d/s3d_global_G.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = g -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_H.inst.cfg b/resources/quality/strateo3d/s3d_global_H.inst.cfg index 8321feb52f6..4afd076d213 100644 --- a/resources/quality/strateo3d/s3d_global_H.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_A.inst.cfg index 36a56da7a36..58c36757a76 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_B.inst.cfg index cb85d768d4a..684ea1e890b 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_C.inst.cfg index 153b559376e..fff0d3574f8 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_A.inst.cfg index de62bfb3a0b..0ec67493966 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_B.inst.cfg index 1628085b6bf..bf36578ddca 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_C.inst.cfg index 64ce3c53f99..2c46ffa61f3 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_A.inst.cfg index 4fd837f5799..8ed5aba9107 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_B.inst.cfg index 82b987e3e47..6dec22352a0 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_C.inst.cfg index da992e9d55c..8be53b349d8 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_A.inst.cfg index 5d52be9c543..ff99c16678e 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_B.inst.cfg index 09f961d0182..b1ad54d6b07 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_C.inst.cfg index bc0aa98914a..0646030b215 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_A.inst.cfg index 2d8139af887..fd5b9c19d6f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_B.inst.cfg index 73f6643cb0e..056da8135a3 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_C.inst.cfg index 8c6ea9c565f..452bc218988 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_A.inst.cfg index 800247fa002..388fad3168b 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_B.inst.cfg index 14d4c1265dd..c3f96c9bb9c 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_C.inst.cfg index 1dd2a3f339a..8c7691dbdba 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_A.inst.cfg index a48122d0ffd..7dab9a053ae 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_B.inst.cfg index 5d3fddf6bf3..d2b48b53b03 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_C.inst.cfg index 3916aec06b8..db7b16192f5 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_A.inst.cfg index 1cfdb072d97..69a81b00915 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Acier Durci 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_B.inst.cfg index 915faa0e57a..47c0152128f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Acier Durci 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_C.inst.cfg index c5fddef5f75..9dd44c03bec 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Acier Durci 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_A.inst.cfg index b6dac973520..79539b003cb 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Acier Durci 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_B.inst.cfg index af7be4076ef..4ce28663953 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Acier Durci 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_C.inst.cfg index 455bb6516aa..93a8299a5bd 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Acier Durci 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_A.inst.cfg index c3196139066..3cc2e16b1e6 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_B.inst.cfg index 663d3bc141e..ece42a52745 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_C.inst.cfg index ee7ec5a49b7..c58920e59c8 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_A.inst.cfg index 32b094a926b..2f488482886 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_B.inst.cfg index 7d02f484336..29e117bf293 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_C.inst.cfg index e0e3f0950d0..e4586e8ad10 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_A.inst.cfg index cec4307927d..8ae61efbff4 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_B.inst.cfg index cd312783b10..709ec5e8d65 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_C.inst.cfg index fcf85e5354f..9d523315c6c 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_A.inst.cfg index d8fa6154d30..3995a4ba50b 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_B.inst.cfg index d3c0b763c13..99cb933de4b 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_C.inst.cfg index 9ce83b7567c..aee5cd3365d 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_A.inst.cfg index aacd51cfa45..122e430241c 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_B.inst.cfg index 8d4b467382d..75f331d4980 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_C.inst.cfg index ba1e050fad0..4e7684afbfc 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_A.inst.cfg index 78ecc50944f..073a39a5a75 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_B.inst.cfg index af98bbe9e31..b5bc5e4ca4e 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_C.inst.cfg index a57dbad5b7e..64dd1671a00 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_A.inst.cfg index dde68982592..b475aff0fb3 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = a -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_B.inst.cfg index 1d9a21f7d53..0668a25edf5 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_C.inst.cfg index f9b8ba9c39b..8b08564904b 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_B.inst.cfg index 74ec0b720a7..d89b15af640 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_C.inst.cfg index 04b04f9c3eb..b924a98a97c 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_D.inst.cfg index 43b2d9776fb..e779680a8d7 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_B.inst.cfg index a0e25f72078..972ef73de39 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_C.inst.cfg index ddfc162cf90..98fd5bc9181 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_D.inst.cfg index 976eb26ce68..c4e58365680 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_B.inst.cfg index 15662bb5d01..3310f63f5e7 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_C.inst.cfg index f50c4e5d109..a9060e57079 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_D.inst.cfg index 2d2e7d57602..53825b850e0 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_B.inst.cfg index 0593e108d53..52672102746 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_C.inst.cfg index c6197bb4774..636b6883a96 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_D.inst.cfg index b4f7eac10b1..e26c6dfdd56 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_B.inst.cfg index 919eae54820..1aae63778e9 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_C.inst.cfg index b80de309cb4..9ebf3b84943 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_D.inst.cfg index f59791b3b9b..d79ebb8bbc6 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_B.inst.cfg index 4f7c5ede442..23bb6cf1765 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_C.inst.cfg index 5b6ae2d0a00..eb601b4fd21 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_D.inst.cfg index 6ccd25b1d14..03c1b935b4b 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_B.inst.cfg index f5dc7fccdbd..dd8b77a418f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_C.inst.cfg index 9c2eea2718d..7f554643ce6 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_D.inst.cfg index c0a166d66ac..61d6a4c82c0 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_B.inst.cfg index e3020b574ca..7401461a7d8 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Acier Durci 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_C.inst.cfg index 369d563c2fe..cf3ce523d11 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Acier Durci 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_D.inst.cfg index ba40fe5e033..5c216aaf821 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Acier Durci 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_B.inst.cfg index dcfc8410faf..bee1d3cbd8e 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Acier Durci 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_C.inst.cfg index 9bf4670d6d7..c23d9b7c222 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Acier Durci 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_D.inst.cfg index b16e9a61a74..84fbde1361c 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Acier Durci 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_B.inst.cfg index bff5c6084b4..128f9247644 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_C.inst.cfg index 75c22ed7133..69fd62c4898 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_D.inst.cfg index 8e7fa092df0..cc328f066b8 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_B.inst.cfg index a08f7f3c3c7..0061e3d9ffa 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_C.inst.cfg index 8aabb6d17ec..46bd6f0b04c 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_D.inst.cfg index 838c32a83d5..424b231c4d0 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_B.inst.cfg index 3b0b01c1471..f725301738f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_C.inst.cfg index 094c7917cae..ee05814302f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_D.inst.cfg index 214db30e47d..90b40173a14 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_B.inst.cfg index 79049032575..1615bd64703 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_C.inst.cfg index 263716d6bce..3f05d9d6dd9 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_D.inst.cfg index 43ba181c200..740270860f8 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_B.inst.cfg index 9a995b15294..e1a65d86271 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_C.inst.cfg index c325e4a74c7..770688049e5 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_D.inst.cfg index ac4a1c4e193..0391fe35d42 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_B.inst.cfg index daa23def109..589bb2edf3e 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_C.inst.cfg index 08e8a6e78cf..7ade544cfc4 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_D.inst.cfg index 5d06e3d2db2..f9c214dca6a 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_B.inst.cfg index 352904ad15a..765d8268592 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = b -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_C.inst.cfg index 2e447e96388..32187c56562 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_D.inst.cfg index b34912e03ee..2b4b07a64d3 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_C.inst.cfg index 7be3e6e4f1b..178c3afb7ba 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_D.inst.cfg index b97f23a7ce8..8284fdd78cc 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_E.inst.cfg index 4063b36131a..fd6d4c2a57a 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_C.inst.cfg index 0b68f3e4d25..ea7f006c040 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_D.inst.cfg index 61c21d9d0dc..0e7825773f4 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_E.inst.cfg index b37201dd298..95029eb7b0b 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_C.inst.cfg index 458b47de011..bb869612696 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_D.inst.cfg index ad114d167d2..12a37141756 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_E.inst.cfg index 02d29c0f243..046d4100d70 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_C.inst.cfg index c8ff855a1f2..a120b342b3f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_D.inst.cfg index 0d6f5e4f019..df917dfdea3 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_E.inst.cfg index ecf49161dc2..b1c3095438a 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_C.inst.cfg index e3eb6c6bc81..c0145e47645 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_D.inst.cfg index af21c2aa449..a6cdd1d0030 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_E.inst.cfg index dbe1833889e..813e6d3f692 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_C.inst.cfg index 38084b916cd..a7908dbe64e 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_D.inst.cfg index 16ee0c27b46..99d791e0459 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_E.inst.cfg index 60393cf4303..51e472a6855 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_C.inst.cfg index 39970acd1d9..75e01a3018f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Acier Durci 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_D.inst.cfg index 91b94f6131f..35e4abeff86 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Acier Durci 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_E.inst.cfg index 2cb4d417948..a872a95bcde 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Acier Durci 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_C.inst.cfg index 0f29dec3089..5574d939318 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Acier Durci 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_D.inst.cfg index 518c53ee18f..67ea5ae6717 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Acier Durci 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_E.inst.cfg index c6b41e53c21..1e4e6ad644f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Acier Durci 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_C.inst.cfg index 3be87a45b3b..b6d13637c42 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_D.inst.cfg index f04c331621f..29c8b16abe1 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_E.inst.cfg index 1a4766dfa11..742b61c4396 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_C.inst.cfg index e0de41cf946..dfdf706e1c8 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_D.inst.cfg index e71f50e7c5f..134c221bd0b 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_E.inst.cfg index aec52859fa0..2c91ff7e0b9 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_C.inst.cfg index a8059b82eba..eb8c192c238 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_D.inst.cfg index 19b8a9213a6..bbee484d447 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_E.inst.cfg index 09d2f59acf9..7826680ac11 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_C.inst.cfg index cc43097e850..b350f79905d 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_D.inst.cfg index d949cfb2bc0..cc6992ff79c 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_E.inst.cfg index 0e033e1254d..194734ac100 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_C.inst.cfg index aca1b80e06f..8d7f260d5a3 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_D.inst.cfg index ce791391e86..3aae36e48b9 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_E.inst.cfg index d9d47dfa898..3efe15f6a2a 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_C.inst.cfg index fb69f050ecb..ff1d50c5ff0 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_D.inst.cfg index 4ecd5bf3ee4..4f84aba8466 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_E.inst.cfg index cbdb6b63a5d..d75aac9adde 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_C.inst.cfg index 9f9ad2c452e..841ee6d98e8 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_D.inst.cfg index dd4b2ee64f5..0114631ae78 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = d -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_E.inst.cfg index 023b51a264c..08fa95d0225 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = e -setting_version = 23 +setting_version = 22 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_A.inst.cfg b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_A.inst.cfg index be55a9e69d5..54cca88813e 100644 --- a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = a -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_B.inst.cfg b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_B.inst.cfg index e29b6fd63e6..aa2ff4be20e 100644 --- a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = b -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_C.inst.cfg b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_C.inst.cfg index 3edca642373..942026ea173 100644 --- a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = c -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_D.inst.cfg b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_D.inst.cfg index c06e0cc24e7..0dcff6a21b4 100644 --- a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = d -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_E.inst.cfg b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_E.inst.cfg index a45e360a41c..b9bc0b995a1 100644 --- a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = e -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/tank_m_base_global_draft.inst.cfg b/resources/quality/tank_m_base_global_draft.inst.cfg index cef3e3ced61..6abdba29009 100644 --- a/resources/quality/tank_m_base_global_draft.inst.cfg +++ b/resources/quality/tank_m_base_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/tank_m_base_global_high.inst.cfg b/resources/quality/tank_m_base_global_high.inst.cfg index bc065a8dea9..e1e4f399f0c 100644 --- a/resources/quality/tank_m_base_global_high.inst.cfg +++ b/resources/quality/tank_m_base_global_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/tank_m_base_global_standard.inst.cfg b/resources/quality/tank_m_base_global_standard.inst.cfg index 4683900a0ad..de2d1f2e885 100644 --- a/resources/quality/tank_m_base_global_standard.inst.cfg +++ b/resources/quality/tank_m_base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg b/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg index e1f33a089f3..a31fbff4ea0 100644 --- a/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg +++ b/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg b/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg index c7ed7e6c0bf..91c465b4d8f 100644 --- a/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg +++ b/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg b/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg index 5a932c92619..1088370d87f 100644 --- a/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg +++ b/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg index 47a22b00b76..903b5e3c689 100644 --- a/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg b/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg index dbb15a5989b..83196dbbdcb 100644 --- a/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 2 diff --git a/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg index 4f9b30b4cd4..0f5974d5b56 100644 --- a/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg index cb330750518..2ded3ececed 100644 --- a/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg b/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg index b762c33c229..043b250cb9c 100644 --- a/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 2 diff --git a/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg index 2ccf5b7d44f..d129c14f75f 100644 --- a/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg index 6a88be57882..96c0d5dd7fa 100644 --- a/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg b/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg index 1b8fb99784d..61e8ed738cd 100644 --- a/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 2 diff --git a/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg index 33ee02b57f0..d7675bd700c 100644 --- a/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg index 61f7512585c..ada9873b4cc 100644 --- a/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg b/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg index 30a7ffc3ade..1b234761f79 100644 --- a/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 2 diff --git a/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg index 0ed612e0904..4aa5dce88ef 100644 --- a/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.2_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.2_abs_high.inst.cfg index bb031de52f5..58ded90e057 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.2_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.2_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.3_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.3_abs_high.inst.cfg index 7dd86d45d76..c260d1e9f1d 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.3_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.3_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_high.inst.cfg index 1546674bb1b..8777efd32a7 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_normal.inst.cfg index bcf8f4c3d98..eb0c65762c9 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_draft.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_draft.inst.cfg index e4af6949cc2..63653459472 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_draft.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_high.inst.cfg index 768d5f9579a..e6e9ba3566b 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_normal.inst.cfg index 6637c178ad7..b3993d94241 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_coarse.inst.cfg index f2c201ff556..fdcdf800c1c 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_high.inst.cfg index 248f84b5f1f..88c57d40d55 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_normal.inst.cfg index 37989390f4a..0fe0aa16e62 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_extra_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_extra_coarse.inst.cfg index 9d1e1f59fd1..7c3a01d73f9 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_extra_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_high.inst.cfg index c65d8c98782..98f44465c7f 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_normal.inst.cfg index 45c48af06f2..bfa6caefdf6 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.2_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.2_flex_high.inst.cfg index 47651b2269c..680bb1a0fb9 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.2_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.2_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.3_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.3_flex_high.inst.cfg index 40fb2db3d5c..7c6f8424dff 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.3_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.3_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_high.inst.cfg index 1d72ea51983..0350280e03b 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_normal.inst.cfg index 663e4e31842..75e19fcb227 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_draft.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_draft.inst.cfg index af5f4ec3031..70a5265943e 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_draft.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_high.inst.cfg index dc11ed84302..0ae0bca17e5 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_normal.inst.cfg index 1242c06515d..11421a756f0 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_coarse.inst.cfg index f606252f9be..a66f43a83c9 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_high.inst.cfg index 2a12a43b1fd..f2fb5acade1 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_normal.inst.cfg index 585bde78eb1..692ad776fa4 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_extra_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_extra_coarse.inst.cfg index f5f27a16543..bbcecf09bdb 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_extra_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = extra coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_high.inst.cfg index c747105ca0b..58000887444 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_normal.inst.cfg index 465321cb4a8..a0835937778 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.2_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.2_petg_high.inst.cfg index 672fe535c33..d8b71e65fdd 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.2_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.2_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.3_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.3_petg_high.inst.cfg index 271518a4f0c..ad526006c1c 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.3_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.3_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_high.inst.cfg index 4ead3de6429..4d1c68c0cb3 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_normal.inst.cfg index 8eeb7f7a52e..78a7161a0cd 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_draft.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_draft.inst.cfg index 6b8ac3bd49a..63a5a544423 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_draft.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_high.inst.cfg index d4be9496911..aa03c022e49 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_normal.inst.cfg index ad46ffef48d..5249770cd5f 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_coarse.inst.cfg index 768c13565f2..9dd447e4b97 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_high.inst.cfg index 5cf3c2d17a4..723810f2597 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_normal.inst.cfg index 1d2acf0f101..e330599e954 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_extra_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_extra_coarse.inst.cfg index 556df18b046..f440d62f4eb 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_extra_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extra coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_high.inst.cfg index 136f1ad6115..c879afab1a3 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_normal.inst.cfg index 8c1d96f8f7f..6d66a27ba62 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.2_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.2_pla_high.inst.cfg index 69b8c484b60..74c52259691 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.2_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.2_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.3_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.3_pla_high.inst.cfg index e159697c87a..4de0362205a 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.3_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.3_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_high.inst.cfg index 6f684c07774..5538c370a1a 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_normal.inst.cfg index b4db252214b..a0973bf8dad 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_draft.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_draft.inst.cfg index 2ff8f1d568b..fd5fffa8d3b 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_draft.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_high.inst.cfg index 1c197ce362e..bdf0744d98f 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_normal.inst.cfg index 30cc3f891e9..ca101ab2d11 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_coarse.inst.cfg index 572bf4075c6..858f3652432 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_high.inst.cfg index 0ff7992da6f..d3bb7b6356d 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_normal.inst.cfg index 022d6b12f86..3211dce29d6 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_extra_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_extra_coarse.inst.cfg index 1c13a45be77..a714b854f64 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_extra_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extra coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_high.inst.cfg index 0e40bf105df..5898b5e489a 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_normal.inst.cfg index 1dccc444104..1fe84981329 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.2_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.2_pla_bois_high.inst.cfg index bc15310d38d..e754ccb09d0 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.2_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.2_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.3_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.3_pla_bois_high.inst.cfg index f4b1fcaa68d..75bb872ce2e 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.3_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.3_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_high.inst.cfg index 8846800d5b5..e95a76ed32b 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_normal.inst.cfg index c7b91a24f26..7f94a12b2e5 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_draft.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_draft.inst.cfg index fd242ebf1f4..578f8fa05f0 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_draft.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_high.inst.cfg index 65ee5e4060f..56fce96cd2e 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_normal.inst.cfg index bc7192956e0..e5e88e8ae4b 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_coarse.inst.cfg index 5aa2a1f7a67..17ad78b0fd5 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_high.inst.cfg index b0f80e31957..7ba4b036847 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_normal.inst.cfg index 068b46b819f..f91dbbfe7b4 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_extra_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_extra_coarse.inst.cfg index c1cb3a139a8..c51ec6a0e28 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_extra_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = extra coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_high.inst.cfg index 71ba1402116..708f9fc4e4f 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_normal.inst.cfg index 22df55ae9b0..7bae46e4405 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Coarse_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Coarse_Quality.inst.cfg index 26d51f40488..04200159685 100644 --- a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Coarse_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Draft_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Draft_Quality.inst.cfg index e3678d65868..b053d40c3fc 100644 --- a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Draft_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Extra_Coarse_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Extra_Coarse_Quality.inst.cfg index 4250674bf72..2b4f910fbe2 100644 --- a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Extra_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_High_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_High_Quality.inst.cfg index 68366636d1f..da986991675 100644 --- a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_High_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Normal_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Normal_Quality.inst.cfg index 65f4a62d9fd..69115bd494f 100644 --- a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Normal_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_high.inst.cfg index f6ed38a7da2..4e31f68f2e5 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = Classic Extruder weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_normal.inst.cfg index ce05cbd1174..337ab660922 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Classic Extruder weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_high.inst.cfg index d1ffc8dee00..dc4b03b0010 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = Direct Drive weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_normal.inst.cfg index 90f7f5cafa9..b2ac3e69160 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Direct Drive weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex.inst.cfg index 6ebac449ebc..a98abac5fe3 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Classic Extruder weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex_only.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex_only.inst.cfg index ecfc90bb0c3..2e1e59e3858 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex_only.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex_only.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Classic Extruder weight = -3 diff --git a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex.inst.cfg index 597857775ac..adc6a856cfb 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Direct Drive weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex_only.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex_only.inst.cfg index 0ab7ebeb7eb..98f8c2182bd 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex_only.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex_only.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Direct Drive weight = -3 diff --git a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_high.inst.cfg index 0a8fa2560b7..74d9ab12fc9 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = Classic Extruder weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_normal.inst.cfg index fa840bb04c8..1c74e11b166 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Classic Extruder weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_high.inst.cfg index af5985fa287..4fa73cebf87 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = Direct Drive weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_normal.inst.cfg index c210e1067ce..3bc2c217125 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Direct Drive weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex.inst.cfg index 4c72239702d..cf53d203e2b 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Classic Extruder weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex_only.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex_only.inst.cfg index 6552f1b786b..600e5d6d0fa 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex_only.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex_only.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Classic Extruder weight = -3 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_high.inst.cfg index 6f8a31a5cc0..59bcd138e57 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = Classic Extruder weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_normal.inst.cfg index 6ffc6af7555..455511c62b2 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Classic Extruder weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_pva.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_pva.inst.cfg index b92564848a0..bd9b25a105e 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_pva.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_pva.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Classic Extruder weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex.inst.cfg index 49b7a3b4864..f7bd6efbfc6 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Direct Drive weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex_only.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex_only.inst.cfg index e1fc378b867..3c11299e67d 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex_only.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex_only.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Direct Drive weight = -3 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_high.inst.cfg index 4ef60bbf984..e401945530d 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = Direct Drive weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_normal.inst.cfg index c65cacdd691..00dd53f7614 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Direct Drive weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_pva.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_pva.inst.cfg index 978d1b8312c..f3f50b52741 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_pva.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_pva.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Direct Drive weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_flex.inst.cfg index 1c212d6e557..3ba99d0a170 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Classic Extruder weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_high.inst.cfg index fdf65404541..14915a0d75d 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = Classic Extruder weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_normal.inst.cfg index 8d02a10d4d2..d47c3df97df 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Classic Extruder weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_flex.inst.cfg index 9b067c6d5f4..c22bbec0660 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Direct Drive weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_high.inst.cfg index 6895181f485..23bb58ea7a7 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = Direct Drive weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_normal.inst.cfg index c616a33dadc..562a39da4c2 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Direct Drive weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_classic_pva_pva.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_classic_pva_pva.inst.cfg index b9c6f1305d9..c9b82c8587a 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_classic_pva_pva.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_classic_pva_pva.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pva quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Classic Extruder weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_direct_drive_pva_pva.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_direct_drive_pva_pva.inst.cfg index 6ceadf98aab..b1a96c0321d 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_direct_drive_pva_pva.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_direct_drive_pva_pva.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pva quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Direct Drive weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg index e54e67f8a8a..ac5f3e5bee7 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg index 1bd2947b6a0..eca85becc64 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg index 2a7f08d04cf..8071d7193e5 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg index 04565fcfdb8..8354fba5e09 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg index 61b931dcceb..074632abda3 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/tizyx/tizyx_k25/tizyx_k25_high.inst.cfg b/resources/quality/tizyx/tizyx_k25/tizyx_k25_high.inst.cfg index 9ba18d70e8c..50608d4be08 100644 --- a/resources/quality/tizyx/tizyx_k25/tizyx_k25_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_k25/tizyx_k25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/tizyx/tizyx_k25/tizyx_k25_normal.inst.cfg b/resources/quality/tizyx/tizyx_k25/tizyx_k25_normal.inst.cfg index 7a8b36873c2..86dcd154ed6 100644 --- a/resources/quality/tizyx/tizyx_k25/tizyx_k25_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_k25/tizyx_k25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_fast.inst.cfg b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_fast.inst.cfg index 76eb3991eee..21edbe28090 100644 --- a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_fast.inst.cfg +++ b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_normal.inst.cfg b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_normal.inst.cfg index 48124047b08..0bd8bb63643 100644 --- a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_normal.inst.cfg +++ b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_slow.inst.cfg b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_slow.inst.cfg index 9f3b21318e6..8df81f55f8f 100644 --- a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_slow.inst.cfg +++ b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_slow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = slow -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/trimaker_nebula/trimaker_nebula_fast.inst.cfg b/resources/quality/trimaker_nebula/trimaker_nebula_fast.inst.cfg index 86ebed427dd..9a5124e4fc0 100644 --- a/resources/quality/trimaker_nebula/trimaker_nebula_fast.inst.cfg +++ b/resources/quality/trimaker_nebula/trimaker_nebula_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/trimaker_nebula/trimaker_nebula_normal.inst.cfg b/resources/quality/trimaker_nebula/trimaker_nebula_normal.inst.cfg index 2f56f89d6c0..cd7f01f5cac 100644 --- a/resources/quality/trimaker_nebula/trimaker_nebula_normal.inst.cfg +++ b/resources/quality/trimaker_nebula/trimaker_nebula_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/trimaker_nebula/trimaker_nebula_slow.inst.cfg b/resources/quality/trimaker_nebula/trimaker_nebula_slow.inst.cfg index cbaf24020b9..b88d621681d 100644 --- a/resources/quality/trimaker_nebula/trimaker_nebula_slow.inst.cfg +++ b/resources/quality/trimaker_nebula/trimaker_nebula_slow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = slow -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/tronxy/tronxy_0.2_ABS_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.2_ABS_extra.inst.cfg index 58c5c5a99cf..34f9e3e47ce 100644 --- a/resources/quality/tronxy/tronxy_0.2_ABS_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_ABS_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_ABS_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.2_ABS_fine.inst.cfg index 07590e6220c..3e3f8912d2a 100644 --- a/resources/quality/tronxy/tronxy_0.2_ABS_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_ABS_super.inst.cfg b/resources/quality/tronxy/tronxy_0.2_ABS_super.inst.cfg index 65b78d75e3d..c16174957a1 100644 --- a/resources/quality/tronxy/tronxy_0.2_ABS_super.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PETG_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PETG_extra.inst.cfg index db26f43e1c7..06b8c01db17 100644 --- a/resources/quality/tronxy/tronxy_0.2_PETG_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PETG_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PETG_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PETG_fine.inst.cfg index 2e8907d03d2..10397a2b5b8 100644 --- a/resources/quality/tronxy/tronxy_0.2_PETG_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PETG_super.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PETG_super.inst.cfg index f4435399795..d9f6d69c14e 100644 --- a/resources/quality/tronxy/tronxy_0.2_PETG_super.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PLA_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PLA_extra.inst.cfg index a9f594e3383..204eca3683a 100644 --- a/resources/quality/tronxy/tronxy_0.2_PLA_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PLA_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PLA_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PLA_fine.inst.cfg index 258d1b24f7f..5929c712bda 100644 --- a/resources/quality/tronxy/tronxy_0.2_PLA_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PLA_super.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PLA_super.inst.cfg index 3ea6f759b6c..f63750d7322 100644 --- a/resources/quality/tronxy/tronxy_0.2_PLA_super.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_ABS_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.3_ABS_extra.inst.cfg index 76d849144a7..246ad7a8de0 100644 --- a/resources/quality/tronxy/tronxy_0.3_ABS_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_ABS_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extra -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_ABS_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.3_ABS_fine.inst.cfg index 38d0d5a70e0..2bfaa59e9cf 100644 --- a/resources/quality/tronxy/tronxy_0.3_ABS_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_ABS_low.inst.cfg b/resources/quality/tronxy/tronxy_0.3_ABS_low.inst.cfg index cf315d03117..1a667797bf7 100644 --- a/resources/quality/tronxy/tronxy_0.3_ABS_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_ABS_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.3_ABS_normal.inst.cfg index b2a9e832625..c1b7c0eeeb6 100644 --- a/resources/quality/tronxy/tronxy_0.3_ABS_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PETG_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PETG_extra.inst.cfg index a00e734a4b8..168ee1f9c30 100644 --- a/resources/quality/tronxy/tronxy_0.3_PETG_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PETG_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extra -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PETG_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PETG_fine.inst.cfg index e31eb16a159..f5a4fff0a22 100644 --- a/resources/quality/tronxy/tronxy_0.3_PETG_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PETG_low.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PETG_low.inst.cfg index b34e2562251..848f6d60de9 100644 --- a/resources/quality/tronxy/tronxy_0.3_PETG_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PETG_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PETG_normal.inst.cfg index 9b584799681..8a9cb9d96f6 100644 --- a/resources/quality/tronxy/tronxy_0.3_PETG_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PLA_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PLA_extra.inst.cfg index fba79329755..9d8c29d1800 100644 --- a/resources/quality/tronxy/tronxy_0.3_PLA_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PLA_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extra -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PLA_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PLA_fine.inst.cfg index 7eeb5abb50f..e25434749ff 100644 --- a/resources/quality/tronxy/tronxy_0.3_PLA_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PLA_low.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PLA_low.inst.cfg index 0aaf3070a27..21afc0841a2 100644 --- a/resources/quality/tronxy/tronxy_0.3_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PLA_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PLA_normal.inst.cfg index 0a5e9e57ec4..2d0dcac3095 100644 --- a/resources/quality/tronxy/tronxy_0.3_PLA_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_TPU_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.3_TPU_extra.inst.cfg index 03f0cf63170..4f94115634b 100644 --- a/resources/quality/tronxy/tronxy_0.3_TPU_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_TPU_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = extra -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_TPU_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.3_TPU_fine.inst.cfg index 0bb51ba7f51..16118e491ae 100644 --- a/resources/quality/tronxy/tronxy_0.3_TPU_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_TPU_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_TPU_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.3_TPU_normal.inst.cfg index b5f0525693c..4f685b96a6c 100644 --- a/resources/quality/tronxy/tronxy_0.3_TPU_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_ABS_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.4_ABS_extra.inst.cfg index 0be7bc67dfd..18781c647f1 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extra -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_ABS_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.4_ABS_fine.inst.cfg index 168f49e05f2..06de7617521 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_ABS_low.inst.cfg b/resources/quality/tronxy/tronxy_0.4_ABS_low.inst.cfg index e7404f37da5..e945ac01dda 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_ABS_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.4_ABS_normal.inst.cfg index d57ac22096c..53e16d3f3d7 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_ABS_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.4_ABS_rough.inst.cfg index 443e8e9163d..154d97c11db 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rough -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PETG_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PETG_extra.inst.cfg index 3c758b080f8..6d37eec24bb 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extra -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PETG_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PETG_fine.inst.cfg index e4e6fd325ac..197c0784e5a 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PETG_low.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PETG_low.inst.cfg index 3e521fe5cda..2b74aef0eeb 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PETG_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PETG_normal.inst.cfg index 50a6a063676..dc23c9ce868 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PETG_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PETG_rough.inst.cfg index 7efc2925db9..e66f4dbf3c6 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rough -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PLA_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PLA_extra.inst.cfg index 33c0dd9ed71..1c0e4292fb1 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extra -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PLA_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PLA_fine.inst.cfg index a9dec2ac7ca..972760e4af2 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PLA_low.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PLA_low.inst.cfg index 9d8eb29cbea..5ba5b1aa7be 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PLA_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PLA_normal.inst.cfg index 3eda4c53911..e587de7f49a 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PLA_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PLA_rough.inst.cfg index cdb4c8589ec..bc6e559bee4 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rough -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_TPU_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.4_TPU_extra.inst.cfg index c3b10bc011b..9e74cd5116f 100644 --- a/resources/quality/tronxy/tronxy_0.4_TPU_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_TPU_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = extra -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_TPU_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.4_TPU_fine.inst.cfg index 2f80a69cad0..d688dc9c469 100644 --- a/resources/quality/tronxy/tronxy_0.4_TPU_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_TPU_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_TPU_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.4_TPU_normal.inst.cfg index 500654b95e8..cea23b76f14 100644 --- a/resources/quality/tronxy/tronxy_0.4_TPU_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_ABS_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.5_ABS_fine.inst.cfg index 868647065cf..729428a336a 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_ABS_low.inst.cfg b/resources/quality/tronxy/tronxy_0.5_ABS_low.inst.cfg index 1bc97978847..b68e94831e8 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_ABS_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.5_ABS_normal.inst.cfg index 5afbc9a0368..e359ea1edc1 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_ABS_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.5_ABS_rapid.inst.cfg index 793faa0398e..e23722aa77a 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rapid -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_ABS_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.5_ABS_rough.inst.cfg index 6aa3e37b5cd..ad66b902ec0 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rough -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PETG_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PETG_fine.inst.cfg index 8839464be8e..9a5899f57d7 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PETG_low.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PETG_low.inst.cfg index a03fe406d63..daa17e9534a 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PETG_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PETG_normal.inst.cfg index 0ab68afe6e1..e87962c3e20 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PETG_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PETG_rapid.inst.cfg index 66bb790b7bb..d2b41210084 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rapid -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PETG_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PETG_rough.inst.cfg index aee6a22475a..387f81555c3 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rough -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PLA_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PLA_fine.inst.cfg index 48b223905e5..e2d4b0d54de 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PLA_low.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PLA_low.inst.cfg index 1e2b873e7f7..a9dd9837d2b 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PLA_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PLA_normal.inst.cfg index c3702cdd9e6..023e0405370 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PLA_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PLA_rapid.inst.cfg index 99060723629..2d539dd6b69 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rapid -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PLA_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PLA_rough.inst.cfg index dab3aaa4907..7c5eaddd0f9 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rough -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_TPU_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.5_TPU_fine.inst.cfg index 34b0df7d1fb..9660d1dcf5b 100644 --- a/resources/quality/tronxy/tronxy_0.5_TPU_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_TPU_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_TPU_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.5_TPU_normal.inst.cfg index b6c1244dcb5..5d11d343740 100644 --- a/resources/quality/tronxy/tronxy_0.5_TPU_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_TPU_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.5_TPU_rapid.inst.cfg index 1cf6176e490..aaf808dd3b9 100644 --- a/resources/quality/tronxy/tronxy_0.5_TPU_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_TPU_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = rapid -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_ABS_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.6_ABS_normal.inst.cfg index 86519d13051..60586feecc2 100644 --- a/resources/quality/tronxy/tronxy_0.6_ABS_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_ABS_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.6_ABS_rapid.inst.cfg index e8737441da1..e27b930641e 100644 --- a/resources/quality/tronxy/tronxy_0.6_ABS_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_ABS_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rapid -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_ABS_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.6_ABS_rough.inst.cfg index c2f6ea5527a..1e7bb100639 100644 --- a/resources/quality/tronxy/tronxy_0.6_ABS_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_ABS_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rough -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PETG_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PETG_normal.inst.cfg index c60b6b7bc24..607671c47f9 100644 --- a/resources/quality/tronxy/tronxy_0.6_PETG_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PETG_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PETG_rapid.inst.cfg index 627de7cadf2..b905bd32414 100644 --- a/resources/quality/tronxy/tronxy_0.6_PETG_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PETG_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rapid -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PETG_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PETG_rough.inst.cfg index 367597cad21..044a9d2a461 100644 --- a/resources/quality/tronxy/tronxy_0.6_PETG_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PETG_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rough -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PLA_low.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PLA_low.inst.cfg index 725fcb20a76..51300f1c931 100644 --- a/resources/quality/tronxy/tronxy_0.6_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PLA_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PLA_normal.inst.cfg index 651ba5a4c98..4fa07b2983f 100644 --- a/resources/quality/tronxy/tronxy_0.6_PLA_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PLA_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PLA_rapid.inst.cfg index d8620b8ea97..4189e2f030b 100644 --- a/resources/quality/tronxy/tronxy_0.6_PLA_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PLA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rapid -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PLA_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PLA_rough.inst.cfg index bfe7b1127bf..96c304d9d3c 100644 --- a/resources/quality/tronxy/tronxy_0.6_PLA_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PLA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rough -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_TPU_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.6_TPU_normal.inst.cfg index 89dada6d6dc..b9d8782fa61 100644 --- a/resources/quality/tronxy/tronxy_0.6_TPU_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_TPU_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.6_TPU_rapid.inst.cfg index 6901d8f5526..50b7ff3fba1 100644 --- a/resources/quality/tronxy/tronxy_0.6_TPU_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_TPU_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = rapid -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_ABS_low.inst.cfg b/resources/quality/tronxy/tronxy_0.8_ABS_low.inst.cfg index 3177aa72da9..42290b3be07 100644 --- a/resources/quality/tronxy/tronxy_0.8_ABS_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_ABS_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.8_ABS_rapid.inst.cfg index 23392e8790c..137877259a5 100644 --- a/resources/quality/tronxy/tronxy_0.8_ABS_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_ABS_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rapid -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_ABS_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.8_ABS_rough.inst.cfg index 4ccda304738..867d9d4bca2 100644 --- a/resources/quality/tronxy/tronxy_0.8_ABS_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_ABS_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rough -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PETG_low.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PETG_low.inst.cfg index 9e7e746430d..f55d6ea39ec 100644 --- a/resources/quality/tronxy/tronxy_0.8_PETG_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PETG_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PETG_rapid.inst.cfg index d4ff0860ab7..87dcd771e59 100644 --- a/resources/quality/tronxy/tronxy_0.8_PETG_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PETG_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rapid -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PETG_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PETG_rough.inst.cfg index deda6a7f6ce..cdce5257195 100644 --- a/resources/quality/tronxy/tronxy_0.8_PETG_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PETG_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rough -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PLA_low.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PLA_low.inst.cfg index ccca511d6e6..1696a160927 100644 --- a/resources/quality/tronxy/tronxy_0.8_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PLA_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PLA_rapid.inst.cfg index 17f2ce6c12c..064cd8d1e74 100644 --- a/resources/quality/tronxy/tronxy_0.8_PLA_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PLA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rapid -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PLA_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PLA_rough.inst.cfg index b32fa4b71ef..2745bc4ddf5 100644 --- a/resources/quality/tronxy/tronxy_0.8_PLA_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PLA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rough -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_TPU_low.inst.cfg b/resources/quality/tronxy/tronxy_0.8_TPU_low.inst.cfg index f1583a70d2e..7705be45c1f 100644 --- a/resources/quality/tronxy/tronxy_0.8_TPU_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_TPU_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_TPU_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.8_TPU_rapid.inst.cfg index a46ab470361..68cc7246f5d 100644 --- a/resources/quality/tronxy/tronxy_0.8_TPU_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_TPU_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = rapid -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_TPU_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.8_TPU_rough.inst.cfg index b83c8b5efe2..64290f624e3 100644 --- a/resources/quality/tronxy/tronxy_0.8_TPU_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_TPU_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = rough -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_global_extra.inst.cfg b/resources/quality/tronxy/tronxy_global_extra.inst.cfg index d11d1e39e8d..986c0383f7d 100644 --- a/resources/quality/tronxy/tronxy_global_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/tronxy/tronxy_global_fine.inst.cfg b/resources/quality/tronxy/tronxy_global_fine.inst.cfg index 1ee5b3d8568..d5853d87037 100644 --- a/resources/quality/tronxy/tronxy_global_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/tronxy/tronxy_global_low.inst.cfg b/resources/quality/tronxy/tronxy_global_low.inst.cfg index 446fadfa8da..e5ab0dc3a49 100644 --- a/resources/quality/tronxy/tronxy_global_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/tronxy/tronxy_global_normal.inst.cfg b/resources/quality/tronxy/tronxy_global_normal.inst.cfg index 07697c710cc..55ecad6eacd 100644 --- a/resources/quality/tronxy/tronxy_global_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/tronxy/tronxy_global_rapid.inst.cfg b/resources/quality/tronxy/tronxy_global_rapid.inst.cfg index 4b49afa97ab..ed2fc3425e9 100644 --- a/resources/quality/tronxy/tronxy_global_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = rapid -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/tronxy/tronxy_global_rough.inst.cfg b/resources/quality/tronxy/tronxy_global_rough.inst.cfg index 6bbf2615bbd..97f0ae05c7f 100644 --- a/resources/quality/tronxy/tronxy_global_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = rough -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/tronxy/tronxy_global_super.inst.cfg b/resources/quality/tronxy/tronxy_global_super.inst.cfg index 2ba5b0aaec0..5f17af54a27 100644 --- a/resources/quality/tronxy/tronxy_global_super.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/twotrees/abs/two_trees_0.2_ABS_super.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.2_ABS_super.inst.cfg index ebc52fdf837..6f00503f5ab 100644 --- a/resources/quality/twotrees/abs/two_trees_0.2_ABS_super.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.2_ABS_ultra.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.2_ABS_ultra.inst.cfg index a51d2ee8266..e5327c74e69 100644 --- a/resources/quality/twotrees/abs/two_trees_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.3_ABS_adaptive.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.3_ABS_adaptive.inst.cfg index 498e38ab67c..be1e007609f 100644 --- a/resources/quality/twotrees/abs/two_trees_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.3_ABS_low.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.3_ABS_low.inst.cfg index f3ef6c692d5..e24d1292ef6 100644 --- a/resources/quality/twotrees/abs/two_trees_0.3_ABS_low.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.3_ABS_standard.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.3_ABS_standard.inst.cfg index 27e856a11c8..d2688767ff8 100644 --- a/resources/quality/twotrees/abs/two_trees_0.3_ABS_standard.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.3_ABS_super.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.3_ABS_super.inst.cfg index 61f983c1f17..b857a977dad 100644 --- a/resources/quality/twotrees/abs/two_trees_0.3_ABS_super.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.4_ABS_adaptive.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.4_ABS_adaptive.inst.cfg index acf9a2d79b6..2c0cf7462c0 100644 --- a/resources/quality/twotrees/abs/two_trees_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.4_ABS_low.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.4_ABS_low.inst.cfg index fa26a3e621d..00fe14ba9c7 100644 --- a/resources/quality/twotrees/abs/two_trees_0.4_ABS_low.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.4_ABS_standard.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.4_ABS_standard.inst.cfg index 70ea753138a..89443e35991 100644 --- a/resources/quality/twotrees/abs/two_trees_0.4_ABS_standard.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.4_ABS_super.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.4_ABS_super.inst.cfg index 57e2cc95eb9..e8b58d0285f 100644 --- a/resources/quality/twotrees/abs/two_trees_0.4_ABS_super.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.5_ABS_adaptive.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.5_ABS_adaptive.inst.cfg index 0a6247df5e8..01176c7cd5c 100644 --- a/resources/quality/twotrees/abs/two_trees_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.5_ABS_low.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.5_ABS_low.inst.cfg index e7d5a413d3f..90669a7baee 100644 --- a/resources/quality/twotrees/abs/two_trees_0.5_ABS_low.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.5_ABS_standard.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.5_ABS_standard.inst.cfg index 59d727e0ee8..553b764395c 100644 --- a/resources/quality/twotrees/abs/two_trees_0.5_ABS_standard.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.5_ABS_super.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.5_ABS_super.inst.cfg index 8093f901b3f..452062d3b82 100644 --- a/resources/quality/twotrees/abs/two_trees_0.5_ABS_super.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.6_ABS_standard.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.6_ABS_standard.inst.cfg index 4da10a58b70..9f4d56bab1e 100644 --- a/resources/quality/twotrees/abs/two_trees_0.6_ABS_standard.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.8_ABS_draft.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.8_ABS_draft.inst.cfg index a2928c11ae9..989d115cee9 100644 --- a/resources/quality/twotrees/abs/two_trees_0.8_ABS_draft.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_1.0_ABS_draft.inst.cfg b/resources/quality/twotrees/abs/two_trees_1.0_ABS_draft.inst.cfg index d3acc3d676b..901cb8ddfcb 100644 --- a/resources/quality/twotrees/abs/two_trees_1.0_ABS_draft.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.2_PETG_super.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.2_PETG_super.inst.cfg index 00e1753f59f..bd431e4d8af 100644 --- a/resources/quality/twotrees/petg/two_trees_0.2_PETG_super.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.2_PETG_ultra.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.2_PETG_ultra.inst.cfg index cd456caa859..31e4283783a 100644 --- a/resources/quality/twotrees/petg/two_trees_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.3_PETG_adaptive.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.3_PETG_adaptive.inst.cfg index c3681301cf3..b565f26eabe 100644 --- a/resources/quality/twotrees/petg/two_trees_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.3_PETG_low.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.3_PETG_low.inst.cfg index a330602fdd3..f10771f87dc 100644 --- a/resources/quality/twotrees/petg/two_trees_0.3_PETG_low.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.3_PETG_standard.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.3_PETG_standard.inst.cfg index bf9e99eea59..e15f473ceb8 100644 --- a/resources/quality/twotrees/petg/two_trees_0.3_PETG_standard.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.3_PETG_super.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.3_PETG_super.inst.cfg index a5b2744362d..0d95bba0edf 100644 --- a/resources/quality/twotrees/petg/two_trees_0.3_PETG_super.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.4_PETG_adaptive.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.4_PETG_adaptive.inst.cfg index 766b6ef1ff5..56607f5f295 100644 --- a/resources/quality/twotrees/petg/two_trees_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.4_PETG_low.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.4_PETG_low.inst.cfg index 529cb826282..be195e72efd 100644 --- a/resources/quality/twotrees/petg/two_trees_0.4_PETG_low.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.4_PETG_standard.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.4_PETG_standard.inst.cfg index 9a9213c25e8..eb0be813137 100644 --- a/resources/quality/twotrees/petg/two_trees_0.4_PETG_standard.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.4_PETG_super.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.4_PETG_super.inst.cfg index 32174de8066..f544466fd27 100644 --- a/resources/quality/twotrees/petg/two_trees_0.4_PETG_super.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.5_PETG_adaptive.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.5_PETG_adaptive.inst.cfg index f55cc7c36dd..0a88af62794 100644 --- a/resources/quality/twotrees/petg/two_trees_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.5_PETG_low.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.5_PETG_low.inst.cfg index 4d1989d0741..28414c38973 100644 --- a/resources/quality/twotrees/petg/two_trees_0.5_PETG_low.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.5_PETG_standard.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.5_PETG_standard.inst.cfg index 47b93b14f59..ff2cde5e65e 100644 --- a/resources/quality/twotrees/petg/two_trees_0.5_PETG_standard.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.5_PETG_super.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.5_PETG_super.inst.cfg index ac3ab464203..93bc9bf622b 100644 --- a/resources/quality/twotrees/petg/two_trees_0.5_PETG_super.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.6_PETG_standard.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.6_PETG_standard.inst.cfg index 7ba8d13fc7a..925270ecfc0 100644 --- a/resources/quality/twotrees/petg/two_trees_0.6_PETG_standard.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.8_PETG_draft.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.8_PETG_draft.inst.cfg index 8d9b052abe9..93b52215f07 100644 --- a/resources/quality/twotrees/petg/two_trees_0.8_PETG_draft.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_1.0_PETG_draft.inst.cfg b/resources/quality/twotrees/petg/two_trees_1.0_PETG_draft.inst.cfg index 6654f3a13dd..e2f943a9607 100644 --- a/resources/quality/twotrees/petg/two_trees_1.0_PETG_draft.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.2_PLA_super.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.2_PLA_super.inst.cfg index 292d3964c9e..a7863a4acff 100644 --- a/resources/quality/twotrees/pla/two_trees_0.2_PLA_super.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.2_PLA_ultra.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.2_PLA_ultra.inst.cfg index a18faa24967..f943d089620 100644 --- a/resources/quality/twotrees/pla/two_trees_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.3_PLA_adaptive.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.3_PLA_adaptive.inst.cfg index d73b38625fd..9afa6cab04a 100644 --- a/resources/quality/twotrees/pla/two_trees_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.3_PLA_low.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.3_PLA_low.inst.cfg index bc1d930f5cd..5049cb98cda 100644 --- a/resources/quality/twotrees/pla/two_trees_0.3_PLA_low.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.3_PLA_standard.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.3_PLA_standard.inst.cfg index 2aed3e25e3a..9249ab7ce22 100644 --- a/resources/quality/twotrees/pla/two_trees_0.3_PLA_standard.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.3_PLA_super.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.3_PLA_super.inst.cfg index 672344afe9a..b41052239bc 100644 --- a/resources/quality/twotrees/pla/two_trees_0.3_PLA_super.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.4_PLA_adaptive.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.4_PLA_adaptive.inst.cfg index be051364fd7..022a9870dc3 100644 --- a/resources/quality/twotrees/pla/two_trees_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.4_PLA_low.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.4_PLA_low.inst.cfg index 50ef6ef118a..a250afa8f1f 100644 --- a/resources/quality/twotrees/pla/two_trees_0.4_PLA_low.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.4_PLA_standard.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.4_PLA_standard.inst.cfg index ffaa82b9f16..7d7deb7cba9 100644 --- a/resources/quality/twotrees/pla/two_trees_0.4_PLA_standard.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.4_PLA_super.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.4_PLA_super.inst.cfg index 0142c3df2db..92f63b1d9d1 100644 --- a/resources/quality/twotrees/pla/two_trees_0.4_PLA_super.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.5_PLA_adaptive.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.5_PLA_adaptive.inst.cfg index fab1c4d9685..e4157be72d5 100644 --- a/resources/quality/twotrees/pla/two_trees_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.5_PLA_low.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.5_PLA_low.inst.cfg index 26f374607e9..13d90a8ce8d 100644 --- a/resources/quality/twotrees/pla/two_trees_0.5_PLA_low.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.5_PLA_standard.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.5_PLA_standard.inst.cfg index 9f334a996a1..4e4812aa1fe 100644 --- a/resources/quality/twotrees/pla/two_trees_0.5_PLA_standard.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.5_PLA_super.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.5_PLA_super.inst.cfg index 45f87521afe..2c4200b39c4 100644 --- a/resources/quality/twotrees/pla/two_trees_0.5_PLA_super.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.6_PLA_draft.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.6_PLA_draft.inst.cfg index a259e5d7590..946e26addb2 100644 --- a/resources/quality/twotrees/pla/two_trees_0.6_PLA_draft.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.6_PLA_low.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.6_PLA_low.inst.cfg index cdc8b281b51..c97a313d2ba 100644 --- a/resources/quality/twotrees/pla/two_trees_0.6_PLA_low.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.6_PLA_standard.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.6_PLA_standard.inst.cfg index b47b18b9e45..681c46222af 100644 --- a/resources/quality/twotrees/pla/two_trees_0.6_PLA_standard.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.8_PLA_draft.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.8_PLA_draft.inst.cfg index 731c9371bb3..203d30088b7 100644 --- a/resources/quality/twotrees/pla/two_trees_0.8_PLA_draft.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_1.0_PLA_draft.inst.cfg b/resources/quality/twotrees/pla/two_trees_1.0_PLA_draft.inst.cfg index 61dedfdfc70..30d4eff84fb 100644 --- a/resources/quality/twotrees/pla/two_trees_1.0_PLA_draft.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_adaptive.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_adaptive.inst.cfg index d3233fd303e..e980a58a03a 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_standard.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_standard.inst.cfg index c9fc819a6c0..17c1b418e81 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_standard.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_super.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_super.inst.cfg index db08081c753..5049ec77014 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_super.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_adaptive.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_adaptive.inst.cfg index bc90a60fa84..c9036336275 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_standard.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_standard.inst.cfg index f424abd5d91..1a494193327 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_standard.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_super.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_super.inst.cfg index db575821d81..3c32939c547 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_super.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_adaptive.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_adaptive.inst.cfg index 3fbea6b8991..bd7f9bf0a94 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_standard.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_standard.inst.cfg index c4e806ae5e5..00422a3217b 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_standard.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_super.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_super.inst.cfg index eedbf5abe2e..6b671fd76f4 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_super.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.6_TPU_standard.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.6_TPU_standard.inst.cfg index eb2f3f269f8..ae8948a49c6 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.6_TPU_standard.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.8_TPU_draft.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.8_TPU_draft.inst.cfg index 9383f9a018e..34463e5264b 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.8_TPU_draft.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_1.0_TPU_draft.inst.cfg b/resources/quality/twotrees/tpu/two_trees_1.0_TPU_draft.inst.cfg index a6dfedc3003..fcff0923c5c 100644 --- a/resources/quality/twotrees/tpu/two_trees_1.0_TPU_draft.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/twotrees/two_trees_global_adaptive.inst.cfg b/resources/quality/twotrees/two_trees_global_adaptive.inst.cfg index 35dcbfdc7c0..9f3b28447de 100644 --- a/resources/quality/twotrees/two_trees_global_adaptive.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/twotrees/two_trees_global_draft.inst.cfg b/resources/quality/twotrees/two_trees_global_draft.inst.cfg index 57d6acaea17..afaeba67cad 100644 --- a/resources/quality/twotrees/two_trees_global_draft.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/twotrees/two_trees_global_low.inst.cfg b/resources/quality/twotrees/two_trees_global_low.inst.cfg index 53991fb83c6..7f3f524486c 100644 --- a/resources/quality/twotrees/two_trees_global_low.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/twotrees/two_trees_global_standard.inst.cfg b/resources/quality/twotrees/two_trees_global_standard.inst.cfg index 15c704f00c7..38560b306df 100644 --- a/resources/quality/twotrees/two_trees_global_standard.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/twotrees/two_trees_global_super.inst.cfg b/resources/quality/twotrees/two_trees_global_super.inst.cfg index 373a4ac415e..63178d95811 100644 --- a/resources/quality/twotrees/two_trees_global_super.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/twotrees/two_trees_global_ultra.inst.cfg b/resources/quality/twotrees/two_trees_global_ultra.inst.cfg index ac28e1163f6..99a10435bf4 100644 --- a/resources/quality/twotrees/two_trees_global_ultra.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/ultimaker2/um2_draft.inst.cfg b/resources/quality/ultimaker2/um2_draft.inst.cfg index 842364a0e20..5011c27069a 100644 --- a/resources/quality/ultimaker2/um2_draft.inst.cfg +++ b/resources/quality/ultimaker2/um2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/ultimaker2/um2_fast.inst.cfg b/resources/quality/ultimaker2/um2_fast.inst.cfg index a4b3b53d9a6..794dcf23778 100644 --- a/resources/quality/ultimaker2/um2_fast.inst.cfg +++ b/resources/quality/ultimaker2/um2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/ultimaker2/um2_high.inst.cfg b/resources/quality/ultimaker2/um2_high.inst.cfg index d3906d40a43..d4e03496575 100644 --- a/resources/quality/ultimaker2/um2_high.inst.cfg +++ b/resources/quality/ultimaker2/um2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/ultimaker2/um2_normal.inst.cfg b/resources/quality/ultimaker2/um2_normal.inst.cfg index ce35f5fdf67..ca4a29a1d95 100644 --- a/resources/quality/ultimaker2/um2_normal.inst.cfg +++ b/resources/quality/ultimaker2/um2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/ultimaker2_plus/pla_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.25_normal.inst.cfg index a66b8d893aa..dfb3c868ef7 100644 --- a/resources/quality/ultimaker2_plus/pla_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/pla_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.4_fast.inst.cfg index b33d5b96019..6dae7ed2012 100644 --- a/resources/quality/ultimaker2_plus/pla_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/pla_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.4_high.inst.cfg index 1ae2910d5ff..929b1a32169 100644 --- a/resources/quality/ultimaker2_plus/pla_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/pla_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.4_normal.inst.cfg index e7668c52ff6..f6a15613455 100644 --- a/resources/quality/ultimaker2_plus/pla_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/pla_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.6_normal.inst.cfg index 87b3fc43f14..347050c648b 100644 --- a/resources/quality/ultimaker2_plus/pla_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/pla_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.8_normal.inst.cfg index 8e8abd0af31..4dfee6ba545 100644 --- a/resources/quality/ultimaker2_plus/pla_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.25_normal.inst.cfg index aa23c2d29e8..caedbce198b 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.4_fast.inst.cfg index 35cc2eb58c9..39a81d5f019 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.4_high.inst.cfg index 7ec4b73d060..97fb479fad1 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.4_normal.inst.cfg index 4c0d9734a4e..8d6fefbe1de 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.6_normal.inst.cfg index 89132582c27..671351c49b7 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.8_normal.inst.cfg index e6029681798..0ab8ca241cc 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.25_normal.inst.cfg index 268629808d2..696aeed7586 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_fast.inst.cfg index 1bc04ea32ac..80dbf780057 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_high.inst.cfg index de94c44cb21..e1d6d1c46a8 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_normal.inst.cfg index 7a077555643..885bc9d6274 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.6_normal.inst.cfg index 9261d6a8284..743c75fd26e 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.8_normal.inst.cfg index ee9c1786869..e06b5806a13 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.4_draft.inst.cfg index c29f258765b..5222c4f8c4c 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.4_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.4_normal.inst.cfg index 7a1ef4d328b..72aef4be2f9 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.6_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.6_draft.inst.cfg index 6c1226cb943..d04e932f563 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.6_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = slightlycoarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.6 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.6_normal.inst.cfg index 7733a6542f2..7a65666930c 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.8_draft.inst.cfg index 64b20d76972..c715197c4b7 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = slightlycoarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.8_normal.inst.cfg index a3f73e630fa..8d3f5e1e909 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Coarse_Quality.inst.cfg index dad85dbf32f..e74435cce2f 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Draft_Quality.inst.cfg index c545bc162b6..32409eb11df 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Extra_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Extra_Coarse_Quality.inst.cfg index b90a08e1640..24fd8ad5281 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Extra_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extracoarse -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Fast_Quality.inst.cfg index c3c6ec1ccbb..a969efd90d3 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_global_High_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_High_Quality.inst.cfg index b2301907f1e..93da7dd17a1 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Normal_Quality.inst.cfg index 4e8d0b98dd8..b8a355c1341 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Slightly_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Slightly_Coarse_Quality.inst.cfg index 9fe60b531c9..29435450a40 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Slightly_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Slightly_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = slightlycoarse -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.25_high.inst.cfg index 05ac13318e0..65a3845fba6 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.25_normal.inst.cfg index 6af095a0345..9d6b67f05a7 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.25 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.4_fast.inst.cfg index 512444d2d09..9c5c4c6f443 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.4_normal.inst.cfg index c81aa84dd1b..5c4a5cae794 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.6_fast.inst.cfg index c201d3c1904..1d46e2deed9 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = slightlycoarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.6_normal.inst.cfg index af44fbb77a1..04a0f9e7669 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.8_draft.inst.cfg index bf548fe1da5..6a64213e355 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = slightlycoarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.8_normal.inst.cfg index fef262b2e9c..cbb77c254fd 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.25_high.inst.cfg index 42394c95c54..ffa19bf6c12 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.25_normal.inst.cfg index c620b6d6390..e6c465d42fa 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.25 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.4_fast.inst.cfg index 2007aed6e83..00d99624b5b 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.4_normal.inst.cfg index 2297ed8f46f..0b9cb7f968f 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.6_fast.inst.cfg index aa2cefdeed3..845543b4764 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = slightlycoarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.6_normal.inst.cfg index 8ad024143d0..332af0cfbea 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.8_draft.inst.cfg index 8ce3d3fc8a1..c1cc2156df0 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extracoarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.8_normal.inst.cfg index 7b04f77daed..6cc6edb7e4b 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.4_fast.inst.cfg index 20cf3f4f399..22c1c509a20 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.4_normal.inst.cfg index b47d8dcbbf4..fc85fc5b805 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.6_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.6_draft.inst.cfg index 635691d3df2..2efd0057e1e 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.6_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.6_fast.inst.cfg index 9e631ee4a29..dfccddb68f0 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.8_draft.inst.cfg index 69911019eeb..36d8fe8b65b 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.8_verydraft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.8_verydraft.inst.cfg index af5fab1f9cc..bb454cc5086 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.8_verydraft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.8_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = slightlycoarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8 mm weight = -3 diff --git a/resources/quality/ultimaker2_plus/um2p_tpu_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus/um2p_tpu_0.25_high.inst.cfg index e4ba9b64a5f..716556770c9 100644 --- a/resources/quality/ultimaker2_plus/um2p_tpu_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_tpu_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_tpu_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_tpu_0.4_normal.inst.cfg index d6beb15c1b6..e9577ec1efa 100644 --- a/resources/quality/ultimaker2_plus/um2p_tpu_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_tpu_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_tpu_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_tpu_0.6_fast.inst.cfg index 82e9444d962..c8c4c793a5a 100644 --- a/resources/quality/ultimaker2_plus/um2p_tpu_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_tpu_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.25_normal.inst.cfg index dc6e6470a89..1c5393bf2f0 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_fast.inst.cfg index 226d4f417d9..68903f8d2bd 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_high.inst.cfg index 6ea8c1855ac..40dfe13c5d1 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_normal.inst.cfg index 45960525a17..8dbc445e88b 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.6_normal.inst.cfg index bccbceb94bb..65d0cf82a1c 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.8_normal.inst.cfg index 7a7bbd77b63..cbc3c1d3eb6 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.25_normal.inst.cfg index dbdf7ff3ce5..9ac9c655d16 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_fast.inst.cfg index 425b2140862..12406ab6082 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_high.inst.cfg index a53fa1d41cc..0923ec23a81 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_normal.inst.cfg index ba09e6f5983..3b5228f9d39 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.6_normal.inst.cfg index b39d2167e50..37f71e1bc0e 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.8_normal.inst.cfg index 02ef1861598..000be268ec1 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_draft.inst.cfg index 4365af97287..dc234ed19d8 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_normal.inst.cfg index 839d10fb5b8..0f4d7770322 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_draft.inst.cfg index deb4633e6fa..6b998e8fb2a 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = slightlycoarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.6 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_normal.inst.cfg index 42542ca2c20..b1d349c2791 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_draft.inst.cfg index 606286b5452..4373028ddf4 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = slightlycoarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_normal.inst.cfg index 7f4ab594d15..e2f8600292b 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Coarse_Quality.inst.cfg index 3f739736a45..f8d0116b7c4 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Draft_Quality.inst.cfg index 86767b07348..44f42f986ca 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Extra_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Extra_Coarse_Quality.inst.cfg index cc0b73b62a7..8d9fff5b70e 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Extra_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extracoarse -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Fast_Quality.inst.cfg index 432f5c88bee..a33c8ae3ceb 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_High_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_High_Quality.inst.cfg index ff05cd8e3b7..58db5e0095f 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Normal_Quality.inst.cfg index 315bed236d9..c2bb284c748 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Slightly_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Slightly_Coarse_Quality.inst.cfg index 9be9845ccfc..9b56520d74a 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Slightly_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Slightly_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = slightlycoarse -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_high.inst.cfg index 22b98a2bef1..0333f112d26 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_normal.inst.cfg index f0bf3998454..240a7011a76 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.25 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_fast.inst.cfg index 5e9bfe3f102..9c3ad03ceb4 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_normal.inst.cfg index 0acedb59a48..6485615ce29 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_fast.inst.cfg index 83645f994ef..2b97c09d638 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = slightlycoarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_normal.inst.cfg index 35cdc1c7935..7fbef3d30ab 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_draft.inst.cfg index 49518bcc83b..48f94b51346 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = slightlycoarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_normal.inst.cfg index 4c9d6de0116..1641791a2ea 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_high.inst.cfg index 9ba27afdba0..0ef8c166c4d 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_normal.inst.cfg index 081fd35b40a..435548e7988 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.25 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_fast.inst.cfg index 175e85ceee5..67c33e88476 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_normal.inst.cfg index 4546b75ecd6..2e99824362b 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_fast.inst.cfg index 8acbf177bbb..e9ad4482715 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = slightlycoarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_normal.inst.cfg index c591382c171..3cf8b80fb89 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.8_normal.inst.cfg index 247cb35fb1a..c9219171e71 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.25_normal.inst.cfg index b61cd02dae1..110fe13e0bc 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_draft.inst.cfg index 24cdf93b52d..0934eb1eae3 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_fast.inst.cfg index 7c805175899..cf6c7350c6e 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_normal.inst.cfg index 89fe4a4e34e..ba1d9bfb533 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.6_normal.inst.cfg index 84745a9d012..1945d233cd9 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.8_normal.inst.cfg index c8bc5074241..8bf08cb7732 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.25_normal.inst.cfg index 0d06ee23f4a..b3100bdb1ca 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_draft.inst.cfg index 4fcdc54f98a..d243ed781aa 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_fast.inst.cfg index b9b838e14e7..5c66c13b1fb 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_high.inst.cfg index 462282adc69..6d6ee19834e 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_normal.inst.cfg index 2d2a424ebc4..052353a1cf2 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.6_normal.inst.cfg index f274f95f8d9..3a41b7dce22 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.8_normal.inst.cfg index 01920524400..69f1a496609 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_fast.inst.cfg index d5aaa0a754b..fc7c6ab4c24 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_normal.inst.cfg index f4fdd278612..9e88be9084d 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_draft.inst.cfg index 0e2fef1c911..583cf3cdce3 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_fast.inst.cfg index ba01ab72d7a..5b0f5e405c8 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_draft.inst.cfg index b61dda88da2..d24c6508d12 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_verydraft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_verydraft.inst.cfg index c5cd0c61b2a..1bd6b8e3c5b 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_verydraft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = slightlycoarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8 mm weight = -3 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.25_normal.inst.cfg index 972bfda8015..9a8f87f3390 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_draft.inst.cfg index f81f88276e4..f4c494114da 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_fast.inst.cfg index d0ef8d2b5cb..a382bb2d36e 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_normal.inst.cfg index 782a08c6edf..f426935b2b2 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.6_normal.inst.cfg index 42b6f2ea89e..093332e5b75 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.8_normal.inst.cfg index e49f37cc77d..c172116a679 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.25_high.inst.cfg index 45acc00ce90..d4deb83116e 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.4_normal.inst.cfg index 6354670e288..a2b133afe6e 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.6_fast.inst.cfg index e53d36940cb..090f8d08ee4 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.25_ABS_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_ABS_Normal_Quality.inst.cfg index eff671f0e7b..60a1d80a3ca 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_ABS_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_CPE_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_CPE_Normal_Quality.inst.cfg index 261dc31a8d7..80339723e24 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_CPE_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_CPE_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_Nylon_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_Nylon_Normal_Quality.inst.cfg index 13330087fc4..6815ea04e13 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_Nylon_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_Nylon_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg index 56ee69253d3..eeb924906f6 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_PETG_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_PETG_Normal_Quality.inst.cfg index 07a7f1eb954..c0805a5854e 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_PETG_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_PETG_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_PLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_PLA_Normal_Quality.inst.cfg index 001364bd92c..529cb2deaf7 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_PLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg index 10e384276b1..a64c8298a2d 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pp quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_TPLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_TPLA_Normal_Quality.inst.cfg index e9fb3a82588..0b6ae2320bb 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_TPLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_TPLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg index b64e3dfb1eb..16be0db845c 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg index 41b5031de15..916b283c9ce 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg index 8195470e4f4..5dcbe80bbbb 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg index ecb9faad445..1420880995f 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg index d6731e02b04..e0dd43cc28a 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg index 55af57f67a6..16ece7c2dda 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg index 367fe5dcf66..ca7fd8cbf35 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg index 9d9203c2ac6..5de59e58c99 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg index 0a9b2d9f026..b2020831d77 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg index 577538fac13..4be3a9c13aa 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg index b52f60361b8..2e24f485d0a 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPE_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPE_Draft_Print.inst.cfg index cb6e303af32..6cfba34af90 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPE_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPE_Fast_Print.inst.cfg index 1505a30d228..faa7730e2c2 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPE_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPE_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPE_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPE_High_Quality.inst.cfg index e9e926660c5..a4af9865070 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPE_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPE_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPE_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPE_Normal_Quality.inst.cfg index 68004b632d8..de85c4aeacf 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPE_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPE_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Draft_Print.inst.cfg index 4a79e5728af..666aaef664d 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Fast_Print.inst.cfg index b65fe71a63a..bc890977eb2 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_Nylon_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_Nylon_High_Quality.inst.cfg index 7d6d2eabaf2..8080dc18250 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_Nylon_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_Nylon_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Normal_Quality.inst.cfg index 4739ce4f5ca..f0344130017 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg index 7c894abf0b7..28e8ccbf75a 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg index 542c9a51bf3..5113277ab2c 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg index 1f5cba710db..636ce41e716 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg index 4bfa09ae9e2..a7c533bfea7 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PETG_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PETG_Draft_Print.inst.cfg index 21748938045..72990ea79e5 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PETG_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PETG_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PETG_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PETG_Fast_Print.inst.cfg index 434e7ce54cd..8bde02fd500 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PETG_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PETG_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PETG_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PETG_Normal_Quality.inst.cfg index c139608ff1d..9ecea87834a 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PETG_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PETG_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg index 44e49ed1604..1d44e48193d 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg index 0fa970bc70b..6b99ed5a70e 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg index 42784f075a0..97be45babc7 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg index 994d781aefc..f305caa82d7 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg index 4fbcdedfa63..c82043d3afc 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg index 0655fa158bf..74a628f7cb9 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg index 375f79a0aa0..fa9b4c54ea4 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg index f5eb8575b0c..cffd1e60758 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg index 3cf1ad08e8e..94fe824f5e2 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg index df4cd1cb5ee..05a68966469 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPU_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPU_Draft_Print.inst.cfg index 833b2e2ba49..ca88ca09863 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPU_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPU_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg index 667efc592c8..e084600c428 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPU_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPU_Normal_Quality.inst.cfg index 13c119ffae4..e6ea1f555df 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPU_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPU_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.8_ABS_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_ABS_Draft_Print.inst.cfg index 4614943320d..d863230b106 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_ABS_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_ABS_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_ABS_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_ABS_Superdraft_Print.inst.cfg index c02bf624d8f..1a95bcb77fd 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_ABS_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_ABS_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_ABS_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_ABS_Verydraft_Print.inst.cfg index ad0d2c1d5ed..7ff4d13b02b 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_ABS_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_ABS_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg index d9a75905401..dcca81f3ef2 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg index 4696e86a1e7..585ae8eefe2 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg index 8bea04ec524..2280a837aed 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg index 5a2b0be4006..b1f867807bd 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg index 61e169f2274..a75ae74ada6 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg index 889c7d559ec..c1544a00e22 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg index d551dac42ed..a0fc0365660 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg index 60092ffe172..547ab013fb7 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg index b144fd3a445..b17789ad0f8 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PC_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PC_Fast_Print.inst.cfg index b4a09c306da..2a3cd5df62c 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PC_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PC_Fast_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PC_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PC_Superdraft_Print.inst.cfg index 8b90dd7c42c..ddd5a34efac 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PC_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PC_Superdraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PC_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PC_Verydraft_Print.inst.cfg index cb7e0df75eb..bf4fc9b6ab5 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PC_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PC_Verydraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg index 4541fd17ea0..3eafff9a071 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg index a23d38188bd..fe36a86948d 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg index 8ca93cd8131..2bba762e2df 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg index c59367946ef..57a830402a6 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg index 40d91ace755..40f710327f1 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg index dc387d1358a..702c64bb78a 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg index 1d64336e577..145389fbe4e 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg index 0ea5def31a4..68d54bd406b 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg index 83b73eea9ec..2aa79cad795 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg index 3404da85e43..a9b7a929180 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg index 40926c6d925..16e17c500ef 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg index b1ccf767d05..96dec4f1c5c 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg index 67a81efc7bb..859eb3b33a0 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg index 8596784c18f..61ace7da80b 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg index 8e0ce7b6b31..e45b8f2d1d5 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg index 3a38fd1b355..eab1a39931e 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = BB 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg index f7f71924837..ad1e26c7dae 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = BB 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg index 0cab2765200..e5ae49b17dd 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = BB 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg index da82ad30ebd..38334b43587 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = BB 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_bb0.8_PVA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.8_PVA_Draft_Print.inst.cfg index 4b6a6781f1c..107e29b30f2 100644 --- a/resources/quality/ultimaker3/um3_bb0.8_PVA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.8_PVA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = BB 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_bb0.8_PVA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.8_PVA_Superdraft_Print.inst.cfg index 7cb3be4d0a2..7c9d28ae29b 100644 --- a/resources/quality/ultimaker3/um3_bb0.8_PVA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.8_PVA_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = BB 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_bb0.8_PVA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.8_PVA_Verydraft_Print.inst.cfg index c85cc5c30f9..66df697ddf1 100644 --- a/resources/quality/ultimaker3/um3_bb0.8_PVA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.8_PVA_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = BB 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Draft_Quality.inst.cfg index 1195b490518..820c25f6ba7 100644 --- a/resources/quality/ultimaker3/um3_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg index 23b5bda7143..1db93cc34f0 100644 --- a/resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg index 277909301e1..c27bc8b96c6 100644 --- a/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/ultimaker3/um3_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Normal_Quality.inst.cfg index cd4be3a7486..3f1f52f5630 100644 --- a/resources/quality/ultimaker3/um3_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/ultimaker3/um3_global_Superdraft_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Superdraft_Quality.inst.cfg index 4c59ff74cdf..be0be2dfbfc 100644 --- a/resources/quality/ultimaker3/um3_global_Superdraft_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Superdraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/ultimaker3/um3_global_Verydraft_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Verydraft_Quality.inst.cfg index b09024d0708..53addba1342 100644 --- a/resources/quality/ultimaker3/um3_global_Verydraft_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Verydraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm.inst.cfg index d4263531115..3fb0c11ffc2 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abscf_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm.inst.cfg index 3272134e2d7..9f0d8c9a7cd 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm.inst.cfg index f2d399ff3b0..f0e0a4fdedd 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm.inst.cfg index 78e7b96bc83..32d64ed5b19 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm.inst.cfg index eda37306024..b64da2988f6 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1XA weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm.inst.cfg index e46ee25b093..e032e3a3b80 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1XA weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_2xa_um-rapidrinse-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_2xa_um-rapidrinse-175_0.2mm.inst.cfg index 4cfb9c9276e..3dae18f97a4 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_2xa_um-rapidrinse-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_2xa_um-rapidrinse-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_rapidrinse_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 2XA weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm.inst.cfg index 2ee2106356e..5ebc2b4560b 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_sr30_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 2XA weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg index f3d1eea2040..bf35842e178 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm.inst.cfg index 444d893bc77..da9564ae9d1 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abscf_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm.inst.cfg index d95a0176085..b3107e14a3a 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm.inst.cfg index 384f85381cb..3c9f4500fc1 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm.inst.cfg index afc790abb45..7bb14d9107d 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm.inst.cfg index f1422160628..8af0b5ce3f5 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abscf_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm.inst.cfg index c18441b7cd5..2688d88ad3e 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm.inst.cfg index e8ee70b2b40..5aaee1f2c6b 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm.inst.cfg index 5d5f891daff..575189deae6 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg index ea2a441350e..fd224e87984 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1XA weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm.inst.cfg index acbd50b36e1..504ab8c10b7 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1XA weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-rapidrinse-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-rapidrinse-175_0.2mm.inst.cfg index f73e194cc28..c3fda29d4cd 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-rapidrinse-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-rapidrinse-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_rapidrinse_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 2XA weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm.inst.cfg index 370a22fd34e..ebc6ecfe982 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_sr30_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 2XA weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_global_Draft_Quality.inst.cfg index 115568be2c9..307c51c6bd2 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm.inst.cfg index 77acd4f2b9e..5becec44d97 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abscf_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm.inst.cfg index 94895b5fa4b..4af8230b24a 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm.inst.cfg index 0ecfa145540..14c15fd3c5e 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm.inst.cfg index cc075adf90f..110fa5e4b5c 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_original/umo_global_Coarse_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_Coarse_Quality.inst.cfg index 8eba38b4cc9..2d7da87e554 100644 --- a/resources/quality/ultimaker_original/umo_global_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/ultimaker_original/umo_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_Draft_Quality.inst.cfg index 7fb577145ee..8f77b3b3307 100644 --- a/resources/quality/ultimaker_original/umo_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/ultimaker_original/umo_global_Extra_Coarse_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_Extra_Coarse_Quality.inst.cfg index c7d9e9707ef..c28b33c7155 100644 --- a/resources/quality/ultimaker_original/umo_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Extra_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/ultimaker_original/umo_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_Fast_Quality.inst.cfg index 0014913d10e..931ba6a129d 100644 --- a/resources/quality/ultimaker_original/umo_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/ultimaker_original/umo_global_High_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_High_Quality.inst.cfg index d865eb9860e..74ab824a8d8 100644 --- a/resources/quality/ultimaker_original/umo_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/ultimaker_original/umo_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_Normal_Quality.inst.cfg index cc7eda9652e..0229a765f4b 100644 --- a/resources/quality/ultimaker_original/umo_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg index bfb11749123..ec9ff192a92 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_cpe_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_cpe_0.1mm.inst.cfg index 8f8cd8f46eb..de251c92dd4 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_cpe_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_cpe_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg index e0fcdf55305..e0d3aa4d50f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg index 2135e5deaf8..369cbcd5630 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_petg_0.1mm.inst.cfg index 7f7b9da311a..bf1b51dfdc1 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_pla_0.1mm.inst.cfg index ed70f807c8b..a09a6eb09ab 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg index 75740231e34..6485844da80 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pp quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_tough-pla_0.1mm.inst.cfg index fb8f230a5f9..b751075b850 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg index eeb51a14286..f989bcc3f64 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg index fb5bcc256bf..e3965d9c5c6 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg index 042058d1f07..9589f2f915a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg index 7d124c4578f..b8aec4972ff 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg index b86675ae954..6877d9b6a22 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg index 7ec6ff5bba1..de1905e4101 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg index a51bbfd3e5b..ae5c9bcbc11 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg index ff2b386de65..701a2db84d3 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg index d7cc2fd3460..684336d1eb4 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_abs quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg index bcca24890b8..a7a17e5f693 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg index f398a6a42dc..a3b8129ed70 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg index 522f155ad0c..5c051039d0b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg index acd966f3ab0..61073067fc8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_bam quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg index 6d9947b2944..880461bccf2 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg index 3566b82f904..5dd5e61f828 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg index f720fa71c1b..7617b35b3b0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg index 5e94d1f585a..7ed1fcd2980 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.06mm.inst.cfg index c0767352a9b..97dc8ef3e0f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm.inst.cfg index 7c5f9caab49..51a4f565270 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm.inst.cfg index 191290bdec0..b53ff26056e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.2mm.inst.cfg index b33a421c02b..776a06004b8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.06mm.inst.cfg index bf59d609734..f30d77be95c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm.inst.cfg index 31ce3c39284..a7eefa98679 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm.inst.cfg index 7a30166c376..8a2a2810d67 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.2mm.inst.cfg index 04f83b8aef0..d000e3ec205 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg index 87eb0679859..c9eebee8a0c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg index a78b80f7867..bcd04f4b24c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg index 1f5f8ba874e..278e502231a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg index 43480fb647e..1baf43933c0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.06mm.inst.cfg index 70f9815aae1..adc4670e8d5 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.15mm.inst.cfg index cab76194212..6838afede35 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.1mm.inst.cfg index ae89f045112..7829f46334e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.2mm.inst.cfg index 3bdd528ea28..db079b04c9f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.3mm.inst.cfg index 09b62fda689..b035dcd5f46 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_petg quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg index 9b2325250c6..4b8f9f433b0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg index caf4248a910..5581284de49 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg index 3e79a33e69d..30af138465b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg index 3e814754e48..e5dc960d98c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg index 87eeb609a7e..719adc820b4 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg index d1de0713dbc..3b106196f27 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg index 5ee4b4ea78d..455338a9016 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg index 45489cdfe1f..b1f5e1f19a9 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg index c9e2ca784ef..b5253cb0779 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg index 98120114f5f..69cf85f3497 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg index 90a53df66a2..397992c551e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg index fe574fc80b8..773da6d3acf 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg index 6b66454bc79..10e43b5699c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg index 8e3ab5173e0..008a119dd22 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg index 7469d30453f..2b585a73ba8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg index 4c702e3b273..1932cf72138 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg index e8cb2907b74..de5e0faf2e1 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg index a08e98868ff..c39c6d42c81 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg index 54ca472acf6..08bb2befdf4 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg index 54acafc477a..89b8386d2f9 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg index 78d2da225f5..cc0da1a2531 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg index 2ae056128c7..7eb5de8b646 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg index 7b57ca8f7ae..d4431382ddb 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg index b19beadf429..bb7de56356f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg index 77c839688ba..c304f13e349 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg index 647261b0c00..854b868259c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg index 00c4be354fd..9678ba95235 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg index 432f722013d..c53596bc9f0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg index 39aa770c102..58a8a1ebb09 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg index 8a2a5b19a77..2870c09199b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg index 1851be3eab2..6f450463b9a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg index e902727c41d..e193aa51c33 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg index 15566dd63da..622f2030e46 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg index c1f93a6ac66..09f02aa3751 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg index fd0e3e5344e..3b82ebfac7b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg index 3f62d21120a..2fd9e5ef2c5 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.2mm.inst.cfg index 13aa3ea9168..2be5fb643ec 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.3mm.inst.cfg index 3b51b39fdd5..219d5f1d562 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.4mm.inst.cfg index b15ed15d51c..7f0ce6b1319 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg index 6125cdd468c..c2d04c9bade 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg index b57bbfcfd41..caf16e5f940 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg index 63cb5c6b62c..1cd46fab48d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg index 572d6a14c1f..f9ee324f336 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg index bf36800e961..f883fe19987 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg index 54c18728760..a5c059c5e6f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg index b93480ecaca..e7d656dcc4f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg index 90156ac8a35..08c1f4933b9 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg index f2d50ef5299..c4d2894885d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.2mm.inst.cfg index f3e73ac51f7..9a79c3831c9 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.3mm.inst.cfg index 61227b58c0b..77355d22b58 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.4mm.inst.cfg index 0fb4f697ff6..6669edeaf40 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.4mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg index 1b559783ef8..d901c6c0dd7 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg index 588ff80120d..02798823463 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg index 246aa7f2e02..373d6a0b789 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg index 87b1b648048..1feae070fcb 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg index 75b5ddfd5f3..f93f0848db1 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg index 5eccf9bef4d..67f9cdfcf02 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg index 65a7d476c35..7619fcf43da 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg index f3e3c1f062d..b157ed198c6 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg index f091059d191..550a26c7f86 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg index 788182ad91d..1f706632ce9 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg index d18423fb207..b1437e9160e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg index 52006ce8013..7c3c4ff6e91 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg index cc082aa98bc..c2e0ba68afd 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg index 60b74e9e8bd..156d645694a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg index d2112a066d6..0f1e8357b3e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg index 3bcab3006c0..9d7b4455d6f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg index d5f5439634e..e2a5c54c66d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg index 58369c92526..26d3dc7fb8f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg index 5a804ae0e83..b1dae1cb7a9 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg index b66dba1dee0..4d4ffa00591 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg index 30d0e49ede3..5cc6a43e132 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg index 336beaf1179..59f8409483d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg index 07641eb84ae..a4cdd898f1f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg index 880ac666d7f..79dc105f863 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg index b5463988936..a76864a1a3c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg index 403e44d04c8..d3642327268 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg index 867154ac70d..02a71fa9b71 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg index 44a7379dcb3..12b815d5ab9 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = BB 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg index 3541afe3505..5390b3ecb7f 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = BB 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg index 23ac57b4743..b15b5958a77 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = BB 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg index e12a164f808..e273e85eb50 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = BB 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.3mm.inst.cfg index 4b148bd5fda..e8401bc0250 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pva quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = BB 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.2mm.inst.cfg index 563f4413353..34873606af8 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = BB 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.3mm.inst.cfg index 66e9d39a078..c30007a6366 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = BB 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.4mm.inst.cfg index ee6d9fce33c..4bb2a411aa3 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = BB 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.15mm.inst.cfg index 9ab5d056124..f205541fe90 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.2mm.inst.cfg index a6dbc29c7d0..5745328e166 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.15mm.inst.cfg index 827c8d2ef9b..dd4f4c1da11 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.2mm.inst.cfg index 7359087b446..b594e050097 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.15mm.inst.cfg index 956b60d524a..ff6a9fb197e 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.2mm.inst.cfg index 67038511716..d57c195038b 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.15mm.inst.cfg index 3a3d53aa328..3ff36e0f354 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.2mm.inst.cfg index ae5a395ffb1..879abf7d08a 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm.inst.cfg index d13d630f5e2..fd25f84ca51 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm.inst.cfg index e89e9de845a..ea26d6b1461 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg index b45c225162b..ea2902cd6c8 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg index ed0186e5d08..bbbad9be1fe 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg index f5077c90db4..300e2ebaedb 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg index 70a278ea32b..84040ede4ea 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_cffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_cffcpe_0.2mm.inst.cfg index aa60eec702a..2021632327f 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_cffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_cffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_cffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_cffpa_0.2mm.inst.cfg index eeaf1e492c4..831bf6e90bc 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_cffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_cffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_gffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_gffcpe_0.2mm.inst.cfg index cee7f7c04f7..44850349f21 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_gffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_gffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_gffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_gffpa_0.2mm.inst.cfg index 43dd326538d..b20fe941457 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_gffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_gffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm.inst.cfg index 300d5b02b3d..b49ee3061e7 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm.inst.cfg index d7b2c394684..db82d6e40eb 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.3mm.inst.cfg index 502f5fa11b6..8e94df9387a 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.6 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg index 9c1570ee8f5..402ae15ebae 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg index 0ed8088a9b6..0c9154a2334 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg index 2a596778ff2..e7b72d6cd09 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg index 6ecdf06d8f8..38c857de5e9 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_Draft_Quality.inst.cfg index 0758e705063..7f29b2a7fcf 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_Fast_Quality.inst.cfg index 292e8f458ff..a81faa637bb 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_global_High_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_High_Quality.inst.cfg index af119d34d33..432531edba9 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_Normal_Quality.inst.cfg index fe51a0fc67f..c48aee95919 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_global_Superdraft_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_Superdraft_Quality.inst.cfg index 32dfff4185a..73600ea4aa9 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_Superdraft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_Superdraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_global_Verydraft_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_Verydraft_Quality.inst.cfg index a90aaceab82..8d331bb8f58 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_Verydraft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_Verydraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg index 049396232a9..d26fe0daee0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_cpe_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_cpe_0.1mm.inst.cfg index 69776856995..eb98d025937 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_cpe_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_cpe_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg index 54be78e0341..ea86a9a9a6e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg index 0d9a1ed9821..eef6e66a5e6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_petg_0.1mm.inst.cfg index 0907b2f03e1..b1fc1b99040 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_pla_0.1mm.inst.cfg index e2d11052941..ab26722d874 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg index ec510c886d6..56689c4bfa8 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pp quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_tough-pla_0.1mm.inst.cfg index 3b414db0922..97a82173331 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg index a31045f9ed7..29057ff13b9 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg index b171fdef80d..a2233703d49 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg index fec58e9d8ce..44f6670085e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg index 74f71b970f0..997f823e51a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg index 6aa6f233657..573b758705b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg index 72e3d668dbd..926ef499223 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg index f1c40d435fd..598e83d9222 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg index ac070dcf590..5f5e9e2fd3c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg index e1d20b47864..8656a280676 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_abs quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg index 6b118fde63b..a4381e0e3b7 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg index 6422d61996e..5f4c480fa4b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg index 4b82ec4068b..9e3c0153b17 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg index 6a910b3deb7..bd4e13ebaf6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_bam quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg index c262d3ae315..a77d1b42335 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg index fec5e0a4c08..805fb08ead6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg index 25ed3adb96f..77f775d6723 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg index d16b3578f8c..877c48c42d9 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.06mm.inst.cfg index c9448b8e9a2..ec98c131a98 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm.inst.cfg index 6672a867bf2..95c436a4492 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm.inst.cfg index 4aa50490466..8f9877eebc6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.2mm.inst.cfg index 2f6b9483d31..f5ecef3fc59 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.06mm.inst.cfg index 656822b80b8..b9b89ef3b7e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm.inst.cfg index 950170017f5..33c05d16ce0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm.inst.cfg index 911fb56357b..0248ef6169d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.2mm.inst.cfg index 7b30fd474ef..7440015ced6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg index 1442f1b1806..c58107dcf9e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg index fb1502f4f16..b210b894e55 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg index 920e807c306..aa17d35a978 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg index f9e78aeea67..616443b1292 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.06mm.inst.cfg index 32daf56a058..6fe817fba1d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.15mm.inst.cfg index e311a70015f..8a47953164b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.1mm.inst.cfg index 3d3f08ee59c..1e04aad8ce0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.2mm.inst.cfg index c78b64128e8..aaf279f115b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.3mm.inst.cfg index c7c5c6582c9..78971b4a15b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_petg quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg index a06de49699a..f34549bc781 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg index de3e873bd77..4a9e914b99d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg index f6b0cc0a722..dc73f13bb55 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg index c520a270cdf..ead512bb507 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg index 3d7d7bf0e82..c6641e7a08e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg index 238da076376..8eb0d257d6f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg index 8a36acf81c3..bd4dd317bb6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg index cec826b2b2a..1e5ea9efb62 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg index 928699193b2..cf7a8335b86 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg index 1cd2ca0af62..a7dcb611285 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg index a127f1bafcf..f053b33478d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg index f8b8b835cab..4e98b6005ae 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg index f475ac64847..5c6ed285489 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg index bf5504f7e55..d718e44a027 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg index 095b9a55249..55a724e2600 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg index 618f0c10438..591e8e91bd2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg index d0950efea04..c0b4799ca95 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg index 74c3a780821..d430f867d85 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg index f71fe4a1643..b2c25e26c70 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg index b319290e662..15b87d8229c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg index 8ff6abf0617..9a100248130 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg index eb665657321..ef58c146639 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg index c40db10dd57..5d14f014b94 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg index db70a58d81a..d23a7b8ceab 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg index 53e9e671a1b..4e1b0f535f5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg index 6b3a4ade868..ab66eed0ab2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg index dc83ca3836a..2b192e8c1c9 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg index 05ace5503b1..11301a29907 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg index 9c47aedd1b5..1d07e0f63c8 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg index f88ae2633fc..28cf131812b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg index ff6107a869c..a01b433eb2b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg index 1c06b3206a4..f368ac13d87 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg index 1107e0ae891..b699ebc9f33 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg index f504aed78df..d0ee391c657 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg index 9453aa41cd5..9869a18bb34 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg index b4d37055033..fc8507c42b2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.2mm.inst.cfg index a57f3d1db1f..0448dbc35c1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.3mm.inst.cfg index 3617a0f3209..5100bd460b8 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.4mm.inst.cfg index c0960ecbb80..6c677be864f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg index 36793d479c7..0dd369e4dd3 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg index 35959b5b462..e6ce183f4a6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg index 42e8ebafa71..0c3abc6e3fc 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg index e4f905a7bdc..eb6e07e0806 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg index 36fde0b907e..e7958d98416 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg index 9aed2a8c55b..0683b2959bd 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg index 4498143d4b6..5a774e07508 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg index 02c9ecd708e..bed4ac46d7f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg index 7a84fe749cd..a0d58757da8 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.2mm.inst.cfg index 492b4683f1e..ddce4d41ab4 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.3mm.inst.cfg index 09092de98c1..dd51965c6e2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.4mm.inst.cfg index c943037a960..da4671d5af5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.4mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg index 0700bad762c..6208ad9bec5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg index f0fee5fb38b..98b0d3f5f8c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg index b39cbb1f445..156113b809c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg index a91d5232132..10bf06fbb5c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg index 8a0f863da86..1a63005ced6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg index c9aa0476a20..5e22cee246e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg index 6c7ccf90f33..c338c4b7ff5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg index 09c4b047023..62d9eb235d7 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg index 7905d943047..b2792b6feef 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg index 50c25a914be..26c20268eac 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg index 864c0dde9bd..cc28dc51505 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg index 0df55e97992..eb338d1e1db 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg index 9aa0eed8534..941bfb3736d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg index 759cf36e2f6..11db9e5a622 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg index 118c2524ce5..ac2049daae0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg index a7d3b780e56..9ba4a38c6e7 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg index 46c4e0e0e50..4ab74980ef0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg index 81c80a3c872..269d51dd4b5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg index a049c751732..4f56167ffde 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg index 9efdfc7d575..9fdf9a665b1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg index ffdb1772477..3368ae6e2d2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg index 0736e60059c..ca93df9dc10 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg index 5c7b8fa4410..4461ae07724 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg index 1f2e30f4021..1acdad53a0c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg index 468ebdb9d60..4973ec35bbc 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg index 24221a06488..2bcf3fa82d4 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg index 133469116dc..3e4693c115f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg index 79c891b5137..2bc28f4c1a0 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 23 +setting_version = 22 type = quality variant = BB 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg index 0606d82159b..f5b8c352984 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = BB 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg index a4e78383583..6457f97c9c9 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = BB 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg index 1f9754b2a28..eef90f5f17c 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = BB 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg index 04a35d798ad..e1862ce3c41 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pva quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = BB 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.2mm.inst.cfg index bab8bce504d..bf3a4420702 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = BB 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.3mm.inst.cfg index 31b316d5d26..ff02ecedd5b 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = BB 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.4mm.inst.cfg index 773fae8204d..7db02b4cdc2 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality variant = BB 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.15mm.inst.cfg index 2446ef813d8..18061adda3b 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.2mm.inst.cfg index 9f206ee50c0..066e75b4853 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.15mm.inst.cfg index e20af2439a0..15f3b3e6a58 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.2mm.inst.cfg index 09ee04d1a0d..52627f2a585 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.15mm.inst.cfg index ba21c26c553..5e29f112225 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.2mm.inst.cfg index 5be5e1e49e7..85b50e6768a 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.15mm.inst.cfg index 0f3360608b6..371f646cb6f 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.2mm.inst.cfg index 68824a89161..778637cf3ff 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm.inst.cfg index 7c3e86ee84a..88ee346758a 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm.inst.cfg index 56346c81df7..00f9ef51ff6 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg index 0797ce3a740..8b807c1eb5f 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg index 5efec81bb24..ebc58413e2a 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg index ceedc5958dc..1204be4c15e 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg index 9cd74fd0b2c..6a7d52af4b3 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_cffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_cffcpe_0.2mm.inst.cfg index 863d292ddd6..ad7c2f58771 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_cffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_cffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_cffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_cffpa_0.2mm.inst.cfg index 958256683be..72bd69f4017 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_cffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_cffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_gffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_gffcpe_0.2mm.inst.cfg index 57f79f77425..8d68d5c92f0 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_gffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_gffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_gffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_gffpa_0.2mm.inst.cfg index 69639343f55..6366ee8a7e0 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_gffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_gffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm.inst.cfg index e82826f87a0..c9a6a2bafe2 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm.inst.cfg index f2cbe9b3e58..7abb9e4018e 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.3mm.inst.cfg index d241e2c86e2..e0c6719bde6 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.6 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg index b5258d92887..40d414cbcb6 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg index eac67e08c85..6144a2c3f03 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg index f4b98360cb0..5bf5d910e81 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg index 2e5abe5101e..21407b6e66a 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_Draft_Quality.inst.cfg index 2342971e464..09226692361 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_Fast_Quality.inst.cfg index 7ee52748788..3dd039c01ff 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_global_High_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_High_Quality.inst.cfg index 7a1f7698d59..4c5b7f3462b 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_Normal_Quality.inst.cfg index 0cbe93963c4..18b14b14f9f 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_global_Superdraft_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_Superdraft_Quality.inst.cfg index 601c994b95e..8f55162a47f 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_Superdraft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_Superdraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_global_Verydraft_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_Verydraft_Quality.inst.cfg index cb1c88548af..1b89f8fdce3 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_Verydraft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_Verydraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.10.inst.cfg index d076e5e9bce..f3c9f4557c3 100644 --- a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.15.inst.cfg index 58796f169cd..5593994febe 100644 --- a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.20.inst.cfg index ea995b18df4..1f8cba9c8c2 100644 --- a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.25.inst.cfg index 037722df8f4..c261f4a6bdc 100644 --- a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q025 -setting_version = 23 +setting_version = 22 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.10.inst.cfg index 86478076913..b7ae054c4a5 100644 --- a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.15.inst.cfg index ead1a20886f..71e42cbb5c7 100644 --- a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.20.inst.cfg index a5d5f5e1bbe..6540355cb7a 100644 --- a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.25.inst.cfg index ef28599bf20..f2cb0f2b377 100644 --- a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q025 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.30.inst.cfg index d14443bfb88..ebdd40c6bee 100644 --- a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q030 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.15.inst.cfg index 7945311f471..dfb91488bae 100644 --- a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.20.inst.cfg index 897d3b0ba2a..528315c4796 100644 --- a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.25.inst.cfg index d15a3bdf712..4edfec56fff 100644 --- a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q025 -setting_version = 23 +setting_version = 22 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.30.inst.cfg index 34f5d3cf262..a9edd8aef07 100644 --- a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q030 -setting_version = 23 +setting_version = 22 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.35.inst.cfg index eadeb1bf75a..cff924336b6 100644 --- a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q035 -setting_version = 23 +setting_version = 22 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.10.inst.cfg index dcbe57dd5e1..203f68c18b4 100644 --- a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.15.inst.cfg index ce50864b51b..3b0a4a9c757 100644 --- a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.20.inst.cfg index 0a0e16f7eb6..506f5b8f49b 100644 --- a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.25.inst.cfg index afbbe015411..cebd2db2c61 100644 --- a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q025 -setting_version = 23 +setting_version = 22 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.10.inst.cfg index 276ab9c4ceb..5fd4d006610 100644 --- a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.15.inst.cfg index ee3de82b74a..bf01ff3a844 100644 --- a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.20.inst.cfg index f6333c6e59c..58180de36ec 100644 --- a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.25.inst.cfg index ecc3aec0079..4dae58ad457 100644 --- a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q025 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.30.inst.cfg index c653bed0e7a..3b3314bd6e2 100644 --- a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q030 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.15.inst.cfg index bdc1bc20e4b..8dd3de6dddb 100644 --- a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.20.inst.cfg index 54f27659edc..4cc6e4fe01b 100644 --- a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.25.inst.cfg index 4620fa57121..a0be80b8176 100644 --- a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q025 -setting_version = 23 +setting_version = 22 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.30.inst.cfg index 6bd9406cccd..18e5e32104e 100644 --- a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q030 -setting_version = 23 +setting_version = 22 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.35.inst.cfg index bb4d584e6d8..0ef270c55a8 100644 --- a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q035 -setting_version = 23 +setting_version = 22 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/layer_0.05.inst.cfg b/resources/quality/uni_base/layer_0.05.inst.cfg index e641d64fc7c..f9cc2b93199 100644 --- a/resources/quality/uni_base/layer_0.05.inst.cfg +++ b/resources/quality/uni_base/layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q005 -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/uni_base/layer_0.10.inst.cfg b/resources/quality/uni_base/layer_0.10.inst.cfg index 2527e5b3d42..c8c12bbe0c8 100644 --- a/resources/quality/uni_base/layer_0.10.inst.cfg +++ b/resources/quality/uni_base/layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q010 -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/uni_base/layer_0.15.inst.cfg b/resources/quality/uni_base/layer_0.15.inst.cfg index 3bc9d1ff872..3d80994db83 100644 --- a/resources/quality/uni_base/layer_0.15.inst.cfg +++ b/resources/quality/uni_base/layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q015 -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/uni_base/layer_0.20.inst.cfg b/resources/quality/uni_base/layer_0.20.inst.cfg index 05f9ad61517..ef5b96040a0 100644 --- a/resources/quality/uni_base/layer_0.20.inst.cfg +++ b/resources/quality/uni_base/layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q020 -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/uni_base/layer_0.25.inst.cfg b/resources/quality/uni_base/layer_0.25.inst.cfg index 200a80d416a..6e41376988d 100644 --- a/resources/quality/uni_base/layer_0.25.inst.cfg +++ b/resources/quality/uni_base/layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q025 -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/uni_base/layer_0.30.inst.cfg b/resources/quality/uni_base/layer_0.30.inst.cfg index 217cc39d136..e92496a1d2d 100644 --- a/resources/quality/uni_base/layer_0.30.inst.cfg +++ b/resources/quality/uni_base/layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q030 -setting_version = 23 +setting_version = 22 type = quality weight = -6 diff --git a/resources/quality/uni_base/layer_0.35.inst.cfg b/resources/quality/uni_base/layer_0.35.inst.cfg index 8eff4a4b8ba..443932fb54a 100644 --- a/resources/quality/uni_base/layer_0.35.inst.cfg +++ b/resources/quality/uni_base/layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q035 -setting_version = 23 +setting_version = 22 type = quality weight = -7 diff --git a/resources/quality/uni_base/layer_0.40.inst.cfg b/resources/quality/uni_base/layer_0.40.inst.cfg index cd353afa3b8..11fda6fa87e 100644 --- a/resources/quality/uni_base/layer_0.40.inst.cfg +++ b/resources/quality/uni_base/layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q040 -setting_version = 23 +setting_version = 22 type = quality weight = -8 diff --git a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.10.inst.cfg index de0913379d3..9841118e2bd 100644 --- a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.15.inst.cfg index 1c2e9d9953e..18e02aed4ff 100644 --- a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.20.inst.cfg index 35de218dcb4..a93a42df02c 100644 --- a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.25.inst.cfg index 5b68da394b5..79b2c22e7a7 100644 --- a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q025 -setting_version = 23 +setting_version = 22 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.10.inst.cfg index 2769e9c11b9..6d05047b3df 100644 --- a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.15.inst.cfg index b370177f2af..79c9d10d866 100644 --- a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.20.inst.cfg index 9b093148960..6b99af5fe68 100644 --- a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.25.inst.cfg index 4175b3b882d..3e4ff411d56 100644 --- a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q025 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.30.inst.cfg index 513cc23f41a..3a6917a9b63 100644 --- a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q030 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.15.inst.cfg index 12556d6daad..06fb65b9c13 100644 --- a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.20.inst.cfg index efb0f497aaa..cf28c3752f0 100644 --- a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.25.inst.cfg index 60149a698ab..025ee67e811 100644 --- a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q025 -setting_version = 23 +setting_version = 22 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.30.inst.cfg index 14c0ae80bb5..a80ee052008 100644 --- a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q030 -setting_version = 23 +setting_version = 22 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.35.inst.cfg index 0caae6620cb..c2198ed29d2 100644 --- a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q035 -setting_version = 23 +setting_version = 22 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.10.inst.cfg index 4d348529233..f36516d08dd 100644 --- a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.15.inst.cfg index 508e79e005c..37016d040b8 100644 --- a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.20.inst.cfg index 2d427ac5060..929803a398a 100644 --- a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.25.inst.cfg index 96e5a7e9236..39aa19d003f 100644 --- a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q025 -setting_version = 23 +setting_version = 22 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.10.inst.cfg index 0807042bb08..6e0f68c476d 100644 --- a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.15.inst.cfg index 7a680d07dda..e53e6b0b70a 100644 --- a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.20.inst.cfg index 90dae71153a..84caa4a7073 100644 --- a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.25.inst.cfg index 4dd470095b2..d48114e887d 100644 --- a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q025 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.30.inst.cfg index cf55c91bd7d..be1401a0759 100644 --- a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q030 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.15.inst.cfg index 880a2547083..2052bbe9701 100644 --- a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.20.inst.cfg index 4ef63d7b08a..b262d36cf7d 100644 --- a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.25.inst.cfg index f06d5264319..ec443cc82f0 100644 --- a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q025 -setting_version = 23 +setting_version = 22 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.30.inst.cfg index 2ff7650db7d..fd0605bfddf 100644 --- a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q030 -setting_version = 23 +setting_version = 22 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.35.inst.cfg index 6f4fb83eab4..0605347cc51 100644 --- a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q035 -setting_version = 23 +setting_version = 22 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/vertex_delta_k8800/k8800_ABS_Extreme_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_ABS_Extreme_Quality.inst.cfg index 1c6e89f0fcd..8a95ba4ab8e 100644 --- a/resources/quality/vertex_delta_k8800/k8800_ABS_Extreme_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_ABS_Extreme_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_ABS quality_type = extreme -setting_version = 23 +setting_version = 22 type = quality weight = 2 diff --git a/resources/quality/vertex_delta_k8800/k8800_ABS_High_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_ABS_High_Quality.inst.cfg index 6d0017cbe46..8bd8593036b 100644 --- a/resources/quality/vertex_delta_k8800/k8800_ABS_High_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_ABS_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_ABS quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/vertex_delta_k8800/k8800_ABS_Normal_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_ABS_Normal_Quality.inst.cfg index 0f99d857c6f..973eea0d5af 100644 --- a/resources/quality/vertex_delta_k8800/k8800_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_ABS_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_ABS quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/vertex_delta_k8800/k8800_Global_Extreme_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_Global_Extreme_Quality.inst.cfg index 93eee7b63e0..cc67d80bb5b 100644 --- a/resources/quality/vertex_delta_k8800/k8800_Global_Extreme_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_Global_Extreme_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extreme -setting_version = 23 +setting_version = 22 type = quality weight = 2 diff --git a/resources/quality/vertex_delta_k8800/k8800_Global_High_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_Global_High_Quality.inst.cfg index 1c65c533e8d..943befece39 100644 --- a/resources/quality/vertex_delta_k8800/k8800_Global_High_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_Global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/vertex_delta_k8800/k8800_Global_Normal_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_Global_Normal_Quality.inst.cfg index d169d4d59ac..ce5fd765798 100644 --- a/resources/quality/vertex_delta_k8800/k8800_Global_Normal_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_Global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/vertex_delta_k8800/k8800_PET_Extreme_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PET_Extreme_Quality.inst.cfg index 17ddd32edbc..67c9b8b2e11 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PET_Extreme_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PET_Extreme_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PET quality_type = extreme -setting_version = 23 +setting_version = 22 type = quality weight = 2 diff --git a/resources/quality/vertex_delta_k8800/k8800_PET_High_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PET_High_Quality.inst.cfg index bd1c5850c6f..d7f5cfef48b 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PET_High_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PET_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PET quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/vertex_delta_k8800/k8800_PET_Normal_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PET_Normal_Quality.inst.cfg index e9dc2460677..210ada27f40 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PET_Normal_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PET_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PET quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/vertex_delta_k8800/k8800_PLA_Extreme_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PLA_Extreme_Quality.inst.cfg index 95b43d256ed..2eef80f6f9c 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PLA_Extreme_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PLA_Extreme_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PLA quality_type = extreme -setting_version = 23 +setting_version = 22 type = quality weight = 2 diff --git a/resources/quality/vertex_delta_k8800/k8800_PLA_High_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PLA_High_Quality.inst.cfg index ed5f38c3307..55f23a2b796 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PLA_High_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PLA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PLA quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/vertex_delta_k8800/k8800_PLA_Normal_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PLA_Normal_Quality.inst.cfg index 22072f12b45..daa1ee388a7 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PLA quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/vertex_delta_k8800/k8800_TPU_Extreme_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_TPU_Extreme_Quality.inst.cfg index ff7abe36f52..1cf2f69c289 100644 --- a/resources/quality/vertex_delta_k8800/k8800_TPU_Extreme_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_TPU_Extreme_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_TPU quality_type = extreme -setting_version = 23 +setting_version = 22 type = quality weight = 2 diff --git a/resources/quality/vertex_delta_k8800/k8800_TPU_High_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_TPU_High_Quality.inst.cfg index 02a59ad0f50..d9d7bd586bf 100644 --- a/resources/quality/vertex_delta_k8800/k8800_TPU_High_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_TPU_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_TPU quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/vertex_delta_k8800/k8800_TPU_Normal_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_TPU_Normal_Quality.inst.cfg index 468668bc59e..4abfc9cd55e 100644 --- a/resources/quality/vertex_delta_k8800/k8800_TPU_Normal_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_TPU_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_TPU quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_super.inst.cfg index d568325ccee..8400d63613d 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_ultra.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_ultra.inst.cfg index 6b5c2865d88..b4f6d842192 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_super.inst.cfg index 17a4f24cb20..43754cf4d02 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_ultra.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_ultra.inst.cfg index cf540a99320..51aca4c8f87 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_super.inst.cfg index d9b7be615c2..123039f744b 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_ultra.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_ultra.inst.cfg index 0d2405589c4..2778738cc45 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_adaptive.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_adaptive.inst.cfg index 3f2515bbf5f..5ec01f33853 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_low.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_low.inst.cfg index d6064b9a596..fcf9eac0787 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_low.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_standard.inst.cfg index a0083995a51..4e4f96e9a6c 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_super.inst.cfg index f6545fa60cb..bbc3c0c2cd4 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_adaptive.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_adaptive.inst.cfg index 28d9186b299..18741cb1f44 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_low.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_low.inst.cfg index 7f65012c932..8235de7cf3d 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_low.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_standard.inst.cfg index 4949b12a623..73d6ba0150c 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_super.inst.cfg index 745f3df40e7..4c7b04faba3 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_adaptive.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_adaptive.inst.cfg index cfc4942cbbd..f12be977358 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_low.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_low.inst.cfg index e00e416f060..a3c95de877c 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_low.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_standard.inst.cfg index 3a258261274..26f09735ace 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_super.inst.cfg index 29081be573e..7d70600e6d3 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_adaptive.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_adaptive.inst.cfg index a200039cdca..fcafe45b1a6 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_standard.inst.cfg index eef989fadb7..3e7fad20e72 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_super.inst.cfg index 02690c101de..214992da9c3 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_ABS_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_ABS_standard.inst.cfg index 53bc180c214..fe33c34b007 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_ABS_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PETG_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PETG_standard.inst.cfg index 290a06a2c41..cd03bbf51ac 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PETG_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_draft.inst.cfg index 8f0e13f1446..9b0210c925c 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_low.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_low.inst.cfg index c90b7011348..1edcc0aca85 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_low.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_standard.inst.cfg index 857497278e7..275409e3945 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_TPU_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_TPU_standard.inst.cfg index 79e9a7d18c4..76756b07f59 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_TPU_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.8_ABS_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.8_ABS_draft.inst.cfg index 17664cded08..c95d7a0cbce 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.8_ABS_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.8_PETG_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.8_PETG_draft.inst.cfg index c672c86d723..4a03f1bc16c 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.8_PETG_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.8_PLA_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.8_PLA_draft.inst.cfg index 8d7a5a486e1..dd10ada2c3f 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.8_PLA_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.8_TPU_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.8_TPU_draft.inst.cfg index 2d6cbc5e52d..fb5b65747f1 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.8_TPU_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_adaptive.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_adaptive.inst.cfg index d12c7e66e31..1265bc05005 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_draft.inst.cfg index 564190eb444..2af82ca7972 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_low.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_low.inst.cfg index 086845dc3c0..faa561e87cc 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_low.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_standard.inst.cfg index 83ca6841364..7f7c62fac0e 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_super.inst.cfg index df1455f3086..74e59d47127 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_ultra.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_ultra.inst.cfg index 301acfa9393..d84b13132d5 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_ultra.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/vivedino/trex3/trex3_0.2_ABS_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_ABS_super.inst.cfg index 7241dd65f3b..a3ac617a886 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_ABS_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.2_ABS_ultra.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_ABS_ultra.inst.cfg index 95b8201f1dd..a38fbaf5ac0 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.2_PETG_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_PETG_super.inst.cfg index 40c59a6dac3..ffeb8a7186c 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_PETG_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.2_PETG_ultra.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_PETG_ultra.inst.cfg index 77739985e92..6b1e6cc04f5 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.2_PLA_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_PLA_super.inst.cfg index 25abb907f4c..deb8efc0726 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_PLA_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.2_PLA_ultra.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_PLA_ultra.inst.cfg index 58732f9d7e9..b18db947bab 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_ABS_adaptive.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_ABS_adaptive.inst.cfg index 6b57e6b6c98..56fc7ca2559 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_ABS_low.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_ABS_low.inst.cfg index 8e02902a417..52c33c7a435 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_ABS_low.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_ABS_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_ABS_standard.inst.cfg index 494a384e4a5..a43fa1416fc 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_ABS_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_ABS_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_ABS_super.inst.cfg index 5b4c240f012..7066b13d53e 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_ABS_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PETG_adaptive.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PETG_adaptive.inst.cfg index f0ddd4e581d..d0b07652769 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PETG_low.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PETG_low.inst.cfg index e0351ea2705..f58eb4cc78d 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PETG_low.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PETG_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PETG_standard.inst.cfg index d9362f1fdea..65d0b2f86eb 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PETG_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PETG_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PETG_super.inst.cfg index e4d0f933e14..83a7bf1d585 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PETG_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PLA_adaptive.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PLA_adaptive.inst.cfg index 1ccfed86f9a..9f075001b7c 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PLA_low.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PLA_low.inst.cfg index 15252d1ccf9..b39c54e5216 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PLA_low.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PLA_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PLA_standard.inst.cfg index ba247803be9..7465e927a27 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PLA_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PLA_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PLA_super.inst.cfg index c1449e986ad..d4beec1d172 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PLA_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_TPU_adaptive.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_TPU_adaptive.inst.cfg index 8e83bb561c1..24823515fcf 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_TPU_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_TPU_standard.inst.cfg index f196808f60a..ddb10577616 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_TPU_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_TPU_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_TPU_super.inst.cfg index 68b4d68f35c..d18ac9b7437 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_TPU_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_ABS_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_ABS_standard.inst.cfg index 64fa8215bd2..bd7d1b0244f 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_ABS_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_PETG_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_PETG_standard.inst.cfg index 5dc644e22b3..7e5655563d5 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_PETG_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_PLA_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_PLA_draft.inst.cfg index 807605532b2..05e47b6e01f 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_PLA_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_PLA_low.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_PLA_low.inst.cfg index 69b811b4135..de0768bca2f 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_PLA_low.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_PLA_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_PLA_standard.inst.cfg index bbacab15aca..39d448b89c5 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_PLA_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_TPU_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_TPU_standard.inst.cfg index 464b184e9a7..afc319902cc 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_TPU_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.8_ABS_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.8_ABS_draft.inst.cfg index fd88d032b44..6540732950d 100644 --- a/resources/quality/vivedino/trex3/trex3_0.8_ABS_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.8_PETG_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.8_PETG_draft.inst.cfg index e08d8b68423..5dc7b1b7bf9 100644 --- a/resources/quality/vivedino/trex3/trex3_0.8_PETG_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.8_PLA_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.8_PLA_draft.inst.cfg index 8039e2d102c..0f548bc44aa 100644 --- a/resources/quality/vivedino/trex3/trex3_0.8_PLA_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.8_TPU_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.8_TPU_draft.inst.cfg index 91b42d6988b..5e75225fe91 100644 --- a/resources/quality/vivedino/trex3/trex3_0.8_TPU_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_global_adaptive.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_adaptive.inst.cfg index 7017c58fb3c..10661dc372f 100644 --- a/resources/quality/vivedino/trex3/trex3_global_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/vivedino/trex3/trex3_global_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_draft.inst.cfg index dfb030a717c..6de78a03e2d 100644 --- a/resources/quality/vivedino/trex3/trex3_global_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/vivedino/trex3/trex3_global_low.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_low.inst.cfg index 46e4c526402..7727bd3a624 100644 --- a/resources/quality/vivedino/trex3/trex3_global_low.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/vivedino/trex3/trex3_global_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_standard.inst.cfg index 067d541bbd8..8548b27c88a 100644 --- a/resources/quality/vivedino/trex3/trex3_global_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/vivedino/trex3/trex3_global_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_super.inst.cfg index 20be9356b50..209825b5ea4 100644 --- a/resources/quality/vivedino/trex3/trex3_global_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/vivedino/trex3/trex3_global_ultra.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_ultra.inst.cfg index 84663c26f87..a4158b482e3 100644 --- a/resources/quality/vivedino/trex3/trex3_global_ultra.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/volumic/sh65_coarse.inst.cfg b/resources/quality/volumic/sh65_coarse.inst.cfg index 4ee607642d0..f6002271a75 100644 --- a/resources/quality/volumic/sh65_coarse.inst.cfg +++ b/resources/quality/volumic/sh65_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/volumic/sh65_draft.inst.cfg b/resources/quality/volumic/sh65_draft.inst.cfg index d20069ba377..61844b3d8ee 100644 --- a/resources/quality/volumic/sh65_draft.inst.cfg +++ b/resources/quality/volumic/sh65_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/volumic/sh65_extra_coarse.inst.cfg b/resources/quality/volumic/sh65_extra_coarse.inst.cfg index aaf4f6d4b99..6795e06c5ba 100644 --- a/resources/quality/volumic/sh65_extra_coarse.inst.cfg +++ b/resources/quality/volumic/sh65_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/volumic/sh65_fast.inst.cfg b/resources/quality/volumic/sh65_fast.inst.cfg index 0e917104107..5cab0242023 100644 --- a/resources/quality/volumic/sh65_fast.inst.cfg +++ b/resources/quality/volumic/sh65_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/volumic/sh65_high.inst.cfg b/resources/quality/volumic/sh65_high.inst.cfg index f077f59a213..f9e974e5c83 100644 --- a/resources/quality/volumic/sh65_high.inst.cfg +++ b/resources/quality/volumic/sh65_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/volumic/sh65_normal.inst.cfg b/resources/quality/volumic/sh65_normal.inst.cfg index 4dfe95931ef..c96946f5a86 100644 --- a/resources/quality/volumic/sh65_normal.inst.cfg +++ b/resources/quality/volumic/sh65_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/volumic/stream20dual_mk2_coarse.inst.cfg b/resources/quality/volumic/stream20dual_mk2_coarse.inst.cfg index f17c733d651..01ae434bd0c 100644 --- a/resources/quality/volumic/stream20dual_mk2_coarse.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/volumic/stream20dual_mk2_draft.inst.cfg b/resources/quality/volumic/stream20dual_mk2_draft.inst.cfg index 811f769693e..203e63efe0e 100644 --- a/resources/quality/volumic/stream20dual_mk2_draft.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/volumic/stream20dual_mk2_extra_coarse.inst.cfg b/resources/quality/volumic/stream20dual_mk2_extra_coarse.inst.cfg index b95a225cbf2..7d0269a6114 100644 --- a/resources/quality/volumic/stream20dual_mk2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/volumic/stream20dual_mk2_fast.inst.cfg b/resources/quality/volumic/stream20dual_mk2_fast.inst.cfg index fcc2659b55c..58abc1beac4 100644 --- a/resources/quality/volumic/stream20dual_mk2_fast.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/volumic/stream20dual_mk2_high.inst.cfg b/resources/quality/volumic/stream20dual_mk2_high.inst.cfg index 79b8722ad7a..fbed3cb579e 100644 --- a/resources/quality/volumic/stream20dual_mk2_high.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/volumic/stream20dual_mk2_normal.inst.cfg b/resources/quality/volumic/stream20dual_mk2_normal.inst.cfg index dc39fc3c8cc..46d007e0436 100644 --- a/resources/quality/volumic/stream20dual_mk2_normal.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/volumic/stream20pro_mk2_coarse.inst.cfg b/resources/quality/volumic/stream20pro_mk2_coarse.inst.cfg index 3226c97f8ef..f30fc5bddec 100644 --- a/resources/quality/volumic/stream20pro_mk2_coarse.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/volumic/stream20pro_mk2_draft.inst.cfg b/resources/quality/volumic/stream20pro_mk2_draft.inst.cfg index 2e326bcff83..8bdddbdd1f2 100644 --- a/resources/quality/volumic/stream20pro_mk2_draft.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/volumic/stream20pro_mk2_extra_coarse.inst.cfg b/resources/quality/volumic/stream20pro_mk2_extra_coarse.inst.cfg index 19cc0ddcef8..610dd6e7a01 100644 --- a/resources/quality/volumic/stream20pro_mk2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/volumic/stream20pro_mk2_fast.inst.cfg b/resources/quality/volumic/stream20pro_mk2_fast.inst.cfg index 58edf8244aa..b542119eba5 100644 --- a/resources/quality/volumic/stream20pro_mk2_fast.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/volumic/stream20pro_mk2_high.inst.cfg b/resources/quality/volumic/stream20pro_mk2_high.inst.cfg index 3a2f4ebc8eb..703b59bf4a6 100644 --- a/resources/quality/volumic/stream20pro_mk2_high.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/volumic/stream20pro_mk2_normal.inst.cfg b/resources/quality/volumic/stream20pro_mk2_normal.inst.cfg index de4a217293b..f30aa090139 100644 --- a/resources/quality/volumic/stream20pro_mk2_normal.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30dual_mk2_coarse.inst.cfg b/resources/quality/volumic/stream30dual_mk2_coarse.inst.cfg index f9d939edde2..bdcbbdb5e78 100644 --- a/resources/quality/volumic/stream30dual_mk2_coarse.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30dual_mk2_draft.inst.cfg b/resources/quality/volumic/stream30dual_mk2_draft.inst.cfg index c89e1d95f9e..c521eb96cc4 100644 --- a/resources/quality/volumic/stream30dual_mk2_draft.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30dual_mk2_extra_coarse.inst.cfg b/resources/quality/volumic/stream30dual_mk2_extra_coarse.inst.cfg index 808ff582c6f..2b168507c37 100644 --- a/resources/quality/volumic/stream30dual_mk2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30dual_mk2_fast.inst.cfg b/resources/quality/volumic/stream30dual_mk2_fast.inst.cfg index 8e8c03caa99..73a73817e15 100644 --- a/resources/quality/volumic/stream30dual_mk2_fast.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30dual_mk2_high.inst.cfg b/resources/quality/volumic/stream30dual_mk2_high.inst.cfg index 6d22eff318a..a18d0e71788 100644 --- a/resources/quality/volumic/stream30dual_mk2_high.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30dual_mk2_normal.inst.cfg b/resources/quality/volumic/stream30dual_mk2_normal.inst.cfg index 03689321a1f..5e46e5a4cb2 100644 --- a/resources/quality/volumic/stream30dual_mk2_normal.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30mk3_coarse.inst.cfg b/resources/quality/volumic/stream30mk3_coarse.inst.cfg index 7da72446a11..82b9d849f44 100644 --- a/resources/quality/volumic/stream30mk3_coarse.inst.cfg +++ b/resources/quality/volumic/stream30mk3_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30mk3_draft.inst.cfg b/resources/quality/volumic/stream30mk3_draft.inst.cfg index 21122e01485..a82fbc93ffe 100644 --- a/resources/quality/volumic/stream30mk3_draft.inst.cfg +++ b/resources/quality/volumic/stream30mk3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30mk3_extra_coarse.inst.cfg b/resources/quality/volumic/stream30mk3_extra_coarse.inst.cfg index 9c046df8d02..3d79662132f 100644 --- a/resources/quality/volumic/stream30mk3_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30mk3_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30mk3_fast.inst.cfg b/resources/quality/volumic/stream30mk3_fast.inst.cfg index a9a0abfe44a..5f47d9dc52b 100644 --- a/resources/quality/volumic/stream30mk3_fast.inst.cfg +++ b/resources/quality/volumic/stream30mk3_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30mk3_high.inst.cfg b/resources/quality/volumic/stream30mk3_high.inst.cfg index 59b18958ea8..99070092d02 100644 --- a/resources/quality/volumic/stream30mk3_high.inst.cfg +++ b/resources/quality/volumic/stream30mk3_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30mk3_normal.inst.cfg b/resources/quality/volumic/stream30mk3_normal.inst.cfg index 13236aa24e5..168eaa13a9d 100644 --- a/resources/quality/volumic/stream30mk3_normal.inst.cfg +++ b/resources/quality/volumic/stream30mk3_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30pro_mk2_coarse.inst.cfg b/resources/quality/volumic/stream30pro_mk2_coarse.inst.cfg index 093717c0cfa..4ab380a91ec 100644 --- a/resources/quality/volumic/stream30pro_mk2_coarse.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30pro_mk2_draft.inst.cfg b/resources/quality/volumic/stream30pro_mk2_draft.inst.cfg index fc6ad396c7d..9601e0ae6c0 100644 --- a/resources/quality/volumic/stream30pro_mk2_draft.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30pro_mk2_extra_coarse.inst.cfg b/resources/quality/volumic/stream30pro_mk2_extra_coarse.inst.cfg index af4cbf94cf2..5de2da310ba 100644 --- a/resources/quality/volumic/stream30pro_mk2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30pro_mk2_fast.inst.cfg b/resources/quality/volumic/stream30pro_mk2_fast.inst.cfg index 2e85dd0709d..8a0b9af92b0 100644 --- a/resources/quality/volumic/stream30pro_mk2_fast.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30pro_mk2_high.inst.cfg b/resources/quality/volumic/stream30pro_mk2_high.inst.cfg index a88bbec9eae..13c1186f613 100644 --- a/resources/quality/volumic/stream30pro_mk2_high.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30pro_mk2_normal.inst.cfg b/resources/quality/volumic/stream30pro_mk2_normal.inst.cfg index a4d5156c75f..ead12ea85fd 100644 --- a/resources/quality/volumic/stream30pro_mk2_normal.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30ultra_coarse.inst.cfg b/resources/quality/volumic/stream30ultra_coarse.inst.cfg index c88987710ae..b03ca36b6e7 100644 --- a/resources/quality/volumic/stream30ultra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30ultra_draft.inst.cfg b/resources/quality/volumic/stream30ultra_draft.inst.cfg index da798b475f4..98c9205303e 100644 --- a/resources/quality/volumic/stream30ultra_draft.inst.cfg +++ b/resources/quality/volumic/stream30ultra_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30ultra_extra_coarse.inst.cfg b/resources/quality/volumic/stream30ultra_extra_coarse.inst.cfg index 6c0c43ef213..88820df0298 100644 --- a/resources/quality/volumic/stream30ultra_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultra_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30ultra_fast.inst.cfg b/resources/quality/volumic/stream30ultra_fast.inst.cfg index 874cdaab8f8..15e025f4ffe 100644 --- a/resources/quality/volumic/stream30ultra_fast.inst.cfg +++ b/resources/quality/volumic/stream30ultra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30ultra_high.inst.cfg b/resources/quality/volumic/stream30ultra_high.inst.cfg index 74807196565..b183ec66656 100644 --- a/resources/quality/volumic/stream30ultra_high.inst.cfg +++ b/resources/quality/volumic/stream30ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30ultra_normal.inst.cfg b/resources/quality/volumic/stream30ultra_normal.inst.cfg index 0d46173ef46..4db17e0066f 100644 --- a/resources/quality/volumic/stream30ultra_normal.inst.cfg +++ b/resources/quality/volumic/stream30ultra_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30ultrasc2_coarse.inst.cfg b/resources/quality/volumic/stream30ultrasc2_coarse.inst.cfg index 32dbfe249bc..c3ca990cb26 100644 --- a/resources/quality/volumic/stream30ultrasc2_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30ultrasc2_draft.inst.cfg b/resources/quality/volumic/stream30ultrasc2_draft.inst.cfg index 3e0e6513e9e..49b593c8a4e 100644 --- a/resources/quality/volumic/stream30ultrasc2_draft.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30ultrasc2_extra_coarse.inst.cfg b/resources/quality/volumic/stream30ultrasc2_extra_coarse.inst.cfg index 89bb2c6fb30..72e5a4f16f0 100644 --- a/resources/quality/volumic/stream30ultrasc2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30ultrasc2_fast.inst.cfg b/resources/quality/volumic/stream30ultrasc2_fast.inst.cfg index 260247659bd..56a6998bc27 100644 --- a/resources/quality/volumic/stream30ultrasc2_fast.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30ultrasc2_high.inst.cfg b/resources/quality/volumic/stream30ultrasc2_high.inst.cfg index a747b2cb404..94f01b46d98 100644 --- a/resources/quality/volumic/stream30ultrasc2_high.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30ultrasc2_normal.inst.cfg b/resources/quality/volumic/stream30ultrasc2_normal.inst.cfg index 843d7b584fe..7284277d187 100644 --- a/resources/quality/volumic/stream30ultrasc2_normal.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30ultrasc_coarse.inst.cfg b/resources/quality/volumic/stream30ultrasc_coarse.inst.cfg index f8a7d60eb25..616e45f9358 100644 --- a/resources/quality/volumic/stream30ultrasc_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30ultrasc_draft.inst.cfg b/resources/quality/volumic/stream30ultrasc_draft.inst.cfg index 25342c42057..d77fec91e2e 100644 --- a/resources/quality/volumic/stream30ultrasc_draft.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30ultrasc_extra_coarse.inst.cfg b/resources/quality/volumic/stream30ultrasc_extra_coarse.inst.cfg index 5fe5874ef55..27a0a8556c7 100644 --- a/resources/quality/volumic/stream30ultrasc_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30ultrasc_fast.inst.cfg b/resources/quality/volumic/stream30ultrasc_fast.inst.cfg index ca187fd9694..d399f7a972a 100644 --- a/resources/quality/volumic/stream30ultrasc_fast.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30ultrasc_high.inst.cfg b/resources/quality/volumic/stream30ultrasc_high.inst.cfg index 41170d02610..6fc17a0c07a 100644 --- a/resources/quality/volumic/stream30ultrasc_high.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30ultrasc_normal.inst.cfg b/resources/quality/volumic/stream30ultrasc_normal.inst.cfg index 1ef8a673702..032c6787f65 100644 --- a/resources/quality/volumic/stream30ultrasc_normal.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/voron2/voron2_global_extrafast_quality.inst.cfg b/resources/quality/voron2/voron2_global_extrafast_quality.inst.cfg index ca793bd4cdf..d1c3338e9e0 100644 --- a/resources/quality/voron2/voron2_global_extrafast_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_extrafast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_extrafine_quality.inst.cfg b/resources/quality/voron2/voron2_global_extrafine_quality.inst.cfg index ce40e624458..eaa1ab94a92 100644 --- a/resources/quality/voron2/voron2_global_extrafine_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_extrafine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extrafine -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_fast_quality.inst.cfg b/resources/quality/voron2/voron2_global_fast_quality.inst.cfg index 0449c493fa1..68d875074a2 100644 --- a/resources/quality/voron2/voron2_global_fast_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_fast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_fine_quality.inst.cfg b/resources/quality/voron2/voron2_global_fine_quality.inst.cfg index 6f29ec5055f..28f798ac3cf 100644 --- a/resources/quality/voron2/voron2_global_fine_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_fine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_normal_quality.inst.cfg b/resources/quality/voron2/voron2_global_normal_quality.inst.cfg index e3d8fbbd5af..4da5a189bc6 100644 --- a/resources/quality/voron2/voron2_global_normal_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_normal_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_sprint_quality.inst.cfg b/resources/quality/voron2/voron2_global_sprint_quality.inst.cfg index 1ace1241f19..601f2e7938d 100644 --- a/resources/quality/voron2/voron2_global_sprint_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_sprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_supersprint_quality.inst.cfg b/resources/quality/voron2/voron2_global_supersprint_quality.inst.cfg index f294ceb8bb7..73c001a0c00 100644 --- a/resources/quality/voron2/voron2_global_supersprint_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_supersprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = supersprint -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_ultrasprint_quality.inst.cfg b/resources/quality/voron2/voron2_global_ultrasprint_quality.inst.cfg index 999e2cf9dbc..f0e8f84207b 100644 --- a/resources/quality/voron2/voron2_global_ultrasprint_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_ultrasprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultrasprint -setting_version = 23 +setting_version = 22 type = quality [values] diff --git a/resources/quality/voron2/voron2_v6_0.25_ABS_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_ABS_extrafine.inst.cfg index d875200d07e..807fe41ed82 100644 --- a/resources/quality/voron2/voron2_v6_0.25_ABS_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_ABS_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_ABS_fast.inst.cfg index 41fa3934fdc..cb536784b95 100644 --- a/resources/quality/voron2/voron2_v6_0.25_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_ABS_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_ABS_fine.inst.cfg index 7cacd10f627..34b45927efb 100644 --- a/resources/quality/voron2/voron2_v6_0.25_ABS_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_ABS_normal.inst.cfg index 27c9b2baa4b..ff77c263f52 100644 --- a/resources/quality/voron2/voron2_v6_0.25_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_Nylon_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_Nylon_extrafine.inst.cfg index 6aaa0a5cec8..d239904200e 100644 --- a/resources/quality/voron2/voron2_v6_0.25_Nylon_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_Nylon_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_Nylon_fast.inst.cfg index 20c0c546271..f12c40aff3c 100644 --- a/resources/quality/voron2/voron2_v6_0.25_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_Nylon_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_Nylon_fine.inst.cfg index 98433b300a2..6bc2d68be4f 100644 --- a/resources/quality/voron2/voron2_v6_0.25_Nylon_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_Nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_Nylon_normal.inst.cfg index c52e1edc697..6a0a63e7c89 100644 --- a/resources/quality/voron2/voron2_v6_0.25_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PC_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PC_extrafine.inst.cfg index 7701363d27f..8518310a7ef 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PC_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PC_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PC_fast.inst.cfg index db3304c8bda..640856b1a3e 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PC_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PC_fine.inst.cfg index 2340ac5eb55..705d06eae4d 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PC_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PC_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PC_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PC_normal.inst.cfg index 8cb43102a98..de7bdeb500e 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PETG_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PETG_extrafine.inst.cfg index 1da27306416..a11e4262d02 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PETG_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PETG_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PETG_fast.inst.cfg index e880dfde900..491d0834c9e 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PETG_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PETG_fine.inst.cfg index 64eb944a8e3..9bdf9f755bb 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PETG_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PETG_normal.inst.cfg index 16b89df09dd..ad3591ebad6 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PLA_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PLA_extrafine.inst.cfg index 5ab36fdc1d6..4f108362890 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PLA_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PLA_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PLA_fast.inst.cfg index 128f4f3519a..8f13a10f464 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PLA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PLA_fine.inst.cfg index bef1c297b90..f7f934ebaee 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PLA_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PLA_normal.inst.cfg index 0fbe2717ff9..7611969448c 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.30_ABS_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_ABS_extrafine.inst.cfg index 8c340b49729..77cfd3a2cba 100644 --- a/resources/quality/voron2/voron2_v6_0.30_ABS_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_ABS_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_ABS_fast.inst.cfg index b618f271856..14147f9d2a8 100644 --- a/resources/quality/voron2/voron2_v6_0.30_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_ABS_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_ABS_fine.inst.cfg index 5fc1baf868a..08db73af24c 100644 --- a/resources/quality/voron2/voron2_v6_0.30_ABS_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_ABS_normal.inst.cfg index 0e79604c855..a23bf4a3b7b 100644 --- a/resources/quality/voron2/voron2_v6_0.30_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_Nylon_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_Nylon_extrafine.inst.cfg index aab9828c89a..38fb11d4199 100644 --- a/resources/quality/voron2/voron2_v6_0.30_Nylon_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_Nylon_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_Nylon_fast.inst.cfg index 5e68a88b28a..33fd3dac2fa 100644 --- a/resources/quality/voron2/voron2_v6_0.30_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_Nylon_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_Nylon_fine.inst.cfg index 47cc7bd3aab..24c351401df 100644 --- a/resources/quality/voron2/voron2_v6_0.30_Nylon_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_Nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_Nylon_normal.inst.cfg index c265542a593..406ce90e291 100644 --- a/resources/quality/voron2/voron2_v6_0.30_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PC_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PC_extrafine.inst.cfg index 2eda5bfb6de..61e1ec3a7e3 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PC_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PC_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PC_fast.inst.cfg index a1891a441dc..030fabf15fb 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PC_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PC_fine.inst.cfg index cb5a8185c65..2224d795bf4 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PC_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PC_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PC_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PC_normal.inst.cfg index 38716319729..3d9349daa00 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PETG_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PETG_extrafine.inst.cfg index b3540539e9f..8e2a03761c4 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PETG_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PETG_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PETG_fast.inst.cfg index 8d0a0683e44..9dd178f0f37 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PETG_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PETG_fine.inst.cfg index 1e1f83bcd8f..fcf74f3a4cd 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PETG_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PETG_normal.inst.cfg index 25eeb9671a4..20ff970fc6d 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PLA_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PLA_extrafine.inst.cfg index a2fdab44e18..b3795a3ef54 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PLA_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PLA_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PLA_fast.inst.cfg index 0d90f4563fc..965d900bbb8 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PLA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PLA_fine.inst.cfg index 38be216020c..65aa7f0343e 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PLA_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PLA_normal.inst.cfg index a85824d26eb..2a57475a785 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.35_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_ABS_fast.inst.cfg index f4b4c535307..7846447eb7b 100644 --- a/resources/quality/voron2/voron2_v6_0.35_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_ABS_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_ABS_fine.inst.cfg index 765f525e3a8..015a9c9aae1 100644 --- a/resources/quality/voron2/voron2_v6_0.35_ABS_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_ABS_normal.inst.cfg index 79147ed396f..87389e8e226 100644 --- a/resources/quality/voron2/voron2_v6_0.35_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_Nylon_fast.inst.cfg index bccc0df919a..2516c359413 100644 --- a/resources/quality/voron2/voron2_v6_0.35_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_Nylon_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_Nylon_fine.inst.cfg index e66e09de2eb..03c36126e34 100644 --- a/resources/quality/voron2/voron2_v6_0.35_Nylon_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_Nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_Nylon_normal.inst.cfg index ffa5c7474d5..755376e6267 100644 --- a/resources/quality/voron2/voron2_v6_0.35_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PC_fast.inst.cfg index 8c4ff0e135f..0852b1bf540 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PC_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PC_fine.inst.cfg index aa522f9bf15..268ba62a656 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PC_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PC_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PC_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PC_normal.inst.cfg index 46218916caa..51b4afc60ad 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PETG_fast.inst.cfg index 96efd1e41eb..1f08c7bc500 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PETG_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PETG_fine.inst.cfg index dbcc850ccde..facfc8056c7 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PETG_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PETG_normal.inst.cfg index 0653734b260..6661209790f 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PLA_fast.inst.cfg index 2c68fe3d54d..c60ceef721b 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PLA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PLA_fine.inst.cfg index 2d6094cb4c1..0881d6ab968 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PLA_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PLA_normal.inst.cfg index 7a665711e0d..6bf236e0f9a 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.40_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_ABS_extrafast.inst.cfg index 0d531943391..2db034efebb 100644 --- a/resources/quality/voron2/voron2_v6_0.40_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_ABS_fast.inst.cfg index beb9e634874..109f47e2ed0 100644 --- a/resources/quality/voron2/voron2_v6_0.40_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_ABS_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_ABS_fine.inst.cfg index f0ae26fdecf..d2c90a076d0 100644 --- a/resources/quality/voron2/voron2_v6_0.40_ABS_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_ABS_normal.inst.cfg index afab3158607..190acad43cf 100644 --- a/resources/quality/voron2/voron2_v6_0.40_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_Nylon_extrafast.inst.cfg index c28857b5654..d5aa2294071 100644 --- a/resources/quality/voron2/voron2_v6_0.40_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_Nylon_fast.inst.cfg index cc3433b18e4..5b36de7fbf1 100644 --- a/resources/quality/voron2/voron2_v6_0.40_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_Nylon_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_Nylon_fine.inst.cfg index 3f0760ac527..191c3b638ae 100644 --- a/resources/quality/voron2/voron2_v6_0.40_Nylon_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_Nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_Nylon_normal.inst.cfg index ae4eb6a72ab..29c8875ceaa 100644 --- a/resources/quality/voron2/voron2_v6_0.40_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PC_extrafast.inst.cfg index d44de8b675e..62f9aa7c610 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PC_fast.inst.cfg index 5d957259259..8527ebc5e03 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PC_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PC_fine.inst.cfg index 393ebdc42f3..de2688f5026 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PC_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PC_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PC_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PC_normal.inst.cfg index a702679bd3c..2c310f8cdf8 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PETG_extrafast.inst.cfg index 9c187e99e68..7823e910540 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PETG_fast.inst.cfg index c92c574d3cb..72395f4992f 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PETG_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PETG_fine.inst.cfg index a1694ce1606..f89dd4482df 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PETG_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PETG_normal.inst.cfg index 3c45b57b038..e39dc24194b 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PLA_extrafast.inst.cfg index 087ba0b07ae..bc279381b58 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PLA_fast.inst.cfg index 15223eb5e77..d2bda88545b 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PLA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PLA_fine.inst.cfg index cfe44ff106a..812bb233838 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PLA_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PLA_normal.inst.cfg index d2a81b81c05..a0225cdf3c7 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.50_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_ABS_extrafast.inst.cfg index 595c1a99663..32dcd984dc1 100644 --- a/resources/quality/voron2/voron2_v6_0.50_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_ABS_fast.inst.cfg index 203f6be5698..6c6030bfb35 100644 --- a/resources/quality/voron2/voron2_v6_0.50_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_ABS_normal.inst.cfg index 9ac625d6857..360ce976f6b 100644 --- a/resources/quality/voron2/voron2_v6_0.50_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_ABS_sprint.inst.cfg index 1792fcafd23..27d1008e36d 100644 --- a/resources/quality/voron2/voron2_v6_0.50_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_Nylon_extrafast.inst.cfg index cfbbb3e9c40..4c6105e2fc5 100644 --- a/resources/quality/voron2/voron2_v6_0.50_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_Nylon_fast.inst.cfg index 5f5347c9c23..78fb176a6e5 100644 --- a/resources/quality/voron2/voron2_v6_0.50_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_Nylon_normal.inst.cfg index 67461a9d8ca..c6d8677655f 100644 --- a/resources/quality/voron2/voron2_v6_0.50_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_Nylon_sprint.inst.cfg index 5772fc5a710..13dfcbabd31 100644 --- a/resources/quality/voron2/voron2_v6_0.50_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PC_extrafast.inst.cfg index e6977e5443d..1427d8af111 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PC_fast.inst.cfg index cbf5f70b5a6..7dd17ae4627 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PC_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PC_normal.inst.cfg index 0e5a6959e81..5aaee843ca6 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PC_sprint.inst.cfg index 0ccd36651d2..3d0aa8c7164 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PETG_extrafast.inst.cfg index c0aae829e51..848aaa56f89 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PETG_fast.inst.cfg index 322d1bcf21e..8146bf16687 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PETG_normal.inst.cfg index 1b1bb7fe600..946e15b3c76 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PETG_sprint.inst.cfg index ff9950d5427..6f05dbb9aa0 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PLA_extrafast.inst.cfg index 84da32fd55f..9596c888d5d 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PLA_fast.inst.cfg index 1dc52397a44..578b7f4f122 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PLA_normal.inst.cfg index a0c6f2b9a1e..0f9fdcdf292 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PLA_sprint.inst.cfg index 5a959cf6403..09b6be0fb0d 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.60_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_ABS_extrafast.inst.cfg index 9b52a77ee34..d091e8eb3e0 100644 --- a/resources/quality/voron2/voron2_v6_0.60_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_ABS_fast.inst.cfg index a8aaecefdc4..ff5838849ac 100644 --- a/resources/quality/voron2/voron2_v6_0.60_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_ABS_sprint.inst.cfg index 9dcf32c5f27..d7c7a7da08d 100644 --- a/resources/quality/voron2/voron2_v6_0.60_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_Nylon_extrafast.inst.cfg index cd8c3d5e9a6..bc862958916 100644 --- a/resources/quality/voron2/voron2_v6_0.60_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_Nylon_fast.inst.cfg index 0efae053b73..7c7beb32fa1 100644 --- a/resources/quality/voron2/voron2_v6_0.60_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_Nylon_sprint.inst.cfg index b22db497558..627f90a972a 100644 --- a/resources/quality/voron2/voron2_v6_0.60_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PC_extrafast.inst.cfg index d7b5010821d..5343ff9dbaa 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PC_fast.inst.cfg index 1f6a1c8c55a..10644c60d9a 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PC_sprint.inst.cfg index 1d206a3b7d3..8cc8f02d7b8 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PETG_extrafast.inst.cfg index bc76b30b69c..1e212ae713f 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PETG_fast.inst.cfg index c39253d0406..998805303ca 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PETG_sprint.inst.cfg index b77ca6d386a..f07e9a93136 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PLA_extrafast.inst.cfg index 8cf6106b62c..ad505c92431 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PLA_fast.inst.cfg index 309c742ef03..66c5fa28bbe 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PLA_sprint.inst.cfg index 519cb6d205d..63721b8a695 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.80_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_ABS_extrafast.inst.cfg index 66431111821..75c1416018e 100644 --- a/resources/quality/voron2/voron2_v6_0.80_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_ABS_sprint.inst.cfg index ef77e1bd65e..d1c87bb9b4f 100644 --- a/resources/quality/voron2/voron2_v6_0.80_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_ABS_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_ABS_supersprint.inst.cfg index ab46c7db252..fbc56b53e01 100644 --- a/resources/quality/voron2/voron2_v6_0.80_ABS_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_ABS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = supersprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_Nylon_extrafast.inst.cfg index e6dd968958b..742d00a38c9 100644 --- a/resources/quality/voron2/voron2_v6_0.80_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_Nylon_sprint.inst.cfg index 4ff5f027025..842d4baa79a 100644 --- a/resources/quality/voron2/voron2_v6_0.80_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_Nylon_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_Nylon_supersprint.inst.cfg index e55e5e9495f..503edd35ffb 100644 --- a/resources/quality/voron2/voron2_v6_0.80_Nylon_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_Nylon_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = supersprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PC_extrafast.inst.cfg index 845df530221..6e6d9d17ccd 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PC_sprint.inst.cfg index 1ed64c7b524..52984fb0952 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PC_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PC_supersprint.inst.cfg index c8f280ef000..9d2e267a30e 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PC_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PC_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = supersprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PETG_extrafast.inst.cfg index 920a63bd220..896f8af6396 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PETG_sprint.inst.cfg index 3bfc1889cfc..27ffdc10ca2 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PETG_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PETG_supersprint.inst.cfg index 465756d926b..103912cd5cd 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PETG_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PETG_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = supersprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PLA_extrafast.inst.cfg index 10726885f68..0dff83cd4b3 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PLA_sprint.inst.cfg index 2b9ff22a157..936f9c75c72 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PLA_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PLA_supersprint.inst.cfg index 6729522329f..24800eb333d 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PLA_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PLA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = supersprint -setting_version = 23 +setting_version = 22 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_ABS_extrafast.inst.cfg index ac05f4a8593..97c0b3263c1 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_ABS_fast.inst.cfg index ea91d0e7472..74119f18248 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_ABS_normal.inst.cfg index 59c5ec65561..5f7eedb9d73 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_Nylon_extrafast.inst.cfg index a20ea38fc17..d29432fa70b 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_Nylon_fast.inst.cfg index fb9a3747e61..9b8d157d5e8 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_Nylon_normal.inst.cfg index 7f52ed666a6..a96a6d6c3fc 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PC_extrafast.inst.cfg index 461496d9382..4bec6f3a537 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PC_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PC_fast.inst.cfg index d399a9ddc05..a918a9e517d 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PC_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PC_normal.inst.cfg index 2d8cdd34b2b..9f61ac52cc3 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PETG_extrafast.inst.cfg index 5ee59d8f8df..e1428ab8d50 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PETG_fast.inst.cfg index 6469d5fba1c..eb69a3af6c3 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PETG_normal.inst.cfg index a49742d3fce..33f27cd0da2 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PLA_extrafast.inst.cfg index 400d3d25ad9..b2e08fe8994 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PLA_fast.inst.cfg index 81b6163b52e..5b1991be046 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PLA_normal.inst.cfg index 94c1c4419d2..9c9d57f0f77 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_ABS_extrafast.inst.cfg index c7f8225bf83..270869fced4 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_ABS_fast.inst.cfg index 31c38aa2eba..ba14bb25fc9 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_ABS_sprint.inst.cfg index 9b3c4a3187a..d06264cb286 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_Nylon_extrafast.inst.cfg index e21c2d9cec6..589c88ffd81 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_Nylon_fast.inst.cfg index e54b55903e8..f38c2900c1f 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_Nylon_sprint.inst.cfg index a324716f29c..c72942f9b17 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PC_extrafast.inst.cfg index a6af14319a2..ded1dea38ab 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PC_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PC_fast.inst.cfg index 0f0cacd9bfa..7cb82763e24 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PC_sprint.inst.cfg index e9d99c608d4..a90951179cc 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PETG_extrafast.inst.cfg index 0ea66c9ef38..abf3f6ae2ba 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PETG_fast.inst.cfg index b5459490ce1..5d08831931c 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PETG_sprint.inst.cfg index 5cc95ff206c..2e5f186d3d4 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PLA_extrafast.inst.cfg index a656bf8e135..12768f239e4 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PLA_fast.inst.cfg index 8fad6d93eea..4d32ef9a489 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PLA_sprint.inst.cfg index 9b49097136f..ce434aba610 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_ABS_extrafast.inst.cfg index 4aa795e5f37..0bdb6f9bf1e 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_ABS_sprint.inst.cfg index 0e666729f93..59dc9ea4df8 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_ABS_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_ABS_supersprint.inst.cfg index be5e2a7e276..f63011cd56d 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_ABS_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_ABS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = supersprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_Nylon_extrafast.inst.cfg index 333fe0c7064..815c69c8b47 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_Nylon_sprint.inst.cfg index d6f3f600564..6bdc89730ce 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_Nylon_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_Nylon_supersprint.inst.cfg index d90b2b2a043..4d7bff8c566 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_Nylon_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_Nylon_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = supersprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PC_extrafast.inst.cfg index a228f481df4..4c4d326974f 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PC_sprint.inst.cfg index a1be60d0d02..7eb9b2989ef 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PC_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PC_supersprint.inst.cfg index a78bd40fea4..97c00b70ca1 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PC_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PC_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = supersprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PETG_extrafast.inst.cfg index 498a142787e..78b15e3173c 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PETG_sprint.inst.cfg index e67efe5ac49..fa489ea005b 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PETG_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PETG_supersprint.inst.cfg index ca4c177dbe1..c4cb559bce0 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PETG_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PETG_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = supersprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PLA_extrafast.inst.cfg index 062a9e73e83..2279251ee4c 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PLA_sprint.inst.cfg index 3927460cf05..7df50dba1e2 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PLA_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PLA_supersprint.inst.cfg index b217a395adf..6252c23a197 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PLA_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PLA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = supersprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_ABS_sprint.inst.cfg index 380dd8b8c5a..98f16122552 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_ABS_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_ABS_supersprint.inst.cfg index 49e4ebc4556..97a24a3640e 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_ABS_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_ABS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = supersprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_ABS_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_ABS_ultrasprint.inst.cfg index 86db81b3e7f..42cc3edab99 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_ABS_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_ABS_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultrasprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_Nylon_sprint.inst.cfg index 479eebde1c7..a8108009939 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_Nylon_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_Nylon_supersprint.inst.cfg index 84da8963032..9b503365629 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_Nylon_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_Nylon_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = supersprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_Nylon_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_Nylon_ultrasprint.inst.cfg index 28a398c0851..244ffb5bb2c 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_Nylon_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_Nylon_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultrasprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PC_sprint.inst.cfg index a06c882cfae..c0a352add00 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PC_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PC_supersprint.inst.cfg index 5c486595073..bb04609e983 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PC_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PC_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = supersprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PC_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PC_ultrasprint.inst.cfg index 37d33416765..e35937e03da 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PC_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PC_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = ultrasprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PETG_sprint.inst.cfg index 8bf4e535e75..958fe470a3f 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PETG_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PETG_supersprint.inst.cfg index 06fe686ef5f..2ed2fae3e0e 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PETG_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PETG_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = supersprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PETG_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PETG_ultrasprint.inst.cfg index c2272389794..ee395213671 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PETG_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PETG_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultrasprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PLA_sprint.inst.cfg index 9d34cef806f..cf846204dfa 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PLA_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PLA_supersprint.inst.cfg index 62fefa64b57..04d88283007 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PLA_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PLA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = supersprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PLA_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PLA_ultrasprint.inst.cfg index 00d88a23a31..2dfb7ca04f8 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PLA_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PLA_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultrasprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_ABS_sprint.inst.cfg index 4dc2b48b24a..f1314e9c868 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_ABS_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_ABS_supersprint.inst.cfg index b469ab4c268..df746eb5068 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_ABS_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_ABS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = supersprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_ABS_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_ABS_ultrasprint.inst.cfg index 130b7b29481..1cd7aab2a61 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_ABS_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_ABS_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultrasprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_Nylon_sprint.inst.cfg index 8b837d16581..257500c2f6d 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_Nylon_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_Nylon_supersprint.inst.cfg index 58f6a271901..24839241bac 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_Nylon_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_Nylon_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = supersprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_Nylon_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_Nylon_ultrasprint.inst.cfg index 1706d2be72a..71985a26267 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_Nylon_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_Nylon_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultrasprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PC_sprint.inst.cfg index e948d3bbc84..9dd007e6149 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PC_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PC_supersprint.inst.cfg index 6257674f482..de1061db4dc 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PC_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PC_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = supersprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PC_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PC_ultrasprint.inst.cfg index 5f386d21224..5a71bd3907a 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PC_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PC_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = ultrasprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PETG_sprint.inst.cfg index 2c907beb2d3..d622a799d8c 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PETG_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PETG_supersprint.inst.cfg index 71b308a4086..81f97d6cf59 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PETG_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PETG_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = supersprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PETG_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PETG_ultrasprint.inst.cfg index 37afa42967d..a0bc875d44b 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PETG_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PETG_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultrasprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PLA_sprint.inst.cfg index c829d0d0799..78f3195510e 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PLA_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PLA_supersprint.inst.cfg index c7c996050c0..9f13d92c4f6 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PLA_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PLA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = supersprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PLA_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PLA_ultrasprint.inst.cfg index 6960fad5017..2363a6959c9 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PLA_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PLA_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultrasprint -setting_version = 23 +setting_version = 22 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_super.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_super.inst.cfg index c38a8e3c4d4..c6a3459f5b4 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_super.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_ultra.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_ultra.inst.cfg index d159ef3b050..157f0fd96b6 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_adaptive.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_adaptive.inst.cfg index 58e66cebb6c..481982f2a52 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_low.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_low.inst.cfg index 3e140ef0f97..faa8b622d9c 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_low.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_standard.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_standard.inst.cfg index bc05a7a3fbf..fa7787df939 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_standard.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_super.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_super.inst.cfg index 25ab4e1a3d3..0bd3884a2ab 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_super.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_adaptive.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_adaptive.inst.cfg index ab3e231391c..513f9e5463e 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_low.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_low.inst.cfg index 5dcdb4806d9..e9843de1b1c 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_low.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_standard.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_standard.inst.cfg index a3fe0bad617..f67a0585fe8 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_standard.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_super.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_super.inst.cfg index 8ab320354ac..9645040b22c 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_super.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_adaptive.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_adaptive.inst.cfg index 0e7a2a0c55e..9abe239b62d 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_low.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_low.inst.cfg index be687eaae38..caf5339cad6 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_low.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_standard.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_standard.inst.cfg index 335be4aaf83..eb2615ddd29 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_standard.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_super.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_super.inst.cfg index 03f442d9502..636f2d20828 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_super.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.6_ABS_standard.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.6_ABS_standard.inst.cfg index bae54fd0a48..5c3e44cc57e 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.6_ABS_standard.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.8_ABS_draft.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.8_ABS_draft.inst.cfg index 45d2fbb4a4f..7b69963f1dc 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.8_ABS_draft.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_1.0_ABS_draft.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_1.0_ABS_draft.inst.cfg index 99ede3bb4ad..1a168c407e4 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_1.0_ABS_draft.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.2_PC_super.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.2_PC_super.inst.cfg index 2bb7d54289f..3d0ea75ea14 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.2_PC_super.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.2_PC_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.2_PC_ultra.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.2_PC_ultra.inst.cfg index 0f858c688f5..eba20c612c6 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.2_PC_ultra.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.2_PC_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_adaptive.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_adaptive.inst.cfg index ad91d8fa082..7c16b9590ea 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_low.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_low.inst.cfg index 7129c6ed938..93977a721c7 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_low.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_standard.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_standard.inst.cfg index f31af997b76..7b32091f5a1 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_standard.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_super.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_super.inst.cfg index f96705db92f..a6c8e4be9f7 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_super.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_adaptive.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_adaptive.inst.cfg index fd16a17ea0f..b2fdcafebb5 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_low.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_low.inst.cfg index a1520959d72..32f5d5ff4eb 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_low.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_standard.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_standard.inst.cfg index 3b1b532f461..35f7bb0f992 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_standard.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_super.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_super.inst.cfg index 897eeaa4405..d20ca864cbb 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_super.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_adaptive.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_adaptive.inst.cfg index bb24ea54269..29df29a057e 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_low.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_low.inst.cfg index e5c3a2f82fd..85adae20425 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_low.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_standard.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_standard.inst.cfg index 1c0cf0ea199..ff4079d0175 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_standard.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_super.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_super.inst.cfg index d5928742192..c4467c7f8d2 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_super.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.6_PC_standard.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.6_PC_standard.inst.cfg index dc3d6c66f6a..1bba36d296e 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.6_PC_standard.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.6_PC_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.8_PC_draft.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.8_PC_draft.inst.cfg index 8703ce746ee..70f6abcb226 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.8_PC_draft.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.8_PC_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_1.0_PC_draft.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_1.0_PC_draft.inst.cfg index 3ed5fbad9ea..41d14cdac85 100644 --- a/resources/quality/vzbot/base/PC/vzbot_1.0_PC_draft.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_1.0_PC_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_super.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_super.inst.cfg index 885c0e1f1f6..282bffcfea4 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_super.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_ultra.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_ultra.inst.cfg index 0b775f9a7ac..09494811546 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_adaptive.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_adaptive.inst.cfg index 8a95360b480..83c8e71d6ca 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_low.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_low.inst.cfg index 00fe2eea355..702204591cb 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_low.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_standard.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_standard.inst.cfg index 8afa3b3c11c..b2dca805f04 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_standard.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_super.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_super.inst.cfg index 63af2d3ecce..2f169f25182 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_super.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_adaptive.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_adaptive.inst.cfg index 5d5803b7efe..726f99974b5 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_low.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_low.inst.cfg index d807851a31f..8408f97681d 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_low.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_standard.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_standard.inst.cfg index ffc89f4389b..c57fa9d3826 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_standard.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_super.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_super.inst.cfg index 959cd5f697e..3393cd1afaf 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_super.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_adaptive.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_adaptive.inst.cfg index 2ec0991fdfa..8f086577742 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_low.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_low.inst.cfg index 223dac0ef8c..95b8935e7b9 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_low.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_standard.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_standard.inst.cfg index aa02d0471c7..0ec9bb591e6 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_standard.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_super.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_super.inst.cfg index 72b9fd211cf..91f3d3a84a9 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_super.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.6_PETG_standard.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.6_PETG_standard.inst.cfg index 68b0ac18da6..29aaf7e614a 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.6_PETG_standard.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.8_PETG_draft.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.8_PETG_draft.inst.cfg index d846803c713..d280ba1cf69 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.8_PETG_draft.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_1.0_PETG_draft.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_1.0_PETG_draft.inst.cfg index b5941d2cdf2..207b3163e8d 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_1.0_PETG_draft.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_super.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_super.inst.cfg index 95ad976385b..1ba4de6a040 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_super.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_ultra.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_ultra.inst.cfg index f7e01b9d1fc..a4dd03021ae 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_adaptive.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_adaptive.inst.cfg index 2435b9c9f43..cc42c9ef489 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_low.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_low.inst.cfg index 6e695dd07dd..76c087ccb91 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_low.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_standard.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_standard.inst.cfg index c9f1bedd3cb..db142e567eb 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_super.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_super.inst.cfg index b8e8471993a..0c45d949b8c 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_super.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_adaptive.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_adaptive.inst.cfg index 698ae5c327e..98fa1142682 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_low.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_low.inst.cfg index 5d7c1e64e0b..15ef5287afb 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_low.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_standard.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_standard.inst.cfg index 72f1b0afb36..5ce8e6b81c1 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_super.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_super.inst.cfg index 2b1a6836db6..7eb9b186776 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_super.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_adaptive.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_adaptive.inst.cfg index 286bd3af697..24fc4af465f 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_low.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_low.inst.cfg index 3f89d1d8cd5..b5681cdd885 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_low.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_standard.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_standard.inst.cfg index 663740a7820..344ea576518 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_super.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_super.inst.cfg index 949ce8e1bf5..6a555146599 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_super.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_draft.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_draft.inst.cfg index 3fc5b428a30..18a3243485e 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_draft.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_low.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_low.inst.cfg index 8b7ddcb334b..d3fcb1f82da 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_low.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_standard.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_standard.inst.cfg index c663ba030f5..94fd3fd2bc2 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.8_PLA_draft.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.8_PLA_draft.inst.cfg index f20d1f0fafc..f98cced5085 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.8_PLA_draft.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_1.0_PLA_draft.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_1.0_PLA_draft.inst.cfg index 0257e3cc519..7d00f47c366 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_1.0_PLA_draft.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_super.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_super.inst.cfg index 26b174bfd88..2f350f3b618 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_super.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_ultra.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_ultra.inst.cfg index 773b7624cb5..b5c4c463cf9 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_ultra.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_adaptive.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_adaptive.inst.cfg index 6e1e26c272a..2f645e79dc7 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_low.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_low.inst.cfg index e0c652f62db..4944bce9677 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_low.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_standard.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_standard.inst.cfg index adff9d37bcb..dfd3eb975d7 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_super.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_super.inst.cfg index afdd46b8c21..28dccd8ab20 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_super.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_adaptive.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_adaptive.inst.cfg index 2d034d97968..98a378727a3 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_low.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_low.inst.cfg index f4c791a5e44..972f9a29731 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_low.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_standard.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_standard.inst.cfg index f4653302e15..d788a8af610 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_super.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_super.inst.cfg index 300a60fd842..2f0f04f9321 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_super.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_adaptive.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_adaptive.inst.cfg index a3ddc5b6a19..1d77ef19728 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_low.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_low.inst.cfg index ffefba73230..b3c474ce4bd 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_low.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_standard.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_standard.inst.cfg index f26406f11c7..596e6bb6cfc 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_super.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_super.inst.cfg index 530ca4e81f4..2cbc4e515d5 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_super.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.6_PVA_standard.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.6_PVA_standard.inst.cfg index 2fa4ad5ed46..a6ec48458f1 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.6_PVA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.6_PVA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.8_PVA_draft.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.8_PVA_draft.inst.cfg index c8f07d26d60..80ed31a013a 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.8_PVA_draft.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.8_PVA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_1.0_PVA_draft.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_1.0_PVA_draft.inst.cfg index db31efadb27..bf9adb95a34 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_1.0_PVA_draft.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_1.0_PVA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_adaptive.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_adaptive.inst.cfg index f2d7cf6f509..2e65982ad3c 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_standard.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_standard.inst.cfg index 8cc077a9d91..5c3ccc2b7e2 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_standard.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_super.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_super.inst.cfg index 44d307e8b85..d6b86e06d9b 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_super.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_adaptive.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_adaptive.inst.cfg index 7957687ef1f..3fdb89ec10c 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_standard.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_standard.inst.cfg index 414112a49ba..5b15f3c811b 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_standard.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_super.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_super.inst.cfg index 8240cf57a69..d702b8715e0 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_super.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_adaptive.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_adaptive.inst.cfg index c686638790e..14f8adc388a 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_standard.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_standard.inst.cfg index c77a6912f89..9e203f6ee7f 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_standard.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_super.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_super.inst.cfg index 9cd86ac1645..2cacc0f92ac 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_super.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.6_TPU_standard.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.6_TPU_standard.inst.cfg index 95962ed7d4d..7269be8ab34 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.6_TPU_standard.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.8_TPU_draft.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.8_TPU_draft.inst.cfg index 8c86c131c59..ab2fab7a051 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.8_TPU_draft.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_1.0_TPU_draft.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_1.0_TPU_draft.inst.cfg index f82a374f6db..43b6b458c0c 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_1.0_TPU_draft.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_super.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_super.inst.cfg index 097d431c168..5594dda9ef7 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_super.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_ultra.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_ultra.inst.cfg index 5d9ac91bccd..17739b73b41 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_ultra.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_adaptive.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_adaptive.inst.cfg index 2b9e75ae8b8..f9903d7b062 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_low.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_low.inst.cfg index 7d4b01c7244..a40ab396ae3 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_low.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_standard.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_standard.inst.cfg index 2665e85c0b0..029ef05aa96 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_standard.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_super.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_super.inst.cfg index e7d80cd0d91..3803d78c52f 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_super.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_adaptive.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_adaptive.inst.cfg index 06fd7b2fb1b..6cc56eefdb1 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_low.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_low.inst.cfg index 554c3115660..b0f35540362 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_low.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_standard.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_standard.inst.cfg index f9597996784..f0f37b095d2 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_standard.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_super.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_super.inst.cfg index 8842f5b91a6..b5ea731a26a 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_super.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_adaptive.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_adaptive.inst.cfg index 4438ee4a355..a1adffd0273 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_low.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_low.inst.cfg index 2f17f7a12d6..fb00ba27630 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_low.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_standard.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_standard.inst.cfg index 9c23e0e7b01..e3bfc434c9c 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_standard.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_super.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_super.inst.cfg index 9519418da0a..dff4884e7cf 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_super.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 22 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.6_nylon_standard.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.6_nylon_standard.inst.cfg index 6a5bd488c2b..fa7f4c43857 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.6_nylon_standard.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.6_nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.8_nylon_draft.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.8_nylon_draft.inst.cfg index 8d76e83f6a6..78ba0a7812f 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.8_nylon_draft.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.8_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_1.0_nylon_draft.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_1.0_nylon_draft.inst.cfg index f20f206402e..e6e2e3efa84 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_1.0_nylon_draft.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_1.0_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/vzbot_global_adaptive.inst.cfg b/resources/quality/vzbot/base/vzbot_global_adaptive.inst.cfg index 97148aba4b0..8ba6ac54491 100644 --- a/resources/quality/vzbot/base/vzbot_global_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/vzbot/base/vzbot_global_draft.inst.cfg b/resources/quality/vzbot/base/vzbot_global_draft.inst.cfg index d974febf496..26b763930a0 100644 --- a/resources/quality/vzbot/base/vzbot_global_draft.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/vzbot/base/vzbot_global_low.inst.cfg b/resources/quality/vzbot/base/vzbot_global_low.inst.cfg index 81835248fff..c1ae5ab0d63 100644 --- a/resources/quality/vzbot/base/vzbot_global_low.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/vzbot/base/vzbot_global_standard.inst.cfg b/resources/quality/vzbot/base/vzbot_global_standard.inst.cfg index 7d807d7d087..9d13b93d59a 100644 --- a/resources/quality/vzbot/base/vzbot_global_standard.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/vzbot/base/vzbot_global_super.inst.cfg b/resources/quality/vzbot/base/vzbot_global_super.inst.cfg index 4c8bc6cfa31..cfeeddae385 100644 --- a/resources/quality/vzbot/base/vzbot_global_super.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/vzbot/base/vzbot_global_ultra.inst.cfg b/resources/quality/vzbot/base/vzbot_global_ultra.inst.cfg index 90f100d4295..bd8cee28bc7 100644 --- a/resources/quality/vzbot/base/vzbot_global_ultra.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Draft.inst.cfg b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Draft.inst.cfg index 42f779cf2c7..60db4d8da27 100644 --- a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Draft.inst.cfg +++ b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Extrudr_GreenTECPro_Black_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Extra_Fine.inst.cfg index 0a161802d17..1c2d66e5ace 100644 --- a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Extrudr_GreenTECPro_Black_175 quality_type = extra fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Fine.inst.cfg b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Fine.inst.cfg index c370f585a9e..29a2e29e493 100644 --- a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Fine.inst.cfg +++ b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Extrudr_GreenTECPro_Black_175 quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Normal.inst.cfg b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Normal.inst.cfg index dec810299c8..9fdab359909 100644 --- a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Normal.inst.cfg +++ b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Extrudr_GreenTECPro_Black_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Draft.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Draft.inst.cfg index f5d825fb07b..3c3ad46dd2e 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Draft.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Extra_Fine.inst.cfg index e7d32af0447..3cf19e9bb53 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = extra fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Fine.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Fine.inst.cfg index 92d33217766..9fcb579495f 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Fine.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Normal.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Normal.inst.cfg index cd66505617d..6abccb44563 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Normal.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Coarse.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Coarse.inst.cfg index 80a3505ce02..8173539ea17 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Draft.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Draft.inst.cfg index 47f485baab0..cebd7bdacb1 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Draft.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Fine.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Fine.inst.cfg index b9b4633a4e7..83e3b111d5b 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Fine.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Normal.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Normal.inst.cfg index 00f715e8496..907dc2b9cf7 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Normal.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Draft.inst.cfg index 5433fee3f01..bdf527a4774 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Extra_Fine.inst.cfg index 935bb04771f..5bddc81ee13 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = extra fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Fine.inst.cfg index 499ca8a49d3..c906dc8709f 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Normal.inst.cfg index cc4726085af..631cf77259e 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Draft.inst.cfg index 4b4a59f4c39..b8142f94b71 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Extra_Fine.inst.cfg index 3fca0ffe2c2..a9909d525ea 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = extra fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Fine.inst.cfg index 8af0c87fa72..50e65d73a0a 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Normal.inst.cfg index d13ecc61394..37e53fb8ee3 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Draft.inst.cfg index a52b581ae6b..a61293d3e7b 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Extra_Fine.inst.cfg index 2f3762e422b..41df2934104 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = extra fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Fine.inst.cfg index 15198eb8bc9..c88ec8a8ae4 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Normal.inst.cfg index f8fb28dd1f4..6e4fad47327 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Draft.inst.cfg index eee4be2ad98..611863084e3 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Extra_Fine.inst.cfg index 8fb7cd4f130..db76f97ead4 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = extra fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Fine.inst.cfg index 3cbc4d65506..46a410f048f 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Normal.inst.cfg index d47b0d621b0..24f1bd07b59 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Draft.inst.cfg index d4f84c3497d..924dd7033b5 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Extra_Fine.inst.cfg index 9da7c5afa22..d4178544434 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = extra fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Fine.inst.cfg index 498eda6c6f0..a8b36663f44 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Normal.inst.cfg index 88d4dae71d7..59b47919568 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Draft.inst.cfg index d98c37c97de..ed173db3908 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Extra_Fine.inst.cfg index 3f4371cdc0d..19a2740616f 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = extra fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Fine.inst.cfg index 56dd8c7c10a..f6352fc9d3b 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Normal.inst.cfg index a22c9344b20..9e757a0997f 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Draft.inst.cfg index 3504f38cc64..1b7365c7fa0 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Extra_Fine.inst.cfg index a7f8b8d5a2a..b2190f031ca 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = extra fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Fine.inst.cfg index 96c636c4a8e..a42f2d10a5d 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Normal.inst.cfg index b3868b1060e..e774b3c18d0 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Draft.inst.cfg index e5510ab98de..a8accaee834 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Extra_Fine.inst.cfg index c8c695a1186..91bd443d366 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = extra fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Fine.inst.cfg index 513ed1bbaa4..5010b401471 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Normal.inst.cfg index a25f5ae6ab6..47d62dccfec 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Draft.inst.cfg index b230eeb8ec7..2a08a6471ba 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Extra_Fine.inst.cfg index 8ca8ed63d7d..3c6619eea09 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = extra fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Fine.inst.cfg index 7521a10a831..f81efbd6c5a 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Normal.inst.cfg index 75103814be7..ee81d48190a 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Coarse.inst.cfg index 0be067404a1..830f1d104f8 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Draft.inst.cfg index e9a5d045c56..b4534aa43d1 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Fine.inst.cfg index 785d08ee2ca..409d2470477 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Normal.inst.cfg index e8d3699d326..c5aacd1f12c 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Coarse.inst.cfg index 7b42c6fbc74..8c220bab911 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Draft.inst.cfg index 90596e627b2..583e2f289d3 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Fine.inst.cfg index 34af6eca5b6..8dde36c3401 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Normal.inst.cfg index 316dc4eae92..50d0826d110 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Coarse.inst.cfg index ac02d341b30..c02af712212 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Draft.inst.cfg index 11fabf6a1e8..3defdf6af24 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Fine.inst.cfg index a0aba43e099..f92080c1d85 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Normal.inst.cfg index 72778821cf2..5726f496e8e 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Coarse.inst.cfg index bae5ea68579..af4e729c378 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Draft.inst.cfg index be23f5feb5b..a35080a7622 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Fine.inst.cfg index b84c435327b..46108d5ffd9 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Normal.inst.cfg index a9b6f0b08cf..e75c205ef6d 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Coarse.inst.cfg index e12e5f79aff..1522f67f298 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Draft.inst.cfg index 3d2aa461207..6c3a0a05184 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Fine.inst.cfg index 6cb80412b61..351c79534ec 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Normal.inst.cfg index 37b75b7be13..6e888de8f83 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Coarse.inst.cfg index 9fc8c83ffaf..dad45e01b9c 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Draft.inst.cfg index 75469d5848d..4507853c6d0 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Fine.inst.cfg index bbf29ad1d28..5fd038f42bb 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Normal.inst.cfg index afbcfa28fe9..602877cc276 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Coarse.inst.cfg index 3a5f26f7396..1413c53fcc6 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Draft.inst.cfg index 574f50beb99..53ea9b321eb 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Fine.inst.cfg index abbaa923f43..a71118f84c7 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Normal.inst.cfg index 1e99dce5910..ea7f24ff14c 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Coarse.inst.cfg index bb53a5837c7..ca45d7b2309 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Draft.inst.cfg index 49646d89f73..b91d19e6488 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Fine.inst.cfg index 5cc87733b6a..2d74cd443b3 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Normal.inst.cfg index 59a94add3f6..acbb00c60be 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Coarse.inst.cfg index 6d7c083a553..3ff10fc432e 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Draft.inst.cfg index 3fc2eaab341..c682e158e6a 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Fine.inst.cfg index cbdf1352c48..0d26fae8f8e 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Normal.inst.cfg index dfb740c32e2..fff16d13ec2 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Coarse.inst.cfg index f127f9d48ae..033e1863370 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Draft.inst.cfg index c095cdb9c8c..dc11c217001 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Extra_Coarse.inst.cfg index 1049791434f..a63d3438b3d 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = extra coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Normal.inst.cfg index 3789c153c32..8073d88a4b0 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Coarse.inst.cfg index 9bc86cf2cdb..93da2791495 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Draft.inst.cfg index 372d21826e6..dd90f0f653f 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Extra_Coarse.inst.cfg index fd5b25d0e6b..9e2422757ea 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = extra coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Normal.inst.cfg index b3ebc040d69..ee0a5647326 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Coarse.inst.cfg index 8a856b77e90..617677c786b 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Draft.inst.cfg index cb06e795568..519328a14a4 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Extra_Coarse.inst.cfg index b29f952e49a..07d8ac8f800 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = extra coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Normal.inst.cfg index 40b97d7bd49..e27acc9af12 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Coarse.inst.cfg index 7b2c4a584dc..b87b07168f8 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Draft.inst.cfg index 5f9976a518e..ce7792946e6 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Extra_Coarse.inst.cfg index 51b90f24962..152159f5a70 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = extra coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Normal.inst.cfg index 71c535b8a71..ddf38e060f9 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Coarse.inst.cfg index ffbd55c80bc..bd07962ec94 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Draft.inst.cfg index 22cba0bd811..804376c3051 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Extra_Coarse.inst.cfg index 74d3c6af5b6..c921034de30 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = extra coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Normal.inst.cfg index cf6cc5fd79a..b0f546a488e 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Coarse.inst.cfg index 6c863df0d1e..4b37e8b61fe 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Draft.inst.cfg index 5b16bb04faf..c43d8825151 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Extra_Coarse.inst.cfg index 6b82c296365..4f33319cafe 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = extra coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Normal.inst.cfg index 0905caa1aa8..f42ace9ca7a 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Coarse.inst.cfg index 0ef7cb58994..2b3590dca88 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Draft.inst.cfg index 69b8330c07b..e233c8910a7 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Extra_Coarse.inst.cfg index 7dc376d99c9..b11c3cca6b2 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = extra coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Normal.inst.cfg index 4982856b124..f650fd251c0 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Coarse.inst.cfg index f79b1f49fa7..cbe818a971f 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Draft.inst.cfg index af316f211c5..ba96247176f 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Extra_Coarse.inst.cfg index 4c217b80030..c36eb39a129 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = extra coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Normal.inst.cfg index 8db55632561..0794bce0599 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Coarse.inst.cfg index 94c943bc125..fb07cb601ad 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Draft.inst.cfg index 34e40cde51e..aed0f028bab 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Extra_Coarse.inst.cfg index ab8b2fba65b..fe6e427fd85 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = extra coarse -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Normal.inst.cfg index 8c30df2bfde..2b03ccf60f9 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Coarse.inst.cfg index ef72c98cc86..2e0b53abc2e 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Draft.inst.cfg index 4d0ea19afd2..a7ea9036056 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Extra_Coarse.inst.cfg index d9d0eeb7bd2..0eebd3efd65 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Extra_Fine.inst.cfg index 27af18c4aa5..45d8a6375e6 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra fine -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Fine.inst.cfg index 2d751b4be99..ddfeba0be4d 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Normal.inst.cfg index 9d166c4ca1d..a7eeb06d72c 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_coarse.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_coarse.inst.cfg index 8b055da1b1d..6372e7982ee 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_coarse.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_draft.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_draft.inst.cfg index 87ea2bd2df6..90995009fca 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_draft.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_fine.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_fine.inst.cfg index f4b70421fd2..92a711f355c 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_fine.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_normal.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_normal.inst.cfg index 962ae53a1a5..5d013c8ae7f 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_normal.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_coarse.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_coarse.inst.cfg index 69a13819c31..ebdc1f974e2 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_coarse.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_draft.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_draft.inst.cfg index b49e2f34d98..df43e307a21 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_draft.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_fine.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_fine.inst.cfg index a35585cfb1c..39fe306e40d 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_fine.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_normal.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_normal.inst.cfg index eeff179d11c..5cbada15092 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_normal.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_coarse.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_coarse.inst.cfg index 7b12352a7c6..f2e8aeda464 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_coarse.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_draft.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_draft.inst.cfg index 89cbbb4fbef..c53ee55e411 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_draft.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_fine.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_fine.inst.cfg index 14025817ded..ebb8cf5bdb9 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_fine.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_normal.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_normal.inst.cfg index 5ff20c78efa..cd66844ed0c 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_normal.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_coarse.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_coarse.inst.cfg index 7faa4375ae1..18a61320f8e 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_coarse.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_draft.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_draft.inst.cfg index 8f183630933..595d8147335 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_draft.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_fine.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_fine.inst.cfg index ee66705aa20..99f3b15bd9e 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_fine.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_normal.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_normal.inst.cfg index 6f83a222002..5e3200fcec0 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_normal.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_coarse.inst.cfg index be14abacb15..8a939f5e3e8 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_draft.inst.cfg index f6bb53dabb4..df0940fd635 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_fine.inst.cfg index ae119642c36..b2a0e360376 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_normal.inst.cfg index cbc5acead1d..9dbb188b2dd 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_coarse.inst.cfg index a5c2bf5f8b3..b74aebf3433 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_draft.inst.cfg index 0e584bb8bc5..b31a658e4e8 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_fine.inst.cfg index c2006b02523..baf32c97c8d 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_normal.inst.cfg index 867ae368699..b9f88da61c1 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_coarse.inst.cfg index 17dfa7acab6..295cf6f81b5 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_draft.inst.cfg index 26bce43c538..6c0e8446335 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_fine.inst.cfg index ce0b7f24489..36f59295745 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_normal.inst.cfg index 8a4b3304960..3bf30cac0fc 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_coarse.inst.cfg index 9eee8d2cd5e..529085f7991 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_draft.inst.cfg index d82776c5e97..a4d60e73cab 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_fine.inst.cfg index 58de7bf0527..8f412e9d818 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_normal.inst.cfg index c51bafa8042..dce8e99ed38 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_coarse.inst.cfg index 8835eacb700..2d983942eb1 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_draft.inst.cfg index c3d5d45deb2..492088f2a2c 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_fine.inst.cfg index 679f33704b2..e4da7beb108 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Stainless Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_normal.inst.cfg index 270eb086c3a..4f6491dfbf4 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_coarse.inst.cfg index d57f1a22ab6..bd4912d5a6f 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_draft.inst.cfg index 45c021ec8eb..aa198f9e35b 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_fine.inst.cfg index 9b60b89354a..229e9f0e775 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_normal.inst.cfg index 0384c514711..9692a06a340 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_coarse.inst.cfg index 74641c118f6..395fc53a70c 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_draft.inst.cfg index 29a162272ec..395670e79c9 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_fine.inst.cfg index 942fcf77b28..38b0e2e230e 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_normal.inst.cfg index 51b5d8fd6e7..7ba3de4e79c 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_coarse.inst.cfg index 0a8cef554f9..9e165cd6500 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_draft.inst.cfg index 706578940ac..2daccac140c 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_fine.inst.cfg index 74c16012537..aab14d84440 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_normal.inst.cfg index 76400c36d65..ac80cd0fcc5 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_coarse.inst.cfg index 78c2a6b7846..d98194e70e5 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_draft.inst.cfg index 77b40d3b1d9..e4e2f449eaa 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_fine.inst.cfg index a3e88b92286..851b2f3cef1 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_normal.inst.cfg index 7f6e4ef3aa3..514d463fdc7 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_coarse.inst.cfg index 0196554b9e5..4333f73cea8 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_draft.inst.cfg index 0aa156be818..2444d99971a 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_fine.inst.cfg index deb85910bfb..36c6b782b98 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_normal.inst.cfg index 83faffbff35..51db9810930 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_coarse.inst.cfg index 6113f03bbf7..1f6b852c07f 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_draft.inst.cfg index 0f78dffbd31..23ad943a2f2 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_fine.inst.cfg index e8a71e84e4e..efda1f0adbe 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_normal.inst.cfg index 960c9b0482a..14f03df4fd8 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_coarse.inst.cfg index 1a156620c59..666051dd420 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_draft.inst.cfg index 5d94712c7ba..387ca026e3a 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_fine.inst.cfg index 2c0fad134f3..e6e6bf29569 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_normal.inst.cfg index fbb4f8b7338..fd588fa2744 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_coarse.inst.cfg index 167899a2166..894afece462 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_draft.inst.cfg index 7b0fc584174..bba2d8f06bd 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_fine.inst.cfg index 3f1871d1245..7485968470a 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_normal.inst.cfg index d2369fb6df3..97a6df75a3f 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_coarse.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_coarse.inst.cfg index e99a362f114..12a816c06ef 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_draft.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_draft.inst.cfg index 48190a39c8c..257b2c77464 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_fine.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_fine.inst.cfg index 158a0afe4df..3261a8fb275 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_normal.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_normal.inst.cfg index 809dad450a7..32df932fb68 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_coarse.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_coarse.inst.cfg index 40be1a66f30..de70014369e 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_draft.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_draft.inst.cfg index 078db5939d4..ad1a8f44b9a 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_fine.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_fine.inst.cfg index fc620a8ad8b..b78710f8a02 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Stainless Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_normal.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_normal.inst.cfg index 0420440d2d5..9f803f3610e 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_coarse.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_coarse.inst.cfg index d0510dbbb29..f83b2ebe592 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_draft.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_draft.inst.cfg index 3c1dacf0bf9..2b7312c8536 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_fine.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_fine.inst.cfg index 6f38cef91da..d1902eedc04 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_normal.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_normal.inst.cfg index 754e0c043ff..0c6cfd7268b 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_coarse.inst.cfg b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_coarse.inst.cfg index baf535b6aab..08db3f2e4e3 100644 --- a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_coarse.inst.cfg +++ b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_flexible quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_draft.inst.cfg b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_draft.inst.cfg index d1ca554b51f..c815247dd41 100644 --- a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_draft.inst.cfg +++ b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_flexible quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_fine.inst.cfg b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_fine.inst.cfg index 14cc24c2ac4..f019192a71e 100644 --- a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_fine.inst.cfg +++ b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_flexible quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_normal.inst.cfg b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_normal.inst.cfg index 5862641cf96..6c509740303 100644 --- a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_normal.inst.cfg +++ b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_flexible quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_coarse.inst.cfg index 27089f11349..e448f131f6e 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_draft.inst.cfg index 6a7add51735..c169a450adb 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_fine.inst.cfg index 3dfd802dbae..dc575ae9b48 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_normal.inst.cfg index af7890163be..6a3233b1ea3 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_coarse.inst.cfg index fa3e586ac2f..95232ae85fd 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_draft.inst.cfg index ae0696ee271..23218c0ac00 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_fine.inst.cfg index dc6520596bc..ad8762e6ad7 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_normal.inst.cfg index eb2a9cbc5b3..7ebf1423951 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_coarse.inst.cfg index 945026a4cfe..0d8d5217d08 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_draft.inst.cfg index 667a5c90d37..185021708b7 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_fine.inst.cfg index b074312e873..8ff7608693e 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_normal.inst.cfg index d6d37c2fc25..6af4cd74838 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_coarse.inst.cfg index 3bb8528ffbc..9dcc94a2841 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_draft.inst.cfg index e771ca6ff20..88d373084c6 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_fine.inst.cfg index 3407585e4c2..a74fa56f949 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_normal.inst.cfg index 0c77e17bb05..cf0b95050f2 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_coarse.inst.cfg index 5192822dcec..705878fadc8 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_draft.inst.cfg index c98a39242a8..b3020e861e2 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_fine.inst.cfg index ae56ea638c2..592fab50c94 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_normal.inst.cfg index aef3cf163b3..b22706ddd12 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_coarse.inst.cfg index 0cd062ec0a8..e73335fc95c 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_draft.inst.cfg index 343efe3d126..55d1167d23f 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_fine.inst.cfg index 74131501eaf..b92706ae7b9 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_normal.inst.cfg index 8e193ffcd20..cfb3f2ff97a 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_coarse.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_coarse.inst.cfg index 6eb370cdcf2..5a53c2a437c 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_coarse.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_draft.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_draft.inst.cfg index 5b4cede195b..70ebfad1a21 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_draft.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_fine.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_fine.inst.cfg index a79fc05fcde..3f8ad268048 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_fine.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_normal.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_normal.inst.cfg index ea6ce880d64..151556a2f4f 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_normal.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_coarse.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_coarse.inst.cfg index 1ae2f24a971..9237e4f137a 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_coarse.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_draft.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_draft.inst.cfg index 9743f42e5d5..0d28ade067e 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_draft.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_fine.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_fine.inst.cfg index 31f6987cb4d..2b9f6f1218c 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_fine.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_normal.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_normal.inst.cfg index d4ce99974d5..62666f84009 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_normal.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_coarse.inst.cfg b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_coarse.inst.cfg index 85d0e690243..7daf31408de 100644 --- a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pahtcf15 quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_draft.inst.cfg b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_draft.inst.cfg index 57fff56e16f..a202067fd07 100644 --- a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_draft.inst.cfg +++ b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pahtcf15 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_fine.inst.cfg b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_fine.inst.cfg index 79f268fb7dc..c5574e0dfda 100644 --- a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_fine.inst.cfg +++ b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pahtcf15 quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_normal.inst.cfg b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_normal.inst.cfg index 5c091c87034..7c75c4db5ab 100644 --- a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_normal.inst.cfg +++ b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pahtcf15 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_coarse.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_coarse.inst.cfg index 02eefc3a33a..f012edda146 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_draft.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_draft.inst.cfg index 834c345fb37..b9f314ac658 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_draft.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_fine.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_fine.inst.cfg index e2678f5e212..e8606611d70 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_fine.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_normal.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_normal.inst.cfg index 0843e0b1053..b91caf62a49 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_normal.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_coarse.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_coarse.inst.cfg index 0d7abc9a99c..a1c197e007d 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_draft.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_draft.inst.cfg index 300bc57cb52..a8345d3ea27 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_draft.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_fine.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_fine.inst.cfg index 5ecafd0fac2..4dfbf5b0a2c 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_fine.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_normal.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_normal.inst.cfg index e8a36359333..da6b3e2bb60 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_normal.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_coarse.inst.cfg b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_coarse.inst.cfg index 4dd6934bcaf..e39dea36956 100644 --- a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petcf15 quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_draft.inst.cfg b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_draft.inst.cfg index 5bd32e2d498..28e232b3cc3 100644 --- a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_draft.inst.cfg +++ b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petcf15 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_fine.inst.cfg b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_fine.inst.cfg index 540a7bc6058..ca6ac38c983 100644 --- a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_fine.inst.cfg +++ b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petcf15 quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_normal.inst.cfg b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_normal.inst.cfg index 29721774e9d..d86fec1184c 100644 --- a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_normal.inst.cfg +++ b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petcf15 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_coarse.inst.cfg index 8c8107eaa06..f41645ef5aa 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_draft.inst.cfg index 2e1c873b2a8..0b62de35122 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_fine.inst.cfg index e173522f328..252e0ee2322 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_normal.inst.cfg index 5a588a8a451..f2c540043f6 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_coarse.inst.cfg index 5423fe1023b..8ebdd98ce20 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_draft.inst.cfg index 0512ed8cb62..135bb9412dc 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_fine.inst.cfg index 8c494c4f7ad..8367001312a 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_normal.inst.cfg index f9611a31a44..e79478cef51 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_coarse.inst.cfg index 5c28312b17f..f8292483ad4 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_draft.inst.cfg index f640948b9d9..dbc56a9ba18 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_fine.inst.cfg index 4d981c4d723..f1db488d9aa 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_normal.inst.cfg index f4843e7b458..d1795c03721 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_coarse.inst.cfg index e954e29f544..33e2e70d187 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_draft.inst.cfg index 27897985dd8..06ad2ea0fc8 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_fine.inst.cfg index 9d0762f8767..d924074ab38 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_normal.inst.cfg index 2679df5548e..8f7d4487d41 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_coarse.inst.cfg index 35d69b02d51..c1f6a545603 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_draft.inst.cfg index 79add5b99ca..b149a594dd5 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_fine.inst.cfg index ee06416687f..526acc21a93 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Stainless Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_normal.inst.cfg index bde5f0bedd5..11c99afd770 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_coarse.inst.cfg index d63aa387421..e209a4a2fd8 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_draft.inst.cfg index 3d3aed671c8..7233571ca9c 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_fine.inst.cfg index 36a96d351a0..2d57b58b467 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_normal.inst.cfg index 7f7cf375562..c447696fd26 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_coarse.inst.cfg index 4bb90e8a88f..ceba9259a2d 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_draft.inst.cfg index 4018aec0543..f43b8eaca8d 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_fine.inst.cfg index 31399b5bf9c..b08bdcdfe36 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_normal.inst.cfg index ff52f3200b2..c8751ef51e7 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_coarse.inst.cfg index 0421fe33088..c2768833eab 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_draft.inst.cfg index 3ce44a0a648..16a49bea43c 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_fine.inst.cfg index 1a36437faa8..6d5d7763666 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_normal.inst.cfg index 144940c8a7f..f0631cd3355 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_coarse.inst.cfg index 6292722fa6a..581d5cc11f0 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_draft.inst.cfg index 4718b09f2cd..a3c4616ce25 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_fine.inst.cfg index 4aea2ba9782..582f9f24316 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_normal.inst.cfg index cc4d4001e0b..280beaffc58 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_coarse.inst.cfg index c173ee2e9e1..bc55d669bb4 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_draft.inst.cfg index b7acd4e0877..e785d674d8e 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_fine.inst.cfg index 7c949cfd451..72faa03585a 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_normal.inst.cfg index 18c4be3745d..503d268491e 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_coarse.inst.cfg index 996379feb9e..d82b7a650be 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_draft.inst.cfg index ba9991dcfb6..f6bb8f9d6ce 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_fine.inst.cfg index e90ffd5dfc7..0dd024cb10e 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_normal.inst.cfg index be9b7a66360..f74653aaa53 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_coarse.inst.cfg index 3fa9a52cf2b..92b3a3b202a 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_draft.inst.cfg index 3fb1b5e82be..b9cd16449dc 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_fine.inst.cfg index b4124b7ee3d..fefdf4b01c5 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Stainless Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_normal.inst.cfg index 6564a1bfc4b..c297a7c5b92 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_coarse.inst.cfg index 6615eb0ef1e..562745810b1 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_draft.inst.cfg index 8484320f12a..2f7e3540213 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_fine.inst.cfg index b1bb184f241..a2c8f9026e9 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_normal.inst.cfg index ac966a5f21d..c3e915b7cf2 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_coarse.inst.cfg index 0c8078074d4..089bd58712a 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_draft.inst.cfg index ddf88b56c77..4f29f7b89de 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_fine.inst.cfg index a420b198397..4c7ce054209 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_normal.inst.cfg index 88a42a943e4..956491ca05b 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_coarse.inst.cfg b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_coarse.inst.cfg index 0c72737a09e..effe0ae6cee 100644 --- a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_coarse.inst.cfg +++ b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_ppgf30 quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_draft.inst.cfg b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_draft.inst.cfg index 8509d110d2f..d376594bf8f 100644 --- a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_draft.inst.cfg +++ b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_ppgf30 quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_fine.inst.cfg b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_fine.inst.cfg index 84f2d5f2205..9e7c659b9f3 100644 --- a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_fine.inst.cfg +++ b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_ppgf30 quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_normal.inst.cfg b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_normal.inst.cfg index e2604f6cd17..9442f440bb1 100644 --- a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_normal.inst.cfg +++ b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_ppgf30 quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_coarse.inst.cfg index 8163b0f4f01..b9f7178137d 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_draft.inst.cfg index 2b3a677da08..5ab51306a3b 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_fine.inst.cfg index 2de8dcd257d..24026eda666 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_normal.inst.cfg index b92efb4bb4e..fc8c33bcaa2 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_coarse.inst.cfg index 84f2b863ea0..c1e5bc2ab6a 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_draft.inst.cfg index 7d396bdb4b3..bd11bb9b2f8 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_fine.inst.cfg index 239ce61a853..7522344ea1b 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_normal.inst.cfg index bf1e456e9df..a5b98f0be7d 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_coarse.inst.cfg index c05ce1ef16a..811f816545b 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_draft.inst.cfg index c2412a4b10c..b7ca4dad12f 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_fine.inst.cfg index 62c827e31f4..8ff536484e6 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_normal.inst.cfg index 920960b1f1c..7a087f8de76 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_coarse.inst.cfg index 86255b299c0..c820fb73747 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_draft.inst.cfg index f699ade12ea..f67c83b8a16 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_fine.inst.cfg index c8b24198583..3d0c91f8d09 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_normal.inst.cfg index 986f61603c1..8129fa14bc6 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_coarse.inst.cfg index 1a55a0d7dc8..6d8294f3210 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_draft.inst.cfg index 72c1d0c0a29..6671af7abbf 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_fine.inst.cfg index 2e404b0f081..5faad48deee 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Stainless Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_normal.inst.cfg index bb7c76089cd..cb7662e85ba 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_coarse.inst.cfg index 9f50854c982..2f374f711c0 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_draft.inst.cfg index 5075d97c65c..df90cef5e18 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_fine.inst.cfg index 176a28b1882..e16fecd8098 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_normal.inst.cfg index c2dd1c4990b..c301df97ecc 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_coarse.inst.cfg index b5144668cbd..07f2d2e9705 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_draft.inst.cfg index bb678333dcf..d7d418b8864 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_fine.inst.cfg index ad545491551..b91c31863a9 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_normal.inst.cfg index fb8cba3041d..b5f25b64381 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_coarse.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_coarse.inst.cfg index 1943eef0f4d..25f0d8bf968 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_draft.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_draft.inst.cfg index 55a39c03a77..f29002d3654 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_draft.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_fine.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_fine.inst.cfg index 9826104ccb2..99d716b04ca 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_fine.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_normal.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_normal.inst.cfg index 053d09767e0..32603cbb9bc 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_normal.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_coarse.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_coarse.inst.cfg index c5ada4d5904..1a842c234c2 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_draft.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_draft.inst.cfg index 8bb07d06649..d5f733f24e7 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_draft.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = draft -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_fine.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_fine.inst.cfg index 2a06b48905a..81d50301b5b 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_fine.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = fine -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_normal.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_normal.inst.cfg index ff0cb4a7e00..48ee7515a69 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_normal.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = normal -setting_version = 23 +setting_version = 22 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.10_fine.inst.cfg index 1a90f61f465..f10186620cb 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.20_normal.inst.cfg index 9970928d625..441f20b96e8 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.30_draft.inst.cfg index a6822bb56a8..8aed00c1083 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.40_coarse.inst.cfg index 343d413403b..a6cce09509c 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.10_fine.inst.cfg index 0232e0222ff..627a5831632 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.20_normal.inst.cfg index 05d60959ad9..adf3edf197b 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.30_draft.inst.cfg index 6cddf912cef..73096761d49 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.40_coarse.inst.cfg index 9036f083501..6a59c3f495e 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.10_fine.inst.cfg index 72b2ac34b56..2ab9c6dd3c1 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.20_normal.inst.cfg index 9c6e1ca45b3..125dbe516e2 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.30_draft.inst.cfg index b2fd3b1fb6d..dceb31ce0b3 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.40_coarse.inst.cfg index 1d6b2ff0d1d..948a405306a 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.10_fine.inst.cfg index a372b5d37a0..b79a41ac4e2 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.20_normal.inst.cfg index a2cf5f780b0..13760e7dee0 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.30_draft.inst.cfg index 77a9bcf4475..e13b324c140 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.40_coarse.inst.cfg index b760682e22d..6d9434d0c8a 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.10_fine.inst.cfg index 958918c010f..7f7d839e97b 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.20_normal.inst.cfg index 40c39e74601..031ba33f7fb 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.30_draft.inst.cfg index 5f01b400ceb..44fc013460c 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.40_coarse.inst.cfg index 7918d012470..468c89d14a7 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.10_fine.inst.cfg index a28c2a05e2d..4c17bca4efc 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.20_normal.inst.cfg index 6438abd22c8..70688d38bfe 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.30_draft.inst.cfg index 481574e4099..d491bac5ea1 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.40_coarse.inst.cfg index e0b0d18bb50..a9131265b9c 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.10_fine.inst.cfg index 30a5507237c..266cdf8bcd5 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.20_normal.inst.cfg index e4ba451bc10..4ec758bc56a 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.30_draft.inst.cfg index 65139b39932..7dd545c180a 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.40_coarse.inst.cfg index b0997befe9a..e9f9c5548f7 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.05.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.05.inst.cfg index 25e85a7c508..29c4883c8ac 100644 --- a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_005 -setting_version = 23 +setting_version = 22 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.10.inst.cfg index d8bb913ee60..02835da0227 100644 --- a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.15.inst.cfg index 9616f723f6d..adcfdf8083c 100644 --- a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.05.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.05.inst.cfg index 8fb86d315a9..228205bb66c 100644 --- a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_005 -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.10.inst.cfg index 05bd6ed4e72..4a1e655226f 100644 --- a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.15.inst.cfg index 4bd1827021f..2cae8e47a7c 100644 --- a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.20.inst.cfg index 7e7466769e1..2bffc1cdbb8 100644 --- a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.10.inst.cfg index 9e1db971ffb..be2ffd421a4 100644 --- a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.15.inst.cfg index 282894c4390..102049778bd 100644 --- a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.20.inst.cfg index a7e30338042..046e1c87bd8 100644 --- a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.25.inst.cfg index 5fbe8655d33..b88d47fa6f6 100644 --- a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 22 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.10.inst.cfg index e7ce0940657..0bd539c4f70 100644 --- a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.15.inst.cfg index 3fa7f903764..cd9afd7a4ba 100644 --- a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.20.inst.cfg index df6be877268..080d63fea0e 100644 --- a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.25.inst.cfg index 6c2f48d4aa5..a32f9f1f1d8 100644 --- a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 22 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.10.inst.cfg index 409463370dd..0635795d955 100644 --- a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.15.inst.cfg index 775fb209f37..3defa66ad55 100644 --- a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.20.inst.cfg index 1eb05bd4823..1b906624ee2 100644 --- a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.25.inst.cfg index 186e4ae790d..12a8ec6ba75 100644 --- a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.30.inst.cfg index baf5abbb096..ee41b6498b5 100644 --- a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.10.inst.cfg index ad5f65c5d10..555fa476b02 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.15.inst.cfg index 6b1e4390290..c2d9bef5580 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.20.inst.cfg index fae81972e9b..11c14792d09 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.25.inst.cfg index 3d842adac0f..b152a1f9056 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 22 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.30.inst.cfg index bba35f5e6c0..70326714ba9 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 22 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.35.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.35.inst.cfg index e9aafef0b32..d02d437029a 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 22 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.15.inst.cfg index 9e8ac0fe073..1c8ac217458 100644 --- a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.20.inst.cfg index e7aa39026ef..e0f90176307 100644 --- a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.25.inst.cfg index 4a119a3b786..2d789cb1a83 100644 --- a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 22 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.30.inst.cfg index 8c7652f358c..e6ae6f2012d 100644 --- a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 22 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.35.inst.cfg index 9a2b2bbb458..aa79fa3cd13 100644 --- a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 22 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.15.inst.cfg index 3cea25782b7..f1c171d147a 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.20.inst.cfg index fb28d98eb8b..1183f562580 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.25.inst.cfg index 23178b5adf2..cd8227a7948 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 22 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.30.inst.cfg index 59622fc3190..b936a23ec23 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 22 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.35.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.35.inst.cfg index d59245ae3bf..4f4fd90dea2 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 22 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.40.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.40.inst.cfg index a97a6833bc2..ab4c21d9eb6 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_040 -setting_version = 23 +setting_version = 22 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.20.inst.cfg index b9e10a6bf02..51fbac0be08 100644 --- a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.25.inst.cfg index 9e29238068e..f02f6d1a3d4 100644 --- a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 22 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.30.inst.cfg index e8ef2edd8f1..575dd45b334 100644 --- a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 22 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.35.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.35.inst.cfg index 1b10439afc5..42ca6e96563 100644 --- a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 22 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.40.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.40.inst.cfg index 67b6a26a728..7cc7a48912e 100644 --- a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_040 -setting_version = 23 +setting_version = 22 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.25.inst.cfg index f6405d5ceca..a6b5631adba 100644 --- a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 22 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.30.inst.cfg index 228ddddc13e..645c565be07 100644 --- a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 22 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.35.inst.cfg b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.35.inst.cfg index 725e885a1e5..77df9c65ce0 100644 --- a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 22 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.40.inst.cfg b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.40.inst.cfg index 42a8cf6770c..1589129fecc 100644 --- a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_040 -setting_version = 23 +setting_version = 22 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.05.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.05.inst.cfg index 3a8189a2427..019344886e9 100644 --- a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_005 -setting_version = 23 +setting_version = 22 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.10.inst.cfg index 96f8ac2ba8b..fc53c3f830e 100644 --- a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.15.inst.cfg index 1c522258798..208d90d9802 100644 --- a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.05.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.05.inst.cfg index 42d6059b2b6..be84b22ab3c 100644 --- a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_005 -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.10.inst.cfg index 0f300418d49..676f4d3a5a8 100644 --- a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.15.inst.cfg index 0841a4e683f..8b43a0dfc89 100644 --- a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.20.inst.cfg index d6293b8dd65..c6e8abbac8f 100644 --- a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.10.inst.cfg index 3cae06a9124..9ad587cb8b6 100644 --- a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.15.inst.cfg index 85515279fa6..2416a15f1a8 100644 --- a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.20.inst.cfg index dc76ed4260d..bf8f1edcfb5 100644 --- a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.25.inst.cfg index 2f93ba6669d..c53303a9435 100644 --- a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 22 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.10.inst.cfg index d566aa424ae..97f46add803 100644 --- a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.15.inst.cfg index 5799506d1ef..e955f348c39 100644 --- a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.20.inst.cfg index 0c29bd477b9..6636cc5df43 100644 --- a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.25.inst.cfg index bb4cb5e5318..80a411f4ee1 100644 --- a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 22 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.10.inst.cfg index 4f7b41945e8..268a3b5fded 100644 --- a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.15.inst.cfg index abaa1eedb66..5fc2fefe608 100644 --- a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.20.inst.cfg index 992234ba25e..1b025eff1b9 100644 --- a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.25.inst.cfg index 73e2a07a8f6..3a1099913dd 100644 --- a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.30.inst.cfg index c00e9ecb00c..ce35c74a9e2 100644 --- a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.10.inst.cfg index 101fe44c823..b41a1c2d779 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.15.inst.cfg index 6b084130dbb..967ca447d2b 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.20.inst.cfg index 948eefca176..fd6749a78a0 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.25.inst.cfg index 40dde2cf312..1f93f389717 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 22 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.30.inst.cfg index 4090f8f855d..f0f47461578 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 22 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.35.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.35.inst.cfg index 5d6045a8e8d..2512eda3372 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 22 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.15.inst.cfg index 7ecdefdfe16..f129210b398 100644 --- a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.20.inst.cfg index 149e4d4109e..0d28659b59f 100644 --- a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.25.inst.cfg index da20e0651c6..93bd9380386 100644 --- a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 22 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.30.inst.cfg index 79a5566f672..a4986efd93a 100644 --- a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 22 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.35.inst.cfg index 2726c46ff6e..56150eb5934 100644 --- a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 22 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.15.inst.cfg index ab747e927ca..dcd11674bb4 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.20.inst.cfg index c85a32723d6..a287a857eb4 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.25.inst.cfg index dd474c0aaca..c2e5f1111ae 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 22 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.30.inst.cfg index 83cd051b097..cbd29ceefd0 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 22 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.35.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.35.inst.cfg index ab9d4ebe1ca..65329a712df 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 22 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.40.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.40.inst.cfg index 9ad7853cdc4..fe790d3b0b0 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_040 -setting_version = 23 +setting_version = 22 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.20.inst.cfg index 724a51b8d85..2fa55f29474 100644 --- a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.25.inst.cfg index 3c4d788df8f..1487ce9dc16 100644 --- a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 22 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.30.inst.cfg index 5644483fde1..466720c7492 100644 --- a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 22 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.35.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.35.inst.cfg index 57d99f35de3..1258357326d 100644 --- a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 22 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.40.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.40.inst.cfg index e75f3c35b04..92280179de2 100644 --- a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_040 -setting_version = 23 +setting_version = 22 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.25.inst.cfg index 368647795b5..1e4765a8690 100644 --- a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 22 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.30.inst.cfg index dd82a4775b2..8035afca89a 100644 --- a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 22 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.35.inst.cfg b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.35.inst.cfg index d7d4fbe412f..8d90e28f217 100644 --- a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 22 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.40.inst.cfg b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.40.inst.cfg index 91033d2bf51..ff1d103b51f 100644 --- a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_040 -setting_version = 23 +setting_version = 22 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.05.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.05.inst.cfg index f01da6ca32c..7039988817c 100644 --- a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_005 -setting_version = 23 +setting_version = 22 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.10.inst.cfg index 4eb395fb9a8..44df8539bd3 100644 --- a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.15.inst.cfg index 6f88469db6d..4b1036b2388 100644 --- a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.05.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.05.inst.cfg index ba7ecfa53c3..092f9664c6c 100644 --- a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_005 -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.10.inst.cfg index f6aa3822cad..18aec55b975 100644 --- a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.15.inst.cfg index 195a34ba439..ff75c4473e4 100644 --- a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.20.inst.cfg index 2c438ce53c1..ebd407c71a0 100644 --- a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.10.inst.cfg index d343990b9d4..de44e9432a0 100644 --- a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.15.inst.cfg index 5b49c34064c..104ad9bb793 100644 --- a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.20.inst.cfg index e4f58831b6e..6a65a21a3d3 100644 --- a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.25.inst.cfg index 3122c05e65a..b1e69200486 100644 --- a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 22 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.10.inst.cfg index fc174af3706..72aef2b2de2 100644 --- a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.15.inst.cfg index 33df915b4c9..61a004c456e 100644 --- a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.20.inst.cfg index 048565919e8..7d81acca8ac 100644 --- a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.25.inst.cfg index d08823a8091..56c16236251 100644 --- a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 22 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.10.inst.cfg index afaf24bd2aa..27d7f6a72d6 100644 --- a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.15.inst.cfg index cb71636a843..1a4390c9b00 100644 --- a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.20.inst.cfg index 14c9525787c..d168ee10216 100644 --- a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.25.inst.cfg index 38c899216fb..d98250ffef9 100644 --- a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.30.inst.cfg index caddf1980aa..b84b2247ea0 100644 --- a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 22 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.10.inst.cfg index 610a8011d81..e0183f4ac68 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 22 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.15.inst.cfg index ea4244d4900..da91e51addc 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.20.inst.cfg index b2adf228fbc..32c00925934 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.25.inst.cfg index ee133982c27..e1a05305d59 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 22 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.30.inst.cfg index 0ac2b0afd17..cb2868ecb40 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 22 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.35.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.35.inst.cfg index 75132444978..7ec72a8a802 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 22 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.15.inst.cfg index ac57d8b0741..646656843df 100644 --- a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.20.inst.cfg index 5f718f55f1c..4d236b723bc 100644 --- a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.25.inst.cfg index 8ac9a8b3439..a75d5f66532 100644 --- a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 22 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.30.inst.cfg index 5f5b9fd44e4..61aa9b3f0a1 100644 --- a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 22 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.35.inst.cfg index 60368382822..c3e5963988b 100644 --- a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 22 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.15.inst.cfg index 9e7ca6b7fee..4d58f8de3ce 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 22 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.20.inst.cfg index 7f1d7584729..a80320fe868 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.25.inst.cfg index 78b351455e1..8bc55ffebc6 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 22 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.30.inst.cfg index 2dcc08eaaf1..47460c884e8 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 22 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.35.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.35.inst.cfg index c5c89b9df0c..a940ece953a 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 22 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.40.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.40.inst.cfg index 556df5c158d..09bfdb8cdc9 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_040 -setting_version = 23 +setting_version = 22 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.20.inst.cfg index 98284b527ad..12238edb52e 100644 --- a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 22 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.25.inst.cfg index d3304afba1c..8f8054ea990 100644 --- a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 22 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.30.inst.cfg index aec24595d48..3c4151c237a 100644 --- a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 22 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.35.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.35.inst.cfg index e8ab9c5148f..f7d1cb13d09 100644 --- a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 22 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.40.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.40.inst.cfg index 4e99df07865..e4c48cbd471 100644 --- a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_040 -setting_version = 23 +setting_version = 22 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.25.inst.cfg index 88000bd7fbc..e0aa85b29c6 100644 --- a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 22 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.30.inst.cfg index b30b616a7c5..830845db85f 100644 --- a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 22 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.35.inst.cfg b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.35.inst.cfg index 1d2bb106127..d166b3683d9 100644 --- a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 22 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.40.inst.cfg b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.40.inst.cfg index e3c4c6ed7b4..db41444bedd 100644 --- a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_040 -setting_version = 23 +setting_version = 22 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/zav_layer_0.05.inst.cfg b/resources/quality/zav_base/zav_layer_0.05.inst.cfg index 20bdc019502..bfe990a2613 100644 --- a/resources/quality/zav_base/zav_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_005 -setting_version = 23 +setting_version = 22 type = quality weight = -1 diff --git a/resources/quality/zav_base/zav_layer_0.10.inst.cfg b/resources/quality/zav_base/zav_layer_0.10.inst.cfg index b3a6325f861..1d472b6a7cb 100644 --- a/resources/quality/zav_base/zav_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 22 type = quality weight = -2 diff --git a/resources/quality/zav_base/zav_layer_0.15.inst.cfg b/resources/quality/zav_base/zav_layer_0.15.inst.cfg index d5c16701a22..1e4f18a996a 100644 --- a/resources/quality/zav_base/zav_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 22 type = quality weight = -3 diff --git a/resources/quality/zav_base/zav_layer_0.20.inst.cfg b/resources/quality/zav_base/zav_layer_0.20.inst.cfg index bf855f6fe7b..b576e281787 100644 --- a/resources/quality/zav_base/zav_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 22 type = quality weight = -4 diff --git a/resources/quality/zav_base/zav_layer_0.25.inst.cfg b/resources/quality/zav_base/zav_layer_0.25.inst.cfg index 8cd48165301..a7069d1409e 100644 --- a/resources/quality/zav_base/zav_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 22 type = quality weight = -5 diff --git a/resources/quality/zav_base/zav_layer_0.30.inst.cfg b/resources/quality/zav_base/zav_layer_0.30.inst.cfg index 9121f834145..c575a0e4d21 100644 --- a/resources/quality/zav_base/zav_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 22 type = quality weight = -6 diff --git a/resources/quality/zav_base/zav_layer_0.35.inst.cfg b/resources/quality/zav_base/zav_layer_0.35.inst.cfg index c3e37d97d94..1b0e10edcdc 100644 --- a/resources/quality/zav_base/zav_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 22 type = quality weight = -7 diff --git a/resources/quality/zav_base/zav_layer_0.40.inst.cfg b/resources/quality/zav_base/zav_layer_0.40.inst.cfg index bbb88a8e865..1587fe0f252 100644 --- a/resources/quality/zav_base/zav_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_040 -setting_version = 23 +setting_version = 22 type = quality weight = -8 diff --git a/resources/quality/zyyx/zyyx_agile_global_fast.inst.cfg b/resources/quality/zyyx/zyyx_agile_global_fast.inst.cfg index 8532b1d9cb8..26c80e6a84b 100644 --- a/resources/quality/zyyx/zyyx_agile_global_fast.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_global_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_global_fine.inst.cfg b/resources/quality/zyyx/zyyx_agile_global_fine.inst.cfg index 5358ee99acd..df7928149f2 100644 --- a/resources/quality/zyyx/zyyx_agile_global_fine.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_global_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_global_normal.inst.cfg b/resources/quality/zyyx/zyyx_agile_global_normal.inst.cfg index 2356a128b0e..afa1010fa0c 100644 --- a/resources/quality/zyyx/zyyx_agile_global_normal.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_global_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/zyyx/zyyx_agile_pro_flex_fast.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_flex_fast.inst.cfg index b18d8a67299..6a09f183c32 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_flex_fast.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_flex_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_pro_flex_fine.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_flex_fine.inst.cfg index 920c92633d6..35531d33bc5 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_flex_fine.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_flex_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fine -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_pro_flex_normal.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_flex_normal.inst.cfg index e893ca4af11..ed44af21e2c 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_flex_normal.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_flex_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/quality/zyyx/zyyx_agile_pro_pla_fast.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_pla_fast.inst.cfg index 3b3ed243764..a0e76d45cdd 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_pla_fast.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_pro_pla_fine.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_pla_fine.inst.cfg index 347e3ccd74e..a97fec7061b 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_pla_fine.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 22 type = quality weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_pro_pla_normal.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_pla_normal.inst.cfg index 9af81dc5206..ed4a9057839 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_pla_normal.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 22 type = quality weight = 0 diff --git a/resources/variants/arjun/arjun300_0.2.inst.cfg b/resources/variants/arjun/arjun300_0.2.inst.cfg index 93a9cda252d..577c9cea82f 100644 --- a/resources/variants/arjun/arjun300_0.2.inst.cfg +++ b/resources/variants/arjun/arjun300_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjun300_0.3.inst.cfg b/resources/variants/arjun/arjun300_0.3.inst.cfg index 6680413525b..23e5d5d3b9e 100644 --- a/resources/variants/arjun/arjun300_0.3.inst.cfg +++ b/resources/variants/arjun/arjun300_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjun300_0.4.inst.cfg b/resources/variants/arjun/arjun300_0.4.inst.cfg index f0e78bd67ba..4b966b4b154 100644 --- a/resources/variants/arjun/arjun300_0.4.inst.cfg +++ b/resources/variants/arjun/arjun300_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjun300_0.5.inst.cfg b/resources/variants/arjun/arjun300_0.5.inst.cfg index f5287a28485..279755a8e24 100644 --- a/resources/variants/arjun/arjun300_0.5.inst.cfg +++ b/resources/variants/arjun/arjun300_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjun300_0.6.inst.cfg b/resources/variants/arjun/arjun300_0.6.inst.cfg index acfb70d4265..79ccd382864 100644 --- a/resources/variants/arjun/arjun300_0.6.inst.cfg +++ b/resources/variants/arjun/arjun300_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjun300_0.8.inst.cfg b/resources/variants/arjun/arjun300_0.8.inst.cfg index 081b1fe6136..c0be27c6718 100644 --- a/resources/variants/arjun/arjun300_0.8.inst.cfg +++ b/resources/variants/arjun/arjun300_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.2.inst.cfg b/resources/variants/arjun/arjun300_dm_0.2.inst.cfg index c09ec180e8d..441881b7b27 100644 --- a/resources/variants/arjun/arjun300_dm_0.2.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.3.inst.cfg b/resources/variants/arjun/arjun300_dm_0.3.inst.cfg index bf777b0e823..38737edbd73 100644 --- a/resources/variants/arjun/arjun300_dm_0.3.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.4.inst.cfg b/resources/variants/arjun/arjun300_dm_0.4.inst.cfg index 0c83b6b21c0..ef5cf7b7f5d 100644 --- a/resources/variants/arjun/arjun300_dm_0.4.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.5.inst.cfg b/resources/variants/arjun/arjun300_dm_0.5.inst.cfg index a5fa9703087..6e6f03f9231 100644 --- a/resources/variants/arjun/arjun300_dm_0.5.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.6.inst.cfg b/resources/variants/arjun/arjun300_dm_0.6.inst.cfg index 23019db4c2b..0fe27b5fcd3 100644 --- a/resources/variants/arjun/arjun300_dm_0.6.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.8.inst.cfg b/resources/variants/arjun/arjun300_dm_0.8.inst.cfg index 0a44cd4a89e..5700539ff40 100644 --- a/resources/variants/arjun/arjun300_dm_0.8.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.2.inst.cfg b/resources/variants/arjun/arjun300_mm_0.2.inst.cfg index ab3c18911b6..bbdf6bc7f3a 100644 --- a/resources/variants/arjun/arjun300_mm_0.2.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.3.inst.cfg b/resources/variants/arjun/arjun300_mm_0.3.inst.cfg index 29999d094af..3d2e71f3ef7 100644 --- a/resources/variants/arjun/arjun300_mm_0.3.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.4.inst.cfg b/resources/variants/arjun/arjun300_mm_0.4.inst.cfg index bc6a26bbae7..155231c20ff 100644 --- a/resources/variants/arjun/arjun300_mm_0.4.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.5.inst.cfg b/resources/variants/arjun/arjun300_mm_0.5.inst.cfg index 2cb3776d91f..1ae108dd585 100644 --- a/resources/variants/arjun/arjun300_mm_0.5.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.6.inst.cfg b/resources/variants/arjun/arjun300_mm_0.6.inst.cfg index 64193bc3338..5716d2037fd 100644 --- a/resources/variants/arjun/arjun300_mm_0.6.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.8.inst.cfg b/resources/variants/arjun/arjun300_mm_0.8.inst.cfg index a00eb4737d1..7274d191a70 100644 --- a/resources/variants/arjun/arjun300_mm_0.8.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjun300_pva_0.2.inst.cfg b/resources/variants/arjun/arjun300_pva_0.2.inst.cfg index af032b8d320..065fecd92b7 100644 --- a/resources/variants/arjun/arjun300_pva_0.2.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjun300_pva_0.3.inst.cfg b/resources/variants/arjun/arjun300_pva_0.3.inst.cfg index 94679d03104..cef64896b1d 100644 --- a/resources/variants/arjun/arjun300_pva_0.3.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjun300_pva_0.4.inst.cfg b/resources/variants/arjun/arjun300_pva_0.4.inst.cfg index c4e63bff057..273bab3848b 100644 --- a/resources/variants/arjun/arjun300_pva_0.4.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjun300_pva_0.5.inst.cfg b/resources/variants/arjun/arjun300_pva_0.5.inst.cfg index 9647cc0ddf8..4ac74b10b05 100644 --- a/resources/variants/arjun/arjun300_pva_0.5.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjun300_pva_0.6.inst.cfg b/resources/variants/arjun/arjun300_pva_0.6.inst.cfg index 6b8ff4aee4a..9522f1a103a 100644 --- a/resources/variants/arjun/arjun300_pva_0.6.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjun300_pva_0.8.inst.cfg b/resources/variants/arjun/arjun300_pva_0.8.inst.cfg index 75df806b085..1e47424034d 100644 --- a/resources/variants/arjun/arjun300_pva_0.8.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_0.2.inst.cfg b/resources/variants/arjun/arjunpro300_0.2.inst.cfg index 810c6887b14..f5d15066100 100644 --- a/resources/variants/arjun/arjunpro300_0.2.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_0.3.inst.cfg b/resources/variants/arjun/arjunpro300_0.3.inst.cfg index 36a3c1bab63..ad2c0ad0c70 100644 --- a/resources/variants/arjun/arjunpro300_0.3.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_0.4.inst.cfg b/resources/variants/arjun/arjunpro300_0.4.inst.cfg index 75a58cd9783..ace0f0bb40f 100644 --- a/resources/variants/arjun/arjunpro300_0.4.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_0.5.inst.cfg b/resources/variants/arjun/arjunpro300_0.5.inst.cfg index 19c08457c57..085a1d5ea2c 100644 --- a/resources/variants/arjun/arjunpro300_0.5.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_0.6.inst.cfg b/resources/variants/arjun/arjunpro300_0.6.inst.cfg index 8d4d1d914ae..2976b3a7b09 100644 --- a/resources/variants/arjun/arjunpro300_0.6.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_0.8.inst.cfg b/resources/variants/arjun/arjunpro300_0.8.inst.cfg index 52f028cba0d..bee58c2f5f6 100644 --- a/resources/variants/arjun/arjunpro300_0.8.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.2.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.2.inst.cfg index 4373356eeae..091ad83670a 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.2.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.3.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.3.inst.cfg index 8f78856b630..b6f9eb65221 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.3.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.4.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.4.inst.cfg index 00467ec7377..c60c55ad05f 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.4.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.5.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.5.inst.cfg index c4860fbcc9f..0ad2553b8e0 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.5.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.6.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.6.inst.cfg index 45c2c5392ca..581f430e03f 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.6.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.8.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.8.inst.cfg index c396dd139ce..7bbe6039693 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.8.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.2.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.2.inst.cfg index cc3d0e8c52b..45a05c0eea6 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.2.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.3.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.3.inst.cfg index 9ece24fc84b..4475cdcded2 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.3.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.4.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.4.inst.cfg index 2489d0d4fce..02c50dfac70 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.4.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.5.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.5.inst.cfg index c8864fbb178..07443b9d269 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.5.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.6.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.6.inst.cfg index bf2019c7a2d..b0ed67209c4 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.6.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.8.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.8.inst.cfg index 13ed3b65e75..64733eeff1d 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.8.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_pva_0.2.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.2.inst.cfg index cc0c010ce2f..3fc340152c1 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.2.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_pva_0.3.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.3.inst.cfg index 9204d755cc6..8ae2ffb70ae 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.3.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_pva_0.4.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.4.inst.cfg index 2b36ddec9c1..b444d14925d 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.4.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_pva_0.5.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.5.inst.cfg index 167eaaf99d5..e78ca2f27aa 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.5.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_pva_0.6.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.6.inst.cfg index 4cf68ad45a7..d6a3770cd90 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.6.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_pva_0.8.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.8.inst.cfg index cb05da3c8ab..c19c8ca79ae 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.8.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/artillery/artillery_base_0.2.inst.cfg b/resources/variants/artillery/artillery_base_0.2.inst.cfg index 4e78b919d91..f2ff1eecce2 100644 --- a/resources/variants/artillery/artillery_base_0.2.inst.cfg +++ b/resources/variants/artillery/artillery_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/artillery/artillery_base_0.3.inst.cfg b/resources/variants/artillery/artillery_base_0.3.inst.cfg index 3b1fdb4c30e..1c2e7e39b10 100644 --- a/resources/variants/artillery/artillery_base_0.3.inst.cfg +++ b/resources/variants/artillery/artillery_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/artillery/artillery_base_0.4.inst.cfg b/resources/variants/artillery/artillery_base_0.4.inst.cfg index d64f66e1107..ced36c984c0 100644 --- a/resources/variants/artillery/artillery_base_0.4.inst.cfg +++ b/resources/variants/artillery/artillery_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/artillery/artillery_base_0.6.inst.cfg b/resources/variants/artillery/artillery_base_0.6.inst.cfg index 89753a63428..8a5d140461f 100644 --- a/resources/variants/artillery/artillery_base_0.6.inst.cfg +++ b/resources/variants/artillery/artillery_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/artillery/artillery_base_0.8.inst.cfg b/resources/variants/artillery/artillery_base_0.8.inst.cfg index 0c217a6d955..f2b8936aa6e 100644 --- a/resources/variants/artillery/artillery_base_0.8.inst.cfg +++ b/resources/variants/artillery/artillery_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/artillery/artillery_base_1.0.inst.cfg b/resources/variants/artillery/artillery_base_1.0.inst.cfg index d484d543476..8aef4b39198 100644 --- a/resources/variants/artillery/artillery_base_1.0.inst.cfg +++ b/resources/variants/artillery/artillery_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.2.inst.cfg b/resources/variants/artillery/artillery_genius_0.2.inst.cfg index 97e014d9df7..81f21a98033 100644 --- a/resources/variants/artillery/artillery_genius_0.2.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.3.inst.cfg b/resources/variants/artillery/artillery_genius_0.3.inst.cfg index d2debe768f3..aeee90957ae 100644 --- a/resources/variants/artillery/artillery_genius_0.3.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.4.inst.cfg b/resources/variants/artillery/artillery_genius_0.4.inst.cfg index ad3ec300adc..9ae2dcd26cb 100644 --- a/resources/variants/artillery/artillery_genius_0.4.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.5.inst.cfg b/resources/variants/artillery/artillery_genius_0.5.inst.cfg index 048d51b35bf..1ceec2ae13c 100644 --- a/resources/variants/artillery/artillery_genius_0.5.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.6.inst.cfg b/resources/variants/artillery/artillery_genius_0.6.inst.cfg index 8206e862e98..ca4f68f56d7 100644 --- a/resources/variants/artillery/artillery_genius_0.6.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.8.inst.cfg b/resources/variants/artillery/artillery_genius_0.8.inst.cfg index d5b9ba26fe2..a25fe2ead9f 100644 --- a/resources/variants/artillery/artillery_genius_0.8.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_1.0.inst.cfg b/resources/variants/artillery/artillery_genius_1.0.inst.cfg index 5bd5ee157c1..9fe74fa826d 100644 --- a/resources/variants/artillery/artillery_genius_1.0.inst.cfg +++ b/resources/variants/artillery/artillery_genius_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.2.inst.cfg b/resources/variants/artillery/artillery_hornet_0.2.inst.cfg index b489bb232fd..6d28800ee59 100644 --- a/resources/variants/artillery/artillery_hornet_0.2.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.3.inst.cfg b/resources/variants/artillery/artillery_hornet_0.3.inst.cfg index 1b2d03d4460..c57bd0ff2c5 100644 --- a/resources/variants/artillery/artillery_hornet_0.3.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.4.inst.cfg b/resources/variants/artillery/artillery_hornet_0.4.inst.cfg index 15601bce9fb..b9dc76e966f 100644 --- a/resources/variants/artillery/artillery_hornet_0.4.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.5.inst.cfg b/resources/variants/artillery/artillery_hornet_0.5.inst.cfg index 625732f8be5..51ce6bc2bdf 100644 --- a/resources/variants/artillery/artillery_hornet_0.5.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.6.inst.cfg b/resources/variants/artillery/artillery_hornet_0.6.inst.cfg index ee5b4d5b73b..690360bf154 100644 --- a/resources/variants/artillery/artillery_hornet_0.6.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.8.inst.cfg b/resources/variants/artillery/artillery_hornet_0.8.inst.cfg index ad3c82bc2b6..14de186199c 100644 --- a/resources/variants/artillery/artillery_hornet_0.8.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_1.0.inst.cfg b/resources/variants/artillery/artillery_hornet_1.0.inst.cfg index c3b43f462a6..4ca3b07d682 100644 --- a/resources/variants/artillery/artillery_hornet_1.0.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_0.2.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_0.2.inst.cfg index b7cedae9830..1c1d017ca49 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_0.2.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_0.3.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_0.3.inst.cfg index 0b0b9c52d48..a6ac9c3a725 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_0.3.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_0.4.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_0.4.inst.cfg index ca7d41cc6a7..3dbeb3e6125 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_0.4.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_0.6.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_0.6.inst.cfg index 344852dbe65..e0baaf8ff8d 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_0.6.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_0.8.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_0.8.inst.cfg index 2796719d49e..1191969b3fb 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_0.8.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_1.0.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_1.0.inst.cfg index f18dc59570e..9983a827213 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_1.0.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atmat_asterion_ht_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_asterion_ht_v6_0.40.inst.cfg index f5ded16281e..bff78347597 100644 --- a/resources/variants/atmat/atmat_asterion_ht_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_asterion_ht_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atmat_asterion_ht_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_asterion_ht_v6_0.80.inst.cfg index efc2f441959..9a2eb1303af 100644 --- a/resources/variants/atmat/atmat_asterion_ht_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_asterion_ht_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atmat_asterion_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_asterion_v6_0.40.inst.cfg index 2d98543eb4b..43ffb126266 100644 --- a/resources/variants/atmat/atmat_asterion_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_asterion_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atmat_asterion_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_asterion_v6_0.80.inst.cfg index 88049192882..ecdd2feef8a 100644 --- a/resources/variants/atmat/atmat_asterion_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_asterion_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atmat_galaxy_500_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_galaxy_500_v6_0.40.inst.cfg index 4c4e32aea84..e3df8ef738c 100644 --- a/resources/variants/atmat/atmat_galaxy_500_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_galaxy_500_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atmat_galaxy_500_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_galaxy_500_v6_0.80.inst.cfg index 0c40d52a3fc..359c455dd5a 100644 --- a/resources/variants/atmat/atmat_galaxy_500_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_galaxy_500_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atmat_galaxy_600_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_galaxy_600_v6_0.40.inst.cfg index a5f670c7d95..3ff08a04866 100644 --- a/resources/variants/atmat/atmat_galaxy_600_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_galaxy_600_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atmat_galaxy_600_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_galaxy_600_v6_0.80.inst.cfg index 3f8339500ad..d0265cec285 100644 --- a/resources/variants/atmat/atmat_galaxy_600_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_galaxy_600_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.40.inst.cfg index 667962e5de1..828e64805be 100644 --- a/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.80.inst.cfg index 69bb3f9c70f..775ccd53738 100644 --- a/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.40.inst.cfg index f8cb3c1f844..25f75703aea 100644 --- a/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.80.inst.cfg index 1d319e7f030..e3df3728585 100644 --- a/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.40.inst.cfg index c70d0c1ecbd..a757ec6ad18 100644 --- a/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.80.inst.cfg index 38174decad2..3c8dedb3a3a 100644 --- a/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.40.inst.cfg index 6725cedd8ab..7a2891e9ce8 100644 --- a/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.80.inst.cfg index 4ea72f75dbc..b4e33629dd5 100644 --- a/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.40.inst.cfg index b28e7ddfc01..d71af8d02a0 100644 --- a/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.80.inst.cfg index 27678a3b2ed..e1e1012e7f5 100644 --- a/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.40.inst.cfg index 901d036966b..80706e803d4 100644 --- a/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.80.inst.cfg index 386d623a52c..533e8e0ed83 100644 --- a/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xl_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_xl_v6_0.40.inst.cfg index 06c58bb8836..86ff65c5335 100644 --- a/resources/variants/atmat/atmat_signal_xl_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xl_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xl_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_xl_v6_0.80.inst.cfg index dfeba978deb..3f8f603c374 100644 --- a/resources/variants/atmat/atmat_signal_xl_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xl_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xxl_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_xxl_v6_0.40.inst.cfg index dfac869cec9..461ff2a018e 100644 --- a/resources/variants/atmat/atmat_signal_xxl_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xxl_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xxl_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_xxl_v6_0.80.inst.cfg index 8aae3a6eb62..186e18b8816 100644 --- a/resources/variants/atmat/atmat_signal_xxl_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xxl_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xxxl_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_xxxl_v6_0.40.inst.cfg index 6558650b251..3261fd1b4e0 100644 --- a/resources/variants/atmat/atmat_signal_xxxl_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xxxl_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xxxl_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_xxxl_v6_0.80.inst.cfg index 4a1f710176a..2b60dace640 100644 --- a/resources/variants/atmat/atmat_signal_xxxl_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xxxl_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atom3_all_metal_brass_0.2.inst.cfg b/resources/variants/atmat/atom3_all_metal_brass_0.2.inst.cfg index 2c6c67e10f6..482efd61b54 100644 --- a/resources/variants/atmat/atom3_all_metal_brass_0.2.inst.cfg +++ b/resources/variants/atmat/atom3_all_metal_brass_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atom3_all_metal_brass_0.4.inst.cfg b/resources/variants/atmat/atom3_all_metal_brass_0.4.inst.cfg index 37107ab53b4..11fc3b222e0 100644 --- a/resources/variants/atmat/atom3_all_metal_brass_0.4.inst.cfg +++ b/resources/variants/atmat/atom3_all_metal_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atom3_all_metal_brass_0.6.inst.cfg b/resources/variants/atmat/atom3_all_metal_brass_0.6.inst.cfg index 25865d3408b..0cd4aa92eaa 100644 --- a/resources/variants/atmat/atom3_all_metal_brass_0.6.inst.cfg +++ b/resources/variants/atmat/atom3_all_metal_brass_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_all_metal_brass_0.2.inst.cfg b/resources/variants/atmat/atom3_lite_all_metal_brass_0.2.inst.cfg index c6fcc777e29..33c16b9e3b6 100644 --- a/resources/variants/atmat/atom3_lite_all_metal_brass_0.2.inst.cfg +++ b/resources/variants/atmat/atom3_lite_all_metal_brass_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_all_metal_brass_0.4.inst.cfg b/resources/variants/atmat/atom3_lite_all_metal_brass_0.4.inst.cfg index 2b9a166b816..13bd63686d9 100644 --- a/resources/variants/atmat/atom3_lite_all_metal_brass_0.4.inst.cfg +++ b/resources/variants/atmat/atom3_lite_all_metal_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_all_metal_brass_0.6.inst.cfg b/resources/variants/atmat/atom3_lite_all_metal_brass_0.6.inst.cfg index a8893848959..869e0d3cc23 100644 --- a/resources/variants/atmat/atom3_lite_all_metal_brass_0.6.inst.cfg +++ b/resources/variants/atmat/atom3_lite_all_metal_brass_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_ptfe_brass_0.2.inst.cfg b/resources/variants/atmat/atom3_lite_ptfe_brass_0.2.inst.cfg index 9ffd271caa5..e7a55716027 100644 --- a/resources/variants/atmat/atom3_lite_ptfe_brass_0.2.inst.cfg +++ b/resources/variants/atmat/atom3_lite_ptfe_brass_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_ptfe_brass_0.4.inst.cfg b/resources/variants/atmat/atom3_lite_ptfe_brass_0.4.inst.cfg index 8b1fcf08d15..c52d2bd3ab1 100644 --- a/resources/variants/atmat/atom3_lite_ptfe_brass_0.4.inst.cfg +++ b/resources/variants/atmat/atom3_lite_ptfe_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_ptfe_brass_0.6.inst.cfg b/resources/variants/atmat/atom3_lite_ptfe_brass_0.6.inst.cfg index e2dee19e6c1..1d46ba57679 100644 --- a/resources/variants/atmat/atom3_lite_ptfe_brass_0.6.inst.cfg +++ b/resources/variants/atmat/atom3_lite_ptfe_brass_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atom3_ptfe_brass_0.2.inst.cfg b/resources/variants/atmat/atom3_ptfe_brass_0.2.inst.cfg index 1c80d91604f..3702ab85990 100644 --- a/resources/variants/atmat/atom3_ptfe_brass_0.2.inst.cfg +++ b/resources/variants/atmat/atom3_ptfe_brass_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atom3_ptfe_brass_0.4.inst.cfg b/resources/variants/atmat/atom3_ptfe_brass_0.4.inst.cfg index b8a92d06f34..e121b2d94ef 100644 --- a/resources/variants/atmat/atom3_ptfe_brass_0.4.inst.cfg +++ b/resources/variants/atmat/atom3_ptfe_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/atmat/atom3_ptfe_brass_0.6.inst.cfg b/resources/variants/atmat/atom3_ptfe_brass_0.6.inst.cfg index ae11da958a9..168d4ee0016 100644 --- a/resources/variants/atmat/atom3_ptfe_brass_0.6.inst.cfg +++ b/resources/variants/atmat/atom3_ptfe_brass_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_0.2.inst.cfg b/resources/variants/biqu/biqu_b1_0.2.inst.cfg index 33cc8cddf06..bd07a701988 100755 --- a/resources/variants/biqu/biqu_b1_0.2.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_0.3.inst.cfg b/resources/variants/biqu/biqu_b1_0.3.inst.cfg index 5eda2edd831..1a657b58742 100755 --- a/resources/variants/biqu/biqu_b1_0.3.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_0.4.inst.cfg b/resources/variants/biqu/biqu_b1_0.4.inst.cfg index 20e5e4e90af..34544d9d2b7 100755 --- a/resources/variants/biqu/biqu_b1_0.4.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_0.5.inst.cfg b/resources/variants/biqu/biqu_b1_0.5.inst.cfg index 6fa7a4543b6..e20297039af 100755 --- a/resources/variants/biqu/biqu_b1_0.5.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_0.6.inst.cfg b/resources/variants/biqu/biqu_b1_0.6.inst.cfg index fbeeb8ba59f..620b5c385d3 100755 --- a/resources/variants/biqu/biqu_b1_0.6.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_0.8.inst.cfg b/resources/variants/biqu/biqu_b1_0.8.inst.cfg index 39b4ffdc2b2..2ba4ad82353 100755 --- a/resources/variants/biqu/biqu_b1_0.8.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.2.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.2.inst.cfg index f5fd67b87d6..dd3838dcb3c 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.2.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.3.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.3.inst.cfg index d6cfb2a776f..665915ca7bd 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.3.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.4.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.4.inst.cfg index 6cde06bf356..c9d4b008d40 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.4.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.5.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.5.inst.cfg index 8fcb3f9788d..6669153af02 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.5.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.6.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.6.inst.cfg index 40bf791ec53..ec42aefc617 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.6.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.8.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.8.inst.cfg index 514a3792325..670956305c1 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.8.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/biqu/biqu_base_0.2.inst.cfg b/resources/variants/biqu/biqu_base_0.2.inst.cfg index b42d0c87f35..13643d69ec8 100755 --- a/resources/variants/biqu/biqu_base_0.2.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/biqu/biqu_base_0.3.inst.cfg b/resources/variants/biqu/biqu_base_0.3.inst.cfg index f486854eebb..3d92db130a3 100755 --- a/resources/variants/biqu/biqu_base_0.3.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/biqu/biqu_base_0.4.inst.cfg b/resources/variants/biqu/biqu_base_0.4.inst.cfg index 4236b861780..57494b698b5 100755 --- a/resources/variants/biqu/biqu_base_0.4.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/biqu/biqu_base_0.5.inst.cfg b/resources/variants/biqu/biqu_base_0.5.inst.cfg index 37f5505bded..cc8c9768a07 100755 --- a/resources/variants/biqu/biqu_base_0.5.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/biqu/biqu_base_0.6.inst.cfg b/resources/variants/biqu/biqu_base_0.6.inst.cfg index 9793718e5da..36de8654120 100755 --- a/resources/variants/biqu/biqu_base_0.6.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/biqu/biqu_base_0.8.inst.cfg b/resources/variants/biqu/biqu_base_0.8.inst.cfg index f720f7fd9cf..45f79ec8464 100755 --- a/resources/variants/biqu/biqu_base_0.8.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.2.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.2.inst.cfg index 5498de417a6..e1477d6752d 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.2.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.3.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.3.inst.cfg index 86be976e203..e811da5750f 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.3.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.4.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.4.inst.cfg index 8c04da610d4..5fe45484411 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.4.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.5.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.5.inst.cfg index f886e6b1061..f55767ede31 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.5.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.6.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.6.inst.cfg index 74e59e38c85..f19b140683d 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.6.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.8.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.8.inst.cfg index 70d8d131b49..7acc8686fbb 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.8.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.2.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.2.inst.cfg index cb199db0263..86bb2dd6704 100755 --- a/resources/variants/biqu/biqu_hurakan_0.2.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.3.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.3.inst.cfg index d3ceab8f55e..4eb7a8011ad 100755 --- a/resources/variants/biqu/biqu_hurakan_0.3.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.4.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.4.inst.cfg index a4ef00cc0e6..807cb5ddd67 100755 --- a/resources/variants/biqu/biqu_hurakan_0.4.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.5.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.5.inst.cfg index 045a3f99cc9..daceb747d72 100755 --- a/resources/variants/biqu/biqu_hurakan_0.5.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.6.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.6.inst.cfg index a69f4fa8161..544623031bd 100755 --- a/resources/variants/biqu/biqu_hurakan_0.6.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.8.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.8.inst.cfg index 8bad103e9d2..8ec65206738 100755 --- a/resources/variants/biqu/biqu_hurakan_0.8.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.20.inst.cfg b/resources/variants/blocks/blocks_mkii_0.20.inst.cfg index c4fe2e68f29..167ef6d5592 100644 --- a/resources/variants/blocks/blocks_mkii_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.30.inst.cfg b/resources/variants/blocks/blocks_mkii_0.30.inst.cfg index 5351019fc3b..eb0d9014968 100644 --- a/resources/variants/blocks/blocks_mkii_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.40.inst.cfg b/resources/variants/blocks/blocks_mkii_0.40.inst.cfg index 2b7a2edf752..ec2f9874589 100644 --- a/resources/variants/blocks/blocks_mkii_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.50.inst.cfg b/resources/variants/blocks/blocks_mkii_0.50.inst.cfg index 8a186ad31a4..ae89e827618 100644 --- a/resources/variants/blocks/blocks_mkii_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.60.inst.cfg b/resources/variants/blocks/blocks_mkii_0.60.inst.cfg index 9ee17968fc0..0426baadd78 100644 --- a/resources/variants/blocks/blocks_mkii_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.80.inst.cfg b/resources/variants/blocks/blocks_mkii_0.80.inst.cfg index d2847e54105..cc602bfdc80 100644 --- a/resources/variants/blocks/blocks_mkii_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.20.inst.cfg b/resources/variants/blocks/blocks_one_0.20.inst.cfg index f85d14be4f9..fe8cb9c8655 100644 --- a/resources/variants/blocks/blocks_one_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.30.inst.cfg b/resources/variants/blocks/blocks_one_0.30.inst.cfg index da4aecc1ff6..65b86a5d55c 100644 --- a/resources/variants/blocks/blocks_one_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.40.inst.cfg b/resources/variants/blocks/blocks_one_0.40.inst.cfg index fc00de5356d..1c6e33046cb 100644 --- a/resources/variants/blocks/blocks_one_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.50.inst.cfg b/resources/variants/blocks/blocks_one_0.50.inst.cfg index af4d3206f19..6163a0a0d5e 100644 --- a/resources/variants/blocks/blocks_one_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.60.inst.cfg b/resources/variants/blocks/blocks_one_0.60.inst.cfg index ef2c7d5e8d3..82b6799ae97 100644 --- a/resources/variants/blocks/blocks_one_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.80.inst.cfg b/resources/variants/blocks/blocks_one_0.80.inst.cfg index 933a875b53c..abca2ad27cc 100644 --- a/resources/variants/blocks/blocks_one_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_0.40.inst.cfg b/resources/variants/blocks/blocks_pros100_0.40.inst.cfg index b927508991f..1855a2ed5e2 100644 --- a/resources/variants/blocks/blocks_pros100_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_0.50.inst.cfg b/resources/variants/blocks/blocks_pros100_0.50.inst.cfg index 8c68a6ced70..b731e20f89f 100644 --- a/resources/variants/blocks/blocks_pros100_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_0.60.inst.cfg b/resources/variants/blocks/blocks_pros100_0.60.inst.cfg index e3994bfe5e6..c3a6ac9bbbb 100644 --- a/resources/variants/blocks/blocks_pros100_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_0.80.inst.cfg b/resources/variants/blocks/blocks_pros100_0.80.inst.cfg index df4c5e7047e..a08712376be 100644 --- a/resources/variants/blocks/blocks_pros100_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_1.0.inst.cfg b/resources/variants/blocks/blocks_pros100_1.0.inst.cfg index ea3718470af..3f968bf5203 100644 --- a/resources/variants/blocks/blocks_pros100_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_1.2.inst.cfg b/resources/variants/blocks/blocks_pros100_1.2.inst.cfg index 88cb2d46b25..cba7d886f5f 100644 --- a/resources/variants/blocks/blocks_pros100_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_0.40.inst.cfg b/resources/variants/blocks/blocks_pros30_0.40.inst.cfg index f5b36fcb86a..d5686657600 100644 --- a/resources/variants/blocks/blocks_pros30_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_0.50.inst.cfg b/resources/variants/blocks/blocks_pros30_0.50.inst.cfg index 72a17f4c666..f023173e28f 100644 --- a/resources/variants/blocks/blocks_pros30_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_0.60.inst.cfg b/resources/variants/blocks/blocks_pros30_0.60.inst.cfg index e8b9735ebbc..7479ff06a45 100644 --- a/resources/variants/blocks/blocks_pros30_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_0.80.inst.cfg b/resources/variants/blocks/blocks_pros30_0.80.inst.cfg index c7eda949551..4ffb9f2a13c 100644 --- a/resources/variants/blocks/blocks_pros30_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_1.0.inst.cfg b/resources/variants/blocks/blocks_pros30_1.0.inst.cfg index 6a8101f419a..eca0070ed3e 100644 --- a/resources/variants/blocks/blocks_pros30_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_1.2.inst.cfg b/resources/variants/blocks/blocks_pros30_1.2.inst.cfg index b63d6d49305..4b1eda711ad 100644 --- a/resources/variants/blocks/blocks_pros30_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_ht_0.3.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.3.inst.cfg index f01cdae8738..6d26776aadc 100644 --- a/resources/variants/blocks/blocks_r21_ht_0.3.inst.cfg +++ b/resources/variants/blocks/blocks_r21_ht_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_ht_0.4.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.4.inst.cfg index 953c109864a..e3c44dfd886 100644 --- a/resources/variants/blocks/blocks_r21_ht_0.4.inst.cfg +++ b/resources/variants/blocks/blocks_r21_ht_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_ht_0.5.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.5.inst.cfg index f37090cc343..67a08f1eca3 100644 --- a/resources/variants/blocks/blocks_r21_ht_0.5.inst.cfg +++ b/resources/variants/blocks/blocks_r21_ht_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_ht_0.6.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.6.inst.cfg index 884d6985e8d..0bf24b9a8b4 100644 --- a/resources/variants/blocks/blocks_r21_ht_0.6.inst.cfg +++ b/resources/variants/blocks/blocks_r21_ht_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_ht_0.8.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.8.inst.cfg index 503e7dbc379..6730ce6147c 100644 --- a/resources/variants/blocks/blocks_r21_ht_0.8.inst.cfg +++ b/resources/variants/blocks/blocks_r21_ht_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.20.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.20.inst.cfg index 92520d74123..29d404547e4 100644 --- a/resources/variants/blocks/blocks_r21_st_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.30.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.30.inst.cfg index c3ef2742348..10aa0527419 100644 --- a/resources/variants/blocks/blocks_r21_st_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.40.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.40.inst.cfg index 0a70809ed48..6e596d6f55c 100644 --- a/resources/variants/blocks/blocks_r21_st_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.50.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.50.inst.cfg index 72280956ca6..90eb8127dd9 100644 --- a/resources/variants/blocks/blocks_r21_st_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.60.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.60.inst.cfg index b0a2437841b..58f45943b96 100644 --- a/resources/variants/blocks/blocks_r21_st_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.80.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.80.inst.cfg index 0f4f86afc66..4b63981c604 100644 --- a/resources/variants/blocks/blocks_r21_st_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_1.0.inst.cfg b/resources/variants/blocks/blocks_r21_st_1.0.inst.cfg index 65c00081e67..ed49040e452 100644 --- a/resources/variants/blocks/blocks_r21_st_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_1.2.inst.cfg b/resources/variants/blocks/blocks_r21_st_1.2.inst.cfg index f7550f5709a..a1ca742b055 100644 --- a/resources/variants/blocks/blocks_r21_st_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_ht_0.3.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.3.inst.cfg index ac3cfb8a778..e6255aaf4bc 100644 --- a/resources/variants/blocks/blocks_rd50_ht_0.3.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_ht_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_ht_0.4.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.4.inst.cfg index 930ef1c9565..0af109a035f 100644 --- a/resources/variants/blocks/blocks_rd50_ht_0.4.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_ht_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_ht_0.5.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.5.inst.cfg index ee7c7af5683..d34ed634743 100644 --- a/resources/variants/blocks/blocks_rd50_ht_0.5.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_ht_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_ht_0.6.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.6.inst.cfg index cd4a03a63f3..531bbc5159b 100644 --- a/resources/variants/blocks/blocks_rd50_ht_0.6.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_ht_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_ht_0.8.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.8.inst.cfg index ed2b2c05e80..df29382e6bb 100644 --- a/resources/variants/blocks/blocks_rd50_ht_0.8.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_ht_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.20.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.20.inst.cfg index 3c6659b8779..c340c7f8dc8 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.30.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.30.inst.cfg index b6479ccf55c..577c37ac1b8 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.40.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.40.inst.cfg index fedb0eb3cb5..174794aa8b5 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.50.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.50.inst.cfg index 4706b132649..d51641b6562 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.60.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.60.inst.cfg index f3438683c31..bfb6e03bd60 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.80.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.80.inst.cfg index e3392fef46d..ee98152381a 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_1.0.inst.cfg b/resources/variants/blocks/blocks_rd50_st_1.0.inst.cfg index f0267d08012..2f017c559b8 100644 --- a/resources/variants/blocks/blocks_rd50_st_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_1.2.inst.cfg b/resources/variants/blocks/blocks_rd50_st_1.2.inst.cfg index f59324621b4..ca99d821776 100644 --- a/resources/variants/blocks/blocks_rd50_st_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.3.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.3.inst.cfg index 91c2314f6c0..aebe3c094e4 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_ht_0.3.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.4.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.4.inst.cfg index 4615f9296db..d834ee11e76 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_ht_0.4.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.5.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.5.inst.cfg index 0b9a42a44f0..1903f4b568e 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_ht_0.5.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.6.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.6.inst.cfg index ec94cf47007..27986f2d81a 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_ht_0.6.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.8.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.8.inst.cfg index f2ea9ceac0c..29f328c9c13 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_ht_0.8.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.20.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.20.inst.cfg index 6cd7003c11f..333f6402860 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.30.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.30.inst.cfg index b47b774176e..3c21f6eb335 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.40.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.40.inst.cfg index 23bfc0aeddc..d1600007ea3 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.50.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.50.inst.cfg index 9734deca273..7ce36f41c22 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.60.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.60.inst.cfg index 556ca65c965..4d345c42b9b 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.80.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.80.inst.cfg index 7a4ce91202b..34ebf3f7c0b 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_1.0.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_1.0.inst.cfg index d0f4b458fe3..ce6e8f932ca 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_1.2.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_1.2.inst.cfg index 1b7173778ed..373e6e8ad2c 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.3.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.3.inst.cfg index bc964011f8e..cef05a9ea8e 100644 --- a/resources/variants/blocks/blocks_rd50mirror_ht_0.3.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.4.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.4.inst.cfg index 07e845e9d6e..c6d548b993b 100644 --- a/resources/variants/blocks/blocks_rd50mirror_ht_0.4.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.5.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.5.inst.cfg index 725cb8c639e..ff2ef479faf 100644 --- a/resources/variants/blocks/blocks_rd50mirror_ht_0.5.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.6.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.6.inst.cfg index 0d0f9628f71..562ed73e929 100644 --- a/resources/variants/blocks/blocks_rd50mirror_ht_0.6.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.8.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.8.inst.cfg index 00e1b1c48cb..277a0dcb9ee 100644 --- a/resources/variants/blocks/blocks_rd50mirror_ht_0.8.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.20.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.20.inst.cfg index a61baae115b..d813be41230 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.30.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.30.inst.cfg index 2e13045b90d..505a0b78139 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.40.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.40.inst.cfg index 85e6363e904..1184a973602 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.50.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.50.inst.cfg index cf56050d822..51b8dd0926b 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.60.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.60.inst.cfg index d3e8d29a658..24ab1bc2075 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.80.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.80.inst.cfg index 5a13d8d69f9..e3a6b373dbd 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_1.0.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_1.0.inst.cfg index eb1272e9f3a..da5bb72adba 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_1.2.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_1.2.inst.cfg index f59324621b4..ca99d821776 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.20.inst.cfg b/resources/variants/blocks/blocks_zero_0.20.inst.cfg index 426cb0ef770..d37c55e9272 100644 --- a/resources/variants/blocks/blocks_zero_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.30.inst.cfg b/resources/variants/blocks/blocks_zero_0.30.inst.cfg index 150e957f361..9d669d5c712 100644 --- a/resources/variants/blocks/blocks_zero_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.40.inst.cfg b/resources/variants/blocks/blocks_zero_0.40.inst.cfg index f58f3c4b467..c8ed122a982 100644 --- a/resources/variants/blocks/blocks_zero_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.50.inst.cfg b/resources/variants/blocks/blocks_zero_0.50.inst.cfg index 5114247fe11..fa967614662 100644 --- a/resources/variants/blocks/blocks_zero_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.60.inst.cfg b/resources/variants/blocks/blocks_zero_0.60.inst.cfg index 26bedb14485..e6560787dba 100644 --- a/resources/variants/blocks/blocks_zero_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.80.inst.cfg b/resources/variants/blocks/blocks_zero_0.80.inst.cfg index 525ab6dca80..4d4f0d2cea9 100644 --- a/resources/variants/blocks/blocks_zero_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/cartesio/cartesio_0.25.inst.cfg b/resources/variants/cartesio/cartesio_0.25.inst.cfg index acff9bda4d0..bfd0306f16c 100644 --- a/resources/variants/cartesio/cartesio_0.25.inst.cfg +++ b/resources/variants/cartesio/cartesio_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Cartesio hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/cartesio/cartesio_0.4.inst.cfg b/resources/variants/cartesio/cartesio_0.4.inst.cfg index 10b56a610e0..3e8936d09b1 100644 --- a/resources/variants/cartesio/cartesio_0.4.inst.cfg +++ b/resources/variants/cartesio/cartesio_0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Cartesio hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/cartesio/cartesio_0.8.inst.cfg b/resources/variants/cartesio/cartesio_0.8.inst.cfg index 3e4662c89c0..6e87eb69b41 100644 --- a/resources/variants/cartesio/cartesio_0.8.inst.cfg +++ b/resources/variants/cartesio/cartesio_0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Cartesio hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/crazy3dprint/crazy3dprint_base_0.40.inst.cfg b/resources/variants/crazy3dprint/crazy3dprint_base_0.40.inst.cfg index eb4548b7b5f..730ec5b5f7e 100644 --- a/resources/variants/crazy3dprint/crazy3dprint_base_0.40.inst.cfg +++ b/resources/variants/crazy3dprint/crazy3dprint_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/crazy3dprint/crazy3dprint_cz_300_0.40.inst.cfg b/resources/variants/crazy3dprint/crazy3dprint_cz_300_0.40.inst.cfg index 3b2312d0b4d..8855dd7021d 100644 --- a/resources/variants/crazy3dprint/crazy3dprint_cz_300_0.40.inst.cfg +++ b/resources/variants/crazy3dprint/crazy3dprint_cz_300_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.2.inst.cfg b/resources/variants/creality/creality_base_0.2.inst.cfg index 8e7c2994093..d163876973e 100644 --- a/resources/variants/creality/creality_base_0.2.inst.cfg +++ b/resources/variants/creality/creality_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.3.inst.cfg b/resources/variants/creality/creality_base_0.3.inst.cfg index d2422e5d804..c21f6d9c947 100644 --- a/resources/variants/creality/creality_base_0.3.inst.cfg +++ b/resources/variants/creality/creality_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.4.inst.cfg b/resources/variants/creality/creality_base_0.4.inst.cfg index 652c9b3f652..7b450e3de04 100644 --- a/resources/variants/creality/creality_base_0.4.inst.cfg +++ b/resources/variants/creality/creality_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.5.inst.cfg b/resources/variants/creality/creality_base_0.5.inst.cfg index 59c011bf868..d78687ce4b3 100644 --- a/resources/variants/creality/creality_base_0.5.inst.cfg +++ b/resources/variants/creality/creality_base_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.6.inst.cfg b/resources/variants/creality/creality_base_0.6.inst.cfg index 2c2c36bf6aa..6022e0bf1b6 100644 --- a/resources/variants/creality/creality_base_0.6.inst.cfg +++ b/resources/variants/creality/creality_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.8.inst.cfg b/resources/variants/creality/creality_base_0.8.inst.cfg index 88c2f2427c8..ff41e7e5621 100644 --- a/resources/variants/creality/creality_base_0.8.inst.cfg +++ b/resources/variants/creality/creality_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_base_1.0.inst.cfg b/resources/variants/creality/creality_base_1.0.inst.cfg index 5954b7fcd0b..1a18b2fcb73 100644 --- a/resources/variants/creality/creality_base_1.0.inst.cfg +++ b/resources/variants/creality/creality_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr100_0.4.inst.cfg b/resources/variants/creality/creality_cr100_0.4.inst.cfg index 5d28b0baa90..a0b2f5caa4e 100644 --- a/resources/variants/creality/creality_cr100_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr100_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.2.inst.cfg b/resources/variants/creality/creality_cr10_0.2.inst.cfg index 3b2924a7585..afeb46fa7e1 100644 --- a/resources/variants/creality/creality_cr10_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.3.inst.cfg b/resources/variants/creality/creality_cr10_0.3.inst.cfg index 0cc70a0ec76..5babe4a2d08 100644 --- a/resources/variants/creality/creality_cr10_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.4.inst.cfg b/resources/variants/creality/creality_cr10_0.4.inst.cfg index 19b8b2abb7a..6267bb8215f 100644 --- a/resources/variants/creality/creality_cr10_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.5.inst.cfg b/resources/variants/creality/creality_cr10_0.5.inst.cfg index 78805b4af75..939e73dbcd5 100644 --- a/resources/variants/creality/creality_cr10_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.6.inst.cfg b/resources/variants/creality/creality_cr10_0.6.inst.cfg index 3059d671e55..1f873276450 100644 --- a/resources/variants/creality/creality_cr10_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.8.inst.cfg b/resources/variants/creality/creality_cr10_0.8.inst.cfg index 48c85895be2..9cf84420b88 100644 --- a/resources/variants/creality/creality_cr10_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_1.0.inst.cfg b/resources/variants/creality/creality_cr10_1.0.inst.cfg index d58fca26f26..285cb7837c3 100644 --- a/resources/variants/creality/creality_cr10_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.2.inst.cfg b/resources/variants/creality/creality_cr10max_0.2.inst.cfg index 1fcb49f147e..412c2d30160 100644 --- a/resources/variants/creality/creality_cr10max_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.3.inst.cfg b/resources/variants/creality/creality_cr10max_0.3.inst.cfg index ec92685f222..5ee839276e4 100644 --- a/resources/variants/creality/creality_cr10max_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.4.inst.cfg b/resources/variants/creality/creality_cr10max_0.4.inst.cfg index 4aab97419c5..04b56b2592c 100644 --- a/resources/variants/creality/creality_cr10max_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.5.inst.cfg b/resources/variants/creality/creality_cr10max_0.5.inst.cfg index b7b503a1d5d..b398c33ecf4 100644 --- a/resources/variants/creality/creality_cr10max_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.6.inst.cfg b/resources/variants/creality/creality_cr10max_0.6.inst.cfg index 0caad2868d1..8708331abfd 100644 --- a/resources/variants/creality/creality_cr10max_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.8.inst.cfg b/resources/variants/creality/creality_cr10max_0.8.inst.cfg index 8b379f0c6e2..526c12726e5 100644 --- a/resources/variants/creality/creality_cr10max_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_1.0.inst.cfg b/resources/variants/creality/creality_cr10max_1.0.inst.cfg index dc9507c40d2..d7ba5c8ecca 100644 --- a/resources/variants/creality/creality_cr10max_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10max_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.2.inst.cfg b/resources/variants/creality/creality_cr10mini_0.2.inst.cfg index 8d17b568028..a83558e7591 100644 --- a/resources/variants/creality/creality_cr10mini_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.3.inst.cfg b/resources/variants/creality/creality_cr10mini_0.3.inst.cfg index 5a97059d3f2..64b46bd4e96 100644 --- a/resources/variants/creality/creality_cr10mini_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.4.inst.cfg b/resources/variants/creality/creality_cr10mini_0.4.inst.cfg index eca0fb5f31b..52b976b78c6 100644 --- a/resources/variants/creality/creality_cr10mini_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.5.inst.cfg b/resources/variants/creality/creality_cr10mini_0.5.inst.cfg index bb8052aa0f8..135b7d488c7 100644 --- a/resources/variants/creality/creality_cr10mini_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.6.inst.cfg b/resources/variants/creality/creality_cr10mini_0.6.inst.cfg index d0bd98cf249..b719afa194c 100644 --- a/resources/variants/creality/creality_cr10mini_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.8.inst.cfg b/resources/variants/creality/creality_cr10mini_0.8.inst.cfg index 6024084037d..9dfd0181d04 100644 --- a/resources/variants/creality/creality_cr10mini_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_1.0.inst.cfg b/resources/variants/creality/creality_cr10mini_1.0.inst.cfg index 3d2285791e8..6fe3a59bf63 100644 --- a/resources/variants/creality/creality_cr10mini_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.2.inst.cfg b/resources/variants/creality/creality_cr10s4_0.2.inst.cfg index cbd53e4a05b..6e064cef5e6 100644 --- a/resources/variants/creality/creality_cr10s4_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.3.inst.cfg b/resources/variants/creality/creality_cr10s4_0.3.inst.cfg index 7189e5d3e07..dc289384567 100644 --- a/resources/variants/creality/creality_cr10s4_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.4.inst.cfg b/resources/variants/creality/creality_cr10s4_0.4.inst.cfg index 2429c773e71..8151b7fdfb7 100644 --- a/resources/variants/creality/creality_cr10s4_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.5.inst.cfg b/resources/variants/creality/creality_cr10s4_0.5.inst.cfg index 5382fb830ab..af422f3a2bb 100644 --- a/resources/variants/creality/creality_cr10s4_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.6.inst.cfg b/resources/variants/creality/creality_cr10s4_0.6.inst.cfg index 4b65a1c311d..41c7c3e1b2e 100644 --- a/resources/variants/creality/creality_cr10s4_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.8.inst.cfg b/resources/variants/creality/creality_cr10s4_0.8.inst.cfg index 50460847e46..cdb30a7bdd7 100644 --- a/resources/variants/creality/creality_cr10s4_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_1.0.inst.cfg b/resources/variants/creality/creality_cr10s4_1.0.inst.cfg index 590003b0a7e..4e40f38ba41 100644 --- a/resources/variants/creality/creality_cr10s4_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.2.inst.cfg b/resources/variants/creality/creality_cr10s5_0.2.inst.cfg index 1e2afc21edb..288ed89049a 100644 --- a/resources/variants/creality/creality_cr10s5_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.3.inst.cfg b/resources/variants/creality/creality_cr10s5_0.3.inst.cfg index 481adf21a55..1f5c0518df3 100644 --- a/resources/variants/creality/creality_cr10s5_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.4.inst.cfg b/resources/variants/creality/creality_cr10s5_0.4.inst.cfg index 8edccc6fbc8..8f081c75aef 100644 --- a/resources/variants/creality/creality_cr10s5_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.5.inst.cfg b/resources/variants/creality/creality_cr10s5_0.5.inst.cfg index be31c1a1754..bd57815fa59 100644 --- a/resources/variants/creality/creality_cr10s5_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.6.inst.cfg b/resources/variants/creality/creality_cr10s5_0.6.inst.cfg index 55f55cc02c1..f6994925a45 100644 --- a/resources/variants/creality/creality_cr10s5_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.8.inst.cfg b/resources/variants/creality/creality_cr10s5_0.8.inst.cfg index 79117e99709..58a8f9b487c 100644 --- a/resources/variants/creality/creality_cr10s5_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_1.0.inst.cfg b/resources/variants/creality/creality_cr10s5_1.0.inst.cfg index dab77489252..099900111eb 100644 --- a/resources/variants/creality/creality_cr10s5_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.2.inst.cfg b/resources/variants/creality/creality_cr10s_0.2.inst.cfg index eb7dbfb848a..31d415dbc1b 100644 --- a/resources/variants/creality/creality_cr10s_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.3.inst.cfg b/resources/variants/creality/creality_cr10s_0.3.inst.cfg index 164abd5f844..75696e2e53a 100644 --- a/resources/variants/creality/creality_cr10s_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.4.inst.cfg b/resources/variants/creality/creality_cr10s_0.4.inst.cfg index 9a17bb77ff9..ddc5d01d0e9 100644 --- a/resources/variants/creality/creality_cr10s_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.5.inst.cfg b/resources/variants/creality/creality_cr10s_0.5.inst.cfg index f4e6e0a7287..9591d2248c5 100644 --- a/resources/variants/creality/creality_cr10s_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.6.inst.cfg b/resources/variants/creality/creality_cr10s_0.6.inst.cfg index ed90ef591ad..a67f6b10d24 100644 --- a/resources/variants/creality/creality_cr10s_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.8.inst.cfg b/resources/variants/creality/creality_cr10s_0.8.inst.cfg index 359440b6dab..58ec50067ca 100644 --- a/resources/variants/creality/creality_cr10s_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_1.0.inst.cfg b/resources/variants/creality/creality_cr10s_1.0.inst.cfg index 06c6ed0c84b..bea99edabd4 100644 --- a/resources/variants/creality/creality_cr10s_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10s_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.2.inst.cfg b/resources/variants/creality/creality_cr10smart_0.2.inst.cfg index 6684f0c83d6..5f702aa5302 100644 --- a/resources/variants/creality/creality_cr10smart_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.3.inst.cfg b/resources/variants/creality/creality_cr10smart_0.3.inst.cfg index 32e8f48e30a..c42ec54840f 100644 --- a/resources/variants/creality/creality_cr10smart_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.4.inst.cfg b/resources/variants/creality/creality_cr10smart_0.4.inst.cfg index 0e6e105f38c..bc126d3f2d1 100644 --- a/resources/variants/creality/creality_cr10smart_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.5.inst.cfg b/resources/variants/creality/creality_cr10smart_0.5.inst.cfg index 9e32aed915b..20b89226e11 100644 --- a/resources/variants/creality/creality_cr10smart_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.6.inst.cfg b/resources/variants/creality/creality_cr10smart_0.6.inst.cfg index 7ebd75a340e..fab1010ae64 100644 --- a/resources/variants/creality/creality_cr10smart_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.8.inst.cfg b/resources/variants/creality/creality_cr10smart_0.8.inst.cfg index 8877a939968..041ac8c3b68 100644 --- a/resources/variants/creality/creality_cr10smart_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_1.0.inst.cfg b/resources/variants/creality/creality_cr10smart_1.0.inst.cfg index ee740ac8ba0..51373cdf990 100644 --- a/resources/variants/creality/creality_cr10smart_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.2.inst.cfg b/resources/variants/creality/creality_cr10spro_0.2.inst.cfg index 13be034c1bf..dde72987117 100644 --- a/resources/variants/creality/creality_cr10spro_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.3.inst.cfg b/resources/variants/creality/creality_cr10spro_0.3.inst.cfg index 2f11107b6bb..301174ba677 100644 --- a/resources/variants/creality/creality_cr10spro_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.4.inst.cfg b/resources/variants/creality/creality_cr10spro_0.4.inst.cfg index cc38161b0fc..92d934776b3 100644 --- a/resources/variants/creality/creality_cr10spro_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.5.inst.cfg b/resources/variants/creality/creality_cr10spro_0.5.inst.cfg index 60cefb9afbb..f6745d55b27 100644 --- a/resources/variants/creality/creality_cr10spro_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.6.inst.cfg b/resources/variants/creality/creality_cr10spro_0.6.inst.cfg index 33f16b154db..f046370e091 100644 --- a/resources/variants/creality/creality_cr10spro_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.8.inst.cfg b/resources/variants/creality/creality_cr10spro_0.8.inst.cfg index 8c90a1cb5d6..8373a2c8198 100644 --- a/resources/variants/creality/creality_cr10spro_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_1.0.inst.cfg b/resources/variants/creality/creality_cr10spro_1.0.inst.cfg index 8f57bfa8e64..2e127dd9fa4 100644 --- a/resources/variants/creality/creality_cr10spro_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.2.inst.cfg b/resources/variants/creality/creality_cr20_0.2.inst.cfg index e8335c4e202..ea037b6ffb8 100644 --- a/resources/variants/creality/creality_cr20_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.3.inst.cfg b/resources/variants/creality/creality_cr20_0.3.inst.cfg index 81f86270950..33262eeffc6 100644 --- a/resources/variants/creality/creality_cr20_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.4.inst.cfg b/resources/variants/creality/creality_cr20_0.4.inst.cfg index 6d75fb33e25..cd7e827812d 100644 --- a/resources/variants/creality/creality_cr20_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.5.inst.cfg b/resources/variants/creality/creality_cr20_0.5.inst.cfg index 6e3d6331da5..eeaf6d7f533 100644 --- a/resources/variants/creality/creality_cr20_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.6.inst.cfg b/resources/variants/creality/creality_cr20_0.6.inst.cfg index 0b8d92acbae..091117252a3 100644 --- a/resources/variants/creality/creality_cr20_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.8.inst.cfg b/resources/variants/creality/creality_cr20_0.8.inst.cfg index 734c9090f52..d30e5e5d942 100644 --- a/resources/variants/creality/creality_cr20_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_1.0.inst.cfg b/resources/variants/creality/creality_cr20_1.0.inst.cfg index 8ac15853b38..e049a09d903 100644 --- a/resources/variants/creality/creality_cr20_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr20_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.2.inst.cfg b/resources/variants/creality/creality_cr20pro_0.2.inst.cfg index 96506c32898..6a95f5a2944 100644 --- a/resources/variants/creality/creality_cr20pro_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.3.inst.cfg b/resources/variants/creality/creality_cr20pro_0.3.inst.cfg index d9aa9b276b1..a1c35d864f9 100644 --- a/resources/variants/creality/creality_cr20pro_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.4.inst.cfg b/resources/variants/creality/creality_cr20pro_0.4.inst.cfg index 0aa80d1faee..74dd69988b6 100644 --- a/resources/variants/creality/creality_cr20pro_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.5.inst.cfg b/resources/variants/creality/creality_cr20pro_0.5.inst.cfg index 2bb70c7b7a7..0f58c2a686f 100644 --- a/resources/variants/creality/creality_cr20pro_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.6.inst.cfg b/resources/variants/creality/creality_cr20pro_0.6.inst.cfg index b43b8e29ff3..f8c1f8850ca 100644 --- a/resources/variants/creality/creality_cr20pro_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.8.inst.cfg b/resources/variants/creality/creality_cr20pro_0.8.inst.cfg index d006d966de2..83998525b45 100644 --- a/resources/variants/creality/creality_cr20pro_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_1.0.inst.cfg b/resources/variants/creality/creality_cr20pro_1.0.inst.cfg index 6c8be83737b..52516050cd1 100644 --- a/resources/variants/creality/creality_cr20pro_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.2.inst.cfg b/resources/variants/creality/creality_cr6se_0.2.inst.cfg index 9932ff2a43b..3d3fb182f93 100644 --- a/resources/variants/creality/creality_cr6se_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.3.inst.cfg b/resources/variants/creality/creality_cr6se_0.3.inst.cfg index 2c0a808113c..feeeac902d3 100644 --- a/resources/variants/creality/creality_cr6se_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.4.inst.cfg b/resources/variants/creality/creality_cr6se_0.4.inst.cfg index 0e8580d9d36..7af510f84f5 100644 --- a/resources/variants/creality/creality_cr6se_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.5.inst.cfg b/resources/variants/creality/creality_cr6se_0.5.inst.cfg index dbfff554e68..35abb7341de 100644 --- a/resources/variants/creality/creality_cr6se_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.6.inst.cfg b/resources/variants/creality/creality_cr6se_0.6.inst.cfg index 11b763d74c1..300487bd15b 100644 --- a/resources/variants/creality/creality_cr6se_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.8.inst.cfg b/resources/variants/creality/creality_cr6se_0.8.inst.cfg index 431baae79c5..262e286962d 100644 --- a/resources/variants/creality/creality_cr6se_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_1.0.inst.cfg b/resources/variants/creality/creality_cr6se_1.0.inst.cfg index ac7d9dbcb6c..9d56cbe2d06 100644 --- a/resources/variants/creality/creality_cr6se_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr6se_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_0.2.inst.cfg b/resources/variants/creality/creality_ender2_0.2.inst.cfg index 8f30d0f6fe2..d7d9b84b81b 100644 --- a/resources/variants/creality/creality_ender2_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_0.3.inst.cfg b/resources/variants/creality/creality_ender2_0.3.inst.cfg index 0784478a1b6..bea726a4195 100644 --- a/resources/variants/creality/creality_ender2_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_0.4.inst.cfg b/resources/variants/creality/creality_ender2_0.4.inst.cfg index 2ac7aba90f6..c5a3718023e 100644 --- a/resources/variants/creality/creality_ender2_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_0.5.inst.cfg b/resources/variants/creality/creality_ender2_0.5.inst.cfg index b580a5cde6c..322d4cf86ab 100644 --- a/resources/variants/creality/creality_ender2_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_0.6.inst.cfg b/resources/variants/creality/creality_ender2_0.6.inst.cfg index c0907e9ad70..71ad4b4e0ab 100644 --- a/resources/variants/creality/creality_ender2_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_0.8.inst.cfg b/resources/variants/creality/creality_ender2_0.8.inst.cfg index e3c6805cce2..f74437fe8c2 100644 --- a/resources/variants/creality/creality_ender2_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_1.0.inst.cfg b/resources/variants/creality/creality_ender2_1.0.inst.cfg index 8b0eb7362c2..18b9b33507e 100644 --- a/resources/variants/creality/creality_ender2_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender2_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.2.inst.cfg b/resources/variants/creality/creality_ender3_0.2.inst.cfg index 454ec0377be..969a476b0b4 100644 --- a/resources/variants/creality/creality_ender3_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.3.inst.cfg b/resources/variants/creality/creality_ender3_0.3.inst.cfg index e5340203411..34e6ce4f3ba 100644 --- a/resources/variants/creality/creality_ender3_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.4.inst.cfg b/resources/variants/creality/creality_ender3_0.4.inst.cfg index 1ac41b37149..7bf09221a19 100644 --- a/resources/variants/creality/creality_ender3_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.5.inst.cfg b/resources/variants/creality/creality_ender3_0.5.inst.cfg index c5eb7768b0a..ed376717883 100644 --- a/resources/variants/creality/creality_ender3_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.6.inst.cfg b/resources/variants/creality/creality_ender3_0.6.inst.cfg index e5c98ee7a70..b890bbe67c3 100644 --- a/resources/variants/creality/creality_ender3_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.8.inst.cfg b/resources/variants/creality/creality_ender3_0.8.inst.cfg index 06c3fbf5b93..30099acc042 100644 --- a/resources/variants/creality/creality_ender3_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_1.0.inst.cfg b/resources/variants/creality/creality_ender3_1.0.inst.cfg index 9107793f157..c30af4410a1 100644 --- a/resources/variants/creality/creality_ender3_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.2.inst.cfg b/resources/variants/creality/creality_ender3max_0.2.inst.cfg index 17e74e4b977..8eb336c3561 100644 --- a/resources/variants/creality/creality_ender3max_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.3.inst.cfg b/resources/variants/creality/creality_ender3max_0.3.inst.cfg index 1f55310dc8d..24f21f93de9 100644 --- a/resources/variants/creality/creality_ender3max_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.4.inst.cfg b/resources/variants/creality/creality_ender3max_0.4.inst.cfg index 55baed73235..0b13727228a 100644 --- a/resources/variants/creality/creality_ender3max_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.5.inst.cfg b/resources/variants/creality/creality_ender3max_0.5.inst.cfg index 844a1eca5c4..b0527d929c6 100644 --- a/resources/variants/creality/creality_ender3max_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.6.inst.cfg b/resources/variants/creality/creality_ender3max_0.6.inst.cfg index 3c6c0fb6b40..1970ecd7257 100644 --- a/resources/variants/creality/creality_ender3max_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.8.inst.cfg b/resources/variants/creality/creality_ender3max_0.8.inst.cfg index ae0afbc2804..23d78b05844 100644 --- a/resources/variants/creality/creality_ender3max_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_1.0.inst.cfg b/resources/variants/creality/creality_ender3max_1.0.inst.cfg index 7da936ffa87..42450e22821 100644 --- a/resources/variants/creality/creality_ender3max_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3max_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.2.inst.cfg b/resources/variants/creality/creality_ender3pro_0.2.inst.cfg index 8ecf20846ae..813436be65f 100644 --- a/resources/variants/creality/creality_ender3pro_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.3.inst.cfg b/resources/variants/creality/creality_ender3pro_0.3.inst.cfg index 6b3576a42d3..5eadcfb975f 100644 --- a/resources/variants/creality/creality_ender3pro_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.4.inst.cfg b/resources/variants/creality/creality_ender3pro_0.4.inst.cfg index 299550c19b7..aeb092a76b0 100644 --- a/resources/variants/creality/creality_ender3pro_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.5.inst.cfg b/resources/variants/creality/creality_ender3pro_0.5.inst.cfg index 99a817f8b9a..5a5d1fcbf97 100644 --- a/resources/variants/creality/creality_ender3pro_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.6.inst.cfg b/resources/variants/creality/creality_ender3pro_0.6.inst.cfg index 89022bcea6a..fcd5707c4c1 100644 --- a/resources/variants/creality/creality_ender3pro_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.8.inst.cfg b/resources/variants/creality/creality_ender3pro_0.8.inst.cfg index 874c63ba24e..42767a94a71 100644 --- a/resources/variants/creality/creality_ender3pro_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_1.0.inst.cfg b/resources/variants/creality/creality_ender3pro_1.0.inst.cfg index 93c2ec21873..b1689a28914 100644 --- a/resources/variants/creality/creality_ender3pro_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.2.inst.cfg b/resources/variants/creality/creality_ender3s1_0.2.inst.cfg index 8d9e1a1e8c9..ac944ab1dcf 100644 --- a/resources/variants/creality/creality_ender3s1_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.3.inst.cfg b/resources/variants/creality/creality_ender3s1_0.3.inst.cfg index 5ed26fdbad4..d58e18d238b 100644 --- a/resources/variants/creality/creality_ender3s1_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.4.inst.cfg b/resources/variants/creality/creality_ender3s1_0.4.inst.cfg index 1658bf59e37..fdaddc91ab0 100644 --- a/resources/variants/creality/creality_ender3s1_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.5.inst.cfg b/resources/variants/creality/creality_ender3s1_0.5.inst.cfg index 2ac65e3abc5..0093cc7356f 100644 --- a/resources/variants/creality/creality_ender3s1_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.6.inst.cfg b/resources/variants/creality/creality_ender3s1_0.6.inst.cfg index 62112135a76..e1aa8a44486 100644 --- a/resources/variants/creality/creality_ender3s1_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.8.inst.cfg b/resources/variants/creality/creality_ender3s1_0.8.inst.cfg index a9b60bbefce..0b584c6e87e 100644 --- a/resources/variants/creality/creality_ender3s1_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_1.0.inst.cfg b/resources/variants/creality/creality_ender3s1_1.0.inst.cfg index 30820921fda..a1de29ad896 100644 --- a/resources/variants/creality/creality_ender3s1_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.2.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.2.inst.cfg index 95c7c83ab81..a8ed1f1d377 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.3.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.3.inst.cfg index 75095886a18..039c47debe2 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.4.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.4.inst.cfg index 041139f89c4..a4101903894 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.5.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.5.inst.cfg index ceb15fe521d..81d93cef97f 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.6.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.6.inst.cfg index dc316c8e45f..7804f5ed157 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.8.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.8.inst.cfg index 800e70cb816..882f18b408b 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_1.0.inst.cfg b/resources/variants/creality/creality_ender3s1plus_1.0.inst.cfg index 12652aa70d7..c76ff38862e 100644 --- a/resources/variants/creality/creality_ender3s1plus_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.2.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.2.inst.cfg index 1c0454ec614..3697ba6288e 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.3.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.3.inst.cfg index 91e2ebfc3dd..3b7675aa6ae 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.4.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.4.inst.cfg index 74ef00ec764..37eb70d09cd 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.5.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.5.inst.cfg index 31c82d1cf09..c4c1b183473 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.6.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.6.inst.cfg index ee342667198..d609218f5e3 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.8.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.8.inst.cfg index f65002a11a8..ee7a039075b 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_1.0.inst.cfg b/resources/variants/creality/creality_ender3s1pro_1.0.inst.cfg index 945953dfc04..4c8200ec9c2 100644 --- a/resources/variants/creality/creality_ender3s1pro_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_0.2.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.2.inst.cfg index d1983086162..bed0bbe51f6 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_0.3.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.3.inst.cfg index 061112ebadf..fba4336839c 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_0.4.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.4.inst.cfg index cfd6f021d78..80a2f5cb712 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_0.5.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.5.inst.cfg index 3d0682c2705..d6071382f82 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_0.6.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.6.inst.cfg index 0f8264dabed..4abca4f34e1 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_0.8.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.8.inst.cfg index 639f4fd4f29..d5ef899ed67 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_1.0.inst.cfg b/resources/variants/creality/creality_ender3v2neo_1.0.inst.cfg index 638e75887d6..8dee589cd10 100644 --- a/resources/variants/creality/creality_ender3v2neo_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_0.2.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.2.inst.cfg index b523a38f414..691b6eccb4f 100644 --- a/resources/variants/creality/creality_ender3v3se_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_0.3.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.3.inst.cfg index 6cf40ce9997..074386a24e3 100644 --- a/resources/variants/creality/creality_ender3v3se_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_0.4.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.4.inst.cfg index fd870564ece..c586b77f970 100644 --- a/resources/variants/creality/creality_ender3v3se_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_0.5.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.5.inst.cfg index 45ca3a01841..d97ae16d7f6 100644 --- a/resources/variants/creality/creality_ender3v3se_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_0.6.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.6.inst.cfg index 4b7379635ed..e3caad0a868 100644 --- a/resources/variants/creality/creality_ender3v3se_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_0.8.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.8.inst.cfg index 0978a0e8015..21e3629a6bc 100644 --- a/resources/variants/creality/creality_ender3v3se_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_1.0.inst.cfg b/resources/variants/creality/creality_ender3v3se_1.0.inst.cfg index e2c6b803b93..13fd7c97fab 100644 --- a/resources/variants/creality/creality_ender3v3se_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.2.inst.cfg b/resources/variants/creality/creality_ender4_0.2.inst.cfg index 0034158d3f0..cc9e0b9d793 100644 --- a/resources/variants/creality/creality_ender4_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.3.inst.cfg b/resources/variants/creality/creality_ender4_0.3.inst.cfg index c54a86e2930..fd9c0d85c74 100644 --- a/resources/variants/creality/creality_ender4_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.4.inst.cfg b/resources/variants/creality/creality_ender4_0.4.inst.cfg index 0152f1c9579..431454efadb 100644 --- a/resources/variants/creality/creality_ender4_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.5.inst.cfg b/resources/variants/creality/creality_ender4_0.5.inst.cfg index 37c216cbfa2..89c5b10479f 100644 --- a/resources/variants/creality/creality_ender4_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.6.inst.cfg b/resources/variants/creality/creality_ender4_0.6.inst.cfg index aa48e63e09a..42be35588c4 100644 --- a/resources/variants/creality/creality_ender4_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.8.inst.cfg b/resources/variants/creality/creality_ender4_0.8.inst.cfg index 1a980e4adaf..c695d8d92fa 100644 --- a/resources/variants/creality/creality_ender4_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_1.0.inst.cfg b/resources/variants/creality/creality_ender4_1.0.inst.cfg index 35ed12644df..c7b47380425 100644 --- a/resources/variants/creality/creality_ender4_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender4_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.2.inst.cfg b/resources/variants/creality/creality_ender5_0.2.inst.cfg index a371ccb35b8..9caa965f98a 100644 --- a/resources/variants/creality/creality_ender5_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.3.inst.cfg b/resources/variants/creality/creality_ender5_0.3.inst.cfg index 2075784b2c5..290994c5436 100644 --- a/resources/variants/creality/creality_ender5_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.4.inst.cfg b/resources/variants/creality/creality_ender5_0.4.inst.cfg index 96733fd5271..311b19acaf7 100644 --- a/resources/variants/creality/creality_ender5_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.5.inst.cfg b/resources/variants/creality/creality_ender5_0.5.inst.cfg index ee184b97a4b..905089c0c09 100644 --- a/resources/variants/creality/creality_ender5_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.6.inst.cfg b/resources/variants/creality/creality_ender5_0.6.inst.cfg index e3cf08f93e1..219aa4cd1f7 100644 --- a/resources/variants/creality/creality_ender5_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.8.inst.cfg b/resources/variants/creality/creality_ender5_0.8.inst.cfg index 990162becc6..cce7eef2d69 100644 --- a/resources/variants/creality/creality_ender5_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_1.0.inst.cfg b/resources/variants/creality/creality_ender5_1.0.inst.cfg index 8bb5a67d24a..848e52b9e33 100644 --- a/resources/variants/creality/creality_ender5_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender5_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.2.inst.cfg b/resources/variants/creality/creality_ender5plus_0.2.inst.cfg index a0c1b19d198..3890f624291 100644 --- a/resources/variants/creality/creality_ender5plus_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.3.inst.cfg b/resources/variants/creality/creality_ender5plus_0.3.inst.cfg index 30c7d397ce6..3b6871266cd 100644 --- a/resources/variants/creality/creality_ender5plus_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.4.inst.cfg b/resources/variants/creality/creality_ender5plus_0.4.inst.cfg index 40ac79b50e3..13bf3cd0fb4 100644 --- a/resources/variants/creality/creality_ender5plus_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.5.inst.cfg b/resources/variants/creality/creality_ender5plus_0.5.inst.cfg index a0cb2b6572b..d42832dbcf6 100644 --- a/resources/variants/creality/creality_ender5plus_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.6.inst.cfg b/resources/variants/creality/creality_ender5plus_0.6.inst.cfg index 89cfdab22e8..d39802eed74 100644 --- a/resources/variants/creality/creality_ender5plus_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.8.inst.cfg b/resources/variants/creality/creality_ender5plus_0.8.inst.cfg index 3a343352f14..c6125f40992 100644 --- a/resources/variants/creality/creality_ender5plus_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_1.0.inst.cfg b/resources/variants/creality/creality_ender5plus_1.0.inst.cfg index 8af92e62cdd..dbb895e3171 100644 --- a/resources/variants/creality/creality_ender5plus_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.2.inst.cfg b/resources/variants/creality/creality_ender5s1_0.2.inst.cfg index abddcdccfb6..bb3e5312eab 100644 --- a/resources/variants/creality/creality_ender5s1_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.3.inst.cfg b/resources/variants/creality/creality_ender5s1_0.3.inst.cfg index b7e32ab75bb..f7aa3350bc6 100644 --- a/resources/variants/creality/creality_ender5s1_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.4.inst.cfg b/resources/variants/creality/creality_ender5s1_0.4.inst.cfg index 488dbcd893d..6e38f503fcb 100644 --- a/resources/variants/creality/creality_ender5s1_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.5.inst.cfg b/resources/variants/creality/creality_ender5s1_0.5.inst.cfg index 61a51c7cd13..cb2b6845426 100644 --- a/resources/variants/creality/creality_ender5s1_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.6.inst.cfg b/resources/variants/creality/creality_ender5s1_0.6.inst.cfg index 60a69f9b4c5..2c2d0480ff6 100644 --- a/resources/variants/creality/creality_ender5s1_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.8.inst.cfg b/resources/variants/creality/creality_ender5s1_0.8.inst.cfg index 04d29eedc6f..2e95f8e3d00 100644 --- a/resources/variants/creality/creality_ender5s1_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_1.0.inst.cfg b/resources/variants/creality/creality_ender5s1_1.0.inst.cfg index f5d8bb3adbd..48fba7a715b 100644 --- a/resources/variants/creality/creality_ender5s1_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.2.inst.cfg b/resources/variants/creality/creality_ender6_0.2.inst.cfg index 5057234c7f6..e21c3659f49 100644 --- a/resources/variants/creality/creality_ender6_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.3.inst.cfg b/resources/variants/creality/creality_ender6_0.3.inst.cfg index ffd82833b0a..c129731e9bd 100644 --- a/resources/variants/creality/creality_ender6_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.4.inst.cfg b/resources/variants/creality/creality_ender6_0.4.inst.cfg index bf288d354d7..b1e14dfb455 100644 --- a/resources/variants/creality/creality_ender6_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.5.inst.cfg b/resources/variants/creality/creality_ender6_0.5.inst.cfg index 01cb313eb88..b4f0aa9199f 100644 --- a/resources/variants/creality/creality_ender6_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.6.inst.cfg b/resources/variants/creality/creality_ender6_0.6.inst.cfg index 12044c5a152..e1cba4411ce 100644 --- a/resources/variants/creality/creality_ender6_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.8.inst.cfg b/resources/variants/creality/creality_ender6_0.8.inst.cfg index 3f3bf9f0d45..d8ebefe7056 100644 --- a/resources/variants/creality/creality_ender6_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_1.0.inst.cfg b/resources/variants/creality/creality_ender6_1.0.inst.cfg index 5221d2db3c0..e4f2aea7e62 100644 --- a/resources/variants/creality/creality_ender6_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender6_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_0.2.inst.cfg b/resources/variants/creality/creality_sermoond1_0.2.inst.cfg index b123de554ef..e3f4be79345 100644 --- a/resources/variants/creality/creality_sermoond1_0.2.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_0.3.inst.cfg b/resources/variants/creality/creality_sermoond1_0.3.inst.cfg index 89358a5324f..e78ba1f27d6 100644 --- a/resources/variants/creality/creality_sermoond1_0.3.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_0.4.inst.cfg b/resources/variants/creality/creality_sermoond1_0.4.inst.cfg index c42bd666b89..03c6120b0db 100644 --- a/resources/variants/creality/creality_sermoond1_0.4.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_0.5.inst.cfg b/resources/variants/creality/creality_sermoond1_0.5.inst.cfg index abbf2920921..72014114320 100644 --- a/resources/variants/creality/creality_sermoond1_0.5.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_0.6.inst.cfg b/resources/variants/creality/creality_sermoond1_0.6.inst.cfg index 9e11dbbd850..d7e7ef40827 100644 --- a/resources/variants/creality/creality_sermoond1_0.6.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_0.8.inst.cfg b/resources/variants/creality/creality_sermoond1_0.8.inst.cfg index 3d8ab3bde29..714a46c4d29 100644 --- a/resources/variants/creality/creality_sermoond1_0.8.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_1.0.inst.cfg b/resources/variants/creality/creality_sermoond1_1.0.inst.cfg index d2fc1cc66af..e48fcb9bbd3 100644 --- a/resources/variants/creality/creality_sermoond1_1.0.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/creality/creality_sermoonv1_0.4.inst.cfg b/resources/variants/creality/creality_sermoonv1_0.4.inst.cfg index d83b26b9b59..7955b804b46 100644 --- a/resources/variants/creality/creality_sermoonv1_0.4.inst.cfg +++ b/resources/variants/creality/creality_sermoonv1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.4.inst.cfg index fb2873bfcac..c87bcdbb9c3 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.8.inst.cfg index 33b2f0c7575..e40fe89651e 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_1.0.inst.cfg index b672317c15e..590e5cd9bb8 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.2.inst.cfg index 9c5397b535c..2de668d64a7 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.4.inst.cfg index 4d3bb38df9e..dfd771e72b4 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.6.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.6.inst.cfg index 71cd43dc29f..ef5ae3341bb 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.6.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.8.inst.cfg index 3862119ecd4..efa201d3d4a 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.0.inst.cfg index a3010896eba..42123ce059e 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.2.inst.cfg index 572e3a0a05c..a30cdf14ec1 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.4.inst.cfg index b91da5cce56..b4b4005e615 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.8.inst.cfg index 1790d9ef274..e79dcfdcd03 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.4.inst.cfg index 566688fedce..4856377ec58 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.8.inst.cfg index 17f5f768c5a..dbc7c0e8ef7 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_1.0.inst.cfg index c78ce860302..692c4f25cde 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.2.inst.cfg index fe5aab9f9cd..3734f5254b2 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.4.inst.cfg index 26841774434..c0a0e5883b8 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.6.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.6.inst.cfg index 91c59f0e6dd..2d1ff5b1083 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.6.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.8.inst.cfg index 431d7eb7e11..56c0388ecf0 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.0.inst.cfg index eae1a408f44..49d817fb033 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.2.inst.cfg index 754bb93c020..70ebe157add 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.4.inst.cfg index 8ea81a3972c..46bf6148c43 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.8.inst.cfg index 84eca0f2531..4bcdd1cb58e 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.4.inst.cfg index 3ac5e342054..0a15ae83163 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.8.inst.cfg index f9ae98aa0f0..f090565c4ca 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_brass_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_brass_1.0.inst.cfg index e1749cb4297..a15400a6db6 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_brass_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_brass_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.2.inst.cfg index cb0d9a6d61a..1b02f9637b5 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.4.inst.cfg index f5995c20dcb..69b6b5e872d 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.6.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.6.inst.cfg index f907b89e87d..2df35e31dc0 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.6.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.8.inst.cfg index badcdc87f7a..6fd73a0fe40 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.0.inst.cfg index 65c35eea1e6..addcb3fb55a 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.2.inst.cfg index 021c0f141c2..634a91f5330 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.4.inst.cfg index 25f25029a04..4b0b6853f25 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.8.inst.cfg index b9cbe805d47..12e4881d48c 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_0.4.inst.cfg b/resources/variants/dagoma/dagoma_sigma_0.4.inst.cfg index 431f06f81f1..4008817b37d 100644 --- a/resources/variants/dagoma/dagoma_sigma_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_0.8.inst.cfg b/resources/variants/dagoma/dagoma_sigma_0.8.inst.cfg index 46cad40b286..ea1c8673667 100644 --- a/resources/variants/dagoma/dagoma_sigma_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_brass_0.4.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_brass_0.4.inst.cfg index 567cf160cc3..0e090023fae 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_brass_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_brass_0.8.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_brass_0.8.inst.cfg index a509a373107..bc9a8e9ea52 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_brass_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_brass_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.4.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.4.inst.cfg index 42c01ad004e..0ea1a14227f 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.8.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.8.inst.cfg index 6498a7a26bc..96f9d485dc5 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.4.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.4.inst.cfg index 82e80ddd920..1e1664a0ac6 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.8.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.8.inst.cfg index 8df2ac5bf5a..b2dd1421d77 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_steel_0.4.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_steel_0.4.inst.cfg index 33d95852419..d85b89aaa31 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_steel_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_steel_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_steel_0.8.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_steel_0.8.inst.cfg index 7ad9767f093..d36c2e344d3 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_steel_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_steel_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20_fbe025.inst.cfg index dd991034be7..291d9cc5555 100644 --- a/resources/variants/deltacomb/deltacomb_dc20_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20_fbe025.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Deltacomb 3D hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20_fbe040.inst.cfg index 9eeb0d57980..a8c5aed70b3 100644 --- a/resources/variants/deltacomb/deltacomb_dc20_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20_fbe040.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Deltacomb 3D hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20_fbe060.inst.cfg index aceb33a763c..73ecc333b30 100644 --- a/resources/variants/deltacomb/deltacomb_dc20_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20_fbe060.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Deltacomb 3D hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg index 2eba3d6b5f6..af9f1010d80 100755 --- a/resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg index a617f78b93d..9653ed674c4 100755 --- a/resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg index a5c92a83dd6..0afd0643d80 100755 --- a/resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg index 2dedb7fa94f..b7648046f70 100755 --- a/resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg index 0972964ca5b..524758ad65e 100755 --- a/resources/variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg index 20cb7fb9602..e93cfb33d0c 100755 --- a/resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg index e24cd0ea6d3..099be9cc5e4 100755 --- a/resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg index 3ae6090e662..34eb1f7b2ac 100755 --- a/resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg index c40597cb87b..6bc04858079 100755 --- a/resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg index 6742aedfc96..6d057424c71 100755 --- a/resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg index 0e03d17023c..0c6221f45d3 100755 --- a/resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg index 60a4286938e..0edb30443a4 100755 --- a/resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg index dc2925f77c7..98cadeed245 100755 --- a/resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg index 15e4915e2ac..0bec048c025 100755 --- a/resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg index 6d491181196..73dfd411343 100755 --- a/resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg index 1cdcb390e93..cf7a19bc713 100755 --- a/resources/variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg index da67df45fd9..aab69dd988e 100755 --- a/resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg index cf4e85908d5..72e267f34f6 100755 --- a/resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg index 150e4a17b56..7a3ffa4745d 100755 --- a/resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg index 4854a810f81..e05a8e4e2dd 100755 --- a/resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg index d8195ef346f..3fa9cdc970c 100755 --- a/resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg index a033fefc153..8ffd17d7333 100755 --- a/resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg index c37b96738ad..7c2ebcfe705 100755 --- a/resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg index 3e953323962..80a83e0d6b2 100755 --- a/resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg index 0daf1de4387..3cdcb1927c3 100755 --- a/resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg index 070d8421e8a..63fb3106812 100755 --- a/resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg index 7131e12280f..56de1f467aa 100755 --- a/resources/variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg index a441f1a043c..809cd48e852 100755 --- a/resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg index dd9fd9d17d2..410b162d1dd 100755 --- a/resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg index 988ec955572..cb7adbdefc8 100755 --- a/resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/diy/diy220_0.2.inst.cfg b/resources/variants/diy/diy220_0.2.inst.cfg index b7233a9d25c..c427394af92 100644 --- a/resources/variants/diy/diy220_0.2.inst.cfg +++ b/resources/variants/diy/diy220_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/diy/diy220_0.3.inst.cfg b/resources/variants/diy/diy220_0.3.inst.cfg index 22dd3a30322..0b593365721 100644 --- a/resources/variants/diy/diy220_0.3.inst.cfg +++ b/resources/variants/diy/diy220_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/diy/diy220_0.4.inst.cfg b/resources/variants/diy/diy220_0.4.inst.cfg index bc4ac126c10..9579c201e52 100644 --- a/resources/variants/diy/diy220_0.4.inst.cfg +++ b/resources/variants/diy/diy220_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/diy/diy220_0.5.inst.cfg b/resources/variants/diy/diy220_0.5.inst.cfg index 13f0d6c6178..d04fd167e22 100644 --- a/resources/variants/diy/diy220_0.5.inst.cfg +++ b/resources/variants/diy/diy220_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/diy/diy220_0.6.inst.cfg b/resources/variants/diy/diy220_0.6.inst.cfg index f3b1d65bded..519b04d1863 100644 --- a/resources/variants/diy/diy220_0.6.inst.cfg +++ b/resources/variants/diy/diy220_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/diy/diy220_0.8.inst.cfg b/resources/variants/diy/diy220_0.8.inst.cfg index ca159b00b91..b27a536efb5 100644 --- a/resources/variants/diy/diy220_0.8.inst.cfg +++ b/resources/variants/diy/diy220_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dxu/dxu_0.25.inst.cfg b/resources/variants/dxu/dxu_0.25.inst.cfg index a488e4d1796..16ee7f4e154 100644 --- a/resources/variants/dxu/dxu_0.25.inst.cfg +++ b/resources/variants/dxu/dxu_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dxu/dxu_0.4.inst.cfg b/resources/variants/dxu/dxu_0.4.inst.cfg index 7302b73604e..ecf4cbf83c0 100644 --- a/resources/variants/dxu/dxu_0.4.inst.cfg +++ b/resources/variants/dxu/dxu_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dxu/dxu_0.6.inst.cfg b/resources/variants/dxu/dxu_0.6.inst.cfg index b3850a06009..4d04dac66b9 100644 --- a/resources/variants/dxu/dxu_0.6.inst.cfg +++ b/resources/variants/dxu/dxu_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dxu/dxu_0.8.inst.cfg b/resources/variants/dxu/dxu_0.8.inst.cfg index bbdc10ab072..1a6f0f22bed 100644 --- a/resources/variants/dxu/dxu_0.8.inst.cfg +++ b/resources/variants/dxu/dxu_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dxu/dxu_dual_0.25.inst.cfg b/resources/variants/dxu/dxu_dual_0.25.inst.cfg index 6983e959b79..9a6516bb7be 100644 --- a/resources/variants/dxu/dxu_dual_0.25.inst.cfg +++ b/resources/variants/dxu/dxu_dual_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dxu/dxu_dual_0.4.inst.cfg b/resources/variants/dxu/dxu_dual_0.4.inst.cfg index 0dd99cc77d5..10daf54b52c 100644 --- a/resources/variants/dxu/dxu_dual_0.4.inst.cfg +++ b/resources/variants/dxu/dxu_dual_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dxu/dxu_dual_0.6.inst.cfg b/resources/variants/dxu/dxu_dual_0.6.inst.cfg index 5dcac9741e6..798377f3ac9 100644 --- a/resources/variants/dxu/dxu_dual_0.6.inst.cfg +++ b/resources/variants/dxu/dxu_dual_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dxu/dxu_dual_0.8.inst.cfg b/resources/variants/dxu/dxu_dual_0.8.inst.cfg index cedb16e925e..a392b95292c 100644 --- a/resources/variants/dxu/dxu_dual_0.8.inst.cfg +++ b/resources/variants/dxu/dxu_dual_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_0.25.inst.cfg b/resources/variants/dxu/dxu_umo_0.25.inst.cfg index 8f8d06cb5fe..2fc196bf198 100644 --- a/resources/variants/dxu/dxu_umo_0.25.inst.cfg +++ b/resources/variants/dxu/dxu_umo_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_0.4.inst.cfg b/resources/variants/dxu/dxu_umo_0.4.inst.cfg index e840ab33f82..d98fdbcc7bd 100644 --- a/resources/variants/dxu/dxu_umo_0.4.inst.cfg +++ b/resources/variants/dxu/dxu_umo_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_0.6.inst.cfg b/resources/variants/dxu/dxu_umo_0.6.inst.cfg index 87cedca49c5..9d564db4a10 100644 --- a/resources/variants/dxu/dxu_umo_0.6.inst.cfg +++ b/resources/variants/dxu/dxu_umo_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_0.8.inst.cfg b/resources/variants/dxu/dxu_umo_0.8.inst.cfg index 07945af6230..fc667138800 100644 --- a/resources/variants/dxu/dxu_umo_0.8.inst.cfg +++ b/resources/variants/dxu/dxu_umo_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_dual_0.25.inst.cfg b/resources/variants/dxu/dxu_umo_dual_0.25.inst.cfg index 86430accc95..fc4fffcb4e1 100644 --- a/resources/variants/dxu/dxu_umo_dual_0.25.inst.cfg +++ b/resources/variants/dxu/dxu_umo_dual_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_dual_0.4.inst.cfg b/resources/variants/dxu/dxu_umo_dual_0.4.inst.cfg index 255ffc9dd14..85f5b17d2d3 100644 --- a/resources/variants/dxu/dxu_umo_dual_0.4.inst.cfg +++ b/resources/variants/dxu/dxu_umo_dual_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_dual_0.6.inst.cfg b/resources/variants/dxu/dxu_umo_dual_0.6.inst.cfg index 5a16beb3c63..5af2ac18a15 100644 --- a/resources/variants/dxu/dxu_umo_dual_0.6.inst.cfg +++ b/resources/variants/dxu/dxu_umo_dual_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_dual_0.8.inst.cfg b/resources/variants/dxu/dxu_umo_dual_0.8.inst.cfg index 57e7bd70e01..eae270181b5 100644 --- a/resources/variants/dxu/dxu_umo_dual_0.8.inst.cfg +++ b/resources/variants/dxu/dxu_umo_dual_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.20.inst.cfg index 54af683b9c9..ff14878f695 100644 --- a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.40.inst.cfg index 3217a1a6ce7..30ee88ddd37 100644 --- a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.60.inst.cfg index bc82566e9cb..8a5d31cca26 100644 --- a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.80.inst.cfg index 2a33d85bddc..558d8fbdadb 100644 --- a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.20.inst.cfg index 17298221b2f..4c1180e555a 100644 --- a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.40.inst.cfg index fc59701f7a3..a38d2db9890 100644 --- a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.60.inst.cfg index 0da41f7840a..13cd15ad7d3 100644 --- a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.80.inst.cfg index 7beae5d3e5b..785396f64a0 100644 --- a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.20.inst.cfg index 9a5939570f3..eded48e16d5 100644 --- a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.40.inst.cfg index 12ff110d2f1..68655ba6f6d 100644 --- a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.60.inst.cfg index b4767809f01..93094eced63 100644 --- a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.80.inst.cfg index 1982bc0cf50..cc5430a6875 100644 --- a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.20.inst.cfg index 037e20a244c..dba8f4835c5 100644 --- a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.40.inst.cfg index c10c29be43a..c289d4595f9 100644 --- a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.60.inst.cfg index cdec82e36ca..23a9449b569 100644 --- a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.80.inst.cfg index 71b05584c77..a4ec2af878c 100644 --- a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.20.inst.cfg index 79905f009ef..253e434aaa9 100644 --- a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.40.inst.cfg index 23fd5dbe3be..1a638c6f36c 100644 --- a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.60.inst.cfg index 192b22cd3d7..4ae27b83f3b 100644 --- a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.80.inst.cfg index 385b1078813..bd4be2b2dc5 100644 --- a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.20.inst.cfg index e3dece63997..502b18c49a6 100644 --- a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.40.inst.cfg index c47b9bd4108..8e5aa468d8a 100644 --- a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.60.inst.cfg index a1eddd732ae..58dd28cbc1f 100644 --- a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.80.inst.cfg index 7ee345c400c..669d7207e54 100644 --- a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.20.inst.cfg index 7f1bd2395ca..ef39a4560f0 100644 --- a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.40.inst.cfg index 6825ef8695b..4331b27eda0 100644 --- a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.60.inst.cfg index 15bb5938edd..7d518a6df6f 100644 --- a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.80.inst.cfg index 4c75c5ab10b..c5183f0e7d8 100644 --- a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.20.inst.cfg index 83c207f638e..54301e7ad8e 100644 --- a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.40.inst.cfg index c7177f03c4c..0e49ef7d518 100644 --- a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.60.inst.cfg index a9531188900..9e60d5aaa50 100644 --- a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.80.inst.cfg index 508fba410cf..c69d81dab84 100644 --- a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.20.inst.cfg index 7f982712ef1..3498effd991 100644 --- a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.40.inst.cfg index dac5cd8317e..086826b12b9 100644 --- a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.60.inst.cfg index 4c69919d3d1..5ad651685a7 100644 --- a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.80.inst.cfg index bcb9cc218dc..3380d42cc8a 100644 --- a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.20.inst.cfg index 8b8fdb67c10..5dea2c50ce0 100644 --- a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.40.inst.cfg index 7bb3f29a7c7..a7d62bdcffd 100644 --- a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.60.inst.cfg index 012d6b6ce7a..018d6d4881e 100644 --- a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.80.inst.cfg index 9baa55881e5..fc7177d14c5 100644 --- a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.20.inst.cfg index 474b80a73f9..16ac330f8ab 100644 --- a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.40.inst.cfg index c67b0aeae62..2d0237ff34f 100644 --- a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.60.inst.cfg index bb9711b1985..bd960d80e16 100644 --- a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.80.inst.cfg index 2ffbd30b177..32d38604985 100644 --- a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg index ff0e79e8f9e..b938fd368e2 100644 --- a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg index c74a427847d..6b6401b95f7 100644 --- a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg index 77378889589..f7b4f3dccde 100644 --- a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg index 37f1b635520..e3c2e1ed54b 100644 --- a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.20.inst.cfg index 41bfaa08a07..c06a52f29b9 100644 --- a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.40.inst.cfg index 91f42e476e5..2d3802546f9 100644 --- a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.60.inst.cfg index aa13f03c451..e0a715a717d 100644 --- a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.80.inst.cfg index 5808e0a6772..196a9f8ce0e 100644 --- a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_hyb35.inst.cfg b/resources/variants/fabtotum/fabtotum_hyb35.inst.cfg index 60ef115b5f5..627675315c0 100644 --- a/resources/variants/fabtotum/fabtotum_hyb35.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_hyb35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_lite04.inst.cfg b/resources/variants/fabtotum/fabtotum_lite04.inst.cfg index 56f51646792..1367297a485 100644 --- a/resources/variants/fabtotum/fabtotum_lite04.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_lite04.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_lite06.inst.cfg b/resources/variants/fabtotum/fabtotum_lite06.inst.cfg index cc9f291bde7..57c84f42f78 100644 --- a/resources/variants/fabtotum/fabtotum_lite06.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_lite06.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_pro02.inst.cfg b/resources/variants/fabtotum/fabtotum_pro02.inst.cfg index 63e13314a63..6808a335862 100644 --- a/resources/variants/fabtotum/fabtotum_pro02.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_pro02.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_pro04.inst.cfg b/resources/variants/fabtotum/fabtotum_pro04.inst.cfg index ce5beb4e347..bab320bb9a1 100644 --- a/resources/variants/fabtotum/fabtotum_pro04.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_pro04.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_pro06.inst.cfg b/resources/variants/fabtotum/fabtotum_pro06.inst.cfg index faad25df652..616f1984d45 100644 --- a/resources/variants/fabtotum/fabtotum_pro06.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_pro06.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_pro08.inst.cfg b/resources/variants/fabtotum/fabtotum_pro08.inst.cfg index 01661cf9a96..ecf117c1dd9 100644 --- a/resources/variants/fabtotum/fabtotum_pro08.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_pro08.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/farm2/farm2_ce_printhead_0.2.inst.cfg b/resources/variants/farm2/farm2_ce_printhead_0.2.inst.cfg index 2806a0e56c3..b32fab27a98 100644 --- a/resources/variants/farm2/farm2_ce_printhead_0.2.inst.cfg +++ b/resources/variants/farm2/farm2_ce_printhead_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/farm2/farm2_ce_printhead_0.3.inst.cfg b/resources/variants/farm2/farm2_ce_printhead_0.3.inst.cfg index c0ed4d0b82b..dc61348f5e1 100644 --- a/resources/variants/farm2/farm2_ce_printhead_0.3.inst.cfg +++ b/resources/variants/farm2/farm2_ce_printhead_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/farm2/farm2_ce_printhead_0.4.inst.cfg b/resources/variants/farm2/farm2_ce_printhead_0.4.inst.cfg index c49f4b8f7f8..f6317d5a6bf 100644 --- a/resources/variants/farm2/farm2_ce_printhead_0.4.inst.cfg +++ b/resources/variants/farm2/farm2_ce_printhead_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/farm2/farm2_ce_printhead_0.5.inst.cfg b/resources/variants/farm2/farm2_ce_printhead_0.5.inst.cfg index 7eda0784d34..f6d668441f5 100644 --- a/resources/variants/farm2/farm2_ce_printhead_0.5.inst.cfg +++ b/resources/variants/farm2/farm2_ce_printhead_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/farm2/farm2_printhead_0.2.inst.cfg b/resources/variants/farm2/farm2_printhead_0.2.inst.cfg index c32dd5b7ee2..884f277d711 100644 --- a/resources/variants/farm2/farm2_printhead_0.2.inst.cfg +++ b/resources/variants/farm2/farm2_printhead_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/farm2/farm2_printhead_0.3.inst.cfg b/resources/variants/farm2/farm2_printhead_0.3.inst.cfg index c85557732e1..348d84f431e 100644 --- a/resources/variants/farm2/farm2_printhead_0.3.inst.cfg +++ b/resources/variants/farm2/farm2_printhead_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/farm2/farm2_printhead_0.4.inst.cfg b/resources/variants/farm2/farm2_printhead_0.4.inst.cfg index d1d5139ef19..fb324a7b942 100644 --- a/resources/variants/farm2/farm2_printhead_0.4.inst.cfg +++ b/resources/variants/farm2/farm2_printhead_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/farm2/farm2_printhead_0.5.inst.cfg b/resources/variants/farm2/farm2_printhead_0.5.inst.cfg index f3800018ecf..51e1998f73e 100644 --- a/resources/variants/farm2/farm2_printhead_0.5.inst.cfg +++ b/resources/variants/farm2/farm2_printhead_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/felix/felixpro2_0.25.inst.cfg b/resources/variants/felix/felixpro2_0.25.inst.cfg index 0517d24161b..c29733b4b5f 100644 --- a/resources/variants/felix/felixpro2_0.25.inst.cfg +++ b/resources/variants/felix/felixpro2_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = pnks hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/felix/felixpro2_0.35.inst.cfg b/resources/variants/felix/felixpro2_0.35.inst.cfg index e9265c414e1..3e63477be23 100644 --- a/resources/variants/felix/felixpro2_0.35.inst.cfg +++ b/resources/variants/felix/felixpro2_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = pnks hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/felix/felixpro2_0.50.inst.cfg b/resources/variants/felix/felixpro2_0.50.inst.cfg index 8a69b37e2d9..7aa71ab40a4 100644 --- a/resources/variants/felix/felixpro2_0.50.inst.cfg +++ b/resources/variants/felix/felixpro2_0.50.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = pnks hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/felix/felixpro2_0.70.inst.cfg b/resources/variants/felix/felixpro2_0.70.inst.cfg index e0b67653159..7650505cb98 100644 --- a/resources/variants/felix/felixpro2_0.70.inst.cfg +++ b/resources/variants/felix/felixpro2_0.70.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = pnks hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/felix/felixtec4_0.25.inst.cfg b/resources/variants/felix/felixtec4_0.25.inst.cfg index 9e3586ebe9c..f07db133084 100644 --- a/resources/variants/felix/felixtec4_0.25.inst.cfg +++ b/resources/variants/felix/felixtec4_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = kerog777 hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/felix/felixtec4_0.35.inst.cfg b/resources/variants/felix/felixtec4_0.35.inst.cfg index 84090ef30c7..590a3a3664d 100644 --- a/resources/variants/felix/felixtec4_0.35.inst.cfg +++ b/resources/variants/felix/felixtec4_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = kerog777 hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/felix/felixtec4_0.50.inst.cfg b/resources/variants/felix/felixtec4_0.50.inst.cfg index 09086168e0c..5c75a42e069 100644 --- a/resources/variants/felix/felixtec4_0.50.inst.cfg +++ b/resources/variants/felix/felixtec4_0.50.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = kerog777 hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/felix/felixtec4_0.70.inst.cfg b/resources/variants/felix/felixtec4_0.70.inst.cfg index c9f492ecfef..b5ff8d48842 100644 --- a/resources/variants/felix/felixtec4_0.70.inst.cfg +++ b/resources/variants/felix/felixtec4_0.70.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = kerog777 hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3_0.3.inst.cfg index 6eb9b886f0b..fdaea7e9f06 100644 --- a/resources/variants/flashforge/flashforge_adventurer3_0.3.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3_0.4.inst.cfg index 5c7a08ba03b..5a7a2520ada 100644 --- a/resources/variants/flashforge/flashforge_adventurer3_0.4.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3_0.6.inst.cfg index c05e4758805..bee4393cc95 100644 --- a/resources/variants/flashforge/flashforge_adventurer3_0.6.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg index c8d7535ede5..404c0efb06f 100644 --- a/resources/variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg index f3b9aa3bf22..20cb91c62ed 100644 --- a/resources/variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg index 974b554bf4f..531763721a1 100644 --- a/resources/variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4_0.3.inst.cfg index 4c41f5e7676..661de9a8020 100644 --- a/resources/variants/flashforge/flashforge_adventurer4_0.3.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4_0.4.inst.cfg index afb2a463a9d..7944ab4d6ae 100644 --- a/resources/variants/flashforge/flashforge_adventurer4_0.4.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4_0.6.inst.cfg index efdc18da4c8..2e0bb4d36a6 100644 --- a/resources/variants/flashforge/flashforge_adventurer4_0.6.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg index 208cb50e2c5..25f6eba9bf7 100644 --- a/resources/variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg index 7a74b5a8393..c073e058315 100644 --- a/resources/variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg index 674858edadb..5801637f402 100644 --- a/resources/variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_base_0.20.inst.cfg b/resources/variants/flashforge/flashforge_base_0.20.inst.cfg index 142c5293dc6..daf917a360f 100644 --- a/resources/variants/flashforge/flashforge_base_0.20.inst.cfg +++ b/resources/variants/flashforge/flashforge_base_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_base_0.30.inst.cfg b/resources/variants/flashforge/flashforge_base_0.30.inst.cfg index d533d14756a..fce9cb55f40 100644 --- a/resources/variants/flashforge/flashforge_base_0.30.inst.cfg +++ b/resources/variants/flashforge/flashforge_base_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_base_0.40.inst.cfg b/resources/variants/flashforge/flashforge_base_0.40.inst.cfg index f6c0995f8da..0744c7c68e7 100644 --- a/resources/variants/flashforge/flashforge_base_0.40.inst.cfg +++ b/resources/variants/flashforge/flashforge_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_base_0.50.inst.cfg b/resources/variants/flashforge/flashforge_base_0.50.inst.cfg index 4562c778851..6a0f694e229 100644 --- a/resources/variants/flashforge/flashforge_base_0.50.inst.cfg +++ b/resources/variants/flashforge/flashforge_base_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_base_0.60.inst.cfg b/resources/variants/flashforge/flashforge_base_0.60.inst.cfg index 80fc272e50c..67d3fcd4c67 100644 --- a/resources/variants/flashforge/flashforge_base_0.60.inst.cfg +++ b/resources/variants/flashforge/flashforge_base_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_dreamer_nx_0.20.inst.cfg b/resources/variants/flashforge/flashforge_dreamer_nx_0.20.inst.cfg index a165b04fb7d..2336dc5429b 100644 --- a/resources/variants/flashforge/flashforge_dreamer_nx_0.20.inst.cfg +++ b/resources/variants/flashforge/flashforge_dreamer_nx_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_dreamer_nx_0.30.inst.cfg b/resources/variants/flashforge/flashforge_dreamer_nx_0.30.inst.cfg index 44d4f6da078..a3944902b3e 100644 --- a/resources/variants/flashforge/flashforge_dreamer_nx_0.30.inst.cfg +++ b/resources/variants/flashforge/flashforge_dreamer_nx_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_dreamer_nx_0.40.inst.cfg b/resources/variants/flashforge/flashforge_dreamer_nx_0.40.inst.cfg index 5da36327492..b63fabe9456 100644 --- a/resources/variants/flashforge/flashforge_dreamer_nx_0.40.inst.cfg +++ b/resources/variants/flashforge/flashforge_dreamer_nx_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_dreamer_nx_0.50.inst.cfg b/resources/variants/flashforge/flashforge_dreamer_nx_0.50.inst.cfg index 0c49c7a5545..ec81a7c2e90 100644 --- a/resources/variants/flashforge/flashforge_dreamer_nx_0.50.inst.cfg +++ b/resources/variants/flashforge/flashforge_dreamer_nx_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_dreamer_nx_0.60.inst.cfg b/resources/variants/flashforge/flashforge_dreamer_nx_0.60.inst.cfg index 8812d008459..53ff0d67a75 100644 --- a/resources/variants/flashforge/flashforge_dreamer_nx_0.60.inst.cfg +++ b/resources/variants/flashforge/flashforge_dreamer_nx_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.25.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.25.inst.cfg index ec850a35128..39a0d590c96 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.25.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.30.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.30.inst.cfg index e360bc54ac0..ec73fcc5256 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.30.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.40.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.40.inst.cfg index 559efcc3e33..16d8371149f 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.40.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.50.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.50.inst.cfg index b24ba7b7f73..cc22daaec0f 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.50.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.60.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.60.inst.cfg index dcf4ee1cbbc..03b72994c54 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.60.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.80.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.80.inst.cfg index a0eec97673c..dd543e2675a 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.80.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.25.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.25.inst.cfg index a2bfce3a5e8..5bae98edc14 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.25.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.30.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.30.inst.cfg index eeaaa3c7ec4..233f3eb2be2 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.30.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.40.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.40.inst.cfg index 350768d4893..4c1365fbee8 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.40.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.50.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.50.inst.cfg index f999358203b..24739c79ccf 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.50.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.60.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.60.inst.cfg index 68da0ebe581..06620b39cf9 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.60.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.80.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.80.inst.cfg index f4361655538..32fb9abcdc5 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.80.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.25.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.25.inst.cfg index 18e877f0490..69457b3e961 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.25.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.30.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.30.inst.cfg index a06bf2b2e71..9bff6523b59 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.30.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.40.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.40.inst.cfg index dcbc1c59471..5e1bf0c0e3c 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.40.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.50.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.50.inst.cfg index 7b8d3a09506..5dcc310b584 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.50.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.60.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.60.inst.cfg index ed4178c2e62..97bda891936 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.60.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.80.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.80.inst.cfg index 9b6752cddfe..79e4dfcfe59 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.80.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.25.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.25.inst.cfg index 558ba90c08a..bb673ccc53d 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.25.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.30.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.30.inst.cfg index 533e4910924..ffae1f125d7 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.30.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.40.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.40.inst.cfg index ee4bfe444ee..574ec2638a3 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.40.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.50.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.50.inst.cfg index 0be6244d22f..908a07a12eb 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.50.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.60.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.60.inst.cfg index 2b6fdc91b50..816401bed08 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.60.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.80.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.80.inst.cfg index 2ce93740e6b..c34767b93e5 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.80.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/fusion3/fusion3_0.4.inst.cfg b/resources/variants/fusion3/fusion3_0.4.inst.cfg index 032d1df8d6f..261f26604f0 100644 --- a/resources/variants/fusion3/fusion3_0.4.inst.cfg +++ b/resources/variants/fusion3/fusion3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/fusion3/fusion3_0.6.inst.cfg b/resources/variants/fusion3/fusion3_0.6.inst.cfg index d71f9bf60ae..005f95660e7 100644 --- a/resources/variants/fusion3/fusion3_0.6.inst.cfg +++ b/resources/variants/fusion3/fusion3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/fusion3/fusion3_0.8.inst.cfg b/resources/variants/fusion3/fusion3_0.8.inst.cfg index 82d13ac5094..7d0fdd0cead 100644 --- a/resources/variants/fusion3/fusion3_0.8.inst.cfg +++ b/resources/variants/fusion3/fusion3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/fusion3/fusion3_f410_0.4.inst.cfg b/resources/variants/fusion3/fusion3_f410_0.4.inst.cfg index 032d1df8d6f..261f26604f0 100644 --- a/resources/variants/fusion3/fusion3_f410_0.4.inst.cfg +++ b/resources/variants/fusion3/fusion3_f410_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/fusion3/fusion3_f410_0.6.inst.cfg b/resources/variants/fusion3/fusion3_f410_0.6.inst.cfg index d71f9bf60ae..005f95660e7 100644 --- a/resources/variants/fusion3/fusion3_f410_0.6.inst.cfg +++ b/resources/variants/fusion3/fusion3_f410_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/fusion3/fusion3_f410_0.8.inst.cfg b/resources/variants/fusion3/fusion3_f410_0.8.inst.cfg index 82d13ac5094..7d0fdd0cead 100644 --- a/resources/variants/fusion3/fusion3_f410_0.8.inst.cfg +++ b/resources/variants/fusion3/fusion3_f410_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.2.inst.cfg index 073bfde093d..9a9e9878e90 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.3.inst.cfg index 35738c38b4d..2202e0a978f 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.4.inst.cfg index 771d388981a..fc88f406112 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.5.inst.cfg index 3def0e3b77e..698b17ef685 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.6.inst.cfg index c3339144f02..65f63a11a1e 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.8.inst.cfg index d9d55c53bab..1430a9d5cb9 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_1.0.inst.cfg index 67928921d48..8c29cae1bb8 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.2.inst.cfg index b1214cc24b5..7be8d97e018 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.3.inst.cfg index 55648cf4be6..3201d2b9c36 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.4.inst.cfg index 8a7aeae477f..568b11da35e 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.5.inst.cfg index 7edabf63275..720f7f2dced 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.6.inst.cfg index ead8c5b8917..ecdddc5cbd0 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.8.inst.cfg index cdfa9fe6717..5e85dd0b29c 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_1.0.inst.cfg index faee4e113b3..fdb5b146bcc 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.2.inst.cfg index 88156da5e3f..2f00ab96559 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.3.inst.cfg index 57da0f5263c..c19b8e959fc 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.4.inst.cfg index 93b6d43e9db..9d2ab142a9f 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.5.inst.cfg index 51e95b839cf..8ade0c96d53 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.6.inst.cfg index e46f80f6855..5fe235062e4 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.8.inst.cfg index bf1850752f8..fe6e60220c5 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_1.0.inst.cfg index ae25d00c77f..19de98bcf73 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.2.inst.cfg index 7ce2a570e2e..ee96e1c069f 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.3.inst.cfg index 5029b53c1db..e86a3f42655 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.4.inst.cfg index 6940fc607c5..187ad167f92 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.5.inst.cfg index 0086d1c6034..73f36e97c9b 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.6.inst.cfg index 5b27a712db6..b685d8b0acc 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.8.inst.cfg index e4dc87a4938..3a961ab375e 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_1.0.inst.cfg index 76cb672edab..45e7f7b6fc0 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.2.inst.cfg index 0be00235ea4..1500608c0f5 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.3.inst.cfg index 9cec948b0a7..028454782f1 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.4.inst.cfg index f35d51b4a11..6a0384123b8 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.5.inst.cfg index 563f8b902b7..8beb28df6d2 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.6.inst.cfg index d1902b60c74..690db843a82 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.8.inst.cfg index 50c7f204577..55482393649 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_1.0.inst.cfg index 207f845af0a..64b436c163a 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.2.inst.cfg index 205ef057b44..81ed9dfa9da 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.3.inst.cfg index 640fd67b3fc..c987c0d0895 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.4.inst.cfg index 7737cb527bf..24f25650204 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.5.inst.cfg index 8c9d8ec96f5..c6fdbe00ec8 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.6.inst.cfg index c38d74d549b..0025650b9e3 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.8.inst.cfg index 0b942550362..0b85e692060 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_1.0.inst.cfg index 70e3f7a1e0a..655f01f84d8 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.2.inst.cfg index 91a561d4596..d7f363ad541 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.3.inst.cfg index a69f11ecf43..78e32292a9b 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.4.inst.cfg index 4b3f2f9a2dd..24b83a1403d 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.5.inst.cfg index b9ea6e9f9fe..e2fb8c11c45 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.6.inst.cfg index 87ea7a7951d..050609fd6cb 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.8.inst.cfg index 78d066ae44f..3a95ad3e797 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_1.0.inst.cfg index 82d05d6f695..c7cd51bc8df 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.2.inst.cfg index 2d08c3a349c..c1256d94e69 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.3.inst.cfg index 9c6dfcc9a9d..a68a22081d7 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.4.inst.cfg index 923ec6db031..1197b828445 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.5.inst.cfg index 440c72ca1e7..7b816051bcb 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.6.inst.cfg index b853c0ec3a2..44ac8d0d846 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.8.inst.cfg index 66d1be9510d..b5ed03911ff 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_1.0.inst.cfg index 70dd52e71f7..cf1b29a5dbc 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.2.inst.cfg index 3d086a71299..b615fdf9568 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.3.inst.cfg index e7d5a500c8a..fdcac4247c1 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.4.inst.cfg index 7c3e19e18e7..e8a30cb72de 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.5.inst.cfg index a41b890f1cd..96e2165217d 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.6.inst.cfg index 9d0968940fd..05de4f03fcc 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.8.inst.cfg index 2918812f148..e1ca78c632b 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_1.0.inst.cfg index a7a5cbc5169..3bc4fb47912 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.2.inst.cfg index 464246ea609..29098cad270 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.3.inst.cfg index 738fc3458d7..14ab2423adc 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.4.inst.cfg index 9c0507ee7f6..ff64aaf57c2 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.5.inst.cfg index c46105ee964..cb75505ad85 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.6.inst.cfg index 47197c50c4b..4a606afa5e6 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.8.inst.cfg index 79994015e05..de9f4a6eacd 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_1.0.inst.cfg index 64473d57c67..b8d702dd927 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.2.inst.cfg index 94353d46454..b2758076262 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.3.inst.cfg index 7276bfe5c83..444cd8c49ec 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.4.inst.cfg index 6ef937964fb..b12b83d69da 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.5.inst.cfg index bbd1a135bfe..fd808f3a2d1 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.6.inst.cfg index 13f0c386f62..304bf82ed64 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.8.inst.cfg index 7a9f1cd96ec..e2a2d917bdf 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_1.0.inst.cfg index 16b62b79ecd..503ee475234 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.2.inst.cfg index ac5014f44e9..008949a21a0 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.3.inst.cfg index 06db2686449..011102c56d2 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.4.inst.cfg index 66d27fbaeba..31b0a7b2902 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.5.inst.cfg index 05665e2f1c3..4cf9cdde6ad 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.6.inst.cfg index e19a3b7ac72..a514327da31 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.8.inst.cfg index 7edbb4db5fa..78e14970c61 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_1.0.inst.cfg index d366f986c0d..731eebadcf5 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.2.inst.cfg index 7cbba5a681e..f3372f51303 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.3.inst.cfg index 834c7b97727..2c1b42a7d3d 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.4.inst.cfg index 608d17b7a24..f47174704da 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.5.inst.cfg index 192ccda494f..103013e2213 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.6.inst.cfg index ff70e1b2c50..f4ba7996b60 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.8.inst.cfg index 9be2fda82d9..06e9293f084 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_1.0.inst.cfg index dd6c2e03449..2f15045922c 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.2.inst.cfg index 48dac05f841..27897ba995f 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.3.inst.cfg index 59fac38bda3..cbda21f3a8b 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.4.inst.cfg index e8477d9dbd3..7f3b37557b8 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.5.inst.cfg index fc260787840..7f928eb7d72 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.6.inst.cfg index 974667f4623..f50565bd15c 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.8.inst.cfg index 2d9e169eb5a..7c164087d88 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_1.0.inst.cfg index 3be895b6d74..a4239bb42f0 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.2.inst.cfg index 0ba2b440cd4..f28d5017812 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.3.inst.cfg index 8e3980c13b1..4fbb3f0926b 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.4.inst.cfg index d64df8faf4c..99e2398e708 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.5.inst.cfg index 6b41030cdfc..d017e391d96 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.6.inst.cfg index 220550d38b8..670d6e9668d 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.8.inst.cfg index 46df1945e3d..850ebfc9ace 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_1.0.inst.cfg index 84f86b78250..009a647ab04 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_025_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_025_e3d.inst.cfg index feee98341fd..f3ffadd4efd 100644 --- a/resources/variants/gmax/gmax15plus_025_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_025_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_04_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_04_e3d.inst.cfg index ea6031a55f8..3eb5c892d88 100644 --- a/resources/variants/gmax/gmax15plus_04_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_04_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_05_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_05_e3d.inst.cfg index dc2013400ad..9a2e0b9baab 100644 --- a/resources/variants/gmax/gmax15plus_05_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_05_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_05_jhead.inst.cfg b/resources/variants/gmax/gmax15plus_05_jhead.inst.cfg index 7bb73d376b1..2aa34bdedd0 100644 --- a/resources/variants/gmax/gmax15plus_05_jhead.inst.cfg +++ b/resources/variants/gmax/gmax15plus_05_jhead.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_06_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_06_e3d.inst.cfg index 20a68280f56..97da3458b81 100644 --- a/resources/variants/gmax/gmax15plus_06_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_06_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_08_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_08_e3d.inst.cfg index 5554348466c..d76fb1ab6d4 100644 --- a/resources/variants/gmax/gmax15plus_08_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_08_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_10_jhead.inst.cfg b/resources/variants/gmax/gmax15plus_10_jhead.inst.cfg index e14b37d410a..10241ec4aee 100644 --- a/resources/variants/gmax/gmax15plus_10_jhead.inst.cfg +++ b/resources/variants/gmax/gmax15plus_10_jhead.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_12_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_12_e3d.inst.cfg index da6f85cd787..75bd587acaa 100644 --- a/resources/variants/gmax/gmax15plus_12_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_12_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_025_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_dual_025_e3d.inst.cfg index b83cc5e0cbb..304dd70619b 100644 --- a/resources/variants/gmax/gmax15plus_dual_025_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_025_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_04_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_dual_04_e3d.inst.cfg index 2c5b950fa7b..ba54ecbc239 100644 --- a/resources/variants/gmax/gmax15plus_dual_04_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_04_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_05_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_dual_05_e3d.inst.cfg index f8e5949f32a..ec91df6fc0e 100644 --- a/resources/variants/gmax/gmax15plus_dual_05_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_05_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_05_jhead.inst.cfg b/resources/variants/gmax/gmax15plus_dual_05_jhead.inst.cfg index ae2c4c2e2c6..7ac4be04d40 100644 --- a/resources/variants/gmax/gmax15plus_dual_05_jhead.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_05_jhead.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_06_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_dual_06_e3d.inst.cfg index 6dae917b2fa..43f487f522a 100644 --- a/resources/variants/gmax/gmax15plus_dual_06_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_06_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_08_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_dual_08_e3d.inst.cfg index 108db8a2c1e..41c3a810cf7 100644 --- a/resources/variants/gmax/gmax15plus_dual_08_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_08_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_10_jhead.inst.cfg b/resources/variants/gmax/gmax15plus_dual_10_jhead.inst.cfg index 23e1ba20473..3a9fbc00b32 100644 --- a/resources/variants/gmax/gmax15plus_dual_10_jhead.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_10_jhead.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_base_0.4.inst.cfg b/resources/variants/goofoo/goofoo_base_0.4.inst.cfg index edd56cb8b06..b37d8481fb2 100644 --- a/resources/variants/goofoo/goofoo_base_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_cube_0.7.inst.cfg b/resources/variants/goofoo/goofoo_cube_0.7.inst.cfg index 7313a769eac..fa289fd3f65 100644 --- a/resources/variants/goofoo/goofoo_cube_0.7.inst.cfg +++ b/resources/variants/goofoo/goofoo_cube_0.7.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_e-one_0.2.inst.cfg b/resources/variants/goofoo/goofoo_e-one_0.2.inst.cfg index 7ada6238e5c..d58c829c098 100644 --- a/resources/variants/goofoo/goofoo_e-one_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_e-one_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_e-one_0.4.inst.cfg b/resources/variants/goofoo/goofoo_e-one_0.4.inst.cfg index 5e317ddbaa9..aeed0bafc01 100644 --- a/resources/variants/goofoo/goofoo_e-one_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_e-one_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_e-one_0.6.inst.cfg b/resources/variants/goofoo/goofoo_e-one_0.6.inst.cfg index 2ea49513615..147a685eca2 100644 --- a/resources/variants/goofoo/goofoo_e-one_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_e-one_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_e-one_0.8.inst.cfg b/resources/variants/goofoo/goofoo_e-one_0.8.inst.cfg index 9d4fae1ab86..0248637e1a6 100644 --- a/resources/variants/goofoo/goofoo_e-one_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_e-one_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_e-one_1.0.inst.cfg b/resources/variants/goofoo/goofoo_e-one_1.0.inst.cfg index b4b70b2804b..70b1eebafa0 100644 --- a/resources/variants/goofoo/goofoo_e-one_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_e-one_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_gemini_0.2.inst.cfg b/resources/variants/goofoo/goofoo_gemini_0.2.inst.cfg index d78fbb80896..c73ab7ad5bb 100644 --- a/resources/variants/goofoo/goofoo_gemini_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_gemini_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_gemini_0.4.inst.cfg b/resources/variants/goofoo/goofoo_gemini_0.4.inst.cfg index 45e088df352..c68dc99c956 100644 --- a/resources/variants/goofoo/goofoo_gemini_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_gemini_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_gemini_0.6.inst.cfg b/resources/variants/goofoo/goofoo_gemini_0.6.inst.cfg index 070fcb73595..2114e78b0a6 100644 --- a/resources/variants/goofoo/goofoo_gemini_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_gemini_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_gemini_0.8.inst.cfg b/resources/variants/goofoo/goofoo_gemini_0.8.inst.cfg index 93681c06e08..cf72e50f95c 100644 --- a/resources/variants/goofoo/goofoo_gemini_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_gemini_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_gemini_1.0.inst.cfg b/resources/variants/goofoo/goofoo_gemini_1.0.inst.cfg index 0fcb2d256fc..2ee9a5892df 100644 --- a/resources/variants/goofoo/goofoo_gemini_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_gemini_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_giant_0.2.inst.cfg b/resources/variants/goofoo/goofoo_giant_0.2.inst.cfg index 623eb82821b..7b6bb6168bc 100644 --- a/resources/variants/goofoo/goofoo_giant_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_giant_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_giant_0.4.inst.cfg b/resources/variants/goofoo/goofoo_giant_0.4.inst.cfg index 4fdd5889227..646bd838d90 100644 --- a/resources/variants/goofoo/goofoo_giant_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_giant_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_giant_0.6.inst.cfg b/resources/variants/goofoo/goofoo_giant_0.6.inst.cfg index 53a36b3d1db..e27af8852f1 100644 --- a/resources/variants/goofoo/goofoo_giant_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_giant_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_giant_0.8.inst.cfg b/resources/variants/goofoo/goofoo_giant_0.8.inst.cfg index 979eb3ee473..2668a4abf5c 100644 --- a/resources/variants/goofoo/goofoo_giant_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_giant_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_giant_1.0.inst.cfg b/resources/variants/goofoo/goofoo_giant_1.0.inst.cfg index 8cd6591c7d7..ddd0196d45e 100644 --- a/resources/variants/goofoo/goofoo_giant_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_giant_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_max_0.2.inst.cfg b/resources/variants/goofoo/goofoo_max_0.2.inst.cfg index 85cb28cf951..1f1ac3e61d4 100644 --- a/resources/variants/goofoo/goofoo_max_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_max_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_max_0.4.inst.cfg b/resources/variants/goofoo/goofoo_max_0.4.inst.cfg index 82388a823b9..8e9fe3bf93b 100644 --- a/resources/variants/goofoo/goofoo_max_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_max_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_max_0.6.inst.cfg b/resources/variants/goofoo/goofoo_max_0.6.inst.cfg index 6f40759e133..4a8838a97ba 100644 --- a/resources/variants/goofoo/goofoo_max_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_max_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_max_0.8.inst.cfg b/resources/variants/goofoo/goofoo_max_0.8.inst.cfg index c521a9e8ba2..9cba9c182bd 100644 --- a/resources/variants/goofoo/goofoo_max_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_max_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_max_1.0.inst.cfg b/resources/variants/goofoo/goofoo_max_1.0.inst.cfg index 92ef73f8fdf..378879d8fca 100644 --- a/resources/variants/goofoo/goofoo_max_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_max_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_mido_0.2.inst.cfg b/resources/variants/goofoo/goofoo_mido_0.2.inst.cfg index 4d75934903d..cb320b755a2 100644 --- a/resources/variants/goofoo/goofoo_mido_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_mido_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_mido_0.4.inst.cfg b/resources/variants/goofoo/goofoo_mido_0.4.inst.cfg index 432f4e4eb11..7aa7995d5f5 100644 --- a/resources/variants/goofoo/goofoo_mido_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_mido_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_mido_0.6.inst.cfg b/resources/variants/goofoo/goofoo_mido_0.6.inst.cfg index 842c973865d..d4f0f0ebbcd 100644 --- a/resources/variants/goofoo/goofoo_mido_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_mido_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_mido_0.8.inst.cfg b/resources/variants/goofoo/goofoo_mido_0.8.inst.cfg index 5956dbc848f..49016ad3bc2 100644 --- a/resources/variants/goofoo/goofoo_mido_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_mido_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_mido_1.0.inst.cfg b/resources/variants/goofoo/goofoo_mido_1.0.inst.cfg index 22210336fac..e79ef6553a0 100644 --- a/resources/variants/goofoo/goofoo_mido_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_mido_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_miniplus_0.2.inst.cfg b/resources/variants/goofoo/goofoo_miniplus_0.2.inst.cfg index db56fd8a68b..d1fbaabb38f 100644 --- a/resources/variants/goofoo/goofoo_miniplus_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_miniplus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_miniplus_0.4.inst.cfg b/resources/variants/goofoo/goofoo_miniplus_0.4.inst.cfg index eab49f6ff2d..63f75c8f07f 100644 --- a/resources/variants/goofoo/goofoo_miniplus_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_miniplus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_miniplus_0.6.inst.cfg b/resources/variants/goofoo/goofoo_miniplus_0.6.inst.cfg index c443ac435f9..d4457a95f3a 100644 --- a/resources/variants/goofoo/goofoo_miniplus_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_miniplus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_miniplus_0.8.inst.cfg b/resources/variants/goofoo/goofoo_miniplus_0.8.inst.cfg index 0918d2b0eab..8c755e45e91 100644 --- a/resources/variants/goofoo/goofoo_miniplus_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_miniplus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_miniplus_1.0.inst.cfg b/resources/variants/goofoo/goofoo_miniplus_1.0.inst.cfg index 8657cd34a49..441ca6516ca 100644 --- a/resources/variants/goofoo/goofoo_miniplus_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_miniplus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_nova_0.2.inst.cfg b/resources/variants/goofoo/goofoo_nova_0.2.inst.cfg index b0629040094..dd9bb88f484 100644 --- a/resources/variants/goofoo/goofoo_nova_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_nova_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_nova_0.4.inst.cfg b/resources/variants/goofoo/goofoo_nova_0.4.inst.cfg index e2a711bc230..bfee7afe9a4 100644 --- a/resources/variants/goofoo/goofoo_nova_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_nova_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_nova_0.6.inst.cfg b/resources/variants/goofoo/goofoo_nova_0.6.inst.cfg index ca8d77c73ef..1fcb9146255 100644 --- a/resources/variants/goofoo/goofoo_nova_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_nova_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_nova_0.8.inst.cfg b/resources/variants/goofoo/goofoo_nova_0.8.inst.cfg index ef0b26c2e1a..71d1d2dc524 100644 --- a/resources/variants/goofoo/goofoo_nova_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_nova_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_nova_1.0.inst.cfg b/resources/variants/goofoo/goofoo_nova_1.0.inst.cfg index 9039055f482..3f9c883b819 100644 --- a/resources/variants/goofoo/goofoo_nova_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_nova_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_plus_0.2.inst.cfg b/resources/variants/goofoo/goofoo_plus_0.2.inst.cfg index 5df2ea85507..32ab5c41d40 100644 --- a/resources/variants/goofoo/goofoo_plus_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_plus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_plus_0.4.inst.cfg b/resources/variants/goofoo/goofoo_plus_0.4.inst.cfg index bcb84bc11f0..0af036d5a3e 100644 --- a/resources/variants/goofoo/goofoo_plus_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_plus_0.6.inst.cfg b/resources/variants/goofoo/goofoo_plus_0.6.inst.cfg index 29262517986..1f1735b7119 100644 --- a/resources/variants/goofoo/goofoo_plus_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_plus_0.8.inst.cfg b/resources/variants/goofoo/goofoo_plus_0.8.inst.cfg index eab2762d8fb..c960de06d4e 100644 --- a/resources/variants/goofoo/goofoo_plus_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_plus_1.0.inst.cfg b/resources/variants/goofoo/goofoo_plus_1.0.inst.cfg index 74124351430..2b1d126cb7b 100644 --- a/resources/variants/goofoo/goofoo_plus_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_plus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_t-one_0.2.inst.cfg b/resources/variants/goofoo/goofoo_t-one_0.2.inst.cfg index ce14d3252a2..c3ba8d4f4a9 100644 --- a/resources/variants/goofoo/goofoo_t-one_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_t-one_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_t-one_0.4.inst.cfg b/resources/variants/goofoo/goofoo_t-one_0.4.inst.cfg index 647f52efff4..6e18bd23585 100644 --- a/resources/variants/goofoo/goofoo_t-one_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_t-one_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_t-one_0.6.inst.cfg b/resources/variants/goofoo/goofoo_t-one_0.6.inst.cfg index 5037e706f39..0d1414e4201 100644 --- a/resources/variants/goofoo/goofoo_t-one_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_t-one_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_t-one_0.8.inst.cfg b/resources/variants/goofoo/goofoo_t-one_0.8.inst.cfg index f43062c605a..2160585bf92 100644 --- a/resources/variants/goofoo/goofoo_t-one_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_t-one_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_t-one_1.0.inst.cfg b/resources/variants/goofoo/goofoo_t-one_1.0.inst.cfg index 042d5cbbf0c..0d03fe5d623 100644 --- a/resources/variants/goofoo/goofoo_t-one_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_t-one_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tiny_0.2.inst.cfg b/resources/variants/goofoo/goofoo_tiny_0.2.inst.cfg index 660658ba582..a72d9bb26a7 100644 --- a/resources/variants/goofoo/goofoo_tiny_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_tiny_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tiny_0.4.inst.cfg b/resources/variants/goofoo/goofoo_tiny_0.4.inst.cfg index 1177030f93d..9858154106d 100644 --- a/resources/variants/goofoo/goofoo_tiny_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_tiny_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tiny_0.6.inst.cfg b/resources/variants/goofoo/goofoo_tiny_0.6.inst.cfg index 497c117e6ec..a3f7b0fcf53 100644 --- a/resources/variants/goofoo/goofoo_tiny_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_tiny_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tiny_0.8.inst.cfg b/resources/variants/goofoo/goofoo_tiny_0.8.inst.cfg index 05ca9eca789..0036f5babdb 100644 --- a/resources/variants/goofoo/goofoo_tiny_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_tiny_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tiny_1.0.inst.cfg b/resources/variants/goofoo/goofoo_tiny_1.0.inst.cfg index 2ba839b3402..2906a243ba5 100644 --- a/resources/variants/goofoo/goofoo_tiny_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_tiny_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tinyplus_0.2.inst.cfg b/resources/variants/goofoo/goofoo_tinyplus_0.2.inst.cfg index b38b300dcbb..d1d06fd35e9 100644 --- a/resources/variants/goofoo/goofoo_tinyplus_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_tinyplus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tinyplus_0.4.inst.cfg b/resources/variants/goofoo/goofoo_tinyplus_0.4.inst.cfg index ca2dbe67905..87fe1cb6452 100644 --- a/resources/variants/goofoo/goofoo_tinyplus_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_tinyplus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tinyplus_0.6.inst.cfg b/resources/variants/goofoo/goofoo_tinyplus_0.6.inst.cfg index 5973febc70e..05f5c41e4d0 100644 --- a/resources/variants/goofoo/goofoo_tinyplus_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_tinyplus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tinyplus_0.8.inst.cfg b/resources/variants/goofoo/goofoo_tinyplus_0.8.inst.cfg index 28a472e72f9..ba6734bc991 100644 --- a/resources/variants/goofoo/goofoo_tinyplus_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_tinyplus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tinyplus_1.0.inst.cfg b/resources/variants/goofoo/goofoo_tinyplus_1.0.inst.cfg index f5fdec77565..564189bab58 100644 --- a/resources/variants/goofoo/goofoo_tinyplus_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_tinyplus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/hms434/hms434_0.4tpnozzle.inst.cfg b/resources/variants/hms434/hms434_0.4tpnozzle.inst.cfg index 0a28dd00e1c..144b0401c09 100644 --- a/resources/variants/hms434/hms434_0.4tpnozzle.inst.cfg +++ b/resources/variants/hms434/hms434_0.4tpnozzle.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/hms434/hms434_0.8tpnozzle.inst.cfg b/resources/variants/hms434/hms434_0.8tpnozzle.inst.cfg index 92c05577b8a..75062afd05e 100644 --- a/resources/variants/hms434/hms434_0.8tpnozzle.inst.cfg +++ b/resources/variants/hms434/hms434_0.8tpnozzle.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/imade3d/imade3d_jellybox_0.4.inst.cfg b/resources/variants/imade3d/imade3d_jellybox_0.4.inst.cfg index 71e1c6cb299..34e6780ff0f 100644 --- a/resources/variants/imade3d/imade3d_jellybox_0.4.inst.cfg +++ b/resources/variants/imade3d/imade3d_jellybox_0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = IMADE3D hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/imade3d/imade3d_jellybox_2_0.4.inst.cfg b/resources/variants/imade3d/imade3d_jellybox_2_0.4.inst.cfg index 94ad9c2e175..beb652c36c2 100644 --- a/resources/variants/imade3d/imade3d_jellybox_2_0.4.inst.cfg +++ b/resources/variants/imade3d/imade3d_jellybox_2_0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = IMADE3D hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.2.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.2.inst.cfg index a34a0f4587f..923f826dfd7 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.2.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.3.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.3.inst.cfg index d7dd0b3746f..587f9597f50 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.3.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.4.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.4.inst.cfg index 1944ad57513..33823a9182d 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.4.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.5.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.5.inst.cfg index f2e80a208cc..c8eb6ccaba9 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.5.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.6.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.6.inst.cfg index 5ffb9996d26..8babba283c4 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.6.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.8.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.8.inst.cfg index 516e0c99c9d..cbcef16f416 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.8.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_1.0.inst.cfg b/resources/variants/kingroon/kingroon_kp3_1.0.inst.cfg index 66c473929fa..0d5b4f0b01c 100644 --- a/resources/variants/kingroon/kingroon_kp3_1.0.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.2.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.2.inst.cfg index 935e62e0592..4a68bb7e11f 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.2.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.3.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.3.inst.cfg index b8918d2b42e..f49df9fd338 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.3.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.4.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.4.inst.cfg index 4ffeaeee2ce..92c337beb39 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.4.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.5.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.5.inst.cfg index a4f6abd2a4e..c4b44284060 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.5.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.6.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.6.inst.cfg index cc14b87ebbd..d52eb29e8d9 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.6.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.8.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.8.inst.cfg index 7ba0f27162d..7907785dfb8 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.8.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_1.0.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_1.0.inst.cfg index 0c5fa111447..e7f24084c3e 100644 --- a/resources/variants/kingroon/kingroon_kp3s_1.0.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.2.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.2.inst.cfg index 90409a027ee..4d0858a5738 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.2.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.3.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.3.inst.cfg index d90512fc699..e127a63c76e 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.3.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.4.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.4.inst.cfg index ae48963d8a1..3422da8b90f 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.4.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.5.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.5.inst.cfg index 36b1dcbbc4b..744e7e441de 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.5.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.6.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.6.inst.cfg index 57914a8ab3b..289eb3bd96e 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.6.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.8.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.8.inst.cfg index fb1a6b5e8f5..68aa6dc7daf 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.8.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_1.0.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_1.0.inst.cfg index b05acc56760..5e332ea26bf 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_1.0.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.2.inst.cfg b/resources/variants/kosher/kosher220_0.2.inst.cfg index 59547730844..9f18ba241c4 100644 --- a/resources/variants/kosher/kosher220_0.2.inst.cfg +++ b/resources/variants/kosher/kosher220_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.3.inst.cfg b/resources/variants/kosher/kosher220_0.3.inst.cfg index cc5cd3e5089..dd2f8c5f5ea 100644 --- a/resources/variants/kosher/kosher220_0.3.inst.cfg +++ b/resources/variants/kosher/kosher220_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.4.inst.cfg b/resources/variants/kosher/kosher220_0.4.inst.cfg index 07992ddbb52..13e50382a54 100644 --- a/resources/variants/kosher/kosher220_0.4.inst.cfg +++ b/resources/variants/kosher/kosher220_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.5.inst.cfg b/resources/variants/kosher/kosher220_0.5.inst.cfg index dd80c290dd3..84a205114cd 100644 --- a/resources/variants/kosher/kosher220_0.5.inst.cfg +++ b/resources/variants/kosher/kosher220_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.6.inst.cfg b/resources/variants/kosher/kosher220_0.6.inst.cfg index d42d48ceebb..817cc898f40 100644 --- a/resources/variants/kosher/kosher220_0.6.inst.cfg +++ b/resources/variants/kosher/kosher220_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.8.inst.cfg b/resources/variants/kosher/kosher220_0.8.inst.cfg index dcd90b0864f..fa1ba81ba01 100644 --- a/resources/variants/kosher/kosher220_0.8.inst.cfg +++ b/resources/variants/kosher/kosher220_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.2.inst.cfg b/resources/variants/kosher/kosher220_dm_0.2.inst.cfg index 009eb8114d2..4e9cdb9c0eb 100644 --- a/resources/variants/kosher/kosher220_dm_0.2.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.3.inst.cfg b/resources/variants/kosher/kosher220_dm_0.3.inst.cfg index 26ff2fcad92..5d5f10e7e19 100644 --- a/resources/variants/kosher/kosher220_dm_0.3.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.4.inst.cfg b/resources/variants/kosher/kosher220_dm_0.4.inst.cfg index 50fe460de23..91f26e2a9aa 100644 --- a/resources/variants/kosher/kosher220_dm_0.4.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.5.inst.cfg b/resources/variants/kosher/kosher220_dm_0.5.inst.cfg index c3bf8c8dbae..1d864fb7cc4 100644 --- a/resources/variants/kosher/kosher220_dm_0.5.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.6.inst.cfg b/resources/variants/kosher/kosher220_dm_0.6.inst.cfg index 617dfb541fe..46216a8ccd8 100644 --- a/resources/variants/kosher/kosher220_dm_0.6.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.8.inst.cfg b/resources/variants/kosher/kosher220_dm_0.8.inst.cfg index 5c445451990..08e3d294b25 100644 --- a/resources/variants/kosher/kosher220_dm_0.8.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.2.inst.cfg b/resources/variants/kosher/kosher220_mm_0.2.inst.cfg index c8e377c8e70..d7e41a99843 100644 --- a/resources/variants/kosher/kosher220_mm_0.2.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.3.inst.cfg b/resources/variants/kosher/kosher220_mm_0.3.inst.cfg index 6c457bf6070..86694cc2dbf 100644 --- a/resources/variants/kosher/kosher220_mm_0.3.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.4.inst.cfg b/resources/variants/kosher/kosher220_mm_0.4.inst.cfg index b2f718d2779..80539d1bc9f 100644 --- a/resources/variants/kosher/kosher220_mm_0.4.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.5.inst.cfg b/resources/variants/kosher/kosher220_mm_0.5.inst.cfg index 14a534767a9..9d6aebfda65 100644 --- a/resources/variants/kosher/kosher220_mm_0.5.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.6.inst.cfg b/resources/variants/kosher/kosher220_mm_0.6.inst.cfg index f0fae06951b..4a433c838ee 100644 --- a/resources/variants/kosher/kosher220_mm_0.6.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.8.inst.cfg b/resources/variants/kosher/kosher220_mm_0.8.inst.cfg index 369569c1f25..d452fef2942 100644 --- a/resources/variants/kosher/kosher220_mm_0.8.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kosher/kosher220_pva_0.2.inst.cfg b/resources/variants/kosher/kosher220_pva_0.2.inst.cfg index 200d961bf62..ea3b821ceac 100644 --- a/resources/variants/kosher/kosher220_pva_0.2.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kosher/kosher220_pva_0.3.inst.cfg b/resources/variants/kosher/kosher220_pva_0.3.inst.cfg index d5fee608134..216388c64b0 100644 --- a/resources/variants/kosher/kosher220_pva_0.3.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kosher/kosher220_pva_0.4.inst.cfg b/resources/variants/kosher/kosher220_pva_0.4.inst.cfg index 15470c782a0..024d842630d 100644 --- a/resources/variants/kosher/kosher220_pva_0.4.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kosher/kosher220_pva_0.5.inst.cfg b/resources/variants/kosher/kosher220_pva_0.5.inst.cfg index 56f719ce121..6197e0ab9ce 100644 --- a/resources/variants/kosher/kosher220_pva_0.5.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kosher/kosher220_pva_0.6.inst.cfg b/resources/variants/kosher/kosher220_pva_0.6.inst.cfg index 4c2d7bcae38..211a361c2ba 100644 --- a/resources/variants/kosher/kosher220_pva_0.6.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/kosher/kosher220_pva_0.8.inst.cfg b/resources/variants/kosher/kosher220_pva_0.8.inst.cfg index 83ea1b57810..6f6a9dd6b40 100644 --- a/resources/variants/kosher/kosher220_pva_0.8.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/leapfrog/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg b/resources/variants/leapfrog/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg index df90214208e..0e498466d1f 100644 --- a/resources/variants/leapfrog/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg +++ b/resources/variants/leapfrog/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/leapfrog/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg b/resources/variants/leapfrog/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg index 0b8d012a9e7..5b6b78faaed 100644 --- a/resources/variants/leapfrog/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg +++ b/resources/variants/leapfrog/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/liquid/liquid_vo04.inst.cfg b/resources/variants/liquid/liquid_vo04.inst.cfg index 684f763c770..b6a2166d9c9 100644 --- a/resources/variants/liquid/liquid_vo04.inst.cfg +++ b/resources/variants/liquid/liquid_vo04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/liquid/liquid_vo06.inst.cfg b/resources/variants/liquid/liquid_vo06.inst.cfg index 318ded18614..19039b3c78f 100644 --- a/resources/variants/liquid/liquid_vo06.inst.cfg +++ b/resources/variants/liquid/liquid_vo06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/liquid/liquid_vo08.inst.cfg b/resources/variants/liquid/liquid_vo08.inst.cfg index f6c3e346e97..58cbea1b9db 100644 --- a/resources/variants/liquid/liquid_vo08.inst.cfg +++ b/resources/variants/liquid/liquid_vo08.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_0.2.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_0.2.inst.cfg index e30e219078d..0cafffacc74 100644 --- a/resources/variants/lnl3d/lnl3d_d3_0.2.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_0.4.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_0.4.inst.cfg index a405b36c2f1..146aff28dbc 100644 --- a/resources/variants/lnl3d/lnl3d_d3_0.4.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_0.6.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_0.6.inst.cfg index 80bf9215ec6..d6e273309de 100644 --- a/resources/variants/lnl3d/lnl3d_d3_0.6.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_0.8.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_0.8.inst.cfg index b14753a6152..238c9bde559 100644 --- a/resources/variants/lnl3d/lnl3d_d3_0.8.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.2.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.2.inst.cfg index bffc9144859..a8f05aa01ba 100644 --- a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.2.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.4.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.4.inst.cfg index 7bcab41a1ca..e7c7124d857 100644 --- a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.4.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.6.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.6.inst.cfg index 6fc8d120c2e..aee1c069f82 100644 --- a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.6.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.8.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.8.inst.cfg index ef8bd0cda87..a383d94a152 100644 --- a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.8.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d5_0.2.inst.cfg b/resources/variants/lnl3d/lnl3d_d5_0.2.inst.cfg index 35dedaae3c0..059dbe1656b 100644 --- a/resources/variants/lnl3d/lnl3d_d5_0.2.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d5_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d5_0.4.inst.cfg b/resources/variants/lnl3d/lnl3d_d5_0.4.inst.cfg index 9dce1e88c85..d50c897d369 100644 --- a/resources/variants/lnl3d/lnl3d_d5_0.4.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d5_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d5_0.6.inst.cfg b/resources/variants/lnl3d/lnl3d_d5_0.6.inst.cfg index e4a79bb457c..0d9fe1fd117 100644 --- a/resources/variants/lnl3d/lnl3d_d5_0.6.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d5_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d5_0.8.inst.cfg b/resources/variants/lnl3d/lnl3d_d5_0.8.inst.cfg index 9a2eaa51d22..67a3cac7210 100644 --- a/resources/variants/lnl3d/lnl3d_d5_0.8.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d5_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d6_0.2.inst.cfg b/resources/variants/lnl3d/lnl3d_d6_0.2.inst.cfg index d6f8a1aa37c..c81cbbe277c 100644 --- a/resources/variants/lnl3d/lnl3d_d6_0.2.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d6_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d6_0.4.inst.cfg b/resources/variants/lnl3d/lnl3d_d6_0.4.inst.cfg index 0c78cf88faf..cd8e2485ea9 100644 --- a/resources/variants/lnl3d/lnl3d_d6_0.4.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d6_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d6_0.6.inst.cfg b/resources/variants/lnl3d/lnl3d_d6_0.6.inst.cfg index 023e077f167..7b627bd768f 100644 --- a/resources/variants/lnl3d/lnl3d_d6_0.6.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d6_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d6_0.8.inst.cfg b/resources/variants/lnl3d/lnl3d_d6_0.8.inst.cfg index 187a2891b96..4345b950a54 100644 --- a/resources/variants/lnl3d/lnl3d_d6_0.8.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d6_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/longer/longer_base_0.4.inst.cfg b/resources/variants/longer/longer_base_0.4.inst.cfg index 33d9f1dd4b2..d024b576e34 100644 --- a/resources/variants/longer/longer_base_0.4.inst.cfg +++ b/resources/variants/longer/longer_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/longer/longer_cube2_0.4.inst.cfg b/resources/variants/longer/longer_cube2_0.4.inst.cfg index 38ad1f1ddc1..6c2af6a0f34 100644 --- a/resources/variants/longer/longer_cube2_0.4.inst.cfg +++ b/resources/variants/longer/longer_cube2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/longer/longer_lk1_0.4.inst.cfg b/resources/variants/longer/longer_lk1_0.4.inst.cfg index 4ed47af8702..7743e4c9cbe 100644 --- a/resources/variants/longer/longer_lk1_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/longer/longer_lk1plus_0.4.inst.cfg b/resources/variants/longer/longer_lk1plus_0.4.inst.cfg index a84646565db..b19e2fd0962 100644 --- a/resources/variants/longer/longer_lk1plus_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk1plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/longer/longer_lk1pro_0.4.inst.cfg b/resources/variants/longer/longer_lk1pro_0.4.inst.cfg index 5f00991b40a..be0e81f22a2 100644 --- a/resources/variants/longer/longer_lk1pro_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk1pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/longer/longer_lk4_0.4.inst.cfg b/resources/variants/longer/longer_lk4_0.4.inst.cfg index e7ac3ea123c..d5cba95d684 100644 --- a/resources/variants/longer/longer_lk4_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk4_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/longer/longer_lk4pro_0.4.inst.cfg b/resources/variants/longer/longer_lk4pro_0.4.inst.cfg index 89bd3df55e3..b68012fe195 100644 --- a/resources/variants/longer/longer_lk4pro_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk4pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/longer/longer_lk4x_0.4.inst.cfg b/resources/variants/longer/longer_lk4x_0.4.inst.cfg index c8f5cd4dbf4..839df818c46 100644 --- a/resources/variants/longer/longer_lk4x_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk4x_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/longer/longer_lk5_0.4.inst.cfg b/resources/variants/longer/longer_lk5_0.4.inst.cfg index 22b3e76ab0c..b34e18ae048 100644 --- a/resources/variants/longer/longer_lk5_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk5_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/longer/longer_lk5pro_0.4.inst.cfg b/resources/variants/longer/longer_lk5pro_0.4.inst.cfg index f6dfd5e62c7..5416c7a8107 100644 --- a/resources/variants/longer/longer_lk5pro_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk5pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mark2/Mark2_for_Ultimaker2_0.25.inst.cfg b/resources/variants/mark2/Mark2_for_Ultimaker2_0.25.inst.cfg index 8dec02c1012..2ce7a6d1a34 100644 --- a/resources/variants/mark2/Mark2_for_Ultimaker2_0.25.inst.cfg +++ b/resources/variants/mark2/Mark2_for_Ultimaker2_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mark2/Mark2_for_Ultimaker2_0.4.inst.cfg b/resources/variants/mark2/Mark2_for_Ultimaker2_0.4.inst.cfg index 1553f9338d0..e7847ad492d 100644 --- a/resources/variants/mark2/Mark2_for_Ultimaker2_0.4.inst.cfg +++ b/resources/variants/mark2/Mark2_for_Ultimaker2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mark2/Mark2_for_Ultimaker2_0.6.inst.cfg b/resources/variants/mark2/Mark2_for_Ultimaker2_0.6.inst.cfg index 7f9792a7528..c8631a6be30 100644 --- a/resources/variants/mark2/Mark2_for_Ultimaker2_0.6.inst.cfg +++ b/resources/variants/mark2/Mark2_for_Ultimaker2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mark2/Mark2_for_Ultimaker2_0.8.inst.cfg b/resources/variants/mark2/Mark2_for_Ultimaker2_0.8.inst.cfg index 76df0108565..df41a39ab10 100644 --- a/resources/variants/mark2/Mark2_for_Ultimaker2_0.8.inst.cfg +++ b/resources/variants/mark2/Mark2_for_Ultimaker2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.2.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.2.inst.cfg index 1e76c76b36a..9fedbdcd4ed 100644 --- a/resources/variants/mingda/mingda_1000pro_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.3.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.3.inst.cfg index e8c15d58d68..2f80c7df75a 100644 --- a/resources/variants/mingda/mingda_1000pro_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.4.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.4.inst.cfg index c94caecd4af..9a065336fd8 100644 --- a/resources/variants/mingda/mingda_1000pro_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.5.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.5.inst.cfg index d2e0591d39d..e84f7d89f91 100644 --- a/resources/variants/mingda/mingda_1000pro_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.6.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.6.inst.cfg index 5259e59ca49..b40a27f68c1 100644 --- a/resources/variants/mingda/mingda_1000pro_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.8.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.8.inst.cfg index e821bcf124b..937bcb14489 100644 --- a/resources/variants/mingda/mingda_1000pro_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_1.0.inst.cfg b/resources/variants/mingda/mingda_1000pro_1.0.inst.cfg index 1e35828ec9d..f731d6d0514 100644 --- a/resources/variants/mingda/mingda_1000pro_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.2.inst.cfg b/resources/variants/mingda/mingda_4h_0.2.inst.cfg index b39905c685e..75f5d1d79c9 100644 --- a/resources/variants/mingda/mingda_4h_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.3.inst.cfg b/resources/variants/mingda/mingda_4h_0.3.inst.cfg index ad6d817f5b5..cb4e88ff8ff 100644 --- a/resources/variants/mingda/mingda_4h_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.4.inst.cfg b/resources/variants/mingda/mingda_4h_0.4.inst.cfg index c7207e9e724..5db585bfcc2 100644 --- a/resources/variants/mingda/mingda_4h_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.5.inst.cfg b/resources/variants/mingda/mingda_4h_0.5.inst.cfg index 994d0c587c2..2bda5e1a22f 100644 --- a/resources/variants/mingda/mingda_4h_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.6.inst.cfg b/resources/variants/mingda/mingda_4h_0.6.inst.cfg index a455e254dc0..488f88f2c92 100644 --- a/resources/variants/mingda/mingda_4h_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.8.inst.cfg b/resources/variants/mingda/mingda_4h_0.8.inst.cfg index 9fcc1051491..bc92392977c 100644 --- a/resources/variants/mingda/mingda_4h_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_1.0.inst.cfg b/resources/variants/mingda/mingda_4h_1.0.inst.cfg index ecff382b36a..8a7b50a044c 100644 --- a/resources/variants/mingda/mingda_4h_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_4h_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.2.inst.cfg b/resources/variants/mingda/mingda_600pro_0.2.inst.cfg index 0990e204141..8cb6baa5603 100644 --- a/resources/variants/mingda/mingda_600pro_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.3.inst.cfg b/resources/variants/mingda/mingda_600pro_0.3.inst.cfg index fc41b19424c..51f9e8ab55d 100644 --- a/resources/variants/mingda/mingda_600pro_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.4.inst.cfg b/resources/variants/mingda/mingda_600pro_0.4.inst.cfg index 485604b550e..0035577e856 100644 --- a/resources/variants/mingda/mingda_600pro_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.5.inst.cfg b/resources/variants/mingda/mingda_600pro_0.5.inst.cfg index f0d1a8b4a72..1041e0d20d7 100644 --- a/resources/variants/mingda/mingda_600pro_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.6.inst.cfg b/resources/variants/mingda/mingda_600pro_0.6.inst.cfg index a024f70e882..dbc0fd3d71f 100644 --- a/resources/variants/mingda/mingda_600pro_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.8.inst.cfg b/resources/variants/mingda/mingda_600pro_0.8.inst.cfg index e8aa2462220..f8c9c71fde3 100644 --- a/resources/variants/mingda/mingda_600pro_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_1.0.inst.cfg b/resources/variants/mingda/mingda_600pro_1.0.inst.cfg index 70fa4471bd1..27b4ffee84c 100644 --- a/resources/variants/mingda/mingda_600pro_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.2.inst.cfg b/resources/variants/mingda/mingda_6h_0.2.inst.cfg index b7d394f037e..65b78cecc38 100644 --- a/resources/variants/mingda/mingda_6h_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.3.inst.cfg b/resources/variants/mingda/mingda_6h_0.3.inst.cfg index 2a162da44b7..3e38a46e8e0 100644 --- a/resources/variants/mingda/mingda_6h_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.4.inst.cfg b/resources/variants/mingda/mingda_6h_0.4.inst.cfg index 6bed3473743..cd6d2d2e86d 100644 --- a/resources/variants/mingda/mingda_6h_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.5.inst.cfg b/resources/variants/mingda/mingda_6h_0.5.inst.cfg index 80d7243cd33..1c92a90edbf 100644 --- a/resources/variants/mingda/mingda_6h_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.6.inst.cfg b/resources/variants/mingda/mingda_6h_0.6.inst.cfg index d6333520c52..081b149f82b 100644 --- a/resources/variants/mingda/mingda_6h_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.8.inst.cfg b/resources/variants/mingda/mingda_6h_0.8.inst.cfg index 0c776ca48fc..55e19ddf14f 100644 --- a/resources/variants/mingda/mingda_6h_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_1.0.inst.cfg b/resources/variants/mingda/mingda_6h_1.0.inst.cfg index c19a0113df3..0767b232fbe 100644 --- a/resources/variants/mingda/mingda_6h_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_6h_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_0.2.inst.cfg b/resources/variants/mingda/mingda_base_0.2.inst.cfg index ecf6c85f7a3..0648b25eda7 100644 --- a/resources/variants/mingda/mingda_base_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_0.3.inst.cfg b/resources/variants/mingda/mingda_base_0.3.inst.cfg index 4ad14e631b9..9864095aebf 100644 --- a/resources/variants/mingda/mingda_base_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_0.4.inst.cfg b/resources/variants/mingda/mingda_base_0.4.inst.cfg index 7819e22a0ca..a65958f2dfe 100644 --- a/resources/variants/mingda/mingda_base_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_0.6.inst.cfg b/resources/variants/mingda/mingda_base_0.6.inst.cfg index 458f415aa60..f50df518bf0 100644 --- a/resources/variants/mingda/mingda_base_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_0.8.inst.cfg b/resources/variants/mingda/mingda_base_0.8.inst.cfg index d477a9f1699..360cf533c55 100644 --- a/resources/variants/mingda/mingda_base_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_1.0.inst.cfg b/resources/variants/mingda/mingda_base_1.0.inst.cfg index 4f4415b48f1..559410315c8 100644 --- a/resources/variants/mingda/mingda_base_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.2.inst.cfg b/resources/variants/mingda/mingda_d2_0.2.inst.cfg index d5affb8e539..5d799a609cc 100644 --- a/resources/variants/mingda/mingda_d2_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.3.inst.cfg b/resources/variants/mingda/mingda_d2_0.3.inst.cfg index d1c5787a322..8743b0469c5 100644 --- a/resources/variants/mingda/mingda_d2_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.4.inst.cfg b/resources/variants/mingda/mingda_d2_0.4.inst.cfg index a93871b21c7..8f4c2f1a446 100644 --- a/resources/variants/mingda/mingda_d2_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.5.inst.cfg b/resources/variants/mingda/mingda_d2_0.5.inst.cfg index b1cac2e520a..b9bb2d683a7 100644 --- a/resources/variants/mingda/mingda_d2_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.6.inst.cfg b/resources/variants/mingda/mingda_d2_0.6.inst.cfg index fb12d1eea9e..b9b009e80c8 100644 --- a/resources/variants/mingda/mingda_d2_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.8.inst.cfg b/resources/variants/mingda/mingda_d2_0.8.inst.cfg index d5615fd39ae..cf92b6cd2b7 100644 --- a/resources/variants/mingda/mingda_d2_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_1.0.inst.cfg b/resources/variants/mingda/mingda_d2_1.0.inst.cfg index 0fc96e5c064..e37c306bc71 100644 --- a/resources/variants/mingda/mingda_d2_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_d2_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.2.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.2.inst.cfg index 7f7853c0476..8e399533a3e 100644 --- a/resources/variants/mingda/mingda_d3pro_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.3.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.3.inst.cfg index f51c153ac6e..7be7d69a37f 100644 --- a/resources/variants/mingda/mingda_d3pro_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.4.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.4.inst.cfg index 3b78e26d93b..a4141ea0d10 100644 --- a/resources/variants/mingda/mingda_d3pro_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.5.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.5.inst.cfg index 819d3651dfb..44fb6f5afef 100644 --- a/resources/variants/mingda/mingda_d3pro_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.6.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.6.inst.cfg index b6ceb3d219c..3e22aa033d3 100644 --- a/resources/variants/mingda/mingda_d3pro_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.8.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.8.inst.cfg index 5a1796de7ea..f426af89e5b 100644 --- a/resources/variants/mingda/mingda_d3pro_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_1.0.inst.cfg b/resources/variants/mingda/mingda_d3pro_1.0.inst.cfg index 331e3c320b3..596418b7dfb 100644 --- a/resources/variants/mingda/mingda_d3pro_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.2.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.2.inst.cfg index 44f8f26bb79..b0578e5b48e 100644 --- a/resources/variants/mingda/mingda_d4pro_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.3.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.3.inst.cfg index 43f510e304b..9ae9d8878ac 100644 --- a/resources/variants/mingda/mingda_d4pro_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.4.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.4.inst.cfg index 50593d35e89..8c57a7aca61 100644 --- a/resources/variants/mingda/mingda_d4pro_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.5.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.5.inst.cfg index 3727fb8c907..4ec36f2c5df 100644 --- a/resources/variants/mingda/mingda_d4pro_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.6.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.6.inst.cfg index e4dbd96907b..934329e29bf 100644 --- a/resources/variants/mingda/mingda_d4pro_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.8.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.8.inst.cfg index 8010b5cd712..492fb69ce6a 100644 --- a/resources/variants/mingda/mingda_d4pro_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_1.0.inst.cfg b/resources/variants/mingda/mingda_d4pro_1.0.inst.cfg index 8ab02e4b730..b3cf883b0fc 100644 --- a/resources/variants/mingda/mingda_d4pro_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.2.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.2.inst.cfg index dc6281101d8..4fda39ef436 100644 --- a/resources/variants/mingda/mingda_magician_max_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.3.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.3.inst.cfg index 27a268c2ce1..0aeacb4707d 100644 --- a/resources/variants/mingda/mingda_magician_max_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.4.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.4.inst.cfg index 3d37b97f892..bef2a46d78a 100644 --- a/resources/variants/mingda/mingda_magician_max_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.5.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.5.inst.cfg index 1b72c3ebe5d..cf9b29ab368 100644 --- a/resources/variants/mingda/mingda_magician_max_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.6.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.6.inst.cfg index 7808993454e..37e46faec17 100644 --- a/resources/variants/mingda/mingda_magician_max_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.8.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.8.inst.cfg index 0d7f764ad79..15685a39032 100644 --- a/resources/variants/mingda/mingda_magician_max_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_1.0.inst.cfg b/resources/variants/mingda/mingda_magician_max_1.0.inst.cfg index 11ef656d499..bcd8277a499 100644 --- a/resources/variants/mingda/mingda_magician_max_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.2.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.2.inst.cfg index d7ed29ccccf..c0531cc8527 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.3.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.3.inst.cfg index 07d83ef87fe..6199ccfdc9a 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.4.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.4.inst.cfg index c4fc96a6ee8..43b7ff34e6a 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.5.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.5.inst.cfg index 62eb622e30e..0306b328636 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.6.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.6.inst.cfg index d2efcf7a548..6cf09ed8fe8 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.8.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.8.inst.cfg index 1f790ea81b0..319514c395a 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_1.0.inst.cfg b/resources/variants/mingda/mingda_magician_pro_1.0.inst.cfg index 96784fcc423..cdd044af5c5 100644 --- a/resources/variants/mingda/mingda_magician_pro_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.2.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.2.inst.cfg index 9b225512fdf..18e659950be 100644 --- a/resources/variants/mingda/mingda_magician_x_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.3.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.3.inst.cfg index e82d82deed7..a08f4aae645 100644 --- a/resources/variants/mingda/mingda_magician_x_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.4.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.4.inst.cfg index 3efa1acda7c..ee626d27c3d 100644 --- a/resources/variants/mingda/mingda_magician_x_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.5.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.5.inst.cfg index 141ec15e98e..a3c51043d52 100644 --- a/resources/variants/mingda/mingda_magician_x_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.6.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.6.inst.cfg index 6fbac0e0ece..283c1291714 100644 --- a/resources/variants/mingda/mingda_magician_x_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.8.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.8.inst.cfg index 7592d1b7e09..dede9bdcd89 100644 --- a/resources/variants/mingda/mingda_magician_x_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_1.0.inst.cfg b/resources/variants/mingda/mingda_magician_x_1.0.inst.cfg index a6aac74b09d..69b8b21bea7 100644 --- a/resources/variants/mingda/mingda_magician_x_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.2.inst.cfg b/resources/variants/mingda/mingda_rock3_0.2.inst.cfg index 77dbeccb886..468981aaadf 100644 --- a/resources/variants/mingda/mingda_rock3_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.3.inst.cfg b/resources/variants/mingda/mingda_rock3_0.3.inst.cfg index 6ff94a3e13b..aaaad835767 100644 --- a/resources/variants/mingda/mingda_rock3_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.4.inst.cfg b/resources/variants/mingda/mingda_rock3_0.4.inst.cfg index 6f4ad9490a1..c476451a989 100644 --- a/resources/variants/mingda/mingda_rock3_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.5.inst.cfg b/resources/variants/mingda/mingda_rock3_0.5.inst.cfg index 41803b28847..a759c5471ab 100644 --- a/resources/variants/mingda/mingda_rock3_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.6.inst.cfg b/resources/variants/mingda/mingda_rock3_0.6.inst.cfg index cbd52b2814a..fa03c399cf8 100644 --- a/resources/variants/mingda/mingda_rock3_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.8.inst.cfg b/resources/variants/mingda/mingda_rock3_0.8.inst.cfg index 9fb0b2b199c..79083181cd7 100644 --- a/resources/variants/mingda/mingda_rock3_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_1.0.inst.cfg b/resources/variants/mingda/mingda_rock3_1.0.inst.cfg index e8f7d626726..0c9f1ba2a29 100644 --- a/resources/variants/mingda/mingda_rock3_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_0.4.inst.cfg b/resources/variants/modix/modix_v3_base_0.4.inst.cfg index a5f23659c78..cb017ace963 100644 --- a/resources/variants/modix/modix_v3_base_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_0.6.inst.cfg b/resources/variants/modix/modix_v3_base_0.6.inst.cfg index ec1144d4b1c..649d953823e 100644 --- a/resources/variants/modix/modix_v3_base_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_0.8.inst.cfg b/resources/variants/modix/modix_v3_base_0.8.inst.cfg index b1074fc87b5..5c0008601b3 100644 --- a/resources/variants/modix/modix_v3_base_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_1.0.inst.cfg b/resources/variants/modix/modix_v3_base_1.0.inst.cfg index bd4ffc1d0ec..272242aa7d4 100644 --- a/resources/variants/modix/modix_v3_base_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_1.2.inst.cfg b/resources/variants/modix/modix_v3_base_1.2.inst.cfg index 08371bbe608..53ebdd056dc 100644 --- a/resources/variants/modix/modix_v3_base_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_base_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_1.4.inst.cfg b/resources/variants/modix/modix_v3_base_1.4.inst.cfg index e9fa4ae5fcd..cfd9bdfd958 100644 --- a/resources/variants/modix/modix_v3_base_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_base_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_0.4.inst.cfg b/resources/variants/modix/modix_v3_big120X_0.4.inst.cfg index 93c61e90af2..de4f6f39aab 100644 --- a/resources/variants/modix/modix_v3_big120X_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_0.6.inst.cfg b/resources/variants/modix/modix_v3_big120X_0.6.inst.cfg index 3b77f922638..07dc1b5d1a3 100644 --- a/resources/variants/modix/modix_v3_big120X_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_0.8.inst.cfg b/resources/variants/modix/modix_v3_big120X_0.8.inst.cfg index ed33a502936..84479b17f5f 100644 --- a/resources/variants/modix/modix_v3_big120X_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_1.0.inst.cfg b/resources/variants/modix/modix_v3_big120X_1.0.inst.cfg index 31a29baaaa6..1e47572d40b 100644 --- a/resources/variants/modix/modix_v3_big120X_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_1.2.inst.cfg b/resources/variants/modix/modix_v3_big120X_1.2.inst.cfg index 67239ec5e89..642c348886b 100644 --- a/resources/variants/modix/modix_v3_big120X_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_1.4.inst.cfg b/resources/variants/modix/modix_v3_big120X_1.4.inst.cfg index 093d6b23673..cec17a4aa86 100644 --- a/resources/variants/modix/modix_v3_big120X_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_0.4.inst.cfg b/resources/variants/modix/modix_v3_big120Z_0.4.inst.cfg index e4094352be9..c0f50e57edf 100644 --- a/resources/variants/modix/modix_v3_big120Z_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_0.6.inst.cfg b/resources/variants/modix/modix_v3_big120Z_0.6.inst.cfg index 19fdc4d8a20..06fb3b0f02f 100644 --- a/resources/variants/modix/modix_v3_big120Z_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_0.8.inst.cfg b/resources/variants/modix/modix_v3_big120Z_0.8.inst.cfg index 54a1d3f6d7d..ef87979b9f2 100644 --- a/resources/variants/modix/modix_v3_big120Z_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_1.0.inst.cfg b/resources/variants/modix/modix_v3_big120Z_1.0.inst.cfg index 1c11bb230c3..2f94e456cf2 100644 --- a/resources/variants/modix/modix_v3_big120Z_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_1.2.inst.cfg b/resources/variants/modix/modix_v3_big120Z_1.2.inst.cfg index e841cc98410..113efb86102 100644 --- a/resources/variants/modix/modix_v3_big120Z_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_1.4.inst.cfg b/resources/variants/modix/modix_v3_big120Z_1.4.inst.cfg index 522c6bddd57..e6e6b6095de 100644 --- a/resources/variants/modix/modix_v3_big120Z_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_0.4.inst.cfg b/resources/variants/modix/modix_v3_big180X_0.4.inst.cfg index 9cc8cc91159..0a1957e0e9f 100644 --- a/resources/variants/modix/modix_v3_big180X_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_0.6.inst.cfg b/resources/variants/modix/modix_v3_big180X_0.6.inst.cfg index 64538b559ac..85f48319d28 100644 --- a/resources/variants/modix/modix_v3_big180X_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_0.8.inst.cfg b/resources/variants/modix/modix_v3_big180X_0.8.inst.cfg index 4961c0e72d5..e191ca93987 100644 --- a/resources/variants/modix/modix_v3_big180X_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_1.0.inst.cfg b/resources/variants/modix/modix_v3_big180X_1.0.inst.cfg index dfec34fff20..d525a6ad832 100644 --- a/resources/variants/modix/modix_v3_big180X_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_1.2.inst.cfg b/resources/variants/modix/modix_v3_big180X_1.2.inst.cfg index 8b97f86daf7..25f248964f5 100644 --- a/resources/variants/modix/modix_v3_big180X_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_1.4.inst.cfg b/resources/variants/modix/modix_v3_big180X_1.4.inst.cfg index b4c7ac89985..af6f22f9c36 100644 --- a/resources/variants/modix/modix_v3_big180X_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_0.4.inst.cfg b/resources/variants/modix/modix_v3_big40_0.4.inst.cfg index 7f610622eba..6de9e192572 100644 --- a/resources/variants/modix/modix_v3_big40_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_0.6.inst.cfg b/resources/variants/modix/modix_v3_big40_0.6.inst.cfg index 86778410ab5..2e838b6f611 100644 --- a/resources/variants/modix/modix_v3_big40_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_0.8.inst.cfg b/resources/variants/modix/modix_v3_big40_0.8.inst.cfg index 08b13addbac..1d3eb15e01b 100644 --- a/resources/variants/modix/modix_v3_big40_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_1.0.inst.cfg b/resources/variants/modix/modix_v3_big40_1.0.inst.cfg index 3b717733719..bd35c7a25c3 100644 --- a/resources/variants/modix/modix_v3_big40_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_1.2.inst.cfg b/resources/variants/modix/modix_v3_big40_1.2.inst.cfg index dd844eaad84..1f95020a3ce 100644 --- a/resources/variants/modix/modix_v3_big40_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_1.4.inst.cfg b/resources/variants/modix/modix_v3_big40_1.4.inst.cfg index 9ebc22a2725..7694865f216 100644 --- a/resources/variants/modix/modix_v3_big40_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_0.4.inst.cfg b/resources/variants/modix/modix_v3_big60_0.4.inst.cfg index 2dc9247c3cc..513942ae114 100644 --- a/resources/variants/modix/modix_v3_big60_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_0.6.inst.cfg b/resources/variants/modix/modix_v3_big60_0.6.inst.cfg index 9b10cbf5ea3..0ffce3eff8f 100644 --- a/resources/variants/modix/modix_v3_big60_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_0.8.inst.cfg b/resources/variants/modix/modix_v3_big60_0.8.inst.cfg index bbdc550ae95..6c06692a931 100644 --- a/resources/variants/modix/modix_v3_big60_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_1.0.inst.cfg b/resources/variants/modix/modix_v3_big60_1.0.inst.cfg index a40f3641e6d..564703d1143 100644 --- a/resources/variants/modix/modix_v3_big60_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_1.2.inst.cfg b/resources/variants/modix/modix_v3_big60_1.2.inst.cfg index 5d625d132e7..60cedbe3ded 100644 --- a/resources/variants/modix/modix_v3_big60_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_1.4.inst.cfg b/resources/variants/modix/modix_v3_big60_1.4.inst.cfg index 24e54939a5e..e34222a3db5 100644 --- a/resources/variants/modix/modix_v3_big60_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_0.4.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_0.4.inst.cfg index 5f6eade7485..426adc3082e 100644 --- a/resources/variants/modix/modix_v3_bigmeter_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_0.6.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_0.6.inst.cfg index f91a2591ecc..55c62d85b8a 100644 --- a/resources/variants/modix/modix_v3_bigmeter_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_0.8.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_0.8.inst.cfg index af13575ebba..fb8389e1e27 100644 --- a/resources/variants/modix/modix_v3_bigmeter_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_1.0.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_1.0.inst.cfg index e623a4ad3a2..61ef19159ba 100644 --- a/resources/variants/modix/modix_v3_bigmeter_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_1.2.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_1.2.inst.cfg index 4d0db841386..710f713918c 100644 --- a/resources/variants/modix/modix_v3_bigmeter_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_1.4.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_1.4.inst.cfg index dc5374c87c1..37b12893b50 100644 --- a/resources/variants/modix/modix_v3_bigmeter_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_0.4.inst.cfg b/resources/variants/modix/modix_v4_base_0.4.inst.cfg index 968712e72e4..41dbef049a0 100644 --- a/resources/variants/modix/modix_v4_base_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_0.6.inst.cfg b/resources/variants/modix/modix_v4_base_0.6.inst.cfg index f83f4e23a46..854259e4e1f 100644 --- a/resources/variants/modix/modix_v4_base_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_0.8.inst.cfg b/resources/variants/modix/modix_v4_base_0.8.inst.cfg index ad87dfa4cc7..b20cd0f3ce8 100644 --- a/resources/variants/modix/modix_v4_base_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_1.0.inst.cfg b/resources/variants/modix/modix_v4_base_1.0.inst.cfg index fdc01c05e6b..49281a641f9 100644 --- a/resources/variants/modix/modix_v4_base_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_1.2.inst.cfg b/resources/variants/modix/modix_v4_base_1.2.inst.cfg index a72ca947796..e9f38e4bcc3 100644 --- a/resources/variants/modix/modix_v4_base_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_base_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_1.4.inst.cfg b/resources/variants/modix/modix_v4_base_1.4.inst.cfg index 62967ea303d..156ad718016 100644 --- a/resources/variants/modix/modix_v4_base_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_base_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_0.4.inst.cfg b/resources/variants/modix/modix_v4_big120X_0.4.inst.cfg index 9b3b9b5024c..4a1edc2e9aa 100644 --- a/resources/variants/modix/modix_v4_big120X_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_0.6.inst.cfg b/resources/variants/modix/modix_v4_big120X_0.6.inst.cfg index 6046383104a..502ec9d80b9 100644 --- a/resources/variants/modix/modix_v4_big120X_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_0.8.inst.cfg b/resources/variants/modix/modix_v4_big120X_0.8.inst.cfg index d7cc3a4cdfd..e32506f020c 100644 --- a/resources/variants/modix/modix_v4_big120X_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_1.0.inst.cfg b/resources/variants/modix/modix_v4_big120X_1.0.inst.cfg index 963e9f8ac73..8014e1af367 100644 --- a/resources/variants/modix/modix_v4_big120X_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_1.2.inst.cfg b/resources/variants/modix/modix_v4_big120X_1.2.inst.cfg index 7e84bd034d7..63b898164c5 100644 --- a/resources/variants/modix/modix_v4_big120X_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_1.4.inst.cfg b/resources/variants/modix/modix_v4_big120X_1.4.inst.cfg index 73d57eedfab..a99530b13ae 100644 --- a/resources/variants/modix/modix_v4_big120X_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_0.4.inst.cfg b/resources/variants/modix/modix_v4_big120Z_0.4.inst.cfg index 1c6672972c6..8527d717a74 100644 --- a/resources/variants/modix/modix_v4_big120Z_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_0.6.inst.cfg b/resources/variants/modix/modix_v4_big120Z_0.6.inst.cfg index 6f0d1c42ae1..8796b02d5e9 100644 --- a/resources/variants/modix/modix_v4_big120Z_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_0.8.inst.cfg b/resources/variants/modix/modix_v4_big120Z_0.8.inst.cfg index 36d79c6509f..58a1a485669 100644 --- a/resources/variants/modix/modix_v4_big120Z_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_1.0.inst.cfg b/resources/variants/modix/modix_v4_big120Z_1.0.inst.cfg index 6a6a9de9bf9..884f21be349 100644 --- a/resources/variants/modix/modix_v4_big120Z_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_1.2.inst.cfg b/resources/variants/modix/modix_v4_big120Z_1.2.inst.cfg index 64955ea44f3..d880f3ae96c 100644 --- a/resources/variants/modix/modix_v4_big120Z_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_1.4.inst.cfg b/resources/variants/modix/modix_v4_big120Z_1.4.inst.cfg index 8b9f425894e..5852ce2f760 100644 --- a/resources/variants/modix/modix_v4_big120Z_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_0.4.inst.cfg b/resources/variants/modix/modix_v4_big180X_0.4.inst.cfg index 64086a3a2b4..3f10dc14ddb 100644 --- a/resources/variants/modix/modix_v4_big180X_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_0.6.inst.cfg b/resources/variants/modix/modix_v4_big180X_0.6.inst.cfg index 5240e890859..4c0c019f721 100644 --- a/resources/variants/modix/modix_v4_big180X_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_0.8.inst.cfg b/resources/variants/modix/modix_v4_big180X_0.8.inst.cfg index 71d1f66537e..721629f3889 100644 --- a/resources/variants/modix/modix_v4_big180X_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_1.0.inst.cfg b/resources/variants/modix/modix_v4_big180X_1.0.inst.cfg index 5b69f2036c2..c8071626d88 100644 --- a/resources/variants/modix/modix_v4_big180X_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_1.2.inst.cfg b/resources/variants/modix/modix_v4_big180X_1.2.inst.cfg index f5d5004a373..86b37a4d4a4 100644 --- a/resources/variants/modix/modix_v4_big180X_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_1.4.inst.cfg b/resources/variants/modix/modix_v4_big180X_1.4.inst.cfg index 5fee5b3ee9a..dbb6dc9004c 100644 --- a/resources/variants/modix/modix_v4_big180X_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_0.4.inst.cfg b/resources/variants/modix/modix_v4_big60_0.4.inst.cfg index a04deb4f411..9a7c1b2c1f7 100644 --- a/resources/variants/modix/modix_v4_big60_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_0.6.inst.cfg b/resources/variants/modix/modix_v4_big60_0.6.inst.cfg index 07ab30b98de..e0a946bb6a2 100644 --- a/resources/variants/modix/modix_v4_big60_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_0.8.inst.cfg b/resources/variants/modix/modix_v4_big60_0.8.inst.cfg index 1d0c073349c..4491035dd92 100644 --- a/resources/variants/modix/modix_v4_big60_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_1.0.inst.cfg b/resources/variants/modix/modix_v4_big60_1.0.inst.cfg index 540a57a2cad..1d5ca3e4489 100644 --- a/resources/variants/modix/modix_v4_big60_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_1.2.inst.cfg b/resources/variants/modix/modix_v4_big60_1.2.inst.cfg index 051131ac0ac..e2d630a8c45 100644 --- a/resources/variants/modix/modix_v4_big60_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_1.4.inst.cfg b/resources/variants/modix/modix_v4_big60_1.4.inst.cfg index c109c6e8eed..1fd7f0bd4c4 100644 --- a/resources/variants/modix/modix_v4_big60_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_0.4.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_0.4.inst.cfg index 1c132afabdc..ed406c9ad72 100644 --- a/resources/variants/modix/modix_v4_bigmeter_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_0.6.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_0.6.inst.cfg index 8258617bf81..f0b40510d71 100644 --- a/resources/variants/modix/modix_v4_bigmeter_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_0.8.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_0.8.inst.cfg index 1db24a8191e..d69e9964bf8 100644 --- a/resources/variants/modix/modix_v4_bigmeter_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_1.0.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_1.0.inst.cfg index 9cb4c333f1f..814e94fb882 100644 --- a/resources/variants/modix/modix_v4_bigmeter_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_1.2.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_1.2.inst.cfg index 54ffc66c2b2..5d783782752 100644 --- a/resources/variants/modix/modix_v4_bigmeter_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_1.4.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_1.4.inst.cfg index 5cb242da14d..570c683c817 100644 --- a/resources/variants/modix/modix_v4_bigmeter_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/multicomp/multicomp_mcpi200_0.2.inst.cfg b/resources/variants/multicomp/multicomp_mcpi200_0.2.inst.cfg index 9164f9ea781..eb96860dcb8 100644 --- a/resources/variants/multicomp/multicomp_mcpi200_0.2.inst.cfg +++ b/resources/variants/multicomp/multicomp_mcpi200_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/multicomp/multicomp_mcpi200_0.4.inst.cfg b/resources/variants/multicomp/multicomp_mcpi200_0.4.inst.cfg index e07fbeee220..b84fee233ed 100644 --- a/resources/variants/multicomp/multicomp_mcpi200_0.4.inst.cfg +++ b/resources/variants/multicomp/multicomp_mcpi200_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/multicomp/multicomp_mcpi200_0.6.inst.cfg b/resources/variants/multicomp/multicomp_mcpi200_0.6.inst.cfg index 1c3771a1ce2..b9f32820640 100644 --- a/resources/variants/multicomp/multicomp_mcpi200_0.6.inst.cfg +++ b/resources/variants/multicomp/multicomp_mcpi200_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/multicomp/multicomp_mcpi200_0.8.inst.cfg b/resources/variants/multicomp/multicomp_mcpi200_0.8.inst.cfg index 74f748a20e7..ca17db8e86b 100644 --- a/resources/variants/multicomp/multicomp_mcpi200_0.8.inst.cfg +++ b/resources/variants/multicomp/multicomp_mcpi200_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/multicomp/multicomp_mcpi200_1.0.inst.cfg b/resources/variants/multicomp/multicomp_mcpi200_1.0.inst.cfg index 31e027a18ec..7f71cd6c190 100644 --- a/resources/variants/multicomp/multicomp_mcpi200_1.0.inst.cfg +++ b/resources/variants/multicomp/multicomp_mcpi200_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/nwa3d/nwa3d_a31_04.inst.cfg b/resources/variants/nwa3d/nwa3d_a31_04.inst.cfg index c46b934fb15..71595314b63 100644 --- a/resources/variants/nwa3d/nwa3d_a31_04.inst.cfg +++ b/resources/variants/nwa3d/nwa3d_a31_04.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = DragonJe hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/nwa3d/nwa3d_a31_06.inst.cfg b/resources/variants/nwa3d/nwa3d_a31_06.inst.cfg index 3c31742b451..ceaec2b6e16 100644 --- a/resources/variants/nwa3d/nwa3d_a31_06.inst.cfg +++ b/resources/variants/nwa3d/nwa3d_a31_06.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = DragonJe hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_base_0.2.inst.cfg b/resources/variants/ratrig/ratrig_base_0.2.inst.cfg index 553f869f011..bb337f309ad 100644 --- a/resources/variants/ratrig/ratrig_base_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_base_0.3.inst.cfg b/resources/variants/ratrig/ratrig_base_0.3.inst.cfg index 7aaabc34770..ba4d9f74b9b 100644 --- a/resources/variants/ratrig/ratrig_base_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_base_0.4.inst.cfg b/resources/variants/ratrig/ratrig_base_0.4.inst.cfg index 1e79ffca331..e7849987084 100644 --- a/resources/variants/ratrig/ratrig_base_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_base_0.6.inst.cfg b/resources/variants/ratrig/ratrig_base_0.6.inst.cfg index 901033a2efd..da6595ad28a 100644 --- a/resources/variants/ratrig/ratrig_base_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_base_0.8.inst.cfg b/resources/variants/ratrig/ratrig_base_0.8.inst.cfg index 59e891f8c15..d710879bd0e 100644 --- a/resources/variants/ratrig/ratrig_base_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_base_1.0.inst.cfg b/resources/variants/ratrig/ratrig_base_1.0.inst.cfg index 19c37d17687..3a8241c15a4 100644 --- a/resources/variants/ratrig/ratrig_base_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.2.inst.cfg index 6352cdb6bc1..495d2ba3a3d 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.3.inst.cfg index 4a351bd9f45..890d7bf30f9 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.4.inst.cfg index 3a0200217ff..e640ef7adff 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.6.inst.cfg index 44df8992219..b25e6ee64a5 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.8.inst.cfg index a0d8c925983..9462fa77481 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_200_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_1.0.inst.cfg index 0753222b539..f817ee13a87 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.2.inst.cfg index f4c80c33894..a39e02aab2a 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.3.inst.cfg index f062f4c7c86..a49459aac39 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.4.inst.cfg index 1a67b8c307f..e0bf634a2c3 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.6.inst.cfg index 2eca8c927ac..c2026ce463f 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.8.inst.cfg index 1a7ca3c932a..99d6d7e38b4 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_300_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_1.0.inst.cfg index 1af12f82cd0..7ad21e8c092 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.2.inst.cfg index 4b6f94ffba9..bd02a121255 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.3.inst.cfg index c8f002caaa4..85a585d692b 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.4.inst.cfg index baa8fe1efe7..0bcee4f0115 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.6.inst.cfg index 645e14a199f..0b7ea7fc2e0 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.8.inst.cfg index 48815a88976..e5baf012f09 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_400_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_1.0.inst.cfg index dc88ce1850e..4b13608cf1e 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.2.inst.cfg index cf77712b11c..3866031f655 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.3.inst.cfg index 80d7a6bbf0d..c3dcc2fa25d 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.4.inst.cfg index 0d3801a983f..8c1911df415 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.6.inst.cfg index fba4902ba20..fa9170ee161 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.8.inst.cfg index f4e761ea367..ee71589ca25 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_500_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_1.0.inst.cfg index 11de67bfdbc..6e91017f1e3 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vminion_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.2.inst.cfg index 191326cae95..0f9433e1b2d 100644 --- a/resources/variants/ratrig/ratrig_vminion_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vminion_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.3.inst.cfg index 6e3619f095d..0faf86e4d0f 100644 --- a/resources/variants/ratrig/ratrig_vminion_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vminion_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.4.inst.cfg index 5ea05dfa9b1..0d126748d18 100644 --- a/resources/variants/ratrig/ratrig_vminion_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vminion_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.6.inst.cfg index c2ee92e9442..189218b1515 100644 --- a/resources/variants/ratrig/ratrig_vminion_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vminion_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.8.inst.cfg index a24e0c67233..e8a6437abdd 100644 --- a/resources/variants/ratrig/ratrig_vminion_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vminion_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vminion_1.0.inst.cfg index fbabf642fef..9a552948533 100644 --- a/resources/variants/ratrig/ratrig_vminion_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_basic3_0.2.inst.cfg b/resources/variants/renkforce/renkforce_basic3_0.2.inst.cfg index 8681f4a8a10..60b83e57e4b 100644 --- a/resources/variants/renkforce/renkforce_basic3_0.2.inst.cfg +++ b/resources/variants/renkforce/renkforce_basic3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_basic3_0.4.inst.cfg b/resources/variants/renkforce/renkforce_basic3_0.4.inst.cfg index c3b364aa416..9091a6144c2 100644 --- a/resources/variants/renkforce/renkforce_basic3_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_basic3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_basic3_0.6.inst.cfg b/resources/variants/renkforce/renkforce_basic3_0.6.inst.cfg index e1c5ce38c88..9f107a665aa 100644 --- a/resources/variants/renkforce/renkforce_basic3_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_basic3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_basic3_0.8.inst.cfg b/resources/variants/renkforce/renkforce_basic3_0.8.inst.cfg index 4d5ee05f26d..f63ca79ed2b 100644 --- a/resources/variants/renkforce/renkforce_basic3_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_basic3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_basic3_1.0.inst.cfg b/resources/variants/renkforce/renkforce_basic3_1.0.inst.cfg index 2c9a63fd2f0..a8c515229ca 100644 --- a/resources/variants/renkforce/renkforce_basic3_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_basic3_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_cubeone_0.7.inst.cfg b/resources/variants/renkforce/renkforce_cubeone_0.7.inst.cfg index 28a7abf81a1..53d4d0a2792 100644 --- a/resources/variants/renkforce/renkforce_cubeone_0.7.inst.cfg +++ b/resources/variants/renkforce/renkforce_cubeone_0.7.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro10plus_0.2.inst.cfg b/resources/variants/renkforce/renkforce_pro10plus_0.2.inst.cfg index 7af87e50c4f..e2a36778c66 100644 --- a/resources/variants/renkforce/renkforce_pro10plus_0.2.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro10plus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro10plus_0.4.inst.cfg b/resources/variants/renkforce/renkforce_pro10plus_0.4.inst.cfg index 70ca42b4145..aea6acc5e52 100644 --- a/resources/variants/renkforce/renkforce_pro10plus_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro10plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro10plus_0.6.inst.cfg b/resources/variants/renkforce/renkforce_pro10plus_0.6.inst.cfg index 7b253ecf4b7..228ea984256 100644 --- a/resources/variants/renkforce/renkforce_pro10plus_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro10plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro10plus_0.8.inst.cfg b/resources/variants/renkforce/renkforce_pro10plus_0.8.inst.cfg index c4e1a6771e0..c7b037a84d4 100644 --- a/resources/variants/renkforce/renkforce_pro10plus_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro10plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro10plus_1.0.inst.cfg b/resources/variants/renkforce/renkforce_pro10plus_1.0.inst.cfg index e0ec053bda9..2c1e6194ed6 100644 --- a/resources/variants/renkforce/renkforce_pro10plus_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro10plus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro3_0.2.inst.cfg b/resources/variants/renkforce/renkforce_pro3_0.2.inst.cfg index 93ba24d86e6..21ba3e3fa41 100644 --- a/resources/variants/renkforce/renkforce_pro3_0.2.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro3_0.4.inst.cfg b/resources/variants/renkforce/renkforce_pro3_0.4.inst.cfg index 707b302ed67..5b52a0479e3 100644 --- a/resources/variants/renkforce/renkforce_pro3_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro3_0.6.inst.cfg b/resources/variants/renkforce/renkforce_pro3_0.6.inst.cfg index 26d51c1bf05..89d204ff0bd 100644 --- a/resources/variants/renkforce/renkforce_pro3_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro3_0.8.inst.cfg b/resources/variants/renkforce/renkforce_pro3_0.8.inst.cfg index 7d5eada60a8..37d6d17c560 100644 --- a/resources/variants/renkforce/renkforce_pro3_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro3_1.0.inst.cfg b/resources/variants/renkforce/renkforce_pro3_1.0.inst.cfg index ecb5cb827f5..8ebb971022d 100644 --- a/resources/variants/renkforce/renkforce_pro3_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro3_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6_0.2.inst.cfg b/resources/variants/renkforce/renkforce_pro6_0.2.inst.cfg index 871a337348b..203cbb5b8d5 100644 --- a/resources/variants/renkforce/renkforce_pro6_0.2.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6_0.4.inst.cfg b/resources/variants/renkforce/renkforce_pro6_0.4.inst.cfg index 2c265e3b053..b71d1b2d841 100644 --- a/resources/variants/renkforce/renkforce_pro6_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6_0.6.inst.cfg b/resources/variants/renkforce/renkforce_pro6_0.6.inst.cfg index f1479e81993..6796ef989a0 100644 --- a/resources/variants/renkforce/renkforce_pro6_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6_0.8.inst.cfg b/resources/variants/renkforce/renkforce_pro6_0.8.inst.cfg index 287933123f8..d9114dc05ae 100644 --- a/resources/variants/renkforce/renkforce_pro6_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6_1.0.inst.cfg b/resources/variants/renkforce/renkforce_pro6_1.0.inst.cfg index bade0df4bec..83332acfa96 100644 --- a/resources/variants/renkforce/renkforce_pro6_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6plus_0.4.inst.cfg b/resources/variants/renkforce/renkforce_pro6plus_0.4.inst.cfg index d8cd4cf3057..5e276f3584e 100644 --- a/resources/variants/renkforce/renkforce_pro6plus_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6plus_0.6.inst.cfg b/resources/variants/renkforce/renkforce_pro6plus_0.6.inst.cfg index 6162c38a7e0..51b3389ea67 100644 --- a/resources/variants/renkforce/renkforce_pro6plus_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6plus_0.8.inst.cfg b/resources/variants/renkforce/renkforce_pro6plus_0.8.inst.cfg index e3cde95994b..7eb129d4d53 100644 --- a/resources/variants/renkforce/renkforce_pro6plus_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6plus_1.0.inst.cfg b/resources/variants/renkforce/renkforce_pro6plus_1.0.inst.cfg index 427f6b3c07b..79f9ad7959c 100644 --- a/resources/variants/renkforce/renkforce_pro6plus_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6plus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro7dual_0.2.inst.cfg b/resources/variants/renkforce/renkforce_pro7dual_0.2.inst.cfg index 0972aeccb61..703fc81fd3b 100755 --- a/resources/variants/renkforce/renkforce_pro7dual_0.2.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro7dual_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro7dual_0.4.inst.cfg b/resources/variants/renkforce/renkforce_pro7dual_0.4.inst.cfg index 235a3a45587..64a558c3dd6 100755 --- a/resources/variants/renkforce/renkforce_pro7dual_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro7dual_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro7dual_0.6.inst.cfg b/resources/variants/renkforce/renkforce_pro7dual_0.6.inst.cfg index c2af0c2532f..e3f73d36449 100755 --- a/resources/variants/renkforce/renkforce_pro7dual_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro7dual_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro7dual_0.8.inst.cfg b/resources/variants/renkforce/renkforce_pro7dual_0.8.inst.cfg index 37c7b58f085..7c060510e33 100755 --- a/resources/variants/renkforce/renkforce_pro7dual_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro7dual_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro7dual_1.0.inst.cfg b/resources/variants/renkforce/renkforce_pro7dual_1.0.inst.cfg index b9c1fb3d955..1c9a155153c 100755 --- a/resources/variants/renkforce/renkforce_pro7dual_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro7dual_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.2.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.2.inst.cfg index 95676e994a3..cdc699ec08a 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.3.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.3.inst.cfg index 7cfc3efc576..6d61a4aab8d 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.4.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.4.inst.cfg index 4c49dec4027..9b9c3448baf 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.5.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.5.inst.cfg index 91bb80628e3..599fdf099db 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.6.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.6.inst.cfg index 9c0e6ecddcc..509e7f20258 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.8.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.8.inst.cfg index b078d6089e7..eb2f8fa9fd4 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_1.0.inst.cfg b/resources/variants/sovol/sovol_base_bowden_1.0.inst.cfg index 40fcf0f5564..0eedaad4a1a 100644 --- a/resources/variants/sovol/sovol_base_bowden_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.2.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.2.inst.cfg index 95676e994a3..cdc699ec08a 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.3.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.3.inst.cfg index 7cfc3efc576..6d61a4aab8d 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.4.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.4.inst.cfg index 4c49dec4027..9b9c3448baf 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.5.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.5.inst.cfg index 91bb80628e3..599fdf099db 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.6.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.6.inst.cfg index 9c0e6ecddcc..509e7f20258 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.8.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.8.inst.cfg index b078d6089e7..eb2f8fa9fd4 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_1.0.inst.cfg b/resources/variants/sovol/sovol_base_planetary_1.0.inst.cfg index 40fcf0f5564..0eedaad4a1a 100644 --- a/resources/variants/sovol/sovol_base_planetary_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.2.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.2.inst.cfg index 95676e994a3..cdc699ec08a 100644 --- a/resources/variants/sovol/sovol_base_titan_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.3.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.3.inst.cfg index 7cfc3efc576..6d61a4aab8d 100644 --- a/resources/variants/sovol/sovol_base_titan_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.4.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.4.inst.cfg index 4c49dec4027..9b9c3448baf 100644 --- a/resources/variants/sovol/sovol_base_titan_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.5.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.5.inst.cfg index 91bb80628e3..599fdf099db 100644 --- a/resources/variants/sovol/sovol_base_titan_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.6.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.6.inst.cfg index 9c0e6ecddcc..509e7f20258 100644 --- a/resources/variants/sovol/sovol_base_titan_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.8.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.8.inst.cfg index b078d6089e7..eb2f8fa9fd4 100644 --- a/resources/variants/sovol/sovol_base_titan_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_1.0.inst.cfg b/resources/variants/sovol/sovol_base_titan_1.0.inst.cfg index 40fcf0f5564..0eedaad4a1a 100644 --- a/resources/variants/sovol/sovol_base_titan_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.2.inst.cfg b/resources/variants/sovol/sovol_sv01_0.2.inst.cfg index 4675382ac7f..8cb6eb9fd6c 100644 --- a/resources/variants/sovol/sovol_sv01_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.3.inst.cfg b/resources/variants/sovol/sovol_sv01_0.3.inst.cfg index 1f4dc19dbc8..6c1cf8aa25e 100644 --- a/resources/variants/sovol/sovol_sv01_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.4.inst.cfg b/resources/variants/sovol/sovol_sv01_0.4.inst.cfg index 8a9ff336d63..fcdd265d042 100644 --- a/resources/variants/sovol/sovol_sv01_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.5.inst.cfg b/resources/variants/sovol/sovol_sv01_0.5.inst.cfg index 18cf8af2433..5fbd113f8e5 100644 --- a/resources/variants/sovol/sovol_sv01_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.6.inst.cfg b/resources/variants/sovol/sovol_sv01_0.6.inst.cfg index 076b31f4ea7..1cb46e18f51 100644 --- a/resources/variants/sovol/sovol_sv01_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.8.inst.cfg b/resources/variants/sovol/sovol_sv01_0.8.inst.cfg index 02088701c9f..2aeab0e239c 100644 --- a/resources/variants/sovol/sovol_sv01_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_1.0.inst.cfg b/resources/variants/sovol/sovol_sv01_1.0.inst.cfg index 67c4921b418..4b822dc95bc 100644 --- a/resources/variants/sovol/sovol_sv01_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.2.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.2.inst.cfg index f7ef67df9a0..cdbcdb33377 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.3.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.3.inst.cfg index 66418fccdde..d984439be4b 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.4.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.4.inst.cfg index b6651990277..db9fe5749b4 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.5.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.5.inst.cfg index 3ac09cd534a..9b34ca0a2e5 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.6.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.6.inst.cfg index 2b4ba7a8e69..247f3ac25cb 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.8.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.8.inst.cfg index d19443e26a9..12e667ae056 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_1.0.inst.cfg b/resources/variants/sovol/sovol_sv01pro_1.0.inst.cfg index 79db65ef8c4..ac71470ed67 100644 --- a/resources/variants/sovol/sovol_sv01pro_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.2.inst.cfg b/resources/variants/sovol/sovol_sv03_0.2.inst.cfg index b27c368ba7b..d8cb16668c8 100644 --- a/resources/variants/sovol/sovol_sv03_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.3.inst.cfg b/resources/variants/sovol/sovol_sv03_0.3.inst.cfg index c0e0ea8e030..068bdbc98ff 100644 --- a/resources/variants/sovol/sovol_sv03_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.4.inst.cfg b/resources/variants/sovol/sovol_sv03_0.4.inst.cfg index 88fe704558b..8f60d5fe1fa 100644 --- a/resources/variants/sovol/sovol_sv03_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.5.inst.cfg b/resources/variants/sovol/sovol_sv03_0.5.inst.cfg index aa3b6dcbd63..97cddbd75cb 100644 --- a/resources/variants/sovol/sovol_sv03_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.6.inst.cfg b/resources/variants/sovol/sovol_sv03_0.6.inst.cfg index d42f878ed64..a89fe331f91 100644 --- a/resources/variants/sovol/sovol_sv03_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.8.inst.cfg b/resources/variants/sovol/sovol_sv03_0.8.inst.cfg index 6eb0061d4c3..27e6366a212 100644 --- a/resources/variants/sovol/sovol_sv03_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_1.0.inst.cfg b/resources/variants/sovol/sovol_sv03_1.0.inst.cfg index 72800bf3a17..3cb063e03ed 100644 --- a/resources/variants/sovol/sovol_sv03_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.2.inst.cfg b/resources/variants/sovol/sovol_sv05_0.2.inst.cfg index bbb14c29613..17e45bc4eb6 100644 --- a/resources/variants/sovol/sovol_sv05_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.3.inst.cfg b/resources/variants/sovol/sovol_sv05_0.3.inst.cfg index 429aa180249..207bfe8750b 100644 --- a/resources/variants/sovol/sovol_sv05_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.4.inst.cfg b/resources/variants/sovol/sovol_sv05_0.4.inst.cfg index d3b71026062..cb766a176f8 100644 --- a/resources/variants/sovol/sovol_sv05_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.5.inst.cfg b/resources/variants/sovol/sovol_sv05_0.5.inst.cfg index 398012ed4fa..40877fe343b 100644 --- a/resources/variants/sovol/sovol_sv05_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.6.inst.cfg b/resources/variants/sovol/sovol_sv05_0.6.inst.cfg index df3b34602a4..043f6621ab0 100644 --- a/resources/variants/sovol/sovol_sv05_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.8.inst.cfg b/resources/variants/sovol/sovol_sv05_0.8.inst.cfg index 80b859c9fff..1bf2de97a72 100644 --- a/resources/variants/sovol/sovol_sv05_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_1.0.inst.cfg b/resources/variants/sovol/sovol_sv05_1.0.inst.cfg index 08a03569a58..2ccf5ce5b78 100644 --- a/resources/variants/sovol/sovol_sv05_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.2.inst.cfg b/resources/variants/sovol/sovol_sv06_0.2.inst.cfg index e8bb5f98236..0feeee93b79 100644 --- a/resources/variants/sovol/sovol_sv06_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.3.inst.cfg b/resources/variants/sovol/sovol_sv06_0.3.inst.cfg index e56a618f9ef..f6badce3996 100644 --- a/resources/variants/sovol/sovol_sv06_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.4.inst.cfg b/resources/variants/sovol/sovol_sv06_0.4.inst.cfg index 729f0a80994..1ef526b59aa 100644 --- a/resources/variants/sovol/sovol_sv06_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.5.inst.cfg b/resources/variants/sovol/sovol_sv06_0.5.inst.cfg index 697c0a8cbd7..b702272de8a 100644 --- a/resources/variants/sovol/sovol_sv06_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.6.inst.cfg b/resources/variants/sovol/sovol_sv06_0.6.inst.cfg index 76afaa41152..cc2cfb918fe 100644 --- a/resources/variants/sovol/sovol_sv06_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.8.inst.cfg b/resources/variants/sovol/sovol_sv06_0.8.inst.cfg index 57aaba95d0e..645d9af3881 100644 --- a/resources/variants/sovol/sovol_sv06_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_1.0.inst.cfg b/resources/variants/sovol/sovol_sv06_1.0.inst.cfg index 1def6c310d0..f012540e97e 100644 --- a/resources/variants/sovol/sovol_sv06_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.2.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.2.inst.cfg index 801913f2a8b..be7bcbab110 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.3.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.3.inst.cfg index 24746b4b005..8cc510304bc 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.4.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.4.inst.cfg index 36c4c01724a..470c5995549 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.5.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.5.inst.cfg index a4ab21f715b..26a940fa512 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.6.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.6.inst.cfg index d502887d21f..c891fafd9ff 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.8.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.8.inst.cfg index 4d27ed19d4d..8bd7ba9c250 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_1.0.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_1.0.inst.cfg index f45e0f73d05..729ff0d845d 100644 --- a/resources/variants/sovol/sovol_sv06_plus_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_brass_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_brass_04.inst.cfg index 5e1ead766f9..c4e2e42cf40 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_brass_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_brass_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_brass_06.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_brass_06.inst.cfg index 87265e5a160..af86dfec839 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_brass_06.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_brass_06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_brass_08.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_brass_08.inst.cfg index 9f04f01e67f..5a769c4a081 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_brass_08.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_brass_08.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_04.inst.cfg index 4ef793240b5..37e404e4fb8 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_06.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_06.inst.cfg index fc5ace3f860..4e803ccaf1c 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_06.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_08.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_08.inst.cfg index 0c4514dfd59..fec8ced11d5 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_08.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_08.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_hardened_steel_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_hardened_steel_04.inst.cfg index 4ed76619dd1..8db5cf2a63b 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_hardened_steel_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_hardened_steel_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_hardened_steel_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_hardened_steel_04.inst.cfg index 0ffce60431b..51a91a5aed7 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_hardened_steel_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_hardened_steel_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_04.inst.cfg index 3f71d274043..29c92096474 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_06.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_06.inst.cfg index 5910177288c..6659d54c3ea 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_06.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_08.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_08.inst.cfg index 49688ae6f4a..45aa9d1f7d8 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_08.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_08.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_hardened_steel_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_hardened_steel_04.inst.cfg index 92748d4d3dd..1847a09a91d 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_hardened_steel_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_hardened_steel_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg b/resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg index dd9958c48bc..4bf51a967ad 100644 --- a/resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_standard_04.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_04.inst.cfg index 37cf713a158..3d705453d87 100644 --- a/resources/variants/strateo3d/strateo3d_standard_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_standard_06.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_06.inst.cfg index 269c25aaa53..3443f64531e 100644 --- a/resources/variants/strateo3d/strateo3d_standard_06.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_standard_08.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_08.inst.cfg index 58441eba1e3..f436ce1fe74 100644 --- a/resources/variants/strateo3d/strateo3d_standard_08.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_08.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_standard_10.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_10.inst.cfg index 4ab3b3926d8..b957d58d9fe 100644 --- a/resources/variants/strateo3d/strateo3d_standard_10.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_10.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_standard_12.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_12.inst.cfg index 94a250cae2c..3a35f9c4a20 100644 --- a/resources/variants/strateo3d/strateo3d_standard_12.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_12.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg index a062e40eaa8..634cb55aae4 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg index 4f7c872f83d..736dc65e3bd 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg index bac385cd611..e8c6ccbb37e 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg index 2200d028c1e..2cb0ceec7d0 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg index c82ea7b8ced..dca75697a42 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg index a3b6e8ab7a1..b3313dfc25b 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg index 6e59413f39b..a3290a298a3 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.2.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.2.inst.cfg index c6f6a59cc9c..4a3161ad318 100644 --- a/resources/variants/tizyx/tizyx_evy_0.2.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.3.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.3.inst.cfg index 1bcc6f9f80d..bd492a22244 100644 --- a/resources/variants/tizyx/tizyx_evy_0.3.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.4.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.4.inst.cfg index 0184650eac6..d92f9805418 100644 --- a/resources/variants/tizyx/tizyx_evy_0.4.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.5.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.5.inst.cfg index 85f310a75cf..0c70e642fad 100644 --- a/resources/variants/tizyx/tizyx_evy_0.5.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.5.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.6.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.6.inst.cfg index c11278805fb..a8f810227c3 100644 --- a/resources/variants/tizyx/tizyx_evy_0.6.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.8.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.8.inst.cfg index db57e2489df..9d5134ba87d 100644 --- a/resources/variants/tizyx/tizyx_evy_0.8.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_1.0.inst.cfg b/resources/variants/tizyx/tizyx_evy_1.0.inst.cfg index 25919c41cbc..040840898ad 100644 --- a/resources/variants/tizyx/tizyx_evy_1.0.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_1.0.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_dual_classic.inst.cfg b/resources/variants/tizyx/tizyx_evy_dual_classic.inst.cfg index b74479ed9b7..42c8a0cd1af 100644 --- a/resources/variants/tizyx/tizyx_evy_dual_classic.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_dual_classic.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_dual_direct_drive.inst.cfg b/resources/variants/tizyx/tizyx_evy_dual_direct_drive.inst.cfg index e423042abac..e9174895d60 100644 --- a/resources/variants/tizyx/tizyx_evy_dual_direct_drive.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_dual_direct_drive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.2.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.2.inst.cfg index 849ff5b5497..1dac3325892 100644 --- a/resources/variants/tizyx/tizyx_k25_0.2.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.3.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.3.inst.cfg index f21aaeb9c41..604408728f9 100644 --- a/resources/variants/tizyx/tizyx_k25_0.3.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.4.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.4.inst.cfg index 1b96c65430a..74446c4ef11 100644 --- a/resources/variants/tizyx/tizyx_k25_0.4.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.5.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.5.inst.cfg index 5dd314fc6e0..cf952469089 100644 --- a/resources/variants/tizyx/tizyx_k25_0.5.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.6.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.6.inst.cfg index 4d63f1e3156..3f700e6fc60 100644 --- a/resources/variants/tizyx/tizyx_k25_0.6.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.8.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.8.inst.cfg index 6eb8ad3808b..f384dbc5144 100644 --- a/resources/variants/tizyx/tizyx_k25_0.8.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_1.0.inst.cfg b/resources/variants/tizyx/tizyx_k25_1.0.inst.cfg index e28afbbd31d..85341749fa5 100644 --- a/resources/variants/tizyx/tizyx_k25_1.0.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.2.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.2.inst.cfg index 4ebd9d8b253..40a1d23b469 100644 --- a/resources/variants/tronxy/tronxy_d01_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.3.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.3.inst.cfg index 3350cbd4616..9e04c916593 100644 --- a/resources/variants/tronxy/tronxy_d01_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.4.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.4.inst.cfg index bfc8757ad31..a695a7b8987 100644 --- a/resources/variants/tronxy/tronxy_d01_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.5.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.5.inst.cfg index 34763768cbe..2fed2b9f4ce 100644 --- a/resources/variants/tronxy/tronxy_d01_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.6.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.6.inst.cfg index b8a463eb60a..1c64d304f19 100644 --- a/resources/variants/tronxy/tronxy_d01_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.8.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.8.inst.cfg index 825d7601203..6a19699f347 100644 --- a/resources/variants/tronxy/tronxy_d01_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.2.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.2.inst.cfg index c42982fa970..764aa1fe12a 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.3.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.3.inst.cfg index 518bd27d4fe..fb79bbcc37e 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.4.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.4.inst.cfg index b5038480590..2367710a734 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.5.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.5.inst.cfg index c64ca108d27..78de9fbbf89 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.6.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.6.inst.cfg index c02e91690dd..902db8e3786 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.8.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.8.inst.cfg index 6b486043aaf..06cc0beb0ff 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.2.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.2.inst.cfg index 5c037481a11..2789bd37149 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.3.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.3.inst.cfg index 3c571bdb8da..32dfae92e33 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.4.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.4.inst.cfg index d84021788f6..a135b895790 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.5.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.5.inst.cfg index f8b83d537fb..76bbf7c4c25 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.6.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.6.inst.cfg index 1e9d8b78136..25aa27be373 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.8.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.8.inst.cfg index 918b620ec58..efe536c1ce5 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.2.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.2.inst.cfg index 151b1b04723..987aebfbed3 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.3.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.3.inst.cfg index b479c964376..7c0dd2d6487 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.4.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.4.inst.cfg index bf8a8c41938..671ea01991a 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.5.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.5.inst.cfg index 0d1fc72a92a..a275d9d7d9e 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.6.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.6.inst.cfg index b90788f72b8..a46103edaa7 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.8.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.8.inst.cfg index 8671621b0d2..c9ff4eee7bb 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.2.inst.cfg b/resources/variants/tronxy/tronxy_x_0.2.inst.cfg index a5a48065b7c..804ee11837e 100644 --- a/resources/variants/tronxy/tronxy_x_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.3.inst.cfg b/resources/variants/tronxy/tronxy_x_0.3.inst.cfg index 55be830f9a9..ed1a34ccd45 100644 --- a/resources/variants/tronxy/tronxy_x_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.4.inst.cfg b/resources/variants/tronxy/tronxy_x_0.4.inst.cfg index bca306577f1..30cdb91f79d 100644 --- a/resources/variants/tronxy/tronxy_x_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.5.inst.cfg b/resources/variants/tronxy/tronxy_x_0.5.inst.cfg index da9038083f2..5b637198c30 100644 --- a/resources/variants/tronxy/tronxy_x_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.6.inst.cfg b/resources/variants/tronxy/tronxy_x_0.6.inst.cfg index d235caf8bac..6e48dc855e7 100644 --- a/resources/variants/tronxy/tronxy_x_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.8.inst.cfg b/resources/variants/tronxy/tronxy_x_0.8.inst.cfg index 6e6a213099e..8340de4d80c 100644 --- a/resources/variants/tronxy/tronxy_x_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.2.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.2.inst.cfg index 28a372882a1..c3f734e5c55 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.3.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.3.inst.cfg index bb0bc6c05d5..f2abb657ad9 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.4.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.4.inst.cfg index 6e1a243fcd3..3f5a42d8e6a 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.5.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.5.inst.cfg index 6f23af4befa..aa585f0f545 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.6.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.6.inst.cfg index c4ac9172589..45edf499858 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.8.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.8.inst.cfg index dd253d02b30..36f22177823 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.2.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.2.inst.cfg index 997eeec9806..e37c5d62ad0 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.3.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.3.inst.cfg index b039c68bf99..1b75373c943 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.4.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.4.inst.cfg index 16a41c96f5b..8d7eea1d9aa 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.5.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.5.inst.cfg index 0d6fc5596a9..8a3044a9d96 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.6.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.6.inst.cfg index 234f4967b55..8630fdcc7d5 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.8.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.8.inst.cfg index 4f47a1d6bbe..e8b980bc7e8 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.2.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.2.inst.cfg index fa88c7cb80e..821ef65fc0c 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.3.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.3.inst.cfg index 0fb159eb588..c5bd4ce26ca 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.4.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.4.inst.cfg index 8788191875f..462cfdd08bb 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.5.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.5.inst.cfg index 89495854303..12325f64743 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.6.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.6.inst.cfg index 881c9cc12d9..cc667ce66ba 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.8.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.8.inst.cfg index 39730a67941..706eba90f92 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.2.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.2.inst.cfg index b6d369887d4..48a16c26864 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.3.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.3.inst.cfg index 3938926d4ec..c3c9f85b98f 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.4.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.4.inst.cfg index 1460fae8520..db81b08c2af 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.5.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.5.inst.cfg index 465351877a1..0cf66885ff3 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.6.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.6.inst.cfg index a61dfa6a41d..bee63cb6717 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.8.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.8.inst.cfg index acf463f1a29..b4b8fcaaf76 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.2.inst.cfg b/resources/variants/two_trees/two_trees_base_0.2.inst.cfg index 5d00116eb2e..b0b48054fa7 100644 --- a/resources/variants/two_trees/two_trees_base_0.2.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.3.inst.cfg b/resources/variants/two_trees/two_trees_base_0.3.inst.cfg index 432c55a4b28..bf4c206b70b 100644 --- a/resources/variants/two_trees/two_trees_base_0.3.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.4.inst.cfg b/resources/variants/two_trees/two_trees_base_0.4.inst.cfg index 70d24160302..50b64732fa3 100644 --- a/resources/variants/two_trees/two_trees_base_0.4.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.5.inst.cfg b/resources/variants/two_trees/two_trees_base_0.5.inst.cfg index 125370a2479..dda348b557c 100644 --- a/resources/variants/two_trees/two_trees_base_0.5.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.6.inst.cfg b/resources/variants/two_trees/two_trees_base_0.6.inst.cfg index 2f580b6ed91..e5e503c2afa 100644 --- a/resources/variants/two_trees/two_trees_base_0.6.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.8.inst.cfg b/resources/variants/two_trees/two_trees_base_0.8.inst.cfg index 9bb89c1a052..dd803465499 100644 --- a/resources/variants/two_trees/two_trees_base_0.8.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_1.0.inst.cfg b/resources/variants/two_trees/two_trees_base_1.0.inst.cfg index 732abfd7914..2f33edf8b3b 100644 --- a/resources/variants/two_trees/two_trees_base_1.0.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.2.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.2.inst.cfg index c0cf712a9ec..42273edd7ad 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.2.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.3.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.3.inst.cfg index 3630aecfe75..c0a5591e09d 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.3.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.4.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.4.inst.cfg index faa479d6fa6..9e2c0077f75 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.4.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.5.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.5.inst.cfg index 691bee192b8..170fa9abb59 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.5.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.6.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.6.inst.cfg index c97ce33271c..008606f0b8a 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.6.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.8.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.8.inst.cfg index e391ad8e202..a25a5f275d0 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.8.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_1.0.inst.cfg b/resources/variants/two_trees/two_trees_bluer_1.0.inst.cfg index 7553db150ad..e6286486dec 100644 --- a/resources/variants/two_trees/two_trees_bluer_1.0.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.2.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.2.inst.cfg index b455cba30a8..f3de8c6d994 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.2.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.3.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.3.inst.cfg index abdd6c0a70d..d7d8be1d687 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.3.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.4.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.4.inst.cfg index ee171d1ca9b..25d8a264cab 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.4.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.5.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.5.inst.cfg index e9e702b4de2..92f0c6323c4 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.5.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.6.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.6.inst.cfg index 2c123df75cf..4b0255019d2 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.6.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.8.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.8.inst.cfg index c0e271e76f3..9e6e78f7fcb 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.8.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_1.0.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_1.0.inst.cfg index 42e4794f6de..c8f50ab9264 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_1.0.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.2.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.2.inst.cfg index e8efa941e0a..a2a849dd6af 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.2.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.3.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.3.inst.cfg index bc8495b121d..9e0ff0f8f19 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.3.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.4.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.4.inst.cfg index 49a3b37883d..7ec834604c7 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.4.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.5.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.5.inst.cfg index 750c72175f5..0f254451872 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.5.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.6.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.6.inst.cfg index 7d65ea1195c..ea4f869435a 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.6.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.8.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.8.inst.cfg index d2d2e961a2d..4d8a971361f 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.8.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_1.0.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_1.0.inst.cfg index 59ecdce7215..7366f7cef9e 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_1.0.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.2.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.2.inst.cfg index 3016320978e..09083d9c7de 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.2.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.3.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.3.inst.cfg index 73a9f123324..4167cead959 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.3.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.4.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.4.inst.cfg index 6f72dc5c888..50fba07f50a 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.4.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.5.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.5.inst.cfg index 56140477f05..df8b31288ad 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.5.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.6.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.6.inst.cfg index 6e0aa7a76aa..b82025b8ae7 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.6.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.8.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.8.inst.cfg index dbe99001e18..775e46775df 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.8.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_1.0.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_1.0.inst.cfg index 9c9f41a21ae..a6e66802091 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_1.0.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_olsson_0.25.inst.cfg b/resources/variants/ultimaker2_extended_olsson_0.25.inst.cfg index 2b41a131bf0..0e6d8e2cf4c 100644 --- a/resources/variants/ultimaker2_extended_olsson_0.25.inst.cfg +++ b/resources/variants/ultimaker2_extended_olsson_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_olsson_0.4.inst.cfg b/resources/variants/ultimaker2_extended_olsson_0.4.inst.cfg index b9da9cb427d..3edc01a2fa2 100644 --- a/resources/variants/ultimaker2_extended_olsson_0.4.inst.cfg +++ b/resources/variants/ultimaker2_extended_olsson_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_olsson_0.6.inst.cfg b/resources/variants/ultimaker2_extended_olsson_0.6.inst.cfg index d1435a038f9..2694d2b862b 100644 --- a/resources/variants/ultimaker2_extended_olsson_0.6.inst.cfg +++ b/resources/variants/ultimaker2_extended_olsson_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_olsson_0.8.inst.cfg b/resources/variants/ultimaker2_extended_olsson_0.8.inst.cfg index 7939329760f..66806f698de 100644 --- a/resources/variants/ultimaker2_extended_olsson_0.8.inst.cfg +++ b/resources/variants/ultimaker2_extended_olsson_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_plus_0.25.inst.cfg b/resources/variants/ultimaker2_extended_plus_0.25.inst.cfg index f390522673a..79d87fc1249 100644 --- a/resources/variants/ultimaker2_extended_plus_0.25.inst.cfg +++ b/resources/variants/ultimaker2_extended_plus_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_plus_0.4.inst.cfg b/resources/variants/ultimaker2_extended_plus_0.4.inst.cfg index fe1f3f7cf83..cfdb8d8cb37 100644 --- a/resources/variants/ultimaker2_extended_plus_0.4.inst.cfg +++ b/resources/variants/ultimaker2_extended_plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_plus_0.6.inst.cfg b/resources/variants/ultimaker2_extended_plus_0.6.inst.cfg index 7cf05dc5cef..66aa764c603 100644 --- a/resources/variants/ultimaker2_extended_plus_0.6.inst.cfg +++ b/resources/variants/ultimaker2_extended_plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_plus_0.8.inst.cfg b/resources/variants/ultimaker2_extended_plus_0.8.inst.cfg index 96bdd72b37c..bccd63f423b 100644 --- a/resources/variants/ultimaker2_extended_plus_0.8.inst.cfg +++ b/resources/variants/ultimaker2_extended_plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker2_olsson_0.25.inst.cfg b/resources/variants/ultimaker2_olsson_0.25.inst.cfg index 7ac69be938d..8b759962edc 100644 --- a/resources/variants/ultimaker2_olsson_0.25.inst.cfg +++ b/resources/variants/ultimaker2_olsson_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker2_olsson_0.4.inst.cfg b/resources/variants/ultimaker2_olsson_0.4.inst.cfg index b3bd76d2bb6..650782d9c99 100644 --- a/resources/variants/ultimaker2_olsson_0.4.inst.cfg +++ b/resources/variants/ultimaker2_olsson_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker2_olsson_0.6.inst.cfg b/resources/variants/ultimaker2_olsson_0.6.inst.cfg index 1ef825ce735..646aba5b0b5 100644 --- a/resources/variants/ultimaker2_olsson_0.6.inst.cfg +++ b/resources/variants/ultimaker2_olsson_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker2_olsson_0.8.inst.cfg b/resources/variants/ultimaker2_olsson_0.8.inst.cfg index 78f9a448d9e..77c689c8c36 100644 --- a/resources/variants/ultimaker2_olsson_0.8.inst.cfg +++ b/resources/variants/ultimaker2_olsson_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_0.25.inst.cfg b/resources/variants/ultimaker2_plus_0.25.inst.cfg index 8191646d70e..106a1cde2ab 100644 --- a/resources/variants/ultimaker2_plus_0.25.inst.cfg +++ b/resources/variants/ultimaker2_plus_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_0.4.inst.cfg b/resources/variants/ultimaker2_plus_0.4.inst.cfg index b93a69a37b1..22ef7d78584 100644 --- a/resources/variants/ultimaker2_plus_0.4.inst.cfg +++ b/resources/variants/ultimaker2_plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_0.6.inst.cfg b/resources/variants/ultimaker2_plus_0.6.inst.cfg index 7d26c7235cb..41c589f8789 100644 --- a/resources/variants/ultimaker2_plus_0.6.inst.cfg +++ b/resources/variants/ultimaker2_plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_0.8.inst.cfg b/resources/variants/ultimaker2_plus_0.8.inst.cfg index dae23df0882..5eeaef95769 100644 --- a/resources/variants/ultimaker2_plus_0.8.inst.cfg +++ b/resources/variants/ultimaker2_plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_connect_0.25.inst.cfg b/resources/variants/ultimaker2_plus_connect_0.25.inst.cfg index 25a6d69377e..dc909a71555 100644 --- a/resources/variants/ultimaker2_plus_connect_0.25.inst.cfg +++ b/resources/variants/ultimaker2_plus_connect_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_connect_0.4.inst.cfg b/resources/variants/ultimaker2_plus_connect_0.4.inst.cfg index 4b031270187..f4da1e9bc87 100644 --- a/resources/variants/ultimaker2_plus_connect_0.4.inst.cfg +++ b/resources/variants/ultimaker2_plus_connect_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_connect_0.6.inst.cfg b/resources/variants/ultimaker2_plus_connect_0.6.inst.cfg index 12ed089c829..efb4f986092 100644 --- a/resources/variants/ultimaker2_plus_connect_0.6.inst.cfg +++ b/resources/variants/ultimaker2_plus_connect_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_connect_0.8.inst.cfg b/resources/variants/ultimaker2_plus_connect_0.8.inst.cfg index b049720372a..a4306331f1e 100644 --- a/resources/variants/ultimaker2_plus_connect_0.8.inst.cfg +++ b/resources/variants/ultimaker2_plus_connect_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker3_aa0.25.inst.cfg b/resources/variants/ultimaker3_aa0.25.inst.cfg index 134d7d48061..1f1152ba414 100644 --- a/resources/variants/ultimaker3_aa0.25.inst.cfg +++ b/resources/variants/ultimaker3_aa0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker3_aa0.8.inst.cfg b/resources/variants/ultimaker3_aa0.8.inst.cfg index eb1ec461e71..4190aab0cd1 100644 --- a/resources/variants/ultimaker3_aa0.8.inst.cfg +++ b/resources/variants/ultimaker3_aa0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker3_aa04.inst.cfg b/resources/variants/ultimaker3_aa04.inst.cfg index 85c2fcba1c4..e9afd4620c8 100644 --- a/resources/variants/ultimaker3_aa04.inst.cfg +++ b/resources/variants/ultimaker3_aa04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker3_bb0.8.inst.cfg b/resources/variants/ultimaker3_bb0.8.inst.cfg index 55a93ee5ccc..62227f50f65 100644 --- a/resources/variants/ultimaker3_bb0.8.inst.cfg +++ b/resources/variants/ultimaker3_bb0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker3_bb04.inst.cfg b/resources/variants/ultimaker3_bb04.inst.cfg index 1c095aa2622..b3ba87ac597 100644 --- a/resources/variants/ultimaker3_bb04.inst.cfg +++ b/resources/variants/ultimaker3_bb04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker3_extended_aa0.25.inst.cfg b/resources/variants/ultimaker3_extended_aa0.25.inst.cfg index 26a65b4a11d..44b669e7811 100644 --- a/resources/variants/ultimaker3_extended_aa0.25.inst.cfg +++ b/resources/variants/ultimaker3_extended_aa0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker3_extended_aa0.8.inst.cfg b/resources/variants/ultimaker3_extended_aa0.8.inst.cfg index bff1fd5469f..941634e3a61 100644 --- a/resources/variants/ultimaker3_extended_aa0.8.inst.cfg +++ b/resources/variants/ultimaker3_extended_aa0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker3_extended_aa04.inst.cfg b/resources/variants/ultimaker3_extended_aa04.inst.cfg index f57f1f8bbd3..ef66df6477a 100644 --- a/resources/variants/ultimaker3_extended_aa04.inst.cfg +++ b/resources/variants/ultimaker3_extended_aa04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker3_extended_bb0.8.inst.cfg b/resources/variants/ultimaker3_extended_bb0.8.inst.cfg index 1db324d3955..2a88f165e61 100644 --- a/resources/variants/ultimaker3_extended_bb0.8.inst.cfg +++ b/resources/variants/ultimaker3_extended_bb0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker3_extended_bb04.inst.cfg b/resources/variants/ultimaker3_extended_bb04.inst.cfg index 92416cbe6f3..1fa6241d201 100644 --- a/resources/variants/ultimaker3_extended_bb04.inst.cfg +++ b/resources/variants/ultimaker3_extended_bb04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker_methodx_1C.inst.cfg b/resources/variants/ultimaker_methodx_1C.inst.cfg index 83dd3e9ed8b..b2bd39e9067 100644 --- a/resources/variants/ultimaker_methodx_1C.inst.cfg +++ b/resources/variants/ultimaker_methodx_1C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_c -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker_methodx_1XA.inst.cfg b/resources/variants/ultimaker_methodx_1XA.inst.cfg index 8e940228e8f..f63c2a4df76 100644 --- a/resources/variants/ultimaker_methodx_1XA.inst.cfg +++ b/resources/variants/ultimaker_methodx_1XA.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_hot -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker_methodx_2XA.inst.cfg b/resources/variants/ultimaker_methodx_2XA.inst.cfg index d395d17d531..24461cd5ef4 100644 --- a/resources/variants/ultimaker_methodx_2XA.inst.cfg +++ b/resources/variants/ultimaker_methodx_2XA.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_hot_s -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker_methodx_LABS.inst.cfg b/resources/variants/ultimaker_methodx_LABS.inst.cfg index a150a0df5d8..2c667e37f10 100644 --- a/resources/variants/ultimaker_methodx_LABS.inst.cfg +++ b/resources/variants/ultimaker_methodx_LABS.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_e -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker_methodxl_1C.inst.cfg b/resources/variants/ultimaker_methodxl_1C.inst.cfg index 299d05d0296..527415ca353 100644 --- a/resources/variants/ultimaker_methodxl_1C.inst.cfg +++ b/resources/variants/ultimaker_methodxl_1C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_c -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker_methodxl_1XA.inst.cfg b/resources/variants/ultimaker_methodxl_1XA.inst.cfg index 77965ea5258..6da0eb3bb2e 100644 --- a/resources/variants/ultimaker_methodxl_1XA.inst.cfg +++ b/resources/variants/ultimaker_methodxl_1XA.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_hot -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker_methodxl_2XA.inst.cfg b/resources/variants/ultimaker_methodxl_2XA.inst.cfg index 4e929f2853c..a64b66b89f6 100644 --- a/resources/variants/ultimaker_methodxl_2XA.inst.cfg +++ b/resources/variants/ultimaker_methodxl_2XA.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_hot_s -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker_methodxl_LABS.inst.cfg b/resources/variants/ultimaker_methodxl_LABS.inst.cfg index c579f7f8e60..fa726c02abb 100644 --- a/resources/variants/ultimaker_methodxl_LABS.inst.cfg +++ b/resources/variants/ultimaker_methodxl_LABS.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_e -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker_s3_aa0.25.inst.cfg b/resources/variants/ultimaker_s3_aa0.25.inst.cfg index 67d10fdd5f5..97b303035c2 100644 --- a/resources/variants/ultimaker_s3_aa0.25.inst.cfg +++ b/resources/variants/ultimaker_s3_aa0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker_s3_aa0.8.inst.cfg b/resources/variants/ultimaker_s3_aa0.8.inst.cfg index 68a3eb620d5..e7d3487503e 100644 --- a/resources/variants/ultimaker_s3_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s3_aa0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker_s3_aa04.inst.cfg b/resources/variants/ultimaker_s3_aa04.inst.cfg index 340c5d0f863..76992b58052 100644 --- a/resources/variants/ultimaker_s3_aa04.inst.cfg +++ b/resources/variants/ultimaker_s3_aa04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker_s3_bb0.8.inst.cfg b/resources/variants/ultimaker_s3_bb0.8.inst.cfg index a4677452b4b..d0f78ac3bd1 100644 --- a/resources/variants/ultimaker_s3_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s3_bb0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker_s3_bb04.inst.cfg b/resources/variants/ultimaker_s3_bb04.inst.cfg index 79f3f7e8c94..4e232cbb5e1 100644 --- a/resources/variants/ultimaker_s3_bb04.inst.cfg +++ b/resources/variants/ultimaker_s3_bb04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker_s3_cc04.inst.cfg b/resources/variants/ultimaker_s3_cc04.inst.cfg index 3c010ed5817..38f04547aa7 100644 --- a/resources/variants/ultimaker_s3_cc04.inst.cfg +++ b/resources/variants/ultimaker_s3_cc04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker_s3_cc06.inst.cfg b/resources/variants/ultimaker_s3_cc06.inst.cfg index 02d19fd112f..e42817e8f8b 100644 --- a/resources/variants/ultimaker_s3_cc06.inst.cfg +++ b/resources/variants/ultimaker_s3_cc06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker_s3_dd04.inst.cfg b/resources/variants/ultimaker_s3_dd04.inst.cfg index 803ae14982f..bf93b66be78 100644 --- a/resources/variants/ultimaker_s3_dd04.inst.cfg +++ b/resources/variants/ultimaker_s3_dd04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker_s5_aa0.25.inst.cfg b/resources/variants/ultimaker_s5_aa0.25.inst.cfg index 904c657549e..08ed6132f59 100644 --- a/resources/variants/ultimaker_s5_aa0.25.inst.cfg +++ b/resources/variants/ultimaker_s5_aa0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker_s5_aa0.8.inst.cfg b/resources/variants/ultimaker_s5_aa0.8.inst.cfg index 570f3357181..04a3a97d115 100644 --- a/resources/variants/ultimaker_s5_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s5_aa0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker_s5_aa04.inst.cfg b/resources/variants/ultimaker_s5_aa04.inst.cfg index fe44ba9d039..fd4f1ff7789 100644 --- a/resources/variants/ultimaker_s5_aa04.inst.cfg +++ b/resources/variants/ultimaker_s5_aa04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker_s5_aluminum.inst.cfg b/resources/variants/ultimaker_s5_aluminum.inst.cfg index 3d926cbfc58..b13d4b5c864 100644 --- a/resources/variants/ultimaker_s5_aluminum.inst.cfg +++ b/resources/variants/ultimaker_s5_aluminum.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = buildplate -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker_s5_bb0.8.inst.cfg b/resources/variants/ultimaker_s5_bb0.8.inst.cfg index 92953793fa5..07b556d2068 100644 --- a/resources/variants/ultimaker_s5_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s5_bb0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker_s5_bb04.inst.cfg b/resources/variants/ultimaker_s5_bb04.inst.cfg index 77dfccf3bf6..7959fc75c2a 100644 --- a/resources/variants/ultimaker_s5_bb04.inst.cfg +++ b/resources/variants/ultimaker_s5_bb04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker_s5_cc04.inst.cfg b/resources/variants/ultimaker_s5_cc04.inst.cfg index de9d490ad81..5510d0126fc 100644 --- a/resources/variants/ultimaker_s5_cc04.inst.cfg +++ b/resources/variants/ultimaker_s5_cc04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker_s5_cc06.inst.cfg b/resources/variants/ultimaker_s5_cc06.inst.cfg index d4cd9c6616d..a49c790e4f1 100644 --- a/resources/variants/ultimaker_s5_cc06.inst.cfg +++ b/resources/variants/ultimaker_s5_cc06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker_s5_dd04.inst.cfg b/resources/variants/ultimaker_s5_dd04.inst.cfg index 6c0be44f465..bcf9dae1315 100644 --- a/resources/variants/ultimaker_s5_dd04.inst.cfg +++ b/resources/variants/ultimaker_s5_dd04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker_s5_glass.inst.cfg b/resources/variants/ultimaker_s5_glass.inst.cfg index 9cddb471957..dff0498792d 100644 --- a/resources/variants/ultimaker_s5_glass.inst.cfg +++ b/resources/variants/ultimaker_s5_glass.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = buildplate -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker_s7_aa0.25.inst.cfg b/resources/variants/ultimaker_s7_aa0.25.inst.cfg index 2654143fb85..fc1bdcfef2a 100644 --- a/resources/variants/ultimaker_s7_aa0.25.inst.cfg +++ b/resources/variants/ultimaker_s7_aa0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker_s7_aa0.8.inst.cfg b/resources/variants/ultimaker_s7_aa0.8.inst.cfg index ffe01b344a6..b3253f7d258 100644 --- a/resources/variants/ultimaker_s7_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s7_aa0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker_s7_aa04.inst.cfg b/resources/variants/ultimaker_s7_aa04.inst.cfg index 76162269642..6aee6597e00 100644 --- a/resources/variants/ultimaker_s7_aa04.inst.cfg +++ b/resources/variants/ultimaker_s7_aa04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker_s7_bb0.8.inst.cfg b/resources/variants/ultimaker_s7_bb0.8.inst.cfg index 2f4fb50a8bd..010d5c7cf11 100644 --- a/resources/variants/ultimaker_s7_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s7_bb0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker_s7_bb04.inst.cfg b/resources/variants/ultimaker_s7_bb04.inst.cfg index e44142b3ed3..1ec0dfab981 100644 --- a/resources/variants/ultimaker_s7_bb04.inst.cfg +++ b/resources/variants/ultimaker_s7_bb04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker_s7_cc04.inst.cfg b/resources/variants/ultimaker_s7_cc04.inst.cfg index 30ffef58b6d..6949c5be74d 100644 --- a/resources/variants/ultimaker_s7_cc04.inst.cfg +++ b/resources/variants/ultimaker_s7_cc04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker_s7_cc06.inst.cfg b/resources/variants/ultimaker_s7_cc06.inst.cfg index f752b63cf36..576701fc2b8 100644 --- a/resources/variants/ultimaker_s7_cc06.inst.cfg +++ b/resources/variants/ultimaker_s7_cc06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/ultimaker_s7_dd04.inst.cfg b/resources/variants/ultimaker_s7_dd04.inst.cfg index 7ea915f610a..a9c0bb66025 100644 --- a/resources/variants/ultimaker_s7_dd04.inst.cfg +++ b/resources/variants/ultimaker_s7_dd04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/uni/uni_200_0.30.inst.cfg b/resources/variants/uni/uni_200_0.30.inst.cfg index 69ea894c630..8c5c61f1025 100644 --- a/resources/variants/uni/uni_200_0.30.inst.cfg +++ b/resources/variants/uni/uni_200_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/uni/uni_200_0.40.inst.cfg b/resources/variants/uni/uni_200_0.40.inst.cfg index 499866af300..34e44afa052 100644 --- a/resources/variants/uni/uni_200_0.40.inst.cfg +++ b/resources/variants/uni/uni_200_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/uni/uni_200_0.50.inst.cfg b/resources/variants/uni/uni_200_0.50.inst.cfg index e1948488d35..0dbdc557963 100644 --- a/resources/variants/uni/uni_200_0.50.inst.cfg +++ b/resources/variants/uni/uni_200_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/uni/uni_250_0.30.inst.cfg b/resources/variants/uni/uni_250_0.30.inst.cfg index 1e2d3e36901..f135aa31785 100644 --- a/resources/variants/uni/uni_250_0.30.inst.cfg +++ b/resources/variants/uni/uni_250_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/uni/uni_250_0.40.inst.cfg b/resources/variants/uni/uni_250_0.40.inst.cfg index 4ae51548abc..e2fde31e5e6 100644 --- a/resources/variants/uni/uni_250_0.40.inst.cfg +++ b/resources/variants/uni/uni_250_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/uni/uni_250_0.50.inst.cfg b/resources/variants/uni/uni_250_0.50.inst.cfg index bd91f0063f3..6e5d54e6af0 100644 --- a/resources/variants/uni/uni_250_0.50.inst.cfg +++ b/resources/variants/uni/uni_250_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/uni/uni_300_0.30.inst.cfg b/resources/variants/uni/uni_300_0.30.inst.cfg index 920200412f6..322ed8c1334 100644 --- a/resources/variants/uni/uni_300_0.30.inst.cfg +++ b/resources/variants/uni/uni_300_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/uni/uni_300_0.40.inst.cfg b/resources/variants/uni/uni_300_0.40.inst.cfg index 3d808fc4c0e..f9366b8a54a 100644 --- a/resources/variants/uni/uni_300_0.40.inst.cfg +++ b/resources/variants/uni/uni_300_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/uni/uni_300_0.50.inst.cfg b/resources/variants/uni/uni_300_0.50.inst.cfg index d3911215630..3d264e83751 100644 --- a/resources/variants/uni/uni_300_0.50.inst.cfg +++ b/resources/variants/uni/uni_300_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/uni/uni_base_0.30.inst.cfg b/resources/variants/uni/uni_base_0.30.inst.cfg index e0fec2e1eb1..34424ef287d 100644 --- a/resources/variants/uni/uni_base_0.30.inst.cfg +++ b/resources/variants/uni/uni_base_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/uni/uni_base_0.40.inst.cfg b/resources/variants/uni/uni_base_0.40.inst.cfg index 090dd0de50c..6449e280265 100644 --- a/resources/variants/uni/uni_base_0.40.inst.cfg +++ b/resources/variants/uni/uni_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/uni/uni_base_0.50.inst.cfg b/resources/variants/uni/uni_base_0.50.inst.cfg index 094826b97eb..1106b4ba983 100644 --- a/resources/variants/uni/uni_base_0.50.inst.cfg +++ b/resources/variants/uni/uni_base_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/uni/uni_mini_0.30.inst.cfg b/resources/variants/uni/uni_mini_0.30.inst.cfg index 66adcf18080..de0c0b6d719 100644 --- a/resources/variants/uni/uni_mini_0.30.inst.cfg +++ b/resources/variants/uni/uni_mini_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/uni/uni_mini_0.40.inst.cfg b/resources/variants/uni/uni_mini_0.40.inst.cfg index 0aa9d3e787d..4b40d2bc777 100644 --- a/resources/variants/uni/uni_mini_0.40.inst.cfg +++ b/resources/variants/uni/uni_mini_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/uni/uni_mini_0.50.inst.cfg b/resources/variants/uni/uni_mini_0.50.inst.cfg index 68fd46d45f1..b6c96a0283f 100644 --- a/resources/variants/uni/uni_mini_0.50.inst.cfg +++ b/resources/variants/uni/uni_mini_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex2plus_0.2.inst.cfg b/resources/variants/vivedino/vivedino_trex2plus_0.2.inst.cfg index d3aead1fe3b..c505c64831f 100644 --- a/resources/variants/vivedino/vivedino_trex2plus_0.2.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex2plus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex2plus_0.4.inst.cfg b/resources/variants/vivedino/vivedino_trex2plus_0.4.inst.cfg index ea89fd11109..cb67e87aaa0 100644 --- a/resources/variants/vivedino/vivedino_trex2plus_0.4.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex2plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex2plus_0.6.inst.cfg b/resources/variants/vivedino/vivedino_trex2plus_0.6.inst.cfg index c30afb6068c..c5ad54b52b9 100644 --- a/resources/variants/vivedino/vivedino_trex2plus_0.6.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex2plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex2plus_0.8.inst.cfg b/resources/variants/vivedino/vivedino_trex2plus_0.8.inst.cfg index a4c832975e4..dda1465bc1c 100644 --- a/resources/variants/vivedino/vivedino_trex2plus_0.8.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex2plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex3_0.2.inst.cfg b/resources/variants/vivedino/vivedino_trex3_0.2.inst.cfg index e341327f845..ce4a0daf5ef 100644 --- a/resources/variants/vivedino/vivedino_trex3_0.2.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex3_0.4.inst.cfg b/resources/variants/vivedino/vivedino_trex3_0.4.inst.cfg index db442efed85..c1e15ee4d86 100644 --- a/resources/variants/vivedino/vivedino_trex3_0.4.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex3_0.6.inst.cfg b/resources/variants/vivedino/vivedino_trex3_0.6.inst.cfg index 85e144fc677..53e39a4842f 100644 --- a/resources/variants/vivedino/vivedino_trex3_0.6.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex3_0.8.inst.cfg b/resources/variants/vivedino/vivedino_trex3_0.8.inst.cfg index 63bf4722b01..84d866c76bc 100644 --- a/resources/variants/vivedino/vivedino_trex3_0.8.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.25.inst.cfg b/resources/variants/voron/voron0_120_v6_0.25.inst.cfg index 1c050856b29..e2a29b5e2ea 100644 --- a/resources/variants/voron/voron0_120_v6_0.25.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.30.inst.cfg b/resources/variants/voron/voron0_120_v6_0.30.inst.cfg index be6ea9cbabe..a22bb078c6c 100644 --- a/resources/variants/voron/voron0_120_v6_0.30.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.40.inst.cfg b/resources/variants/voron/voron0_120_v6_0.40.inst.cfg index e1a6ac0585c..fa8590cccaf 100644 --- a/resources/variants/voron/voron0_120_v6_0.40.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.50.inst.cfg b/resources/variants/voron/voron0_120_v6_0.50.inst.cfg index 527524441e5..07ebee11821 100644 --- a/resources/variants/voron/voron0_120_v6_0.50.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.60.inst.cfg b/resources/variants/voron/voron0_120_v6_0.60.inst.cfg index 30e74385722..8486c644e95 100644 --- a/resources/variants/voron/voron0_120_v6_0.60.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.80.inst.cfg b/resources/variants/voron/voron0_120_v6_0.80.inst.cfg index dfd412c82bd..0a84fa93200 100644 --- a/resources/variants/voron/voron0_120_v6_0.80.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.25.inst.cfg b/resources/variants/voron/voron2_250_v6_0.25.inst.cfg index 115fb34cb56..003af1860be 100644 --- a/resources/variants/voron/voron2_250_v6_0.25.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.30.inst.cfg b/resources/variants/voron/voron2_250_v6_0.30.inst.cfg index 6d4ac7b9d55..dacf75fff76 100644 --- a/resources/variants/voron/voron2_250_v6_0.30.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.35.inst.cfg b/resources/variants/voron/voron2_250_v6_0.35.inst.cfg index 344b4857891..fe1bf4c7cd5 100644 --- a/resources/variants/voron/voron2_250_v6_0.35.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.40.inst.cfg b/resources/variants/voron/voron2_250_v6_0.40.inst.cfg index d0f10145838..0ddac759b12 100644 --- a/resources/variants/voron/voron2_250_v6_0.40.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.50.inst.cfg b/resources/variants/voron/voron2_250_v6_0.50.inst.cfg index 16723a1fe57..17cbb0edc45 100644 --- a/resources/variants/voron/voron2_250_v6_0.50.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.60.inst.cfg b/resources/variants/voron/voron2_250_v6_0.60.inst.cfg index 9e4c7061eb9..1d037bf31fd 100644 --- a/resources/variants/voron/voron2_250_v6_0.60.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.80.inst.cfg b/resources/variants/voron/voron2_250_v6_0.80.inst.cfg index 9841269b467..9869adb2c78 100644 --- a/resources/variants/voron/voron2_250_v6_0.80.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_250_volcano_0.40.inst.cfg b/resources/variants/voron/voron2_250_volcano_0.40.inst.cfg index 700a55fecb3..371495b3161 100644 --- a/resources/variants/voron/voron2_250_volcano_0.40.inst.cfg +++ b/resources/variants/voron/voron2_250_volcano_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_250_volcano_0.60.inst.cfg b/resources/variants/voron/voron2_250_volcano_0.60.inst.cfg index c87b19d9956..a939c1ae211 100644 --- a/resources/variants/voron/voron2_250_volcano_0.60.inst.cfg +++ b/resources/variants/voron/voron2_250_volcano_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_250_volcano_0.80.inst.cfg b/resources/variants/voron/voron2_250_volcano_0.80.inst.cfg index 327bbb42a8f..717907672ae 100644 --- a/resources/variants/voron/voron2_250_volcano_0.80.inst.cfg +++ b/resources/variants/voron/voron2_250_volcano_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_250_volcano_1.00.inst.cfg b/resources/variants/voron/voron2_250_volcano_1.00.inst.cfg index 8329f46a895..f2ffb7771a6 100644 --- a/resources/variants/voron/voron2_250_volcano_1.00.inst.cfg +++ b/resources/variants/voron/voron2_250_volcano_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_250_volcano_1.20.inst.cfg b/resources/variants/voron/voron2_250_volcano_1.20.inst.cfg index dd51720e8ed..fda1a1341bc 100644 --- a/resources/variants/voron/voron2_250_volcano_1.20.inst.cfg +++ b/resources/variants/voron/voron2_250_volcano_1.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.25.inst.cfg b/resources/variants/voron/voron2_300_v6_0.25.inst.cfg index bcac7fb2cb6..224e50eb853 100644 --- a/resources/variants/voron/voron2_300_v6_0.25.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.30.inst.cfg b/resources/variants/voron/voron2_300_v6_0.30.inst.cfg index cb37b9bb504..b8eeeec8b44 100644 --- a/resources/variants/voron/voron2_300_v6_0.30.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.35.inst.cfg b/resources/variants/voron/voron2_300_v6_0.35.inst.cfg index 334d665eb27..f07bd3e7bec 100644 --- a/resources/variants/voron/voron2_300_v6_0.35.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.40.inst.cfg b/resources/variants/voron/voron2_300_v6_0.40.inst.cfg index 584f52bd6c5..1540fabec14 100644 --- a/resources/variants/voron/voron2_300_v6_0.40.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.50.inst.cfg b/resources/variants/voron/voron2_300_v6_0.50.inst.cfg index ee394e8e02c..2f408ec6acd 100644 --- a/resources/variants/voron/voron2_300_v6_0.50.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.60.inst.cfg b/resources/variants/voron/voron2_300_v6_0.60.inst.cfg index 9b83eb69b45..2030eba596c 100644 --- a/resources/variants/voron/voron2_300_v6_0.60.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.80.inst.cfg b/resources/variants/voron/voron2_300_v6_0.80.inst.cfg index e0277458764..47cfe743f73 100644 --- a/resources/variants/voron/voron2_300_v6_0.80.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_300_volcano_0.40.inst.cfg b/resources/variants/voron/voron2_300_volcano_0.40.inst.cfg index 0b905e7f387..3b61c9c392e 100644 --- a/resources/variants/voron/voron2_300_volcano_0.40.inst.cfg +++ b/resources/variants/voron/voron2_300_volcano_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_300_volcano_0.60.inst.cfg b/resources/variants/voron/voron2_300_volcano_0.60.inst.cfg index e9788c559cc..d578191e1e5 100644 --- a/resources/variants/voron/voron2_300_volcano_0.60.inst.cfg +++ b/resources/variants/voron/voron2_300_volcano_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_300_volcano_0.80.inst.cfg b/resources/variants/voron/voron2_300_volcano_0.80.inst.cfg index ea1154d3682..f705c431087 100644 --- a/resources/variants/voron/voron2_300_volcano_0.80.inst.cfg +++ b/resources/variants/voron/voron2_300_volcano_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_300_volcano_1.00.inst.cfg b/resources/variants/voron/voron2_300_volcano_1.00.inst.cfg index b1fe3067943..4bf563951bd 100644 --- a/resources/variants/voron/voron2_300_volcano_1.00.inst.cfg +++ b/resources/variants/voron/voron2_300_volcano_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_300_volcano_1.20.inst.cfg b/resources/variants/voron/voron2_300_volcano_1.20.inst.cfg index 5d0d2bc2ba7..97e8a3284b8 100644 --- a/resources/variants/voron/voron2_300_volcano_1.20.inst.cfg +++ b/resources/variants/voron/voron2_300_volcano_1.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.25.inst.cfg b/resources/variants/voron/voron2_350_v6_0.25.inst.cfg index 747fc478ecb..86c1c6f4ad8 100644 --- a/resources/variants/voron/voron2_350_v6_0.25.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.30.inst.cfg b/resources/variants/voron/voron2_350_v6_0.30.inst.cfg index 4ed5b5f4780..0e3d7acefda 100644 --- a/resources/variants/voron/voron2_350_v6_0.30.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.35.inst.cfg b/resources/variants/voron/voron2_350_v6_0.35.inst.cfg index e4cefb26739..512153bedac 100644 --- a/resources/variants/voron/voron2_350_v6_0.35.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.40.inst.cfg b/resources/variants/voron/voron2_350_v6_0.40.inst.cfg index cf3189d2d8c..d6fe7433d63 100644 --- a/resources/variants/voron/voron2_350_v6_0.40.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.50.inst.cfg b/resources/variants/voron/voron2_350_v6_0.50.inst.cfg index 1d5840d1340..b16e3b8e812 100644 --- a/resources/variants/voron/voron2_350_v6_0.50.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.60.inst.cfg b/resources/variants/voron/voron2_350_v6_0.60.inst.cfg index 0f2f7987234..477b72e0fa1 100644 --- a/resources/variants/voron/voron2_350_v6_0.60.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.80.inst.cfg b/resources/variants/voron/voron2_350_v6_0.80.inst.cfg index 092ebaf869a..40cb92eba59 100644 --- a/resources/variants/voron/voron2_350_v6_0.80.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_350_volcano_0.40.inst.cfg b/resources/variants/voron/voron2_350_volcano_0.40.inst.cfg index c4e67a6e4ba..ec16aaa2698 100644 --- a/resources/variants/voron/voron2_350_volcano_0.40.inst.cfg +++ b/resources/variants/voron/voron2_350_volcano_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_350_volcano_0.60.inst.cfg b/resources/variants/voron/voron2_350_volcano_0.60.inst.cfg index e214e4a39a0..de966abb4e7 100644 --- a/resources/variants/voron/voron2_350_volcano_0.60.inst.cfg +++ b/resources/variants/voron/voron2_350_volcano_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_350_volcano_0.80.inst.cfg b/resources/variants/voron/voron2_350_volcano_0.80.inst.cfg index 16fb67b22f7..fccb25f12b5 100644 --- a/resources/variants/voron/voron2_350_volcano_0.80.inst.cfg +++ b/resources/variants/voron/voron2_350_volcano_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_350_volcano_1.00.inst.cfg b/resources/variants/voron/voron2_350_volcano_1.00.inst.cfg index 603ca7f7f5b..f24c10015dd 100644 --- a/resources/variants/voron/voron2_350_volcano_1.00.inst.cfg +++ b/resources/variants/voron/voron2_350_volcano_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_350_volcano_1.20.inst.cfg b/resources/variants/voron/voron2_350_volcano_1.20.inst.cfg index e8289b75881..599c5064aae 100644 --- a/resources/variants/voron/voron2_350_volcano_1.20.inst.cfg +++ b/resources/variants/voron/voron2_350_volcano_1.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.25.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.25.inst.cfg index a640cb732de..a5869586f64 100644 --- a/resources/variants/voron/voron2_custom_v6_0.25.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.30.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.30.inst.cfg index 2574e3e45cc..edb540b1a24 100644 --- a/resources/variants/voron/voron2_custom_v6_0.30.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.35.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.35.inst.cfg index 26e7ac31493..a2bb53398d8 100644 --- a/resources/variants/voron/voron2_custom_v6_0.35.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.40.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.40.inst.cfg index d6eb771afaa..749f18a3dd6 100644 --- a/resources/variants/voron/voron2_custom_v6_0.40.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.50.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.50.inst.cfg index 310833dbc0b..c6c21baaf04 100644 --- a/resources/variants/voron/voron2_custom_v6_0.50.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.60.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.60.inst.cfg index 05aaa43d324..8e8a1e79009 100644 --- a/resources/variants/voron/voron2_custom_v6_0.60.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.80.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.80.inst.cfg index e662fd7edf0..89bee318c72 100644 --- a/resources/variants/voron/voron2_custom_v6_0.80.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_volcano_0.40.inst.cfg b/resources/variants/voron/voron2_custom_volcano_0.40.inst.cfg index 61b74ca3130..daf4c54a063 100644 --- a/resources/variants/voron/voron2_custom_volcano_0.40.inst.cfg +++ b/resources/variants/voron/voron2_custom_volcano_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_volcano_0.60.inst.cfg b/resources/variants/voron/voron2_custom_volcano_0.60.inst.cfg index 4b533d4b6a4..e0d62380f99 100644 --- a/resources/variants/voron/voron2_custom_volcano_0.60.inst.cfg +++ b/resources/variants/voron/voron2_custom_volcano_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_volcano_0.80.inst.cfg b/resources/variants/voron/voron2_custom_volcano_0.80.inst.cfg index 2b66bd9a3c5..312908a37c8 100644 --- a/resources/variants/voron/voron2_custom_volcano_0.80.inst.cfg +++ b/resources/variants/voron/voron2_custom_volcano_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_volcano_1.00.inst.cfg b/resources/variants/voron/voron2_custom_volcano_1.00.inst.cfg index ccb7fd07769..6f62852f179 100644 --- a/resources/variants/voron/voron2_custom_volcano_1.00.inst.cfg +++ b/resources/variants/voron/voron2_custom_volcano_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_volcano_1.20.inst.cfg b/resources/variants/voron/voron2_custom_volcano_1.20.inst.cfg index 0c83605ce16..c5d3452befc 100644 --- a/resources/variants/voron/voron2_custom_volcano_1.20.inst.cfg +++ b/resources/variants/voron/voron2_custom_volcano_1.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron_trident_250_0.25.inst.cfg b/resources/variants/voron/voron_trident_250_0.25.inst.cfg index 20c74f4145f..2ba2351c560 100644 --- a/resources/variants/voron/voron_trident_250_0.25.inst.cfg +++ b/resources/variants/voron/voron_trident_250_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron_trident_250_0.40.inst.cfg b/resources/variants/voron/voron_trident_250_0.40.inst.cfg index 2c8a35bc3a8..aea87773651 100644 --- a/resources/variants/voron/voron_trident_250_0.40.inst.cfg +++ b/resources/variants/voron/voron_trident_250_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron_trident_250_0.50.inst.cfg b/resources/variants/voron/voron_trident_250_0.50.inst.cfg index ca6224ff72d..deae0b748c2 100644 --- a/resources/variants/voron/voron_trident_250_0.50.inst.cfg +++ b/resources/variants/voron/voron_trident_250_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron_trident_250_0.60.inst.cfg b/resources/variants/voron/voron_trident_250_0.60.inst.cfg index 2487a87fa15..fe7ceef87e0 100644 --- a/resources/variants/voron/voron_trident_250_0.60.inst.cfg +++ b/resources/variants/voron/voron_trident_250_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron_trident_250_0.80.inst.cfg b/resources/variants/voron/voron_trident_250_0.80.inst.cfg index c513b2ccb38..911fd5bc235 100644 --- a/resources/variants/voron/voron_trident_250_0.80.inst.cfg +++ b/resources/variants/voron/voron_trident_250_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron_trident_300_0.25.inst.cfg b/resources/variants/voron/voron_trident_300_0.25.inst.cfg index 120e03f615a..99b00d76839 100644 --- a/resources/variants/voron/voron_trident_300_0.25.inst.cfg +++ b/resources/variants/voron/voron_trident_300_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron_trident_300_0.40.inst.cfg b/resources/variants/voron/voron_trident_300_0.40.inst.cfg index 2c522afeb69..5d427352bb5 100644 --- a/resources/variants/voron/voron_trident_300_0.40.inst.cfg +++ b/resources/variants/voron/voron_trident_300_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron_trident_300_0.50.inst.cfg b/resources/variants/voron/voron_trident_300_0.50.inst.cfg index 3ab11833a53..5a9bde2f79e 100644 --- a/resources/variants/voron/voron_trident_300_0.50.inst.cfg +++ b/resources/variants/voron/voron_trident_300_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron_trident_300_0.60.inst.cfg b/resources/variants/voron/voron_trident_300_0.60.inst.cfg index 1623f6c293c..569e9ecc33a 100644 --- a/resources/variants/voron/voron_trident_300_0.60.inst.cfg +++ b/resources/variants/voron/voron_trident_300_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron_trident_300_0.80.inst.cfg b/resources/variants/voron/voron_trident_300_0.80.inst.cfg index 45aafd8265e..d9d23712ae1 100644 --- a/resources/variants/voron/voron_trident_300_0.80.inst.cfg +++ b/resources/variants/voron/voron_trident_300_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron_trident_350_0.25.inst.cfg b/resources/variants/voron/voron_trident_350_0.25.inst.cfg index 3ae6061c8ba..8d124cca032 100644 --- a/resources/variants/voron/voron_trident_350_0.25.inst.cfg +++ b/resources/variants/voron/voron_trident_350_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron_trident_350_0.40.inst.cfg b/resources/variants/voron/voron_trident_350_0.40.inst.cfg index dee2a7ba3d7..8340efe9abd 100644 --- a/resources/variants/voron/voron_trident_350_0.40.inst.cfg +++ b/resources/variants/voron/voron_trident_350_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron_trident_350_0.50.inst.cfg b/resources/variants/voron/voron_trident_350_0.50.inst.cfg index 7a058f6d243..896a12aee72 100644 --- a/resources/variants/voron/voron_trident_350_0.50.inst.cfg +++ b/resources/variants/voron/voron_trident_350_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron_trident_350_0.60.inst.cfg b/resources/variants/voron/voron_trident_350_0.60.inst.cfg index 910119a1ab5..f93347b676d 100644 --- a/resources/variants/voron/voron_trident_350_0.60.inst.cfg +++ b/resources/variants/voron/voron_trident_350_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/voron/voron_trident_350_0.80.inst.cfg b/resources/variants/voron/voron_trident_350_0.80.inst.cfg index 28780c78172..cd5cbf44107 100644 --- a/resources/variants/voron/voron_trident_350_0.80.inst.cfg +++ b/resources/variants/voron/voron_trident_350_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.2.inst.cfg b/resources/variants/vzbot/vzbot_235_0.2.inst.cfg index a9257c13309..fa2cb94114d 100644 --- a/resources/variants/vzbot/vzbot_235_0.2.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.3.inst.cfg b/resources/variants/vzbot/vzbot_235_0.3.inst.cfg index f7465c1b0fa..a06febff04d 100644 --- a/resources/variants/vzbot/vzbot_235_0.3.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.4.inst.cfg b/resources/variants/vzbot/vzbot_235_0.4.inst.cfg index 5e6946a90ed..8247a4d7087 100644 --- a/resources/variants/vzbot/vzbot_235_0.4.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.5.inst.cfg b/resources/variants/vzbot/vzbot_235_0.5.inst.cfg index 431859e5379..564aecbf92f 100644 --- a/resources/variants/vzbot/vzbot_235_0.5.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.6.inst.cfg b/resources/variants/vzbot/vzbot_235_0.6.inst.cfg index a1b50cd27d0..c84d0f5c576 100644 --- a/resources/variants/vzbot/vzbot_235_0.6.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.8.inst.cfg b/resources/variants/vzbot/vzbot_235_0.8.inst.cfg index fe74be22a54..dfe232062f8 100644 --- a/resources/variants/vzbot/vzbot_235_0.8.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_1.0.inst.cfg b/resources/variants/vzbot/vzbot_235_1.0.inst.cfg index 05c82524339..1df83fd5323 100644 --- a/resources/variants/vzbot/vzbot_235_1.0.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.2.inst.cfg b/resources/variants/vzbot/vzbot_330_0.2.inst.cfg index c24abe0c1e9..316e2a476ce 100644 --- a/resources/variants/vzbot/vzbot_330_0.2.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.3.inst.cfg b/resources/variants/vzbot/vzbot_330_0.3.inst.cfg index c660618cb62..431f262e63a 100644 --- a/resources/variants/vzbot/vzbot_330_0.3.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.4.inst.cfg b/resources/variants/vzbot/vzbot_330_0.4.inst.cfg index 628179d0549..bb954427a76 100644 --- a/resources/variants/vzbot/vzbot_330_0.4.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.5.inst.cfg b/resources/variants/vzbot/vzbot_330_0.5.inst.cfg index 2cd10160359..eac9b47c5e3 100644 --- a/resources/variants/vzbot/vzbot_330_0.5.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.6.inst.cfg b/resources/variants/vzbot/vzbot_330_0.6.inst.cfg index b4dd2d553b4..6ecac4a4e6d 100644 --- a/resources/variants/vzbot/vzbot_330_0.6.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.8.inst.cfg b/resources/variants/vzbot/vzbot_330_0.8.inst.cfg index 763c2896ef5..654970c4412 100644 --- a/resources/variants/vzbot/vzbot_330_0.8.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_1.0.inst.cfg b/resources/variants/vzbot/vzbot_330_1.0.inst.cfg index 81e8965c38f..0285df5ae54 100644 --- a/resources/variants/vzbot/vzbot_330_1.0.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.2.inst.cfg b/resources/variants/vzbot/vzbot_base_0.2.inst.cfg index 8f222cf3b67..5be96194af5 100644 --- a/resources/variants/vzbot/vzbot_base_0.2.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.3.inst.cfg b/resources/variants/vzbot/vzbot_base_0.3.inst.cfg index 6d0ca279d48..05f66d75fe8 100644 --- a/resources/variants/vzbot/vzbot_base_0.3.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.4.inst.cfg b/resources/variants/vzbot/vzbot_base_0.4.inst.cfg index c96251e4dee..37bcf18c7a9 100644 --- a/resources/variants/vzbot/vzbot_base_0.4.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.5.inst.cfg b/resources/variants/vzbot/vzbot_base_0.5.inst.cfg index 5f423faf6db..d212c38eb11 100644 --- a/resources/variants/vzbot/vzbot_base_0.5.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.6.inst.cfg b/resources/variants/vzbot/vzbot_base_0.6.inst.cfg index b6a7ba7cd2a..85760340fa3 100644 --- a/resources/variants/vzbot/vzbot_base_0.6.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.8.inst.cfg b/resources/variants/vzbot/vzbot_base_0.8.inst.cfg index f1f8ce8dde1..86f2a6fc181 100644 --- a/resources/variants/vzbot/vzbot_base_0.8.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_1.0.inst.cfg b/resources/variants/vzbot/vzbot_base_1.0.inst.cfg index d6e97c5dc67..7466d2aa72b 100644 --- a/resources/variants/vzbot/vzbot_base_1.0.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.2.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.2.inst.cfg index 842899a87da..d146c747929 100644 --- a/resources/variants/vzbot/vzbot_custom_0.2.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.3.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.3.inst.cfg index e4d1d430be6..e0dd0299dbe 100644 --- a/resources/variants/vzbot/vzbot_custom_0.3.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.4.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.4.inst.cfg index 0deed9bddc4..bf7d9d6117e 100644 --- a/resources/variants/vzbot/vzbot_custom_0.4.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.5.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.5.inst.cfg index 2c1b78428da..bf0da7276e8 100644 --- a/resources/variants/vzbot/vzbot_custom_0.5.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.6.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.6.inst.cfg index 44975147887..3524f585de5 100644 --- a/resources/variants/vzbot/vzbot_custom_0.6.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.8.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.8.inst.cfg index 8c9fc89fde6..c8db19a83cc 100644 --- a/resources/variants/vzbot/vzbot_custom_0.8.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_1.0.inst.cfg b/resources/variants/vzbot/vzbot_custom_1.0.inst.cfg index 6c068f79b1e..df7635ecb5a 100644 --- a/resources/variants/vzbot/vzbot_custom_1.0.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/weedo/weedo_x40_weedo_0.4.inst.cfg b/resources/variants/weedo/weedo_x40_weedo_0.4.inst.cfg index 9d05b2fb231..a350aa9eeff 100644 --- a/resources/variants/weedo/weedo_x40_weedo_0.4.inst.cfg +++ b/resources/variants/weedo/weedo_x40_weedo_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/weedo/weedo_x40_weedo_0.6.inst.cfg b/resources/variants/weedo/weedo_x40_weedo_0.6.inst.cfg index 815369bc272..9f55df85c04 100644 --- a/resources/variants/weedo/weedo_x40_weedo_0.6.inst.cfg +++ b/resources/variants/weedo/weedo_x40_weedo_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/weedo/weedo_x40_weedo_0.8.inst.cfg b/resources/variants/weedo/weedo_x40_weedo_0.8.inst.cfg index da97849b695..0deade08694 100644 --- a/resources/variants/weedo/weedo_x40_weedo_0.8.inst.cfg +++ b/resources/variants/weedo/weedo_x40_weedo_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_base_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_base_0.40.inst.cfg index 17e90ab90ed..9181d019281 100644 --- a/resources/variants/xyz_printing/xyzprinting_base_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_1p0_pro_copper_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_1p0_pro_copper_0.40.inst.cfg index 020b6c5a436..157baad8b46 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_1p0_pro_copper_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_1p0_pro_copper_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40.inst.cfg index cf7cbea3471..6d9f9123e0e 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40.inst.cfg index 9f40514694e..7d4c829d96a 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40.inst.cfg index a6e75293f38..40062a321a7 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40.inst.cfg index 70b3254b58e..0aaef4de4aa 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40.inst.cfg index 9a064a3773c..491861dfa76 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40.inst.cfg index bc19df88e04..3c56030b110 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_hs_0.40.inst.cfg index b9d10157540..a0f71419edb 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_ss_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_ss_0.40.inst.cfg index eb89d9c4347..1b1ad1c1850 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_ss_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_ss_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hs_0.40.inst.cfg index b2e4e94d330..78b5989c1c9 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hsht_0.60.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hsht_0.60.inst.cfg index 13c4eadee72..fc276f59978 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hsht_0.60.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hsht_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_super_copper_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_super_copper_0.40.inst.cfg index fab6b115f00..7362bc75520 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_super_copper_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_super_copper_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_super_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_super_hs_0.40.inst.cfg index 0614a7c60a7..ae4bb645821 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_super_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_super_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.20.inst.cfg b/resources/variants/zav/zav_base_0.20.inst.cfg index ad0e738e39d..4e44a094a29 100644 --- a/resources/variants/zav/zav_base_0.20.inst.cfg +++ b/resources/variants/zav/zav_base_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.25.inst.cfg b/resources/variants/zav/zav_base_0.25.inst.cfg index f383c876ef9..a33ac4b63c2 100644 --- a/resources/variants/zav/zav_base_0.25.inst.cfg +++ b/resources/variants/zav/zav_base_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.30.inst.cfg b/resources/variants/zav/zav_base_0.30.inst.cfg index 65da7fa1428..f00379132b4 100644 --- a/resources/variants/zav/zav_base_0.30.inst.cfg +++ b/resources/variants/zav/zav_base_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.35.inst.cfg b/resources/variants/zav/zav_base_0.35.inst.cfg index a2dfed7389c..a89f471161e 100644 --- a/resources/variants/zav/zav_base_0.35.inst.cfg +++ b/resources/variants/zav/zav_base_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.40.inst.cfg b/resources/variants/zav/zav_base_0.40.inst.cfg index 8a9ae2ab915..d0c0e2aa072 100644 --- a/resources/variants/zav/zav_base_0.40.inst.cfg +++ b/resources/variants/zav/zav_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.45.inst.cfg b/resources/variants/zav/zav_base_0.45.inst.cfg index 9df3434ecf4..717f95274dd 100644 --- a/resources/variants/zav/zav_base_0.45.inst.cfg +++ b/resources/variants/zav/zav_base_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.50.inst.cfg b/resources/variants/zav/zav_base_0.50.inst.cfg index 4e94f54a22f..e9acba6ec19 100644 --- a/resources/variants/zav/zav_base_0.50.inst.cfg +++ b/resources/variants/zav/zav_base_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.60.inst.cfg b/resources/variants/zav/zav_base_0.60.inst.cfg index 5198dc479a3..4eb3a28ecb0 100644 --- a/resources/variants/zav/zav_base_0.60.inst.cfg +++ b/resources/variants/zav/zav_base_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.80.inst.cfg b/resources/variants/zav/zav_base_0.80.inst.cfg index 4fc53197d47..936bcc18d52 100644 --- a/resources/variants/zav/zav_base_0.80.inst.cfg +++ b/resources/variants/zav/zav_base_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_base_1.00.inst.cfg b/resources/variants/zav/zav_base_1.00.inst.cfg index a4995d2ad0f..3beda59b755 100644 --- a/resources/variants/zav/zav_base_1.00.inst.cfg +++ b/resources/variants/zav/zav_base_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.20.inst.cfg b/resources/variants/zav/zav_big_0.20.inst.cfg index 10fd2eaf809..819d5f0ee56 100644 --- a/resources/variants/zav/zav_big_0.20.inst.cfg +++ b/resources/variants/zav/zav_big_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.25.inst.cfg b/resources/variants/zav/zav_big_0.25.inst.cfg index d52f66eb51e..6fd29ce3946 100644 --- a/resources/variants/zav/zav_big_0.25.inst.cfg +++ b/resources/variants/zav/zav_big_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.30.inst.cfg b/resources/variants/zav/zav_big_0.30.inst.cfg index 70a15fb6a1e..02d876e6412 100644 --- a/resources/variants/zav/zav_big_0.30.inst.cfg +++ b/resources/variants/zav/zav_big_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.35.inst.cfg b/resources/variants/zav/zav_big_0.35.inst.cfg index d57c6c0fef4..e9def8ef5ff 100644 --- a/resources/variants/zav/zav_big_0.35.inst.cfg +++ b/resources/variants/zav/zav_big_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.40.inst.cfg b/resources/variants/zav/zav_big_0.40.inst.cfg index bb82e0db549..b7086e0a4bd 100644 --- a/resources/variants/zav/zav_big_0.40.inst.cfg +++ b/resources/variants/zav/zav_big_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.45.inst.cfg b/resources/variants/zav/zav_big_0.45.inst.cfg index 904d4911e2b..676dce58dd3 100644 --- a/resources/variants/zav/zav_big_0.45.inst.cfg +++ b/resources/variants/zav/zav_big_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.50.inst.cfg b/resources/variants/zav/zav_big_0.50.inst.cfg index 00de9e8790f..34cba143edd 100644 --- a/resources/variants/zav/zav_big_0.50.inst.cfg +++ b/resources/variants/zav/zav_big_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.60.inst.cfg b/resources/variants/zav/zav_big_0.60.inst.cfg index 67c856f703b..8ffe1f0474f 100644 --- a/resources/variants/zav/zav_big_0.60.inst.cfg +++ b/resources/variants/zav/zav_big_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.80.inst.cfg b/resources/variants/zav/zav_big_0.80.inst.cfg index 0b18636938c..362065f210b 100644 --- a/resources/variants/zav/zav_big_0.80.inst.cfg +++ b/resources/variants/zav/zav_big_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_big_1.00.inst.cfg b/resources/variants/zav/zav_big_1.00.inst.cfg index a726d9d05b3..df2a7450572 100644 --- a/resources/variants/zav/zav_big_1.00.inst.cfg +++ b/resources/variants/zav/zav_big_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.20.inst.cfg b/resources/variants/zav/zav_bigplus_0.20.inst.cfg index 331dd6f067c..4fa17d9e1f0 100644 --- a/resources/variants/zav/zav_bigplus_0.20.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.25.inst.cfg b/resources/variants/zav/zav_bigplus_0.25.inst.cfg index 80974382326..e9a4d63228e 100644 --- a/resources/variants/zav/zav_bigplus_0.25.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.30.inst.cfg b/resources/variants/zav/zav_bigplus_0.30.inst.cfg index 838d6f4394f..31c10f4b681 100644 --- a/resources/variants/zav/zav_bigplus_0.30.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.35.inst.cfg b/resources/variants/zav/zav_bigplus_0.35.inst.cfg index 1525949e3bf..0e0cff36db5 100644 --- a/resources/variants/zav/zav_bigplus_0.35.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.40.inst.cfg b/resources/variants/zav/zav_bigplus_0.40.inst.cfg index b463d344add..5648641180d 100644 --- a/resources/variants/zav/zav_bigplus_0.40.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.45.inst.cfg b/resources/variants/zav/zav_bigplus_0.45.inst.cfg index 15b91bf090d..9365c882fb2 100644 --- a/resources/variants/zav/zav_bigplus_0.45.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.50.inst.cfg b/resources/variants/zav/zav_bigplus_0.50.inst.cfg index 7fbdcae3dc3..6fa5aae4a30 100644 --- a/resources/variants/zav/zav_bigplus_0.50.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.60.inst.cfg b/resources/variants/zav/zav_bigplus_0.60.inst.cfg index a017964412f..1d56233594f 100644 --- a/resources/variants/zav/zav_bigplus_0.60.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.80.inst.cfg b/resources/variants/zav/zav_bigplus_0.80.inst.cfg index 7d05464c35c..38e0c446faf 100644 --- a/resources/variants/zav/zav_bigplus_0.80.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_1.00.inst.cfg b/resources/variants/zav/zav_bigplus_1.00.inst.cfg index 9df217c9d28..b183720df79 100644 --- a/resources/variants/zav/zav_bigplus_1.00.inst.cfg +++ b/resources/variants/zav/zav_bigplus_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.20.inst.cfg b/resources/variants/zav/zav_l_0.20.inst.cfg index 36c221e17e2..570ad1e8045 100644 --- a/resources/variants/zav/zav_l_0.20.inst.cfg +++ b/resources/variants/zav/zav_l_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.25.inst.cfg b/resources/variants/zav/zav_l_0.25.inst.cfg index 5c70cc59e2e..0bb46590a29 100644 --- a/resources/variants/zav/zav_l_0.25.inst.cfg +++ b/resources/variants/zav/zav_l_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.30.inst.cfg b/resources/variants/zav/zav_l_0.30.inst.cfg index b3b27911ac9..2031947fe32 100644 --- a/resources/variants/zav/zav_l_0.30.inst.cfg +++ b/resources/variants/zav/zav_l_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.35.inst.cfg b/resources/variants/zav/zav_l_0.35.inst.cfg index 363456995d5..c94b03b5939 100644 --- a/resources/variants/zav/zav_l_0.35.inst.cfg +++ b/resources/variants/zav/zav_l_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.40.inst.cfg b/resources/variants/zav/zav_l_0.40.inst.cfg index c6669ad9a44..a9439a74220 100644 --- a/resources/variants/zav/zav_l_0.40.inst.cfg +++ b/resources/variants/zav/zav_l_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.45.inst.cfg b/resources/variants/zav/zav_l_0.45.inst.cfg index 65db0556eaa..c2962b60bac 100644 --- a/resources/variants/zav/zav_l_0.45.inst.cfg +++ b/resources/variants/zav/zav_l_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.50.inst.cfg b/resources/variants/zav/zav_l_0.50.inst.cfg index e3f2ef936d7..d0ce3b7f886 100644 --- a/resources/variants/zav/zav_l_0.50.inst.cfg +++ b/resources/variants/zav/zav_l_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.60.inst.cfg b/resources/variants/zav/zav_l_0.60.inst.cfg index 4931819d79e..eec1d7d3a26 100644 --- a/resources/variants/zav/zav_l_0.60.inst.cfg +++ b/resources/variants/zav/zav_l_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.80.inst.cfg b/resources/variants/zav/zav_l_0.80.inst.cfg index e142040df62..9a151bc35bc 100644 --- a/resources/variants/zav/zav_l_0.80.inst.cfg +++ b/resources/variants/zav/zav_l_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_l_1.00.inst.cfg b/resources/variants/zav/zav_l_1.00.inst.cfg index 32bd8bc3abc..32e430d2093 100644 --- a/resources/variants/zav/zav_l_1.00.inst.cfg +++ b/resources/variants/zav/zav_l_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.20.inst.cfg b/resources/variants/zav/zav_max_0.20.inst.cfg index b7d24f2b1b4..e02d20d6b50 100644 --- a/resources/variants/zav/zav_max_0.20.inst.cfg +++ b/resources/variants/zav/zav_max_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.25.inst.cfg b/resources/variants/zav/zav_max_0.25.inst.cfg index d3b54f4cbd8..453ab07d8f6 100644 --- a/resources/variants/zav/zav_max_0.25.inst.cfg +++ b/resources/variants/zav/zav_max_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.30.inst.cfg b/resources/variants/zav/zav_max_0.30.inst.cfg index cc335e2d234..cbc4dca202f 100644 --- a/resources/variants/zav/zav_max_0.30.inst.cfg +++ b/resources/variants/zav/zav_max_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.35.inst.cfg b/resources/variants/zav/zav_max_0.35.inst.cfg index a5daa9a2669..bb82e132c5d 100644 --- a/resources/variants/zav/zav_max_0.35.inst.cfg +++ b/resources/variants/zav/zav_max_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.40.inst.cfg b/resources/variants/zav/zav_max_0.40.inst.cfg index f0d48219f4c..b3d86fc8e71 100644 --- a/resources/variants/zav/zav_max_0.40.inst.cfg +++ b/resources/variants/zav/zav_max_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.45.inst.cfg b/resources/variants/zav/zav_max_0.45.inst.cfg index 1ec70c2d33c..c94ba4c136e 100644 --- a/resources/variants/zav/zav_max_0.45.inst.cfg +++ b/resources/variants/zav/zav_max_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.50.inst.cfg b/resources/variants/zav/zav_max_0.50.inst.cfg index 6e3c61c1425..cd2deaa6111 100644 --- a/resources/variants/zav/zav_max_0.50.inst.cfg +++ b/resources/variants/zav/zav_max_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.60.inst.cfg b/resources/variants/zav/zav_max_0.60.inst.cfg index 56dcfa5b4e4..d18e1b0f4c9 100644 --- a/resources/variants/zav/zav_max_0.60.inst.cfg +++ b/resources/variants/zav/zav_max_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.80.inst.cfg b/resources/variants/zav/zav_max_0.80.inst.cfg index 7899a7d3215..e65fcfa0693 100644 --- a/resources/variants/zav/zav_max_0.80.inst.cfg +++ b/resources/variants/zav/zav_max_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_max_1.00.inst.cfg b/resources/variants/zav/zav_max_1.00.inst.cfg index c14b0b25a07..4b75bb9fc02 100644 --- a/resources/variants/zav/zav_max_1.00.inst.cfg +++ b/resources/variants/zav/zav_max_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.20.inst.cfg b/resources/variants/zav/zav_maxpro_0.20.inst.cfg index 2f693153e24..0f250052ab2 100644 --- a/resources/variants/zav/zav_maxpro_0.20.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.25.inst.cfg b/resources/variants/zav/zav_maxpro_0.25.inst.cfg index 07b3cbb2996..a9f2ec80583 100644 --- a/resources/variants/zav/zav_maxpro_0.25.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.30.inst.cfg b/resources/variants/zav/zav_maxpro_0.30.inst.cfg index becb97fbafe..0fcd6148289 100644 --- a/resources/variants/zav/zav_maxpro_0.30.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.35.inst.cfg b/resources/variants/zav/zav_maxpro_0.35.inst.cfg index bf9ad26e28a..e7d8de04df0 100644 --- a/resources/variants/zav/zav_maxpro_0.35.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.40.inst.cfg b/resources/variants/zav/zav_maxpro_0.40.inst.cfg index bd99c768857..b8e7e3f5099 100644 --- a/resources/variants/zav/zav_maxpro_0.40.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.45.inst.cfg b/resources/variants/zav/zav_maxpro_0.45.inst.cfg index 8848639582e..6b7bd64bf38 100644 --- a/resources/variants/zav/zav_maxpro_0.45.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.50.inst.cfg b/resources/variants/zav/zav_maxpro_0.50.inst.cfg index 9aba2b9fbbb..7db70a401a5 100644 --- a/resources/variants/zav/zav_maxpro_0.50.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.60.inst.cfg b/resources/variants/zav/zav_maxpro_0.60.inst.cfg index 027a4fc96a4..ba8e30d5b92 100644 --- a/resources/variants/zav/zav_maxpro_0.60.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.80.inst.cfg b/resources/variants/zav/zav_maxpro_0.80.inst.cfg index 1ef39b36630..e8fe9a1bf4f 100644 --- a/resources/variants/zav/zav_maxpro_0.80.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_1.00.inst.cfg b/resources/variants/zav/zav_maxpro_1.00.inst.cfg index 15872422f6a..4c65159ccfc 100644 --- a/resources/variants/zav/zav_maxpro_1.00.inst.cfg +++ b/resources/variants/zav/zav_maxpro_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.20.inst.cfg b/resources/variants/zav/zav_mini_0.20.inst.cfg index f66717ae192..10a6733a1b0 100644 --- a/resources/variants/zav/zav_mini_0.20.inst.cfg +++ b/resources/variants/zav/zav_mini_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.25.inst.cfg b/resources/variants/zav/zav_mini_0.25.inst.cfg index fe43c80041c..5b32e6cab09 100644 --- a/resources/variants/zav/zav_mini_0.25.inst.cfg +++ b/resources/variants/zav/zav_mini_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.30.inst.cfg b/resources/variants/zav/zav_mini_0.30.inst.cfg index d393760b573..e3680c1c009 100644 --- a/resources/variants/zav/zav_mini_0.30.inst.cfg +++ b/resources/variants/zav/zav_mini_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.35.inst.cfg b/resources/variants/zav/zav_mini_0.35.inst.cfg index f33ef12e6fa..b0b2dc4cb7a 100644 --- a/resources/variants/zav/zav_mini_0.35.inst.cfg +++ b/resources/variants/zav/zav_mini_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.40.inst.cfg b/resources/variants/zav/zav_mini_0.40.inst.cfg index 3d16bc3a110..8ad44c42fb6 100644 --- a/resources/variants/zav/zav_mini_0.40.inst.cfg +++ b/resources/variants/zav/zav_mini_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.45.inst.cfg b/resources/variants/zav/zav_mini_0.45.inst.cfg index 827aa1fe3bd..787f44e6da8 100644 --- a/resources/variants/zav/zav_mini_0.45.inst.cfg +++ b/resources/variants/zav/zav_mini_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.50.inst.cfg b/resources/variants/zav/zav_mini_0.50.inst.cfg index 70e5fe2fd74..dfd4c5b36ef 100644 --- a/resources/variants/zav/zav_mini_0.50.inst.cfg +++ b/resources/variants/zav/zav_mini_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.60.inst.cfg b/resources/variants/zav/zav_mini_0.60.inst.cfg index d7f4915d171..3588219551b 100644 --- a/resources/variants/zav/zav_mini_0.60.inst.cfg +++ b/resources/variants/zav/zav_mini_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.80.inst.cfg b/resources/variants/zav/zav_mini_0.80.inst.cfg index f1518d7e778..18082058719 100644 --- a/resources/variants/zav/zav_mini_0.80.inst.cfg +++ b/resources/variants/zav/zav_mini_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] diff --git a/resources/variants/zav/zav_mini_1.00.inst.cfg b/resources/variants/zav/zav_mini_1.00.inst.cfg index 3e85f4c25fe..f47f8777f3a 100644 --- a/resources/variants/zav/zav_mini_1.00.inst.cfg +++ b/resources/variants/zav/zav_mini_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 22 type = variant [values] From 74678bf6fb10d8a7ccb57b215723e05938c01f93 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 15 Mar 2024 11:59:09 +0100 Subject: [PATCH 678/765] Bumb version for profiles CURA-11526 --- .../deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_B.inst.cfg | 2 +- .../deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_C.inst.cfg | 2 +- .../deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_D.inst.cfg | 2 +- .../intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_D.inst.cfg | 2 +- .../intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_E.inst.cfg | 2 +- .../deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_B.inst.cfg | 2 +- .../deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_C.inst.cfg | 2 +- .../deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_D.inst.cfg | 2 +- .../intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_D.inst.cfg | 2 +- .../intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_E.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_B.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_C.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_D.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_C.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_D.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_E.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_B.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_C.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_D.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_C.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_D.inst.cfg | 2 +- .../deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_E.inst.cfg | 2 +- .../deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg | 2 +- .../deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg | 2 +- .../deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg | 2 +- .../intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_D.inst.cfg | 2 +- .../intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_E.inst.cfg | 2 +- .../deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg | 2 +- .../deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg | 2 +- .../deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg | 2 +- .../intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_D.inst.cfg | 2 +- .../intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_E.inst.cfg | 2 +- .../PLA/elegoo_base_aa0.4_pla_0.05mm_visual.inst.cfg | 2 +- .../PLA/elegoo_base_aa0.4_pla_0.15mm_engineering.inst.cfg | 2 +- .../PLA/elegoo_base_aa0.4_pla_0.15mm_visual.inst.cfg | 2 +- .../PLA/elegoo_base_aa0.4_pla_0.1mm_engineering.inst.cfg | 2 +- .../elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_visual.inst.cfg | 2 +- .../elegoo_base/PLA/elegoo_base_aa0.4_pla_0.2mm_quick.inst.cfg | 2 +- .../elegoo_base/PLA/elegoo_base_aa0.4_pla_0.3mm_quick.inst.cfg | 2 +- .../PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg | 2 +- .../PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg | 2 +- .../PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg | 2 +- .../PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg | 2 +- .../PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg | 2 +- .../PLA/elegoo_n4_aa0.4_pla_0.2mm_engineering.inst.cfg | 2 +- .../PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg | 2 +- .../PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg | 2 +- .../intent/liquid/liquid_vo0.4_ABS_Draft_Print_Quick.inst.cfg | 2 +- .../intent/liquid/liquid_vo0.4_ABS_Fast_Print_Accurate.inst.cfg | 2 +- resources/intent/liquid/liquid_vo0.4_ABS_Fast_Visual.inst.cfg | 2 +- resources/intent/liquid/liquid_vo0.4_ABS_High_Visual.inst.cfg | 2 +- .../liquid/liquid_vo0.4_ABS_Normal_Quality_Accurate.inst.cfg | 2 +- resources/intent/liquid/liquid_vo0.4_ABS_Normal_Visual.inst.cfg | 2 +- .../intent/liquid/liquid_vo0.4_CPE_Fast_Print_Accurate.inst.cfg | 2 +- .../liquid/liquid_vo0.4_CPE_Normal_Quality_Accurate.inst.cfg | 2 +- .../liquid/liquid_vo0.4_Nylon_Fast_Print_Accurate.inst.cfg | 2 +- .../liquid/liquid_vo0.4_Nylon_Normal_Quality_Accurate.inst.cfg | 2 +- .../intent/liquid/liquid_vo0.4_PC_Fast_Print_Accurate.inst.cfg | 2 +- .../liquid/liquid_vo0.4_PC_Normal_Quality_Accurate.inst.cfg | 2 +- .../intent/liquid/liquid_vo0.4_PETG_Draft_Print_Quick.inst.cfg | 2 +- .../liquid/liquid_vo0.4_PETG_Fast_Print_Accurate.inst.cfg | 2 +- resources/intent/liquid/liquid_vo0.4_PETG_Fast_Visual.inst.cfg | 2 +- resources/intent/liquid/liquid_vo0.4_PETG_High_Visual.inst.cfg | 2 +- .../liquid/liquid_vo0.4_PETG_Normal_Quality_Accurate.inst.cfg | 2 +- .../intent/liquid/liquid_vo0.4_PETG_Normal_Visual.inst.cfg | 2 +- .../intent/liquid/liquid_vo0.4_PLA_Draft_Print_Quick.inst.cfg | 2 +- .../intent/liquid/liquid_vo0.4_PLA_Fast_Print_Accurate.inst.cfg | 2 +- resources/intent/liquid/liquid_vo0.4_PLA_Fast_Visual.inst.cfg | 2 +- resources/intent/liquid/liquid_vo0.4_PLA_High_Visual.inst.cfg | 2 +- .../liquid/liquid_vo0.4_PLA_Normal_Quality_Accurate.inst.cfg | 2 +- resources/intent/liquid/liquid_vo0.4_PLA_Normal_Visual.inst.cfg | 2 +- .../um_methodx_1c_um-abscf-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodx_1c_um-absr-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodx_1c_um-asa-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodx_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodx_1xa_um-absr-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodx_1xa_um-asa-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodx_labs_um-abscf-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodx_labs_um-absr-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodx_labs_um-asa-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodx_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodxl_1c_um-abscf-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodxl_1c_um-absr-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodxl_1c_um-asa-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodxl_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodxl_1xa_um-absr-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodxl_1xa_um-asa-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodxl_labs_um-abscf-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodxl_labs_um-absr-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodxl_labs_um-asa-175_0.2mm_solid.inst.cfg | 2 +- .../um_methodxl_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_abs_0.06mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_abs_0.15mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_abs_0.1mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_abs_0.2mm_quick.inst.cfg | 2 +- .../um_s3_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg | 2 +- .../um_s3_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_cpe_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_cpe_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_nylon_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_nylon_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_pc_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_pc_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_petg_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_petg_0.1mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_pla_0.06mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_pla_0.15mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_pla_0.1mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_pla_0.2mm_quick.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_pla_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm_visual.inst.cfg | 2 +- .../um_s3_aa0.4_tough-pla_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_visual.inst.cfg | 2 +- .../um_s3_aa0.4_tough-pla_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg | 2 +- .../um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg | 2 +- .../um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg | 2 +- .../um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg | 2 +- .../um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg | 2 +- .../um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg | 2 +- .../um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg | 2 +- .../intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg | 2 +- .../um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg | 2 +- .../ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg | 2 +- .../ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg | 2 +- .../ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg | 2 +- .../ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_abs_0.06mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_abs_0.15mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_abs_0.1mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_abs_0.2mm_quick.inst.cfg | 2 +- .../um_s5_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg | 2 +- .../um_s5_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_cpe_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_cpe_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_nylon_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_nylon_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_pc_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_pc_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_petg_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_petg_0.1mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_pla_0.06mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_pla_0.15mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_pla_0.1mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_pla_0.2mm_quick.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_pla_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm_visual.inst.cfg | 2 +- .../um_s5_aa0.4_tough-pla_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_visual.inst.cfg | 2 +- .../um_s5_aa0.4_tough-pla_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg | 2 +- .../um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg | 2 +- .../um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg | 2 +- .../um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg | 2 +- .../um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg | 2 +- .../um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg | 2 +- .../um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg | 2 +- .../intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg | 2 +- .../um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg | 2 +- .../ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg | 2 +- .../ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg | 2 +- .../ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg | 2 +- .../ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_engineering.inst.cfg | 2 +- .../abs/abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg | 2 +- .../uni_base/abs/abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg | 2 +- .../abs/abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg | 2 +- .../uni_base/abs/abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg | 2 +- .../uni_base/abs/abs_nozzle_0.40_layer_0.20_quick.inst.cfg | 2 +- .../abs/abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg | 2 +- .../uni_base/abs/abs_nozzle_0.40_layer_0.25_quick.inst.cfg | 2 +- .../uni_base/abs/abs_nozzle_0.40_layer_0.30_quick.inst.cfg | 2 +- .../petg/petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg | 2 +- .../uni_base/petg/petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg | 2 +- .../petg/petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg | 2 +- .../uni_base/petg/petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg | 2 +- .../uni_base/petg/petg_nozzle_0.40_layer_0.20_quick.inst.cfg | 2 +- .../petg/petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg | 2 +- .../uni_base/petg/petg_nozzle_0.40_layer_0.25_quick.inst.cfg | 2 +- .../uni_base/petg/petg_nozzle_0.40_layer_0.30_quick.inst.cfg | 2 +- .../pla/pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg | 2 +- .../uni_base/pla/pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg | 2 +- .../pla/pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg | 2 +- .../uni_base/pla/pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg | 2 +- .../uni_base/pla/pla_nozzle_0.40_layer_0.20_quick.inst.cfg | 2 +- .../pla/pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg | 2 +- .../uni_base/pla/pla_nozzle_0.40_layer_0.25_quick.inst.cfg | 2 +- .../uni_base/pla/pla_nozzle_0.40_layer_0.30_quick.inst.cfg | 2 +- .../abs/zav_abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg | 2 +- .../abs/zav_abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg | 2 +- .../abs/zav_abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg | 2 +- .../abs/zav_abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg | 2 +- .../zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_quick.inst.cfg | 2 +- .../abs/zav_abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg | 2 +- .../zav_base/abs/zav_abs_nozzle_0.40_layer_0.25_quick.inst.cfg | 2 +- .../zav_base/abs/zav_abs_nozzle_0.40_layer_0.30_quick.inst.cfg | 2 +- .../petg/zav_petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg | 2 +- .../petg/zav_petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg | 2 +- .../petg/zav_petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg | 2 +- .../petg/zav_petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg | 2 +- .../petg/zav_petg_nozzle_0.40_layer_0.20_quick.inst.cfg | 2 +- .../petg/zav_petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg | 2 +- .../petg/zav_petg_nozzle_0.40_layer_0.25_quick.inst.cfg | 2 +- .../petg/zav_petg_nozzle_0.40_layer_0.30_quick.inst.cfg | 2 +- .../pla/zav_pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg | 2 +- .../pla/zav_pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg | 2 +- .../pla/zav_pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg | 2 +- .../pla/zav_pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg | 2 +- .../zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_quick.inst.cfg | 2 +- .../pla/zav_pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg | 2 +- .../zav_base/pla/zav_pla_nozzle_0.40_layer_0.25_quick.inst.cfg | 2 +- .../zav_base/pla/zav_pla_nozzle_0.40_layer_0.30_quick.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_global_standard.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg | 2 +- .../Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg | 2 +- resources/quality/abax_pri3/apri3_pla_fast.inst.cfg | 2 +- resources/quality/abax_pri3/apri3_pla_high.inst.cfg | 2 +- resources/quality/abax_pri3/apri3_pla_normal.inst.cfg | 2 +- resources/quality/abax_pri5/apri5_pla_fast.inst.cfg | 2 +- resources/quality/abax_pri5/apri5_pla_high.inst.cfg | 2 +- resources/quality/abax_pri5/apri5_pla_normal.inst.cfg | 2 +- resources/quality/abax_titan/atitan_pla_fast.inst.cfg | 2 +- resources/quality/abax_titan/atitan_pla_high.inst.cfg | 2 +- resources/quality/abax_titan/atitan_pla_normal.inst.cfg | 2 +- resources/quality/ankermake_m5/ankermake_m5_draft.inst.cfg | 2 +- resources/quality/ankermake_m5/ankermake_m5_fine.inst.cfg | 2 +- resources/quality/ankermake_m5/ankermake_m5_normal.inst.cfg | 2 +- .../quality/anycubic_4max/abs/anycubic_4max_abs_draft.inst.cfg | 2 +- .../quality/anycubic_4max/abs/anycubic_4max_abs_high.inst.cfg | 2 +- .../quality/anycubic_4max/abs/anycubic_4max_abs_normal.inst.cfg | 2 +- resources/quality/anycubic_4max/anycubic_4max_draft.inst.cfg | 2 +- resources/quality/anycubic_4max/anycubic_4max_high.inst.cfg | 2 +- resources/quality/anycubic_4max/anycubic_4max_normal.inst.cfg | 2 +- .../anycubic_4max/hips/anycubic_4max_hips_draft.inst.cfg | 2 +- .../quality/anycubic_4max/hips/anycubic_4max_hips_high.inst.cfg | 2 +- .../anycubic_4max/hips/anycubic_4max_hips_normal.inst.cfg | 2 +- .../anycubic_4max/petg/anycubic_4max_petg_draft.inst.cfg | 2 +- .../quality/anycubic_4max/petg/anycubic_4max_petg_high.inst.cfg | 2 +- .../anycubic_4max/petg/anycubic_4max_petg_normal.inst.cfg | 2 +- .../quality/anycubic_4max/pla/anycubic_4max_pla_draft.inst.cfg | 2 +- .../quality/anycubic_4max/pla/anycubic_4max_pla_high.inst.cfg | 2 +- .../quality/anycubic_4max/pla/anycubic_4max_pla_normal.inst.cfg | 2 +- .../quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg | 2 +- resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg | 2 +- .../quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg | 2 +- .../quality/anycubic_i3_mega/anycubic_i3_mega_draft.inst.cfg | 2 +- .../quality/anycubic_i3_mega/anycubic_i3_mega_high.inst.cfg | 2 +- .../quality/anycubic_i3_mega/anycubic_i3_mega_normal.inst.cfg | 2 +- .../anycubic_i3_mega_s/anycubic_i3_mega_s_draft.inst.cfg | 2 +- .../quality/anycubic_i3_mega_s/anycubic_i3_mega_s_high.inst.cfg | 2 +- .../anycubic_i3_mega_s/anycubic_i3_mega_s_normal.inst.cfg | 2 +- resources/quality/anycubic_kobra/anycubic_kobra_abs.inst.cfg | 2 +- resources/quality/anycubic_kobra/anycubic_kobra_pla.inst.cfg | 2 +- resources/quality/anycubic_kobra/anycubic_kobra_tpu.inst.cfg | 2 +- .../quality/anycubic_kobra_go/anycubic_kobra_go_abs.inst.cfg | 2 +- .../quality/anycubic_kobra_go/anycubic_kobra_go_pla.inst.cfg | 2 +- .../quality/anycubic_kobra_go/anycubic_kobra_go_tpu.inst.cfg | 2 +- .../quality/anycubic_kobra_max/anycubic_kobra_max_pla.inst.cfg | 2 +- .../quality/anycubic_kobra_max/anycubic_kobra_max_tpu.inst.cfg | 2 +- .../anycubic_kobra_plus/anycubic_kobra_plus_normal.inst.cfg | 2 +- .../anycubic_mega_zero/anycubic_mega_zero_draft.inst.cfg | 2 +- .../quality/anycubic_mega_zero/anycubic_mega_zero_high.inst.cfg | 2 +- .../anycubic_mega_zero/anycubic_mega_zero_normal.inst.cfg | 2 +- resources/quality/anycubic_predator/predator_coarse.inst.cfg | 2 +- resources/quality/anycubic_predator/predator_draft.inst.cfg | 2 +- .../quality/anycubic_predator/predator_extra_coarse.inst.cfg | 2 +- .../quality/anycubic_predator/predator_extra_fine.inst.cfg | 2 +- resources/quality/anycubic_predator/predator_fine.inst.cfg | 2 +- resources/quality/anycubic_predator/predator_normal.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.2_ABS_super.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.2_ABS_ultra.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.3_ABS_adaptive.inst.cfg | 2 +- resources/quality/artillery/ABS/artillery_0.3_ABS_low.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.3_ABS_standard.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.3_ABS_super.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.4_ABS_adaptive.inst.cfg | 2 +- resources/quality/artillery/ABS/artillery_0.4_ABS_low.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.4_ABS_standard.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.4_ABS_super.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.5_ABS_adaptive.inst.cfg | 2 +- resources/quality/artillery/ABS/artillery_0.5_ABS_low.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.5_ABS_standard.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.5_ABS_super.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.6_ABS_standard.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_0.8_ABS_draft.inst.cfg | 2 +- .../quality/artillery/ABS/artillery_1.0_ABS_draft.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.2_PETG_super.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.2_PETG_ultra.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.3_PETG_adaptive.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.3_PETG_low.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.3_PETG_standard.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.3_PETG_super.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.4_PETG_adaptive.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.4_PETG_low.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.4_PETG_standard.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.4_PETG_super.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.5_PETG_adaptive.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.5_PETG_low.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.5_PETG_standard.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.5_PETG_super.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.6_PETG_standard.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_0.8_PETG_draft.inst.cfg | 2 +- .../quality/artillery/PETG/artillery_1.0_PETG_draft.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.2_PLA_super.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.2_PLA_ultra.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.3_PLA_adaptive.inst.cfg | 2 +- resources/quality/artillery/PLA/artillery_0.3_PLA_low.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.3_PLA_standard.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.3_PLA_super.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.4_PLA_adaptive.inst.cfg | 2 +- resources/quality/artillery/PLA/artillery_0.4_PLA_low.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.4_PLA_standard.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.4_PLA_super.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.5_PLA_adaptive.inst.cfg | 2 +- resources/quality/artillery/PLA/artillery_0.5_PLA_low.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.5_PLA_standard.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.5_PLA_super.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.6_PLA_draft.inst.cfg | 2 +- resources/quality/artillery/PLA/artillery_0.6_PLA_low.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.6_PLA_standard.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_0.8_PLA_draft.inst.cfg | 2 +- .../quality/artillery/PLA/artillery_1.0_PLA_draft.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_0.3_TPU_adaptive.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_0.3_TPU_standard.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_0.3_TPU_super.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_0.4_TPU_adaptive.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_0.4_TPU_standard.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_0.4_TPU_super.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_0.5_TPU_adaptive.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_0.5_TPU_standard.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_0.5_TPU_super.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_0.6_TPU_standard.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_0.8_TPU_draft.inst.cfg | 2 +- .../quality/artillery/TPU/artillery_1.0_TPU_draft.inst.cfg | 2 +- resources/quality/artillery/artillery_global_adaptive.inst.cfg | 2 +- resources/quality/artillery/artillery_global_draft.inst.cfg | 2 +- resources/quality/artillery/artillery_global_low.inst.cfg | 2 +- resources/quality/artillery/artillery_global_standard.inst.cfg | 2 +- resources/quality/artillery/artillery_global_super.inst.cfg | 2 +- resources/quality/artillery/artillery_global_ultra.inst.cfg | 2 +- .../quality/artillery/nylon/artillery_0.2_Nylon_super.inst.cfg | 2 +- .../quality/artillery/nylon/artillery_0.2_Nylon_ultra.inst.cfg | 2 +- .../artillery/nylon/artillery_0.3_Nylon_adaptive.inst.cfg | 2 +- .../quality/artillery/nylon/artillery_0.3_Nylon_low.inst.cfg | 2 +- .../artillery/nylon/artillery_0.3_Nylon_standard.inst.cfg | 2 +- .../quality/artillery/nylon/artillery_0.3_Nylon_super.inst.cfg | 2 +- .../artillery/nylon/artillery_0.4_Nylon_adaptive.inst.cfg | 2 +- .../quality/artillery/nylon/artillery_0.4_Nylon_low.inst.cfg | 2 +- .../artillery/nylon/artillery_0.4_Nylon_standard.inst.cfg | 2 +- .../quality/artillery/nylon/artillery_0.4_Nylon_super.inst.cfg | 2 +- .../artillery/nylon/artillery_0.5_Nylon_adaptive.inst.cfg | 2 +- .../quality/artillery/nylon/artillery_0.5_Nylon_low.inst.cfg | 2 +- .../artillery/nylon/artillery_0.5_Nylon_standard.inst.cfg | 2 +- .../quality/artillery/nylon/artillery_0.5_Nylon_super.inst.cfg | 2 +- .../artillery/nylon/artillery_0.6_Nylon_standard.inst.cfg | 2 +- .../quality/artillery/nylon/artillery_0.8_Nylon_draft.inst.cfg | 2 +- .../quality/artillery/nylon/artillery_1.0_Nylon_draft.inst.cfg | 2 +- .../signal_pro_global_extrafast_quality.inst.cfg | 2 +- .../signal_pro_global_extrafine_quality.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_global_fast_quality.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_global_fine_quality.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_global_normal_quality.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_global_sprint_quality.inst.cfg | 2 +- .../signal_pro_global_supersprint_quality.inst.cfg | 2 +- .../signal_pro_global_ultrasprint_quality.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_ABS_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_ABS_fast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_ABS_fine.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_ABS_normal.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_HIPS_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_HIPS_fast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_HIPS_fine.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_HIPS_normal.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PA_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PA_fast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PA_fine.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PA_normal.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PC_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PC_fast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PC_fine.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PC_normal.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PETG_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PETG_fast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PETG_fine.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PETG_normal.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PLA_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PLA_fast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PLA_fine.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PLA_normal.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PVA_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PVA_fast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PVA_fine.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_PVA_normal.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_TPU_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_TPU_fast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_TPU_fine.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.40_TPU_normal.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_ABS_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_ABS_sprint.inst.cfg | 2 +- .../signal_pro_v6_0.80_ABS_supersprint.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_HIPS_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_HIPS_sprint.inst.cfg | 2 +- .../signal_pro_v6_0.80_HIPS_supersprint.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PA_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PA_sprint.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PA_supersprint.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PC_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PC_sprint.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PC_supersprint.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PETG_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PETG_sprint.inst.cfg | 2 +- .../signal_pro_v6_0.80_PETG_supersprint.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PLA_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PLA_sprint.inst.cfg | 2 +- .../signal_pro_v6_0.80_PLA_supersprint.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PVA_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_PVA_sprint.inst.cfg | 2 +- .../signal_pro_v6_0.80_PVA_supersprint.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_TPU_extrafast.inst.cfg | 2 +- .../atmat_signal_pro/signal_pro_v6_0.80_TPU_sprint.inst.cfg | 2 +- .../signal_pro_v6_0.80_TPU_supersprint.inst.cfg | 2 +- resources/quality/beamup_l/beamup_l_coarse.inst.cfg | 2 +- resources/quality/beamup_l/beamup_l_draft.inst.cfg | 2 +- resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg | 2 +- resources/quality/beamup_l/beamup_l_fine.inst.cfg | 2 +- resources/quality/beamup_l/beamup_l_normal.inst.cfg | 2 +- resources/quality/beamup_s/beamup_s_coarse.inst.cfg | 2 +- resources/quality/beamup_s/beamup_s_draft.inst.cfg | 2 +- resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg | 2 +- resources/quality/beamup_s/beamup_s_fine.inst.cfg | 2 +- resources/quality/beamup_s/beamup_s_normal.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.2_ABS_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.2_ABS_ultra.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.2_PETG_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.2_PETG_ultra.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.2_PLA_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.2_PLA_ultra.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_ABS_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_ABS_low.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_ABS_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_ABS_super.inst.cfg | 2 +- .../quality/biqu/base/biqu_base_0.3_PETG_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_PETG_low.inst.cfg | 2 +- .../quality/biqu/base/biqu_base_0.3_PETG_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_PETG_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_PLA_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_PLA_low.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_PLA_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_PLA_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_TPU_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_TPU_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.3_TPU_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_ABS_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_ABS_low.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_ABS_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_ABS_super.inst.cfg | 2 +- .../quality/biqu/base/biqu_base_0.4_PETG_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_PETG_low.inst.cfg | 2 +- .../quality/biqu/base/biqu_base_0.4_PETG_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_PETG_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_PLA_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_PLA_low.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_PLA_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_PLA_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_TPU_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_TPU_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.4_TPU_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_ABS_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_ABS_low.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_ABS_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_ABS_super.inst.cfg | 2 +- .../quality/biqu/base/biqu_base_0.5_PETG_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_PETG_low.inst.cfg | 2 +- .../quality/biqu/base/biqu_base_0.5_PETG_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_PETG_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_PLA_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_PLA_low.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_PLA_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_PLA_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_TPU_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_TPU_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.5_TPU_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.6_ABS_standard.inst.cfg | 2 +- .../quality/biqu/base/biqu_base_0.6_PETG_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.6_PLA_draft.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.6_PLA_low.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.6_PLA_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.6_TPU_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.8_ABS_draft.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.8_PETG_draft.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.8_PLA_draft.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_0.8_TPU_draft.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_1.0_ABS_draft.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_1.0_PETG_draft.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_1.0_PLA_draft.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_1.0_TPU_draft.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_global_adaptive.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_global_draft.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_global_low.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_global_standard.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_global_super.inst.cfg | 2 +- resources/quality/biqu/base/biqu_base_global_ultra.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.20_draft.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.20_standard.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.30_draft.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.30_standard.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.30_ultra.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.40_adaptive.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.40_draft.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.40_standard.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.40_ultra.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.50_adaptive.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.50_draft.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.50_standard.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.50_ultra.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.60_adaptive.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.60_draft.inst.cfg | 2 +- resources/quality/blocks/Nozzle/blocks_global_0.60_low.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.60_standard.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.60_ultra.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.80_adaptive.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.80_draft.inst.cfg | 2 +- resources/quality/blocks/Nozzle/blocks_global_0.80_low.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.80_standard.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.80_superlow.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_0.80_ultra.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_1.0_adaptive.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_1.0_draft.inst.cfg | 2 +- resources/quality/blocks/Nozzle/blocks_global_1.0_low.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_1.0_standard.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_1.0_superlow.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_1.0_ultra.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_1.2_adaptive.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_1.2_draft.inst.cfg | 2 +- resources/quality/blocks/Nozzle/blocks_global_1.2_low.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_1.2_standard.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_1.2_superlow.inst.cfg | 2 +- .../quality/blocks/Nozzle/blocks_global_1.2_ultra.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.40_adaptive.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.40_draft.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.40_standard.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.40_ultra.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.50_adaptive.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.50_draft.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.50_standard.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.50_ultra.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.60_adaptive.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.60_draft.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.60_low.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.60_standard.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.60_ultra.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.80_adaptive.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.80_draft.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.80_low.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.80_standard.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.80_superlow.inst.cfg | 2 +- .../blocks/Printcore/HT/blocks_global_ht_0.80_ultra.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.20_adaptive.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.20_ultra.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.30_adaptive.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.30_standard.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.30_ultra.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.40_adaptive.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.40_draft.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.40_standard.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.40_ultra.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.50_adaptive.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.50_draft.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.50_standard.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.50_ultra.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.60_adaptive.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.60_draft.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.60_low.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.60_standard.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.60_ultra.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.80_adaptive.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.80_draft.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.80_low.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.80_standard.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.80_superlow.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_0.80_ultra.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.0_adaptive.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.0_draft.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.0_low.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.0_standard.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.0_superlow.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.0_ultra.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.2_adaptive.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.2_draft.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.2_low.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.2_standard.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.2_superlow.inst.cfg | 2 +- .../blocks/Printcore/ST/blocks_global_st_1.2_ultra.inst.cfg | 2 +- .../quality/builder_premium/bp_BVOH_Coarse_Quality.inst.cfg | 2 +- resources/quality/builder_premium/bp_BVOH_High_Quality.inst.cfg | 2 +- .../quality/builder_premium/bp_BVOH_Normal_Quality.inst.cfg | 2 +- .../builder_premium/bp_Innoflex60_Coarse_Quality.inst.cfg | 2 +- .../quality/builder_premium/bp_Innoflex60_High_Quality.inst.cfg | 2 +- .../builder_premium/bp_Innoflex60_Normal_Quality.inst.cfg | 2 +- .../quality/builder_premium/bp_PET_Coarse_Quality.inst.cfg | 2 +- resources/quality/builder_premium/bp_PET_High_Quality.inst.cfg | 2 +- .../quality/builder_premium/bp_PET_Normal_Quality.inst.cfg | 2 +- .../quality/builder_premium/bp_PLA_Coarse_Quality.inst.cfg | 2 +- resources/quality/builder_premium/bp_PLA_High_Quality.inst.cfg | 2 +- .../quality/builder_premium/bp_PLA_Normal_Quality.inst.cfg | 2 +- .../quality/builder_premium/bp_PVA_Coarse_Quality.inst.cfg | 2 +- resources/quality/builder_premium/bp_PVA_High_Quality.inst.cfg | 2 +- .../quality/builder_premium/bp_PVA_Normal_Quality.inst.cfg | 2 +- .../quality/builder_premium/bp_global_Coarse_Quality.inst.cfg | 2 +- .../quality/builder_premium/bp_global_High_Quality.inst.cfg | 2 +- .../quality/builder_premium/bp_global_Normal_Quality.inst.cfg | 2 +- resources/quality/cartesio/abs/cartesio_0.25_abs_high.inst.cfg | 2 +- .../quality/cartesio/abs/cartesio_0.25_abs_normal.inst.cfg | 2 +- resources/quality/cartesio/abs/cartesio_0.4_abs_high.inst.cfg | 2 +- resources/quality/cartesio/abs/cartesio_0.4_abs_normal.inst.cfg | 2 +- resources/quality/cartesio/abs/cartesio_0.8_abs_coarse.inst.cfg | 2 +- .../quality/cartesio/abs/cartesio_0.8_abs_extra_coarse.inst.cfg | 2 +- resources/quality/cartesio/abs/cartesio_0.8_abs_high.inst.cfg | 2 +- resources/quality/cartesio/abs/cartesio_0.8_abs_normal.inst.cfg | 2 +- .../cartesio/arnitel/cartesio_0.4_arnitel2045_high.inst.cfg | 2 +- .../cartesio/arnitel/cartesio_0.4_arnitel2045_normal.inst.cfg | 2 +- .../quality/cartesio/cartesio_global_Coarse_Quality.inst.cfg | 2 +- .../cartesio/cartesio_global_Extra_Coarse_Quality.inst.cfg | 2 +- .../quality/cartesio/cartesio_global_High_Quality.inst.cfg | 2 +- .../quality/cartesio/cartesio_global_Normal_Quality.inst.cfg | 2 +- .../quality/cartesio/hips/cartesio_0.25_hips_high.inst.cfg | 2 +- .../quality/cartesio/hips/cartesio_0.25_hips_normal.inst.cfg | 2 +- resources/quality/cartesio/hips/cartesio_0.4_hips_high.inst.cfg | 2 +- .../quality/cartesio/hips/cartesio_0.4_hips_normal.inst.cfg | 2 +- .../quality/cartesio/hips/cartesio_0.8_hips_coarse.inst.cfg | 2 +- .../cartesio/hips/cartesio_0.8_hips_extra_coarse.inst.cfg | 2 +- resources/quality/cartesio/hips/cartesio_0.8_hips_high.inst.cfg | 2 +- .../quality/cartesio/hips/cartesio_0.8_hips_normal.inst.cfg | 2 +- .../quality/cartesio/nylon/cartesio_0.25_nylon_high.inst.cfg | 2 +- .../quality/cartesio/nylon/cartesio_0.25_nylon_normal.inst.cfg | 2 +- .../quality/cartesio/nylon/cartesio_0.4_nylon_high.inst.cfg | 2 +- .../quality/cartesio/nylon/cartesio_0.4_nylon_normal.inst.cfg | 2 +- .../quality/cartesio/nylon/cartesio_0.8_nylon_coarse.inst.cfg | 2 +- .../cartesio/nylon/cartesio_0.8_nylon_extra_coarse.inst.cfg | 2 +- .../quality/cartesio/nylon/cartesio_0.8_nylon_high.inst.cfg | 2 +- .../quality/cartesio/nylon/cartesio_0.8_nylon_normal.inst.cfg | 2 +- resources/quality/cartesio/pc/cartesio_0.25_pc_high.inst.cfg | 2 +- resources/quality/cartesio/pc/cartesio_0.25_pc_normal.inst.cfg | 2 +- resources/quality/cartesio/pc/cartesio_0.4_pc_high.inst.cfg | 2 +- resources/quality/cartesio/pc/cartesio_0.4_pc_normal.inst.cfg | 2 +- resources/quality/cartesio/pc/cartesio_0.8_pc_coarse.inst.cfg | 2 +- .../quality/cartesio/pc/cartesio_0.8_pc_extra_coarse.inst.cfg | 2 +- resources/quality/cartesio/pc/cartesio_0.8_pc_high.inst.cfg | 2 +- resources/quality/cartesio/pc/cartesio_0.8_pc_normal.inst.cfg | 2 +- .../quality/cartesio/petg/cartesio_0.25_petg_high.inst.cfg | 2 +- .../quality/cartesio/petg/cartesio_0.25_petg_normal.inst.cfg | 2 +- resources/quality/cartesio/petg/cartesio_0.4_petg_high.inst.cfg | 2 +- .../quality/cartesio/petg/cartesio_0.4_petg_normal.inst.cfg | 2 +- .../quality/cartesio/petg/cartesio_0.8_petg_coarse.inst.cfg | 2 +- .../cartesio/petg/cartesio_0.8_petg_extra_coarse.inst.cfg | 2 +- resources/quality/cartesio/petg/cartesio_0.8_petg_high.inst.cfg | 2 +- .../quality/cartesio/petg/cartesio_0.8_petg_normal.inst.cfg | 2 +- resources/quality/cartesio/pla/cartesio_0.25_pla_high.inst.cfg | 2 +- .../quality/cartesio/pla/cartesio_0.25_pla_normal.inst.cfg | 2 +- resources/quality/cartesio/pla/cartesio_0.4_pla_high.inst.cfg | 2 +- resources/quality/cartesio/pla/cartesio_0.4_pla_normal.inst.cfg | 2 +- resources/quality/cartesio/pla/cartesio_0.8_pla_coarse.inst.cfg | 2 +- .../quality/cartesio/pla/cartesio_0.8_pla_extra_coarse.inst.cfg | 2 +- resources/quality/cartesio/pla/cartesio_0.8_pla_high.inst.cfg | 2 +- resources/quality/cartesio/pla/cartesio_0.8_pla_normal.inst.cfg | 2 +- resources/quality/cartesio/pva/cartesio_0.25_pva_high.inst.cfg | 2 +- .../quality/cartesio/pva/cartesio_0.25_pva_normal.inst.cfg | 2 +- resources/quality/cartesio/pva/cartesio_0.4_pva_high.inst.cfg | 2 +- resources/quality/cartesio/pva/cartesio_0.4_pva_normal.inst.cfg | 2 +- resources/quality/cartesio/pva/cartesio_0.8_pva_coarse.inst.cfg | 2 +- .../quality/cartesio/pva/cartesio_0.8_pva_extra_coarse.inst.cfg | 2 +- resources/quality/cartesio/pva/cartesio_0.8_pva_high.inst.cfg | 2 +- resources/quality/cartesio/pva/cartesio_0.8_pva_normal.inst.cfg | 2 +- resources/quality/coarse.inst.cfg | 2 +- .../crazy3dprint/abs/crazy3dprint_0.40_abs_coarse.inst.cfg | 2 +- .../crazy3dprint/abs/crazy3dprint_0.40_abs_draft.inst.cfg | 2 +- .../crazy3dprint/abs/crazy3dprint_0.40_abs_fine.inst.cfg | 2 +- .../crazy3dprint/abs/crazy3dprint_0.40_abs_normal.inst.cfg | 2 +- .../quality/crazy3dprint/crazy3dprint_global_0.10_fine.inst.cfg | 2 +- .../crazy3dprint/crazy3dprint_global_0.20_normal.inst.cfg | 2 +- .../crazy3dprint/crazy3dprint_global_0.30_draft.inst.cfg | 2 +- .../crazy3dprint/crazy3dprint_global_0.40_coarse.inst.cfg | 2 +- .../crazy3dprint/pla/crazy3dprint_0.40_pla_coarse.inst.cfg | 2 +- .../crazy3dprint/pla/crazy3dprint_0.40_pla_draft.inst.cfg | 2 +- .../crazy3dprint/pla/crazy3dprint_0.40_pla_fine.inst.cfg | 2 +- .../crazy3dprint/pla/crazy3dprint_0.40_pla_normal.inst.cfg | 2 +- resources/quality/creality/base/base_0.2_ABS_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.2_ABS_ultra.inst.cfg | 2 +- resources/quality/creality/base/base_0.2_PETG_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.2_PETG_ultra.inst.cfg | 2 +- resources/quality/creality/base/base_0.2_PLA_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.2_PLA_ultra.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_ABS_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_ABS_low.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_ABS_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_ABS_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_PETG_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_PETG_low.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_PETG_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_PETG_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_PLA_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_PLA_low.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_PLA_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_PLA_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_TPU_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_TPU_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.3_TPU_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_ABS_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_ABS_low.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_ABS_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_ABS_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_PETG_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_PETG_low.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_PETG_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_PETG_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_PLA_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_PLA_low.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_PLA_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_PLA_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_TPU_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_TPU_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.4_TPU_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_ABS_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_ABS_low.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_ABS_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_ABS_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_PETG_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_PETG_low.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_PETG_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_PETG_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_PLA_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_PLA_low.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_PLA_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_PLA_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_TPU_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_TPU_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.5_TPU_super.inst.cfg | 2 +- resources/quality/creality/base/base_0.6_ABS_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.6_PETG_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.6_PLA_draft.inst.cfg | 2 +- resources/quality/creality/base/base_0.6_PLA_low.inst.cfg | 2 +- resources/quality/creality/base/base_0.6_PLA_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.6_TPU_standard.inst.cfg | 2 +- resources/quality/creality/base/base_0.8_ABS_draft.inst.cfg | 2 +- resources/quality/creality/base/base_0.8_PETG_draft.inst.cfg | 2 +- resources/quality/creality/base/base_0.8_PLA_draft.inst.cfg | 2 +- resources/quality/creality/base/base_0.8_TPU_draft.inst.cfg | 2 +- resources/quality/creality/base/base_1.0_ABS_draft.inst.cfg | 2 +- resources/quality/creality/base/base_1.0_PETG_draft.inst.cfg | 2 +- resources/quality/creality/base/base_1.0_PLA_draft.inst.cfg | 2 +- resources/quality/creality/base/base_1.0_TPU_draft.inst.cfg | 2 +- resources/quality/creality/base/base_global_adaptive.inst.cfg | 2 +- resources/quality/creality/base/base_global_draft.inst.cfg | 2 +- resources/quality/creality/base/base_global_low.inst.cfg | 2 +- resources/quality/creality/base/base_global_standard.inst.cfg | 2 +- resources/quality/creality/base/base_global_super.inst.cfg | 2 +- resources/quality/creality/base/base_global_ultra.inst.cfg | 2 +- .../dagoma/dagoma_discoeasy200_bicolor_pla_fast.inst.cfg | 2 +- .../dagoma/dagoma_discoeasy200_bicolor_pla_fine.inst.cfg | 2 +- .../dagoma/dagoma_discoeasy200_bicolor_pla_standard.inst.cfg | 2 +- resources/quality/dagoma/dagoma_discoeasy200_pla_fast.inst.cfg | 2 +- resources/quality/dagoma/dagoma_discoeasy200_pla_fine.inst.cfg | 2 +- .../quality/dagoma/dagoma_discoeasy200_pla_standard.inst.cfg | 2 +- .../dagoma/dagoma_discoultimate_bicolor_pla_fast.inst.cfg | 2 +- .../dagoma/dagoma_discoultimate_bicolor_pla_fine.inst.cfg | 2 +- .../dagoma/dagoma_discoultimate_bicolor_pla_standard.inst.cfg | 2 +- resources/quality/dagoma/dagoma_discoultimate_pla_fast.inst.cfg | 2 +- resources/quality/dagoma/dagoma_discoultimate_pla_fine.inst.cfg | 2 +- .../quality/dagoma/dagoma_discoultimate_pla_standard.inst.cfg | 2 +- resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg | 2 +- resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg | 2 +- resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg | 2 +- resources/quality/dagoma/dagoma_neva_pla_fast.inst.cfg | 2 +- resources/quality/dagoma/dagoma_neva_pla_fine.inst.cfg | 2 +- resources/quality/dagoma/dagoma_neva_pla_standard.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.1.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.2.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.3.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.8.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.05.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.1.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.15.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.1.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.2.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.3.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.2.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.8.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.8.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_bowden_global_h0.05.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_bowden_global_h0.1.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_bowden_global_h0.15.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_bowden_global_h0.2.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_bowden_global_h0.3.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_bowden_global_h0.4.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_bowden_global_h0.6.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_bowden_global_h0.8.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.1.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.2.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.3.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.6.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_brass_0.4_pla_h0.1.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_brass_0.4_pla_h0.2.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_brass_0.4_pla_h0.3.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_brass_0.4_tpu_h0.2.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_brass_0.8_pla_h0.4.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_brass_0.8_pla_h0.6.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_brass_1.0_pla_h0.4.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_brass_1.0_pla_h0.6.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_brass_1.0_pla_h0.8.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_0.2_pla_h0.05.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_0.2_pla_h0.1.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_0.2_pla_h0.15.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_0.4_pla_h0.1.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_0.4_pla_h0.2.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_0.4_pla_h0.3.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_0.6_pla_h0.2.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_0.6_pla_h0.4.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_0.8_pla_h0.4.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_0.8_pla_h0.6.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_1.0_pla_h0.4.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_1.0_pla_h0.6.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_1.0_pla_h0.8.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_1.2_pla_h0.6.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_generic_1.2_pla_h0.8.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_global_h0.05.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_global_h0.1.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_global_h0.15.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_global_h0.2.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_global_h0.3.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_global_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_global_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_global_h0.8.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_steel_0.4_pla_h0.1.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_steel_0.4_pla_h0.2.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_steel_0.4_pla_h0.3.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_steel_0.8_pla_h0.4.inst.cfg | 2 +- .../dagoma_pro_430_directdrive_steel_0.8_pla_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.05.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.1.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.15.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.1.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.2.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.3.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.2.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.8.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.8.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_dual_global_h0.05.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_dual_global_h0.1.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_dual_global_h0.15.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_dual_global_h0.2.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_dual_global_h0.3.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_dual_global_h0.4.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_dual_global_h0.6.inst.cfg | 2 +- .../quality/dagoma/dagoma_pro_430_dual_global_h0.8.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.1.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.2.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.3.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.4.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.6inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.8.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_global_h0.1.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_global_h0.2.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_global_h0.3.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_global_h0.4.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_global_h0.6.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_global_h0.8.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_dual_global_h0.1.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_dual_global_h0.2.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_dual_global_h0.3.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_dual_global_h0.4.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_dual_global_h0.6.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.2.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg | 2 +- .../dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_pro_global_h0.1.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_pro_global_h0.2.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_pro_global_h0.3.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_pro_global_h0.4.inst.cfg | 2 +- resources/quality/dagoma/dagoma_sigma_pro_global_h0.6.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.2.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg | 2 +- .../quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_A.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_B.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_C.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_A.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_B.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_C.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_D.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_E.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_C.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_D.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_E.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_F.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_A.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_B.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_C.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_A.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_B.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_C.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_D.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_E.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_C.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_D.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_E.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_F.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_D.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_E.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_F.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_G.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_D.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_E.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_F.inst.cfg | 2 +- .../quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_G.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_A.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_B.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_C.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_D.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_E.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_C.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_D.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_E.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_F.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_A.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_B.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_C.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_D.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_E.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_C.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_D.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_E.inst.cfg | 2 +- .../quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_F.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_A.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_B.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_C.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_A.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_B.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_C.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_D.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_E.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_C.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_D.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_E.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_F.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_A.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_B.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_C.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_A.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_B.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_C.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_D.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_E.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_C.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_D.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_E.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_F.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_D.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_E.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_F.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_G.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_D.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_E.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_F.inst.cfg | 2 +- .../quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_G.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg | 2 +- .../quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg | 2 +- .../quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_B.inst.cfg | 2 +- .../quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_C.inst.cfg | 2 +- .../quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_D.inst.cfg | 2 +- .../quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_B.inst.cfg | 2 +- .../quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_C.inst.cfg | 2 +- .../quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_D.inst.cfg | 2 +- resources/quality/deltacomb/deltacomb_global_A.inst.cfg | 2 +- resources/quality/deltacomb/deltacomb_global_B.inst.cfg | 2 +- resources/quality/deltacomb/deltacomb_global_C.inst.cfg | 2 +- resources/quality/deltacomb/deltacomb_global_D.inst.cfg | 2 +- resources/quality/deltacomb/deltacomb_global_E.inst.cfg | 2 +- resources/quality/deltacomb/deltacomb_global_F.inst.cfg | 2 +- resources/quality/deltacomb/deltacomb_global_G.inst.cfg | 2 +- resources/quality/diy220/diy220_draft.inst.cfg | 2 +- resources/quality/diy220/diy220_fast.inst.cfg | 2 +- resources/quality/diy220/diy220_high.inst.cfg | 2 +- resources/quality/diy220/diy220_normal.inst.cfg | 2 +- resources/quality/draft.inst.cfg | 2 +- .../abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.30.inst.cfg | 2 +- resources/quality/elegoo/base/elegoo_layer_0.05.inst.cfg | 2 +- resources/quality/elegoo/base/elegoo_layer_0.10.inst.cfg | 2 +- resources/quality/elegoo/base/elegoo_layer_0.15.inst.cfg | 2 +- resources/quality/elegoo/base/elegoo_layer_0.20.inst.cfg | 2 +- resources/quality/elegoo/base/elegoo_layer_0.30.inst.cfg | 2 +- resources/quality/elegoo/base/elegoo_layer_0.40.inst.cfg | 2 +- resources/quality/elegoo/base/elegoo_layer_0.60.inst.cfg | 2 +- .../nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.05.inst.cfg | 2 +- .../pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.10.inst.cfg | 2 +- .../pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.40.inst.cfg | 2 +- .../pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg | 2 +- .../pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg | 2 +- .../tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../quality/elegoo/neptune_4/elegoo_n4_layer_0.05.inst.cfg | 2 +- .../quality/elegoo/neptune_4/elegoo_n4_layer_0.10.inst.cfg | 2 +- .../quality/elegoo/neptune_4/elegoo_n4_layer_0.15.inst.cfg | 2 +- .../quality/elegoo/neptune_4/elegoo_n4_layer_0.20.inst.cfg | 2 +- .../quality/elegoo/neptune_4/elegoo_n4_layer_0.30.inst.cfg | 2 +- .../quality/elegoo/neptune_4/elegoo_n4_layer_0.40.inst.cfg | 2 +- .../quality/elegoo/neptune_4/elegoo_n4_layer_0.60.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../quality/elegoo_neptune_2/elegoo_neptune_2_draft.inst.cfg | 2 +- .../quality/elegoo_neptune_2/elegoo_neptune_2_fine.inst.cfg | 2 +- .../quality/elegoo_neptune_2/elegoo_neptune_2_normal.inst.cfg | 2 +- .../quality/elegoo_neptune_2D/elegoo_neptune_2D_draft.inst.cfg | 2 +- .../quality/elegoo_neptune_2D/elegoo_neptune_2D_fine.inst.cfg | 2 +- .../quality/elegoo_neptune_2D/elegoo_neptune_2D_normal.inst.cfg | 2 +- resources/quality/eryone_er20/eryone_er20_draft.inst.cfg | 2 +- resources/quality/eryone_er20/eryone_er20_high.inst.cfg | 2 +- resources/quality/eryone_er20/eryone_er20_normal.inst.cfg | 2 +- .../quality/eryone_thinker/eryone_thinker_extra_fast.inst.cfg | 2 +- resources/quality/eryone_thinker/eryone_thinker_fast.inst.cfg | 2 +- resources/quality/eryone_thinker/eryone_thinker_fine.inst.cfg | 2 +- resources/quality/eryone_thinker/eryone_thinker_high.inst.cfg | 2 +- resources/quality/eryone_thinker/eryone_thinker_normal.inst.cfg | 2 +- resources/quality/extra_coarse.inst.cfg | 2 +- resources/quality/extra_fast.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_abs_fast.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_abs_high.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_abs_normal.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_nylon_fast.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_nylon_high.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_nylon_normal.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_pla_fast.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_pla_high.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_pla_normal.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_tpu_fast.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_tpu_high.inst.cfg | 2 +- resources/quality/fabtotum/fabtotum_tpu_normal.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg | 2 +- resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg | 2 +- resources/quality/fast.inst.cfg | 2 +- .../quality/flashforge/abs/flashforge_0.20_abs_super.inst.cfg | 2 +- .../quality/flashforge/abs/flashforge_0.20_abs_ultra.inst.cfg | 2 +- .../flashforge/abs/flashforge_0.30_abs_adaptive.inst.cfg | 2 +- .../flashforge/abs/flashforge_0.30_abs_standard.inst.cfg | 2 +- .../quality/flashforge/abs/flashforge_0.30_abs_super.inst.cfg | 2 +- .../flashforge/abs/flashforge_0.40_abs_adaptive.inst.cfg | 2 +- .../quality/flashforge/abs/flashforge_0.40_abs_draft.inst.cfg | 2 +- .../quality/flashforge/abs/flashforge_0.40_abs_low.inst.cfg | 2 +- .../flashforge/abs/flashforge_0.40_abs_standard.inst.cfg | 2 +- .../quality/flashforge/abs/flashforge_0.40_abs_super.inst.cfg | 2 +- .../flashforge/abs/flashforge_0.50_abs_adaptive.inst.cfg | 2 +- .../quality/flashforge/abs/flashforge_0.50_abs_coarse.inst.cfg | 2 +- .../quality/flashforge/abs/flashforge_0.50_abs_draft.inst.cfg | 2 +- .../quality/flashforge/abs/flashforge_0.50_abs_low.inst.cfg | 2 +- .../flashforge/abs/flashforge_0.50_abs_standard.inst.cfg | 2 +- .../quality/flashforge/abs/flashforge_0.60_abs_coarse.inst.cfg | 2 +- .../quality/flashforge/abs/flashforge_0.60_abs_draft.inst.cfg | 2 +- .../flashforge/abs/flashforge_0.60_abs_extra_coarse.inst.cfg | 2 +- .../flashforge/abs/flashforge_0.60_abs_standard.inst.cfg | 2 +- .../flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg | 2 +- .../abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg | 2 +- .../abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg | 2 +- .../flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg | 2 +- .../flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg | 2 +- .../abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg | 2 +- .../abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg | 2 +- .../abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg | 2 +- .../abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg | 2 +- .../flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg | 2 +- .../abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg | 2 +- .../flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg | 2 +- .../abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg | 2 +- .../abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg | 2 +- .../flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg | 2 +- .../flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg | 2 +- .../abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg | 2 +- .../abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg | 2 +- .../abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg | 2 +- .../abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg | 2 +- .../flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg | 2 +- .../abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg | 2 +- .../flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg | 2 +- .../flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg | 2 +- .../asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer3_draft.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer3_fast.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer3_fine.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer3_normal.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer3_vfast.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer3_vfine.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer4_draft.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer4_fast.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer4_fine.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer4_normal.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer4_vfast.inst.cfg | 2 +- .../quality/flashforge/flashforge_adventurer4_vfine.inst.cfg | 2 +- .../quality/flashforge/flashforge_global_0.08_ultra.inst.cfg | 2 +- .../quality/flashforge/flashforge_global_0.12_super.inst.cfg | 2 +- .../quality/flashforge/flashforge_global_0.16_adaptive.inst.cfg | 2 +- .../quality/flashforge/flashforge_global_0.20_standard.inst.cfg | 2 +- .../quality/flashforge/flashforge_global_0.28_low.inst.cfg | 2 +- .../quality/flashforge/flashforge_global_0.32_draft.inst.cfg | 2 +- .../quality/flashforge/flashforge_global_0.40_coarse.inst.cfg | 2 +- .../flashforge/flashforge_global_0.48_extra_coarse.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg | 2 +- .../flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg | 2 +- .../quality/flashforge/petg/flashforge_0.2_petg_super.inst.cfg | 2 +- .../quality/flashforge/petg/flashforge_0.2_petg_ultra.inst.cfg | 2 +- .../flashforge/petg/flashforge_0.30_petg_adaptive.inst.cfg | 2 +- .../flashforge/petg/flashforge_0.30_petg_standard.inst.cfg | 2 +- .../quality/flashforge/petg/flashforge_0.30_petg_super.inst.cfg | 2 +- .../flashforge/petg/flashforge_0.40_petg_adaptive.inst.cfg | 2 +- .../quality/flashforge/petg/flashforge_0.40_petg_draft.inst.cfg | 2 +- .../quality/flashforge/petg/flashforge_0.40_petg_low.inst.cfg | 2 +- .../flashforge/petg/flashforge_0.40_petg_standard.inst.cfg | 2 +- .../quality/flashforge/petg/flashforge_0.40_petg_super.inst.cfg | 2 +- .../flashforge/petg/flashforge_0.50_petg_adaptive.inst.cfg | 2 +- .../flashforge/petg/flashforge_0.50_petg_coarse.inst.cfg | 2 +- .../quality/flashforge/petg/flashforge_0.50_petg_draft.inst.cfg | 2 +- .../quality/flashforge/petg/flashforge_0.50_petg_low.inst.cfg | 2 +- .../flashforge/petg/flashforge_0.50_petg_standard.inst.cfg | 2 +- .../quality/flashforge/petg/flashforge_0.60_petg_draft.inst.cfg | 2 +- .../flashforge/petg/flashforge_0.60_petg_extra_coarse.inst.cfg | 2 +- .../flashforge/petg/flashforge_0.60_petg_standard.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg | 2 +- .../petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg | 2 +- .../petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg | 2 +- .../quality/flashforge/pla/flashforge_0.20_pla_super.inst.cfg | 2 +- .../quality/flashforge/pla/flashforge_0.20_pla_ultra.inst.cfg | 2 +- .../flashforge/pla/flashforge_0.30_pla_adaptive.inst.cfg | 2 +- .../flashforge/pla/flashforge_0.30_pla_standard.inst.cfg | 2 +- .../quality/flashforge/pla/flashforge_0.30_pla_super.inst.cfg | 2 +- .../flashforge/pla/flashforge_0.40_pla_adaptive.inst.cfg | 2 +- .../quality/flashforge/pla/flashforge_0.40_pla_draft.inst.cfg | 2 +- .../quality/flashforge/pla/flashforge_0.40_pla_low.inst.cfg | 2 +- .../flashforge/pla/flashforge_0.40_pla_standard.inst.cfg | 2 +- .../quality/flashforge/pla/flashforge_0.40_pla_super.inst.cfg | 2 +- .../flashforge/pla/flashforge_0.50_pla_adaptive.inst.cfg | 2 +- .../quality/flashforge/pla/flashforge_0.50_pla_coarse.inst.cfg | 2 +- .../quality/flashforge/pla/flashforge_0.50_pla_draft.inst.cfg | 2 +- .../quality/flashforge/pla/flashforge_0.50_pla_low.inst.cfg | 2 +- .../flashforge/pla/flashforge_0.50_pla_standard.inst.cfg | 2 +- .../quality/flashforge/pla/flashforge_0.60_pla_draft.inst.cfg | 2 +- .../flashforge/pla/flashforge_0.60_pla_extra Coarse.inst.cfg | 2 +- .../flashforge/pla/flashforge_0.60_pla_standard.inst.cfg | 2 +- .../flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg | 2 +- .../pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg | 2 +- .../pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg | 2 +- .../flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg | 2 +- .../flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg | 2 +- .../pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg | 2 +- .../pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg | 2 +- .../pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg | 2 +- .../pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg | 2 +- .../flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg | 2 +- .../pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg | 2 +- .../flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg | 2 +- .../pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg | 2 +- .../pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg | 2 +- .../flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg | 2 +- .../flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg | 2 +- .../pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg | 2 +- .../pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg | 2 +- .../pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg | 2 +- .../pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg | 2 +- .../flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg | 2 +- .../pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg | 2 +- .../flashforge/tpu/flashforge_0.40_tpu_adaptive.inst.cfg | 2 +- .../quality/flashforge/tpu/flashforge_0.40_tpu_draft.inst.cfg | 2 +- .../quality/flashforge/tpu/flashforge_0.40_tpu_low.inst.cfg | 2 +- .../flashforge/tpu/flashforge_0.40_tpu_standard.inst.cfg | 2 +- .../quality/flashforge/tpu/flashforge_0.40_tpu_super.inst.cfg | 2 +- .../flashforge/tpu/flashforge_0.50_tpu_adaptive.inst.cfg | 2 +- .../quality/flashforge/tpu/flashforge_0.50_tpu_draft.inst.cfg | 2 +- .../quality/flashforge/tpu/flashforge_0.50_tpu_low.inst.cfg | 2 +- .../flashforge/tpu/flashforge_0.50_tpu_standard.inst.cfg | 2 +- .../quality/flashforge/tpu/flashforge_0.60_tpu_draft.inst.cfg | 2 +- .../quality/flashforge/tpu/flashforge_0.60_tpu_low.inst.cfg | 2 +- .../flashforge/tpu/flashforge_0.60_tpu_standard.inst.cfg | 2 +- resources/quality/flsun_sr/flsun_sr_fine.inst.cfg | 2 +- resources/quality/flsun_sr/flsun_sr_normal.inst.cfg | 2 +- resources/quality/flsun_v400/flsun_v400_normal.inst.cfg | 2 +- .../quality/flyingbear/abs/flyingbear_0.25_abs_super.inst.cfg | 2 +- .../quality/flyingbear/abs/flyingbear_0.25_abs_ultra.inst.cfg | 2 +- .../flyingbear/abs/flyingbear_0.30_abs_adaptive.inst.cfg | 2 +- .../flyingbear/abs/flyingbear_0.30_abs_standard.inst.cfg | 2 +- .../quality/flyingbear/abs/flyingbear_0.30_abs_super.inst.cfg | 2 +- .../flyingbear/abs/flyingbear_0.40_abs_adaptive.inst.cfg | 2 +- .../quality/flyingbear/abs/flyingbear_0.40_abs_low.inst.cfg | 2 +- .../flyingbear/abs/flyingbear_0.40_abs_standard.inst.cfg | 2 +- .../quality/flyingbear/abs/flyingbear_0.40_abs_super.inst.cfg | 2 +- .../flyingbear/abs/flyingbear_0.50_abs_adaptive.inst.cfg | 2 +- .../quality/flyingbear/abs/flyingbear_0.50_abs_draft.inst.cfg | 2 +- .../quality/flyingbear/abs/flyingbear_0.50_abs_low.inst.cfg | 2 +- .../flyingbear/abs/flyingbear_0.50_abs_standard.inst.cfg | 2 +- .../quality/flyingbear/abs/flyingbear_0.60_abs_draft.inst.cfg | 2 +- .../quality/flyingbear/abs/flyingbear_0.60_abs_low.inst.cfg | 2 +- .../flyingbear/abs/flyingbear_0.60_abs_standard.inst.cfg | 2 +- .../quality/flyingbear/abs/flyingbear_0.80_abs_coarse.inst.cfg | 2 +- .../quality/flyingbear/abs/flyingbear_0.80_abs_draft.inst.cfg | 2 +- .../quality/flyingbear/flyingbear_global_0.08_ultra.inst.cfg | 2 +- .../quality/flyingbear/flyingbear_global_0.12_super.inst.cfg | 2 +- .../quality/flyingbear/flyingbear_global_0.16_adaptive.inst.cfg | 2 +- .../quality/flyingbear/flyingbear_global_0.20_standard.inst.cfg | 2 +- .../quality/flyingbear/flyingbear_global_0.28_low.inst.cfg | 2 +- .../quality/flyingbear/flyingbear_global_0.32_draft.inst.cfg | 2 +- .../quality/flyingbear/flyingbear_global_0.40_coarse.inst.cfg | 2 +- .../quality/flyingbear/hips/flyingbear_0.25_hips_super.inst.cfg | 2 +- .../quality/flyingbear/hips/flyingbear_0.25_hips_ultra.inst.cfg | 2 +- .../flyingbear/hips/flyingbear_0.30_hips_adaptive.inst.cfg | 2 +- .../flyingbear/hips/flyingbear_0.30_hips_standard.inst.cfg | 2 +- .../quality/flyingbear/hips/flyingbear_0.30_hips_super.inst.cfg | 2 +- .../flyingbear/hips/flyingbear_0.40_hips_adaptive.inst.cfg | 2 +- .../quality/flyingbear/hips/flyingbear_0.40_hips_low.inst.cfg | 2 +- .../flyingbear/hips/flyingbear_0.40_hips_standard.inst.cfg | 2 +- .../quality/flyingbear/hips/flyingbear_0.40_hips_super.inst.cfg | 2 +- .../flyingbear/hips/flyingbear_0.50_hips_adaptive.inst.cfg | 2 +- .../quality/flyingbear/hips/flyingbear_0.50_hips_draft.inst.cfg | 2 +- .../quality/flyingbear/hips/flyingbear_0.50_hips_low.inst.cfg | 2 +- .../flyingbear/hips/flyingbear_0.50_hips_standard.inst.cfg | 2 +- .../quality/flyingbear/hips/flyingbear_0.60_hips_draft.inst.cfg | 2 +- .../quality/flyingbear/hips/flyingbear_0.60_hips_low.inst.cfg | 2 +- .../flyingbear/hips/flyingbear_0.60_hips_standard.inst.cfg | 2 +- .../flyingbear/hips/flyingbear_0.80_hips_coarse.inst.cfg | 2 +- .../quality/flyingbear/hips/flyingbear_0.80_hips_draft.inst.cfg | 2 +- .../quality/flyingbear/petg/flyingbear_0.25_petg_super.inst.cfg | 2 +- .../quality/flyingbear/petg/flyingbear_0.25_petg_ultra.inst.cfg | 2 +- .../flyingbear/petg/flyingbear_0.30_petg_adaptive.inst.cfg | 2 +- .../flyingbear/petg/flyingbear_0.30_petg_standard.inst.cfg | 2 +- .../quality/flyingbear/petg/flyingbear_0.30_petg_super.inst.cfg | 2 +- .../flyingbear/petg/flyingbear_0.40_petg_adaptive.inst.cfg | 2 +- .../quality/flyingbear/petg/flyingbear_0.40_petg_low.inst.cfg | 2 +- .../flyingbear/petg/flyingbear_0.40_petg_standard.inst.cfg | 2 +- .../quality/flyingbear/petg/flyingbear_0.40_petg_super.inst.cfg | 2 +- .../flyingbear/petg/flyingbear_0.50_petg_adaptive.inst.cfg | 2 +- .../quality/flyingbear/petg/flyingbear_0.50_petg_draft.inst.cfg | 2 +- .../quality/flyingbear/petg/flyingbear_0.50_petg_low.inst.cfg | 2 +- .../flyingbear/petg/flyingbear_0.50_petg_standard.inst.cfg | 2 +- .../quality/flyingbear/petg/flyingbear_0.60_petg_draft.inst.cfg | 2 +- .../quality/flyingbear/petg/flyingbear_0.60_petg_low.inst.cfg | 2 +- .../flyingbear/petg/flyingbear_0.60_petg_standard.inst.cfg | 2 +- .../flyingbear/petg/flyingbear_0.80_petg_coarse.inst.cfg | 2 +- .../quality/flyingbear/petg/flyingbear_0.80_petg_draft.inst.cfg | 2 +- .../quality/flyingbear/pla/flyingbear_0.25_pla_super.inst.cfg | 2 +- .../quality/flyingbear/pla/flyingbear_0.25_pla_ultra.inst.cfg | 2 +- .../flyingbear/pla/flyingbear_0.30_pla_adaptive.inst.cfg | 2 +- .../flyingbear/pla/flyingbear_0.30_pla_standard.inst.cfg | 2 +- .../quality/flyingbear/pla/flyingbear_0.30_pla_super.inst.cfg | 2 +- .../flyingbear/pla/flyingbear_0.40_pla_adaptive.inst.cfg | 2 +- .../quality/flyingbear/pla/flyingbear_0.40_pla_low.inst.cfg | 2 +- .../flyingbear/pla/flyingbear_0.40_pla_standard.inst.cfg | 2 +- .../quality/flyingbear/pla/flyingbear_0.40_pla_super.inst.cfg | 2 +- .../flyingbear/pla/flyingbear_0.50_pla_adaptive.inst.cfg | 2 +- .../quality/flyingbear/pla/flyingbear_0.50_pla_draft.inst.cfg | 2 +- .../quality/flyingbear/pla/flyingbear_0.50_pla_low.inst.cfg | 2 +- .../flyingbear/pla/flyingbear_0.50_pla_standard.inst.cfg | 2 +- .../quality/flyingbear/pla/flyingbear_0.60_pla_draft.inst.cfg | 2 +- .../quality/flyingbear/pla/flyingbear_0.60_pla_low.inst.cfg | 2 +- .../flyingbear/pla/flyingbear_0.60_pla_standard.inst.cfg | 2 +- .../quality/flyingbear/pla/flyingbear_0.80_pla_coarse.inst.cfg | 2 +- .../quality/flyingbear/pla/flyingbear_0.80_pla_draft.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.25_plapro_super.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.25_plapro_ultra.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.30_plapro_adaptive.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.30_plapro_standard.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.30_plapro_super.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.40_plapro_adaptive.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.40_plapro_low.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.40_plapro_standard.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.40_plapro_super.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.50_plapro_adaptive.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.50_plapro_draft.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.50_plapro_low.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.50_plapro_standard.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.60_plapro_draft.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.60_plapro_low.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.60_plapro_standard.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.80_plapro_coarse.inst.cfg | 2 +- .../flyingbear/plapro/flyingbear_0.80_plapro_draft.inst.cfg | 2 +- .../flyingbear/tpu/flyingbear_0.40_tpu_adaptive.inst.cfg | 2 +- .../quality/flyingbear/tpu/flyingbear_0.40_tpu_low.inst.cfg | 2 +- .../flyingbear/tpu/flyingbear_0.40_tpu_standard.inst.cfg | 2 +- .../quality/flyingbear/tpu/flyingbear_0.40_tpu_super.inst.cfg | 2 +- .../flyingbear/tpu/flyingbear_0.50_tpu_adaptive.inst.cfg | 2 +- .../quality/flyingbear/tpu/flyingbear_0.50_tpu_draft.inst.cfg | 2 +- .../quality/flyingbear/tpu/flyingbear_0.50_tpu_low.inst.cfg | 2 +- .../flyingbear/tpu/flyingbear_0.50_tpu_standard.inst.cfg | 2 +- .../quality/flyingbear/tpu/flyingbear_0.60_tpu_draft.inst.cfg | 2 +- .../quality/flyingbear/tpu/flyingbear_0.60_tpu_low.inst.cfg | 2 +- .../flyingbear/tpu/flyingbear_0.60_tpu_standard.inst.cfg | 2 +- .../quality/flyingbear/tpu/flyingbear_0.80_tpu_coarse.inst.cfg | 2 +- .../quality/flyingbear/tpu/flyingbear_0.80_tpu_draft.inst.cfg | 2 +- resources/quality/fusedform/base/base_PVA_draft.inst.cfg | 2 +- resources/quality/fusedform/base/base_PVA_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_PVA_normal.inst.cfg | 2 +- resources/quality/fusedform/base/base_abs_draft.inst.cfg | 2 +- resources/quality/fusedform/base/base_abs_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_abs_normal.inst.cfg | 2 +- resources/quality/fusedform/base/base_abs_ultra_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_draft.inst.cfg | 2 +- resources/quality/fusedform/base/base_flex_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_flex_normal.inst.cfg | 2 +- resources/quality/fusedform/base/base_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_hips_draft.inst.cfg | 2 +- resources/quality/fusedform/base/base_hips_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_hips_normal.inst.cfg | 2 +- resources/quality/fusedform/base/base_hips_ultra_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_normal.inst.cfg | 2 +- resources/quality/fusedform/base/base_nylon_draft.inst.cfg | 2 +- resources/quality/fusedform/base/base_nylon_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_nylon_normal.inst.cfg | 2 +- resources/quality/fusedform/base/base_nylon_ultra_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_petg_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_petg_normal.inst.cfg | 2 +- resources/quality/fusedform/base/base_pla_draft.inst.cfg | 2 +- resources/quality/fusedform/base/base_pla_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_pla_normal.inst.cfg | 2 +- resources/quality/fusedform/base/base_pla_ultra_high.inst.cfg | 2 +- resources/quality/fusedform/base/base_ultra_high.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_ABS_fine.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_ABS_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_ABS_normal.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_ASA_fine.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_ASA_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_ASA_normal.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_CPE_normal.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_PA_normal.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_PC_normal.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_PETG_normal.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_PLA_fine.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_PLA_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_PLA_normal.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.4_TPU_normal.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.6_ABS_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.6_ABS_low.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.6_ASA_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.6_ASA_low.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.6_CPE_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.6_PA_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.6_PC_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.6_PETG_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.6_PLA_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.6_PLA_low.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.6_TPU_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.8_ABS_rapid.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.8_ABS_rough.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.8_ASA_rapid.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.8_ASA_rough.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.8_CPE_rapid.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.8_PA_rapid.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.8_PC_rapid.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.8_PETG_rapid.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.8_PLA_rapid.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.8_PLA_rough.inst.cfg | 2 +- resources/quality/fusion3/fusion3_0.8_TPU_rapid.inst.cfg | 2 +- resources/quality/fusion3/fusion3_global_fine.inst.cfg | 2 +- resources/quality/fusion3/fusion3_global_good.inst.cfg | 2 +- resources/quality/fusion3/fusion3_global_low.inst.cfg | 2 +- resources/quality/fusion3/fusion3_global_normal.inst.cfg | 2 +- resources/quality/fusion3/fusion3_global_rapid.inst.cfg | 2 +- resources/quality/fusion3/fusion3_global_rough.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.2_ABS_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.2_ABS_ultra.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.2_PETG_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.2_PETG_ultra.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.2_PLA_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.2_PLA_ultra.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_ABS_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_ABS_low.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_ABS_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_ABS_super.inst.cfg | 2 +- .../geeetech_quality_0.3_PETG_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_PETG_low.inst.cfg | 2 +- .../geeetech_quality_0.3_PETG_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_PETG_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_PLA_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_PLA_low.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_PLA_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_PLA_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_TPU_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_TPU_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.3_TPU_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_ABS_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_ABS_low.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_ABS_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_ABS_super.inst.cfg | 2 +- .../geeetech_quality_0.4_PETG_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_PETG_low.inst.cfg | 2 +- .../geeetech_quality_0.4_PETG_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_PETG_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_PLA_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_PLA_low.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_PLA_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_PLA_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_TPU_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_TPU_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.4_TPU_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_ABS_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_ABS_low.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_ABS_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_ABS_super.inst.cfg | 2 +- .../geeetech_quality_0.5_PETG_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_PETG_low.inst.cfg | 2 +- .../geeetech_quality_0.5_PETG_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_PETG_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_PLA_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_PLA_low.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_PLA_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_PLA_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_TPU_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_TPU_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.5_TPU_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.6_ABS_standard.inst.cfg | 2 +- .../geeetech_quality_0.6_PETG_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.6_PLA_draft.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.6_PLA_low.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.6_PLA_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.6_TPU_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.8_ABS_draft.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.8_PETG_draft.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.8_PLA_draft.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_0.8_TPU_draft.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_1.0_ABS_draft.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_1.0_PETG_draft.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_1.0_PLA_draft.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_1.0_TPU_draft.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_global_adaptive.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_global_draft.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_global_low.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_global_standard.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_global_super.inst.cfg | 2 +- .../geeetech_quality/geeetech_quality_global_ultra.inst.cfg | 2 +- .../quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg | 2 +- .../quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg | 2 +- .../quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg | 2 +- .../gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg | 2 +- resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg | 2 +- resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg | 2 +- resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg | 2 +- .../quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg | 2 +- resources/quality/goofoo/abs/goofoo_far_0.2_abs_fine.inst.cfg | 2 +- .../quality/goofoo/abs/goofoo_far_0.2_abs_standard.inst.cfg | 2 +- resources/quality/goofoo/abs/goofoo_far_0.40_abs_fine.inst.cfg | 2 +- .../quality/goofoo/abs/goofoo_far_0.40_abs_standard.inst.cfg | 2 +- resources/quality/goofoo/abs/goofoo_far_0.6_abs_fine.inst.cfg | 2 +- .../quality/goofoo/abs/goofoo_far_0.6_abs_standard.inst.cfg | 2 +- resources/quality/goofoo/abs/goofoo_far_0.8_abs_fine.inst.cfg | 2 +- .../quality/goofoo/abs/goofoo_far_0.8_abs_standard.inst.cfg | 2 +- resources/quality/goofoo/abs/goofoo_far_1.0_abs_fine.inst.cfg | 2 +- .../quality/goofoo/abs/goofoo_far_1.0_abs_standard.inst.cfg | 2 +- resources/quality/goofoo/abs/goofoo_near_0.2_abs_fine.inst.cfg | 2 +- .../quality/goofoo/abs/goofoo_near_0.2_abs_standard.inst.cfg | 2 +- resources/quality/goofoo/abs/goofoo_near_0.40_abs_fine.inst.cfg | 2 +- .../quality/goofoo/abs/goofoo_near_0.40_abs_standard.inst.cfg | 2 +- resources/quality/goofoo/abs/goofoo_near_0.6_abs_fine.inst.cfg | 2 +- .../quality/goofoo/abs/goofoo_near_0.6_abs_standard.inst.cfg | 2 +- resources/quality/goofoo/abs/goofoo_near_0.8_abs_fine.inst.cfg | 2 +- .../quality/goofoo/abs/goofoo_near_0.8_abs_standard.inst.cfg | 2 +- resources/quality/goofoo/abs/goofoo_near_1.0_abs_fine.inst.cfg | 2 +- .../quality/goofoo/abs/goofoo_near_1.0_abs_standard.inst.cfg | 2 +- resources/quality/goofoo/asa/goofoo_far_0.2_asa_fine.inst.cfg | 2 +- .../quality/goofoo/asa/goofoo_far_0.2_asa_standard.inst.cfg | 2 +- resources/quality/goofoo/asa/goofoo_far_0.40_asa_fine.inst.cfg | 2 +- .../quality/goofoo/asa/goofoo_far_0.40_asa_standard.inst.cfg | 2 +- resources/quality/goofoo/asa/goofoo_far_0.6_asa_fine.inst.cfg | 2 +- .../quality/goofoo/asa/goofoo_far_0.6_asa_standard.inst.cfg | 2 +- resources/quality/goofoo/asa/goofoo_far_0.8_asa_fine.inst.cfg | 2 +- .../quality/goofoo/asa/goofoo_far_0.8_asa_standard.inst.cfg | 2 +- resources/quality/goofoo/asa/goofoo_far_1.0_asa_fine.inst.cfg | 2 +- .../quality/goofoo/asa/goofoo_far_1.0_asa_standard.inst.cfg | 2 +- resources/quality/goofoo/asa/goofoo_near_0.2_asa_fine.inst.cfg | 2 +- .../quality/goofoo/asa/goofoo_near_0.2_asa_standard.inst.cfg | 2 +- resources/quality/goofoo/asa/goofoo_near_0.40_asa_fine.inst.cfg | 2 +- .../quality/goofoo/asa/goofoo_near_0.40_asa_standard.inst.cfg | 2 +- resources/quality/goofoo/asa/goofoo_near_0.6_asa_fine.inst.cfg | 2 +- .../quality/goofoo/asa/goofoo_near_0.6_asa_standard.inst.cfg | 2 +- resources/quality/goofoo/asa/goofoo_near_0.8_asa_fine.inst.cfg | 2 +- .../quality/goofoo/asa/goofoo_near_0.8_asa_standard.inst.cfg | 2 +- resources/quality/goofoo/asa/goofoo_near_1.0_asa_fine.inst.cfg | 2 +- .../quality/goofoo/asa/goofoo_near_1.0_asa_standard.inst.cfg | 2 +- resources/quality/goofoo/goofoo_far_global_0.15_fine.inst.cfg | 2 +- resources/quality/goofoo/goofoo_far_global_0.1_efine.inst.cfg | 2 +- .../quality/goofoo/goofoo_far_global_0.20_standard.inst.cfg | 2 +- resources/quality/goofoo/goofoo_far_global_0.3_draft.inst.cfg | 2 +- resources/quality/goofoo/goofoo_near_global_0.15_fine.inst.cfg | 2 +- resources/quality/goofoo/goofoo_near_global_0.1_efine.inst.cfg | 2 +- .../quality/goofoo/goofoo_near_global_0.20_standard.inst.cfg | 2 +- resources/quality/goofoo/goofoo_near_global_0.3_draft.inst.cfg | 2 +- resources/quality/goofoo/goofoo_open_global_0.15_fine.inst.cfg | 2 +- resources/quality/goofoo/goofoo_open_global_0.1_efine.inst.cfg | 2 +- .../quality/goofoo/goofoo_open_global_0.20_standard.inst.cfg | 2 +- resources/quality/goofoo/goofoo_open_global_0.3_draft.inst.cfg | 2 +- resources/quality/goofoo/goofoo_small_global_0.15_fine.inst.cfg | 2 +- resources/quality/goofoo/goofoo_small_global_0.1_efine.inst.cfg | 2 +- .../quality/goofoo/goofoo_small_global_0.20_standard.inst.cfg | 2 +- resources/quality/goofoo/goofoo_small_global_0.3_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.2_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.2_hips_efine.inst.cfg | 2 +- resources/quality/goofoo/hips/goofoo_far_0.2_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.2_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.40_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.40_hips_efine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.40_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.40_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.6_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.6_hips_efine.inst.cfg | 2 +- resources/quality/goofoo/hips/goofoo_far_0.6_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.6_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.8_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.8_hips_efine.inst.cfg | 2 +- resources/quality/goofoo/hips/goofoo_far_0.8_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_0.8_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_1.0_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_1.0_hips_efine.inst.cfg | 2 +- resources/quality/goofoo/hips/goofoo_far_1.0_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_far_1.0_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.2_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.2_hips_efine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.2_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.2_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.40_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.40_hips_efine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.40_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.40_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.6_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.6_hips_efine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.6_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.6_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.8_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.8_hips_efine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.8_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_0.8_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_1.0_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_1.0_hips_efine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_1.0_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_near_1.0_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.2_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.2_hips_efine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.2_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.2_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.40_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.40_hips_efine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.40_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.40_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.6_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.6_hips_efine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.6_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.6_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.8_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.8_hips_efine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.8_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_0.8_hips_standard.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_1.0_hips_draft.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_1.0_hips_efine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_1.0_hips_fine.inst.cfg | 2 +- .../quality/goofoo/hips/goofoo_open_1.0_hips_standard.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_far_0.2_pa_fine.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_far_0.2_pa_standard.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_far_0.40_pa_fine.inst.cfg | 2 +- .../quality/goofoo/pa/goofoo_far_0.40_pa_standard.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_far_0.6_pa_fine.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_far_0.6_pa_standard.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_far_0.8_pa_fine.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_far_0.8_pa_standard.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_far_1.0_pa_fine.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_far_1.0_pa_standard.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_near_0.2_pa_fine.inst.cfg | 2 +- .../quality/goofoo/pa/goofoo_near_0.2_pa_standard.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_near_0.40_pa_fine.inst.cfg | 2 +- .../quality/goofoo/pa/goofoo_near_0.40_pa_standard.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_near_0.6_pa_fine.inst.cfg | 2 +- .../quality/goofoo/pa/goofoo_near_0.6_pa_standard.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_near_0.8_pa_fine.inst.cfg | 2 +- .../quality/goofoo/pa/goofoo_near_0.8_pa_standard.inst.cfg | 2 +- resources/quality/goofoo/pa/goofoo_near_1.0_pa_fine.inst.cfg | 2 +- .../quality/goofoo/pa/goofoo_near_1.0_pa_standard.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_fine.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_standard.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg | 2 +- .../goofoo/pa_cf/goofoo_far_0.40_pa_cf_standard.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_fine.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_standard.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_fine.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_standard.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_fine.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_standard.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_fine.inst.cfg | 2 +- .../goofoo/pa_cf/goofoo_near_0.2_pa_cf_standard.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_fine.inst.cfg | 2 +- .../goofoo/pa_cf/goofoo_near_0.40_pa_cf_standard.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_fine.inst.cfg | 2 +- .../goofoo/pa_cf/goofoo_near_0.6_pa_cf_standard.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_fine.inst.cfg | 2 +- .../goofoo/pa_cf/goofoo_near_0.8_pa_cf_standard.inst.cfg | 2 +- .../quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_fine.inst.cfg | 2 +- .../goofoo/pa_cf/goofoo_near_1.0_pa_cf_standard.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.2_pc_draft.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.2_pc_efine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.2_pc_fine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.2_pc_standard.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.40_pc_draft.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.40_pc_efine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.40_pc_fine.inst.cfg | 2 +- .../quality/goofoo/pc/goofoo_far_0.40_pc_standard.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.6_pc_draft.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.6_pc_efine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.6_pc_fine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.6_pc_standard.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.8_pc_draft.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.8_pc_efine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.8_pc_fine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_0.8_pc_standard.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_1.0_pc_draft.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_1.0_pc_efine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_1.0_pc_fine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_far_1.0_pc_standard.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.2_pc_draft.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.2_pc_efine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.2_pc_fine.inst.cfg | 2 +- .../quality/goofoo/pc/goofoo_near_0.2_pc_standard.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.40_pc_draft.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.40_pc_efine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.40_pc_fine.inst.cfg | 2 +- .../quality/goofoo/pc/goofoo_near_0.40_pc_standard.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.6_pc_draft.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.6_pc_efine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.6_pc_fine.inst.cfg | 2 +- .../quality/goofoo/pc/goofoo_near_0.6_pc_standard.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.8_pc_draft.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.8_pc_efine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_0.8_pc_fine.inst.cfg | 2 +- .../quality/goofoo/pc/goofoo_near_0.8_pc_standard.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_1.0_pc_draft.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_1.0_pc_efine.inst.cfg | 2 +- resources/quality/goofoo/pc/goofoo_near_1.0_pc_fine.inst.cfg | 2 +- .../quality/goofoo/pc/goofoo_near_1.0_pc_standard.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.2_peek_draft.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.2_peek_efine.inst.cfg | 2 +- resources/quality/goofoo/peek/goofoo_far_0.2_peek_fine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.2_peek_standard.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.40_peek_draft.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.40_peek_efine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.40_peek_fine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.40_peek_standard.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.6_peek_draft.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.6_peek_efine.inst.cfg | 2 +- resources/quality/goofoo/peek/goofoo_far_0.6_peek_fine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.6_peek_standard.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.8_peek_draft.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.8_peek_efine.inst.cfg | 2 +- resources/quality/goofoo/peek/goofoo_far_0.8_peek_fine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_0.8_peek_standard.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_1.0_peek_draft.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_1.0_peek_efine.inst.cfg | 2 +- resources/quality/goofoo/peek/goofoo_far_1.0_peek_fine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_far_1.0_peek_standard.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.2_peek_draft.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.2_peek_efine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.2_peek_fine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.2_peek_standard.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.40_peek_draft.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.40_peek_efine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.40_peek_fine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.40_peek_standard.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.6_peek_draft.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.6_peek_efine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.6_peek_fine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.6_peek_standard.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.8_peek_draft.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.8_peek_efine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.8_peek_fine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_0.8_peek_standard.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_1.0_peek_draft.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_1.0_peek_efine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_1.0_peek_fine.inst.cfg | 2 +- .../quality/goofoo/peek/goofoo_near_1.0_peek_standard.inst.cfg | 2 +- resources/quality/goofoo/petg/goofoo_far_0.2_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_far_0.2_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_far_0.40_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_far_0.40_petg_standard.inst.cfg | 2 +- resources/quality/goofoo/petg/goofoo_far_0.6_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_far_0.6_petg_standard.inst.cfg | 2 +- resources/quality/goofoo/petg/goofoo_far_0.8_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_far_0.8_petg_standard.inst.cfg | 2 +- resources/quality/goofoo/petg/goofoo_far_1.0_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_far_1.0_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_near_0.2_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_near_0.2_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_near_0.40_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_near_0.40_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_near_0.6_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_near_0.6_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_near_0.8_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_near_0.8_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_near_1.0_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_near_1.0_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_open_0.2_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_open_0.2_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_open_0.40_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_open_0.40_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_open_0.6_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_open_0.6_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_open_0.8_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_open_0.8_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_open_1.0_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_open_1.0_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_small_0.2_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_small_0.2_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_small_0.40_petg_fine.inst.cfg | 2 +- .../goofoo/petg/goofoo_small_0.40_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_small_0.6_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_small_0.6_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_small_0.8_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_small_0.8_petg_standard.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_small_1.0_petg_fine.inst.cfg | 2 +- .../quality/goofoo/petg/goofoo_small_1.0_petg_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.2_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.2_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.2_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_0.2_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.40_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.40_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.40_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_0.40_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.6_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.6_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.6_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_0.6_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.8_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.8_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_0.8_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_0.8_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_1.0_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_1.0_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_far_1.0_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_1.0_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_0.2_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_0.2_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_bronze_0.2_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_bronze_0.40_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_bronze_0.40_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_bronze_0.40_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_0.6_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_0.6_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_bronze_0.6_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_0.8_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_0.8_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_bronze_0.8_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_1.0_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_1.0_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_bronze_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_bronze_1.0_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.2_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.2_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_emarble_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.2_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.40_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.40_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.40_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.6_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.6_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_emarble_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.6_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.8_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.8_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_emarble_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_0.8_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_1.0_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_1.0_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_emarble_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_emarble_1.0_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.2_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.2_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_esilk_0.2_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.40_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.40_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_esilk_0.40_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.6_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.6_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_esilk_0.6_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.8_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.8_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_esilk_0.8_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_1.0_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_1.0_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_esilk_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_esilk_1.0_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.2_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.2_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_wood_0.2_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.40_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.40_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_wood_0.40_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.6_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.6_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_wood_0.6_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.8_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.8_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_wood_0.8_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_1.0_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_1.0_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_far_wood_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_far_wood_1.0_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_0.2_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_0.2_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_0.2_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_0.2_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_0.40_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_0.40_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_0.40_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_0.40_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_0.6_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_0.6_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_0.6_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_0.6_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_0.8_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_0.8_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_0.8_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_0.8_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_1.0_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_1.0_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_near_1.0_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_1.0_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.2_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.2_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_bronze_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.2_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.40_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.40_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.40_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.6_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.6_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_bronze_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.6_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.8_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.8_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_bronze_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_0.8_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_1.0_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_1.0_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_bronze_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_bronze_1.0_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.2_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.2_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.2_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.40_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.40_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.40_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.6_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.6_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.6_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.8_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.8_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_0.8_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_1.0_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_1.0_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_emarble_1.0_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_0.2_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_0.2_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_esilk_0.2_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_esilk_0.40_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_esilk_0.40_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_esilk_0.40_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_0.6_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_0.6_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_esilk_0.6_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_0.8_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_0.8_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_esilk_0.8_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_1.0_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_1.0_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_esilk_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_esilk_1.0_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.2_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.2_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_wood_0.2_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.40_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.40_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_wood_0.40_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.6_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.6_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_wood_0.6_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.8_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.8_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_wood_0.8_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_1.0_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_1.0_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_near_wood_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_near_wood_1.0_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_0.2_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_0.2_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_0.2_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_0.2_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_0.40_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_0.40_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_0.40_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_0.40_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_0.6_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_0.6_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_0.6_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_0.6_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_0.8_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_0.8_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_0.8_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_0.8_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_1.0_pla_draft.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_1.0_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_open_1.0_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_1.0_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.2_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.2_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.2_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.40_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.40_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.40_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.6_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.6_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.6_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.8_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.8_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_0.8_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_1.0_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_1.0_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_emarble_1.0_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_0.2_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_0.2_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_esilk_0.2_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_esilk_0.40_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_esilk_0.40_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_esilk_0.40_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_0.6_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_0.6_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_esilk_0.6_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_0.8_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_0.8_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_esilk_0.8_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_1.0_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_1.0_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_esilk_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_esilk_1.0_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.2_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.2_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_wood_0.2_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.40_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.40_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_wood_0.40_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.6_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.6_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_wood_0.6_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.8_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.8_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_wood_0.8_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_1.0_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_1.0_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_open_wood_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_open_wood_1.0_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.2_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.2_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_small_0.2_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.2_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.40_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.40_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.40_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.40_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.6_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.6_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_small_0.6_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.6_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.70_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.8_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.8_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_small_0.8_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_0.8_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_1.0_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_1.0_pla_efine.inst.cfg | 2 +- resources/quality/goofoo/pla/goofoo_small_1.0_pla_fine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_1.0_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.2_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.2_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.2_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.40_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.40_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.40_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.6_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.6_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.6_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.8_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.8_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_0.8_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_1.0_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_1.0_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_emarble_1.0_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.2_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.2_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_esilk_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.2_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.40_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.40_pla_efine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.40_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.6_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.6_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_esilk_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.6_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.8_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.8_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_esilk_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_0.8_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_1.0_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_1.0_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_esilk_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_esilk_1.0_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_0.2_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_0.2_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_0.2_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_wood_0.2_pla_standard.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_wood_0.40_pla_draft.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_wood_0.40_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_0.40_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_wood_0.40_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_0.6_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_0.6_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_0.6_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_wood_0.6_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_0.8_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_0.8_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_0.8_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_wood_0.8_pla_standard.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_1.0_pla_draft.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_1.0_pla_efine.inst.cfg | 2 +- .../quality/goofoo/pla/goofoo_small_wood_1.0_pla_fine.inst.cfg | 2 +- .../goofoo/pla/goofoo_small_wood_1.0_pla_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.2_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.2_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.2_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_far_0.2_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.40_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.40_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.40_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_far_0.40_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.6_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.6_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.6_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_far_0.6_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.8_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.8_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_0.8_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_far_0.8_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_1.0_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_1.0_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_far_1.0_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_far_1.0_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_0.2_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_0.2_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_0.2_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_near_0.2_pva_standard.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_near_0.40_pva_draft.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_near_0.40_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_0.40_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_near_0.40_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_0.6_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_0.6_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_0.6_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_near_0.6_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_0.8_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_0.8_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_0.8_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_near_0.8_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_1.0_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_1.0_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_near_1.0_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_near_1.0_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_0.2_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_0.2_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_0.2_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_open_0.2_pva_standard.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_open_0.40_pva_draft.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_open_0.40_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_0.40_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_open_0.40_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_0.6_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_0.6_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_0.6_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_open_0.6_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_0.8_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_0.8_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_0.8_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_open_0.8_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_1.0_pva_draft.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_1.0_pva_efine.inst.cfg | 2 +- resources/quality/goofoo/pva/goofoo_open_1.0_pva_fine.inst.cfg | 2 +- .../quality/goofoo/pva/goofoo_open_1.0_pva_standard.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_draft.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_efine.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_fine.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_far_0.2_tpe_standard.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_draft.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_efine.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_fine.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_far_0.40_tpe_standard.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_draft.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_efine.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_fine.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_far_0.6_tpe_standard.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_draft.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_efine.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_fine.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_far_0.8_tpe_standard.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_draft.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_efine.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_fine.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_far_1.0_tpe_standard.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_draft.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_efine.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_fine.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_near_0.2_tpe_standard.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_near_0.40_tpe_draft.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_near_0.40_tpe_efine.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_fine.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_near_0.40_tpe_standard.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_draft.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_efine.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_fine.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_near_0.6_tpe_standard.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_draft.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_efine.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_fine.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_near_0.8_tpe_standard.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_draft.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_efine.inst.cfg | 2 +- resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_fine.inst.cfg | 2 +- .../quality/goofoo/tpe/goofoo_near_1.0_tpe_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_fine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_efine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_fine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_far_0.40_tpu_87a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_efine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_far_0.40_tpu_95a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_fine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_efine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_fine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_fine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_efine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_fine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_fine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_efine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_fine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_near_0.2_tpu_87a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_efine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_near_0.2_tpu_95a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_near_0.40_tpu_87a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_efine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_near_0.40_tpu_95a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_near_0.6_tpu_87a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_efine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_near_0.6_tpu_95a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_near_0.8_tpu_87a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_efine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_near_0.8_tpu_95a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_near_1.0_tpu_87a_standard.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_draft.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_efine.inst.cfg | 2 +- .../quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_fine.inst.cfg | 2 +- .../goofoo/tpu/goofoo_near_1.0_tpu_95a_standard.inst.cfg | 2 +- .../quality/gutenberg/gutenberg_global_fast_quality.inst.cfg | 2 +- .../quality/gutenberg/gutenberg_global_fine_quality.inst.cfg | 2 +- .../quality/gutenberg/gutenberg_global_normal_quality.inst.cfg | 2 +- .../quality/gutenberg/gutenberg_global_strong_quality.inst.cfg | 2 +- resources/quality/high.inst.cfg | 2 +- resources/quality/hms434/hms434_global_Coarse_Quality.inst.cfg | 2 +- resources/quality/hms434/hms434_global_High_Quality.inst.cfg | 2 +- resources/quality/hms434/hms434_global_Normal_Quality.inst.cfg | 2 +- resources/quality/hms434/pla/hms434_0.4_pla_high.inst.cfg | 2 +- .../imade3d_jellybox/PETG/jbo_generic_petg_0.4_coarse.inst.cfg | 2 +- .../imade3d_jellybox/PETG/jbo_generic_petg_0.4_fine.inst.cfg | 2 +- .../imade3d_jellybox/PETG/jbo_generic_petg_0.4_medium.inst.cfg | 2 +- .../imade3d_jellybox/PLA/jbo_generic_pla_0.4_coarse.inst.cfg | 2 +- .../imade3d_jellybox/PLA/jbo_generic_pla_0.4_fine.inst.cfg | 2 +- .../imade3d_jellybox/PLA/jbo_generic_pla_0.4_medium.inst.cfg | 2 +- .../imade3d_jellybox/PLA/jbo_generic_pla_0.4_ultrafine.inst.cfg | 2 +- .../quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg | 2 +- .../quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg | 2 +- .../quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg | 2 +- .../imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg | 2 +- .../PETG/jb2_generic_petg_0.4_coarse.inst.cfg | 2 +- .../imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_fine.inst.cfg | 2 +- .../PETG/jb2_generic_petg_0.4_medium.inst.cfg | 2 +- .../imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_coarse.inst.cfg | 2 +- .../imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_fine.inst.cfg | 2 +- .../imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_medium.inst.cfg | 2 +- .../PLA/jb2_generic_pla_0.4_ultrafine.inst.cfg | 2 +- resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg | 2 +- resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg | 2 +- resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg | 2 +- .../quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg | 2 +- resources/quality/inat/inat_base_advanced_materials.inst.cfg | 2 +- resources/quality/inat/inat_base_draft.inst.cfg | 2 +- resources/quality/inat/inat_base_fine.inst.cfg | 2 +- resources/quality/inat/inat_base_standard.inst.cfg | 2 +- resources/quality/inat/inat_base_strong.inst.cfg | 2 +- resources/quality/inat/inat_base_tree_support.inst.cfg | 2 +- resources/quality/jgaurora_a6/jgaurora_a6_0.12_detail.inst.cfg | 2 +- resources/quality/jgaurora_a6/jgaurora_a6_0.16_optimal.inst.cfg | 2 +- resources/quality/jgaurora_a6/jgaurora_a6_0.24_draft.inst.cfg | 2 +- resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg | 2 +- resources/quality/jgaurora_a6/jgaurora_a6_0.2_normal.inst.cfg | 2 +- resources/quality/katihal/alya3dp_normal.inst.cfg | 2 +- resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg | 2 +- resources/quality/katihal/alyanx3dp_normal.inst.cfg | 2 +- resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg | 2 +- resources/quality/katihal/kupido_normal.inst.cfg | 2 +- resources/quality/katihal/kupido_normal_generic_abs.inst.cfg | 2 +- resources/quality/katihal/kupido_normal_generic_pla.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_beta_abs_draft.inst.cfg | 2 +- .../quality/kemiq_q2/kemiq_q2_beta_abs_extra_fine.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_beta_abs_fine.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_beta_abs_low.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_beta_abs_normal.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_beta_pla_draft.inst.cfg | 2 +- .../quality/kemiq_q2/kemiq_q2_beta_pla_extra_fine.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_beta_pla_fine.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_beta_pla_low.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_beta_pla_normal.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_gama_pla_draft.inst.cfg | 2 +- .../quality/kemiq_q2/kemiq_q2_gama_pla_extra_fine.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_gama_pla_fine.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_gama_pla_low.inst.cfg | 2 +- resources/quality/kemiq_q2/kemiq_q2_gama_pla_normal.inst.cfg | 2 +- resources/quality/key3d/key3d_tyro_best.inst.cfg | 2 +- resources/quality/key3d/key3d_tyro_fast.inst.cfg | 2 +- resources/quality/key3d/key3d_tyro_normal.inst.cfg | 2 +- resources/quality/kingroon/ABS/kingroon_0.2_ABS_super.inst.cfg | 2 +- resources/quality/kingroon/ABS/kingroon_0.2_ABS_ultra.inst.cfg | 2 +- .../quality/kingroon/ABS/kingroon_0.3_ABS_adaptive.inst.cfg | 2 +- resources/quality/kingroon/ABS/kingroon_0.3_ABS_low.inst.cfg | 2 +- .../quality/kingroon/ABS/kingroon_0.3_ABS_standard.inst.cfg | 2 +- resources/quality/kingroon/ABS/kingroon_0.3_ABS_super.inst.cfg | 2 +- .../quality/kingroon/ABS/kingroon_0.4_ABS_adaptive.inst.cfg | 2 +- resources/quality/kingroon/ABS/kingroon_0.4_ABS_low.inst.cfg | 2 +- .../quality/kingroon/ABS/kingroon_0.4_ABS_standard.inst.cfg | 2 +- resources/quality/kingroon/ABS/kingroon_0.4_ABS_super.inst.cfg | 2 +- .../quality/kingroon/ABS/kingroon_0.5_ABS_adaptive.inst.cfg | 2 +- resources/quality/kingroon/ABS/kingroon_0.5_ABS_low.inst.cfg | 2 +- .../quality/kingroon/ABS/kingroon_0.5_ABS_standard.inst.cfg | 2 +- resources/quality/kingroon/ABS/kingroon_0.5_ABS_super.inst.cfg | 2 +- .../quality/kingroon/ABS/kingroon_0.6_ABS_standard.inst.cfg | 2 +- resources/quality/kingroon/ABS/kingroon_0.8_ABS_draft.inst.cfg | 2 +- resources/quality/kingroon/ABS/kingroon_1.0_ABS_draft.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.2_PETG_super.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.2_PETG_ultra.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.3_PETG_adaptive.inst.cfg | 2 +- resources/quality/kingroon/PETG/kingroon_0.3_PETG_low.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.3_PETG_standard.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.3_PETG_super.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.4_PETG_adaptive.inst.cfg | 2 +- resources/quality/kingroon/PETG/kingroon_0.4_PETG_low.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.4_PETG_standard.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.4_PETG_super.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.5_PETG_adaptive.inst.cfg | 2 +- resources/quality/kingroon/PETG/kingroon_0.5_PETG_low.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.5_PETG_standard.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.5_PETG_super.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.6_PETG_standard.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_0.8_PETG_draft.inst.cfg | 2 +- .../quality/kingroon/PETG/kingroon_1.0_PETG_draft.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_0.2_PLA_super.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_0.2_PLA_ultra.inst.cfg | 2 +- .../quality/kingroon/PLA/kingroon_0.3_PLA_adaptive.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_0.3_PLA_low.inst.cfg | 2 +- .../quality/kingroon/PLA/kingroon_0.3_PLA_standard.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_0.3_PLA_super.inst.cfg | 2 +- .../quality/kingroon/PLA/kingroon_0.4_PLA_adaptive.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_0.4_PLA_low.inst.cfg | 2 +- .../quality/kingroon/PLA/kingroon_0.4_PLA_standard.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_0.4_PLA_super.inst.cfg | 2 +- .../quality/kingroon/PLA/kingroon_0.5_PLA_adaptive.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_0.5_PLA_low.inst.cfg | 2 +- .../quality/kingroon/PLA/kingroon_0.5_PLA_standard.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_0.5_PLA_super.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_0.6_PLA_draft.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_0.6_PLA_low.inst.cfg | 2 +- .../quality/kingroon/PLA/kingroon_0.6_PLA_standard.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_0.8_PLA_draft.inst.cfg | 2 +- resources/quality/kingroon/PLA/kingroon_1.0_PLA_draft.inst.cfg | 2 +- .../quality/kingroon/TPU/kingroon_0.3_TPU_adaptive.inst.cfg | 2 +- .../quality/kingroon/TPU/kingroon_0.3_TPU_standard.inst.cfg | 2 +- resources/quality/kingroon/TPU/kingroon_0.3_TPU_super.inst.cfg | 2 +- .../quality/kingroon/TPU/kingroon_0.4_TPU_adaptive.inst.cfg | 2 +- .../quality/kingroon/TPU/kingroon_0.4_TPU_standard.inst.cfg | 2 +- resources/quality/kingroon/TPU/kingroon_0.4_TPU_super.inst.cfg | 2 +- .../quality/kingroon/TPU/kingroon_0.5_TPU_adaptive.inst.cfg | 2 +- .../quality/kingroon/TPU/kingroon_0.5_TPU_standard.inst.cfg | 2 +- resources/quality/kingroon/TPU/kingroon_0.5_TPU_super.inst.cfg | 2 +- .../quality/kingroon/TPU/kingroon_0.6_TPU_standard.inst.cfg | 2 +- resources/quality/kingroon/TPU/kingroon_0.8_TPU_draft.inst.cfg | 2 +- resources/quality/kingroon/TPU/kingroon_1.0_TPU_draft.inst.cfg | 2 +- resources/quality/kingroon/kingroon_global_adaptive.inst.cfg | 2 +- resources/quality/kingroon/kingroon_global_draft.inst.cfg | 2 +- resources/quality/kingroon/kingroon_global_low.inst.cfg | 2 +- resources/quality/kingroon/kingroon_global_standard.inst.cfg | 2 +- resources/quality/kingroon/kingroon_global_super.inst.cfg | 2 +- resources/quality/kingroon/kingroon_global_ultra.inst.cfg | 2 +- resources/quality/koonovo/koonovo_base_global_draft.inst.cfg | 2 +- resources/quality/koonovo/koonovo_base_global_standard.inst.cfg | 2 +- resources/quality/koonovo/koovono_base_global_high.inst.cfg | 2 +- resources/quality/liquid/liquid_global_Draft_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_global_Fast_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_global_High_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_global_Normal_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_global_Superdraft_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_global_Verydraft_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_CPE_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_CPE_Fast_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_CPE_High_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_CPE_Normal_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_Nylon_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_Nylon_Fast_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_Nylon_High_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_Nylon_Normal_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_TPU_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.4_TPU_Fast_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.4_TPU_Normal_Quality.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.6_CFFCPE_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.6_CFFPA_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.6_GFFCPE_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.6_GFFPA_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.8_ABS_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_ABS_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_ABS_Verydraft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.8_PC_Fast_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PC_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PC_Verydraft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg | 2 +- resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg | 2 +- .../quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.2_generic_PETG_super.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.2_generic_PETG_ultra.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.2_generic_PLA_super.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.2_generic_PLA_ultra.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.4_generic_PETG_adaptive.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.4_generic_PETG_low.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.4_generic_PETG_standard.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.4_generic_PETG_super.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.4_generic_PLA_adaptive.inst.cfg | 2 +- resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_low.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.4_generic_PLA_standard.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.4_generic_PLA_super.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.4_generic_TPU_adaptive.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.4_generic_TPU_standard.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.4_generic_TPU_super.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.6_generic_PETG_standard.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.6_generic_PLA_draft.inst.cfg | 2 +- resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_low.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.6_generic_PLA_standard.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.6_generic_TPU_standard.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.8_generic_PETG_draft.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.8_generic_PLA_draft.inst.cfg | 2 +- .../quality/lnl3d/lnl3d_base_0.8_generic_TPU_draft.inst.cfg | 2 +- resources/quality/lnl3d/lnl3d_base_global_adaptive.inst.cfg | 2 +- resources/quality/lnl3d/lnl3d_base_global_draft.inst.cfg | 2 +- resources/quality/lnl3d/lnl3d_base_global_low.inst.cfg | 2 +- resources/quality/lnl3d/lnl3d_base_global_standard.inst.cfg | 2 +- resources/quality/lnl3d/lnl3d_base_global_super.inst.cfg | 2 +- resources/quality/lnl3d/lnl3d_base_global_ultra.inst.cfg | 2 +- resources/quality/longer/ABS/longer_0.4_ABS_adaptive.inst.cfg | 2 +- resources/quality/longer/ABS/longer_0.4_ABS_low.inst.cfg | 2 +- resources/quality/longer/ABS/longer_0.4_ABS_standard.inst.cfg | 2 +- resources/quality/longer/ABS/longer_0.4_ABS_super.inst.cfg | 2 +- resources/quality/longer/PETG/longer_0.4_PETG_adaptive.inst.cfg | 2 +- resources/quality/longer/PETG/longer_0.4_PETG_low.inst.cfg | 2 +- resources/quality/longer/PETG/longer_0.4_PETG_standard.inst.cfg | 2 +- resources/quality/longer/PETG/longer_0.4_PETG_super.inst.cfg | 2 +- resources/quality/longer/PLA/longer_0.4_PLA_adaptive.inst.cfg | 2 +- resources/quality/longer/PLA/longer_0.4_PLA_low.inst.cfg | 2 +- resources/quality/longer/PLA/longer_0.4_PLA_standard.inst.cfg | 2 +- resources/quality/longer/PLA/longer_0.4_PLA_super.inst.cfg | 2 +- resources/quality/longer/TPU/longer_0.4_TPU_adaptive.inst.cfg | 2 +- resources/quality/longer/TPU/longer_0.4_TPU_standard.inst.cfg | 2 +- resources/quality/longer/TPU/longer_0.4_TPU_super.inst.cfg | 2 +- resources/quality/longer/longer_global_adaptive.inst.cfg | 2 +- resources/quality/longer/longer_global_draft.inst.cfg | 2 +- resources/quality/longer/longer_global_low.inst.cfg | 2 +- resources/quality/longer/longer_global_standard.inst.cfg | 2 +- resources/quality/longer/longer_global_super.inst.cfg | 2 +- resources/quality/longer/longer_global_ultra.inst.cfg | 2 +- .../quality/makeblock/makeblock_mcreate_pla_normal.inst.cfg | 2 +- .../quality/malyan_m200/abs/malyan_m200_abs_draft.inst.cfg | 2 +- resources/quality/malyan_m200/abs/malyan_m200_abs_fast.inst.cfg | 2 +- resources/quality/malyan_m200/abs/malyan_m200_abs_high.inst.cfg | 2 +- .../quality/malyan_m200/abs/malyan_m200_abs_normal.inst.cfg | 2 +- .../quality/malyan_m200/abs/malyan_m200_abs_superdraft.inst.cfg | 2 +- .../malyan_m200/abs/malyan_m200_abs_thickerdraft.inst.cfg | 2 +- .../quality/malyan_m200/abs/malyan_m200_abs_ultra.inst.cfg | 2 +- .../quality/malyan_m200/abs/malyan_m200_abs_verydraft.inst.cfg | 2 +- .../malyan_m200/malyan_m200_global_Draft_Quality.inst.cfg | 2 +- .../malyan_m200/malyan_m200_global_Fast_Quality.inst.cfg | 2 +- .../malyan_m200/malyan_m200_global_High_Quality.inst.cfg | 2 +- .../malyan_m200/malyan_m200_global_Normal_Quality.inst.cfg | 2 +- .../malyan_m200/malyan_m200_global_SuperDraft_Quality.inst.cfg | 2 +- .../malyan_m200_global_ThickerDraft_Quality.inst.cfg | 2 +- .../malyan_m200/malyan_m200_global_Ultra_Quality.inst.cfg | 2 +- .../malyan_m200/malyan_m200_global_VeryDraft_Quality.inst.cfg | 2 +- .../quality/malyan_m200/petg/malyan_m200_petg_draft.inst.cfg | 2 +- .../quality/malyan_m200/petg/malyan_m200_petg_fast.inst.cfg | 2 +- .../quality/malyan_m200/petg/malyan_m200_petg_high.inst.cfg | 2 +- .../quality/malyan_m200/petg/malyan_m200_petg_normal.inst.cfg | 2 +- .../malyan_m200/petg/malyan_m200_petg_superdraft.inst.cfg | 2 +- .../malyan_m200/petg/malyan_m200_petg_thickerdraft.inst.cfg | 2 +- .../quality/malyan_m200/petg/malyan_m200_petg_ultra.inst.cfg | 2 +- .../malyan_m200/petg/malyan_m200_petg_verydraft.inst.cfg | 2 +- .../quality/malyan_m200/pla/malyan_m200_pla_draft.inst.cfg | 2 +- resources/quality/malyan_m200/pla/malyan_m200_pla_fast.inst.cfg | 2 +- resources/quality/malyan_m200/pla/malyan_m200_pla_high.inst.cfg | 2 +- .../quality/malyan_m200/pla/malyan_m200_pla_normal.inst.cfg | 2 +- .../quality/malyan_m200/pla/malyan_m200_pla_superdraft.inst.cfg | 2 +- .../malyan_m200/pla/malyan_m200_pla_thickerdraft.inst.cfg | 2 +- .../quality/malyan_m200/pla/malyan_m200_pla_ultra.inst.cfg | 2 +- .../quality/malyan_m200/pla/malyan_m200_pla_verydraft.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.2_ABS_super.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.2_ABS_ultra.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.3_ABS_adaptive.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.3_ABS_low.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.3_ABS_standard.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.3_ABS_super.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.4_ABS_adaptive.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.4_ABS_low.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.4_ABS_standard.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.4_ABS_super.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.5_ABS_adaptive.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.5_ABS_low.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.5_ABS_standard.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.5_ABS_super.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.6_ABS_standard.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_0.8_ABS_draft.inst.cfg | 2 +- resources/quality/mingda/ABS/mingda_1.0_ABS_draft.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.2_PETG_super.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.2_PETG_ultra.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.3_PETG_adaptive.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.3_PETG_low.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.3_PETG_standard.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.3_PETG_super.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.4_PETG_adaptive.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.4_PETG_low.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.4_PETG_standard.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.4_PETG_super.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.5_PETG_adaptive.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.5_PETG_low.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.5_PETG_standard.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.5_PETG_super.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.6_PETG_standard.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_0.8_PETG_draft.inst.cfg | 2 +- resources/quality/mingda/PETG/mingda_1.0_PETG_draft.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.2_PLA_super.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.2_PLA_ultra.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.3_PLA_adaptive.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.3_PLA_low.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.3_PLA_standard.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.3_PLA_super.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.4_PLA_adaptive.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.4_PLA_low.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.4_PLA_standard.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.4_PLA_super.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.5_PLA_adaptive.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.5_PLA_low.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.5_PLA_standard.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.5_PLA_super.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.6_PLA_draft.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.6_PLA_low.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.6_PLA_standard.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_0.8_PLA_draft.inst.cfg | 2 +- resources/quality/mingda/PLA/mingda_1.0_PLA_draft.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_0.3_TPU_adaptive.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_0.3_TPU_standard.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_0.3_TPU_super.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_0.4_TPU_adaptive.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_0.4_TPU_standard.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_0.4_TPU_super.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_0.5_TPU_adaptive.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_0.5_TPU_standard.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_0.5_TPU_super.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_0.6_TPU_standard.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_0.8_TPU_draft.inst.cfg | 2 +- resources/quality/mingda/TPU/mingda_1.0_TPU_draft.inst.cfg | 2 +- resources/quality/mingda/mingda_global_adaptive.inst.cfg | 2 +- resources/quality/mingda/mingda_global_draft.inst.cfg | 2 +- resources/quality/mingda/mingda_global_low.inst.cfg | 2 +- resources/quality/mingda/mingda_global_standard.inst.cfg | 2 +- resources/quality/mingda/mingda_global_super.inst.cfg | 2 +- resources/quality/mingda/mingda_global_ultra.inst.cfg | 2 +- .../quality/mixware_hyper_k/mixware_hyper_k_draft.inst.cfg | 2 +- .../quality/mixware_hyper_k/mixware_hyper_k_extra_fast.inst.cfg | 2 +- .../quality/mixware_hyper_k/mixware_hyper_k_normal.inst.cfg | 2 +- .../quality/mixware_hyper_s/mixware_hyper_s_draft.inst.cfg | 2 +- .../quality/mixware_hyper_s/mixware_hyper_s_extra_fast.inst.cfg | 2 +- .../quality/mixware_hyper_s/mixware_hyper_s_normal.inst.cfg | 2 +- resources/quality/mixware_vulcan/mixware_vulcan_draft.inst.cfg | 2 +- .../quality/mixware_vulcan/mixware_vulcan_extra_fast.inst.cfg | 2 +- resources/quality/mixware_vulcan/mixware_vulcan_normal.inst.cfg | 2 +- resources/quality/mixware_wand/mixware_wand_draft.inst.cfg | 2 +- resources/quality/mixware_wand/mixware_wand_extra_fast.inst.cfg | 2 +- resources/quality/mixware_wand/mixware_wand_normal.inst.cfg | 2 +- .../abs/monoprice_select_mini_v2_abs_draft.inst.cfg | 2 +- .../abs/monoprice_select_mini_v2_abs_fast.inst.cfg | 2 +- .../abs/monoprice_select_mini_v2_abs_high.inst.cfg | 2 +- .../abs/monoprice_select_mini_v2_abs_normal.inst.cfg | 2 +- .../abs/monoprice_select_mini_v2_abs_superdraft.inst.cfg | 2 +- .../abs/monoprice_select_mini_v2_abs_thickerdraft.inst.cfg | 2 +- .../abs/monoprice_select_mini_v2_abs_ultra.inst.cfg | 2 +- .../abs/monoprice_select_mini_v2_abs_verydraft.inst.cfg | 2 +- .../monoprice_select_mini_v2_global_Draft_Quality.inst.cfg | 2 +- .../monoprice_select_mini_v2_global_Fast_Quality.inst.cfg | 2 +- .../monoprice_select_mini_v2_global_High_Quality.inst.cfg | 2 +- .../monoprice_select_mini_v2_global_Normal_Quality.inst.cfg | 2 +- .../monoprice_select_mini_v2_global_SuperDraft_Quality.inst.cfg | 2 +- ...onoprice_select_mini_v2_global_ThickerDraft_Quality.inst.cfg | 2 +- .../monoprice_select_mini_v2_global_Ultra_Quality.inst.cfg | 2 +- .../monoprice_select_mini_v2_global_VeryDraft_Quality.inst.cfg | 2 +- .../nylon/monoprice_select_mini_v2_nylon_draft.inst.cfg | 2 +- .../nylon/monoprice_select_mini_v2_nylon_fast.inst.cfg | 2 +- .../nylon/monoprice_select_mini_v2_nylon_high.inst.cfg | 2 +- .../nylon/monoprice_select_mini_v2_nylon_normal.inst.cfg | 2 +- .../nylon/monoprice_select_mini_v2_nylon_superdraft.inst.cfg | 2 +- .../nylon/monoprice_select_mini_v2_nylon_thickerdraft.inst.cfg | 2 +- .../nylon/monoprice_select_mini_v2_nylon_ultra.inst.cfg | 2 +- .../nylon/monoprice_select_mini_v2_nylon_verydraft.inst.cfg | 2 +- .../pc/monoprice_select_mini_v2_pc_draft.inst.cfg | 2 +- .../pc/monoprice_select_mini_v2_pc_fast.inst.cfg | 2 +- .../pc/monoprice_select_mini_v2_pc_high.inst.cfg | 2 +- .../pc/monoprice_select_mini_v2_pc_normal.inst.cfg | 2 +- .../pc/monoprice_select_mini_v2_pc_superdraft.inst.cfg | 2 +- .../pc/monoprice_select_mini_v2_pc_thickerdraft.inst.cfg | 2 +- .../pc/monoprice_select_mini_v2_pc_ultra.inst.cfg | 2 +- .../pc/monoprice_select_mini_v2_pc_verydraft.inst.cfg | 2 +- .../petg/monoprice_select_mini_v2_petg_draft.inst.cfg | 2 +- .../petg/monoprice_select_mini_v2_petg_fast.inst.cfg | 2 +- .../petg/monoprice_select_mini_v2_petg_high.inst.cfg | 2 +- .../petg/monoprice_select_mini_v2_petg_normal.inst.cfg | 2 +- .../petg/monoprice_select_mini_v2_petg_superdraft.inst.cfg | 2 +- .../petg/monoprice_select_mini_v2_petg_thickerdraft.inst.cfg | 2 +- .../petg/monoprice_select_mini_v2_petg_ultra.inst.cfg | 2 +- .../petg/monoprice_select_mini_v2_petg_verydraft.inst.cfg | 2 +- .../pla/monoprice_select_mini_v2_pla_draft.inst.cfg | 2 +- .../pla/monoprice_select_mini_v2_pla_fast.inst.cfg | 2 +- .../pla/monoprice_select_mini_v2_pla_high.inst.cfg | 2 +- .../pla/monoprice_select_mini_v2_pla_normal.inst.cfg | 2 +- .../pla/monoprice_select_mini_v2_pla_superdraft.inst.cfg | 2 +- .../pla/monoprice_select_mini_v2_pla_thickerdraft.inst.cfg | 2 +- .../pla/monoprice_select_mini_v2_pla_ultra.inst.cfg | 2 +- .../pla/monoprice_select_mini_v2_pla_verydraft.inst.cfg | 2 +- resources/quality/normal.inst.cfg | 2 +- resources/quality/nps/nps_ABS_A.inst.cfg | 2 +- resources/quality/nps/nps_ABS_B.inst.cfg | 2 +- resources/quality/nps/nps_ABS_C.inst.cfg | 2 +- resources/quality/nps/nps_PC_A.inst.cfg | 2 +- resources/quality/nps/nps_PC_B.inst.cfg | 2 +- resources/quality/nps/nps_PC_C.inst.cfg | 2 +- resources/quality/nps/nps_PETG_A.inst.cfg | 2 +- resources/quality/nps/nps_PETG_B.inst.cfg | 2 +- resources/quality/nps/nps_PETG_C.inst.cfg | 2 +- resources/quality/nps/nps_PLA_A.inst.cfg | 2 +- resources/quality/nps/nps_PLA_B.inst.cfg | 2 +- resources/quality/nps/nps_PLA_C.inst.cfg | 2 +- resources/quality/nps/nps_TPU_A.inst.cfg | 2 +- resources/quality/nps/nps_TPU_B.inst.cfg | 2 +- resources/quality/nps/nps_TPU_C.inst.cfg | 2 +- resources/quality/nps/nps_global_A.inst.cfg | 2 +- resources/quality/nps/nps_global_B.inst.cfg | 2 +- resources/quality/nps/nps_global_C.inst.cfg | 2 +- resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg | 2 +- resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg | 2 +- resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg | 2 +- resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg | 2 +- resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg | 2 +- resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg | 2 +- resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg | 2 +- resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg | 2 +- resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg | 2 +- resources/quality/peopoly_moai/peopoly_moai_extra_high.inst.cfg | 2 +- resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg | 2 +- resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.2_Nylon_super.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.2_Nylon_ultra.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.3_Nylon_adaptive.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.3_Nylon_low.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.3_Nylon_standard.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.3_Nylon_super.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.4_Nylon_adaptive.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.4_Nylon_low.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.4_Nylon_standard.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.4_Nylon_super.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.5_Nylon_adaptive.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.5_Nylon_low.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.5_Nylon_standard.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.5_Nylon_super.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.6_Nylon_standard.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_0.8_Nylon_draft.inst.cfg | 2 +- .../ratrig_base/nylon/ratrig_base_1.0_Nylon_draft.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.2_PETG_super.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.2_PETG_ultra.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.3_PETG_adaptive.inst.cfg | 2 +- .../quality/ratrig_base/petg/ratrig_base_0.3_PETG_low.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.3_PETG_standard.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.3_PETG_super.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.4_PETG_adaptive.inst.cfg | 2 +- .../quality/ratrig_base/petg/ratrig_base_0.4_PETG_low.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.4_PETG_standard.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.4_PETG_super.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.5_PETG_adaptive.inst.cfg | 2 +- .../quality/ratrig_base/petg/ratrig_base_0.5_PETG_low.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.5_PETG_standard.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.5_PETG_super.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.6_PETG_standard.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_0.8_PETG_draft.inst.cfg | 2 +- .../ratrig_base/petg/ratrig_base_1.0_PETG_draft.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_0.2_PLA_super.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_0.2_PLA_ultra.inst.cfg | 2 +- .../ratrig_base/pla/ratrig_base_0.3_PLA_adaptive.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_0.3_PLA_low.inst.cfg | 2 +- .../ratrig_base/pla/ratrig_base_0.3_PLA_standard.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_0.3_PLA_super.inst.cfg | 2 +- .../ratrig_base/pla/ratrig_base_0.4_PLA_adaptive.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_0.4_PLA_low.inst.cfg | 2 +- .../ratrig_base/pla/ratrig_base_0.4_PLA_standard.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_0.4_PLA_super.inst.cfg | 2 +- .../ratrig_base/pla/ratrig_base_0.5_PLA_adaptive.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_0.5_PLA_low.inst.cfg | 2 +- .../ratrig_base/pla/ratrig_base_0.5_PLA_standard.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_0.5_PLA_super.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_0.6_PLA_draft.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_0.6_PLA_low.inst.cfg | 2 +- .../ratrig_base/pla/ratrig_base_0.6_PLA_standard.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_0.8_PLA_draft.inst.cfg | 2 +- .../quality/ratrig_base/pla/ratrig_base_1.0_PLA_draft.inst.cfg | 2 +- .../quality/ratrig_base/ratrig_base_global_adaptive.inst.cfg | 2 +- resources/quality/ratrig_base/ratrig_base_global_draft.inst.cfg | 2 +- resources/quality/ratrig_base/ratrig_base_global_low.inst.cfg | 2 +- .../quality/ratrig_base/ratrig_base_global_standard.inst.cfg | 2 +- resources/quality/ratrig_base/ratrig_base_global_super.inst.cfg | 2 +- resources/quality/ratrig_base/ratrig_base_global_ultra.inst.cfg | 2 +- .../ratrig_base/tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg | 2 +- .../ratrig_base/tpu/ratrig_base_0.3_TPU_standard.inst.cfg | 2 +- .../quality/ratrig_base/tpu/ratrig_base_0.3_TPU_super.inst.cfg | 2 +- .../ratrig_base/tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg | 2 +- .../ratrig_base/tpu/ratrig_base_0.4_TPU_standard.inst.cfg | 2 +- .../quality/ratrig_base/tpu/ratrig_base_0.4_TPU_super.inst.cfg | 2 +- .../ratrig_base/tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg | 2 +- .../ratrig_base/tpu/ratrig_base_0.5_TPU_standard.inst.cfg | 2 +- .../quality/ratrig_base/tpu/ratrig_base_0.5_TPU_super.inst.cfg | 2 +- .../ratrig_base/tpu/ratrig_base_0.6_TPU_standard.inst.cfg | 2 +- .../quality/ratrig_base/tpu/ratrig_base_0.8_TPU_draft.inst.cfg | 2 +- .../quality/ratrig_base/tpu/ratrig_base_1.0_TPU_draft.inst.cfg | 2 +- .../quality/rigid3d_base/abs/rigid3d_base_abs_adaptive.inst.cfg | 2 +- .../quality/rigid3d_base/abs/rigid3d_base_abs_good.inst.cfg | 2 +- .../quality/rigid3d_base/abs/rigid3d_base_abs_low.inst.cfg | 2 +- .../quality/rigid3d_base/abs/rigid3d_base_abs_standard.inst.cfg | 2 +- .../quality/rigid3d_base/abs/rigid3d_base_abs_super.inst.cfg | 2 +- .../quality/rigid3d_base/abs/rigid3d_base_abs_ultra.inst.cfg | 2 +- .../rigid3d_base/nylon/rigid3d_base_nylon_adaptive.inst.cfg | 2 +- .../quality/rigid3d_base/nylon/rigid3d_base_nylon_good.inst.cfg | 2 +- .../quality/rigid3d_base/nylon/rigid3d_base_nylon_low.inst.cfg | 2 +- .../rigid3d_base/nylon/rigid3d_base_nylon_standard.inst.cfg | 2 +- .../rigid3d_base/nylon/rigid3d_base_nylon_super.inst.cfg | 2 +- .../rigid3d_base/nylon/rigid3d_base_nylon_ultra.inst.cfg | 2 +- .../rigid3d_base/petg/rigid3d_base_petg_adaptive.inst.cfg | 2 +- .../quality/rigid3d_base/petg/rigid3d_base_petg_good.inst.cfg | 2 +- .../quality/rigid3d_base/petg/rigid3d_base_petg_low.inst.cfg | 2 +- .../rigid3d_base/petg/rigid3d_base_petg_standard.inst.cfg | 2 +- .../quality/rigid3d_base/petg/rigid3d_base_petg_super.inst.cfg | 2 +- .../quality/rigid3d_base/petg/rigid3d_base_petg_ultra.inst.cfg | 2 +- .../quality/rigid3d_base/pla/rigid3d_base_pla_adaptive.inst.cfg | 2 +- .../quality/rigid3d_base/pla/rigid3d_base_pla_good.inst.cfg | 2 +- .../quality/rigid3d_base/pla/rigid3d_base_pla_low.inst.cfg | 2 +- .../quality/rigid3d_base/pla/rigid3d_base_pla_standard.inst.cfg | 2 +- .../quality/rigid3d_base/pla/rigid3d_base_pla_super.inst.cfg | 2 +- .../quality/rigid3d_base/pla/rigid3d_base_pla_ultra.inst.cfg | 2 +- .../quality/rigid3d_base/rigid3d_base_global_adaptive.inst.cfg | 2 +- .../quality/rigid3d_base/rigid3d_base_global_good.inst.cfg | 2 +- resources/quality/rigid3d_base/rigid3d_base_global_low.inst.cfg | 2 +- .../quality/rigid3d_base/rigid3d_base_global_standard.inst.cfg | 2 +- .../quality/rigid3d_base/rigid3d_base_global_super.inst.cfg | 2 +- .../quality/rigid3d_base/rigid3d_base_global_ultra.inst.cfg | 2 +- .../quality/rigid3d_base/tpu/rigid3d_base_tpu_adaptive.inst.cfg | 2 +- .../quality/rigid3d_base/tpu/rigid3d_base_tpu_good.inst.cfg | 2 +- .../quality/rigid3d_base/tpu/rigid3d_base_tpu_low.inst.cfg | 2 +- .../quality/rigid3d_base/tpu/rigid3d_base_tpu_standard.inst.cfg | 2 +- .../quality/rigid3d_base/tpu/rigid3d_base_tpu_super.inst.cfg | 2 +- .../quality/rigid3d_base/tpu/rigid3d_base_tpu_ultra.inst.cfg | 2 +- resources/quality/skriware_2/sk2_advanced.inst.cfg | 2 +- resources/quality/skriware_2/sk2_fast.inst.cfg | 2 +- resources/quality/skriware_2/sk2_precise.inst.cfg | 2 +- .../quality/snakeoilxy/snakeoilxy_global_fast_quality.inst.cfg | 2 +- .../quality/snakeoilxy/snakeoilxy_global_fine_quality.inst.cfg | 2 +- .../snakeoilxy/snakeoilxy_global_normal_quality.inst.cfg | 2 +- .../snakeoilxy/snakeoilxy_global_strong_quality.inst.cfg | 2 +- resources/quality/snapmaker2/snapmaker2_fast.inst.cfg | 2 +- resources/quality/snapmaker2/snapmaker2_high.inst.cfg | 2 +- resources/quality/snapmaker2/snapmaker2_normal.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_super.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_ultra.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_bowden_0.3_ABS_adaptive.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_bowden_0.3_ABS_standard.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_super.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_bowden_0.4_ABS_adaptive.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_bowden_0.4_ABS_standard.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_super.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_bowden_0.5_ABS_adaptive.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_bowden_0.5_ABS_standard.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_super.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_bowden_0.6_ABS_adaptive.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_draft.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_bowden_0.6_ABS_standard.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_0.8_ABS_draft.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_bowden_1.0_ABS_draft.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.2_ABS_super.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.2_ABS_ultra.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.3_ABS_adaptive.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.3_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.3_ABS_standard.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.3_ABS_super.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.4_ABS_adaptive.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.4_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.4_ABS_standard.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.4_ABS_super.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.5_ABS_adaptive.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.5_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.5_ABS_standard.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.5_ABS_super.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.6_ABS_adaptive.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.6_ABS_draft.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.6_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.6_ABS_standard.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_0.8_ABS_draft.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_planetary_1.0_ABS_draft.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_0.2_ABS_super.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_0.2_ABS_ultra.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_titan_0.3_ABS_adaptive.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_0.3_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_titan_0.3_ABS_standard.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_0.3_ABS_super.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_titan_0.4_ABS_adaptive.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_0.4_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_titan_0.4_ABS_standard.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_0.4_ABS_super.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_titan_0.5_ABS_adaptive.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_0.5_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_titan_0.5_ABS_standard.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_0.5_ABS_super.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_titan_0.6_ABS_adaptive.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_0.6_ABS_draft.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_0.6_ABS_low.inst.cfg | 2 +- .../quality/sovol/ABS/sovol_titan_0.6_ABS_standard.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_0.8_ABS_draft.inst.cfg | 2 +- resources/quality/sovol/ABS/sovol_titan_1.0_ABS_draft.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.2_PETG_super.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.2_PETG_ultra.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.3_PETG_adaptive.inst.cfg | 2 +- resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_low.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.3_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.3_PETG_super.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.4_PETG_adaptive.inst.cfg | 2 +- resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_low.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.4_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.4_PETG_super.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.5_PETG_adaptive.inst.cfg | 2 +- resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_low.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.5_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.5_PETG_super.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.6_PETG_adaptive.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.6_PETG_draft.inst.cfg | 2 +- resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_low.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.6_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_0.8_PETG_draft.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_bowden_1.0_PETG_draft.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_0.2_PETG_super.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_0.2_PETG_ultra.inst.cfg | 2 +- .../sovol/PETG/sovol_planetary_0.3_PETG_adaptive.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_0.3_PETG_low.inst.cfg | 2 +- .../sovol/PETG/sovol_planetary_0.3_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_0.3_PETG_super.inst.cfg | 2 +- .../sovol/PETG/sovol_planetary_0.4_PETG_adaptive.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_0.4_PETG_low.inst.cfg | 2 +- .../sovol/PETG/sovol_planetary_0.4_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_0.4_PETG_super.inst.cfg | 2 +- .../sovol/PETG/sovol_planetary_0.5_PETG_adaptive.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_0.5_PETG_low.inst.cfg | 2 +- .../sovol/PETG/sovol_planetary_0.5_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_0.5_PETG_super.inst.cfg | 2 +- .../sovol/PETG/sovol_planetary_0.6_PETG_adaptive.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_0.6_PETG_draft.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_0.6_PETG_low.inst.cfg | 2 +- .../sovol/PETG/sovol_planetary_0.6_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_0.8_PETG_draft.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_planetary_1.0_PETG_draft.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.2_PETG_super.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.2_PETG_ultra.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.3_PETG_adaptive.inst.cfg | 2 +- resources/quality/sovol/PETG/sovol_titan_0.3_PETG_low.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.3_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.3_PETG_super.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.4_PETG_adaptive.inst.cfg | 2 +- resources/quality/sovol/PETG/sovol_titan_0.4_PETG_low.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.4_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.4_PETG_super.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.5_PETG_adaptive.inst.cfg | 2 +- resources/quality/sovol/PETG/sovol_titan_0.5_PETG_low.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.5_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.5_PETG_super.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.6_PETG_adaptive.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.6_PETG_draft.inst.cfg | 2 +- resources/quality/sovol/PETG/sovol_titan_0.6_PETG_low.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.6_PETG_standard.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_0.8_PETG_draft.inst.cfg | 2 +- .../quality/sovol/PETG/sovol_titan_1.0_PETG_draft.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_super.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_ultra.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_bowden_0.3_PLA_adaptive.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_bowden_0.3_PLA_standard.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_super.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_bowden_0.4_PLA_adaptive.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_bowden_0.4_PLA_standard.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_super.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_bowden_0.5_PLA_adaptive.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_bowden_0.5_PLA_standard.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_super.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_bowden_0.6_PLA_adaptive.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_draft.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_bowden_0.6_PLA_standard.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_0.8_PLA_draft.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_bowden_1.0_PLA_draft.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.2_PLA_super.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.2_PLA_ultra.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.3_PLA_adaptive.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.3_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.3_PLA_standard.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.3_PLA_super.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.4_PLA_adaptive.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.4_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.4_PLA_standard.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.4_PLA_super.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.5_PLA_adaptive.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.5_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.5_PLA_standard.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.5_PLA_super.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.6_PLA_adaptive.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.6_PLA_draft.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.6_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.6_PLA_standard.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_0.8_PLA_draft.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_planetary_1.0_PLA_draft.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_0.2_PLA_super.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_0.2_PLA_ultra.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_titan_0.3_PLA_adaptive.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_0.3_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_titan_0.3_PLA_standard.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_0.3_PLA_super.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_titan_0.4_PLA_adaptive.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_0.4_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_titan_0.4_PLA_standard.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_0.4_PLA_super.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_titan_0.5_PLA_adaptive.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_0.5_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_titan_0.5_PLA_standard.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_0.5_PLA_super.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_titan_0.6_PLA_adaptive.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_0.6_PLA_draft.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_0.6_PLA_low.inst.cfg | 2 +- .../quality/sovol/PLA/sovol_titan_0.6_PLA_standard.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_0.8_PLA_draft.inst.cfg | 2 +- resources/quality/sovol/PLA/sovol_titan_1.0_PLA_draft.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_bowden_0.3_TPU_adaptive.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_bowden_0.3_TPU_standard.inst.cfg | 2 +- resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_super.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_bowden_0.4_TPU_adaptive.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_bowden_0.4_TPU_standard.inst.cfg | 2 +- resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_super.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_bowden_0.5_TPU_adaptive.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_bowden_0.5_TPU_standard.inst.cfg | 2 +- resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_super.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_bowden_0.6_TPU_standard.inst.cfg | 2 +- resources/quality/sovol/TPU/sovol_bowden_0.8_TPU_draft.inst.cfg | 2 +- resources/quality/sovol/TPU/sovol_bowden_1.0_TPU_draft.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_0.3_TPU_adaptive.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_0.3_TPU_standard.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_0.3_TPU_super.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_0.4_TPU_adaptive.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_0.4_TPU_standard.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_0.4_TPU_super.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_0.5_TPU_adaptive.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_0.5_TPU_standard.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_0.5_TPU_super.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_0.6_TPU_standard.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_0.8_TPU_draft.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_planetary_1.0_TPU_draft.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_titan_0.3_TPU_adaptive.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_titan_0.3_TPU_standard.inst.cfg | 2 +- resources/quality/sovol/TPU/sovol_titan_0.3_TPU_super.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_titan_0.4_TPU_adaptive.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_titan_0.4_TPU_standard.inst.cfg | 2 +- resources/quality/sovol/TPU/sovol_titan_0.4_TPU_super.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_titan_0.5_TPU_adaptive.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_titan_0.5_TPU_standard.inst.cfg | 2 +- resources/quality/sovol/TPU/sovol_titan_0.5_TPU_super.inst.cfg | 2 +- .../quality/sovol/TPU/sovol_titan_0.6_TPU_standard.inst.cfg | 2 +- resources/quality/sovol/TPU/sovol_titan_0.8_TPU_draft.inst.cfg | 2 +- resources/quality/sovol/TPU/sovol_titan_1.0_TPU_draft.inst.cfg | 2 +- resources/quality/sovol/sovol_bowden_global_adaptive.inst.cfg | 2 +- resources/quality/sovol/sovol_bowden_global_draft.inst.cfg | 2 +- resources/quality/sovol/sovol_bowden_global_low.inst.cfg | 2 +- resources/quality/sovol/sovol_bowden_global_standard.inst.cfg | 2 +- resources/quality/sovol/sovol_bowden_global_super.inst.cfg | 2 +- resources/quality/sovol/sovol_bowden_global_ultra.inst.cfg | 2 +- .../quality/sovol/sovol_planetary_global_adaptive.inst.cfg | 2 +- resources/quality/sovol/sovol_planetary_global_draft.inst.cfg | 2 +- resources/quality/sovol/sovol_planetary_global_low.inst.cfg | 2 +- .../quality/sovol/sovol_planetary_global_standard.inst.cfg | 2 +- resources/quality/sovol/sovol_planetary_global_super.inst.cfg | 2 +- resources/quality/sovol/sovol_planetary_global_ultra.inst.cfg | 2 +- resources/quality/sovol/sovol_titan_global_adaptive.inst.cfg | 2 +- resources/quality/sovol/sovol_titan_global_draft.inst.cfg | 2 +- resources/quality/sovol/sovol_titan_global_low.inst.cfg | 2 +- resources/quality/sovol/sovol_titan_global_standard.inst.cfg | 2 +- resources/quality/sovol/sovol_titan_global_super.inst.cfg | 2 +- resources/quality/sovol/sovol_titan_global_ultra.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg | 2 +- resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg | 2 +- .../strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg | 2 +- .../strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg | 2 +- .../strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg | 2 +- .../strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg | 2 +- .../strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg | 2 +- .../strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg | 2 +- .../strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg | 2 +- .../quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg | 2 +- .../Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg | 2 +- .../Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg | 2 +- resources/quality/strateo3d/s3d_global_A.inst.cfg | 2 +- resources/quality/strateo3d/s3d_global_B.inst.cfg | 2 +- resources/quality/strateo3d/s3d_global_C.inst.cfg | 2 +- resources/quality/strateo3d/s3d_global_D.inst.cfg | 2 +- resources/quality/strateo3d/s3d_global_E.inst.cfg | 2 +- resources/quality/strateo3d/s3d_global_F.inst.cfg | 2 +- resources/quality/strateo3d/s3d_global_G.inst.cfg | 2 +- resources/quality/strateo3d/s3d_global_H.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ABS-X_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ABS-X_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ABS-X_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ABS_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ABS_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ABS_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ACETATE_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ACETATE_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ACETATE_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ASA-X_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ASA-X_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_ASA-X_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_BVOH_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_BVOH_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_BVOH_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_COPA_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_COPA_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_COPA_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_HIPS_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_HIPS_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_HIPS_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PA6CF_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PA6CF_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PA6CF_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PA6GF_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PA6GF_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PA6GF_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PC_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PC_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PC_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PETG_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PETG_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PETG_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PLA_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PLA_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PLA_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PVA-M_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PVA-M_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PVA-M_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PVA-S_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PVA-S_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_PVA-S_C.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_TPU98A_A.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_TPU98A_B.inst.cfg | 2 +- .../Standard_0_4/s3d_IDEX420_std0.4_TPU98A_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ABS-X_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ABS-X_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ABS-X_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ABS_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ABS_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ABS_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ACETATE_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ACETATE_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ACETATE_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ASA-X_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ASA-X_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_ASA-X_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_BVOH_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_BVOH_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_BVOH_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_COPA_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_COPA_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_COPA_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_HIPS_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_HIPS_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_HIPS_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PA6CF_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PA6CF_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PA6CF_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PA6GF_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PA6GF_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PA6GF_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PC_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PC_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PC_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PETG_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PETG_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PETG_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PLA_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PLA_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PLA_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PVA-M_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PVA-M_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PVA-M_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PVA-S_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PVA-S_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_PVA-S_D.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_TPU98A_B.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_TPU98A_C.inst.cfg | 2 +- .../Standard_0_6/s3d_IDEX420_std0.6_TPU98A_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_ABS-X_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_ABS-X_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_ABS-X_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_ABS_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_ABS_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_ABS_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_ASA-X_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_ASA-X_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_ASA-X_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_BVOH_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_BVOH_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_BVOH_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_COPA_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_COPA_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_COPA_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_HIPS_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_HIPS_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_HIPS_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PA6CF_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PA6CF_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PA6CF_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PA6GF_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PA6GF_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PA6GF_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PC_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PC_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PC_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PETG_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PETG_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PETG_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PLA_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PLA_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PLA_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PVA-M_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PVA-M_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PVA-M_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PVA-S_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PVA-S_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_PVA-S_E.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_TPU98A_C.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_TPU98A_D.inst.cfg | 2 +- .../Standard_0_8/s3d_IDEX420_std0.8_TPU98A_E.inst.cfg | 2 +- .../quality/strateo3d_IDEX420/s3d_IDEX420_global_A.inst.cfg | 2 +- .../quality/strateo3d_IDEX420/s3d_IDEX420_global_B.inst.cfg | 2 +- .../quality/strateo3d_IDEX420/s3d_IDEX420_global_C.inst.cfg | 2 +- .../quality/strateo3d_IDEX420/s3d_IDEX420_global_D.inst.cfg | 2 +- .../quality/strateo3d_IDEX420/s3d_IDEX420_global_E.inst.cfg | 2 +- resources/quality/tank_m_base_global_draft.inst.cfg | 2 +- resources/quality/tank_m_base_global_high.inst.cfg | 2 +- resources/quality/tank_m_base_global_standard.inst.cfg | 2 +- .../quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg | 2 +- resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg | 2 +- .../quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_e10_high.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_e16_high.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg | 2 +- resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/abs/tizyx_evy_0.2_abs_high.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/abs/tizyx_evy_0.3_abs_high.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_draft.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_coarse.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_extra_coarse.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.2_flex_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.3_flex_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_draft.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_coarse.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_normal.inst.cfg | 2 +- .../tizyx_evy/flex/tizyx_evy_0.8_flex_extra_coarse.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.2_petg_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.3_petg_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_draft.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_coarse.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_normal.inst.cfg | 2 +- .../tizyx_evy/petg/tizyx_evy_0.8_petg_extra_coarse.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_normal.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/pla/tizyx_evy_0.2_pla_high.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/pla/tizyx_evy_0.3_pla_high.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_draft.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_coarse.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_extra_coarse.inst.cfg | 2 +- .../quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_high.inst.cfg | 2 +- .../tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_normal.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.2_pla_bois_high.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.3_pla_bois_high.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_high.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_normal.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_draft.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_high.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_normal.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_coarse.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_high.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_normal.inst.cfg | 2 +- .../pla_bois/tizyx_evy_0.8_pla_bois_extra_coarse.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_high.inst.cfg | 2 +- .../tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_normal.inst.cfg | 2 +- .../tizyx/tizyx_evy/tizyx_evy_global_Coarse_Quality.inst.cfg | 2 +- .../tizyx/tizyx_evy/tizyx_evy_global_Draft_Quality.inst.cfg | 2 +- .../tizyx_evy/tizyx_evy_global_Extra_Coarse_Quality.inst.cfg | 2 +- .../tizyx/tizyx_evy/tizyx_evy_global_High_Quality.inst.cfg | 2 +- .../tizyx/tizyx_evy/tizyx_evy_global_Normal_Quality.inst.cfg | 2 +- .../tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_high.inst.cfg | 2 +- .../abs/tizyx_evy_dual_classic_abs_normal.inst.cfg | 2 +- .../abs/tizyx_evy_dual_direct_drive_abs_high.inst.cfg | 2 +- .../abs/tizyx_evy_dual_direct_drive_abs_normal.inst.cfg | 2 +- .../flex/tizyx_evy_dual_classic_flex_flex.inst.cfg | 2 +- .../flex/tizyx_evy_dual_classic_flex_flex_only.inst.cfg | 2 +- .../flex/tizyx_evy_dual_direct_drive_flex_flex.inst.cfg | 2 +- .../flex/tizyx_evy_dual_direct_drive_flex_flex_only.inst.cfg | 2 +- .../petg/tizyx_evy_dual_classic_petg_high.inst.cfg | 2 +- .../petg/tizyx_evy_dual_classic_petg_normal.inst.cfg | 2 +- .../petg/tizyx_evy_dual_direct_drive_petg_high.inst.cfg | 2 +- .../petg/tizyx_evy_dual_direct_drive_petg_normal.inst.cfg | 2 +- .../tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex.inst.cfg | 2 +- .../pla/tizyx_evy_dual_classic_pla_flex_only.inst.cfg | 2 +- .../tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_high.inst.cfg | 2 +- .../pla/tizyx_evy_dual_classic_pla_normal.inst.cfg | 2 +- .../tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_pva.inst.cfg | 2 +- .../pla/tizyx_evy_dual_direct_drive_pla_flex.inst.cfg | 2 +- .../pla/tizyx_evy_dual_direct_drive_pla_flex_only.inst.cfg | 2 +- .../pla/tizyx_evy_dual_direct_drive_pla_high.inst.cfg | 2 +- .../pla/tizyx_evy_dual_direct_drive_pla_normal.inst.cfg | 2 +- .../pla/tizyx_evy_dual_direct_drive_pla_pva.inst.cfg | 2 +- .../pla_bois/tizyx_evy_dual_classic_pla_bois_flex.inst.cfg | 2 +- .../pla_bois/tizyx_evy_dual_classic_pla_bois_high.inst.cfg | 2 +- .../pla_bois/tizyx_evy_dual_classic_pla_bois_normal.inst.cfg | 2 +- .../pla_bois/tizyx_evy_dual_direct_drive_pla_bois_flex.inst.cfg | 2 +- .../pla_bois/tizyx_evy_dual_direct_drive_pla_bois_high.inst.cfg | 2 +- .../tizyx_evy_dual_direct_drive_pla_bois_normal.inst.cfg | 2 +- .../tizyx_evy_dual/pva/tizyx_evy_dual_classic_pva_pva.inst.cfg | 2 +- .../pva/tizyx_evy_dual_direct_drive_pva_pva.inst.cfg | 2 +- .../tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg | 2 +- .../tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg | 2 +- .../tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg | 2 +- .../tizyx_evy_dual_global_Normal_Quality.inst.cfg | 2 +- .../tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg | 2 +- resources/quality/tizyx/tizyx_k25/tizyx_k25_high.inst.cfg | 2 +- resources/quality/tizyx/tizyx_k25/tizyx_k25_normal.inst.cfg | 2 +- .../quality/trimaker_cosmosII/trimaker_cosmosII_fast.inst.cfg | 2 +- .../quality/trimaker_cosmosII/trimaker_cosmosII_normal.inst.cfg | 2 +- .../quality/trimaker_cosmosII/trimaker_cosmosII_slow.inst.cfg | 2 +- resources/quality/trimaker_nebula/trimaker_nebula_fast.inst.cfg | 2 +- .../quality/trimaker_nebula/trimaker_nebula_normal.inst.cfg | 2 +- resources/quality/trimaker_nebula/trimaker_nebula_slow.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.2_ABS_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.2_ABS_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.2_ABS_super.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.2_PETG_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.2_PETG_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.2_PETG_super.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.2_PLA_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.2_PLA_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.2_PLA_super.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_ABS_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_ABS_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_ABS_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_ABS_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_PETG_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_PETG_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_PETG_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_PETG_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_PLA_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_PLA_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_PLA_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_PLA_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_TPU_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_TPU_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.3_TPU_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_ABS_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_ABS_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_ABS_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_ABS_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_ABS_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_PETG_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_PETG_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_PETG_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_PETG_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_PETG_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_PLA_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_PLA_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_PLA_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_PLA_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_PLA_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_TPU_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_TPU_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.4_TPU_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_ABS_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_ABS_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_ABS_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_ABS_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_ABS_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_PETG_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_PETG_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_PETG_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_PETG_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_PETG_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_PLA_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_PLA_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_PLA_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_PLA_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_PLA_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_TPU_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_TPU_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.5_TPU_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_ABS_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_ABS_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_ABS_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_PETG_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_PETG_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_PETG_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_PLA_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_PLA_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_PLA_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_PLA_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_TPU_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.6_TPU_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_ABS_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_ABS_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_ABS_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_PETG_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_PETG_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_PETG_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_PLA_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_PLA_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_PLA_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_TPU_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_TPU_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_0.8_TPU_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_global_extra.inst.cfg | 2 +- resources/quality/tronxy/tronxy_global_fine.inst.cfg | 2 +- resources/quality/tronxy/tronxy_global_low.inst.cfg | 2 +- resources/quality/tronxy/tronxy_global_normal.inst.cfg | 2 +- resources/quality/tronxy/tronxy_global_rapid.inst.cfg | 2 +- resources/quality/tronxy/tronxy_global_rough.inst.cfg | 2 +- resources/quality/tronxy/tronxy_global_super.inst.cfg | 2 +- resources/quality/twotrees/abs/two_trees_0.2_ABS_super.inst.cfg | 2 +- resources/quality/twotrees/abs/two_trees_0.2_ABS_ultra.inst.cfg | 2 +- .../quality/twotrees/abs/two_trees_0.3_ABS_adaptive.inst.cfg | 2 +- resources/quality/twotrees/abs/two_trees_0.3_ABS_low.inst.cfg | 2 +- .../quality/twotrees/abs/two_trees_0.3_ABS_standard.inst.cfg | 2 +- resources/quality/twotrees/abs/two_trees_0.3_ABS_super.inst.cfg | 2 +- .../quality/twotrees/abs/two_trees_0.4_ABS_adaptive.inst.cfg | 2 +- resources/quality/twotrees/abs/two_trees_0.4_ABS_low.inst.cfg | 2 +- .../quality/twotrees/abs/two_trees_0.4_ABS_standard.inst.cfg | 2 +- resources/quality/twotrees/abs/two_trees_0.4_ABS_super.inst.cfg | 2 +- .../quality/twotrees/abs/two_trees_0.5_ABS_adaptive.inst.cfg | 2 +- resources/quality/twotrees/abs/two_trees_0.5_ABS_low.inst.cfg | 2 +- .../quality/twotrees/abs/two_trees_0.5_ABS_standard.inst.cfg | 2 +- resources/quality/twotrees/abs/two_trees_0.5_ABS_super.inst.cfg | 2 +- .../quality/twotrees/abs/two_trees_0.6_ABS_standard.inst.cfg | 2 +- resources/quality/twotrees/abs/two_trees_0.8_ABS_draft.inst.cfg | 2 +- resources/quality/twotrees/abs/two_trees_1.0_ABS_draft.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.2_PETG_super.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.2_PETG_ultra.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.3_PETG_adaptive.inst.cfg | 2 +- resources/quality/twotrees/petg/two_trees_0.3_PETG_low.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.3_PETG_standard.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.3_PETG_super.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.4_PETG_adaptive.inst.cfg | 2 +- resources/quality/twotrees/petg/two_trees_0.4_PETG_low.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.4_PETG_standard.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.4_PETG_super.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.5_PETG_adaptive.inst.cfg | 2 +- resources/quality/twotrees/petg/two_trees_0.5_PETG_low.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.5_PETG_standard.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.5_PETG_super.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.6_PETG_standard.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_0.8_PETG_draft.inst.cfg | 2 +- .../quality/twotrees/petg/two_trees_1.0_PETG_draft.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_0.2_PLA_super.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_0.2_PLA_ultra.inst.cfg | 2 +- .../quality/twotrees/pla/two_trees_0.3_PLA_adaptive.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_0.3_PLA_low.inst.cfg | 2 +- .../quality/twotrees/pla/two_trees_0.3_PLA_standard.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_0.3_PLA_super.inst.cfg | 2 +- .../quality/twotrees/pla/two_trees_0.4_PLA_adaptive.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_0.4_PLA_low.inst.cfg | 2 +- .../quality/twotrees/pla/two_trees_0.4_PLA_standard.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_0.4_PLA_super.inst.cfg | 2 +- .../quality/twotrees/pla/two_trees_0.5_PLA_adaptive.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_0.5_PLA_low.inst.cfg | 2 +- .../quality/twotrees/pla/two_trees_0.5_PLA_standard.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_0.5_PLA_super.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_0.6_PLA_draft.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_0.6_PLA_low.inst.cfg | 2 +- .../quality/twotrees/pla/two_trees_0.6_PLA_standard.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_0.8_PLA_draft.inst.cfg | 2 +- resources/quality/twotrees/pla/two_trees_1.0_PLA_draft.inst.cfg | 2 +- .../quality/twotrees/tpu/two_trees_0.3_TPU_adaptive.inst.cfg | 2 +- .../quality/twotrees/tpu/two_trees_0.3_TPU_standard.inst.cfg | 2 +- resources/quality/twotrees/tpu/two_trees_0.3_TPU_super.inst.cfg | 2 +- .../quality/twotrees/tpu/two_trees_0.4_TPU_adaptive.inst.cfg | 2 +- .../quality/twotrees/tpu/two_trees_0.4_TPU_standard.inst.cfg | 2 +- resources/quality/twotrees/tpu/two_trees_0.4_TPU_super.inst.cfg | 2 +- .../quality/twotrees/tpu/two_trees_0.5_TPU_adaptive.inst.cfg | 2 +- .../quality/twotrees/tpu/two_trees_0.5_TPU_standard.inst.cfg | 2 +- resources/quality/twotrees/tpu/two_trees_0.5_TPU_super.inst.cfg | 2 +- .../quality/twotrees/tpu/two_trees_0.6_TPU_standard.inst.cfg | 2 +- resources/quality/twotrees/tpu/two_trees_0.8_TPU_draft.inst.cfg | 2 +- resources/quality/twotrees/tpu/two_trees_1.0_TPU_draft.inst.cfg | 2 +- resources/quality/twotrees/two_trees_global_adaptive.inst.cfg | 2 +- resources/quality/twotrees/two_trees_global_draft.inst.cfg | 2 +- resources/quality/twotrees/two_trees_global_low.inst.cfg | 2 +- resources/quality/twotrees/two_trees_global_standard.inst.cfg | 2 +- resources/quality/twotrees/two_trees_global_super.inst.cfg | 2 +- resources/quality/twotrees/two_trees_global_ultra.inst.cfg | 2 +- resources/quality/ultimaker2/um2_draft.inst.cfg | 2 +- resources/quality/ultimaker2/um2_fast.inst.cfg | 2 +- resources/quality/ultimaker2/um2_high.inst.cfg | 2 +- resources/quality/ultimaker2/um2_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/pla_0.25_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/pla_0.4_fast.inst.cfg | 2 +- resources/quality/ultimaker2_plus/pla_0.4_high.inst.cfg | 2 +- resources/quality/ultimaker2_plus/pla_0.4_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/pla_0.6_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/pla_0.8_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_abs_0.25_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_abs_0.4_fast.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_abs_0.4_high.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_abs_0.4_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_abs_0.6_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_abs_0.8_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpe_0.25_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpe_0.4_fast.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpe_0.4_high.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpe_0.4_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpe_0.6_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpe_0.8_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpep_0.4_draft.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpep_0.4_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpep_0.6_draft.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpep_0.6_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpep_0.8_draft.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_cpep_0.8_normal.inst.cfg | 2 +- .../quality/ultimaker2_plus/um2p_global_Coarse_Quality.inst.cfg | 2 +- .../quality/ultimaker2_plus/um2p_global_Draft_Quality.inst.cfg | 2 +- .../ultimaker2_plus/um2p_global_Extra_Coarse_Quality.inst.cfg | 2 +- .../quality/ultimaker2_plus/um2p_global_Fast_Quality.inst.cfg | 2 +- .../quality/ultimaker2_plus/um2p_global_High_Quality.inst.cfg | 2 +- .../quality/ultimaker2_plus/um2p_global_Normal_Quality.inst.cfg | 2 +- .../um2p_global_Slightly_Coarse_Quality.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_nylon_0.25_high.inst.cfg | 2 +- .../quality/ultimaker2_plus/um2p_nylon_0.25_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_nylon_0.4_fast.inst.cfg | 2 +- .../quality/ultimaker2_plus/um2p_nylon_0.4_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_nylon_0.6_fast.inst.cfg | 2 +- .../quality/ultimaker2_plus/um2p_nylon_0.6_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_nylon_0.8_draft.inst.cfg | 2 +- .../quality/ultimaker2_plus/um2p_nylon_0.8_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pc_0.25_high.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pc_0.25_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pc_0.4_fast.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pc_0.4_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pc_0.6_fast.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pc_0.6_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pc_0.8_draft.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pc_0.8_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pp_0.4_fast.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pp_0.4_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pp_0.6_draft.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pp_0.6_fast.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_pp_0.8_draft.inst.cfg | 2 +- .../quality/ultimaker2_plus/um2p_pp_0.8_verydraft.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_tpu_0.25_high.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_tpu_0.4_normal.inst.cfg | 2 +- resources/quality/ultimaker2_plus/um2p_tpu_0.6_fast.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_abs_0.25_normal.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_abs_0.4_fast.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_abs_0.4_high.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_abs_0.4_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_abs_0.6_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_abs_0.8_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_cpe_0.25_normal.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_cpe_0.4_fast.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_cpe_0.4_high.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_cpe_0.4_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_cpe_0.6_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_cpe_0.8_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_cpep_0.4_draft.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_cpep_0.4_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_cpep_0.6_draft.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_cpep_0.6_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_cpep_0.8_draft.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_cpep_0.8_normal.inst.cfg | 2 +- .../um2pc_global_Coarse_Quality.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_global_Draft_Quality.inst.cfg | 2 +- .../um2pc_global_Extra_Coarse_Quality.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_global_Fast_Quality.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_global_High_Quality.inst.cfg | 2 +- .../um2pc_global_Normal_Quality.inst.cfg | 2 +- .../um2pc_global_Slightly_Coarse_Quality.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_nylon_0.25_high.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_nylon_0.25_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_nylon_0.4_fast.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_nylon_0.4_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_nylon_0.6_fast.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_nylon_0.6_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_nylon_0.8_draft.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_nylon_0.8_normal.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_pc_0.25_high.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_pc_0.25_normal.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_pc_0.4_fast.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_pc_0.4_normal.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_pc_0.6_fast.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_pc_0.6_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_pc_0.8_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_petg_0.25_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_petg_0.4_draft.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_petg_0.4_fast.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_petg_0.4_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_petg_0.6_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_petg_0.8_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_pla_0.25_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_pla_0.4_draft.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_pla_0.4_fast.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_pla_0.4_high.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_pla_0.4_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_pla_0.6_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_pla_0.8_normal.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_pp_0.4_fast.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_pp_0.4_normal.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_pp_0.6_draft.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_pp_0.6_fast.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_pp_0.8_draft.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_pp_0.8_verydraft.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_tpla_0.25_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_tpla_0.4_draft.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_tpla_0.4_fast.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_tpla_0.4_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_tpla_0.6_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_tpla_0.8_normal.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_tpu_0.25_high.inst.cfg | 2 +- .../ultimaker2_plus_connect/um2pc_tpu_0.4_normal.inst.cfg | 2 +- .../quality/ultimaker2_plus_connect/um2pc_tpu_0.6_fast.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.25_ABS_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.25_CPE_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.25_Nylon_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.25_PETG_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.25_PLA_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.25_TPLA_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_CPE_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_CPE_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_CPE_High_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_CPE_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_Nylon_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_Nylon_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_Nylon_High_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_Nylon_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_PETG_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PETG_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_PETG_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_TPU_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.4_TPU_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.8_ABS_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_ABS_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_ABS_Verydraft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg | 2 +- .../ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.8_PC_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PC_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PC_Verydraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_bb0.8_PVA_Draft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_bb0.8_PVA_Superdraft_Print.inst.cfg | 2 +- .../quality/ultimaker3/um3_bb0.8_PVA_Verydraft_Print.inst.cfg | 2 +- resources/quality/ultimaker3/um3_global_Draft_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg | 2 +- resources/quality/ultimaker3/um3_global_Normal_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_global_Superdraft_Quality.inst.cfg | 2 +- .../quality/ultimaker3/um3_global_Verydraft_Quality.inst.cfg | 2 +- .../ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm.inst.cfg | 2 +- .../ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm.inst.cfg | 2 +- .../ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm.inst.cfg | 2 +- .../um_methodx_1c_um-nylon12-cf-175_0.2mm.inst.cfg | 2 +- .../ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm.inst.cfg | 2 +- .../ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm.inst.cfg | 2 +- .../um_methodx_2xa_um-rapidrinse-175_0.2mm.inst.cfg | 2 +- .../ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm.inst.cfg | 2 +- .../ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg | 2 +- .../um_methodx_labs_um-abscf-175_0.2mm.inst.cfg | 2 +- .../um_methodx_labs_um-absr-175_0.2mm.inst.cfg | 2 +- .../ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm.inst.cfg | 2 +- .../um_methodx_labs_um-nylon12-cf-175_0.2mm.inst.cfg | 2 +- .../um_methodxl_1c_um-abscf-175_0.2mm.inst.cfg | 2 +- .../um_methodxl_1c_um-absr-175_0.2mm.inst.cfg | 2 +- .../ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm.inst.cfg | 2 +- .../um_methodxl_1c_um-nylon12-cf-175_0.2mm.inst.cfg | 2 +- .../um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg | 2 +- .../um_methodxl_1xa_um-asa-175_0.2mm.inst.cfg | 2 +- .../um_methodxl_2xa_um-rapidrinse-175_0.2mm.inst.cfg | 2 +- .../um_methodxl_2xa_um-sr30-175_0.2mm.inst.cfg | 2 +- .../um_methodxl_global_Draft_Quality.inst.cfg | 2 +- .../um_methodxl_labs_um-abscf-175_0.2mm.inst.cfg | 2 +- .../um_methodxl_labs_um-absr-175_0.2mm.inst.cfg | 2 +- .../um_methodxl_labs_um-asa-175_0.2mm.inst.cfg | 2 +- .../um_methodxl_labs_um-nylon12-cf-175_0.2mm.inst.cfg | 2 +- .../ultimaker_original/umo_global_Coarse_Quality.inst.cfg | 2 +- .../ultimaker_original/umo_global_Draft_Quality.inst.cfg | 2 +- .../ultimaker_original/umo_global_Extra_Coarse_Quality.inst.cfg | 2 +- .../quality/ultimaker_original/umo_global_Fast_Quality.inst.cfg | 2 +- .../quality/ultimaker_original/umo_global_High_Quality.inst.cfg | 2 +- .../ultimaker_original/umo_global_Normal_Quality.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.25_cpe_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.25_petg_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.25_pla_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.25_tough-pla_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_nylon_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.6_cffcpe_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.6_cffpa_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.6_gffcpe_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.6_gffpa_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_global_Draft_Quality.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_global_Fast_Quality.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_global_High_Quality.inst.cfg | 2 +- .../quality/ultimaker_s3/um_s3_global_Normal_Quality.inst.cfg | 2 +- .../ultimaker_s3/um_s3_global_Superdraft_Quality.inst.cfg | 2 +- .../ultimaker_s3/um_s3_global_Verydraft_Quality.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.25_cpe_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.25_petg_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.25_pla_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.25_tough-pla_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_nylon_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.4mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.6_cffcpe_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.6_cffpa_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.6_gffcpe_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.6_gffpa_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.3mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg | 2 +- resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_global_Draft_Quality.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_global_Fast_Quality.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_global_High_Quality.inst.cfg | 2 +- .../quality/ultimaker_s5/um_s5_global_Normal_Quality.inst.cfg | 2 +- .../ultimaker_s5/um_s5_global_Superdraft_Quality.inst.cfg | 2 +- .../ultimaker_s5/um_s5_global_Verydraft_Quality.inst.cfg | 2 +- .../abs/nozzle_0_30/abs_nozzle_0.30_layer_0.10.inst.cfg | 2 +- .../abs/nozzle_0_30/abs_nozzle_0.30_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_30/abs_nozzle_0.30_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_30/abs_nozzle_0.30_layer_0.25.inst.cfg | 2 +- .../abs/nozzle_0_40/abs_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../abs/nozzle_0_40/abs_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_40/abs_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_40/abs_nozzle_0.40_layer_0.25.inst.cfg | 2 +- .../abs/nozzle_0_40/abs_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../abs/nozzle_0_50/abs_nozzle_0.50_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_50/abs_nozzle_0.50_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_50/abs_nozzle_0.50_layer_0.25.inst.cfg | 2 +- .../abs/nozzle_0_50/abs_nozzle_0.50_layer_0.30.inst.cfg | 2 +- .../abs/nozzle_0_50/abs_nozzle_0.50_layer_0.35.inst.cfg | 2 +- .../hips/nozzle_0_30/hips_nozzle_0.30_layer_0.10.inst.cfg | 2 +- .../hips/nozzle_0_30/hips_nozzle_0.30_layer_0.15.inst.cfg | 2 +- .../hips/nozzle_0_30/hips_nozzle_0.30_layer_0.20.inst.cfg | 2 +- .../hips/nozzle_0_30/hips_nozzle_0.30_layer_0.25.inst.cfg | 2 +- .../hips/nozzle_0_40/hips_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../hips/nozzle_0_40/hips_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../hips/nozzle_0_40/hips_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../hips/nozzle_0_40/hips_nozzle_0.40_layer_0.25.inst.cfg | 2 +- .../hips/nozzle_0_40/hips_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../hips/nozzle_0_50/hips_nozzle_0.50_layer_0.15.inst.cfg | 2 +- .../hips/nozzle_0_50/hips_nozzle_0.50_layer_0.20.inst.cfg | 2 +- .../hips/nozzle_0_50/hips_nozzle_0.50_layer_0.25.inst.cfg | 2 +- .../hips/nozzle_0_50/hips_nozzle_0.50_layer_0.30.inst.cfg | 2 +- .../hips/nozzle_0_50/hips_nozzle_0.50_layer_0.35.inst.cfg | 2 +- resources/quality/uni_base/layer_0.05.inst.cfg | 2 +- resources/quality/uni_base/layer_0.10.inst.cfg | 2 +- resources/quality/uni_base/layer_0.15.inst.cfg | 2 +- resources/quality/uni_base/layer_0.20.inst.cfg | 2 +- resources/quality/uni_base/layer_0.25.inst.cfg | 2 +- resources/quality/uni_base/layer_0.30.inst.cfg | 2 +- resources/quality/uni_base/layer_0.35.inst.cfg | 2 +- resources/quality/uni_base/layer_0.40.inst.cfg | 2 +- .../petg/nozzle_0_30/petg_nozzle_0.30_layer_0.10.inst.cfg | 2 +- .../petg/nozzle_0_30/petg_nozzle_0.30_layer_0.15.inst.cfg | 2 +- .../petg/nozzle_0_30/petg_nozzle_0.30_layer_0.20.inst.cfg | 2 +- .../petg/nozzle_0_30/petg_nozzle_0.30_layer_0.25.inst.cfg | 2 +- .../petg/nozzle_0_40/petg_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../petg/nozzle_0_40/petg_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../petg/nozzle_0_40/petg_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../petg/nozzle_0_40/petg_nozzle_0.40_layer_0.25.inst.cfg | 2 +- .../petg/nozzle_0_40/petg_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../petg/nozzle_0_50/petg_nozzle_0.50_layer_0.15.inst.cfg | 2 +- .../petg/nozzle_0_50/petg_nozzle_0.50_layer_0.20.inst.cfg | 2 +- .../petg/nozzle_0_50/petg_nozzle_0.50_layer_0.25.inst.cfg | 2 +- .../petg/nozzle_0_50/petg_nozzle_0.50_layer_0.30.inst.cfg | 2 +- .../petg/nozzle_0_50/petg_nozzle_0.50_layer_0.35.inst.cfg | 2 +- .../pla/nozzle_0_30/pla_nozzle_0.30_layer_0.10.inst.cfg | 2 +- .../pla/nozzle_0_30/pla_nozzle_0.30_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_30/pla_nozzle_0.30_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_30/pla_nozzle_0.30_layer_0.25.inst.cfg | 2 +- .../pla/nozzle_0_40/pla_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../pla/nozzle_0_40/pla_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_40/pla_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_40/pla_nozzle_0.40_layer_0.25.inst.cfg | 2 +- .../pla/nozzle_0_40/pla_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_50/pla_nozzle_0.50_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_50/pla_nozzle_0.50_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_50/pla_nozzle_0.50_layer_0.25.inst.cfg | 2 +- .../pla/nozzle_0_50/pla_nozzle_0.50_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_50/pla_nozzle_0.50_layer_0.35.inst.cfg | 2 +- .../vertex_delta_k8800/k8800_ABS_Extreme_Quality.inst.cfg | 2 +- .../quality/vertex_delta_k8800/k8800_ABS_High_Quality.inst.cfg | 2 +- .../vertex_delta_k8800/k8800_ABS_Normal_Quality.inst.cfg | 2 +- .../vertex_delta_k8800/k8800_Global_Extreme_Quality.inst.cfg | 2 +- .../vertex_delta_k8800/k8800_Global_High_Quality.inst.cfg | 2 +- .../vertex_delta_k8800/k8800_Global_Normal_Quality.inst.cfg | 2 +- .../vertex_delta_k8800/k8800_PET_Extreme_Quality.inst.cfg | 2 +- .../quality/vertex_delta_k8800/k8800_PET_High_Quality.inst.cfg | 2 +- .../vertex_delta_k8800/k8800_PET_Normal_Quality.inst.cfg | 2 +- .../vertex_delta_k8800/k8800_PLA_Extreme_Quality.inst.cfg | 2 +- .../quality/vertex_delta_k8800/k8800_PLA_High_Quality.inst.cfg | 2 +- .../vertex_delta_k8800/k8800_PLA_Normal_Quality.inst.cfg | 2 +- .../vertex_delta_k8800/k8800_TPU_Extreme_Quality.inst.cfg | 2 +- .../quality/vertex_delta_k8800/k8800_TPU_High_Quality.inst.cfg | 2 +- .../vertex_delta_k8800/k8800_TPU_Normal_Quality.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.2_ABS_super.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.2_ABS_ultra.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.2_PETG_super.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.2_PETG_ultra.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.2_PLA_super.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.2_PLA_ultra.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.4_ABS_adaptive.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.4_ABS_low.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.4_ABS_standard.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.4_ABS_super.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.4_PETG_adaptive.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.4_PETG_low.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.4_PETG_standard.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.4_PETG_super.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.4_PLA_adaptive.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.4_PLA_low.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.4_PLA_standard.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.4_PLA_super.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.4_TPU_adaptive.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.4_TPU_standard.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.4_TPU_super.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.6_ABS_standard.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.6_PETG_standard.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.6_PLA_draft.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.6_PLA_low.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.6_PLA_standard.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.6_TPU_standard.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.8_ABS_draft.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_0.8_PETG_draft.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.8_PLA_draft.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_0.8_TPU_draft.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_global_adaptive.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_global_draft.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_global_low.inst.cfg | 2 +- .../vivedino/trex2plus/trex2plus_global_standard.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_global_super.inst.cfg | 2 +- .../quality/vivedino/trex2plus/trex2plus_global_ultra.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.2_ABS_super.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.2_ABS_ultra.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.2_PETG_super.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.2_PETG_ultra.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.2_PLA_super.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.2_PLA_ultra.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.4_ABS_adaptive.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.4_ABS_low.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.4_ABS_standard.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.4_ABS_super.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.4_PETG_adaptive.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.4_PETG_low.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.4_PETG_standard.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.4_PETG_super.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.4_PLA_adaptive.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.4_PLA_low.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.4_PLA_standard.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.4_PLA_super.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.4_TPU_adaptive.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.4_TPU_standard.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.4_TPU_super.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.6_ABS_standard.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.6_PETG_standard.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.6_PLA_draft.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.6_PLA_low.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.6_PLA_standard.inst.cfg | 2 +- .../quality/vivedino/trex3/trex3_0.6_TPU_standard.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.8_ABS_draft.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.8_PETG_draft.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.8_PLA_draft.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_0.8_TPU_draft.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_global_adaptive.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_global_draft.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_global_low.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_global_standard.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_global_super.inst.cfg | 2 +- resources/quality/vivedino/trex3/trex3_global_ultra.inst.cfg | 2 +- resources/quality/volumic/sh65_coarse.inst.cfg | 2 +- resources/quality/volumic/sh65_draft.inst.cfg | 2 +- resources/quality/volumic/sh65_extra_coarse.inst.cfg | 2 +- resources/quality/volumic/sh65_fast.inst.cfg | 2 +- resources/quality/volumic/sh65_high.inst.cfg | 2 +- resources/quality/volumic/sh65_normal.inst.cfg | 2 +- resources/quality/volumic/stream20dual_mk2_coarse.inst.cfg | 2 +- resources/quality/volumic/stream20dual_mk2_draft.inst.cfg | 2 +- .../quality/volumic/stream20dual_mk2_extra_coarse.inst.cfg | 2 +- resources/quality/volumic/stream20dual_mk2_fast.inst.cfg | 2 +- resources/quality/volumic/stream20dual_mk2_high.inst.cfg | 2 +- resources/quality/volumic/stream20dual_mk2_normal.inst.cfg | 2 +- resources/quality/volumic/stream20pro_mk2_coarse.inst.cfg | 2 +- resources/quality/volumic/stream20pro_mk2_draft.inst.cfg | 2 +- resources/quality/volumic/stream20pro_mk2_extra_coarse.inst.cfg | 2 +- resources/quality/volumic/stream20pro_mk2_fast.inst.cfg | 2 +- resources/quality/volumic/stream20pro_mk2_high.inst.cfg | 2 +- resources/quality/volumic/stream20pro_mk2_normal.inst.cfg | 2 +- resources/quality/volumic/stream30dual_mk2_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30dual_mk2_draft.inst.cfg | 2 +- .../quality/volumic/stream30dual_mk2_extra_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30dual_mk2_fast.inst.cfg | 2 +- resources/quality/volumic/stream30dual_mk2_high.inst.cfg | 2 +- resources/quality/volumic/stream30dual_mk2_normal.inst.cfg | 2 +- resources/quality/volumic/stream30mk3_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30mk3_draft.inst.cfg | 2 +- resources/quality/volumic/stream30mk3_extra_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30mk3_fast.inst.cfg | 2 +- resources/quality/volumic/stream30mk3_high.inst.cfg | 2 +- resources/quality/volumic/stream30mk3_normal.inst.cfg | 2 +- resources/quality/volumic/stream30pro_mk2_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30pro_mk2_draft.inst.cfg | 2 +- resources/quality/volumic/stream30pro_mk2_extra_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30pro_mk2_fast.inst.cfg | 2 +- resources/quality/volumic/stream30pro_mk2_high.inst.cfg | 2 +- resources/quality/volumic/stream30pro_mk2_normal.inst.cfg | 2 +- resources/quality/volumic/stream30ultra_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30ultra_draft.inst.cfg | 2 +- resources/quality/volumic/stream30ultra_extra_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30ultra_fast.inst.cfg | 2 +- resources/quality/volumic/stream30ultra_high.inst.cfg | 2 +- resources/quality/volumic/stream30ultra_normal.inst.cfg | 2 +- resources/quality/volumic/stream30ultrasc2_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30ultrasc2_draft.inst.cfg | 2 +- .../quality/volumic/stream30ultrasc2_extra_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30ultrasc2_fast.inst.cfg | 2 +- resources/quality/volumic/stream30ultrasc2_high.inst.cfg | 2 +- resources/quality/volumic/stream30ultrasc2_normal.inst.cfg | 2 +- resources/quality/volumic/stream30ultrasc_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30ultrasc_draft.inst.cfg | 2 +- resources/quality/volumic/stream30ultrasc_extra_coarse.inst.cfg | 2 +- resources/quality/volumic/stream30ultrasc_fast.inst.cfg | 2 +- resources/quality/volumic/stream30ultrasc_high.inst.cfg | 2 +- resources/quality/volumic/stream30ultrasc_normal.inst.cfg | 2 +- .../quality/voron2/voron2_global_extrafast_quality.inst.cfg | 2 +- .../quality/voron2/voron2_global_extrafine_quality.inst.cfg | 2 +- resources/quality/voron2/voron2_global_fast_quality.inst.cfg | 2 +- resources/quality/voron2/voron2_global_fine_quality.inst.cfg | 2 +- resources/quality/voron2/voron2_global_normal_quality.inst.cfg | 2 +- resources/quality/voron2/voron2_global_sprint_quality.inst.cfg | 2 +- .../quality/voron2/voron2_global_supersprint_quality.inst.cfg | 2 +- .../quality/voron2/voron2_global_ultrasprint_quality.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_ABS_extrafine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_ABS_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_ABS_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_ABS_normal.inst.cfg | 2 +- .../quality/voron2/voron2_v6_0.25_Nylon_extrafine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_Nylon_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_Nylon_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_Nylon_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PC_extrafine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PC_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PC_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PC_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PETG_extrafine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PETG_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PETG_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PETG_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PLA_extrafine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PLA_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PLA_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.25_PLA_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_ABS_extrafine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_ABS_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_ABS_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_ABS_normal.inst.cfg | 2 +- .../quality/voron2/voron2_v6_0.30_Nylon_extrafine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_Nylon_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_Nylon_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_Nylon_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PC_extrafine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PC_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PC_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PC_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PETG_extrafine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PETG_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PETG_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PETG_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PLA_extrafine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PLA_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PLA_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.30_PLA_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_ABS_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_ABS_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_ABS_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_Nylon_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_Nylon_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_Nylon_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_PC_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_PC_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_PC_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_PETG_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_PETG_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_PETG_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_PLA_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_PLA_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.35_PLA_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_ABS_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_ABS_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_ABS_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_ABS_normal.inst.cfg | 2 +- .../quality/voron2/voron2_v6_0.40_Nylon_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_Nylon_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_Nylon_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_Nylon_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PC_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PC_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PC_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PC_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PETG_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PETG_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PETG_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PETG_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PLA_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PLA_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PLA_fine.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.40_PLA_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_ABS_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_ABS_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_ABS_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_ABS_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_v6_0.50_Nylon_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_Nylon_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_Nylon_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_Nylon_sprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PC_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PC_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PC_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PC_sprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PETG_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PETG_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PETG_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PETG_sprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PLA_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PLA_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PLA_normal.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.50_PLA_sprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_ABS_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_ABS_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_ABS_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_v6_0.60_Nylon_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_Nylon_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_Nylon_sprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_PC_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_PC_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_PC_sprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_PETG_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_PETG_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_PETG_sprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_PLA_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_PLA_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.60_PLA_sprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.80_ABS_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.80_ABS_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_v6_0.80_ABS_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_v6_0.80_Nylon_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.80_Nylon_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_v6_0.80_Nylon_supersprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.80_PC_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.80_PC_sprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.80_PC_supersprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.80_PETG_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.80_PETG_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_v6_0.80_PETG_supersprint.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.80_PLA_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_v6_0.80_PLA_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_v6_0.80_PLA_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.40_ABS_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_0.40_ABS_fast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.40_ABS_normal.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.40_Nylon_extrafast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.40_Nylon_fast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.40_Nylon_normal.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.40_PC_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_0.40_PC_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_0.40_PC_normal.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.40_PETG_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_0.40_PETG_fast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.40_PETG_normal.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.40_PLA_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_0.40_PLA_fast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.40_PLA_normal.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.60_ABS_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_0.60_ABS_fast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.60_ABS_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.60_Nylon_extrafast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.60_Nylon_fast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.60_Nylon_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.60_PC_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_0.60_PC_fast.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_0.60_PC_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.60_PETG_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_0.60_PETG_fast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.60_PETG_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.60_PLA_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_0.60_PLA_fast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.60_PLA_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_ABS_extrafast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_ABS_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_ABS_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_Nylon_extrafast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_Nylon_sprint.inst.cfg | 2 +- .../voron2/voron2_volcano_0.80_Nylon_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_PC_extrafast.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_0.80_PC_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_PC_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_PETG_extrafast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_PETG_sprint.inst.cfg | 2 +- .../voron2/voron2_volcano_0.80_PETG_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_PLA_extrafast.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_PLA_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_0.80_PLA_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.00_ABS_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.00_ABS_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.00_ABS_ultrasprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.00_Nylon_sprint.inst.cfg | 2 +- .../voron2/voron2_volcano_1.00_Nylon_supersprint.inst.cfg | 2 +- .../voron2/voron2_volcano_1.00_Nylon_ultrasprint.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_1.00_PC_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.00_PC_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.00_PC_ultrasprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.00_PETG_sprint.inst.cfg | 2 +- .../voron2/voron2_volcano_1.00_PETG_supersprint.inst.cfg | 2 +- .../voron2/voron2_volcano_1.00_PETG_ultrasprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.00_PLA_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.00_PLA_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.00_PLA_ultrasprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.20_ABS_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.20_ABS_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.20_ABS_ultrasprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.20_Nylon_sprint.inst.cfg | 2 +- .../voron2/voron2_volcano_1.20_Nylon_supersprint.inst.cfg | 2 +- .../voron2/voron2_volcano_1.20_Nylon_ultrasprint.inst.cfg | 2 +- resources/quality/voron2/voron2_volcano_1.20_PC_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.20_PC_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.20_PC_ultrasprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.20_PETG_sprint.inst.cfg | 2 +- .../voron2/voron2_volcano_1.20_PETG_supersprint.inst.cfg | 2 +- .../voron2/voron2_volcano_1.20_PETG_ultrasprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.20_PLA_sprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.20_PLA_supersprint.inst.cfg | 2 +- .../quality/voron2/voron2_volcano_1.20_PLA_ultrasprint.inst.cfg | 2 +- resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_super.inst.cfg | 2 +- resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_ultra.inst.cfg | 2 +- .../quality/vzbot/base/ABS/vzbot_0.3_ABS_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_low.inst.cfg | 2 +- .../quality/vzbot/base/ABS/vzbot_0.3_ABS_standard.inst.cfg | 2 +- resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_super.inst.cfg | 2 +- .../quality/vzbot/base/ABS/vzbot_0.4_ABS_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_low.inst.cfg | 2 +- .../quality/vzbot/base/ABS/vzbot_0.4_ABS_standard.inst.cfg | 2 +- resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_super.inst.cfg | 2 +- .../quality/vzbot/base/ABS/vzbot_0.5_ABS_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_low.inst.cfg | 2 +- .../quality/vzbot/base/ABS/vzbot_0.5_ABS_standard.inst.cfg | 2 +- resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_super.inst.cfg | 2 +- .../quality/vzbot/base/ABS/vzbot_0.6_ABS_standard.inst.cfg | 2 +- resources/quality/vzbot/base/ABS/vzbot_0.8_ABS_draft.inst.cfg | 2 +- resources/quality/vzbot/base/ABS/vzbot_1.0_ABS_draft.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.2_PC_super.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.2_PC_ultra.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.3_PC_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.3_PC_low.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.3_PC_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.3_PC_super.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.4_PC_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.4_PC_low.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.4_PC_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.4_PC_super.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.5_PC_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.5_PC_low.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.5_PC_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.5_PC_super.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.6_PC_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_0.8_PC_draft.inst.cfg | 2 +- resources/quality/vzbot/base/PC/vzbot_1.0_PC_draft.inst.cfg | 2 +- resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_super.inst.cfg | 2 +- resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_ultra.inst.cfg | 2 +- .../quality/vzbot/base/PETG/vzbot_0.3_PETG_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_low.inst.cfg | 2 +- .../quality/vzbot/base/PETG/vzbot_0.3_PETG_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_super.inst.cfg | 2 +- .../quality/vzbot/base/PETG/vzbot_0.4_PETG_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_low.inst.cfg | 2 +- .../quality/vzbot/base/PETG/vzbot_0.4_PETG_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_super.inst.cfg | 2 +- .../quality/vzbot/base/PETG/vzbot_0.5_PETG_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_low.inst.cfg | 2 +- .../quality/vzbot/base/PETG/vzbot_0.5_PETG_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_super.inst.cfg | 2 +- .../quality/vzbot/base/PETG/vzbot_0.6_PETG_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PETG/vzbot_0.8_PETG_draft.inst.cfg | 2 +- resources/quality/vzbot/base/PETG/vzbot_1.0_PETG_draft.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_super.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_ultra.inst.cfg | 2 +- .../quality/vzbot/base/PLA/vzbot_0.3_PLA_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_low.inst.cfg | 2 +- .../quality/vzbot/base/PLA/vzbot_0.3_PLA_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_super.inst.cfg | 2 +- .../quality/vzbot/base/PLA/vzbot_0.4_PLA_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_low.inst.cfg | 2 +- .../quality/vzbot/base/PLA/vzbot_0.4_PLA_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_super.inst.cfg | 2 +- .../quality/vzbot/base/PLA/vzbot_0.5_PLA_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_low.inst.cfg | 2 +- .../quality/vzbot/base/PLA/vzbot_0.5_PLA_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_super.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_draft.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_low.inst.cfg | 2 +- .../quality/vzbot/base/PLA/vzbot_0.6_PLA_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_0.8_PLA_draft.inst.cfg | 2 +- resources/quality/vzbot/base/PLA/vzbot_1.0_PLA_draft.inst.cfg | 2 +- resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_super.inst.cfg | 2 +- resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_ultra.inst.cfg | 2 +- .../quality/vzbot/base/PVA/vzbot_0.3_PVA_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_low.inst.cfg | 2 +- .../quality/vzbot/base/PVA/vzbot_0.3_PVA_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_super.inst.cfg | 2 +- .../quality/vzbot/base/PVA/vzbot_0.4_PVA_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_low.inst.cfg | 2 +- .../quality/vzbot/base/PVA/vzbot_0.4_PVA_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_super.inst.cfg | 2 +- .../quality/vzbot/base/PVA/vzbot_0.5_PVA_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_low.inst.cfg | 2 +- .../quality/vzbot/base/PVA/vzbot_0.5_PVA_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_super.inst.cfg | 2 +- .../quality/vzbot/base/PVA/vzbot_0.6_PVA_standard.inst.cfg | 2 +- resources/quality/vzbot/base/PVA/vzbot_0.8_PVA_draft.inst.cfg | 2 +- resources/quality/vzbot/base/PVA/vzbot_1.0_PVA_draft.inst.cfg | 2 +- .../quality/vzbot/base/TPU/vzbot_0.3_TPU_adaptive.inst.cfg | 2 +- .../quality/vzbot/base/TPU/vzbot_0.3_TPU_standard.inst.cfg | 2 +- resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_super.inst.cfg | 2 +- .../quality/vzbot/base/TPU/vzbot_0.4_TPU_adaptive.inst.cfg | 2 +- .../quality/vzbot/base/TPU/vzbot_0.4_TPU_standard.inst.cfg | 2 +- resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_super.inst.cfg | 2 +- .../quality/vzbot/base/TPU/vzbot_0.5_TPU_adaptive.inst.cfg | 2 +- .../quality/vzbot/base/TPU/vzbot_0.5_TPU_standard.inst.cfg | 2 +- resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_super.inst.cfg | 2 +- .../quality/vzbot/base/TPU/vzbot_0.6_TPU_standard.inst.cfg | 2 +- resources/quality/vzbot/base/TPU/vzbot_0.8_TPU_draft.inst.cfg | 2 +- resources/quality/vzbot/base/TPU/vzbot_1.0_TPU_draft.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.2_nylon_super.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.2_nylon_ultra.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.3_nylon_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_low.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.3_nylon_standard.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.3_nylon_super.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.4_nylon_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_low.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.4_nylon_standard.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.4_nylon_super.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.5_nylon_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_low.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.5_nylon_standard.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.5_nylon_super.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.6_nylon_standard.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_0.8_nylon_draft.inst.cfg | 2 +- .../quality/vzbot/base/nylon/vzbot_1.0_nylon_draft.inst.cfg | 2 +- resources/quality/vzbot/base/vzbot_global_adaptive.inst.cfg | 2 +- resources/quality/vzbot/base/vzbot_global_draft.inst.cfg | 2 +- resources/quality/vzbot/base/vzbot_global_low.inst.cfg | 2 +- resources/quality/vzbot/base/vzbot_global_standard.inst.cfg | 2 +- resources/quality/vzbot/base/vzbot_global_super.inst.cfg | 2 +- resources/quality/vzbot/base/vzbot_global_ultra.inst.cfg | 2 +- .../weedo_x40_0.4_extrudr_GreenTECPro_Black_Draft.inst.cfg | 2 +- .../weedo_x40_0.4_extrudr_GreenTECPro_Black_Extra_Fine.inst.cfg | 2 +- .../weedo_x40_0.4_extrudr_GreenTECPro_Black_Fine.inst.cfg | 2 +- .../weedo_x40_0.4_extrudr_GreenTECPro_Black_Normal.inst.cfg | 2 +- .../Verbatim/weedo_x40_0.4_Verbatim_BVOH_Draft.inst.cfg | 2 +- .../Verbatim/weedo_x40_0.4_Verbatim_BVOH_Extra_Fine.inst.cfg | 2 +- .../Verbatim/weedo_x40_0.4_Verbatim_BVOH_Fine.inst.cfg | 2 +- .../Verbatim/weedo_x40_0.4_Verbatim_BVOH_Normal.inst.cfg | 2 +- .../Verbatim/weedo_x40_0.6_Verbatim_BVOH_Coarse.inst.cfg | 2 +- .../Verbatim/weedo_x40_0.6_Verbatim_BVOH_Draft.inst.cfg | 2 +- .../Verbatim/weedo_x40_0.6_Verbatim_BVOH_Fine.inst.cfg | 2 +- .../Verbatim/weedo_x40_0.6_Verbatim_BVOH_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_ABS_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_ABS_Extra_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_ABS_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_ABS_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_ASA_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_ASA_Extra_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_ASA_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_ASA_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_BVOH_Extra_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Fine.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_BVOH_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_CPE_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_CPE_Extra_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_CPE_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_CPE_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_HIPS_Extra_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Fine.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_HIPS_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_PETG_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_PETG_Extra_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_PETG_Fine.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_PETG_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_PLA_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_PLA_Extra_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_PLA_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_PLA_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_PVA_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_PVA_Extra_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_PVA_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_PVA_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_TPU_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.4_generic_TPU_Extra_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_TPU_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.4_generic_TPU_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_ABS_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_ABS_Draft.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_ABS_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_ABS_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_ASA_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_ASA_Draft.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_ASA_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_ASA_Normal.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.6_generic_BVOH_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Draft.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Fine.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.6_generic_BVOH_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_CPE_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_CPE_Draft.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_CPE_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_CPE_Normal.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.6_generic_HIPS_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Draft.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Fine.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.6_generic_HIPS_Normal.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.6_generic_PETG_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_PETG_Draft.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_PETG_Fine.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.6_generic_PETG_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_PLA_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_PLA_Draft.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_PLA_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_PLA_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_PVA_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_PVA_Draft.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_PVA_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_PVA_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_TPU_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_TPU_Draft.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_TPU_Fine.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.6_generic_TPU_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_ABS_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_ABS_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_ABS_Extra_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_ABS_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_ASA_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_ASA_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_ASA_Extra_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_ASA_Normal.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_BVOH_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_BVOH_Extra_Coarse.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_BVOH_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_CPE_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_CPE_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_CPE_Extra_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_CPE_Normal.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_HIPS_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_HIPS_Extra_Coarse.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_HIPS_Normal.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_PETG_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_PETG_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_PETG_Extra_Coarse.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_PETG_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_PLA_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_PLA_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_PLA_Extra_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_PLA_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_PVA_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_PVA_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_PVA_Extra_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_PVA_Normal.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_TPU_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_TPU_Draft.inst.cfg | 2 +- .../weedo_x40/weedo_x40_0.8_generic_TPU_Extra_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_0.8_generic_TPU_Normal.inst.cfg | 2 +- resources/quality/weedo_x40/weedo_x40_global_Coarse.inst.cfg | 2 +- resources/quality/weedo_x40/weedo_x40_global_Draft.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_global_Extra_Coarse.inst.cfg | 2 +- .../quality/weedo_x40/weedo_x40_global_Extra_Fine.inst.cfg | 2 +- resources/quality/weedo_x40/weedo_x40_global_Fine.inst.cfg | 2 +- resources/quality/weedo_x40/weedo_x40_global_Normal.inst.cfg | 2 +- ...xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_fine.inst.cfg | 2 +- ...xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_normal.inst.cfg | 2 +- ...inting_da_vinci_jr_pro_xplus_copper_0.40_abs_coarse.inst.cfg | 2 +- ...rinting_da_vinci_jr_pro_xplus_copper_0.40_abs_draft.inst.cfg | 2 +- ...printing_da_vinci_jr_pro_xplus_copper_0.40_abs_fine.inst.cfg | 2 +- ...inting_da_vinci_jr_pro_xplus_copper_0.40_abs_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_abs_coarse.inst.cfg | 2 +- .../abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_draft.inst.cfg | 2 +- .../abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_abs_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_abs_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_abs_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_abs_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_abs_normal.inst.cfg | 2 +- ...inting_da_vinci_1p0_pro_copper_0.40_antibact_coarse.inst.cfg | 2 +- ...rinting_da_vinci_1p0_pro_copper_0.40_antibact_draft.inst.cfg | 2 +- ...printing_da_vinci_1p0_pro_copper_0.40_antibact_fine.inst.cfg | 2 +- ...inting_da_vinci_1p0_pro_copper_0.40_antibact_normal.inst.cfg | 2 +- ...ng_da_vinci_jr_1p0a_pro_copper_0.40_antibact_coarse.inst.cfg | 2 +- ...ing_da_vinci_jr_1p0a_pro_copper_0.40_antibact_draft.inst.cfg | 2 +- ...ting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_fine.inst.cfg | 2 +- ...ng_da_vinci_jr_1p0a_pro_copper_0.40_antibact_normal.inst.cfg | 2 +- ..._da_vinci_jr_pro_xeplus_copper_0.40_antibact_coarse.inst.cfg | 2 +- ...g_da_vinci_jr_pro_xeplus_copper_0.40_antibact_draft.inst.cfg | 2 +- ...ng_da_vinci_jr_pro_xeplus_copper_0.40_antibact_fine.inst.cfg | 2 +- ..._da_vinci_jr_pro_xeplus_copper_0.40_antibact_normal.inst.cfg | 2 +- ...g_da_vinci_jr_pro_xplus_copper_0.40_antibact_coarse.inst.cfg | 2 +- ...ng_da_vinci_jr_pro_xplus_copper_0.40_antibact_draft.inst.cfg | 2 +- ...ing_da_vinci_jr_pro_xplus_copper_0.40_antibact_fine.inst.cfg | 2 +- ...g_da_vinci_jr_pro_xplus_copper_0.40_antibact_normal.inst.cfg | 2 +- ...zprinting_da_vinci_jr_w_pro_ss_0.40_antibact_coarse.inst.cfg | 2 +- ...yzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_draft.inst.cfg | 2 +- ...xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_fine.inst.cfg | 2 +- ...zprinting_da_vinci_jr_w_pro_ss_0.40_antibact_normal.inst.cfg | 2 +- ...yzprinting_da_vinci_pro_evo_hs_0.40_antibact_coarse.inst.cfg | 2 +- ...xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_fine.inst.cfg | 2 +- ...yzprinting_da_vinci_pro_evo_hs_0.40_antibact_normal.inst.cfg | 2 +- ...printing_da_vinci_super_copper_0.40_antibact_coarse.inst.cfg | 2 +- ...zprinting_da_vinci_super_copper_0.40_antibact_draft.inst.cfg | 2 +- ...yzprinting_da_vinci_super_copper_0.40_antibact_fine.inst.cfg | 2 +- ...printing_da_vinci_super_copper_0.40_antibact_normal.inst.cfg | 2 +- ...ng_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_coarse.inst.cfg | 2 +- ...ing_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_draft.inst.cfg | 2 +- ...ting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_fine.inst.cfg | 2 +- ...ng_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_normal.inst.cfg | 2 +- ..._da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_coarse.inst.cfg | 2 +- ...g_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_draft.inst.cfg | 2 +- ...ng_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_fine.inst.cfg | 2 +- ..._da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_normal.inst.cfg | 2 +- ...g_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_coarse.inst.cfg | 2 +- ...ng_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_draft.inst.cfg | 2 +- ...ing_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_fine.inst.cfg | 2 +- ...g_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_normal.inst.cfg | 2 +- ...nting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_coarse.inst.cfg | 2 +- ...inting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_draft.inst.cfg | 2 +- ...rinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_fine.inst.cfg | 2 +- ...nting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_normal.inst.cfg | 2 +- ...inting_da_vinci_pro_evo_hs_0.40_carbon_fiber_coarse.inst.cfg | 2 +- ...rinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_draft.inst.cfg | 2 +- ...printing_da_vinci_pro_evo_hs_0.40_carbon_fiber_fine.inst.cfg | 2 +- ...inting_da_vinci_pro_evo_hs_0.40_carbon_fiber_normal.inst.cfg | 2 +- ...printing_da_vinci_super_hs_0.40_carbon_fiber_coarse.inst.cfg | 2 +- ...zprinting_da_vinci_super_hs_0.40_carbon_fiber_draft.inst.cfg | 2 +- ...yzprinting_da_vinci_super_hs_0.40_carbon_fiber_fine.inst.cfg | 2 +- ...printing_da_vinci_super_hs_0.40_carbon_fiber_normal.inst.cfg | 2 +- ...inci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_coarse.inst.cfg | 2 +- ...vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_draft.inst.cfg | 2 +- ..._vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_fine.inst.cfg | 2 +- ...inci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_normal.inst.cfg | 2 +- ...ng_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_coarse.inst.cfg | 2 +- ...ing_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_draft.inst.cfg | 2 +- ...ting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_fine.inst.cfg | 2 +- ...ng_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_normal.inst.cfg | 2 +- ...g_da_vinci_super_copper_0.40_colorinkjet_pla_coarse.inst.cfg | 2 +- ...ng_da_vinci_super_copper_0.40_colorinkjet_pla_draft.inst.cfg | 2 +- ...ing_da_vinci_super_copper_0.40_colorinkjet_pla_fine.inst.cfg | 2 +- ...g_da_vinci_super_copper_0.40_colorinkjet_pla_normal.inst.cfg | 2 +- ...printing_da_vinci_super_copper_0.40_flexible_coarse.inst.cfg | 2 +- ...zprinting_da_vinci_super_copper_0.40_flexible_draft.inst.cfg | 2 +- ...yzprinting_da_vinci_super_copper_0.40_flexible_fine.inst.cfg | 2 +- ...printing_da_vinci_super_copper_0.40_flexible_normal.inst.cfg | 2 +- ...inting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_coarse.inst.cfg | 2 +- ...rinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_draft.inst.cfg | 2 +- ...printing_da_vinci_jr_1p0a_pro_hs_0.40_metallic_fine.inst.cfg | 2 +- ...inting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_normal.inst.cfg | 2 +- ...ting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_coarse.inst.cfg | 2 +- ...nting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_draft.inst.cfg | 2 +- ...inting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_fine.inst.cfg | 2 +- ...ting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_normal.inst.cfg | 2 +- ...nting_da_vinci_jr_pro_xplus_hs_0.40_metallic_coarse.inst.cfg | 2 +- ...inting_da_vinci_jr_pro_xplus_hs_0.40_metallic_draft.inst.cfg | 2 +- ...rinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_fine.inst.cfg | 2 +- ...nting_da_vinci_jr_pro_xplus_hs_0.40_metallic_normal.inst.cfg | 2 +- ...zprinting_da_vinci_jr_w_pro_hs_0.40_metallic_coarse.inst.cfg | 2 +- ...yzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_draft.inst.cfg | 2 +- ...xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_fine.inst.cfg | 2 +- ...zprinting_da_vinci_jr_w_pro_hs_0.40_metallic_normal.inst.cfg | 2 +- ...yzprinting_da_vinci_pro_evo_hs_0.40_metallic_coarse.inst.cfg | 2 +- ...xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_fine.inst.cfg | 2 +- ...yzprinting_da_vinci_pro_evo_hs_0.40_metallic_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_hs_0.40_metallic_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_hs_0.40_metallic_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_hs_0.40_metallic_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_hs_0.40_metallic_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_normal.inst.cfg | 2 +- ...xyzprinting_da_vinci_super_copper_0.40_nylon_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_nylon_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_nylon_fine.inst.cfg | 2 +- ...xyzprinting_da_vinci_super_copper_0.40_nylon_normal.inst.cfg | 2 +- ...printing_da_vinci_pro_evo_hsht_0.60_pahtcf15_coarse.inst.cfg | 2 +- ...zprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_draft.inst.cfg | 2 +- ...yzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_fine.inst.cfg | 2 +- ...printing_da_vinci_pro_evo_hsht_0.60_pahtcf15_normal.inst.cfg | 2 +- .../pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_coarse.inst.cfg | 2 +- .../pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_draft.inst.cfg | 2 +- .../pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_fine.inst.cfg | 2 +- .../pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_coarse.inst.cfg | 2 +- .../pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_draft.inst.cfg | 2 +- .../pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_normal.inst.cfg | 2 +- ...zprinting_da_vinci_pro_evo_hsht_0.60_petcf15_coarse.inst.cfg | 2 +- ...yzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_draft.inst.cfg | 2 +- ...xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_fine.inst.cfg | 2 +- ...zprinting_da_vinci_pro_evo_hsht_0.60_petcf15_normal.inst.cfg | 2 +- ...yzprinting_da_vinci_1p0_pro_copper_0.40_petg_coarse.inst.cfg | 2 +- ...xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_fine.inst.cfg | 2 +- ...yzprinting_da_vinci_1p0_pro_copper_0.40_petg_normal.inst.cfg | 2 +- ...inting_da_vinci_jr_1p0a_pro_copper_0.40_petg_coarse.inst.cfg | 2 +- ...rinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_draft.inst.cfg | 2 +- ...printing_da_vinci_jr_1p0a_pro_copper_0.40_petg_fine.inst.cfg | 2 +- ...inting_da_vinci_jr_1p0a_pro_copper_0.40_petg_normal.inst.cfg | 2 +- ...ting_da_vinci_jr_pro_xeplus_copper_0.40_petg_coarse.inst.cfg | 2 +- ...nting_da_vinci_jr_pro_xeplus_copper_0.40_petg_draft.inst.cfg | 2 +- ...inting_da_vinci_jr_pro_xeplus_copper_0.40_petg_fine.inst.cfg | 2 +- ...ting_da_vinci_jr_pro_xeplus_copper_0.40_petg_normal.inst.cfg | 2 +- ...nting_da_vinci_jr_pro_xplus_copper_0.40_petg_coarse.inst.cfg | 2 +- ...inting_da_vinci_jr_pro_xplus_copper_0.40_petg_draft.inst.cfg | 2 +- ...rinting_da_vinci_jr_pro_xplus_copper_0.40_petg_fine.inst.cfg | 2 +- ...nting_da_vinci_jr_pro_xplus_copper_0.40_petg_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_petg_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_petg_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_petg_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_petg_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_petg_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_petg_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_petg_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_petg_normal.inst.cfg | 2 +- ...xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_fine.inst.cfg | 2 +- ...xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_normal.inst.cfg | 2 +- ...rinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_coarse.inst.cfg | 2 +- ...printing_da_vinci_jr_1p0a_pro_copper_0.40_pla_draft.inst.cfg | 2 +- ...zprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_fine.inst.cfg | 2 +- ...rinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_normal.inst.cfg | 2 +- ...nting_da_vinci_jr_pro_xeplus_copper_0.40_pla_coarse.inst.cfg | 2 +- ...inting_da_vinci_jr_pro_xeplus_copper_0.40_pla_draft.inst.cfg | 2 +- ...rinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_fine.inst.cfg | 2 +- ...nting_da_vinci_jr_pro_xeplus_copper_0.40_pla_normal.inst.cfg | 2 +- ...inting_da_vinci_jr_pro_xplus_copper_0.40_pla_coarse.inst.cfg | 2 +- ...rinting_da_vinci_jr_pro_xplus_copper_0.40_pla_draft.inst.cfg | 2 +- ...printing_da_vinci_jr_pro_xplus_copper_0.40_pla_fine.inst.cfg | 2 +- ...inting_da_vinci_jr_pro_xplus_copper_0.40_pla_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_draft.inst.cfg | 2 +- .../pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_pla_coarse.inst.cfg | 2 +- .../pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_draft.inst.cfg | 2 +- .../pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_pla_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_pla_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_pla_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_pla_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_pla_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_normal.inst.cfg | 2 +- ...nting_da_vinci_1p0_pro_copper_0.40_tough_pla_coarse.inst.cfg | 2 +- ...inting_da_vinci_1p0_pro_copper_0.40_tough_pla_draft.inst.cfg | 2 +- ...rinting_da_vinci_1p0_pro_copper_0.40_tough_pla_fine.inst.cfg | 2 +- ...nting_da_vinci_1p0_pro_copper_0.40_tough_pla_normal.inst.cfg | 2 +- ...g_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_coarse.inst.cfg | 2 +- ...ng_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_draft.inst.cfg | 2 +- ...ing_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_fine.inst.cfg | 2 +- ...g_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_normal.inst.cfg | 2 +- ...da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_coarse.inst.cfg | 2 +- ..._da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_draft.inst.cfg | 2 +- ...g_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_fine.inst.cfg | 2 +- ...da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_normal.inst.cfg | 2 +- ..._da_vinci_jr_pro_xplus_copper_0.40_tough_pla_coarse.inst.cfg | 2 +- ...g_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_draft.inst.cfg | 2 +- ...ng_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_fine.inst.cfg | 2 +- ..._da_vinci_jr_pro_xplus_copper_0.40_tough_pla_normal.inst.cfg | 2 +- ...printing_da_vinci_jr_w_pro_ss_0.40_tough_pla_coarse.inst.cfg | 2 +- ...zprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_draft.inst.cfg | 2 +- ...yzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_fine.inst.cfg | 2 +- ...printing_da_vinci_jr_w_pro_ss_0.40_tough_pla_normal.inst.cfg | 2 +- ...zprinting_da_vinci_pro_evo_hs_0.40_tough_pla_coarse.inst.cfg | 2 +- ...yzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_draft.inst.cfg | 2 +- ...xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_fine.inst.cfg | 2 +- ...zprinting_da_vinci_pro_evo_hs_0.40_tough_pla_normal.inst.cfg | 2 +- ...rinting_da_vinci_super_copper_0.40_tough_pla_coarse.inst.cfg | 2 +- ...printing_da_vinci_super_copper_0.40_tough_pla_draft.inst.cfg | 2 +- ...zprinting_da_vinci_super_copper_0.40_tough_pla_fine.inst.cfg | 2 +- ...rinting_da_vinci_super_copper_0.40_tough_pla_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_coarse.inst.cfg | 2 +- .../tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_draft.inst.cfg | 2 +- .../tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_tpu_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_tpu_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_tpu_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40_tpu_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_1p0_pro_global_0.10_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_1p0_pro_global_0.20_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_1p0_pro_global_0.30_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_1p0_pro_global_0.40_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_1p0a_pro_global_0.10_fine.inst.cfg | 2 +- ...xyzprinting_da_vinci_jr_1p0a_pro_global_0.20_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_1p0a_pro_global_0.30_draft.inst.cfg | 2 +- ...xyzprinting_da_vinci_jr_1p0a_pro_global_0.40_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xep_global_0.10_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xep_global_0.20_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xep_global_0.30_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xep_global_0.40_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xp_global_0.10_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xp_global_0.20_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xp_global_0.30_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xp_global_0.40_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_w_pro_global_0.10_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_w_pro_global_0.20_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_w_pro_global_0.30_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_w_pro_global_0.40_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_global_0.10_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_global_0.20_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_global_0.30_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_global_0.40_coarse.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_global_0.10_fine.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_global_0.20_normal.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_global_0.30_draft.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_global_0.40_coarse.inst.cfg | 2 +- .../abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.05.inst.cfg | 2 +- .../abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.10.inst.cfg | 2 +- .../abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.05.inst.cfg | 2 +- .../abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.10.inst.cfg | 2 +- .../abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.10.inst.cfg | 2 +- .../abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.25.inst.cfg | 2 +- .../abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.10.inst.cfg | 2 +- .../abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.25.inst.cfg | 2 +- .../abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.25.inst.cfg | 2 +- .../abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.10.inst.cfg | 2 +- .../abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.25.inst.cfg | 2 +- .../abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.30.inst.cfg | 2 +- .../abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.35.inst.cfg | 2 +- .../abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.25.inst.cfg | 2 +- .../abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.30.inst.cfg | 2 +- .../abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.35.inst.cfg | 2 +- .../abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.15.inst.cfg | 2 +- .../abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.25.inst.cfg | 2 +- .../abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.30.inst.cfg | 2 +- .../abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.35.inst.cfg | 2 +- .../abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.40.inst.cfg | 2 +- .../abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.20.inst.cfg | 2 +- .../abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.25.inst.cfg | 2 +- .../abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.30.inst.cfg | 2 +- .../abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.35.inst.cfg | 2 +- .../abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.40.inst.cfg | 2 +- .../abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.25.inst.cfg | 2 +- .../abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.30.inst.cfg | 2 +- .../abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.35.inst.cfg | 2 +- .../abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.40.inst.cfg | 2 +- .../petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.05.inst.cfg | 2 +- .../petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.10.inst.cfg | 2 +- .../petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.15.inst.cfg | 2 +- .../petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.05.inst.cfg | 2 +- .../petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.10.inst.cfg | 2 +- .../petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.15.inst.cfg | 2 +- .../petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.20.inst.cfg | 2 +- .../petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.10.inst.cfg | 2 +- .../petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.15.inst.cfg | 2 +- .../petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.20.inst.cfg | 2 +- .../petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.25.inst.cfg | 2 +- .../petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.10.inst.cfg | 2 +- .../petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.15.inst.cfg | 2 +- .../petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.20.inst.cfg | 2 +- .../petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.25.inst.cfg | 2 +- .../petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.25.inst.cfg | 2 +- .../petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.10.inst.cfg | 2 +- .../petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.15.inst.cfg | 2 +- .../petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.20.inst.cfg | 2 +- .../petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.25.inst.cfg | 2 +- .../petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.30.inst.cfg | 2 +- .../petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.35.inst.cfg | 2 +- .../petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.15.inst.cfg | 2 +- .../petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.20.inst.cfg | 2 +- .../petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.25.inst.cfg | 2 +- .../petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.30.inst.cfg | 2 +- .../petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.35.inst.cfg | 2 +- .../petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.15.inst.cfg | 2 +- .../petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.20.inst.cfg | 2 +- .../petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.25.inst.cfg | 2 +- .../petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.30.inst.cfg | 2 +- .../petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.35.inst.cfg | 2 +- .../petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.40.inst.cfg | 2 +- .../petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.20.inst.cfg | 2 +- .../petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.25.inst.cfg | 2 +- .../petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.30.inst.cfg | 2 +- .../petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.35.inst.cfg | 2 +- .../petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.40.inst.cfg | 2 +- .../petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.25.inst.cfg | 2 +- .../petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.30.inst.cfg | 2 +- .../petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.35.inst.cfg | 2 +- .../petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.40.inst.cfg | 2 +- .../pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.05.inst.cfg | 2 +- .../pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.10.inst.cfg | 2 +- .../pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.05.inst.cfg | 2 +- .../pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.10.inst.cfg | 2 +- .../pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.10.inst.cfg | 2 +- .../pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.25.inst.cfg | 2 +- .../pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.10.inst.cfg | 2 +- .../pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.25.inst.cfg | 2 +- .../pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.10.inst.cfg | 2 +- .../pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.25.inst.cfg | 2 +- .../pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.10.inst.cfg | 2 +- .../pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.25.inst.cfg | 2 +- .../pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.35.inst.cfg | 2 +- .../pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.25.inst.cfg | 2 +- .../pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.35.inst.cfg | 2 +- .../pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.15.inst.cfg | 2 +- .../pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.25.inst.cfg | 2 +- .../pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.35.inst.cfg | 2 +- .../pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.40.inst.cfg | 2 +- .../pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.20.inst.cfg | 2 +- .../pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.25.inst.cfg | 2 +- .../pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.35.inst.cfg | 2 +- .../pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.40.inst.cfg | 2 +- .../pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.25.inst.cfg | 2 +- .../pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.30.inst.cfg | 2 +- .../pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.35.inst.cfg | 2 +- .../pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.40.inst.cfg | 2 +- resources/quality/zav_base/zav_layer_0.05.inst.cfg | 2 +- resources/quality/zav_base/zav_layer_0.10.inst.cfg | 2 +- resources/quality/zav_base/zav_layer_0.15.inst.cfg | 2 +- resources/quality/zav_base/zav_layer_0.20.inst.cfg | 2 +- resources/quality/zav_base/zav_layer_0.25.inst.cfg | 2 +- resources/quality/zav_base/zav_layer_0.30.inst.cfg | 2 +- resources/quality/zav_base/zav_layer_0.35.inst.cfg | 2 +- resources/quality/zav_base/zav_layer_0.40.inst.cfg | 2 +- resources/quality/zyyx/zyyx_agile_global_fast.inst.cfg | 2 +- resources/quality/zyyx/zyyx_agile_global_fine.inst.cfg | 2 +- resources/quality/zyyx/zyyx_agile_global_normal.inst.cfg | 2 +- resources/quality/zyyx/zyyx_agile_pro_flex_fast.inst.cfg | 2 +- resources/quality/zyyx/zyyx_agile_pro_flex_fine.inst.cfg | 2 +- resources/quality/zyyx/zyyx_agile_pro_flex_normal.inst.cfg | 2 +- resources/quality/zyyx/zyyx_agile_pro_pla_fast.inst.cfg | 2 +- resources/quality/zyyx/zyyx_agile_pro_pla_fine.inst.cfg | 2 +- resources/quality/zyyx/zyyx_agile_pro_pla_normal.inst.cfg | 2 +- resources/variants/arjun/arjun300_0.2.inst.cfg | 2 +- resources/variants/arjun/arjun300_0.3.inst.cfg | 2 +- resources/variants/arjun/arjun300_0.4.inst.cfg | 2 +- resources/variants/arjun/arjun300_0.5.inst.cfg | 2 +- resources/variants/arjun/arjun300_0.6.inst.cfg | 2 +- resources/variants/arjun/arjun300_0.8.inst.cfg | 2 +- resources/variants/arjun/arjun300_dm_0.2.inst.cfg | 2 +- resources/variants/arjun/arjun300_dm_0.3.inst.cfg | 2 +- resources/variants/arjun/arjun300_dm_0.4.inst.cfg | 2 +- resources/variants/arjun/arjun300_dm_0.5.inst.cfg | 2 +- resources/variants/arjun/arjun300_dm_0.6.inst.cfg | 2 +- resources/variants/arjun/arjun300_dm_0.8.inst.cfg | 2 +- resources/variants/arjun/arjun300_mm_0.2.inst.cfg | 2 +- resources/variants/arjun/arjun300_mm_0.3.inst.cfg | 2 +- resources/variants/arjun/arjun300_mm_0.4.inst.cfg | 2 +- resources/variants/arjun/arjun300_mm_0.5.inst.cfg | 2 +- resources/variants/arjun/arjun300_mm_0.6.inst.cfg | 2 +- resources/variants/arjun/arjun300_mm_0.8.inst.cfg | 2 +- resources/variants/arjun/arjun300_pva_0.2.inst.cfg | 2 +- resources/variants/arjun/arjun300_pva_0.3.inst.cfg | 2 +- resources/variants/arjun/arjun300_pva_0.4.inst.cfg | 2 +- resources/variants/arjun/arjun300_pva_0.5.inst.cfg | 2 +- resources/variants/arjun/arjun300_pva_0.6.inst.cfg | 2 +- resources/variants/arjun/arjun300_pva_0.8.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_0.2.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_0.3.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_0.4.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_0.5.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_0.6.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_0.8.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_dm_0.2.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_dm_0.3.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_dm_0.4.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_dm_0.5.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_dm_0.6.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_dm_0.8.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_mm_0.2.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_mm_0.3.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_mm_0.4.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_mm_0.5.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_mm_0.6.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_mm_0.8.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_pva_0.2.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_pva_0.3.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_pva_0.4.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_pva_0.5.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_pva_0.6.inst.cfg | 2 +- resources/variants/arjun/arjunpro300_pva_0.8.inst.cfg | 2 +- resources/variants/artillery/artillery_base_0.2.inst.cfg | 2 +- resources/variants/artillery/artillery_base_0.3.inst.cfg | 2 +- resources/variants/artillery/artillery_base_0.4.inst.cfg | 2 +- resources/variants/artillery/artillery_base_0.6.inst.cfg | 2 +- resources/variants/artillery/artillery_base_0.8.inst.cfg | 2 +- resources/variants/artillery/artillery_base_1.0.inst.cfg | 2 +- resources/variants/artillery/artillery_genius_0.2.inst.cfg | 2 +- resources/variants/artillery/artillery_genius_0.3.inst.cfg | 2 +- resources/variants/artillery/artillery_genius_0.4.inst.cfg | 2 +- resources/variants/artillery/artillery_genius_0.5.inst.cfg | 2 +- resources/variants/artillery/artillery_genius_0.6.inst.cfg | 2 +- resources/variants/artillery/artillery_genius_0.8.inst.cfg | 2 +- resources/variants/artillery/artillery_genius_1.0.inst.cfg | 2 +- resources/variants/artillery/artillery_hornet_0.2.inst.cfg | 2 +- resources/variants/artillery/artillery_hornet_0.3.inst.cfg | 2 +- resources/variants/artillery/artillery_hornet_0.4.inst.cfg | 2 +- resources/variants/artillery/artillery_hornet_0.5.inst.cfg | 2 +- resources/variants/artillery/artillery_hornet_0.6.inst.cfg | 2 +- resources/variants/artillery/artillery_hornet_0.8.inst.cfg | 2 +- resources/variants/artillery/artillery_hornet_1.0.inst.cfg | 2 +- .../variants/artillery/artillery_sidewinder_x1_0.2.inst.cfg | 2 +- .../variants/artillery/artillery_sidewinder_x1_0.3.inst.cfg | 2 +- .../variants/artillery/artillery_sidewinder_x1_0.4.inst.cfg | 2 +- .../variants/artillery/artillery_sidewinder_x1_0.6.inst.cfg | 2 +- .../variants/artillery/artillery_sidewinder_x1_0.8.inst.cfg | 2 +- .../variants/artillery/artillery_sidewinder_x1_1.0.inst.cfg | 2 +- resources/variants/atmat/atmat_asterion_ht_v6_0.40.inst.cfg | 2 +- resources/variants/atmat/atmat_asterion_ht_v6_0.80.inst.cfg | 2 +- resources/variants/atmat/atmat_asterion_v6_0.40.inst.cfg | 2 +- resources/variants/atmat/atmat_asterion_v6_0.80.inst.cfg | 2 +- resources/variants/atmat/atmat_galaxy_500_v6_0.40.inst.cfg | 2 +- resources/variants/atmat/atmat_galaxy_500_v6_0.80.inst.cfg | 2 +- resources/variants/atmat/atmat_galaxy_600_v6_0.40.inst.cfg | 2 +- resources/variants/atmat/atmat_galaxy_600_v6_0.80.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_300_v1_v6_0.40.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_300_v1_v6_0.80.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_300_v2_v6_0.40.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_300_v2_v6_0.80.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_400_v1_v6_0.40.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_400_v1_v6_0.80.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_400_v2_v6_0.40.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_400_v2_v6_0.80.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_500_v1_v6_0.40.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_500_v1_v6_0.80.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_500_v2_v6_0.40.inst.cfg | 2 +- .../variants/atmat/atmat_signal_pro_500_v2_v6_0.80.inst.cfg | 2 +- resources/variants/atmat/atmat_signal_xl_v6_0.40.inst.cfg | 2 +- resources/variants/atmat/atmat_signal_xl_v6_0.80.inst.cfg | 2 +- resources/variants/atmat/atmat_signal_xxl_v6_0.40.inst.cfg | 2 +- resources/variants/atmat/atmat_signal_xxl_v6_0.80.inst.cfg | 2 +- resources/variants/atmat/atmat_signal_xxxl_v6_0.40.inst.cfg | 2 +- resources/variants/atmat/atmat_signal_xxxl_v6_0.80.inst.cfg | 2 +- resources/variants/atmat/atom3_all_metal_brass_0.2.inst.cfg | 2 +- resources/variants/atmat/atom3_all_metal_brass_0.4.inst.cfg | 2 +- resources/variants/atmat/atom3_all_metal_brass_0.6.inst.cfg | 2 +- .../variants/atmat/atom3_lite_all_metal_brass_0.2.inst.cfg | 2 +- .../variants/atmat/atom3_lite_all_metal_brass_0.4.inst.cfg | 2 +- .../variants/atmat/atom3_lite_all_metal_brass_0.6.inst.cfg | 2 +- resources/variants/atmat/atom3_lite_ptfe_brass_0.2.inst.cfg | 2 +- resources/variants/atmat/atom3_lite_ptfe_brass_0.4.inst.cfg | 2 +- resources/variants/atmat/atom3_lite_ptfe_brass_0.6.inst.cfg | 2 +- resources/variants/atmat/atom3_ptfe_brass_0.2.inst.cfg | 2 +- resources/variants/atmat/atom3_ptfe_brass_0.4.inst.cfg | 2 +- resources/variants/atmat/atom3_ptfe_brass_0.6.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_0.2.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_0.3.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_0.4.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_0.5.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_0.6.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_0.8.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_abl_0.2.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_abl_0.3.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_abl_0.4.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_abl_0.5.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_abl_0.6.inst.cfg | 2 +- resources/variants/biqu/biqu_b1_abl_0.8.inst.cfg | 2 +- resources/variants/biqu/biqu_base_0.2.inst.cfg | 2 +- resources/variants/biqu/biqu_base_0.3.inst.cfg | 2 +- resources/variants/biqu/biqu_base_0.4.inst.cfg | 2 +- resources/variants/biqu/biqu_base_0.5.inst.cfg | 2 +- resources/variants/biqu/biqu_base_0.6.inst.cfg | 2 +- resources/variants/biqu/biqu_base_0.8.inst.cfg | 2 +- resources/variants/biqu/biqu_bx_abl_0.2.inst.cfg | 2 +- resources/variants/biqu/biqu_bx_abl_0.3.inst.cfg | 2 +- resources/variants/biqu/biqu_bx_abl_0.4.inst.cfg | 2 +- resources/variants/biqu/biqu_bx_abl_0.5.inst.cfg | 2 +- resources/variants/biqu/biqu_bx_abl_0.6.inst.cfg | 2 +- resources/variants/biqu/biqu_bx_abl_0.8.inst.cfg | 2 +- resources/variants/biqu/biqu_hurakan_0.2.inst.cfg | 2 +- resources/variants/biqu/biqu_hurakan_0.3.inst.cfg | 2 +- resources/variants/biqu/biqu_hurakan_0.4.inst.cfg | 2 +- resources/variants/biqu/biqu_hurakan_0.5.inst.cfg | 2 +- resources/variants/biqu/biqu_hurakan_0.6.inst.cfg | 2 +- resources/variants/biqu/biqu_hurakan_0.8.inst.cfg | 2 +- resources/variants/blocks/blocks_mkii_0.20.inst.cfg | 2 +- resources/variants/blocks/blocks_mkii_0.30.inst.cfg | 2 +- resources/variants/blocks/blocks_mkii_0.40.inst.cfg | 2 +- resources/variants/blocks/blocks_mkii_0.50.inst.cfg | 2 +- resources/variants/blocks/blocks_mkii_0.60.inst.cfg | 2 +- resources/variants/blocks/blocks_mkii_0.80.inst.cfg | 2 +- resources/variants/blocks/blocks_one_0.20.inst.cfg | 2 +- resources/variants/blocks/blocks_one_0.30.inst.cfg | 2 +- resources/variants/blocks/blocks_one_0.40.inst.cfg | 2 +- resources/variants/blocks/blocks_one_0.50.inst.cfg | 2 +- resources/variants/blocks/blocks_one_0.60.inst.cfg | 2 +- resources/variants/blocks/blocks_one_0.80.inst.cfg | 2 +- resources/variants/blocks/blocks_pros100_0.40.inst.cfg | 2 +- resources/variants/blocks/blocks_pros100_0.50.inst.cfg | 2 +- resources/variants/blocks/blocks_pros100_0.60.inst.cfg | 2 +- resources/variants/blocks/blocks_pros100_0.80.inst.cfg | 2 +- resources/variants/blocks/blocks_pros100_1.0.inst.cfg | 2 +- resources/variants/blocks/blocks_pros100_1.2.inst.cfg | 2 +- resources/variants/blocks/blocks_pros30_0.40.inst.cfg | 2 +- resources/variants/blocks/blocks_pros30_0.50.inst.cfg | 2 +- resources/variants/blocks/blocks_pros30_0.60.inst.cfg | 2 +- resources/variants/blocks/blocks_pros30_0.80.inst.cfg | 2 +- resources/variants/blocks/blocks_pros30_1.0.inst.cfg | 2 +- resources/variants/blocks/blocks_pros30_1.2.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_ht_0.3.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_ht_0.4.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_ht_0.5.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_ht_0.6.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_ht_0.8.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_st_0.20.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_st_0.30.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_st_0.40.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_st_0.50.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_st_0.60.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_st_0.80.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_st_1.0.inst.cfg | 2 +- resources/variants/blocks/blocks_r21_st_1.2.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_ht_0.3.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_ht_0.4.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_ht_0.5.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_ht_0.6.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_ht_0.8.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_st_0.20.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_st_0.30.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_st_0.40.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_st_0.50.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_st_0.60.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_st_0.80.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_st_1.0.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50_st_1.2.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_ht_0.3.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_ht_0.4.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_ht_0.5.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_ht_0.6.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_ht_0.8.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_st_0.20.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_st_0.30.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_st_0.40.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_st_0.50.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_st_0.60.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_st_0.80.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_st_1.0.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50duplicate_st_1.2.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_ht_0.3.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_ht_0.4.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_ht_0.5.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_ht_0.6.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_ht_0.8.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_st_0.20.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_st_0.30.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_st_0.40.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_st_0.50.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_st_0.60.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_st_0.80.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_st_1.0.inst.cfg | 2 +- resources/variants/blocks/blocks_rd50mirror_st_1.2.inst.cfg | 2 +- resources/variants/blocks/blocks_zero_0.20.inst.cfg | 2 +- resources/variants/blocks/blocks_zero_0.30.inst.cfg | 2 +- resources/variants/blocks/blocks_zero_0.40.inst.cfg | 2 +- resources/variants/blocks/blocks_zero_0.50.inst.cfg | 2 +- resources/variants/blocks/blocks_zero_0.60.inst.cfg | 2 +- resources/variants/blocks/blocks_zero_0.80.inst.cfg | 2 +- resources/variants/cartesio/cartesio_0.25.inst.cfg | 2 +- resources/variants/cartesio/cartesio_0.4.inst.cfg | 2 +- resources/variants/cartesio/cartesio_0.8.inst.cfg | 2 +- resources/variants/crazy3dprint/crazy3dprint_base_0.40.inst.cfg | 2 +- .../variants/crazy3dprint/crazy3dprint_cz_300_0.40.inst.cfg | 2 +- resources/variants/creality/creality_base_0.2.inst.cfg | 2 +- resources/variants/creality/creality_base_0.3.inst.cfg | 2 +- resources/variants/creality/creality_base_0.4.inst.cfg | 2 +- resources/variants/creality/creality_base_0.5.inst.cfg | 2 +- resources/variants/creality/creality_base_0.6.inst.cfg | 2 +- resources/variants/creality/creality_base_0.8.inst.cfg | 2 +- resources/variants/creality/creality_base_1.0.inst.cfg | 2 +- resources/variants/creality/creality_cr100_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr10_0.2.inst.cfg | 2 +- resources/variants/creality/creality_cr10_0.3.inst.cfg | 2 +- resources/variants/creality/creality_cr10_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr10_0.5.inst.cfg | 2 +- resources/variants/creality/creality_cr10_0.6.inst.cfg | 2 +- resources/variants/creality/creality_cr10_0.8.inst.cfg | 2 +- resources/variants/creality/creality_cr10_1.0.inst.cfg | 2 +- resources/variants/creality/creality_cr10max_0.2.inst.cfg | 2 +- resources/variants/creality/creality_cr10max_0.3.inst.cfg | 2 +- resources/variants/creality/creality_cr10max_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr10max_0.5.inst.cfg | 2 +- resources/variants/creality/creality_cr10max_0.6.inst.cfg | 2 +- resources/variants/creality/creality_cr10max_0.8.inst.cfg | 2 +- resources/variants/creality/creality_cr10max_1.0.inst.cfg | 2 +- resources/variants/creality/creality_cr10mini_0.2.inst.cfg | 2 +- resources/variants/creality/creality_cr10mini_0.3.inst.cfg | 2 +- resources/variants/creality/creality_cr10mini_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr10mini_0.5.inst.cfg | 2 +- resources/variants/creality/creality_cr10mini_0.6.inst.cfg | 2 +- resources/variants/creality/creality_cr10mini_0.8.inst.cfg | 2 +- resources/variants/creality/creality_cr10mini_1.0.inst.cfg | 2 +- resources/variants/creality/creality_cr10s4_0.2.inst.cfg | 2 +- resources/variants/creality/creality_cr10s4_0.3.inst.cfg | 2 +- resources/variants/creality/creality_cr10s4_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr10s4_0.5.inst.cfg | 2 +- resources/variants/creality/creality_cr10s4_0.6.inst.cfg | 2 +- resources/variants/creality/creality_cr10s4_0.8.inst.cfg | 2 +- resources/variants/creality/creality_cr10s4_1.0.inst.cfg | 2 +- resources/variants/creality/creality_cr10s5_0.2.inst.cfg | 2 +- resources/variants/creality/creality_cr10s5_0.3.inst.cfg | 2 +- resources/variants/creality/creality_cr10s5_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr10s5_0.5.inst.cfg | 2 +- resources/variants/creality/creality_cr10s5_0.6.inst.cfg | 2 +- resources/variants/creality/creality_cr10s5_0.8.inst.cfg | 2 +- resources/variants/creality/creality_cr10s5_1.0.inst.cfg | 2 +- resources/variants/creality/creality_cr10s_0.2.inst.cfg | 2 +- resources/variants/creality/creality_cr10s_0.3.inst.cfg | 2 +- resources/variants/creality/creality_cr10s_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr10s_0.5.inst.cfg | 2 +- resources/variants/creality/creality_cr10s_0.6.inst.cfg | 2 +- resources/variants/creality/creality_cr10s_0.8.inst.cfg | 2 +- resources/variants/creality/creality_cr10s_1.0.inst.cfg | 2 +- resources/variants/creality/creality_cr10smart_0.2.inst.cfg | 2 +- resources/variants/creality/creality_cr10smart_0.3.inst.cfg | 2 +- resources/variants/creality/creality_cr10smart_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr10smart_0.5.inst.cfg | 2 +- resources/variants/creality/creality_cr10smart_0.6.inst.cfg | 2 +- resources/variants/creality/creality_cr10smart_0.8.inst.cfg | 2 +- resources/variants/creality/creality_cr10smart_1.0.inst.cfg | 2 +- resources/variants/creality/creality_cr10spro_0.2.inst.cfg | 2 +- resources/variants/creality/creality_cr10spro_0.3.inst.cfg | 2 +- resources/variants/creality/creality_cr10spro_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr10spro_0.5.inst.cfg | 2 +- resources/variants/creality/creality_cr10spro_0.6.inst.cfg | 2 +- resources/variants/creality/creality_cr10spro_0.8.inst.cfg | 2 +- resources/variants/creality/creality_cr10spro_1.0.inst.cfg | 2 +- resources/variants/creality/creality_cr20_0.2.inst.cfg | 2 +- resources/variants/creality/creality_cr20_0.3.inst.cfg | 2 +- resources/variants/creality/creality_cr20_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr20_0.5.inst.cfg | 2 +- resources/variants/creality/creality_cr20_0.6.inst.cfg | 2 +- resources/variants/creality/creality_cr20_0.8.inst.cfg | 2 +- resources/variants/creality/creality_cr20_1.0.inst.cfg | 2 +- resources/variants/creality/creality_cr20pro_0.2.inst.cfg | 2 +- resources/variants/creality/creality_cr20pro_0.3.inst.cfg | 2 +- resources/variants/creality/creality_cr20pro_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr20pro_0.5.inst.cfg | 2 +- resources/variants/creality/creality_cr20pro_0.6.inst.cfg | 2 +- resources/variants/creality/creality_cr20pro_0.8.inst.cfg | 2 +- resources/variants/creality/creality_cr20pro_1.0.inst.cfg | 2 +- resources/variants/creality/creality_cr6se_0.2.inst.cfg | 2 +- resources/variants/creality/creality_cr6se_0.3.inst.cfg | 2 +- resources/variants/creality/creality_cr6se_0.4.inst.cfg | 2 +- resources/variants/creality/creality_cr6se_0.5.inst.cfg | 2 +- resources/variants/creality/creality_cr6se_0.6.inst.cfg | 2 +- resources/variants/creality/creality_cr6se_0.8.inst.cfg | 2 +- resources/variants/creality/creality_cr6se_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender2_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender2_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender2_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender2_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender2_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender2_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender2_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender3_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender3_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender3_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender3_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender3_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender3_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender3_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender3max_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender3max_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender3max_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender3max_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender3max_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender3max_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender3max_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender3pro_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender3pro_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender3pro_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender3pro_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender3pro_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender3pro_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender3pro_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1plus_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1plus_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1plus_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1plus_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1plus_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1plus_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1plus_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1pro_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1pro_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1pro_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1pro_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1pro_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1pro_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender3s1pro_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender3v2neo_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender3v2neo_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender3v2neo_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender3v2neo_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender3v2neo_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender3v2neo_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender3v2neo_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender3v3se_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender3v3se_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender3v3se_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender3v3se_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender3v3se_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender3v3se_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender3v3se_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender4_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender4_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender4_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender4_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender4_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender4_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender4_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender5_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender5_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender5_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender5_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender5_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender5_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender5_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender5plus_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender5plus_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender5plus_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender5plus_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender5plus_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender5plus_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender5plus_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender5s1_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender5s1_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender5s1_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender5s1_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender5s1_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender5s1_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender5s1_1.0.inst.cfg | 2 +- resources/variants/creality/creality_ender6_0.2.inst.cfg | 2 +- resources/variants/creality/creality_ender6_0.3.inst.cfg | 2 +- resources/variants/creality/creality_ender6_0.4.inst.cfg | 2 +- resources/variants/creality/creality_ender6_0.5.inst.cfg | 2 +- resources/variants/creality/creality_ender6_0.6.inst.cfg | 2 +- resources/variants/creality/creality_ender6_0.8.inst.cfg | 2 +- resources/variants/creality/creality_ender6_1.0.inst.cfg | 2 +- resources/variants/creality/creality_sermoond1_0.2.inst.cfg | 2 +- resources/variants/creality/creality_sermoond1_0.3.inst.cfg | 2 +- resources/variants/creality/creality_sermoond1_0.4.inst.cfg | 2 +- resources/variants/creality/creality_sermoond1_0.5.inst.cfg | 2 +- resources/variants/creality/creality_sermoond1_0.6.inst.cfg | 2 +- resources/variants/creality/creality_sermoond1_0.8.inst.cfg | 2 +- resources/variants/creality/creality_sermoond1_1.0.inst.cfg | 2 +- resources/variants/creality/creality_sermoonv1_0.4.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_bowden_brass_0.4.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_bowden_brass_0.8.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_bowden_brass_1.0.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_bowden_generic_0.2.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_bowden_generic_0.4.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_bowden_generic_0.6.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_bowden_generic_0.8.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_bowden_generic_1.0.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_bowden_generic_1.2.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_bowden_steel_0.4.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_bowden_steel_0.8.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_brass_0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_brass_0.8.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_brass_1.0.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_generic_0.2.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_generic_0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_generic_0.6.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_generic_0.8.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_generic_1.0.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_generic_1.2.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_steel_0.4.inst.cfg | 2 +- .../dagoma/dagoma_pro_430_directdrive_steel_0.8.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_dual_brass_0.4.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_dual_brass_0.8.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_dual_brass_1.0.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_dual_generic_0.2.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_dual_generic_0.4.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_dual_generic_0.6.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_dual_generic_0.8.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_dual_generic_1.0.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_dual_generic_1.2.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_dual_steel_0.4.inst.cfg | 2 +- .../variants/dagoma/dagoma_pro_430_dual_steel_0.8.inst.cfg | 2 +- resources/variants/dagoma/dagoma_sigma_0.4.inst.cfg | 2 +- resources/variants/dagoma/dagoma_sigma_0.8.inst.cfg | 2 +- resources/variants/dagoma/dagoma_sigma_pro_brass_0.4.inst.cfg | 2 +- resources/variants/dagoma/dagoma_sigma_pro_brass_0.8.inst.cfg | 2 +- .../variants/dagoma/dagoma_sigma_pro_dual_brass_0.4.inst.cfg | 2 +- .../variants/dagoma/dagoma_sigma_pro_dual_brass_0.8.inst.cfg | 2 +- .../variants/dagoma/dagoma_sigma_pro_dual_steel_0.4.inst.cfg | 2 +- .../variants/dagoma/dagoma_sigma_pro_dual_steel_0.8.inst.cfg | 2 +- resources/variants/dagoma/dagoma_sigma_pro_steel_0.4.inst.cfg | 2 +- resources/variants/dagoma/dagoma_sigma_pro_steel_0.8.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc20_fbe025.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc20_fbe040.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc20_fbe060.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg | 2 +- .../variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg | 2 +- .../variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg | 2 +- .../variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg | 2 +- resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg | 2 +- resources/variants/diy/diy220_0.2.inst.cfg | 2 +- resources/variants/diy/diy220_0.3.inst.cfg | 2 +- resources/variants/diy/diy220_0.4.inst.cfg | 2 +- resources/variants/diy/diy220_0.5.inst.cfg | 2 +- resources/variants/diy/diy220_0.6.inst.cfg | 2 +- resources/variants/diy/diy220_0.8.inst.cfg | 2 +- resources/variants/dxu/dxu_0.25.inst.cfg | 2 +- resources/variants/dxu/dxu_0.4.inst.cfg | 2 +- resources/variants/dxu/dxu_0.6.inst.cfg | 2 +- resources/variants/dxu/dxu_0.8.inst.cfg | 2 +- resources/variants/dxu/dxu_dual_0.25.inst.cfg | 2 +- resources/variants/dxu/dxu_dual_0.4.inst.cfg | 2 +- resources/variants/dxu/dxu_dual_0.6.inst.cfg | 2 +- resources/variants/dxu/dxu_dual_0.8.inst.cfg | 2 +- resources/variants/dxu/dxu_umo_0.25.inst.cfg | 2 +- resources/variants/dxu/dxu_umo_0.4.inst.cfg | 2 +- resources/variants/dxu/dxu_umo_0.6.inst.cfg | 2 +- resources/variants/dxu/dxu_umo_0.8.inst.cfg | 2 +- resources/variants/dxu/dxu_umo_dual_0.25.inst.cfg | 2 +- resources/variants/dxu/dxu_umo_dual_0.4.inst.cfg | 2 +- resources/variants/dxu/dxu_umo_dual_0.6.inst.cfg | 2 +- resources/variants/dxu/dxu_umo_dual_0.8.inst.cfg | 2 +- .../elegoo/elegoo_neptune_1/elegoo_neptune_1_0.20.inst.cfg | 2 +- .../elegoo/elegoo_neptune_1/elegoo_neptune_1_0.40.inst.cfg | 2 +- .../elegoo/elegoo_neptune_1/elegoo_neptune_1_0.60.inst.cfg | 2 +- .../elegoo/elegoo_neptune_1/elegoo_neptune_1_0.80.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2/elegoo_neptune_2_0.20.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2/elegoo_neptune_2_0.40.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2/elegoo_neptune_2_0.60.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2/elegoo_neptune_2_0.80.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.20.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.40.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.60.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.80.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.20.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.40.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.60.inst.cfg | 2 +- .../elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.80.inst.cfg | 2 +- .../elegoo/elegoo_neptune_3/elegoo_neptune_3_0.20.inst.cfg | 2 +- .../elegoo/elegoo_neptune_3/elegoo_neptune_3_0.40.inst.cfg | 2 +- .../elegoo/elegoo_neptune_3/elegoo_neptune_3_0.60.inst.cfg | 2 +- .../elegoo/elegoo_neptune_3/elegoo_neptune_3_0.80.inst.cfg | 2 +- .../elegoo_neptune_3max/elegoo_neptune_3max_0.20.inst.cfg | 2 +- .../elegoo_neptune_3max/elegoo_neptune_3max_0.40.inst.cfg | 2 +- .../elegoo_neptune_3max/elegoo_neptune_3max_0.60.inst.cfg | 2 +- .../elegoo_neptune_3max/elegoo_neptune_3max_0.80.inst.cfg | 2 +- .../elegoo_neptune_3plus/elegoo_neptune_3plus_0.20.inst.cfg | 2 +- .../elegoo_neptune_3plus/elegoo_neptune_3plus_0.40.inst.cfg | 2 +- .../elegoo_neptune_3plus/elegoo_neptune_3plus_0.60.inst.cfg | 2 +- .../elegoo_neptune_3plus/elegoo_neptune_3plus_0.80.inst.cfg | 2 +- .../elegoo_neptune_3pro/elegoo_neptune_3pro_0.20.inst.cfg | 2 +- .../elegoo_neptune_3pro/elegoo_neptune_3pro_0.40.inst.cfg | 2 +- .../elegoo_neptune_3pro/elegoo_neptune_3pro_0.60.inst.cfg | 2 +- .../elegoo_neptune_3pro/elegoo_neptune_3pro_0.80.inst.cfg | 2 +- .../elegoo/elegoo_neptune_4/elegoo_neptune_4_0.20.inst.cfg | 2 +- .../elegoo/elegoo_neptune_4/elegoo_neptune_4_0.40.inst.cfg | 2 +- .../elegoo/elegoo_neptune_4/elegoo_neptune_4_0.60.inst.cfg | 2 +- .../elegoo/elegoo_neptune_4/elegoo_neptune_4_0.80.inst.cfg | 2 +- .../elegoo_neptune_4max/elegoo_neptune_4max_0.20.inst.cfg | 2 +- .../elegoo_neptune_4max/elegoo_neptune_4max_0.40.inst.cfg | 2 +- .../elegoo_neptune_4max/elegoo_neptune_4max_0.60.inst.cfg | 2 +- .../elegoo_neptune_4max/elegoo_neptune_4max_0.80.inst.cfg | 2 +- .../elegoo_neptune_4plus/elegoo_neptune_4plus_0.20.inst.cfg | 2 +- .../elegoo_neptune_4plus/elegoo_neptune_4plus_0.40.inst.cfg | 2 +- .../elegoo_neptune_4plus/elegoo_neptune_4plus_0.60.inst.cfg | 2 +- .../elegoo_neptune_4plus/elegoo_neptune_4plus_0.80.inst.cfg | 2 +- .../elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg | 2 +- .../elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg | 2 +- .../elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg | 2 +- .../elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg | 2 +- .../elegoo/elegoo_neptune_x/elegoo_neptune_x_0.20.inst.cfg | 2 +- .../elegoo/elegoo_neptune_x/elegoo_neptune_x_0.40.inst.cfg | 2 +- .../elegoo/elegoo_neptune_x/elegoo_neptune_x_0.60.inst.cfg | 2 +- .../elegoo/elegoo_neptune_x/elegoo_neptune_x_0.80.inst.cfg | 2 +- resources/variants/fabtotum/fabtotum_hyb35.inst.cfg | 2 +- resources/variants/fabtotum/fabtotum_lite04.inst.cfg | 2 +- resources/variants/fabtotum/fabtotum_lite06.inst.cfg | 2 +- resources/variants/fabtotum/fabtotum_pro02.inst.cfg | 2 +- resources/variants/fabtotum/fabtotum_pro04.inst.cfg | 2 +- resources/variants/fabtotum/fabtotum_pro06.inst.cfg | 2 +- resources/variants/fabtotum/fabtotum_pro08.inst.cfg | 2 +- resources/variants/farm2/farm2_ce_printhead_0.2.inst.cfg | 2 +- resources/variants/farm2/farm2_ce_printhead_0.3.inst.cfg | 2 +- resources/variants/farm2/farm2_ce_printhead_0.4.inst.cfg | 2 +- resources/variants/farm2/farm2_ce_printhead_0.5.inst.cfg | 2 +- resources/variants/farm2/farm2_printhead_0.2.inst.cfg | 2 +- resources/variants/farm2/farm2_printhead_0.3.inst.cfg | 2 +- resources/variants/farm2/farm2_printhead_0.4.inst.cfg | 2 +- resources/variants/farm2/farm2_printhead_0.5.inst.cfg | 2 +- resources/variants/felix/felixpro2_0.25.inst.cfg | 2 +- resources/variants/felix/felixpro2_0.35.inst.cfg | 2 +- resources/variants/felix/felixpro2_0.50.inst.cfg | 2 +- resources/variants/felix/felixpro2_0.70.inst.cfg | 2 +- resources/variants/felix/felixtec4_0.25.inst.cfg | 2 +- resources/variants/felix/felixtec4_0.35.inst.cfg | 2 +- resources/variants/felix/felixtec4_0.50.inst.cfg | 2 +- resources/variants/felix/felixtec4_0.70.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer3_0.3.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer3_0.4.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer3_0.6.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer4_0.3.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer4_0.4.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer4_0.6.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg | 2 +- .../variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg | 2 +- resources/variants/flashforge/flashforge_base_0.20.inst.cfg | 2 +- resources/variants/flashforge/flashforge_base_0.30.inst.cfg | 2 +- resources/variants/flashforge/flashforge_base_0.40.inst.cfg | 2 +- resources/variants/flashforge/flashforge_base_0.50.inst.cfg | 2 +- resources/variants/flashforge/flashforge_base_0.60.inst.cfg | 2 +- .../variants/flashforge/flashforge_dreamer_nx_0.20.inst.cfg | 2 +- .../variants/flashforge/flashforge_dreamer_nx_0.30.inst.cfg | 2 +- .../variants/flashforge/flashforge_dreamer_nx_0.40.inst.cfg | 2 +- .../variants/flashforge/flashforge_dreamer_nx_0.50.inst.cfg | 2 +- .../variants/flashforge/flashforge_dreamer_nx_0.60.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_base_0.25.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_base_0.30.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_base_0.40.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_base_0.50.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_base_0.60.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_base_0.80.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_4s_0.25.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_4s_0.30.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_4s_0.40.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_4s_0.50.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_4s_0.60.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_4s_0.80.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_5_0.25.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_5_0.30.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_5_0.40.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_5_0.50.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_5_0.60.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_5_0.80.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_6_0.25.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_6_0.30.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_6_0.40.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_6_0.50.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_6_0.60.inst.cfg | 2 +- resources/variants/flyingbear/flyingbear_ghost_6_0.80.inst.cfg | 2 +- resources/variants/fusion3/fusion3_0.4.inst.cfg | 2 +- resources/variants/fusion3/fusion3_0.6.inst.cfg | 2 +- resources/variants/fusion3/fusion3_0.8.inst.cfg | 2 +- resources/variants/fusion3/fusion3_f410_0.4.inst.cfg | 2 +- resources/variants/fusion3/fusion3_f410_0.6.inst.cfg | 2 +- resources/variants/fusion3/fusion3_f410_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A10Pro_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A10Pro_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A10Pro_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A10Pro_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A10Pro_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A10Pro_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A10Pro_1.0.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_A20_0.2.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_A20_0.3.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_A20_0.4.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_A20_0.5.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_A20_0.6.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_A20_0.8.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_A20_1.0.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A30Pro_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A30Pro_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A30Pro_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A30Pro_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A30Pro_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A30Pro_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_A30Pro_1.0.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_E180_0.2.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_E180_0.3.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_E180_0.4.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_E180_0.5.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_E180_0.6.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_E180_0.8.inst.cfg | 2 +- resources/variants/geeetech_variants/geeetech_E180_1.0.inst.cfg | 2 +- .../geeetech_variants/geeetech_GiantArmD200_0.2.inst.cfg | 2 +- .../geeetech_variants/geeetech_GiantArmD200_0.3.inst.cfg | 2 +- .../geeetech_variants/geeetech_GiantArmD200_0.4.inst.cfg | 2 +- .../geeetech_variants/geeetech_GiantArmD200_0.5.inst.cfg | 2 +- .../geeetech_variants/geeetech_GiantArmD200_0.6.inst.cfg | 2 +- .../geeetech_variants/geeetech_GiantArmD200_0.8.inst.cfg | 2 +- .../geeetech_variants/geeetech_GiantArmD200_1.0.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProB_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProB_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProB_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProB_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProB_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProB_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProB_1.0.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProW_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProW_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProW_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProW_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProW_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProW_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_I3ProW_1.0.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator2_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator2_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator2_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator2_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator2_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator2_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator2_1.0.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeCreator_1.0.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeDucer_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeDucer_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeDucer_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeDucer_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeDucer_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeDucer_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MeDucer_1.0.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarMax_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarMax_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarMax_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarMax_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarMax_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarMax_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarMax_1.0.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarPro_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarPro_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarPro_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarPro_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarPro_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarPro_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarPro_1.0.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarS_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarS_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarS_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarS_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarS_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarS_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_MizarS_1.0.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Mizar_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Mizar_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Mizar_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Mizar_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Mizar_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Mizar_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Mizar_1.0.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Thunder_0.2.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Thunder_0.3.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Thunder_0.4.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Thunder_0.5.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Thunder_0.6.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Thunder_0.8.inst.cfg | 2 +- .../variants/geeetech_variants/geeetech_Thunder_1.0.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_025_e3d.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_04_e3d.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_05_e3d.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_05_jhead.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_06_e3d.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_08_e3d.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_10_jhead.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_12_e3d.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_dual_025_e3d.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_dual_04_e3d.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_dual_05_e3d.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_dual_05_jhead.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_dual_06_e3d.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_dual_08_e3d.inst.cfg | 2 +- resources/variants/gmax/gmax15plus_dual_10_jhead.inst.cfg | 2 +- resources/variants/goofoo/goofoo_base_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_cube_0.7.inst.cfg | 2 +- resources/variants/goofoo/goofoo_e-one_0.2.inst.cfg | 2 +- resources/variants/goofoo/goofoo_e-one_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_e-one_0.6.inst.cfg | 2 +- resources/variants/goofoo/goofoo_e-one_0.8.inst.cfg | 2 +- resources/variants/goofoo/goofoo_e-one_1.0.inst.cfg | 2 +- resources/variants/goofoo/goofoo_gemini_0.2.inst.cfg | 2 +- resources/variants/goofoo/goofoo_gemini_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_gemini_0.6.inst.cfg | 2 +- resources/variants/goofoo/goofoo_gemini_0.8.inst.cfg | 2 +- resources/variants/goofoo/goofoo_gemini_1.0.inst.cfg | 2 +- resources/variants/goofoo/goofoo_giant_0.2.inst.cfg | 2 +- resources/variants/goofoo/goofoo_giant_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_giant_0.6.inst.cfg | 2 +- resources/variants/goofoo/goofoo_giant_0.8.inst.cfg | 2 +- resources/variants/goofoo/goofoo_giant_1.0.inst.cfg | 2 +- resources/variants/goofoo/goofoo_max_0.2.inst.cfg | 2 +- resources/variants/goofoo/goofoo_max_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_max_0.6.inst.cfg | 2 +- resources/variants/goofoo/goofoo_max_0.8.inst.cfg | 2 +- resources/variants/goofoo/goofoo_max_1.0.inst.cfg | 2 +- resources/variants/goofoo/goofoo_mido_0.2.inst.cfg | 2 +- resources/variants/goofoo/goofoo_mido_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_mido_0.6.inst.cfg | 2 +- resources/variants/goofoo/goofoo_mido_0.8.inst.cfg | 2 +- resources/variants/goofoo/goofoo_mido_1.0.inst.cfg | 2 +- resources/variants/goofoo/goofoo_miniplus_0.2.inst.cfg | 2 +- resources/variants/goofoo/goofoo_miniplus_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_miniplus_0.6.inst.cfg | 2 +- resources/variants/goofoo/goofoo_miniplus_0.8.inst.cfg | 2 +- resources/variants/goofoo/goofoo_miniplus_1.0.inst.cfg | 2 +- resources/variants/goofoo/goofoo_nova_0.2.inst.cfg | 2 +- resources/variants/goofoo/goofoo_nova_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_nova_0.6.inst.cfg | 2 +- resources/variants/goofoo/goofoo_nova_0.8.inst.cfg | 2 +- resources/variants/goofoo/goofoo_nova_1.0.inst.cfg | 2 +- resources/variants/goofoo/goofoo_plus_0.2.inst.cfg | 2 +- resources/variants/goofoo/goofoo_plus_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_plus_0.6.inst.cfg | 2 +- resources/variants/goofoo/goofoo_plus_0.8.inst.cfg | 2 +- resources/variants/goofoo/goofoo_plus_1.0.inst.cfg | 2 +- resources/variants/goofoo/goofoo_t-one_0.2.inst.cfg | 2 +- resources/variants/goofoo/goofoo_t-one_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_t-one_0.6.inst.cfg | 2 +- resources/variants/goofoo/goofoo_t-one_0.8.inst.cfg | 2 +- resources/variants/goofoo/goofoo_t-one_1.0.inst.cfg | 2 +- resources/variants/goofoo/goofoo_tiny_0.2.inst.cfg | 2 +- resources/variants/goofoo/goofoo_tiny_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_tiny_0.6.inst.cfg | 2 +- resources/variants/goofoo/goofoo_tiny_0.8.inst.cfg | 2 +- resources/variants/goofoo/goofoo_tiny_1.0.inst.cfg | 2 +- resources/variants/goofoo/goofoo_tinyplus_0.2.inst.cfg | 2 +- resources/variants/goofoo/goofoo_tinyplus_0.4.inst.cfg | 2 +- resources/variants/goofoo/goofoo_tinyplus_0.6.inst.cfg | 2 +- resources/variants/goofoo/goofoo_tinyplus_0.8.inst.cfg | 2 +- resources/variants/goofoo/goofoo_tinyplus_1.0.inst.cfg | 2 +- resources/variants/hms434/hms434_0.4tpnozzle.inst.cfg | 2 +- resources/variants/hms434/hms434_0.8tpnozzle.inst.cfg | 2 +- resources/variants/imade3d/imade3d_jellybox_0.4.inst.cfg | 2 +- resources/variants/imade3d/imade3d_jellybox_2_0.4.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3_0.2.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3_0.3.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3_0.4.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3_0.5.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3_0.6.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3_0.8.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3_1.0.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_0.2.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_0.3.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_0.4.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_0.5.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_0.6.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_0.8.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_1.0.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_pro_0.2.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_pro_0.3.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_pro_0.4.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_pro_0.5.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_pro_0.6.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_pro_0.8.inst.cfg | 2 +- resources/variants/kingroon/kingroon_kp3s_pro_1.0.inst.cfg | 2 +- resources/variants/kosher/kosher220_0.2.inst.cfg | 2 +- resources/variants/kosher/kosher220_0.3.inst.cfg | 2 +- resources/variants/kosher/kosher220_0.4.inst.cfg | 2 +- resources/variants/kosher/kosher220_0.5.inst.cfg | 2 +- resources/variants/kosher/kosher220_0.6.inst.cfg | 2 +- resources/variants/kosher/kosher220_0.8.inst.cfg | 2 +- resources/variants/kosher/kosher220_dm_0.2.inst.cfg | 2 +- resources/variants/kosher/kosher220_dm_0.3.inst.cfg | 2 +- resources/variants/kosher/kosher220_dm_0.4.inst.cfg | 2 +- resources/variants/kosher/kosher220_dm_0.5.inst.cfg | 2 +- resources/variants/kosher/kosher220_dm_0.6.inst.cfg | 2 +- resources/variants/kosher/kosher220_dm_0.8.inst.cfg | 2 +- resources/variants/kosher/kosher220_mm_0.2.inst.cfg | 2 +- resources/variants/kosher/kosher220_mm_0.3.inst.cfg | 2 +- resources/variants/kosher/kosher220_mm_0.4.inst.cfg | 2 +- resources/variants/kosher/kosher220_mm_0.5.inst.cfg | 2 +- resources/variants/kosher/kosher220_mm_0.6.inst.cfg | 2 +- resources/variants/kosher/kosher220_mm_0.8.inst.cfg | 2 +- resources/variants/kosher/kosher220_pva_0.2.inst.cfg | 2 +- resources/variants/kosher/kosher220_pva_0.3.inst.cfg | 2 +- resources/variants/kosher/kosher220_pva_0.4.inst.cfg | 2 +- resources/variants/kosher/kosher220_pva_0.5.inst.cfg | 2 +- resources/variants/kosher/kosher220_pva_0.6.inst.cfg | 2 +- resources/variants/kosher/kosher220_pva_0.8.inst.cfg | 2 +- .../variants/leapfrog/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg | 2 +- .../variants/leapfrog/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg | 2 +- resources/variants/liquid/liquid_vo04.inst.cfg | 2 +- resources/variants/liquid/liquid_vo06.inst.cfg | 2 +- resources/variants/liquid/liquid_vo08.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d3_0.2.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d3_0.4.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d3_0.6.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d3_0.8.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d3_vulcan_0.2.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d3_vulcan_0.4.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d3_vulcan_0.6.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d3_vulcan_0.8.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d5_0.2.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d5_0.4.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d5_0.6.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d5_0.8.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d6_0.2.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d6_0.4.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d6_0.6.inst.cfg | 2 +- resources/variants/lnl3d/lnl3d_d6_0.8.inst.cfg | 2 +- resources/variants/longer/longer_base_0.4.inst.cfg | 2 +- resources/variants/longer/longer_cube2_0.4.inst.cfg | 2 +- resources/variants/longer/longer_lk1_0.4.inst.cfg | 2 +- resources/variants/longer/longer_lk1plus_0.4.inst.cfg | 2 +- resources/variants/longer/longer_lk1pro_0.4.inst.cfg | 2 +- resources/variants/longer/longer_lk4_0.4.inst.cfg | 2 +- resources/variants/longer/longer_lk4pro_0.4.inst.cfg | 2 +- resources/variants/longer/longer_lk4x_0.4.inst.cfg | 2 +- resources/variants/longer/longer_lk5_0.4.inst.cfg | 2 +- resources/variants/longer/longer_lk5pro_0.4.inst.cfg | 2 +- resources/variants/mark2/Mark2_for_Ultimaker2_0.25.inst.cfg | 2 +- resources/variants/mark2/Mark2_for_Ultimaker2_0.4.inst.cfg | 2 +- resources/variants/mark2/Mark2_for_Ultimaker2_0.6.inst.cfg | 2 +- resources/variants/mark2/Mark2_for_Ultimaker2_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_1000pro_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_1000pro_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_1000pro_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_1000pro_0.5.inst.cfg | 2 +- resources/variants/mingda/mingda_1000pro_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_1000pro_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_1000pro_1.0.inst.cfg | 2 +- resources/variants/mingda/mingda_4h_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_4h_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_4h_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_4h_0.5.inst.cfg | 2 +- resources/variants/mingda/mingda_4h_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_4h_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_4h_1.0.inst.cfg | 2 +- resources/variants/mingda/mingda_600pro_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_600pro_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_600pro_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_600pro_0.5.inst.cfg | 2 +- resources/variants/mingda/mingda_600pro_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_600pro_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_600pro_1.0.inst.cfg | 2 +- resources/variants/mingda/mingda_6h_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_6h_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_6h_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_6h_0.5.inst.cfg | 2 +- resources/variants/mingda/mingda_6h_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_6h_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_6h_1.0.inst.cfg | 2 +- resources/variants/mingda/mingda_base_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_base_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_base_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_base_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_base_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_base_1.0.inst.cfg | 2 +- resources/variants/mingda/mingda_d2_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_d2_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_d2_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_d2_0.5.inst.cfg | 2 +- resources/variants/mingda/mingda_d2_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_d2_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_d2_1.0.inst.cfg | 2 +- resources/variants/mingda/mingda_d3pro_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_d3pro_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_d3pro_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_d3pro_0.5.inst.cfg | 2 +- resources/variants/mingda/mingda_d3pro_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_d3pro_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_d3pro_1.0.inst.cfg | 2 +- resources/variants/mingda/mingda_d4pro_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_d4pro_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_d4pro_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_d4pro_0.5.inst.cfg | 2 +- resources/variants/mingda/mingda_d4pro_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_d4pro_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_d4pro_1.0.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_max_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_max_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_max_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_max_0.5.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_max_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_max_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_max_1.0.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_pro_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_pro_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_pro_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_pro_0.5.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_pro_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_pro_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_pro_1.0.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_x_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_x_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_x_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_x_0.5.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_x_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_x_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_magician_x_1.0.inst.cfg | 2 +- resources/variants/mingda/mingda_rock3_0.2.inst.cfg | 2 +- resources/variants/mingda/mingda_rock3_0.3.inst.cfg | 2 +- resources/variants/mingda/mingda_rock3_0.4.inst.cfg | 2 +- resources/variants/mingda/mingda_rock3_0.5.inst.cfg | 2 +- resources/variants/mingda/mingda_rock3_0.6.inst.cfg | 2 +- resources/variants/mingda/mingda_rock3_0.8.inst.cfg | 2 +- resources/variants/mingda/mingda_rock3_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v3_base_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_base_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v3_base_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v3_base_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v3_base_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v3_base_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120X_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120X_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120X_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120X_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120X_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120X_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120Z_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120Z_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120Z_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120Z_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120Z_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v3_big120Z_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_big180X_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_big180X_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v3_big180X_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v3_big180X_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v3_big180X_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v3_big180X_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_big40_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_big40_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v3_big40_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v3_big40_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v3_big40_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v3_big40_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_big60_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_big60_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v3_big60_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v3_big60_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v3_big60_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v3_big60_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_bigmeter_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v3_bigmeter_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v3_bigmeter_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v3_bigmeter_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v3_bigmeter_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v3_bigmeter_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_base_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_base_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v4_base_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v4_base_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v4_base_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v4_base_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120X_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120X_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120X_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120X_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120X_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120X_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120Z_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120Z_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120Z_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120Z_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120Z_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v4_big120Z_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_big180X_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_big180X_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v4_big180X_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v4_big180X_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v4_big180X_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v4_big180X_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_big60_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_big60_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v4_big60_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v4_big60_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v4_big60_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v4_big60_1.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_bigmeter_0.4.inst.cfg | 2 +- resources/variants/modix/modix_v4_bigmeter_0.6.inst.cfg | 2 +- resources/variants/modix/modix_v4_bigmeter_0.8.inst.cfg | 2 +- resources/variants/modix/modix_v4_bigmeter_1.0.inst.cfg | 2 +- resources/variants/modix/modix_v4_bigmeter_1.2.inst.cfg | 2 +- resources/variants/modix/modix_v4_bigmeter_1.4.inst.cfg | 2 +- resources/variants/multicomp/multicomp_mcpi200_0.2.inst.cfg | 2 +- resources/variants/multicomp/multicomp_mcpi200_0.4.inst.cfg | 2 +- resources/variants/multicomp/multicomp_mcpi200_0.6.inst.cfg | 2 +- resources/variants/multicomp/multicomp_mcpi200_0.8.inst.cfg | 2 +- resources/variants/multicomp/multicomp_mcpi200_1.0.inst.cfg | 2 +- resources/variants/nwa3d/nwa3d_a31_04.inst.cfg | 2 +- resources/variants/nwa3d/nwa3d_a31_06.inst.cfg | 2 +- resources/variants/ratrig/ratrig_base_0.2.inst.cfg | 2 +- resources/variants/ratrig/ratrig_base_0.3.inst.cfg | 2 +- resources/variants/ratrig/ratrig_base_0.4.inst.cfg | 2 +- resources/variants/ratrig/ratrig_base_0.6.inst.cfg | 2 +- resources/variants/ratrig/ratrig_base_0.8.inst.cfg | 2 +- resources/variants/ratrig/ratrig_base_1.0.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_200_0.2.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_200_0.3.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_200_0.4.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_200_0.6.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_200_0.8.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_200_1.0.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_300_0.2.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_300_0.3.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_300_0.4.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_300_0.6.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_300_0.8.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_300_1.0.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_400_0.2.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_400_0.3.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_400_0.4.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_400_0.6.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_400_0.8.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_400_1.0.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_500_0.2.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_500_0.3.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_500_0.4.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_500_0.6.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_500_0.8.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vcore3_500_1.0.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vminion_0.2.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vminion_0.3.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vminion_0.4.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vminion_0.6.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vminion_0.8.inst.cfg | 2 +- resources/variants/ratrig/ratrig_vminion_1.0.inst.cfg | 2 +- resources/variants/renkforce/renkforce_basic3_0.2.inst.cfg | 2 +- resources/variants/renkforce/renkforce_basic3_0.4.inst.cfg | 2 +- resources/variants/renkforce/renkforce_basic3_0.6.inst.cfg | 2 +- resources/variants/renkforce/renkforce_basic3_0.8.inst.cfg | 2 +- resources/variants/renkforce/renkforce_basic3_1.0.inst.cfg | 2 +- resources/variants/renkforce/renkforce_cubeone_0.7.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro10plus_0.2.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro10plus_0.4.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro10plus_0.6.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro10plus_0.8.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro10plus_1.0.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro3_0.2.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro3_0.4.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro3_0.6.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro3_0.8.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro3_1.0.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro6_0.2.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro6_0.4.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro6_0.6.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro6_0.8.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro6_1.0.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro6plus_0.4.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro6plus_0.6.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro6plus_0.8.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro6plus_1.0.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro7dual_0.2.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro7dual_0.4.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro7dual_0.6.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro7dual_0.8.inst.cfg | 2 +- resources/variants/renkforce/renkforce_pro7dual_1.0.inst.cfg | 2 +- resources/variants/sovol/sovol_base_bowden_0.2.inst.cfg | 2 +- resources/variants/sovol/sovol_base_bowden_0.3.inst.cfg | 2 +- resources/variants/sovol/sovol_base_bowden_0.4.inst.cfg | 2 +- resources/variants/sovol/sovol_base_bowden_0.5.inst.cfg | 2 +- resources/variants/sovol/sovol_base_bowden_0.6.inst.cfg | 2 +- resources/variants/sovol/sovol_base_bowden_0.8.inst.cfg | 2 +- resources/variants/sovol/sovol_base_bowden_1.0.inst.cfg | 2 +- resources/variants/sovol/sovol_base_planetary_0.2.inst.cfg | 2 +- resources/variants/sovol/sovol_base_planetary_0.3.inst.cfg | 2 +- resources/variants/sovol/sovol_base_planetary_0.4.inst.cfg | 2 +- resources/variants/sovol/sovol_base_planetary_0.5.inst.cfg | 2 +- resources/variants/sovol/sovol_base_planetary_0.6.inst.cfg | 2 +- resources/variants/sovol/sovol_base_planetary_0.8.inst.cfg | 2 +- resources/variants/sovol/sovol_base_planetary_1.0.inst.cfg | 2 +- resources/variants/sovol/sovol_base_titan_0.2.inst.cfg | 2 +- resources/variants/sovol/sovol_base_titan_0.3.inst.cfg | 2 +- resources/variants/sovol/sovol_base_titan_0.4.inst.cfg | 2 +- resources/variants/sovol/sovol_base_titan_0.5.inst.cfg | 2 +- resources/variants/sovol/sovol_base_titan_0.6.inst.cfg | 2 +- resources/variants/sovol/sovol_base_titan_0.8.inst.cfg | 2 +- resources/variants/sovol/sovol_base_titan_1.0.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01_0.2.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01_0.3.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01_0.4.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01_0.5.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01_0.6.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01_0.8.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01_1.0.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01pro_0.2.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01pro_0.3.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01pro_0.4.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01pro_0.5.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01pro_0.6.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01pro_0.8.inst.cfg | 2 +- resources/variants/sovol/sovol_sv01pro_1.0.inst.cfg | 2 +- resources/variants/sovol/sovol_sv03_0.2.inst.cfg | 2 +- resources/variants/sovol/sovol_sv03_0.3.inst.cfg | 2 +- resources/variants/sovol/sovol_sv03_0.4.inst.cfg | 2 +- resources/variants/sovol/sovol_sv03_0.5.inst.cfg | 2 +- resources/variants/sovol/sovol_sv03_0.6.inst.cfg | 2 +- resources/variants/sovol/sovol_sv03_0.8.inst.cfg | 2 +- resources/variants/sovol/sovol_sv03_1.0.inst.cfg | 2 +- resources/variants/sovol/sovol_sv05_0.2.inst.cfg | 2 +- resources/variants/sovol/sovol_sv05_0.3.inst.cfg | 2 +- resources/variants/sovol/sovol_sv05_0.4.inst.cfg | 2 +- resources/variants/sovol/sovol_sv05_0.5.inst.cfg | 2 +- resources/variants/sovol/sovol_sv05_0.6.inst.cfg | 2 +- resources/variants/sovol/sovol_sv05_0.8.inst.cfg | 2 +- resources/variants/sovol/sovol_sv05_1.0.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_0.2.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_0.3.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_0.4.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_0.5.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_0.6.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_0.8.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_1.0.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_plus_0.2.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_plus_0.3.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_plus_0.4.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_plus_0.5.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_plus_0.6.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_plus_0.8.inst.cfg | 2 +- resources/variants/sovol/sovol_sv06_plus_1.0.inst.cfg | 2 +- .../variants/strateo3d/strateo3d_IDEX420_brass_04.inst.cfg | 2 +- .../variants/strateo3d/strateo3d_IDEX420_brass_06.inst.cfg | 2 +- .../variants/strateo3d/strateo3d_IDEX420_brass_08.inst.cfg | 2 +- .../strateo3d/strateo3d_IDEX420_duplicate_brass_04.inst.cfg | 2 +- .../strateo3d/strateo3d_IDEX420_duplicate_brass_06.inst.cfg | 2 +- .../strateo3d/strateo3d_IDEX420_duplicate_brass_08.inst.cfg | 2 +- .../strateo3d_IDEX420_duplicate_hardened_steel_04.inst.cfg | 2 +- .../strateo3d/strateo3d_IDEX420_hardened_steel_04.inst.cfg | 2 +- .../strateo3d/strateo3d_IDEX420_mirror_brass_04.inst.cfg | 2 +- .../strateo3d/strateo3d_IDEX420_mirror_brass_06.inst.cfg | 2 +- .../strateo3d/strateo3d_IDEX420_mirror_brass_08.inst.cfg | 2 +- .../strateo3d_IDEX420_mirror_hardened_steel_04.inst.cfg | 2 +- resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg | 2 +- resources/variants/strateo3d/strateo3d_standard_04.inst.cfg | 2 +- resources/variants/strateo3d/strateo3d_standard_06.inst.cfg | 2 +- resources/variants/strateo3d/strateo3d_standard_08.inst.cfg | 2 +- resources/variants/strateo3d/strateo3d_standard_10.inst.cfg | 2 +- resources/variants/strateo3d/strateo3d_standard_12.inst.cfg | 2 +- .../structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg | 2 +- .../structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg | 2 +- .../structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg | 2 +- .../structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg | 2 +- .../structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg | 2 +- .../structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg | 2 +- .../structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg | 2 +- resources/variants/tizyx/tizyx_evy_0.2.inst.cfg | 2 +- resources/variants/tizyx/tizyx_evy_0.3.inst.cfg | 2 +- resources/variants/tizyx/tizyx_evy_0.4.inst.cfg | 2 +- resources/variants/tizyx/tizyx_evy_0.5.inst.cfg | 2 +- resources/variants/tizyx/tizyx_evy_0.6.inst.cfg | 2 +- resources/variants/tizyx/tizyx_evy_0.8.inst.cfg | 2 +- resources/variants/tizyx/tizyx_evy_1.0.inst.cfg | 2 +- resources/variants/tizyx/tizyx_evy_dual_classic.inst.cfg | 2 +- resources/variants/tizyx/tizyx_evy_dual_direct_drive.inst.cfg | 2 +- resources/variants/tizyx/tizyx_k25_0.2.inst.cfg | 2 +- resources/variants/tizyx/tizyx_k25_0.3.inst.cfg | 2 +- resources/variants/tizyx/tizyx_k25_0.4.inst.cfg | 2 +- resources/variants/tizyx/tizyx_k25_0.5.inst.cfg | 2 +- resources/variants/tizyx/tizyx_k25_0.6.inst.cfg | 2 +- resources/variants/tizyx/tizyx_k25_0.8.inst.cfg | 2 +- resources/variants/tizyx/tizyx_k25_1.0.inst.cfg | 2 +- resources/variants/tronxy/tronxy_d01_0.2.inst.cfg | 2 +- resources/variants/tronxy/tronxy_d01_0.3.inst.cfg | 2 +- resources/variants/tronxy/tronxy_d01_0.4.inst.cfg | 2 +- resources/variants/tronxy/tronxy_d01_0.5.inst.cfg | 2 +- resources/variants/tronxy/tronxy_d01_0.6.inst.cfg | 2 +- resources/variants/tronxy/tronxy_d01_0.8.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_0.2.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_0.3.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_0.4.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_0.5.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_0.6.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_0.8.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_400_0.2.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_400_0.3.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_400_0.4.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_400_0.5.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_400_0.6.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_400_0.8.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_500_0.2.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_500_0.3.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_500_0.4.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_500_0.5.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_500_0.6.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x5sa_500_0.8.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x_0.2.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x_0.3.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x_0.4.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x_0.5.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x_0.6.inst.cfg | 2 +- resources/variants/tronxy/tronxy_x_0.8.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2_0.2.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2_0.3.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2_0.4.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2_0.5.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2_0.6.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2_0.8.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2pro_0.2.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2pro_0.3.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2pro_0.4.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2pro_0.5.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2pro_0.6.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy2pro_0.8.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3_0.2.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3_0.3.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3_0.4.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3_0.5.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3_0.6.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3_0.8.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3proV2_0.2.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3proV2_0.3.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3proV2_0.4.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3proV2_0.5.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3proV2_0.6.inst.cfg | 2 +- resources/variants/tronxy/tronxy_xy3proV2_0.8.inst.cfg | 2 +- resources/variants/two_trees/two_trees_base_0.2.inst.cfg | 2 +- resources/variants/two_trees/two_trees_base_0.3.inst.cfg | 2 +- resources/variants/two_trees/two_trees_base_0.4.inst.cfg | 2 +- resources/variants/two_trees/two_trees_base_0.5.inst.cfg | 2 +- resources/variants/two_trees/two_trees_base_0.6.inst.cfg | 2 +- resources/variants/two_trees/two_trees_base_0.8.inst.cfg | 2 +- resources/variants/two_trees/two_trees_base_1.0.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluer_0.2.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluer_0.3.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluer_0.4.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluer_0.5.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluer_0.6.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluer_0.8.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluer_1.0.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluerplus_0.2.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluerplus_0.3.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluerplus_0.4.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluerplus_0.5.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluerplus_0.6.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluerplus_0.8.inst.cfg | 2 +- resources/variants/two_trees/two_trees_bluerplus_1.0.inst.cfg | 2 +- .../variants/two_trees/two_trees_sapphireplus_0.2.inst.cfg | 2 +- .../variants/two_trees/two_trees_sapphireplus_0.3.inst.cfg | 2 +- .../variants/two_trees/two_trees_sapphireplus_0.4.inst.cfg | 2 +- .../variants/two_trees/two_trees_sapphireplus_0.5.inst.cfg | 2 +- .../variants/two_trees/two_trees_sapphireplus_0.6.inst.cfg | 2 +- .../variants/two_trees/two_trees_sapphireplus_0.8.inst.cfg | 2 +- .../variants/two_trees/two_trees_sapphireplus_1.0.inst.cfg | 2 +- resources/variants/two_trees/two_trees_sapphirepro_0.2.inst.cfg | 2 +- resources/variants/two_trees/two_trees_sapphirepro_0.3.inst.cfg | 2 +- resources/variants/two_trees/two_trees_sapphirepro_0.4.inst.cfg | 2 +- resources/variants/two_trees/two_trees_sapphirepro_0.5.inst.cfg | 2 +- resources/variants/two_trees/two_trees_sapphirepro_0.6.inst.cfg | 2 +- resources/variants/two_trees/two_trees_sapphirepro_0.8.inst.cfg | 2 +- resources/variants/two_trees/two_trees_sapphirepro_1.0.inst.cfg | 2 +- resources/variants/ultimaker2_extended_olsson_0.25.inst.cfg | 2 +- resources/variants/ultimaker2_extended_olsson_0.4.inst.cfg | 2 +- resources/variants/ultimaker2_extended_olsson_0.6.inst.cfg | 2 +- resources/variants/ultimaker2_extended_olsson_0.8.inst.cfg | 2 +- resources/variants/ultimaker2_extended_plus_0.25.inst.cfg | 2 +- resources/variants/ultimaker2_extended_plus_0.4.inst.cfg | 2 +- resources/variants/ultimaker2_extended_plus_0.6.inst.cfg | 2 +- resources/variants/ultimaker2_extended_plus_0.8.inst.cfg | 2 +- resources/variants/ultimaker2_olsson_0.25.inst.cfg | 2 +- resources/variants/ultimaker2_olsson_0.4.inst.cfg | 2 +- resources/variants/ultimaker2_olsson_0.6.inst.cfg | 2 +- resources/variants/ultimaker2_olsson_0.8.inst.cfg | 2 +- resources/variants/ultimaker2_plus_0.25.inst.cfg | 2 +- resources/variants/ultimaker2_plus_0.4.inst.cfg | 2 +- resources/variants/ultimaker2_plus_0.6.inst.cfg | 2 +- resources/variants/ultimaker2_plus_0.8.inst.cfg | 2 +- resources/variants/ultimaker2_plus_connect_0.25.inst.cfg | 2 +- resources/variants/ultimaker2_plus_connect_0.4.inst.cfg | 2 +- resources/variants/ultimaker2_plus_connect_0.6.inst.cfg | 2 +- resources/variants/ultimaker2_plus_connect_0.8.inst.cfg | 2 +- resources/variants/ultimaker3_aa0.25.inst.cfg | 2 +- resources/variants/ultimaker3_aa0.8.inst.cfg | 2 +- resources/variants/ultimaker3_aa04.inst.cfg | 2 +- resources/variants/ultimaker3_bb0.8.inst.cfg | 2 +- resources/variants/ultimaker3_bb04.inst.cfg | 2 +- resources/variants/ultimaker3_extended_aa0.25.inst.cfg | 2 +- resources/variants/ultimaker3_extended_aa0.8.inst.cfg | 2 +- resources/variants/ultimaker3_extended_aa04.inst.cfg | 2 +- resources/variants/ultimaker3_extended_bb0.8.inst.cfg | 2 +- resources/variants/ultimaker3_extended_bb04.inst.cfg | 2 +- resources/variants/ultimaker_methodx_1C.inst.cfg | 2 +- resources/variants/ultimaker_methodx_1XA.inst.cfg | 2 +- resources/variants/ultimaker_methodx_2XA.inst.cfg | 2 +- resources/variants/ultimaker_methodx_LABS.inst.cfg | 2 +- resources/variants/ultimaker_methodxl_1C.inst.cfg | 2 +- resources/variants/ultimaker_methodxl_1XA.inst.cfg | 2 +- resources/variants/ultimaker_methodxl_2XA.inst.cfg | 2 +- resources/variants/ultimaker_methodxl_LABS.inst.cfg | 2 +- resources/variants/ultimaker_s3_aa0.25.inst.cfg | 2 +- resources/variants/ultimaker_s3_aa0.8.inst.cfg | 2 +- resources/variants/ultimaker_s3_aa04.inst.cfg | 2 +- resources/variants/ultimaker_s3_bb0.8.inst.cfg | 2 +- resources/variants/ultimaker_s3_bb04.inst.cfg | 2 +- resources/variants/ultimaker_s3_cc04.inst.cfg | 2 +- resources/variants/ultimaker_s3_cc06.inst.cfg | 2 +- resources/variants/ultimaker_s3_dd04.inst.cfg | 2 +- resources/variants/ultimaker_s5_aa0.25.inst.cfg | 2 +- resources/variants/ultimaker_s5_aa0.8.inst.cfg | 2 +- resources/variants/ultimaker_s5_aa04.inst.cfg | 2 +- resources/variants/ultimaker_s5_aluminum.inst.cfg | 2 +- resources/variants/ultimaker_s5_bb0.8.inst.cfg | 2 +- resources/variants/ultimaker_s5_bb04.inst.cfg | 2 +- resources/variants/ultimaker_s5_cc04.inst.cfg | 2 +- resources/variants/ultimaker_s5_cc06.inst.cfg | 2 +- resources/variants/ultimaker_s5_dd04.inst.cfg | 2 +- resources/variants/ultimaker_s5_glass.inst.cfg | 2 +- resources/variants/ultimaker_s7_aa0.25.inst.cfg | 2 +- resources/variants/ultimaker_s7_aa0.8.inst.cfg | 2 +- resources/variants/ultimaker_s7_aa04.inst.cfg | 2 +- resources/variants/ultimaker_s7_bb0.8.inst.cfg | 2 +- resources/variants/ultimaker_s7_bb04.inst.cfg | 2 +- resources/variants/ultimaker_s7_cc04.inst.cfg | 2 +- resources/variants/ultimaker_s7_cc06.inst.cfg | 2 +- resources/variants/ultimaker_s7_dd04.inst.cfg | 2 +- resources/variants/uni/uni_200_0.30.inst.cfg | 2 +- resources/variants/uni/uni_200_0.40.inst.cfg | 2 +- resources/variants/uni/uni_200_0.50.inst.cfg | 2 +- resources/variants/uni/uni_250_0.30.inst.cfg | 2 +- resources/variants/uni/uni_250_0.40.inst.cfg | 2 +- resources/variants/uni/uni_250_0.50.inst.cfg | 2 +- resources/variants/uni/uni_300_0.30.inst.cfg | 2 +- resources/variants/uni/uni_300_0.40.inst.cfg | 2 +- resources/variants/uni/uni_300_0.50.inst.cfg | 2 +- resources/variants/uni/uni_base_0.30.inst.cfg | 2 +- resources/variants/uni/uni_base_0.40.inst.cfg | 2 +- resources/variants/uni/uni_base_0.50.inst.cfg | 2 +- resources/variants/uni/uni_mini_0.30.inst.cfg | 2 +- resources/variants/uni/uni_mini_0.40.inst.cfg | 2 +- resources/variants/uni/uni_mini_0.50.inst.cfg | 2 +- resources/variants/vivedino/vivedino_trex2plus_0.2.inst.cfg | 2 +- resources/variants/vivedino/vivedino_trex2plus_0.4.inst.cfg | 2 +- resources/variants/vivedino/vivedino_trex2plus_0.6.inst.cfg | 2 +- resources/variants/vivedino/vivedino_trex2plus_0.8.inst.cfg | 2 +- resources/variants/vivedino/vivedino_trex3_0.2.inst.cfg | 2 +- resources/variants/vivedino/vivedino_trex3_0.4.inst.cfg | 2 +- resources/variants/vivedino/vivedino_trex3_0.6.inst.cfg | 2 +- resources/variants/vivedino/vivedino_trex3_0.8.inst.cfg | 2 +- resources/variants/voron/voron0_120_v6_0.25.inst.cfg | 2 +- resources/variants/voron/voron0_120_v6_0.30.inst.cfg | 2 +- resources/variants/voron/voron0_120_v6_0.40.inst.cfg | 2 +- resources/variants/voron/voron0_120_v6_0.50.inst.cfg | 2 +- resources/variants/voron/voron0_120_v6_0.60.inst.cfg | 2 +- resources/variants/voron/voron0_120_v6_0.80.inst.cfg | 2 +- resources/variants/voron/voron2_250_v6_0.25.inst.cfg | 2 +- resources/variants/voron/voron2_250_v6_0.30.inst.cfg | 2 +- resources/variants/voron/voron2_250_v6_0.35.inst.cfg | 2 +- resources/variants/voron/voron2_250_v6_0.40.inst.cfg | 2 +- resources/variants/voron/voron2_250_v6_0.50.inst.cfg | 2 +- resources/variants/voron/voron2_250_v6_0.60.inst.cfg | 2 +- resources/variants/voron/voron2_250_v6_0.80.inst.cfg | 2 +- resources/variants/voron/voron2_250_volcano_0.40.inst.cfg | 2 +- resources/variants/voron/voron2_250_volcano_0.60.inst.cfg | 2 +- resources/variants/voron/voron2_250_volcano_0.80.inst.cfg | 2 +- resources/variants/voron/voron2_250_volcano_1.00.inst.cfg | 2 +- resources/variants/voron/voron2_250_volcano_1.20.inst.cfg | 2 +- resources/variants/voron/voron2_300_v6_0.25.inst.cfg | 2 +- resources/variants/voron/voron2_300_v6_0.30.inst.cfg | 2 +- resources/variants/voron/voron2_300_v6_0.35.inst.cfg | 2 +- resources/variants/voron/voron2_300_v6_0.40.inst.cfg | 2 +- resources/variants/voron/voron2_300_v6_0.50.inst.cfg | 2 +- resources/variants/voron/voron2_300_v6_0.60.inst.cfg | 2 +- resources/variants/voron/voron2_300_v6_0.80.inst.cfg | 2 +- resources/variants/voron/voron2_300_volcano_0.40.inst.cfg | 2 +- resources/variants/voron/voron2_300_volcano_0.60.inst.cfg | 2 +- resources/variants/voron/voron2_300_volcano_0.80.inst.cfg | 2 +- resources/variants/voron/voron2_300_volcano_1.00.inst.cfg | 2 +- resources/variants/voron/voron2_300_volcano_1.20.inst.cfg | 2 +- resources/variants/voron/voron2_350_v6_0.25.inst.cfg | 2 +- resources/variants/voron/voron2_350_v6_0.30.inst.cfg | 2 +- resources/variants/voron/voron2_350_v6_0.35.inst.cfg | 2 +- resources/variants/voron/voron2_350_v6_0.40.inst.cfg | 2 +- resources/variants/voron/voron2_350_v6_0.50.inst.cfg | 2 +- resources/variants/voron/voron2_350_v6_0.60.inst.cfg | 2 +- resources/variants/voron/voron2_350_v6_0.80.inst.cfg | 2 +- resources/variants/voron/voron2_350_volcano_0.40.inst.cfg | 2 +- resources/variants/voron/voron2_350_volcano_0.60.inst.cfg | 2 +- resources/variants/voron/voron2_350_volcano_0.80.inst.cfg | 2 +- resources/variants/voron/voron2_350_volcano_1.00.inst.cfg | 2 +- resources/variants/voron/voron2_350_volcano_1.20.inst.cfg | 2 +- resources/variants/voron/voron2_custom_v6_0.25.inst.cfg | 2 +- resources/variants/voron/voron2_custom_v6_0.30.inst.cfg | 2 +- resources/variants/voron/voron2_custom_v6_0.35.inst.cfg | 2 +- resources/variants/voron/voron2_custom_v6_0.40.inst.cfg | 2 +- resources/variants/voron/voron2_custom_v6_0.50.inst.cfg | 2 +- resources/variants/voron/voron2_custom_v6_0.60.inst.cfg | 2 +- resources/variants/voron/voron2_custom_v6_0.80.inst.cfg | 2 +- resources/variants/voron/voron2_custom_volcano_0.40.inst.cfg | 2 +- resources/variants/voron/voron2_custom_volcano_0.60.inst.cfg | 2 +- resources/variants/voron/voron2_custom_volcano_0.80.inst.cfg | 2 +- resources/variants/voron/voron2_custom_volcano_1.00.inst.cfg | 2 +- resources/variants/voron/voron2_custom_volcano_1.20.inst.cfg | 2 +- resources/variants/voron/voron_trident_250_0.25.inst.cfg | 2 +- resources/variants/voron/voron_trident_250_0.40.inst.cfg | 2 +- resources/variants/voron/voron_trident_250_0.50.inst.cfg | 2 +- resources/variants/voron/voron_trident_250_0.60.inst.cfg | 2 +- resources/variants/voron/voron_trident_250_0.80.inst.cfg | 2 +- resources/variants/voron/voron_trident_300_0.25.inst.cfg | 2 +- resources/variants/voron/voron_trident_300_0.40.inst.cfg | 2 +- resources/variants/voron/voron_trident_300_0.50.inst.cfg | 2 +- resources/variants/voron/voron_trident_300_0.60.inst.cfg | 2 +- resources/variants/voron/voron_trident_300_0.80.inst.cfg | 2 +- resources/variants/voron/voron_trident_350_0.25.inst.cfg | 2 +- resources/variants/voron/voron_trident_350_0.40.inst.cfg | 2 +- resources/variants/voron/voron_trident_350_0.50.inst.cfg | 2 +- resources/variants/voron/voron_trident_350_0.60.inst.cfg | 2 +- resources/variants/voron/voron_trident_350_0.80.inst.cfg | 2 +- resources/variants/vzbot/vzbot_235_0.2.inst.cfg | 2 +- resources/variants/vzbot/vzbot_235_0.3.inst.cfg | 2 +- resources/variants/vzbot/vzbot_235_0.4.inst.cfg | 2 +- resources/variants/vzbot/vzbot_235_0.5.inst.cfg | 2 +- resources/variants/vzbot/vzbot_235_0.6.inst.cfg | 2 +- resources/variants/vzbot/vzbot_235_0.8.inst.cfg | 2 +- resources/variants/vzbot/vzbot_235_1.0.inst.cfg | 2 +- resources/variants/vzbot/vzbot_330_0.2.inst.cfg | 2 +- resources/variants/vzbot/vzbot_330_0.3.inst.cfg | 2 +- resources/variants/vzbot/vzbot_330_0.4.inst.cfg | 2 +- resources/variants/vzbot/vzbot_330_0.5.inst.cfg | 2 +- resources/variants/vzbot/vzbot_330_0.6.inst.cfg | 2 +- resources/variants/vzbot/vzbot_330_0.8.inst.cfg | 2 +- resources/variants/vzbot/vzbot_330_1.0.inst.cfg | 2 +- resources/variants/vzbot/vzbot_base_0.2.inst.cfg | 2 +- resources/variants/vzbot/vzbot_base_0.3.inst.cfg | 2 +- resources/variants/vzbot/vzbot_base_0.4.inst.cfg | 2 +- resources/variants/vzbot/vzbot_base_0.5.inst.cfg | 2 +- resources/variants/vzbot/vzbot_base_0.6.inst.cfg | 2 +- resources/variants/vzbot/vzbot_base_0.8.inst.cfg | 2 +- resources/variants/vzbot/vzbot_base_1.0.inst.cfg | 2 +- resources/variants/vzbot/vzbot_custom_0.2.inst.cfg | 2 +- resources/variants/vzbot/vzbot_custom_0.3.inst.cfg | 2 +- resources/variants/vzbot/vzbot_custom_0.4.inst.cfg | 2 +- resources/variants/vzbot/vzbot_custom_0.5.inst.cfg | 2 +- resources/variants/vzbot/vzbot_custom_0.6.inst.cfg | 2 +- resources/variants/vzbot/vzbot_custom_0.8.inst.cfg | 2 +- resources/variants/vzbot/vzbot_custom_1.0.inst.cfg | 2 +- resources/variants/weedo/weedo_x40_weedo_0.4.inst.cfg | 2 +- resources/variants/weedo/weedo_x40_weedo_0.6.inst.cfg | 2 +- resources/variants/weedo/weedo_x40_weedo_0.8.inst.cfg | 2 +- resources/variants/xyz_printing/xyzprinting_base_0.40.inst.cfg | 2 +- .../xyzprinting_da_vinci_1p0_pro_copper_0.40.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xplus_copper_0.40.inst.cfg | 2 +- .../xyzprinting_da_vinci_jr_pro_xplus_hs_0.40.inst.cfg | 2 +- .../xyz_printing/xyzprinting_da_vinci_jr_w_pro_hs_0.40.inst.cfg | 2 +- .../xyz_printing/xyzprinting_da_vinci_jr_w_pro_ss_0.40.inst.cfg | 2 +- .../xyz_printing/xyzprinting_da_vinci_pro_evo_hs_0.40.inst.cfg | 2 +- .../xyzprinting_da_vinci_pro_evo_hsht_0.60.inst.cfg | 2 +- .../xyzprinting_da_vinci_super_copper_0.40.inst.cfg | 2 +- .../xyz_printing/xyzprinting_da_vinci_super_hs_0.40.inst.cfg | 2 +- resources/variants/zav/zav_base_0.20.inst.cfg | 2 +- resources/variants/zav/zav_base_0.25.inst.cfg | 2 +- resources/variants/zav/zav_base_0.30.inst.cfg | 2 +- resources/variants/zav/zav_base_0.35.inst.cfg | 2 +- resources/variants/zav/zav_base_0.40.inst.cfg | 2 +- resources/variants/zav/zav_base_0.45.inst.cfg | 2 +- resources/variants/zav/zav_base_0.50.inst.cfg | 2 +- resources/variants/zav/zav_base_0.60.inst.cfg | 2 +- resources/variants/zav/zav_base_0.80.inst.cfg | 2 +- resources/variants/zav/zav_base_1.00.inst.cfg | 2 +- resources/variants/zav/zav_big_0.20.inst.cfg | 2 +- resources/variants/zav/zav_big_0.25.inst.cfg | 2 +- resources/variants/zav/zav_big_0.30.inst.cfg | 2 +- resources/variants/zav/zav_big_0.35.inst.cfg | 2 +- resources/variants/zav/zav_big_0.40.inst.cfg | 2 +- resources/variants/zav/zav_big_0.45.inst.cfg | 2 +- resources/variants/zav/zav_big_0.50.inst.cfg | 2 +- resources/variants/zav/zav_big_0.60.inst.cfg | 2 +- resources/variants/zav/zav_big_0.80.inst.cfg | 2 +- resources/variants/zav/zav_big_1.00.inst.cfg | 2 +- resources/variants/zav/zav_bigplus_0.20.inst.cfg | 2 +- resources/variants/zav/zav_bigplus_0.25.inst.cfg | 2 +- resources/variants/zav/zav_bigplus_0.30.inst.cfg | 2 +- resources/variants/zav/zav_bigplus_0.35.inst.cfg | 2 +- resources/variants/zav/zav_bigplus_0.40.inst.cfg | 2 +- resources/variants/zav/zav_bigplus_0.45.inst.cfg | 2 +- resources/variants/zav/zav_bigplus_0.50.inst.cfg | 2 +- resources/variants/zav/zav_bigplus_0.60.inst.cfg | 2 +- resources/variants/zav/zav_bigplus_0.80.inst.cfg | 2 +- resources/variants/zav/zav_bigplus_1.00.inst.cfg | 2 +- resources/variants/zav/zav_l_0.20.inst.cfg | 2 +- resources/variants/zav/zav_l_0.25.inst.cfg | 2 +- resources/variants/zav/zav_l_0.30.inst.cfg | 2 +- resources/variants/zav/zav_l_0.35.inst.cfg | 2 +- resources/variants/zav/zav_l_0.40.inst.cfg | 2 +- resources/variants/zav/zav_l_0.45.inst.cfg | 2 +- resources/variants/zav/zav_l_0.50.inst.cfg | 2 +- resources/variants/zav/zav_l_0.60.inst.cfg | 2 +- resources/variants/zav/zav_l_0.80.inst.cfg | 2 +- resources/variants/zav/zav_l_1.00.inst.cfg | 2 +- resources/variants/zav/zav_max_0.20.inst.cfg | 2 +- resources/variants/zav/zav_max_0.25.inst.cfg | 2 +- resources/variants/zav/zav_max_0.30.inst.cfg | 2 +- resources/variants/zav/zav_max_0.35.inst.cfg | 2 +- resources/variants/zav/zav_max_0.40.inst.cfg | 2 +- resources/variants/zav/zav_max_0.45.inst.cfg | 2 +- resources/variants/zav/zav_max_0.50.inst.cfg | 2 +- resources/variants/zav/zav_max_0.60.inst.cfg | 2 +- resources/variants/zav/zav_max_0.80.inst.cfg | 2 +- resources/variants/zav/zav_max_1.00.inst.cfg | 2 +- resources/variants/zav/zav_maxpro_0.20.inst.cfg | 2 +- resources/variants/zav/zav_maxpro_0.25.inst.cfg | 2 +- resources/variants/zav/zav_maxpro_0.30.inst.cfg | 2 +- resources/variants/zav/zav_maxpro_0.35.inst.cfg | 2 +- resources/variants/zav/zav_maxpro_0.40.inst.cfg | 2 +- resources/variants/zav/zav_maxpro_0.45.inst.cfg | 2 +- resources/variants/zav/zav_maxpro_0.50.inst.cfg | 2 +- resources/variants/zav/zav_maxpro_0.60.inst.cfg | 2 +- resources/variants/zav/zav_maxpro_0.80.inst.cfg | 2 +- resources/variants/zav/zav_maxpro_1.00.inst.cfg | 2 +- resources/variants/zav/zav_mini_0.20.inst.cfg | 2 +- resources/variants/zav/zav_mini_0.25.inst.cfg | 2 +- resources/variants/zav/zav_mini_0.30.inst.cfg | 2 +- resources/variants/zav/zav_mini_0.35.inst.cfg | 2 +- resources/variants/zav/zav_mini_0.40.inst.cfg | 2 +- resources/variants/zav/zav_mini_0.45.inst.cfg | 2 +- resources/variants/zav/zav_mini_0.50.inst.cfg | 2 +- resources/variants/zav/zav_mini_0.60.inst.cfg | 2 +- resources/variants/zav/zav_mini_0.80.inst.cfg | 2 +- resources/variants/zav/zav_mini_1.00.inst.cfg | 2 +- 7256 files changed, 7256 insertions(+), 7256 deletions(-) diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_B.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_B.inst.cfg index d6629aeb1c3..fc0708041a7 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D010 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_C.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_C.inst.cfg index 9dcbbf4f5f5..4d0e53deeab 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D015 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_D.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_D.inst.cfg index 4f12d0c6709..919e49294e0 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_D.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_D.inst.cfg index 54a76b81927..30e95a48d9d 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_D.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_E.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_E.inst.cfg index 173d99acbc5..b2351a8a806 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_E.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = D030 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_B.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_B.inst.cfg index a5d3f342ea1..a52ff655802 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D010 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_C.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_C.inst.cfg index d30d8f67b88..07d62c2915a 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D015 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_D.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_D.inst.cfg index cdce34e01a8..4f0fbf74a21 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_D.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_D.inst.cfg index 00363e3dba5..39becd3cd07 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_D.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_E.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_E.inst.cfg index cf4c937e753..3c4df2d1118 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_E.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = D030 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_B.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_B.inst.cfg index 9cf8e2a47b1..f3eba51e984 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D010 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_C.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_C.inst.cfg index a7c6e21278c..4e3ca827957 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D015 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_D.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_D.inst.cfg index c1f4f49b6d9..20dcc02fdf9 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_C.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_C.inst.cfg index ac2faaf5898..c7470b8c258 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_C.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_D.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_D.inst.cfg index ac2faaf5898..c7470b8c258 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_D.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_E.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_E.inst.cfg index 40cbc081d07..130b5d2a278 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_E.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D030 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_B.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_B.inst.cfg index 6b76d5b201b..8ced2813965 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D010 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_C.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_C.inst.cfg index af6eafd5fd5..514973ccefd 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D015 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_D.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_D.inst.cfg index ae9ae28b768..c9366697a80 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_C.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_C.inst.cfg index a668f692658..a7fef7976d8 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_C.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D015 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_D.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_D.inst.cfg index a077cd2ced3..56b2e6ff8da 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_D.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_E.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_E.inst.cfg index fde93818556..57e8f521da7 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_E.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D030 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg index 496c28b43ea..382b2e8af36 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D010 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg index 05a545e4dce..5cb4664213a 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D015 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg index b07338020dc..f1035271b03 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_D.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_D.inst.cfg index d9271d1082d..2f92c3ccef6 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_D.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_E.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_E.inst.cfg index 0e014c6e044..ffb00077c7e 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_E.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = D030 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg index 94df4366f9c..4afa610eb1a 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D010 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg index 54bdb53002d..bceefcec97a 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D015 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg index c163d8f6300..b3dd716c0f7 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_D.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_D.inst.cfg index 31f6a9a62d2..3d95d1b19d7 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_D.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_E.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_E.inst.cfg index 4cc2f49777f..e87daed110c 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_E.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = D030 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.05mm_visual.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.05mm_visual.inst.cfg index e82884e3fb8..4df23b911b2 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.05mm_visual.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.05mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = Elegoo_layer_005 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_engineering.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_engineering.inst.cfg index bdbeef66b4b..1a5695f4904 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_visual.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_visual.inst.cfg index 9d8758f6050..4bb742ae0e9 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_visual.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_engineering.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_engineering.inst.cfg index de7bdc5730d..349dbc5919f 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_visual.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_visual.inst.cfg index d89f8510ec3..21241f2bb4d 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_visual.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.2mm_quick.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.2mm_quick.inst.cfg index c1fd50eab32..578fba233f2 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.2mm_quick.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.3mm_quick.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.3mm_quick.inst.cfg index 9dc2c50697c..f00efd13559 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.3mm_quick.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.3mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_pla quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg index e0e87bffc3d..081446828b6 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = Elegoo_layer_005 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg index 1ad1d4cb795..60f6c9965a6 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg @@ -8,7 +8,7 @@ intent_category = engineering is_experimental = True material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg index df6271085f6..86b1b505f77 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg index 4a6b207a919..c2bbab0d5db 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg @@ -8,7 +8,7 @@ intent_category = engineering is_experimental = True material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg index c3c5e329509..48452cc240b 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_engineering.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_engineering.inst.cfg index 1e9703215da..19f3592c4ae 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_engineering.inst.cfg @@ -8,7 +8,7 @@ intent_category = engineering is_experimental = True material = generic_pla quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg index 6f36752648f..195edc6b3c7 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_pla quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg index f56023baef0..a16e6730727 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_pla quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_Draft_Print_Quick.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_Draft_Print_Quick.inst.cfg index 402359dd84f..8b63f5bc662 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_Draft_Print_Quick.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_Draft_Print_Quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Print_Accurate.inst.cfg index 3f334fdf2d2..6904c4079fa 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Visual.inst.cfg index 8c8a23e85e9..d0487bfe7a6 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_High_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_High_Visual.inst.cfg index 9405c8b295a..8ebe0c0c46f 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_High_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_High_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Quality_Accurate.inst.cfg index c23a110e09b..19c41a33881 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Visual.inst.cfg index 61db2930044..c66d224a1f1 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_CPE_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_CPE_Fast_Print_Accurate.inst.cfg index 5c8d8dcab58..02acaefd55d 100644 --- a/resources/intent/liquid/liquid_vo0.4_CPE_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_CPE_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_CPE_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_CPE_Normal_Quality_Accurate.inst.cfg index 7e957a64015..4997ebbad39 100644 --- a/resources/intent/liquid/liquid_vo0.4_CPE_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_CPE_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_Nylon_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_Nylon_Fast_Print_Accurate.inst.cfg index 58b46b6a59a..5c4b525c156 100644 --- a/resources/intent/liquid/liquid_vo0.4_Nylon_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_Nylon_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_Nylon_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_Nylon_Normal_Quality_Accurate.inst.cfg index 236f1dee612..a5070b131bf 100644 --- a/resources/intent/liquid/liquid_vo0.4_Nylon_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_Nylon_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PC_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PC_Fast_Print_Accurate.inst.cfg index 0b3060b0ac1..8620632bed5 100644 --- a/resources/intent/liquid/liquid_vo0.4_PC_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PC_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PC_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PC_Normal_Quality_Accurate.inst.cfg index 13ac4647ff7..a8ceaaf218d 100644 --- a/resources/intent/liquid/liquid_vo0.4_PC_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PC_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_Draft_Print_Quick.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_Draft_Print_Quick.inst.cfg index 6a19492587a..f769152ea4d 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_Draft_Print_Quick.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_Draft_Print_Quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Print_Accurate.inst.cfg index 0aaf41e0be1..c26d8e408e1 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Visual.inst.cfg index 481634d7ba5..85e6aaec5e5 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_High_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_High_Visual.inst.cfg index 2e418c390fb..9f916946d7e 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_High_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_High_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Quality_Accurate.inst.cfg index 068d775fc4b..ed8001b2963 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Visual.inst.cfg index 9f91179da0b..4dc720417a6 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_Draft_Print_Quick.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_Draft_Print_Quick.inst.cfg index 1773ad01892..9f2b7ab77d6 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_Draft_Print_Quick.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_Draft_Print_Quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Print_Accurate.inst.cfg index ee4a315c200..b05a492e397 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Visual.inst.cfg index dfe92c80896..4bd00759a31 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_High_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_High_Visual.inst.cfg index ead3f9f64d6..cf65345e342 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_High_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_High_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Quality_Accurate.inst.cfg index 74557539971..f46cb21d87a 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Visual.inst.cfg index b5789fe9e94..ecf1b624c09 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm_solid.inst.cfg index 509347edd4d..697aa8842e9 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_abscf_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = 1C diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_solid.inst.cfg index 64433fec7ea..8826f7e7d4b 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_absr_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = 1C diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm_solid.inst.cfg index 23c8807afd0..aa04992d122 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm_solid.inst.cfg @@ -8,7 +8,7 @@ intent_category = solid is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = 1C diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg index cdff2f30cea..364eea5b521 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg @@ -8,7 +8,7 @@ intent_category = solid is_experimental = True material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = 1C diff --git a/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_solid.inst.cfg index a14203b9c4e..c426a994992 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_absr_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = 1XA diff --git a/resources/intent/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm_solid.inst.cfg index 3a781b61aa0..7d1ead2caf0 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm_solid.inst.cfg @@ -8,7 +8,7 @@ intent_category = solid is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = 1XA diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm_solid.inst.cfg index a7e099e431b..3d8106d85e1 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_abscf_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = LABS diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm_solid.inst.cfg index 80c26ac0b43..ec07c4b98a3 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_absr_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = LABS diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm_solid.inst.cfg index 87823a01a6b..9020c8fdccd 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm_solid.inst.cfg @@ -8,7 +8,7 @@ intent_category = solid is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = LABS diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg index bb769198883..3a5e5e4491b 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg @@ -8,7 +8,7 @@ intent_category = solid is_experimental = True material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = LABS diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm_solid.inst.cfg index 36c71e8fde0..5714a796b3e 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_abscf_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = 1C diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_solid.inst.cfg index 8a2601d408a..603a19fa4f2 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_absr_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = 1C diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm_solid.inst.cfg index 12bc3f27080..e5ad1ab92ca 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm_solid.inst.cfg @@ -8,7 +8,7 @@ intent_category = solid is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = 1C diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg index 55336726361..4594c37f50f 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg @@ -8,7 +8,7 @@ intent_category = solid is_experimental = True material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = 1C diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_solid.inst.cfg index 855cf57e222..470f5547c1c 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_absr_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = 1XA diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm_solid.inst.cfg index 82aa8e9bad7..5dd7ea0eb8c 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm_solid.inst.cfg @@ -8,7 +8,7 @@ intent_category = solid is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = 1XA diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm_solid.inst.cfg index 82735775a60..21e54ab083f 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_abscf_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = LABS diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm_solid.inst.cfg index 87e0495be7f..f1058ebdebd 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm_solid.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = solid material = ultimaker_absr_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = LABS diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm_solid.inst.cfg index ae7100bc86b..3655b78cf16 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm_solid.inst.cfg @@ -8,7 +8,7 @@ intent_category = solid is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = LABS diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg index af43c95cd2d..0ae080086d1 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg @@ -8,7 +8,7 @@ intent_category = solid is_experimental = True material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = LABS diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.06mm_visual.inst.cfg index 850ab8b2136..d12071d3a5d 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_engineering.inst.cfg index c1ade2391e2..4ae011e6925 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_visual.inst.cfg index 95644621ad5..8207705b545 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_engineering.inst.cfg index c9e5804306a..546d21fe4be 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_visual.inst.cfg index 57df5208d66..09e842f5025 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.2mm_quick.inst.cfg index c50a4c6331c..e73af4a87ed 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg index 4e538290566..b190eefc572 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe_plus quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg index 9513f56dfe5..54e2e78789e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe_plus quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm_engineering.inst.cfg index 66196a42156..6956d40573e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm_engineering.inst.cfg index 295e4681f55..599affff457 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm_engineering.inst.cfg index 5c95a8bb6b2..e8cee0ef323 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm_engineering.inst.cfg index 0143426335d..87bf4f93d2f 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.15mm_engineering.inst.cfg index 5deb69e5abf..7120a9d6b78 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.1mm_engineering.inst.cfg index 8c1a60b5b4c..83ad4584de7 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.15mm_engineering.inst.cfg index 50011a31884..b32d9fc1497 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.1mm_engineering.inst.cfg index 8e1cbd003b8..9ea1d2b08f9 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.06mm_visual.inst.cfg index f3cd83f0fbf..9304974dc9a 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_engineering.inst.cfg index 853db370a7b..deaf4b77e67 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_visual.inst.cfg index 6f3a0aa8d9b..07bf6028e95 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_engineering.inst.cfg index ed0c770c33f..4714e516c74 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_visual.inst.cfg index 3aec759ed83..ff6c3cc6b5c 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.2mm_quick.inst.cfg index 7db781a22ea..a521f1f019e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.3mm_quick.inst.cfg index f5bcf98ba2f..634efc45e57 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.3mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm_visual.inst.cfg index ce4c717c548..fb349859b04 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_engineering.inst.cfg index 01d2128f623..a75aa86806e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_visual.inst.cfg index 83f9024c20a..4113a9fe8e2 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_engineering.inst.cfg index ead230ea213..0be0b9d398f 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_visual.inst.cfg index bad763a0aed..faa1084c275 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm_quick.inst.cfg index 7ce3655a1fa..377b5d122c8 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm_quick.inst.cfg index e359e6d1ab8..66b03e33b65 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg index 62e3254f8ba..8fa7230f62d 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg index e06ccbc3c6a..162e979a83f 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg index d0d5bf5c2ec..c14e2d0c24d 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg index b61495c66ff..de545bf35ea 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg index 2b113bb10cb..7e4a2be5181 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg index e5c66d6b889..d7a8e069986 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg index d51b925c244..0efe56e0dcf 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg index 98840cccdc8..e6a3c4c30ff 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg index a3533c805d1..1155247785a 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg index 6cb091dafbb..392be6c5489 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg index 0b2c1c3a96b..205b8f4d518 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg index a5e918bf823..f6cbbba69de 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg index 7c1de8fd56b..09d2f2ba99a 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg index 0cb3fae8f0a..6e60a687fab 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg index 698fa97fc8e..286a6b0e072 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg index fddbf1a350f..6254e3b68f2 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg index 144994eb9b3..a8ebd1b54ca 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg index 638560ae82a..09673e60980 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg index 7bde0a1a84f..7cf830c8331 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg index 031ab34fa2a..9454381e88d 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg index 32fb3da04bb..25c24997cda 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg index ed573773e15..77c867c2add 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg index b5e414e2a71..170dfd90ea6 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg index 1cd8170e8fd..14f9aa110c8 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg index 3810165c12e..08899429199 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg index 8f242b8bf30..5d1ef78b715 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg index c301cb76b8e..6371e933dc2 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg index f1a72ac90bb..ac5904d91fa 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg index f5f5a33ca7e..bb457acb89c 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg index 7b0e9ff88bb..2d6592179a1 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg index 61916c3da7e..7b66700a7d6 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg index 75345728fb1..2e254c0db05 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg index 2c2efb74acb..24c1c424b83 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg index cea390491da..b1abec13648 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg index d206bcffb91..06957baa1f5 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg index 85bc2ebf772..61b67043135 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg index 60413405bb0..c1db44dcc4b 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg index 8557038cdf8..1d6c709517c 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg index 8480dd96fee..6c58b08d101 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg index b6175f198a2..6552e6e66aa 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg index 3058369081a..9ed04a21418 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = superdraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg index 5db19be11f3..b961efe0eb9 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg index 0d34733f077..1f65b1be8a9 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg index 354e2e980ac..9253f808f9d 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg index 6dc6a308567..339f02e070e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg index 13f9d21fac7..f1aa58b68ed 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = superdraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg index 5361dfeb62f..1a94de81f89 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg index 1a8f8c0d0f6..7769b3ed665 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg index f7e5233aa38..7d18b5d3bfc 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg index b4b346a730d..1e55929f44c 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg index b98d27da01e..531ffab0637 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg index c4cad5993d0..5d470eabcab 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg index 83f9d417b3c..010abc23542 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg index 3bb47b25d7a..a01998fc4dc 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg index 1ffe95220bf..f8d86eb50a5 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg index 11c28e9be1e..365fea42ab5 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg index 0c1e598e6c6..c07b72ee47c 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_engineering.inst.cfg index 2edf56f19b6..a2135797939 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg index 7961bb5ca08..e19ed4a7b12 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_engineering.inst.cfg index 7204c13c5e0..3ee351e6d83 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg index 90401c220cb..05c22d33237 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_engineering.inst.cfg index f8a4feb35e7..51a584d0383 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg index 3b05f8fd309..3c2efc99eb8 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_engineering.inst.cfg index 4ff1aa7403f..f7c9f266176 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.06mm_visual.inst.cfg index 01af38e7103..1088ed3384c 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_engineering.inst.cfg index 015f9de7413..e4195e37a31 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_visual.inst.cfg index 767644af8fb..67d74786ea3 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_engineering.inst.cfg index 8912a439f50..f3da8e539cd 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_visual.inst.cfg index 9fbe2d656b9..41062bcddf4 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.2mm_quick.inst.cfg index a06a8056844..e69b9dd0302 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg index 6310212dadc..e5a59502a58 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe_plus quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg index 4737b633fcc..78b888abb0e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe_plus quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm_engineering.inst.cfg index 7225bab9367..682bfe2f97a 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm_engineering.inst.cfg index eefe6379548..ab8338bc9e4 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm_engineering.inst.cfg index 63207f8f14b..825220e353a 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm_engineering.inst.cfg index d20118ef97a..727fdc935be 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.15mm_engineering.inst.cfg index 296959f646d..2f21d6eff95 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.1mm_engineering.inst.cfg index 13369f1eab7..6c29211dc04 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.15mm_engineering.inst.cfg index b952bc3f2b0..5bd7bea421e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.1mm_engineering.inst.cfg index c8a9e7ec654..64e81fbf1dc 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.06mm_visual.inst.cfg index 5fdb90d5e5b..f0b22300885 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_engineering.inst.cfg index 9bb289a3b1f..e32dbabeb68 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_visual.inst.cfg index 6fa63725c57..50d90a00eb2 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_engineering.inst.cfg index ad06050ef12..a3197dd697f 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_visual.inst.cfg index e2b41d7445b..23eb85c3358 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.2mm_quick.inst.cfg index 3428f1fddaa..2352570231a 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.3mm_quick.inst.cfg index 899fa76b615..571a3aa68f5 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.3mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm_visual.inst.cfg index ce5961883a1..18bdf427580 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_engineering.inst.cfg index d71cea9bdca..a7cbafcc0e8 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_visual.inst.cfg index 31aaa88fc1f..d4562bf3a2c 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_engineering.inst.cfg index 84c80685634..af9c92d891a 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_visual.inst.cfg index c9455300ecd..99ff066ecc1 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm_quick.inst.cfg index b657f45d71a..9ea2f46ec11 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm_quick.inst.cfg index f4e1bab7629..fc200dd76c8 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg index 7b919a96f53..dc4a8e87341 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg index 908186790eb..e74ed67f23b 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg index 6f90ea70acd..e20abaae698 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg index 43edfa3548d..17a78ae0f42 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg index 62a6fb4fdff..1738a2a7d4c 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg index c8ead2040c9..20d5b34c303 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg index c77fa51e12e..663980f2e9c 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg index a0d9fb34e50..75aab7d69f8 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg index eab329b62b8..db1684399e6 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg index de4a5cf6d2a..6613e5fa4ba 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg index b0057d80ed2..e03d98bbd8e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg index 142c9960d14..cbb246eda0c 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg index a251a24a6e7..056ecd41770 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg index f918839805a..2bd5ad82d57 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg index da575d938f9..ac93bc17d5d 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg index c4b84e20533..a6d971eb51b 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg index b12ea3e1e6f..a2f07990b8f 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg index f7a0557a60f..be73a3ad1b9 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg index 464c17a4308..9764374cd2d 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg index 446f68db01e..9f15ad8ed6e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg index cd8490c5045..4736d18dae1 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg index 5f6d7ee67b1..7b2b42ae0b5 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg index 2dcc5e18509..4eb56441b38 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg index 248fee213c6..ce5666e06a1 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg index d3c5a2cb0d7..de02366f812 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg index ea2b547829f..bd2f1f1b9c3 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg index 1a3db01b5e7..15891975a30 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg index c0c3ccc3836..ef32bc56db1 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg index dd54779d5da..6ef21ed75f4 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg index ac3173d5c21..34b0afb5b18 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg index 411d22b0abc..0f4db503b24 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg index 9a3c677fe91..70f539cfe89 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg index aea6b01bff2..eedc26a9475 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg index 14195283728..3831ec4895e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg index 4a1ab82c04e..9f4de00ec60 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg index f066438a257..0eef7bf1eda 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg index 8281aefcf04..ded0f97db31 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg index 15804a08211..78813503468 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg index 0c5210e5b23..10e967fc412 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg index 4c1898658bb..f6defe9a0c5 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg index f69ca749155..cf05092f62f 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = superdraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg index ed5a152040b..83c84bf1624 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg index d723ee511fb..5990c5cb2b7 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg index 8959431e83e..01fa9a6e911 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg index 623ae45d75c..5584c5e00a6 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg index 994f21610e0..eba95b253b8 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = superdraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg index 9e15b423a21..56887755724 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg index c0bdc89f87a..efbe56dee75 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg index a3dce2468cc..95716c5d9f0 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg index 3d04b22ffab..c32dce45b5e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg index 8976d8902c9..8f24be0b25e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg index bf180f24e3b..cc382d57f53 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg index e53ae6a7dc9..b2708141539 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg index 9471e497141..ddb8021eba5 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg index 912a50d05ce..c844739f285 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg index c6e45c7f896..1e60bc88066 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg index e3da6ecedbb..f4a6913edcd 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_engineering.inst.cfg index 502547c056b..ba99c577498 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg index 5141dba9475..e6b4075cd83 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_engineering.inst.cfg index 796c2b39c2c..10127fb3fc1 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg index 6ce13e175fe..48b90a7c692 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_engineering.inst.cfg index 99778037cb7..877143419b5 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg index ceea80d7fd6..ad94617c151 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_engineering.inst.cfg index ec3ae4c8ac9..6bc6a2725e2 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.6 diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index 2f4ea429a75..d22f44e19e9 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = q010 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index 59e028f9d9d..d7e03a5348b 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = q015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index 8de69b4d8d4..e663e68a4c5 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = q015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index 4dd79af2b2e..0d854c132e7 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = q020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_quick.inst.cfg index ea85344a436..a297d027997 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = q020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index 8d85083a2b0..047208076f1 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = q020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.25_quick.inst.cfg index 7dad65fadc9..9c58a24882d 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = q025 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.30_quick.inst.cfg index 3d3ea1858a2..f008edb43da 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = q030 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index d132622930c..658b6ac44bb 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = q010 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index fdb0f4c4437..19c36c46e83 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = q015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index 266774c67fb..44284f4642d 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = q015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index d8544e80aee..6d208856f29 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = q020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_quick.inst.cfg index 4883a59ca8b..f967de3d145 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = q020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index 45c5f8efb79..c838f0874d6 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = q020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.25_quick.inst.cfg index 1766ed7762d..fc18580ee5a 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = q025 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.30_quick.inst.cfg index e3effc7247a..bd7f577015c 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = q030 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index 4b26c6f8d28..a93308863b5 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = q010 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index 03ead6e755f..65253671d69 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = q015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index 4ec6a43fc3a..8ceb763be83 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = q015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index 380b25ec39a..d73f209556a 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = q020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_quick.inst.cfg index de4a124a632..c3e9e2aba35 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = q020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index 9406777b94b..d885c8a731a 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = q020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.25_quick.inst.cfg index 295313baf9e..9a7d9be4886 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = q025 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.30_quick.inst.cfg index bf3880d4a5d..0165ae7ad85 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = q030 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index 1b5440da224..162e4441a38 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index 7eedd16f1d7..07719831a39 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index b3249837d45..93e329110e5 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index 133b2403b09..a3f1130928a 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_quick.inst.cfg index 7fd74b45e0b..18f7ee286ca 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index 1c36175ac57..1c1c9aa789b 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.25_quick.inst.cfg index d683c6f889c..a853d12a340 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.30_quick.inst.cfg index 590790f820d..9414a124470 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index 1bcc1d1ef3e..3b8ddec8101 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index 7e8356dab71..14100af127b 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index 09326033b72..54aec6ef6fd 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index 8ddf724274a..ce797bd5a32 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_quick.inst.cfg index 11a5cf6bf4f..8429f26ad55 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index 576892e25f8..8db18e54458 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.25_quick.inst.cfg index e9ecec5b4b8..5b83e0f77bd 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.30_quick.inst.cfg index de644ce01be..1ca0f4c2a7e 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index ca21b4caba5..33d6a1c897c 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index 34edf422d1d..8de74ecd6c5 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index 1113fd75a7a..411b4d5b397 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index 277d0a16497..2bc167470c0 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_quick.inst.cfg index 7f7e8ca1577..3eea60ab406 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index 63e2723f410..ae86f86f119 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.25_quick.inst.cfg index c64f4660dd2..4fed70ca47d 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.30_quick.inst.cfg index eedf055bb8d..3261669acd8 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/Leapfrog_Bolt_Pro/Leapfrog_Bolt_Pro_global_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/Leapfrog_Bolt_Pro_global_standard.inst.cfg index 0f079c315fc..b81f16ec61d 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/Leapfrog_Bolt_Pro_global_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/Leapfrog_Bolt_Pro_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg index 59fec06a3ef..d0c72198572 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_abs_natural quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4 weight = 0 diff --git a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg index 549c24a6c6b..1e9a2e43f5c 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_abs_natural quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = NozzleX 0.4 weight = 0 diff --git a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg index 145cd34ead9..a6640512a3f 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_epla_natural quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4 weight = 0 diff --git a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg index e6e2cb78a00..5be2675226f 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_epla_natural quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = NozzleX 0.4 weight = 0 diff --git a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg index 56587fe8838..cf8577fdd91 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_pva_natural quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4 weight = 0 diff --git a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg index 10353f61103..ef2a78edca2 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_pva_natural quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = NozzleX 0.4 weight = 0 diff --git a/resources/quality/abax_pri3/apri3_pla_fast.inst.cfg b/resources/quality/abax_pri3/apri3_pla_fast.inst.cfg index 910acc73e55..9acf14f5931 100644 --- a/resources/quality/abax_pri3/apri3_pla_fast.inst.cfg +++ b/resources/quality/abax_pri3/apri3_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/abax_pri3/apri3_pla_high.inst.cfg b/resources/quality/abax_pri3/apri3_pla_high.inst.cfg index aea37fb13f2..f293b9f43a5 100644 --- a/resources/quality/abax_pri3/apri3_pla_high.inst.cfg +++ b/resources/quality/abax_pri3/apri3_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/abax_pri3/apri3_pla_normal.inst.cfg b/resources/quality/abax_pri3/apri3_pla_normal.inst.cfg index 8f5ac4aa338..3af1a557a50 100644 --- a/resources/quality/abax_pri3/apri3_pla_normal.inst.cfg +++ b/resources/quality/abax_pri3/apri3_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/abax_pri5/apri5_pla_fast.inst.cfg b/resources/quality/abax_pri5/apri5_pla_fast.inst.cfg index 032d1b817e1..8264717b80c 100644 --- a/resources/quality/abax_pri5/apri5_pla_fast.inst.cfg +++ b/resources/quality/abax_pri5/apri5_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/abax_pri5/apri5_pla_high.inst.cfg b/resources/quality/abax_pri5/apri5_pla_high.inst.cfg index 6380dc18ef9..d210d49036f 100644 --- a/resources/quality/abax_pri5/apri5_pla_high.inst.cfg +++ b/resources/quality/abax_pri5/apri5_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/abax_pri5/apri5_pla_normal.inst.cfg b/resources/quality/abax_pri5/apri5_pla_normal.inst.cfg index c3576521570..e1ce9538fb9 100644 --- a/resources/quality/abax_pri5/apri5_pla_normal.inst.cfg +++ b/resources/quality/abax_pri5/apri5_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/abax_titan/atitan_pla_fast.inst.cfg b/resources/quality/abax_titan/atitan_pla_fast.inst.cfg index c235e36996a..09cebca9c2e 100644 --- a/resources/quality/abax_titan/atitan_pla_fast.inst.cfg +++ b/resources/quality/abax_titan/atitan_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/abax_titan/atitan_pla_high.inst.cfg b/resources/quality/abax_titan/atitan_pla_high.inst.cfg index b3b5295366a..af299953630 100644 --- a/resources/quality/abax_titan/atitan_pla_high.inst.cfg +++ b/resources/quality/abax_titan/atitan_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/abax_titan/atitan_pla_normal.inst.cfg b/resources/quality/abax_titan/atitan_pla_normal.inst.cfg index aab42f4f4c5..2bc6d4ef85c 100644 --- a/resources/quality/abax_titan/atitan_pla_normal.inst.cfg +++ b/resources/quality/abax_titan/atitan_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/ankermake_m5/ankermake_m5_draft.inst.cfg b/resources/quality/ankermake_m5/ankermake_m5_draft.inst.cfg index 0570c1cd400..653fe519851 100644 --- a/resources/quality/ankermake_m5/ankermake_m5_draft.inst.cfg +++ b/resources/quality/ankermake_m5/ankermake_m5_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/ankermake_m5/ankermake_m5_fine.inst.cfg b/resources/quality/ankermake_m5/ankermake_m5_fine.inst.cfg index 2aac68b60cd..b51b9ab3575 100644 --- a/resources/quality/ankermake_m5/ankermake_m5_fine.inst.cfg +++ b/resources/quality/ankermake_m5/ankermake_m5_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/ankermake_m5/ankermake_m5_normal.inst.cfg b/resources/quality/ankermake_m5/ankermake_m5_normal.inst.cfg index 5c2193dacf2..144d56eca60 100644 --- a/resources/quality/ankermake_m5/ankermake_m5_normal.inst.cfg +++ b/resources/quality/ankermake_m5/ankermake_m5_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_draft.inst.cfg b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_draft.inst.cfg index 7100f73522c..10e78081b9d 100644 --- a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_draft.inst.cfg +++ b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_high.inst.cfg b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_high.inst.cfg index 07acba4e3d6..9e4aee0e440 100644 --- a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_high.inst.cfg +++ b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_normal.inst.cfg b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_normal.inst.cfg index 53f1785709e..32d10397bce 100644 --- a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_normal.inst.cfg +++ b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_4max/anycubic_4max_draft.inst.cfg b/resources/quality/anycubic_4max/anycubic_4max_draft.inst.cfg index 42b5ce116df..1a1b8572bb0 100644 --- a/resources/quality/anycubic_4max/anycubic_4max_draft.inst.cfg +++ b/resources/quality/anycubic_4max/anycubic_4max_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_4max/anycubic_4max_high.inst.cfg b/resources/quality/anycubic_4max/anycubic_4max_high.inst.cfg index 0565f91e057..af3b74fc0c0 100644 --- a/resources/quality/anycubic_4max/anycubic_4max_high.inst.cfg +++ b/resources/quality/anycubic_4max/anycubic_4max_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_4max/anycubic_4max_normal.inst.cfg b/resources/quality/anycubic_4max/anycubic_4max_normal.inst.cfg index 003f787aac8..18c0acaf011 100644 --- a/resources/quality/anycubic_4max/anycubic_4max_normal.inst.cfg +++ b/resources/quality/anycubic_4max/anycubic_4max_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_draft.inst.cfg b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_draft.inst.cfg index c1e54314baf..a100908a537 100644 --- a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_draft.inst.cfg +++ b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_high.inst.cfg b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_high.inst.cfg index 0f0fa7e70da..41fc5c20aeb 100644 --- a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_high.inst.cfg +++ b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_normal.inst.cfg b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_normal.inst.cfg index 8ae13498b41..898c3e131aa 100644 --- a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_normal.inst.cfg +++ b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_draft.inst.cfg b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_draft.inst.cfg index 06ff5899b6e..be43f63425f 100644 --- a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_draft.inst.cfg +++ b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_high.inst.cfg b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_high.inst.cfg index 20890528ae2..9d8b7c99198 100644 --- a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_high.inst.cfg +++ b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_normal.inst.cfg b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_normal.inst.cfg index f09dd654b84..b57341f9a25 100644 --- a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_normal.inst.cfg +++ b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_draft.inst.cfg b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_draft.inst.cfg index 44c435f79a8..e358bb9e172 100644 --- a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_draft.inst.cfg +++ b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_high.inst.cfg b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_high.inst.cfg index 3e35582b03a..8663045149d 100644 --- a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_high.inst.cfg +++ b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_normal.inst.cfg b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_normal.inst.cfg index df146144ca5..8e3d3abc54e 100644 --- a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_normal.inst.cfg +++ b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg b/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg index 662e3cc7c43..c9de15f7925 100644 --- a/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg +++ b/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg b/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg index bcf355d7f46..1b8db2a1e0d 100644 --- a/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg +++ b/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg b/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg index bd8a9bae433..df989f6adc7 100644 --- a/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg +++ b/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_draft.inst.cfg b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_draft.inst.cfg index 2902ef4f534..3d372ceef1b 100644 --- a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_draft.inst.cfg +++ b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_high.inst.cfg b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_high.inst.cfg index 32ea52665ae..d5d27481a0c 100644 --- a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_high.inst.cfg +++ b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_normal.inst.cfg b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_normal.inst.cfg index 320e39eaa29..73910af2338 100644 --- a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_normal.inst.cfg +++ b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_draft.inst.cfg b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_draft.inst.cfg index 1045f06adc6..bb1ba766611 100644 --- a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_draft.inst.cfg +++ b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_high.inst.cfg b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_high.inst.cfg index f400daeb352..6806a23c2b8 100644 --- a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_high.inst.cfg +++ b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_normal.inst.cfg b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_normal.inst.cfg index 2ac1ab0dc7b..4ce99960430 100644 --- a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_normal.inst.cfg +++ b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_kobra/anycubic_kobra_abs.inst.cfg b/resources/quality/anycubic_kobra/anycubic_kobra_abs.inst.cfg index 52a0365291d..824d4e6fa54 100644 --- a/resources/quality/anycubic_kobra/anycubic_kobra_abs.inst.cfg +++ b/resources/quality/anycubic_kobra/anycubic_kobra_abs.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = abs -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_kobra/anycubic_kobra_pla.inst.cfg b/resources/quality/anycubic_kobra/anycubic_kobra_pla.inst.cfg index a0222dcf7fa..6a0462b35bb 100644 --- a/resources/quality/anycubic_kobra/anycubic_kobra_pla.inst.cfg +++ b/resources/quality/anycubic_kobra/anycubic_kobra_pla.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = pla -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_kobra/anycubic_kobra_tpu.inst.cfg b/resources/quality/anycubic_kobra/anycubic_kobra_tpu.inst.cfg index e6a92a2f571..4be68e74e51 100644 --- a/resources/quality/anycubic_kobra/anycubic_kobra_tpu.inst.cfg +++ b/resources/quality/anycubic_kobra/anycubic_kobra_tpu.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = tpu -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_abs.inst.cfg b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_abs.inst.cfg index da09c0d2c26..0b9632a9c97 100644 --- a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_abs.inst.cfg +++ b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_abs.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_abs quality_type = abs -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_pla.inst.cfg b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_pla.inst.cfg index 01869b9db50..2d91d4c5840 100644 --- a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_pla.inst.cfg +++ b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_pla.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = pla -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_tpu.inst.cfg b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_tpu.inst.cfg index 971664b1238..93bfca84fef 100644 --- a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_tpu.inst.cfg +++ b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_tpu.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_tpu quality_type = tpu -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_kobra_max/anycubic_kobra_max_pla.inst.cfg b/resources/quality/anycubic_kobra_max/anycubic_kobra_max_pla.inst.cfg index 34f0ef1268c..e04940df10e 100644 --- a/resources/quality/anycubic_kobra_max/anycubic_kobra_max_pla.inst.cfg +++ b/resources/quality/anycubic_kobra_max/anycubic_kobra_max_pla.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = pla -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_kobra_max/anycubic_kobra_max_tpu.inst.cfg b/resources/quality/anycubic_kobra_max/anycubic_kobra_max_tpu.inst.cfg index 36788383bbb..ce518fc4e11 100644 --- a/resources/quality/anycubic_kobra_max/anycubic_kobra_max_tpu.inst.cfg +++ b/resources/quality/anycubic_kobra_max/anycubic_kobra_max_tpu.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = tpu -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_kobra_plus/anycubic_kobra_plus_normal.inst.cfg b/resources/quality/anycubic_kobra_plus/anycubic_kobra_plus_normal.inst.cfg index 47983fe3b13..7ac90930a98 100644 --- a/resources/quality/anycubic_kobra_plus/anycubic_kobra_plus_normal.inst.cfg +++ b/resources/quality/anycubic_kobra_plus/anycubic_kobra_plus_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_draft.inst.cfg b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_draft.inst.cfg index 6579e5f77b3..ffdbb120386 100644 --- a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_draft.inst.cfg +++ b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_high.inst.cfg b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_high.inst.cfg index 01b6fa8039c..69ea4437368 100644 --- a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_high.inst.cfg +++ b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_normal.inst.cfg b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_normal.inst.cfg index 16ec95bd61b..23467c9bc3d 100644 --- a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_normal.inst.cfg +++ b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_predator/predator_coarse.inst.cfg b/resources/quality/anycubic_predator/predator_coarse.inst.cfg index d0b25f3d86d..cecac7c4176 100644 --- a/resources/quality/anycubic_predator/predator_coarse.inst.cfg +++ b/resources/quality/anycubic_predator/predator_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/anycubic_predator/predator_draft.inst.cfg b/resources/quality/anycubic_predator/predator_draft.inst.cfg index 6817b49bf9f..b675f04ca41 100644 --- a/resources/quality/anycubic_predator/predator_draft.inst.cfg +++ b/resources/quality/anycubic_predator/predator_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_predator/predator_extra_coarse.inst.cfg b/resources/quality/anycubic_predator/predator_extra_coarse.inst.cfg index 48c388b8455..21b398c1bbc 100644 --- a/resources/quality/anycubic_predator/predator_extra_coarse.inst.cfg +++ b/resources/quality/anycubic_predator/predator_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Xcoarse -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/anycubic_predator/predator_extra_fine.inst.cfg b/resources/quality/anycubic_predator/predator_extra_fine.inst.cfg index 3d162850831..0b4735578c3 100644 --- a/resources/quality/anycubic_predator/predator_extra_fine.inst.cfg +++ b/resources/quality/anycubic_predator/predator_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Xfine -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_predator/predator_fine.inst.cfg b/resources/quality/anycubic_predator/predator_fine.inst.cfg index 704ddbecc53..0d3015814d1 100644 --- a/resources/quality/anycubic_predator/predator_fine.inst.cfg +++ b/resources/quality/anycubic_predator/predator_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_predator/predator_normal.inst.cfg b/resources/quality/anycubic_predator/predator_normal.inst.cfg index d2f46d49fb3..a684d4d35b9 100644 --- a/resources/quality/anycubic_predator/predator_normal.inst.cfg +++ b/resources/quality/anycubic_predator/predator_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/artillery/ABS/artillery_0.2_ABS_super.inst.cfg b/resources/quality/artillery/ABS/artillery_0.2_ABS_super.inst.cfg index 2494ab41c8d..11acec995db 100644 --- a/resources/quality/artillery/ABS/artillery_0.2_ABS_super.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.2_ABS_ultra.inst.cfg b/resources/quality/artillery/ABS/artillery_0.2_ABS_ultra.inst.cfg index 18471cfe93f..c7666a95ec4 100644 --- a/resources/quality/artillery/ABS/artillery_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.3_ABS_adaptive.inst.cfg b/resources/quality/artillery/ABS/artillery_0.3_ABS_adaptive.inst.cfg index b72fd9065df..a3f3a42ca61 100644 --- a/resources/quality/artillery/ABS/artillery_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.3_ABS_low.inst.cfg b/resources/quality/artillery/ABS/artillery_0.3_ABS_low.inst.cfg index 467cc928c8d..5128f6fe3f7 100644 --- a/resources/quality/artillery/ABS/artillery_0.3_ABS_low.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.3_ABS_standard.inst.cfg b/resources/quality/artillery/ABS/artillery_0.3_ABS_standard.inst.cfg index ef8c7f8be94..f1931b93e99 100644 --- a/resources/quality/artillery/ABS/artillery_0.3_ABS_standard.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.3_ABS_super.inst.cfg b/resources/quality/artillery/ABS/artillery_0.3_ABS_super.inst.cfg index 81b2e8dce0e..2fb224f03ad 100644 --- a/resources/quality/artillery/ABS/artillery_0.3_ABS_super.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.4_ABS_adaptive.inst.cfg b/resources/quality/artillery/ABS/artillery_0.4_ABS_adaptive.inst.cfg index 58cb101bd12..117f78ff384 100644 --- a/resources/quality/artillery/ABS/artillery_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.4_ABS_low.inst.cfg b/resources/quality/artillery/ABS/artillery_0.4_ABS_low.inst.cfg index 8ac08cff99f..add5e339d49 100644 --- a/resources/quality/artillery/ABS/artillery_0.4_ABS_low.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.4_ABS_standard.inst.cfg b/resources/quality/artillery/ABS/artillery_0.4_ABS_standard.inst.cfg index 79131e8e274..0eb908acf63 100644 --- a/resources/quality/artillery/ABS/artillery_0.4_ABS_standard.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.4_ABS_super.inst.cfg b/resources/quality/artillery/ABS/artillery_0.4_ABS_super.inst.cfg index ff27e50cae3..25983e79c28 100644 --- a/resources/quality/artillery/ABS/artillery_0.4_ABS_super.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.5_ABS_adaptive.inst.cfg b/resources/quality/artillery/ABS/artillery_0.5_ABS_adaptive.inst.cfg index 30baac9a32f..6980b4c848f 100644 --- a/resources/quality/artillery/ABS/artillery_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.5_ABS_low.inst.cfg b/resources/quality/artillery/ABS/artillery_0.5_ABS_low.inst.cfg index 1a96e7a128f..549506a69ad 100644 --- a/resources/quality/artillery/ABS/artillery_0.5_ABS_low.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.5_ABS_standard.inst.cfg b/resources/quality/artillery/ABS/artillery_0.5_ABS_standard.inst.cfg index 7a83721c7a9..d6136c9f177 100644 --- a/resources/quality/artillery/ABS/artillery_0.5_ABS_standard.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.5_ABS_super.inst.cfg b/resources/quality/artillery/ABS/artillery_0.5_ABS_super.inst.cfg index 18323af856e..258a45ba893 100644 --- a/resources/quality/artillery/ABS/artillery_0.5_ABS_super.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.6_ABS_standard.inst.cfg b/resources/quality/artillery/ABS/artillery_0.6_ABS_standard.inst.cfg index a83f31e6ea7..1c556e55640 100644 --- a/resources/quality/artillery/ABS/artillery_0.6_ABS_standard.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.8_ABS_draft.inst.cfg b/resources/quality/artillery/ABS/artillery_0.8_ABS_draft.inst.cfg index 04b5256bd0f..bad27f445d5 100644 --- a/resources/quality/artillery/ABS/artillery_0.8_ABS_draft.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_1.0_ABS_draft.inst.cfg b/resources/quality/artillery/ABS/artillery_1.0_ABS_draft.inst.cfg index c1ff99aa05d..7fd0913c5ef 100644 --- a/resources/quality/artillery/ABS/artillery_1.0_ABS_draft.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.2_PETG_super.inst.cfg b/resources/quality/artillery/PETG/artillery_0.2_PETG_super.inst.cfg index 2c9681732da..c27c00e6d93 100644 --- a/resources/quality/artillery/PETG/artillery_0.2_PETG_super.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.2_PETG_ultra.inst.cfg b/resources/quality/artillery/PETG/artillery_0.2_PETG_ultra.inst.cfg index 0d2b8f11eb6..84099e707d0 100644 --- a/resources/quality/artillery/PETG/artillery_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.3_PETG_adaptive.inst.cfg b/resources/quality/artillery/PETG/artillery_0.3_PETG_adaptive.inst.cfg index e97603e9714..d8ab5b47088 100644 --- a/resources/quality/artillery/PETG/artillery_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.3_PETG_low.inst.cfg b/resources/quality/artillery/PETG/artillery_0.3_PETG_low.inst.cfg index af3c4ee0402..859d7010b19 100644 --- a/resources/quality/artillery/PETG/artillery_0.3_PETG_low.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.3_PETG_standard.inst.cfg b/resources/quality/artillery/PETG/artillery_0.3_PETG_standard.inst.cfg index c30f59b5ebb..121e957c300 100644 --- a/resources/quality/artillery/PETG/artillery_0.3_PETG_standard.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.3_PETG_super.inst.cfg b/resources/quality/artillery/PETG/artillery_0.3_PETG_super.inst.cfg index 7a5eff86ffe..92551aa821c 100644 --- a/resources/quality/artillery/PETG/artillery_0.3_PETG_super.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.4_PETG_adaptive.inst.cfg b/resources/quality/artillery/PETG/artillery_0.4_PETG_adaptive.inst.cfg index d654b8faade..776636a8fd1 100644 --- a/resources/quality/artillery/PETG/artillery_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.4_PETG_low.inst.cfg b/resources/quality/artillery/PETG/artillery_0.4_PETG_low.inst.cfg index 0baa04e044d..daceab0a294 100644 --- a/resources/quality/artillery/PETG/artillery_0.4_PETG_low.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.4_PETG_standard.inst.cfg b/resources/quality/artillery/PETG/artillery_0.4_PETG_standard.inst.cfg index 3d9c96953e0..50314b8361b 100644 --- a/resources/quality/artillery/PETG/artillery_0.4_PETG_standard.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.4_PETG_super.inst.cfg b/resources/quality/artillery/PETG/artillery_0.4_PETG_super.inst.cfg index 81fa019be81..2f4b5206de6 100644 --- a/resources/quality/artillery/PETG/artillery_0.4_PETG_super.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.5_PETG_adaptive.inst.cfg b/resources/quality/artillery/PETG/artillery_0.5_PETG_adaptive.inst.cfg index 447b328688a..207b81227e9 100644 --- a/resources/quality/artillery/PETG/artillery_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.5_PETG_low.inst.cfg b/resources/quality/artillery/PETG/artillery_0.5_PETG_low.inst.cfg index 70a4decabf2..24cf0d5390d 100644 --- a/resources/quality/artillery/PETG/artillery_0.5_PETG_low.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.5_PETG_standard.inst.cfg b/resources/quality/artillery/PETG/artillery_0.5_PETG_standard.inst.cfg index f738879edaf..8b6b8a05993 100644 --- a/resources/quality/artillery/PETG/artillery_0.5_PETG_standard.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.5_PETG_super.inst.cfg b/resources/quality/artillery/PETG/artillery_0.5_PETG_super.inst.cfg index 0fa123d7b39..48a329febc5 100644 --- a/resources/quality/artillery/PETG/artillery_0.5_PETG_super.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.6_PETG_standard.inst.cfg b/resources/quality/artillery/PETG/artillery_0.6_PETG_standard.inst.cfg index 2ea0e2d35d1..d9230a63981 100644 --- a/resources/quality/artillery/PETG/artillery_0.6_PETG_standard.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.8_PETG_draft.inst.cfg b/resources/quality/artillery/PETG/artillery_0.8_PETG_draft.inst.cfg index fcd245f96db..2f923948922 100644 --- a/resources/quality/artillery/PETG/artillery_0.8_PETG_draft.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_1.0_PETG_draft.inst.cfg b/resources/quality/artillery/PETG/artillery_1.0_PETG_draft.inst.cfg index 6cdd2dd4354..4c58a5698e9 100644 --- a/resources/quality/artillery/PETG/artillery_1.0_PETG_draft.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.2_PLA_super.inst.cfg b/resources/quality/artillery/PLA/artillery_0.2_PLA_super.inst.cfg index c63856afd59..8ec277000a2 100644 --- a/resources/quality/artillery/PLA/artillery_0.2_PLA_super.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.2_PLA_ultra.inst.cfg b/resources/quality/artillery/PLA/artillery_0.2_PLA_ultra.inst.cfg index 91fb63af226..f020dd2225a 100644 --- a/resources/quality/artillery/PLA/artillery_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.3_PLA_adaptive.inst.cfg b/resources/quality/artillery/PLA/artillery_0.3_PLA_adaptive.inst.cfg index a7f8e38f123..a8ead0ef611 100644 --- a/resources/quality/artillery/PLA/artillery_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.3_PLA_low.inst.cfg b/resources/quality/artillery/PLA/artillery_0.3_PLA_low.inst.cfg index 6bf0e70f966..201cc59e1df 100644 --- a/resources/quality/artillery/PLA/artillery_0.3_PLA_low.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.3_PLA_standard.inst.cfg b/resources/quality/artillery/PLA/artillery_0.3_PLA_standard.inst.cfg index 217987265db..2bb875f22dd 100644 --- a/resources/quality/artillery/PLA/artillery_0.3_PLA_standard.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.3_PLA_super.inst.cfg b/resources/quality/artillery/PLA/artillery_0.3_PLA_super.inst.cfg index 312f20eb778..e6295131e68 100644 --- a/resources/quality/artillery/PLA/artillery_0.3_PLA_super.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.4_PLA_adaptive.inst.cfg b/resources/quality/artillery/PLA/artillery_0.4_PLA_adaptive.inst.cfg index 7f50db49369..71cef9cc68a 100644 --- a/resources/quality/artillery/PLA/artillery_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.4_PLA_low.inst.cfg b/resources/quality/artillery/PLA/artillery_0.4_PLA_low.inst.cfg index e2fc24f53bd..84905f95d90 100644 --- a/resources/quality/artillery/PLA/artillery_0.4_PLA_low.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.4_PLA_standard.inst.cfg b/resources/quality/artillery/PLA/artillery_0.4_PLA_standard.inst.cfg index b2f5fefdfe9..83c159d91fc 100644 --- a/resources/quality/artillery/PLA/artillery_0.4_PLA_standard.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.4_PLA_super.inst.cfg b/resources/quality/artillery/PLA/artillery_0.4_PLA_super.inst.cfg index 842a8833e6f..118494b3801 100644 --- a/resources/quality/artillery/PLA/artillery_0.4_PLA_super.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.5_PLA_adaptive.inst.cfg b/resources/quality/artillery/PLA/artillery_0.5_PLA_adaptive.inst.cfg index 946344995b7..e2b8eb9d5c0 100644 --- a/resources/quality/artillery/PLA/artillery_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.5_PLA_low.inst.cfg b/resources/quality/artillery/PLA/artillery_0.5_PLA_low.inst.cfg index 0c1f57dced1..ecd83573078 100644 --- a/resources/quality/artillery/PLA/artillery_0.5_PLA_low.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.5_PLA_standard.inst.cfg b/resources/quality/artillery/PLA/artillery_0.5_PLA_standard.inst.cfg index 19c810fad0b..46487edb08f 100644 --- a/resources/quality/artillery/PLA/artillery_0.5_PLA_standard.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.5_PLA_super.inst.cfg b/resources/quality/artillery/PLA/artillery_0.5_PLA_super.inst.cfg index b04f766a553..6d31588cf0d 100644 --- a/resources/quality/artillery/PLA/artillery_0.5_PLA_super.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.6_PLA_draft.inst.cfg b/resources/quality/artillery/PLA/artillery_0.6_PLA_draft.inst.cfg index 7bae27f1438..ea6dfa3f9e2 100644 --- a/resources/quality/artillery/PLA/artillery_0.6_PLA_draft.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.6_PLA_low.inst.cfg b/resources/quality/artillery/PLA/artillery_0.6_PLA_low.inst.cfg index b03d45d3ad9..2b281b57f7e 100644 --- a/resources/quality/artillery/PLA/artillery_0.6_PLA_low.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.6_PLA_standard.inst.cfg b/resources/quality/artillery/PLA/artillery_0.6_PLA_standard.inst.cfg index 32e11e0e66d..d349693711f 100644 --- a/resources/quality/artillery/PLA/artillery_0.6_PLA_standard.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.8_PLA_draft.inst.cfg b/resources/quality/artillery/PLA/artillery_0.8_PLA_draft.inst.cfg index 504ce9c63ac..08a00715be1 100644 --- a/resources/quality/artillery/PLA/artillery_0.8_PLA_draft.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_1.0_PLA_draft.inst.cfg b/resources/quality/artillery/PLA/artillery_1.0_PLA_draft.inst.cfg index 35bbb0a3b57..bd3c5127104 100644 --- a/resources/quality/artillery/PLA/artillery_1.0_PLA_draft.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.3_TPU_adaptive.inst.cfg b/resources/quality/artillery/TPU/artillery_0.3_TPU_adaptive.inst.cfg index 889d97872a4..964c5c1a829 100644 --- a/resources/quality/artillery/TPU/artillery_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.3_TPU_standard.inst.cfg b/resources/quality/artillery/TPU/artillery_0.3_TPU_standard.inst.cfg index 41b43ad93a2..c8df48da97a 100644 --- a/resources/quality/artillery/TPU/artillery_0.3_TPU_standard.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.3_TPU_super.inst.cfg b/resources/quality/artillery/TPU/artillery_0.3_TPU_super.inst.cfg index 32ae52bd351..c91abe6f606 100644 --- a/resources/quality/artillery/TPU/artillery_0.3_TPU_super.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.4_TPU_adaptive.inst.cfg b/resources/quality/artillery/TPU/artillery_0.4_TPU_adaptive.inst.cfg index 188f0535068..4f609193b97 100644 --- a/resources/quality/artillery/TPU/artillery_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.4_TPU_standard.inst.cfg b/resources/quality/artillery/TPU/artillery_0.4_TPU_standard.inst.cfg index e9f095caa4f..643d3f802ce 100644 --- a/resources/quality/artillery/TPU/artillery_0.4_TPU_standard.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.4_TPU_super.inst.cfg b/resources/quality/artillery/TPU/artillery_0.4_TPU_super.inst.cfg index 0d88514cc88..fd9770ad13e 100644 --- a/resources/quality/artillery/TPU/artillery_0.4_TPU_super.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.5_TPU_adaptive.inst.cfg b/resources/quality/artillery/TPU/artillery_0.5_TPU_adaptive.inst.cfg index a9ea17fa94a..7e20a4e4440 100644 --- a/resources/quality/artillery/TPU/artillery_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.5_TPU_standard.inst.cfg b/resources/quality/artillery/TPU/artillery_0.5_TPU_standard.inst.cfg index e831ef8c1c5..b172c720a66 100644 --- a/resources/quality/artillery/TPU/artillery_0.5_TPU_standard.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.5_TPU_super.inst.cfg b/resources/quality/artillery/TPU/artillery_0.5_TPU_super.inst.cfg index fcacad6c24b..8488194de36 100644 --- a/resources/quality/artillery/TPU/artillery_0.5_TPU_super.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.6_TPU_standard.inst.cfg b/resources/quality/artillery/TPU/artillery_0.6_TPU_standard.inst.cfg index ae01f298f0f..f19464ad8cf 100644 --- a/resources/quality/artillery/TPU/artillery_0.6_TPU_standard.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.8_TPU_draft.inst.cfg b/resources/quality/artillery/TPU/artillery_0.8_TPU_draft.inst.cfg index 2ce5883f07f..f49e7541acd 100644 --- a/resources/quality/artillery/TPU/artillery_0.8_TPU_draft.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_1.0_TPU_draft.inst.cfg b/resources/quality/artillery/TPU/artillery_1.0_TPU_draft.inst.cfg index 98be4f17761..7d21369ee53 100644 --- a/resources/quality/artillery/TPU/artillery_1.0_TPU_draft.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/artillery/artillery_global_adaptive.inst.cfg b/resources/quality/artillery/artillery_global_adaptive.inst.cfg index 4b9222e74ed..c38437a2b05 100644 --- a/resources/quality/artillery/artillery_global_adaptive.inst.cfg +++ b/resources/quality/artillery/artillery_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/artillery/artillery_global_draft.inst.cfg b/resources/quality/artillery/artillery_global_draft.inst.cfg index 0a615d65a8e..f2623b07ca2 100644 --- a/resources/quality/artillery/artillery_global_draft.inst.cfg +++ b/resources/quality/artillery/artillery_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/artillery/artillery_global_low.inst.cfg b/resources/quality/artillery/artillery_global_low.inst.cfg index da9ca07ad09..b68bb9cad02 100644 --- a/resources/quality/artillery/artillery_global_low.inst.cfg +++ b/resources/quality/artillery/artillery_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/artillery/artillery_global_standard.inst.cfg b/resources/quality/artillery/artillery_global_standard.inst.cfg index a30f5a3596b..3c4b7e3f3f9 100644 --- a/resources/quality/artillery/artillery_global_standard.inst.cfg +++ b/resources/quality/artillery/artillery_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/artillery/artillery_global_super.inst.cfg b/resources/quality/artillery/artillery_global_super.inst.cfg index 87ca064f924..e70190eb90d 100644 --- a/resources/quality/artillery/artillery_global_super.inst.cfg +++ b/resources/quality/artillery/artillery_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/artillery/artillery_global_ultra.inst.cfg b/resources/quality/artillery/artillery_global_ultra.inst.cfg index 00f75e3681a..850cc73f835 100644 --- a/resources/quality/artillery/artillery_global_ultra.inst.cfg +++ b/resources/quality/artillery/artillery_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/artillery/nylon/artillery_0.2_Nylon_super.inst.cfg b/resources/quality/artillery/nylon/artillery_0.2_Nylon_super.inst.cfg index df48b1e465d..9244ae9335b 100644 --- a/resources/quality/artillery/nylon/artillery_0.2_Nylon_super.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.2_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.2_Nylon_ultra.inst.cfg b/resources/quality/artillery/nylon/artillery_0.2_Nylon_ultra.inst.cfg index 442680d4d51..9523866c1df 100644 --- a/resources/quality/artillery/nylon/artillery_0.2_Nylon_ultra.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.2_Nylon_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.3_Nylon_adaptive.inst.cfg b/resources/quality/artillery/nylon/artillery_0.3_Nylon_adaptive.inst.cfg index e23792a6fcf..f59bf7aaf9c 100644 --- a/resources/quality/artillery/nylon/artillery_0.3_Nylon_adaptive.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.3_Nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.3_Nylon_low.inst.cfg b/resources/quality/artillery/nylon/artillery_0.3_Nylon_low.inst.cfg index 4a27e7e3b28..7ca002b987b 100644 --- a/resources/quality/artillery/nylon/artillery_0.3_Nylon_low.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.3_Nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.3_Nylon_standard.inst.cfg b/resources/quality/artillery/nylon/artillery_0.3_Nylon_standard.inst.cfg index d8c593629fd..ba93b1d995c 100644 --- a/resources/quality/artillery/nylon/artillery_0.3_Nylon_standard.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.3_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.3_Nylon_super.inst.cfg b/resources/quality/artillery/nylon/artillery_0.3_Nylon_super.inst.cfg index c5b1f436762..1ba4d7b89f2 100644 --- a/resources/quality/artillery/nylon/artillery_0.3_Nylon_super.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.3_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.4_Nylon_adaptive.inst.cfg b/resources/quality/artillery/nylon/artillery_0.4_Nylon_adaptive.inst.cfg index ec9fbc5d512..3a738b966ff 100644 --- a/resources/quality/artillery/nylon/artillery_0.4_Nylon_adaptive.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.4_Nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.4_Nylon_low.inst.cfg b/resources/quality/artillery/nylon/artillery_0.4_Nylon_low.inst.cfg index 1865da04549..10ea2fe33ff 100644 --- a/resources/quality/artillery/nylon/artillery_0.4_Nylon_low.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.4_Nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.4_Nylon_standard.inst.cfg b/resources/quality/artillery/nylon/artillery_0.4_Nylon_standard.inst.cfg index beddca58ae3..7b40781160e 100644 --- a/resources/quality/artillery/nylon/artillery_0.4_Nylon_standard.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.4_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.4_Nylon_super.inst.cfg b/resources/quality/artillery/nylon/artillery_0.4_Nylon_super.inst.cfg index 9806fe11108..1bfa6501b86 100644 --- a/resources/quality/artillery/nylon/artillery_0.4_Nylon_super.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.4_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.5_Nylon_adaptive.inst.cfg b/resources/quality/artillery/nylon/artillery_0.5_Nylon_adaptive.inst.cfg index 608f1288a79..68e9d252315 100644 --- a/resources/quality/artillery/nylon/artillery_0.5_Nylon_adaptive.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.5_Nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.5_Nylon_low.inst.cfg b/resources/quality/artillery/nylon/artillery_0.5_Nylon_low.inst.cfg index 0667e04e5b8..055614c812b 100644 --- a/resources/quality/artillery/nylon/artillery_0.5_Nylon_low.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.5_Nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.5_Nylon_standard.inst.cfg b/resources/quality/artillery/nylon/artillery_0.5_Nylon_standard.inst.cfg index 212526e52c1..37f8e3ca188 100644 --- a/resources/quality/artillery/nylon/artillery_0.5_Nylon_standard.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.5_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.5_Nylon_super.inst.cfg b/resources/quality/artillery/nylon/artillery_0.5_Nylon_super.inst.cfg index 7c9931026c8..ea878073401 100644 --- a/resources/quality/artillery/nylon/artillery_0.5_Nylon_super.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.5_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.6_Nylon_standard.inst.cfg b/resources/quality/artillery/nylon/artillery_0.6_Nylon_standard.inst.cfg index 67fab7e1297..a4d8b5cf892 100644 --- a/resources/quality/artillery/nylon/artillery_0.6_Nylon_standard.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.6_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.8_Nylon_draft.inst.cfg b/resources/quality/artillery/nylon/artillery_0.8_Nylon_draft.inst.cfg index 477864dd2fb..450ff10e653 100644 --- a/resources/quality/artillery/nylon/artillery_0.8_Nylon_draft.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.8_Nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_1.0_Nylon_draft.inst.cfg b/resources/quality/artillery/nylon/artillery_1.0_Nylon_draft.inst.cfg index 3247349db6f..651b7b91ce1 100644 --- a/resources/quality/artillery/nylon/artillery_1.0_Nylon_draft.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_1.0_Nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_extrafast_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_extrafast_quality.inst.cfg index 4a20a7b9c81..c618f22ec61 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_extrafast_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_extrafast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_extrafine_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_extrafine_quality.inst.cfg index 805bd9ac2ef..9045688eb56 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_extrafine_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_extrafine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_fast_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_fast_quality.inst.cfg index a0bad4bd6fc..c20770e7eb4 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_fast_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_fast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_fine_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_fine_quality.inst.cfg index 454d4bd066a..21a9b4977d2 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_fine_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_fine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_normal_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_normal_quality.inst.cfg index a51bb0e40a0..5783d4035ed 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_normal_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_normal_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_sprint_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_sprint_quality.inst.cfg index 3285ac2f7fb..ebf22409812 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_sprint_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_sprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_supersprint_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_supersprint_quality.inst.cfg index 7c6bbd87177..45ac5f30e18 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_supersprint_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_supersprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_ultrasprint_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_ultrasprint_quality.inst.cfg index 8fc83c12f1b..abea65986db 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_ultrasprint_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_ultrasprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_extrafast.inst.cfg index 8aece3d5e67..92112915038 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fast.inst.cfg index e1faf41888d..0037dc8e3be 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fine.inst.cfg index 02ff6d5e636..7814f10d5ad 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_normal.inst.cfg index 0d0a89e4cfc..f4f52b4f641 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_extrafast.inst.cfg index 3e79486620c..7e0700c9127 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fast.inst.cfg index 9aaadf6456c..f31ac3b7631 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fine.inst.cfg index 1d9e208e7e4..da88ed8e0a8 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_normal.inst.cfg index 72e8ad4951a..b5f6a23b1a0 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_extrafast.inst.cfg index 0e1f420c0a9..cfe64233116 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fast.inst.cfg index badfe12feee..f12e118679b 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fine.inst.cfg index 1940b724b43..cfd4c48e3c9 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_normal.inst.cfg index d62cced041c..e2267a15be7 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_extrafast.inst.cfg index 95e4eda1cc8..4895e1bad9e 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fast.inst.cfg index 4cab5ed3926..594c8cc3404 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fine.inst.cfg index 9cc4a1c86f0..f98243c8706 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_normal.inst.cfg index ab3be954b32..9a392d3fe7a 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_extrafast.inst.cfg index a3c927e449f..204bc3c6ce1 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fast.inst.cfg index 01df85d5e59..8b70a44c017 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fine.inst.cfg index 6bf277081a3..8674f58cd12 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_normal.inst.cfg index 674ff8d7462..f9e1c1575a4 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_extrafast.inst.cfg index c60aecae73c..b6bd7593374 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fast.inst.cfg index 1bd6efc9981..1aa556f1898 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fine.inst.cfg index 799d7770873..cd021a0cbcd 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_normal.inst.cfg index 1d609a9b5b5..6b4a6173944 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_extrafast.inst.cfg index 99a80a7f046..c40580028ae 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fast.inst.cfg index 9d5e84588c4..03f80e8e840 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fine.inst.cfg index f418bb75acd..820c8b74ac3 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_normal.inst.cfg index 5b2d7d82442..6ad627d3e14 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_extrafast.inst.cfg index a7f1d0b0e5d..e9b0b4fd9c5 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fast.inst.cfg index 4ff61c22b53..d5e5334a226 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fine.inst.cfg index 620225e814f..962d4dcce6d 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_normal.inst.cfg index d581f868001..89cfdadfd52 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_extrafast.inst.cfg index d0a7f429b69..17323226f9d 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_sprint.inst.cfg index 1269e55fc09..d81d212335f 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_supersprint.inst.cfg index 9d9b88f342c..98ef74f7d24 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_extrafast.inst.cfg index 227c8b174bb..40c8023fb6d 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_sprint.inst.cfg index ad6061154d8..b1de8aaba13 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_supersprint.inst.cfg index a5fb56480ad..ae011922939 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_extrafast.inst.cfg index c4be47cafda..65582f5b0d8 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_sprint.inst.cfg index e6afaf235bb..a156e49b781 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_supersprint.inst.cfg index 2edad0b4775..28aa90f61a7 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_extrafast.inst.cfg index 9074add48c6..b1d9efc34aa 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_sprint.inst.cfg index 43db60ad356..672c65f51cd 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_supersprint.inst.cfg index ae91df6c8fd..b29b85b8f2c 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_extrafast.inst.cfg index cb2d7d8adc4..bf044f95413 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_sprint.inst.cfg index 94a2cb199f5..99aa800fd3d 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_supersprint.inst.cfg index a1e9de0c4bf..61092813453 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_extrafast.inst.cfg index 070706df536..d5e6e8f61d0 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_sprint.inst.cfg index 2161bbfe5e6..e558d3c272e 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_supersprint.inst.cfg index d9a8ddcaedc..034dd296818 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_extrafast.inst.cfg index aae1778e7b2..8bffcdd8c5c 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_sprint.inst.cfg index 5fae9d17f4e..e64eee6119b 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_supersprint.inst.cfg index a33aa63546e..fa25a246fb9 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_extrafast.inst.cfg index 88f895a788e..a68aded6cec 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_sprint.inst.cfg index cb430693092..908298d6c43 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_supersprint.inst.cfg index dd81906dd05..db69b0d7104 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/beamup_l/beamup_l_coarse.inst.cfg b/resources/quality/beamup_l/beamup_l_coarse.inst.cfg index 2fd1b8afcae..0c492f7651d 100644 --- a/resources/quality/beamup_l/beamup_l_coarse.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/beamup_l/beamup_l_draft.inst.cfg b/resources/quality/beamup_l/beamup_l_draft.inst.cfg index e3cf82651be..8f3fb7ce5dd 100644 --- a/resources/quality/beamup_l/beamup_l_draft.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg b/resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg index 8b4e8eccc75..203f8da1650 100644 --- a/resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/beamup_l/beamup_l_fine.inst.cfg b/resources/quality/beamup_l/beamup_l_fine.inst.cfg index 87ed50905c9..e62534025d7 100644 --- a/resources/quality/beamup_l/beamup_l_fine.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/beamup_l/beamup_l_normal.inst.cfg b/resources/quality/beamup_l/beamup_l_normal.inst.cfg index 59ad26fc039..86d73af1ef1 100644 --- a/resources/quality/beamup_l/beamup_l_normal.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/beamup_s/beamup_s_coarse.inst.cfg b/resources/quality/beamup_s/beamup_s_coarse.inst.cfg index 673950dca82..d7b636cbc77 100644 --- a/resources/quality/beamup_s/beamup_s_coarse.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/beamup_s/beamup_s_draft.inst.cfg b/resources/quality/beamup_s/beamup_s_draft.inst.cfg index a307f2d8727..50a8d2fe50a 100644 --- a/resources/quality/beamup_s/beamup_s_draft.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg b/resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg index daf1c8c5e53..eaa39d9cf75 100644 --- a/resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/beamup_s/beamup_s_fine.inst.cfg b/resources/quality/beamup_s/beamup_s_fine.inst.cfg index 798cc6bb68b..726d48be205 100644 --- a/resources/quality/beamup_s/beamup_s_fine.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/beamup_s/beamup_s_normal.inst.cfg b/resources/quality/beamup_s/beamup_s_normal.inst.cfg index cab58403303..eaafcc1164b 100644 --- a/resources/quality/beamup_s/beamup_s_normal.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/biqu/base/biqu_base_0.2_ABS_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_ABS_super.inst.cfg index 036be998b8f..6aa4fae4880 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_ABS_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.2_ABS_ultra.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_ABS_ultra.inst.cfg index 38dd0a39e9c..a521feca637 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.2_PETG_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_PETG_super.inst.cfg index 9de7b59deb3..8811d1f8370 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_PETG_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.2_PETG_ultra.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_PETG_ultra.inst.cfg index 16b26530eee..d7a307f57a4 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.2_PLA_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_PLA_super.inst.cfg index d1f35d9b952..e672eb93164 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_PLA_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.2_PLA_ultra.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_PLA_ultra.inst.cfg index a8469a4ea90..be00db90b33 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_ABS_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_ABS_adaptive.inst.cfg index 1e194642437..b565e8f74c5 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_ABS_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_ABS_low.inst.cfg index 9fdab1172d2..51dc9fbb767 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_ABS_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_ABS_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_ABS_standard.inst.cfg index 1d8769491da..0738ff8ef8c 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_ABS_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_ABS_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_ABS_super.inst.cfg index 41ad0484b6e..07c7f0ded11 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_ABS_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PETG_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PETG_adaptive.inst.cfg index 58785c33ae9..c014b267d02 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PETG_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PETG_low.inst.cfg index 119ca0f89ee..09f14d8c01c 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PETG_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PETG_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PETG_standard.inst.cfg index 2d5d033fd07..363762ac851 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PETG_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PETG_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PETG_super.inst.cfg index a8b77b9c422..fb21754f0fd 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PETG_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PLA_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PLA_adaptive.inst.cfg index 9fb5cb6d1b6..ce554b27552 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PLA_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PLA_low.inst.cfg index 1ee6fb803cd..07b0d4d369e 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PLA_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PLA_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PLA_standard.inst.cfg index 822a0635a7f..06258db290c 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PLA_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PLA_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PLA_super.inst.cfg index 5b52d5a0d9c..68157037265 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PLA_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_TPU_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_TPU_adaptive.inst.cfg index b4c9741aa32..8d5cc949032 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_TPU_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_TPU_standard.inst.cfg index b890ee3ed6a..84eaa67a290 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_TPU_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_TPU_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_TPU_super.inst.cfg index 0dd669dd917..000779dbbad 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_TPU_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_ABS_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_ABS_adaptive.inst.cfg index b5ab386c530..ea02181e29b 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_ABS_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_ABS_low.inst.cfg index daff0575d47..1301d6b732c 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_ABS_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_ABS_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_ABS_standard.inst.cfg index fa099cce34f..005a64b24d3 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_ABS_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_ABS_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_ABS_super.inst.cfg index b84a7f81829..f9b4caf8fb7 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_ABS_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PETG_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PETG_adaptive.inst.cfg index 7c050006bf4..4af0e371e88 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PETG_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PETG_low.inst.cfg index 6649f1541d0..78825c5d8d2 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PETG_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PETG_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PETG_standard.inst.cfg index 28134387ec9..aa96425455b 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PETG_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PETG_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PETG_super.inst.cfg index 8b0cbd7a9e8..c62eb066553 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PETG_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PLA_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PLA_adaptive.inst.cfg index 5f20bf45a54..a507e2555e9 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PLA_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PLA_low.inst.cfg index 23cbf503dca..588b3dacc19 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PLA_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PLA_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PLA_standard.inst.cfg index cbf5114492e..df611979247 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PLA_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PLA_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PLA_super.inst.cfg index e81de9145f1..1dbcb62fb3f 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PLA_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_TPU_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_TPU_adaptive.inst.cfg index d12bd473f11..8bff839e453 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_TPU_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_TPU_standard.inst.cfg index 4ca89c2c0e7..f0333fac757 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_TPU_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_TPU_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_TPU_super.inst.cfg index a95fc1f16f2..924dd669d1c 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_TPU_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_ABS_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_ABS_adaptive.inst.cfg index 7ebed839a99..05e3644675c 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_ABS_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_ABS_low.inst.cfg index e7265c56636..91466498c55 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_ABS_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_ABS_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_ABS_standard.inst.cfg index 0ed78dd5fb6..68e774f2053 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_ABS_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_ABS_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_ABS_super.inst.cfg index f761120b8af..0f84569bad8 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_ABS_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PETG_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PETG_adaptive.inst.cfg index f691230889b..724d76d23b8 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PETG_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PETG_low.inst.cfg index f510370d291..b801e75cc30 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PETG_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PETG_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PETG_standard.inst.cfg index cf99fbf92de..7340f539f2e 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PETG_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PETG_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PETG_super.inst.cfg index 9a3b7c79f1c..754c2a43eaf 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PETG_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PLA_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PLA_adaptive.inst.cfg index c451ac23729..f21e6e3b084 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PLA_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PLA_low.inst.cfg index 609304cd6b6..157b8eb9e3e 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PLA_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PLA_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PLA_standard.inst.cfg index f08b2636fb2..e116b7ec11a 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PLA_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PLA_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PLA_super.inst.cfg index 96284914bb3..1ea39a2d1ee 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PLA_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_TPU_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_TPU_adaptive.inst.cfg index 34e8acaab72..7009c6d5fbd 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_TPU_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_TPU_standard.inst.cfg index 76214d104ed..2f0f770507b 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_TPU_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_TPU_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_TPU_super.inst.cfg index ccf43bf03a2..8a23e888c58 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_TPU_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_ABS_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_ABS_standard.inst.cfg index e77a774aab1..9c5164287ed 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_ABS_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_PETG_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_PETG_standard.inst.cfg index 0965a5a7269..1ac3ee85a3b 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_PETG_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_PLA_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_PLA_draft.inst.cfg index 0d3444cebe9..6b90e734830 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_PLA_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_PLA_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_PLA_low.inst.cfg index a47f650cabe..c4db9c19791 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_PLA_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_PLA_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_PLA_standard.inst.cfg index c1d91222469..23f06b83d7e 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_PLA_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_TPU_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_TPU_standard.inst.cfg index 5aac2b8121b..a95181b9070 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_TPU_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.8_ABS_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_0.8_ABS_draft.inst.cfg index 160372ef046..5df16e09a61 100644 --- a/resources/quality/biqu/base/biqu_base_0.8_ABS_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.8_PETG_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_0.8_PETG_draft.inst.cfg index 063dfef2c21..bcbf4eb1e64 100644 --- a/resources/quality/biqu/base/biqu_base_0.8_PETG_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.8_PLA_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_0.8_PLA_draft.inst.cfg index 89706e6c0b6..ef2c484653b 100644 --- a/resources/quality/biqu/base/biqu_base_0.8_PLA_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.8_TPU_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_0.8_TPU_draft.inst.cfg index c4b20eaa9e7..d3a92884d1e 100644 --- a/resources/quality/biqu/base/biqu_base_0.8_TPU_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_1.0_ABS_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_1.0_ABS_draft.inst.cfg index 0892112dc73..c5d553b9d92 100644 --- a/resources/quality/biqu/base/biqu_base_1.0_ABS_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_1.0_PETG_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_1.0_PETG_draft.inst.cfg index 491307ecd43..8c999eb1614 100644 --- a/resources/quality/biqu/base/biqu_base_1.0_PETG_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_1.0_PLA_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_1.0_PLA_draft.inst.cfg index f37a42f08f1..f509a3b5728 100644 --- a/resources/quality/biqu/base/biqu_base_1.0_PLA_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_1.0_TPU_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_1.0_TPU_draft.inst.cfg index cdd5ee3b7e5..d712d097b27 100644 --- a/resources/quality/biqu/base/biqu_base_1.0_TPU_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_global_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_global_adaptive.inst.cfg index 5d3ab9951c6..1096d25f8c2 100644 --- a/resources/quality/biqu/base/biqu_base_global_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/biqu/base/biqu_base_global_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_global_draft.inst.cfg index c8be622c9b4..bfe1b9a4b19 100644 --- a/resources/quality/biqu/base/biqu_base_global_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/biqu/base/biqu_base_global_low.inst.cfg b/resources/quality/biqu/base/biqu_base_global_low.inst.cfg index 32c8498457d..f3023002322 100644 --- a/resources/quality/biqu/base/biqu_base_global_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/biqu/base/biqu_base_global_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_global_standard.inst.cfg index 15a6c391589..7361f29fa01 100644 --- a/resources/quality/biqu/base/biqu_base_global_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/biqu/base/biqu_base_global_super.inst.cfg b/resources/quality/biqu/base/biqu_base_global_super.inst.cfg index 9180d9e17fe..8c6c8d09194 100644 --- a/resources/quality/biqu/base/biqu_base_global_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/biqu/base/biqu_base_global_ultra.inst.cfg b/resources/quality/biqu/base/biqu_base_global_ultra.inst.cfg index 4c100e76658..fbea0a9ed8d 100644 --- a/resources/quality/biqu/base/biqu_base_global_ultra.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.20_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.20_draft.inst.cfg index b232427d3c2..bd1da0170aa 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.20_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.20_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low 0.2 -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.20_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.20_standard.inst.cfg index a022de74e8f..08fc7386191 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.20_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal 0.2 -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.30_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.30_draft.inst.cfg index 11c59d44c21..0993d1e9382 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.30_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.30_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.30_standard.inst.cfg index 4a058d050a0..60df32c5615 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.30_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.30_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal 0.3 -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.30_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.30_ultra.inst.cfg index 50176898a64..c54ce24ba47 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.30_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.30_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.40_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.40_adaptive.inst.cfg index 9efd41ac622..dbbd5b37880 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.40_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.40_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.40_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.40_draft.inst.cfg index dd86c5d2cdc..6fa18591f69 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.40_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.40_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.40_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.40_standard.inst.cfg index eafdafdda92..1c630a6e143 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.40_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.40_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.40_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.40_ultra.inst.cfg index 99272b1686f..7b5af6f41ba 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.40_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.40_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.50_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.50_adaptive.inst.cfg index 5e7b27e25c4..92deb8ba49b 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.50_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.50_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.50_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.50_draft.inst.cfg index 06b62ea74a6..e09730ba942 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.50_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.50_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.50_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.50_standard.inst.cfg index 496773ae3c9..d04036f8d8f 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.50_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.50_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.50_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.50_ultra.inst.cfg index f8bcbd83c52..9713c85edeb 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.50_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.50_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.60_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.60_adaptive.inst.cfg index 6f5560e1038..f9597d54b56 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.60_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.60_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.60_draft.inst.cfg index e0ec3a106b8..2e26c89cd2d 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.60_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.60_low.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.60_low.inst.cfg index 39139e2f53a..0706d578440 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.60_low.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.60_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.60_standard.inst.cfg index 6050a15f3ac..ca494c37776 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.60_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.60_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.60_ultra.inst.cfg index ffff45ea6ca..97eb1907692 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.60_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_adaptive.inst.cfg index d8512d64278..7eb8ddd9202 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_draft.inst.cfg index 2d59bcae6fa..7b80e3ba890 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_low.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_low.inst.cfg index 112e469f3e9..22389c7f596 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_low.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_standard.inst.cfg index 0d7228ac5a4..bfe070b2ef8 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_superlow.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_superlow.inst.cfg index 79cd34d8055..5420a1f6b80 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_superlow.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_ultra.inst.cfg index d68fea886de..33071d96b4e 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_adaptive.inst.cfg index c8432e47202..241a81753ec 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_draft.inst.cfg index 33bb04910c3..17033f013df 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_low.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_low.inst.cfg index e3c16ff6744..0b6985238b0 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_low.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_standard.inst.cfg index 179b68a4805..abdf0409f00 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_superlow.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_superlow.inst.cfg index b077c5e302f..d83be541317 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_superlow.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_ultra.inst.cfg index 5984ebc0a75..f97453339bb 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_adaptive.inst.cfg index c0ab994e6fa..66ef59fac8b 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 1.2mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_draft.inst.cfg index 6f8cc1cb79b..45549791bf2 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.2mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_low.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_low.inst.cfg index fa51646a965..0f95a2c5f36 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_low.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 1.2mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_standard.inst.cfg index d06ca688786..4b777fb89d8 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.2mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_superlow.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_superlow.inst.cfg index 06bd9a5e2c7..b1d01bfc870 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_superlow.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 22 +setting_version = 23 type = quality variant = 1.2mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_ultra.inst.cfg index ddc1f73edc5..61c875e6177 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 1.2mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_adaptive.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_adaptive.inst.cfg index b9e01c054d2..dd9168741c6 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.4mm weight = -2 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_draft.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_draft.inst.cfg index 120840adac3..7ac14cd8f32 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.4mm weight = -5 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_standard.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_standard.inst.cfg index 655fe020a1e..7c7f10fe645 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.4mm weight = -3 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_ultra.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_ultra.inst.cfg index dfe34641906..a74ca975ffb 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.4mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_adaptive.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_adaptive.inst.cfg index b4dfc2cc14b..815027d6ef5 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.5mm weight = -2 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_draft.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_draft.inst.cfg index a8c9f6712ef..c3c4a03bd62 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.5mm weight = -5 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_standard.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_standard.inst.cfg index 28f7b8bf6f0..66790c739a7 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.5mm weight = -3 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_ultra.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_ultra.inst.cfg index 930057a7d6a..a3f8ed15b93 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.5mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_adaptive.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_adaptive.inst.cfg index 5ad66257e08..99432f51c0a 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.6mm weight = -2 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_draft.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_draft.inst.cfg index a24adbeaec6..e789d4ae4bd 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.6mm weight = -5 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_low.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_low.inst.cfg index 62c319c0295..d54e44fff1e 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_low.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.6mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_standard.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_standard.inst.cfg index f1a804636b2..a97de1a9a34 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.6mm weight = -3 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_ultra.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_ultra.inst.cfg index 057e2ba26e1..92ca89fa6f3 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.6mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_adaptive.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_adaptive.inst.cfg index 9ca72154a3d..6727b950c88 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.8mm weight = -2 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_draft.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_draft.inst.cfg index aacf1e24912..2dbee187a83 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.8mm weight = -5 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_low.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_low.inst.cfg index ed3f6ceb527..ef6e16e3f30 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_low.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_standard.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_standard.inst.cfg index cd67b1b5e82..2d85d53f4e6 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.8mm weight = -3 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_superlow.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_superlow.inst.cfg index 0e44809ac0a..109c79608fa 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_superlow.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_ultra.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_ultra.inst.cfg index c7128bef555..b87d68962e1 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_adaptive.inst.cfg index d2c122fb0c8..10806f53c4a 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.2mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_ultra.inst.cfg index a08caaa26ce..8f747c08e9a 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.2mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_adaptive.inst.cfg index f8c7e9d4478..b0d9447b822 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.3mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_standard.inst.cfg index fdf046454c0..2c8444df01d 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.3mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_ultra.inst.cfg index fc8d16ea0dd..8410e56e1d3 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.3mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_adaptive.inst.cfg index 2012d231ef2..0dee28da76c 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.4mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_draft.inst.cfg index 73f4028d6f6..86be97d7efa 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.4mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_standard.inst.cfg index 9e92c831703..b3b20834ec6 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.4mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_ultra.inst.cfg index 3711657b559..ea1c5269f4f 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.4mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_adaptive.inst.cfg index a8675b93744..d95326a2cd2 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.5mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_draft.inst.cfg index 772d62c38ba..6139f477a93 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.5mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_standard.inst.cfg index 0535ee955db..d6b10ead40b 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.5mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_ultra.inst.cfg index 4261f7f5d57..501fd433054 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.5mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_adaptive.inst.cfg index 592df1449bf..9210920b17c 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.6mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_draft.inst.cfg index 9ff016accfb..37071e37ec3 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.6mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_low.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_low.inst.cfg index 9b99f668085..4d7a139ee4a 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_low.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.6mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_standard.inst.cfg index e39eea4e85e..0f4fb4da2a2 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.6mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_ultra.inst.cfg index 67c4bea2afd..c0d98feb507 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.6mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_adaptive.inst.cfg index b6169d07136..f3b66ecd9ff 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.8mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_draft.inst.cfg index 52c7644d5a7..075bc33bdf2 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.8mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_low.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_low.inst.cfg index e3dec5014a3..bfe0c1efb31 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_low.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_standard.inst.cfg index 81e8d45a476..cdeffbce07b 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.8mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_superlow.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_superlow.inst.cfg index 67ea92825ca..6aa91424469 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_superlow.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_ultra.inst.cfg index 9ab6e323789..4f196bd070f 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_adaptive.inst.cfg index 4abe78cce66..8df63decc44 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.0mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_draft.inst.cfg index c5ce3a5968e..cc34498a546 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.0mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_low.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_low.inst.cfg index 2dfac120d36..5dcd5eca8c9 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_low.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.0mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_standard.inst.cfg index 414d9199f15..12c5e568ab3 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.0mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_superlow.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_superlow.inst.cfg index a8fdd08b26c..910efb62445 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_superlow.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.0mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_ultra.inst.cfg index a11570f62eb..a9d00ea40dc 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.0mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_adaptive.inst.cfg index d2eb89bc5b1..3acda8b9dc8 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.2mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_draft.inst.cfg index 19fac2508f1..ced39e298bc 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.2mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_low.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_low.inst.cfg index f97ac6ac093..068ed810572 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_low.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.2mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_standard.inst.cfg index c72b9b5f059..f094968a1ad 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.2mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_superlow.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_superlow.inst.cfg index 6488766287d..2f34faba86b 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_superlow.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.2mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_ultra.inst.cfg index c52b1f7791f..416ed6cce1e 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.2mm weight = 0 diff --git a/resources/quality/builder_premium/bp_BVOH_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_BVOH_Coarse_Quality.inst.cfg index 6e501397491..0c86d1922b5 100644 --- a/resources/quality/builder_premium/bp_BVOH_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_BVOH_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_BVOH_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_BVOH_High_Quality.inst.cfg index 0d47c689d45..f2f475d324f 100644 --- a/resources/quality/builder_premium/bp_BVOH_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_BVOH_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_BVOH_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_BVOH_Normal_Quality.inst.cfg index 582c7f8d4d3..f96020401d0 100644 --- a/resources/quality/builder_premium/bp_BVOH_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_BVOH_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/builder_premium/bp_Innoflex60_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_Innoflex60_Coarse_Quality.inst.cfg index 16ba6965868..fbd2b1b6488 100644 --- a/resources/quality/builder_premium/bp_Innoflex60_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_Innoflex60_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = innofill_innoflex60_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_Innoflex60_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_Innoflex60_High_Quality.inst.cfg index a9684cd5073..18b43d1fce2 100644 --- a/resources/quality/builder_premium/bp_Innoflex60_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_Innoflex60_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = innofill_innoflex60_175 quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_Innoflex60_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_Innoflex60_Normal_Quality.inst.cfg index ba1c10d19be..c25fe48eee4 100644 --- a/resources/quality/builder_premium/bp_Innoflex60_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_Innoflex60_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = innofill_innoflex60_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/builder_premium/bp_PET_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_PET_Coarse_Quality.inst.cfg index 6bc4ae64da0..a662fd199a6 100644 --- a/resources/quality/builder_premium/bp_PET_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PET_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_PET_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_PET_High_Quality.inst.cfg index 4eb383fa3e1..5be817574fc 100644 --- a/resources/quality/builder_premium/bp_PET_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PET_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_PET_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_PET_Normal_Quality.inst.cfg index 2d938385744..955c533ee09 100644 --- a/resources/quality/builder_premium/bp_PET_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PET_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/builder_premium/bp_PLA_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_PLA_Coarse_Quality.inst.cfg index 04b51ffdc38..81c3bac17a5 100644 --- a/resources/quality/builder_premium/bp_PLA_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PLA_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_PLA_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_PLA_High_Quality.inst.cfg index a24d877812c..0270042c6d3 100644 --- a/resources/quality/builder_premium/bp_PLA_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PLA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_PLA_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_PLA_Normal_Quality.inst.cfg index 1c80bd5a74c..10cd3774a11 100644 --- a/resources/quality/builder_premium/bp_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/builder_premium/bp_PVA_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_PVA_Coarse_Quality.inst.cfg index a491cd26330..55b35c33a16 100644 --- a/resources/quality/builder_premium/bp_PVA_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PVA_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_PVA_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_PVA_High_Quality.inst.cfg index 396e082ec2e..5c744cde482 100644 --- a/resources/quality/builder_premium/bp_PVA_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PVA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_PVA_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_PVA_Normal_Quality.inst.cfg index f9fd78beb50..da56e1c7d02 100644 --- a/resources/quality/builder_premium/bp_PVA_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PVA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/builder_premium/bp_global_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_global_Coarse_Quality.inst.cfg index f5f235c0b0e..74ac09ab1ff 100644 --- a/resources/quality/builder_premium/bp_global_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_global_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_global_High_Quality.inst.cfg index cad3d0f17fb..4185c32c2de 100644 --- a/resources/quality/builder_premium/bp_global_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_global_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_global_Normal_Quality.inst.cfg index c3826e1b23f..6ffc2dc31ae 100644 --- a/resources/quality/builder_premium/bp_global_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/cartesio/abs/cartesio_0.25_abs_high.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.25_abs_high.inst.cfg index ceb247023e3..747d7c0bbe4 100644 --- a/resources/quality/cartesio/abs/cartesio_0.25_abs_high.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.25_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/abs/cartesio_0.25_abs_normal.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.25_abs_normal.inst.cfg index 0cc705b9c85..8d9db6ef9da 100644 --- a/resources/quality/cartesio/abs/cartesio_0.25_abs_normal.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.25_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/abs/cartesio_0.4_abs_high.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.4_abs_high.inst.cfg index 442c341254b..756f8f29173 100644 --- a/resources/quality/cartesio/abs/cartesio_0.4_abs_high.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.4_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/abs/cartesio_0.4_abs_normal.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.4_abs_normal.inst.cfg index e58a5440b37..2b50d823dba 100644 --- a/resources/quality/cartesio/abs/cartesio_0.4_abs_normal.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.4_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/abs/cartesio_0.8_abs_coarse.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.8_abs_coarse.inst.cfg index d028044fdf0..e20ed3a4a54 100644 --- a/resources/quality/cartesio/abs/cartesio_0.8_abs_coarse.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.8_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/abs/cartesio_0.8_abs_extra_coarse.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.8_abs_extra_coarse.inst.cfg index c39bb7ea215..89c3c5ddf18 100644 --- a/resources/quality/cartesio/abs/cartesio_0.8_abs_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.8_abs_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/abs/cartesio_0.8_abs_high.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.8_abs_high.inst.cfg index 73d7207c72c..98ec1d290c7 100644 --- a/resources/quality/cartesio/abs/cartesio_0.8_abs_high.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.8_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/abs/cartesio_0.8_abs_normal.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.8_abs_normal.inst.cfg index 9df4675747c..1102445d733 100644 --- a/resources/quality/cartesio/abs/cartesio_0.8_abs_normal.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.8_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_high.inst.cfg b/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_high.inst.cfg index 921fdd7ae5e..fdebf331146 100644 --- a/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_high.inst.cfg +++ b/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = dsm_arnitel2045_175 quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_normal.inst.cfg b/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_normal.inst.cfg index 5b2edc11bd5..dc583398e3f 100644 --- a/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_normal.inst.cfg +++ b/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = dsm_arnitel2045_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/cartesio_global_Coarse_Quality.inst.cfg b/resources/quality/cartesio/cartesio_global_Coarse_Quality.inst.cfg index e0cbb77608c..275f1afb76a 100644 --- a/resources/quality/cartesio/cartesio_global_Coarse_Quality.inst.cfg +++ b/resources/quality/cartesio/cartesio_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/cartesio/cartesio_global_Extra_Coarse_Quality.inst.cfg b/resources/quality/cartesio/cartesio_global_Extra_Coarse_Quality.inst.cfg index e1c754d30af..0db9ae1a245 100644 --- a/resources/quality/cartesio/cartesio_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/cartesio/cartesio_global_Extra_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/cartesio/cartesio_global_High_Quality.inst.cfg b/resources/quality/cartesio/cartesio_global_High_Quality.inst.cfg index 0bf8080ea3b..30633b369d8 100644 --- a/resources/quality/cartesio/cartesio_global_High_Quality.inst.cfg +++ b/resources/quality/cartesio/cartesio_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/cartesio/cartesio_global_Normal_Quality.inst.cfg b/resources/quality/cartesio/cartesio_global_Normal_Quality.inst.cfg index d455551b3b5..3037c3aaad2 100644 --- a/resources/quality/cartesio/cartesio_global_Normal_Quality.inst.cfg +++ b/resources/quality/cartesio/cartesio_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/cartesio/hips/cartesio_0.25_hips_high.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.25_hips_high.inst.cfg index 2899281b339..59d3cde27fb 100644 --- a/resources/quality/cartesio/hips/cartesio_0.25_hips_high.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.25_hips_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/hips/cartesio_0.25_hips_normal.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.25_hips_normal.inst.cfg index cdf0b5a69c9..237b9c99970 100644 --- a/resources/quality/cartesio/hips/cartesio_0.25_hips_normal.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.25_hips_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/hips/cartesio_0.4_hips_high.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.4_hips_high.inst.cfg index 4f4b84c5276..d045650dd1f 100644 --- a/resources/quality/cartesio/hips/cartesio_0.4_hips_high.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.4_hips_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/hips/cartesio_0.4_hips_normal.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.4_hips_normal.inst.cfg index 3f3be29dac6..9edbe0795b7 100644 --- a/resources/quality/cartesio/hips/cartesio_0.4_hips_normal.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.4_hips_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/hips/cartesio_0.8_hips_coarse.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.8_hips_coarse.inst.cfg index 61e422cd01f..07cb20a6a3f 100644 --- a/resources/quality/cartesio/hips/cartesio_0.8_hips_coarse.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.8_hips_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/hips/cartesio_0.8_hips_extra_coarse.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.8_hips_extra_coarse.inst.cfg index 2f7616d3c0b..f83ece82c96 100644 --- a/resources/quality/cartesio/hips/cartesio_0.8_hips_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.8_hips_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/hips/cartesio_0.8_hips_high.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.8_hips_high.inst.cfg index 7ae39664dbe..432bdb51817 100644 --- a/resources/quality/cartesio/hips/cartesio_0.8_hips_high.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.8_hips_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/hips/cartesio_0.8_hips_normal.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.8_hips_normal.inst.cfg index 74cc5e1a8cb..56767df5886 100644 --- a/resources/quality/cartesio/hips/cartesio_0.8_hips_normal.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.8_hips_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/nylon/cartesio_0.25_nylon_high.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.25_nylon_high.inst.cfg index a0fcba66c97..cd90509f5f5 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.25_nylon_high.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.25_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/nylon/cartesio_0.25_nylon_normal.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.25_nylon_normal.inst.cfg index 91c26bb39f2..8b67e6343f8 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.25_nylon_normal.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.25_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/nylon/cartesio_0.4_nylon_high.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.4_nylon_high.inst.cfg index 5458875049c..c2602f9f9b9 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.4_nylon_high.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.4_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/nylon/cartesio_0.4_nylon_normal.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.4_nylon_normal.inst.cfg index a5a99f8ba35..c20a955d02c 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.4_nylon_normal.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.4_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_coarse.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_coarse.inst.cfg index 40a394d0203..0aa49b222d0 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_coarse.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_extra_coarse.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_extra_coarse.inst.cfg index 560388f549c..a31c713bdeb 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_high.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_high.inst.cfg index c57a810e969..ba853061da1 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_high.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_normal.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_normal.inst.cfg index 038ee37b2a1..3907f5ceca2 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_normal.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pc/cartesio_0.25_pc_high.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.25_pc_high.inst.cfg index c9d10a366a8..59e92e733f3 100644 --- a/resources/quality/cartesio/pc/cartesio_0.25_pc_high.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.25_pc_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pc/cartesio_0.25_pc_normal.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.25_pc_normal.inst.cfg index ea78515888d..4e408ceef7e 100644 --- a/resources/quality/cartesio/pc/cartesio_0.25_pc_normal.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.25_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pc/cartesio_0.4_pc_high.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.4_pc_high.inst.cfg index 8d66f49534b..f01fae14b4a 100644 --- a/resources/quality/cartesio/pc/cartesio_0.4_pc_high.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.4_pc_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pc/cartesio_0.4_pc_normal.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.4_pc_normal.inst.cfg index 7b5a3560dfe..b70d03a3410 100644 --- a/resources/quality/cartesio/pc/cartesio_0.4_pc_normal.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.4_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pc/cartesio_0.8_pc_coarse.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.8_pc_coarse.inst.cfg index da79a1e7d77..3dfa6bbc07a 100644 --- a/resources/quality/cartesio/pc/cartesio_0.8_pc_coarse.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.8_pc_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/pc/cartesio_0.8_pc_extra_coarse.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.8_pc_extra_coarse.inst.cfg index 511da60d544..48851fed3e8 100644 --- a/resources/quality/cartesio/pc/cartesio_0.8_pc_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.8_pc_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/pc/cartesio_0.8_pc_high.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.8_pc_high.inst.cfg index 9967dc12c40..feed09fb66b 100644 --- a/resources/quality/cartesio/pc/cartesio_0.8_pc_high.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.8_pc_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pc/cartesio_0.8_pc_normal.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.8_pc_normal.inst.cfg index 5810601f773..e510fc14532 100644 --- a/resources/quality/cartesio/pc/cartesio_0.8_pc_normal.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.8_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/petg/cartesio_0.25_petg_high.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.25_petg_high.inst.cfg index fb7ceb891a1..b6422335ff0 100644 --- a/resources/quality/cartesio/petg/cartesio_0.25_petg_high.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.25_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/petg/cartesio_0.25_petg_normal.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.25_petg_normal.inst.cfg index 13a7b1d4137..79c4b15ea8d 100644 --- a/resources/quality/cartesio/petg/cartesio_0.25_petg_normal.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.25_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/petg/cartesio_0.4_petg_high.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.4_petg_high.inst.cfg index 81f56b432cd..fd94e73fd19 100644 --- a/resources/quality/cartesio/petg/cartesio_0.4_petg_high.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.4_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/petg/cartesio_0.4_petg_normal.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.4_petg_normal.inst.cfg index ef092ab09f5..e648a5bb240 100644 --- a/resources/quality/cartesio/petg/cartesio_0.4_petg_normal.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.4_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/petg/cartesio_0.8_petg_coarse.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.8_petg_coarse.inst.cfg index 594c277948d..2a824cbd42b 100644 --- a/resources/quality/cartesio/petg/cartesio_0.8_petg_coarse.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.8_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/petg/cartesio_0.8_petg_extra_coarse.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.8_petg_extra_coarse.inst.cfg index 12c049c4ca5..efd1f9a6d7d 100644 --- a/resources/quality/cartesio/petg/cartesio_0.8_petg_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.8_petg_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/petg/cartesio_0.8_petg_high.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.8_petg_high.inst.cfg index e8a2a46be81..7a294b95320 100644 --- a/resources/quality/cartesio/petg/cartesio_0.8_petg_high.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.8_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/petg/cartesio_0.8_petg_normal.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.8_petg_normal.inst.cfg index 14e9cbec6bc..1fb094b684d 100644 --- a/resources/quality/cartesio/petg/cartesio_0.8_petg_normal.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.8_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pla/cartesio_0.25_pla_high.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.25_pla_high.inst.cfg index 75f07846567..f4c45020eac 100644 --- a/resources/quality/cartesio/pla/cartesio_0.25_pla_high.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.25_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pla/cartesio_0.25_pla_normal.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.25_pla_normal.inst.cfg index ae4139bca9a..88a4cbaf4be 100644 --- a/resources/quality/cartesio/pla/cartesio_0.25_pla_normal.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.25_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pla/cartesio_0.4_pla_high.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.4_pla_high.inst.cfg index 504e8292b24..d68392a58e5 100644 --- a/resources/quality/cartesio/pla/cartesio_0.4_pla_high.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.4_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pla/cartesio_0.4_pla_normal.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.4_pla_normal.inst.cfg index 3869918c087..52d9cbefa08 100644 --- a/resources/quality/cartesio/pla/cartesio_0.4_pla_normal.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.4_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pla/cartesio_0.8_pla_coarse.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.8_pla_coarse.inst.cfg index b91c8e1f2e5..1664e93b376 100644 --- a/resources/quality/cartesio/pla/cartesio_0.8_pla_coarse.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.8_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = -3 diff --git a/resources/quality/cartesio/pla/cartesio_0.8_pla_extra_coarse.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.8_pla_extra_coarse.inst.cfg index 7ea8197b873..e269557ea5e 100644 --- a/resources/quality/cartesio/pla/cartesio_0.8_pla_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.8_pla_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = -4 diff --git a/resources/quality/cartesio/pla/cartesio_0.8_pla_high.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.8_pla_high.inst.cfg index e3f5e40feeb..e8af9745d75 100644 --- a/resources/quality/cartesio/pla/cartesio_0.8_pla_high.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.8_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pla/cartesio_0.8_pla_normal.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.8_pla_normal.inst.cfg index 7929c6d9f47..d2a7e8d6730 100644 --- a/resources/quality/cartesio/pla/cartesio_0.8_pla_normal.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.8_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pva/cartesio_0.25_pva_high.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.25_pva_high.inst.cfg index 63c487a4b9b..c077347a27f 100644 --- a/resources/quality/cartesio/pva/cartesio_0.25_pva_high.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.25_pva_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pva/cartesio_0.25_pva_normal.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.25_pva_normal.inst.cfg index 8c36a3f9db0..7689cb72967 100644 --- a/resources/quality/cartesio/pva/cartesio_0.25_pva_normal.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.25_pva_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pva/cartesio_0.4_pva_high.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.4_pva_high.inst.cfg index fa9118e5b34..a764523419d 100644 --- a/resources/quality/cartesio/pva/cartesio_0.4_pva_high.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.4_pva_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pva/cartesio_0.4_pva_normal.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.4_pva_normal.inst.cfg index e8c8c53c453..5d96b324b82 100644 --- a/resources/quality/cartesio/pva/cartesio_0.4_pva_normal.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.4_pva_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pva/cartesio_0.8_pva_coarse.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.8_pva_coarse.inst.cfg index 212c3cc2d19..c97c5e0d113 100644 --- a/resources/quality/cartesio/pva/cartesio_0.8_pva_coarse.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.8_pva_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/pva/cartesio_0.8_pva_extra_coarse.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.8_pva_extra_coarse.inst.cfg index 67ab181dc42..b9ccbec940d 100644 --- a/resources/quality/cartesio/pva/cartesio_0.8_pva_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.8_pva_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/pva/cartesio_0.8_pva_high.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.8_pva_high.inst.cfg index 861401346ea..7be3729c54e 100644 --- a/resources/quality/cartesio/pva/cartesio_0.8_pva_high.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.8_pva_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pva/cartesio_0.8_pva_normal.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.8_pva_normal.inst.cfg index fd062c8a108..c5575d58fcf 100644 --- a/resources/quality/cartesio/pva/cartesio_0.8_pva_normal.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.8_pva_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/coarse.inst.cfg b/resources/quality/coarse.inst.cfg index 85af3b88d24..28df0a1c18c 100644 --- a/resources/quality/coarse.inst.cfg +++ b/resources/quality/coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_coarse.inst.cfg b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_coarse.inst.cfg index 8e659e9aa04..510e7f1c3d5 100644 --- a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_coarse.inst.cfg +++ b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_draft.inst.cfg b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_draft.inst.cfg index f55649264c1..2901a92b341 100644 --- a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_draft.inst.cfg +++ b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_fine.inst.cfg b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_fine.inst.cfg index 2c708faa07e..37390c4f2c9 100644 --- a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_fine.inst.cfg +++ b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_normal.inst.cfg b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_normal.inst.cfg index 6a2535f8e63..e631278a129 100644 --- a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_normal.inst.cfg +++ b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/crazy3dprint_global_0.10_fine.inst.cfg b/resources/quality/crazy3dprint/crazy3dprint_global_0.10_fine.inst.cfg index 22c0be933a4..0cc925e81c0 100644 --- a/resources/quality/crazy3dprint/crazy3dprint_global_0.10_fine.inst.cfg +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/crazy3dprint/crazy3dprint_global_0.20_normal.inst.cfg b/resources/quality/crazy3dprint/crazy3dprint_global_0.20_normal.inst.cfg index a83db8a5b86..42a05036bf9 100644 --- a/resources/quality/crazy3dprint/crazy3dprint_global_0.20_normal.inst.cfg +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/crazy3dprint/crazy3dprint_global_0.30_draft.inst.cfg b/resources/quality/crazy3dprint/crazy3dprint_global_0.30_draft.inst.cfg index f676d805f51..be04111ffca 100644 --- a/resources/quality/crazy3dprint/crazy3dprint_global_0.30_draft.inst.cfg +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/crazy3dprint/crazy3dprint_global_0.40_coarse.inst.cfg b/resources/quality/crazy3dprint/crazy3dprint_global_0.40_coarse.inst.cfg index ca4c6e02bf1..0a89b548aff 100644 --- a/resources/quality/crazy3dprint/crazy3dprint_global_0.40_coarse.inst.cfg +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_coarse.inst.cfg b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_coarse.inst.cfg index 2e4a9e541e7..a215b77102a 100644 --- a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_coarse.inst.cfg +++ b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_draft.inst.cfg b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_draft.inst.cfg index 7ffbfc983b8..f8bd706b136 100644 --- a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_draft.inst.cfg +++ b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_fine.inst.cfg b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_fine.inst.cfg index 1f2536dd6b5..59769cff2c9 100644 --- a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_fine.inst.cfg +++ b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_normal.inst.cfg b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_normal.inst.cfg index 1d2323c2303..07e3bdfc331 100644 --- a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_normal.inst.cfg +++ b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_ABS_super.inst.cfg b/resources/quality/creality/base/base_0.2_ABS_super.inst.cfg index 2e80729b964..17f02a5341d 100644 --- a/resources/quality/creality/base/base_0.2_ABS_super.inst.cfg +++ b/resources/quality/creality/base/base_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_ABS_ultra.inst.cfg b/resources/quality/creality/base/base_0.2_ABS_ultra.inst.cfg index 1921452cd42..249d81eda4a 100644 --- a/resources/quality/creality/base/base_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/creality/base/base_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_PETG_super.inst.cfg b/resources/quality/creality/base/base_0.2_PETG_super.inst.cfg index 3462ba60b16..f202bc039fd 100644 --- a/resources/quality/creality/base/base_0.2_PETG_super.inst.cfg +++ b/resources/quality/creality/base/base_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_PETG_ultra.inst.cfg b/resources/quality/creality/base/base_0.2_PETG_ultra.inst.cfg index 5732177e41f..f014c4d817a 100644 --- a/resources/quality/creality/base/base_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/creality/base/base_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_PLA_super.inst.cfg b/resources/quality/creality/base/base_0.2_PLA_super.inst.cfg index eb69f993c2d..9069c6217d0 100644 --- a/resources/quality/creality/base/base_0.2_PLA_super.inst.cfg +++ b/resources/quality/creality/base/base_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_PLA_ultra.inst.cfg b/resources/quality/creality/base/base_0.2_PLA_ultra.inst.cfg index 101b4b4f934..e7549eb0cd1 100644 --- a/resources/quality/creality/base/base_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/creality/base/base_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_ABS_adaptive.inst.cfg b/resources/quality/creality/base/base_0.3_ABS_adaptive.inst.cfg index 44b2371f2be..c459673c03b 100644 --- a/resources/quality/creality/base/base_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_ABS_low.inst.cfg b/resources/quality/creality/base/base_0.3_ABS_low.inst.cfg index ed9bb131c84..3ac36051efa 100644 --- a/resources/quality/creality/base/base_0.3_ABS_low.inst.cfg +++ b/resources/quality/creality/base/base_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_ABS_standard.inst.cfg b/resources/quality/creality/base/base_0.3_ABS_standard.inst.cfg index 8b034ebbac9..0747c9470ec 100644 --- a/resources/quality/creality/base/base_0.3_ABS_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_ABS_super.inst.cfg b/resources/quality/creality/base/base_0.3_ABS_super.inst.cfg index b0b7a71b2d7..32520aa212d 100644 --- a/resources/quality/creality/base/base_0.3_ABS_super.inst.cfg +++ b/resources/quality/creality/base/base_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PETG_adaptive.inst.cfg b/resources/quality/creality/base/base_0.3_PETG_adaptive.inst.cfg index 876d8bec263..c131707e19e 100644 --- a/resources/quality/creality/base/base_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PETG_low.inst.cfg b/resources/quality/creality/base/base_0.3_PETG_low.inst.cfg index 45bc46ce572..b20f448ba0e 100644 --- a/resources/quality/creality/base/base_0.3_PETG_low.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PETG_standard.inst.cfg b/resources/quality/creality/base/base_0.3_PETG_standard.inst.cfg index 0eba756cec6..b8e5ad16c20 100644 --- a/resources/quality/creality/base/base_0.3_PETG_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PETG_super.inst.cfg b/resources/quality/creality/base/base_0.3_PETG_super.inst.cfg index 44c78d98416..e5c59aade73 100644 --- a/resources/quality/creality/base/base_0.3_PETG_super.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PLA_adaptive.inst.cfg b/resources/quality/creality/base/base_0.3_PLA_adaptive.inst.cfg index 672be97d5e7..a1b31cbb369 100644 --- a/resources/quality/creality/base/base_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PLA_low.inst.cfg b/resources/quality/creality/base/base_0.3_PLA_low.inst.cfg index bce81ed8aa0..4958661ff4e 100644 --- a/resources/quality/creality/base/base_0.3_PLA_low.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PLA_standard.inst.cfg b/resources/quality/creality/base/base_0.3_PLA_standard.inst.cfg index b203c49a5d9..f5319c95ac8 100644 --- a/resources/quality/creality/base/base_0.3_PLA_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PLA_super.inst.cfg b/resources/quality/creality/base/base_0.3_PLA_super.inst.cfg index 205cb74fcfd..91518c75fc4 100644 --- a/resources/quality/creality/base/base_0.3_PLA_super.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_TPU_adaptive.inst.cfg b/resources/quality/creality/base/base_0.3_TPU_adaptive.inst.cfg index aef986f74ad..24b32bccdb9 100644 --- a/resources/quality/creality/base/base_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_TPU_standard.inst.cfg b/resources/quality/creality/base/base_0.3_TPU_standard.inst.cfg index 2509d7888e9..cc15f42fb15 100644 --- a/resources/quality/creality/base/base_0.3_TPU_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_TPU_super.inst.cfg b/resources/quality/creality/base/base_0.3_TPU_super.inst.cfg index b0f60d34981..6e9a67af5c1 100644 --- a/resources/quality/creality/base/base_0.3_TPU_super.inst.cfg +++ b/resources/quality/creality/base/base_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_ABS_adaptive.inst.cfg b/resources/quality/creality/base/base_0.4_ABS_adaptive.inst.cfg index 5f3d8c911f6..cb84911e813 100644 --- a/resources/quality/creality/base/base_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_ABS_low.inst.cfg b/resources/quality/creality/base/base_0.4_ABS_low.inst.cfg index 3c9690fafe0..38b057a7443 100644 --- a/resources/quality/creality/base/base_0.4_ABS_low.inst.cfg +++ b/resources/quality/creality/base/base_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_ABS_standard.inst.cfg b/resources/quality/creality/base/base_0.4_ABS_standard.inst.cfg index 998c4ef9153..400bc2a1907 100644 --- a/resources/quality/creality/base/base_0.4_ABS_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_ABS_super.inst.cfg b/resources/quality/creality/base/base_0.4_ABS_super.inst.cfg index 29faf9d49d4..4501bb52279 100644 --- a/resources/quality/creality/base/base_0.4_ABS_super.inst.cfg +++ b/resources/quality/creality/base/base_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PETG_adaptive.inst.cfg b/resources/quality/creality/base/base_0.4_PETG_adaptive.inst.cfg index e0f46c3564b..09122ad76bc 100644 --- a/resources/quality/creality/base/base_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PETG_low.inst.cfg b/resources/quality/creality/base/base_0.4_PETG_low.inst.cfg index 38a5829e606..316291ca09d 100644 --- a/resources/quality/creality/base/base_0.4_PETG_low.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PETG_standard.inst.cfg b/resources/quality/creality/base/base_0.4_PETG_standard.inst.cfg index ac606c34318..b279711da0a 100644 --- a/resources/quality/creality/base/base_0.4_PETG_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PETG_super.inst.cfg b/resources/quality/creality/base/base_0.4_PETG_super.inst.cfg index a7c88bc67f7..cf31ad62b5a 100644 --- a/resources/quality/creality/base/base_0.4_PETG_super.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PLA_adaptive.inst.cfg b/resources/quality/creality/base/base_0.4_PLA_adaptive.inst.cfg index d048641758b..7ba40dcd483 100644 --- a/resources/quality/creality/base/base_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PLA_low.inst.cfg b/resources/quality/creality/base/base_0.4_PLA_low.inst.cfg index 91e96c67145..356a9390b04 100644 --- a/resources/quality/creality/base/base_0.4_PLA_low.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PLA_standard.inst.cfg b/resources/quality/creality/base/base_0.4_PLA_standard.inst.cfg index 5e92b31a7c1..2ca57936c33 100644 --- a/resources/quality/creality/base/base_0.4_PLA_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PLA_super.inst.cfg b/resources/quality/creality/base/base_0.4_PLA_super.inst.cfg index 378ebe4d8ac..873563a5abc 100644 --- a/resources/quality/creality/base/base_0.4_PLA_super.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_TPU_adaptive.inst.cfg b/resources/quality/creality/base/base_0.4_TPU_adaptive.inst.cfg index 33b0725bad5..3e33d4d2806 100644 --- a/resources/quality/creality/base/base_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_TPU_standard.inst.cfg b/resources/quality/creality/base/base_0.4_TPU_standard.inst.cfg index 4b5d9e4aec9..39244b0cc67 100644 --- a/resources/quality/creality/base/base_0.4_TPU_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_TPU_super.inst.cfg b/resources/quality/creality/base/base_0.4_TPU_super.inst.cfg index 2086bc635a8..3e3e8ac50eb 100644 --- a/resources/quality/creality/base/base_0.4_TPU_super.inst.cfg +++ b/resources/quality/creality/base/base_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_ABS_adaptive.inst.cfg b/resources/quality/creality/base/base_0.5_ABS_adaptive.inst.cfg index 792af41ee90..7f1bb0bc66a 100644 --- a/resources/quality/creality/base/base_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_ABS_low.inst.cfg b/resources/quality/creality/base/base_0.5_ABS_low.inst.cfg index ce4fd9f3569..878286e616f 100644 --- a/resources/quality/creality/base/base_0.5_ABS_low.inst.cfg +++ b/resources/quality/creality/base/base_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_ABS_standard.inst.cfg b/resources/quality/creality/base/base_0.5_ABS_standard.inst.cfg index 1cb9e497035..7724c1001a6 100644 --- a/resources/quality/creality/base/base_0.5_ABS_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_ABS_super.inst.cfg b/resources/quality/creality/base/base_0.5_ABS_super.inst.cfg index 8ebedcf0063..c33d5a48b71 100644 --- a/resources/quality/creality/base/base_0.5_ABS_super.inst.cfg +++ b/resources/quality/creality/base/base_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PETG_adaptive.inst.cfg b/resources/quality/creality/base/base_0.5_PETG_adaptive.inst.cfg index e9074441d36..675794832b7 100644 --- a/resources/quality/creality/base/base_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PETG_low.inst.cfg b/resources/quality/creality/base/base_0.5_PETG_low.inst.cfg index 36b727d11c0..d55b54dc8b6 100644 --- a/resources/quality/creality/base/base_0.5_PETG_low.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PETG_standard.inst.cfg b/resources/quality/creality/base/base_0.5_PETG_standard.inst.cfg index ae04d305a6b..b8b08fba46c 100644 --- a/resources/quality/creality/base/base_0.5_PETG_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PETG_super.inst.cfg b/resources/quality/creality/base/base_0.5_PETG_super.inst.cfg index 5b59905ac70..dd64434c066 100644 --- a/resources/quality/creality/base/base_0.5_PETG_super.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PLA_adaptive.inst.cfg b/resources/quality/creality/base/base_0.5_PLA_adaptive.inst.cfg index d03f8d5d1c8..bea35796784 100644 --- a/resources/quality/creality/base/base_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PLA_low.inst.cfg b/resources/quality/creality/base/base_0.5_PLA_low.inst.cfg index 61ebda86606..85809f8aaf6 100644 --- a/resources/quality/creality/base/base_0.5_PLA_low.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PLA_standard.inst.cfg b/resources/quality/creality/base/base_0.5_PLA_standard.inst.cfg index 969f3501991..f4a885cd2cd 100644 --- a/resources/quality/creality/base/base_0.5_PLA_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PLA_super.inst.cfg b/resources/quality/creality/base/base_0.5_PLA_super.inst.cfg index c1b2571eaef..d4caac8486a 100644 --- a/resources/quality/creality/base/base_0.5_PLA_super.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_TPU_adaptive.inst.cfg b/resources/quality/creality/base/base_0.5_TPU_adaptive.inst.cfg index a01fd327bd2..4c8f24db64c 100644 --- a/resources/quality/creality/base/base_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_TPU_standard.inst.cfg b/resources/quality/creality/base/base_0.5_TPU_standard.inst.cfg index aaeba0c6f6f..f437fc220ce 100644 --- a/resources/quality/creality/base/base_0.5_TPU_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_TPU_super.inst.cfg b/resources/quality/creality/base/base_0.5_TPU_super.inst.cfg index 4fc70ac0bd2..7c4a2dc2d7c 100644 --- a/resources/quality/creality/base/base_0.5_TPU_super.inst.cfg +++ b/resources/quality/creality/base/base_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_ABS_standard.inst.cfg b/resources/quality/creality/base/base_0.6_ABS_standard.inst.cfg index 216efb7feb3..0faaf8e45d0 100644 --- a/resources/quality/creality/base/base_0.6_ABS_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_PETG_standard.inst.cfg b/resources/quality/creality/base/base_0.6_PETG_standard.inst.cfg index 7d6238e0183..040da082a4e 100644 --- a/resources/quality/creality/base/base_0.6_PETG_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_PLA_draft.inst.cfg b/resources/quality/creality/base/base_0.6_PLA_draft.inst.cfg index 0bdd7561254..9ce2b0454bc 100644 --- a/resources/quality/creality/base/base_0.6_PLA_draft.inst.cfg +++ b/resources/quality/creality/base/base_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_PLA_low.inst.cfg b/resources/quality/creality/base/base_0.6_PLA_low.inst.cfg index 99ca1726a87..463b652b05b 100644 --- a/resources/quality/creality/base/base_0.6_PLA_low.inst.cfg +++ b/resources/quality/creality/base/base_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_PLA_standard.inst.cfg b/resources/quality/creality/base/base_0.6_PLA_standard.inst.cfg index 3cd403610ff..377b68b0d88 100644 --- a/resources/quality/creality/base/base_0.6_PLA_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_TPU_standard.inst.cfg b/resources/quality/creality/base/base_0.6_TPU_standard.inst.cfg index 9441027751f..1057a431a65 100644 --- a/resources/quality/creality/base/base_0.6_TPU_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.8_ABS_draft.inst.cfg b/resources/quality/creality/base/base_0.8_ABS_draft.inst.cfg index 75faf8511de..3f4026061c1 100644 --- a/resources/quality/creality/base/base_0.8_ABS_draft.inst.cfg +++ b/resources/quality/creality/base/base_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/creality/base/base_0.8_PETG_draft.inst.cfg b/resources/quality/creality/base/base_0.8_PETG_draft.inst.cfg index 9c715fcec51..587724a118b 100644 --- a/resources/quality/creality/base/base_0.8_PETG_draft.inst.cfg +++ b/resources/quality/creality/base/base_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/creality/base/base_0.8_PLA_draft.inst.cfg b/resources/quality/creality/base/base_0.8_PLA_draft.inst.cfg index 5f57198c495..1e865377130 100644 --- a/resources/quality/creality/base/base_0.8_PLA_draft.inst.cfg +++ b/resources/quality/creality/base/base_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/creality/base/base_0.8_TPU_draft.inst.cfg b/resources/quality/creality/base/base_0.8_TPU_draft.inst.cfg index 4861a38b1d6..d660e3b15b7 100644 --- a/resources/quality/creality/base/base_0.8_TPU_draft.inst.cfg +++ b/resources/quality/creality/base/base_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/creality/base/base_1.0_ABS_draft.inst.cfg b/resources/quality/creality/base/base_1.0_ABS_draft.inst.cfg index 1431ab85306..13a66ff4944 100644 --- a/resources/quality/creality/base/base_1.0_ABS_draft.inst.cfg +++ b/resources/quality/creality/base/base_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/creality/base/base_1.0_PETG_draft.inst.cfg b/resources/quality/creality/base/base_1.0_PETG_draft.inst.cfg index 07ccf302ec3..b2e58f29752 100644 --- a/resources/quality/creality/base/base_1.0_PETG_draft.inst.cfg +++ b/resources/quality/creality/base/base_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/creality/base/base_1.0_PLA_draft.inst.cfg b/resources/quality/creality/base/base_1.0_PLA_draft.inst.cfg index b00db633247..76de4101012 100644 --- a/resources/quality/creality/base/base_1.0_PLA_draft.inst.cfg +++ b/resources/quality/creality/base/base_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/creality/base/base_1.0_TPU_draft.inst.cfg b/resources/quality/creality/base/base_1.0_TPU_draft.inst.cfg index bc81bc03718..fd999f6b0db 100644 --- a/resources/quality/creality/base/base_1.0_TPU_draft.inst.cfg +++ b/resources/quality/creality/base/base_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/creality/base/base_global_adaptive.inst.cfg b/resources/quality/creality/base/base_global_adaptive.inst.cfg index b6b8b523497..9a9841afbee 100644 --- a/resources/quality/creality/base/base_global_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/creality/base/base_global_draft.inst.cfg b/resources/quality/creality/base/base_global_draft.inst.cfg index de99319e536..dd5078d648b 100644 --- a/resources/quality/creality/base/base_global_draft.inst.cfg +++ b/resources/quality/creality/base/base_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/creality/base/base_global_low.inst.cfg b/resources/quality/creality/base/base_global_low.inst.cfg index bddb8ae6530..fd0a08e352e 100644 --- a/resources/quality/creality/base/base_global_low.inst.cfg +++ b/resources/quality/creality/base/base_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/creality/base/base_global_standard.inst.cfg b/resources/quality/creality/base/base_global_standard.inst.cfg index 91140677bf3..a3fd5f59562 100644 --- a/resources/quality/creality/base/base_global_standard.inst.cfg +++ b/resources/quality/creality/base/base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/creality/base/base_global_super.inst.cfg b/resources/quality/creality/base/base_global_super.inst.cfg index 6f21593188f..a4bbfed83d6 100644 --- a/resources/quality/creality/base/base_global_super.inst.cfg +++ b/resources/quality/creality/base/base_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/creality/base/base_global_ultra.inst.cfg b/resources/quality/creality/base/base_global_ultra.inst.cfg index 383024037fe..85c78d7b8dd 100644 --- a/resources/quality/creality/base/base_global_ultra.inst.cfg +++ b/resources/quality/creality/base/base_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fast.inst.cfg index a5a9879d72c..b75eb896a49 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fine.inst.cfg index 3d5ec38d355..9ce13339994 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_standard.inst.cfg index f698da2d69a..cf231a76319 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_pla_fast.inst.cfg index 622a93a0876..4487d7314a1 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_pla_fine.inst.cfg index 98eb36c1440..18c2c9e8c2e 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_pla_standard.inst.cfg index 5de5ad8dcae..18b92d7b8bb 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fast.inst.cfg index c35fe262b47..2964bd84245 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fine.inst.cfg index cfdff1319fc..db5d49de7b3 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_standard.inst.cfg index 0030e89bbb3..99940ba8e4a 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_discoultimate_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_pla_fast.inst.cfg index 4a08d336160..7873309c265 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_discoultimate_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_pla_fine.inst.cfg index bc270289223..194a9d2eccd 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_discoultimate_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_pla_standard.inst.cfg index 734edc39200..2bc213d8ba5 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg index 5c7ccc5b9f4..815d889a1bf 100644 --- a/resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg index 1778c341603..17493da3ac5 100644 --- a/resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg index d6f86947c43..83988387dde 100644 --- a/resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_neva_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_neva_pla_fast.inst.cfg index bcc46035846..1ab336b3bd1 100644 --- a/resources/quality/dagoma/dagoma_neva_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_neva_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_neva_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_neva_pla_fine.inst.cfg index dd428dc3ccd..6095afc7a96 100644 --- a/resources/quality/dagoma/dagoma_neva_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_neva_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_neva_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_neva_pla_standard.inst.cfg index 52c7d86ae01..14cb361ba57 100644 --- a/resources/quality/dagoma/dagoma_neva_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_neva_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.1.inst.cfg index 96ea38ade95..7299109537f 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.2.inst.cfg index 1e6d59df5b1..e1cbebad599 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.3.inst.cfg index 96af2f714ca..8f52deed730 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.4.inst.cfg index c3cdc7d9af8..c66b230b3f1 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.6.inst.cfg index 1165fc2ee84..5ca0aff282b 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.4.inst.cfg index f6200a7fd7b..e4e9a63b3bc 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 1.0mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.6.inst.cfg index abfcfebc288..50af708e6d8 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.8.inst.cfg index 079fe5831c7..2c07478c3b1 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 1.0mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.05.inst.cfg index f34520fa2be..652346f10b9 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.05 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.1.inst.cfg index ebe50da2cdf..2bbf4ca5486 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.15.inst.cfg index 16d047f188c..cc458da8d14 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.15 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.1.inst.cfg index e13eb0566df..abf58a72a4b 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.2.inst.cfg index 5be7d6f0676..129ea34c392 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.3.inst.cfg index 1969d8dd976..10dcfad171e 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.2.inst.cfg index 26d1bb6b49f..39d12f25730 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.6mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.4.inst.cfg index 20f44d7343b..5c79e53906e 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.6mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.4.inst.cfg index f02540ffe35..6ba205b42ee 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.6.inst.cfg index d2ecfa7c129..3f8e4d098f7 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.4.inst.cfg index 3bfdd6350e2..41ceb4e795f 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.0mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.6.inst.cfg index e7c4078d25d..5604950ca35 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.8.inst.cfg index 3f2d903175d..f0462b9356f 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.6.inst.cfg index 43244be05fd..2d175ae2fae 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.8.inst.cfg index f4f3277db5e..606a7336642 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.05.inst.cfg index f4699dd42dc..6fc1ba32865 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.05.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.05 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.1.inst.cfg index 973fca320e2..74a331f160b 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.1.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.15.inst.cfg index fbc78a9b014..cacb37c73d7 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.15.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.15 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.2.inst.cfg index 2fdbc7549da..671147552cd 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.2.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.3.inst.cfg index feb709164fb..e41b33ce6ed 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.3.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.4.inst.cfg index 79e2d90b77f..42875c40dde 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.4.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.6.inst.cfg index 498ff3750c1..fb4d097abb7 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.6.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.8.inst.cfg index 0f9baad3ff2..6223ddba969 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.8.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.1.inst.cfg index 355ef66112f..bff77312787 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.2.inst.cfg index c160324f03a..7dadd7ef79b 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.3.inst.cfg index eb642e6e48d..8c90a1f3044 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.4.inst.cfg index 59933f6f69d..cb2ad61411c 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.6.inst.cfg index ccaa29a0d81..36e59de2e3a 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.1.inst.cfg index 7dba8943687..9c87a86afc2 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.2.inst.cfg index eecd00f1541..7d017686437 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.3.inst.cfg index 074fcab081d..1a372f26890 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_tpu_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_tpu_h0.2.inst.cfg index 40caac85b73..03735e73c96 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_tpu_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_tpu_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.4.inst.cfg index a54d67164fb..fd0e2092fee 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.6.inst.cfg index 877c714bd28..764fae3340c 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.4.inst.cfg index d1e846d8ef7..105457d8ddf 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 1.0mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.6.inst.cfg index 587816e51d8..418750d4bf1 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.8.inst.cfg index aaf0443bf3b..3d823e2b158 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 1.0mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.05.inst.cfg index 19744cb04a7..bc56d30d7ce 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.05 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.2mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.1.inst.cfg index b77985d74aa..aa03342cb28 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.2mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.15.inst.cfg index f33ed01e889..9c58bafbbcc 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.15 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.2mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.1.inst.cfg index f4dedc6698d..736ac60dee6 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.2.inst.cfg index 12924a1e88d..60cd6a68350 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.3.inst.cfg index d4ba2e1f8a1..cda0198ba2e 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.2.inst.cfg index a5e375ee62f..5d48f19122d 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.6mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.4.inst.cfg index 23af3a293d6..d4c97e93871 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.6mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.4.inst.cfg index a1c971ab986..8e9ce5df5ce 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.6.inst.cfg index cab9e49b7aa..706e4937486 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.4.inst.cfg index 6397f44f7dc..5fa87f6a3d2 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.0mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.6.inst.cfg index 66f620995a1..1ec3a05ef30 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.8.inst.cfg index 51315f0adc3..c9976361959 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.0mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.6.inst.cfg index b5c1b5a457a..6866799752a 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.8.inst.cfg index c25d184d817..a7b08617c65 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.2mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.05.inst.cfg index e277ae7d215..0aa380fcffc 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.05.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.05 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.1.inst.cfg index 1bc5d20d89a..487bac34b24 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.1.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.15.inst.cfg index f9d453be320..bdf235bd295 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.15.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.15 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.2.inst.cfg index cc7fd06726a..4ac4a2b7986 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.2.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.3.inst.cfg index 8a12a51635d..bdef20e4f87 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.3.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.4.inst.cfg index a9b846ca8bc..897f9fc63a1 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.4.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.6.inst.cfg index 03e6b0b6c5f..1203ab3c8df 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.6.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.8.inst.cfg index faa311ad573..9fd1c538119 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.8.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.1.inst.cfg index f219f6e880c..70de54d92f3 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.2.inst.cfg index 68455d34537..faa45bd0d8d 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.3.inst.cfg index e6e3508722b..eb8aec270f0 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.4.inst.cfg index a34676603ea..75c4f287eb6 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.6.inst.cfg index 36d3e3351ca..45f129d8b42 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.05.inst.cfg index 139fff75b02..5349318ce59 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.05 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.1.inst.cfg index 44a7d230805..515114f3a22 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.15.inst.cfg index e36d71db8e8..9b81d1096a0 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.15 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.1.inst.cfg index 72c7db1513f..d039abd7d7b 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.2.inst.cfg index 01d2f6e0e4c..9a3f73e717c 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.3.inst.cfg index cb03a9decc0..f5c8e5c226c 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.2.inst.cfg index 17164e0ab89..9e24a016dbc 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.6mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.4.inst.cfg index 4aee58e6f32..0457db771eb 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.6mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.4.inst.cfg index c3171fcb896..c27869d8587 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.6.inst.cfg index 130b80c9bc6..54a8cf3c59b 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.4.inst.cfg index c058d2f937d..5eecef0be1e 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.0mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.6.inst.cfg index e3e286cd317..e99408614c0 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.8.inst.cfg index 4da458f122e..d89273d34bd 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.6.inst.cfg index 11120db31cc..6e4e2441df3 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.8.inst.cfg index 9ffc2f057ca..2ee463e2f76 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.05.inst.cfg index c5146b18c2c..6e26fa8520d 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.05.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.05 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.1.inst.cfg index 2c2a6140d5e..621303c03f5 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.1.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.15.inst.cfg index f504d2df4a8..37bcb1de38c 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.15.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.15 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.2.inst.cfg index 25491d48367..9b3c4204614 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.2.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.3.inst.cfg index 88559bb8ddb..29dcfd687e8 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.3.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.4.inst.cfg index ec48205bd8b..11fa0af1202 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.4.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.6.inst.cfg index 1fa9953ada6..a84246755cf 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.6.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.8.inst.cfg index a0f60cc1e80..2a35c530291 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.8.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.1.inst.cfg index 5f877759d79..87b536ce003 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.2.inst.cfg index 4457176cee4..7caa4f19b35 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.3.inst.cfg index 014d2a0a6ca..3d18ae5645d 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.4.inst.cfg index fda7f5bef86..26c55325d3c 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.6inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.6inst.cfg index b338c04c60a..f6f9bdcfd5a 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.6inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.6inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = dagoma_sigma [metadata] -setting_version = 22 +setting_version = 23 type = quality quality_type = h0.6 weight = -3 diff --git a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.8.inst.cfg index a0346640b8c..c0dd1bdc228 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = -4 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.1.inst.cfg index f4854e35901..39d1311f88b 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.2.inst.cfg index fe081fea2b0..30bd0b88f4a 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.3.inst.cfg index 5fc3621a60b..6f5e1594a3d 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.4.inst.cfg index 7fa09620a2e..11627f7cc01 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.6.inst.cfg index fe91f957688..13f032f573b 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.8.inst.cfg index ee029f1031c..2d3a252effa 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg index 9f24b9ff18f..2f4b38a21cb 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg index 8792a7527a8..6cf00327bc3 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg index c38b789f6b7..89f3b80443e 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg index 035ab244cca..d4bfe2a43de 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg index 193c64708bd..d8e4c1c2e2d 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg index e961f9c59eb..a5e83f03bee 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg index eb38d71eec2..94261daf9e1 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg index 33a8956b39a..16b40d8c6b2 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg index 540dc947b2b..b6973e84ae1 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg index bd6d2b41769..d69a78f115e 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg index 2da4d4af4ff..3f1fbabc677 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg index 82ae79a60d5..8c0008450de 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.1.inst.cfg index 62b8f6da3e9..6d675bba9cc 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.1.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.2.inst.cfg index e6467c116b0..254c651f8bd 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.2.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.3.inst.cfg index 3f2f23cc15e..055d0a803ea 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.3.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.4.inst.cfg index 9fbedce8b4a..e64d5457252 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.4.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.6.inst.cfg index 45f5d6f59b6..a0d307ee22c 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.6.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg index 26368409b28..982b7761fa5 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.2.inst.cfg index 9d860526ac9..235498bc96f 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg index e9cbd8f8c0a..290910742d8 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg index f0d1931321b..58656290ee4 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg index d7430e59530..be38030f9fc 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg index a431051e77b..f313d739e24 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.1.inst.cfg index ddcdb5a4e43..3b0c42ca937 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.1.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.2.inst.cfg index b5a534784dc..5755713fe3f 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.2.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.3.inst.cfg index a648eee325a..a055df78fb3 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.3.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.4.inst.cfg index b173c5e6f2e..0f39dc88039 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.4.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.6.inst.cfg index 70c094d2e35..9640066226d 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.6.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg index d7009cd72f0..6156764dbf4 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.2.inst.cfg index bc1c894bccf..d0aad40ed39 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg index 380e162e1c4..456c6ea7983 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg index 3baede10207..d365c172a41 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg index df97ec19f57..7dee9e73175 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg index 64237734781..d5e2a394a06 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_A.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_A.inst.cfg index 11aa6f6507c..e42c085ea20 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_A.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_B.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_B.inst.cfg index 2f83de4ed00..20f232643c0 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_B.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_C.inst.cfg index 83178814300..b62f57aab6b 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_A.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_A.inst.cfg index 31a1896b583..e8e1200b577 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_A.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_B.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_B.inst.cfg index 5377ed0e30a..78e3e522581 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_B.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_C.inst.cfg index acc20d48114..75321948b3d 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_D.inst.cfg index a9eb22c049f..43e7c86bbaf 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_E.inst.cfg index c3eb63c1cdc..255e5e84ac3 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_C.inst.cfg index 1e1104c7d5c..94ff2c2f315 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_D.inst.cfg index af25db2d411..212aaf3863c 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_E.inst.cfg index e7af80eea9e..7d5b705561c 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_F.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_F.inst.cfg index d75f2de82f6..58c39a178de 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_F.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_A.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_A.inst.cfg index 18c60ed91f1..168d4644531 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_A.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_B.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_B.inst.cfg index 2d983918046..aa26014230d 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_B.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_C.inst.cfg index 8565f8b755a..1bbd8503576 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_A.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_A.inst.cfg index 9f0b4b686a4..df0b816a227 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_A.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_B.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_B.inst.cfg index a00fb62edf0..b8557252d5b 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_B.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_C.inst.cfg index de41c515069..f9ecee8b9ad 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_D.inst.cfg index f44d704144c..5129278efd4 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_E.inst.cfg index 47bec0fb2b0..1e6378bbff6 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_C.inst.cfg index 52f4cb6d183..ad052174fd0 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_D.inst.cfg index 21d53035f95..8f04ff05be3 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_E.inst.cfg index 916fe406c74..c6fd1a5b34e 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_F.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_F.inst.cfg index 2ba586ef71a..7a281473bfd 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_F.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_D.inst.cfg index dc5351515bb..dee783d9efe 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_E.inst.cfg index 2d0a92bdce5..39cd500d38d 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_F.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_F.inst.cfg index fc327140a84..5cd566790ae 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_F.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_G.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_G.inst.cfg index f3bc78f2ca2..bd2767eb92a 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_G.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D060 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_D.inst.cfg index c53bb930fbd..657f0acb132 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_E.inst.cfg index 7753924c315..ecd5808a634 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_F.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_F.inst.cfg index 78ff239fedb..073abec7a4c 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_F.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_G.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_G.inst.cfg index 124a0663c98..cc893ee6dcd 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_G.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D060 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_A.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_A.inst.cfg index c17e03cca79..ddd1eb6d159 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_A.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_B.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_B.inst.cfg index 351fe10bac6..42681e7332b 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_B.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_C.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_C.inst.cfg index 7142884b518..48620f80def 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_C.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_D.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_D.inst.cfg index 42b997af7ae..814a31f541a 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_D.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_E.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_E.inst.cfg index 60faed8b770..3e58d17c2b1 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_E.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_C.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_C.inst.cfg index c0fe8ef102c..422fd262ebf 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_C.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_D.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_D.inst.cfg index 93b85e78f8e..7c09cea5e62 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_D.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_E.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_E.inst.cfg index 1d930aae1ff..04fd4eb0001 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_E.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_F.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_F.inst.cfg index c5b90b06878..e69dbee1da9 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_F.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_A.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_A.inst.cfg index 98f25804006..8fa17b68ae7 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_A.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_B.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_B.inst.cfg index fbfcb4447f7..228f9ef2ead 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_B.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_C.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_C.inst.cfg index 5f8c6766b46..f7759e4ac25 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_C.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_D.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_D.inst.cfg index 4e409923b8e..40ab119290e 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_D.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_E.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_E.inst.cfg index 4c66839fbcb..f12afe9f2f4 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_E.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_C.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_C.inst.cfg index 8063002f957..28d9bd7a1e4 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_C.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_D.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_D.inst.cfg index d1759d62d34..4926b470de9 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_D.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_E.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_E.inst.cfg index 8101fbe35f4..83bc04f13b8 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_E.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_F.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_F.inst.cfg index 56e1b5d3139..de3b81ec1cf 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_F.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_A.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_A.inst.cfg index b50557725d2..84e69b2c51b 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_A.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_B.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_B.inst.cfg index 0e8054dd279..e751ff9df69 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_B.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_C.inst.cfg index bd45965d4b8..63fe58d5a7c 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_A.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_A.inst.cfg index f020d2f102c..7feff9db8dd 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_A.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_B.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_B.inst.cfg index 295e777a2f2..63f28107d5f 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_B.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_C.inst.cfg index 7b39f2a7f9b..a4ac0de94f5 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_D.inst.cfg index d2c3add06dd..8e0a0f89f9a 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_E.inst.cfg index dfbf63f11cb..a8d4d43e62e 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_C.inst.cfg index 0d8b1dae2a5..639b632459a 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_D.inst.cfg index f6fffd5ba60..878eb66f4fe 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_E.inst.cfg index 9b1ba588003..9beead6171d 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_F.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_F.inst.cfg index 16d09699dc0..d443dd99fce 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_F.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_A.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_A.inst.cfg index 5e7be2d1fb5..94a9161ac1c 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_A.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_B.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_B.inst.cfg index bf01db2049f..963b6330e34 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_B.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_C.inst.cfg index ecbfacae2b9..813ef05b3ec 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_A.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_A.inst.cfg index 241686cb365..dd9f03094a7 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_A.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_B.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_B.inst.cfg index b9a32b3cb78..85c84cc075c 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_B.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_C.inst.cfg index 448c3e5967c..1963e7531f7 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_D.inst.cfg index 6ab71e22956..edb5b6a2b34 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_E.inst.cfg index 75844ac2dc0..bfe360e0a09 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_C.inst.cfg index 2c3bfd17eca..1f9fe6362d9 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_D.inst.cfg index 64a49a9700a..7c75a8f9745 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_E.inst.cfg index 063dcf8aac0..f054df6a1d9 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_F.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_F.inst.cfg index 9b4ef0761bb..c54e26b6a3c 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_F.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_D.inst.cfg index cf8780e0d3b..63fc3efa35c 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_E.inst.cfg index 4f9ad94b0e1..b9d742bae39 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_F.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_F.inst.cfg index 4a0a27225bb..892a526b0dc 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_F.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_G.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_G.inst.cfg index 80bd1ed96ee..25a4e96755f 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_G.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D060 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_D.inst.cfg index 29432968918..00aacd61410 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_E.inst.cfg index 3b0f9b28921..91c16e5c672 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_F.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_F.inst.cfg index 1744414d276..3668246197d 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_F.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_G.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_G.inst.cfg index e8d01f930d0..519e1f5eaf7 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_G.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D060 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg index 33b5c2c1110..1149937c879 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg index 5be0dc95270..352d4de3418 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg index 76aa867f8fa..e06a0a73228 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg index 20bb125cd9d..7ac8c617152 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg index cc0224cf23f..b39b5d2e963 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg index ec2ebdc647f..7a3ef1b326d 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg index 136ec93d164..373de4e4b45 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg index 3a0a94782cb..0b175880b97 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg index 719a4bdcbd0..508911edfd4 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg index 4486a1d3bc3..0ecb10b88b8 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg index b938502e857..fcd493bc51c 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg index 3b88ca6b671..208f17e7c3b 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg index 41347177703..07bf612a394 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg index e267e7c6eb1..eb2e6a695e0 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg index 35e2e07b41d..644cc467e4c 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg index dd944cbfd1c..219153ea6d8 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg index 8aa462e206f..a654a9c09d2 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg index 0691a01debd..fb793f17f6b 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg index a4d0582c3a1..13026b5e409 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg index 831e17c018e..21dc4e258eb 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg index d9a57d60123..7bc46489766 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg index 8408fbc0148..b8e9e60a71a 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D060 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg index 18c813a79a2..99c9fbb302f 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg index 660c536a5e2..2d0575447bb 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg index 5dbea58c49f..6aaad334479 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg index 9bfd649e99e..854c30e5461 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D060 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_B.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_B.inst.cfg index b0eafd229af..29601ca25eb 100644 --- a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_B.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_C.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_C.inst.cfg index dae89bcf980..136ddf125b6 100644 --- a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_C.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_D.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_D.inst.cfg index 1df4e6596a4..6e67b7bc50d 100644 --- a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_D.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_B.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_B.inst.cfg index 710e0f56159..58f9f71b7d3 100755 --- a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_B.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_C.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_C.inst.cfg index fd47c2736d3..53b1fdebe11 100755 --- a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_C.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_D.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_D.inst.cfg index f55395526ee..cb83ab0b667 100755 --- a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_D.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/deltacomb_global_A.inst.cfg b/resources/quality/deltacomb/deltacomb_global_A.inst.cfg index 37253cf6a9b..ead1fb1073a 100755 --- a/resources/quality/deltacomb/deltacomb_global_A.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/deltacomb/deltacomb_global_B.inst.cfg b/resources/quality/deltacomb/deltacomb_global_B.inst.cfg index f7875876018..91d2b0c01dd 100755 --- a/resources/quality/deltacomb/deltacomb_global_B.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/deltacomb/deltacomb_global_C.inst.cfg b/resources/quality/deltacomb/deltacomb_global_C.inst.cfg index de606ef4240..e2ed0c55ec7 100755 --- a/resources/quality/deltacomb/deltacomb_global_C.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/deltacomb/deltacomb_global_D.inst.cfg b/resources/quality/deltacomb/deltacomb_global_D.inst.cfg index 0f2d7c8b701..c5a78b5fee7 100755 --- a/resources/quality/deltacomb/deltacomb_global_D.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/deltacomb/deltacomb_global_E.inst.cfg b/resources/quality/deltacomb/deltacomb_global_E.inst.cfg index cdef82876d9..c4db01ca7a8 100755 --- a/resources/quality/deltacomb/deltacomb_global_E.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/deltacomb/deltacomb_global_F.inst.cfg b/resources/quality/deltacomb/deltacomb_global_F.inst.cfg index 2f7f2f15ed7..d8015320e40 100755 --- a/resources/quality/deltacomb/deltacomb_global_F.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/deltacomb/deltacomb_global_G.inst.cfg b/resources/quality/deltacomb/deltacomb_global_G.inst.cfg index 412279110b6..86e6afbd003 100755 --- a/resources/quality/deltacomb/deltacomb_global_G.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D060 -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/diy220/diy220_draft.inst.cfg b/resources/quality/diy220/diy220_draft.inst.cfg index c403531471c..b72d99e6b79 100644 --- a/resources/quality/diy220/diy220_draft.inst.cfg +++ b/resources/quality/diy220/diy220_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/diy220/diy220_fast.inst.cfg b/resources/quality/diy220/diy220_fast.inst.cfg index 48cc3518ab1..96cc12594c9 100644 --- a/resources/quality/diy220/diy220_fast.inst.cfg +++ b/resources/quality/diy220/diy220_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/diy220/diy220_high.inst.cfg b/resources/quality/diy220/diy220_high.inst.cfg index 094879b56e2..409b655fedf 100644 --- a/resources/quality/diy220/diy220_high.inst.cfg +++ b/resources/quality/diy220/diy220_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/diy220/diy220_normal.inst.cfg b/resources/quality/diy220/diy220_normal.inst.cfg index ee6b0b3ff45..c9d06fff3bf 100644 --- a/resources/quality/diy220/diy220_normal.inst.cfg +++ b/resources/quality/diy220/diy220_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/draft.inst.cfg b/resources/quality/draft.inst.cfg index 50a7d5ddc63..b0510350d24 100644 --- a/resources/quality/draft.inst.cfg +++ b/resources/quality/draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.10.inst.cfg index fd5d0c54f8c..6a5928fe395 100644 --- a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.15.inst.cfg index e522e06d337..94e0ff76db3 100644 --- a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.20.inst.cfg index 149d17021e6..8e0753df217 100644 --- a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.30.inst.cfg index 9c58ee7fc9c..d15fe355659 100644 --- a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.10.inst.cfg index 3543bf211eb..9c0d0b373f5 100644 --- a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.15.inst.cfg index 588746ddc42..caae30a653a 100644 --- a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.20.inst.cfg index ebb268aae22..821aad26e05 100644 --- a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.30.inst.cfg index e992206e6b5..dda2efc18d3 100644 --- a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/elegoo_layer_0.05.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.05.inst.cfg index 0175d5dbfaa..80daf5e2081 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.05.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_005 -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.10.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.10.inst.cfg index d4fa921e7b7..b8205a51e90 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.15.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.15.inst.cfg index 572a4a7c525..639416de9ad 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.20.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.20.inst.cfg index ee4226a6a87..28df9f27f66 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.30.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.30.inst.cfg index dea809b0635..1027aefde0d 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality weight = -6 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.40.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.40.inst.cfg index cca7b701aaa..abb411e9aac 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.40.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_040 -setting_version = 22 +setting_version = 23 type = quality weight = -6 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.60.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.60.inst.cfg index a7ff7a2610d..60854868a7b 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.60.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.60.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_060 -setting_version = 22 +setting_version = 23 type = quality weight = -6 diff --git a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.10.inst.cfg index 9080be34e67..31f6f2eea50 100644 --- a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.15.inst.cfg index 59a628a2c54..4ceba7f60de 100644 --- a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.20.inst.cfg index 6ff38ad0851..abaf0e45b0f 100644 --- a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.30.inst.cfg index 707dac9c581..05ddbca9c9e 100644 --- a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.05.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.05.inst.cfg index c5ed8f40f81..e7c17603c42 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.05.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_005 -setting_version = 22 +setting_version = 23 type = quality variant = 0.20mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.10.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.10.inst.cfg index fe92906bf3c..56425ebc325 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.20mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg index d5a2f73729c..18057cbd235 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg index e86f4546649..5787dec9abb 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg index db7e5a43c7f..61f1200dc5f 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg index d84cc9e6563..64e054eb603 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.15.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.15.inst.cfg index 043662209bd..a3597c5cfeb 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.20.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.20.inst.cfg index b47c51abeba..6f15cd12b0b 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.30.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.30.inst.cfg index 38de41d075c..326df93ddf4 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.40.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.40.inst.cfg index efb1ababd0c..daf028784f2 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.40.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_040 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg index b6c63fad0fd..64a766b544e 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg index 1e3eec080a6..e2eecb087f2 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_040 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg index 09bc57ffea1..ac50ba359c6 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_060 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.10.inst.cfg index 32e2de589d9..b3354fcc423 100644 --- a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.15.inst.cfg index d2cd594cb72..236f4546c7e 100644 --- a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.20.inst.cfg index 1cd9f3d6ef8..4bff2a9a5c3 100644 --- a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.30.inst.cfg index e5cc440ebab..fdace5abf31 100644 --- a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg index e05b278e4c8..40ddd88c0dc 100644 --- a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg index 412f393a459..9a8a5ff0be5 100644 --- a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg index df3353baed8..4035d17d246 100644 --- a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg index 8219690265c..f9dc125bba7 100644 --- a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg index a0ae0016503..615dc1ef52f 100644 --- a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg index 228eea99dc3..ced818bcec1 100644 --- a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg index df1e5802e7f..29877b0ff2f 100644 --- a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg index 335a479a34f..d9efc991627 100644 --- a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.05.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.05.inst.cfg index 8deff4ba88c..9abf9fd779f 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.05.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_005 -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.10.inst.cfg index 4d19d0f21bd..67163bd6a09 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.15.inst.cfg index 64f00befdfb..6cc3c34161b 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.20.inst.cfg index 06995a4e438..9016c13baf4 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.30.inst.cfg index 09a6e30e7cd..3acd8e9c19a 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality weight = -6 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.40.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.40.inst.cfg index ac180ca1ab7..66a007ae306 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.40.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_040 -setting_version = 22 +setting_version = 23 type = quality weight = -6 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.60.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.60.inst.cfg index a053731bf42..c0f861ed115 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.60.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.60.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_060 -setting_version = 22 +setting_version = 23 type = quality weight = -6 diff --git a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg index 52b8b688105..fdbe91aecbf 100644 --- a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg index ee9fda159b8..12ab4871e61 100644 --- a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg index 0c7c3abf04b..66841fad83a 100644 --- a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg index a3043234b60..6adae27f5d2 100644 --- a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg index 66eb9f49c08..7ec14659ba5 100644 --- a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg index 209ce52fa2b..01f00569fee 100644 --- a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg index 9805a1ae5a8..963b61f6977 100644 --- a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg index cb6ca323e69..256c231275b 100644 --- a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg index f5c76ef6c7a..b9a1aa3dff4 100644 --- a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg index 8762cb12bca..ac71e656147 100644 --- a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg index cb3a64810ec..95fc95df77a 100644 --- a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg index e04d7319e9b..84b045be8bb 100644 --- a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_draft.inst.cfg b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_draft.inst.cfg index 4af6b802be4..d527b02bca3 100644 --- a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_draft.inst.cfg +++ b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_fine.inst.cfg b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_fine.inst.cfg index 11ee7992d3e..267d5935a1f 100644 --- a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_fine.inst.cfg +++ b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_normal.inst.cfg b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_normal.inst.cfg index 19742215b62..e2dc623cfc7 100644 --- a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_normal.inst.cfg +++ b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_draft.inst.cfg b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_draft.inst.cfg index 74ecbb5c973..2a8f9f73de5 100644 --- a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_draft.inst.cfg +++ b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_fine.inst.cfg b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_fine.inst.cfg index 4ac4c374a26..5945ec42dfe 100644 --- a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_fine.inst.cfg +++ b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_normal.inst.cfg b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_normal.inst.cfg index 9474f6a4eb8..c747fb3b2d6 100644 --- a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_normal.inst.cfg +++ b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/eryone_er20/eryone_er20_draft.inst.cfg b/resources/quality/eryone_er20/eryone_er20_draft.inst.cfg index 6da0c1df028..27a692eda50 100644 --- a/resources/quality/eryone_er20/eryone_er20_draft.inst.cfg +++ b/resources/quality/eryone_er20/eryone_er20_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/eryone_er20/eryone_er20_high.inst.cfg b/resources/quality/eryone_er20/eryone_er20_high.inst.cfg index 02018afa924..582b0f6206b 100644 --- a/resources/quality/eryone_er20/eryone_er20_high.inst.cfg +++ b/resources/quality/eryone_er20/eryone_er20_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/eryone_er20/eryone_er20_normal.inst.cfg b/resources/quality/eryone_er20/eryone_er20_normal.inst.cfg index 30387220c0a..79ed3bf4e05 100644 --- a/resources/quality/eryone_er20/eryone_er20_normal.inst.cfg +++ b/resources/quality/eryone_er20/eryone_er20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/eryone_thinker/eryone_thinker_extra_fast.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_extra_fast.inst.cfg index cfaa2a91526..aa29fd73a0a 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_extra_fast.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/eryone_thinker/eryone_thinker_fast.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_fast.inst.cfg index aec233fc9f1..6d02bfab862 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_fast.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/eryone_thinker/eryone_thinker_fine.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_fine.inst.cfg index d4a0e28def6..98d77a84087 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_fine.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/eryone_thinker/eryone_thinker_high.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_high.inst.cfg index 82e16a4d1e8..559a547b757 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_high.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/eryone_thinker/eryone_thinker_normal.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_normal.inst.cfg index 1a27f0b991a..1baad098696 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_normal.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/extra_coarse.inst.cfg b/resources/quality/extra_coarse.inst.cfg index 2dabe4ae3e5..2ef72cde597 100644 --- a/resources/quality/extra_coarse.inst.cfg +++ b/resources/quality/extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/extra_fast.inst.cfg b/resources/quality/extra_fast.inst.cfg index d4f8d0fbfed..3e432ede967 100644 --- a/resources/quality/extra_fast.inst.cfg +++ b/resources/quality/extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/fabtotum/fabtotum_abs_fast.inst.cfg b/resources/quality/fabtotum/fabtotum_abs_fast.inst.cfg index 9a0a77a2d09..28dd970db6b 100644 --- a/resources/quality/fabtotum/fabtotum_abs_fast.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_abs_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = -1 diff --git a/resources/quality/fabtotum/fabtotum_abs_high.inst.cfg b/resources/quality/fabtotum/fabtotum_abs_high.inst.cfg index 571f41a226b..e9b55c86359 100644 --- a/resources/quality/fabtotum/fabtotum_abs_high.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = 1 diff --git a/resources/quality/fabtotum/fabtotum_abs_normal.inst.cfg b/resources/quality/fabtotum/fabtotum_abs_normal.inst.cfg index e745ed6a7b0..dcacb56d017 100644 --- a/resources/quality/fabtotum/fabtotum_abs_normal.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = 0 diff --git a/resources/quality/fabtotum/fabtotum_nylon_fast.inst.cfg b/resources/quality/fabtotum/fabtotum_nylon_fast.inst.cfg index 20ca90e6292..3858c9d91ac 100644 --- a/resources/quality/fabtotum/fabtotum_nylon_fast.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = -1 diff --git a/resources/quality/fabtotum/fabtotum_nylon_high.inst.cfg b/resources/quality/fabtotum/fabtotum_nylon_high.inst.cfg index 349d84c7f72..45bef0403c5 100644 --- a/resources/quality/fabtotum/fabtotum_nylon_high.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = 1 diff --git a/resources/quality/fabtotum/fabtotum_nylon_normal.inst.cfg b/resources/quality/fabtotum/fabtotum_nylon_normal.inst.cfg index 11e69d6a7fa..55532ceb2ac 100644 --- a/resources/quality/fabtotum/fabtotum_nylon_normal.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = 0 diff --git a/resources/quality/fabtotum/fabtotum_pla_fast.inst.cfg b/resources/quality/fabtotum/fabtotum_pla_fast.inst.cfg index d6e02449415..92c4f0dfeb9 100644 --- a/resources/quality/fabtotum/fabtotum_pla_fast.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = -1 diff --git a/resources/quality/fabtotum/fabtotum_pla_high.inst.cfg b/resources/quality/fabtotum/fabtotum_pla_high.inst.cfg index 635704ed986..5f5d9a87dc8 100644 --- a/resources/quality/fabtotum/fabtotum_pla_high.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = 1 diff --git a/resources/quality/fabtotum/fabtotum_pla_normal.inst.cfg b/resources/quality/fabtotum/fabtotum_pla_normal.inst.cfg index e8bfa117da1..b6f13d5efe3 100644 --- a/resources/quality/fabtotum/fabtotum_pla_normal.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = 0 diff --git a/resources/quality/fabtotum/fabtotum_tpu_fast.inst.cfg b/resources/quality/fabtotum/fabtotum_tpu_fast.inst.cfg index 413578becb1..3f206edb69f 100644 --- a/resources/quality/fabtotum/fabtotum_tpu_fast.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_tpu_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = -1 diff --git a/resources/quality/fabtotum/fabtotum_tpu_high.inst.cfg b/resources/quality/fabtotum/fabtotum_tpu_high.inst.cfg index 96c9459e2b1..e5758fd6103 100644 --- a/resources/quality/fabtotum/fabtotum_tpu_high.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_tpu_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = 1 diff --git a/resources/quality/fabtotum/fabtotum_tpu_normal.inst.cfg b/resources/quality/fabtotum/fabtotum_tpu_normal.inst.cfg index acbc66cd2f9..dc86601a444 100644 --- a/resources/quality/fabtotum/fabtotum_tpu_normal.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_tpu_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = 0 diff --git a/resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg index 53b241e1e7d..98022f13717 100644 --- a/resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_abs quality_type = Draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg index 9cb37a009e7..8b3864f9be1 100644 --- a/resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_abs quality_type = Fine -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg index 0cbba43d8b8..c36f61cb8df 100644 --- a/resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_abs quality_type = Normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg index 16662f6dbb5..61d33928a04 100644 --- a/resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_asa quality_type = Draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg index dff57e30dc3..33af821e056 100644 --- a/resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_asa quality_type = Fine -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg index 439851223fb..f6a03c67251 100644 --- a/resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_asa quality_type = Normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg index 1967e62c5c1..ec39636406a 100644 --- a/resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_hips quality_type = Draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg index d722ca9b7bf..44870395ff1 100644 --- a/resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_hips quality_type = Fine -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg index 6c9faff53e3..55d0cbdfe57 100644 --- a/resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_hips quality_type = Normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg index d9de619b077..ac01503afa9 100644 --- a/resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_nylon quality_type = Draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg index ad46a8a0f93..70cf6b75cfe 100644 --- a/resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_nylon quality_type = Fine -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg index 8bf3d5f1727..2afb912967d 100644 --- a/resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_nylon quality_type = Normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg index 536bc78817f..c9668fec6a2 100644 --- a/resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_petg quality_type = Draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg index 5bdc47aa27c..26ac9b1eefa 100644 --- a/resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_petg quality_type = Fine -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg index 507f1919dc1..5596b8911d5 100644 --- a/resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_petg quality_type = Normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg index e9f2da3220e..4e0841b5fab 100644 --- a/resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_pla quality_type = Draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg index 85b3e983e4a..faca76f3598 100644 --- a/resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_pla quality_type = Fine -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg index 7f3d48bb132..db95936528b 100644 --- a/resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_pla quality_type = Normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg index 60334ab70a3..d992ad808fa 100644 --- a/resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_tpe quality_type = Draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg index 6754b148d15..6751fa489a0 100644 --- a/resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_tpe quality_type = Fine -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg index 37b421399a5..be5bf2a03b1 100644 --- a/resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_tpe quality_type = Normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fast.inst.cfg b/resources/quality/fast.inst.cfg index 7fc64242506..2bd950fbf28 100644 --- a/resources/quality/fast.inst.cfg +++ b/resources/quality/fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/flashforge/abs/flashforge_0.20_abs_super.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.20_abs_super.inst.cfg index 2d8aefe9f91..ceeb33ebb0e 100644 --- a/resources/quality/flashforge/abs/flashforge_0.20_abs_super.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.20_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.20_abs_ultra.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.20_abs_ultra.inst.cfg index d4593e2f2b9..59f9dfc21b7 100644 --- a/resources/quality/flashforge/abs/flashforge_0.20_abs_ultra.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.20_abs_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.30_abs_adaptive.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.30_abs_adaptive.inst.cfg index 61dbce2980a..c0ca53f77e1 100644 --- a/resources/quality/flashforge/abs/flashforge_0.30_abs_adaptive.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.30_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.30_abs_standard.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.30_abs_standard.inst.cfg index 792f5d6e28c..214e8838d05 100644 --- a/resources/quality/flashforge/abs/flashforge_0.30_abs_standard.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.30_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.30_abs_super.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.30_abs_super.inst.cfg index a37b7f6f131..840be248622 100644 --- a/resources/quality/flashforge/abs/flashforge_0.30_abs_super.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.30_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.40_abs_adaptive.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.40_abs_adaptive.inst.cfg index 1222bdcdabd..563fabb46a0 100644 --- a/resources/quality/flashforge/abs/flashforge_0.40_abs_adaptive.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.40_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.40_abs_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.40_abs_draft.inst.cfg index 0931880f756..16442849542 100644 --- a/resources/quality/flashforge/abs/flashforge_0.40_abs_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.40_abs_low.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.40_abs_low.inst.cfg index cd6705a7eb5..64deb8c2575 100644 --- a/resources/quality/flashforge/abs/flashforge_0.40_abs_low.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.40_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.40_abs_standard.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.40_abs_standard.inst.cfg index 785d8001da9..d70262d6e3e 100644 --- a/resources/quality/flashforge/abs/flashforge_0.40_abs_standard.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.40_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.40_abs_super.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.40_abs_super.inst.cfg index c29879a70fb..dc92a362279 100644 --- a/resources/quality/flashforge/abs/flashforge_0.40_abs_super.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.40_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.50_abs_adaptive.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.50_abs_adaptive.inst.cfg index 7a2a5f1c531..a3540c2f2a3 100644 --- a/resources/quality/flashforge/abs/flashforge_0.50_abs_adaptive.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.50_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.50_abs_coarse.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.50_abs_coarse.inst.cfg index 8a7f545da38..2af3abe070b 100644 --- a/resources/quality/flashforge/abs/flashforge_0.50_abs_coarse.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.50_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.50_abs_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.50_abs_draft.inst.cfg index cbca7b4f4e4..d1c103a95bb 100644 --- a/resources/quality/flashforge/abs/flashforge_0.50_abs_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.50_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.50_abs_low.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.50_abs_low.inst.cfg index d11945113f8..8558a9af989 100644 --- a/resources/quality/flashforge/abs/flashforge_0.50_abs_low.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.50_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.50_abs_standard.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.50_abs_standard.inst.cfg index 8f9a0d11115..9d95220b242 100644 --- a/resources/quality/flashforge/abs/flashforge_0.50_abs_standard.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.50_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.60_abs_coarse.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.60_abs_coarse.inst.cfg index 25ab9725170..34a0265bad9 100644 --- a/resources/quality/flashforge/abs/flashforge_0.60_abs_coarse.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.60_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.60_abs_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.60_abs_draft.inst.cfg index d9bb2bab9bf..abe8341705d 100644 --- a/resources/quality/flashforge/abs/flashforge_0.60_abs_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.60_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.60_abs_extra_coarse.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.60_abs_extra_coarse.inst.cfg index b4b744f033a..27be971b69d 100644 --- a/resources/quality/flashforge/abs/flashforge_0.60_abs_extra_coarse.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.60_abs_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Xcoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.60_abs_standard.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.60_abs_standard.inst.cfg index f3e0e2b70dc..ff145872789 100644 --- a/resources/quality/flashforge/abs/flashforge_0.60_abs_standard.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.60_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg index a5a800486f3..aae66cffb2a 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg index 316f5872a70..3c0cefacdf7 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg index b322c2784aa..0b679e648b5 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg index d329ebb4d95..19e2ba1fa2c 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg index 0aacffffcc8..1e7d154fa1a 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg index 0a62fdc6646..84e93885264 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg index 9ea811006d5..4454e4caa83 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg index 9d0d042d37f..89552b7d27f 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg index 469930cd21b..5823fde21cf 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg index bd25742c2a2..4749e76a583 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg index 691770bca3d..2e27fad0d19 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg index 9ad2fc4d398..544850b5a13 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg index 69c626d03f4..51be6df1ef5 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg index 8d7a92f553f..92db3f74973 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg index 115387a8153..44c5c7eb4bc 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg index 46f3f2673b5..9385df49535 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg index c0bc64550d7..0f7bb26ea3b 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg index 14ce91d9f3c..eb77c444fcf 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg index cdb13c71d15..b3c8daf0420 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg index 77e222ddcdd..9ca8cbbd12d 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg index cb0dd441c29..577b560d8b6 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg index 10055e2fa0f..d04e5f27135 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg index b85163b595d..e58194790cc 100644 --- a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg index a584b977248..1cc6c7d5a60 100644 --- a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg index e976f9f7b44..004c9706413 100644 --- a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/flashforge_adventurer3_draft.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_draft.inst.cfg index f1dd467a2bd..01722e32eac 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_draft.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/flashforge/flashforge_adventurer3_fast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_fast.inst.cfg index 300481cd3db..ea2288f7122 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_fast.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/flashforge/flashforge_adventurer3_fine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_fine.inst.cfg index 553091b10a8..57ea1716a0e 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_fine.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/flashforge/flashforge_adventurer3_normal.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_normal.inst.cfg index 438b2cc9faf..412236a0b41 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_normal.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/flashforge/flashforge_adventurer3_vfast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_vfast.inst.cfg index fba4eb1091d..2393725b447 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_vfast.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/flashforge/flashforge_adventurer3_vfine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_vfine.inst.cfg index 6ea52128bee..ef88b8f5156 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_vfine.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = veryfine -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/flashforge/flashforge_adventurer4_draft.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_draft.inst.cfg index 7ee52ca8a3a..f0ea2efb265 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_draft.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/flashforge/flashforge_adventurer4_fast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_fast.inst.cfg index 8be5e02e722..1b1a290eca9 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_fast.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/flashforge/flashforge_adventurer4_fine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_fine.inst.cfg index 272e5bc69dc..5045911c777 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_fine.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/flashforge/flashforge_adventurer4_normal.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_normal.inst.cfg index 4eb11924fe2..fdfa82e1823 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_normal.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/flashforge/flashforge_adventurer4_vfast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_vfast.inst.cfg index a2e3718bd26..6049accf3c8 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_vfast.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/flashforge/flashforge_adventurer4_vfine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_vfine.inst.cfg index f7eda2f1949..9ad3086e4d9 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_vfine.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = veryfine -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/flashforge/flashforge_global_0.08_ultra.inst.cfg b/resources/quality/flashforge/flashforge_global_0.08_ultra.inst.cfg index e88180b1f31..4d02730890f 100644 --- a/resources/quality/flashforge/flashforge_global_0.08_ultra.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.08_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/flashforge/flashforge_global_0.12_super.inst.cfg b/resources/quality/flashforge/flashforge_global_0.12_super.inst.cfg index 0da733d6f22..0569e335b95 100644 --- a/resources/quality/flashforge/flashforge_global_0.12_super.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.12_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/flashforge/flashforge_global_0.16_adaptive.inst.cfg b/resources/quality/flashforge/flashforge_global_0.16_adaptive.inst.cfg index bf19c702eb2..ae3e8dbbf29 100644 --- a/resources/quality/flashforge/flashforge_global_0.16_adaptive.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.16_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/flashforge/flashforge_global_0.20_standard.inst.cfg b/resources/quality/flashforge/flashforge_global_0.20_standard.inst.cfg index 7b5c94aa376..057fd5c1647 100644 --- a/resources/quality/flashforge/flashforge_global_0.20_standard.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/flashforge/flashforge_global_0.28_low.inst.cfg b/resources/quality/flashforge/flashforge_global_0.28_low.inst.cfg index ed78aa2e6c6..686394cfc35 100644 --- a/resources/quality/flashforge/flashforge_global_0.28_low.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.28_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/flashforge/flashforge_global_0.32_draft.inst.cfg b/resources/quality/flashforge/flashforge_global_0.32_draft.inst.cfg index c6506bf1df6..df8c6440f16 100644 --- a/resources/quality/flashforge/flashforge_global_0.32_draft.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.32_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/flashforge/flashforge_global_0.40_coarse.inst.cfg b/resources/quality/flashforge/flashforge_global_0.40_coarse.inst.cfg index 6e807e4ea77..8ca5ffe6d52 100644 --- a/resources/quality/flashforge/flashforge_global_0.40_coarse.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -6 diff --git a/resources/quality/flashforge/flashforge_global_0.48_extra_coarse.inst.cfg b/resources/quality/flashforge/flashforge_global_0.48_extra_coarse.inst.cfg index 4d25b6eae41..2daeadc9d88 100644 --- a/resources/quality/flashforge/flashforge_global_0.48_extra_coarse.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.48_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Xcoarse -setting_version = 22 +setting_version = 23 type = quality weight = -7 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg index 03b8d5f74e0..a0c8d9634c1 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg index 0c4322dfeef..fc2a74f13fb 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg index 1047360ee70..7287263674a 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg index cddd593db6c..49a5747768a 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg index 1742dbd9c3e..f381d514043 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg index 7e67c9f1782..f56ef4cea54 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg index c3aecf6625c..140906c9bb2 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg index c60aab13839..8a0958494a7 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg index 4a532fe98b5..2d1d442ae02 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg index b44810bae86..12224722b42 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg index 042d3035224..fe3cb31541a 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg index cb40e63d8cb..987e14ec9c7 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg index e66be5bc7ee..5de2fbac402 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg index 2d2d8bdbdc9..77f453fc032 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/petg/flashforge_0.2_petg_super.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.2_petg_super.inst.cfg index 485effea9c0..3be4591fee4 100644 --- a/resources/quality/flashforge/petg/flashforge_0.2_petg_super.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.2_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.2_petg_ultra.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.2_petg_ultra.inst.cfg index 0c469988fec..28dc975374d 100644 --- a/resources/quality/flashforge/petg/flashforge_0.2_petg_ultra.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.2_petg_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.30_petg_adaptive.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.30_petg_adaptive.inst.cfg index 77a7d139578..36f5894a957 100644 --- a/resources/quality/flashforge/petg/flashforge_0.30_petg_adaptive.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.30_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.30_petg_standard.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.30_petg_standard.inst.cfg index d9e3355b364..328a8a1ef9e 100644 --- a/resources/quality/flashforge/petg/flashforge_0.30_petg_standard.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.30_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.30_petg_super.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.30_petg_super.inst.cfg index 6289044cc74..05907e516c9 100644 --- a/resources/quality/flashforge/petg/flashforge_0.30_petg_super.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.30_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.40_petg_adaptive.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.40_petg_adaptive.inst.cfg index 5bc3a40758c..c7d703e787e 100644 --- a/resources/quality/flashforge/petg/flashforge_0.40_petg_adaptive.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.40_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.40_petg_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.40_petg_draft.inst.cfg index 8cda9a4e98f..ff367e74222 100644 --- a/resources/quality/flashforge/petg/flashforge_0.40_petg_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.40_petg_low.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.40_petg_low.inst.cfg index 4812cc11408..e0837d68e5a 100644 --- a/resources/quality/flashforge/petg/flashforge_0.40_petg_low.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.40_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.40_petg_standard.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.40_petg_standard.inst.cfg index c047e0c1654..b2c7b3ae157 100644 --- a/resources/quality/flashforge/petg/flashforge_0.40_petg_standard.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.40_petg_super.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.40_petg_super.inst.cfg index e456f385cec..8254ecd952e 100644 --- a/resources/quality/flashforge/petg/flashforge_0.40_petg_super.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.40_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.50_petg_adaptive.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.50_petg_adaptive.inst.cfg index af2991d185c..1955a205179 100644 --- a/resources/quality/flashforge/petg/flashforge_0.50_petg_adaptive.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.50_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.50_petg_coarse.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.50_petg_coarse.inst.cfg index 6acb269c0fa..33450d9d86f 100644 --- a/resources/quality/flashforge/petg/flashforge_0.50_petg_coarse.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.50_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.50_petg_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.50_petg_draft.inst.cfg index b7c9b546688..b17e8c421f3 100644 --- a/resources/quality/flashforge/petg/flashforge_0.50_petg_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.50_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.50_petg_low.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.50_petg_low.inst.cfg index 26ef92b68f3..aa39173cb34 100644 --- a/resources/quality/flashforge/petg/flashforge_0.50_petg_low.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.50_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.50_petg_standard.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.50_petg_standard.inst.cfg index b630f3f7df3..ba80b010f48 100644 --- a/resources/quality/flashforge/petg/flashforge_0.50_petg_standard.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.50_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.60_petg_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.60_petg_draft.inst.cfg index 71fcd17ff97..737bb687864 100644 --- a/resources/quality/flashforge/petg/flashforge_0.60_petg_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.60_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.60_petg_extra_coarse.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.60_petg_extra_coarse.inst.cfg index df2af8aab70..055eb431556 100644 --- a/resources/quality/flashforge/petg/flashforge_0.60_petg_extra_coarse.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.60_petg_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Xcoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.60_petg_standard.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.60_petg_standard.inst.cfg index d926c4ffe8a..aae8dae743d 100644 --- a/resources/quality/flashforge/petg/flashforge_0.60_petg_standard.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.60_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg index 3405adaae5d..f1dab1f88a9 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg index 20e2ba9ce5d..940aa1b7041 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg index 45aebad2451..22338239181 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg index 85ef922ea79..94f819068d9 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg index ec8d0e4d046..46fcf05f831 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg index 074d4864ce5..edb4b639320 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg index 66d21845629..3873c089a53 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg index 4f7d0da1c2d..68caeb589af 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg index 2f486d4d5d8..e360f94600b 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg index 9ac73720499..07e9565243c 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg index 744527c1397..279130f4dcf 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg index aeb666c82dd..68475b9a3f8 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg index cb0b7fba373..a64bce087f9 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg index ec087730523..1ff8c936890 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg index 84be0afa3b2..8d6052529a1 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg index 75bde3cd439..fde77f6c689 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg index 5f37b1e8122..bac296cdd98 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg index 844195d2df2..a603d564d1d 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg index 2eb93f1216c..253ed947c18 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg index ff190b0e238..41eeff7317d 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg index 91d617d2347..bbdfb71452c 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg index 22647877b82..bf68f7518cd 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_0.20_pla_super.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.20_pla_super.inst.cfg index 25bb5ab67df..d0f9b2605be 100644 --- a/resources/quality/flashforge/pla/flashforge_0.20_pla_super.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.20_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.20_pla_ultra.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.20_pla_ultra.inst.cfg index d139d9badea..4b673500814 100644 --- a/resources/quality/flashforge/pla/flashforge_0.20_pla_ultra.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.20_pla_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.30_pla_adaptive.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.30_pla_adaptive.inst.cfg index 1360aaf7470..967c4906b0e 100644 --- a/resources/quality/flashforge/pla/flashforge_0.30_pla_adaptive.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.30_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.30_pla_standard.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.30_pla_standard.inst.cfg index 895d454e3fe..93671d76ed0 100644 --- a/resources/quality/flashforge/pla/flashforge_0.30_pla_standard.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.30_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.30_pla_super.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.30_pla_super.inst.cfg index 76a588d33c5..d1becca566c 100644 --- a/resources/quality/flashforge/pla/flashforge_0.30_pla_super.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.30_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.40_pla_adaptive.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.40_pla_adaptive.inst.cfg index b7f7109d9b3..a43dec98ca4 100644 --- a/resources/quality/flashforge/pla/flashforge_0.40_pla_adaptive.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.40_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.40_pla_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.40_pla_draft.inst.cfg index 1d8878cf9fa..e93f061086a 100644 --- a/resources/quality/flashforge/pla/flashforge_0.40_pla_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.40_pla_low.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.40_pla_low.inst.cfg index ee39f73df24..b699f3488d9 100644 --- a/resources/quality/flashforge/pla/flashforge_0.40_pla_low.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.40_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.40_pla_standard.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.40_pla_standard.inst.cfg index 505ef421426..fc9bf8e60cb 100644 --- a/resources/quality/flashforge/pla/flashforge_0.40_pla_standard.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.40_pla_super.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.40_pla_super.inst.cfg index 7da3471196f..402abc4be96 100644 --- a/resources/quality/flashforge/pla/flashforge_0.40_pla_super.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.40_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.50_pla_adaptive.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.50_pla_adaptive.inst.cfg index a3b603704d9..ba5b5d9cd74 100644 --- a/resources/quality/flashforge/pla/flashforge_0.50_pla_adaptive.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.50_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.50_pla_coarse.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.50_pla_coarse.inst.cfg index 886c425d254..e908862f694 100644 --- a/resources/quality/flashforge/pla/flashforge_0.50_pla_coarse.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.50_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.50_pla_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.50_pla_draft.inst.cfg index 4a48cadf097..1fc1c76255d 100644 --- a/resources/quality/flashforge/pla/flashforge_0.50_pla_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.50_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.50_pla_low.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.50_pla_low.inst.cfg index deee1473786..8a785cccecd 100644 --- a/resources/quality/flashforge/pla/flashforge_0.50_pla_low.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.50_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.50_pla_standard.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.50_pla_standard.inst.cfg index b7ab32d1aec..dbfd3fe2739 100644 --- a/resources/quality/flashforge/pla/flashforge_0.50_pla_standard.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.50_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.60_pla_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.60_pla_draft.inst.cfg index 73b814d0e2e..48d67a86578 100644 --- a/resources/quality/flashforge/pla/flashforge_0.60_pla_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.60_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.60_pla_extra Coarse.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.60_pla_extra Coarse.inst.cfg index 27cd8def7e8..c14b3543a43 100644 --- a/resources/quality/flashforge/pla/flashforge_0.60_pla_extra Coarse.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.60_pla_extra Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Xcoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.60_pla_standard.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.60_pla_standard.inst.cfg index 656e85dad26..893f575be8a 100644 --- a/resources/quality/flashforge/pla/flashforge_0.60_pla_standard.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.60_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg index 6dbc8c55dbc..793fc6d10ea 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg index 690c3e6b84b..c983c9fe5f4 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg index 6a4342197ea..a649f8c2bba 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg index 180e648dfd1..84cdfaf7bee 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg index 7e6dee0b1ea..4a6852033ed 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg index 06e24e078da..d71dbd89c88 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg index d82fb0cdadd..d4df69f5f0b 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg index dfd442d63cb..e379ed20356 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg index 45084440554..4520b7cb87e 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg index 782b74a7dc5..b4084177b4b 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg index 22b74b6a252..2b23a1699dd 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg index 747f8a0076a..de66e4f8714 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg index e7a6ef72cd4..4f45dd9a3b9 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg index 18bd03e2fa4..de3ed6f4f1c 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg index a40571318da..ab3f1260e71 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg index b81f729ed71..3b6bd6fa035 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg index 6e3486a0318..cf9a7d73a56 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg index 7635f689449..628dc43a99b 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg index 718dd4d4c74..ce2a91ad6e7 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg index 50e52230453..d91ec1c84de 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg index f81ed661553..1dcbb157145 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg index aa065e31f0f..21139a85fd0 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_adaptive.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_adaptive.inst.cfg index be0422e6a84..aff1ba50177 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_adaptive.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_draft.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_draft.inst.cfg index 17ae6fad79c..a79887ca137 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_draft.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_low.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_low.inst.cfg index f254fd3c0a9..49335a57732 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_low.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_standard.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_standard.inst.cfg index 9414642a421..c648bd5bf30 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_standard.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_super.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_super.inst.cfg index c550dabdf28..874afda0910 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_super.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_adaptive.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_adaptive.inst.cfg index 7be34ff5e00..91eafec12c3 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_adaptive.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_draft.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_draft.inst.cfg index 1a6aab076be..61e83554ed7 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_draft.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_low.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_low.inst.cfg index 9a2466df8cb..dc0da4c92d8 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_low.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_standard.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_standard.inst.cfg index 7f789e0c202..8ca5c89a313 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_standard.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_draft.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_draft.inst.cfg index 2567733c06e..b7c3bbf127b 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_draft.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_low.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_low.inst.cfg index 3c4c0ed5cce..a638f56d613 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_low.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_standard.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_standard.inst.cfg index 8f504647407..bbb162048ce 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_standard.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flsun_sr/flsun_sr_fine.inst.cfg b/resources/quality/flsun_sr/flsun_sr_fine.inst.cfg index c54130d9538..6c598e033db 100644 --- a/resources/quality/flsun_sr/flsun_sr_fine.inst.cfg +++ b/resources/quality/flsun_sr/flsun_sr_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/flsun_sr/flsun_sr_normal.inst.cfg b/resources/quality/flsun_sr/flsun_sr_normal.inst.cfg index 373e5dbf6f9..f74057ed5e2 100644 --- a/resources/quality/flsun_sr/flsun_sr_normal.inst.cfg +++ b/resources/quality/flsun_sr/flsun_sr_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/flsun_v400/flsun_v400_normal.inst.cfg b/resources/quality/flsun_v400/flsun_v400_normal.inst.cfg index 9c990469390..e0a17123104 100644 --- a/resources/quality/flsun_v400/flsun_v400_normal.inst.cfg +++ b/resources/quality/flsun_v400/flsun_v400_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/flyingbear/abs/flyingbear_0.25_abs_super.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.25_abs_super.inst.cfg index 930466e23c9..5ae7ce783f0 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.25_abs_super.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.25_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.25_abs_ultra.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.25_abs_ultra.inst.cfg index 3fc33bbaf69..3b97fbbec30 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.25_abs_ultra.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.25_abs_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_adaptive.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_adaptive.inst.cfg index 61ba30270c7..9067ae4f18d 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_adaptive.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_standard.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_standard.inst.cfg index 9fa0bb768ee..ba555c9b200 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_standard.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_super.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_super.inst.cfg index 79697198c80..712ffc8076c 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_super.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_adaptive.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_adaptive.inst.cfg index aa49d937ad3..7ec3745a349 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_adaptive.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_low.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_low.inst.cfg index f66ea96064a..6d90f7d958b 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_low.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_standard.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_standard.inst.cfg index 8ca14e5f6b5..d6909bc9828 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_standard.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_super.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_super.inst.cfg index 66bdc09d2f9..e7fcde28b55 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_super.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_adaptive.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_adaptive.inst.cfg index 71a29de5f00..5137f14e39d 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_adaptive.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_draft.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_draft.inst.cfg index 82b314fec0c..05ccbc742f0 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_draft.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_low.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_low.inst.cfg index 648c3f97659..4d871723108 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_low.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_standard.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_standard.inst.cfg index adaa26b406e..e645dc6064c 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_standard.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_draft.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_draft.inst.cfg index bef5e104e8c..325f189ce5f 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_draft.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_low.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_low.inst.cfg index 4c613f89f6d..64c4740121f 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_low.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_standard.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_standard.inst.cfg index 6c322658076..af09323a3ae 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_standard.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.80_abs_coarse.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.80_abs_coarse.inst.cfg index 8e0cff9a717..2fe02ed7f06 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.80_abs_coarse.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.80_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.80_abs_draft.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.80_abs_draft.inst.cfg index e37f690bc15..b551a10c001 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.80_abs_draft.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.80_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/flyingbear_global_0.08_ultra.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.08_ultra.inst.cfg index 65ccdb52154..1ab5c72914a 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.08_ultra.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.08_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/flyingbear/flyingbear_global_0.12_super.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.12_super.inst.cfg index 0a4a714bc6e..7fa1bd94892 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.12_super.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.12_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/flyingbear/flyingbear_global_0.16_adaptive.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.16_adaptive.inst.cfg index d2098fbb4eb..e46142baea3 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.16_adaptive.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.16_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/flyingbear/flyingbear_global_0.20_standard.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.20_standard.inst.cfg index 505cb0463e3..14e7112594a 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.20_standard.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/flyingbear/flyingbear_global_0.28_low.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.28_low.inst.cfg index 3f12e491b5a..90777f4f27c 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.28_low.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.28_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/flyingbear/flyingbear_global_0.32_draft.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.32_draft.inst.cfg index 231f0fd01ca..bdffacbf938 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.32_draft.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.32_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/flyingbear/flyingbear_global_0.40_coarse.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.40_coarse.inst.cfg index 8b6dd5bddb7..5f83d785642 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.40_coarse.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -6 diff --git a/resources/quality/flyingbear/hips/flyingbear_0.25_hips_super.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.25_hips_super.inst.cfg index df78a0c3f45..ee4503a01d5 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.25_hips_super.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.25_hips_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.25_hips_ultra.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.25_hips_ultra.inst.cfg index 16c455bb065..1051c04f35b 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.25_hips_ultra.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.25_hips_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_adaptive.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_adaptive.inst.cfg index 24d9ece765f..39b0cd3a95b 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_adaptive.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_standard.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_standard.inst.cfg index f2a45a4c331..992218c567e 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_standard.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_super.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_super.inst.cfg index 4035a9a59c5..a9e55e49654 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_super.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_adaptive.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_adaptive.inst.cfg index 5ec95868eda..639276336a6 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_adaptive.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_low.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_low.inst.cfg index 666e72803a6..176f54fe315 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_low.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_standard.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_standard.inst.cfg index de6ad15bb99..dbde45c7aec 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_standard.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_super.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_super.inst.cfg index bf247f15c6b..b962c50da24 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_super.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_adaptive.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_adaptive.inst.cfg index 7f00389fa0f..7f61cc48934 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_adaptive.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_draft.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_draft.inst.cfg index 151e4129145..4ad64742632 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_draft.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_low.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_low.inst.cfg index 730abc2c952..9f9229d9013 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_low.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_standard.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_standard.inst.cfg index cdef28723f1..23c0c98525b 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_standard.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_draft.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_draft.inst.cfg index 60024c0720d..5ff44cc28b1 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_draft.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_low.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_low.inst.cfg index f6bd94749ed..1bfae457ce4 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_low.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_standard.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_standard.inst.cfg index 682b069da8d..7a5c4dff286 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_standard.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.80_hips_coarse.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.80_hips_coarse.inst.cfg index 51459ab8883..b7deccddd06 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.80_hips_coarse.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.80_hips_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.80_hips_draft.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.80_hips_draft.inst.cfg index fa4b6f0ea5b..30dd959964b 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.80_hips_draft.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.80_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.25_petg_super.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.25_petg_super.inst.cfg index 71acf92c30e..a6c59756d1b 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.25_petg_super.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.25_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.25_petg_ultra.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.25_petg_ultra.inst.cfg index 1436e850e66..5d036770949 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.25_petg_ultra.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.25_petg_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_adaptive.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_adaptive.inst.cfg index 83852fdf48f..80b7ce36321 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_adaptive.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_standard.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_standard.inst.cfg index 1a089cfebca..ed022ff1a72 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_standard.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_super.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_super.inst.cfg index 0554999dce7..fb08d902818 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_super.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_adaptive.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_adaptive.inst.cfg index 2b2b6e8e67e..bee035c6339 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_adaptive.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_low.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_low.inst.cfg index d4f3706cf26..f7e51f3ccfc 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_low.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_standard.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_standard.inst.cfg index ff3604ad2ed..408bbccf1cb 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_standard.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_super.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_super.inst.cfg index 83b9afde7fc..fed9d3d3ac0 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_super.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_adaptive.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_adaptive.inst.cfg index f7ea5866e03..a6c52520c30 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_adaptive.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_draft.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_draft.inst.cfg index 28575d7b40d..6e8556c649f 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_draft.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_low.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_low.inst.cfg index 4ee5424f672..18b5c61b2b6 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_low.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_standard.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_standard.inst.cfg index a0395edf271..92e2b2d84ba 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_standard.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_draft.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_draft.inst.cfg index 80e0f04c763..2990745ee54 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_draft.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_low.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_low.inst.cfg index 031efab026b..6ae9d86cc32 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_low.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_standard.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_standard.inst.cfg index aa619cfd1ee..bef2f08658e 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_standard.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.80_petg_coarse.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.80_petg_coarse.inst.cfg index 0b60eac171b..dccc9296de8 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.80_petg_coarse.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.80_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.80_petg_draft.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.80_petg_draft.inst.cfg index 1886e60500c..00ea0870784 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.80_petg_draft.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.80_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.25_pla_super.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.25_pla_super.inst.cfg index e519b6d142c..5949d2337ca 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.25_pla_super.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.25_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.25_pla_ultra.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.25_pla_ultra.inst.cfg index b97aef5a390..c7fca8f17d9 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.25_pla_ultra.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.25_pla_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_adaptive.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_adaptive.inst.cfg index 20bbf3858f0..b38c4dc5a18 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_adaptive.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_standard.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_standard.inst.cfg index 49b158e03fd..c69fb2a58f4 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_standard.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_super.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_super.inst.cfg index 2ad07694fc2..6936c9506e4 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_super.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_adaptive.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_adaptive.inst.cfg index f34b3b1bb95..e1c669ac7fc 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_adaptive.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_low.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_low.inst.cfg index 6706cbabc65..c2e502ea920 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_low.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_standard.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_standard.inst.cfg index da766f5d1b5..56f9be67c3a 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_standard.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_super.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_super.inst.cfg index 8b5001e62c6..8af62735503 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_super.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_adaptive.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_adaptive.inst.cfg index 19d31e9c937..575a89d77d0 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_adaptive.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_draft.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_draft.inst.cfg index ef476033954..4988d8fcfde 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_draft.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_low.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_low.inst.cfg index b3371769d0e..203d6f9002c 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_low.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_standard.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_standard.inst.cfg index b2ddb8eabe3..d46789d1e38 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_standard.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_draft.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_draft.inst.cfg index 0ec35e6dad3..7fa9b57c3d9 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_draft.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_low.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_low.inst.cfg index 55498bde2e1..01da9606edd 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_low.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_standard.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_standard.inst.cfg index 4c10851db84..1a9d8352273 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_standard.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.80_pla_coarse.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.80_pla_coarse.inst.cfg index 735cdf2f91d..eea62d99010 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.80_pla_coarse.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.80_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.80_pla_draft.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.80_pla_draft.inst.cfg index 0964ebcfe61..f672730f2ae 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.80_pla_draft.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.80_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_super.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_super.inst.cfg index 1dde8db898c..2878b3c2703 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_super.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_ultra.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_ultra.inst.cfg index 78b295e64ef..acfd12f4448 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_ultra.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_adaptive.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_adaptive.inst.cfg index bf7d7fa7bb2..430e88b36a9 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_adaptive.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_standard.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_standard.inst.cfg index 9e282d5aec9..02965b938ee 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_standard.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_super.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_super.inst.cfg index c2faee28a8d..4627852ad28 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_super.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_adaptive.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_adaptive.inst.cfg index 7200eef8fad..a5d4c71cb54 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_adaptive.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_low.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_low.inst.cfg index b842231fac0..bce6a871cf6 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_low.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_standard.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_standard.inst.cfg index a5cb57090e0..f4506c04ec7 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_standard.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_super.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_super.inst.cfg index 28ec247de15..42700664c2e 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_super.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_adaptive.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_adaptive.inst.cfg index 2724300ad67..5002536077c 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_adaptive.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_draft.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_draft.inst.cfg index c9c66e581cb..414afc7d4b2 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_draft.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_low.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_low.inst.cfg index d2cee4ce307..125d504830f 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_low.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_standard.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_standard.inst.cfg index 69bfa6d6e10..2128cebe402 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_standard.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_draft.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_draft.inst.cfg index 0af138b7fc3..844fb8697fa 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_draft.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_low.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_low.inst.cfg index 0dc4f2c24b3..853b1b80d85 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_low.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_standard.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_standard.inst.cfg index 04841b6e409..00fbabdd239 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_standard.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_coarse.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_coarse.inst.cfg index 02628c7d3e8..f0e03321119 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_coarse.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_draft.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_draft.inst.cfg index 0050c4542f6..068b59ac7ce 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_draft.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_adaptive.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_adaptive.inst.cfg index 8aa43affc1c..023d73a5e74 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_adaptive.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_low.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_low.inst.cfg index 28ad82bc82c..ae22d9d0f0a 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_low.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_standard.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_standard.inst.cfg index 8d6924e70a3..fba61c57cdb 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_standard.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_super.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_super.inst.cfg index 2a432b61350..f33ef9889b1 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_super.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_adaptive.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_adaptive.inst.cfg index 18882f74d7f..68dd1abf088 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_adaptive.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_draft.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_draft.inst.cfg index 3f751ac6c38..4c6a7e6bf0a 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_draft.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_low.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_low.inst.cfg index 54be001ebd1..9bf8763a8d2 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_low.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_standard.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_standard.inst.cfg index d8d4148de12..a7ac0d2a0ba 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_standard.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_draft.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_draft.inst.cfg index becd616174d..950b9a87b06 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_draft.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_low.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_low.inst.cfg index 1925f4d5d29..cf7aea8e4fe 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_low.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_standard.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_standard.inst.cfg index f34a24e1f19..80db6008430 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_standard.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_coarse.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_coarse.inst.cfg index c5e16634415..56a06a32613 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_coarse.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_draft.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_draft.inst.cfg index 4ede40b6f99..baf68727fa4 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_draft.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusedform/base/base_PVA_draft.inst.cfg b/resources/quality/fusedform/base/base_PVA_draft.inst.cfg index 3c1797b40e6..f2d1f7d6f2c 100644 --- a/resources/quality/fusedform/base/base_PVA_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_PVA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_PVA_high.inst.cfg b/resources/quality/fusedform/base/base_PVA_high.inst.cfg index c3bd73bb8fc..352494579c9 100644 --- a/resources/quality/fusedform/base/base_PVA_high.inst.cfg +++ b/resources/quality/fusedform/base/base_PVA_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_PVA_normal.inst.cfg b/resources/quality/fusedform/base/base_PVA_normal.inst.cfg index 28ae6d3a512..04154bf4b30 100644 --- a/resources/quality/fusedform/base/base_PVA_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_PVA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_abs_draft.inst.cfg b/resources/quality/fusedform/base/base_abs_draft.inst.cfg index 129e0ae301b..a5c297eca4f 100644 --- a/resources/quality/fusedform/base/base_abs_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/fusedform/base/base_abs_high.inst.cfg b/resources/quality/fusedform/base/base_abs_high.inst.cfg index 37c9670b982..a4f9fa613ab 100644 --- a/resources/quality/fusedform/base/base_abs_high.inst.cfg +++ b/resources/quality/fusedform/base/base_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_abs_normal.inst.cfg b/resources/quality/fusedform/base/base_abs_normal.inst.cfg index 9721d62afb6..4c62b0cc6c5 100644 --- a/resources/quality/fusedform/base/base_abs_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_abs_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_abs_ultra_high.inst.cfg index 33807b2f08d..d007a855a1a 100644 --- a/resources/quality/fusedform/base/base_abs_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_abs_ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_draft.inst.cfg b/resources/quality/fusedform/base/base_draft.inst.cfg index e334ba4b678..8a6910cd1ad 100644 --- a/resources/quality/fusedform/base/base_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/fusedform/base/base_flex_high.inst.cfg b/resources/quality/fusedform/base/base_flex_high.inst.cfg index 4b97e4ed24f..ba3a62ef361 100644 --- a/resources/quality/fusedform/base/base_flex_high.inst.cfg +++ b/resources/quality/fusedform/base/base_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_flex_normal.inst.cfg b/resources/quality/fusedform/base/base_flex_normal.inst.cfg index cd12341ec8d..a247d6f6bfb 100644 --- a/resources/quality/fusedform/base/base_flex_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_flex_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_high.inst.cfg b/resources/quality/fusedform/base/base_high.inst.cfg index 5b996785224..06c28b5c7ab 100644 --- a/resources/quality/fusedform/base/base_high.inst.cfg +++ b/resources/quality/fusedform/base/base_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_hips_draft.inst.cfg b/resources/quality/fusedform/base/base_hips_draft.inst.cfg index da71c1bd1c1..e02c07f97f0 100644 --- a/resources/quality/fusedform/base/base_hips_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/fusedform/base/base_hips_high.inst.cfg b/resources/quality/fusedform/base/base_hips_high.inst.cfg index d10e9eee559..e015f56f53f 100644 --- a/resources/quality/fusedform/base/base_hips_high.inst.cfg +++ b/resources/quality/fusedform/base/base_hips_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_hips_normal.inst.cfg b/resources/quality/fusedform/base/base_hips_normal.inst.cfg index b2d4401f663..416747436c1 100644 --- a/resources/quality/fusedform/base/base_hips_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_hips_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_hips_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_hips_ultra_high.inst.cfg index 0dabd20ee80..462791472ce 100644 --- a/resources/quality/fusedform/base/base_hips_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_hips_ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = ultra high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_normal.inst.cfg b/resources/quality/fusedform/base/base_normal.inst.cfg index 03cac40a621..549dea91457 100644 --- a/resources/quality/fusedform/base/base_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_nylon_draft.inst.cfg b/resources/quality/fusedform/base/base_nylon_draft.inst.cfg index 53bac6523d7..8abb293bf00 100644 --- a/resources/quality/fusedform/base/base_nylon_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/fusedform/base/base_nylon_high.inst.cfg b/resources/quality/fusedform/base/base_nylon_high.inst.cfg index 9b333eff1f1..c9dcdf2af43 100644 --- a/resources/quality/fusedform/base/base_nylon_high.inst.cfg +++ b/resources/quality/fusedform/base/base_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_nylon_normal.inst.cfg b/resources/quality/fusedform/base/base_nylon_normal.inst.cfg index c20f2ea5a30..861a877d650 100644 --- a/resources/quality/fusedform/base/base_nylon_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_nylon_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_nylon_ultra_high.inst.cfg index 754a2023b65..12000acf62f 100644 --- a/resources/quality/fusedform/base/base_nylon_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_nylon_ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultra high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_petg_high.inst.cfg b/resources/quality/fusedform/base/base_petg_high.inst.cfg index f0ceeaadbae..576e790dd26 100644 --- a/resources/quality/fusedform/base/base_petg_high.inst.cfg +++ b/resources/quality/fusedform/base/base_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_petg_normal.inst.cfg b/resources/quality/fusedform/base/base_petg_normal.inst.cfg index 40fe6961d75..2548ddc851c 100644 --- a/resources/quality/fusedform/base/base_petg_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_pla_draft.inst.cfg b/resources/quality/fusedform/base/base_pla_draft.inst.cfg index d0489b1d974..7ff4389b711 100644 --- a/resources/quality/fusedform/base/base_pla_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/fusedform/base/base_pla_high.inst.cfg b/resources/quality/fusedform/base/base_pla_high.inst.cfg index d3e2c502bb5..26fd52efa81 100644 --- a/resources/quality/fusedform/base/base_pla_high.inst.cfg +++ b/resources/quality/fusedform/base/base_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_pla_normal.inst.cfg b/resources/quality/fusedform/base/base_pla_normal.inst.cfg index 5dd85fbcc7d..e95ac622775 100644 --- a/resources/quality/fusedform/base/base_pla_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_pla_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_pla_ultra_high.inst.cfg index bb376bcbc9a..fecf4bafcb3 100644 --- a/resources/quality/fusedform/base/base_pla_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_pla_ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra high -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_ultra_high.inst.cfg index 3bca5f50bb0..853565b80b2 100644 --- a/resources/quality/fusedform/base/base_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusion3/fusion3_0.4_ABS_fine.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ABS_fine.inst.cfg index c9602588fef..b8fb0fc0840 100644 --- a/resources/quality/fusion3/fusion3_0.4_ABS_fine.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_ABS_good.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ABS_good.inst.cfg index b48555902eb..170487b7a81 100644 --- a/resources/quality/fusion3/fusion3_0.4_ABS_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ABS_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_ABS_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ABS_normal.inst.cfg index 70f126a30d8..314d61894ac 100644 --- a/resources/quality/fusion3/fusion3_0.4_ABS_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_ASA_fine.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ASA_fine.inst.cfg index 34e9d8d056c..edbf7c4d7c3 100644 --- a/resources/quality/fusion3/fusion3_0.4_ASA_fine.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ASA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_ASA_good.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ASA_good.inst.cfg index 534ce0e7826..408fd5b062b 100644 --- a/resources/quality/fusion3/fusion3_0.4_ASA_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ASA_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_ASA_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ASA_normal.inst.cfg index c7cb7ddb907..e4e8ecd1577 100644 --- a/resources/quality/fusion3/fusion3_0.4_ASA_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ASA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_CPE_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_CPE_normal.inst.cfg index 09c0a087498..3700253dad5 100644 --- a/resources/quality/fusion3/fusion3_0.4_CPE_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_CPE_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PA_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PA_normal.inst.cfg index 9f68524bb71..923e2527707 100644 --- a/resources/quality/fusion3/fusion3_0.4_PA_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PC_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PC_normal.inst.cfg index bd453749a66..a716730eeda 100644 --- a/resources/quality/fusion3/fusion3_0.4_PC_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PETG_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PETG_normal.inst.cfg index c622ef891d3..9a414b2f15f 100644 --- a/resources/quality/fusion3/fusion3_0.4_PETG_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PLA_fine.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PLA_fine.inst.cfg index af74ae635ef..5b343453d00 100644 --- a/resources/quality/fusion3/fusion3_0.4_PLA_fine.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PLA_good.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PLA_good.inst.cfg index b4b9de8b88e..c57e47950db 100644 --- a/resources/quality/fusion3/fusion3_0.4_PLA_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PLA_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PLA_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PLA_normal.inst.cfg index ab4f8a12391..04bb078949d 100644 --- a/resources/quality/fusion3/fusion3_0.4_PLA_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_TPU_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_TPU_normal.inst.cfg index 3f68a2cfacc..289646eec4c 100644 --- a/resources/quality/fusion3/fusion3_0.4_TPU_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_ABS_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_ABS_good.inst.cfg index dc19e88cd12..560fcf2c35a 100644 --- a/resources/quality/fusion3/fusion3_0.6_ABS_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_ABS_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_ABS_low.inst.cfg b/resources/quality/fusion3/fusion3_0.6_ABS_low.inst.cfg index a85bbac743e..20fb1056bbd 100644 --- a/resources/quality/fusion3/fusion3_0.6_ABS_low.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_ASA_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_ASA_good.inst.cfg index 4176a6720f9..13885dda24b 100644 --- a/resources/quality/fusion3/fusion3_0.6_ASA_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_ASA_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_ASA_low.inst.cfg b/resources/quality/fusion3/fusion3_0.6_ASA_low.inst.cfg index d30ef997701..6e1708c5344 100644 --- a/resources/quality/fusion3/fusion3_0.6_ASA_low.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_ASA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_CPE_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_CPE_good.inst.cfg index f912e562cd2..2e41da31bea 100644 --- a/resources/quality/fusion3/fusion3_0.6_CPE_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_CPE_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_PA_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_PA_good.inst.cfg index 70549b4b592..c15be13de65 100644 --- a/resources/quality/fusion3/fusion3_0.6_PA_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_PA_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_PC_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_PC_good.inst.cfg index 928bc4cff9c..45380a16d42 100644 --- a/resources/quality/fusion3/fusion3_0.6_PC_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_PC_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_PETG_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_PETG_good.inst.cfg index 8203979de35..1a304a07edb 100644 --- a/resources/quality/fusion3/fusion3_0.6_PETG_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_PETG_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_PLA_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_PLA_good.inst.cfg index b464d9fb146..49567c3ebd5 100644 --- a/resources/quality/fusion3/fusion3_0.6_PLA_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_PLA_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_PLA_low.inst.cfg b/resources/quality/fusion3/fusion3_0.6_PLA_low.inst.cfg index 8f2353cb15d..e8e13fa7f26 100644 --- a/resources/quality/fusion3/fusion3_0.6_PLA_low.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_TPU_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_TPU_good.inst.cfg index a40d1d06873..8a9d9752197 100644 --- a/resources/quality/fusion3/fusion3_0.6_TPU_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_TPU_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_ABS_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_ABS_rapid.inst.cfg index 9730a818b46..29adfb091b4 100644 --- a/resources/quality/fusion3/fusion3_0.8_ABS_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_ABS_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_ABS_rough.inst.cfg b/resources/quality/fusion3/fusion3_0.8_ABS_rough.inst.cfg index a4a75cc8151..fbee684ce23 100644 --- a/resources/quality/fusion3/fusion3_0.8_ABS_rough.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_ABS_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_ASA_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_ASA_rapid.inst.cfg index cc916177e53..a268baf68bd 100644 --- a/resources/quality/fusion3/fusion3_0.8_ASA_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_ASA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_ASA_rough.inst.cfg b/resources/quality/fusion3/fusion3_0.8_ASA_rough.inst.cfg index a71256c3aa6..0c918f88ac7 100644 --- a/resources/quality/fusion3/fusion3_0.8_ASA_rough.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_ASA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_CPE_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_CPE_rapid.inst.cfg index d4f4738309b..73d199f6ce3 100644 --- a/resources/quality/fusion3/fusion3_0.8_CPE_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_CPE_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_PA_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_PA_rapid.inst.cfg index 058691fa795..e2beebc76af 100644 --- a/resources/quality/fusion3/fusion3_0.8_PA_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_PA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_PC_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_PC_rapid.inst.cfg index 94921dc336a..16894ed8da1 100644 --- a/resources/quality/fusion3/fusion3_0.8_PC_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_PC_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_PETG_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_PETG_rapid.inst.cfg index 27effc7be82..d3551c51bd1 100644 --- a/resources/quality/fusion3/fusion3_0.8_PETG_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_PETG_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_PLA_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_PLA_rapid.inst.cfg index 1bc905dea87..86b85961281 100644 --- a/resources/quality/fusion3/fusion3_0.8_PLA_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_PLA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_PLA_rough.inst.cfg b/resources/quality/fusion3/fusion3_0.8_PLA_rough.inst.cfg index 59cb70389e1..0e9de77d8ff 100644 --- a/resources/quality/fusion3/fusion3_0.8_PLA_rough.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_PLA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_TPU_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_TPU_rapid.inst.cfg index e6f7bf74d64..ffbc74268d5 100644 --- a/resources/quality/fusion3/fusion3_0.8_TPU_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_TPU_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_global_fine.inst.cfg b/resources/quality/fusion3/fusion3_global_fine.inst.cfg index 550269bb726..4af1cc5535a 100644 --- a/resources/quality/fusion3/fusion3_global_fine.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/fusion3/fusion3_global_good.inst.cfg b/resources/quality/fusion3/fusion3_global_good.inst.cfg index d1a46528a34..5f36f60d738 100644 --- a/resources/quality/fusion3/fusion3_global_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = good -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/fusion3/fusion3_global_low.inst.cfg b/resources/quality/fusion3/fusion3_global_low.inst.cfg index 7a0d9903f9c..84bc1e0a27f 100644 --- a/resources/quality/fusion3/fusion3_global_low.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/fusion3/fusion3_global_normal.inst.cfg b/resources/quality/fusion3/fusion3_global_normal.inst.cfg index 7f96dfd125f..ab2cbf7de09 100644 --- a/resources/quality/fusion3/fusion3_global_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/fusion3/fusion3_global_rapid.inst.cfg b/resources/quality/fusion3/fusion3_global_rapid.inst.cfg index 2b008a34bcc..91b851f5767 100644 --- a/resources/quality/fusion3/fusion3_global_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/fusion3/fusion3_global_rough.inst.cfg b/resources/quality/fusion3/fusion3_global_rough.inst.cfg index b35f187e4f6..e3ad70b5c18 100644 --- a/resources/quality/fusion3/fusion3_global_rough.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = rough -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_super.inst.cfg index 56949ee3598..59475969b8d 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_ultra.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_ultra.inst.cfg index 521c02c0d4a..9fda1b2e510 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_super.inst.cfg index bbf17e47a87..0f3057fe82f 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_ultra.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_ultra.inst.cfg index e2e561fcb1d..e459a9d0968 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_super.inst.cfg index 02050a3ddf6..6e4f55fcba9 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_ultra.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_ultra.inst.cfg index 9ce8fc39422..3e840456741 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_adaptive.inst.cfg index 4b65a92d95e..b5b72a1d6ab 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_low.inst.cfg index 8d23c0dc6b6..d1497b1d4bf 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_standard.inst.cfg index 50cdedebe0d..9fef4f56d2a 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_super.inst.cfg index 126bd092a53..3150c7bf1b3 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_adaptive.inst.cfg index 8587dc79624..321f5841698 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_low.inst.cfg index c296921d464..79203249f85 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_standard.inst.cfg index 0a75d800c72..23ad0fa1363 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_super.inst.cfg index b4bdd0a93be..bd77f7a194d 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_adaptive.inst.cfg index 95fe7f7d8a3..f6e74f21de2 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_low.inst.cfg index d1ade85d185..6a0ace16340 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_standard.inst.cfg index d08208603c0..be9207dfe52 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_super.inst.cfg index 46228e4d7d6..f0087a01353 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_adaptive.inst.cfg index 16373eb8ef6..08174d60e3c 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_standard.inst.cfg index fb007f9a89e..5db816a83ac 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_super.inst.cfg index 8177d8966ca..45179cb24cc 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_adaptive.inst.cfg index 4853c2e5e14..db97cac4f44 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_low.inst.cfg index 19647ca550f..5036b82e308 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_standard.inst.cfg index fff6581a5b6..8a9cdf11c83 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_super.inst.cfg index 41002402783..e3a026eb540 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_adaptive.inst.cfg index ac8a268c163..c5102197702 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_low.inst.cfg index ed70b584307..6ca89507a94 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_standard.inst.cfg index 4bcc9c1d864..f9c427f3dae 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_super.inst.cfg index 95ac3b31317..00afeb3d7b1 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_adaptive.inst.cfg index 6d79a235c5d..013a9a81c2a 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_low.inst.cfg index 920f5775037..5cfefecfadd 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_standard.inst.cfg index 3ff4c8265bc..64662fdfe2b 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_super.inst.cfg index b53467ee0e9..14797b146be 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_adaptive.inst.cfg index e332e2dd0a1..5b47dd59dad 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_standard.inst.cfg index 59ab8728fd6..ebd00a13aae 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_super.inst.cfg index b5f47c0cabb..6abd2e66b65 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_adaptive.inst.cfg index 70a4bdaf536..9b1deace625 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_low.inst.cfg index 5220a0b9d0b..a5415cc14e3 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_standard.inst.cfg index 9d21f11fbbe..16fd1836926 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_super.inst.cfg index 861a42b02b0..6473b022313 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_adaptive.inst.cfg index 3a24d0434ef..696f4ef9471 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_low.inst.cfg index 31f314f7469..362ee45ceb8 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_standard.inst.cfg index 5f0c62b87ce..6a68da9a6bb 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_super.inst.cfg index f4c58e13f49..3647e198948 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_adaptive.inst.cfg index 8099a6d9ab2..1e4e05e520a 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_low.inst.cfg index 7cb4b4a4039..a86131a0419 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_standard.inst.cfg index c5fca47a051..298569b4e45 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_super.inst.cfg index 6eef17f39b3..cb34fe279d5 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_adaptive.inst.cfg index 99d35c0aa14..d650752d4c6 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_standard.inst.cfg index 56a835b8b9c..4bf0718a0b4 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_super.inst.cfg index 611d41e945e..a8c395e18c5 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_ABS_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_ABS_standard.inst.cfg index 9fcc9134b80..238d5721a2a 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_ABS_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_PETG_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_PETG_standard.inst.cfg index 1387a15850b..d4aea0867f2 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_PETG_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_draft.inst.cfg index 949889dfeb3..6ab31aac4ae 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_low.inst.cfg index 4cacb4446c4..4bcdf7c5ae3 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_standard.inst.cfg index a59ad5cb2f6..16a6a8866a2 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_TPU_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_TPU_standard.inst.cfg index 813e0e23f81..2d17a5669a6 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_TPU_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.8_ABS_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.8_ABS_draft.inst.cfg index a739a219855..c23ce9e5909 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.8_ABS_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.8_PETG_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.8_PETG_draft.inst.cfg index b3a37371058..19542d65bd4 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.8_PETG_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.8_PLA_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.8_PLA_draft.inst.cfg index a8eeab044ae..e9634510536 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.8_PLA_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.8_TPU_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.8_TPU_draft.inst.cfg index f03daad1c12..5a718799098 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.8_TPU_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_1.0_ABS_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_1.0_ABS_draft.inst.cfg index b4e4512748a..704342ad44b 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_1.0_ABS_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_1.0_PETG_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_1.0_PETG_draft.inst.cfg index 420564deb5c..a8c9fbdfeac 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_1.0_PETG_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_1.0_PLA_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_1.0_PLA_draft.inst.cfg index 8d3780d66e5..f166dcd8e05 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_1.0_PLA_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_1.0_TPU_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_1.0_TPU_draft.inst.cfg index 86d18c3ae44..a9370c56740 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_1.0_TPU_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_adaptive.inst.cfg index 7099f6599b8..829c96a27a1 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_draft.inst.cfg index 38e93d5c177..eb9747c47d3 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_low.inst.cfg index 3d31995b849..5a4ca40612f 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_standard.inst.cfg index 7aac6404342..29f950977d5 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_super.inst.cfg index 8d12668db0f..41fa4910555 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_ultra.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_ultra.inst.cfg index 0a3b3bb7370..d8036a58855 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_ultra.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg index d9f0a0aaeaf..120b8e9cb33 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg index 620622e555f..6718a49e298 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = course -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg index 05eeb68305a..f42f350d690 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg index b63ef09a6b6..2a65300e359 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra_course -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg index a476f1d2878..4ff40b9db2a 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg index fe59d12cd3d..2aa06147d83 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = course -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg index 7c6c9c5e38f..1ad1a76b9be 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg index b1cdcc129a4..3b0b433ee45 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra_course -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/goofoo/abs/goofoo_far_0.2_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.2_abs_fine.inst.cfg index 6f663495511..44aeccf5452 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.2_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.2_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.2_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.2_abs_standard.inst.cfg index 3056dc187dd..635575d990d 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.2_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.2_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.40_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.40_abs_fine.inst.cfg index 9cf290ce735..2c0df2f7ac3 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.40_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.40_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.40_abs_standard.inst.cfg index cfbc840dee8..4b7e34524e2 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.40_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.40_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.6_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.6_abs_fine.inst.cfg index 35a0b83d816..40370dcd419 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.6_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.6_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.6_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.6_abs_standard.inst.cfg index f7deb1bd433..9ea1e92e5f6 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.6_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.6_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.8_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.8_abs_fine.inst.cfg index 89a5ebe403f..4f899585ecc 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.8_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.8_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.8_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.8_abs_standard.inst.cfg index d8aaa46c563..2c9710a4877 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.8_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.8_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_1.0_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_1.0_abs_fine.inst.cfg index 48a467369c6..b0c8caef65c 100644 --- a/resources/quality/goofoo/abs/goofoo_far_1.0_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_1.0_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_1.0_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_1.0_abs_standard.inst.cfg index c210d234b19..b30bd33e3ca 100644 --- a/resources/quality/goofoo/abs/goofoo_far_1.0_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_1.0_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.2_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.2_abs_fine.inst.cfg index 881a3768d4f..9e6f652f87c 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.2_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.2_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.2_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.2_abs_standard.inst.cfg index a8e2cd84753..7ca5a1939d7 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.2_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.2_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.40_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.40_abs_fine.inst.cfg index 1cc4b042066..d3824533200 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.40_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.40_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.40_abs_standard.inst.cfg index 23c7207715f..617bee3083d 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.40_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.40_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.6_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.6_abs_fine.inst.cfg index af0c913efce..bff7afc626e 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.6_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.6_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.6_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.6_abs_standard.inst.cfg index 16a19e22c26..c6949b58205 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.6_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.6_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.8_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.8_abs_fine.inst.cfg index 3916a8683f6..ee28d12a052 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.8_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.8_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.8_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.8_abs_standard.inst.cfg index c4fd612bceb..981aed3726c 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.8_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.8_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_1.0_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_1.0_abs_fine.inst.cfg index 3ad812b25f9..a752b4ce187 100644 --- a/resources/quality/goofoo/abs/goofoo_near_1.0_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_1.0_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_1.0_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_1.0_abs_standard.inst.cfg index fe8a9112209..602551cd695 100644 --- a/resources/quality/goofoo/abs/goofoo_near_1.0_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_1.0_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.2_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.2_asa_fine.inst.cfg index 4a255eed13a..07cc2fcdae2 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.2_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.2_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.2_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.2_asa_standard.inst.cfg index ecd3ec02e52..cf030a6f8d9 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.2_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.2_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.40_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.40_asa_fine.inst.cfg index d19830d7e29..55e01a8ba14 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.40_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.40_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.40_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.40_asa_standard.inst.cfg index ddcfa7cfb0a..e42993080fd 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.40_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.40_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.6_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.6_asa_fine.inst.cfg index 143a1374e25..1a73f46b857 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.6_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.6_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.6_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.6_asa_standard.inst.cfg index 094bb295057..dbf082da403 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.6_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.6_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.8_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.8_asa_fine.inst.cfg index c2f16c9d709..65321d4fec1 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.8_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.8_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.8_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.8_asa_standard.inst.cfg index f9076384c15..75d8941434b 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.8_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.8_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_1.0_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_1.0_asa_fine.inst.cfg index 47b25e5b378..eb09eda464e 100644 --- a/resources/quality/goofoo/asa/goofoo_far_1.0_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_1.0_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_1.0_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_1.0_asa_standard.inst.cfg index fec406103bf..6f7d6537982 100644 --- a/resources/quality/goofoo/asa/goofoo_far_1.0_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_1.0_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.2_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.2_asa_fine.inst.cfg index 793afcca70e..7f378999662 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.2_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.2_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.2_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.2_asa_standard.inst.cfg index 2f0d73b67bd..d1c6e6beadb 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.2_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.2_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.40_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.40_asa_fine.inst.cfg index 14874b5610b..2daa1107a6c 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.40_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.40_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.40_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.40_asa_standard.inst.cfg index f5fc3026dca..9948b00c8d0 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.40_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.40_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.6_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.6_asa_fine.inst.cfg index a53b02ac90a..9e060de7cfd 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.6_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.6_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.6_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.6_asa_standard.inst.cfg index b6834ea9bfe..4bdd3ef015d 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.6_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.6_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.8_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.8_asa_fine.inst.cfg index dc316d182f8..9f1afa96f6c 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.8_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.8_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.8_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.8_asa_standard.inst.cfg index b29899f5055..ebd0e109083 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.8_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.8_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_1.0_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_1.0_asa_fine.inst.cfg index d554ed89965..01b7889d9bc 100644 --- a/resources/quality/goofoo/asa/goofoo_near_1.0_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_1.0_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_1.0_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_1.0_asa_standard.inst.cfg index edac2f37273..099097d7239 100644 --- a/resources/quality/goofoo/asa/goofoo_near_1.0_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_1.0_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/goofoo_far_global_0.15_fine.inst.cfg b/resources/quality/goofoo/goofoo_far_global_0.15_fine.inst.cfg index 88bf7603eda..cd9beaf5a72 100644 --- a/resources/quality/goofoo/goofoo_far_global_0.15_fine.inst.cfg +++ b/resources/quality/goofoo/goofoo_far_global_0.15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/goofoo/goofoo_far_global_0.1_efine.inst.cfg b/resources/quality/goofoo/goofoo_far_global_0.1_efine.inst.cfg index 01e80cae139..93c7bc6d495 100644 --- a/resources/quality/goofoo/goofoo_far_global_0.1_efine.inst.cfg +++ b/resources/quality/goofoo/goofoo_far_global_0.1_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = efine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/goofoo/goofoo_far_global_0.20_standard.inst.cfg b/resources/quality/goofoo/goofoo_far_global_0.20_standard.inst.cfg index de8881ab864..0011ca9d416 100644 --- a/resources/quality/goofoo/goofoo_far_global_0.20_standard.inst.cfg +++ b/resources/quality/goofoo/goofoo_far_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/goofoo/goofoo_far_global_0.3_draft.inst.cfg b/resources/quality/goofoo/goofoo_far_global_0.3_draft.inst.cfg index 628015037ba..d219cad79c5 100644 --- a/resources/quality/goofoo/goofoo_far_global_0.3_draft.inst.cfg +++ b/resources/quality/goofoo/goofoo_far_global_0.3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/goofoo/goofoo_near_global_0.15_fine.inst.cfg b/resources/quality/goofoo/goofoo_near_global_0.15_fine.inst.cfg index 0644d56d7fe..f57797456b5 100644 --- a/resources/quality/goofoo/goofoo_near_global_0.15_fine.inst.cfg +++ b/resources/quality/goofoo/goofoo_near_global_0.15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/goofoo/goofoo_near_global_0.1_efine.inst.cfg b/resources/quality/goofoo/goofoo_near_global_0.1_efine.inst.cfg index 8176f32de72..3fce59afe3e 100644 --- a/resources/quality/goofoo/goofoo_near_global_0.1_efine.inst.cfg +++ b/resources/quality/goofoo/goofoo_near_global_0.1_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = efine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/goofoo/goofoo_near_global_0.20_standard.inst.cfg b/resources/quality/goofoo/goofoo_near_global_0.20_standard.inst.cfg index aab544c9ae5..fbd171efa28 100644 --- a/resources/quality/goofoo/goofoo_near_global_0.20_standard.inst.cfg +++ b/resources/quality/goofoo/goofoo_near_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/goofoo/goofoo_near_global_0.3_draft.inst.cfg b/resources/quality/goofoo/goofoo_near_global_0.3_draft.inst.cfg index 27733517f32..d2bb27659f6 100644 --- a/resources/quality/goofoo/goofoo_near_global_0.3_draft.inst.cfg +++ b/resources/quality/goofoo/goofoo_near_global_0.3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/goofoo/goofoo_open_global_0.15_fine.inst.cfg b/resources/quality/goofoo/goofoo_open_global_0.15_fine.inst.cfg index 90fc50a985d..99d27a7f561 100644 --- a/resources/quality/goofoo/goofoo_open_global_0.15_fine.inst.cfg +++ b/resources/quality/goofoo/goofoo_open_global_0.15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/goofoo/goofoo_open_global_0.1_efine.inst.cfg b/resources/quality/goofoo/goofoo_open_global_0.1_efine.inst.cfg index 714d26687b1..b0a43343271 100644 --- a/resources/quality/goofoo/goofoo_open_global_0.1_efine.inst.cfg +++ b/resources/quality/goofoo/goofoo_open_global_0.1_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = efine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/goofoo/goofoo_open_global_0.20_standard.inst.cfg b/resources/quality/goofoo/goofoo_open_global_0.20_standard.inst.cfg index 6dd2f5f2c94..6bef72abfca 100644 --- a/resources/quality/goofoo/goofoo_open_global_0.20_standard.inst.cfg +++ b/resources/quality/goofoo/goofoo_open_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/goofoo/goofoo_open_global_0.3_draft.inst.cfg b/resources/quality/goofoo/goofoo_open_global_0.3_draft.inst.cfg index 31dd2d8d9d5..5d0c696b34f 100644 --- a/resources/quality/goofoo/goofoo_open_global_0.3_draft.inst.cfg +++ b/resources/quality/goofoo/goofoo_open_global_0.3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/goofoo/goofoo_small_global_0.15_fine.inst.cfg b/resources/quality/goofoo/goofoo_small_global_0.15_fine.inst.cfg index e2e1890e50a..8e755fb23dc 100644 --- a/resources/quality/goofoo/goofoo_small_global_0.15_fine.inst.cfg +++ b/resources/quality/goofoo/goofoo_small_global_0.15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/goofoo/goofoo_small_global_0.1_efine.inst.cfg b/resources/quality/goofoo/goofoo_small_global_0.1_efine.inst.cfg index a9a5cb78bfd..7527db4b4b2 100644 --- a/resources/quality/goofoo/goofoo_small_global_0.1_efine.inst.cfg +++ b/resources/quality/goofoo/goofoo_small_global_0.1_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = efine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/goofoo/goofoo_small_global_0.20_standard.inst.cfg b/resources/quality/goofoo/goofoo_small_global_0.20_standard.inst.cfg index af856613756..921cc3c0ced 100644 --- a/resources/quality/goofoo/goofoo_small_global_0.20_standard.inst.cfg +++ b/resources/quality/goofoo/goofoo_small_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/goofoo/goofoo_small_global_0.3_draft.inst.cfg b/resources/quality/goofoo/goofoo_small_global_0.3_draft.inst.cfg index 75973f7611f..9c5b3a901f0 100644 --- a/resources/quality/goofoo/goofoo_small_global_0.3_draft.inst.cfg +++ b/resources/quality/goofoo/goofoo_small_global_0.3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_draft.inst.cfg index 382b5b7b61f..bcecf64b08d 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_efine.inst.cfg index 68949c1d6f9..67046360800 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_fine.inst.cfg index 9054c9489d4..89014792ab9 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_standard.inst.cfg index 4e128688b15..7cc9f07223d 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_draft.inst.cfg index 8e3853a0826..ff991d2e921 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_efine.inst.cfg index 7af166b6efa..387bc2803fa 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_fine.inst.cfg index aa3f9309611..4749e808868 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_standard.inst.cfg index ea3069b9ed8..e2cc8ebc5e6 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_draft.inst.cfg index cde0ddc48bd..636cb463248 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_efine.inst.cfg index 9bf54a37fbf..94f7035de6a 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_fine.inst.cfg index 5a7a645b522..046c224eeeb 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_standard.inst.cfg index 7e404b7b904..c82d1e59d51 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_draft.inst.cfg index d3c22945341..ba1f0254162 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_efine.inst.cfg index 7ba6c2a6f78..7c13e9a36ca 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_fine.inst.cfg index 7fefcbba15b..3de4182895c 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_standard.inst.cfg index ce588169fb6..ea23db0653b 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_draft.inst.cfg index fe1739a06a7..0d0d14a5362 100644 --- a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_efine.inst.cfg index aada93345ed..3bb109d6c9a 100644 --- a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_fine.inst.cfg index 02687e6e269..5edf0b9bd8b 100644 --- a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_standard.inst.cfg index 222330b5cbc..ae16cbc3b89 100644 --- a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_draft.inst.cfg index 0861c923582..182a5eb5576 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_efine.inst.cfg index 70c1ba0756a..1bea3a03535 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_fine.inst.cfg index 38beebc234f..8fc710811b2 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_standard.inst.cfg index 9206ce61f1b..8c5e9ebccec 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_draft.inst.cfg index 68b74a82c0f..2a905fb6a75 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_efine.inst.cfg index 701cd1545db..c07fd746d14 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_fine.inst.cfg index d3d259258cf..6f647df03f9 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_standard.inst.cfg index 69bdbab195d..a908ae58c98 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_draft.inst.cfg index f67b726f8ee..503947b2596 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_efine.inst.cfg index b93f42ffc78..e68a6783700 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_fine.inst.cfg index ea4106110ca..2c8ae1a79f5 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_standard.inst.cfg index e2330ad8af9..dd79f1ffa6c 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_draft.inst.cfg index b61e7ef3cb2..a7f82c656d7 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_efine.inst.cfg index 41dce05fc69..5f7de68aa0d 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_fine.inst.cfg index 47487c9e0a1..7594f90b2c5 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_standard.inst.cfg index 41528048ef5..a26870a135c 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_draft.inst.cfg index 479c51c9b71..4728c71a2f3 100644 --- a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_efine.inst.cfg index 733be0fd46c..9c4c3d1b17d 100644 --- a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_fine.inst.cfg index 4d324f8a7bf..93b15b522a7 100644 --- a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_standard.inst.cfg index a5c3b8f34d1..7ca4ae0e0c3 100644 --- a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_draft.inst.cfg index 20861e56cc0..7c6018bf2ca 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_efine.inst.cfg index f9b17d8fa48..4b88ea86541 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_fine.inst.cfg index 54a3390e5e6..9894d7449af 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_standard.inst.cfg index 2817c49e1b4..6ae42916458 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_draft.inst.cfg index 378b6bd04cc..5deaafd5706 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_efine.inst.cfg index bb63251d3ed..1640a2df7be 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_fine.inst.cfg index 63ba70aae57..907140849aa 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_standard.inst.cfg index e5bbe53eaf2..575a91c50b3 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_draft.inst.cfg index 4aa8ebc6400..e336fdd0566 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_efine.inst.cfg index ab2d4f72143..1dadaad261b 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_fine.inst.cfg index a6fab274b75..427fac9af30 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_standard.inst.cfg index 4eff58cc500..723879fbe73 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_draft.inst.cfg index 9e50a5cf80a..b5bb1979f65 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_efine.inst.cfg index 24de9df2e18..5501ac6902d 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_fine.inst.cfg index dc15adb0cd6..9866bd5114a 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_standard.inst.cfg index 1115cf5e0a4..4aa0b532056 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_draft.inst.cfg index e1e666538b8..5cbec449645 100644 --- a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_efine.inst.cfg index 84d9f7e94ca..a6d91a10072 100644 --- a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_fine.inst.cfg index 59a2b761688..8c640dfb5c2 100644 --- a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_standard.inst.cfg index eb1a9273d64..53222d22731 100644 --- a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.2_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.2_pa_fine.inst.cfg index 0b789d09a62..348a785acce 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.2_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.2_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.2_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.2_pa_standard.inst.cfg index 8226e0ca895..46567e57242 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.2_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.2_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.40_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.40_pa_fine.inst.cfg index bb7ae4327c8..4390447146b 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.40_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.40_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.40_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.40_pa_standard.inst.cfg index 75f3570b98f..2d28320a989 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.40_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.40_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.6_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.6_pa_fine.inst.cfg index 681d84301f3..17b8df3dbdc 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.6_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.6_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.6_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.6_pa_standard.inst.cfg index ab2609e0996..e832ecfd9fd 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.6_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.6_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.8_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.8_pa_fine.inst.cfg index 5217639a6f6..3d1af0cfde9 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.8_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.8_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.8_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.8_pa_standard.inst.cfg index 6e99c89bc62..e2bf82bbaf7 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.8_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.8_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_1.0_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_1.0_pa_fine.inst.cfg index 759dd180de9..f7dc4ed76e2 100644 --- a/resources/quality/goofoo/pa/goofoo_far_1.0_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_1.0_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_1.0_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_1.0_pa_standard.inst.cfg index eb4d8f8c694..6c1d838564e 100644 --- a/resources/quality/goofoo/pa/goofoo_far_1.0_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_1.0_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.2_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.2_pa_fine.inst.cfg index fbeebdff0fe..896c4734d88 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.2_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.2_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.2_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.2_pa_standard.inst.cfg index 14402ffb41e..2ef08555de6 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.2_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.2_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.40_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.40_pa_fine.inst.cfg index fdc7cb697cb..674a74b59af 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.40_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.40_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.40_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.40_pa_standard.inst.cfg index a242253f4d5..060f1b20783 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.40_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.40_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.6_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.6_pa_fine.inst.cfg index dfbe334e387..af1847498ee 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.6_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.6_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.6_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.6_pa_standard.inst.cfg index c6bffb0caf4..774904af4ec 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.6_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.6_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.8_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.8_pa_fine.inst.cfg index 3945747b1b3..beb2bce12d8 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.8_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.8_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.8_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.8_pa_standard.inst.cfg index c4d0928d9de..19e0532dc4d 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.8_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.8_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_1.0_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_1.0_pa_fine.inst.cfg index e3410dc1939..da00944e6e5 100644 --- a/resources/quality/goofoo/pa/goofoo_near_1.0_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_1.0_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_1.0_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_1.0_pa_standard.inst.cfg index 1a7d1343e14..e59c08ce03a 100644 --- a/resources/quality/goofoo/pa/goofoo_near_1.0_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_1.0_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_fine.inst.cfg index eea1633018d..121b088b85b 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_standard.inst.cfg index e3b5210a10c..6bba94e2be4 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg index 9301e400d05..e0f595bde6b 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_standard.inst.cfg index 33c548ab335..9ede72af1b5 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_fine.inst.cfg index 3e0b6583c87..0be8604ae47 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_standard.inst.cfg index 59ae5b69b5b..7ba70b1d355 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_fine.inst.cfg index db75bc2c67d..356904c3109 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_standard.inst.cfg index 259440b6a6b..43f9621a4e7 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_fine.inst.cfg index 72c3baa2a15..30365cd67a1 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_standard.inst.cfg index a8adf0b4436..7cda0fac5f7 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_fine.inst.cfg index ab949f6a6a5..527bf85048d 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_standard.inst.cfg index 0eb5a9bc610..2080deeacfb 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_fine.inst.cfg index 6d9549bd624..da0a593f955 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_standard.inst.cfg index a2d72c1a695..d8d1a7ca875 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_fine.inst.cfg index c6a02040718..c22215a97e1 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_standard.inst.cfg index b8e976b1fc5..361687e2ee0 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_fine.inst.cfg index 1b153efe8d9..0b40b616f05 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_standard.inst.cfg index ea80a02e301..a6352e8542b 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_fine.inst.cfg index bc46f2dfa0c..217577960d9 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_standard.inst.cfg index 3315f0d2480..5224461e413 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_draft.inst.cfg index ec03597e07f..d80a21dd472 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_efine.inst.cfg index 086d782b4f9..6e77446e487 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_fine.inst.cfg index fa9eee18b00..5b23f59e2e6 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_standard.inst.cfg index 32f99a349cb..0c8a2e9d47e 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_draft.inst.cfg index d8baf0aabee..9170a6ccd36 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_efine.inst.cfg index 2e51112f230..b7165ca165a 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_fine.inst.cfg index cb3ddd7e7aa..c9e9e48f4d9 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_standard.inst.cfg index d935d4c1b15..c4a2ae6ee6f 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_draft.inst.cfg index 4f5cc865a98..03c98d36200 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_efine.inst.cfg index ce8abce4ac7..0651e514bef 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_fine.inst.cfg index a7d3f6b27a8..ef9c935596e 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_standard.inst.cfg index 6c5ab971eff..dcd50bc969f 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_draft.inst.cfg index ec0ac7ad638..e536456bc9f 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_efine.inst.cfg index 37f541bd8f6..9deab3245f4 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_fine.inst.cfg index be2af8377be..ecf42151cbd 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_standard.inst.cfg index 208e815039f..02c02bc3e6d 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_draft.inst.cfg index 9c6c8d5eba5..245bae2a994 100644 --- a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_efine.inst.cfg index 7e78e26ff83..fb58a85c076 100644 --- a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_fine.inst.cfg index 04dcc09c2c7..4d97e9e32d7 100644 --- a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_standard.inst.cfg index dd60d832ae3..065fc1731c1 100644 --- a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_draft.inst.cfg index 78c695cecef..9ea26f12e81 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_efine.inst.cfg index bf53a8e25c4..5128f225a48 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_fine.inst.cfg index 804cd0e68c5..bdcf429b4b2 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_standard.inst.cfg index 2d539d0b576..2f2985b5212 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_draft.inst.cfg index c0d56f38ecb..c31e8c3165d 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_efine.inst.cfg index 61b977a1db7..77e928ecdea 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_fine.inst.cfg index 758f32d008d..4f300b8df5a 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_standard.inst.cfg index 43b128a8a1c..cf42e403b08 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_draft.inst.cfg index 477da6f14d7..bdfc2bc6ac0 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_efine.inst.cfg index 71fb033e2b4..781e1a49caa 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_fine.inst.cfg index f8cd0df5979..a01576b86cf 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_standard.inst.cfg index 300b611dad6..d6e876a7d52 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_draft.inst.cfg index 3c252ed8622..bb2f366c996 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_efine.inst.cfg index 3854c6d1380..aa93b4aa81c 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_fine.inst.cfg index 8fd500f1258..05ba27ebe5f 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_standard.inst.cfg index ac055896ead..bf53f2de7af 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_draft.inst.cfg index a17a1036626..d6c47ed9f1b 100644 --- a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_efine.inst.cfg index bc2340c2f27..d7238ad4e5e 100644 --- a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_fine.inst.cfg index 60e710cf492..6ec648b3d54 100644 --- a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_standard.inst.cfg index a74c970491c..623995b206a 100644 --- a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_draft.inst.cfg index 4397bed5bbb..44c249c816c 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_efine.inst.cfg index ef364d7dc57..9be8e0a81bc 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_fine.inst.cfg index 8123c177b2c..55946c31140 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_standard.inst.cfg index 336015d1595..905359674c1 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_draft.inst.cfg index 2ee07b5ee03..924af69d3ec 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_efine.inst.cfg index 84409b85602..2397cfaa833 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_fine.inst.cfg index 2f6ecf9b3e5..38a70388ede 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_standard.inst.cfg index 9997e79ff67..62c13964a09 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_draft.inst.cfg index 3856ee39215..390be62de25 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_efine.inst.cfg index 5ce9cd26436..30931645ad1 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_fine.inst.cfg index 9471178bc11..33b80dd5790 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_standard.inst.cfg index d7929e5ae10..250cb060bc6 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_draft.inst.cfg index dd3a2cc5923..a69b7dcc370 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_efine.inst.cfg index 605838791ff..9b822a58c98 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_fine.inst.cfg index 5e9fff72628..59283a5e349 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_standard.inst.cfg index 6f7bfaf0a4e..c55e3ad761f 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_draft.inst.cfg index 6d05e8ce3e0..f0f668ab32b 100644 --- a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_efine.inst.cfg index 2a365bbdd86..2688901e07f 100644 --- a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_fine.inst.cfg index 18b2535fc8b..47045c91b8c 100644 --- a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_standard.inst.cfg index 25c4d060934..7b1b50ad63a 100644 --- a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_draft.inst.cfg index 83a44b24fd1..6cf58193188 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_efine.inst.cfg index cfb5cd1b7ef..156a652a8f6 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_fine.inst.cfg index f1e02ab23f8..1a5215be93a 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_standard.inst.cfg index fc37e37d3d1..8c16dc8cb2a 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_draft.inst.cfg index b10b3392318..aa74e974f80 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_efine.inst.cfg index eccc713d389..dcbe3f44fad 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_fine.inst.cfg index 30c0d7b0289..a69c6e51bcf 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_standard.inst.cfg index d4249dd736a..5cf34da5b30 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_draft.inst.cfg index 52bb7224b1e..ab90f22afd4 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_efine.inst.cfg index 937440d1db8..eb511de63ff 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_fine.inst.cfg index 8c3443e5f52..9a84bc7a231 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_standard.inst.cfg index a125ec88172..af8d148076d 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_draft.inst.cfg index 100aba53bbe..4ab82b5dfd1 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_efine.inst.cfg index 74e44c52494..83dc2864d92 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_fine.inst.cfg index 967ed0a1a5e..43e36bb6405 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_standard.inst.cfg index 5f9443f94f6..deedf0bf1d6 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_draft.inst.cfg index c02f3de3207..142cb157864 100644 --- a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_efine.inst.cfg index 31210dd237a..9b770447bd6 100644 --- a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_fine.inst.cfg index 7103f6f5188..b80eabd35c4 100644 --- a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_standard.inst.cfg index a6cc6efe661..44730ff9d37 100644 --- a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.2_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.2_petg_fine.inst.cfg index 6f05c25a564..1cdf589a096 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.2_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.2_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.2_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.2_petg_standard.inst.cfg index d52397d199e..a4e470199aa 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.2_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.2_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.40_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.40_petg_fine.inst.cfg index 59031fa7646..20d6b7d38bb 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.40_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.40_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.40_petg_standard.inst.cfg index 5886287af01..d71b7310b45 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.40_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.6_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.6_petg_fine.inst.cfg index da4c2925063..75bea2fc24e 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.6_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.6_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.6_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.6_petg_standard.inst.cfg index c6620e11ea9..1d054195e12 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.6_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.6_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.8_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.8_petg_fine.inst.cfg index da4f8144339..d82203c2e70 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.8_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.8_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.8_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.8_petg_standard.inst.cfg index 2806286c733..cfeab2566c4 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.8_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.8_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_1.0_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_1.0_petg_fine.inst.cfg index 4090dbf86ef..2448c605f0e 100644 --- a/resources/quality/goofoo/petg/goofoo_far_1.0_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_1.0_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_1.0_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_1.0_petg_standard.inst.cfg index 64b49409dc0..9a817f0e393 100644 --- a/resources/quality/goofoo/petg/goofoo_far_1.0_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_1.0_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.2_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.2_petg_fine.inst.cfg index d786159358a..380f4e2dd56 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.2_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.2_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.2_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.2_petg_standard.inst.cfg index 9e9f0e8ce67..439bd15e25b 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.2_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.2_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.40_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.40_petg_fine.inst.cfg index f51712a0e37..2fa405b1646 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.40_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.40_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.40_petg_standard.inst.cfg index 0aa5380ef07..5c7cf701fe5 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.40_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.6_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.6_petg_fine.inst.cfg index 7f3ef09e5df..8c59997a600 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.6_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.6_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.6_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.6_petg_standard.inst.cfg index 1042e7b3517..00eca070f82 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.6_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.6_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.8_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.8_petg_fine.inst.cfg index db4e0037ea5..33cb7b1a87d 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.8_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.8_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.8_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.8_petg_standard.inst.cfg index f1505283eef..5f54ebf6478 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.8_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.8_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_1.0_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_1.0_petg_fine.inst.cfg index 0cfc7884604..9eaac26a420 100644 --- a/resources/quality/goofoo/petg/goofoo_near_1.0_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_1.0_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_1.0_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_1.0_petg_standard.inst.cfg index 2f1d6f8a3c6..041302c244b 100644 --- a/resources/quality/goofoo/petg/goofoo_near_1.0_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_1.0_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.2_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.2_petg_fine.inst.cfg index b0924d5ead8..e80ab9d9ee5 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.2_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.2_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.2_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.2_petg_standard.inst.cfg index 5da003b6cd8..ad81d57fb77 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.2_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.2_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.40_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.40_petg_fine.inst.cfg index 7bfc28b0fe7..0443634dc48 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.40_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.40_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.40_petg_standard.inst.cfg index 08f71712201..b5275e5c2e7 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.40_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.6_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.6_petg_fine.inst.cfg index b8fd1635c2c..353632253d0 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.6_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.6_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.6_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.6_petg_standard.inst.cfg index 9bbd2ad7d41..274cbc354e5 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.6_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.6_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.8_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.8_petg_fine.inst.cfg index 5f98ee9cfba..6a85e0c7ed5 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.8_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.8_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.8_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.8_petg_standard.inst.cfg index 58c8b1159c0..08aca6b910c 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.8_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.8_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_1.0_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_1.0_petg_fine.inst.cfg index 6f97ce76bed..1a1e0740283 100644 --- a/resources/quality/goofoo/petg/goofoo_open_1.0_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_1.0_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_1.0_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_1.0_petg_standard.inst.cfg index 53e207635cf..f9f8010d49f 100644 --- a/resources/quality/goofoo/petg/goofoo_open_1.0_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_1.0_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.2_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.2_petg_fine.inst.cfg index 0e316b5c4a0..9defbeb9110 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.2_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.2_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.2_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.2_petg_standard.inst.cfg index 717b5984474..983c32e725f 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.2_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.2_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.40_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.40_petg_fine.inst.cfg index e70c1b67a9c..baa5bcae967 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.40_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.40_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.40_petg_standard.inst.cfg index a13ea62fd28..4f94d09d636 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.40_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.6_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.6_petg_fine.inst.cfg index 9ca061bec6c..2fee6bc6ada 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.6_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.6_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.6_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.6_petg_standard.inst.cfg index 9c3552f6b11..6f205a97a2a 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.6_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.6_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.8_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.8_petg_fine.inst.cfg index 61c42220033..fa705a55208 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.8_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.8_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.8_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.8_petg_standard.inst.cfg index 1bd2aeefb39..0baea309085 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.8_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.8_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_1.0_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_1.0_petg_fine.inst.cfg index 75e485b5601..15c3ea0e2af 100644 --- a/resources/quality/goofoo/petg/goofoo_small_1.0_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_1.0_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_1.0_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_1.0_petg_standard.inst.cfg index 1fa396f1e7b..8b56269c2d3 100644 --- a/resources/quality/goofoo/petg/goofoo_small_1.0_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_1.0_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_draft.inst.cfg index a24167ad8ed..ea804f05f46 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_efine.inst.cfg index 59faa1d11b7..274838e7281 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_fine.inst.cfg index 485c18956f6..0e78ad6acf4 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_standard.inst.cfg index dbeca615661..c340d22e6ff 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_draft.inst.cfg index a34b591de99..92050f0dc80 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_efine.inst.cfg index c0f03fc7d70..7976f5db530 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_fine.inst.cfg index c6854faaec0..44b404c6a1b 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_standard.inst.cfg index 91cd4fe42f0..9f71bdd3066 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_draft.inst.cfg index 943647c0027..d9b23780557 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_efine.inst.cfg index b83988fb941..74ab85f6b9d 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_fine.inst.cfg index a49d3ca4b67..54753bcd6ad 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_standard.inst.cfg index 52e0c9ef2fa..53742da7ba3 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_draft.inst.cfg index f15fde22ecf..1b830d2bb4f 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_efine.inst.cfg index a56bd4d9c6f..e6b6248c657 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_fine.inst.cfg index 835022875a6..ca03daad0eb 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_standard.inst.cfg index a9c9cde3f8b..eda258e7de7 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_draft.inst.cfg index 23083c1a042..7d1fdddb59c 100644 --- a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_efine.inst.cfg index 1a2d3063a4f..474ec201843 100644 --- a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_fine.inst.cfg index 3ba2de10d78..c19ce0e9966 100644 --- a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_standard.inst.cfg index a21f8ad6473..524229cfcd9 100644 --- a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_draft.inst.cfg index fb219067cd9..b4c78531a4c 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_efine.inst.cfg index fc6502628ef..b6f9ae029e1 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_fine.inst.cfg index f14b42e672f..d681300f02c 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_standard.inst.cfg index 9ab81d4ab61..de5b5750617 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_draft.inst.cfg index f96fcc751fd..86536b0e011 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_efine.inst.cfg index cb908e50893..12df7e9cc91 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_fine.inst.cfg index 46aea18e0c5..576c85cdfe4 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_standard.inst.cfg index b00456d97a7..2d739906bf3 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_draft.inst.cfg index 48fd247c178..77e61240d45 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_efine.inst.cfg index b4ced41c47d..27ff3f26f88 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_fine.inst.cfg index b05f7fc31be..85b73e4b6d3 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_standard.inst.cfg index fb393edd18e..21ca35b524e 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_draft.inst.cfg index 8dbca6af018..9ef89bb7c8e 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_efine.inst.cfg index ac7fccc4820..a85340ad4d5 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_fine.inst.cfg index d1b58ffed5c..e2ddb168005 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_standard.inst.cfg index 53b131ad0b0..c820a301e78 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_draft.inst.cfg index dc1b3f52cd0..c0cff5cc4be 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_efine.inst.cfg index bcbb3016618..9931f64de24 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_fine.inst.cfg index 8f6fdaa3395..c954561593c 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_standard.inst.cfg index cf1d7d5b228..cee16a757d9 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_draft.inst.cfg index 4188aebce9c..76215536e68 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_efine.inst.cfg index a511d113516..02e0c41bb54 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_fine.inst.cfg index 59e90a3bb39..5a1e3c456a8 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_standard.inst.cfg index 9c85e6c6bc8..1f364794350 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_draft.inst.cfg index e03114db760..b8c86af3459 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_efine.inst.cfg index 8a5094291e3..d12504ba952 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_fine.inst.cfg index a30cbd04830..e5031178ca7 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_standard.inst.cfg index 647eb3dae45..2e60dcdcc30 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_draft.inst.cfg index c5f58040743..39dee8a34ab 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_efine.inst.cfg index 8d61ff22d0d..7b2eaa4d07e 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_fine.inst.cfg index 75198a3df8e..81378a00feb 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_standard.inst.cfg index 0bba5cf295b..2079e1f0c8b 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_draft.inst.cfg index aa7b5d0b24a..f2380c7cfe7 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_efine.inst.cfg index a83b0e3ad29..e3f6c13bea3 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_fine.inst.cfg index d64032362ac..2dce8f735e4 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_standard.inst.cfg index bda9411fb93..3f60c325636 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_draft.inst.cfg index 6c2d4f0e004..53f23e6eb33 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_efine.inst.cfg index 20cf16c1d40..46e26a0626c 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_fine.inst.cfg index 70074181941..bff51d98fd2 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_standard.inst.cfg index 5759d5678ed..1201a30d5d0 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_draft.inst.cfg index fd3fd0a2000..e9645c7f0f3 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_efine.inst.cfg index 4c811504c1d..7e7fea7877f 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_fine.inst.cfg index afc99b665f3..a4ee3f3bf58 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_standard.inst.cfg index 1bc54841744..125f0e9bebc 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_draft.inst.cfg index 9213ee41508..8a46d6cbd12 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_efine.inst.cfg index 8bce4ab525d..ea6cbec13b4 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_fine.inst.cfg index f9521a40140..f7a613a20b5 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_standard.inst.cfg index 705153c9acd..44ac6c91b74 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_draft.inst.cfg index a7ff3efcdb0..7f93f92adf6 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_efine.inst.cfg index 0103f6ddc86..61a251e2209 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_fine.inst.cfg index 3bdb5f9759b..7db0bfd5575 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_standard.inst.cfg index 77141c38db4..2f8a3bdb57c 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_draft.inst.cfg index f3b67d20fac..d78c1b2bf77 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_efine.inst.cfg index 816ce003670..0513491e114 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_fine.inst.cfg index f2efc7ef98d..3f92cc307b6 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_standard.inst.cfg index 4df8c1e46d7..4c4fcd36058 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_draft.inst.cfg index 1f39390e1ef..e36d6cc922a 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_efine.inst.cfg index ff27767a2f6..16679787e52 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_fine.inst.cfg index 06dff2e66e1..daadf2a25f1 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_standard.inst.cfg index 094c11b8fff..220f3b38e7c 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_draft.inst.cfg index f06b2abb44d..72b6c17e6f2 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_efine.inst.cfg index 8fb89789579..480a6d0d46e 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_fine.inst.cfg index 3de8dd51d8c..4aed3391d2b 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_standard.inst.cfg index 4b023b7c1a4..a8b259e40e3 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_draft.inst.cfg index 4f51919bad6..4515d117869 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_efine.inst.cfg index 0bd2e821a35..9332be7f508 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_fine.inst.cfg index cb27e45ea94..75cec5183e4 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_standard.inst.cfg index 894268c3b7a..875390ef4df 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_draft.inst.cfg index 7c2aab3219e..40834d6db89 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_efine.inst.cfg index d96c20174b7..23c59fb500b 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_fine.inst.cfg index 058655a1e69..e2ad9d6fd4d 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_standard.inst.cfg index 1ff2b340686..c70bdfb20e0 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_draft.inst.cfg index dca5cf9f3c4..9f860abd284 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_efine.inst.cfg index e8375270b5c..520f8fc8a59 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_fine.inst.cfg index c7dec1380f0..8fd2bee0682 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_standard.inst.cfg index 19c660a4f6b..561bde734c8 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_draft.inst.cfg index cdb1911b9a5..671b54bdf44 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_efine.inst.cfg index ded43d09691..ddd379be18a 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_fine.inst.cfg index de7c1f36207..b123bd57218 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_standard.inst.cfg index 10580fbc2b8..36875a4c57e 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_draft.inst.cfg index 79855f83e24..11fafe08098 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_efine.inst.cfg index 91073385f73..0fe62096af2 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_fine.inst.cfg index 56afdac2312..29f1abb2a7e 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_standard.inst.cfg index ef32166d4a9..00deef516c0 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_draft.inst.cfg index bd016036c49..94ae0743fe4 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_efine.inst.cfg index 39a950249a0..f9b94fc2573 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_fine.inst.cfg index cdbf92d318b..46a3a9fa613 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_standard.inst.cfg index f80b9c0f0d0..56f92ab16bb 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_draft.inst.cfg index b321728ed51..bd58e7adf59 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_efine.inst.cfg index 5931a2497aa..cee9e4dccb5 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_fine.inst.cfg index cd3ec9b4d50..9f02a5215ec 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_standard.inst.cfg index 3374a8e2ab6..6f53a862dc2 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_draft.inst.cfg index 2fe1a46d667..6046f738c5e 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_efine.inst.cfg index 829c8fd4910..c07b6dfad42 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_fine.inst.cfg index bf09b685645..bdda4ef8a13 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_standard.inst.cfg index 1d04870b057..fb0fc68a5cf 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_draft.inst.cfg index c1b973352b3..4c01ab631e0 100644 --- a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_efine.inst.cfg index c8da6547bc3..1a4c2426fb4 100644 --- a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_fine.inst.cfg index 69f0e97e0a1..968a7a9c67a 100644 --- a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_standard.inst.cfg index e8a065418fd..6a216a25a1b 100644 --- a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_draft.inst.cfg index 5f8af2b28d9..457eefe2066 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_efine.inst.cfg index 8b8e206a782..5008a6a0ae1 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_fine.inst.cfg index bd93ca1c6ac..2e9e44565b4 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_standard.inst.cfg index e5c179ff45b..bcd800c289c 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_draft.inst.cfg index c6567c80f07..aac1990e10a 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_efine.inst.cfg index 7fa272e40db..d8e6eceaa66 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_fine.inst.cfg index ea049121067..0f3d79ceca8 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_standard.inst.cfg index cdf2ec8d71a..35d29dfef78 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_draft.inst.cfg index 84dbdc550a5..c4bcca20590 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_efine.inst.cfg index caf6cc6cb11..0332a2f238c 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_fine.inst.cfg index 84e1264d369..931a14e7398 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_standard.inst.cfg index 2f178852891..c613d419012 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_draft.inst.cfg index ad526c1bab7..9ca43bb40f6 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_efine.inst.cfg index 0a7582fd7ff..57332ca7b7e 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_fine.inst.cfg index b417b80c86f..a19e30459f0 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_standard.inst.cfg index 838a4401821..c6f687d1869 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_draft.inst.cfg index db4115a0b7b..a8416f211e1 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_efine.inst.cfg index 13dc3b1aebb..7e5063001ff 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_fine.inst.cfg index 95b67c7b19f..80e240c99ec 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_standard.inst.cfg index 3c418caacfa..30c88bcb71e 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_draft.inst.cfg index 946269e6e4f..fb5ce482080 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_efine.inst.cfg index b36d981df95..5e4135d37f1 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_fine.inst.cfg index 3bb2a5c25a6..2ca72b64783 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_standard.inst.cfg index 318b863137a..fb76a0b203d 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_draft.inst.cfg index 19bbd2fee2d..a604d591e79 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_efine.inst.cfg index 1b0ac9a8ad4..36aa675aa59 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_fine.inst.cfg index 35c69885d80..9f8ea69fb5f 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_standard.inst.cfg index 60652b1a404..30b78bc806a 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_draft.inst.cfg index 2e5539a0b6e..440620c4f48 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_efine.inst.cfg index b00f0ce701b..7d04f1fe660 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_fine.inst.cfg index c6b885df4a2..f31ca3a447d 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_standard.inst.cfg index fcbe4aa9ac7..78337e4399a 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_draft.inst.cfg index 54349a9169a..a522b67182f 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_efine.inst.cfg index c0e790de037..a5237fd6880 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_fine.inst.cfg index 1e66935368b..0735eafe6bf 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_standard.inst.cfg index 6d49dbd1178..ac8f22dae56 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_draft.inst.cfg index b74e3acccd3..2137bb44d62 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_efine.inst.cfg index 7501c72ddec..8bf07b71bd9 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_fine.inst.cfg index 3feb6df3a08..1b0303b4a0e 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_standard.inst.cfg index 935f9740030..12af81f8ff2 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_draft.inst.cfg index 39e214fda00..5f23442d9e3 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_efine.inst.cfg index 8a519242811..1e1954997df 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_fine.inst.cfg index 834d64152d0..c2dccc4c292 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_standard.inst.cfg index d6fff7acb88..29be08b1352 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_draft.inst.cfg index 0979c5c314c..d1cf9b5edf4 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_efine.inst.cfg index f92b859fd26..eeb45c2ccab 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_fine.inst.cfg index 7893fa30e98..8205023bcd7 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_standard.inst.cfg index 929c20e5b9b..3495ff4d3b5 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_draft.inst.cfg index aed7875226b..208e9a81bef 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_efine.inst.cfg index bd21d6e301f..2df649ca35f 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_fine.inst.cfg index f720646b8b6..1e56bc12bf5 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_standard.inst.cfg index 26fcc13ceae..f1f8cc59ce0 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_draft.inst.cfg index 060a636082f..ca0921304aa 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_efine.inst.cfg index 736bd6ba524..e2fd6b87d39 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_fine.inst.cfg index 1af5ab5773f..52d36595703 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_standard.inst.cfg index 64752f37e0a..8a005e13f43 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_draft.inst.cfg index 058eab3b51e..35831312bb6 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_efine.inst.cfg index 29dc4ea9c90..0ff8d896641 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_fine.inst.cfg index dcda2fee8ad..43859075e12 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_standard.inst.cfg index bde488d5bbd..09e685a14de 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_draft.inst.cfg index 962ee7df647..99187ad5dff 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_efine.inst.cfg index 6fae0d7de3c..81fdbdbafbe 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_fine.inst.cfg index 045e0dd9a32..3ed41c03099 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_standard.inst.cfg index 69adc588fed..b51daea66f5 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_draft.inst.cfg index a30c01dd541..1a054a12595 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_efine.inst.cfg index 629a750003d..9ba820f8770 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_fine.inst.cfg index 472c51f9ae2..c89eedbf43d 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_standard.inst.cfg index d745270314b..39d4687305a 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_draft.inst.cfg index 25c69b07163..7bd3af8187f 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_efine.inst.cfg index 327f56569ad..da4acd2f6f2 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_fine.inst.cfg index 0bd8183eda6..d3a322e4658 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_standard.inst.cfg index d86ac946c17..a63a8816e7f 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_draft.inst.cfg index 6fa76cf2691..de0137a4e65 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_efine.inst.cfg index 9b67dd691b0..fa28f435c6c 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_fine.inst.cfg index fbcee52ef0c..16534a9d4aa 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_standard.inst.cfg index dc780ccce12..3025e1b77c3 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_draft.inst.cfg index 7e57571e070..ebd9e68fe07 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_efine.inst.cfg index fb11dae28ef..7f039d1a1c5 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_fine.inst.cfg index fe89dfb09f9..cf026efa1d2 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_standard.inst.cfg index 1a8351b2ea5..83700acaf26 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_draft.inst.cfg index 79ee9f35d6d..9c912e786fe 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_efine.inst.cfg index 01ea17738b5..c38c5b2fb0f 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_fine.inst.cfg index b227780b3f9..44f3add9e29 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_standard.inst.cfg index 94b03d66536..573484ba804 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_draft.inst.cfg index ba8a374e6a5..9aa7c8002ef 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_efine.inst.cfg index c526af5f69b..46469f6f296 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_fine.inst.cfg index 9ad5e221eeb..05eedcdbb9e 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_standard.inst.cfg index aa480a3495b..681f07472e9 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_draft.inst.cfg index 2d4c6d35018..30ad404a8c9 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_efine.inst.cfg index d81ddd486f0..fbe87ef6c61 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_fine.inst.cfg index ccc463655e5..9fe7f059cdf 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_standard.inst.cfg index 14acbc16f37..ba0d5867f09 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_draft.inst.cfg index 6f3ebb98ed2..e8848d36ed4 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_efine.inst.cfg index f07208c6627..5a581ba104e 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_fine.inst.cfg index 2c436418cd9..9999ad4926d 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_standard.inst.cfg index c341378f23f..b99ed6619c9 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_draft.inst.cfg index d8bae28f189..e69de84b626 100644 --- a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_efine.inst.cfg index 3a8668d7053..181121e4814 100644 --- a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_fine.inst.cfg index 63506d7c13f..073a976f16c 100644 --- a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_standard.inst.cfg index 8babb653177..4a508a0a06a 100644 --- a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_draft.inst.cfg index e6403083d2b..3c8b00f6262 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_efine.inst.cfg index bc8e85b6634..3ce95f7a639 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_fine.inst.cfg index 802e8c299b9..3b41b07a064 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_standard.inst.cfg index e2128f9758d..3210f1da7ba 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_draft.inst.cfg index 0fce6059223..46e75f38999 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_efine.inst.cfg index 955492c995a..aa4f99fcb3e 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_fine.inst.cfg index bc91dd87718..679e88140f0 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_standard.inst.cfg index e508f330d26..1b3680cf731 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_draft.inst.cfg index 6ac15e5f7c5..dac40bc410e 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_efine.inst.cfg index c72b18b91d0..80b5c6b6506 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_fine.inst.cfg index e143b95b71d..17b366bf720 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_standard.inst.cfg index 528052b6bdc..cee54c23631 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_draft.inst.cfg index d4740559ff8..e4deeed9dbe 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_efine.inst.cfg index 441cada5b9f..adeb9566607 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_fine.inst.cfg index 816d60c36e5..682d398b68d 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_standard.inst.cfg index 2b8626361a4..e465530528e 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_draft.inst.cfg index d28480fa4d9..d7a74a43fe3 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_efine.inst.cfg index 455ba84ee93..50ecaf14ec9 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_fine.inst.cfg index b58b7b1d882..04334a9c556 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_standard.inst.cfg index 3ee1caeca55..427ecf378dc 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_draft.inst.cfg index ab5ec4e7485..98fd96a26d1 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_efine.inst.cfg index db0a844d973..f4dda4780a6 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_fine.inst.cfg index 856335f5adc..6d9bfd898e3 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_standard.inst.cfg index cf6165f701f..83789925b62 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_draft.inst.cfg index ea69168c9c4..6807168f8a4 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_efine.inst.cfg index acd7670bb42..72f6883afdf 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_fine.inst.cfg index 098ab00000e..8070d0e64cc 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_standard.inst.cfg index 8049d029d85..4abf8d0c80e 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_draft.inst.cfg index 54dd0fb0082..4367c59ba83 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_efine.inst.cfg index 5e288f02c21..7290662db69 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_fine.inst.cfg index c01fa7db09b..28b3cbc3bed 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_standard.inst.cfg index 09c08534327..48f13581246 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_draft.inst.cfg index 02513dab07e..63395c97e2b 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_efine.inst.cfg index 92b75c84e89..bb80d477d2b 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_fine.inst.cfg index 8a1a9b7d332..234019da738 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_standard.inst.cfg index 9ac586e25e0..8106b3ef219 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_draft.inst.cfg index 40a51f422fd..7ff797252cc 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_efine.inst.cfg index 924e6f6f534..2a667d64660 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_fine.inst.cfg index 4c63c9486db..df35985225e 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_standard.inst.cfg index 2a21f43111c..e2d4610158d 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_draft.inst.cfg index 910eae2f474..495ce5971cc 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_efine.inst.cfg index 325f0379579..7d13a8dadc5 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_fine.inst.cfg index 811ff42d680..d895be517a2 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_standard.inst.cfg index 827c3c43a72..e34dcbac6d3 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_draft.inst.cfg index 431c8020cc2..86db2a4d457 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_efine.inst.cfg index 4e204492c77..6b4d27dd4a5 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_fine.inst.cfg index 90852fabc16..4886566493d 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_standard.inst.cfg index 8a7f848d330..a38cf1fd2ef 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_draft.inst.cfg index ac321494558..5a23fd57a2b 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_efine.inst.cfg index 2e79e9b88eb..8e4170d9d23 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_fine.inst.cfg index 10b33ca2c4f..938461c5e7c 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_standard.inst.cfg index d2819a8f013..9e4a7628122 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_draft.inst.cfg index c8073b57a06..336196c2caf 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_efine.inst.cfg index 3a7f1c54ab8..16e9d629c1f 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_fine.inst.cfg index 535b1da3c02..cedbff00bf9 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_standard.inst.cfg index b96a76d79ad..434da68f639 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_draft.inst.cfg index c788c0d8876..5e46e31d8f2 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_efine.inst.cfg index e5c236d98cf..a0b4939bf2e 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_fine.inst.cfg index 77230985744..4a39e1c8e10 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_standard.inst.cfg index cf1147a425b..96b2f04cef8 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_draft.inst.cfg index 596c4b79c50..b3e32302ab9 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_efine.inst.cfg index 0d97b4ee376..c64a33386ef 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_fine.inst.cfg index 82848057d42..a7959b6cc9d 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_standard.inst.cfg index aaf25c03c9a..2493925bfda 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_draft.inst.cfg index e9a74178f67..1f98a763f8a 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_efine.inst.cfg index 7e2019db94a..f464e716394 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_fine.inst.cfg index 9cdaf34562c..279a08f94ff 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_standard.inst.cfg index 155219e40ee..29a442d2f22 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_draft.inst.cfg index 68264892fc0..806e5fd9fa9 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_efine.inst.cfg index c5678f48c71..cc432790981 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_fine.inst.cfg index b43f566e080..b308cdd674a 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_standard.inst.cfg index cc8737355e4..5ffd9438278 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.70_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.70_pla_standard.inst.cfg index bf326069be2..90011648e7a 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.70_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.70_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.7mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_draft.inst.cfg index 156132c8a7e..d4be1df6466 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_efine.inst.cfg index b640517870e..c1d11ee1e57 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_fine.inst.cfg index 0763c0b9696..06d65533023 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_standard.inst.cfg index b8e72e2b850..713055db6df 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_draft.inst.cfg index 2fe0334d24d..d537e2bce9d 100644 --- a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_efine.inst.cfg index f6aac1d38f8..67e57f4a4fb 100644 --- a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_fine.inst.cfg index e083b57522b..4bbf391b458 100644 --- a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_standard.inst.cfg index 72066ca6a37..01dc8f7675d 100644 --- a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_draft.inst.cfg index 5256fc3783c..e2dc4fb2baa 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_efine.inst.cfg index 5dabf9f38c5..87062b3c991 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_fine.inst.cfg index a55d9c304df..c6fddf4d72f 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_standard.inst.cfg index 1fe7644f2d5..011559774d6 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_draft.inst.cfg index 60d0b6687ed..7838ee5feeb 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_efine.inst.cfg index e626039e59c..197d91b836b 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_fine.inst.cfg index e9ebc84cf2b..835f59c754f 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_standard.inst.cfg index 8ad915955a8..c5e129679a8 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_draft.inst.cfg index 6864af98d56..2e70de1784e 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_efine.inst.cfg index b8d46420ac7..0b690d4ea6a 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_fine.inst.cfg index 3ca13903683..550659cd4ee 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_standard.inst.cfg index 44c569cd81c..db0e547e98d 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_draft.inst.cfg index b55e079336f..3b341470099 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_efine.inst.cfg index 5f4a94be7b1..506475b0b5d 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_fine.inst.cfg index cc19dd93ec2..75f6251d436 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_standard.inst.cfg index 56f72013817..0020c6afc2b 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_draft.inst.cfg index 7005a15a084..1721758d21b 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_efine.inst.cfg index 4440229bfd6..ae3a1f91958 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_fine.inst.cfg index d7eb2fa3afc..7ceb595c4b6 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_standard.inst.cfg index b36955655dc..436fef5536f 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_draft.inst.cfg index 75559b404fd..ade33240901 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_efine.inst.cfg index 98e1d91ab48..d84355a0dcd 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_fine.inst.cfg index 17d04e94448..a8ac3c5a587 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_standard.inst.cfg index 6cf3047e35a..32d826930a2 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_draft.inst.cfg index 8a0c63554d9..e0b1b838856 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_efine.inst.cfg index a163cc0958b..8b2d5d8dab9 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_fine.inst.cfg index dd3074ee47c..a4e05f0b1be 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_standard.inst.cfg index a1ac06a465b..3dcf5d8cf23 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_draft.inst.cfg index 4d3ded603e4..bebb81291a3 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_efine.inst.cfg index 472bac1b491..fb219f2e16a 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_fine.inst.cfg index d9e9c6baac3..9c23538b5fd 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_standard.inst.cfg index 11a5bf11dad..bd4e3851bea 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_draft.inst.cfg index 73c4381d770..6d788974ce0 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_efine.inst.cfg index 9ab5b47fc87..be1ad19db6c 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_fine.inst.cfg index 1d9a367606d..133e168d63e 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_standard.inst.cfg index e8c63384615..2d895109eda 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_draft.inst.cfg index 1b3a7fc6304..d25c4c2793c 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_efine.inst.cfg index 6365705e9b9..eef04ba0f0a 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_fine.inst.cfg index c19e5744bfe..bc6abd6fde8 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_standard.inst.cfg index 1f06092793a..444258d3e78 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_draft.inst.cfg index 3a66f229687..aafee1609c7 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_efine.inst.cfg index 030a1215a80..91dfb9945f5 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_fine.inst.cfg index 526c675bf5a..383b8148041 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_standard.inst.cfg index 7064d1dbf29..f15973a0e4e 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_draft.inst.cfg index a5c71b0f01c..f1855c07d75 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_efine.inst.cfg index c075dcb8929..2cff52d0d74 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_fine.inst.cfg index ed6df806f25..45b10074a04 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_standard.inst.cfg index 7acce33904c..55c4a61eee2 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_draft.inst.cfg index 436ee3fdaea..243bdcfaea5 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_efine.inst.cfg index 6fcce27f3be..8913a0d7109 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_fine.inst.cfg index 2b2d7700401..7e30359f033 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_standard.inst.cfg index 70d0a9e1d2d..6aabac6e5bb 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_draft.inst.cfg index 8656ed85ad3..61e3bc8944f 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_efine.inst.cfg index 909c82ace33..e24514e9736 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_fine.inst.cfg index 0bc7b9d98f4..f2a18d1a0f6 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_standard.inst.cfg index 746317e2e89..25f5eea2286 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_draft.inst.cfg index f0a74a8fb47..d6f8b70abbc 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_efine.inst.cfg index e63033750f4..78b6abfcce4 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_fine.inst.cfg index 893340e54c6..4d2b12b9525 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_standard.inst.cfg index baf72049930..89863c4c31f 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_draft.inst.cfg index dbf4d02cba1..9f9fef6d608 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_efine.inst.cfg index 8cba0d5d701..f7e1050f200 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_fine.inst.cfg index bea05b2d8dc..c04809b64f7 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_standard.inst.cfg index 172c4bf9d7a..1668ede94c0 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_draft.inst.cfg index 53712efd2e5..62933a4fbd5 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_efine.inst.cfg index de5bd5d1562..7bb06108a0c 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_fine.inst.cfg index 806c5458b17..1c0691a7d60 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_standard.inst.cfg index 55caeae945a..48f165411bc 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_draft.inst.cfg index 7611fdf69a5..a106cf2fd26 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_efine.inst.cfg index 7ff408c45f3..feccfe4d0cb 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_fine.inst.cfg index dadb1f716de..e7c73d65ec7 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_standard.inst.cfg index 675e64af206..072c9b36977 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_draft.inst.cfg index 6b6b9c295f1..0822ed93956 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_efine.inst.cfg index 1abca531675..af138ec9ad1 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_fine.inst.cfg index 2ce84bd9c26..5f56b9858ab 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_standard.inst.cfg index 86f97a674a0..f19c453c06c 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_draft.inst.cfg index 58cd0e49f2b..f771663bc61 100644 --- a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_efine.inst.cfg index 3291eed01db..88619447b86 100644 --- a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_fine.inst.cfg index d6bb3a6fce4..32d055d5197 100644 --- a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_standard.inst.cfg index 3f2ab062936..b387713b73b 100644 --- a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_draft.inst.cfg index 01c73983327..9ef41cae428 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_efine.inst.cfg index c09a540a34d..0f51bcd54ab 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_fine.inst.cfg index 1362015f13f..6d2760a8b6e 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_standard.inst.cfg index 098c80b8997..9024d3af2ce 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_draft.inst.cfg index a44a19eb1fe..6d65d34038a 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_efine.inst.cfg index 4aab660f0da..951d21a24a9 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_fine.inst.cfg index 9721a8e1d07..03902636ee9 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_standard.inst.cfg index 3402c32cbec..b427f6ade87 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_draft.inst.cfg index 9420fbd8d2c..a818846db10 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_efine.inst.cfg index 77982e15591..7156000c897 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_fine.inst.cfg index ac75323db6e..2bcce8c08f5 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_standard.inst.cfg index 173d78ce78f..a89d332e920 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_draft.inst.cfg index d8772778fb3..7accd1dc5d6 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_efine.inst.cfg index d9db15f5e83..eb55f197448 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_fine.inst.cfg index fd78553b0dc..d6cdef8f469 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_standard.inst.cfg index 4e59e51b308..4c7386319d8 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_draft.inst.cfg index 977a1310661..cfb6048bfa5 100644 --- a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_efine.inst.cfg index dd3b88ed5bb..7aa0d816809 100644 --- a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_fine.inst.cfg index 6a4b8f6e3b6..7cbc5d0d5a0 100644 --- a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_standard.inst.cfg index 419a5ad42be..a217770025e 100644 --- a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_draft.inst.cfg index 30323b2e71c..b5e6cfd2da1 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_efine.inst.cfg index 56be469fdae..3bd3ce920f7 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_fine.inst.cfg index e8ad02e14a1..beb9b922a1e 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_standard.inst.cfg index e12df152d57..e167dcac9ff 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_draft.inst.cfg index 4e23322b49a..664f3e6ca17 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_efine.inst.cfg index bba461fb891..444da63072b 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_fine.inst.cfg index 6199be2bd79..3f9ada087ce 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_standard.inst.cfg index 4827fcec139..d00e73fabb4 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_draft.inst.cfg index 546aa829cf1..4343317dfc0 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_efine.inst.cfg index b95d38dc3e7..c286dc24856 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_fine.inst.cfg index a4e727516e1..e31017db6d3 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_standard.inst.cfg index 07d12aea7dd..d05f817415b 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_draft.inst.cfg index b786fe42b36..9a478458711 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_efine.inst.cfg index 16def5703d4..49609c7121a 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_fine.inst.cfg index b3128f40e98..0647fcbeaaa 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_standard.inst.cfg index b1c8aadb1af..9e69c455dd3 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_draft.inst.cfg index 2d28fab21b2..0b1278493c4 100644 --- a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_efine.inst.cfg index 2b6825515cf..1d31469cc32 100644 --- a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_fine.inst.cfg index 4775bfc5a5f..7e9261a810e 100644 --- a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_standard.inst.cfg index 2f3dbe36ffc..abc24c245c4 100644 --- a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_draft.inst.cfg index 647d309c184..9d90340c7d1 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_efine.inst.cfg index 338162a5f05..c3369b073b0 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_fine.inst.cfg index cb1293ea9bf..098e1b27336 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_standard.inst.cfg index 5087d749a26..034b928933d 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_draft.inst.cfg index e147f684960..47443f2158c 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_efine.inst.cfg index c031d264451..aa2c30969bd 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_fine.inst.cfg index 9d23c7aeefc..c0323964768 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_standard.inst.cfg index fe90f6970cb..99e48b52caf 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_draft.inst.cfg index 58c0d71f30a..960ea90df3c 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_efine.inst.cfg index 1ebf0bc71de..f6be30dffb6 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_fine.inst.cfg index 07cde244a58..01f7d71e9b1 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_standard.inst.cfg index d17393a5f06..02adae91d80 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_draft.inst.cfg index f9a2ee471eb..5bbf15d8316 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_efine.inst.cfg index 522e7b66803..22109fa7369 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_fine.inst.cfg index 5f8b9645a95..d005f362941 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_standard.inst.cfg index 7d11410f2ad..51afba93ed0 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_draft.inst.cfg index e0d002c768d..435b079942e 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_efine.inst.cfg index 8606bbe8ef3..ee17b3b5684 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_fine.inst.cfg index dd964bdda51..9d3027b9263 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_standard.inst.cfg index 1fe0d04fa49..b76e7d12376 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_draft.inst.cfg index 1c31950f410..306b13f4999 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_efine.inst.cfg index 77fadaf6687..7fbfd04d18c 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_fine.inst.cfg index 281e4543cdb..3829cd6681f 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_standard.inst.cfg index abe75e6061e..ef53446b4c4 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_draft.inst.cfg index 928eceef5c2..c59f80887ba 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_efine.inst.cfg index 34ab0e6195a..55ffd2c0cad 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_fine.inst.cfg index e84eb91d7f6..a00cca72fee 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_standard.inst.cfg index fedb231ee8f..c0348c50a01 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_draft.inst.cfg index e554c172c6d..9dd50875e1b 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_efine.inst.cfg index 5a10719a81e..5975aed497f 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_fine.inst.cfg index ed09bacb5ba..3e2c862d7b2 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_standard.inst.cfg index 16b12b6b917..67f9a187c8d 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_draft.inst.cfg index 5729092fee8..fd576bf9795 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_efine.inst.cfg index e6e39fd2ba3..ca2db4cbc35 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_fine.inst.cfg index 08e0d0eece3..ba6b8e3bdd0 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_standard.inst.cfg index 37a01916dcc..d30b9f23c72 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_draft.inst.cfg index e7b68bf5710..104e8167c38 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_efine.inst.cfg index cb050a5f5be..28a10003f4e 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_fine.inst.cfg index 1a1029e5592..4acd15ea0f1 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_standard.inst.cfg index d6456988a87..a31b09d1e34 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_draft.inst.cfg index 74855b60923..7de788b6cd3 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_fine.inst.cfg index 534591138fb..d07ac3d50ed 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_standard.inst.cfg index 3c94b57d441..a9c8d61167d 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_draft.inst.cfg index c200e621db4..9e11cd6a418 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_efine.inst.cfg index c8f20b83359..e29af7fa79f 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_fine.inst.cfg index 60d228122d8..a29e3ab72e7 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_standard.inst.cfg index b7075093ffa..bb0e6fe9abd 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_draft.inst.cfg index e307ab96e54..c810bf612fa 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg index 9ee8c7d0c9b..268f749a4e0 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_standard.inst.cfg index 37d15f963bc..4eb93f317e8 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_draft.inst.cfg index 2a69859868a..7b584856beb 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_efine.inst.cfg index 7a6e8dcfa17..d82bad2d385 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg index cc8ecb6e56d..3fbc6b312f6 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_standard.inst.cfg index 1611d21ca52..4380089b590 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_draft.inst.cfg index aa35ac47da1..144a7913ce5 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_fine.inst.cfg index 3ca411484da..e844f9d8990 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_standard.inst.cfg index 7d9787b30b7..38f99727687 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_draft.inst.cfg index 6aeb97bcfc6..ea465314fd9 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_efine.inst.cfg index 96baa3c36b3..4fedd884d28 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_fine.inst.cfg index cbf8db5c182..10dac63a0a0 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_standard.inst.cfg index 444701f3ea4..c196470d717 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_draft.inst.cfg index 0ddf69995b9..ad943c9b4c0 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_fine.inst.cfg index 00a42d0e386..b5829eadfa0 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_standard.inst.cfg index 7bd13060f4e..c062f66dfdc 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_draft.inst.cfg index b2b1eb43bb6..13461b69acd 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_efine.inst.cfg index caa94951a5f..ab3386b24c2 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_fine.inst.cfg index 3eb74338fd3..ec1e72432d6 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_standard.inst.cfg index 4bea650f680..de5ddffaa8c 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_draft.inst.cfg index 1140c0d664d..92727c490aa 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_fine.inst.cfg index a3aa026c585..eb9edd824d7 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_standard.inst.cfg index 22a777527ca..13fced9fa90 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_draft.inst.cfg index a776fd974ac..a54569e07b7 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_efine.inst.cfg index b46485d3336..d21940b51ee 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_fine.inst.cfg index 52f1d6e15f3..9a0b95203e1 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_standard.inst.cfg index 730333d1e35..6b7ee19e86b 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_draft.inst.cfg index 5dd52d68bb2..6ae18a8b21e 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_fine.inst.cfg index 05ead8d6ef9..9ac81270399 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_standard.inst.cfg index 01cc928c5f5..2c703191c8c 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_draft.inst.cfg index d7c9e84fbcf..07a9538f65f 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_efine.inst.cfg index fd2fd649d49..f0fcc87112c 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_fine.inst.cfg index 72644295027..95bd1f3d8e4 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_standard.inst.cfg index a03f83f31bb..bf773f65c4a 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_draft.inst.cfg index 46359875085..59bd0b6edb5 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_fine.inst.cfg index cf7330481a6..a7df472cc21 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_standard.inst.cfg index b70bc4bfd46..0fda0370f21 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_draft.inst.cfg index 1a238231e7a..9d1f7abe98c 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_efine.inst.cfg index 560cff2f9b0..c04888e54bd 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_fine.inst.cfg index 40c0a746348..165a7be1df6 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_standard.inst.cfg index e686cbd2f1a..2487452a5c5 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_draft.inst.cfg index acfba616405..3992eb56365 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_fine.inst.cfg index e5510610359..4fbf3361056 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_standard.inst.cfg index a51f972000f..c71962cb1ee 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_draft.inst.cfg index 33f7343074b..c444297122d 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_efine.inst.cfg index 5be61a07a73..f2448b4f1f7 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_fine.inst.cfg index 70791c31453..bec02e01c07 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_standard.inst.cfg index 4c9805c372f..0b61c518464 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_draft.inst.cfg index d459bfce0db..0d8d49da54f 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_fine.inst.cfg index 9e1c45c8ce0..13bb7b8a48f 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_standard.inst.cfg index d63ff9cffea..900bbfd174f 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_draft.inst.cfg index 576c8bda75d..ac47dccb196 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_efine.inst.cfg index d678e7e1e69..18854e1f8b4 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_fine.inst.cfg index a1e3afd88af..a3d82be7325 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_standard.inst.cfg index feacb669e7e..734be5fbb51 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_draft.inst.cfg index 959288634ba..23b596fef93 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_fine.inst.cfg index 5e1e53eda5c..7fb524d9883 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_standard.inst.cfg index ee1a941e0e9..fc703723a34 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_draft.inst.cfg index fefbd405602..583ccc72339 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_efine.inst.cfg index 10e02d9d167..82e8848521c 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_fine.inst.cfg index 95715b6cd18..93a3eeceeaa 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_standard.inst.cfg index 79a9ee23ac9..23665d699a9 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/gutenberg/gutenberg_global_fast_quality.inst.cfg b/resources/quality/gutenberg/gutenberg_global_fast_quality.inst.cfg index 205b7096966..85f0bb9e0e5 100644 --- a/resources/quality/gutenberg/gutenberg_global_fast_quality.inst.cfg +++ b/resources/quality/gutenberg/gutenberg_global_fast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/gutenberg/gutenberg_global_fine_quality.inst.cfg b/resources/quality/gutenberg/gutenberg_global_fine_quality.inst.cfg index b27aa17940a..55b16379381 100644 --- a/resources/quality/gutenberg/gutenberg_global_fine_quality.inst.cfg +++ b/resources/quality/gutenberg/gutenberg_global_fine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/gutenberg/gutenberg_global_normal_quality.inst.cfg b/resources/quality/gutenberg/gutenberg_global_normal_quality.inst.cfg index f4910f5e06f..a70b33ef308 100644 --- a/resources/quality/gutenberg/gutenberg_global_normal_quality.inst.cfg +++ b/resources/quality/gutenberg/gutenberg_global_normal_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/gutenberg/gutenberg_global_strong_quality.inst.cfg b/resources/quality/gutenberg/gutenberg_global_strong_quality.inst.cfg index 55c3a69a165..12d536938c3 100644 --- a/resources/quality/gutenberg/gutenberg_global_strong_quality.inst.cfg +++ b/resources/quality/gutenberg/gutenberg_global_strong_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = strong -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/high.inst.cfg b/resources/quality/high.inst.cfg index 0b8675085f6..5b78cb99d1b 100644 --- a/resources/quality/high.inst.cfg +++ b/resources/quality/high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/hms434/hms434_global_Coarse_Quality.inst.cfg b/resources/quality/hms434/hms434_global_Coarse_Quality.inst.cfg index 7826d97ee5a..bf18f50f12c 100644 --- a/resources/quality/hms434/hms434_global_Coarse_Quality.inst.cfg +++ b/resources/quality/hms434/hms434_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/hms434/hms434_global_High_Quality.inst.cfg b/resources/quality/hms434/hms434_global_High_Quality.inst.cfg index ef85f8fc943..c70f229a778 100644 --- a/resources/quality/hms434/hms434_global_High_Quality.inst.cfg +++ b/resources/quality/hms434/hms434_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/hms434/hms434_global_Normal_Quality.inst.cfg b/resources/quality/hms434/hms434_global_Normal_Quality.inst.cfg index 3420b89acb0..9b016128d31 100644 --- a/resources/quality/hms434/hms434_global_Normal_Quality.inst.cfg +++ b/resources/quality/hms434/hms434_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/hms434/pla/hms434_0.4_pla_high.inst.cfg b/resources/quality/hms434/pla/hms434_0.4_pla_high.inst.cfg index 22928aaf4be..7c6743494cc 100644 --- a/resources/quality/hms434/pla/hms434_0.4_pla_high.inst.cfg +++ b/resources/quality/hms434/pla/hms434_0.4_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm TP extruder weight = 1 diff --git a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_coarse.inst.cfg b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_coarse.inst.cfg index b38847c3a59..8edf92e6eb1 100644 --- a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_fine.inst.cfg b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_fine.inst.cfg index d1e45c384ca..60703ed4a0a 100644 --- a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_medium.inst.cfg b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_medium.inst.cfg index 4a6bef8a106..50f79ee486a 100644 --- a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_medium.inst.cfg +++ b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_medium.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_coarse.inst.cfg b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_coarse.inst.cfg index 58f20365c5e..4382e3194bd 100644 --- a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_fine.inst.cfg b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_fine.inst.cfg index a411099609c..ff8acff08f1 100644 --- a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_medium.inst.cfg b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_medium.inst.cfg index 40c5abd25d1..194740ca189 100644 --- a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_medium.inst.cfg +++ b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_medium.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_ultrafine.inst.cfg b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_ultrafine.inst.cfg index 49015dd7691..649d0aa573b 100644 --- a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_ultrafine.inst.cfg +++ b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_ultrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultrahigh -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 2 diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg index b84019e7916..33f64bac610 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg index 8aa8ee6203e..55ef0c54bf8 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg index 5e6ed2682c6..e9efa56b410 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg index db92713bd0c..79c5d001560 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultrahigh -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_coarse.inst.cfg b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_coarse.inst.cfg index 58087e1241d..24975658e7e 100644 --- a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_fine.inst.cfg b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_fine.inst.cfg index fbb1051fdc0..92cc50fe64e 100644 --- a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_medium.inst.cfg b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_medium.inst.cfg index 838318b6b29..ee758d4c06b 100644 --- a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_medium.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_medium.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_coarse.inst.cfg b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_coarse.inst.cfg index 7bfac678aee..f400857822a 100644 --- a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_fine.inst.cfg b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_fine.inst.cfg index a7059f87661..ce0a5d45f5a 100644 --- a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_medium.inst.cfg b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_medium.inst.cfg index 6518e6e4106..eddfaeb3ae2 100644 --- a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_medium.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_medium.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_ultrafine.inst.cfg b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_ultrafine.inst.cfg index cba3af5b2b6..4d498a7d4e9 100644 --- a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_ultrafine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_ultrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultrahigh -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 2 diff --git a/resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg b/resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg index 9fde6a87eab..1f0999bac1e 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg b/resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg index 419fa6b300d..4cfc017bffa 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg b/resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg index c352981f2da..952c67285c9 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg b/resources/quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg index a1496e36cce..a9f4ce41365 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultrahigh -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/inat/inat_base_advanced_materials.inst.cfg b/resources/quality/inat/inat_base_advanced_materials.inst.cfg index b8db0944348..ddd332c199d 100644 --- a/resources/quality/inat/inat_base_advanced_materials.inst.cfg +++ b/resources/quality/inat/inat_base_advanced_materials.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal_advanced -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/inat/inat_base_draft.inst.cfg b/resources/quality/inat/inat_base_draft.inst.cfg index b117afb385e..e24e5cb6849 100644 --- a/resources/quality/inat/inat_base_draft.inst.cfg +++ b/resources/quality/inat/inat_base_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/inat/inat_base_fine.inst.cfg b/resources/quality/inat/inat_base_fine.inst.cfg index b60f936a152..3274629305c 100644 --- a/resources/quality/inat/inat_base_fine.inst.cfg +++ b/resources/quality/inat/inat_base_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/inat/inat_base_standard.inst.cfg b/resources/quality/inat/inat_base_standard.inst.cfg index 38b46b98e42..a7ff77f71c0 100644 --- a/resources/quality/inat/inat_base_standard.inst.cfg +++ b/resources/quality/inat/inat_base_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/inat/inat_base_strong.inst.cfg b/resources/quality/inat/inat_base_strong.inst.cfg index 0a305179df0..bb49238d337 100644 --- a/resources/quality/inat/inat_base_strong.inst.cfg +++ b/resources/quality/inat/inat_base_strong.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = strong -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/inat/inat_base_tree_support.inst.cfg b/resources/quality/inat/inat_base_tree_support.inst.cfg index 484defc5346..c7985d704e1 100644 --- a/resources/quality/inat/inat_base_tree_support.inst.cfg +++ b/resources/quality/inat/inat_base_tree_support.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal_tree_supp -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.12_detail.inst.cfg b/resources/quality/jgaurora_a6/jgaurora_a6_0.12_detail.inst.cfg index 748bbc5b328..61f44fe2db8 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.12_detail.inst.cfg +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.12_detail.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = true quality_type = detail -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.16_optimal.inst.cfg b/resources/quality/jgaurora_a6/jgaurora_a6_0.16_optimal.inst.cfg index 30bb6ab0c70..d29c72d391c 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.16_optimal.inst.cfg +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.16_optimal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = true quality_type = optimal -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.24_draft.inst.cfg b/resources/quality/jgaurora_a6/jgaurora_a6_0.24_draft.inst.cfg index 733ff7624ff..1e07e55fff6 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.24_draft.inst.cfg +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.24_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = true quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg b/resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg index f2a7c48e9b0..4ee1bab58b1 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = true quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.2_normal.inst.cfg b/resources/quality/jgaurora_a6/jgaurora_a6_0.2_normal.inst.cfg index 38978f7b0d3..2df4e253282 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.2_normal.inst.cfg +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = true quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/katihal/alya3dp_normal.inst.cfg b/resources/quality/katihal/alya3dp_normal.inst.cfg index acde117ae3d..b9605426b8e 100644 --- a/resources/quality/katihal/alya3dp_normal.inst.cfg +++ b/resources/quality/katihal/alya3dp_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = alya_normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg b/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg index 4e1f5b9fe41..0cfa3151707 100644 --- a/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg +++ b/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = alya_normal -setting_version = 22 +setting_version = 23 type = quality weight = 3 diff --git a/resources/quality/katihal/alyanx3dp_normal.inst.cfg b/resources/quality/katihal/alyanx3dp_normal.inst.cfg index 8e5946f5b9e..4accd0ff522 100644 --- a/resources/quality/katihal/alyanx3dp_normal.inst.cfg +++ b/resources/quality/katihal/alyanx3dp_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = alyanx_normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg b/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg index 8058cff6c09..809f08de220 100644 --- a/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg +++ b/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = alyanx_normal -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/katihal/kupido_normal.inst.cfg b/resources/quality/katihal/kupido_normal.inst.cfg index 2efc4fe1ae3..cb6a330c8bd 100644 --- a/resources/quality/katihal/kupido_normal.inst.cfg +++ b/resources/quality/katihal/kupido_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = kupido_normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg b/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg index fbdfc42b77c..63f63fe1942 100644 --- a/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg +++ b/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = kupido_normal -setting_version = 22 +setting_version = 23 type = quality weight = 3 diff --git a/resources/quality/katihal/kupido_normal_generic_pla.inst.cfg b/resources/quality/katihal/kupido_normal_generic_pla.inst.cfg index ee34e155a26..d3633935935 100644 --- a/resources/quality/katihal/kupido_normal_generic_pla.inst.cfg +++ b/resources/quality/katihal/kupido_normal_generic_pla.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = kupido_normal -setting_version = 22 +setting_version = 23 type = quality weight = 3 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_draft.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_draft.inst.cfg index fe12445795c..d809ae48ad5 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_draft.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_extra_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_extra_fine.inst.cfg index b9de5eb8af1..fc8fd5c7a5c 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_extra_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_fine.inst.cfg index c2dbd5b30c3..34651bc83be 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_low.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_low.inst.cfg index 7a3d2cdf25b..456784f7ca3 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_low.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_normal.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_normal.inst.cfg index 1e20e9f01ed..8a4bcd4968e 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_normal.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_draft.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_draft.inst.cfg index b4cc00888b8..e413d82cf5d 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_draft.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_extra_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_extra_fine.inst.cfg index 9a861742339..ffe75aeb45e 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_extra_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_fine.inst.cfg index 6c0397ec548..099e5081b7a 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_low.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_low.inst.cfg index 4aad3524b3f..6b7c08d2bd2 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_low.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_normal.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_normal.inst.cfg index 873469a2cd1..d8d485ab995 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_normal.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_draft.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_draft.inst.cfg index 2650cf98e85..d92fd6ca253 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_draft.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_extra_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_extra_fine.inst.cfg index d090bb6c4e5..297a0b9e85c 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_extra_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_fine.inst.cfg index fc52768f4e5..5630fdefe0a 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_low.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_low.inst.cfg index 6de5c3e183f..a74f9f83b0b 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_low.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_normal.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_normal.inst.cfg index 89f85943133..cb5baf62b7d 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_normal.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/key3d/key3d_tyro_best.inst.cfg b/resources/quality/key3d/key3d_tyro_best.inst.cfg index c7a207387e1..e5b68e36b8d 100644 --- a/resources/quality/key3d/key3d_tyro_best.inst.cfg +++ b/resources/quality/key3d/key3d_tyro_best.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = best -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/key3d/key3d_tyro_fast.inst.cfg b/resources/quality/key3d/key3d_tyro_fast.inst.cfg index 80c0f84c914..d988800c1ae 100644 --- a/resources/quality/key3d/key3d_tyro_fast.inst.cfg +++ b/resources/quality/key3d/key3d_tyro_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/key3d/key3d_tyro_normal.inst.cfg b/resources/quality/key3d/key3d_tyro_normal.inst.cfg index 3c284849d7b..a7d361bdacc 100644 --- a/resources/quality/key3d/key3d_tyro_normal.inst.cfg +++ b/resources/quality/key3d/key3d_tyro_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/kingroon/ABS/kingroon_0.2_ABS_super.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.2_ABS_super.inst.cfg index 5aff66437a1..6e146e7b701 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.2_ABS_super.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.2_ABS_ultra.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.2_ABS_ultra.inst.cfg index 40a5e5b90a1..1567cdd68d9 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_adaptive.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_adaptive.inst.cfg index 421e1aa1fa0..267c47b676a 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_low.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_low.inst.cfg index bd1ec6bc532..68c797149ef 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_low.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_standard.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_standard.inst.cfg index 0477f43fba4..7b5ed953547 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_standard.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_super.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_super.inst.cfg index 45fc4b20879..0f4d5f9132f 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_super.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_adaptive.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_adaptive.inst.cfg index b931a8aad5e..201e6a7b27c 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_low.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_low.inst.cfg index f436ddcaeb4..4ff7b3bcb51 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_low.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_standard.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_standard.inst.cfg index 36ae1acc9e3..9732857f872 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_standard.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_super.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_super.inst.cfg index f0a128e58df..600158f3281 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_super.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_adaptive.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_adaptive.inst.cfg index 65944f8c3bf..08ae5147ed1 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_low.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_low.inst.cfg index 31a8c4bc303..6bd87de8b18 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_low.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_standard.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_standard.inst.cfg index 22da321da06..a9ee4d58da9 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_standard.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_super.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_super.inst.cfg index 96c378d280c..f92db9d0d3a 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_super.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.6_ABS_standard.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.6_ABS_standard.inst.cfg index 9b63dde5a40..c13c12ff0e0 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.6_ABS_standard.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.8_ABS_draft.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.8_ABS_draft.inst.cfg index 74b867d5bba..9705ae65b44 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.8_ABS_draft.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_1.0_ABS_draft.inst.cfg b/resources/quality/kingroon/ABS/kingroon_1.0_ABS_draft.inst.cfg index a542a404db9..4bf46163385 100644 --- a/resources/quality/kingroon/ABS/kingroon_1.0_ABS_draft.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.2_PETG_super.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.2_PETG_super.inst.cfg index fda03549183..18743bfb144 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.2_PETG_super.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.2_PETG_ultra.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.2_PETG_ultra.inst.cfg index e65797d2a08..90b68a4b2dd 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_adaptive.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_adaptive.inst.cfg index 3fa5e6acf0d..f4e2967c60e 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_low.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_low.inst.cfg index b2f95db0f9b..90161eeb14e 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_low.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_standard.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_standard.inst.cfg index c6aad09ce3f..88b3f0fac3b 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_standard.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_super.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_super.inst.cfg index 21addedb5e7..669ee1ba2d6 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_super.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_adaptive.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_adaptive.inst.cfg index 24e2da4f335..ecda7d46d97 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_low.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_low.inst.cfg index 9615254fd07..c7c486a8b29 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_low.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_standard.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_standard.inst.cfg index 20fbcfb72cb..96103eaecaf 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_standard.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_super.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_super.inst.cfg index a483c928c1c..3b9e7070587 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_super.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_adaptive.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_adaptive.inst.cfg index 9256aa219f4..f65914591b0 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_low.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_low.inst.cfg index 47073a583d3..dd9512693f9 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_low.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_standard.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_standard.inst.cfg index 0a07077e0ba..8ddbf80ae31 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_standard.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_super.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_super.inst.cfg index f9f5a29fb0f..2d3e1274212 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_super.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.6_PETG_standard.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.6_PETG_standard.inst.cfg index cd11cf13415..712d39c19dd 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.6_PETG_standard.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.8_PETG_draft.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.8_PETG_draft.inst.cfg index 54c202b312a..09210cdb3cd 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.8_PETG_draft.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_1.0_PETG_draft.inst.cfg b/resources/quality/kingroon/PETG/kingroon_1.0_PETG_draft.inst.cfg index a9102ff5bca..70efb35bad7 100644 --- a/resources/quality/kingroon/PETG/kingroon_1.0_PETG_draft.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.2_PLA_super.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.2_PLA_super.inst.cfg index a191f9bcff6..0d75516111d 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.2_PLA_super.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.2_PLA_ultra.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.2_PLA_ultra.inst.cfg index 23491e7efdf..a8cf9eac901 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_adaptive.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_adaptive.inst.cfg index 24a9e9b6b8d..096a94fbbd5 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_low.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_low.inst.cfg index e95c9baddb0..184fd09da77 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_low.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_standard.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_standard.inst.cfg index fc4cdaa8e60..825f2a1ef37 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_standard.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_super.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_super.inst.cfg index add438ea604..a2432760921 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_super.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_adaptive.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_adaptive.inst.cfg index e790b8ed55e..0683da11e5b 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_low.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_low.inst.cfg index 33aae2c1f7b..272fd0531fa 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_low.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_standard.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_standard.inst.cfg index 0189652c327..78116453e2e 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_standard.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_super.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_super.inst.cfg index 175135546a1..3b02bf9e147 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_super.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_adaptive.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_adaptive.inst.cfg index 086dfa8ef32..08afefaa7c7 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_low.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_low.inst.cfg index 711f6224f7b..c07aec9317d 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_low.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_standard.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_standard.inst.cfg index 20aa28f47c8..6309f6637e8 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_standard.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_super.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_super.inst.cfg index 62a1033ba7a..58c6b736973 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_super.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_draft.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_draft.inst.cfg index 332f9c28036..8a7142b9c69 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_draft.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_low.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_low.inst.cfg index 748b2515cc6..bf4471ea154 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_low.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_standard.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_standard.inst.cfg index 5cf6bdcc9e6..9e4c79f1a44 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_standard.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.8_PLA_draft.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.8_PLA_draft.inst.cfg index 1cc706dd5ca..43328ed7c25 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.8_PLA_draft.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_1.0_PLA_draft.inst.cfg b/resources/quality/kingroon/PLA/kingroon_1.0_PLA_draft.inst.cfg index 0403091e22c..a22662c9069 100644 --- a/resources/quality/kingroon/PLA/kingroon_1.0_PLA_draft.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_adaptive.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_adaptive.inst.cfg index daa63883b7c..f27334e5f47 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_standard.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_standard.inst.cfg index 6e3240ae1f6..cbc2f2688d5 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_standard.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_super.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_super.inst.cfg index ffdf3375f7a..cd78f0f22db 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_super.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_adaptive.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_adaptive.inst.cfg index 6be460ffcb9..0ff82bd8f19 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_standard.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_standard.inst.cfg index c3cc178ac78..7e15efbd9c7 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_standard.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_super.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_super.inst.cfg index 6d6bd9b5563..91ff4fa64be 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_super.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_adaptive.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_adaptive.inst.cfg index 13507c0291c..335da8db187 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_standard.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_standard.inst.cfg index d4ae296463f..5d2f1f1b45d 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_standard.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_super.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_super.inst.cfg index 3efa4b11262..48fa66b72bb 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_super.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.6_TPU_standard.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.6_TPU_standard.inst.cfg index 29451a74b50..0b965f6a3db 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.6_TPU_standard.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.8_TPU_draft.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.8_TPU_draft.inst.cfg index 99476d6483b..6b7aa3fb021 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.8_TPU_draft.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_1.0_TPU_draft.inst.cfg b/resources/quality/kingroon/TPU/kingroon_1.0_TPU_draft.inst.cfg index f9965becede..8fa29c3e7fe 100644 --- a/resources/quality/kingroon/TPU/kingroon_1.0_TPU_draft.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/kingroon/kingroon_global_adaptive.inst.cfg b/resources/quality/kingroon/kingroon_global_adaptive.inst.cfg index 770cdbc5d21..fd3c7d48c6e 100644 --- a/resources/quality/kingroon/kingroon_global_adaptive.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/kingroon/kingroon_global_draft.inst.cfg b/resources/quality/kingroon/kingroon_global_draft.inst.cfg index c0ef094bf8b..0e1282093d0 100644 --- a/resources/quality/kingroon/kingroon_global_draft.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/kingroon/kingroon_global_low.inst.cfg b/resources/quality/kingroon/kingroon_global_low.inst.cfg index 34ee7bfb8ef..d0687eb4ba2 100644 --- a/resources/quality/kingroon/kingroon_global_low.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/kingroon/kingroon_global_standard.inst.cfg b/resources/quality/kingroon/kingroon_global_standard.inst.cfg index b855418b359..7a6a1a0ff23 100644 --- a/resources/quality/kingroon/kingroon_global_standard.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/kingroon/kingroon_global_super.inst.cfg b/resources/quality/kingroon/kingroon_global_super.inst.cfg index e1ba09843ce..24651d6e30f 100644 --- a/resources/quality/kingroon/kingroon_global_super.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/kingroon/kingroon_global_ultra.inst.cfg b/resources/quality/kingroon/kingroon_global_ultra.inst.cfg index 8f923b9d4cf..ed8f7487eee 100644 --- a/resources/quality/kingroon/kingroon_global_ultra.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/koonovo/koonovo_base_global_draft.inst.cfg b/resources/quality/koonovo/koonovo_base_global_draft.inst.cfg index 0743bebed84..068213f1675 100644 --- a/resources/quality/koonovo/koonovo_base_global_draft.inst.cfg +++ b/resources/quality/koonovo/koonovo_base_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/koonovo/koonovo_base_global_standard.inst.cfg b/resources/quality/koonovo/koonovo_base_global_standard.inst.cfg index fd717fe24d0..79ac2a8dd11 100644 --- a/resources/quality/koonovo/koonovo_base_global_standard.inst.cfg +++ b/resources/quality/koonovo/koonovo_base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/koonovo/koovono_base_global_high.inst.cfg b/resources/quality/koonovo/koovono_base_global_high.inst.cfg index c14a9e65c9a..fa7f77732d3 100644 --- a/resources/quality/koonovo/koovono_base_global_high.inst.cfg +++ b/resources/quality/koonovo/koovono_base_global_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/liquid/liquid_global_Draft_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Draft_Quality.inst.cfg index 77717ab2b0d..529fb00e0cc 100644 --- a/resources/quality/liquid/liquid_global_Draft_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/liquid/liquid_global_Fast_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Fast_Quality.inst.cfg index c5b9fa0acb9..2555cbf1630 100644 --- a/resources/quality/liquid/liquid_global_Fast_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/liquid/liquid_global_High_Quality.inst.cfg b/resources/quality/liquid/liquid_global_High_Quality.inst.cfg index b8a7c1eb8d1..bc4dd518f7e 100644 --- a/resources/quality/liquid/liquid_global_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/liquid/liquid_global_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Normal_Quality.inst.cfg index c5208859479..50d4b9d85cd 100644 --- a/resources/quality/liquid/liquid_global_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/liquid/liquid_global_Superdraft_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Superdraft_Quality.inst.cfg index 355165ec905..0b96cdc9f16 100644 --- a/resources/quality/liquid/liquid_global_Superdraft_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Superdraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/liquid/liquid_global_Verydraft_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Verydraft_Quality.inst.cfg index d47c09e89e1..8ad236a3a54 100644 --- a/resources/quality/liquid/liquid_global_Verydraft_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Verydraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg index 038affd56f4..7edc4475d1f 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg index 5091d36813c..adbf76cf594 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg index 0420284fa85..8f02ace6221 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg index 927bdbe7b9e..481f9286689 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_CPE_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_CPE_Draft_Print.inst.cfg index 998edaada1f..793b1410394 100644 --- a/resources/quality/liquid/liquid_vo0.4_CPE_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_CPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_CPE_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_CPE_Fast_Print.inst.cfg index c78ee91b58f..82d3afb3c3d 100644 --- a/resources/quality/liquid/liquid_vo0.4_CPE_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_CPE_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_CPE_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_CPE_High_Quality.inst.cfg index 33163ca6198..79a9ec7afe1 100644 --- a/resources/quality/liquid/liquid_vo0.4_CPE_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_CPE_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_CPE_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_CPE_Normal_Quality.inst.cfg index b238e6ec0ed..20e046ae9d0 100644 --- a/resources/quality/liquid/liquid_vo0.4_CPE_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_CPE_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_Nylon_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_Nylon_Draft_Print.inst.cfg index 8b18b13ee88..9ab6e00494f 100644 --- a/resources/quality/liquid/liquid_vo0.4_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_Nylon_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_Nylon_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_Nylon_Fast_Print.inst.cfg index d6142952a33..bad45f35ff3 100644 --- a/resources/quality/liquid/liquid_vo0.4_Nylon_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_Nylon_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_Nylon_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_Nylon_High_Quality.inst.cfg index cac80d655dc..2c1b409a61e 100644 --- a/resources/quality/liquid/liquid_vo0.4_Nylon_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_Nylon_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_Nylon_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_Nylon_Normal_Quality.inst.cfg index 5385420a8a3..92e7b6f1dc5 100644 --- a/resources/quality/liquid/liquid_vo0.4_Nylon_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_Nylon_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg index 02d1292c171..43dad6ef40c 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg index b1c540d01ed..61e64bcdce9 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg index 6aac1f4972e..72279f861e8 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg index e831dfb2540..b0c5a190d2b 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg index 6e0ac107189..eb8bfd773d1 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg index 5e84c3e1a12..64ab7b9b1ad 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg index 8974dcbb034..3ed34d7d212 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg index cbada0be182..6f2cace35e5 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg index 70817b06e31..9a99d3d2437 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg index b6991202b2b..fc113b83c23 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg index 930f5cf3fd0..3a2cb07bd10 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg index 6595446feef..3119dc61397 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg index 1904758532a..f873d577d77 100644 --- a/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg index 2a0a5729ece..3eb242372e0 100644 --- a/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg index 304c4f17f0b..65e6e3b18e9 100644 --- a/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_TPU_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_TPU_Draft_Print.inst.cfg index 74f1ad39f3a..796de0a70be 100644 --- a/resources/quality/liquid/liquid_vo0.4_TPU_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_TPU_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_TPU_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_TPU_Fast_Print.inst.cfg index 33eb2e3043c..fee2e033768 100644 --- a/resources/quality/liquid/liquid_vo0.4_TPU_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_TPU_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_TPU_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_TPU_Normal_Quality.inst.cfg index 9390870f89f..bfbcb68eca3 100644 --- a/resources/quality/liquid/liquid_vo0.4_TPU_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_TPU_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.6_CFFCPE_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_CFFCPE_Draft_Print.inst.cfg index 6ebaa7e2b00..da52676e53e 100644 --- a/resources/quality/liquid/liquid_vo0.6_CFFCPE_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_CFFCPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.6_CFFPA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_CFFPA_Draft_Print.inst.cfg index 697a61bcc4d..e4b64bc6dd5 100644 --- a/resources/quality/liquid/liquid_vo0.6_CFFPA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_CFFPA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.6_GFFCPE_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_GFFCPE_Draft_Print.inst.cfg index fc301bb5871..2d2411a178e 100644 --- a/resources/quality/liquid/liquid_vo0.6_GFFCPE_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_GFFCPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.6_GFFPA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_GFFPA_Draft_Print.inst.cfg index 9c97b39ab2c..2b81e1bf5c4 100644 --- a/resources/quality/liquid/liquid_vo0.6_GFFPA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_GFFPA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg index bc712bf9997..b1191d4a496 100644 --- a/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.6 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg index c51c068ae2d..b38068f681f 100644 --- a/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg index 3b6749dfb9b..ac516c91821 100644 --- a/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.6 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg index 45418e5994c..7141c80b651 100644 --- a/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_ABS_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_ABS_Draft_Print.inst.cfg index f2065b827f4..30dc909d488 100644 --- a/resources/quality/liquid/liquid_vo0.8_ABS_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_ABS_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_ABS_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_ABS_Superdraft_Print.inst.cfg index b821b28fd94..2fad19c793e 100644 --- a/resources/quality/liquid/liquid_vo0.8_ABS_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_ABS_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_ABS_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_ABS_Verydraft_Print.inst.cfg index d7acfa7c162..29a059069b0 100644 --- a/resources/quality/liquid/liquid_vo0.8_ABS_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_ABS_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg index 90424ee65e8..504681900fb 100644 --- a/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg index 7857ed00e75..99167908718 100644 --- a/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg index 4194c6f3b7b..9197ac19ea5 100644 --- a/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg index 87dd8765880..650c2927013 100644 --- a/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg index 891a20540dc..e97ebb3a2b1 100644 --- a/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg index e0090947603..23d6bb0ee51 100644 --- a/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_PC_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PC_Fast_Print.inst.cfg index a0343c51737..e833d7f1328 100644 --- a/resources/quality/liquid/liquid_vo0.8_PC_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PC_Fast_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_PC_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PC_Superdraft_Print.inst.cfg index 5d1394e463e..fe21da31070 100644 --- a/resources/quality/liquid/liquid_vo0.8_PC_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PC_Superdraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_PC_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PC_Verydraft_Print.inst.cfg index e945519391e..40970b649c6 100644 --- a/resources/quality/liquid/liquid_vo0.8_PC_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PC_Verydraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg index 947c042b8c2..c889900b38f 100644 --- a/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg index 08cb14cb267..bef9ca1bbe2 100644 --- a/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg index 187ed1f2123..bd78aaee1c4 100644 --- a/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg index 10b6e8185a5..cf03a5eef06 100644 --- a/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg index ed0fc7fd8a5..279bf1b9cd5 100644 --- a/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg index 9def9ecb974..bcb84f17d2b 100644 --- a/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg index 4c3f60a2401..846f1debc2c 100644 --- a/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg index 1b7c05ac3c3..ca74c20bbc8 100644 --- a/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg index 7cbb60c3aac..5397b2ffd68 100644 --- a/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg index 4994e3f9f45..e89de5246ff 100644 --- a/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg index fd15d041b82..f14bf32f35b 100644 --- a/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg index 5c88fb165f8..19b419068a7 100644 --- a/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_super.inst.cfg index 260a3a81c8f..909a8cebee3 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_ultra.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_ultra.inst.cfg index fda970be10b..7ed1077b3ed 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_ultra.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_super.inst.cfg index ada9e0eb897..449deae2ad6 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_ultra.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_ultra.inst.cfg index c5440ccafae..5473b935f65 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_ultra.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_adaptive.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_adaptive.inst.cfg index d2916ea2f0f..0a20b2fbf13 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_adaptive.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_low.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_low.inst.cfg index 290665a0ff6..21a69ce7c24 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_low.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_standard.inst.cfg index bde91591bec..d0f709d405c 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_super.inst.cfg index 2678b7e383d..7bb2651f33d 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_adaptive.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_adaptive.inst.cfg index f38b46a7646..bb773464c8d 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_adaptive.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_low.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_low.inst.cfg index 4860f58cf12..e355bd25b4a 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_low.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_standard.inst.cfg index 4beedcef6b0..617821370ae 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_super.inst.cfg index 277e3af31a5..84339d288ae 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_adaptive.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_adaptive.inst.cfg index e130e03c10e..69869e3fd61 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_adaptive.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_standard.inst.cfg index f1b29175a04..a51303702cb 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_super.inst.cfg index e8d45e0c402..6dda11cc518 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PETG_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PETG_standard.inst.cfg index 4f2bd1f74af..ad87dd1196d 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PETG_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_draft.inst.cfg index be6dcc53706..df5df7cf6ad 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_draft.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_low.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_low.inst.cfg index 38dcfbd232c..d2a4c508176 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_low.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_standard.inst.cfg index a9dfd3aac40..097f8d4eca5 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.6_generic_TPU_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.6_generic_TPU_standard.inst.cfg index 438e4b02297..d30b3f83c55 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.6_generic_TPU_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.8_generic_PETG_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.8_generic_PETG_draft.inst.cfg index fa481c4e8e4..613a72ae4aa 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.8_generic_PETG_draft.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.8_generic_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.8_generic_PLA_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.8_generic_PLA_draft.inst.cfg index aa497ec2432..19c26a6cc3d 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.8_generic_PLA_draft.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.8_generic_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.8_generic_TPU_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.8_generic_TPU_draft.inst.cfg index 9bec35aae73..6e81d2d1c62 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.8_generic_TPU_draft.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.8_generic_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_global_adaptive.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_adaptive.inst.cfg index 7a74241eafd..deabef32a8a 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_adaptive.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/lnl3d/lnl3d_base_global_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_draft.inst.cfg index d6d2eb6304c..fa55dbe4278 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_draft.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/lnl3d/lnl3d_base_global_low.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_low.inst.cfg index cb1f19fb954..3d4f20932a8 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_low.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/lnl3d/lnl3d_base_global_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_standard.inst.cfg index 71f312f4f4a..a5b2708995f 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/lnl3d/lnl3d_base_global_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_super.inst.cfg index 68a37d8f143..fb492bda7bf 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/lnl3d/lnl3d_base_global_ultra.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_ultra.inst.cfg index 7bad9bb2110..e6f942ff5f3 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_ultra.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/longer/ABS/longer_0.4_ABS_adaptive.inst.cfg b/resources/quality/longer/ABS/longer_0.4_ABS_adaptive.inst.cfg index 8f1e23ca36c..c0ad2d4f369 100644 --- a/resources/quality/longer/ABS/longer_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/longer/ABS/longer_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/ABS/longer_0.4_ABS_low.inst.cfg b/resources/quality/longer/ABS/longer_0.4_ABS_low.inst.cfg index 3d9ae4b2453..c617b11b873 100644 --- a/resources/quality/longer/ABS/longer_0.4_ABS_low.inst.cfg +++ b/resources/quality/longer/ABS/longer_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/ABS/longer_0.4_ABS_standard.inst.cfg b/resources/quality/longer/ABS/longer_0.4_ABS_standard.inst.cfg index 3c409fecdaf..3707ac77ffa 100644 --- a/resources/quality/longer/ABS/longer_0.4_ABS_standard.inst.cfg +++ b/resources/quality/longer/ABS/longer_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/ABS/longer_0.4_ABS_super.inst.cfg b/resources/quality/longer/ABS/longer_0.4_ABS_super.inst.cfg index aa240b5986a..64a55d3c0ad 100644 --- a/resources/quality/longer/ABS/longer_0.4_ABS_super.inst.cfg +++ b/resources/quality/longer/ABS/longer_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PETG/longer_0.4_PETG_adaptive.inst.cfg b/resources/quality/longer/PETG/longer_0.4_PETG_adaptive.inst.cfg index 5043c5df61c..940dddc62b4 100644 --- a/resources/quality/longer/PETG/longer_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/longer/PETG/longer_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PETG/longer_0.4_PETG_low.inst.cfg b/resources/quality/longer/PETG/longer_0.4_PETG_low.inst.cfg index 3dbda87b8e7..175bcd85d75 100644 --- a/resources/quality/longer/PETG/longer_0.4_PETG_low.inst.cfg +++ b/resources/quality/longer/PETG/longer_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PETG/longer_0.4_PETG_standard.inst.cfg b/resources/quality/longer/PETG/longer_0.4_PETG_standard.inst.cfg index 31732494cb8..e4fdecd3329 100644 --- a/resources/quality/longer/PETG/longer_0.4_PETG_standard.inst.cfg +++ b/resources/quality/longer/PETG/longer_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PETG/longer_0.4_PETG_super.inst.cfg b/resources/quality/longer/PETG/longer_0.4_PETG_super.inst.cfg index 48418d8b779..c11539a7fed 100644 --- a/resources/quality/longer/PETG/longer_0.4_PETG_super.inst.cfg +++ b/resources/quality/longer/PETG/longer_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PLA/longer_0.4_PLA_adaptive.inst.cfg b/resources/quality/longer/PLA/longer_0.4_PLA_adaptive.inst.cfg index 425ac85661a..47077570bf2 100644 --- a/resources/quality/longer/PLA/longer_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/longer/PLA/longer_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PLA/longer_0.4_PLA_low.inst.cfg b/resources/quality/longer/PLA/longer_0.4_PLA_low.inst.cfg index bccdb2d8f5c..49e6e755c5d 100644 --- a/resources/quality/longer/PLA/longer_0.4_PLA_low.inst.cfg +++ b/resources/quality/longer/PLA/longer_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PLA/longer_0.4_PLA_standard.inst.cfg b/resources/quality/longer/PLA/longer_0.4_PLA_standard.inst.cfg index 619d279154f..3b57ab093a8 100644 --- a/resources/quality/longer/PLA/longer_0.4_PLA_standard.inst.cfg +++ b/resources/quality/longer/PLA/longer_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PLA/longer_0.4_PLA_super.inst.cfg b/resources/quality/longer/PLA/longer_0.4_PLA_super.inst.cfg index d9a9f1e113e..84ce5bc92e4 100644 --- a/resources/quality/longer/PLA/longer_0.4_PLA_super.inst.cfg +++ b/resources/quality/longer/PLA/longer_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/TPU/longer_0.4_TPU_adaptive.inst.cfg b/resources/quality/longer/TPU/longer_0.4_TPU_adaptive.inst.cfg index c3e16ffe4a2..a9c094251b3 100644 --- a/resources/quality/longer/TPU/longer_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/longer/TPU/longer_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/TPU/longer_0.4_TPU_standard.inst.cfg b/resources/quality/longer/TPU/longer_0.4_TPU_standard.inst.cfg index e63a15a0509..fccb8288ed2 100644 --- a/resources/quality/longer/TPU/longer_0.4_TPU_standard.inst.cfg +++ b/resources/quality/longer/TPU/longer_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/TPU/longer_0.4_TPU_super.inst.cfg b/resources/quality/longer/TPU/longer_0.4_TPU_super.inst.cfg index dc0896bfbec..ea294530e0a 100644 --- a/resources/quality/longer/TPU/longer_0.4_TPU_super.inst.cfg +++ b/resources/quality/longer/TPU/longer_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/longer_global_adaptive.inst.cfg b/resources/quality/longer/longer_global_adaptive.inst.cfg index ee1aca1c405..fe9c855ded6 100644 --- a/resources/quality/longer/longer_global_adaptive.inst.cfg +++ b/resources/quality/longer/longer_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/longer/longer_global_draft.inst.cfg b/resources/quality/longer/longer_global_draft.inst.cfg index 1605c4efc94..a93d4aa2550 100644 --- a/resources/quality/longer/longer_global_draft.inst.cfg +++ b/resources/quality/longer/longer_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/longer/longer_global_low.inst.cfg b/resources/quality/longer/longer_global_low.inst.cfg index 44e80b2668a..3e38f97bef4 100644 --- a/resources/quality/longer/longer_global_low.inst.cfg +++ b/resources/quality/longer/longer_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/longer/longer_global_standard.inst.cfg b/resources/quality/longer/longer_global_standard.inst.cfg index 383249951d4..c8ee6fdb8ec 100644 --- a/resources/quality/longer/longer_global_standard.inst.cfg +++ b/resources/quality/longer/longer_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/longer/longer_global_super.inst.cfg b/resources/quality/longer/longer_global_super.inst.cfg index 1793f5c8a92..db208391a3b 100644 --- a/resources/quality/longer/longer_global_super.inst.cfg +++ b/resources/quality/longer/longer_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/longer/longer_global_ultra.inst.cfg b/resources/quality/longer/longer_global_ultra.inst.cfg index cb99daa490a..7bf07f7c855 100644 --- a/resources/quality/longer/longer_global_ultra.inst.cfg +++ b/resources/quality/longer/longer_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/makeblock/makeblock_mcreate_pla_normal.inst.cfg b/resources/quality/makeblock/makeblock_mcreate_pla_normal.inst.cfg index 028c044d19e..5afe35de2cc 100644 --- a/resources/quality/makeblock/makeblock_mcreate_pla_normal.inst.cfg +++ b/resources/quality/makeblock/makeblock_mcreate_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_draft.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_draft.inst.cfg index 9dd8250ed5a..6313dcb6be2 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_draft.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_fast.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_fast.inst.cfg index ecd8f1f0404..37eb3c17627 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_fast.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_high.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_high.inst.cfg index f750b078497..dc2a3dd90f5 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_high.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_normal.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_normal.inst.cfg index 93167419ba7..35498f12372 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_normal.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_superdraft.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_superdraft.inst.cfg index 888b08f59cd..6ba4fa8e52f 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_superdraft.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_thickerdraft.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_thickerdraft.inst.cfg index 94cc19edfba..87bfea805dd 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_thickerdraft.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = thickerdraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_ultra.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_ultra.inst.cfg index bbad204f15b..238f45df169 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_ultra.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_verydraft.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_verydraft.inst.cfg index 79c3b21eeb0..44667c79e08 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_verydraft.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/malyan_m200_global_Draft_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_Draft_Quality.inst.cfg index b321907fee9..4593a16ed90 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_Draft_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/malyan_m200/malyan_m200_global_Fast_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_Fast_Quality.inst.cfg index b339b685c15..0027871b23c 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_Fast_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/malyan_m200/malyan_m200_global_High_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_High_Quality.inst.cfg index e22f15952c9..da25e42b6c8 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_High_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/malyan_m200/malyan_m200_global_Normal_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_Normal_Quality.inst.cfg index 7d84227e1e4..dd8b85c1ab7 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_Normal_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/malyan_m200/malyan_m200_global_SuperDraft_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_SuperDraft_Quality.inst.cfg index 74f1224e3cd..bb9b8101572 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_SuperDraft_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_SuperDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/malyan_m200/malyan_m200_global_ThickerDraft_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_ThickerDraft_Quality.inst.cfg index ba07a565e0f..faa108a83cd 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_ThickerDraft_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_ThickerDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = thickerdraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/malyan_m200_global_Ultra_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_Ultra_Quality.inst.cfg index 35d5f5e9923..528b8779586 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_Ultra_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_Ultra_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/malyan_m200/malyan_m200_global_VeryDraft_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_VeryDraft_Quality.inst.cfg index 263e8fbb8d9..7402b0f81b0 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_VeryDraft_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_VeryDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_draft.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_draft.inst.cfg index 100b52ba68a..259b34ef555 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_draft.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_fast.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_fast.inst.cfg index e8e26cc6d2c..caf8ecbff7a 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_fast.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_high.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_high.inst.cfg index 9b6e0a55109..7dbc1778d09 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_high.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_normal.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_normal.inst.cfg index c73d0f76b37..9bdfb41533c 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_normal.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_superdraft.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_superdraft.inst.cfg index 0a8595bc4c9..6871e99b76d 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_superdraft.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_thickerdraft.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_thickerdraft.inst.cfg index 6d08c78df25..a5f982f2be4 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_thickerdraft.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = thickerdraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_ultra.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_ultra.inst.cfg index 2396e4025f0..33f99e5fcbd 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_ultra.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_verydraft.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_verydraft.inst.cfg index 3e0d002d148..46480c1bf73 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_verydraft.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_draft.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_draft.inst.cfg index aaa3d950cc8..82787afe548 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_draft.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_fast.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_fast.inst.cfg index cc8738df693..642d0810e48 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_fast.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_high.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_high.inst.cfg index 211a735b72c..0695f9fe577 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_high.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_normal.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_normal.inst.cfg index d413ac72f82..18a65ba0c31 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_normal.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_superdraft.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_superdraft.inst.cfg index 7ed81987f9b..f3a017087cf 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_superdraft.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_thickerdraft.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_thickerdraft.inst.cfg index 38797b4912b..e9c279967e5 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_thickerdraft.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = thickerdraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_ultra.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_ultra.inst.cfg index 8669fa32aaa..1a74e53aaf6 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_ultra.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_verydraft.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_verydraft.inst.cfg index 44a16c116b2..99291c7ffce 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_verydraft.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/mingda/ABS/mingda_0.2_ABS_super.inst.cfg b/resources/quality/mingda/ABS/mingda_0.2_ABS_super.inst.cfg index c6012ac34be..7822cc565b2 100644 --- a/resources/quality/mingda/ABS/mingda_0.2_ABS_super.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.2_ABS_ultra.inst.cfg b/resources/quality/mingda/ABS/mingda_0.2_ABS_ultra.inst.cfg index 3de5395463f..72681de427c 100644 --- a/resources/quality/mingda/ABS/mingda_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.3_ABS_adaptive.inst.cfg b/resources/quality/mingda/ABS/mingda_0.3_ABS_adaptive.inst.cfg index f18e89e7837..53fc6550b0a 100644 --- a/resources/quality/mingda/ABS/mingda_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.3_ABS_low.inst.cfg b/resources/quality/mingda/ABS/mingda_0.3_ABS_low.inst.cfg index d05ca5f136c..26dcce8ed6a 100644 --- a/resources/quality/mingda/ABS/mingda_0.3_ABS_low.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.3_ABS_standard.inst.cfg b/resources/quality/mingda/ABS/mingda_0.3_ABS_standard.inst.cfg index 0b2f445dfa2..4695644f2d6 100644 --- a/resources/quality/mingda/ABS/mingda_0.3_ABS_standard.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.3_ABS_super.inst.cfg b/resources/quality/mingda/ABS/mingda_0.3_ABS_super.inst.cfg index 2b22e3f745c..42487ec3e64 100644 --- a/resources/quality/mingda/ABS/mingda_0.3_ABS_super.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.4_ABS_adaptive.inst.cfg b/resources/quality/mingda/ABS/mingda_0.4_ABS_adaptive.inst.cfg index 100d5b24b1a..3c1359073d0 100644 --- a/resources/quality/mingda/ABS/mingda_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.4_ABS_low.inst.cfg b/resources/quality/mingda/ABS/mingda_0.4_ABS_low.inst.cfg index 5727969b79c..d1a28a7653f 100644 --- a/resources/quality/mingda/ABS/mingda_0.4_ABS_low.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.4_ABS_standard.inst.cfg b/resources/quality/mingda/ABS/mingda_0.4_ABS_standard.inst.cfg index c37e7dc9c90..1e7c29a3478 100644 --- a/resources/quality/mingda/ABS/mingda_0.4_ABS_standard.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.4_ABS_super.inst.cfg b/resources/quality/mingda/ABS/mingda_0.4_ABS_super.inst.cfg index 380d4a52550..f8211f3d418 100644 --- a/resources/quality/mingda/ABS/mingda_0.4_ABS_super.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.5_ABS_adaptive.inst.cfg b/resources/quality/mingda/ABS/mingda_0.5_ABS_adaptive.inst.cfg index e39ac13e6b0..3785771f472 100644 --- a/resources/quality/mingda/ABS/mingda_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.5_ABS_low.inst.cfg b/resources/quality/mingda/ABS/mingda_0.5_ABS_low.inst.cfg index 75f79402e7d..f0af9dbc34b 100644 --- a/resources/quality/mingda/ABS/mingda_0.5_ABS_low.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.5_ABS_standard.inst.cfg b/resources/quality/mingda/ABS/mingda_0.5_ABS_standard.inst.cfg index 9a5001c7398..d0d1a4ccf32 100644 --- a/resources/quality/mingda/ABS/mingda_0.5_ABS_standard.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.5_ABS_super.inst.cfg b/resources/quality/mingda/ABS/mingda_0.5_ABS_super.inst.cfg index f69b4328125..c5ced7c9a53 100644 --- a/resources/quality/mingda/ABS/mingda_0.5_ABS_super.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.6_ABS_standard.inst.cfg b/resources/quality/mingda/ABS/mingda_0.6_ABS_standard.inst.cfg index 29e5bec052c..7b7a024bf0e 100644 --- a/resources/quality/mingda/ABS/mingda_0.6_ABS_standard.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.8_ABS_draft.inst.cfg b/resources/quality/mingda/ABS/mingda_0.8_ABS_draft.inst.cfg index d9652a248d1..61160d6bb00 100644 --- a/resources/quality/mingda/ABS/mingda_0.8_ABS_draft.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_1.0_ABS_draft.inst.cfg b/resources/quality/mingda/ABS/mingda_1.0_ABS_draft.inst.cfg index 0f412780b84..acb60b6c9f1 100644 --- a/resources/quality/mingda/ABS/mingda_1.0_ABS_draft.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.2_PETG_super.inst.cfg b/resources/quality/mingda/PETG/mingda_0.2_PETG_super.inst.cfg index e5390fa7b4c..35dec169182 100644 --- a/resources/quality/mingda/PETG/mingda_0.2_PETG_super.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.2_PETG_ultra.inst.cfg b/resources/quality/mingda/PETG/mingda_0.2_PETG_ultra.inst.cfg index a815e91217c..53a2bc13b36 100644 --- a/resources/quality/mingda/PETG/mingda_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.3_PETG_adaptive.inst.cfg b/resources/quality/mingda/PETG/mingda_0.3_PETG_adaptive.inst.cfg index fd1ea41e015..6c126047ad8 100644 --- a/resources/quality/mingda/PETG/mingda_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.3_PETG_low.inst.cfg b/resources/quality/mingda/PETG/mingda_0.3_PETG_low.inst.cfg index 2ccc44a3b77..e6e118e21ff 100644 --- a/resources/quality/mingda/PETG/mingda_0.3_PETG_low.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.3_PETG_standard.inst.cfg b/resources/quality/mingda/PETG/mingda_0.3_PETG_standard.inst.cfg index e8362fc6dbb..0b5acb5a1dd 100644 --- a/resources/quality/mingda/PETG/mingda_0.3_PETG_standard.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.3_PETG_super.inst.cfg b/resources/quality/mingda/PETG/mingda_0.3_PETG_super.inst.cfg index 6d5d14871b8..ebb706385c0 100644 --- a/resources/quality/mingda/PETG/mingda_0.3_PETG_super.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.4_PETG_adaptive.inst.cfg b/resources/quality/mingda/PETG/mingda_0.4_PETG_adaptive.inst.cfg index b35035a02d6..ee0e96899d8 100644 --- a/resources/quality/mingda/PETG/mingda_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.4_PETG_low.inst.cfg b/resources/quality/mingda/PETG/mingda_0.4_PETG_low.inst.cfg index 6d80739a00d..8a8ee114e44 100644 --- a/resources/quality/mingda/PETG/mingda_0.4_PETG_low.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.4_PETG_standard.inst.cfg b/resources/quality/mingda/PETG/mingda_0.4_PETG_standard.inst.cfg index bdc2a7daadc..37c01e84a1c 100644 --- a/resources/quality/mingda/PETG/mingda_0.4_PETG_standard.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.4_PETG_super.inst.cfg b/resources/quality/mingda/PETG/mingda_0.4_PETG_super.inst.cfg index 8859cc46f05..92efaca3e60 100644 --- a/resources/quality/mingda/PETG/mingda_0.4_PETG_super.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.5_PETG_adaptive.inst.cfg b/resources/quality/mingda/PETG/mingda_0.5_PETG_adaptive.inst.cfg index 12d387b8dc6..cedcc4aee87 100644 --- a/resources/quality/mingda/PETG/mingda_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.5_PETG_low.inst.cfg b/resources/quality/mingda/PETG/mingda_0.5_PETG_low.inst.cfg index f7b847384e8..5a47d08a6ee 100644 --- a/resources/quality/mingda/PETG/mingda_0.5_PETG_low.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.5_PETG_standard.inst.cfg b/resources/quality/mingda/PETG/mingda_0.5_PETG_standard.inst.cfg index 25eff322612..ee9baa433e7 100644 --- a/resources/quality/mingda/PETG/mingda_0.5_PETG_standard.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.5_PETG_super.inst.cfg b/resources/quality/mingda/PETG/mingda_0.5_PETG_super.inst.cfg index 181c82ae088..4505d985f6f 100644 --- a/resources/quality/mingda/PETG/mingda_0.5_PETG_super.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.6_PETG_standard.inst.cfg b/resources/quality/mingda/PETG/mingda_0.6_PETG_standard.inst.cfg index e1ddcf5de84..1b6c6b9a64f 100644 --- a/resources/quality/mingda/PETG/mingda_0.6_PETG_standard.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.8_PETG_draft.inst.cfg b/resources/quality/mingda/PETG/mingda_0.8_PETG_draft.inst.cfg index 24d9d323d5e..a69338d3d93 100644 --- a/resources/quality/mingda/PETG/mingda_0.8_PETG_draft.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_1.0_PETG_draft.inst.cfg b/resources/quality/mingda/PETG/mingda_1.0_PETG_draft.inst.cfg index 118a90fcc21..a4519d007e8 100644 --- a/resources/quality/mingda/PETG/mingda_1.0_PETG_draft.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.2_PLA_super.inst.cfg b/resources/quality/mingda/PLA/mingda_0.2_PLA_super.inst.cfg index 84ca0b0dd47..afa0fab2f19 100644 --- a/resources/quality/mingda/PLA/mingda_0.2_PLA_super.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.2_PLA_ultra.inst.cfg b/resources/quality/mingda/PLA/mingda_0.2_PLA_ultra.inst.cfg index 1b93c7fbfbb..9157f938cc8 100644 --- a/resources/quality/mingda/PLA/mingda_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.3_PLA_adaptive.inst.cfg b/resources/quality/mingda/PLA/mingda_0.3_PLA_adaptive.inst.cfg index d2ac93fb123..e74c862004b 100644 --- a/resources/quality/mingda/PLA/mingda_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.3_PLA_low.inst.cfg b/resources/quality/mingda/PLA/mingda_0.3_PLA_low.inst.cfg index bdca2997726..0b4e80354e8 100644 --- a/resources/quality/mingda/PLA/mingda_0.3_PLA_low.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.3_PLA_standard.inst.cfg b/resources/quality/mingda/PLA/mingda_0.3_PLA_standard.inst.cfg index df3e0909c26..09c7cbeb8a3 100644 --- a/resources/quality/mingda/PLA/mingda_0.3_PLA_standard.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.3_PLA_super.inst.cfg b/resources/quality/mingda/PLA/mingda_0.3_PLA_super.inst.cfg index 5c709944bb5..2b37626e564 100644 --- a/resources/quality/mingda/PLA/mingda_0.3_PLA_super.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.4_PLA_adaptive.inst.cfg b/resources/quality/mingda/PLA/mingda_0.4_PLA_adaptive.inst.cfg index a8250b8709f..b23b08c986e 100644 --- a/resources/quality/mingda/PLA/mingda_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.4_PLA_low.inst.cfg b/resources/quality/mingda/PLA/mingda_0.4_PLA_low.inst.cfg index d8aaa5bb6a9..dc73a650d50 100644 --- a/resources/quality/mingda/PLA/mingda_0.4_PLA_low.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.4_PLA_standard.inst.cfg b/resources/quality/mingda/PLA/mingda_0.4_PLA_standard.inst.cfg index 5ac644791b7..2e10d594bf1 100644 --- a/resources/quality/mingda/PLA/mingda_0.4_PLA_standard.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.4_PLA_super.inst.cfg b/resources/quality/mingda/PLA/mingda_0.4_PLA_super.inst.cfg index ee4ccb14f71..a8f4d0d8709 100644 --- a/resources/quality/mingda/PLA/mingda_0.4_PLA_super.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.5_PLA_adaptive.inst.cfg b/resources/quality/mingda/PLA/mingda_0.5_PLA_adaptive.inst.cfg index 77fa8b57fa7..516fd69b222 100644 --- a/resources/quality/mingda/PLA/mingda_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.5_PLA_low.inst.cfg b/resources/quality/mingda/PLA/mingda_0.5_PLA_low.inst.cfg index 65e90311e36..9f620c26e6d 100644 --- a/resources/quality/mingda/PLA/mingda_0.5_PLA_low.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.5_PLA_standard.inst.cfg b/resources/quality/mingda/PLA/mingda_0.5_PLA_standard.inst.cfg index feac2c4212b..26a6e27821a 100644 --- a/resources/quality/mingda/PLA/mingda_0.5_PLA_standard.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.5_PLA_super.inst.cfg b/resources/quality/mingda/PLA/mingda_0.5_PLA_super.inst.cfg index 847bb29f3a0..25155655e7c 100644 --- a/resources/quality/mingda/PLA/mingda_0.5_PLA_super.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.6_PLA_draft.inst.cfg b/resources/quality/mingda/PLA/mingda_0.6_PLA_draft.inst.cfg index f6d396df3af..494357a91d3 100644 --- a/resources/quality/mingda/PLA/mingda_0.6_PLA_draft.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.6_PLA_low.inst.cfg b/resources/quality/mingda/PLA/mingda_0.6_PLA_low.inst.cfg index b6715276ab5..7d870437bf2 100644 --- a/resources/quality/mingda/PLA/mingda_0.6_PLA_low.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.6_PLA_standard.inst.cfg b/resources/quality/mingda/PLA/mingda_0.6_PLA_standard.inst.cfg index 414478c3316..f102e574be8 100644 --- a/resources/quality/mingda/PLA/mingda_0.6_PLA_standard.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.8_PLA_draft.inst.cfg b/resources/quality/mingda/PLA/mingda_0.8_PLA_draft.inst.cfg index de4d732cb48..70842228e23 100644 --- a/resources/quality/mingda/PLA/mingda_0.8_PLA_draft.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_1.0_PLA_draft.inst.cfg b/resources/quality/mingda/PLA/mingda_1.0_PLA_draft.inst.cfg index 34582ea39ae..05cf9e0bbc5 100644 --- a/resources/quality/mingda/PLA/mingda_1.0_PLA_draft.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.3_TPU_adaptive.inst.cfg b/resources/quality/mingda/TPU/mingda_0.3_TPU_adaptive.inst.cfg index 40d9e2723a7..1967d1be9f2 100644 --- a/resources/quality/mingda/TPU/mingda_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.3_TPU_standard.inst.cfg b/resources/quality/mingda/TPU/mingda_0.3_TPU_standard.inst.cfg index 45bbc23d7cf..2c1cf471df2 100644 --- a/resources/quality/mingda/TPU/mingda_0.3_TPU_standard.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.3_TPU_super.inst.cfg b/resources/quality/mingda/TPU/mingda_0.3_TPU_super.inst.cfg index 748163782f4..ff3f81c0344 100644 --- a/resources/quality/mingda/TPU/mingda_0.3_TPU_super.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.4_TPU_adaptive.inst.cfg b/resources/quality/mingda/TPU/mingda_0.4_TPU_adaptive.inst.cfg index 6eadcb6d0d6..77e839eaffe 100644 --- a/resources/quality/mingda/TPU/mingda_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.4_TPU_standard.inst.cfg b/resources/quality/mingda/TPU/mingda_0.4_TPU_standard.inst.cfg index 87a1e3290bf..442065f5097 100644 --- a/resources/quality/mingda/TPU/mingda_0.4_TPU_standard.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.4_TPU_super.inst.cfg b/resources/quality/mingda/TPU/mingda_0.4_TPU_super.inst.cfg index 3f9dcd40f6f..ac3882c1fc1 100644 --- a/resources/quality/mingda/TPU/mingda_0.4_TPU_super.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.5_TPU_adaptive.inst.cfg b/resources/quality/mingda/TPU/mingda_0.5_TPU_adaptive.inst.cfg index a445644cdf3..f705eea1cd7 100644 --- a/resources/quality/mingda/TPU/mingda_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.5_TPU_standard.inst.cfg b/resources/quality/mingda/TPU/mingda_0.5_TPU_standard.inst.cfg index f03044c42c6..7626ff56e7a 100644 --- a/resources/quality/mingda/TPU/mingda_0.5_TPU_standard.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.5_TPU_super.inst.cfg b/resources/quality/mingda/TPU/mingda_0.5_TPU_super.inst.cfg index 11cc64f7376..db3124027b6 100644 --- a/resources/quality/mingda/TPU/mingda_0.5_TPU_super.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.6_TPU_standard.inst.cfg b/resources/quality/mingda/TPU/mingda_0.6_TPU_standard.inst.cfg index 247549fd235..0dc6d716493 100644 --- a/resources/quality/mingda/TPU/mingda_0.6_TPU_standard.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.8_TPU_draft.inst.cfg b/resources/quality/mingda/TPU/mingda_0.8_TPU_draft.inst.cfg index ba5cf6805e7..f34b342364e 100644 --- a/resources/quality/mingda/TPU/mingda_0.8_TPU_draft.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_1.0_TPU_draft.inst.cfg b/resources/quality/mingda/TPU/mingda_1.0_TPU_draft.inst.cfg index dae977ca804..7b410aea17f 100644 --- a/resources/quality/mingda/TPU/mingda_1.0_TPU_draft.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/mingda/mingda_global_adaptive.inst.cfg b/resources/quality/mingda/mingda_global_adaptive.inst.cfg index d67521ba229..79435798a95 100644 --- a/resources/quality/mingda/mingda_global_adaptive.inst.cfg +++ b/resources/quality/mingda/mingda_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/mingda/mingda_global_draft.inst.cfg b/resources/quality/mingda/mingda_global_draft.inst.cfg index 1cf7c29a3a4..b17f84f7427 100644 --- a/resources/quality/mingda/mingda_global_draft.inst.cfg +++ b/resources/quality/mingda/mingda_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/mingda/mingda_global_low.inst.cfg b/resources/quality/mingda/mingda_global_low.inst.cfg index f81f1ae229a..723fe0120ff 100644 --- a/resources/quality/mingda/mingda_global_low.inst.cfg +++ b/resources/quality/mingda/mingda_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/mingda/mingda_global_standard.inst.cfg b/resources/quality/mingda/mingda_global_standard.inst.cfg index 109eec45a7a..e17f3bcd93b 100644 --- a/resources/quality/mingda/mingda_global_standard.inst.cfg +++ b/resources/quality/mingda/mingda_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/mingda/mingda_global_super.inst.cfg b/resources/quality/mingda/mingda_global_super.inst.cfg index a4d81601b3b..64fd4936cfa 100644 --- a/resources/quality/mingda/mingda_global_super.inst.cfg +++ b/resources/quality/mingda/mingda_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/mingda/mingda_global_ultra.inst.cfg b/resources/quality/mingda/mingda_global_ultra.inst.cfg index 5319ad2293e..fb7385fab19 100644 --- a/resources/quality/mingda/mingda_global_ultra.inst.cfg +++ b/resources/quality/mingda/mingda_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/mixware_hyper_k/mixware_hyper_k_draft.inst.cfg b/resources/quality/mixware_hyper_k/mixware_hyper_k_draft.inst.cfg index fa8b7bd4e81..37023141623 100644 --- a/resources/quality/mixware_hyper_k/mixware_hyper_k_draft.inst.cfg +++ b/resources/quality/mixware_hyper_k/mixware_hyper_k_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/mixware_hyper_k/mixware_hyper_k_extra_fast.inst.cfg b/resources/quality/mixware_hyper_k/mixware_hyper_k_extra_fast.inst.cfg index 81fe6931137..1f66a09b627 100644 --- a/resources/quality/mixware_hyper_k/mixware_hyper_k_extra_fast.inst.cfg +++ b/resources/quality/mixware_hyper_k/mixware_hyper_k_extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/mixware_hyper_k/mixware_hyper_k_normal.inst.cfg b/resources/quality/mixware_hyper_k/mixware_hyper_k_normal.inst.cfg index 2f09b41466d..a155a520d3a 100644 --- a/resources/quality/mixware_hyper_k/mixware_hyper_k_normal.inst.cfg +++ b/resources/quality/mixware_hyper_k/mixware_hyper_k_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/mixware_hyper_s/mixware_hyper_s_draft.inst.cfg b/resources/quality/mixware_hyper_s/mixware_hyper_s_draft.inst.cfg index 0167ad3b687..e21090c6001 100644 --- a/resources/quality/mixware_hyper_s/mixware_hyper_s_draft.inst.cfg +++ b/resources/quality/mixware_hyper_s/mixware_hyper_s_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/mixware_hyper_s/mixware_hyper_s_extra_fast.inst.cfg b/resources/quality/mixware_hyper_s/mixware_hyper_s_extra_fast.inst.cfg index 39bc3841ab5..6414ce45893 100644 --- a/resources/quality/mixware_hyper_s/mixware_hyper_s_extra_fast.inst.cfg +++ b/resources/quality/mixware_hyper_s/mixware_hyper_s_extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/mixware_hyper_s/mixware_hyper_s_normal.inst.cfg b/resources/quality/mixware_hyper_s/mixware_hyper_s_normal.inst.cfg index 1267a29fc26..1248585ec4b 100644 --- a/resources/quality/mixware_hyper_s/mixware_hyper_s_normal.inst.cfg +++ b/resources/quality/mixware_hyper_s/mixware_hyper_s_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/mixware_vulcan/mixware_vulcan_draft.inst.cfg b/resources/quality/mixware_vulcan/mixware_vulcan_draft.inst.cfg index 1ff0b50fbe1..e9859c9cb71 100644 --- a/resources/quality/mixware_vulcan/mixware_vulcan_draft.inst.cfg +++ b/resources/quality/mixware_vulcan/mixware_vulcan_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/mixware_vulcan/mixware_vulcan_extra_fast.inst.cfg b/resources/quality/mixware_vulcan/mixware_vulcan_extra_fast.inst.cfg index cbb1a8fddbb..0bfc4bf3389 100644 --- a/resources/quality/mixware_vulcan/mixware_vulcan_extra_fast.inst.cfg +++ b/resources/quality/mixware_vulcan/mixware_vulcan_extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/mixware_vulcan/mixware_vulcan_normal.inst.cfg b/resources/quality/mixware_vulcan/mixware_vulcan_normal.inst.cfg index d371d236c2f..23754001ed6 100644 --- a/resources/quality/mixware_vulcan/mixware_vulcan_normal.inst.cfg +++ b/resources/quality/mixware_vulcan/mixware_vulcan_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/mixware_wand/mixware_wand_draft.inst.cfg b/resources/quality/mixware_wand/mixware_wand_draft.inst.cfg index ba905183069..2d307391150 100644 --- a/resources/quality/mixware_wand/mixware_wand_draft.inst.cfg +++ b/resources/quality/mixware_wand/mixware_wand_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/mixware_wand/mixware_wand_extra_fast.inst.cfg b/resources/quality/mixware_wand/mixware_wand_extra_fast.inst.cfg index 6a942a546d7..00d6e94cb4f 100644 --- a/resources/quality/mixware_wand/mixware_wand_extra_fast.inst.cfg +++ b/resources/quality/mixware_wand/mixware_wand_extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/mixware_wand/mixware_wand_normal.inst.cfg b/resources/quality/mixware_wand/mixware_wand_normal.inst.cfg index 8aada673809..7b2ca97af32 100644 --- a/resources/quality/mixware_wand/mixware_wand_normal.inst.cfg +++ b/resources/quality/mixware_wand/mixware_wand_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_draft.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_draft.inst.cfg index 097a959905e..fd19842b62f 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_draft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_fast.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_fast.inst.cfg index b81a4b8bd4d..d7df5c5ff28 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_fast.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_high.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_high.inst.cfg index 13263426d3a..fc1e193f977 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_high.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_normal.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_normal.inst.cfg index 886312c2ef5..289722633f4 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_normal.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_superdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_superdraft.inst.cfg index 700f5ead703..26caf03d8fe 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_superdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_thickerdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_thickerdraft.inst.cfg index 8a689abe034..0f305d4835e 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_thickerdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = thickerdraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_ultra.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_ultra.inst.cfg index daebcd1df64..ed96f8a8d70 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_ultra.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = thickerdraft -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_verydraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_verydraft.inst.cfg index e32d5f1b048..0272e99c0fe 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_verydraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Draft_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Draft_Quality.inst.cfg index a60d8f42086..018ed5f7d93 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Draft_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Fast_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Fast_Quality.inst.cfg index 62dd3d8052c..76118d401ec 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Fast_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_High_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_High_Quality.inst.cfg index c47f9891908..99cfa4cea86 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_High_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Normal_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Normal_Quality.inst.cfg index 84d9774ce3c..d0158258944 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Normal_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_SuperDraft_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_SuperDraft_Quality.inst.cfg index afa18c866fa..39b0ab1f79e 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_SuperDraft_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_SuperDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_ThickerDraft_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_ThickerDraft_Quality.inst.cfg index 2b30b9fc716..5cf1aa4219d 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_ThickerDraft_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_ThickerDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = thickerdraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Ultra_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Ultra_Quality.inst.cfg index d7bfcc7d5d4..5d5e352eaa0 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Ultra_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Ultra_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_VeryDraft_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_VeryDraft_Quality.inst.cfg index 05e381ae5b1..daa141e4644 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_VeryDraft_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_VeryDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_draft.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_draft.inst.cfg index 8d57fe8287a..2f8d8195b47 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_draft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_fast.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_fast.inst.cfg index ec808fbe565..96d771d5a70 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_fast.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_high.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_high.inst.cfg index b86c774fa43..19c47439708 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_high.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_normal.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_normal.inst.cfg index 1f1f8964d4e..218b8c0769a 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_normal.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_superdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_superdraft.inst.cfg index a2d9070cf05..bc4f11b1e08 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_superdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_thickerdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_thickerdraft.inst.cfg index 1c14bc20307..ad4b1b467b3 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_thickerdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = thickerdraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_ultra.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_ultra.inst.cfg index 09713b91c04..f9c80b0079b 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_ultra.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_verydraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_verydraft.inst.cfg index b34cb9c813d..14784247ddf 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_verydraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_draft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_draft.inst.cfg index 20f0e19467b..151e21fdd54 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_draft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_fast.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_fast.inst.cfg index dc9ecd5fe64..e0735cb0ffd 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_fast.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_high.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_high.inst.cfg index c5f968e6e14..6184ba86b21 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_high.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_normal.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_normal.inst.cfg index 278d07dea29..2a8eeb3dd4c 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_normal.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_superdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_superdraft.inst.cfg index 07a2ac74f6d..e7e772f85c3 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_superdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_thickerdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_thickerdraft.inst.cfg index 592b5e10097..300db25f2e5 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_thickerdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = thickerdraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_ultra.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_ultra.inst.cfg index 1aa8210751c..a3d8287a530 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_ultra.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_verydraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_verydraft.inst.cfg index a6ceb718309..376782ed633 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_verydraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_draft.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_draft.inst.cfg index 753dc626edc..6dda9f5f85a 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_draft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_fast.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_fast.inst.cfg index e6335447697..e67e0128315 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_fast.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_high.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_high.inst.cfg index ec80a8c9e1f..d449cb1f50c 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_high.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_normal.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_normal.inst.cfg index e8046eb5a05..fe8bebaea08 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_normal.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_superdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_superdraft.inst.cfg index 5a5776c7f88..00684445f64 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_superdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_thickerdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_thickerdraft.inst.cfg index 168e1c0bb4c..eaa2f3c8b42 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_thickerdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = thickerdraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_ultra.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_ultra.inst.cfg index 7b92bf37a10..b89c9ca3427 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_ultra.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_verydraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_verydraft.inst.cfg index f8a33603857..7da4ee15c2a 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_verydraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_draft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_draft.inst.cfg index f96a971d8cc..1efd7a48ad5 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_draft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_fast.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_fast.inst.cfg index 75f6f56c15e..1ac637cad12 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_fast.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_high.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_high.inst.cfg index 9b027f0f6cb..c18c95f3858 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_high.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_normal.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_normal.inst.cfg index 5e1ba97ead1..7ec5bbab4e4 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_normal.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_superdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_superdraft.inst.cfg index f38367832a8..74bd8f8aa41 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_superdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_thickerdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_thickerdraft.inst.cfg index 978d45d738c..a60be7f5f68 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_thickerdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = thickerdraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_ultra.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_ultra.inst.cfg index cbdd2c0cba0..cb94eab6965 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_ultra.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_verydraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_verydraft.inst.cfg index 6fbe7ce0cd9..8c2b8b5f67c 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_verydraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/normal.inst.cfg b/resources/quality/normal.inst.cfg index dc30e0e7e9a..cdfedcd6a91 100644 --- a/resources/quality/normal.inst.cfg +++ b/resources/quality/normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/nps/nps_ABS_A.inst.cfg b/resources/quality/nps/nps_ABS_A.inst.cfg index 23debbdf176..8788f2d15a0 100644 --- a/resources/quality/nps/nps_ABS_A.inst.cfg +++ b/resources/quality/nps/nps_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = a -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/nps/nps_ABS_B.inst.cfg b/resources/quality/nps/nps_ABS_B.inst.cfg index 3f700405bdb..c73992eb310 100644 --- a/resources/quality/nps/nps_ABS_B.inst.cfg +++ b/resources/quality/nps/nps_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = b -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/nps/nps_ABS_C.inst.cfg b/resources/quality/nps/nps_ABS_C.inst.cfg index 6138e4004c0..e4b974e03bc 100644 --- a/resources/quality/nps/nps_ABS_C.inst.cfg +++ b/resources/quality/nps/nps_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = c -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/nps/nps_PC_A.inst.cfg b/resources/quality/nps/nps_PC_A.inst.cfg index 8665f8ceaee..811df9ffdc6 100644 --- a/resources/quality/nps/nps_PC_A.inst.cfg +++ b/resources/quality/nps/nps_PC_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = a -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/nps/nps_PC_B.inst.cfg b/resources/quality/nps/nps_PC_B.inst.cfg index 9ccb5cea534..d972b6d5e6e 100644 --- a/resources/quality/nps/nps_PC_B.inst.cfg +++ b/resources/quality/nps/nps_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = b -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/nps/nps_PC_C.inst.cfg b/resources/quality/nps/nps_PC_C.inst.cfg index 30267d42375..1c91d7f3190 100644 --- a/resources/quality/nps/nps_PC_C.inst.cfg +++ b/resources/quality/nps/nps_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = c -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/nps/nps_PETG_A.inst.cfg b/resources/quality/nps/nps_PETG_A.inst.cfg index 3cae430f1cc..098fd7b0e7b 100644 --- a/resources/quality/nps/nps_PETG_A.inst.cfg +++ b/resources/quality/nps/nps_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = a -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/nps/nps_PETG_B.inst.cfg b/resources/quality/nps/nps_PETG_B.inst.cfg index 5860f654146..9121ce0cc89 100644 --- a/resources/quality/nps/nps_PETG_B.inst.cfg +++ b/resources/quality/nps/nps_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = b -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/nps/nps_PETG_C.inst.cfg b/resources/quality/nps/nps_PETG_C.inst.cfg index d35175fbc5b..891103acbb7 100644 --- a/resources/quality/nps/nps_PETG_C.inst.cfg +++ b/resources/quality/nps/nps_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = c -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/nps/nps_PLA_A.inst.cfg b/resources/quality/nps/nps_PLA_A.inst.cfg index 6c557e44772..302e03b8d19 100644 --- a/resources/quality/nps/nps_PLA_A.inst.cfg +++ b/resources/quality/nps/nps_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = a -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/nps/nps_PLA_B.inst.cfg b/resources/quality/nps/nps_PLA_B.inst.cfg index 02571aa0f56..2578ee39200 100644 --- a/resources/quality/nps/nps_PLA_B.inst.cfg +++ b/resources/quality/nps/nps_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = b -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/nps/nps_PLA_C.inst.cfg b/resources/quality/nps/nps_PLA_C.inst.cfg index 6b12b4b169d..7db1e3938a6 100644 --- a/resources/quality/nps/nps_PLA_C.inst.cfg +++ b/resources/quality/nps/nps_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = c -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/nps/nps_TPU_A.inst.cfg b/resources/quality/nps/nps_TPU_A.inst.cfg index c706bf08e85..8bc9697e179 100644 --- a/resources/quality/nps/nps_TPU_A.inst.cfg +++ b/resources/quality/nps/nps_TPU_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = a -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/nps/nps_TPU_B.inst.cfg b/resources/quality/nps/nps_TPU_B.inst.cfg index 5841b4045c3..f6131d5c728 100644 --- a/resources/quality/nps/nps_TPU_B.inst.cfg +++ b/resources/quality/nps/nps_TPU_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = b -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/nps/nps_TPU_C.inst.cfg b/resources/quality/nps/nps_TPU_C.inst.cfg index 8ac308460cc..9004a7aafb9 100644 --- a/resources/quality/nps/nps_TPU_C.inst.cfg +++ b/resources/quality/nps/nps_TPU_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = c -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/nps/nps_global_A.inst.cfg b/resources/quality/nps/nps_global_A.inst.cfg index 1cb73eb1b8d..b406f96b95b 100644 --- a/resources/quality/nps/nps_global_A.inst.cfg +++ b/resources/quality/nps/nps_global_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = a -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/nps/nps_global_B.inst.cfg b/resources/quality/nps/nps_global_B.inst.cfg index 89b4dabeabc..87b79e41854 100644 --- a/resources/quality/nps/nps_global_B.inst.cfg +++ b/resources/quality/nps/nps_global_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = b -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/nps/nps_global_C.inst.cfg b/resources/quality/nps/nps_global_C.inst.cfg index e8a4d989c38..55e03f04bfc 100644 --- a/resources/quality/nps/nps_global_C.inst.cfg +++ b/resources/quality/nps/nps_global_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = c -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg index fe29dcc0177..c62172e2712 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = best -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg index 3c4b16723cb..6eb625350a4 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Engineering -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg index a8351dd223a..dd3303ff21e 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg index 8c65da3d3a6..79a93c2cbb5 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg b/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg index d6f6c73c985..23a53983773 100644 --- a/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg +++ b/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = best -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg b/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg index d92ff21e1a3..9afbe1c9fae 100644 --- a/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg +++ b/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg b/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg index 860c295c189..0282588b313 100644 --- a/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg +++ b/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg index 9b83b18c6f8..2f7e5731a72 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = 3 diff --git a/resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg index ee6b848ec32..e5fd23d4f2b 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/peopoly_moai/peopoly_moai_extra_high.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_extra_high.inst.cfg index 77fa8652b38..11145f31514 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_extra_high.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_extra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra_high -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg index 9385278952e..b3aa4e2cc83 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg index a996b30c8a5..91eb5d46428 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_super.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_super.inst.cfg index adfe0e26a5e..b53926d84e7 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_super.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_ultra.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_ultra.inst.cfg index d0ed1bfc296..5ba1720f7c1 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_ultra.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_adaptive.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_adaptive.inst.cfg index 98bf867ce54..f773bf87c68 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_low.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_low.inst.cfg index 8af36722699..7ad5b63828b 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_low.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_standard.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_standard.inst.cfg index 5c70c697a6b..18d481d92e8 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_standard.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_super.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_super.inst.cfg index af8ea00735d..094f815c579 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_super.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_adaptive.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_adaptive.inst.cfg index 3b4589bd782..ef6926b4d3c 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_low.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_low.inst.cfg index addc6f2c1c7..0de97f85760 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_low.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_standard.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_standard.inst.cfg index e74e3c9015b..f399287eceb 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_standard.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_super.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_super.inst.cfg index 957d89d2bf9..e828bbc5ec6 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_super.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_adaptive.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_adaptive.inst.cfg index 46766b94c21..425efe8bb79 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_low.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_low.inst.cfg index 22e93d8876f..504e601637d 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_low.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_standard.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_standard.inst.cfg index 0d9b6ae5c13..599dfa21199 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_standard.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_super.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_super.inst.cfg index 372d066d4c5..e337cf021d5 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_super.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.6_Nylon_standard.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.6_Nylon_standard.inst.cfg index a57d8e22ca0..5037ea98773 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.6_Nylon_standard.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.6_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.8_Nylon_draft.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.8_Nylon_draft.inst.cfg index 1fc2e48eed3..b11d0cbbfe5 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.8_Nylon_draft.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.8_Nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_1.0_Nylon_draft.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_1.0_Nylon_draft.inst.cfg index bcc88a598c6..1523fe7ace1 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_1.0_Nylon_draft.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_1.0_Nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_super.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_super.inst.cfg index 24419b53025..13f3d3c6b82 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_super.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_ultra.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_ultra.inst.cfg index a55a6ad76aa..e1e0e68adde 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_adaptive.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_adaptive.inst.cfg index 890652591b2..f45f4f0db46 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_low.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_low.inst.cfg index aa3787c2788..f00cfe1f183 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_low.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_standard.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_standard.inst.cfg index a2afefe69ca..4c49ed47cc6 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_standard.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_super.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_super.inst.cfg index a90915b50cf..6c085cf045d 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_super.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_adaptive.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_adaptive.inst.cfg index 765547d6927..1436293e327 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_low.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_low.inst.cfg index d5afe469945..77a5b093b02 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_low.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_standard.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_standard.inst.cfg index ea0ff5ab6bc..fab2b3f6a06 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_standard.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_super.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_super.inst.cfg index 49245f85b23..a22e5570232 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_super.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_adaptive.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_adaptive.inst.cfg index 7147deb58fc..7d53f5a7352 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_low.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_low.inst.cfg index e930a9415e9..bc7763e69ab 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_low.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_standard.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_standard.inst.cfg index 92611f4b717..f50d26c0263 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_standard.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_super.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_super.inst.cfg index d147d877280..32a6e79f733 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_super.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.6_PETG_standard.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.6_PETG_standard.inst.cfg index 80dcecfe210..cb789901f70 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.6_PETG_standard.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.8_PETG_draft.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.8_PETG_draft.inst.cfg index 4d6a9a56719..1ff77f20280 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.8_PETG_draft.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_1.0_PETG_draft.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_1.0_PETG_draft.inst.cfg index bce8d9ccbae..85857390848 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_1.0_PETG_draft.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_super.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_super.inst.cfg index ff81d0d74e0..9d8ef6a9a33 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_super.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_ultra.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_ultra.inst.cfg index 10465057cf0..d0a93f1beb3 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_adaptive.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_adaptive.inst.cfg index 58b51ebf4a5..8e7e337fa5a 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_low.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_low.inst.cfg index 3622a5927be..c6b8308b872 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_low.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_standard.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_standard.inst.cfg index 39c3d776746..67d98a3bf6b 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_standard.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_super.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_super.inst.cfg index 5a6b3bd348a..3bce948dfec 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_super.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_adaptive.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_adaptive.inst.cfg index 4ca7bf94d40..d9647022e45 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_low.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_low.inst.cfg index 0c29c77bde9..1471709c213 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_low.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_standard.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_standard.inst.cfg index 3211f4be860..6434e24870e 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_standard.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_super.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_super.inst.cfg index da6ea197b2d..f0230d0bb6e 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_super.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_adaptive.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_adaptive.inst.cfg index f9d0649016c..4f3739f6bed 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_low.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_low.inst.cfg index 8f55fe30a4a..d6338d23238 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_low.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_standard.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_standard.inst.cfg index f6c42831e39..7ea3bc2e74d 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_standard.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_super.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_super.inst.cfg index 67637bcfeaf..3391515befb 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_super.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_draft.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_draft.inst.cfg index bbafe934fed..425098058e1 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_draft.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_low.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_low.inst.cfg index 115341b00db..82ae46b93c0 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_low.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_standard.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_standard.inst.cfg index f365b98c5a8..fbbf5178a0d 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_standard.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.8_PLA_draft.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.8_PLA_draft.inst.cfg index eba25456a90..8f2413e7eaf 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.8_PLA_draft.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_1.0_PLA_draft.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_1.0_PLA_draft.inst.cfg index ffe30e68ecd..24232e97e56 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_1.0_PLA_draft.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/ratrig_base/ratrig_base_global_adaptive.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_adaptive.inst.cfg index 7dc5adffbc5..f603ac2f49d 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/ratrig_base/ratrig_base_global_draft.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_draft.inst.cfg index 6300ade8f6f..0f1ed527c4e 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_draft.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/ratrig_base/ratrig_base_global_low.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_low.inst.cfg index 5cd4519ac2e..282bffac12a 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_low.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/ratrig_base/ratrig_base_global_standard.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_standard.inst.cfg index d1bbff61ed2..34963f44d63 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_standard.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/ratrig_base/ratrig_base_global_super.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_super.inst.cfg index e73f314a270..0f4c9857c93 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_super.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/ratrig_base/ratrig_base_global_ultra.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_ultra.inst.cfg index 3864f618585..f9c1935ecb3 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_ultra.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg index 6425ec76666..f661ed44149 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_standard.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_standard.inst.cfg index 8f7b5f7cfa0..11e12d4fb1b 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_standard.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_super.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_super.inst.cfg index 4b92df6df69..8a7457fa0a7 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_super.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg index d89b488ce68..199338b92aa 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_standard.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_standard.inst.cfg index caa88e072a3..cd45e2a4a08 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_standard.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_super.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_super.inst.cfg index c37bd5df995..ae00c536ff6 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_super.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg index 4622803d56c..20be9890721 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_standard.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_standard.inst.cfg index 11b90f79a19..85fca68f647 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_standard.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_super.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_super.inst.cfg index d3762fd8395..b85d1041412 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_super.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.6_TPU_standard.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.6_TPU_standard.inst.cfg index 11a0e7cd4ec..e17edf408de 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.6_TPU_standard.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.8_TPU_draft.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.8_TPU_draft.inst.cfg index fb82909a5df..7b663dd97f0 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.8_TPU_draft.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_1.0_TPU_draft.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_1.0_TPU_draft.inst.cfg index 013dbfdcbc7..424b52f5bc0 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_1.0_TPU_draft.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_adaptive.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_adaptive.inst.cfg index 9436f1214dc..825999e09e9 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_good.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_good.inst.cfg index 7075fd5cdb1..e708aa36d76 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_good.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_low.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_low.inst.cfg index 11449b3724b..7e18816e994 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_low.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_standard.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_standard.inst.cfg index 9d5fe97e901..caec94d7428 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_standard.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_super.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_super.inst.cfg index adc821bb0cb..bb58f8a607b 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_super.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_ultra.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_ultra.inst.cfg index 972d6612863..3be043ba9d2 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_adaptive.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_adaptive.inst.cfg index f11e0124c67..6a221187b0b 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_good.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_good.inst.cfg index 8c3f567f092..7f36e8b4880 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_good.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = good -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_low.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_low.inst.cfg index 3e00b6f10b2..8826bcbc1ab 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_low.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_standard.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_standard.inst.cfg index b4dd761b202..ebedcfe46b0 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_standard.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_super.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_super.inst.cfg index 99d3d50454a..5a65e5a3ddb 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_super.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_ultra.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_ultra.inst.cfg index 4a413c2e1ce..2031e51928c 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_adaptive.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_adaptive.inst.cfg index f77c28b5fd0..5e9ef8f6539 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_good.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_good.inst.cfg index 2bc78750ee4..6314c5cf472 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_good.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = good -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_low.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_low.inst.cfg index 656ece98056..2824c346f7c 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_low.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_standard.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_standard.inst.cfg index 5cbba2dadfd..28dbc363709 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_standard.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_super.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_super.inst.cfg index 2e40788daac..d3ed18ec566 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_super.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_ultra.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_ultra.inst.cfg index 8d9de515c9c..54ae63ed9cb 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_adaptive.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_adaptive.inst.cfg index 966a6a208e7..e5800f76303 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_good.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_good.inst.cfg index 56e0589d427..662344bcfd8 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_good.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = good -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_low.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_low.inst.cfg index 67192d43333..20ad51f84c1 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_low.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_standard.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_standard.inst.cfg index 9b78986d8f5..d3ef33dae4b 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_standard.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_super.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_super.inst.cfg index a49f8c71da9..dd1c2c1a402 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_super.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_ultra.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_ultra.inst.cfg index fc7e593fbc4..b57e9643e7a 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_adaptive.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_adaptive.inst.cfg index 7b8576b2de1..7b9edd4240e 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -6 diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_good.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_good.inst.cfg index af0bc1382bf..f110e2ac11c 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_good.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = good -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_low.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_low.inst.cfg index d6c49e5d9a6..def57b4251c 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_low.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_standard.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_standard.inst.cfg index e053edf5f4d..84f85042f79 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_standard.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_super.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_super.inst.cfg index 09976277b5f..692c3f2e81f 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_super.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_ultra.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_ultra.inst.cfg index e0ffe4421e4..1487279aeed 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_adaptive.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_adaptive.inst.cfg index 626025b5156..465d18fef69 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_good.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_good.inst.cfg index bc0151b230a..abf83133280 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_good.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = good -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_low.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_low.inst.cfg index 5a0333e1a75..0686d9d66ce 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_low.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_standard.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_standard.inst.cfg index a61f3984e5c..26238b9fc93 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_standard.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_super.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_super.inst.cfg index 183f1a28c65..2ef1bee0a87 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_super.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_ultra.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_ultra.inst.cfg index 1f2fcc6d36c..debf198a7ec 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/skriware_2/sk2_advanced.inst.cfg b/resources/quality/skriware_2/sk2_advanced.inst.cfg index ac3fa6041de..dd30149d024 100644 --- a/resources/quality/skriware_2/sk2_advanced.inst.cfg +++ b/resources/quality/skriware_2/sk2_advanced.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/skriware_2/sk2_fast.inst.cfg b/resources/quality/skriware_2/sk2_fast.inst.cfg index d0b8208e5a5..6d41a98b923 100644 --- a/resources/quality/skriware_2/sk2_fast.inst.cfg +++ b/resources/quality/skriware_2/sk2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/skriware_2/sk2_precise.inst.cfg b/resources/quality/skriware_2/sk2_precise.inst.cfg index 752902b731f..1372013ad8e 100644 --- a/resources/quality/skriware_2/sk2_precise.inst.cfg +++ b/resources/quality/skriware_2/sk2_precise.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = best -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/snakeoilxy/snakeoilxy_global_fast_quality.inst.cfg b/resources/quality/snakeoilxy/snakeoilxy_global_fast_quality.inst.cfg index 07147785e75..0b62a1385c3 100644 --- a/resources/quality/snakeoilxy/snakeoilxy_global_fast_quality.inst.cfg +++ b/resources/quality/snakeoilxy/snakeoilxy_global_fast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/snakeoilxy/snakeoilxy_global_fine_quality.inst.cfg b/resources/quality/snakeoilxy/snakeoilxy_global_fine_quality.inst.cfg index 672d907afe5..12106d3e9bf 100644 --- a/resources/quality/snakeoilxy/snakeoilxy_global_fine_quality.inst.cfg +++ b/resources/quality/snakeoilxy/snakeoilxy_global_fine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/snakeoilxy/snakeoilxy_global_normal_quality.inst.cfg b/resources/quality/snakeoilxy/snakeoilxy_global_normal_quality.inst.cfg index 3e90b5966fd..12e4ec025e8 100644 --- a/resources/quality/snakeoilxy/snakeoilxy_global_normal_quality.inst.cfg +++ b/resources/quality/snakeoilxy/snakeoilxy_global_normal_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/snakeoilxy/snakeoilxy_global_strong_quality.inst.cfg b/resources/quality/snakeoilxy/snakeoilxy_global_strong_quality.inst.cfg index abbdc4e8464..d51159aa753 100644 --- a/resources/quality/snakeoilxy/snakeoilxy_global_strong_quality.inst.cfg +++ b/resources/quality/snakeoilxy/snakeoilxy_global_strong_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = strong -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg b/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg index ca9845a2fa3..572fc08a853 100644 --- a/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg +++ b/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/snapmaker2/snapmaker2_high.inst.cfg b/resources/quality/snapmaker2/snapmaker2_high.inst.cfg index d3c34f1afd9..8e734798c18 100644 --- a/resources/quality/snapmaker2/snapmaker2_high.inst.cfg +++ b/resources/quality/snapmaker2/snapmaker2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg b/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg index 97514c37887..c2293f55bc0 100644 --- a/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg +++ b/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_super.inst.cfg index 772967217ae..defa6866359 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_ultra.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_ultra.inst.cfg index 0726300d161..806e83a3b2a 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_adaptive.inst.cfg index b856b23909d..f68599df66e 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_low.inst.cfg index ea89399b044..5df799868ef 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_standard.inst.cfg index c4a73d88290..e07f978b903 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_super.inst.cfg index 25dd15c61fb..c0227b5b43c 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_adaptive.inst.cfg index f8ee0564e4f..4984310577d 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_low.inst.cfg index b52d3796bd4..38414cee14b 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_standard.inst.cfg index db41a18c33d..98f393cb39c 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_super.inst.cfg index 8d9f4a89452..ccbb661b749 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_adaptive.inst.cfg index b7a7967e51a..0588caaa201 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_low.inst.cfg index 3ae2ea97eb2..ecd3e8143b7 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_standard.inst.cfg index 49674f357b5..e489d845a70 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_super.inst.cfg index becb6c78136..6e616c299f5 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_adaptive.inst.cfg index 93c936d9052..1f421bdebdc 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_draft.inst.cfg index 3fa8cd175a5..d13758ac171 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_low.inst.cfg index 3ae2ea97eb2..ecd3e8143b7 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_standard.inst.cfg index d4fa086853e..180ef9793ca 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.8_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.8_ABS_draft.inst.cfg index bc3804e57a5..ef400d0393f 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.8_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_1.0_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_1.0_ABS_draft.inst.cfg index fe55f3999f4..229e456c0a1 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_1.0_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_super.inst.cfg index 33de59ca9ea..e762e8be23b 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_ultra.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_ultra.inst.cfg index 7fcfef1f1f1..80ecf4cd5ab 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_adaptive.inst.cfg index f0f87b35aad..88760eddfa2 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_low.inst.cfg index f0be8f8aeb6..ecc9d878afb 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_standard.inst.cfg index 05b9f7aa93e..e89120e4131 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_super.inst.cfg index 62d09912564..b3ed5d750d0 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_adaptive.inst.cfg index 38dbb87871d..df9043526e8 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_low.inst.cfg index 3cffc1c7201..de741e100cf 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_standard.inst.cfg index 05c1b926a96..197974f8dee 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_super.inst.cfg index ab92d6ca325..ffd6a18e6cd 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_adaptive.inst.cfg index 32ec7fe4ff4..81f5628de5f 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_low.inst.cfg index a2042304b6f..e518eeeee7c 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_standard.inst.cfg index b2e1cfcf9cc..13cb1da6082 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_super.inst.cfg index ff270683725..0d2344258f3 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_adaptive.inst.cfg index a85f259ebb0..be6b0a424d9 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_draft.inst.cfg index 7200a5749ff..8fb90b1ebfd 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_low.inst.cfg index a2042304b6f..e518eeeee7c 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_standard.inst.cfg index 84ffaf6c2a8..c1b28d2eed9 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.8_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.8_ABS_draft.inst.cfg index bef6859d3c1..63f0f20b9b8 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.8_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_1.0_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_1.0_ABS_draft.inst.cfg index 1d6669d2bf6..0b2e06b960a 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_1.0_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_super.inst.cfg index 885607c1ee9..632f8562a0f 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_ultra.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_ultra.inst.cfg index bfa41cf9c6b..778faab851d 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_adaptive.inst.cfg index 5ed1d35af6d..e41ac67a4bb 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_low.inst.cfg index 28f77adec5e..125944ab7ba 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_standard.inst.cfg index 76f7ebb4a2b..aadae21f2b3 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_super.inst.cfg index c8236b87b53..4cdf9e82a11 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_adaptive.inst.cfg index 1395cd2a149..87d3cbaba81 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_low.inst.cfg index ddb7913146f..71a71c2074a 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_standard.inst.cfg index d0fff1d3a1c..a7e7c688326 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_super.inst.cfg index d9654ee6ffd..d0e96ddf9e4 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_adaptive.inst.cfg index dfda836cd4a..af21641a941 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_low.inst.cfg index 4c86d9d6015..a48585cceb5 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_standard.inst.cfg index 97dba25e7ac..6cd9377e7f6 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_super.inst.cfg index d0aa02743bb..0bf2ad87fa8 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_adaptive.inst.cfg index 2a49ac86ea8..0b112bb4756 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_draft.inst.cfg index 97102b65a30..924e14928cb 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_low.inst.cfg index 4c86d9d6015..a48585cceb5 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_standard.inst.cfg index 27112ff2ef9..b9a346b74c6 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.8_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.8_ABS_draft.inst.cfg index d52dc0324a1..9575468f221 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.8_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_1.0_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_1.0_ABS_draft.inst.cfg index b3abca606c3..19249525d69 100644 --- a/resources/quality/sovol/ABS/sovol_titan_1.0_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_super.inst.cfg index 053367d17f0..9263813e0fd 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_ultra.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_ultra.inst.cfg index b096237bea6..457c4557edf 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_adaptive.inst.cfg index 06beece2a2b..a5b0dd141cd 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_low.inst.cfg index a33788ca75f..d15b92b2db0 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_standard.inst.cfg index 6e23df6ae8c..0198bb31d15 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_super.inst.cfg index ae20dcb8045..d7a1c155bdc 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_adaptive.inst.cfg index af2ee484132..e46a0fc9e7e 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_low.inst.cfg index 4dfcca87658..b5865b796f4 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_standard.inst.cfg index 7553fd38ce6..909887f7349 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_super.inst.cfg index e4e7cfd9b39..1e77f58d779 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_adaptive.inst.cfg index 65a1ada04d6..53dab10238c 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_low.inst.cfg index 9851ac87981..2309c3d80a0 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_standard.inst.cfg index 9d69f5a6e48..f42e9ed165a 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_super.inst.cfg index b8fb2f71180..68ed0f68bf7 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_adaptive.inst.cfg index 808bc5d2ce0..52445d8e9c5 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_draft.inst.cfg index 759b42945d7..02cab8fbed3 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_low.inst.cfg index 0f7f807acad..0e17e9b5eae 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_standard.inst.cfg index 55f3851458d..41f5bd56eda 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.8_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.8_PETG_draft.inst.cfg index 127cbb7a12b..3455b63eaea 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.8_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_1.0_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_1.0_PETG_draft.inst.cfg index 68994f179ea..b6afb89877b 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_1.0_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_super.inst.cfg index 4d7207b88fa..d73fcd987d8 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_ultra.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_ultra.inst.cfg index e0e337e8239..b1d8446a8a2 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_adaptive.inst.cfg index 35122d480ac..300ff8a9ffd 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_low.inst.cfg index 6ecdb7c2aa5..f2ccdbd5caa 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_standard.inst.cfg index 4312bd0fc92..58a1f4d8e25 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_super.inst.cfg index b5ca42bbfab..2e330c453ec 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_adaptive.inst.cfg index 4e8a03c922a..eeecf62b036 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_low.inst.cfg index 5936703b736..4ec7b7a412d 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_standard.inst.cfg index bec8700d9f2..a1c0e48cbaa 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_super.inst.cfg index 83c414fbb44..7808a3da9ac 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_adaptive.inst.cfg index c1fbefcb96d..33e1e1dc642 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_low.inst.cfg index 8b71219eae6..b7f329a98c8 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_standard.inst.cfg index 2203f512132..0ec707bb869 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_super.inst.cfg index 0a05fd5fbae..8a472a5f715 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_adaptive.inst.cfg index d52169b7b7f..093963d94ba 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_draft.inst.cfg index 2aead633528..28408b23d89 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_low.inst.cfg index 6ffabcf3dbd..79ecbb7de71 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_standard.inst.cfg index 2dcd0202c84..1e04a9ee433 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.8_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.8_PETG_draft.inst.cfg index 759fb5c6d48..ea145cbc74e 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.8_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_1.0_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_1.0_PETG_draft.inst.cfg index 1003b241ade..550bdd503bd 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_1.0_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_super.inst.cfg index 6e961a1f5f9..e38455850f8 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_ultra.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_ultra.inst.cfg index 90561968113..b221a2fb6f2 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_adaptive.inst.cfg index 0f76fb7040b..9bd24541855 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_low.inst.cfg index d3b9987d293..fc823efb6e3 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_standard.inst.cfg index 4daff5d437b..23504f51326 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_super.inst.cfg index ded1525f352..f82812e3a2d 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_adaptive.inst.cfg index beedee39b13..d0e2ca11be5 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_low.inst.cfg index 29790a874a3..cde88b03334 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_standard.inst.cfg index de2429f011d..58d1ddf5f03 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_super.inst.cfg index 9a9e6817a65..ed2f53f573e 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_adaptive.inst.cfg index c905211dfc5..25751681af2 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_low.inst.cfg index 8c31d3411e6..e9ff5631f32 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_standard.inst.cfg index 550a5b8d305..6b6193ef49d 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_super.inst.cfg index 460c927b239..e60d7aad266 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_adaptive.inst.cfg index 07ecb9c628a..d85791b9e6d 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_draft.inst.cfg index 72a3df1170a..266459a784c 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_low.inst.cfg index 32f2aae4cdd..4eac8df6afb 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_standard.inst.cfg index 46a9c121722..e494138b712 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.8_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.8_PETG_draft.inst.cfg index 94fa6d1a45b..b05ccd072dd 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.8_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_1.0_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_1.0_PETG_draft.inst.cfg index d24808cc0a5..155086bbed7 100644 --- a/resources/quality/sovol/PETG/sovol_titan_1.0_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_super.inst.cfg index 60e6b7b56cc..dfb66442314 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_ultra.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_ultra.inst.cfg index 4ea764635cb..1bba7ee0040 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_adaptive.inst.cfg index 2a847c66952..8ceefff1ce4 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_low.inst.cfg index 21bbc433ae8..d99e7a91873 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_standard.inst.cfg index 4b2b5103e8e..c76bd93eb5c 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_super.inst.cfg index 3a2cb3824b0..c008efd6a4b 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_adaptive.inst.cfg index 225d97b51b4..2af72b0eb94 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_low.inst.cfg index 60f61cd0cd9..cda9ceed055 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_standard.inst.cfg index 6e4a98b120b..67303a344c4 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_super.inst.cfg index 66de7a5d67e..480ce19bd26 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_adaptive.inst.cfg index 508fad0d399..818ba54d181 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_low.inst.cfg index 85995dc2e22..0d5763d654f 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_standard.inst.cfg index 9d4c33706f4..462fe35ca8e 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_super.inst.cfg index ca4d2f0aa56..c69290b75c1 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_adaptive.inst.cfg index b669b93ca8e..a842730f71c 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_draft.inst.cfg index 8621005003e..3a30124ba87 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_low.inst.cfg index 734b00804bd..f6d093bcdbe 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_standard.inst.cfg index 3495c72a272..0caf6fde449 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.8_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.8_PLA_draft.inst.cfg index 502ba9fb289..a75db5305a9 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.8_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_1.0_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_1.0_PLA_draft.inst.cfg index cd7c84e72b2..5156a79dbbd 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_1.0_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_super.inst.cfg index 75a24e23380..e79df78c54a 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_ultra.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_ultra.inst.cfg index 8b5a22c7ace..648195d2cb0 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_adaptive.inst.cfg index 75949bd188e..fec5480e935 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_low.inst.cfg index 26536c7f952..7ab1a6eb908 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_standard.inst.cfg index 32cd5417640..2945d9d3fb1 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_super.inst.cfg index a6b5f82afd4..61e9343536d 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_adaptive.inst.cfg index 99ec25faef3..66af6a6e6cc 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_low.inst.cfg index b4f42eef9ba..36b56f53cc0 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_standard.inst.cfg index 280e0f6983a..6e683d4912e 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_super.inst.cfg index 19d6e248dbc..05d13d7f092 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_adaptive.inst.cfg index 8d6b86a5412..25062507a16 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_low.inst.cfg index 2fb09b07d63..fc974c0d23b 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_standard.inst.cfg index de0c5d8f18a..7642a661fc6 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_super.inst.cfg index 95414079ce3..a4d08915b23 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_adaptive.inst.cfg index 1323bcb2583..56c4f6f5356 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_draft.inst.cfg index 7dae15cd820..77260e44b42 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_low.inst.cfg index 52c75c39562..9d3e897f1f3 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_standard.inst.cfg index 8b3f20d9bb9..06468f867f9 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.8_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.8_PLA_draft.inst.cfg index 5150e51684e..49b1a1da830 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.8_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_1.0_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_1.0_PLA_draft.inst.cfg index b4ec36693a6..f4d2249bea9 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_1.0_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_super.inst.cfg index 477b4b71c07..afd059515d9 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_ultra.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_ultra.inst.cfg index f84ba4c463e..935acf87697 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_adaptive.inst.cfg index 4d917548664..4b1bd7186b6 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_low.inst.cfg index 14898f51820..3e8c01bf299 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_standard.inst.cfg index 1eea76a0624..9b0a17a2465 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_super.inst.cfg index 6e037669a33..8a4dd64c3dc 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_adaptive.inst.cfg index 4f92feb3335..e5ffd6c0a1f 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_low.inst.cfg index c36495131e9..6fac81f060f 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_standard.inst.cfg index bf85135170c..0d72cd1018b 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_super.inst.cfg index 3d49a000646..937006edf2a 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_adaptive.inst.cfg index 0325382a415..90ff99d94b2 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_low.inst.cfg index 660ff39cbaa..3a90afe4309 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_standard.inst.cfg index 38bbd3d0266..c50ff9be24a 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_super.inst.cfg index dd8f42789d5..9c2f27d1503 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_adaptive.inst.cfg index fc8bda9ec01..7b9550dd255 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_draft.inst.cfg index 63d2a0db08d..656e646d0bf 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_low.inst.cfg index eca3e66c4fd..789646f896e 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_standard.inst.cfg index 59b67afd703..f52221e9ff9 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.8_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.8_PLA_draft.inst.cfg index dfd7add791a..092849b63a7 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.8_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_1.0_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_1.0_PLA_draft.inst.cfg index b1157e6dc4a..c2acac8b772 100644 --- a/resources/quality/sovol/PLA/sovol_titan_1.0_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_adaptive.inst.cfg index eebdc183e72..ed82bbeba19 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_standard.inst.cfg index 4cb331a963a..e797e28f77c 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_super.inst.cfg index fb39dfd55c5..0ef5dab2507 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_adaptive.inst.cfg index fe249852060..6f8296972a3 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_standard.inst.cfg index 5a077700696..05646b59f74 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_super.inst.cfg index c903119453f..f73639bed54 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_adaptive.inst.cfg index 37c77c084a4..0d65a9e7160 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_standard.inst.cfg index ae5c9b6e3d8..0f98f0af00f 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_super.inst.cfg index e963a88d20f..f3567ed5cda 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.6_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.6_TPU_standard.inst.cfg index 020fbd96b97..f485682a3a0 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.6_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.8_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.8_TPU_draft.inst.cfg index 2bf1d94be32..805f8029de8 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.8_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_1.0_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_1.0_TPU_draft.inst.cfg index af4cdeceaa2..108d25cc2b9 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_1.0_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_adaptive.inst.cfg index 6248e0f2431..3be81fcb24d 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_standard.inst.cfg index d01edeed8d4..89bee3e6e94 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_super.inst.cfg index d690111514b..eff1ec18de1 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_adaptive.inst.cfg index fc3f1d1636f..ae6e439d1e1 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_standard.inst.cfg index 4db78e7df76..fce3d5d5d36 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_super.inst.cfg index eefd4b3298e..14143a43c32 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_adaptive.inst.cfg index 0c8601d49f4..3a59c9cc4fb 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_standard.inst.cfg index 4c53013ea77..25bb9a52cee 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_super.inst.cfg index 19a5aba8c01..56cceef3689 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.6_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.6_TPU_standard.inst.cfg index 1ee0566de1e..06e8e1caf94 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.6_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.8_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.8_TPU_draft.inst.cfg index ccc2834c40d..db6777c29ec 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.8_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_1.0_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_1.0_TPU_draft.inst.cfg index 74433477a51..1ae1708d177 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_1.0_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_adaptive.inst.cfg index 8a22f9e7ed3..40c868739e9 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_standard.inst.cfg index 399a5ad8805..7c4e7656598 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_super.inst.cfg index e88db75f3f1..7c70bcd2e6e 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_adaptive.inst.cfg index 7c464d3d681..8fb59123086 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_standard.inst.cfg index d90798ac595..37e25483e9c 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_super.inst.cfg index e53ad2c481c..0ab905ddea1 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_adaptive.inst.cfg index 08465b50aa6..fd0245d797a 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_standard.inst.cfg index 50806b530ad..16b51398678 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_super.inst.cfg index c5f4a01e99a..e6944b6abc5 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.6_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.6_TPU_standard.inst.cfg index 19ac4a45126..1eda8ed9c3e 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.6_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.8_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.8_TPU_draft.inst.cfg index 3a9c39df03a..796d50d9519 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.8_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_1.0_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_1.0_TPU_draft.inst.cfg index 68280b99b9c..45df6d13e15 100644 --- a/resources/quality/sovol/TPU/sovol_titan_1.0_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/sovol_bowden_global_adaptive.inst.cfg b/resources/quality/sovol/sovol_bowden_global_adaptive.inst.cfg index 8503da623f0..e9cff774809 100644 --- a/resources/quality/sovol/sovol_bowden_global_adaptive.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/sovol/sovol_bowden_global_draft.inst.cfg b/resources/quality/sovol/sovol_bowden_global_draft.inst.cfg index 1b78757f556..dd082f5d456 100644 --- a/resources/quality/sovol/sovol_bowden_global_draft.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/sovol/sovol_bowden_global_low.inst.cfg b/resources/quality/sovol/sovol_bowden_global_low.inst.cfg index a678af6506d..0286357f656 100644 --- a/resources/quality/sovol/sovol_bowden_global_low.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/sovol/sovol_bowden_global_standard.inst.cfg b/resources/quality/sovol/sovol_bowden_global_standard.inst.cfg index d020c7002c3..05c840ab84f 100644 --- a/resources/quality/sovol/sovol_bowden_global_standard.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/sovol/sovol_bowden_global_super.inst.cfg b/resources/quality/sovol/sovol_bowden_global_super.inst.cfg index 9bcd7b6287a..d4cb00ea43c 100644 --- a/resources/quality/sovol/sovol_bowden_global_super.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/sovol/sovol_bowden_global_ultra.inst.cfg b/resources/quality/sovol/sovol_bowden_global_ultra.inst.cfg index 5a8cbef3d7d..90c6235d887 100644 --- a/resources/quality/sovol/sovol_bowden_global_ultra.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/sovol/sovol_planetary_global_adaptive.inst.cfg b/resources/quality/sovol/sovol_planetary_global_adaptive.inst.cfg index 17e0c268bee..a3239e277ee 100644 --- a/resources/quality/sovol/sovol_planetary_global_adaptive.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/sovol/sovol_planetary_global_draft.inst.cfg b/resources/quality/sovol/sovol_planetary_global_draft.inst.cfg index 9ff86b6743d..2dfe9261bdd 100644 --- a/resources/quality/sovol/sovol_planetary_global_draft.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/sovol/sovol_planetary_global_low.inst.cfg b/resources/quality/sovol/sovol_planetary_global_low.inst.cfg index 2ca057564f8..a26036a9f47 100644 --- a/resources/quality/sovol/sovol_planetary_global_low.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/sovol/sovol_planetary_global_standard.inst.cfg b/resources/quality/sovol/sovol_planetary_global_standard.inst.cfg index 3ba5e02cdf3..c39b3a47d25 100644 --- a/resources/quality/sovol/sovol_planetary_global_standard.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/sovol/sovol_planetary_global_super.inst.cfg b/resources/quality/sovol/sovol_planetary_global_super.inst.cfg index 5b47449dc58..9e14ee36a52 100644 --- a/resources/quality/sovol/sovol_planetary_global_super.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/sovol/sovol_planetary_global_ultra.inst.cfg b/resources/quality/sovol/sovol_planetary_global_ultra.inst.cfg index 1036827a892..f3ad3f63f29 100644 --- a/resources/quality/sovol/sovol_planetary_global_ultra.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/sovol/sovol_titan_global_adaptive.inst.cfg b/resources/quality/sovol/sovol_titan_global_adaptive.inst.cfg index e8dcafbd961..d1bdac7e44c 100644 --- a/resources/quality/sovol/sovol_titan_global_adaptive.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/sovol/sovol_titan_global_draft.inst.cfg b/resources/quality/sovol/sovol_titan_global_draft.inst.cfg index 20bd095ff94..7d9574e9c28 100644 --- a/resources/quality/sovol/sovol_titan_global_draft.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/sovol/sovol_titan_global_low.inst.cfg b/resources/quality/sovol/sovol_titan_global_low.inst.cfg index d3e37f54b3a..2bb6d850a6a 100644 --- a/resources/quality/sovol/sovol_titan_global_low.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/sovol/sovol_titan_global_standard.inst.cfg b/resources/quality/sovol/sovol_titan_global_standard.inst.cfg index dd7dbb3786f..c799172723e 100644 --- a/resources/quality/sovol/sovol_titan_global_standard.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/sovol/sovol_titan_global_super.inst.cfg b/resources/quality/sovol/sovol_titan_global_super.inst.cfg index 31cebe4aba8..70744f18ade 100644 --- a/resources/quality/sovol/sovol_titan_global_super.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/sovol/sovol_titan_global_ultra.inst.cfg b/resources/quality/sovol/sovol_titan_global_ultra.inst.cfg index 9040e3d60da..b159e54f610 100644 --- a/resources/quality/sovol/sovol_titan_global_ultra.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg index 39ba32a332a..15c8c492217 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg index dd0d167e6bc..fda7548825e 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg index f894a7dc139..8e65f491a4c 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg index 7642489c2a9..5e03710bc47 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg index bf5c18405bc..6c93c716d08 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg index 6756384e4af..a7e7d2a8727 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg index 978484d8130..be60ed117e6 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg index bcec4fe68f4..bb36ad977f1 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg index 85f79ebe7a0..a04b859e41b 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg index 9b29e496242..e80011a25fe 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg index 07a46f0d05b..caca18acb1d 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg index 60410d8d346..07bcbb951ce 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg index 93046306306..692cc0bf7e8 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg index d39d91c91ae..f481caf900c 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg index e716824cf03..c19d8120bdf 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg index bd964bed2a5..6816682a58c 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg index cd27f777376..49aebe64355 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg index 78191af7be7..8809625bd50 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg index f37a3b4d6d0..f76fc17f7fc 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg index 75fed99b1ec..d88b9f9aaf5 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg index 51911c3811d..50143d95046 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg index e4596d9def1..99364c2edc4 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pekk quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg index d0faf6eb66e..65c7532c8b7 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg index 3a64a522543..cc5f154c0b5 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg index debf74ed0d7..4c55dc1666e 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg index 990d5cf645e..508999aee52 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg index 82f26cd66d7..e642ad6f4ea 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg index a91b035e38e..04e4543c75a 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg index c7194e18d24..39c32ad622b 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg index 078e213a262..59b4b730f3e 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg index bfb4c46c461..200201554de 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg index 8dd1c17ea69..bac0135e9f4 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg index cca98aa5997..2fda0cb9605 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg index 5a343d68931..164e5bf494b 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg index e6be8813412..6c0b7ede594 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg index c4342c149a1..feac83c0d3e 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg index e3581e08230..adec58532a4 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg index 4c451894bdf..4f738ecb9b7 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg index 65c2c9e81f2..53cde676c13 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg index 2f5cf9cfa3f..cb4c1754881 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg index 36d6697edbe..25894a72427 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg index e92561350a1..ddc47eb6ced 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg index e61775fde0b..486503b69ec 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg index 020b95dad20..2b595fecad5 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg index 6688d82ec8c..24f35a41813 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg index 2c8d6a82d3a..d4e78fd7e35 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg index fe012ff8735..e700994fbc6 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg index c0adce0f844..c7b53df000c 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg index 5b58c2f37bc..09ee00f8d0d 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg index f986831fd5f..963ee03862f 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg index 5d360b244b1..8ede6f7f2ae 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg index 3875e668f41..85cf082f995 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg index d4d0e1c17e9..94e5093fb5f 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg index f2bb237ea22..46375505423 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg index f6780fbded2..655e7227dbe 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg index 6e726932a6f..bae5a7326cb 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg index 7ef50ff5b13..40459d1d722 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg index 4d4af1e0f7f..d806f76fb34 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg index 0d88c99c856..896a30bb3ed 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg index de476e6e46b..cfdce044583 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg index 3fe7ff347cc..e3056b27542 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg index 9dd3039b65e..8e1a6328324 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg index 346f33bafb5..69af5bce389 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg index 8571e8c4b02..0df714452eb 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg index 4231e1b3a14..da5e04fe607 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg index c141a0ab079..b16348cc77d 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg index 9cd4262c552..1594c7862c9 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg index 6f49ec9e3bf..f0eacc13ae7 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg index 415379417c3..cf3426952c5 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg index c4ce86563fa..3b281372406 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg index dc4505591f1..444d8edb541 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg index 224fa18cd6a..43f3672bd5d 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg index 44737981b04..57328d0b758 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg index 8bf71b5cf5f..78f773a4d52 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg index 3102afdc2c9..e4fbbaacdd2 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg index ad6e3615825..88ffcba8f06 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg index b7445aee864..2cff0f12eb0 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg index cc849df9bac..93b086eb72a 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg index 10cbd3a4cf2..a5045af80b5 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg index 055bbb76239..fce8e2a6f59 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg index 028586beb47..fd63382cad0 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg index 8bc0b97bc58..4bb693a89b4 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg index ec355cec15a..e3c73b2f18f 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg index 3ab4df020ca..30d829153f8 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg index 455cb44a7b1..3a1e9db7293 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg index 3475c621c3b..7d398914b5b 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg index d7d937fdefd..16198bfe8f7 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg index e83067bdc8a..66a6d4f69a7 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg index 188cddf0d6d..65c4d78b549 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg index 6127c2ec434..54e73194576 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg index ca38be0476c..cdb73084688 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg index caa9003cb3d..867b4a8f4dc 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg index a10cbdac7d1..8fa93b32136 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg index 85fe174e950..a4d6bc24108 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg index 9b48be1b8b3..b95282909de 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg index 0440a0a34a7..737432c653b 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg index 7f124ae4ece..542a7b33057 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg index f662c410485..d9209eca425 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg index dae0dda0981..fae31ae3bd6 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg index 1079c746ecc..940064d2daa 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg index 04991249e9f..4afc1c4fa66 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg index 685778f3f14..07028500c39 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg index ab5eca1d474..a6e3798cfbd 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg index a5a2addbc6e..cc48cc71b7d 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_nylon_1030 quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg index 6ecc9a32650..4171f8070ff 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg index 9e060959ddc..1b628fe5e9a 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg index 322d30a975e..b6a063f3a0d 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg index 5ae6c32cb89..ed6f453beed 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg index 3fbe1f63708..396a85ba310 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg index 46aacdf22ca..a3ac4e486ba 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg index 6997dae536c..3b4b044ac2c 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg index 70bb7206af0..882513bcf12 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg index eb89937deda..0447cf7a929 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg index 4bc567a2d91..413c4fdc726 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg index f08c2e68b74..f1c19a14e4a 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg index 4a9a1472b8e..389fad00085 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg index 41edbc8e328..5c3cdf0f7b9 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg index 10356ad3448..151d368a514 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg index 9f04791ac2a..40738389b68 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg index 56e09ac385a..a44146afe5c 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg index 6c8a5462aa6..68b40d7efa7 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg index be4a045e0d8..34ed767222e 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg index 6b107e9c9bd..cb9446d6c16 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg index ca169572b9b..ef790cc9cad 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg index 7e7a3ed9d11..4ec7d54c1d2 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg index a08e251fe01..262f7960069 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg index 2bcf4d4b1d3..fa9670fe18d 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg index 1352a75a8ab..426b7a2c924 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg index ad699959aac..c34110f8358 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg index 6fdabc1a83e..1764c18e024 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg index 1954931cc71..b4287caadd6 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg index 913af1994be..92968b1bd9b 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg index 573834fc791..78a1f472972 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg index 3d5d1781ae4..097c944cc75 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg index 4910a692729..0598a06be0b 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg index 28d395019a5..cdab1d39a93 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg index b91ceb1f851..98b4d3ee1ba 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg index 4a32ddceaf2..503f07b8894 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg index e45a8970f76..e3b485240c7 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg index c0a9632b95b..2a71e9bddb4 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg index bce7e2891fd..39a078103e8 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg index 0a053f123ea..77fd69de9f6 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg index 4f167ecacc9..80938dbebb7 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg index 8efea7e2640..546f6e4c5ff 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg index d2f6973da76..74f6b45b41d 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg index 57e9fc27a4d..a5621900e9d 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg index 2ef4a5b4794..774c1be097d 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg index a7549a851cd..c4a8b055596 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg index 322f31e9863..27fa20a3988 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg index 6f3fa578bff..943b12b2f49 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg index ee3166e7da1..db502df5753 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg index 05eabcc6a32..03d094cd274 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg index d10b2df53be..53f876c5470 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg index 181d89f9579..3e19a67a138 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg index 38bd72884bf..9dc86fee905 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg index d8b2e660fc8..cc6f751c769 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg index c39338eeca8..589eca1b89f 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg index f88eff16151..5760889bf85 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg index 59a6db473db..c6f23011848 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg index 9a94498b121..5d17c760af1 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg index 2611e1deba9..80c89a7f39e 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg index 35644e47a87..98f3963ec7d 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg index a820dd84676..a0a004afdb8 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg index a4f135a4fae..4967bae5e15 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg index ee58caf9e6d..22cfb59bb82 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg index 6399e7fd1fb..25ebbb19909 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg index e034d49e6e9..9d2e69d0dfc 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg index 632c45a51ff..99a0803d8dd 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg index e882d420151..8921b8b8d79 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg index 7b52c7bb2d8..167fddbf0bc 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg index a0fcdc4a520..09c2aac6a19 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg index 496e5fe2159..82322be5464 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg index 9c676c934bc..252afdeae48 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg index 0b4c3c02811..191d6ffa8ed 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg index ffbb925a229..b43d80d4754 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg index 60af5617e3b..3771f389fd7 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg index 71581b46adc..2cc8e0a30a9 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg index bcbb45062ad..f5e18a93c3d 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg index 827ae4a7ba7..4b5fed9eb48 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg index 29f88f6e15d..cd61c020c5b 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg index 316e5d4447b..200856ca53b 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg index 44203ad144b..a5a3bf83387 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg index e322951476c..96f4b453f99 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg index b4ee9ea9852..cd323aeba09 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg index 708896fdb76..11a27b4fe9e 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg index 63ca3d88ff4..d2b524f3f88 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg index 62ed1914db1..0eaf98e1edd 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg index ac9ec6324e8..9a5f413f85d 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg index b225d8a9112..4dafe54befc 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg index 6e859c8dd04..31111b81480 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg index 6b8ebd9d203..71afad27076 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg index f168d4cf46c..2b8a49811ff 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg index 652876d6b23..1a6d68f6c4d 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg index 482b99c2f60..b2344359282 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg index 551e79a8e48..4ec41d2355e 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg index 57097361478..30ea3d02d9a 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg index 38f3b2b2efe..7173ee3c7d0 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg index 54a6d54cc03..6de97c18b82 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg index abdd37d98da..d7f6693d6f1 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg index 50f3b04e16f..4b6b9e08294 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg index 35e9d199577..a7654a552b4 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg index 6e59384a4d6..375aa70df2b 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg index 9df5f69d750..1c09546eb0c 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg index 45b5a9e4153..7d6239044bc 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg index 70ec1234ff3..d4c2a21dbeb 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg index 63275020274..052cccc4a89 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg index d7056a3f110..3f391c093af 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg index a5ec67621f1..0cae1d52781 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg index 4ddc98ddd2f..e6bd01e7066 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg index 1b3a77ab8b0..0dbffd8dce3 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg index be45c084a56..0dbc2576c4c 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg index c02401c4d5f..11b4408a82d 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg index ba91c749d5d..719d0a9c25f 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg index b1d4c72a345..41a4d1a39f5 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = g -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg index 4fac7e687d8..a9ffd2a459a 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = h -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg index 91b4699598a..fc51245d79a 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg index 8d84bc4fd5d..995ad827b9e 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = g -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg index eafe3eef80e..415f3239ccd 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = h -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg index 3286e7fb083..7328f90a50d 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg index bb164bcd99e..80b17899dd9 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = g -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg index 82ad174a959..5a9511c1a67 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = h -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg index f33abf1ec39..2bf9153b930 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg index 2edb0e32f89..ef96f0aa6af 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = g -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg index 30d7139eb91..da4a8109800 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = h -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg index 1bf36453d18..73ff310e2ae 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg index f413dd3e17b..531a5ddb27e 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = g -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg index 9b228f7b05d..33fe8835606 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = h -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg index 68c8604a95a..a583a7eb465 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg index 66fc7c2f92e..266a3fa223b 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = g -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg index aceba867c23..c833fe412b5 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = h -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg index a34c3a4d45e..4fe456849bc 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg index bd41a808d04..01052c90ae4 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = g -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg index 6036150353b..cd68c8c9006 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = h -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg index c150380c74b..fe304f4e541 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg index 74ce8559d2a..67afd44b647 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = g -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg index f59b68f675a..c638766b261 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = h -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg index 689c1fe0764..3ff175b6a06 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg index 514cdcbfde2..a5f351c529b 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = g -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg index 123dc9a953d..125f19d66f7 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = h -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg index 9c3f620a2d1..071677014ed 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg index 0b841dfb095..ad354adb14f 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = g -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg index adfe8161258..1a1de5bb233 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = h -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg index 4b6108e51d2..911194c25ca 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg index 99af35534f2..c8d9145ada8 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = g -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg index 21043cae581..84e86ffd056 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = h -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/s3d_global_A.inst.cfg b/resources/quality/strateo3d/s3d_global_A.inst.cfg index 08f68b9b72a..0e1f915c0a6 100644 --- a/resources/quality/strateo3d/s3d_global_A.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = a -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_B.inst.cfg b/resources/quality/strateo3d/s3d_global_B.inst.cfg index 0b73e60e398..6396711afa9 100644 --- a/resources/quality/strateo3d/s3d_global_B.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = b -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_C.inst.cfg b/resources/quality/strateo3d/s3d_global_C.inst.cfg index 86c88414eb5..6a15748bc38 100644 --- a/resources/quality/strateo3d/s3d_global_C.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = c -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_D.inst.cfg b/resources/quality/strateo3d/s3d_global_D.inst.cfg index 920b1d7be3a..0dd458dcc6b 100644 --- a/resources/quality/strateo3d/s3d_global_D.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = d -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_E.inst.cfg b/resources/quality/strateo3d/s3d_global_E.inst.cfg index d1ef4ba4f7a..3e17131bd75 100644 --- a/resources/quality/strateo3d/s3d_global_E.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = e -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_F.inst.cfg b/resources/quality/strateo3d/s3d_global_F.inst.cfg index db43ee80a00..52a679028f2 100644 --- a/resources/quality/strateo3d/s3d_global_F.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = f -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_G.inst.cfg b/resources/quality/strateo3d/s3d_global_G.inst.cfg index 0cdde5f1ed1..2f8e5e1da40 100644 --- a/resources/quality/strateo3d/s3d_global_G.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = g -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_H.inst.cfg b/resources/quality/strateo3d/s3d_global_H.inst.cfg index 4afd076d213..8321feb52f6 100644 --- a/resources/quality/strateo3d/s3d_global_H.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_A.inst.cfg index 58c36757a76..36a56da7a36 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_B.inst.cfg index 684ea1e890b..cb85d768d4a 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_C.inst.cfg index fff0d3574f8..153b559376e 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_A.inst.cfg index 0ec67493966..de62bfb3a0b 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_B.inst.cfg index bf36578ddca..1628085b6bf 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_C.inst.cfg index 2c46ffa61f3..64ce3c53f99 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_A.inst.cfg index 8ed5aba9107..4fd837f5799 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_B.inst.cfg index 6dec22352a0..82b987e3e47 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_C.inst.cfg index 8be53b349d8..da992e9d55c 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_A.inst.cfg index ff99c16678e..5d52be9c543 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_B.inst.cfg index b1ad54d6b07..09f961d0182 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_C.inst.cfg index 0646030b215..bc0aa98914a 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_A.inst.cfg index fd5b9c19d6f..2d8139af887 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_B.inst.cfg index 056da8135a3..73f6643cb0e 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_C.inst.cfg index 452bc218988..8c6ea9c565f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_A.inst.cfg index 388fad3168b..800247fa002 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_B.inst.cfg index c3f96c9bb9c..14d4c1265dd 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_C.inst.cfg index 8c7691dbdba..1dd2a3f339a 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_A.inst.cfg index 7dab9a053ae..a48122d0ffd 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_B.inst.cfg index d2b48b53b03..5d3fddf6bf3 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_C.inst.cfg index db7b16192f5..3916aec06b8 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_A.inst.cfg index 69a81b00915..1cfdb072d97 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_B.inst.cfg index 47c0152128f..915faa0e57a 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_C.inst.cfg index 9dd44c03bec..c5fddef5f75 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_A.inst.cfg index 79539b003cb..b6dac973520 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_B.inst.cfg index 4ce28663953..af7be4076ef 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_C.inst.cfg index 93a8299a5bd..455bb6516aa 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_A.inst.cfg index 3cc2e16b1e6..c3196139066 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_B.inst.cfg index ece42a52745..663d3bc141e 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_C.inst.cfg index c58920e59c8..ee7ec5a49b7 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_A.inst.cfg index 2f488482886..32b094a926b 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_B.inst.cfg index 29e117bf293..7d02f484336 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_C.inst.cfg index e4586e8ad10..e0e3f0950d0 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_A.inst.cfg index 8ae61efbff4..cec4307927d 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_B.inst.cfg index 709ec5e8d65..cd312783b10 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_C.inst.cfg index 9d523315c6c..fcf85e5354f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_A.inst.cfg index 3995a4ba50b..d8fa6154d30 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_B.inst.cfg index 99cb933de4b..d3c0b763c13 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_C.inst.cfg index aee5cd3365d..9ce83b7567c 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_A.inst.cfg index 122e430241c..aacd51cfa45 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_B.inst.cfg index 75f331d4980..8d4b467382d 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_C.inst.cfg index 4e7684afbfc..ba1e050fad0 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_A.inst.cfg index 073a39a5a75..78ecc50944f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_B.inst.cfg index b5bc5e4ca4e..af98bbe9e31 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_C.inst.cfg index 64dd1671a00..a57dbad5b7e 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_A.inst.cfg index b475aff0fb3..dde68982592 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_B.inst.cfg index 0668a25edf5..1d9a21f7d53 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_C.inst.cfg index 8b08564904b..f9b8ba9c39b 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_B.inst.cfg index d89b15af640..74ec0b720a7 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_C.inst.cfg index b924a98a97c..04b04f9c3eb 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_D.inst.cfg index e779680a8d7..43b2d9776fb 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_B.inst.cfg index 972ef73de39..a0e25f72078 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_C.inst.cfg index 98fd5bc9181..ddfc162cf90 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_D.inst.cfg index c4e58365680..976eb26ce68 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_B.inst.cfg index 3310f63f5e7..15662bb5d01 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_C.inst.cfg index a9060e57079..f50c4e5d109 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_D.inst.cfg index 53825b850e0..2d2e7d57602 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_B.inst.cfg index 52672102746..0593e108d53 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_C.inst.cfg index 636b6883a96..c6197bb4774 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_D.inst.cfg index e26c6dfdd56..b4f7eac10b1 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_B.inst.cfg index 1aae63778e9..919eae54820 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_C.inst.cfg index 9ebf3b84943..b80de309cb4 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_D.inst.cfg index d79ebb8bbc6..f59791b3b9b 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_B.inst.cfg index 23bb6cf1765..4f7c5ede442 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_C.inst.cfg index eb601b4fd21..5b6ae2d0a00 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_D.inst.cfg index 03c1b935b4b..6ccd25b1d14 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_B.inst.cfg index dd8b77a418f..f5dc7fccdbd 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_C.inst.cfg index 7f554643ce6..9c2eea2718d 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_D.inst.cfg index 61d6a4c82c0..c0a166d66ac 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_B.inst.cfg index 7401461a7d8..e3020b574ca 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_C.inst.cfg index cf3ce523d11..369d563c2fe 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_D.inst.cfg index 5c216aaf821..ba40fe5e033 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_B.inst.cfg index bee1d3cbd8e..dcfc8410faf 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_C.inst.cfg index c23d9b7c222..9bf4670d6d7 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_D.inst.cfg index 84fbde1361c..b16e9a61a74 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_B.inst.cfg index 128f9247644..bff5c6084b4 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_C.inst.cfg index 69fd62c4898..75c22ed7133 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_D.inst.cfg index cc328f066b8..8e7fa092df0 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_B.inst.cfg index 0061e3d9ffa..a08f7f3c3c7 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_C.inst.cfg index 46bd6f0b04c..8aabb6d17ec 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_D.inst.cfg index 424b231c4d0..838c32a83d5 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_B.inst.cfg index f725301738f..3b0b01c1471 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_C.inst.cfg index ee05814302f..094c7917cae 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_D.inst.cfg index 90b40173a14..214db30e47d 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_B.inst.cfg index 1615bd64703..79049032575 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_C.inst.cfg index 3f05d9d6dd9..263716d6bce 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_D.inst.cfg index 740270860f8..43ba181c200 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_B.inst.cfg index e1a65d86271..9a995b15294 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_C.inst.cfg index 770688049e5..c325e4a74c7 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_D.inst.cfg index 0391fe35d42..ac4a1c4e193 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_B.inst.cfg index 589bb2edf3e..daa23def109 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_C.inst.cfg index 7ade544cfc4..08e8a6e78cf 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_D.inst.cfg index f9c214dca6a..5d06e3d2db2 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_B.inst.cfg index 765d8268592..352904ad15a 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_C.inst.cfg index 32187c56562..2e447e96388 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_D.inst.cfg index 2b4b07a64d3..b34912e03ee 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_C.inst.cfg index 178c3afb7ba..7be3e6e4f1b 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_D.inst.cfg index 8284fdd78cc..b97f23a7ce8 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_E.inst.cfg index fd6d4c2a57a..4063b36131a 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_C.inst.cfg index ea7f006c040..0b68f3e4d25 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_D.inst.cfg index 0e7825773f4..61c21d9d0dc 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_E.inst.cfg index 95029eb7b0b..b37201dd298 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_C.inst.cfg index bb869612696..458b47de011 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_D.inst.cfg index 12a37141756..ad114d167d2 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_E.inst.cfg index 046d4100d70..02d29c0f243 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_C.inst.cfg index a120b342b3f..c8ff855a1f2 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_D.inst.cfg index df917dfdea3..0d6f5e4f019 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_E.inst.cfg index b1c3095438a..ecf49161dc2 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_C.inst.cfg index c0145e47645..e3eb6c6bc81 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_D.inst.cfg index a6cdd1d0030..af21c2aa449 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_E.inst.cfg index 813e6d3f692..dbe1833889e 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_C.inst.cfg index a7908dbe64e..38084b916cd 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_D.inst.cfg index 99d791e0459..16ee0c27b46 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_E.inst.cfg index 51e472a6855..60393cf4303 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_C.inst.cfg index 75e01a3018f..39970acd1d9 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_D.inst.cfg index 35e4abeff86..91b94f6131f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_E.inst.cfg index a872a95bcde..2cb4d417948 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_C.inst.cfg index 5574d939318..0f29dec3089 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_D.inst.cfg index 67ea5ae6717..518c53ee18f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_E.inst.cfg index 1e4e6ad644f..c6b41e53c21 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_C.inst.cfg index b6d13637c42..3be87a45b3b 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_D.inst.cfg index 29c8b16abe1..f04c331621f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_E.inst.cfg index 742b61c4396..1a4766dfa11 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_C.inst.cfg index dfdf706e1c8..e0de41cf946 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_D.inst.cfg index 134c221bd0b..e71f50e7c5f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_E.inst.cfg index 2c91ff7e0b9..aec52859fa0 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_C.inst.cfg index eb8c192c238..a8059b82eba 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_D.inst.cfg index bbee484d447..19b8a9213a6 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_E.inst.cfg index 7826680ac11..09d2f59acf9 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_C.inst.cfg index b350f79905d..cc43097e850 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_D.inst.cfg index cc6992ff79c..d949cfb2bc0 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_E.inst.cfg index 194734ac100..0e033e1254d 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_C.inst.cfg index 8d7f260d5a3..aca1b80e06f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_D.inst.cfg index 3aae36e48b9..ce791391e86 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_E.inst.cfg index 3efe15f6a2a..d9d47dfa898 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_C.inst.cfg index ff1d50c5ff0..fb69f050ecb 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_D.inst.cfg index 4f84aba8466..4ecd5bf3ee4 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_E.inst.cfg index d75aac9adde..cbdb6b63a5d 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_C.inst.cfg index 841ee6d98e8..9f9ad2c452e 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_D.inst.cfg index 0114631ae78..dd4b2ee64f5 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_E.inst.cfg index 08fa95d0225..023b51a264c 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_A.inst.cfg b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_A.inst.cfg index 54cca88813e..be55a9e69d5 100644 --- a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = a -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_B.inst.cfg b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_B.inst.cfg index aa2ff4be20e..e29b6fd63e6 100644 --- a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = b -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_C.inst.cfg b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_C.inst.cfg index 942026ea173..3edca642373 100644 --- a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = c -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_D.inst.cfg b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_D.inst.cfg index 0dcff6a21b4..c06e0cc24e7 100644 --- a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = d -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_E.inst.cfg b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_E.inst.cfg index b9bc0b995a1..a45e360a41c 100644 --- a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = e -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/tank_m_base_global_draft.inst.cfg b/resources/quality/tank_m_base_global_draft.inst.cfg index 6abdba29009..cef3e3ced61 100644 --- a/resources/quality/tank_m_base_global_draft.inst.cfg +++ b/resources/quality/tank_m_base_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/tank_m_base_global_high.inst.cfg b/resources/quality/tank_m_base_global_high.inst.cfg index e1e4f399f0c..bc065a8dea9 100644 --- a/resources/quality/tank_m_base_global_high.inst.cfg +++ b/resources/quality/tank_m_base_global_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/tank_m_base_global_standard.inst.cfg b/resources/quality/tank_m_base_global_standard.inst.cfg index de2d1f2e885..4683900a0ad 100644 --- a/resources/quality/tank_m_base_global_standard.inst.cfg +++ b/resources/quality/tank_m_base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg b/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg index a31fbff4ea0..e1f33a089f3 100644 --- a/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg +++ b/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg b/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg index 91c465b4d8f..c7ed7e6c0bf 100644 --- a/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg +++ b/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg b/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg index 1088370d87f..5a932c92619 100644 --- a/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg +++ b/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg index 903b5e3c689..47a22b00b76 100644 --- a/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg b/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg index 83196dbbdcb..dbb15a5989b 100644 --- a/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg index 0f5974d5b56..4f9b30b4cd4 100644 --- a/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg index 2ded3ececed..cb330750518 100644 --- a/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg b/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg index 043b250cb9c..b762c33c229 100644 --- a/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg index d129c14f75f..2ccf5b7d44f 100644 --- a/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg index 96c0d5dd7fa..6a88be57882 100644 --- a/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg b/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg index 61e8ed738cd..1b8fb99784d 100644 --- a/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg index d7675bd700c..33ee02b57f0 100644 --- a/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg index ada9873b4cc..61f7512585c 100644 --- a/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg b/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg index 1b234761f79..30a7ffc3ade 100644 --- a/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg index 4aa5dce88ef..0ed612e0904 100644 --- a/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.2_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.2_abs_high.inst.cfg index 58ded90e057..bb031de52f5 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.2_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.2_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.3_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.3_abs_high.inst.cfg index c260d1e9f1d..7dd86d45d76 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.3_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.3_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_high.inst.cfg index 8777efd32a7..1546674bb1b 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_normal.inst.cfg index eb0c65762c9..bcf8f4c3d98 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_draft.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_draft.inst.cfg index 63653459472..e4af6949cc2 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_draft.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_high.inst.cfg index e6e9ba3566b..768d5f9579a 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_normal.inst.cfg index b3993d94241..6637c178ad7 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_coarse.inst.cfg index fdcdf800c1c..f2c201ff556 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_high.inst.cfg index 88c57d40d55..248f84b5f1f 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_normal.inst.cfg index 0fe0aa16e62..37989390f4a 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_extra_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_extra_coarse.inst.cfg index 7c3a01d73f9..9d1e1f59fd1 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_extra_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_high.inst.cfg index 98f44465c7f..c65d8c98782 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_normal.inst.cfg index bfa6caefdf6..45c48af06f2 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.2_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.2_flex_high.inst.cfg index 680bb1a0fb9..47651b2269c 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.2_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.2_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.3_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.3_flex_high.inst.cfg index 7c6f8424dff..40fb2db3d5c 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.3_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.3_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_high.inst.cfg index 0350280e03b..1d72ea51983 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_normal.inst.cfg index 75e19fcb227..663e4e31842 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_draft.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_draft.inst.cfg index 70a5265943e..af5f4ec3031 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_draft.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_high.inst.cfg index 0ae0bca17e5..dc11ed84302 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_normal.inst.cfg index 11421a756f0..1242c06515d 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_coarse.inst.cfg index a66f43a83c9..f606252f9be 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_high.inst.cfg index f2fb5acade1..2a12a43b1fd 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_normal.inst.cfg index 692ad776fa4..585bde78eb1 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_extra_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_extra_coarse.inst.cfg index bbcecf09bdb..f5f27a16543 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_extra_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_high.inst.cfg index 58000887444..c747105ca0b 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_normal.inst.cfg index a0835937778..465321cb4a8 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.2_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.2_petg_high.inst.cfg index d8b71e65fdd..672fe535c33 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.2_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.2_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.3_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.3_petg_high.inst.cfg index ad526006c1c..271518a4f0c 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.3_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.3_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_high.inst.cfg index 4d1c68c0cb3..4ead3de6429 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_normal.inst.cfg index 78a7161a0cd..8eeb7f7a52e 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_draft.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_draft.inst.cfg index 63a5a544423..6b8ac3bd49a 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_draft.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_high.inst.cfg index aa03c022e49..d4be9496911 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_normal.inst.cfg index 5249770cd5f..ad46ffef48d 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_coarse.inst.cfg index 9dd447e4b97..768c13565f2 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_high.inst.cfg index 723810f2597..5cf3c2d17a4 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_normal.inst.cfg index e330599e954..1d2acf0f101 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_extra_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_extra_coarse.inst.cfg index f440d62f4eb..556df18b046 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_extra_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_high.inst.cfg index c879afab1a3..136f1ad6115 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_normal.inst.cfg index 6d66a27ba62..8c1d96f8f7f 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.2_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.2_pla_high.inst.cfg index 74c52259691..69b8c484b60 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.2_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.2_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.3_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.3_pla_high.inst.cfg index 4de0362205a..e159697c87a 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.3_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.3_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_high.inst.cfg index 5538c370a1a..6f684c07774 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_normal.inst.cfg index a0973bf8dad..b4db252214b 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_draft.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_draft.inst.cfg index fd5fffa8d3b..2ff8f1d568b 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_draft.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_high.inst.cfg index bdf0744d98f..1c197ce362e 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_normal.inst.cfg index ca101ab2d11..30cc3f891e9 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_coarse.inst.cfg index 858f3652432..572bf4075c6 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_high.inst.cfg index d3bb7b6356d..0ff7992da6f 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_normal.inst.cfg index 3211dce29d6..022d6b12f86 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_extra_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_extra_coarse.inst.cfg index a714b854f64..1c13a45be77 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_extra_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_high.inst.cfg index 5898b5e489a..0e40bf105df 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_normal.inst.cfg index 1fe84981329..1dccc444104 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.2_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.2_pla_bois_high.inst.cfg index e754ccb09d0..bc15310d38d 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.2_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.2_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.3_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.3_pla_bois_high.inst.cfg index 75bb872ce2e..f4b1fcaa68d 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.3_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.3_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_high.inst.cfg index e95a76ed32b..8846800d5b5 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_normal.inst.cfg index 7f94a12b2e5..c7b91a24f26 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_draft.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_draft.inst.cfg index 578f8fa05f0..fd242ebf1f4 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_draft.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_high.inst.cfg index 56fce96cd2e..65ee5e4060f 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_normal.inst.cfg index e5e88e8ae4b..bc7192956e0 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_coarse.inst.cfg index 17ad78b0fd5..5aa2a1f7a67 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_high.inst.cfg index 7ba4b036847..b0f80e31957 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_normal.inst.cfg index f91dbbfe7b4..068b46b819f 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_extra_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_extra_coarse.inst.cfg index c51ec6a0e28..c1cb3a139a8 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_extra_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_high.inst.cfg index 708f9fc4e4f..71ba1402116 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_normal.inst.cfg index 7bae46e4405..22df55ae9b0 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Coarse_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Coarse_Quality.inst.cfg index 04200159685..26d51f40488 100644 --- a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Coarse_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Draft_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Draft_Quality.inst.cfg index b053d40c3fc..e3678d65868 100644 --- a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Draft_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Extra_Coarse_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Extra_Coarse_Quality.inst.cfg index 2b4f910fbe2..4250674bf72 100644 --- a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Extra_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_High_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_High_Quality.inst.cfg index da986991675..68366636d1f 100644 --- a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_High_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Normal_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Normal_Quality.inst.cfg index 69115bd494f..65f4a62d9fd 100644 --- a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Normal_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_high.inst.cfg index 4e31f68f2e5..f6ed38a7da2 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_normal.inst.cfg index 337ab660922..ce05cbd1174 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_high.inst.cfg index dc4b03b0010..d1ffc8dee00 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_normal.inst.cfg index b2ac3e69160..90f7f5cafa9 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex.inst.cfg index a98abac5fe3..6ebac449ebc 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex_only.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex_only.inst.cfg index 2e1e59e3858..ecfc90bb0c3 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex_only.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex_only.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = -3 diff --git a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex.inst.cfg index adc6a856cfb..597857775ac 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex_only.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex_only.inst.cfg index 98f8c2182bd..0ab7ebeb7eb 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex_only.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex_only.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = -3 diff --git a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_high.inst.cfg index 74d9ab12fc9..0a8fa2560b7 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_normal.inst.cfg index 1c74e11b166..fa840bb04c8 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_high.inst.cfg index 4fa73cebf87..af5985fa287 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_normal.inst.cfg index 3bc2c217125..c210e1067ce 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex.inst.cfg index cf53d203e2b..4c72239702d 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex_only.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex_only.inst.cfg index 600e5d6d0fa..6552f1b786b 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex_only.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex_only.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = -3 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_high.inst.cfg index 59bcd138e57..6f8a31a5cc0 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_normal.inst.cfg index 455511c62b2..6ffc6af7555 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_pva.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_pva.inst.cfg index bd9b25a105e..b92564848a0 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_pva.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_pva.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex.inst.cfg index f7bd6efbfc6..49b7a3b4864 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex_only.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex_only.inst.cfg index 3c11299e67d..e1fc378b867 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex_only.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex_only.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = -3 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_high.inst.cfg index e401945530d..4ef60bbf984 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_normal.inst.cfg index 00dd53f7614..c65cacdd691 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_pva.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_pva.inst.cfg index f3f50b52741..978d1b8312c 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_pva.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_pva.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_flex.inst.cfg index 3ba99d0a170..1c212d6e557 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_high.inst.cfg index 14915a0d75d..fdf65404541 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_normal.inst.cfg index d47c3df97df..8d02a10d4d2 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_flex.inst.cfg index c22bbec0660..9b067c6d5f4 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_high.inst.cfg index 23bb58ea7a7..6895181f485 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_normal.inst.cfg index 562a39da4c2..c616a33dadc 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_classic_pva_pva.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_classic_pva_pva.inst.cfg index c9b82c8587a..b9c6f1305d9 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_classic_pva_pva.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_classic_pva_pva.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_direct_drive_pva_pva.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_direct_drive_pva_pva.inst.cfg index b1a96c0321d..6ceadf98aab 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_direct_drive_pva_pva.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_direct_drive_pva_pva.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg index ac5f3e5bee7..e54e67f8a8a 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg index eca85becc64..1bd2947b6a0 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg index 8071d7193e5..2a7f08d04cf 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg index 8354fba5e09..04565fcfdb8 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg index 074632abda3..61b931dcceb 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/tizyx/tizyx_k25/tizyx_k25_high.inst.cfg b/resources/quality/tizyx/tizyx_k25/tizyx_k25_high.inst.cfg index 50608d4be08..9ba18d70e8c 100644 --- a/resources/quality/tizyx/tizyx_k25/tizyx_k25_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_k25/tizyx_k25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/tizyx/tizyx_k25/tizyx_k25_normal.inst.cfg b/resources/quality/tizyx/tizyx_k25/tizyx_k25_normal.inst.cfg index 86dcd154ed6..7a8b36873c2 100644 --- a/resources/quality/tizyx/tizyx_k25/tizyx_k25_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_k25/tizyx_k25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_fast.inst.cfg b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_fast.inst.cfg index 21edbe28090..76eb3991eee 100644 --- a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_fast.inst.cfg +++ b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_normal.inst.cfg b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_normal.inst.cfg index 0bd8bb63643..48124047b08 100644 --- a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_normal.inst.cfg +++ b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_slow.inst.cfg b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_slow.inst.cfg index 8df81f55f8f..9f3b21318e6 100644 --- a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_slow.inst.cfg +++ b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_slow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = slow -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/trimaker_nebula/trimaker_nebula_fast.inst.cfg b/resources/quality/trimaker_nebula/trimaker_nebula_fast.inst.cfg index 9a5124e4fc0..86ebed427dd 100644 --- a/resources/quality/trimaker_nebula/trimaker_nebula_fast.inst.cfg +++ b/resources/quality/trimaker_nebula/trimaker_nebula_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/trimaker_nebula/trimaker_nebula_normal.inst.cfg b/resources/quality/trimaker_nebula/trimaker_nebula_normal.inst.cfg index cd7f01f5cac..2f56f89d6c0 100644 --- a/resources/quality/trimaker_nebula/trimaker_nebula_normal.inst.cfg +++ b/resources/quality/trimaker_nebula/trimaker_nebula_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/trimaker_nebula/trimaker_nebula_slow.inst.cfg b/resources/quality/trimaker_nebula/trimaker_nebula_slow.inst.cfg index b88d621681d..cbaf24020b9 100644 --- a/resources/quality/trimaker_nebula/trimaker_nebula_slow.inst.cfg +++ b/resources/quality/trimaker_nebula/trimaker_nebula_slow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = slow -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/tronxy/tronxy_0.2_ABS_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.2_ABS_extra.inst.cfg index 34f9e3e47ce..58c5c5a99cf 100644 --- a/resources/quality/tronxy/tronxy_0.2_ABS_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_ABS_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_ABS_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.2_ABS_fine.inst.cfg index 3e3f8912d2a..07590e6220c 100644 --- a/resources/quality/tronxy/tronxy_0.2_ABS_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_ABS_super.inst.cfg b/resources/quality/tronxy/tronxy_0.2_ABS_super.inst.cfg index c16174957a1..65b78d75e3d 100644 --- a/resources/quality/tronxy/tronxy_0.2_ABS_super.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PETG_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PETG_extra.inst.cfg index 06b8c01db17..db26f43e1c7 100644 --- a/resources/quality/tronxy/tronxy_0.2_PETG_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PETG_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PETG_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PETG_fine.inst.cfg index 10397a2b5b8..2e8907d03d2 100644 --- a/resources/quality/tronxy/tronxy_0.2_PETG_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PETG_super.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PETG_super.inst.cfg index d9f6d69c14e..f4435399795 100644 --- a/resources/quality/tronxy/tronxy_0.2_PETG_super.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PLA_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PLA_extra.inst.cfg index 204eca3683a..a9f594e3383 100644 --- a/resources/quality/tronxy/tronxy_0.2_PLA_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PLA_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PLA_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PLA_fine.inst.cfg index 5929c712bda..258d1b24f7f 100644 --- a/resources/quality/tronxy/tronxy_0.2_PLA_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PLA_super.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PLA_super.inst.cfg index f63750d7322..3ea6f759b6c 100644 --- a/resources/quality/tronxy/tronxy_0.2_PLA_super.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_ABS_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.3_ABS_extra.inst.cfg index 246ad7a8de0..76d849144a7 100644 --- a/resources/quality/tronxy/tronxy_0.3_ABS_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_ABS_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extra -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_ABS_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.3_ABS_fine.inst.cfg index 2bfaa59e9cf..38d0d5a70e0 100644 --- a/resources/quality/tronxy/tronxy_0.3_ABS_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_ABS_low.inst.cfg b/resources/quality/tronxy/tronxy_0.3_ABS_low.inst.cfg index 1a667797bf7..cf315d03117 100644 --- a/resources/quality/tronxy/tronxy_0.3_ABS_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_ABS_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.3_ABS_normal.inst.cfg index c1b7c0eeeb6..b2a9e832625 100644 --- a/resources/quality/tronxy/tronxy_0.3_ABS_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PETG_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PETG_extra.inst.cfg index 168ee1f9c30..a00e734a4b8 100644 --- a/resources/quality/tronxy/tronxy_0.3_PETG_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PETG_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extra -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PETG_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PETG_fine.inst.cfg index f5a4fff0a22..e31eb16a159 100644 --- a/resources/quality/tronxy/tronxy_0.3_PETG_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PETG_low.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PETG_low.inst.cfg index 848f6d60de9..b34e2562251 100644 --- a/resources/quality/tronxy/tronxy_0.3_PETG_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PETG_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PETG_normal.inst.cfg index 8a9cb9d96f6..9b584799681 100644 --- a/resources/quality/tronxy/tronxy_0.3_PETG_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PLA_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PLA_extra.inst.cfg index 9d8c29d1800..fba79329755 100644 --- a/resources/quality/tronxy/tronxy_0.3_PLA_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PLA_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extra -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PLA_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PLA_fine.inst.cfg index e25434749ff..7eeb5abb50f 100644 --- a/resources/quality/tronxy/tronxy_0.3_PLA_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PLA_low.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PLA_low.inst.cfg index 21afc0841a2..0aaf3070a27 100644 --- a/resources/quality/tronxy/tronxy_0.3_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PLA_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PLA_normal.inst.cfg index 2d0dcac3095..0a5e9e57ec4 100644 --- a/resources/quality/tronxy/tronxy_0.3_PLA_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_TPU_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.3_TPU_extra.inst.cfg index 4f94115634b..03f0cf63170 100644 --- a/resources/quality/tronxy/tronxy_0.3_TPU_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_TPU_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = extra -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_TPU_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.3_TPU_fine.inst.cfg index 16118e491ae..0bb51ba7f51 100644 --- a/resources/quality/tronxy/tronxy_0.3_TPU_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_TPU_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_TPU_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.3_TPU_normal.inst.cfg index 4f685b96a6c..b5f0525693c 100644 --- a/resources/quality/tronxy/tronxy_0.3_TPU_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_ABS_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.4_ABS_extra.inst.cfg index 18781c647f1..0be7bc67dfd 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extra -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_ABS_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.4_ABS_fine.inst.cfg index 06de7617521..168f49e05f2 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_ABS_low.inst.cfg b/resources/quality/tronxy/tronxy_0.4_ABS_low.inst.cfg index e945ac01dda..e7404f37da5 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_ABS_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.4_ABS_normal.inst.cfg index 53e16d3f3d7..d57ac22096c 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_ABS_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.4_ABS_rough.inst.cfg index 154d97c11db..443e8e9163d 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PETG_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PETG_extra.inst.cfg index 6d37eec24bb..3c758b080f8 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extra -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PETG_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PETG_fine.inst.cfg index 197c0784e5a..e4e6fd325ac 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PETG_low.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PETG_low.inst.cfg index 2b74aef0eeb..3e521fe5cda 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PETG_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PETG_normal.inst.cfg index dc23c9ce868..50a6a063676 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PETG_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PETG_rough.inst.cfg index e66f4dbf3c6..7efc2925db9 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PLA_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PLA_extra.inst.cfg index 1c0e4292fb1..33c0dd9ed71 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extra -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PLA_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PLA_fine.inst.cfg index 972760e4af2..a9dec2ac7ca 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PLA_low.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PLA_low.inst.cfg index 5ba5b1aa7be..9d8eb29cbea 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PLA_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PLA_normal.inst.cfg index e587de7f49a..3eda4c53911 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PLA_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PLA_rough.inst.cfg index bc6e559bee4..cdb4c8589ec 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_TPU_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.4_TPU_extra.inst.cfg index 9e74cd5116f..c3b10bc011b 100644 --- a/resources/quality/tronxy/tronxy_0.4_TPU_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_TPU_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = extra -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_TPU_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.4_TPU_fine.inst.cfg index d688dc9c469..2f80a69cad0 100644 --- a/resources/quality/tronxy/tronxy_0.4_TPU_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_TPU_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_TPU_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.4_TPU_normal.inst.cfg index cea23b76f14..500654b95e8 100644 --- a/resources/quality/tronxy/tronxy_0.4_TPU_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_ABS_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.5_ABS_fine.inst.cfg index 729428a336a..868647065cf 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_ABS_low.inst.cfg b/resources/quality/tronxy/tronxy_0.5_ABS_low.inst.cfg index b68e94831e8..1bc97978847 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_ABS_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.5_ABS_normal.inst.cfg index e359ea1edc1..5afbc9a0368 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_ABS_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.5_ABS_rapid.inst.cfg index e23722aa77a..793faa0398e 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_ABS_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.5_ABS_rough.inst.cfg index ad66b902ec0..6aa3e37b5cd 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PETG_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PETG_fine.inst.cfg index 9a5899f57d7..8839464be8e 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PETG_low.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PETG_low.inst.cfg index daa17e9534a..a03fe406d63 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PETG_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PETG_normal.inst.cfg index e87962c3e20..0ab68afe6e1 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PETG_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PETG_rapid.inst.cfg index d2b41210084..66bb790b7bb 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PETG_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PETG_rough.inst.cfg index 387f81555c3..aee6a22475a 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PLA_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PLA_fine.inst.cfg index e2d4b0d54de..48b223905e5 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PLA_low.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PLA_low.inst.cfg index a9dd9837d2b..1e2b873e7f7 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PLA_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PLA_normal.inst.cfg index 023e0405370..c3702cdd9e6 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PLA_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PLA_rapid.inst.cfg index 2d539dd6b69..99060723629 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PLA_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PLA_rough.inst.cfg index 7c5eaddd0f9..dab3aaa4907 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_TPU_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.5_TPU_fine.inst.cfg index 9660d1dcf5b..34b0df7d1fb 100644 --- a/resources/quality/tronxy/tronxy_0.5_TPU_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_TPU_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_TPU_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.5_TPU_normal.inst.cfg index 5d11d343740..b6c1244dcb5 100644 --- a/resources/quality/tronxy/tronxy_0.5_TPU_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_TPU_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.5_TPU_rapid.inst.cfg index aaf808dd3b9..1cf6176e490 100644 --- a/resources/quality/tronxy/tronxy_0.5_TPU_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_TPU_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_ABS_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.6_ABS_normal.inst.cfg index 60586feecc2..86519d13051 100644 --- a/resources/quality/tronxy/tronxy_0.6_ABS_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_ABS_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.6_ABS_rapid.inst.cfg index e27b930641e..e8737441da1 100644 --- a/resources/quality/tronxy/tronxy_0.6_ABS_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_ABS_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_ABS_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.6_ABS_rough.inst.cfg index 1e7bb100639..c2f6ea5527a 100644 --- a/resources/quality/tronxy/tronxy_0.6_ABS_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_ABS_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PETG_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PETG_normal.inst.cfg index 607671c47f9..c60b6b7bc24 100644 --- a/resources/quality/tronxy/tronxy_0.6_PETG_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PETG_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PETG_rapid.inst.cfg index b905bd32414..627de7cadf2 100644 --- a/resources/quality/tronxy/tronxy_0.6_PETG_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PETG_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PETG_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PETG_rough.inst.cfg index 044a9d2a461..367597cad21 100644 --- a/resources/quality/tronxy/tronxy_0.6_PETG_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PETG_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PLA_low.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PLA_low.inst.cfg index 51300f1c931..725fcb20a76 100644 --- a/resources/quality/tronxy/tronxy_0.6_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PLA_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PLA_normal.inst.cfg index 4fa07b2983f..651ba5a4c98 100644 --- a/resources/quality/tronxy/tronxy_0.6_PLA_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PLA_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PLA_rapid.inst.cfg index 4189e2f030b..d8620b8ea97 100644 --- a/resources/quality/tronxy/tronxy_0.6_PLA_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PLA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PLA_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PLA_rough.inst.cfg index 96c304d9d3c..bfe7b1127bf 100644 --- a/resources/quality/tronxy/tronxy_0.6_PLA_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PLA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_TPU_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.6_TPU_normal.inst.cfg index b9d8782fa61..89dada6d6dc 100644 --- a/resources/quality/tronxy/tronxy_0.6_TPU_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_TPU_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.6_TPU_rapid.inst.cfg index 50b7ff3fba1..6901d8f5526 100644 --- a/resources/quality/tronxy/tronxy_0.6_TPU_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_TPU_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_ABS_low.inst.cfg b/resources/quality/tronxy/tronxy_0.8_ABS_low.inst.cfg index 42290b3be07..3177aa72da9 100644 --- a/resources/quality/tronxy/tronxy_0.8_ABS_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_ABS_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.8_ABS_rapid.inst.cfg index 137877259a5..23392e8790c 100644 --- a/resources/quality/tronxy/tronxy_0.8_ABS_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_ABS_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_ABS_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.8_ABS_rough.inst.cfg index 867d9d4bca2..4ccda304738 100644 --- a/resources/quality/tronxy/tronxy_0.8_ABS_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_ABS_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PETG_low.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PETG_low.inst.cfg index f55d6ea39ec..9e7e746430d 100644 --- a/resources/quality/tronxy/tronxy_0.8_PETG_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PETG_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PETG_rapid.inst.cfg index 87dcd771e59..d4ff0860ab7 100644 --- a/resources/quality/tronxy/tronxy_0.8_PETG_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PETG_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PETG_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PETG_rough.inst.cfg index cdce5257195..deda6a7f6ce 100644 --- a/resources/quality/tronxy/tronxy_0.8_PETG_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PETG_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PLA_low.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PLA_low.inst.cfg index 1696a160927..ccca511d6e6 100644 --- a/resources/quality/tronxy/tronxy_0.8_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PLA_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PLA_rapid.inst.cfg index 064cd8d1e74..17f2ce6c12c 100644 --- a/resources/quality/tronxy/tronxy_0.8_PLA_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PLA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PLA_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PLA_rough.inst.cfg index 2745bc4ddf5..b32fa4b71ef 100644 --- a/resources/quality/tronxy/tronxy_0.8_PLA_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PLA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_TPU_low.inst.cfg b/resources/quality/tronxy/tronxy_0.8_TPU_low.inst.cfg index 7705be45c1f..f1583a70d2e 100644 --- a/resources/quality/tronxy/tronxy_0.8_TPU_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_TPU_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_TPU_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.8_TPU_rapid.inst.cfg index 68cc7246f5d..a46ab470361 100644 --- a/resources/quality/tronxy/tronxy_0.8_TPU_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_TPU_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_TPU_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.8_TPU_rough.inst.cfg index 64290f624e3..b83c8b5efe2 100644 --- a/resources/quality/tronxy/tronxy_0.8_TPU_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_TPU_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_global_extra.inst.cfg b/resources/quality/tronxy/tronxy_global_extra.inst.cfg index 986c0383f7d..d11d1e39e8d 100644 --- a/resources/quality/tronxy/tronxy_global_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/tronxy/tronxy_global_fine.inst.cfg b/resources/quality/tronxy/tronxy_global_fine.inst.cfg index d5853d87037..1ee5b3d8568 100644 --- a/resources/quality/tronxy/tronxy_global_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/tronxy/tronxy_global_low.inst.cfg b/resources/quality/tronxy/tronxy_global_low.inst.cfg index e5ab0dc3a49..446fadfa8da 100644 --- a/resources/quality/tronxy/tronxy_global_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/tronxy/tronxy_global_normal.inst.cfg b/resources/quality/tronxy/tronxy_global_normal.inst.cfg index 55ecad6eacd..07697c710cc 100644 --- a/resources/quality/tronxy/tronxy_global_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/tronxy/tronxy_global_rapid.inst.cfg b/resources/quality/tronxy/tronxy_global_rapid.inst.cfg index ed2fc3425e9..4b49afa97ab 100644 --- a/resources/quality/tronxy/tronxy_global_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/tronxy/tronxy_global_rough.inst.cfg b/resources/quality/tronxy/tronxy_global_rough.inst.cfg index 97f0ae05c7f..6bbf2615bbd 100644 --- a/resources/quality/tronxy/tronxy_global_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = rough -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/tronxy/tronxy_global_super.inst.cfg b/resources/quality/tronxy/tronxy_global_super.inst.cfg index 5f17af54a27..2ba5b0aaec0 100644 --- a/resources/quality/tronxy/tronxy_global_super.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/twotrees/abs/two_trees_0.2_ABS_super.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.2_ABS_super.inst.cfg index 6f00503f5ab..ebc52fdf837 100644 --- a/resources/quality/twotrees/abs/two_trees_0.2_ABS_super.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.2_ABS_ultra.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.2_ABS_ultra.inst.cfg index e5327c74e69..a51d2ee8266 100644 --- a/resources/quality/twotrees/abs/two_trees_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.3_ABS_adaptive.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.3_ABS_adaptive.inst.cfg index be1e007609f..498e38ab67c 100644 --- a/resources/quality/twotrees/abs/two_trees_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.3_ABS_low.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.3_ABS_low.inst.cfg index e24d1292ef6..f3ef6c692d5 100644 --- a/resources/quality/twotrees/abs/two_trees_0.3_ABS_low.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.3_ABS_standard.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.3_ABS_standard.inst.cfg index d2688767ff8..27e856a11c8 100644 --- a/resources/quality/twotrees/abs/two_trees_0.3_ABS_standard.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.3_ABS_super.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.3_ABS_super.inst.cfg index b857a977dad..61f983c1f17 100644 --- a/resources/quality/twotrees/abs/two_trees_0.3_ABS_super.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.4_ABS_adaptive.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.4_ABS_adaptive.inst.cfg index 2c0cf7462c0..acf9a2d79b6 100644 --- a/resources/quality/twotrees/abs/two_trees_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.4_ABS_low.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.4_ABS_low.inst.cfg index 00fe14ba9c7..fa26a3e621d 100644 --- a/resources/quality/twotrees/abs/two_trees_0.4_ABS_low.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.4_ABS_standard.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.4_ABS_standard.inst.cfg index 89443e35991..70ea753138a 100644 --- a/resources/quality/twotrees/abs/two_trees_0.4_ABS_standard.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.4_ABS_super.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.4_ABS_super.inst.cfg index e8b58d0285f..57e2cc95eb9 100644 --- a/resources/quality/twotrees/abs/two_trees_0.4_ABS_super.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.5_ABS_adaptive.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.5_ABS_adaptive.inst.cfg index 01176c7cd5c..0a6247df5e8 100644 --- a/resources/quality/twotrees/abs/two_trees_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.5_ABS_low.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.5_ABS_low.inst.cfg index 90669a7baee..e7d5a413d3f 100644 --- a/resources/quality/twotrees/abs/two_trees_0.5_ABS_low.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.5_ABS_standard.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.5_ABS_standard.inst.cfg index 553b764395c..59d727e0ee8 100644 --- a/resources/quality/twotrees/abs/two_trees_0.5_ABS_standard.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.5_ABS_super.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.5_ABS_super.inst.cfg index 452062d3b82..8093f901b3f 100644 --- a/resources/quality/twotrees/abs/two_trees_0.5_ABS_super.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.6_ABS_standard.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.6_ABS_standard.inst.cfg index 9f4d56bab1e..4da10a58b70 100644 --- a/resources/quality/twotrees/abs/two_trees_0.6_ABS_standard.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.8_ABS_draft.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.8_ABS_draft.inst.cfg index 989d115cee9..a2928c11ae9 100644 --- a/resources/quality/twotrees/abs/two_trees_0.8_ABS_draft.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_1.0_ABS_draft.inst.cfg b/resources/quality/twotrees/abs/two_trees_1.0_ABS_draft.inst.cfg index 901cb8ddfcb..d3acc3d676b 100644 --- a/resources/quality/twotrees/abs/two_trees_1.0_ABS_draft.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.2_PETG_super.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.2_PETG_super.inst.cfg index bd431e4d8af..00e1753f59f 100644 --- a/resources/quality/twotrees/petg/two_trees_0.2_PETG_super.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.2_PETG_ultra.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.2_PETG_ultra.inst.cfg index 31e4283783a..cd456caa859 100644 --- a/resources/quality/twotrees/petg/two_trees_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.3_PETG_adaptive.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.3_PETG_adaptive.inst.cfg index b565f26eabe..c3681301cf3 100644 --- a/resources/quality/twotrees/petg/two_trees_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.3_PETG_low.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.3_PETG_low.inst.cfg index f10771f87dc..a330602fdd3 100644 --- a/resources/quality/twotrees/petg/two_trees_0.3_PETG_low.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.3_PETG_standard.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.3_PETG_standard.inst.cfg index e15f473ceb8..bf9e99eea59 100644 --- a/resources/quality/twotrees/petg/two_trees_0.3_PETG_standard.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.3_PETG_super.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.3_PETG_super.inst.cfg index 0d95bba0edf..a5b2744362d 100644 --- a/resources/quality/twotrees/petg/two_trees_0.3_PETG_super.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.4_PETG_adaptive.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.4_PETG_adaptive.inst.cfg index 56607f5f295..766b6ef1ff5 100644 --- a/resources/quality/twotrees/petg/two_trees_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.4_PETG_low.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.4_PETG_low.inst.cfg index be195e72efd..529cb826282 100644 --- a/resources/quality/twotrees/petg/two_trees_0.4_PETG_low.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.4_PETG_standard.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.4_PETG_standard.inst.cfg index eb0be813137..9a9213c25e8 100644 --- a/resources/quality/twotrees/petg/two_trees_0.4_PETG_standard.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.4_PETG_super.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.4_PETG_super.inst.cfg index f544466fd27..32174de8066 100644 --- a/resources/quality/twotrees/petg/two_trees_0.4_PETG_super.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.5_PETG_adaptive.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.5_PETG_adaptive.inst.cfg index 0a88af62794..f55cc7c36dd 100644 --- a/resources/quality/twotrees/petg/two_trees_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.5_PETG_low.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.5_PETG_low.inst.cfg index 28414c38973..4d1989d0741 100644 --- a/resources/quality/twotrees/petg/two_trees_0.5_PETG_low.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.5_PETG_standard.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.5_PETG_standard.inst.cfg index ff2cde5e65e..47b93b14f59 100644 --- a/resources/quality/twotrees/petg/two_trees_0.5_PETG_standard.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.5_PETG_super.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.5_PETG_super.inst.cfg index 93bc9bf622b..ac3ab464203 100644 --- a/resources/quality/twotrees/petg/two_trees_0.5_PETG_super.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.6_PETG_standard.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.6_PETG_standard.inst.cfg index 925270ecfc0..7ba8d13fc7a 100644 --- a/resources/quality/twotrees/petg/two_trees_0.6_PETG_standard.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.8_PETG_draft.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.8_PETG_draft.inst.cfg index 93b52215f07..8d9b052abe9 100644 --- a/resources/quality/twotrees/petg/two_trees_0.8_PETG_draft.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_1.0_PETG_draft.inst.cfg b/resources/quality/twotrees/petg/two_trees_1.0_PETG_draft.inst.cfg index e2f943a9607..6654f3a13dd 100644 --- a/resources/quality/twotrees/petg/two_trees_1.0_PETG_draft.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.2_PLA_super.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.2_PLA_super.inst.cfg index a7863a4acff..292d3964c9e 100644 --- a/resources/quality/twotrees/pla/two_trees_0.2_PLA_super.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.2_PLA_ultra.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.2_PLA_ultra.inst.cfg index f943d089620..a18faa24967 100644 --- a/resources/quality/twotrees/pla/two_trees_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.3_PLA_adaptive.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.3_PLA_adaptive.inst.cfg index 9afa6cab04a..d73b38625fd 100644 --- a/resources/quality/twotrees/pla/two_trees_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.3_PLA_low.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.3_PLA_low.inst.cfg index 5049cb98cda..bc1d930f5cd 100644 --- a/resources/quality/twotrees/pla/two_trees_0.3_PLA_low.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.3_PLA_standard.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.3_PLA_standard.inst.cfg index 9249ab7ce22..2aed3e25e3a 100644 --- a/resources/quality/twotrees/pla/two_trees_0.3_PLA_standard.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.3_PLA_super.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.3_PLA_super.inst.cfg index b41052239bc..672344afe9a 100644 --- a/resources/quality/twotrees/pla/two_trees_0.3_PLA_super.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.4_PLA_adaptive.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.4_PLA_adaptive.inst.cfg index 022a9870dc3..be051364fd7 100644 --- a/resources/quality/twotrees/pla/two_trees_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.4_PLA_low.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.4_PLA_low.inst.cfg index a250afa8f1f..50ef6ef118a 100644 --- a/resources/quality/twotrees/pla/two_trees_0.4_PLA_low.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.4_PLA_standard.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.4_PLA_standard.inst.cfg index 7d7deb7cba9..ffaa82b9f16 100644 --- a/resources/quality/twotrees/pla/two_trees_0.4_PLA_standard.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.4_PLA_super.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.4_PLA_super.inst.cfg index 92f63b1d9d1..0142c3df2db 100644 --- a/resources/quality/twotrees/pla/two_trees_0.4_PLA_super.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.5_PLA_adaptive.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.5_PLA_adaptive.inst.cfg index e4157be72d5..fab1c4d9685 100644 --- a/resources/quality/twotrees/pla/two_trees_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.5_PLA_low.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.5_PLA_low.inst.cfg index 13d90a8ce8d..26f374607e9 100644 --- a/resources/quality/twotrees/pla/two_trees_0.5_PLA_low.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.5_PLA_standard.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.5_PLA_standard.inst.cfg index 4e4812aa1fe..9f334a996a1 100644 --- a/resources/quality/twotrees/pla/two_trees_0.5_PLA_standard.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.5_PLA_super.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.5_PLA_super.inst.cfg index 2c4200b39c4..45f87521afe 100644 --- a/resources/quality/twotrees/pla/two_trees_0.5_PLA_super.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.6_PLA_draft.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.6_PLA_draft.inst.cfg index 946e26addb2..a259e5d7590 100644 --- a/resources/quality/twotrees/pla/two_trees_0.6_PLA_draft.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.6_PLA_low.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.6_PLA_low.inst.cfg index c97a313d2ba..cdc8b281b51 100644 --- a/resources/quality/twotrees/pla/two_trees_0.6_PLA_low.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.6_PLA_standard.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.6_PLA_standard.inst.cfg index 681c46222af..b47b18b9e45 100644 --- a/resources/quality/twotrees/pla/two_trees_0.6_PLA_standard.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.8_PLA_draft.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.8_PLA_draft.inst.cfg index 203d30088b7..731c9371bb3 100644 --- a/resources/quality/twotrees/pla/two_trees_0.8_PLA_draft.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_1.0_PLA_draft.inst.cfg b/resources/quality/twotrees/pla/two_trees_1.0_PLA_draft.inst.cfg index 30d4eff84fb..61dedfdfc70 100644 --- a/resources/quality/twotrees/pla/two_trees_1.0_PLA_draft.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_adaptive.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_adaptive.inst.cfg index e980a58a03a..d3233fd303e 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_standard.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_standard.inst.cfg index 17c1b418e81..c9fc819a6c0 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_standard.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_super.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_super.inst.cfg index 5049ec77014..db08081c753 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_super.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_adaptive.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_adaptive.inst.cfg index c9036336275..bc90a60fa84 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_standard.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_standard.inst.cfg index 1a494193327..f424abd5d91 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_standard.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_super.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_super.inst.cfg index 3c32939c547..db575821d81 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_super.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_adaptive.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_adaptive.inst.cfg index bd7f9bf0a94..3fbea6b8991 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_standard.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_standard.inst.cfg index 00422a3217b..c4e806ae5e5 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_standard.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_super.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_super.inst.cfg index 6b671fd76f4..eedbf5abe2e 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_super.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.6_TPU_standard.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.6_TPU_standard.inst.cfg index ae8948a49c6..eb2f3f269f8 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.6_TPU_standard.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.8_TPU_draft.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.8_TPU_draft.inst.cfg index 34463e5264b..9383f9a018e 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.8_TPU_draft.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_1.0_TPU_draft.inst.cfg b/resources/quality/twotrees/tpu/two_trees_1.0_TPU_draft.inst.cfg index fcff0923c5c..a6dfedc3003 100644 --- a/resources/quality/twotrees/tpu/two_trees_1.0_TPU_draft.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/twotrees/two_trees_global_adaptive.inst.cfg b/resources/quality/twotrees/two_trees_global_adaptive.inst.cfg index 9f3b28447de..35dcbfdc7c0 100644 --- a/resources/quality/twotrees/two_trees_global_adaptive.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/twotrees/two_trees_global_draft.inst.cfg b/resources/quality/twotrees/two_trees_global_draft.inst.cfg index afaeba67cad..57d6acaea17 100644 --- a/resources/quality/twotrees/two_trees_global_draft.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/twotrees/two_trees_global_low.inst.cfg b/resources/quality/twotrees/two_trees_global_low.inst.cfg index 7f3f524486c..53991fb83c6 100644 --- a/resources/quality/twotrees/two_trees_global_low.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/twotrees/two_trees_global_standard.inst.cfg b/resources/quality/twotrees/two_trees_global_standard.inst.cfg index 38560b306df..15c704f00c7 100644 --- a/resources/quality/twotrees/two_trees_global_standard.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/twotrees/two_trees_global_super.inst.cfg b/resources/quality/twotrees/two_trees_global_super.inst.cfg index 63178d95811..373a4ac415e 100644 --- a/resources/quality/twotrees/two_trees_global_super.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/twotrees/two_trees_global_ultra.inst.cfg b/resources/quality/twotrees/two_trees_global_ultra.inst.cfg index 99a10435bf4..ac28e1163f6 100644 --- a/resources/quality/twotrees/two_trees_global_ultra.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/ultimaker2/um2_draft.inst.cfg b/resources/quality/ultimaker2/um2_draft.inst.cfg index 5011c27069a..842364a0e20 100644 --- a/resources/quality/ultimaker2/um2_draft.inst.cfg +++ b/resources/quality/ultimaker2/um2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/ultimaker2/um2_fast.inst.cfg b/resources/quality/ultimaker2/um2_fast.inst.cfg index 794dcf23778..a4b3b53d9a6 100644 --- a/resources/quality/ultimaker2/um2_fast.inst.cfg +++ b/resources/quality/ultimaker2/um2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/ultimaker2/um2_high.inst.cfg b/resources/quality/ultimaker2/um2_high.inst.cfg index d4e03496575..d3906d40a43 100644 --- a/resources/quality/ultimaker2/um2_high.inst.cfg +++ b/resources/quality/ultimaker2/um2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/ultimaker2/um2_normal.inst.cfg b/resources/quality/ultimaker2/um2_normal.inst.cfg index ca4a29a1d95..ce35f5fdf67 100644 --- a/resources/quality/ultimaker2/um2_normal.inst.cfg +++ b/resources/quality/ultimaker2/um2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/ultimaker2_plus/pla_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.25_normal.inst.cfg index dfb3c868ef7..a66b8d893aa 100644 --- a/resources/quality/ultimaker2_plus/pla_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/pla_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.4_fast.inst.cfg index 6dae7ed2012..b33d5b96019 100644 --- a/resources/quality/ultimaker2_plus/pla_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/pla_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.4_high.inst.cfg index 929b1a32169..1ae2910d5ff 100644 --- a/resources/quality/ultimaker2_plus/pla_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/pla_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.4_normal.inst.cfg index f6a15613455..e7668c52ff6 100644 --- a/resources/quality/ultimaker2_plus/pla_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/pla_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.6_normal.inst.cfg index 347050c648b..87b3fc43f14 100644 --- a/resources/quality/ultimaker2_plus/pla_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/pla_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.8_normal.inst.cfg index 4dfee6ba545..8e8abd0af31 100644 --- a/resources/quality/ultimaker2_plus/pla_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.25_normal.inst.cfg index caedbce198b..aa23c2d29e8 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.4_fast.inst.cfg index 39a81d5f019..35cc2eb58c9 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.4_high.inst.cfg index 97fb479fad1..7ec4b73d060 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.4_normal.inst.cfg index 8d6fefbe1de..4c0d9734a4e 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.6_normal.inst.cfg index 671351c49b7..89132582c27 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.8_normal.inst.cfg index 0ab8ca241cc..e6029681798 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.25_normal.inst.cfg index 696aeed7586..268629808d2 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_fast.inst.cfg index 80dbf780057..1bc04ea32ac 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_high.inst.cfg index e1d6d1c46a8..de94c44cb21 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_normal.inst.cfg index 885bc9d6274..7a077555643 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.6_normal.inst.cfg index 743c75fd26e..9261d6a8284 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.8_normal.inst.cfg index e06b5806a13..ee9c1786869 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.4_draft.inst.cfg index 5222c4f8c4c..c29f258765b 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.4_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.4_normal.inst.cfg index 72aef4be2f9..7a1ef4d328b 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.6_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.6_draft.inst.cfg index d04e932f563..6c1226cb943 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.6_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.6_normal.inst.cfg index 7a65666930c..7733a6542f2 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.8_draft.inst.cfg index c715197c4b7..64b20d76972 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.8_normal.inst.cfg index 8d3f5e1e909..a3f73e630fa 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Coarse_Quality.inst.cfg index e74435cce2f..dad85dbf32f 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Draft_Quality.inst.cfg index 32409eb11df..c545bc162b6 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Extra_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Extra_Coarse_Quality.inst.cfg index 24fd8ad5281..b90a08e1640 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Extra_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extracoarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Fast_Quality.inst.cfg index a969efd90d3..c3c6ec1ccbb 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_global_High_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_High_Quality.inst.cfg index 93da7dd17a1..b2301907f1e 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Normal_Quality.inst.cfg index b8a355c1341..4e8d0b98dd8 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Slightly_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Slightly_Coarse_Quality.inst.cfg index 29435450a40..9fe60b531c9 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Slightly_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Slightly_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.25_high.inst.cfg index 65a3845fba6..05ac13318e0 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.25_normal.inst.cfg index 9d6b67f05a7..6af095a0345 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.4_fast.inst.cfg index 9c5c4c6f443..512444d2d09 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.4_normal.inst.cfg index 5c4a5cae794..c81aa84dd1b 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.6_fast.inst.cfg index 1d46e2deed9..c201d3c1904 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.6_normal.inst.cfg index 04a0f9e7669..af44fbb77a1 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.8_draft.inst.cfg index 6a64213e355..bf548fe1da5 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.8_normal.inst.cfg index cbb77c254fd..fef262b2e9c 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.25_high.inst.cfg index ffa19bf6c12..42394c95c54 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.25_normal.inst.cfg index e6c465d42fa..c620b6d6390 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.4_fast.inst.cfg index 00d99624b5b..2007aed6e83 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.4_normal.inst.cfg index 0b9cb7f968f..2297ed8f46f 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.6_fast.inst.cfg index 845543b4764..aa2cefdeed3 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.6_normal.inst.cfg index 332af0cfbea..8ad024143d0 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.8_draft.inst.cfg index c1cc2156df0..8ce3d3fc8a1 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extracoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.8_normal.inst.cfg index 6cc6edb7e4b..7b04f77daed 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.4_fast.inst.cfg index 22c1c509a20..20cf3f4f399 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.4_normal.inst.cfg index fc85fc5b805..b47d8dcbbf4 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.6_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.6_draft.inst.cfg index 2efd0057e1e..635691d3df2 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.6_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.6_fast.inst.cfg index dfccddb68f0..9e631ee4a29 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.8_draft.inst.cfg index 36d8fe8b65b..69911019eeb 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.8_verydraft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.8_verydraft.inst.cfg index bb454cc5086..af5fab1f9cc 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.8_verydraft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.8_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -3 diff --git a/resources/quality/ultimaker2_plus/um2p_tpu_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus/um2p_tpu_0.25_high.inst.cfg index 716556770c9..e4ba9b64a5f 100644 --- a/resources/quality/ultimaker2_plus/um2p_tpu_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_tpu_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_tpu_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_tpu_0.4_normal.inst.cfg index e9577ec1efa..d6beb15c1b6 100644 --- a/resources/quality/ultimaker2_plus/um2p_tpu_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_tpu_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_tpu_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_tpu_0.6_fast.inst.cfg index c8c4c793a5a..82e9444d962 100644 --- a/resources/quality/ultimaker2_plus/um2p_tpu_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_tpu_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.25_normal.inst.cfg index 1c5393bf2f0..dc6e6470a89 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_fast.inst.cfg index 68903f8d2bd..226d4f417d9 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_high.inst.cfg index 40dfe13c5d1..6ea8c1855ac 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_normal.inst.cfg index 8dbc445e88b..45960525a17 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.6_normal.inst.cfg index 65d0cf82a1c..bccbceb94bb 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.8_normal.inst.cfg index cbc3c1d3eb6..7a7bbd77b63 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.25_normal.inst.cfg index 9ac9c655d16..dbdf7ff3ce5 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_fast.inst.cfg index 12406ab6082..425b2140862 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_high.inst.cfg index 0923ec23a81..a53fa1d41cc 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_normal.inst.cfg index 3b5228f9d39..ba09e6f5983 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.6_normal.inst.cfg index 37f71e1bc0e..b39d2167e50 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.8_normal.inst.cfg index 000be268ec1..02ef1861598 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_draft.inst.cfg index dc234ed19d8..4365af97287 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_normal.inst.cfg index 0f4d7770322..839d10fb5b8 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_draft.inst.cfg index 6b998e8fb2a..deb4633e6fa 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_normal.inst.cfg index b1d349c2791..42542ca2c20 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_draft.inst.cfg index 4373028ddf4..606286b5452 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_normal.inst.cfg index e2f8600292b..7f4ab594d15 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Coarse_Quality.inst.cfg index f8d0116b7c4..3f739736a45 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Draft_Quality.inst.cfg index 44f42f986ca..86767b07348 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Extra_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Extra_Coarse_Quality.inst.cfg index 8d9fff5b70e..cc0b73b62a7 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Extra_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extracoarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Fast_Quality.inst.cfg index a33c8ae3ceb..432f5c88bee 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_High_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_High_Quality.inst.cfg index 58db5e0095f..ff05cd8e3b7 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Normal_Quality.inst.cfg index c2bb284c748..315bed236d9 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Slightly_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Slightly_Coarse_Quality.inst.cfg index 9b56520d74a..9be9845ccfc 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Slightly_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Slightly_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_high.inst.cfg index 0333f112d26..22b98a2bef1 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_normal.inst.cfg index 240a7011a76..f0bf3998454 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_fast.inst.cfg index 9c3ad03ceb4..5e9bfe3f102 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_normal.inst.cfg index 6485615ce29..0acedb59a48 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_fast.inst.cfg index 2b97c09d638..83645f994ef 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_normal.inst.cfg index 7fbef3d30ab..35cdc1c7935 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_draft.inst.cfg index 48f94b51346..49518bcc83b 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_normal.inst.cfg index 1641791a2ea..4c9d6de0116 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_high.inst.cfg index 0ef8c166c4d..9ba27afdba0 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_normal.inst.cfg index 435548e7988..081fd35b40a 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_fast.inst.cfg index 67c33e88476..175e85ceee5 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_normal.inst.cfg index 2e99824362b..4546b75ecd6 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_fast.inst.cfg index e9ad4482715..8acbf177bbb 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_normal.inst.cfg index 3cf8b80fb89..c591382c171 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.8_normal.inst.cfg index c9219171e71..247cb35fb1a 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.25_normal.inst.cfg index 110fe13e0bc..b61cd02dae1 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_draft.inst.cfg index 0934eb1eae3..24cdf93b52d 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_fast.inst.cfg index cf6c7350c6e..7c805175899 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_normal.inst.cfg index ba1d9bfb533..89fe4a4e34e 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.6_normal.inst.cfg index 1945d233cd9..84745a9d012 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.8_normal.inst.cfg index 8bf08cb7732..c8bc5074241 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.25_normal.inst.cfg index b3100bdb1ca..0d06ee23f4a 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_draft.inst.cfg index d243ed781aa..4fcdc54f98a 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_fast.inst.cfg index 5c66c13b1fb..b9b838e14e7 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_high.inst.cfg index 6d6ee19834e..462282adc69 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_normal.inst.cfg index 052353a1cf2..2d2a424ebc4 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.6_normal.inst.cfg index 3a41b7dce22..f274f95f8d9 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.8_normal.inst.cfg index 69f1a496609..01920524400 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_fast.inst.cfg index fc7c6ab4c24..d5aaa0a754b 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_normal.inst.cfg index 9e88be9084d..f4fdd278612 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_draft.inst.cfg index 583cf3cdce3..0e2fef1c911 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_fast.inst.cfg index 5b0f5e405c8..ba01ab72d7a 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_draft.inst.cfg index d24c6508d12..b61dda88da2 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_verydraft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_verydraft.inst.cfg index 1bd6b8e3c5b..c5cd0c61b2a 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_verydraft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -3 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.25_normal.inst.cfg index 9a8f87f3390..972bfda8015 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_draft.inst.cfg index f4c494114da..f81f88276e4 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_fast.inst.cfg index a382bb2d36e..d0ef8d2b5cb 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_normal.inst.cfg index f426935b2b2..782a08c6edf 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.6_normal.inst.cfg index 093332e5b75..42b6f2ea89e 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.8_normal.inst.cfg index c172116a679..e49f37cc77d 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.25_high.inst.cfg index d4deb83116e..45acc00ce90 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.4_normal.inst.cfg index a2b133afe6e..6354670e288 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.6_fast.inst.cfg index 090f8d08ee4..e53d36940cb 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.25_ABS_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_ABS_Normal_Quality.inst.cfg index 60a1d80a3ca..eff671f0e7b 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_ABS_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_CPE_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_CPE_Normal_Quality.inst.cfg index 80339723e24..261dc31a8d7 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_CPE_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_CPE_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_Nylon_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_Nylon_Normal_Quality.inst.cfg index 6815ea04e13..13330087fc4 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_Nylon_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_Nylon_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg index eeb924906f6..56ee69253d3 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_PETG_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_PETG_Normal_Quality.inst.cfg index c0805a5854e..07a7f1eb954 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_PETG_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_PETG_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_PLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_PLA_Normal_Quality.inst.cfg index 529cb2deaf7..001364bd92c 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_PLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg index a64c8298a2d..10e384276b1 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pp quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_TPLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_TPLA_Normal_Quality.inst.cfg index 0b6ae2320bb..e9fb3a82588 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_TPLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_TPLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg index 16be0db845c..b64e3dfb1eb 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg index 916b283c9ce..41b5031de15 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg index 5dcbe80bbbb..8195470e4f4 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg index 1420880995f..ecb9faad445 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg index e0dd43cc28a..d6731e02b04 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg index 16ece7c2dda..55af57f67a6 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg index ca7fd8cbf35..367fe5dcf66 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg index 5de59e58c99..9d9203c2ac6 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg index b2020831d77..0a9b2d9f026 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg index 4be3a9c13aa..577538fac13 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg index 2e24f485d0a..b52f60361b8 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPE_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPE_Draft_Print.inst.cfg index 6cfba34af90..cb6e303af32 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPE_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPE_Fast_Print.inst.cfg index faa7730e2c2..1505a30d228 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPE_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPE_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPE_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPE_High_Quality.inst.cfg index a4af9865070..e9e926660c5 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPE_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPE_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPE_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPE_Normal_Quality.inst.cfg index de85c4aeacf..68004b632d8 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPE_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPE_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Draft_Print.inst.cfg index 666aaef664d..4a79e5728af 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Fast_Print.inst.cfg index bc890977eb2..b65fe71a63a 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_Nylon_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_Nylon_High_Quality.inst.cfg index 8080dc18250..7d6d2eabaf2 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_Nylon_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_Nylon_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Normal_Quality.inst.cfg index f0344130017..4739ce4f5ca 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg index 28e8ccbf75a..7c894abf0b7 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg index 5113277ab2c..542c9a51bf3 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg index 636ce41e716..1f5cba710db 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg index a7c533bfea7..4bfa09ae9e2 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PETG_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PETG_Draft_Print.inst.cfg index 72990ea79e5..21748938045 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PETG_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PETG_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PETG_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PETG_Fast_Print.inst.cfg index 8bde02fd500..434e7ce54cd 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PETG_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PETG_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PETG_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PETG_Normal_Quality.inst.cfg index 9ecea87834a..c139608ff1d 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PETG_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PETG_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg index 1d44e48193d..44e49ed1604 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg index 6b99ed5a70e..0fa970bc70b 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg index 97be45babc7..42784f075a0 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg index f305caa82d7..994d781aefc 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg index c82043d3afc..4fbcdedfa63 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg index 74a628f7cb9..0655fa158bf 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg index fa9b4c54ea4..375f79a0aa0 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg index cffd1e60758..f5eb8575b0c 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg index 94fe824f5e2..3cf1ad08e8e 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg index 05a68966469..df4cd1cb5ee 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPU_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPU_Draft_Print.inst.cfg index ca88ca09863..833b2e2ba49 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPU_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPU_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg index e084600c428..667efc592c8 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPU_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPU_Normal_Quality.inst.cfg index e6ea1f555df..13c119ffae4 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPU_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPU_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.8_ABS_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_ABS_Draft_Print.inst.cfg index d863230b106..4614943320d 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_ABS_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_ABS_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_ABS_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_ABS_Superdraft_Print.inst.cfg index 1a95bcb77fd..c02bf624d8f 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_ABS_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_ABS_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_ABS_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_ABS_Verydraft_Print.inst.cfg index 7ff4d13b02b..ad0d2c1d5ed 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_ABS_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_ABS_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg index dcca81f3ef2..d9a75905401 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg index 585ae8eefe2..4696e86a1e7 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg index 2280a837aed..8bea04ec524 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg index b1f867807bd..5a2b0be4006 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg index a75ae74ada6..61e169f2274 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg index c1544a00e22..889c7d559ec 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg index a0fc0365660..d551dac42ed 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg index 547ab013fb7..60092ffe172 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg index b17789ad0f8..b144fd3a445 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PC_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PC_Fast_Print.inst.cfg index 2a3cd5df62c..b4a09c306da 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PC_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PC_Fast_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PC_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PC_Superdraft_Print.inst.cfg index ddd5a34efac..8b90dd7c42c 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PC_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PC_Superdraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PC_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PC_Verydraft_Print.inst.cfg index bf4fc9b6ab5..cb7e0df75eb 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PC_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PC_Verydraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg index 3eafff9a071..4541fd17ea0 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg index fe36a86948d..a23d38188bd 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg index 2bba762e2df..8ca93cd8131 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg index 57a830402a6..c59367946ef 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg index 40f710327f1..40d91ace755 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg index 702c64bb78a..dc387d1358a 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg index 145389fbe4e..1d64336e577 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg index 68d54bd406b..0ea5def31a4 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg index 2aa79cad795..83b73eea9ec 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg index a9b7a929180..3404da85e43 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg index 16e17c500ef..40926c6d925 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg index 96dec4f1c5c..b1ccf767d05 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg index 859eb3b33a0..67a81efc7bb 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg index 61ace7da80b..8596784c18f 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg index e45b8f2d1d5..8e0ce7b6b31 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg index eab1a39931e..3a38fd1b355 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg index ad1e26c7dae..f7f71924837 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg index e5ae49b17dd..0cab2765200 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg index 38334b43587..da82ad30ebd 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_bb0.8_PVA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.8_PVA_Draft_Print.inst.cfg index 107e29b30f2..4b6a6781f1c 100644 --- a/resources/quality/ultimaker3/um3_bb0.8_PVA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.8_PVA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_bb0.8_PVA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.8_PVA_Superdraft_Print.inst.cfg index 7c9d28ae29b..7cb3be4d0a2 100644 --- a/resources/quality/ultimaker3/um3_bb0.8_PVA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.8_PVA_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_bb0.8_PVA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.8_PVA_Verydraft_Print.inst.cfg index 66df697ddf1..c85cc5c30f9 100644 --- a/resources/quality/ultimaker3/um3_bb0.8_PVA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.8_PVA_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Draft_Quality.inst.cfg index 820c25f6ba7..1195b490518 100644 --- a/resources/quality/ultimaker3/um3_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg index 1db93cc34f0..23b5bda7143 100644 --- a/resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg index c27bc8b96c6..277909301e1 100644 --- a/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/ultimaker3/um3_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Normal_Quality.inst.cfg index 3f1f52f5630..cd4be3a7486 100644 --- a/resources/quality/ultimaker3/um3_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/ultimaker3/um3_global_Superdraft_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Superdraft_Quality.inst.cfg index be0be2dfbfc..4c59ff74cdf 100644 --- a/resources/quality/ultimaker3/um3_global_Superdraft_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Superdraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/ultimaker3/um3_global_Verydraft_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Verydraft_Quality.inst.cfg index 53addba1342..b09024d0708 100644 --- a/resources/quality/ultimaker3/um3_global_Verydraft_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Verydraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm.inst.cfg index 3fb0c11ffc2..d4263531115 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abscf_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm.inst.cfg index 9f0d8c9a7cd..3272134e2d7 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_absr_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm.inst.cfg index f0e0a4fdedd..f2d399ff3b0 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm.inst.cfg index 32d64ed5b19..78e7b96bc83 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm.inst.cfg index b64da2988f6..eda37306024 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_absr_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1XA weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm.inst.cfg index e032e3a3b80..e46ee25b093 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1XA weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_2xa_um-rapidrinse-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_2xa_um-rapidrinse-175_0.2mm.inst.cfg index 3dae18f97a4..4cfb9c9276e 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_2xa_um-rapidrinse-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_2xa_um-rapidrinse-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_rapidrinse_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 2XA weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm.inst.cfg index 5ebc2b4560b..2ee2106356e 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_sr30_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 2XA weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg index bf35842e178..f3d1eea2040 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm.inst.cfg index da9564ae9d1..444d893bc77 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abscf_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm.inst.cfg index b3107e14a3a..d95a0176085 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_absr_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm.inst.cfg index 3c9f4500fc1..384f85381cb 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm.inst.cfg index 7bb14d9107d..afc790abb45 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm.inst.cfg index 8af0b5ce3f5..f1422160628 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abscf_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm.inst.cfg index 2688d88ad3e..c18441b7cd5 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_absr_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm.inst.cfg index 5aaee1f2c6b..e8ee70b2b40 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm.inst.cfg index 575189deae6..5d5f891daff 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1C weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg index fd224e87984..ea2a441350e 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_absr_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1XA weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm.inst.cfg index 504ab8c10b7..acbd50b36e1 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1XA weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-rapidrinse-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-rapidrinse-175_0.2mm.inst.cfg index c3fda29d4cd..f73e194cc28 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-rapidrinse-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-rapidrinse-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_rapidrinse_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 2XA weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm.inst.cfg index ebc6ecfe982..370a22fd34e 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_sr30_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 2XA weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_global_Draft_Quality.inst.cfg index 307c51c6bd2..115568be2c9 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm.inst.cfg index 5becec44d97..77acd4f2b9e 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abscf_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm.inst.cfg index 4af8230b24a..94895b5fa4b 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_absr_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm.inst.cfg index 14c15fd3c5e..0ecfa145540 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm.inst.cfg index 110fa5e4b5c..cc075adf90f 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = LABS weight = -2 diff --git a/resources/quality/ultimaker_original/umo_global_Coarse_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_Coarse_Quality.inst.cfg index 2d7da87e554..8eba38b4cc9 100644 --- a/resources/quality/ultimaker_original/umo_global_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/ultimaker_original/umo_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_Draft_Quality.inst.cfg index 8f77b3b3307..7fb577145ee 100644 --- a/resources/quality/ultimaker_original/umo_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/ultimaker_original/umo_global_Extra_Coarse_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_Extra_Coarse_Quality.inst.cfg index c28b33c7155..c7d9e9707ef 100644 --- a/resources/quality/ultimaker_original/umo_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Extra_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/ultimaker_original/umo_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_Fast_Quality.inst.cfg index 931ba6a129d..0014913d10e 100644 --- a/resources/quality/ultimaker_original/umo_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/ultimaker_original/umo_global_High_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_High_Quality.inst.cfg index 74ab824a8d8..d865eb9860e 100644 --- a/resources/quality/ultimaker_original/umo_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/ultimaker_original/umo_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_Normal_Quality.inst.cfg index 0229a765f4b..cc7eda9652e 100644 --- a/resources/quality/ultimaker_original/umo_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg index ec9ff192a92..bfb11749123 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_cpe_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_cpe_0.1mm.inst.cfg index de251c92dd4..8f8cd8f46eb 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_cpe_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_cpe_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg index e0d3aa4d50f..e0fcdf55305 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg index 369cbcd5630..2135e5deaf8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_petg_0.1mm.inst.cfg index bf1b51dfdc1..7f7b9da311a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_pla_0.1mm.inst.cfg index a09a6eb09ab..ed70f807c8b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg index 6485844da80..75740231e34 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pp quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_tough-pla_0.1mm.inst.cfg index b751075b850..fb8f230a5f9 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg index f989bcc3f64..eeb51a14286 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg index e3965d9c5c6..fb5bcc256bf 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg index 9589f2f915a..042058d1f07 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg index b8aec4972ff..7d124c4578f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg index 6877d9b6a22..b86675ae954 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg index de1905e4101..7ec6ff5bba1 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg index ae5c9bcbc11..a51bbfd3e5b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg index 701a2db84d3..ff2b386de65 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg index 684336d1eb4..d7cc2fd3460 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg index a7a17e5f693..bcca24890b8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg index a3b8129ed70..f398a6a42dc 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg index 5c051039d0b..522f155ad0c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg index 61073067fc8..acd966f3ab0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_bam quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg index 880461bccf2..6d9947b2944 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg index 5dd5e61f828..3566b82f904 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg index 7617b35b3b0..f720fa71c1b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg index 7ed1fcd2980..5e94d1f585a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.06mm.inst.cfg index 97dc8ef3e0f..c0767352a9b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm.inst.cfg index 51a4f565270..7c5f9caab49 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm.inst.cfg index b53ff26056e..191290bdec0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.2mm.inst.cfg index 776a06004b8..b33a421c02b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.06mm.inst.cfg index f30d77be95c..bf59d609734 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm.inst.cfg index a7eefa98679..31ce3c39284 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm.inst.cfg index 8a2a2810d67..7a30166c376 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.2mm.inst.cfg index d000e3ec205..04f83b8aef0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg index c9eebee8a0c..87eb0679859 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg index bcd04f4b24c..a78b80f7867 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg index 278e502231a..1f5f8ba874e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg index 1baf43933c0..43480fb647e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.06mm.inst.cfg index adc4670e8d5..70f9815aae1 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.15mm.inst.cfg index 6838afede35..cab76194212 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.1mm.inst.cfg index 7829f46334e..ae89f045112 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.2mm.inst.cfg index db079b04c9f..3bdd528ea28 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.3mm.inst.cfg index b035dcd5f46..09b62fda689 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg index 4b8f9f433b0..9b2325250c6 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg index 5581284de49..caf4248a910 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg index 30af138465b..3e79a33e69d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg index e5dc960d98c..3e814754e48 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg index 719adc820b4..87eeb609a7e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg index 3b106196f27..d1de0713dbc 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg index 455338a9016..5ee4b4ea78d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg index b1f5e1f19a9..45489cdfe1f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg index b5253cb0779..c9e2ca784ef 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg index 69cf85f3497..98120114f5f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg index 397992c551e..90a53df66a2 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg index 773da6d3acf..fe574fc80b8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg index 10e43b5699c..6b66454bc79 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg index 008a119dd22..8e3ab5173e0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg index 2b585a73ba8..7469d30453f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg index 1932cf72138..4c702e3b273 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg index de5e0faf2e1..e8cb2907b74 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg index c39c6d42c81..a08e98868ff 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg index 08bb2befdf4..54ca472acf6 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg index 89b8386d2f9..54acafc477a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg index cc0da1a2531..78d2da225f5 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg index 7eb5de8b646..2ae056128c7 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg index d4431382ddb..7b57ca8f7ae 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg index bb7de56356f..b19beadf429 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg index c304f13e349..77c839688ba 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg index 854b868259c..647261b0c00 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg index 9678ba95235..00c4be354fd 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg index c53596bc9f0..432f722013d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg index 58a8a1ebb09..39aa770c102 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg index 2870c09199b..8a2a5b19a77 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg index 6f450463b9a..1851be3eab2 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg index e193aa51c33..e902727c41d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg index 622f2030e46..15566dd63da 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg index 09f02aa3751..c1f93a6ac66 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg index 3b82ebfac7b..fd0e3e5344e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg index 2fd9e5ef2c5..3f62d21120a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.2mm.inst.cfg index 2be5fb643ec..13aa3ea9168 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.3mm.inst.cfg index 219d5f1d562..3b51b39fdd5 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.4mm.inst.cfg index 7f0ce6b1319..b15ed15d51c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg index c2d04c9bade..6125cdd468c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg index caf16e5f940..b57bbfcfd41 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg index 1cd46fab48d..63cb5c6b62c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg index f9ee324f336..572d6a14c1f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg index f883fe19987..bf36800e961 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg index a5c059c5e6f..54c18728760 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg index e7d656dcc4f..b93480ecaca 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg index 08c1f4933b9..90156ac8a35 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg index c4d2894885d..f2d50ef5299 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.2mm.inst.cfg index 9a79c3831c9..f3e73ac51f7 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.3mm.inst.cfg index 77355d22b58..61227b58c0b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.4mm.inst.cfg index 6669edeaf40..0fb4f697ff6 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.4mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg index d901c6c0dd7..1b559783ef8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg index 02798823463..588ff80120d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg index 373d6a0b789..246aa7f2e02 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg index 1feae070fcb..87b1b648048 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg index f93f0848db1..75b5ddfd5f3 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg index 67f9cdfcf02..5eccf9bef4d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg index 7619fcf43da..65a7d476c35 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg index b157ed198c6..f3e3c1f062d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg index 550a26c7f86..f091059d191 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg index 1f706632ce9..788182ad91d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg index b1437e9160e..d18423fb207 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg index 7c3c4ff6e91..52006ce8013 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg index c2e0ba68afd..cc082aa98bc 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg index 156d645694a..60b74e9e8bd 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg index 0f1e8357b3e..d2112a066d6 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg index 9d7b4455d6f..3bcab3006c0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg index e2a5c54c66d..d5f5439634e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg index 26d3dc7fb8f..58369c92526 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg index b1dae1cb7a9..5a804ae0e83 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg index 4d4ffa00591..b66dba1dee0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg index 5cc6a43e132..30d0e49ede3 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg index 59f8409483d..336beaf1179 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg index a4cdd898f1f..07641eb84ae 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg index 79dc105f863..880ac666d7f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg index a76864a1a3c..b5463988936 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg index d3642327268..403e44d04c8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg index 02a71fa9b71..867154ac70d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg index 12b815d5ab9..44a7379dcb3 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg index 5390b3ecb7f..3541afe3505 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg index b15b5958a77..23ac57b4743 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg index e273e85eb50..e12a164f808 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.3mm.inst.cfg index e8401bc0250..4b148bd5fda 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pva quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.2mm.inst.cfg index 34873606af8..563f4413353 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.3mm.inst.cfg index c30007a6366..66e9d39a078 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.4mm.inst.cfg index 4bb2a411aa3..ee6d9fce33c 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.15mm.inst.cfg index f205541fe90..9ab5d056124 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.2mm.inst.cfg index 5745328e166..a6dbc29c7d0 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.15mm.inst.cfg index dd4f4c1da11..827c8d2ef9b 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.2mm.inst.cfg index b594e050097..7359087b446 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.15mm.inst.cfg index ff6a9fb197e..956b60d524a 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.2mm.inst.cfg index d57c195038b..67038511716 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.15mm.inst.cfg index 3ff36e0f354..3a3d53aa328 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.2mm.inst.cfg index 879abf7d08a..ae5a395ffb1 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm.inst.cfg index fd25f84ca51..d13d630f5e2 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm.inst.cfg index ea26d6b1461..e89e9de845a 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg index ea2902cd6c8..b45c225162b 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg index bbbad9be1fe..ed0186e5d08 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg index 300e2ebaedb..f5077c90db4 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg index 84040ede4ea..70a278ea32b 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_cffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_cffcpe_0.2mm.inst.cfg index 2021632327f..aa60eec702a 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_cffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_cffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_cffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_cffpa_0.2mm.inst.cfg index 831bf6e90bc..eeaf1e492c4 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_cffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_cffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_gffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_gffcpe_0.2mm.inst.cfg index 44850349f21..cee7f7c04f7 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_gffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_gffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_gffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_gffpa_0.2mm.inst.cfg index b20fe941457..43dd326538d 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_gffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_gffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm.inst.cfg index b49ee3061e7..300d5b02b3d 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm.inst.cfg index db82d6e40eb..d7b2c394684 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.3mm.inst.cfg index 8e94df9387a..502f5fa11b6 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg index 402ae15ebae..9c1570ee8f5 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg index 0c9154a2334..0ed8088a9b6 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg index e7b72d6cd09..2a596778ff2 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg index 38c857de5e9..6ecdf06d8f8 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_Draft_Quality.inst.cfg index 7f29b2a7fcf..0758e705063 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_Fast_Quality.inst.cfg index a81faa637bb..292e8f458ff 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_global_High_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_High_Quality.inst.cfg index 432531edba9..af119d34d33 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_Normal_Quality.inst.cfg index c48aee95919..fe51a0fc67f 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_global_Superdraft_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_Superdraft_Quality.inst.cfg index 73600ea4aa9..32dfff4185a 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_Superdraft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_Superdraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_global_Verydraft_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_Verydraft_Quality.inst.cfg index 8d331bb8f58..a90aaceab82 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_Verydraft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_Verydraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg index d26fe0daee0..049396232a9 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_cpe_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_cpe_0.1mm.inst.cfg index eb98d025937..69776856995 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_cpe_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_cpe_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg index ea86a9a9a6e..54be78e0341 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg index eef6e66a5e6..0d9a1ed9821 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_petg_0.1mm.inst.cfg index b1fc1b99040..0907b2f03e1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_pla_0.1mm.inst.cfg index ab26722d874..e2d11052941 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg index 56689c4bfa8..ec510c886d6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pp quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_tough-pla_0.1mm.inst.cfg index 97a82173331..3b414db0922 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg index 29057ff13b9..a31045f9ed7 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg index a2233703d49..b171fdef80d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg index 44f6670085e..fec58e9d8ce 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg index 997f823e51a..74f71b970f0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg index 573b758705b..6aa6f233657 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg index 926ef499223..72e3d668dbd 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg index 598e83d9222..f1c40d435fd 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg index 5f5e9e2fd3c..ac070dcf590 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg index 8656a280676..e1d20b47864 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg index a4381e0e3b7..6b118fde63b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg index 5f4c480fa4b..6422d61996e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg index 9e3c0153b17..4b82ec4068b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg index bd4e13ebaf6..6a910b3deb7 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_bam quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg index a77d1b42335..c262d3ae315 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg index 805fb08ead6..fec5e0a4c08 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg index 77f775d6723..25ed3adb96f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg index 877c48c42d9..d16b3578f8c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.06mm.inst.cfg index ec98c131a98..c9448b8e9a2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm.inst.cfg index 95c436a4492..6672a867bf2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm.inst.cfg index 8f9877eebc6..4aa50490466 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.2mm.inst.cfg index f5ecef3fc59..2f6b9483d31 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.06mm.inst.cfg index b9b89ef3b7e..656822b80b8 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm.inst.cfg index 33c05d16ce0..950170017f5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm.inst.cfg index 0248ef6169d..911fb56357b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.2mm.inst.cfg index 7440015ced6..7b30fd474ef 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg index c58107dcf9e..1442f1b1806 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg index b210b894e55..fb1502f4f16 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg index aa17d35a978..920e807c306 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg index 616443b1292..f9e78aeea67 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.06mm.inst.cfg index 6fe817fba1d..32daf56a058 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.15mm.inst.cfg index 8a47953164b..e311a70015f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.1mm.inst.cfg index 1e04aad8ce0..3d3f08ee59c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.2mm.inst.cfg index aaf279f115b..c78b64128e8 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.3mm.inst.cfg index 78971b4a15b..c7c5c6582c9 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg index f34549bc781..a06de49699a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg index 4a9e914b99d..de3e873bd77 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg index dc73f13bb55..f6b0cc0a722 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg index ead512bb507..c520a270cdf 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg index c6641e7a08e..3d7d7bf0e82 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg index 8eb0d257d6f..238da076376 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg index bd4dd317bb6..8a36acf81c3 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg index 1e5ea9efb62..cec826b2b2a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg index cf7a8335b86..928699193b2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg index a7dcb611285..1cd2ca0af62 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg index f053b33478d..a127f1bafcf 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg index 4e98b6005ae..f8b8b835cab 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg index 5c6ed285489..f475ac64847 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg index d718e44a027..bf5504f7e55 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg index 55a724e2600..095b9a55249 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg index 591e8e91bd2..618f0c10438 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg index c0b4799ca95..d0950efea04 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg index d430f867d85..74c3a780821 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg index b2c25e26c70..f71fe4a1643 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg index 15b87d8229c..b319290e662 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg index 9a100248130..8ff6abf0617 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg index ef58c146639..eb665657321 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg index 5d14f014b94..c40db10dd57 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg index d23a7b8ceab..db70a58d81a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg index 4e1b0f535f5..53e9e671a1b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg index ab66eed0ab2..6b3a4ade868 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg index 2b192e8c1c9..dc83ca3836a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg index 11301a29907..05ace5503b1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg index 1d07e0f63c8..9c47aedd1b5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg index 28cf131812b..f88ae2633fc 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg index a01b433eb2b..ff6107a869c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg index f368ac13d87..1c06b3206a4 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg index b699ebc9f33..1107e0ae891 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg index d0ee391c657..f504aed78df 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg index 9869a18bb34..9453aa41cd5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg index fc8507c42b2..b4d37055033 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.2mm.inst.cfg index 0448dbc35c1..a57f3d1db1f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.3mm.inst.cfg index 5100bd460b8..3617a0f3209 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.4mm.inst.cfg index 6c677be864f..c0960ecbb80 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg index 0dd369e4dd3..36793d479c7 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg index e6ce183f4a6..35959b5b462 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg index 0c3abc6e3fc..42e8ebafa71 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg index eb6e07e0806..e4f905a7bdc 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg index e7958d98416..36fde0b907e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg index 0683b2959bd..9aed2a8c55b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg index 5a774e07508..4498143d4b6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg index bed4ac46d7f..02c9ecd708e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg index a0d58757da8..7a84fe749cd 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.2mm.inst.cfg index ddce4d41ab4..492b4683f1e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.3mm.inst.cfg index dd51965c6e2..09092de98c1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.4mm.inst.cfg index da4671d5af5..c943037a960 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.4mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg index 6208ad9bec5..0700bad762c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg index 98b0d3f5f8c..f0fee5fb38b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg index 156113b809c..b39cbb1f445 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg index 10bf06fbb5c..a91d5232132 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg index 1a63005ced6..8a0f863da86 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg index 5e22cee246e..c9aa0476a20 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg index c338c4b7ff5..6c7ccf90f33 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg index 62d9eb235d7..09c4b047023 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg index b2792b6feef..7905d943047 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg index 26c20268eac..50c25a914be 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg index cc28dc51505..864c0dde9bd 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg index eb338d1e1db..0df55e97992 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg index 941bfb3736d..9aa0eed8534 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg index 11db9e5a622..759cf36e2f6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg index ac2049daae0..118c2524ce5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg index 9ba4a38c6e7..a7d3b780e56 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg index 4ab74980ef0..46c4e0e0e50 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg index 269d51dd4b5..81c80a3c872 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg index 4f56167ffde..a049c751732 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg index 9fdf9a665b1..9efdfc7d575 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg index 3368ae6e2d2..ffdb1772477 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg index ca93df9dc10..0736e60059c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg index 4461ae07724..5c7b8fa4410 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg index 1acdad53a0c..1f2e30f4021 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg index 4973ec35bbc..468ebdb9d60 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg index 2bcf3fa82d4..24221a06488 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg index 3e4693c115f..133469116dc 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg index 2bc28f4c1a0..79c891b5137 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg index f5b8c352984..0606d82159b 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg index 6457f97c9c9..a4e78383583 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg index eef90f5f17c..1f9754b2a28 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg index e1862ce3c41..04a35d798ad 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pva quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.2mm.inst.cfg index bf3a4420702..bab8bce504d 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.3mm.inst.cfg index ff02ecedd5b..31b316d5d26 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.4mm.inst.cfg index 7db02b4cdc2..773fae8204d 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.15mm.inst.cfg index 18061adda3b..2446ef813d8 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.2mm.inst.cfg index 066e75b4853..9f206ee50c0 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.15mm.inst.cfg index 15f3b3e6a58..e20af2439a0 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.2mm.inst.cfg index 52627f2a585..09ee04d1a0d 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.15mm.inst.cfg index 5e29f112225..ba21c26c553 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.2mm.inst.cfg index 85b50e6768a..5be5e1e49e7 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.15mm.inst.cfg index 371f646cb6f..0f3360608b6 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.2mm.inst.cfg index 778637cf3ff..68824a89161 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm.inst.cfg index 88ee346758a..7c3e86ee84a 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm.inst.cfg index 00f9ef51ff6..56346c81df7 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg index 8b807c1eb5f..0797ce3a740 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg index ebc58413e2a..5efec81bb24 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg index 1204be4c15e..ceedc5958dc 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg index 6a7d52af4b3..9cd74fd0b2c 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_cffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_cffcpe_0.2mm.inst.cfg index ad7c2f58771..863d292ddd6 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_cffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_cffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_cffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_cffpa_0.2mm.inst.cfg index 72bd69f4017..958256683be 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_cffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_cffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_gffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_gffcpe_0.2mm.inst.cfg index 8d68d5c92f0..57f79f77425 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_gffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_gffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_gffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_gffpa_0.2mm.inst.cfg index 6366ee8a7e0..69639343f55 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_gffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_gffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm.inst.cfg index c9a6a2bafe2..e82826f87a0 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm.inst.cfg index 7abb9e4018e..f2cbe9b3e58 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.3mm.inst.cfg index e0c6719bde6..d241e2c86e2 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg index 40d414cbcb6..b5258d92887 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg index 6144a2c3f03..eac67e08c85 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg index 5bf5d910e81..f4b98360cb0 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg index 21407b6e66a..2e5abe5101e 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_Draft_Quality.inst.cfg index 09226692361..2342971e464 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_Fast_Quality.inst.cfg index 3dd039c01ff..7ee52748788 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_global_High_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_High_Quality.inst.cfg index 4c5b7f3462b..7a1f7698d59 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_Normal_Quality.inst.cfg index 18b14b14f9f..0cbe93963c4 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_global_Superdraft_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_Superdraft_Quality.inst.cfg index 8f55162a47f..601c994b95e 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_Superdraft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_Superdraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_global_Verydraft_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_Verydraft_Quality.inst.cfg index 1b89f8fdce3..cb1c88548af 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_Verydraft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_Verydraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.10.inst.cfg index f3c9f4557c3..d076e5e9bce 100644 --- a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.15.inst.cfg index 5593994febe..58796f169cd 100644 --- a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.20.inst.cfg index 1f8cba9c8c2..ea995b18df4 100644 --- a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.25.inst.cfg index c261f4a6bdc..037722df8f4 100644 --- a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.10.inst.cfg index b7ae054c4a5..86478076913 100644 --- a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.15.inst.cfg index 71e42cbb5c7..ead1a20886f 100644 --- a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.20.inst.cfg index 6540355cb7a..a5d5f5e1bbe 100644 --- a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.25.inst.cfg index f2cb0f2b377..ef28599bf20 100644 --- a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.30.inst.cfg index ebdd40c6bee..d14443bfb88 100644 --- a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.15.inst.cfg index dfb91488bae..7945311f471 100644 --- a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.20.inst.cfg index 528315c4796..897d3b0ba2a 100644 --- a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.25.inst.cfg index 4edfec56fff..d15a3bdf712 100644 --- a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.30.inst.cfg index a9edd8aef07..34f5d3cf262 100644 --- a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.35.inst.cfg index cff924336b6..eadeb1bf75a 100644 --- a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.10.inst.cfg index 203f68c18b4..dcbe57dd5e1 100644 --- a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.15.inst.cfg index 3b0a4a9c757..ce50864b51b 100644 --- a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.20.inst.cfg index 506f5b8f49b..0a0e16f7eb6 100644 --- a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.25.inst.cfg index cebd2db2c61..afbbe015411 100644 --- a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.10.inst.cfg index 5fd4d006610..276ab9c4ceb 100644 --- a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.15.inst.cfg index bf01ff3a844..ee3de82b74a 100644 --- a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.20.inst.cfg index 58180de36ec..f6333c6e59c 100644 --- a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.25.inst.cfg index 4dae58ad457..ecc3aec0079 100644 --- a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.30.inst.cfg index 3b3314bd6e2..c653bed0e7a 100644 --- a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.15.inst.cfg index 8dd3de6dddb..bdc1bc20e4b 100644 --- a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.20.inst.cfg index 4cc6e4fe01b..54f27659edc 100644 --- a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.25.inst.cfg index a0be80b8176..4620fa57121 100644 --- a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.30.inst.cfg index 18e5e32104e..6bd9406cccd 100644 --- a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.35.inst.cfg index 0ef270c55a8..bb4d584e6d8 100644 --- a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/layer_0.05.inst.cfg b/resources/quality/uni_base/layer_0.05.inst.cfg index f9cc2b93199..e641d64fc7c 100644 --- a/resources/quality/uni_base/layer_0.05.inst.cfg +++ b/resources/quality/uni_base/layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q005 -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/uni_base/layer_0.10.inst.cfg b/resources/quality/uni_base/layer_0.10.inst.cfg index c8c12bbe0c8..2527e5b3d42 100644 --- a/resources/quality/uni_base/layer_0.10.inst.cfg +++ b/resources/quality/uni_base/layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q010 -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/uni_base/layer_0.15.inst.cfg b/resources/quality/uni_base/layer_0.15.inst.cfg index 3d80994db83..3bc9d1ff872 100644 --- a/resources/quality/uni_base/layer_0.15.inst.cfg +++ b/resources/quality/uni_base/layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/uni_base/layer_0.20.inst.cfg b/resources/quality/uni_base/layer_0.20.inst.cfg index ef5b96040a0..05f9ad61517 100644 --- a/resources/quality/uni_base/layer_0.20.inst.cfg +++ b/resources/quality/uni_base/layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/uni_base/layer_0.25.inst.cfg b/resources/quality/uni_base/layer_0.25.inst.cfg index 6e41376988d..200a80d416a 100644 --- a/resources/quality/uni_base/layer_0.25.inst.cfg +++ b/resources/quality/uni_base/layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/uni_base/layer_0.30.inst.cfg b/resources/quality/uni_base/layer_0.30.inst.cfg index e92496a1d2d..217cc39d136 100644 --- a/resources/quality/uni_base/layer_0.30.inst.cfg +++ b/resources/quality/uni_base/layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q030 -setting_version = 22 +setting_version = 23 type = quality weight = -6 diff --git a/resources/quality/uni_base/layer_0.35.inst.cfg b/resources/quality/uni_base/layer_0.35.inst.cfg index 443932fb54a..8eff4a4b8ba 100644 --- a/resources/quality/uni_base/layer_0.35.inst.cfg +++ b/resources/quality/uni_base/layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q035 -setting_version = 22 +setting_version = 23 type = quality weight = -7 diff --git a/resources/quality/uni_base/layer_0.40.inst.cfg b/resources/quality/uni_base/layer_0.40.inst.cfg index 11fda6fa87e..cd353afa3b8 100644 --- a/resources/quality/uni_base/layer_0.40.inst.cfg +++ b/resources/quality/uni_base/layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q040 -setting_version = 22 +setting_version = 23 type = quality weight = -8 diff --git a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.10.inst.cfg index 9841118e2bd..de0913379d3 100644 --- a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.15.inst.cfg index 18e02aed4ff..1c2e9d9953e 100644 --- a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.20.inst.cfg index a93a42df02c..35de218dcb4 100644 --- a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.25.inst.cfg index 79b2c22e7a7..5b68da394b5 100644 --- a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.10.inst.cfg index 6d05047b3df..2769e9c11b9 100644 --- a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.15.inst.cfg index 79c9d10d866..b370177f2af 100644 --- a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.20.inst.cfg index 6b99af5fe68..9b093148960 100644 --- a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.25.inst.cfg index 3e4ff411d56..4175b3b882d 100644 --- a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.30.inst.cfg index 3a6917a9b63..513cc23f41a 100644 --- a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.15.inst.cfg index 06fb65b9c13..12556d6daad 100644 --- a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.20.inst.cfg index cf28c3752f0..efb0f497aaa 100644 --- a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.25.inst.cfg index 025ee67e811..60149a698ab 100644 --- a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.30.inst.cfg index a80ee052008..14c0ae80bb5 100644 --- a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.35.inst.cfg index c2198ed29d2..0caae6620cb 100644 --- a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.10.inst.cfg index f36516d08dd..4d348529233 100644 --- a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.15.inst.cfg index 37016d040b8..508e79e005c 100644 --- a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.20.inst.cfg index 929803a398a..2d427ac5060 100644 --- a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.25.inst.cfg index 39aa19d003f..96e5a7e9236 100644 --- a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.10.inst.cfg index 6e0f68c476d..0807042bb08 100644 --- a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.15.inst.cfg index e53e6b0b70a..7a680d07dda 100644 --- a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.20.inst.cfg index 84caa4a7073..90dae71153a 100644 --- a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.25.inst.cfg index d48114e887d..4dd470095b2 100644 --- a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.30.inst.cfg index be1401a0759..cf55c91bd7d 100644 --- a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.15.inst.cfg index 2052bbe9701..880a2547083 100644 --- a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.20.inst.cfg index b262d36cf7d..4ef63d7b08a 100644 --- a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.25.inst.cfg index ec443cc82f0..f06d5264319 100644 --- a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.30.inst.cfg index fd0605bfddf..2ff7650db7d 100644 --- a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.35.inst.cfg index 0605347cc51..6f4fb83eab4 100644 --- a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/vertex_delta_k8800/k8800_ABS_Extreme_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_ABS_Extreme_Quality.inst.cfg index 8a95ba4ab8e..1c6e89f0fcd 100644 --- a/resources/quality/vertex_delta_k8800/k8800_ABS_Extreme_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_ABS_Extreme_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_ABS quality_type = extreme -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/vertex_delta_k8800/k8800_ABS_High_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_ABS_High_Quality.inst.cfg index 8bd8593036b..6d0017cbe46 100644 --- a/resources/quality/vertex_delta_k8800/k8800_ABS_High_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_ABS_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_ABS quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/vertex_delta_k8800/k8800_ABS_Normal_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_ABS_Normal_Quality.inst.cfg index 973eea0d5af..0f99d857c6f 100644 --- a/resources/quality/vertex_delta_k8800/k8800_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_ABS_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_ABS quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/vertex_delta_k8800/k8800_Global_Extreme_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_Global_Extreme_Quality.inst.cfg index cc67d80bb5b..93eee7b63e0 100644 --- a/resources/quality/vertex_delta_k8800/k8800_Global_Extreme_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_Global_Extreme_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extreme -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/vertex_delta_k8800/k8800_Global_High_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_Global_High_Quality.inst.cfg index 943befece39..1c65c533e8d 100644 --- a/resources/quality/vertex_delta_k8800/k8800_Global_High_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_Global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/vertex_delta_k8800/k8800_Global_Normal_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_Global_Normal_Quality.inst.cfg index ce5fd765798..d169d4d59ac 100644 --- a/resources/quality/vertex_delta_k8800/k8800_Global_Normal_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_Global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/vertex_delta_k8800/k8800_PET_Extreme_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PET_Extreme_Quality.inst.cfg index 67c9b8b2e11..17ddd32edbc 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PET_Extreme_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PET_Extreme_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PET quality_type = extreme -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/vertex_delta_k8800/k8800_PET_High_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PET_High_Quality.inst.cfg index d7f5cfef48b..bd1c5850c6f 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PET_High_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PET_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PET quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/vertex_delta_k8800/k8800_PET_Normal_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PET_Normal_Quality.inst.cfg index 210ada27f40..e9dc2460677 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PET_Normal_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PET_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PET quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/vertex_delta_k8800/k8800_PLA_Extreme_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PLA_Extreme_Quality.inst.cfg index 2eef80f6f9c..95b43d256ed 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PLA_Extreme_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PLA_Extreme_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PLA quality_type = extreme -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/vertex_delta_k8800/k8800_PLA_High_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PLA_High_Quality.inst.cfg index 55f23a2b796..ed5f38c3307 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PLA_High_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PLA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PLA quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/vertex_delta_k8800/k8800_PLA_Normal_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PLA_Normal_Quality.inst.cfg index daa1ee388a7..22072f12b45 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PLA quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/vertex_delta_k8800/k8800_TPU_Extreme_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_TPU_Extreme_Quality.inst.cfg index 1cf2f69c289..ff7abe36f52 100644 --- a/resources/quality/vertex_delta_k8800/k8800_TPU_Extreme_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_TPU_Extreme_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_TPU quality_type = extreme -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/vertex_delta_k8800/k8800_TPU_High_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_TPU_High_Quality.inst.cfg index d9d7bd586bf..02a59ad0f50 100644 --- a/resources/quality/vertex_delta_k8800/k8800_TPU_High_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_TPU_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_TPU quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/vertex_delta_k8800/k8800_TPU_Normal_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_TPU_Normal_Quality.inst.cfg index 4abfc9cd55e..468668bc59e 100644 --- a/resources/quality/vertex_delta_k8800/k8800_TPU_Normal_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_TPU_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_TPU quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_super.inst.cfg index 8400d63613d..d568325ccee 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_ultra.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_ultra.inst.cfg index b4f6d842192..6b5c2865d88 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_super.inst.cfg index 43754cf4d02..17a4f24cb20 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_ultra.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_ultra.inst.cfg index 51aca4c8f87..cf540a99320 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_super.inst.cfg index 123039f744b..d9b7be615c2 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_ultra.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_ultra.inst.cfg index 2778738cc45..0d2405589c4 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_adaptive.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_adaptive.inst.cfg index 5ec01f33853..3f2515bbf5f 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_low.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_low.inst.cfg index fcf9eac0787..d6064b9a596 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_low.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_standard.inst.cfg index 4e4f96e9a6c..a0083995a51 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_super.inst.cfg index bbc3c0c2cd4..f6545fa60cb 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_adaptive.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_adaptive.inst.cfg index 18741cb1f44..28d9186b299 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_low.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_low.inst.cfg index 8235de7cf3d..7f65012c932 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_low.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_standard.inst.cfg index 73d6ba0150c..4949b12a623 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_super.inst.cfg index 4c7b04faba3..745f3df40e7 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_adaptive.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_adaptive.inst.cfg index f12be977358..cfc4942cbbd 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_low.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_low.inst.cfg index a3c95de877c..e00e416f060 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_low.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_standard.inst.cfg index 26f09735ace..3a258261274 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_super.inst.cfg index 7d70600e6d3..29081be573e 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_adaptive.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_adaptive.inst.cfg index fcafe45b1a6..a200039cdca 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_standard.inst.cfg index 3e7fad20e72..eef989fadb7 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_super.inst.cfg index 214992da9c3..02690c101de 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_ABS_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_ABS_standard.inst.cfg index fe33c34b007..53bc180c214 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_ABS_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PETG_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PETG_standard.inst.cfg index cd03bbf51ac..290a06a2c41 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PETG_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_draft.inst.cfg index 9b0210c925c..8f0e13f1446 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_low.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_low.inst.cfg index 1edcc0aca85..c90b7011348 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_low.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_standard.inst.cfg index 275409e3945..857497278e7 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_TPU_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_TPU_standard.inst.cfg index 76756b07f59..79e9a7d18c4 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_TPU_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.8_ABS_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.8_ABS_draft.inst.cfg index c95d7a0cbce..17664cded08 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.8_ABS_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.8_PETG_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.8_PETG_draft.inst.cfg index 4a03f1bc16c..c672c86d723 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.8_PETG_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.8_PLA_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.8_PLA_draft.inst.cfg index dd10ada2c3f..8d7a5a486e1 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.8_PLA_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.8_TPU_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.8_TPU_draft.inst.cfg index fb5b65747f1..2d6cbc5e52d 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.8_TPU_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_adaptive.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_adaptive.inst.cfg index 1265bc05005..d12c7e66e31 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_draft.inst.cfg index 2af82ca7972..564190eb444 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_low.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_low.inst.cfg index faa561e87cc..086845dc3c0 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_low.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_standard.inst.cfg index 7f7c62fac0e..83ca6841364 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_super.inst.cfg index 74e59d47127..df1455f3086 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_ultra.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_ultra.inst.cfg index d84b13132d5..301acfa9393 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_ultra.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/vivedino/trex3/trex3_0.2_ABS_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_ABS_super.inst.cfg index a3ac617a886..7241dd65f3b 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_ABS_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.2_ABS_ultra.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_ABS_ultra.inst.cfg index a38fbaf5ac0..95b8201f1dd 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.2_PETG_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_PETG_super.inst.cfg index ffeb8a7186c..40c59a6dac3 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_PETG_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.2_PETG_ultra.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_PETG_ultra.inst.cfg index 6b1e6cc04f5..77739985e92 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.2_PLA_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_PLA_super.inst.cfg index deb8efc0726..25abb907f4c 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_PLA_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.2_PLA_ultra.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_PLA_ultra.inst.cfg index b18db947bab..58732f9d7e9 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_ABS_adaptive.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_ABS_adaptive.inst.cfg index 56fc7ca2559..6b57e6b6c98 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_ABS_low.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_ABS_low.inst.cfg index 52c33c7a435..8e02902a417 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_ABS_low.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_ABS_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_ABS_standard.inst.cfg index a43fa1416fc..494a384e4a5 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_ABS_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_ABS_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_ABS_super.inst.cfg index 7066b13d53e..5b4c240f012 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_ABS_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PETG_adaptive.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PETG_adaptive.inst.cfg index d0b07652769..f0ddd4e581d 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PETG_low.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PETG_low.inst.cfg index f58eb4cc78d..e0351ea2705 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PETG_low.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PETG_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PETG_standard.inst.cfg index 65d0b2f86eb..d9362f1fdea 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PETG_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PETG_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PETG_super.inst.cfg index 83a7bf1d585..e4d0f933e14 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PETG_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PLA_adaptive.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PLA_adaptive.inst.cfg index 9f075001b7c..1ccfed86f9a 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PLA_low.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PLA_low.inst.cfg index b39c54e5216..15252d1ccf9 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PLA_low.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PLA_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PLA_standard.inst.cfg index 7465e927a27..ba247803be9 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PLA_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PLA_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PLA_super.inst.cfg index d4beec1d172..c1449e986ad 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PLA_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_TPU_adaptive.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_TPU_adaptive.inst.cfg index 24823515fcf..8e83bb561c1 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_TPU_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_TPU_standard.inst.cfg index ddb10577616..f196808f60a 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_TPU_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_TPU_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_TPU_super.inst.cfg index d18ac9b7437..68b4d68f35c 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_TPU_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_ABS_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_ABS_standard.inst.cfg index bd7d1b0244f..64fa8215bd2 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_ABS_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_PETG_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_PETG_standard.inst.cfg index 7e5655563d5..5dc644e22b3 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_PETG_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_PLA_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_PLA_draft.inst.cfg index 05e47b6e01f..807605532b2 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_PLA_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_PLA_low.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_PLA_low.inst.cfg index de0768bca2f..69b811b4135 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_PLA_low.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_PLA_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_PLA_standard.inst.cfg index 39d448b89c5..bbacab15aca 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_PLA_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_TPU_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_TPU_standard.inst.cfg index afc319902cc..464b184e9a7 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_TPU_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.8_ABS_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.8_ABS_draft.inst.cfg index 6540732950d..fd88d032b44 100644 --- a/resources/quality/vivedino/trex3/trex3_0.8_ABS_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.8_PETG_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.8_PETG_draft.inst.cfg index 5dc7b1b7bf9..e08d8b68423 100644 --- a/resources/quality/vivedino/trex3/trex3_0.8_PETG_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.8_PLA_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.8_PLA_draft.inst.cfg index 0f548bc44aa..8039e2d102c 100644 --- a/resources/quality/vivedino/trex3/trex3_0.8_PLA_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.8_TPU_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.8_TPU_draft.inst.cfg index 5e75225fe91..91b42d6988b 100644 --- a/resources/quality/vivedino/trex3/trex3_0.8_TPU_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_global_adaptive.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_adaptive.inst.cfg index 10661dc372f..7017c58fb3c 100644 --- a/resources/quality/vivedino/trex3/trex3_global_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/vivedino/trex3/trex3_global_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_draft.inst.cfg index 6de78a03e2d..dfb030a717c 100644 --- a/resources/quality/vivedino/trex3/trex3_global_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/vivedino/trex3/trex3_global_low.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_low.inst.cfg index 7727bd3a624..46e4c526402 100644 --- a/resources/quality/vivedino/trex3/trex3_global_low.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/vivedino/trex3/trex3_global_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_standard.inst.cfg index 8548b27c88a..067d541bbd8 100644 --- a/resources/quality/vivedino/trex3/trex3_global_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/vivedino/trex3/trex3_global_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_super.inst.cfg index 209825b5ea4..20be9356b50 100644 --- a/resources/quality/vivedino/trex3/trex3_global_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/vivedino/trex3/trex3_global_ultra.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_ultra.inst.cfg index a4158b482e3..84663c26f87 100644 --- a/resources/quality/vivedino/trex3/trex3_global_ultra.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/volumic/sh65_coarse.inst.cfg b/resources/quality/volumic/sh65_coarse.inst.cfg index f6002271a75..4ee607642d0 100644 --- a/resources/quality/volumic/sh65_coarse.inst.cfg +++ b/resources/quality/volumic/sh65_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/volumic/sh65_draft.inst.cfg b/resources/quality/volumic/sh65_draft.inst.cfg index 61844b3d8ee..d20069ba377 100644 --- a/resources/quality/volumic/sh65_draft.inst.cfg +++ b/resources/quality/volumic/sh65_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/volumic/sh65_extra_coarse.inst.cfg b/resources/quality/volumic/sh65_extra_coarse.inst.cfg index 6795e06c5ba..aaf4f6d4b99 100644 --- a/resources/quality/volumic/sh65_extra_coarse.inst.cfg +++ b/resources/quality/volumic/sh65_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/volumic/sh65_fast.inst.cfg b/resources/quality/volumic/sh65_fast.inst.cfg index 5cab0242023..0e917104107 100644 --- a/resources/quality/volumic/sh65_fast.inst.cfg +++ b/resources/quality/volumic/sh65_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/volumic/sh65_high.inst.cfg b/resources/quality/volumic/sh65_high.inst.cfg index f9e974e5c83..f077f59a213 100644 --- a/resources/quality/volumic/sh65_high.inst.cfg +++ b/resources/quality/volumic/sh65_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/volumic/sh65_normal.inst.cfg b/resources/quality/volumic/sh65_normal.inst.cfg index c96946f5a86..4dfe95931ef 100644 --- a/resources/quality/volumic/sh65_normal.inst.cfg +++ b/resources/quality/volumic/sh65_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/volumic/stream20dual_mk2_coarse.inst.cfg b/resources/quality/volumic/stream20dual_mk2_coarse.inst.cfg index 01ae434bd0c..f17c733d651 100644 --- a/resources/quality/volumic/stream20dual_mk2_coarse.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/volumic/stream20dual_mk2_draft.inst.cfg b/resources/quality/volumic/stream20dual_mk2_draft.inst.cfg index 203e63efe0e..811f769693e 100644 --- a/resources/quality/volumic/stream20dual_mk2_draft.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/volumic/stream20dual_mk2_extra_coarse.inst.cfg b/resources/quality/volumic/stream20dual_mk2_extra_coarse.inst.cfg index 7d0269a6114..b95a225cbf2 100644 --- a/resources/quality/volumic/stream20dual_mk2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/volumic/stream20dual_mk2_fast.inst.cfg b/resources/quality/volumic/stream20dual_mk2_fast.inst.cfg index 58abc1beac4..fcc2659b55c 100644 --- a/resources/quality/volumic/stream20dual_mk2_fast.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/volumic/stream20dual_mk2_high.inst.cfg b/resources/quality/volumic/stream20dual_mk2_high.inst.cfg index fbed3cb579e..79b8722ad7a 100644 --- a/resources/quality/volumic/stream20dual_mk2_high.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/volumic/stream20dual_mk2_normal.inst.cfg b/resources/quality/volumic/stream20dual_mk2_normal.inst.cfg index 46d007e0436..dc39fc3c8cc 100644 --- a/resources/quality/volumic/stream20dual_mk2_normal.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/volumic/stream20pro_mk2_coarse.inst.cfg b/resources/quality/volumic/stream20pro_mk2_coarse.inst.cfg index f30fc5bddec..3226c97f8ef 100644 --- a/resources/quality/volumic/stream20pro_mk2_coarse.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/volumic/stream20pro_mk2_draft.inst.cfg b/resources/quality/volumic/stream20pro_mk2_draft.inst.cfg index 8bdddbdd1f2..2e326bcff83 100644 --- a/resources/quality/volumic/stream20pro_mk2_draft.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/volumic/stream20pro_mk2_extra_coarse.inst.cfg b/resources/quality/volumic/stream20pro_mk2_extra_coarse.inst.cfg index 610dd6e7a01..19cc0ddcef8 100644 --- a/resources/quality/volumic/stream20pro_mk2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/volumic/stream20pro_mk2_fast.inst.cfg b/resources/quality/volumic/stream20pro_mk2_fast.inst.cfg index b542119eba5..58edf8244aa 100644 --- a/resources/quality/volumic/stream20pro_mk2_fast.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/volumic/stream20pro_mk2_high.inst.cfg b/resources/quality/volumic/stream20pro_mk2_high.inst.cfg index 703b59bf4a6..3a2f4ebc8eb 100644 --- a/resources/quality/volumic/stream20pro_mk2_high.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/volumic/stream20pro_mk2_normal.inst.cfg b/resources/quality/volumic/stream20pro_mk2_normal.inst.cfg index f30aa090139..de4a217293b 100644 --- a/resources/quality/volumic/stream20pro_mk2_normal.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30dual_mk2_coarse.inst.cfg b/resources/quality/volumic/stream30dual_mk2_coarse.inst.cfg index bdcbbdb5e78..f9d939edde2 100644 --- a/resources/quality/volumic/stream30dual_mk2_coarse.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30dual_mk2_draft.inst.cfg b/resources/quality/volumic/stream30dual_mk2_draft.inst.cfg index c521eb96cc4..c89e1d95f9e 100644 --- a/resources/quality/volumic/stream30dual_mk2_draft.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30dual_mk2_extra_coarse.inst.cfg b/resources/quality/volumic/stream30dual_mk2_extra_coarse.inst.cfg index 2b168507c37..808ff582c6f 100644 --- a/resources/quality/volumic/stream30dual_mk2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30dual_mk2_fast.inst.cfg b/resources/quality/volumic/stream30dual_mk2_fast.inst.cfg index 73a73817e15..8e8c03caa99 100644 --- a/resources/quality/volumic/stream30dual_mk2_fast.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30dual_mk2_high.inst.cfg b/resources/quality/volumic/stream30dual_mk2_high.inst.cfg index a18d0e71788..6d22eff318a 100644 --- a/resources/quality/volumic/stream30dual_mk2_high.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30dual_mk2_normal.inst.cfg b/resources/quality/volumic/stream30dual_mk2_normal.inst.cfg index 5e46e5a4cb2..03689321a1f 100644 --- a/resources/quality/volumic/stream30dual_mk2_normal.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30mk3_coarse.inst.cfg b/resources/quality/volumic/stream30mk3_coarse.inst.cfg index 82b9d849f44..7da72446a11 100644 --- a/resources/quality/volumic/stream30mk3_coarse.inst.cfg +++ b/resources/quality/volumic/stream30mk3_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30mk3_draft.inst.cfg b/resources/quality/volumic/stream30mk3_draft.inst.cfg index a82fbc93ffe..21122e01485 100644 --- a/resources/quality/volumic/stream30mk3_draft.inst.cfg +++ b/resources/quality/volumic/stream30mk3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30mk3_extra_coarse.inst.cfg b/resources/quality/volumic/stream30mk3_extra_coarse.inst.cfg index 3d79662132f..9c046df8d02 100644 --- a/resources/quality/volumic/stream30mk3_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30mk3_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30mk3_fast.inst.cfg b/resources/quality/volumic/stream30mk3_fast.inst.cfg index 5f47d9dc52b..a9a0abfe44a 100644 --- a/resources/quality/volumic/stream30mk3_fast.inst.cfg +++ b/resources/quality/volumic/stream30mk3_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30mk3_high.inst.cfg b/resources/quality/volumic/stream30mk3_high.inst.cfg index 99070092d02..59b18958ea8 100644 --- a/resources/quality/volumic/stream30mk3_high.inst.cfg +++ b/resources/quality/volumic/stream30mk3_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30mk3_normal.inst.cfg b/resources/quality/volumic/stream30mk3_normal.inst.cfg index 168eaa13a9d..13236aa24e5 100644 --- a/resources/quality/volumic/stream30mk3_normal.inst.cfg +++ b/resources/quality/volumic/stream30mk3_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30pro_mk2_coarse.inst.cfg b/resources/quality/volumic/stream30pro_mk2_coarse.inst.cfg index 4ab380a91ec..093717c0cfa 100644 --- a/resources/quality/volumic/stream30pro_mk2_coarse.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30pro_mk2_draft.inst.cfg b/resources/quality/volumic/stream30pro_mk2_draft.inst.cfg index 9601e0ae6c0..fc6ad396c7d 100644 --- a/resources/quality/volumic/stream30pro_mk2_draft.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30pro_mk2_extra_coarse.inst.cfg b/resources/quality/volumic/stream30pro_mk2_extra_coarse.inst.cfg index 5de2da310ba..af4cbf94cf2 100644 --- a/resources/quality/volumic/stream30pro_mk2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30pro_mk2_fast.inst.cfg b/resources/quality/volumic/stream30pro_mk2_fast.inst.cfg index 8a0b9af92b0..2e85dd0709d 100644 --- a/resources/quality/volumic/stream30pro_mk2_fast.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30pro_mk2_high.inst.cfg b/resources/quality/volumic/stream30pro_mk2_high.inst.cfg index 13c1186f613..a88bbec9eae 100644 --- a/resources/quality/volumic/stream30pro_mk2_high.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30pro_mk2_normal.inst.cfg b/resources/quality/volumic/stream30pro_mk2_normal.inst.cfg index ead12ea85fd..a4d5156c75f 100644 --- a/resources/quality/volumic/stream30pro_mk2_normal.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30ultra_coarse.inst.cfg b/resources/quality/volumic/stream30ultra_coarse.inst.cfg index b03ca36b6e7..c88987710ae 100644 --- a/resources/quality/volumic/stream30ultra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30ultra_draft.inst.cfg b/resources/quality/volumic/stream30ultra_draft.inst.cfg index 98c9205303e..da798b475f4 100644 --- a/resources/quality/volumic/stream30ultra_draft.inst.cfg +++ b/resources/quality/volumic/stream30ultra_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30ultra_extra_coarse.inst.cfg b/resources/quality/volumic/stream30ultra_extra_coarse.inst.cfg index 88820df0298..6c0c43ef213 100644 --- a/resources/quality/volumic/stream30ultra_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultra_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30ultra_fast.inst.cfg b/resources/quality/volumic/stream30ultra_fast.inst.cfg index 15e025f4ffe..874cdaab8f8 100644 --- a/resources/quality/volumic/stream30ultra_fast.inst.cfg +++ b/resources/quality/volumic/stream30ultra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30ultra_high.inst.cfg b/resources/quality/volumic/stream30ultra_high.inst.cfg index b183ec66656..74807196565 100644 --- a/resources/quality/volumic/stream30ultra_high.inst.cfg +++ b/resources/quality/volumic/stream30ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30ultra_normal.inst.cfg b/resources/quality/volumic/stream30ultra_normal.inst.cfg index 4db17e0066f..0d46173ef46 100644 --- a/resources/quality/volumic/stream30ultra_normal.inst.cfg +++ b/resources/quality/volumic/stream30ultra_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30ultrasc2_coarse.inst.cfg b/resources/quality/volumic/stream30ultrasc2_coarse.inst.cfg index c3ca990cb26..32dbfe249bc 100644 --- a/resources/quality/volumic/stream30ultrasc2_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30ultrasc2_draft.inst.cfg b/resources/quality/volumic/stream30ultrasc2_draft.inst.cfg index 49b593c8a4e..3e0e6513e9e 100644 --- a/resources/quality/volumic/stream30ultrasc2_draft.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30ultrasc2_extra_coarse.inst.cfg b/resources/quality/volumic/stream30ultrasc2_extra_coarse.inst.cfg index 72e5a4f16f0..89bb2c6fb30 100644 --- a/resources/quality/volumic/stream30ultrasc2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30ultrasc2_fast.inst.cfg b/resources/quality/volumic/stream30ultrasc2_fast.inst.cfg index 56a6998bc27..260247659bd 100644 --- a/resources/quality/volumic/stream30ultrasc2_fast.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30ultrasc2_high.inst.cfg b/resources/quality/volumic/stream30ultrasc2_high.inst.cfg index 94f01b46d98..a747b2cb404 100644 --- a/resources/quality/volumic/stream30ultrasc2_high.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30ultrasc2_normal.inst.cfg b/resources/quality/volumic/stream30ultrasc2_normal.inst.cfg index 7284277d187..843d7b584fe 100644 --- a/resources/quality/volumic/stream30ultrasc2_normal.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30ultrasc_coarse.inst.cfg b/resources/quality/volumic/stream30ultrasc_coarse.inst.cfg index 616e45f9358..f8a7d60eb25 100644 --- a/resources/quality/volumic/stream30ultrasc_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30ultrasc_draft.inst.cfg b/resources/quality/volumic/stream30ultrasc_draft.inst.cfg index d77fec91e2e..25342c42057 100644 --- a/resources/quality/volumic/stream30ultrasc_draft.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30ultrasc_extra_coarse.inst.cfg b/resources/quality/volumic/stream30ultrasc_extra_coarse.inst.cfg index 27a0a8556c7..5fe5874ef55 100644 --- a/resources/quality/volumic/stream30ultrasc_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30ultrasc_fast.inst.cfg b/resources/quality/volumic/stream30ultrasc_fast.inst.cfg index d399f7a972a..ca187fd9694 100644 --- a/resources/quality/volumic/stream30ultrasc_fast.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30ultrasc_high.inst.cfg b/resources/quality/volumic/stream30ultrasc_high.inst.cfg index 6fc17a0c07a..41170d02610 100644 --- a/resources/quality/volumic/stream30ultrasc_high.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30ultrasc_normal.inst.cfg b/resources/quality/volumic/stream30ultrasc_normal.inst.cfg index 032c6787f65..1ef8a673702 100644 --- a/resources/quality/volumic/stream30ultrasc_normal.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/voron2/voron2_global_extrafast_quality.inst.cfg b/resources/quality/voron2/voron2_global_extrafast_quality.inst.cfg index d1c3338e9e0..ca793bd4cdf 100644 --- a/resources/quality/voron2/voron2_global_extrafast_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_extrafast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_extrafine_quality.inst.cfg b/resources/quality/voron2/voron2_global_extrafine_quality.inst.cfg index eaa1ab94a92..ce40e624458 100644 --- a/resources/quality/voron2/voron2_global_extrafine_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_extrafine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_fast_quality.inst.cfg b/resources/quality/voron2/voron2_global_fast_quality.inst.cfg index 68d875074a2..0449c493fa1 100644 --- a/resources/quality/voron2/voron2_global_fast_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_fast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_fine_quality.inst.cfg b/resources/quality/voron2/voron2_global_fine_quality.inst.cfg index 28f798ac3cf..6f29ec5055f 100644 --- a/resources/quality/voron2/voron2_global_fine_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_fine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_normal_quality.inst.cfg b/resources/quality/voron2/voron2_global_normal_quality.inst.cfg index 4da5a189bc6..e3d8fbbd5af 100644 --- a/resources/quality/voron2/voron2_global_normal_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_normal_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_sprint_quality.inst.cfg b/resources/quality/voron2/voron2_global_sprint_quality.inst.cfg index 601f2e7938d..1ace1241f19 100644 --- a/resources/quality/voron2/voron2_global_sprint_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_sprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_supersprint_quality.inst.cfg b/resources/quality/voron2/voron2_global_supersprint_quality.inst.cfg index 73c001a0c00..f294ceb8bb7 100644 --- a/resources/quality/voron2/voron2_global_supersprint_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_supersprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_ultrasprint_quality.inst.cfg b/resources/quality/voron2/voron2_global_ultrasprint_quality.inst.cfg index f0e8f84207b..999e2cf9dbc 100644 --- a/resources/quality/voron2/voron2_global_ultrasprint_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_ultrasprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/voron2/voron2_v6_0.25_ABS_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_ABS_extrafine.inst.cfg index 807fe41ed82..d875200d07e 100644 --- a/resources/quality/voron2/voron2_v6_0.25_ABS_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_ABS_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_ABS_fast.inst.cfg index cb536784b95..41fa3934fdc 100644 --- a/resources/quality/voron2/voron2_v6_0.25_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_ABS_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_ABS_fine.inst.cfg index 34b45927efb..7cacd10f627 100644 --- a/resources/quality/voron2/voron2_v6_0.25_ABS_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_ABS_normal.inst.cfg index ff77c263f52..27c9b2baa4b 100644 --- a/resources/quality/voron2/voron2_v6_0.25_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_Nylon_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_Nylon_extrafine.inst.cfg index d239904200e..6aaa0a5cec8 100644 --- a/resources/quality/voron2/voron2_v6_0.25_Nylon_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_Nylon_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_Nylon_fast.inst.cfg index f12c40aff3c..20c0c546271 100644 --- a/resources/quality/voron2/voron2_v6_0.25_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_Nylon_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_Nylon_fine.inst.cfg index 6bc2d68be4f..98433b300a2 100644 --- a/resources/quality/voron2/voron2_v6_0.25_Nylon_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_Nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_Nylon_normal.inst.cfg index 6a0a63e7c89..c52e1edc697 100644 --- a/resources/quality/voron2/voron2_v6_0.25_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PC_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PC_extrafine.inst.cfg index 8518310a7ef..7701363d27f 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PC_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PC_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PC_fast.inst.cfg index 640856b1a3e..db3304c8bda 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PC_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PC_fine.inst.cfg index 705d06eae4d..2340ac5eb55 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PC_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PC_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PC_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PC_normal.inst.cfg index de7bdeb500e..8cb43102a98 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PETG_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PETG_extrafine.inst.cfg index a11e4262d02..1da27306416 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PETG_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PETG_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PETG_fast.inst.cfg index 491d0834c9e..e880dfde900 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PETG_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PETG_fine.inst.cfg index 9bdf9f755bb..64eb944a8e3 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PETG_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PETG_normal.inst.cfg index ad3591ebad6..16b89df09dd 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PLA_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PLA_extrafine.inst.cfg index 4f108362890..5ab36fdc1d6 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PLA_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PLA_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PLA_fast.inst.cfg index 8f13a10f464..128f4f3519a 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PLA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PLA_fine.inst.cfg index f7f934ebaee..bef1c297b90 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PLA_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PLA_normal.inst.cfg index 7611969448c..0fbe2717ff9 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.30_ABS_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_ABS_extrafine.inst.cfg index 77cfd3a2cba..8c340b49729 100644 --- a/resources/quality/voron2/voron2_v6_0.30_ABS_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_ABS_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_ABS_fast.inst.cfg index 14147f9d2a8..b618f271856 100644 --- a/resources/quality/voron2/voron2_v6_0.30_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_ABS_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_ABS_fine.inst.cfg index 08db73af24c..5fc1baf868a 100644 --- a/resources/quality/voron2/voron2_v6_0.30_ABS_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_ABS_normal.inst.cfg index a23bf4a3b7b..0e79604c855 100644 --- a/resources/quality/voron2/voron2_v6_0.30_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_Nylon_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_Nylon_extrafine.inst.cfg index 38fb11d4199..aab9828c89a 100644 --- a/resources/quality/voron2/voron2_v6_0.30_Nylon_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_Nylon_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_Nylon_fast.inst.cfg index 33fd3dac2fa..5e68a88b28a 100644 --- a/resources/quality/voron2/voron2_v6_0.30_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_Nylon_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_Nylon_fine.inst.cfg index 24c351401df..47cc7bd3aab 100644 --- a/resources/quality/voron2/voron2_v6_0.30_Nylon_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_Nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_Nylon_normal.inst.cfg index 406ce90e291..c265542a593 100644 --- a/resources/quality/voron2/voron2_v6_0.30_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PC_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PC_extrafine.inst.cfg index 61e1ec3a7e3..2eda5bfb6de 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PC_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PC_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PC_fast.inst.cfg index 030fabf15fb..a1891a441dc 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PC_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PC_fine.inst.cfg index 2224d795bf4..cb5a8185c65 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PC_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PC_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PC_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PC_normal.inst.cfg index 3d9349daa00..38716319729 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PETG_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PETG_extrafine.inst.cfg index 8e2a03761c4..b3540539e9f 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PETG_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PETG_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PETG_fast.inst.cfg index 9dd178f0f37..8d0a0683e44 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PETG_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PETG_fine.inst.cfg index fcf74f3a4cd..1e1f83bcd8f 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PETG_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PETG_normal.inst.cfg index 20ff970fc6d..25eeb9671a4 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PLA_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PLA_extrafine.inst.cfg index b3795a3ef54..a2fdab44e18 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PLA_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PLA_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PLA_fast.inst.cfg index 965d900bbb8..0d90f4563fc 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PLA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PLA_fine.inst.cfg index 65aa7f0343e..38be216020c 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PLA_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PLA_normal.inst.cfg index 2a57475a785..a85824d26eb 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.35_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_ABS_fast.inst.cfg index 7846447eb7b..f4b4c535307 100644 --- a/resources/quality/voron2/voron2_v6_0.35_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_ABS_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_ABS_fine.inst.cfg index 015a9c9aae1..765f525e3a8 100644 --- a/resources/quality/voron2/voron2_v6_0.35_ABS_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_ABS_normal.inst.cfg index 87389e8e226..79147ed396f 100644 --- a/resources/quality/voron2/voron2_v6_0.35_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_Nylon_fast.inst.cfg index 2516c359413..bccc0df919a 100644 --- a/resources/quality/voron2/voron2_v6_0.35_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_Nylon_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_Nylon_fine.inst.cfg index 03c36126e34..e66e09de2eb 100644 --- a/resources/quality/voron2/voron2_v6_0.35_Nylon_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_Nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_Nylon_normal.inst.cfg index 755376e6267..ffa5c7474d5 100644 --- a/resources/quality/voron2/voron2_v6_0.35_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PC_fast.inst.cfg index 0852b1bf540..8c4ff0e135f 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PC_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PC_fine.inst.cfg index 268ba62a656..aa522f9bf15 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PC_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PC_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PC_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PC_normal.inst.cfg index 51b4afc60ad..46218916caa 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PETG_fast.inst.cfg index 1f08c7bc500..96efd1e41eb 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PETG_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PETG_fine.inst.cfg index facfc8056c7..dbcc850ccde 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PETG_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PETG_normal.inst.cfg index 6661209790f..0653734b260 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PLA_fast.inst.cfg index c60ceef721b..2c68fe3d54d 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PLA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PLA_fine.inst.cfg index 0881d6ab968..2d6094cb4c1 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PLA_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PLA_normal.inst.cfg index 6bf236e0f9a..7a665711e0d 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.40_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_ABS_extrafast.inst.cfg index 2db034efebb..0d531943391 100644 --- a/resources/quality/voron2/voron2_v6_0.40_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_ABS_fast.inst.cfg index 109f47e2ed0..beb9e634874 100644 --- a/resources/quality/voron2/voron2_v6_0.40_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_ABS_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_ABS_fine.inst.cfg index d2c90a076d0..f0ae26fdecf 100644 --- a/resources/quality/voron2/voron2_v6_0.40_ABS_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_ABS_normal.inst.cfg index 190acad43cf..afab3158607 100644 --- a/resources/quality/voron2/voron2_v6_0.40_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_Nylon_extrafast.inst.cfg index d5aa2294071..c28857b5654 100644 --- a/resources/quality/voron2/voron2_v6_0.40_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_Nylon_fast.inst.cfg index 5b36de7fbf1..cc3433b18e4 100644 --- a/resources/quality/voron2/voron2_v6_0.40_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_Nylon_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_Nylon_fine.inst.cfg index 191c3b638ae..3f0760ac527 100644 --- a/resources/quality/voron2/voron2_v6_0.40_Nylon_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_Nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_Nylon_normal.inst.cfg index 29c8875ceaa..ae4eb6a72ab 100644 --- a/resources/quality/voron2/voron2_v6_0.40_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PC_extrafast.inst.cfg index 62f9aa7c610..d44de8b675e 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PC_fast.inst.cfg index 8527ebc5e03..5d957259259 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PC_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PC_fine.inst.cfg index de2688f5026..393ebdc42f3 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PC_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PC_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PC_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PC_normal.inst.cfg index 2c310f8cdf8..a702679bd3c 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PETG_extrafast.inst.cfg index 7823e910540..9c187e99e68 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PETG_fast.inst.cfg index 72395f4992f..c92c574d3cb 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PETG_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PETG_fine.inst.cfg index f89dd4482df..a1694ce1606 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PETG_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PETG_normal.inst.cfg index e39dc24194b..3c45b57b038 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PLA_extrafast.inst.cfg index bc279381b58..087ba0b07ae 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PLA_fast.inst.cfg index d2bda88545b..15223eb5e77 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PLA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PLA_fine.inst.cfg index 812bb233838..cfe44ff106a 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PLA_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PLA_normal.inst.cfg index a0225cdf3c7..d2a81b81c05 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.50_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_ABS_extrafast.inst.cfg index 32dcd984dc1..595c1a99663 100644 --- a/resources/quality/voron2/voron2_v6_0.50_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_ABS_fast.inst.cfg index 6c6030bfb35..203f6be5698 100644 --- a/resources/quality/voron2/voron2_v6_0.50_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_ABS_normal.inst.cfg index 360ce976f6b..9ac625d6857 100644 --- a/resources/quality/voron2/voron2_v6_0.50_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_ABS_sprint.inst.cfg index 27d1008e36d..1792fcafd23 100644 --- a/resources/quality/voron2/voron2_v6_0.50_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_Nylon_extrafast.inst.cfg index 4c6105e2fc5..cfbbb3e9c40 100644 --- a/resources/quality/voron2/voron2_v6_0.50_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_Nylon_fast.inst.cfg index 78fb176a6e5..5f5347c9c23 100644 --- a/resources/quality/voron2/voron2_v6_0.50_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_Nylon_normal.inst.cfg index c6d8677655f..67461a9d8ca 100644 --- a/resources/quality/voron2/voron2_v6_0.50_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_Nylon_sprint.inst.cfg index 13dfcbabd31..5772fc5a710 100644 --- a/resources/quality/voron2/voron2_v6_0.50_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PC_extrafast.inst.cfg index 1427d8af111..e6977e5443d 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PC_fast.inst.cfg index 7dd17ae4627..cbf5f70b5a6 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PC_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PC_normal.inst.cfg index 5aaee843ca6..0e5a6959e81 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PC_sprint.inst.cfg index 3d0aa8c7164..0ccd36651d2 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PETG_extrafast.inst.cfg index 848aaa56f89..c0aae829e51 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PETG_fast.inst.cfg index 8146bf16687..322d1bcf21e 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PETG_normal.inst.cfg index 946e15b3c76..1b1bb7fe600 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PETG_sprint.inst.cfg index 6f05dbb9aa0..ff9950d5427 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PLA_extrafast.inst.cfg index 9596c888d5d..84da32fd55f 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PLA_fast.inst.cfg index 578b7f4f122..1dc52397a44 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PLA_normal.inst.cfg index 0f9fdcdf292..a0c6f2b9a1e 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PLA_sprint.inst.cfg index 09b6be0fb0d..5a959cf6403 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.60_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_ABS_extrafast.inst.cfg index d091e8eb3e0..9b52a77ee34 100644 --- a/resources/quality/voron2/voron2_v6_0.60_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_ABS_fast.inst.cfg index ff5838849ac..a8aaecefdc4 100644 --- a/resources/quality/voron2/voron2_v6_0.60_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_ABS_sprint.inst.cfg index d7c7a7da08d..9dcf32c5f27 100644 --- a/resources/quality/voron2/voron2_v6_0.60_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_Nylon_extrafast.inst.cfg index bc862958916..cd8c3d5e9a6 100644 --- a/resources/quality/voron2/voron2_v6_0.60_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_Nylon_fast.inst.cfg index 7c7beb32fa1..0efae053b73 100644 --- a/resources/quality/voron2/voron2_v6_0.60_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_Nylon_sprint.inst.cfg index 627f90a972a..b22db497558 100644 --- a/resources/quality/voron2/voron2_v6_0.60_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PC_extrafast.inst.cfg index 5343ff9dbaa..d7b5010821d 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PC_fast.inst.cfg index 10644c60d9a..1f6a1c8c55a 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PC_sprint.inst.cfg index 8cc8f02d7b8..1d206a3b7d3 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PETG_extrafast.inst.cfg index 1e212ae713f..bc76b30b69c 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PETG_fast.inst.cfg index 998805303ca..c39253d0406 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PETG_sprint.inst.cfg index f07e9a93136..b77ca6d386a 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PLA_extrafast.inst.cfg index ad505c92431..8cf6106b62c 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PLA_fast.inst.cfg index 66c5fa28bbe..309c742ef03 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PLA_sprint.inst.cfg index 63721b8a695..519cb6d205d 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.80_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_ABS_extrafast.inst.cfg index 75c1416018e..66431111821 100644 --- a/resources/quality/voron2/voron2_v6_0.80_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_ABS_sprint.inst.cfg index d1c87bb9b4f..ef77e1bd65e 100644 --- a/resources/quality/voron2/voron2_v6_0.80_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_ABS_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_ABS_supersprint.inst.cfg index fbc56b53e01..ab46c7db252 100644 --- a/resources/quality/voron2/voron2_v6_0.80_ABS_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_ABS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_Nylon_extrafast.inst.cfg index 742d00a38c9..e6dd968958b 100644 --- a/resources/quality/voron2/voron2_v6_0.80_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_Nylon_sprint.inst.cfg index 842d4baa79a..4ff5f027025 100644 --- a/resources/quality/voron2/voron2_v6_0.80_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_Nylon_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_Nylon_supersprint.inst.cfg index 503edd35ffb..e55e5e9495f 100644 --- a/resources/quality/voron2/voron2_v6_0.80_Nylon_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_Nylon_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PC_extrafast.inst.cfg index 6e6d9d17ccd..845df530221 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PC_sprint.inst.cfg index 52984fb0952..1ed64c7b524 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PC_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PC_supersprint.inst.cfg index 9d2e267a30e..c8f280ef000 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PC_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PC_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PETG_extrafast.inst.cfg index 896f8af6396..920a63bd220 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PETG_sprint.inst.cfg index 27ffdc10ca2..3bfc1889cfc 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PETG_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PETG_supersprint.inst.cfg index 103912cd5cd..465756d926b 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PETG_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PETG_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PLA_extrafast.inst.cfg index 0dff83cd4b3..10726885f68 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PLA_sprint.inst.cfg index 936f9c75c72..2b9ff22a157 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PLA_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PLA_supersprint.inst.cfg index 24800eb333d..6729522329f 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PLA_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PLA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_ABS_extrafast.inst.cfg index 97c0b3263c1..ac05f4a8593 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_ABS_fast.inst.cfg index 74119f18248..ea91d0e7472 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_ABS_normal.inst.cfg index 5f7eedb9d73..59c5ec65561 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_Nylon_extrafast.inst.cfg index d29432fa70b..a20ea38fc17 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_Nylon_fast.inst.cfg index 9b8d157d5e8..fb9a3747e61 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_Nylon_normal.inst.cfg index a96a6d6c3fc..7f52ed666a6 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PC_extrafast.inst.cfg index 4bec6f3a537..461496d9382 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PC_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PC_fast.inst.cfg index a918a9e517d..d399a9ddc05 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PC_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PC_normal.inst.cfg index 9f61ac52cc3..2d8cdd34b2b 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PETG_extrafast.inst.cfg index e1428ab8d50..5ee59d8f8df 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PETG_fast.inst.cfg index eb69a3af6c3..6469d5fba1c 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PETG_normal.inst.cfg index 33f27cd0da2..a49742d3fce 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PLA_extrafast.inst.cfg index b2e08fe8994..400d3d25ad9 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PLA_fast.inst.cfg index 5b1991be046..81b6163b52e 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PLA_normal.inst.cfg index 9c9d57f0f77..94c1c4419d2 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_ABS_extrafast.inst.cfg index 270869fced4..c7f8225bf83 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_ABS_fast.inst.cfg index ba14bb25fc9..31c38aa2eba 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_ABS_sprint.inst.cfg index d06264cb286..9b3c4a3187a 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_Nylon_extrafast.inst.cfg index 589c88ffd81..e21c2d9cec6 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_Nylon_fast.inst.cfg index f38c2900c1f..e54b55903e8 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_Nylon_sprint.inst.cfg index c72942f9b17..a324716f29c 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PC_extrafast.inst.cfg index ded1dea38ab..a6af14319a2 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PC_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PC_fast.inst.cfg index 7cb82763e24..0f0cacd9bfa 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PC_sprint.inst.cfg index a90951179cc..e9d99c608d4 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PETG_extrafast.inst.cfg index abf3f6ae2ba..0ea66c9ef38 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PETG_fast.inst.cfg index 5d08831931c..b5459490ce1 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PETG_sprint.inst.cfg index 2e5f186d3d4..5cc95ff206c 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PLA_extrafast.inst.cfg index 12768f239e4..a656bf8e135 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PLA_fast.inst.cfg index 4d32ef9a489..8fad6d93eea 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PLA_sprint.inst.cfg index ce434aba610..9b49097136f 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_ABS_extrafast.inst.cfg index 0bdb6f9bf1e..4aa795e5f37 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_ABS_sprint.inst.cfg index 59dc9ea4df8..0e666729f93 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_ABS_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_ABS_supersprint.inst.cfg index f63011cd56d..be5e2a7e276 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_ABS_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_ABS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_Nylon_extrafast.inst.cfg index 815c69c8b47..333fe0c7064 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_Nylon_sprint.inst.cfg index 6bdc89730ce..d6f3f600564 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_Nylon_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_Nylon_supersprint.inst.cfg index 4d7bff8c566..d90b2b2a043 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_Nylon_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_Nylon_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PC_extrafast.inst.cfg index 4c4d326974f..a228f481df4 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PC_sprint.inst.cfg index 7eb9b2989ef..a1be60d0d02 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PC_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PC_supersprint.inst.cfg index 97c00b70ca1..a78bd40fea4 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PC_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PC_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PETG_extrafast.inst.cfg index 78b15e3173c..498a142787e 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PETG_sprint.inst.cfg index fa489ea005b..e67efe5ac49 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PETG_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PETG_supersprint.inst.cfg index c4cb559bce0..ca4c177dbe1 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PETG_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PETG_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PLA_extrafast.inst.cfg index 2279251ee4c..062a9e73e83 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PLA_sprint.inst.cfg index 7df50dba1e2..3927460cf05 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PLA_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PLA_supersprint.inst.cfg index 6252c23a197..b217a395adf 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PLA_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PLA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_ABS_sprint.inst.cfg index 98f16122552..380dd8b8c5a 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_ABS_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_ABS_supersprint.inst.cfg index 97a24a3640e..49e4ebc4556 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_ABS_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_ABS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_ABS_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_ABS_ultrasprint.inst.cfg index 42cc3edab99..86db81b3e7f 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_ABS_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_ABS_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_Nylon_sprint.inst.cfg index a8108009939..479eebde1c7 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_Nylon_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_Nylon_supersprint.inst.cfg index 9b503365629..84da8963032 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_Nylon_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_Nylon_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_Nylon_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_Nylon_ultrasprint.inst.cfg index 244ffb5bb2c..28a398c0851 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_Nylon_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_Nylon_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PC_sprint.inst.cfg index c0a352add00..a06c882cfae 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PC_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PC_supersprint.inst.cfg index bb04609e983..5c486595073 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PC_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PC_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PC_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PC_ultrasprint.inst.cfg index e35937e03da..37d33416765 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PC_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PC_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PETG_sprint.inst.cfg index 958fe470a3f..8bf4e535e75 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PETG_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PETG_supersprint.inst.cfg index 2ed2fae3e0e..06fe686ef5f 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PETG_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PETG_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PETG_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PETG_ultrasprint.inst.cfg index ee395213671..c2272389794 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PETG_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PETG_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PLA_sprint.inst.cfg index cf846204dfa..9d34cef806f 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PLA_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PLA_supersprint.inst.cfg index 04d88283007..62fefa64b57 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PLA_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PLA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PLA_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PLA_ultrasprint.inst.cfg index 2dfb7ca04f8..00d88a23a31 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PLA_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PLA_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_ABS_sprint.inst.cfg index f1314e9c868..4dc2b48b24a 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_ABS_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_ABS_supersprint.inst.cfg index df746eb5068..b469ab4c268 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_ABS_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_ABS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_ABS_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_ABS_ultrasprint.inst.cfg index 1cd7aab2a61..130b7b29481 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_ABS_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_ABS_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_Nylon_sprint.inst.cfg index 257500c2f6d..8b837d16581 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_Nylon_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_Nylon_supersprint.inst.cfg index 24839241bac..58f6a271901 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_Nylon_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_Nylon_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_Nylon_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_Nylon_ultrasprint.inst.cfg index 71985a26267..1706d2be72a 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_Nylon_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_Nylon_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PC_sprint.inst.cfg index 9dd007e6149..e948d3bbc84 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PC_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PC_supersprint.inst.cfg index de1061db4dc..6257674f482 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PC_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PC_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PC_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PC_ultrasprint.inst.cfg index 5a71bd3907a..5f386d21224 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PC_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PC_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PETG_sprint.inst.cfg index d622a799d8c..2c907beb2d3 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PETG_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PETG_supersprint.inst.cfg index 81f97d6cf59..71b308a4086 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PETG_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PETG_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PETG_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PETG_ultrasprint.inst.cfg index a0bc875d44b..37afa42967d 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PETG_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PETG_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PLA_sprint.inst.cfg index 78f3195510e..c829d0d0799 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PLA_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PLA_supersprint.inst.cfg index 9f13d92c4f6..c7c996050c0 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PLA_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PLA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PLA_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PLA_ultrasprint.inst.cfg index 2363a6959c9..6960fad5017 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PLA_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PLA_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_super.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_super.inst.cfg index c6a3459f5b4..c38a8e3c4d4 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_super.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_ultra.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_ultra.inst.cfg index 157f0fd96b6..d159ef3b050 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_adaptive.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_adaptive.inst.cfg index 481982f2a52..58e66cebb6c 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_low.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_low.inst.cfg index faa8b622d9c..3e140ef0f97 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_low.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_standard.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_standard.inst.cfg index fa7787df939..bc05a7a3fbf 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_standard.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_super.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_super.inst.cfg index 0bd3884a2ab..25ab4e1a3d3 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_super.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_adaptive.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_adaptive.inst.cfg index 513f9e5463e..ab3e231391c 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_low.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_low.inst.cfg index e9843de1b1c..5dcdb4806d9 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_low.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_standard.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_standard.inst.cfg index f67a0585fe8..a3fe0bad617 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_standard.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_super.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_super.inst.cfg index 9645040b22c..8ab320354ac 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_super.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_adaptive.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_adaptive.inst.cfg index 9abe239b62d..0e7a2a0c55e 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_low.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_low.inst.cfg index caf5339cad6..be687eaae38 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_low.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_standard.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_standard.inst.cfg index eb2615ddd29..335be4aaf83 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_standard.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_super.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_super.inst.cfg index 636f2d20828..03f442d9502 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_super.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.6_ABS_standard.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.6_ABS_standard.inst.cfg index 5c3e44cc57e..bae54fd0a48 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.6_ABS_standard.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.8_ABS_draft.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.8_ABS_draft.inst.cfg index 7b69963f1dc..45d2fbb4a4f 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.8_ABS_draft.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_1.0_ABS_draft.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_1.0_ABS_draft.inst.cfg index 1a168c407e4..99ede3bb4ad 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_1.0_ABS_draft.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.2_PC_super.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.2_PC_super.inst.cfg index 3d0ea75ea14..2bb7d54289f 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.2_PC_super.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.2_PC_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.2_PC_ultra.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.2_PC_ultra.inst.cfg index eba20c612c6..0f858c688f5 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.2_PC_ultra.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.2_PC_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_adaptive.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_adaptive.inst.cfg index 7c16b9590ea..ad91d8fa082 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_low.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_low.inst.cfg index 93977a721c7..7129c6ed938 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_low.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_standard.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_standard.inst.cfg index 7b32091f5a1..f31af997b76 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_standard.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_super.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_super.inst.cfg index a6c8e4be9f7..f96705db92f 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_super.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_adaptive.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_adaptive.inst.cfg index b2fdcafebb5..fd16a17ea0f 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_low.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_low.inst.cfg index 32f5d5ff4eb..a1520959d72 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_low.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_standard.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_standard.inst.cfg index 35f7bb0f992..3b1b532f461 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_standard.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_super.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_super.inst.cfg index d20ca864cbb..897eeaa4405 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_super.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_adaptive.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_adaptive.inst.cfg index 29df29a057e..bb24ea54269 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_low.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_low.inst.cfg index 85adae20425..e5c3a2f82fd 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_low.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_standard.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_standard.inst.cfg index ff4079d0175..1c0cf0ea199 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_standard.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_super.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_super.inst.cfg index c4467c7f8d2..d5928742192 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_super.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.6_PC_standard.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.6_PC_standard.inst.cfg index 1bba36d296e..dc3d6c66f6a 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.6_PC_standard.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.6_PC_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.8_PC_draft.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.8_PC_draft.inst.cfg index 70f6abcb226..8703ce746ee 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.8_PC_draft.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.8_PC_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_1.0_PC_draft.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_1.0_PC_draft.inst.cfg index 41d14cdac85..3ed5fbad9ea 100644 --- a/resources/quality/vzbot/base/PC/vzbot_1.0_PC_draft.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_1.0_PC_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_super.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_super.inst.cfg index 282bffcfea4..885c0e1f1f6 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_super.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_ultra.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_ultra.inst.cfg index 09494811546..0b775f9a7ac 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_adaptive.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_adaptive.inst.cfg index 83c8e71d6ca..8a95360b480 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_low.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_low.inst.cfg index 702204591cb..00fe2eea355 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_low.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_standard.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_standard.inst.cfg index b2dca805f04..8afa3b3c11c 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_standard.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_super.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_super.inst.cfg index 2f169f25182..63af2d3ecce 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_super.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_adaptive.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_adaptive.inst.cfg index 726f99974b5..5d5803b7efe 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_low.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_low.inst.cfg index 8408f97681d..d807851a31f 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_low.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_standard.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_standard.inst.cfg index c57fa9d3826..ffc89f4389b 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_standard.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_super.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_super.inst.cfg index 3393cd1afaf..959cd5f697e 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_super.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_adaptive.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_adaptive.inst.cfg index 8f086577742..2ec0991fdfa 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_low.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_low.inst.cfg index 95b8935e7b9..223dac0ef8c 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_low.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_standard.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_standard.inst.cfg index 0ec9bb591e6..aa02d0471c7 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_standard.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_super.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_super.inst.cfg index 91f3d3a84a9..72b9fd211cf 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_super.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.6_PETG_standard.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.6_PETG_standard.inst.cfg index 29aaf7e614a..68b0ac18da6 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.6_PETG_standard.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.8_PETG_draft.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.8_PETG_draft.inst.cfg index d280ba1cf69..d846803c713 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.8_PETG_draft.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_1.0_PETG_draft.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_1.0_PETG_draft.inst.cfg index 207b3163e8d..b5941d2cdf2 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_1.0_PETG_draft.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_super.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_super.inst.cfg index 1ba4de6a040..95ad976385b 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_super.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_ultra.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_ultra.inst.cfg index a4dd03021ae..f7e01b9d1fc 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_adaptive.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_adaptive.inst.cfg index cc42c9ef489..2435b9c9f43 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_low.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_low.inst.cfg index 76c087ccb91..6e695dd07dd 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_low.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_standard.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_standard.inst.cfg index db142e567eb..c9f1bedd3cb 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_super.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_super.inst.cfg index 0c45d949b8c..b8e8471993a 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_super.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_adaptive.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_adaptive.inst.cfg index 98fa1142682..698ae5c327e 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_low.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_low.inst.cfg index 15ef5287afb..5d7c1e64e0b 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_low.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_standard.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_standard.inst.cfg index 5ce8e6b81c1..72f1b0afb36 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_super.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_super.inst.cfg index 7eb9b186776..2b1a6836db6 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_super.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_adaptive.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_adaptive.inst.cfg index 24fc4af465f..286bd3af697 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_low.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_low.inst.cfg index b5681cdd885..3f89d1d8cd5 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_low.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_standard.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_standard.inst.cfg index 344ea576518..663740a7820 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_super.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_super.inst.cfg index 6a555146599..949ce8e1bf5 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_super.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_draft.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_draft.inst.cfg index 18a3243485e..3fc5b428a30 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_draft.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_low.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_low.inst.cfg index d3fcb1f82da..8b7ddcb334b 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_low.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_standard.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_standard.inst.cfg index 94fd3fd2bc2..c663ba030f5 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.8_PLA_draft.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.8_PLA_draft.inst.cfg index f98cced5085..f20d1f0fafc 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.8_PLA_draft.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_1.0_PLA_draft.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_1.0_PLA_draft.inst.cfg index 7d00f47c366..0257e3cc519 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_1.0_PLA_draft.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_super.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_super.inst.cfg index 2f350f3b618..26b174bfd88 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_super.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_ultra.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_ultra.inst.cfg index b5c4c463cf9..773b7624cb5 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_ultra.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_adaptive.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_adaptive.inst.cfg index 2f645e79dc7..6e1e26c272a 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_low.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_low.inst.cfg index 4944bce9677..e0c652f62db 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_low.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_standard.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_standard.inst.cfg index dfd3eb975d7..adff9d37bcb 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_super.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_super.inst.cfg index 28dccd8ab20..afdd46b8c21 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_super.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_adaptive.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_adaptive.inst.cfg index 98a378727a3..2d034d97968 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_low.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_low.inst.cfg index 972f9a29731..f4c791a5e44 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_low.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_standard.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_standard.inst.cfg index d788a8af610..f4653302e15 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_super.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_super.inst.cfg index 2f0f04f9321..300a60fd842 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_super.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_adaptive.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_adaptive.inst.cfg index 1d77ef19728..a3ddc5b6a19 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_low.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_low.inst.cfg index b3c474ce4bd..ffefba73230 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_low.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_standard.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_standard.inst.cfg index 596e6bb6cfc..f26406f11c7 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_super.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_super.inst.cfg index 2cbc4e515d5..530ca4e81f4 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_super.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.6_PVA_standard.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.6_PVA_standard.inst.cfg index a6ec48458f1..2fa4ad5ed46 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.6_PVA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.6_PVA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.8_PVA_draft.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.8_PVA_draft.inst.cfg index 80ed31a013a..c8f07d26d60 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.8_PVA_draft.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.8_PVA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_1.0_PVA_draft.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_1.0_PVA_draft.inst.cfg index bf9adb95a34..db31efadb27 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_1.0_PVA_draft.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_1.0_PVA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_adaptive.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_adaptive.inst.cfg index 2e65982ad3c..f2d7cf6f509 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_standard.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_standard.inst.cfg index 5c3ccc2b7e2..8cc077a9d91 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_standard.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_super.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_super.inst.cfg index d6b86e06d9b..44d307e8b85 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_super.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_adaptive.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_adaptive.inst.cfg index 3fdb89ec10c..7957687ef1f 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_standard.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_standard.inst.cfg index 5b15f3c811b..414112a49ba 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_standard.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_super.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_super.inst.cfg index d702b8715e0..8240cf57a69 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_super.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_adaptive.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_adaptive.inst.cfg index 14f8adc388a..c686638790e 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_standard.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_standard.inst.cfg index 9e203f6ee7f..c77a6912f89 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_standard.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_super.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_super.inst.cfg index 2cacc0f92ac..9cd86ac1645 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_super.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.6_TPU_standard.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.6_TPU_standard.inst.cfg index 7269be8ab34..95962ed7d4d 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.6_TPU_standard.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.8_TPU_draft.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.8_TPU_draft.inst.cfg index ab2fab7a051..8c86c131c59 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.8_TPU_draft.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_1.0_TPU_draft.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_1.0_TPU_draft.inst.cfg index 43b6b458c0c..f82a374f6db 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_1.0_TPU_draft.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_super.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_super.inst.cfg index 5594dda9ef7..097d431c168 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_super.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_ultra.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_ultra.inst.cfg index 17739b73b41..5d9ac91bccd 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_ultra.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_adaptive.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_adaptive.inst.cfg index f9903d7b062..2b9e75ae8b8 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_low.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_low.inst.cfg index a40ab396ae3..7d4b01c7244 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_low.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_standard.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_standard.inst.cfg index 029ef05aa96..2665e85c0b0 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_standard.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_super.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_super.inst.cfg index 3803d78c52f..e7d80cd0d91 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_super.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_adaptive.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_adaptive.inst.cfg index 6cc56eefdb1..06fd7b2fb1b 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_low.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_low.inst.cfg index b0f35540362..554c3115660 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_low.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_standard.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_standard.inst.cfg index f0f37b095d2..f9597996784 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_standard.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_super.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_super.inst.cfg index b5ea731a26a..8842f5b91a6 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_super.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_adaptive.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_adaptive.inst.cfg index a1adffd0273..4438ee4a355 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_low.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_low.inst.cfg index fb00ba27630..2f17f7a12d6 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_low.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_standard.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_standard.inst.cfg index e3bfc434c9c..9c23e0e7b01 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_standard.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_super.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_super.inst.cfg index dff4884e7cf..9519418da0a 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_super.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.6_nylon_standard.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.6_nylon_standard.inst.cfg index fa7f4c43857..6a5bd488c2b 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.6_nylon_standard.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.6_nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.8_nylon_draft.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.8_nylon_draft.inst.cfg index 78ba0a7812f..8d76e83f6a6 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.8_nylon_draft.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.8_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_1.0_nylon_draft.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_1.0_nylon_draft.inst.cfg index e6e2e3efa84..f20f206402e 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_1.0_nylon_draft.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_1.0_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/vzbot_global_adaptive.inst.cfg b/resources/quality/vzbot/base/vzbot_global_adaptive.inst.cfg index 8ba6ac54491..97148aba4b0 100644 --- a/resources/quality/vzbot/base/vzbot_global_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/vzbot/base/vzbot_global_draft.inst.cfg b/resources/quality/vzbot/base/vzbot_global_draft.inst.cfg index 26b763930a0..d974febf496 100644 --- a/resources/quality/vzbot/base/vzbot_global_draft.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/vzbot/base/vzbot_global_low.inst.cfg b/resources/quality/vzbot/base/vzbot_global_low.inst.cfg index c1ae5ab0d63..81835248fff 100644 --- a/resources/quality/vzbot/base/vzbot_global_low.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/vzbot/base/vzbot_global_standard.inst.cfg b/resources/quality/vzbot/base/vzbot_global_standard.inst.cfg index 9d13b93d59a..7d807d7d087 100644 --- a/resources/quality/vzbot/base/vzbot_global_standard.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/vzbot/base/vzbot_global_super.inst.cfg b/resources/quality/vzbot/base/vzbot_global_super.inst.cfg index cfeeddae385..4c8bc6cfa31 100644 --- a/resources/quality/vzbot/base/vzbot_global_super.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/vzbot/base/vzbot_global_ultra.inst.cfg b/resources/quality/vzbot/base/vzbot_global_ultra.inst.cfg index bd8cee28bc7..90f100d4295 100644 --- a/resources/quality/vzbot/base/vzbot_global_ultra.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Draft.inst.cfg b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Draft.inst.cfg index 60db4d8da27..42f779cf2c7 100644 --- a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Draft.inst.cfg +++ b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Extrudr_GreenTECPro_Black_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Extra_Fine.inst.cfg index 1c2d66e5ace..0a161802d17 100644 --- a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Extrudr_GreenTECPro_Black_175 quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Fine.inst.cfg b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Fine.inst.cfg index 29a2e29e493..c370f585a9e 100644 --- a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Fine.inst.cfg +++ b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Extrudr_GreenTECPro_Black_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Normal.inst.cfg b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Normal.inst.cfg index 9fdab359909..dec810299c8 100644 --- a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Normal.inst.cfg +++ b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Extrudr_GreenTECPro_Black_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Draft.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Draft.inst.cfg index 3c3ad46dd2e..f5d825fb07b 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Draft.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Extra_Fine.inst.cfg index 3cf19e9bb53..e7d32af0447 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Fine.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Fine.inst.cfg index 9fcb579495f..92d33217766 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Fine.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Normal.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Normal.inst.cfg index 6abccb44563..cd66505617d 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Normal.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Coarse.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Coarse.inst.cfg index 8173539ea17..80a3505ce02 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Draft.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Draft.inst.cfg index cebd7bdacb1..47f485baab0 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Draft.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Fine.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Fine.inst.cfg index 83e3b111d5b..b9b4633a4e7 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Fine.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Normal.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Normal.inst.cfg index 907dc2b9cf7..00f715e8496 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Normal.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Draft.inst.cfg index bdf527a4774..5433fee3f01 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Extra_Fine.inst.cfg index 5bddc81ee13..935bb04771f 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Fine.inst.cfg index c906dc8709f..499ca8a49d3 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Normal.inst.cfg index 631cf77259e..cc4726085af 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Draft.inst.cfg index b8142f94b71..4b4a59f4c39 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Extra_Fine.inst.cfg index a9909d525ea..3fca0ffe2c2 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Fine.inst.cfg index 50e65d73a0a..8af0c87fa72 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Normal.inst.cfg index 37e53fb8ee3..d13ecc61394 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Draft.inst.cfg index a61293d3e7b..a52b581ae6b 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Extra_Fine.inst.cfg index 41df2934104..2f3762e422b 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Fine.inst.cfg index c88ec8a8ae4..15198eb8bc9 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Normal.inst.cfg index 6e4fad47327..f8fb28dd1f4 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Draft.inst.cfg index 611863084e3..eee4be2ad98 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Extra_Fine.inst.cfg index db76f97ead4..8fb7cd4f130 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Fine.inst.cfg index 46a410f048f..3cbc4d65506 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Normal.inst.cfg index 24f1bd07b59..d47b0d621b0 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Draft.inst.cfg index 924dd7033b5..d4f84c3497d 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Extra_Fine.inst.cfg index d4178544434..9da7c5afa22 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Fine.inst.cfg index a8b36663f44..498eda6c6f0 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Normal.inst.cfg index 59b47919568..88d4dae71d7 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Draft.inst.cfg index ed173db3908..d98c37c97de 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Extra_Fine.inst.cfg index 19a2740616f..3f4371cdc0d 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Fine.inst.cfg index f6352fc9d3b..56dd8c7c10a 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Normal.inst.cfg index 9e757a0997f..a22c9344b20 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Draft.inst.cfg index 1b7365c7fa0..3504f38cc64 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Extra_Fine.inst.cfg index b2190f031ca..a7f8b8d5a2a 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Fine.inst.cfg index a42f2d10a5d..96c636c4a8e 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Normal.inst.cfg index e774b3c18d0..b3868b1060e 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Draft.inst.cfg index a8accaee834..e5510ab98de 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Extra_Fine.inst.cfg index 91bd443d366..c8c695a1186 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Fine.inst.cfg index 5010b401471..513ed1bbaa4 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Normal.inst.cfg index 47d62dccfec..a25f5ae6ab6 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Draft.inst.cfg index 2a08a6471ba..b230eeb8ec7 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Extra_Fine.inst.cfg index 3c6619eea09..8ca8ed63d7d 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Fine.inst.cfg index f81efbd6c5a..7521a10a831 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Normal.inst.cfg index ee81d48190a..75103814be7 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Coarse.inst.cfg index 830f1d104f8..0be067404a1 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Draft.inst.cfg index b4534aa43d1..e9a5d045c56 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Fine.inst.cfg index 409d2470477..785d08ee2ca 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Normal.inst.cfg index c5aacd1f12c..e8d3699d326 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Coarse.inst.cfg index 8c220bab911..7b42c6fbc74 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Draft.inst.cfg index 583e2f289d3..90596e627b2 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Fine.inst.cfg index 8dde36c3401..34af6eca5b6 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Normal.inst.cfg index 50d0826d110..316dc4eae92 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Coarse.inst.cfg index c02af712212..ac02d341b30 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Draft.inst.cfg index 3defdf6af24..11fabf6a1e8 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Fine.inst.cfg index f92080c1d85..a0aba43e099 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Normal.inst.cfg index 5726f496e8e..72778821cf2 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Coarse.inst.cfg index af4e729c378..bae5ea68579 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Draft.inst.cfg index a35080a7622..be23f5feb5b 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Fine.inst.cfg index 46108d5ffd9..b84c435327b 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Normal.inst.cfg index e75c205ef6d..a9b6f0b08cf 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Coarse.inst.cfg index 1522f67f298..e12e5f79aff 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Draft.inst.cfg index 6c3a0a05184..3d2aa461207 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Fine.inst.cfg index 351c79534ec..6cb80412b61 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Normal.inst.cfg index 6e888de8f83..37b75b7be13 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Coarse.inst.cfg index dad45e01b9c..9fc8c83ffaf 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Draft.inst.cfg index 4507853c6d0..75469d5848d 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Fine.inst.cfg index 5fd038f42bb..bbf29ad1d28 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Normal.inst.cfg index 602877cc276..afbcfa28fe9 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Coarse.inst.cfg index 1413c53fcc6..3a5f26f7396 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Draft.inst.cfg index 53ea9b321eb..574f50beb99 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Fine.inst.cfg index a71118f84c7..abbaa923f43 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Normal.inst.cfg index ea7f24ff14c..1e99dce5910 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Coarse.inst.cfg index ca45d7b2309..bb53a5837c7 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Draft.inst.cfg index b91d19e6488..49646d89f73 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Fine.inst.cfg index 2d74cd443b3..5cc87733b6a 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Normal.inst.cfg index acbb00c60be..59a94add3f6 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Coarse.inst.cfg index 3ff10fc432e..6d7c083a553 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Draft.inst.cfg index c682e158e6a..3fc2eaab341 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Fine.inst.cfg index 0d26fae8f8e..cbdf1352c48 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Normal.inst.cfg index fff16d13ec2..dfb740c32e2 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Coarse.inst.cfg index 033e1863370..f127f9d48ae 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Draft.inst.cfg index dc11c217001..c095cdb9c8c 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Extra_Coarse.inst.cfg index a63d3438b3d..1049791434f 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Normal.inst.cfg index 8073d88a4b0..3789c153c32 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Coarse.inst.cfg index 93da2791495..9bc86cf2cdb 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Draft.inst.cfg index dd90f0f653f..372d21826e6 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Extra_Coarse.inst.cfg index 9e2422757ea..fd5b25d0e6b 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Normal.inst.cfg index ee0a5647326..b3ebc040d69 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Coarse.inst.cfg index 617677c786b..8a856b77e90 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Draft.inst.cfg index 519328a14a4..cb06e795568 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Extra_Coarse.inst.cfg index 07d8ac8f800..b29f952e49a 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Normal.inst.cfg index e27acc9af12..40b97d7bd49 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Coarse.inst.cfg index b87b07168f8..7b2c4a584dc 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Draft.inst.cfg index ce7792946e6..5f9976a518e 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Extra_Coarse.inst.cfg index 152159f5a70..51b90f24962 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Normal.inst.cfg index ddf38e060f9..71c535b8a71 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Coarse.inst.cfg index bd07962ec94..ffbd55c80bc 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Draft.inst.cfg index 804376c3051..22cba0bd811 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Extra_Coarse.inst.cfg index c921034de30..74d3c6af5b6 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Normal.inst.cfg index b0f546a488e..cf6cc5fd79a 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Coarse.inst.cfg index 4b37e8b61fe..6c863df0d1e 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Draft.inst.cfg index c43d8825151..5b16bb04faf 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Extra_Coarse.inst.cfg index 4f33319cafe..6b82c296365 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Normal.inst.cfg index f42ace9ca7a..0905caa1aa8 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Coarse.inst.cfg index 2b3590dca88..0ef7cb58994 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Draft.inst.cfg index e233c8910a7..69b8330c07b 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Extra_Coarse.inst.cfg index b11c3cca6b2..7dc376d99c9 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Normal.inst.cfg index f650fd251c0..4982856b124 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Coarse.inst.cfg index cbe818a971f..f79b1f49fa7 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Draft.inst.cfg index ba96247176f..af316f211c5 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Extra_Coarse.inst.cfg index c36eb39a129..4c217b80030 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Normal.inst.cfg index 0794bce0599..8db55632561 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Coarse.inst.cfg index fb07cb601ad..94c943bc125 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Draft.inst.cfg index aed0f028bab..34e40cde51e 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Extra_Coarse.inst.cfg index fe6e427fd85..ab8b2fba65b 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Normal.inst.cfg index 2b03ccf60f9..8c30df2bfde 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Coarse.inst.cfg index 2e0b53abc2e..ef72c98cc86 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Draft.inst.cfg index a7ea9036056..4d0ea19afd2 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Extra_Coarse.inst.cfg index 0eebd3efd65..d9d0eeb7bd2 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Extra_Fine.inst.cfg index 45d8a6375e6..27af18c4aa5 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Fine.inst.cfg index ddfeba0be4d..2d751b4be99 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Normal.inst.cfg index a7eeb06d72c..9d166c4ca1d 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_coarse.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_coarse.inst.cfg index 6372e7982ee..8b055da1b1d 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_coarse.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_draft.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_draft.inst.cfg index 90995009fca..87ea2bd2df6 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_draft.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_fine.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_fine.inst.cfg index 92a711f355c..f4b70421fd2 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_fine.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_normal.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_normal.inst.cfg index 5d013c8ae7f..962ae53a1a5 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_normal.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_coarse.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_coarse.inst.cfg index ebdc1f974e2..69a13819c31 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_coarse.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_draft.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_draft.inst.cfg index df43e307a21..b49e2f34d98 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_draft.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_fine.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_fine.inst.cfg index 39fe306e40d..a35585cfb1c 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_fine.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_normal.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_normal.inst.cfg index 5cbada15092..eeff179d11c 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_normal.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_coarse.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_coarse.inst.cfg index f2e8aeda464..7b12352a7c6 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_coarse.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_draft.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_draft.inst.cfg index c53ee55e411..89cbbb4fbef 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_draft.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_fine.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_fine.inst.cfg index ebb8cf5bdb9..14025817ded 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_fine.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_normal.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_normal.inst.cfg index cd66844ed0c..5ff20c78efa 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_normal.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_coarse.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_coarse.inst.cfg index 18a61320f8e..7faa4375ae1 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_coarse.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_draft.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_draft.inst.cfg index 595d8147335..8f183630933 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_draft.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_fine.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_fine.inst.cfg index 99f3b15bd9e..ee66705aa20 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_fine.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_normal.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_normal.inst.cfg index 5e3200fcec0..6f83a222002 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_normal.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_coarse.inst.cfg index 8a939f5e3e8..be14abacb15 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_draft.inst.cfg index df0940fd635..f6bb53dabb4 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_fine.inst.cfg index b2a0e360376..ae119642c36 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_normal.inst.cfg index 9dbb188b2dd..cbc5acead1d 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_coarse.inst.cfg index b74aebf3433..a5c2bf5f8b3 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_draft.inst.cfg index b31a658e4e8..0e584bb8bc5 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_fine.inst.cfg index baf32c97c8d..c2006b02523 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_normal.inst.cfg index b9f88da61c1..867ae368699 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_coarse.inst.cfg index 295cf6f81b5..17dfa7acab6 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_draft.inst.cfg index 6c0e8446335..26bce43c538 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_fine.inst.cfg index 36f59295745..ce0b7f24489 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_normal.inst.cfg index 3bf30cac0fc..8a4b3304960 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_coarse.inst.cfg index 529085f7991..9eee8d2cd5e 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_draft.inst.cfg index a4d60e73cab..d82776c5e97 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_fine.inst.cfg index 8f412e9d818..58de7bf0527 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_normal.inst.cfg index dce8e99ed38..c51bafa8042 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_coarse.inst.cfg index 2d983942eb1..8835eacb700 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_draft.inst.cfg index 492088f2a2c..c3d5d45deb2 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_fine.inst.cfg index e4da7beb108..679f33704b2 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_normal.inst.cfg index 4f6491dfbf4..270eb086c3a 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_coarse.inst.cfg index bd4912d5a6f..d57f1a22ab6 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_draft.inst.cfg index aa198f9e35b..45c021ec8eb 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_fine.inst.cfg index 229e9f0e775..9b60b89354a 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_normal.inst.cfg index 9692a06a340..0384c514711 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_coarse.inst.cfg index 395fc53a70c..74641c118f6 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_draft.inst.cfg index 395670e79c9..29a162272ec 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_fine.inst.cfg index 38b0e2e230e..942fcf77b28 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_normal.inst.cfg index 7ba3de4e79c..51b5d8fd6e7 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_coarse.inst.cfg index 9e165cd6500..0a8cef554f9 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_draft.inst.cfg index 2daccac140c..706578940ac 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_fine.inst.cfg index aab14d84440..74c16012537 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_normal.inst.cfg index ac80cd0fcc5..76400c36d65 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_coarse.inst.cfg index d98194e70e5..78c2a6b7846 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_draft.inst.cfg index e4e2f449eaa..77b40d3b1d9 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_fine.inst.cfg index 851b2f3cef1..a3e88b92286 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_normal.inst.cfg index 514d463fdc7..7f6e4ef3aa3 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_coarse.inst.cfg index 4333f73cea8..0196554b9e5 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_draft.inst.cfg index 2444d99971a..0aa156be818 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_fine.inst.cfg index 36c6b782b98..deb85910bfb 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_normal.inst.cfg index 51db9810930..83faffbff35 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_coarse.inst.cfg index 1f6b852c07f..6113f03bbf7 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_draft.inst.cfg index 23ad943a2f2..0f78dffbd31 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_fine.inst.cfg index efda1f0adbe..e8a71e84e4e 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_normal.inst.cfg index 14f03df4fd8..960c9b0482a 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_coarse.inst.cfg index 666051dd420..1a156620c59 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_draft.inst.cfg index 387ca026e3a..5d94712c7ba 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_fine.inst.cfg index e6e6bf29569..2c0fad134f3 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_normal.inst.cfg index fd588fa2744..fbb4f8b7338 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_coarse.inst.cfg index 894afece462..167899a2166 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_draft.inst.cfg index bba2d8f06bd..7b0fc584174 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_fine.inst.cfg index 7485968470a..3f1871d1245 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_normal.inst.cfg index 97a6df75a3f..d2369fb6df3 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_coarse.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_coarse.inst.cfg index 12a816c06ef..e99a362f114 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_draft.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_draft.inst.cfg index 257b2c77464..48190a39c8c 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_fine.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_fine.inst.cfg index 3261a8fb275..158a0afe4df 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_normal.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_normal.inst.cfg index 32df932fb68..809dad450a7 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_coarse.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_coarse.inst.cfg index de70014369e..40be1a66f30 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_draft.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_draft.inst.cfg index ad1a8f44b9a..078db5939d4 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_fine.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_fine.inst.cfg index b78710f8a02..fc620a8ad8b 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_normal.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_normal.inst.cfg index 9f803f3610e..0420440d2d5 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_coarse.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_coarse.inst.cfg index f83b2ebe592..d0510dbbb29 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_draft.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_draft.inst.cfg index 2b7312c8536..3c1dacf0bf9 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_fine.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_fine.inst.cfg index d1902eedc04..6f38cef91da 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_normal.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_normal.inst.cfg index 0c6cfd7268b..754e0c043ff 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_coarse.inst.cfg b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_coarse.inst.cfg index 08db3f2e4e3..baf535b6aab 100644 --- a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_coarse.inst.cfg +++ b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_flexible quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_draft.inst.cfg b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_draft.inst.cfg index c815247dd41..d1ca554b51f 100644 --- a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_draft.inst.cfg +++ b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_flexible quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_fine.inst.cfg b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_fine.inst.cfg index f019192a71e..14cc24c2ac4 100644 --- a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_fine.inst.cfg +++ b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_flexible quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_normal.inst.cfg b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_normal.inst.cfg index 6c509740303..5862641cf96 100644 --- a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_normal.inst.cfg +++ b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_flexible quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_coarse.inst.cfg index e448f131f6e..27089f11349 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_draft.inst.cfg index c169a450adb..6a7add51735 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_fine.inst.cfg index dc575ae9b48..3dfd802dbae 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_normal.inst.cfg index 6a3233b1ea3..af7890163be 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_coarse.inst.cfg index 95232ae85fd..fa3e586ac2f 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_draft.inst.cfg index 23218c0ac00..ae0696ee271 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_fine.inst.cfg index ad8762e6ad7..dc6520596bc 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_normal.inst.cfg index 7ebf1423951..eb2a9cbc5b3 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_coarse.inst.cfg index 0d8d5217d08..945026a4cfe 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_draft.inst.cfg index 185021708b7..667a5c90d37 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_fine.inst.cfg index 8ff7608693e..b074312e873 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_normal.inst.cfg index 6af4cd74838..d6d37c2fc25 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_coarse.inst.cfg index 9dcc94a2841..3bb8528ffbc 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_draft.inst.cfg index 88d373084c6..e771ca6ff20 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_fine.inst.cfg index a74fa56f949..3407585e4c2 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_normal.inst.cfg index cf0b95050f2..0c77e17bb05 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_coarse.inst.cfg index 705878fadc8..5192822dcec 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_draft.inst.cfg index b3020e861e2..c98a39242a8 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_fine.inst.cfg index 592fab50c94..ae56ea638c2 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_normal.inst.cfg index b22706ddd12..aef3cf163b3 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_coarse.inst.cfg index e73335fc95c..0cd062ec0a8 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_draft.inst.cfg index 55d1167d23f..343efe3d126 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_fine.inst.cfg index b92706ae7b9..74131501eaf 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_normal.inst.cfg index cfb3f2ff97a..8e193ffcd20 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_coarse.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_coarse.inst.cfg index 5a53c2a437c..6eb370cdcf2 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_coarse.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_draft.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_draft.inst.cfg index 70ebfad1a21..5b4cede195b 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_draft.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_fine.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_fine.inst.cfg index 3f8ad268048..a79fc05fcde 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_fine.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_normal.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_normal.inst.cfg index 151556a2f4f..ea6ce880d64 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_normal.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_coarse.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_coarse.inst.cfg index 9237e4f137a..1ae2f24a971 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_coarse.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_draft.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_draft.inst.cfg index 0d28ade067e..9743f42e5d5 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_draft.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_fine.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_fine.inst.cfg index 2b9f6f1218c..31f6987cb4d 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_fine.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_normal.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_normal.inst.cfg index 62666f84009..d4ce99974d5 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_normal.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_coarse.inst.cfg b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_coarse.inst.cfg index 7daf31408de..85d0e690243 100644 --- a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pahtcf15 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_draft.inst.cfg b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_draft.inst.cfg index a202067fd07..57fff56e16f 100644 --- a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_draft.inst.cfg +++ b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pahtcf15 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_fine.inst.cfg b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_fine.inst.cfg index c5574e0dfda..79f268fb7dc 100644 --- a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_fine.inst.cfg +++ b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pahtcf15 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_normal.inst.cfg b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_normal.inst.cfg index 7c75c4db5ab..5c091c87034 100644 --- a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_normal.inst.cfg +++ b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pahtcf15 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_coarse.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_coarse.inst.cfg index f012edda146..02eefc3a33a 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_draft.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_draft.inst.cfg index b9f314ac658..834c345fb37 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_draft.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_fine.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_fine.inst.cfg index e8606611d70..e2678f5e212 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_fine.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_normal.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_normal.inst.cfg index b91caf62a49..0843e0b1053 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_normal.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_coarse.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_coarse.inst.cfg index a1c197e007d..0d7abc9a99c 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_draft.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_draft.inst.cfg index a8345d3ea27..300bc57cb52 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_draft.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_fine.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_fine.inst.cfg index 4dfbf5b0a2c..5ecafd0fac2 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_fine.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_normal.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_normal.inst.cfg index da6b3e2bb60..e8a36359333 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_normal.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_coarse.inst.cfg b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_coarse.inst.cfg index e39dea36956..4dd6934bcaf 100644 --- a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petcf15 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_draft.inst.cfg b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_draft.inst.cfg index 28e232b3cc3..5bd32e2d498 100644 --- a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_draft.inst.cfg +++ b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petcf15 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_fine.inst.cfg b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_fine.inst.cfg index ca6ac38c983..540a7bc6058 100644 --- a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_fine.inst.cfg +++ b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petcf15 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_normal.inst.cfg b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_normal.inst.cfg index d86fec1184c..29721774e9d 100644 --- a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_normal.inst.cfg +++ b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petcf15 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_coarse.inst.cfg index f41645ef5aa..8c8107eaa06 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_draft.inst.cfg index 0b62de35122..2e1c873b2a8 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_fine.inst.cfg index 252e0ee2322..e173522f328 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_normal.inst.cfg index f2c540043f6..5a588a8a451 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_coarse.inst.cfg index 8ebdd98ce20..5423fe1023b 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_draft.inst.cfg index 135bb9412dc..0512ed8cb62 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_fine.inst.cfg index 8367001312a..8c494c4f7ad 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_normal.inst.cfg index e79478cef51..f9611a31a44 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_coarse.inst.cfg index f8292483ad4..5c28312b17f 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_draft.inst.cfg index dbc56a9ba18..f640948b9d9 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_fine.inst.cfg index f1db488d9aa..4d981c4d723 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_normal.inst.cfg index d1795c03721..f4843e7b458 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_coarse.inst.cfg index 33e2e70d187..e954e29f544 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_draft.inst.cfg index 06ad2ea0fc8..27897985dd8 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_fine.inst.cfg index d924074ab38..9d0762f8767 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_normal.inst.cfg index 8f7d4487d41..2679df5548e 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_coarse.inst.cfg index c1f6a545603..35d69b02d51 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_draft.inst.cfg index b149a594dd5..79add5b99ca 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_fine.inst.cfg index 526acc21a93..ee06416687f 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_normal.inst.cfg index 11c99afd770..bde5f0bedd5 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_coarse.inst.cfg index e209a4a2fd8..d63aa387421 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_draft.inst.cfg index 7233571ca9c..3d3aed671c8 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_fine.inst.cfg index 2d57b58b467..36a96d351a0 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_normal.inst.cfg index c447696fd26..7f7cf375562 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_coarse.inst.cfg index ceba9259a2d..4bb90e8a88f 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_draft.inst.cfg index f43b8eaca8d..4018aec0543 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_fine.inst.cfg index b08bdcdfe36..31399b5bf9c 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_normal.inst.cfg index c8751ef51e7..ff52f3200b2 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_coarse.inst.cfg index c2768833eab..0421fe33088 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_draft.inst.cfg index 16a49bea43c..3ce44a0a648 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_fine.inst.cfg index 6d5d7763666..1a36437faa8 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_normal.inst.cfg index f0631cd3355..144940c8a7f 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_coarse.inst.cfg index 581d5cc11f0..6292722fa6a 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_draft.inst.cfg index a3c4616ce25..4718b09f2cd 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_fine.inst.cfg index 582f9f24316..4aea2ba9782 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_normal.inst.cfg index 280beaffc58..cc4d4001e0b 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_coarse.inst.cfg index bc55d669bb4..c173ee2e9e1 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_draft.inst.cfg index e785d674d8e..b7acd4e0877 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_fine.inst.cfg index 72faa03585a..7c949cfd451 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_normal.inst.cfg index 503d268491e..18c4be3745d 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_coarse.inst.cfg index d82b7a650be..996379feb9e 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_draft.inst.cfg index f6bb8f9d6ce..ba9991dcfb6 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_fine.inst.cfg index 0dd024cb10e..e90ffd5dfc7 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_normal.inst.cfg index f74653aaa53..be9b7a66360 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_coarse.inst.cfg index 92b3a3b202a..3fa9a52cf2b 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_draft.inst.cfg index b9cd16449dc..3fb1b5e82be 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_fine.inst.cfg index fefdf4b01c5..b4124b7ee3d 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_normal.inst.cfg index c297a7c5b92..6564a1bfc4b 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_coarse.inst.cfg index 562745810b1..6615eb0ef1e 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_draft.inst.cfg index 2f7e3540213..8484320f12a 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_fine.inst.cfg index a2c8f9026e9..b1bb184f241 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_normal.inst.cfg index c3e915b7cf2..ac966a5f21d 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_coarse.inst.cfg index 089bd58712a..0c8078074d4 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_draft.inst.cfg index 4f29f7b89de..ddf88b56c77 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_fine.inst.cfg index 4c7ce054209..a420b198397 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_normal.inst.cfg index 956491ca05b..88a42a943e4 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_coarse.inst.cfg b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_coarse.inst.cfg index effe0ae6cee..0c72737a09e 100644 --- a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_coarse.inst.cfg +++ b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_ppgf30 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_draft.inst.cfg b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_draft.inst.cfg index d376594bf8f..8509d110d2f 100644 --- a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_draft.inst.cfg +++ b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_ppgf30 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_fine.inst.cfg b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_fine.inst.cfg index 9e7c659b9f3..84f2d5f2205 100644 --- a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_fine.inst.cfg +++ b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_ppgf30 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_normal.inst.cfg b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_normal.inst.cfg index 9442f440bb1..e2604f6cd17 100644 --- a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_normal.inst.cfg +++ b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_ppgf30 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_coarse.inst.cfg index b9f7178137d..8163b0f4f01 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_draft.inst.cfg index 5ab51306a3b..2b3a677da08 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_fine.inst.cfg index 24026eda666..2de8dcd257d 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_normal.inst.cfg index fc8c33bcaa2..b92efb4bb4e 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_coarse.inst.cfg index c1e5bc2ab6a..84f2b863ea0 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_draft.inst.cfg index bd11bb9b2f8..7d396bdb4b3 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_fine.inst.cfg index 7522344ea1b..239ce61a853 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_normal.inst.cfg index a5b98f0be7d..bf1e456e9df 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_coarse.inst.cfg index 811f816545b..c05ce1ef16a 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_draft.inst.cfg index b7ca4dad12f..c2412a4b10c 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_fine.inst.cfg index 8ff536484e6..62c827e31f4 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_normal.inst.cfg index 7a087f8de76..920960b1f1c 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_coarse.inst.cfg index c820fb73747..86255b299c0 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_draft.inst.cfg index f67c83b8a16..f699ade12ea 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_fine.inst.cfg index 3d0c91f8d09..c8b24198583 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_normal.inst.cfg index 8129fa14bc6..986f61603c1 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_coarse.inst.cfg index 6d8294f3210..1a55a0d7dc8 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_draft.inst.cfg index 6671af7abbf..72c1d0c0a29 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_fine.inst.cfg index 5faad48deee..2e404b0f081 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_normal.inst.cfg index cb7662e85ba..bb7c76089cd 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_coarse.inst.cfg index 2f374f711c0..9f50854c982 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_draft.inst.cfg index df90cef5e18..5075d97c65c 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_fine.inst.cfg index e16fecd8098..176a28b1882 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_normal.inst.cfg index c301df97ecc..c2dd1c4990b 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_coarse.inst.cfg index 07f2d2e9705..b5144668cbd 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_draft.inst.cfg index d7d418b8864..bb678333dcf 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_fine.inst.cfg index b91c31863a9..ad545491551 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_normal.inst.cfg index b5f25b64381..fb8cba3041d 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_coarse.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_coarse.inst.cfg index 25f0d8bf968..1943eef0f4d 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_draft.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_draft.inst.cfg index f29002d3654..55a39c03a77 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_draft.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_fine.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_fine.inst.cfg index 99d716b04ca..9826104ccb2 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_fine.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_normal.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_normal.inst.cfg index 32603cbb9bc..053d09767e0 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_normal.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_coarse.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_coarse.inst.cfg index 1a842c234c2..c5ada4d5904 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_draft.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_draft.inst.cfg index d5f733f24e7..8bb07d06649 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_draft.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_fine.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_fine.inst.cfg index 81d50301b5b..2a06b48905a 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_fine.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_normal.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_normal.inst.cfg index 48ee7515a69..ff0cb4a7e00 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_normal.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.10_fine.inst.cfg index f10186620cb..1a90f61f465 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.20_normal.inst.cfg index 441f20b96e8..9970928d625 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.30_draft.inst.cfg index 8aed00c1083..a6822bb56a8 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.40_coarse.inst.cfg index a6cce09509c..343d413403b 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.10_fine.inst.cfg index 627a5831632..0232e0222ff 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.20_normal.inst.cfg index adf3edf197b..05d60959ad9 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.30_draft.inst.cfg index 73096761d49..6cddf912cef 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.40_coarse.inst.cfg index 6a59c3f495e..9036f083501 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.10_fine.inst.cfg index 2ab9c6dd3c1..72b2ac34b56 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.20_normal.inst.cfg index 125dbe516e2..9c6e1ca45b3 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.30_draft.inst.cfg index dceb31ce0b3..b2fd3b1fb6d 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.40_coarse.inst.cfg index 948a405306a..1d6b2ff0d1d 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.10_fine.inst.cfg index b79a41ac4e2..a372b5d37a0 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.20_normal.inst.cfg index 13760e7dee0..a2cf5f780b0 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.30_draft.inst.cfg index e13b324c140..77a9bcf4475 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.40_coarse.inst.cfg index 6d9434d0c8a..b760682e22d 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.10_fine.inst.cfg index 7f7d839e97b..958918c010f 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.20_normal.inst.cfg index 031ba33f7fb..40c39e74601 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.30_draft.inst.cfg index 44fc013460c..5f01b400ceb 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.40_coarse.inst.cfg index 468c89d14a7..7918d012470 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.10_fine.inst.cfg index 4c17bca4efc..a28c2a05e2d 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.20_normal.inst.cfg index 70688d38bfe..6438abd22c8 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.30_draft.inst.cfg index d491bac5ea1..481574e4099 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.40_coarse.inst.cfg index a9131265b9c..e0b0d18bb50 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.10_fine.inst.cfg index 266cdf8bcd5..30a5507237c 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.20_normal.inst.cfg index 4ec758bc56a..e4ba451bc10 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.30_draft.inst.cfg index 7dd545c180a..65139b39932 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.40_coarse.inst.cfg index e9f9c5548f7..b0997befe9a 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.05.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.05.inst.cfg index 29c4883c8ac..25e85a7c508 100644 --- a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_005 -setting_version = 22 +setting_version = 23 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.10.inst.cfg index 02835da0227..d8bb913ee60 100644 --- a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.15.inst.cfg index adcfdf8083c..9616f723f6d 100644 --- a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.05.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.05.inst.cfg index 228205bb66c..8fb86d315a9 100644 --- a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_005 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.10.inst.cfg index 4a1e655226f..05bd6ed4e72 100644 --- a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.15.inst.cfg index 2cae8e47a7c..4bd1827021f 100644 --- a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.20.inst.cfg index 2bffc1cdbb8..7e7466769e1 100644 --- a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.10.inst.cfg index be2ffd421a4..9e1db971ffb 100644 --- a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.15.inst.cfg index 102049778bd..282894c4390 100644 --- a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.20.inst.cfg index 046e1c87bd8..a7e30338042 100644 --- a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.25.inst.cfg index b88d47fa6f6..5fbe8655d33 100644 --- a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.10.inst.cfg index 0bd539c4f70..e7ce0940657 100644 --- a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.15.inst.cfg index cd9afd7a4ba..3fa7f903764 100644 --- a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.20.inst.cfg index 080d63fea0e..df6be877268 100644 --- a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.25.inst.cfg index a32f9f1f1d8..6c2f48d4aa5 100644 --- a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.10.inst.cfg index 0635795d955..409463370dd 100644 --- a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.15.inst.cfg index 3defa66ad55..775fb209f37 100644 --- a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.20.inst.cfg index 1b906624ee2..1eb05bd4823 100644 --- a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.25.inst.cfg index 12a8ec6ba75..186e4ae790d 100644 --- a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.30.inst.cfg index ee41b6498b5..baf5abbb096 100644 --- a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.10.inst.cfg index 555fa476b02..ad5f65c5d10 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.15.inst.cfg index c2d9bef5580..6b1e4390290 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.20.inst.cfg index 11c14792d09..fae81972e9b 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.25.inst.cfg index b152a1f9056..3d842adac0f 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.30.inst.cfg index 70326714ba9..bba35f5e6c0 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.35.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.35.inst.cfg index d02d437029a..e9aafef0b32 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.15.inst.cfg index 1c8ac217458..9e8ac0fe073 100644 --- a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.20.inst.cfg index e0f90176307..e7aa39026ef 100644 --- a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.25.inst.cfg index 2d789cb1a83..4a119a3b786 100644 --- a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.30.inst.cfg index e6ae6f2012d..8c7652f358c 100644 --- a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.35.inst.cfg index aa79fa3cd13..9a2b2bbb458 100644 --- a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.15.inst.cfg index f1c171d147a..3cea25782b7 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.20.inst.cfg index 1183f562580..fb28d98eb8b 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.25.inst.cfg index cd8227a7948..23178b5adf2 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.30.inst.cfg index b936a23ec23..59622fc3190 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.35.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.35.inst.cfg index 4f4fd90dea2..d59245ae3bf 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.40.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.40.inst.cfg index ab4c21d9eb6..a97a6833bc2 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_040 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.20.inst.cfg index 51fbac0be08..b9e10a6bf02 100644 --- a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.25.inst.cfg index f02f6d1a3d4..9e29238068e 100644 --- a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.30.inst.cfg index 575dd45b334..e8ef2edd8f1 100644 --- a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.35.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.35.inst.cfg index 42ca6e96563..1b10439afc5 100644 --- a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.40.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.40.inst.cfg index 7cc7a48912e..67b6a26a728 100644 --- a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_040 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.25.inst.cfg index a6b5631adba..f6405d5ceca 100644 --- a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.30.inst.cfg index 645c565be07..228ddddc13e 100644 --- a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.35.inst.cfg b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.35.inst.cfg index 77df9c65ce0..725e885a1e5 100644 --- a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.40.inst.cfg b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.40.inst.cfg index 1589129fecc..42a8cf6770c 100644 --- a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_040 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.05.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.05.inst.cfg index 019344886e9..3a8189a2427 100644 --- a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_005 -setting_version = 22 +setting_version = 23 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.10.inst.cfg index fc53c3f830e..96f8ac2ba8b 100644 --- a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.15.inst.cfg index 208d90d9802..1c522258798 100644 --- a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.05.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.05.inst.cfg index be84b22ab3c..42d6059b2b6 100644 --- a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_005 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.10.inst.cfg index 676f4d3a5a8..0f300418d49 100644 --- a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.15.inst.cfg index 8b43a0dfc89..0841a4e683f 100644 --- a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.20.inst.cfg index c6e8abbac8f..d6293b8dd65 100644 --- a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.10.inst.cfg index 9ad587cb8b6..3cae06a9124 100644 --- a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.15.inst.cfg index 2416a15f1a8..85515279fa6 100644 --- a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.20.inst.cfg index bf8f1edcfb5..dc76ed4260d 100644 --- a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.25.inst.cfg index c53303a9435..2f93ba6669d 100644 --- a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.10.inst.cfg index 97f46add803..d566aa424ae 100644 --- a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.15.inst.cfg index e955f348c39..5799506d1ef 100644 --- a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.20.inst.cfg index 6636cc5df43..0c29bd477b9 100644 --- a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.25.inst.cfg index 80a411f4ee1..bb4cb5e5318 100644 --- a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.10.inst.cfg index 268a3b5fded..4f7b41945e8 100644 --- a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.15.inst.cfg index 5fc2fefe608..abaa1eedb66 100644 --- a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.20.inst.cfg index 1b025eff1b9..992234ba25e 100644 --- a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.25.inst.cfg index 3a1099913dd..73e2a07a8f6 100644 --- a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.30.inst.cfg index ce35c74a9e2..c00e9ecb00c 100644 --- a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.10.inst.cfg index b41a1c2d779..101fe44c823 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.15.inst.cfg index 967ca447d2b..6b084130dbb 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.20.inst.cfg index fd6749a78a0..948eefca176 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.25.inst.cfg index 1f93f389717..40dde2cf312 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.30.inst.cfg index f0f47461578..4090f8f855d 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.35.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.35.inst.cfg index 2512eda3372..5d6045a8e8d 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.15.inst.cfg index f129210b398..7ecdefdfe16 100644 --- a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.20.inst.cfg index 0d28659b59f..149e4d4109e 100644 --- a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.25.inst.cfg index 93bd9380386..da20e0651c6 100644 --- a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.30.inst.cfg index a4986efd93a..79a5566f672 100644 --- a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.35.inst.cfg index 56150eb5934..2726c46ff6e 100644 --- a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.15.inst.cfg index dcd11674bb4..ab747e927ca 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.20.inst.cfg index a287a857eb4..c85a32723d6 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.25.inst.cfg index c2e5f1111ae..dd474c0aaca 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.30.inst.cfg index cbd29ceefd0..83cd051b097 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.35.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.35.inst.cfg index 65329a712df..ab9d4ebe1ca 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.40.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.40.inst.cfg index fe790d3b0b0..9ad7853cdc4 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_040 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.20.inst.cfg index 2fa55f29474..724a51b8d85 100644 --- a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.25.inst.cfg index 1487ce9dc16..3c4d788df8f 100644 --- a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.30.inst.cfg index 466720c7492..5644483fde1 100644 --- a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.35.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.35.inst.cfg index 1258357326d..57d99f35de3 100644 --- a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.40.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.40.inst.cfg index 92280179de2..e75f3c35b04 100644 --- a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_040 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.25.inst.cfg index 1e4765a8690..368647795b5 100644 --- a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.30.inst.cfg index 8035afca89a..dd82a4775b2 100644 --- a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.35.inst.cfg b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.35.inst.cfg index 8d90e28f217..d7d4fbe412f 100644 --- a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.40.inst.cfg b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.40.inst.cfg index ff1d103b51f..91033d2bf51 100644 --- a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_040 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.05.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.05.inst.cfg index 7039988817c..f01da6ca32c 100644 --- a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_005 -setting_version = 22 +setting_version = 23 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.10.inst.cfg index 44df8539bd3..4eb395fb9a8 100644 --- a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.15.inst.cfg index 4b1036b2388..6f88469db6d 100644 --- a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.05.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.05.inst.cfg index 092f9664c6c..ba7ecfa53c3 100644 --- a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_005 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.10.inst.cfg index 18aec55b975..f6aa3822cad 100644 --- a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.15.inst.cfg index ff75c4473e4..195a34ba439 100644 --- a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.20.inst.cfg index ebd407c71a0..2c438ce53c1 100644 --- a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.10.inst.cfg index de44e9432a0..d343990b9d4 100644 --- a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.15.inst.cfg index 104ad9bb793..5b49c34064c 100644 --- a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.20.inst.cfg index 6a65a21a3d3..e4f58831b6e 100644 --- a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.25.inst.cfg index b1e69200486..3122c05e65a 100644 --- a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.10.inst.cfg index 72aef2b2de2..fc174af3706 100644 --- a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.15.inst.cfg index 61a004c456e..33df915b4c9 100644 --- a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.20.inst.cfg index 7d81acca8ac..048565919e8 100644 --- a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.25.inst.cfg index 56c16236251..d08823a8091 100644 --- a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.10.inst.cfg index 27d7f6a72d6..afaf24bd2aa 100644 --- a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.15.inst.cfg index 1a4390c9b00..cb71636a843 100644 --- a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.20.inst.cfg index d168ee10216..14c9525787c 100644 --- a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.25.inst.cfg index d98250ffef9..38c899216fb 100644 --- a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.30.inst.cfg index b84b2247ea0..caddf1980aa 100644 --- a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.10.inst.cfg index e0183f4ac68..610a8011d81 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.15.inst.cfg index da91e51addc..ea4244d4900 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.20.inst.cfg index 32c00925934..b2adf228fbc 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.25.inst.cfg index e1a05305d59..ee133982c27 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.30.inst.cfg index cb2868ecb40..0ac2b0afd17 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.35.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.35.inst.cfg index 7ec72a8a802..75132444978 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.15.inst.cfg index 646656843df..ac57d8b0741 100644 --- a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.20.inst.cfg index 4d236b723bc..5f718f55f1c 100644 --- a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.25.inst.cfg index a75d5f66532..8ac9a8b3439 100644 --- a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.30.inst.cfg index 61aa9b3f0a1..5f5b9fd44e4 100644 --- a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.35.inst.cfg index c3e5963988b..60368382822 100644 --- a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.15.inst.cfg index 4d58f8de3ce..9e7ca6b7fee 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.20.inst.cfg index a80320fe868..7f1d7584729 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.25.inst.cfg index 8bc55ffebc6..78b351455e1 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.30.inst.cfg index 47460c884e8..2dcc08eaaf1 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.35.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.35.inst.cfg index a940ece953a..c5c89b9df0c 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.40.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.40.inst.cfg index 09bfdb8cdc9..556df5c158d 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_040 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.20.inst.cfg index 12238edb52e..98284b527ad 100644 --- a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.25.inst.cfg index 8f8054ea990..d3304afba1c 100644 --- a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.30.inst.cfg index 3c4151c237a..aec24595d48 100644 --- a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.35.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.35.inst.cfg index f7d1cb13d09..e8ab9c5148f 100644 --- a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.40.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.40.inst.cfg index e4c48cbd471..4e99df07865 100644 --- a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_040 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.25.inst.cfg index e0aa85b29c6..88000bd7fbc 100644 --- a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.30.inst.cfg index 830845db85f..b30b616a7c5 100644 --- a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.35.inst.cfg b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.35.inst.cfg index d166b3683d9..1d2bb106127 100644 --- a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.40.inst.cfg b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.40.inst.cfg index db41444bedd..e3c4c6ed7b4 100644 --- a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_040 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/zav_layer_0.05.inst.cfg b/resources/quality/zav_base/zav_layer_0.05.inst.cfg index bfe990a2613..20bdc019502 100644 --- a/resources/quality/zav_base/zav_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_005 -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/zav_base/zav_layer_0.10.inst.cfg b/resources/quality/zav_base/zav_layer_0.10.inst.cfg index 1d472b6a7cb..b3a6325f861 100644 --- a/resources/quality/zav_base/zav_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/zav_base/zav_layer_0.15.inst.cfg b/resources/quality/zav_base/zav_layer_0.15.inst.cfg index 1e4f18a996a..d5c16701a22 100644 --- a/resources/quality/zav_base/zav_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/zav_base/zav_layer_0.20.inst.cfg b/resources/quality/zav_base/zav_layer_0.20.inst.cfg index b576e281787..bf855f6fe7b 100644 --- a/resources/quality/zav_base/zav_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/zav_base/zav_layer_0.25.inst.cfg b/resources/quality/zav_base/zav_layer_0.25.inst.cfg index a7069d1409e..8cd48165301 100644 --- a/resources/quality/zav_base/zav_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/zav_base/zav_layer_0.30.inst.cfg b/resources/quality/zav_base/zav_layer_0.30.inst.cfg index c575a0e4d21..9121f834145 100644 --- a/resources/quality/zav_base/zav_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality weight = -6 diff --git a/resources/quality/zav_base/zav_layer_0.35.inst.cfg b/resources/quality/zav_base/zav_layer_0.35.inst.cfg index 1b0e10edcdc..c3e37d97d94 100644 --- a/resources/quality/zav_base/zav_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality weight = -7 diff --git a/resources/quality/zav_base/zav_layer_0.40.inst.cfg b/resources/quality/zav_base/zav_layer_0.40.inst.cfg index 1587fe0f252..bbb88a8e865 100644 --- a/resources/quality/zav_base/zav_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_040 -setting_version = 22 +setting_version = 23 type = quality weight = -8 diff --git a/resources/quality/zyyx/zyyx_agile_global_fast.inst.cfg b/resources/quality/zyyx/zyyx_agile_global_fast.inst.cfg index 26c80e6a84b..8532b1d9cb8 100644 --- a/resources/quality/zyyx/zyyx_agile_global_fast.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_global_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_global_fine.inst.cfg b/resources/quality/zyyx/zyyx_agile_global_fine.inst.cfg index df7928149f2..5358ee99acd 100644 --- a/resources/quality/zyyx/zyyx_agile_global_fine.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_global_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_global_normal.inst.cfg b/resources/quality/zyyx/zyyx_agile_global_normal.inst.cfg index afa1010fa0c..2356a128b0e 100644 --- a/resources/quality/zyyx/zyyx_agile_global_normal.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_global_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/zyyx/zyyx_agile_pro_flex_fast.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_flex_fast.inst.cfg index 6a09f183c32..b18d8a67299 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_flex_fast.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_flex_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_pro_flex_fine.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_flex_fine.inst.cfg index 35531d33bc5..920c92633d6 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_flex_fine.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_flex_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_pro_flex_normal.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_flex_normal.inst.cfg index ed44af21e2c..e893ca4af11 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_flex_normal.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_flex_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/zyyx/zyyx_agile_pro_pla_fast.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_pla_fast.inst.cfg index a0e76d45cdd..3b3ed243764 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_pla_fast.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_pro_pla_fine.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_pla_fine.inst.cfg index a97fec7061b..347e3ccd74e 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_pla_fine.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_pro_pla_normal.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_pla_normal.inst.cfg index ed4a9057839..9af81dc5206 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_pla_normal.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/variants/arjun/arjun300_0.2.inst.cfg b/resources/variants/arjun/arjun300_0.2.inst.cfg index 577c9cea82f..93a9cda252d 100644 --- a/resources/variants/arjun/arjun300_0.2.inst.cfg +++ b/resources/variants/arjun/arjun300_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_0.3.inst.cfg b/resources/variants/arjun/arjun300_0.3.inst.cfg index 23e5d5d3b9e..6680413525b 100644 --- a/resources/variants/arjun/arjun300_0.3.inst.cfg +++ b/resources/variants/arjun/arjun300_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_0.4.inst.cfg b/resources/variants/arjun/arjun300_0.4.inst.cfg index 4b966b4b154..f0e78bd67ba 100644 --- a/resources/variants/arjun/arjun300_0.4.inst.cfg +++ b/resources/variants/arjun/arjun300_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_0.5.inst.cfg b/resources/variants/arjun/arjun300_0.5.inst.cfg index 279755a8e24..f5287a28485 100644 --- a/resources/variants/arjun/arjun300_0.5.inst.cfg +++ b/resources/variants/arjun/arjun300_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_0.6.inst.cfg b/resources/variants/arjun/arjun300_0.6.inst.cfg index 79ccd382864..acfb70d4265 100644 --- a/resources/variants/arjun/arjun300_0.6.inst.cfg +++ b/resources/variants/arjun/arjun300_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_0.8.inst.cfg b/resources/variants/arjun/arjun300_0.8.inst.cfg index c0be27c6718..081b1fe6136 100644 --- a/resources/variants/arjun/arjun300_0.8.inst.cfg +++ b/resources/variants/arjun/arjun300_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.2.inst.cfg b/resources/variants/arjun/arjun300_dm_0.2.inst.cfg index 441881b7b27..c09ec180e8d 100644 --- a/resources/variants/arjun/arjun300_dm_0.2.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.3.inst.cfg b/resources/variants/arjun/arjun300_dm_0.3.inst.cfg index 38737edbd73..bf777b0e823 100644 --- a/resources/variants/arjun/arjun300_dm_0.3.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.4.inst.cfg b/resources/variants/arjun/arjun300_dm_0.4.inst.cfg index ef5cf7b7f5d..0c83b6b21c0 100644 --- a/resources/variants/arjun/arjun300_dm_0.4.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.5.inst.cfg b/resources/variants/arjun/arjun300_dm_0.5.inst.cfg index 6e6f03f9231..a5fa9703087 100644 --- a/resources/variants/arjun/arjun300_dm_0.5.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.6.inst.cfg b/resources/variants/arjun/arjun300_dm_0.6.inst.cfg index 0fe27b5fcd3..23019db4c2b 100644 --- a/resources/variants/arjun/arjun300_dm_0.6.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.8.inst.cfg b/resources/variants/arjun/arjun300_dm_0.8.inst.cfg index 5700539ff40..0a44cd4a89e 100644 --- a/resources/variants/arjun/arjun300_dm_0.8.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.2.inst.cfg b/resources/variants/arjun/arjun300_mm_0.2.inst.cfg index bbdf6bc7f3a..ab3c18911b6 100644 --- a/resources/variants/arjun/arjun300_mm_0.2.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.3.inst.cfg b/resources/variants/arjun/arjun300_mm_0.3.inst.cfg index 3d2e71f3ef7..29999d094af 100644 --- a/resources/variants/arjun/arjun300_mm_0.3.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.4.inst.cfg b/resources/variants/arjun/arjun300_mm_0.4.inst.cfg index 155231c20ff..bc6a26bbae7 100644 --- a/resources/variants/arjun/arjun300_mm_0.4.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.5.inst.cfg b/resources/variants/arjun/arjun300_mm_0.5.inst.cfg index 1ae108dd585..2cb3776d91f 100644 --- a/resources/variants/arjun/arjun300_mm_0.5.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.6.inst.cfg b/resources/variants/arjun/arjun300_mm_0.6.inst.cfg index 5716d2037fd..64193bc3338 100644 --- a/resources/variants/arjun/arjun300_mm_0.6.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.8.inst.cfg b/resources/variants/arjun/arjun300_mm_0.8.inst.cfg index 7274d191a70..a00eb4737d1 100644 --- a/resources/variants/arjun/arjun300_mm_0.8.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_pva_0.2.inst.cfg b/resources/variants/arjun/arjun300_pva_0.2.inst.cfg index 065fecd92b7..af032b8d320 100644 --- a/resources/variants/arjun/arjun300_pva_0.2.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_pva_0.3.inst.cfg b/resources/variants/arjun/arjun300_pva_0.3.inst.cfg index cef64896b1d..94679d03104 100644 --- a/resources/variants/arjun/arjun300_pva_0.3.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_pva_0.4.inst.cfg b/resources/variants/arjun/arjun300_pva_0.4.inst.cfg index 273bab3848b..c4e63bff057 100644 --- a/resources/variants/arjun/arjun300_pva_0.4.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_pva_0.5.inst.cfg b/resources/variants/arjun/arjun300_pva_0.5.inst.cfg index 4ac74b10b05..9647cc0ddf8 100644 --- a/resources/variants/arjun/arjun300_pva_0.5.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_pva_0.6.inst.cfg b/resources/variants/arjun/arjun300_pva_0.6.inst.cfg index 9522f1a103a..6b8ff4aee4a 100644 --- a/resources/variants/arjun/arjun300_pva_0.6.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_pva_0.8.inst.cfg b/resources/variants/arjun/arjun300_pva_0.8.inst.cfg index 1e47424034d..75df806b085 100644 --- a/resources/variants/arjun/arjun300_pva_0.8.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_0.2.inst.cfg b/resources/variants/arjun/arjunpro300_0.2.inst.cfg index f5d15066100..810c6887b14 100644 --- a/resources/variants/arjun/arjunpro300_0.2.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_0.3.inst.cfg b/resources/variants/arjun/arjunpro300_0.3.inst.cfg index ad2c0ad0c70..36a3c1bab63 100644 --- a/resources/variants/arjun/arjunpro300_0.3.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_0.4.inst.cfg b/resources/variants/arjun/arjunpro300_0.4.inst.cfg index ace0f0bb40f..75a58cd9783 100644 --- a/resources/variants/arjun/arjunpro300_0.4.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_0.5.inst.cfg b/resources/variants/arjun/arjunpro300_0.5.inst.cfg index 085a1d5ea2c..19c08457c57 100644 --- a/resources/variants/arjun/arjunpro300_0.5.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_0.6.inst.cfg b/resources/variants/arjun/arjunpro300_0.6.inst.cfg index 2976b3a7b09..8d4d1d914ae 100644 --- a/resources/variants/arjun/arjunpro300_0.6.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_0.8.inst.cfg b/resources/variants/arjun/arjunpro300_0.8.inst.cfg index bee58c2f5f6..52f028cba0d 100644 --- a/resources/variants/arjun/arjunpro300_0.8.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.2.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.2.inst.cfg index 091ad83670a..4373356eeae 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.2.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.3.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.3.inst.cfg index b6f9eb65221..8f78856b630 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.3.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.4.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.4.inst.cfg index c60c55ad05f..00467ec7377 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.4.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.5.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.5.inst.cfg index 0ad2553b8e0..c4860fbcc9f 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.5.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.6.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.6.inst.cfg index 581f430e03f..45c2c5392ca 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.6.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.8.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.8.inst.cfg index 7bbe6039693..c396dd139ce 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.8.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.2.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.2.inst.cfg index 45a05c0eea6..cc3d0e8c52b 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.2.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.3.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.3.inst.cfg index 4475cdcded2..9ece24fc84b 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.3.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.4.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.4.inst.cfg index 02c50dfac70..2489d0d4fce 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.4.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.5.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.5.inst.cfg index 07443b9d269..c8864fbb178 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.5.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.6.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.6.inst.cfg index b0ed67209c4..bf2019c7a2d 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.6.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.8.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.8.inst.cfg index 64733eeff1d..13ed3b65e75 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.8.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_pva_0.2.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.2.inst.cfg index 3fc340152c1..cc0c010ce2f 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.2.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_pva_0.3.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.3.inst.cfg index 8ae2ffb70ae..9204d755cc6 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.3.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_pva_0.4.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.4.inst.cfg index b444d14925d..2b36ddec9c1 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.4.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_pva_0.5.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.5.inst.cfg index e78ca2f27aa..167eaaf99d5 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.5.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_pva_0.6.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.6.inst.cfg index d6a3770cd90..4cf68ad45a7 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.6.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_pva_0.8.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.8.inst.cfg index c19c8ca79ae..cb05da3c8ab 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.8.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_base_0.2.inst.cfg b/resources/variants/artillery/artillery_base_0.2.inst.cfg index f2ff1eecce2..4e78b919d91 100644 --- a/resources/variants/artillery/artillery_base_0.2.inst.cfg +++ b/resources/variants/artillery/artillery_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_base_0.3.inst.cfg b/resources/variants/artillery/artillery_base_0.3.inst.cfg index 1c2e7e39b10..3b1fdb4c30e 100644 --- a/resources/variants/artillery/artillery_base_0.3.inst.cfg +++ b/resources/variants/artillery/artillery_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_base_0.4.inst.cfg b/resources/variants/artillery/artillery_base_0.4.inst.cfg index ced36c984c0..d64f66e1107 100644 --- a/resources/variants/artillery/artillery_base_0.4.inst.cfg +++ b/resources/variants/artillery/artillery_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_base_0.6.inst.cfg b/resources/variants/artillery/artillery_base_0.6.inst.cfg index 8a5d140461f..89753a63428 100644 --- a/resources/variants/artillery/artillery_base_0.6.inst.cfg +++ b/resources/variants/artillery/artillery_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_base_0.8.inst.cfg b/resources/variants/artillery/artillery_base_0.8.inst.cfg index f2b8936aa6e..0c217a6d955 100644 --- a/resources/variants/artillery/artillery_base_0.8.inst.cfg +++ b/resources/variants/artillery/artillery_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_base_1.0.inst.cfg b/resources/variants/artillery/artillery_base_1.0.inst.cfg index 8aef4b39198..d484d543476 100644 --- a/resources/variants/artillery/artillery_base_1.0.inst.cfg +++ b/resources/variants/artillery/artillery_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.2.inst.cfg b/resources/variants/artillery/artillery_genius_0.2.inst.cfg index 81f21a98033..97e014d9df7 100644 --- a/resources/variants/artillery/artillery_genius_0.2.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.3.inst.cfg b/resources/variants/artillery/artillery_genius_0.3.inst.cfg index aeee90957ae..d2debe768f3 100644 --- a/resources/variants/artillery/artillery_genius_0.3.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.4.inst.cfg b/resources/variants/artillery/artillery_genius_0.4.inst.cfg index 9ae2dcd26cb..ad3ec300adc 100644 --- a/resources/variants/artillery/artillery_genius_0.4.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.5.inst.cfg b/resources/variants/artillery/artillery_genius_0.5.inst.cfg index 1ceec2ae13c..048d51b35bf 100644 --- a/resources/variants/artillery/artillery_genius_0.5.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.6.inst.cfg b/resources/variants/artillery/artillery_genius_0.6.inst.cfg index ca4f68f56d7..8206e862e98 100644 --- a/resources/variants/artillery/artillery_genius_0.6.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.8.inst.cfg b/resources/variants/artillery/artillery_genius_0.8.inst.cfg index a25fe2ead9f..d5b9ba26fe2 100644 --- a/resources/variants/artillery/artillery_genius_0.8.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_1.0.inst.cfg b/resources/variants/artillery/artillery_genius_1.0.inst.cfg index 9fe74fa826d..5bd5ee157c1 100644 --- a/resources/variants/artillery/artillery_genius_1.0.inst.cfg +++ b/resources/variants/artillery/artillery_genius_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.2.inst.cfg b/resources/variants/artillery/artillery_hornet_0.2.inst.cfg index 6d28800ee59..b489bb232fd 100644 --- a/resources/variants/artillery/artillery_hornet_0.2.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.3.inst.cfg b/resources/variants/artillery/artillery_hornet_0.3.inst.cfg index c57bd0ff2c5..1b2d03d4460 100644 --- a/resources/variants/artillery/artillery_hornet_0.3.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.4.inst.cfg b/resources/variants/artillery/artillery_hornet_0.4.inst.cfg index b9dc76e966f..15601bce9fb 100644 --- a/resources/variants/artillery/artillery_hornet_0.4.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.5.inst.cfg b/resources/variants/artillery/artillery_hornet_0.5.inst.cfg index 51ce6bc2bdf..625732f8be5 100644 --- a/resources/variants/artillery/artillery_hornet_0.5.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.6.inst.cfg b/resources/variants/artillery/artillery_hornet_0.6.inst.cfg index 690360bf154..ee5b4d5b73b 100644 --- a/resources/variants/artillery/artillery_hornet_0.6.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.8.inst.cfg b/resources/variants/artillery/artillery_hornet_0.8.inst.cfg index 14de186199c..ad3c82bc2b6 100644 --- a/resources/variants/artillery/artillery_hornet_0.8.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_1.0.inst.cfg b/resources/variants/artillery/artillery_hornet_1.0.inst.cfg index 4ca3b07d682..c3b43f462a6 100644 --- a/resources/variants/artillery/artillery_hornet_1.0.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_0.2.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_0.2.inst.cfg index 1c1d017ca49..b7cedae9830 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_0.2.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_0.3.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_0.3.inst.cfg index a6ac9c3a725..0b0b9c52d48 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_0.3.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_0.4.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_0.4.inst.cfg index 3dbeb3e6125..ca7d41cc6a7 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_0.4.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_0.6.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_0.6.inst.cfg index e0baaf8ff8d..344852dbe65 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_0.6.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_0.8.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_0.8.inst.cfg index 1191969b3fb..2796719d49e 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_0.8.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_1.0.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_1.0.inst.cfg index 9983a827213..f18dc59570e 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_1.0.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_asterion_ht_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_asterion_ht_v6_0.40.inst.cfg index bff78347597..f5ded16281e 100644 --- a/resources/variants/atmat/atmat_asterion_ht_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_asterion_ht_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_asterion_ht_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_asterion_ht_v6_0.80.inst.cfg index 9a2eb1303af..efc2f441959 100644 --- a/resources/variants/atmat/atmat_asterion_ht_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_asterion_ht_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_asterion_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_asterion_v6_0.40.inst.cfg index 43ffb126266..2d98543eb4b 100644 --- a/resources/variants/atmat/atmat_asterion_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_asterion_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_asterion_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_asterion_v6_0.80.inst.cfg index ecdd2feef8a..88049192882 100644 --- a/resources/variants/atmat/atmat_asterion_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_asterion_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_galaxy_500_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_galaxy_500_v6_0.40.inst.cfg index e3df8ef738c..4c4e32aea84 100644 --- a/resources/variants/atmat/atmat_galaxy_500_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_galaxy_500_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_galaxy_500_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_galaxy_500_v6_0.80.inst.cfg index 359c455dd5a..0c40d52a3fc 100644 --- a/resources/variants/atmat/atmat_galaxy_500_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_galaxy_500_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_galaxy_600_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_galaxy_600_v6_0.40.inst.cfg index 3ff08a04866..a5f670c7d95 100644 --- a/resources/variants/atmat/atmat_galaxy_600_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_galaxy_600_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_galaxy_600_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_galaxy_600_v6_0.80.inst.cfg index d0265cec285..3f8339500ad 100644 --- a/resources/variants/atmat/atmat_galaxy_600_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_galaxy_600_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.40.inst.cfg index 828e64805be..667962e5de1 100644 --- a/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.80.inst.cfg index 775ccd53738..69bb3f9c70f 100644 --- a/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.40.inst.cfg index 25f75703aea..f8cb3c1f844 100644 --- a/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.80.inst.cfg index e3df3728585..1d319e7f030 100644 --- a/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.40.inst.cfg index a757ec6ad18..c70d0c1ecbd 100644 --- a/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.80.inst.cfg index 3c8dedb3a3a..38174decad2 100644 --- a/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.40.inst.cfg index 7a2891e9ce8..6725cedd8ab 100644 --- a/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.80.inst.cfg index b4e33629dd5..4ea72f75dbc 100644 --- a/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.40.inst.cfg index d71af8d02a0..b28e7ddfc01 100644 --- a/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.80.inst.cfg index e1e1012e7f5..27678a3b2ed 100644 --- a/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.40.inst.cfg index 80706e803d4..901d036966b 100644 --- a/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.80.inst.cfg index 533e8e0ed83..386d623a52c 100644 --- a/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xl_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_xl_v6_0.40.inst.cfg index 86ff65c5335..06c58bb8836 100644 --- a/resources/variants/atmat/atmat_signal_xl_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xl_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xl_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_xl_v6_0.80.inst.cfg index 3f8f603c374..dfeba978deb 100644 --- a/resources/variants/atmat/atmat_signal_xl_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xl_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xxl_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_xxl_v6_0.40.inst.cfg index 461ff2a018e..dfac869cec9 100644 --- a/resources/variants/atmat/atmat_signal_xxl_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xxl_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xxl_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_xxl_v6_0.80.inst.cfg index 186e18b8816..8aae3a6eb62 100644 --- a/resources/variants/atmat/atmat_signal_xxl_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xxl_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xxxl_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_xxxl_v6_0.40.inst.cfg index 3261fd1b4e0..6558650b251 100644 --- a/resources/variants/atmat/atmat_signal_xxxl_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xxxl_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xxxl_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_xxxl_v6_0.80.inst.cfg index 2b60dace640..4a1f710176a 100644 --- a/resources/variants/atmat/atmat_signal_xxxl_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xxxl_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_all_metal_brass_0.2.inst.cfg b/resources/variants/atmat/atom3_all_metal_brass_0.2.inst.cfg index 482efd61b54..2c6c67e10f6 100644 --- a/resources/variants/atmat/atom3_all_metal_brass_0.2.inst.cfg +++ b/resources/variants/atmat/atom3_all_metal_brass_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_all_metal_brass_0.4.inst.cfg b/resources/variants/atmat/atom3_all_metal_brass_0.4.inst.cfg index 11fc3b222e0..37107ab53b4 100644 --- a/resources/variants/atmat/atom3_all_metal_brass_0.4.inst.cfg +++ b/resources/variants/atmat/atom3_all_metal_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_all_metal_brass_0.6.inst.cfg b/resources/variants/atmat/atom3_all_metal_brass_0.6.inst.cfg index 0cd4aa92eaa..25865d3408b 100644 --- a/resources/variants/atmat/atom3_all_metal_brass_0.6.inst.cfg +++ b/resources/variants/atmat/atom3_all_metal_brass_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_all_metal_brass_0.2.inst.cfg b/resources/variants/atmat/atom3_lite_all_metal_brass_0.2.inst.cfg index 33c16b9e3b6..c6fcc777e29 100644 --- a/resources/variants/atmat/atom3_lite_all_metal_brass_0.2.inst.cfg +++ b/resources/variants/atmat/atom3_lite_all_metal_brass_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_all_metal_brass_0.4.inst.cfg b/resources/variants/atmat/atom3_lite_all_metal_brass_0.4.inst.cfg index 13bd63686d9..2b9a166b816 100644 --- a/resources/variants/atmat/atom3_lite_all_metal_brass_0.4.inst.cfg +++ b/resources/variants/atmat/atom3_lite_all_metal_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_all_metal_brass_0.6.inst.cfg b/resources/variants/atmat/atom3_lite_all_metal_brass_0.6.inst.cfg index 869e0d3cc23..a8893848959 100644 --- a/resources/variants/atmat/atom3_lite_all_metal_brass_0.6.inst.cfg +++ b/resources/variants/atmat/atom3_lite_all_metal_brass_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_ptfe_brass_0.2.inst.cfg b/resources/variants/atmat/atom3_lite_ptfe_brass_0.2.inst.cfg index e7a55716027..9ffd271caa5 100644 --- a/resources/variants/atmat/atom3_lite_ptfe_brass_0.2.inst.cfg +++ b/resources/variants/atmat/atom3_lite_ptfe_brass_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_ptfe_brass_0.4.inst.cfg b/resources/variants/atmat/atom3_lite_ptfe_brass_0.4.inst.cfg index c52d2bd3ab1..8b1fcf08d15 100644 --- a/resources/variants/atmat/atom3_lite_ptfe_brass_0.4.inst.cfg +++ b/resources/variants/atmat/atom3_lite_ptfe_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_ptfe_brass_0.6.inst.cfg b/resources/variants/atmat/atom3_lite_ptfe_brass_0.6.inst.cfg index 1d46ba57679..e2dee19e6c1 100644 --- a/resources/variants/atmat/atom3_lite_ptfe_brass_0.6.inst.cfg +++ b/resources/variants/atmat/atom3_lite_ptfe_brass_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_ptfe_brass_0.2.inst.cfg b/resources/variants/atmat/atom3_ptfe_brass_0.2.inst.cfg index 3702ab85990..1c80d91604f 100644 --- a/resources/variants/atmat/atom3_ptfe_brass_0.2.inst.cfg +++ b/resources/variants/atmat/atom3_ptfe_brass_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_ptfe_brass_0.4.inst.cfg b/resources/variants/atmat/atom3_ptfe_brass_0.4.inst.cfg index e121b2d94ef..b8a92d06f34 100644 --- a/resources/variants/atmat/atom3_ptfe_brass_0.4.inst.cfg +++ b/resources/variants/atmat/atom3_ptfe_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_ptfe_brass_0.6.inst.cfg b/resources/variants/atmat/atom3_ptfe_brass_0.6.inst.cfg index 168d4ee0016..ae11da958a9 100644 --- a/resources/variants/atmat/atom3_ptfe_brass_0.6.inst.cfg +++ b/resources/variants/atmat/atom3_ptfe_brass_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_0.2.inst.cfg b/resources/variants/biqu/biqu_b1_0.2.inst.cfg index bd07a701988..33cc8cddf06 100755 --- a/resources/variants/biqu/biqu_b1_0.2.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_0.3.inst.cfg b/resources/variants/biqu/biqu_b1_0.3.inst.cfg index 1a657b58742..5eda2edd831 100755 --- a/resources/variants/biqu/biqu_b1_0.3.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_0.4.inst.cfg b/resources/variants/biqu/biqu_b1_0.4.inst.cfg index 34544d9d2b7..20e5e4e90af 100755 --- a/resources/variants/biqu/biqu_b1_0.4.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_0.5.inst.cfg b/resources/variants/biqu/biqu_b1_0.5.inst.cfg index e20297039af..6fa7a4543b6 100755 --- a/resources/variants/biqu/biqu_b1_0.5.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_0.6.inst.cfg b/resources/variants/biqu/biqu_b1_0.6.inst.cfg index 620b5c385d3..fbeeb8ba59f 100755 --- a/resources/variants/biqu/biqu_b1_0.6.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_0.8.inst.cfg b/resources/variants/biqu/biqu_b1_0.8.inst.cfg index 2ba4ad82353..39b4ffdc2b2 100755 --- a/resources/variants/biqu/biqu_b1_0.8.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.2.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.2.inst.cfg index dd3838dcb3c..f5fd67b87d6 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.2.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.3.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.3.inst.cfg index 665915ca7bd..d6cfb2a776f 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.3.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.4.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.4.inst.cfg index c9d4b008d40..6cde06bf356 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.4.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.5.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.5.inst.cfg index 6669153af02..8fcb3f9788d 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.5.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.6.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.6.inst.cfg index ec42aefc617..40bf791ec53 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.6.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.8.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.8.inst.cfg index 670956305c1..514a3792325 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.8.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_base_0.2.inst.cfg b/resources/variants/biqu/biqu_base_0.2.inst.cfg index 13643d69ec8..b42d0c87f35 100755 --- a/resources/variants/biqu/biqu_base_0.2.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_base_0.3.inst.cfg b/resources/variants/biqu/biqu_base_0.3.inst.cfg index 3d92db130a3..f486854eebb 100755 --- a/resources/variants/biqu/biqu_base_0.3.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_base_0.4.inst.cfg b/resources/variants/biqu/biqu_base_0.4.inst.cfg index 57494b698b5..4236b861780 100755 --- a/resources/variants/biqu/biqu_base_0.4.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_base_0.5.inst.cfg b/resources/variants/biqu/biqu_base_0.5.inst.cfg index cc8c9768a07..37f5505bded 100755 --- a/resources/variants/biqu/biqu_base_0.5.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_base_0.6.inst.cfg b/resources/variants/biqu/biqu_base_0.6.inst.cfg index 36de8654120..9793718e5da 100755 --- a/resources/variants/biqu/biqu_base_0.6.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_base_0.8.inst.cfg b/resources/variants/biqu/biqu_base_0.8.inst.cfg index 45f79ec8464..f720f7fd9cf 100755 --- a/resources/variants/biqu/biqu_base_0.8.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.2.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.2.inst.cfg index e1477d6752d..5498de417a6 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.2.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.3.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.3.inst.cfg index e811da5750f..86be976e203 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.3.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.4.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.4.inst.cfg index 5fe45484411..8c04da610d4 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.4.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.5.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.5.inst.cfg index f55767ede31..f886e6b1061 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.5.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.6.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.6.inst.cfg index f19b140683d..74e59e38c85 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.6.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.8.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.8.inst.cfg index 7acc8686fbb..70d8d131b49 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.8.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.2.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.2.inst.cfg index 86bb2dd6704..cb199db0263 100755 --- a/resources/variants/biqu/biqu_hurakan_0.2.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.3.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.3.inst.cfg index 4eb7a8011ad..d3ceab8f55e 100755 --- a/resources/variants/biqu/biqu_hurakan_0.3.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.4.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.4.inst.cfg index 807cb5ddd67..a4ef00cc0e6 100755 --- a/resources/variants/biqu/biqu_hurakan_0.4.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.5.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.5.inst.cfg index daceb747d72..045a3f99cc9 100755 --- a/resources/variants/biqu/biqu_hurakan_0.5.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.6.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.6.inst.cfg index 544623031bd..a69f4fa8161 100755 --- a/resources/variants/biqu/biqu_hurakan_0.6.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.8.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.8.inst.cfg index 8ec65206738..8bad103e9d2 100755 --- a/resources/variants/biqu/biqu_hurakan_0.8.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.20.inst.cfg b/resources/variants/blocks/blocks_mkii_0.20.inst.cfg index 167ef6d5592..c4fe2e68f29 100644 --- a/resources/variants/blocks/blocks_mkii_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.30.inst.cfg b/resources/variants/blocks/blocks_mkii_0.30.inst.cfg index eb0d9014968..5351019fc3b 100644 --- a/resources/variants/blocks/blocks_mkii_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.40.inst.cfg b/resources/variants/blocks/blocks_mkii_0.40.inst.cfg index ec2f9874589..2b7a2edf752 100644 --- a/resources/variants/blocks/blocks_mkii_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.50.inst.cfg b/resources/variants/blocks/blocks_mkii_0.50.inst.cfg index ae89e827618..8a186ad31a4 100644 --- a/resources/variants/blocks/blocks_mkii_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.60.inst.cfg b/resources/variants/blocks/blocks_mkii_0.60.inst.cfg index 0426baadd78..9ee17968fc0 100644 --- a/resources/variants/blocks/blocks_mkii_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.80.inst.cfg b/resources/variants/blocks/blocks_mkii_0.80.inst.cfg index cc602bfdc80..d2847e54105 100644 --- a/resources/variants/blocks/blocks_mkii_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.20.inst.cfg b/resources/variants/blocks/blocks_one_0.20.inst.cfg index fe8cb9c8655..f85d14be4f9 100644 --- a/resources/variants/blocks/blocks_one_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.30.inst.cfg b/resources/variants/blocks/blocks_one_0.30.inst.cfg index 65b86a5d55c..da4aecc1ff6 100644 --- a/resources/variants/blocks/blocks_one_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.40.inst.cfg b/resources/variants/blocks/blocks_one_0.40.inst.cfg index 1c6e33046cb..fc00de5356d 100644 --- a/resources/variants/blocks/blocks_one_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.50.inst.cfg b/resources/variants/blocks/blocks_one_0.50.inst.cfg index 6163a0a0d5e..af4d3206f19 100644 --- a/resources/variants/blocks/blocks_one_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.60.inst.cfg b/resources/variants/blocks/blocks_one_0.60.inst.cfg index 82b6799ae97..ef2c7d5e8d3 100644 --- a/resources/variants/blocks/blocks_one_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.80.inst.cfg b/resources/variants/blocks/blocks_one_0.80.inst.cfg index abca2ad27cc..933a875b53c 100644 --- a/resources/variants/blocks/blocks_one_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_0.40.inst.cfg b/resources/variants/blocks/blocks_pros100_0.40.inst.cfg index 1855a2ed5e2..b927508991f 100644 --- a/resources/variants/blocks/blocks_pros100_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_0.50.inst.cfg b/resources/variants/blocks/blocks_pros100_0.50.inst.cfg index b731e20f89f..8c68a6ced70 100644 --- a/resources/variants/blocks/blocks_pros100_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_0.60.inst.cfg b/resources/variants/blocks/blocks_pros100_0.60.inst.cfg index c3a6ac9bbbb..e3994bfe5e6 100644 --- a/resources/variants/blocks/blocks_pros100_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_0.80.inst.cfg b/resources/variants/blocks/blocks_pros100_0.80.inst.cfg index a08712376be..df4c5e7047e 100644 --- a/resources/variants/blocks/blocks_pros100_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_1.0.inst.cfg b/resources/variants/blocks/blocks_pros100_1.0.inst.cfg index 3f968bf5203..ea3718470af 100644 --- a/resources/variants/blocks/blocks_pros100_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_1.2.inst.cfg b/resources/variants/blocks/blocks_pros100_1.2.inst.cfg index cba7d886f5f..88cb2d46b25 100644 --- a/resources/variants/blocks/blocks_pros100_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_0.40.inst.cfg b/resources/variants/blocks/blocks_pros30_0.40.inst.cfg index d5686657600..f5b36fcb86a 100644 --- a/resources/variants/blocks/blocks_pros30_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_0.50.inst.cfg b/resources/variants/blocks/blocks_pros30_0.50.inst.cfg index f023173e28f..72a17f4c666 100644 --- a/resources/variants/blocks/blocks_pros30_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_0.60.inst.cfg b/resources/variants/blocks/blocks_pros30_0.60.inst.cfg index 7479ff06a45..e8b9735ebbc 100644 --- a/resources/variants/blocks/blocks_pros30_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_0.80.inst.cfg b/resources/variants/blocks/blocks_pros30_0.80.inst.cfg index 4ffb9f2a13c..c7eda949551 100644 --- a/resources/variants/blocks/blocks_pros30_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_1.0.inst.cfg b/resources/variants/blocks/blocks_pros30_1.0.inst.cfg index eca0070ed3e..6a8101f419a 100644 --- a/resources/variants/blocks/blocks_pros30_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_1.2.inst.cfg b/resources/variants/blocks/blocks_pros30_1.2.inst.cfg index 4b1eda711ad..b63d6d49305 100644 --- a/resources/variants/blocks/blocks_pros30_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_ht_0.3.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.3.inst.cfg index 6d26776aadc..f01cdae8738 100644 --- a/resources/variants/blocks/blocks_r21_ht_0.3.inst.cfg +++ b/resources/variants/blocks/blocks_r21_ht_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_ht_0.4.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.4.inst.cfg index e3c44dfd886..953c109864a 100644 --- a/resources/variants/blocks/blocks_r21_ht_0.4.inst.cfg +++ b/resources/variants/blocks/blocks_r21_ht_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_ht_0.5.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.5.inst.cfg index 67a08f1eca3..f37090cc343 100644 --- a/resources/variants/blocks/blocks_r21_ht_0.5.inst.cfg +++ b/resources/variants/blocks/blocks_r21_ht_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_ht_0.6.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.6.inst.cfg index 0bf24b9a8b4..884d6985e8d 100644 --- a/resources/variants/blocks/blocks_r21_ht_0.6.inst.cfg +++ b/resources/variants/blocks/blocks_r21_ht_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_ht_0.8.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.8.inst.cfg index 6730ce6147c..503e7dbc379 100644 --- a/resources/variants/blocks/blocks_r21_ht_0.8.inst.cfg +++ b/resources/variants/blocks/blocks_r21_ht_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.20.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.20.inst.cfg index 29d404547e4..92520d74123 100644 --- a/resources/variants/blocks/blocks_r21_st_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.30.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.30.inst.cfg index 10aa0527419..c3ef2742348 100644 --- a/resources/variants/blocks/blocks_r21_st_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.40.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.40.inst.cfg index 6e596d6f55c..0a70809ed48 100644 --- a/resources/variants/blocks/blocks_r21_st_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.50.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.50.inst.cfg index 90eb8127dd9..72280956ca6 100644 --- a/resources/variants/blocks/blocks_r21_st_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.60.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.60.inst.cfg index 58f45943b96..b0a2437841b 100644 --- a/resources/variants/blocks/blocks_r21_st_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.80.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.80.inst.cfg index 4b63981c604..0f4f86afc66 100644 --- a/resources/variants/blocks/blocks_r21_st_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_1.0.inst.cfg b/resources/variants/blocks/blocks_r21_st_1.0.inst.cfg index ed49040e452..65c00081e67 100644 --- a/resources/variants/blocks/blocks_r21_st_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_1.2.inst.cfg b/resources/variants/blocks/blocks_r21_st_1.2.inst.cfg index a1ca742b055..f7550f5709a 100644 --- a/resources/variants/blocks/blocks_r21_st_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_ht_0.3.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.3.inst.cfg index e6255aaf4bc..ac3cfb8a778 100644 --- a/resources/variants/blocks/blocks_rd50_ht_0.3.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_ht_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_ht_0.4.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.4.inst.cfg index 0af109a035f..930ef1c9565 100644 --- a/resources/variants/blocks/blocks_rd50_ht_0.4.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_ht_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_ht_0.5.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.5.inst.cfg index d34ed634743..ee7c7af5683 100644 --- a/resources/variants/blocks/blocks_rd50_ht_0.5.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_ht_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_ht_0.6.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.6.inst.cfg index 531bbc5159b..cd4a03a63f3 100644 --- a/resources/variants/blocks/blocks_rd50_ht_0.6.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_ht_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_ht_0.8.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.8.inst.cfg index df29382e6bb..ed2b2c05e80 100644 --- a/resources/variants/blocks/blocks_rd50_ht_0.8.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_ht_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.20.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.20.inst.cfg index c340c7f8dc8..3c6659b8779 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.30.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.30.inst.cfg index 577c37ac1b8..b6479ccf55c 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.40.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.40.inst.cfg index 174794aa8b5..fedb0eb3cb5 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.50.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.50.inst.cfg index d51641b6562..4706b132649 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.60.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.60.inst.cfg index bfb6e03bd60..f3438683c31 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.80.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.80.inst.cfg index ee98152381a..e3392fef46d 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_1.0.inst.cfg b/resources/variants/blocks/blocks_rd50_st_1.0.inst.cfg index 2f017c559b8..f0267d08012 100644 --- a/resources/variants/blocks/blocks_rd50_st_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_1.2.inst.cfg b/resources/variants/blocks/blocks_rd50_st_1.2.inst.cfg index ca99d821776..f59324621b4 100644 --- a/resources/variants/blocks/blocks_rd50_st_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.3.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.3.inst.cfg index aebe3c094e4..91c2314f6c0 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_ht_0.3.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.4.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.4.inst.cfg index d834ee11e76..4615f9296db 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_ht_0.4.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.5.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.5.inst.cfg index 1903f4b568e..0b9a42a44f0 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_ht_0.5.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.6.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.6.inst.cfg index 27986f2d81a..ec94cf47007 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_ht_0.6.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.8.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.8.inst.cfg index 29f328c9c13..f2ea9ceac0c 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_ht_0.8.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.20.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.20.inst.cfg index 333f6402860..6cd7003c11f 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.30.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.30.inst.cfg index 3c21f6eb335..b47b774176e 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.40.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.40.inst.cfg index d1600007ea3..23bfc0aeddc 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.50.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.50.inst.cfg index 7ce36f41c22..9734deca273 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.60.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.60.inst.cfg index 4d345c42b9b..556ca65c965 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.80.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.80.inst.cfg index 34ebf3f7c0b..7a4ce91202b 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_1.0.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_1.0.inst.cfg index ce6e8f932ca..d0f4b458fe3 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_1.2.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_1.2.inst.cfg index 373e6e8ad2c..1b7173778ed 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.3.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.3.inst.cfg index cef05a9ea8e..bc964011f8e 100644 --- a/resources/variants/blocks/blocks_rd50mirror_ht_0.3.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.4.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.4.inst.cfg index c6d548b993b..07e845e9d6e 100644 --- a/resources/variants/blocks/blocks_rd50mirror_ht_0.4.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.5.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.5.inst.cfg index ff2ef479faf..725cb8c639e 100644 --- a/resources/variants/blocks/blocks_rd50mirror_ht_0.5.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.6.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.6.inst.cfg index 562ed73e929..0d0f9628f71 100644 --- a/resources/variants/blocks/blocks_rd50mirror_ht_0.6.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.8.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.8.inst.cfg index 277a0dcb9ee..00e1b1c48cb 100644 --- a/resources/variants/blocks/blocks_rd50mirror_ht_0.8.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.20.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.20.inst.cfg index d813be41230..a61baae115b 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.30.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.30.inst.cfg index 505a0b78139..2e13045b90d 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.40.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.40.inst.cfg index 1184a973602..85e6363e904 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.50.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.50.inst.cfg index 51b8dd0926b..cf56050d822 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.60.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.60.inst.cfg index 24ab1bc2075..d3e8d29a658 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.80.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.80.inst.cfg index e3a6b373dbd..5a13d8d69f9 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_1.0.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_1.0.inst.cfg index da5bb72adba..eb1272e9f3a 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_1.2.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_1.2.inst.cfg index ca99d821776..f59324621b4 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.20.inst.cfg b/resources/variants/blocks/blocks_zero_0.20.inst.cfg index d37c55e9272..426cb0ef770 100644 --- a/resources/variants/blocks/blocks_zero_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.30.inst.cfg b/resources/variants/blocks/blocks_zero_0.30.inst.cfg index 9d669d5c712..150e957f361 100644 --- a/resources/variants/blocks/blocks_zero_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.40.inst.cfg b/resources/variants/blocks/blocks_zero_0.40.inst.cfg index c8ed122a982..f58f3c4b467 100644 --- a/resources/variants/blocks/blocks_zero_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.50.inst.cfg b/resources/variants/blocks/blocks_zero_0.50.inst.cfg index fa967614662..5114247fe11 100644 --- a/resources/variants/blocks/blocks_zero_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.60.inst.cfg b/resources/variants/blocks/blocks_zero_0.60.inst.cfg index e6560787dba..26bedb14485 100644 --- a/resources/variants/blocks/blocks_zero_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.80.inst.cfg b/resources/variants/blocks/blocks_zero_0.80.inst.cfg index 4d4f0d2cea9..525ab6dca80 100644 --- a/resources/variants/blocks/blocks_zero_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/cartesio/cartesio_0.25.inst.cfg b/resources/variants/cartesio/cartesio_0.25.inst.cfg index bfd0306f16c..acff9bda4d0 100644 --- a/resources/variants/cartesio/cartesio_0.25.inst.cfg +++ b/resources/variants/cartesio/cartesio_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Cartesio hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/cartesio/cartesio_0.4.inst.cfg b/resources/variants/cartesio/cartesio_0.4.inst.cfg index 3e8936d09b1..10b56a610e0 100644 --- a/resources/variants/cartesio/cartesio_0.4.inst.cfg +++ b/resources/variants/cartesio/cartesio_0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Cartesio hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/cartesio/cartesio_0.8.inst.cfg b/resources/variants/cartesio/cartesio_0.8.inst.cfg index 6e87eb69b41..3e4662c89c0 100644 --- a/resources/variants/cartesio/cartesio_0.8.inst.cfg +++ b/resources/variants/cartesio/cartesio_0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Cartesio hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/crazy3dprint/crazy3dprint_base_0.40.inst.cfg b/resources/variants/crazy3dprint/crazy3dprint_base_0.40.inst.cfg index 730ec5b5f7e..eb4548b7b5f 100644 --- a/resources/variants/crazy3dprint/crazy3dprint_base_0.40.inst.cfg +++ b/resources/variants/crazy3dprint/crazy3dprint_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/crazy3dprint/crazy3dprint_cz_300_0.40.inst.cfg b/resources/variants/crazy3dprint/crazy3dprint_cz_300_0.40.inst.cfg index 8855dd7021d..3b2312d0b4d 100644 --- a/resources/variants/crazy3dprint/crazy3dprint_cz_300_0.40.inst.cfg +++ b/resources/variants/crazy3dprint/crazy3dprint_cz_300_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.2.inst.cfg b/resources/variants/creality/creality_base_0.2.inst.cfg index d163876973e..8e7c2994093 100644 --- a/resources/variants/creality/creality_base_0.2.inst.cfg +++ b/resources/variants/creality/creality_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.3.inst.cfg b/resources/variants/creality/creality_base_0.3.inst.cfg index c21f6d9c947..d2422e5d804 100644 --- a/resources/variants/creality/creality_base_0.3.inst.cfg +++ b/resources/variants/creality/creality_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.4.inst.cfg b/resources/variants/creality/creality_base_0.4.inst.cfg index 7b450e3de04..652c9b3f652 100644 --- a/resources/variants/creality/creality_base_0.4.inst.cfg +++ b/resources/variants/creality/creality_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.5.inst.cfg b/resources/variants/creality/creality_base_0.5.inst.cfg index d78687ce4b3..59c011bf868 100644 --- a/resources/variants/creality/creality_base_0.5.inst.cfg +++ b/resources/variants/creality/creality_base_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.6.inst.cfg b/resources/variants/creality/creality_base_0.6.inst.cfg index 6022e0bf1b6..2c2c36bf6aa 100644 --- a/resources/variants/creality/creality_base_0.6.inst.cfg +++ b/resources/variants/creality/creality_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.8.inst.cfg b/resources/variants/creality/creality_base_0.8.inst.cfg index ff41e7e5621..88c2f2427c8 100644 --- a/resources/variants/creality/creality_base_0.8.inst.cfg +++ b/resources/variants/creality/creality_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_base_1.0.inst.cfg b/resources/variants/creality/creality_base_1.0.inst.cfg index 1a18b2fcb73..5954b7fcd0b 100644 --- a/resources/variants/creality/creality_base_1.0.inst.cfg +++ b/resources/variants/creality/creality_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr100_0.4.inst.cfg b/resources/variants/creality/creality_cr100_0.4.inst.cfg index a0b2f5caa4e..5d28b0baa90 100644 --- a/resources/variants/creality/creality_cr100_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr100_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.2.inst.cfg b/resources/variants/creality/creality_cr10_0.2.inst.cfg index afeb46fa7e1..3b2924a7585 100644 --- a/resources/variants/creality/creality_cr10_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.3.inst.cfg b/resources/variants/creality/creality_cr10_0.3.inst.cfg index 5babe4a2d08..0cc70a0ec76 100644 --- a/resources/variants/creality/creality_cr10_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.4.inst.cfg b/resources/variants/creality/creality_cr10_0.4.inst.cfg index 6267bb8215f..19b8b2abb7a 100644 --- a/resources/variants/creality/creality_cr10_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.5.inst.cfg b/resources/variants/creality/creality_cr10_0.5.inst.cfg index 939e73dbcd5..78805b4af75 100644 --- a/resources/variants/creality/creality_cr10_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.6.inst.cfg b/resources/variants/creality/creality_cr10_0.6.inst.cfg index 1f873276450..3059d671e55 100644 --- a/resources/variants/creality/creality_cr10_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.8.inst.cfg b/resources/variants/creality/creality_cr10_0.8.inst.cfg index 9cf84420b88..48c85895be2 100644 --- a/resources/variants/creality/creality_cr10_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_1.0.inst.cfg b/resources/variants/creality/creality_cr10_1.0.inst.cfg index 285cb7837c3..d58fca26f26 100644 --- a/resources/variants/creality/creality_cr10_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.2.inst.cfg b/resources/variants/creality/creality_cr10max_0.2.inst.cfg index 412c2d30160..1fcb49f147e 100644 --- a/resources/variants/creality/creality_cr10max_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.3.inst.cfg b/resources/variants/creality/creality_cr10max_0.3.inst.cfg index 5ee839276e4..ec92685f222 100644 --- a/resources/variants/creality/creality_cr10max_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.4.inst.cfg b/resources/variants/creality/creality_cr10max_0.4.inst.cfg index 04b56b2592c..4aab97419c5 100644 --- a/resources/variants/creality/creality_cr10max_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.5.inst.cfg b/resources/variants/creality/creality_cr10max_0.5.inst.cfg index b398c33ecf4..b7b503a1d5d 100644 --- a/resources/variants/creality/creality_cr10max_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.6.inst.cfg b/resources/variants/creality/creality_cr10max_0.6.inst.cfg index 8708331abfd..0caad2868d1 100644 --- a/resources/variants/creality/creality_cr10max_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.8.inst.cfg b/resources/variants/creality/creality_cr10max_0.8.inst.cfg index 526c12726e5..8b379f0c6e2 100644 --- a/resources/variants/creality/creality_cr10max_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_1.0.inst.cfg b/resources/variants/creality/creality_cr10max_1.0.inst.cfg index d7ba5c8ecca..dc9507c40d2 100644 --- a/resources/variants/creality/creality_cr10max_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10max_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.2.inst.cfg b/resources/variants/creality/creality_cr10mini_0.2.inst.cfg index a83558e7591..8d17b568028 100644 --- a/resources/variants/creality/creality_cr10mini_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.3.inst.cfg b/resources/variants/creality/creality_cr10mini_0.3.inst.cfg index 64b46bd4e96..5a97059d3f2 100644 --- a/resources/variants/creality/creality_cr10mini_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.4.inst.cfg b/resources/variants/creality/creality_cr10mini_0.4.inst.cfg index 52b976b78c6..eca0fb5f31b 100644 --- a/resources/variants/creality/creality_cr10mini_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.5.inst.cfg b/resources/variants/creality/creality_cr10mini_0.5.inst.cfg index 135b7d488c7..bb8052aa0f8 100644 --- a/resources/variants/creality/creality_cr10mini_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.6.inst.cfg b/resources/variants/creality/creality_cr10mini_0.6.inst.cfg index b719afa194c..d0bd98cf249 100644 --- a/resources/variants/creality/creality_cr10mini_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.8.inst.cfg b/resources/variants/creality/creality_cr10mini_0.8.inst.cfg index 9dfd0181d04..6024084037d 100644 --- a/resources/variants/creality/creality_cr10mini_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_1.0.inst.cfg b/resources/variants/creality/creality_cr10mini_1.0.inst.cfg index 6fe3a59bf63..3d2285791e8 100644 --- a/resources/variants/creality/creality_cr10mini_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.2.inst.cfg b/resources/variants/creality/creality_cr10s4_0.2.inst.cfg index 6e064cef5e6..cbd53e4a05b 100644 --- a/resources/variants/creality/creality_cr10s4_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.3.inst.cfg b/resources/variants/creality/creality_cr10s4_0.3.inst.cfg index dc289384567..7189e5d3e07 100644 --- a/resources/variants/creality/creality_cr10s4_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.4.inst.cfg b/resources/variants/creality/creality_cr10s4_0.4.inst.cfg index 8151b7fdfb7..2429c773e71 100644 --- a/resources/variants/creality/creality_cr10s4_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.5.inst.cfg b/resources/variants/creality/creality_cr10s4_0.5.inst.cfg index af422f3a2bb..5382fb830ab 100644 --- a/resources/variants/creality/creality_cr10s4_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.6.inst.cfg b/resources/variants/creality/creality_cr10s4_0.6.inst.cfg index 41c7c3e1b2e..4b65a1c311d 100644 --- a/resources/variants/creality/creality_cr10s4_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.8.inst.cfg b/resources/variants/creality/creality_cr10s4_0.8.inst.cfg index cdb30a7bdd7..50460847e46 100644 --- a/resources/variants/creality/creality_cr10s4_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_1.0.inst.cfg b/resources/variants/creality/creality_cr10s4_1.0.inst.cfg index 4e40f38ba41..590003b0a7e 100644 --- a/resources/variants/creality/creality_cr10s4_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.2.inst.cfg b/resources/variants/creality/creality_cr10s5_0.2.inst.cfg index 288ed89049a..1e2afc21edb 100644 --- a/resources/variants/creality/creality_cr10s5_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.3.inst.cfg b/resources/variants/creality/creality_cr10s5_0.3.inst.cfg index 1f5c0518df3..481adf21a55 100644 --- a/resources/variants/creality/creality_cr10s5_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.4.inst.cfg b/resources/variants/creality/creality_cr10s5_0.4.inst.cfg index 8f081c75aef..8edccc6fbc8 100644 --- a/resources/variants/creality/creality_cr10s5_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.5.inst.cfg b/resources/variants/creality/creality_cr10s5_0.5.inst.cfg index bd57815fa59..be31c1a1754 100644 --- a/resources/variants/creality/creality_cr10s5_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.6.inst.cfg b/resources/variants/creality/creality_cr10s5_0.6.inst.cfg index f6994925a45..55f55cc02c1 100644 --- a/resources/variants/creality/creality_cr10s5_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.8.inst.cfg b/resources/variants/creality/creality_cr10s5_0.8.inst.cfg index 58a8f9b487c..79117e99709 100644 --- a/resources/variants/creality/creality_cr10s5_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_1.0.inst.cfg b/resources/variants/creality/creality_cr10s5_1.0.inst.cfg index 099900111eb..dab77489252 100644 --- a/resources/variants/creality/creality_cr10s5_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.2.inst.cfg b/resources/variants/creality/creality_cr10s_0.2.inst.cfg index 31d415dbc1b..eb7dbfb848a 100644 --- a/resources/variants/creality/creality_cr10s_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.3.inst.cfg b/resources/variants/creality/creality_cr10s_0.3.inst.cfg index 75696e2e53a..164abd5f844 100644 --- a/resources/variants/creality/creality_cr10s_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.4.inst.cfg b/resources/variants/creality/creality_cr10s_0.4.inst.cfg index ddc5d01d0e9..9a17bb77ff9 100644 --- a/resources/variants/creality/creality_cr10s_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.5.inst.cfg b/resources/variants/creality/creality_cr10s_0.5.inst.cfg index 9591d2248c5..f4e6e0a7287 100644 --- a/resources/variants/creality/creality_cr10s_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.6.inst.cfg b/resources/variants/creality/creality_cr10s_0.6.inst.cfg index a67f6b10d24..ed90ef591ad 100644 --- a/resources/variants/creality/creality_cr10s_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.8.inst.cfg b/resources/variants/creality/creality_cr10s_0.8.inst.cfg index 58ec50067ca..359440b6dab 100644 --- a/resources/variants/creality/creality_cr10s_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_1.0.inst.cfg b/resources/variants/creality/creality_cr10s_1.0.inst.cfg index bea99edabd4..06c6ed0c84b 100644 --- a/resources/variants/creality/creality_cr10s_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10s_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.2.inst.cfg b/resources/variants/creality/creality_cr10smart_0.2.inst.cfg index 5f702aa5302..6684f0c83d6 100644 --- a/resources/variants/creality/creality_cr10smart_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.3.inst.cfg b/resources/variants/creality/creality_cr10smart_0.3.inst.cfg index c42ec54840f..32e8f48e30a 100644 --- a/resources/variants/creality/creality_cr10smart_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.4.inst.cfg b/resources/variants/creality/creality_cr10smart_0.4.inst.cfg index bc126d3f2d1..0e6e105f38c 100644 --- a/resources/variants/creality/creality_cr10smart_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.5.inst.cfg b/resources/variants/creality/creality_cr10smart_0.5.inst.cfg index 20b89226e11..9e32aed915b 100644 --- a/resources/variants/creality/creality_cr10smart_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.6.inst.cfg b/resources/variants/creality/creality_cr10smart_0.6.inst.cfg index fab1010ae64..7ebd75a340e 100644 --- a/resources/variants/creality/creality_cr10smart_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.8.inst.cfg b/resources/variants/creality/creality_cr10smart_0.8.inst.cfg index 041ac8c3b68..8877a939968 100644 --- a/resources/variants/creality/creality_cr10smart_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_1.0.inst.cfg b/resources/variants/creality/creality_cr10smart_1.0.inst.cfg index 51373cdf990..ee740ac8ba0 100644 --- a/resources/variants/creality/creality_cr10smart_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.2.inst.cfg b/resources/variants/creality/creality_cr10spro_0.2.inst.cfg index dde72987117..13be034c1bf 100644 --- a/resources/variants/creality/creality_cr10spro_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.3.inst.cfg b/resources/variants/creality/creality_cr10spro_0.3.inst.cfg index 301174ba677..2f11107b6bb 100644 --- a/resources/variants/creality/creality_cr10spro_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.4.inst.cfg b/resources/variants/creality/creality_cr10spro_0.4.inst.cfg index 92d934776b3..cc38161b0fc 100644 --- a/resources/variants/creality/creality_cr10spro_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.5.inst.cfg b/resources/variants/creality/creality_cr10spro_0.5.inst.cfg index f6745d55b27..60cefb9afbb 100644 --- a/resources/variants/creality/creality_cr10spro_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.6.inst.cfg b/resources/variants/creality/creality_cr10spro_0.6.inst.cfg index f046370e091..33f16b154db 100644 --- a/resources/variants/creality/creality_cr10spro_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.8.inst.cfg b/resources/variants/creality/creality_cr10spro_0.8.inst.cfg index 8373a2c8198..8c90a1cb5d6 100644 --- a/resources/variants/creality/creality_cr10spro_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_1.0.inst.cfg b/resources/variants/creality/creality_cr10spro_1.0.inst.cfg index 2e127dd9fa4..8f57bfa8e64 100644 --- a/resources/variants/creality/creality_cr10spro_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.2.inst.cfg b/resources/variants/creality/creality_cr20_0.2.inst.cfg index ea037b6ffb8..e8335c4e202 100644 --- a/resources/variants/creality/creality_cr20_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.3.inst.cfg b/resources/variants/creality/creality_cr20_0.3.inst.cfg index 33262eeffc6..81f86270950 100644 --- a/resources/variants/creality/creality_cr20_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.4.inst.cfg b/resources/variants/creality/creality_cr20_0.4.inst.cfg index cd7e827812d..6d75fb33e25 100644 --- a/resources/variants/creality/creality_cr20_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.5.inst.cfg b/resources/variants/creality/creality_cr20_0.5.inst.cfg index eeaf6d7f533..6e3d6331da5 100644 --- a/resources/variants/creality/creality_cr20_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.6.inst.cfg b/resources/variants/creality/creality_cr20_0.6.inst.cfg index 091117252a3..0b8d92acbae 100644 --- a/resources/variants/creality/creality_cr20_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.8.inst.cfg b/resources/variants/creality/creality_cr20_0.8.inst.cfg index d30e5e5d942..734c9090f52 100644 --- a/resources/variants/creality/creality_cr20_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_1.0.inst.cfg b/resources/variants/creality/creality_cr20_1.0.inst.cfg index e049a09d903..8ac15853b38 100644 --- a/resources/variants/creality/creality_cr20_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr20_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.2.inst.cfg b/resources/variants/creality/creality_cr20pro_0.2.inst.cfg index 6a95f5a2944..96506c32898 100644 --- a/resources/variants/creality/creality_cr20pro_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.3.inst.cfg b/resources/variants/creality/creality_cr20pro_0.3.inst.cfg index a1c35d864f9..d9aa9b276b1 100644 --- a/resources/variants/creality/creality_cr20pro_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.4.inst.cfg b/resources/variants/creality/creality_cr20pro_0.4.inst.cfg index 74dd69988b6..0aa80d1faee 100644 --- a/resources/variants/creality/creality_cr20pro_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.5.inst.cfg b/resources/variants/creality/creality_cr20pro_0.5.inst.cfg index 0f58c2a686f..2bb70c7b7a7 100644 --- a/resources/variants/creality/creality_cr20pro_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.6.inst.cfg b/resources/variants/creality/creality_cr20pro_0.6.inst.cfg index f8c1f8850ca..b43b8e29ff3 100644 --- a/resources/variants/creality/creality_cr20pro_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.8.inst.cfg b/resources/variants/creality/creality_cr20pro_0.8.inst.cfg index 83998525b45..d006d966de2 100644 --- a/resources/variants/creality/creality_cr20pro_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_1.0.inst.cfg b/resources/variants/creality/creality_cr20pro_1.0.inst.cfg index 52516050cd1..6c8be83737b 100644 --- a/resources/variants/creality/creality_cr20pro_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.2.inst.cfg b/resources/variants/creality/creality_cr6se_0.2.inst.cfg index 3d3fb182f93..9932ff2a43b 100644 --- a/resources/variants/creality/creality_cr6se_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.3.inst.cfg b/resources/variants/creality/creality_cr6se_0.3.inst.cfg index feeeac902d3..2c0a808113c 100644 --- a/resources/variants/creality/creality_cr6se_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.4.inst.cfg b/resources/variants/creality/creality_cr6se_0.4.inst.cfg index 7af510f84f5..0e8580d9d36 100644 --- a/resources/variants/creality/creality_cr6se_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.5.inst.cfg b/resources/variants/creality/creality_cr6se_0.5.inst.cfg index 35abb7341de..dbfff554e68 100644 --- a/resources/variants/creality/creality_cr6se_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.6.inst.cfg b/resources/variants/creality/creality_cr6se_0.6.inst.cfg index 300487bd15b..11b763d74c1 100644 --- a/resources/variants/creality/creality_cr6se_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.8.inst.cfg b/resources/variants/creality/creality_cr6se_0.8.inst.cfg index 262e286962d..431baae79c5 100644 --- a/resources/variants/creality/creality_cr6se_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_1.0.inst.cfg b/resources/variants/creality/creality_cr6se_1.0.inst.cfg index 9d56cbe2d06..ac7d9dbcb6c 100644 --- a/resources/variants/creality/creality_cr6se_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr6se_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_0.2.inst.cfg b/resources/variants/creality/creality_ender2_0.2.inst.cfg index d7d9b84b81b..8f30d0f6fe2 100644 --- a/resources/variants/creality/creality_ender2_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_0.3.inst.cfg b/resources/variants/creality/creality_ender2_0.3.inst.cfg index bea726a4195..0784478a1b6 100644 --- a/resources/variants/creality/creality_ender2_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_0.4.inst.cfg b/resources/variants/creality/creality_ender2_0.4.inst.cfg index c5a3718023e..2ac7aba90f6 100644 --- a/resources/variants/creality/creality_ender2_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_0.5.inst.cfg b/resources/variants/creality/creality_ender2_0.5.inst.cfg index 322d4cf86ab..b580a5cde6c 100644 --- a/resources/variants/creality/creality_ender2_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_0.6.inst.cfg b/resources/variants/creality/creality_ender2_0.6.inst.cfg index 71ad4b4e0ab..c0907e9ad70 100644 --- a/resources/variants/creality/creality_ender2_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_0.8.inst.cfg b/resources/variants/creality/creality_ender2_0.8.inst.cfg index f74437fe8c2..e3c6805cce2 100644 --- a/resources/variants/creality/creality_ender2_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_1.0.inst.cfg b/resources/variants/creality/creality_ender2_1.0.inst.cfg index 18b9b33507e..8b0eb7362c2 100644 --- a/resources/variants/creality/creality_ender2_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender2_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.2.inst.cfg b/resources/variants/creality/creality_ender3_0.2.inst.cfg index 969a476b0b4..454ec0377be 100644 --- a/resources/variants/creality/creality_ender3_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.3.inst.cfg b/resources/variants/creality/creality_ender3_0.3.inst.cfg index 34e6ce4f3ba..e5340203411 100644 --- a/resources/variants/creality/creality_ender3_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.4.inst.cfg b/resources/variants/creality/creality_ender3_0.4.inst.cfg index 7bf09221a19..1ac41b37149 100644 --- a/resources/variants/creality/creality_ender3_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.5.inst.cfg b/resources/variants/creality/creality_ender3_0.5.inst.cfg index ed376717883..c5eb7768b0a 100644 --- a/resources/variants/creality/creality_ender3_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.6.inst.cfg b/resources/variants/creality/creality_ender3_0.6.inst.cfg index b890bbe67c3..e5c98ee7a70 100644 --- a/resources/variants/creality/creality_ender3_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.8.inst.cfg b/resources/variants/creality/creality_ender3_0.8.inst.cfg index 30099acc042..06c3fbf5b93 100644 --- a/resources/variants/creality/creality_ender3_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_1.0.inst.cfg b/resources/variants/creality/creality_ender3_1.0.inst.cfg index c30af4410a1..9107793f157 100644 --- a/resources/variants/creality/creality_ender3_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.2.inst.cfg b/resources/variants/creality/creality_ender3max_0.2.inst.cfg index 8eb336c3561..17e74e4b977 100644 --- a/resources/variants/creality/creality_ender3max_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.3.inst.cfg b/resources/variants/creality/creality_ender3max_0.3.inst.cfg index 24f21f93de9..1f55310dc8d 100644 --- a/resources/variants/creality/creality_ender3max_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.4.inst.cfg b/resources/variants/creality/creality_ender3max_0.4.inst.cfg index 0b13727228a..55baed73235 100644 --- a/resources/variants/creality/creality_ender3max_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.5.inst.cfg b/resources/variants/creality/creality_ender3max_0.5.inst.cfg index b0527d929c6..844a1eca5c4 100644 --- a/resources/variants/creality/creality_ender3max_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.6.inst.cfg b/resources/variants/creality/creality_ender3max_0.6.inst.cfg index 1970ecd7257..3c6c0fb6b40 100644 --- a/resources/variants/creality/creality_ender3max_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.8.inst.cfg b/resources/variants/creality/creality_ender3max_0.8.inst.cfg index 23d78b05844..ae0afbc2804 100644 --- a/resources/variants/creality/creality_ender3max_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_1.0.inst.cfg b/resources/variants/creality/creality_ender3max_1.0.inst.cfg index 42450e22821..7da936ffa87 100644 --- a/resources/variants/creality/creality_ender3max_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3max_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.2.inst.cfg b/resources/variants/creality/creality_ender3pro_0.2.inst.cfg index 813436be65f..8ecf20846ae 100644 --- a/resources/variants/creality/creality_ender3pro_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.3.inst.cfg b/resources/variants/creality/creality_ender3pro_0.3.inst.cfg index 5eadcfb975f..6b3576a42d3 100644 --- a/resources/variants/creality/creality_ender3pro_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.4.inst.cfg b/resources/variants/creality/creality_ender3pro_0.4.inst.cfg index aeb092a76b0..299550c19b7 100644 --- a/resources/variants/creality/creality_ender3pro_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.5.inst.cfg b/resources/variants/creality/creality_ender3pro_0.5.inst.cfg index 5a5d1fcbf97..99a817f8b9a 100644 --- a/resources/variants/creality/creality_ender3pro_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.6.inst.cfg b/resources/variants/creality/creality_ender3pro_0.6.inst.cfg index fcd5707c4c1..89022bcea6a 100644 --- a/resources/variants/creality/creality_ender3pro_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.8.inst.cfg b/resources/variants/creality/creality_ender3pro_0.8.inst.cfg index 42767a94a71..874c63ba24e 100644 --- a/resources/variants/creality/creality_ender3pro_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_1.0.inst.cfg b/resources/variants/creality/creality_ender3pro_1.0.inst.cfg index b1689a28914..93c2ec21873 100644 --- a/resources/variants/creality/creality_ender3pro_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.2.inst.cfg b/resources/variants/creality/creality_ender3s1_0.2.inst.cfg index ac944ab1dcf..8d9e1a1e8c9 100644 --- a/resources/variants/creality/creality_ender3s1_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.3.inst.cfg b/resources/variants/creality/creality_ender3s1_0.3.inst.cfg index d58e18d238b..5ed26fdbad4 100644 --- a/resources/variants/creality/creality_ender3s1_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.4.inst.cfg b/resources/variants/creality/creality_ender3s1_0.4.inst.cfg index fdaddc91ab0..1658bf59e37 100644 --- a/resources/variants/creality/creality_ender3s1_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.5.inst.cfg b/resources/variants/creality/creality_ender3s1_0.5.inst.cfg index 0093cc7356f..2ac65e3abc5 100644 --- a/resources/variants/creality/creality_ender3s1_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.6.inst.cfg b/resources/variants/creality/creality_ender3s1_0.6.inst.cfg index e1aa8a44486..62112135a76 100644 --- a/resources/variants/creality/creality_ender3s1_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.8.inst.cfg b/resources/variants/creality/creality_ender3s1_0.8.inst.cfg index 0b584c6e87e..a9b60bbefce 100644 --- a/resources/variants/creality/creality_ender3s1_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_1.0.inst.cfg b/resources/variants/creality/creality_ender3s1_1.0.inst.cfg index a1de29ad896..30820921fda 100644 --- a/resources/variants/creality/creality_ender3s1_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.2.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.2.inst.cfg index a8ed1f1d377..95c7c83ab81 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.3.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.3.inst.cfg index 039c47debe2..75095886a18 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.4.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.4.inst.cfg index a4101903894..041139f89c4 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.5.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.5.inst.cfg index 81d93cef97f..ceb15fe521d 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.6.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.6.inst.cfg index 7804f5ed157..dc316c8e45f 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.8.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.8.inst.cfg index 882f18b408b..800e70cb816 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_1.0.inst.cfg b/resources/variants/creality/creality_ender3s1plus_1.0.inst.cfg index c76ff38862e..12652aa70d7 100644 --- a/resources/variants/creality/creality_ender3s1plus_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.2.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.2.inst.cfg index 3697ba6288e..1c0454ec614 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.3.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.3.inst.cfg index 3b7675aa6ae..91e2ebfc3dd 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.4.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.4.inst.cfg index 37eb70d09cd..74ef00ec764 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.5.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.5.inst.cfg index c4c1b183473..31c82d1cf09 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.6.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.6.inst.cfg index d609218f5e3..ee342667198 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.8.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.8.inst.cfg index ee7a039075b..f65002a11a8 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_1.0.inst.cfg b/resources/variants/creality/creality_ender3s1pro_1.0.inst.cfg index 4c8200ec9c2..945953dfc04 100644 --- a/resources/variants/creality/creality_ender3s1pro_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_0.2.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.2.inst.cfg index bed0bbe51f6..d1983086162 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_0.3.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.3.inst.cfg index fba4336839c..061112ebadf 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_0.4.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.4.inst.cfg index 80a2f5cb712..cfd6f021d78 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_0.5.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.5.inst.cfg index d6071382f82..3d0682c2705 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_0.6.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.6.inst.cfg index 4abca4f34e1..0f8264dabed 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_0.8.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.8.inst.cfg index d5ef899ed67..639f4fd4f29 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_1.0.inst.cfg b/resources/variants/creality/creality_ender3v2neo_1.0.inst.cfg index 8dee589cd10..638e75887d6 100644 --- a/resources/variants/creality/creality_ender3v2neo_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_0.2.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.2.inst.cfg index 691b6eccb4f..b523a38f414 100644 --- a/resources/variants/creality/creality_ender3v3se_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_0.3.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.3.inst.cfg index 074386a24e3..6cf40ce9997 100644 --- a/resources/variants/creality/creality_ender3v3se_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_0.4.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.4.inst.cfg index c586b77f970..fd870564ece 100644 --- a/resources/variants/creality/creality_ender3v3se_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_0.5.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.5.inst.cfg index d97ae16d7f6..45ca3a01841 100644 --- a/resources/variants/creality/creality_ender3v3se_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_0.6.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.6.inst.cfg index e3caad0a868..4b7379635ed 100644 --- a/resources/variants/creality/creality_ender3v3se_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_0.8.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.8.inst.cfg index 21e3629a6bc..0978a0e8015 100644 --- a/resources/variants/creality/creality_ender3v3se_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_1.0.inst.cfg b/resources/variants/creality/creality_ender3v3se_1.0.inst.cfg index 13fd7c97fab..e2c6b803b93 100644 --- a/resources/variants/creality/creality_ender3v3se_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.2.inst.cfg b/resources/variants/creality/creality_ender4_0.2.inst.cfg index cc9e0b9d793..0034158d3f0 100644 --- a/resources/variants/creality/creality_ender4_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.3.inst.cfg b/resources/variants/creality/creality_ender4_0.3.inst.cfg index fd9c0d85c74..c54a86e2930 100644 --- a/resources/variants/creality/creality_ender4_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.4.inst.cfg b/resources/variants/creality/creality_ender4_0.4.inst.cfg index 431454efadb..0152f1c9579 100644 --- a/resources/variants/creality/creality_ender4_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.5.inst.cfg b/resources/variants/creality/creality_ender4_0.5.inst.cfg index 89c5b10479f..37c216cbfa2 100644 --- a/resources/variants/creality/creality_ender4_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.6.inst.cfg b/resources/variants/creality/creality_ender4_0.6.inst.cfg index 42be35588c4..aa48e63e09a 100644 --- a/resources/variants/creality/creality_ender4_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.8.inst.cfg b/resources/variants/creality/creality_ender4_0.8.inst.cfg index c695d8d92fa..1a980e4adaf 100644 --- a/resources/variants/creality/creality_ender4_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_1.0.inst.cfg b/resources/variants/creality/creality_ender4_1.0.inst.cfg index c7b47380425..35ed12644df 100644 --- a/resources/variants/creality/creality_ender4_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender4_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.2.inst.cfg b/resources/variants/creality/creality_ender5_0.2.inst.cfg index 9caa965f98a..a371ccb35b8 100644 --- a/resources/variants/creality/creality_ender5_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.3.inst.cfg b/resources/variants/creality/creality_ender5_0.3.inst.cfg index 290994c5436..2075784b2c5 100644 --- a/resources/variants/creality/creality_ender5_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.4.inst.cfg b/resources/variants/creality/creality_ender5_0.4.inst.cfg index 311b19acaf7..96733fd5271 100644 --- a/resources/variants/creality/creality_ender5_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.5.inst.cfg b/resources/variants/creality/creality_ender5_0.5.inst.cfg index 905089c0c09..ee184b97a4b 100644 --- a/resources/variants/creality/creality_ender5_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.6.inst.cfg b/resources/variants/creality/creality_ender5_0.6.inst.cfg index 219aa4cd1f7..e3cf08f93e1 100644 --- a/resources/variants/creality/creality_ender5_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.8.inst.cfg b/resources/variants/creality/creality_ender5_0.8.inst.cfg index cce7eef2d69..990162becc6 100644 --- a/resources/variants/creality/creality_ender5_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_1.0.inst.cfg b/resources/variants/creality/creality_ender5_1.0.inst.cfg index 848e52b9e33..8bb5a67d24a 100644 --- a/resources/variants/creality/creality_ender5_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender5_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.2.inst.cfg b/resources/variants/creality/creality_ender5plus_0.2.inst.cfg index 3890f624291..a0c1b19d198 100644 --- a/resources/variants/creality/creality_ender5plus_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.3.inst.cfg b/resources/variants/creality/creality_ender5plus_0.3.inst.cfg index 3b6871266cd..30c7d397ce6 100644 --- a/resources/variants/creality/creality_ender5plus_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.4.inst.cfg b/resources/variants/creality/creality_ender5plus_0.4.inst.cfg index 13bf3cd0fb4..40ac79b50e3 100644 --- a/resources/variants/creality/creality_ender5plus_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.5.inst.cfg b/resources/variants/creality/creality_ender5plus_0.5.inst.cfg index d42832dbcf6..a0cb2b6572b 100644 --- a/resources/variants/creality/creality_ender5plus_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.6.inst.cfg b/resources/variants/creality/creality_ender5plus_0.6.inst.cfg index d39802eed74..89cfdab22e8 100644 --- a/resources/variants/creality/creality_ender5plus_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.8.inst.cfg b/resources/variants/creality/creality_ender5plus_0.8.inst.cfg index c6125f40992..3a343352f14 100644 --- a/resources/variants/creality/creality_ender5plus_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_1.0.inst.cfg b/resources/variants/creality/creality_ender5plus_1.0.inst.cfg index dbb895e3171..8af92e62cdd 100644 --- a/resources/variants/creality/creality_ender5plus_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.2.inst.cfg b/resources/variants/creality/creality_ender5s1_0.2.inst.cfg index bb3e5312eab..abddcdccfb6 100644 --- a/resources/variants/creality/creality_ender5s1_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.3.inst.cfg b/resources/variants/creality/creality_ender5s1_0.3.inst.cfg index f7aa3350bc6..b7e32ab75bb 100644 --- a/resources/variants/creality/creality_ender5s1_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.4.inst.cfg b/resources/variants/creality/creality_ender5s1_0.4.inst.cfg index 6e38f503fcb..488dbcd893d 100644 --- a/resources/variants/creality/creality_ender5s1_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.5.inst.cfg b/resources/variants/creality/creality_ender5s1_0.5.inst.cfg index cb2b6845426..61a51c7cd13 100644 --- a/resources/variants/creality/creality_ender5s1_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.6.inst.cfg b/resources/variants/creality/creality_ender5s1_0.6.inst.cfg index 2c2d0480ff6..60a69f9b4c5 100644 --- a/resources/variants/creality/creality_ender5s1_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.8.inst.cfg b/resources/variants/creality/creality_ender5s1_0.8.inst.cfg index 2e95f8e3d00..04d29eedc6f 100644 --- a/resources/variants/creality/creality_ender5s1_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_1.0.inst.cfg b/resources/variants/creality/creality_ender5s1_1.0.inst.cfg index 48fba7a715b..f5d8bb3adbd 100644 --- a/resources/variants/creality/creality_ender5s1_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.2.inst.cfg b/resources/variants/creality/creality_ender6_0.2.inst.cfg index e21c3659f49..5057234c7f6 100644 --- a/resources/variants/creality/creality_ender6_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.3.inst.cfg b/resources/variants/creality/creality_ender6_0.3.inst.cfg index c129731e9bd..ffd82833b0a 100644 --- a/resources/variants/creality/creality_ender6_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.4.inst.cfg b/resources/variants/creality/creality_ender6_0.4.inst.cfg index b1e14dfb455..bf288d354d7 100644 --- a/resources/variants/creality/creality_ender6_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.5.inst.cfg b/resources/variants/creality/creality_ender6_0.5.inst.cfg index b4f0aa9199f..01cb313eb88 100644 --- a/resources/variants/creality/creality_ender6_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.6.inst.cfg b/resources/variants/creality/creality_ender6_0.6.inst.cfg index e1cba4411ce..12044c5a152 100644 --- a/resources/variants/creality/creality_ender6_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.8.inst.cfg b/resources/variants/creality/creality_ender6_0.8.inst.cfg index d8ebefe7056..3f3bf9f0d45 100644 --- a/resources/variants/creality/creality_ender6_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_1.0.inst.cfg b/resources/variants/creality/creality_ender6_1.0.inst.cfg index e4f2aea7e62..5221d2db3c0 100644 --- a/resources/variants/creality/creality_ender6_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender6_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_0.2.inst.cfg b/resources/variants/creality/creality_sermoond1_0.2.inst.cfg index e3f4be79345..b123de554ef 100644 --- a/resources/variants/creality/creality_sermoond1_0.2.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_0.3.inst.cfg b/resources/variants/creality/creality_sermoond1_0.3.inst.cfg index e78ba1f27d6..89358a5324f 100644 --- a/resources/variants/creality/creality_sermoond1_0.3.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_0.4.inst.cfg b/resources/variants/creality/creality_sermoond1_0.4.inst.cfg index 03c6120b0db..c42bd666b89 100644 --- a/resources/variants/creality/creality_sermoond1_0.4.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_0.5.inst.cfg b/resources/variants/creality/creality_sermoond1_0.5.inst.cfg index 72014114320..abbf2920921 100644 --- a/resources/variants/creality/creality_sermoond1_0.5.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_0.6.inst.cfg b/resources/variants/creality/creality_sermoond1_0.6.inst.cfg index d7e7ef40827..9e11dbbd850 100644 --- a/resources/variants/creality/creality_sermoond1_0.6.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_0.8.inst.cfg b/resources/variants/creality/creality_sermoond1_0.8.inst.cfg index 714a46c4d29..3d8ab3bde29 100644 --- a/resources/variants/creality/creality_sermoond1_0.8.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_1.0.inst.cfg b/resources/variants/creality/creality_sermoond1_1.0.inst.cfg index e48fcb9bbd3..d2fc1cc66af 100644 --- a/resources/variants/creality/creality_sermoond1_1.0.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_sermoonv1_0.4.inst.cfg b/resources/variants/creality/creality_sermoonv1_0.4.inst.cfg index 7955b804b46..d83b26b9b59 100644 --- a/resources/variants/creality/creality_sermoonv1_0.4.inst.cfg +++ b/resources/variants/creality/creality_sermoonv1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.4.inst.cfg index c87bcdbb9c3..fb2873bfcac 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.8.inst.cfg index e40fe89651e..33b2f0c7575 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_1.0.inst.cfg index 590e5cd9bb8..b672317c15e 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.2.inst.cfg index 2de668d64a7..9c5397b535c 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.4.inst.cfg index dfd771e72b4..4d3bb38df9e 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.6.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.6.inst.cfg index ef5ae3341bb..71cd43dc29f 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.6.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.8.inst.cfg index efa201d3d4a..3862119ecd4 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.0.inst.cfg index 42123ce059e..a3010896eba 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.2.inst.cfg index a30cdf14ec1..572e3a0a05c 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.4.inst.cfg index b4b4005e615..b91da5cce56 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.8.inst.cfg index e79dcfdcd03..1790d9ef274 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.4.inst.cfg index 4856377ec58..566688fedce 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.8.inst.cfg index dbc7c0e8ef7..17f5f768c5a 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_1.0.inst.cfg index 692c4f25cde..c78ce860302 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.2.inst.cfg index 3734f5254b2..fe5aab9f9cd 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.4.inst.cfg index c0a0e5883b8..26841774434 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.6.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.6.inst.cfg index 2d1ff5b1083..91c59f0e6dd 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.6.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.8.inst.cfg index 56c0388ecf0..431d7eb7e11 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.0.inst.cfg index 49d817fb033..eae1a408f44 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.2.inst.cfg index 70ebe157add..754bb93c020 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.4.inst.cfg index 46bf6148c43..8ea81a3972c 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.8.inst.cfg index 4bcdd1cb58e..84eca0f2531 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.4.inst.cfg index 0a15ae83163..3ac5e342054 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.8.inst.cfg index f090565c4ca..f9ae98aa0f0 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_brass_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_brass_1.0.inst.cfg index a15400a6db6..e1749cb4297 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_brass_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_brass_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.2.inst.cfg index 1b02f9637b5..cb0d9a6d61a 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.4.inst.cfg index 69b6b5e872d..f5995c20dcb 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.6.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.6.inst.cfg index 2df35e31dc0..f907b89e87d 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.6.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.8.inst.cfg index 6fd73a0fe40..badcdc87f7a 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.0.inst.cfg index addcb3fb55a..65c35eea1e6 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.2.inst.cfg index 634a91f5330..021c0f141c2 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.4.inst.cfg index 4b0b6853f25..25f25029a04 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.8.inst.cfg index 12e4881d48c..b9cbe805d47 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_0.4.inst.cfg b/resources/variants/dagoma/dagoma_sigma_0.4.inst.cfg index 4008817b37d..431f06f81f1 100644 --- a/resources/variants/dagoma/dagoma_sigma_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_0.8.inst.cfg b/resources/variants/dagoma/dagoma_sigma_0.8.inst.cfg index ea1c8673667..46cad40b286 100644 --- a/resources/variants/dagoma/dagoma_sigma_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_brass_0.4.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_brass_0.4.inst.cfg index 0e090023fae..567cf160cc3 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_brass_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_brass_0.8.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_brass_0.8.inst.cfg index bc9a8e9ea52..a509a373107 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_brass_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_brass_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.4.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.4.inst.cfg index 0ea1a14227f..42c01ad004e 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.8.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.8.inst.cfg index 96f9d485dc5..6498a7a26bc 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.4.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.4.inst.cfg index 1e1664a0ac6..82e80ddd920 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.8.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.8.inst.cfg index b2dd1421d77..8df2ac5bf5a 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_steel_0.4.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_steel_0.4.inst.cfg index d85b89aaa31..33d95852419 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_steel_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_steel_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_steel_0.8.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_steel_0.8.inst.cfg index d36c2e344d3..7ad9767f093 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_steel_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_steel_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20_fbe025.inst.cfg index 291d9cc5555..dd991034be7 100644 --- a/resources/variants/deltacomb/deltacomb_dc20_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20_fbe025.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Deltacomb 3D hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20_fbe040.inst.cfg index a8c5aed70b3..9eeb0d57980 100644 --- a/resources/variants/deltacomb/deltacomb_dc20_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20_fbe040.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Deltacomb 3D hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20_fbe060.inst.cfg index 73ecc333b30..aceb33a763c 100644 --- a/resources/variants/deltacomb/deltacomb_dc20_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20_fbe060.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Deltacomb 3D hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg index af9f1010d80..2eba3d6b5f6 100755 --- a/resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg index 9653ed674c4..a617f78b93d 100755 --- a/resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg index 0afd0643d80..a5c92a83dd6 100755 --- a/resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg index b7648046f70..2dedb7fa94f 100755 --- a/resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg index 524758ad65e..0972964ca5b 100755 --- a/resources/variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg index e93cfb33d0c..20cb7fb9602 100755 --- a/resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg index 099be9cc5e4..e24cd0ea6d3 100755 --- a/resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg index 34eb1f7b2ac..3ae6090e662 100755 --- a/resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg index 6bc04858079..c40597cb87b 100755 --- a/resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg index 6d057424c71..6742aedfc96 100755 --- a/resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg index 0c6221f45d3..0e03d17023c 100755 --- a/resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg index 0edb30443a4..60a4286938e 100755 --- a/resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg index 98cadeed245..dc2925f77c7 100755 --- a/resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg index 0bec048c025..15e4915e2ac 100755 --- a/resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg index 73dfd411343..6d491181196 100755 --- a/resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg index cf7a19bc713..1cdcb390e93 100755 --- a/resources/variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg index aab69dd988e..da67df45fd9 100755 --- a/resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg index 72e267f34f6..cf4e85908d5 100755 --- a/resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg index 7a3ffa4745d..150e4a17b56 100755 --- a/resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg index e05a8e4e2dd..4854a810f81 100755 --- a/resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg index 3fa9cdc970c..d8195ef346f 100755 --- a/resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg index 8ffd17d7333..a033fefc153 100755 --- a/resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg index 7c2ebcfe705..c37b96738ad 100755 --- a/resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg index 80a83e0d6b2..3e953323962 100755 --- a/resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg index 3cdcb1927c3..0daf1de4387 100755 --- a/resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg index 63fb3106812..070d8421e8a 100755 --- a/resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg index 56de1f467aa..7131e12280f 100755 --- a/resources/variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg index 809cd48e852..a441f1a043c 100755 --- a/resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg index 410b162d1dd..dd9fd9d17d2 100755 --- a/resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg index cb7adbdefc8..988ec955572 100755 --- a/resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/diy/diy220_0.2.inst.cfg b/resources/variants/diy/diy220_0.2.inst.cfg index c427394af92..b7233a9d25c 100644 --- a/resources/variants/diy/diy220_0.2.inst.cfg +++ b/resources/variants/diy/diy220_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/diy/diy220_0.3.inst.cfg b/resources/variants/diy/diy220_0.3.inst.cfg index 0b593365721..22dd3a30322 100644 --- a/resources/variants/diy/diy220_0.3.inst.cfg +++ b/resources/variants/diy/diy220_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/diy/diy220_0.4.inst.cfg b/resources/variants/diy/diy220_0.4.inst.cfg index 9579c201e52..bc4ac126c10 100644 --- a/resources/variants/diy/diy220_0.4.inst.cfg +++ b/resources/variants/diy/diy220_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/diy/diy220_0.5.inst.cfg b/resources/variants/diy/diy220_0.5.inst.cfg index d04fd167e22..13f0d6c6178 100644 --- a/resources/variants/diy/diy220_0.5.inst.cfg +++ b/resources/variants/diy/diy220_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/diy/diy220_0.6.inst.cfg b/resources/variants/diy/diy220_0.6.inst.cfg index 519b04d1863..f3b1d65bded 100644 --- a/resources/variants/diy/diy220_0.6.inst.cfg +++ b/resources/variants/diy/diy220_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/diy/diy220_0.8.inst.cfg b/resources/variants/diy/diy220_0.8.inst.cfg index b27a536efb5..ca159b00b91 100644 --- a/resources/variants/diy/diy220_0.8.inst.cfg +++ b/resources/variants/diy/diy220_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_0.25.inst.cfg b/resources/variants/dxu/dxu_0.25.inst.cfg index 16ee7f4e154..a488e4d1796 100644 --- a/resources/variants/dxu/dxu_0.25.inst.cfg +++ b/resources/variants/dxu/dxu_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_0.4.inst.cfg b/resources/variants/dxu/dxu_0.4.inst.cfg index ecf4cbf83c0..7302b73604e 100644 --- a/resources/variants/dxu/dxu_0.4.inst.cfg +++ b/resources/variants/dxu/dxu_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_0.6.inst.cfg b/resources/variants/dxu/dxu_0.6.inst.cfg index 4d04dac66b9..b3850a06009 100644 --- a/resources/variants/dxu/dxu_0.6.inst.cfg +++ b/resources/variants/dxu/dxu_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_0.8.inst.cfg b/resources/variants/dxu/dxu_0.8.inst.cfg index 1a6f0f22bed..bbdc10ab072 100644 --- a/resources/variants/dxu/dxu_0.8.inst.cfg +++ b/resources/variants/dxu/dxu_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_dual_0.25.inst.cfg b/resources/variants/dxu/dxu_dual_0.25.inst.cfg index 9a6516bb7be..6983e959b79 100644 --- a/resources/variants/dxu/dxu_dual_0.25.inst.cfg +++ b/resources/variants/dxu/dxu_dual_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_dual_0.4.inst.cfg b/resources/variants/dxu/dxu_dual_0.4.inst.cfg index 10daf54b52c..0dd99cc77d5 100644 --- a/resources/variants/dxu/dxu_dual_0.4.inst.cfg +++ b/resources/variants/dxu/dxu_dual_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_dual_0.6.inst.cfg b/resources/variants/dxu/dxu_dual_0.6.inst.cfg index 798377f3ac9..5dcac9741e6 100644 --- a/resources/variants/dxu/dxu_dual_0.6.inst.cfg +++ b/resources/variants/dxu/dxu_dual_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_dual_0.8.inst.cfg b/resources/variants/dxu/dxu_dual_0.8.inst.cfg index a392b95292c..cedb16e925e 100644 --- a/resources/variants/dxu/dxu_dual_0.8.inst.cfg +++ b/resources/variants/dxu/dxu_dual_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_0.25.inst.cfg b/resources/variants/dxu/dxu_umo_0.25.inst.cfg index 2fc196bf198..8f8d06cb5fe 100644 --- a/resources/variants/dxu/dxu_umo_0.25.inst.cfg +++ b/resources/variants/dxu/dxu_umo_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_0.4.inst.cfg b/resources/variants/dxu/dxu_umo_0.4.inst.cfg index d98fdbcc7bd..e840ab33f82 100644 --- a/resources/variants/dxu/dxu_umo_0.4.inst.cfg +++ b/resources/variants/dxu/dxu_umo_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_0.6.inst.cfg b/resources/variants/dxu/dxu_umo_0.6.inst.cfg index 9d564db4a10..87cedca49c5 100644 --- a/resources/variants/dxu/dxu_umo_0.6.inst.cfg +++ b/resources/variants/dxu/dxu_umo_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_0.8.inst.cfg b/resources/variants/dxu/dxu_umo_0.8.inst.cfg index fc667138800..07945af6230 100644 --- a/resources/variants/dxu/dxu_umo_0.8.inst.cfg +++ b/resources/variants/dxu/dxu_umo_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_dual_0.25.inst.cfg b/resources/variants/dxu/dxu_umo_dual_0.25.inst.cfg index fc4fffcb4e1..86430accc95 100644 --- a/resources/variants/dxu/dxu_umo_dual_0.25.inst.cfg +++ b/resources/variants/dxu/dxu_umo_dual_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_dual_0.4.inst.cfg b/resources/variants/dxu/dxu_umo_dual_0.4.inst.cfg index 85f5b17d2d3..255ffc9dd14 100644 --- a/resources/variants/dxu/dxu_umo_dual_0.4.inst.cfg +++ b/resources/variants/dxu/dxu_umo_dual_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_dual_0.6.inst.cfg b/resources/variants/dxu/dxu_umo_dual_0.6.inst.cfg index 5af2ac18a15..5a16beb3c63 100644 --- a/resources/variants/dxu/dxu_umo_dual_0.6.inst.cfg +++ b/resources/variants/dxu/dxu_umo_dual_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_dual_0.8.inst.cfg b/resources/variants/dxu/dxu_umo_dual_0.8.inst.cfg index eae270181b5..57e7bd70e01 100644 --- a/resources/variants/dxu/dxu_umo_dual_0.8.inst.cfg +++ b/resources/variants/dxu/dxu_umo_dual_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.20.inst.cfg index ff14878f695..54af683b9c9 100644 --- a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.40.inst.cfg index 30ee88ddd37..3217a1a6ce7 100644 --- a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.60.inst.cfg index 8a5d31cca26..bc82566e9cb 100644 --- a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.80.inst.cfg index 558d8fbdadb..2a33d85bddc 100644 --- a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.20.inst.cfg index 4c1180e555a..17298221b2f 100644 --- a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.40.inst.cfg index a38d2db9890..fc59701f7a3 100644 --- a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.60.inst.cfg index 13cd15ad7d3..0da41f7840a 100644 --- a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.80.inst.cfg index 785396f64a0..7beae5d3e5b 100644 --- a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.20.inst.cfg index eded48e16d5..9a5939570f3 100644 --- a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.40.inst.cfg index 68655ba6f6d..12ff110d2f1 100644 --- a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.60.inst.cfg index 93094eced63..b4767809f01 100644 --- a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.80.inst.cfg index cc5430a6875..1982bc0cf50 100644 --- a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.20.inst.cfg index dba8f4835c5..037e20a244c 100644 --- a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.40.inst.cfg index c289d4595f9..c10c29be43a 100644 --- a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.60.inst.cfg index 23a9449b569..cdec82e36ca 100644 --- a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.80.inst.cfg index a4ec2af878c..71b05584c77 100644 --- a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.20.inst.cfg index 253e434aaa9..79905f009ef 100644 --- a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.40.inst.cfg index 1a638c6f36c..23fd5dbe3be 100644 --- a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.60.inst.cfg index 4ae27b83f3b..192b22cd3d7 100644 --- a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.80.inst.cfg index bd4be2b2dc5..385b1078813 100644 --- a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.20.inst.cfg index 502b18c49a6..e3dece63997 100644 --- a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.40.inst.cfg index 8e5aa468d8a..c47b9bd4108 100644 --- a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.60.inst.cfg index 58dd28cbc1f..a1eddd732ae 100644 --- a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.80.inst.cfg index 669d7207e54..7ee345c400c 100644 --- a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.20.inst.cfg index ef39a4560f0..7f1bd2395ca 100644 --- a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.40.inst.cfg index 4331b27eda0..6825ef8695b 100644 --- a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.60.inst.cfg index 7d518a6df6f..15bb5938edd 100644 --- a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.80.inst.cfg index c5183f0e7d8..4c75c5ab10b 100644 --- a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.20.inst.cfg index 54301e7ad8e..83c207f638e 100644 --- a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.40.inst.cfg index 0e49ef7d518..c7177f03c4c 100644 --- a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.60.inst.cfg index 9e60d5aaa50..a9531188900 100644 --- a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.80.inst.cfg index c69d81dab84..508fba410cf 100644 --- a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.20.inst.cfg index 3498effd991..7f982712ef1 100644 --- a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.40.inst.cfg index 086826b12b9..dac5cd8317e 100644 --- a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.60.inst.cfg index 5ad651685a7..4c69919d3d1 100644 --- a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.80.inst.cfg index 3380d42cc8a..bcb9cc218dc 100644 --- a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.20.inst.cfg index 5dea2c50ce0..8b8fdb67c10 100644 --- a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.40.inst.cfg index a7d62bdcffd..7bb3f29a7c7 100644 --- a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.60.inst.cfg index 018d6d4881e..012d6b6ce7a 100644 --- a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.80.inst.cfg index fc7177d14c5..9baa55881e5 100644 --- a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.20.inst.cfg index 16ac330f8ab..474b80a73f9 100644 --- a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.40.inst.cfg index 2d0237ff34f..c67b0aeae62 100644 --- a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.60.inst.cfg index bd960d80e16..bb9711b1985 100644 --- a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.80.inst.cfg index 32d38604985..2ffbd30b177 100644 --- a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg index b938fd368e2..ff0e79e8f9e 100644 --- a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg index 6b6401b95f7..c74a427847d 100644 --- a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg index f7b4f3dccde..77378889589 100644 --- a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg index e3c2e1ed54b..37f1b635520 100644 --- a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.20.inst.cfg index c06a52f29b9..41bfaa08a07 100644 --- a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.40.inst.cfg index 2d3802546f9..91f42e476e5 100644 --- a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.60.inst.cfg index e0a715a717d..aa13f03c451 100644 --- a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.80.inst.cfg index 196a9f8ce0e..5808e0a6772 100644 --- a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_hyb35.inst.cfg b/resources/variants/fabtotum/fabtotum_hyb35.inst.cfg index 627675315c0..60ef115b5f5 100644 --- a/resources/variants/fabtotum/fabtotum_hyb35.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_hyb35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_lite04.inst.cfg b/resources/variants/fabtotum/fabtotum_lite04.inst.cfg index 1367297a485..56f51646792 100644 --- a/resources/variants/fabtotum/fabtotum_lite04.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_lite04.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_lite06.inst.cfg b/resources/variants/fabtotum/fabtotum_lite06.inst.cfg index 57c84f42f78..cc9f291bde7 100644 --- a/resources/variants/fabtotum/fabtotum_lite06.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_lite06.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_pro02.inst.cfg b/resources/variants/fabtotum/fabtotum_pro02.inst.cfg index 6808a335862..63e13314a63 100644 --- a/resources/variants/fabtotum/fabtotum_pro02.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_pro02.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_pro04.inst.cfg b/resources/variants/fabtotum/fabtotum_pro04.inst.cfg index bab320bb9a1..ce5beb4e347 100644 --- a/resources/variants/fabtotum/fabtotum_pro04.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_pro04.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_pro06.inst.cfg b/resources/variants/fabtotum/fabtotum_pro06.inst.cfg index 616f1984d45..faad25df652 100644 --- a/resources/variants/fabtotum/fabtotum_pro06.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_pro06.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_pro08.inst.cfg b/resources/variants/fabtotum/fabtotum_pro08.inst.cfg index ecf117c1dd9..01661cf9a96 100644 --- a/resources/variants/fabtotum/fabtotum_pro08.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_pro08.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/farm2/farm2_ce_printhead_0.2.inst.cfg b/resources/variants/farm2/farm2_ce_printhead_0.2.inst.cfg index b32fab27a98..2806a0e56c3 100644 --- a/resources/variants/farm2/farm2_ce_printhead_0.2.inst.cfg +++ b/resources/variants/farm2/farm2_ce_printhead_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/farm2/farm2_ce_printhead_0.3.inst.cfg b/resources/variants/farm2/farm2_ce_printhead_0.3.inst.cfg index dc61348f5e1..c0ed4d0b82b 100644 --- a/resources/variants/farm2/farm2_ce_printhead_0.3.inst.cfg +++ b/resources/variants/farm2/farm2_ce_printhead_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/farm2/farm2_ce_printhead_0.4.inst.cfg b/resources/variants/farm2/farm2_ce_printhead_0.4.inst.cfg index f6317d5a6bf..c49f4b8f7f8 100644 --- a/resources/variants/farm2/farm2_ce_printhead_0.4.inst.cfg +++ b/resources/variants/farm2/farm2_ce_printhead_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/farm2/farm2_ce_printhead_0.5.inst.cfg b/resources/variants/farm2/farm2_ce_printhead_0.5.inst.cfg index f6d668441f5..7eda0784d34 100644 --- a/resources/variants/farm2/farm2_ce_printhead_0.5.inst.cfg +++ b/resources/variants/farm2/farm2_ce_printhead_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/farm2/farm2_printhead_0.2.inst.cfg b/resources/variants/farm2/farm2_printhead_0.2.inst.cfg index 884f277d711..c32dd5b7ee2 100644 --- a/resources/variants/farm2/farm2_printhead_0.2.inst.cfg +++ b/resources/variants/farm2/farm2_printhead_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/farm2/farm2_printhead_0.3.inst.cfg b/resources/variants/farm2/farm2_printhead_0.3.inst.cfg index 348d84f431e..c85557732e1 100644 --- a/resources/variants/farm2/farm2_printhead_0.3.inst.cfg +++ b/resources/variants/farm2/farm2_printhead_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/farm2/farm2_printhead_0.4.inst.cfg b/resources/variants/farm2/farm2_printhead_0.4.inst.cfg index fb324a7b942..d1d5139ef19 100644 --- a/resources/variants/farm2/farm2_printhead_0.4.inst.cfg +++ b/resources/variants/farm2/farm2_printhead_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/farm2/farm2_printhead_0.5.inst.cfg b/resources/variants/farm2/farm2_printhead_0.5.inst.cfg index 51e1998f73e..f3800018ecf 100644 --- a/resources/variants/farm2/farm2_printhead_0.5.inst.cfg +++ b/resources/variants/farm2/farm2_printhead_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/felix/felixpro2_0.25.inst.cfg b/resources/variants/felix/felixpro2_0.25.inst.cfg index c29733b4b5f..0517d24161b 100644 --- a/resources/variants/felix/felixpro2_0.25.inst.cfg +++ b/resources/variants/felix/felixpro2_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = pnks hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/felix/felixpro2_0.35.inst.cfg b/resources/variants/felix/felixpro2_0.35.inst.cfg index 3e63477be23..e9265c414e1 100644 --- a/resources/variants/felix/felixpro2_0.35.inst.cfg +++ b/resources/variants/felix/felixpro2_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = pnks hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/felix/felixpro2_0.50.inst.cfg b/resources/variants/felix/felixpro2_0.50.inst.cfg index 7aa71ab40a4..8a69b37e2d9 100644 --- a/resources/variants/felix/felixpro2_0.50.inst.cfg +++ b/resources/variants/felix/felixpro2_0.50.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = pnks hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/felix/felixpro2_0.70.inst.cfg b/resources/variants/felix/felixpro2_0.70.inst.cfg index 7650505cb98..e0b67653159 100644 --- a/resources/variants/felix/felixpro2_0.70.inst.cfg +++ b/resources/variants/felix/felixpro2_0.70.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = pnks hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/felix/felixtec4_0.25.inst.cfg b/resources/variants/felix/felixtec4_0.25.inst.cfg index f07db133084..9e3586ebe9c 100644 --- a/resources/variants/felix/felixtec4_0.25.inst.cfg +++ b/resources/variants/felix/felixtec4_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = kerog777 hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/felix/felixtec4_0.35.inst.cfg b/resources/variants/felix/felixtec4_0.35.inst.cfg index 590a3a3664d..84090ef30c7 100644 --- a/resources/variants/felix/felixtec4_0.35.inst.cfg +++ b/resources/variants/felix/felixtec4_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = kerog777 hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/felix/felixtec4_0.50.inst.cfg b/resources/variants/felix/felixtec4_0.50.inst.cfg index 5c75a42e069..09086168e0c 100644 --- a/resources/variants/felix/felixtec4_0.50.inst.cfg +++ b/resources/variants/felix/felixtec4_0.50.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = kerog777 hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/felix/felixtec4_0.70.inst.cfg b/resources/variants/felix/felixtec4_0.70.inst.cfg index b5ff8d48842..c9f492ecfef 100644 --- a/resources/variants/felix/felixtec4_0.70.inst.cfg +++ b/resources/variants/felix/felixtec4_0.70.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = kerog777 hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3_0.3.inst.cfg index fdaea7e9f06..6eb9b886f0b 100644 --- a/resources/variants/flashforge/flashforge_adventurer3_0.3.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3_0.4.inst.cfg index 5a7a2520ada..5c7a08ba03b 100644 --- a/resources/variants/flashforge/flashforge_adventurer3_0.4.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3_0.6.inst.cfg index bee4393cc95..c05e4758805 100644 --- a/resources/variants/flashforge/flashforge_adventurer3_0.6.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg index 404c0efb06f..c8d7535ede5 100644 --- a/resources/variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg index 20cb91c62ed..f3b9aa3bf22 100644 --- a/resources/variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg index 531763721a1..974b554bf4f 100644 --- a/resources/variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4_0.3.inst.cfg index 661de9a8020..4c41f5e7676 100644 --- a/resources/variants/flashforge/flashforge_adventurer4_0.3.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4_0.4.inst.cfg index 7944ab4d6ae..afb2a463a9d 100644 --- a/resources/variants/flashforge/flashforge_adventurer4_0.4.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4_0.6.inst.cfg index 2e0bb4d36a6..efdc18da4c8 100644 --- a/resources/variants/flashforge/flashforge_adventurer4_0.6.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg index 25f6eba9bf7..208cb50e2c5 100644 --- a/resources/variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg index c073e058315..7a74b5a8393 100644 --- a/resources/variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg index 5801637f402..674858edadb 100644 --- a/resources/variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_base_0.20.inst.cfg b/resources/variants/flashforge/flashforge_base_0.20.inst.cfg index daf917a360f..142c5293dc6 100644 --- a/resources/variants/flashforge/flashforge_base_0.20.inst.cfg +++ b/resources/variants/flashforge/flashforge_base_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_base_0.30.inst.cfg b/resources/variants/flashforge/flashforge_base_0.30.inst.cfg index fce9cb55f40..d533d14756a 100644 --- a/resources/variants/flashforge/flashforge_base_0.30.inst.cfg +++ b/resources/variants/flashforge/flashforge_base_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_base_0.40.inst.cfg b/resources/variants/flashforge/flashforge_base_0.40.inst.cfg index 0744c7c68e7..f6c0995f8da 100644 --- a/resources/variants/flashforge/flashforge_base_0.40.inst.cfg +++ b/resources/variants/flashforge/flashforge_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_base_0.50.inst.cfg b/resources/variants/flashforge/flashforge_base_0.50.inst.cfg index 6a0f694e229..4562c778851 100644 --- a/resources/variants/flashforge/flashforge_base_0.50.inst.cfg +++ b/resources/variants/flashforge/flashforge_base_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_base_0.60.inst.cfg b/resources/variants/flashforge/flashforge_base_0.60.inst.cfg index 67d3fcd4c67..80fc272e50c 100644 --- a/resources/variants/flashforge/flashforge_base_0.60.inst.cfg +++ b/resources/variants/flashforge/flashforge_base_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_dreamer_nx_0.20.inst.cfg b/resources/variants/flashforge/flashforge_dreamer_nx_0.20.inst.cfg index 2336dc5429b..a165b04fb7d 100644 --- a/resources/variants/flashforge/flashforge_dreamer_nx_0.20.inst.cfg +++ b/resources/variants/flashforge/flashforge_dreamer_nx_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_dreamer_nx_0.30.inst.cfg b/resources/variants/flashforge/flashforge_dreamer_nx_0.30.inst.cfg index a3944902b3e..44d4f6da078 100644 --- a/resources/variants/flashforge/flashforge_dreamer_nx_0.30.inst.cfg +++ b/resources/variants/flashforge/flashforge_dreamer_nx_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_dreamer_nx_0.40.inst.cfg b/resources/variants/flashforge/flashforge_dreamer_nx_0.40.inst.cfg index b63fabe9456..5da36327492 100644 --- a/resources/variants/flashforge/flashforge_dreamer_nx_0.40.inst.cfg +++ b/resources/variants/flashforge/flashforge_dreamer_nx_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_dreamer_nx_0.50.inst.cfg b/resources/variants/flashforge/flashforge_dreamer_nx_0.50.inst.cfg index ec81a7c2e90..0c49c7a5545 100644 --- a/resources/variants/flashforge/flashforge_dreamer_nx_0.50.inst.cfg +++ b/resources/variants/flashforge/flashforge_dreamer_nx_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_dreamer_nx_0.60.inst.cfg b/resources/variants/flashforge/flashforge_dreamer_nx_0.60.inst.cfg index 53ff0d67a75..8812d008459 100644 --- a/resources/variants/flashforge/flashforge_dreamer_nx_0.60.inst.cfg +++ b/resources/variants/flashforge/flashforge_dreamer_nx_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.25.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.25.inst.cfg index 39a0d590c96..ec850a35128 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.25.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.30.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.30.inst.cfg index ec73fcc5256..e360bc54ac0 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.30.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.40.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.40.inst.cfg index 16d8371149f..559efcc3e33 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.40.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.50.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.50.inst.cfg index cc22daaec0f..b24ba7b7f73 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.50.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.60.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.60.inst.cfg index 03b72994c54..dcf4ee1cbbc 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.60.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.80.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.80.inst.cfg index dd543e2675a..a0eec97673c 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.80.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.25.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.25.inst.cfg index 5bae98edc14..a2bfce3a5e8 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.25.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.30.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.30.inst.cfg index 233f3eb2be2..eeaaa3c7ec4 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.30.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.40.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.40.inst.cfg index 4c1365fbee8..350768d4893 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.40.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.50.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.50.inst.cfg index 24739c79ccf..f999358203b 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.50.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.60.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.60.inst.cfg index 06620b39cf9..68da0ebe581 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.60.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.80.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.80.inst.cfg index 32fb9abcdc5..f4361655538 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.80.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.25.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.25.inst.cfg index 69457b3e961..18e877f0490 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.25.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.30.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.30.inst.cfg index 9bff6523b59..a06bf2b2e71 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.30.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.40.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.40.inst.cfg index 5e1bf0c0e3c..dcbc1c59471 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.40.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.50.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.50.inst.cfg index 5dcc310b584..7b8d3a09506 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.50.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.60.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.60.inst.cfg index 97bda891936..ed4178c2e62 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.60.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.80.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.80.inst.cfg index 79e4dfcfe59..9b6752cddfe 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.80.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.25.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.25.inst.cfg index bb673ccc53d..558ba90c08a 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.25.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.30.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.30.inst.cfg index ffae1f125d7..533e4910924 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.30.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.40.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.40.inst.cfg index 574ec2638a3..ee4bfe444ee 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.40.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.50.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.50.inst.cfg index 908a07a12eb..0be6244d22f 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.50.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.60.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.60.inst.cfg index 816401bed08..2b6fdc91b50 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.60.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.80.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.80.inst.cfg index c34767b93e5..2ce93740e6b 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.80.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fusion3/fusion3_0.4.inst.cfg b/resources/variants/fusion3/fusion3_0.4.inst.cfg index 261f26604f0..032d1df8d6f 100644 --- a/resources/variants/fusion3/fusion3_0.4.inst.cfg +++ b/resources/variants/fusion3/fusion3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fusion3/fusion3_0.6.inst.cfg b/resources/variants/fusion3/fusion3_0.6.inst.cfg index 005f95660e7..d71f9bf60ae 100644 --- a/resources/variants/fusion3/fusion3_0.6.inst.cfg +++ b/resources/variants/fusion3/fusion3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fusion3/fusion3_0.8.inst.cfg b/resources/variants/fusion3/fusion3_0.8.inst.cfg index 7d0fdd0cead..82d13ac5094 100644 --- a/resources/variants/fusion3/fusion3_0.8.inst.cfg +++ b/resources/variants/fusion3/fusion3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fusion3/fusion3_f410_0.4.inst.cfg b/resources/variants/fusion3/fusion3_f410_0.4.inst.cfg index 261f26604f0..032d1df8d6f 100644 --- a/resources/variants/fusion3/fusion3_f410_0.4.inst.cfg +++ b/resources/variants/fusion3/fusion3_f410_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fusion3/fusion3_f410_0.6.inst.cfg b/resources/variants/fusion3/fusion3_f410_0.6.inst.cfg index 005f95660e7..d71f9bf60ae 100644 --- a/resources/variants/fusion3/fusion3_f410_0.6.inst.cfg +++ b/resources/variants/fusion3/fusion3_f410_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fusion3/fusion3_f410_0.8.inst.cfg b/resources/variants/fusion3/fusion3_f410_0.8.inst.cfg index 7d0fdd0cead..82d13ac5094 100644 --- a/resources/variants/fusion3/fusion3_f410_0.8.inst.cfg +++ b/resources/variants/fusion3/fusion3_f410_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.2.inst.cfg index 9a9e9878e90..073bfde093d 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.3.inst.cfg index 2202e0a978f..35738c38b4d 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.4.inst.cfg index fc88f406112..771d388981a 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.5.inst.cfg index 698b17ef685..3def0e3b77e 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.6.inst.cfg index 65f63a11a1e..c3339144f02 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.8.inst.cfg index 1430a9d5cb9..d9d55c53bab 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_1.0.inst.cfg index 8c29cae1bb8..67928921d48 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.2.inst.cfg index 7be8d97e018..b1214cc24b5 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.3.inst.cfg index 3201d2b9c36..55648cf4be6 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.4.inst.cfg index 568b11da35e..8a7aeae477f 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.5.inst.cfg index 720f7f2dced..7edabf63275 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.6.inst.cfg index ecdddc5cbd0..ead8c5b8917 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.8.inst.cfg index 5e85dd0b29c..cdfa9fe6717 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_1.0.inst.cfg index fdb5b146bcc..faee4e113b3 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.2.inst.cfg index 2f00ab96559..88156da5e3f 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.3.inst.cfg index c19b8e959fc..57da0f5263c 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.4.inst.cfg index 9d2ab142a9f..93b6d43e9db 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.5.inst.cfg index 8ade0c96d53..51e95b839cf 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.6.inst.cfg index 5fe235062e4..e46f80f6855 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.8.inst.cfg index fe6e60220c5..bf1850752f8 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_1.0.inst.cfg index 19de98bcf73..ae25d00c77f 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.2.inst.cfg index ee96e1c069f..7ce2a570e2e 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.3.inst.cfg index e86a3f42655..5029b53c1db 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.4.inst.cfg index 187ad167f92..6940fc607c5 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.5.inst.cfg index 73f36e97c9b..0086d1c6034 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.6.inst.cfg index b685d8b0acc..5b27a712db6 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.8.inst.cfg index 3a961ab375e..e4dc87a4938 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_1.0.inst.cfg index 45e7f7b6fc0..76cb672edab 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.2.inst.cfg index 1500608c0f5..0be00235ea4 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.3.inst.cfg index 028454782f1..9cec948b0a7 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.4.inst.cfg index 6a0384123b8..f35d51b4a11 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.5.inst.cfg index 8beb28df6d2..563f8b902b7 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.6.inst.cfg index 690db843a82..d1902b60c74 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.8.inst.cfg index 55482393649..50c7f204577 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_1.0.inst.cfg index 64b436c163a..207f845af0a 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.2.inst.cfg index 81ed9dfa9da..205ef057b44 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.3.inst.cfg index c987c0d0895..640fd67b3fc 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.4.inst.cfg index 24f25650204..7737cb527bf 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.5.inst.cfg index c6fdbe00ec8..8c9d8ec96f5 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.6.inst.cfg index 0025650b9e3..c38d74d549b 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.8.inst.cfg index 0b85e692060..0b942550362 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_1.0.inst.cfg index 655f01f84d8..70e3f7a1e0a 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.2.inst.cfg index d7f363ad541..91a561d4596 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.3.inst.cfg index 78e32292a9b..a69f11ecf43 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.4.inst.cfg index 24b83a1403d..4b3f2f9a2dd 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.5.inst.cfg index e2fb8c11c45..b9ea6e9f9fe 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.6.inst.cfg index 050609fd6cb..87ea7a7951d 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.8.inst.cfg index 3a95ad3e797..78d066ae44f 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_1.0.inst.cfg index c7cd51bc8df..82d05d6f695 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.2.inst.cfg index c1256d94e69..2d08c3a349c 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.3.inst.cfg index a68a22081d7..9c6dfcc9a9d 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.4.inst.cfg index 1197b828445..923ec6db031 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.5.inst.cfg index 7b816051bcb..440c72ca1e7 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.6.inst.cfg index 44ac8d0d846..b853c0ec3a2 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.8.inst.cfg index b5ed03911ff..66d1be9510d 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_1.0.inst.cfg index cf1b29a5dbc..70dd52e71f7 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.2.inst.cfg index b615fdf9568..3d086a71299 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.3.inst.cfg index fdcac4247c1..e7d5a500c8a 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.4.inst.cfg index e8a30cb72de..7c3e19e18e7 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.5.inst.cfg index 96e2165217d..a41b890f1cd 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.6.inst.cfg index 05de4f03fcc..9d0968940fd 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.8.inst.cfg index e1ca78c632b..2918812f148 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_1.0.inst.cfg index 3bc4fb47912..a7a5cbc5169 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.2.inst.cfg index 29098cad270..464246ea609 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.3.inst.cfg index 14ab2423adc..738fc3458d7 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.4.inst.cfg index ff64aaf57c2..9c0507ee7f6 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.5.inst.cfg index cb75505ad85..c46105ee964 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.6.inst.cfg index 4a606afa5e6..47197c50c4b 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.8.inst.cfg index de9f4a6eacd..79994015e05 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_1.0.inst.cfg index b8d702dd927..64473d57c67 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.2.inst.cfg index b2758076262..94353d46454 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.3.inst.cfg index 444cd8c49ec..7276bfe5c83 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.4.inst.cfg index b12b83d69da..6ef937964fb 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.5.inst.cfg index fd808f3a2d1..bbd1a135bfe 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.6.inst.cfg index 304bf82ed64..13f0c386f62 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.8.inst.cfg index e2a2d917bdf..7a9f1cd96ec 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_1.0.inst.cfg index 503ee475234..16b62b79ecd 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.2.inst.cfg index 008949a21a0..ac5014f44e9 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.3.inst.cfg index 011102c56d2..06db2686449 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.4.inst.cfg index 31b0a7b2902..66d27fbaeba 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.5.inst.cfg index 4cf9cdde6ad..05665e2f1c3 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.6.inst.cfg index a514327da31..e19a3b7ac72 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.8.inst.cfg index 78e14970c61..7edbb4db5fa 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_1.0.inst.cfg index 731eebadcf5..d366f986c0d 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.2.inst.cfg index f3372f51303..7cbba5a681e 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.3.inst.cfg index 2c1b42a7d3d..834c7b97727 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.4.inst.cfg index f47174704da..608d17b7a24 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.5.inst.cfg index 103013e2213..192ccda494f 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.6.inst.cfg index f4ba7996b60..ff70e1b2c50 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.8.inst.cfg index 06e9293f084..9be2fda82d9 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_1.0.inst.cfg index 2f15045922c..dd6c2e03449 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.2.inst.cfg index 27897ba995f..48dac05f841 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.3.inst.cfg index cbda21f3a8b..59fac38bda3 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.4.inst.cfg index 7f3b37557b8..e8477d9dbd3 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.5.inst.cfg index 7f928eb7d72..fc260787840 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.6.inst.cfg index f50565bd15c..974667f4623 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.8.inst.cfg index 7c164087d88..2d9e169eb5a 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_1.0.inst.cfg index a4239bb42f0..3be895b6d74 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.2.inst.cfg index f28d5017812..0ba2b440cd4 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.3.inst.cfg index 4fbb3f0926b..8e3980c13b1 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.4.inst.cfg index 99e2398e708..d64df8faf4c 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.5.inst.cfg index d017e391d96..6b41030cdfc 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.6.inst.cfg index 670d6e9668d..220550d38b8 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.8.inst.cfg index 850ebfc9ace..46df1945e3d 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_1.0.inst.cfg index 009a647ab04..84f86b78250 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_025_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_025_e3d.inst.cfg index f3ffadd4efd..feee98341fd 100644 --- a/resources/variants/gmax/gmax15plus_025_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_025_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_04_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_04_e3d.inst.cfg index 3eb5c892d88..ea6031a55f8 100644 --- a/resources/variants/gmax/gmax15plus_04_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_04_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_05_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_05_e3d.inst.cfg index 9a2e0b9baab..dc2013400ad 100644 --- a/resources/variants/gmax/gmax15plus_05_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_05_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_05_jhead.inst.cfg b/resources/variants/gmax/gmax15plus_05_jhead.inst.cfg index 2aa34bdedd0..7bb73d376b1 100644 --- a/resources/variants/gmax/gmax15plus_05_jhead.inst.cfg +++ b/resources/variants/gmax/gmax15plus_05_jhead.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_06_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_06_e3d.inst.cfg index 97da3458b81..20a68280f56 100644 --- a/resources/variants/gmax/gmax15plus_06_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_06_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_08_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_08_e3d.inst.cfg index d76fb1ab6d4..5554348466c 100644 --- a/resources/variants/gmax/gmax15plus_08_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_08_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_10_jhead.inst.cfg b/resources/variants/gmax/gmax15plus_10_jhead.inst.cfg index 10241ec4aee..e14b37d410a 100644 --- a/resources/variants/gmax/gmax15plus_10_jhead.inst.cfg +++ b/resources/variants/gmax/gmax15plus_10_jhead.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_12_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_12_e3d.inst.cfg index 75bd587acaa..da6f85cd787 100644 --- a/resources/variants/gmax/gmax15plus_12_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_12_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_025_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_dual_025_e3d.inst.cfg index 304dd70619b..b83cc5e0cbb 100644 --- a/resources/variants/gmax/gmax15plus_dual_025_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_025_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_04_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_dual_04_e3d.inst.cfg index ba54ecbc239..2c5b950fa7b 100644 --- a/resources/variants/gmax/gmax15plus_dual_04_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_04_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_05_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_dual_05_e3d.inst.cfg index ec91df6fc0e..f8e5949f32a 100644 --- a/resources/variants/gmax/gmax15plus_dual_05_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_05_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_05_jhead.inst.cfg b/resources/variants/gmax/gmax15plus_dual_05_jhead.inst.cfg index 7ac4be04d40..ae2c4c2e2c6 100644 --- a/resources/variants/gmax/gmax15plus_dual_05_jhead.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_05_jhead.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_06_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_dual_06_e3d.inst.cfg index 43f487f522a..6dae917b2fa 100644 --- a/resources/variants/gmax/gmax15plus_dual_06_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_06_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_08_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_dual_08_e3d.inst.cfg index 41c3a810cf7..108db8a2c1e 100644 --- a/resources/variants/gmax/gmax15plus_dual_08_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_08_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_10_jhead.inst.cfg b/resources/variants/gmax/gmax15plus_dual_10_jhead.inst.cfg index 3a9fbc00b32..23e1ba20473 100644 --- a/resources/variants/gmax/gmax15plus_dual_10_jhead.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_10_jhead.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_base_0.4.inst.cfg b/resources/variants/goofoo/goofoo_base_0.4.inst.cfg index b37d8481fb2..edd56cb8b06 100644 --- a/resources/variants/goofoo/goofoo_base_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_cube_0.7.inst.cfg b/resources/variants/goofoo/goofoo_cube_0.7.inst.cfg index fa289fd3f65..7313a769eac 100644 --- a/resources/variants/goofoo/goofoo_cube_0.7.inst.cfg +++ b/resources/variants/goofoo/goofoo_cube_0.7.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_e-one_0.2.inst.cfg b/resources/variants/goofoo/goofoo_e-one_0.2.inst.cfg index d58c829c098..7ada6238e5c 100644 --- a/resources/variants/goofoo/goofoo_e-one_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_e-one_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_e-one_0.4.inst.cfg b/resources/variants/goofoo/goofoo_e-one_0.4.inst.cfg index aeed0bafc01..5e317ddbaa9 100644 --- a/resources/variants/goofoo/goofoo_e-one_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_e-one_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_e-one_0.6.inst.cfg b/resources/variants/goofoo/goofoo_e-one_0.6.inst.cfg index 147a685eca2..2ea49513615 100644 --- a/resources/variants/goofoo/goofoo_e-one_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_e-one_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_e-one_0.8.inst.cfg b/resources/variants/goofoo/goofoo_e-one_0.8.inst.cfg index 0248637e1a6..9d4fae1ab86 100644 --- a/resources/variants/goofoo/goofoo_e-one_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_e-one_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_e-one_1.0.inst.cfg b/resources/variants/goofoo/goofoo_e-one_1.0.inst.cfg index 70b1eebafa0..b4b70b2804b 100644 --- a/resources/variants/goofoo/goofoo_e-one_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_e-one_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_gemini_0.2.inst.cfg b/resources/variants/goofoo/goofoo_gemini_0.2.inst.cfg index c73ab7ad5bb..d78fbb80896 100644 --- a/resources/variants/goofoo/goofoo_gemini_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_gemini_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_gemini_0.4.inst.cfg b/resources/variants/goofoo/goofoo_gemini_0.4.inst.cfg index c68dc99c956..45e088df352 100644 --- a/resources/variants/goofoo/goofoo_gemini_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_gemini_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_gemini_0.6.inst.cfg b/resources/variants/goofoo/goofoo_gemini_0.6.inst.cfg index 2114e78b0a6..070fcb73595 100644 --- a/resources/variants/goofoo/goofoo_gemini_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_gemini_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_gemini_0.8.inst.cfg b/resources/variants/goofoo/goofoo_gemini_0.8.inst.cfg index cf72e50f95c..93681c06e08 100644 --- a/resources/variants/goofoo/goofoo_gemini_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_gemini_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_gemini_1.0.inst.cfg b/resources/variants/goofoo/goofoo_gemini_1.0.inst.cfg index 2ee9a5892df..0fcb2d256fc 100644 --- a/resources/variants/goofoo/goofoo_gemini_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_gemini_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_giant_0.2.inst.cfg b/resources/variants/goofoo/goofoo_giant_0.2.inst.cfg index 7b6bb6168bc..623eb82821b 100644 --- a/resources/variants/goofoo/goofoo_giant_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_giant_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_giant_0.4.inst.cfg b/resources/variants/goofoo/goofoo_giant_0.4.inst.cfg index 646bd838d90..4fdd5889227 100644 --- a/resources/variants/goofoo/goofoo_giant_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_giant_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_giant_0.6.inst.cfg b/resources/variants/goofoo/goofoo_giant_0.6.inst.cfg index e27af8852f1..53a36b3d1db 100644 --- a/resources/variants/goofoo/goofoo_giant_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_giant_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_giant_0.8.inst.cfg b/resources/variants/goofoo/goofoo_giant_0.8.inst.cfg index 2668a4abf5c..979eb3ee473 100644 --- a/resources/variants/goofoo/goofoo_giant_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_giant_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_giant_1.0.inst.cfg b/resources/variants/goofoo/goofoo_giant_1.0.inst.cfg index ddd0196d45e..8cd6591c7d7 100644 --- a/resources/variants/goofoo/goofoo_giant_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_giant_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_max_0.2.inst.cfg b/resources/variants/goofoo/goofoo_max_0.2.inst.cfg index 1f1ac3e61d4..85cb28cf951 100644 --- a/resources/variants/goofoo/goofoo_max_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_max_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_max_0.4.inst.cfg b/resources/variants/goofoo/goofoo_max_0.4.inst.cfg index 8e9fe3bf93b..82388a823b9 100644 --- a/resources/variants/goofoo/goofoo_max_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_max_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_max_0.6.inst.cfg b/resources/variants/goofoo/goofoo_max_0.6.inst.cfg index 4a8838a97ba..6f40759e133 100644 --- a/resources/variants/goofoo/goofoo_max_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_max_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_max_0.8.inst.cfg b/resources/variants/goofoo/goofoo_max_0.8.inst.cfg index 9cba9c182bd..c521a9e8ba2 100644 --- a/resources/variants/goofoo/goofoo_max_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_max_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_max_1.0.inst.cfg b/resources/variants/goofoo/goofoo_max_1.0.inst.cfg index 378879d8fca..92ef73f8fdf 100644 --- a/resources/variants/goofoo/goofoo_max_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_max_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_mido_0.2.inst.cfg b/resources/variants/goofoo/goofoo_mido_0.2.inst.cfg index cb320b755a2..4d75934903d 100644 --- a/resources/variants/goofoo/goofoo_mido_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_mido_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_mido_0.4.inst.cfg b/resources/variants/goofoo/goofoo_mido_0.4.inst.cfg index 7aa7995d5f5..432f4e4eb11 100644 --- a/resources/variants/goofoo/goofoo_mido_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_mido_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_mido_0.6.inst.cfg b/resources/variants/goofoo/goofoo_mido_0.6.inst.cfg index d4f0f0ebbcd..842c973865d 100644 --- a/resources/variants/goofoo/goofoo_mido_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_mido_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_mido_0.8.inst.cfg b/resources/variants/goofoo/goofoo_mido_0.8.inst.cfg index 49016ad3bc2..5956dbc848f 100644 --- a/resources/variants/goofoo/goofoo_mido_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_mido_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_mido_1.0.inst.cfg b/resources/variants/goofoo/goofoo_mido_1.0.inst.cfg index e79ef6553a0..22210336fac 100644 --- a/resources/variants/goofoo/goofoo_mido_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_mido_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_miniplus_0.2.inst.cfg b/resources/variants/goofoo/goofoo_miniplus_0.2.inst.cfg index d1fbaabb38f..db56fd8a68b 100644 --- a/resources/variants/goofoo/goofoo_miniplus_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_miniplus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_miniplus_0.4.inst.cfg b/resources/variants/goofoo/goofoo_miniplus_0.4.inst.cfg index 63f75c8f07f..eab49f6ff2d 100644 --- a/resources/variants/goofoo/goofoo_miniplus_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_miniplus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_miniplus_0.6.inst.cfg b/resources/variants/goofoo/goofoo_miniplus_0.6.inst.cfg index d4457a95f3a..c443ac435f9 100644 --- a/resources/variants/goofoo/goofoo_miniplus_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_miniplus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_miniplus_0.8.inst.cfg b/resources/variants/goofoo/goofoo_miniplus_0.8.inst.cfg index 8c755e45e91..0918d2b0eab 100644 --- a/resources/variants/goofoo/goofoo_miniplus_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_miniplus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_miniplus_1.0.inst.cfg b/resources/variants/goofoo/goofoo_miniplus_1.0.inst.cfg index 441ca6516ca..8657cd34a49 100644 --- a/resources/variants/goofoo/goofoo_miniplus_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_miniplus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_nova_0.2.inst.cfg b/resources/variants/goofoo/goofoo_nova_0.2.inst.cfg index dd9bb88f484..b0629040094 100644 --- a/resources/variants/goofoo/goofoo_nova_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_nova_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_nova_0.4.inst.cfg b/resources/variants/goofoo/goofoo_nova_0.4.inst.cfg index bfee7afe9a4..e2a711bc230 100644 --- a/resources/variants/goofoo/goofoo_nova_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_nova_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_nova_0.6.inst.cfg b/resources/variants/goofoo/goofoo_nova_0.6.inst.cfg index 1fcb9146255..ca8d77c73ef 100644 --- a/resources/variants/goofoo/goofoo_nova_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_nova_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_nova_0.8.inst.cfg b/resources/variants/goofoo/goofoo_nova_0.8.inst.cfg index 71d1d2dc524..ef0b26c2e1a 100644 --- a/resources/variants/goofoo/goofoo_nova_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_nova_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_nova_1.0.inst.cfg b/resources/variants/goofoo/goofoo_nova_1.0.inst.cfg index 3f9c883b819..9039055f482 100644 --- a/resources/variants/goofoo/goofoo_nova_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_nova_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_plus_0.2.inst.cfg b/resources/variants/goofoo/goofoo_plus_0.2.inst.cfg index 32ab5c41d40..5df2ea85507 100644 --- a/resources/variants/goofoo/goofoo_plus_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_plus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_plus_0.4.inst.cfg b/resources/variants/goofoo/goofoo_plus_0.4.inst.cfg index 0af036d5a3e..bcb84bc11f0 100644 --- a/resources/variants/goofoo/goofoo_plus_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_plus_0.6.inst.cfg b/resources/variants/goofoo/goofoo_plus_0.6.inst.cfg index 1f1735b7119..29262517986 100644 --- a/resources/variants/goofoo/goofoo_plus_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_plus_0.8.inst.cfg b/resources/variants/goofoo/goofoo_plus_0.8.inst.cfg index c960de06d4e..eab2762d8fb 100644 --- a/resources/variants/goofoo/goofoo_plus_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_plus_1.0.inst.cfg b/resources/variants/goofoo/goofoo_plus_1.0.inst.cfg index 2b1d126cb7b..74124351430 100644 --- a/resources/variants/goofoo/goofoo_plus_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_plus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_t-one_0.2.inst.cfg b/resources/variants/goofoo/goofoo_t-one_0.2.inst.cfg index c3ba8d4f4a9..ce14d3252a2 100644 --- a/resources/variants/goofoo/goofoo_t-one_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_t-one_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_t-one_0.4.inst.cfg b/resources/variants/goofoo/goofoo_t-one_0.4.inst.cfg index 6e18bd23585..647f52efff4 100644 --- a/resources/variants/goofoo/goofoo_t-one_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_t-one_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_t-one_0.6.inst.cfg b/resources/variants/goofoo/goofoo_t-one_0.6.inst.cfg index 0d1414e4201..5037e706f39 100644 --- a/resources/variants/goofoo/goofoo_t-one_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_t-one_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_t-one_0.8.inst.cfg b/resources/variants/goofoo/goofoo_t-one_0.8.inst.cfg index 2160585bf92..f43062c605a 100644 --- a/resources/variants/goofoo/goofoo_t-one_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_t-one_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_t-one_1.0.inst.cfg b/resources/variants/goofoo/goofoo_t-one_1.0.inst.cfg index 0d03fe5d623..042d5cbbf0c 100644 --- a/resources/variants/goofoo/goofoo_t-one_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_t-one_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tiny_0.2.inst.cfg b/resources/variants/goofoo/goofoo_tiny_0.2.inst.cfg index a72d9bb26a7..660658ba582 100644 --- a/resources/variants/goofoo/goofoo_tiny_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_tiny_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tiny_0.4.inst.cfg b/resources/variants/goofoo/goofoo_tiny_0.4.inst.cfg index 9858154106d..1177030f93d 100644 --- a/resources/variants/goofoo/goofoo_tiny_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_tiny_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tiny_0.6.inst.cfg b/resources/variants/goofoo/goofoo_tiny_0.6.inst.cfg index a3f7b0fcf53..497c117e6ec 100644 --- a/resources/variants/goofoo/goofoo_tiny_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_tiny_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tiny_0.8.inst.cfg b/resources/variants/goofoo/goofoo_tiny_0.8.inst.cfg index 0036f5babdb..05ca9eca789 100644 --- a/resources/variants/goofoo/goofoo_tiny_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_tiny_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tiny_1.0.inst.cfg b/resources/variants/goofoo/goofoo_tiny_1.0.inst.cfg index 2906a243ba5..2ba839b3402 100644 --- a/resources/variants/goofoo/goofoo_tiny_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_tiny_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tinyplus_0.2.inst.cfg b/resources/variants/goofoo/goofoo_tinyplus_0.2.inst.cfg index d1d06fd35e9..b38b300dcbb 100644 --- a/resources/variants/goofoo/goofoo_tinyplus_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_tinyplus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tinyplus_0.4.inst.cfg b/resources/variants/goofoo/goofoo_tinyplus_0.4.inst.cfg index 87fe1cb6452..ca2dbe67905 100644 --- a/resources/variants/goofoo/goofoo_tinyplus_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_tinyplus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tinyplus_0.6.inst.cfg b/resources/variants/goofoo/goofoo_tinyplus_0.6.inst.cfg index 05f5c41e4d0..5973febc70e 100644 --- a/resources/variants/goofoo/goofoo_tinyplus_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_tinyplus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tinyplus_0.8.inst.cfg b/resources/variants/goofoo/goofoo_tinyplus_0.8.inst.cfg index ba6734bc991..28a472e72f9 100644 --- a/resources/variants/goofoo/goofoo_tinyplus_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_tinyplus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tinyplus_1.0.inst.cfg b/resources/variants/goofoo/goofoo_tinyplus_1.0.inst.cfg index 564189bab58..f5fdec77565 100644 --- a/resources/variants/goofoo/goofoo_tinyplus_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_tinyplus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/hms434/hms434_0.4tpnozzle.inst.cfg b/resources/variants/hms434/hms434_0.4tpnozzle.inst.cfg index 144b0401c09..0a28dd00e1c 100644 --- a/resources/variants/hms434/hms434_0.4tpnozzle.inst.cfg +++ b/resources/variants/hms434/hms434_0.4tpnozzle.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/hms434/hms434_0.8tpnozzle.inst.cfg b/resources/variants/hms434/hms434_0.8tpnozzle.inst.cfg index 75062afd05e..92c05577b8a 100644 --- a/resources/variants/hms434/hms434_0.8tpnozzle.inst.cfg +++ b/resources/variants/hms434/hms434_0.8tpnozzle.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/imade3d/imade3d_jellybox_0.4.inst.cfg b/resources/variants/imade3d/imade3d_jellybox_0.4.inst.cfg index 34e6780ff0f..71e1c6cb299 100644 --- a/resources/variants/imade3d/imade3d_jellybox_0.4.inst.cfg +++ b/resources/variants/imade3d/imade3d_jellybox_0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = IMADE3D hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/imade3d/imade3d_jellybox_2_0.4.inst.cfg b/resources/variants/imade3d/imade3d_jellybox_2_0.4.inst.cfg index beb652c36c2..94ad9c2e175 100644 --- a/resources/variants/imade3d/imade3d_jellybox_2_0.4.inst.cfg +++ b/resources/variants/imade3d/imade3d_jellybox_2_0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = IMADE3D hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.2.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.2.inst.cfg index 923f826dfd7..a34a0f4587f 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.2.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.3.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.3.inst.cfg index 587f9597f50..d7dd0b3746f 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.3.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.4.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.4.inst.cfg index 33823a9182d..1944ad57513 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.4.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.5.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.5.inst.cfg index c8eb6ccaba9..f2e80a208cc 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.5.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.6.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.6.inst.cfg index 8babba283c4..5ffb9996d26 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.6.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.8.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.8.inst.cfg index cbcef16f416..516e0c99c9d 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.8.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_1.0.inst.cfg b/resources/variants/kingroon/kingroon_kp3_1.0.inst.cfg index 0d5b4f0b01c..66c473929fa 100644 --- a/resources/variants/kingroon/kingroon_kp3_1.0.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.2.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.2.inst.cfg index 4a68bb7e11f..935e62e0592 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.2.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.3.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.3.inst.cfg index f49df9fd338..b8918d2b42e 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.3.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.4.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.4.inst.cfg index 92c337beb39..4ffeaeee2ce 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.4.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.5.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.5.inst.cfg index c4b44284060..a4f6abd2a4e 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.5.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.6.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.6.inst.cfg index d52eb29e8d9..cc14b87ebbd 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.6.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.8.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.8.inst.cfg index 7907785dfb8..7ba0f27162d 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.8.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_1.0.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_1.0.inst.cfg index e7f24084c3e..0c5fa111447 100644 --- a/resources/variants/kingroon/kingroon_kp3s_1.0.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.2.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.2.inst.cfg index 4d0858a5738..90409a027ee 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.2.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.3.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.3.inst.cfg index e127a63c76e..d90512fc699 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.3.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.4.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.4.inst.cfg index 3422da8b90f..ae48963d8a1 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.4.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.5.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.5.inst.cfg index 744e7e441de..36b1dcbbc4b 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.5.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.6.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.6.inst.cfg index 289eb3bd96e..57914a8ab3b 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.6.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.8.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.8.inst.cfg index 68aa6dc7daf..fb1a6b5e8f5 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.8.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_1.0.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_1.0.inst.cfg index 5e332ea26bf..b05acc56760 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_1.0.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.2.inst.cfg b/resources/variants/kosher/kosher220_0.2.inst.cfg index 9f18ba241c4..59547730844 100644 --- a/resources/variants/kosher/kosher220_0.2.inst.cfg +++ b/resources/variants/kosher/kosher220_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.3.inst.cfg b/resources/variants/kosher/kosher220_0.3.inst.cfg index dd2f8c5f5ea..cc5cd3e5089 100644 --- a/resources/variants/kosher/kosher220_0.3.inst.cfg +++ b/resources/variants/kosher/kosher220_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.4.inst.cfg b/resources/variants/kosher/kosher220_0.4.inst.cfg index 13e50382a54..07992ddbb52 100644 --- a/resources/variants/kosher/kosher220_0.4.inst.cfg +++ b/resources/variants/kosher/kosher220_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.5.inst.cfg b/resources/variants/kosher/kosher220_0.5.inst.cfg index 84a205114cd..dd80c290dd3 100644 --- a/resources/variants/kosher/kosher220_0.5.inst.cfg +++ b/resources/variants/kosher/kosher220_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.6.inst.cfg b/resources/variants/kosher/kosher220_0.6.inst.cfg index 817cc898f40..d42d48ceebb 100644 --- a/resources/variants/kosher/kosher220_0.6.inst.cfg +++ b/resources/variants/kosher/kosher220_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.8.inst.cfg b/resources/variants/kosher/kosher220_0.8.inst.cfg index fa1ba81ba01..dcd90b0864f 100644 --- a/resources/variants/kosher/kosher220_0.8.inst.cfg +++ b/resources/variants/kosher/kosher220_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.2.inst.cfg b/resources/variants/kosher/kosher220_dm_0.2.inst.cfg index 4e9cdb9c0eb..009eb8114d2 100644 --- a/resources/variants/kosher/kosher220_dm_0.2.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.3.inst.cfg b/resources/variants/kosher/kosher220_dm_0.3.inst.cfg index 5d5f10e7e19..26ff2fcad92 100644 --- a/resources/variants/kosher/kosher220_dm_0.3.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.4.inst.cfg b/resources/variants/kosher/kosher220_dm_0.4.inst.cfg index 91f26e2a9aa..50fe460de23 100644 --- a/resources/variants/kosher/kosher220_dm_0.4.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.5.inst.cfg b/resources/variants/kosher/kosher220_dm_0.5.inst.cfg index 1d864fb7cc4..c3bf8c8dbae 100644 --- a/resources/variants/kosher/kosher220_dm_0.5.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.6.inst.cfg b/resources/variants/kosher/kosher220_dm_0.6.inst.cfg index 46216a8ccd8..617dfb541fe 100644 --- a/resources/variants/kosher/kosher220_dm_0.6.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.8.inst.cfg b/resources/variants/kosher/kosher220_dm_0.8.inst.cfg index 08e3d294b25..5c445451990 100644 --- a/resources/variants/kosher/kosher220_dm_0.8.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.2.inst.cfg b/resources/variants/kosher/kosher220_mm_0.2.inst.cfg index d7e41a99843..c8e377c8e70 100644 --- a/resources/variants/kosher/kosher220_mm_0.2.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.3.inst.cfg b/resources/variants/kosher/kosher220_mm_0.3.inst.cfg index 86694cc2dbf..6c457bf6070 100644 --- a/resources/variants/kosher/kosher220_mm_0.3.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.4.inst.cfg b/resources/variants/kosher/kosher220_mm_0.4.inst.cfg index 80539d1bc9f..b2f718d2779 100644 --- a/resources/variants/kosher/kosher220_mm_0.4.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.5.inst.cfg b/resources/variants/kosher/kosher220_mm_0.5.inst.cfg index 9d6aebfda65..14a534767a9 100644 --- a/resources/variants/kosher/kosher220_mm_0.5.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.6.inst.cfg b/resources/variants/kosher/kosher220_mm_0.6.inst.cfg index 4a433c838ee..f0fae06951b 100644 --- a/resources/variants/kosher/kosher220_mm_0.6.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.8.inst.cfg b/resources/variants/kosher/kosher220_mm_0.8.inst.cfg index d452fef2942..369569c1f25 100644 --- a/resources/variants/kosher/kosher220_mm_0.8.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_pva_0.2.inst.cfg b/resources/variants/kosher/kosher220_pva_0.2.inst.cfg index ea3b821ceac..200d961bf62 100644 --- a/resources/variants/kosher/kosher220_pva_0.2.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_pva_0.3.inst.cfg b/resources/variants/kosher/kosher220_pva_0.3.inst.cfg index 216388c64b0..d5fee608134 100644 --- a/resources/variants/kosher/kosher220_pva_0.3.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_pva_0.4.inst.cfg b/resources/variants/kosher/kosher220_pva_0.4.inst.cfg index 024d842630d..15470c782a0 100644 --- a/resources/variants/kosher/kosher220_pva_0.4.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_pva_0.5.inst.cfg b/resources/variants/kosher/kosher220_pva_0.5.inst.cfg index 6197e0ab9ce..56f719ce121 100644 --- a/resources/variants/kosher/kosher220_pva_0.5.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_pva_0.6.inst.cfg b/resources/variants/kosher/kosher220_pva_0.6.inst.cfg index 211a361c2ba..4c2d7bcae38 100644 --- a/resources/variants/kosher/kosher220_pva_0.6.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_pva_0.8.inst.cfg b/resources/variants/kosher/kosher220_pva_0.8.inst.cfg index 6f6a9dd6b40..83ea1b57810 100644 --- a/resources/variants/kosher/kosher220_pva_0.8.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/leapfrog/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg b/resources/variants/leapfrog/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg index 0e498466d1f..df90214208e 100644 --- a/resources/variants/leapfrog/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg +++ b/resources/variants/leapfrog/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/leapfrog/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg b/resources/variants/leapfrog/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg index 5b6b78faaed..0b8d012a9e7 100644 --- a/resources/variants/leapfrog/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg +++ b/resources/variants/leapfrog/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/liquid/liquid_vo04.inst.cfg b/resources/variants/liquid/liquid_vo04.inst.cfg index b6a2166d9c9..684f763c770 100644 --- a/resources/variants/liquid/liquid_vo04.inst.cfg +++ b/resources/variants/liquid/liquid_vo04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/liquid/liquid_vo06.inst.cfg b/resources/variants/liquid/liquid_vo06.inst.cfg index 19039b3c78f..318ded18614 100644 --- a/resources/variants/liquid/liquid_vo06.inst.cfg +++ b/resources/variants/liquid/liquid_vo06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/liquid/liquid_vo08.inst.cfg b/resources/variants/liquid/liquid_vo08.inst.cfg index 58cbea1b9db..f6c3e346e97 100644 --- a/resources/variants/liquid/liquid_vo08.inst.cfg +++ b/resources/variants/liquid/liquid_vo08.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_0.2.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_0.2.inst.cfg index 0cafffacc74..e30e219078d 100644 --- a/resources/variants/lnl3d/lnl3d_d3_0.2.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_0.4.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_0.4.inst.cfg index 146aff28dbc..a405b36c2f1 100644 --- a/resources/variants/lnl3d/lnl3d_d3_0.4.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_0.6.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_0.6.inst.cfg index d6e273309de..80bf9215ec6 100644 --- a/resources/variants/lnl3d/lnl3d_d3_0.6.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_0.8.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_0.8.inst.cfg index 238c9bde559..b14753a6152 100644 --- a/resources/variants/lnl3d/lnl3d_d3_0.8.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.2.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.2.inst.cfg index a8f05aa01ba..bffc9144859 100644 --- a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.2.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.4.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.4.inst.cfg index e7c7124d857..7bcab41a1ca 100644 --- a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.4.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.6.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.6.inst.cfg index aee1c069f82..6fc8d120c2e 100644 --- a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.6.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.8.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.8.inst.cfg index a383d94a152..ef8bd0cda87 100644 --- a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.8.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d5_0.2.inst.cfg b/resources/variants/lnl3d/lnl3d_d5_0.2.inst.cfg index 059dbe1656b..35dedaae3c0 100644 --- a/resources/variants/lnl3d/lnl3d_d5_0.2.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d5_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d5_0.4.inst.cfg b/resources/variants/lnl3d/lnl3d_d5_0.4.inst.cfg index d50c897d369..9dce1e88c85 100644 --- a/resources/variants/lnl3d/lnl3d_d5_0.4.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d5_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d5_0.6.inst.cfg b/resources/variants/lnl3d/lnl3d_d5_0.6.inst.cfg index 0d9fe1fd117..e4a79bb457c 100644 --- a/resources/variants/lnl3d/lnl3d_d5_0.6.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d5_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d5_0.8.inst.cfg b/resources/variants/lnl3d/lnl3d_d5_0.8.inst.cfg index 67a3cac7210..9a2eaa51d22 100644 --- a/resources/variants/lnl3d/lnl3d_d5_0.8.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d5_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d6_0.2.inst.cfg b/resources/variants/lnl3d/lnl3d_d6_0.2.inst.cfg index c81cbbe277c..d6f8a1aa37c 100644 --- a/resources/variants/lnl3d/lnl3d_d6_0.2.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d6_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d6_0.4.inst.cfg b/resources/variants/lnl3d/lnl3d_d6_0.4.inst.cfg index cd8e2485ea9..0c78cf88faf 100644 --- a/resources/variants/lnl3d/lnl3d_d6_0.4.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d6_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d6_0.6.inst.cfg b/resources/variants/lnl3d/lnl3d_d6_0.6.inst.cfg index 7b627bd768f..023e077f167 100644 --- a/resources/variants/lnl3d/lnl3d_d6_0.6.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d6_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d6_0.8.inst.cfg b/resources/variants/lnl3d/lnl3d_d6_0.8.inst.cfg index 4345b950a54..187a2891b96 100644 --- a/resources/variants/lnl3d/lnl3d_d6_0.8.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d6_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/longer/longer_base_0.4.inst.cfg b/resources/variants/longer/longer_base_0.4.inst.cfg index d024b576e34..33d9f1dd4b2 100644 --- a/resources/variants/longer/longer_base_0.4.inst.cfg +++ b/resources/variants/longer/longer_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/longer/longer_cube2_0.4.inst.cfg b/resources/variants/longer/longer_cube2_0.4.inst.cfg index 6c2af6a0f34..38ad1f1ddc1 100644 --- a/resources/variants/longer/longer_cube2_0.4.inst.cfg +++ b/resources/variants/longer/longer_cube2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/longer/longer_lk1_0.4.inst.cfg b/resources/variants/longer/longer_lk1_0.4.inst.cfg index 7743e4c9cbe..4ed47af8702 100644 --- a/resources/variants/longer/longer_lk1_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/longer/longer_lk1plus_0.4.inst.cfg b/resources/variants/longer/longer_lk1plus_0.4.inst.cfg index b19e2fd0962..a84646565db 100644 --- a/resources/variants/longer/longer_lk1plus_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk1plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/longer/longer_lk1pro_0.4.inst.cfg b/resources/variants/longer/longer_lk1pro_0.4.inst.cfg index be0e81f22a2..5f00991b40a 100644 --- a/resources/variants/longer/longer_lk1pro_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk1pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/longer/longer_lk4_0.4.inst.cfg b/resources/variants/longer/longer_lk4_0.4.inst.cfg index d5cba95d684..e7ac3ea123c 100644 --- a/resources/variants/longer/longer_lk4_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk4_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/longer/longer_lk4pro_0.4.inst.cfg b/resources/variants/longer/longer_lk4pro_0.4.inst.cfg index b68012fe195..89bd3df55e3 100644 --- a/resources/variants/longer/longer_lk4pro_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk4pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/longer/longer_lk4x_0.4.inst.cfg b/resources/variants/longer/longer_lk4x_0.4.inst.cfg index 839df818c46..c8f5cd4dbf4 100644 --- a/resources/variants/longer/longer_lk4x_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk4x_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/longer/longer_lk5_0.4.inst.cfg b/resources/variants/longer/longer_lk5_0.4.inst.cfg index b34e18ae048..22b3e76ab0c 100644 --- a/resources/variants/longer/longer_lk5_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk5_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/longer/longer_lk5pro_0.4.inst.cfg b/resources/variants/longer/longer_lk5pro_0.4.inst.cfg index 5416c7a8107..f6dfd5e62c7 100644 --- a/resources/variants/longer/longer_lk5pro_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk5pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mark2/Mark2_for_Ultimaker2_0.25.inst.cfg b/resources/variants/mark2/Mark2_for_Ultimaker2_0.25.inst.cfg index 2ce7a6d1a34..8dec02c1012 100644 --- a/resources/variants/mark2/Mark2_for_Ultimaker2_0.25.inst.cfg +++ b/resources/variants/mark2/Mark2_for_Ultimaker2_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mark2/Mark2_for_Ultimaker2_0.4.inst.cfg b/resources/variants/mark2/Mark2_for_Ultimaker2_0.4.inst.cfg index e7847ad492d..1553f9338d0 100644 --- a/resources/variants/mark2/Mark2_for_Ultimaker2_0.4.inst.cfg +++ b/resources/variants/mark2/Mark2_for_Ultimaker2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mark2/Mark2_for_Ultimaker2_0.6.inst.cfg b/resources/variants/mark2/Mark2_for_Ultimaker2_0.6.inst.cfg index c8631a6be30..7f9792a7528 100644 --- a/resources/variants/mark2/Mark2_for_Ultimaker2_0.6.inst.cfg +++ b/resources/variants/mark2/Mark2_for_Ultimaker2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mark2/Mark2_for_Ultimaker2_0.8.inst.cfg b/resources/variants/mark2/Mark2_for_Ultimaker2_0.8.inst.cfg index df41a39ab10..76df0108565 100644 --- a/resources/variants/mark2/Mark2_for_Ultimaker2_0.8.inst.cfg +++ b/resources/variants/mark2/Mark2_for_Ultimaker2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.2.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.2.inst.cfg index 9fedbdcd4ed..1e76c76b36a 100644 --- a/resources/variants/mingda/mingda_1000pro_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.3.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.3.inst.cfg index 2f80c7df75a..e8c15d58d68 100644 --- a/resources/variants/mingda/mingda_1000pro_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.4.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.4.inst.cfg index 9a065336fd8..c94caecd4af 100644 --- a/resources/variants/mingda/mingda_1000pro_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.5.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.5.inst.cfg index e84f7d89f91..d2e0591d39d 100644 --- a/resources/variants/mingda/mingda_1000pro_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.6.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.6.inst.cfg index b40a27f68c1..5259e59ca49 100644 --- a/resources/variants/mingda/mingda_1000pro_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.8.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.8.inst.cfg index 937bcb14489..e821bcf124b 100644 --- a/resources/variants/mingda/mingda_1000pro_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_1.0.inst.cfg b/resources/variants/mingda/mingda_1000pro_1.0.inst.cfg index f731d6d0514..1e35828ec9d 100644 --- a/resources/variants/mingda/mingda_1000pro_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.2.inst.cfg b/resources/variants/mingda/mingda_4h_0.2.inst.cfg index 75f5d1d79c9..b39905c685e 100644 --- a/resources/variants/mingda/mingda_4h_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.3.inst.cfg b/resources/variants/mingda/mingda_4h_0.3.inst.cfg index cb4e88ff8ff..ad6d817f5b5 100644 --- a/resources/variants/mingda/mingda_4h_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.4.inst.cfg b/resources/variants/mingda/mingda_4h_0.4.inst.cfg index 5db585bfcc2..c7207e9e724 100644 --- a/resources/variants/mingda/mingda_4h_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.5.inst.cfg b/resources/variants/mingda/mingda_4h_0.5.inst.cfg index 2bda5e1a22f..994d0c587c2 100644 --- a/resources/variants/mingda/mingda_4h_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.6.inst.cfg b/resources/variants/mingda/mingda_4h_0.6.inst.cfg index 488f88f2c92..a455e254dc0 100644 --- a/resources/variants/mingda/mingda_4h_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.8.inst.cfg b/resources/variants/mingda/mingda_4h_0.8.inst.cfg index bc92392977c..9fcc1051491 100644 --- a/resources/variants/mingda/mingda_4h_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_1.0.inst.cfg b/resources/variants/mingda/mingda_4h_1.0.inst.cfg index 8a7b50a044c..ecff382b36a 100644 --- a/resources/variants/mingda/mingda_4h_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_4h_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.2.inst.cfg b/resources/variants/mingda/mingda_600pro_0.2.inst.cfg index 8cb6baa5603..0990e204141 100644 --- a/resources/variants/mingda/mingda_600pro_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.3.inst.cfg b/resources/variants/mingda/mingda_600pro_0.3.inst.cfg index 51f9e8ab55d..fc41b19424c 100644 --- a/resources/variants/mingda/mingda_600pro_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.4.inst.cfg b/resources/variants/mingda/mingda_600pro_0.4.inst.cfg index 0035577e856..485604b550e 100644 --- a/resources/variants/mingda/mingda_600pro_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.5.inst.cfg b/resources/variants/mingda/mingda_600pro_0.5.inst.cfg index 1041e0d20d7..f0d1a8b4a72 100644 --- a/resources/variants/mingda/mingda_600pro_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.6.inst.cfg b/resources/variants/mingda/mingda_600pro_0.6.inst.cfg index dbc0fd3d71f..a024f70e882 100644 --- a/resources/variants/mingda/mingda_600pro_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.8.inst.cfg b/resources/variants/mingda/mingda_600pro_0.8.inst.cfg index f8c9c71fde3..e8aa2462220 100644 --- a/resources/variants/mingda/mingda_600pro_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_1.0.inst.cfg b/resources/variants/mingda/mingda_600pro_1.0.inst.cfg index 27b4ffee84c..70fa4471bd1 100644 --- a/resources/variants/mingda/mingda_600pro_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.2.inst.cfg b/resources/variants/mingda/mingda_6h_0.2.inst.cfg index 65b78cecc38..b7d394f037e 100644 --- a/resources/variants/mingda/mingda_6h_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.3.inst.cfg b/resources/variants/mingda/mingda_6h_0.3.inst.cfg index 3e38a46e8e0..2a162da44b7 100644 --- a/resources/variants/mingda/mingda_6h_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.4.inst.cfg b/resources/variants/mingda/mingda_6h_0.4.inst.cfg index cd6d2d2e86d..6bed3473743 100644 --- a/resources/variants/mingda/mingda_6h_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.5.inst.cfg b/resources/variants/mingda/mingda_6h_0.5.inst.cfg index 1c92a90edbf..80d7243cd33 100644 --- a/resources/variants/mingda/mingda_6h_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.6.inst.cfg b/resources/variants/mingda/mingda_6h_0.6.inst.cfg index 081b149f82b..d6333520c52 100644 --- a/resources/variants/mingda/mingda_6h_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.8.inst.cfg b/resources/variants/mingda/mingda_6h_0.8.inst.cfg index 55e19ddf14f..0c776ca48fc 100644 --- a/resources/variants/mingda/mingda_6h_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_1.0.inst.cfg b/resources/variants/mingda/mingda_6h_1.0.inst.cfg index 0767b232fbe..c19a0113df3 100644 --- a/resources/variants/mingda/mingda_6h_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_6h_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_0.2.inst.cfg b/resources/variants/mingda/mingda_base_0.2.inst.cfg index 0648b25eda7..ecf6c85f7a3 100644 --- a/resources/variants/mingda/mingda_base_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_0.3.inst.cfg b/resources/variants/mingda/mingda_base_0.3.inst.cfg index 9864095aebf..4ad14e631b9 100644 --- a/resources/variants/mingda/mingda_base_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_0.4.inst.cfg b/resources/variants/mingda/mingda_base_0.4.inst.cfg index a65958f2dfe..7819e22a0ca 100644 --- a/resources/variants/mingda/mingda_base_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_0.6.inst.cfg b/resources/variants/mingda/mingda_base_0.6.inst.cfg index f50df518bf0..458f415aa60 100644 --- a/resources/variants/mingda/mingda_base_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_0.8.inst.cfg b/resources/variants/mingda/mingda_base_0.8.inst.cfg index 360cf533c55..d477a9f1699 100644 --- a/resources/variants/mingda/mingda_base_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_1.0.inst.cfg b/resources/variants/mingda/mingda_base_1.0.inst.cfg index 559410315c8..4f4415b48f1 100644 --- a/resources/variants/mingda/mingda_base_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.2.inst.cfg b/resources/variants/mingda/mingda_d2_0.2.inst.cfg index 5d799a609cc..d5affb8e539 100644 --- a/resources/variants/mingda/mingda_d2_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.3.inst.cfg b/resources/variants/mingda/mingda_d2_0.3.inst.cfg index 8743b0469c5..d1c5787a322 100644 --- a/resources/variants/mingda/mingda_d2_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.4.inst.cfg b/resources/variants/mingda/mingda_d2_0.4.inst.cfg index 8f4c2f1a446..a93871b21c7 100644 --- a/resources/variants/mingda/mingda_d2_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.5.inst.cfg b/resources/variants/mingda/mingda_d2_0.5.inst.cfg index b9bb2d683a7..b1cac2e520a 100644 --- a/resources/variants/mingda/mingda_d2_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.6.inst.cfg b/resources/variants/mingda/mingda_d2_0.6.inst.cfg index b9b009e80c8..fb12d1eea9e 100644 --- a/resources/variants/mingda/mingda_d2_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.8.inst.cfg b/resources/variants/mingda/mingda_d2_0.8.inst.cfg index cf92b6cd2b7..d5615fd39ae 100644 --- a/resources/variants/mingda/mingda_d2_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_1.0.inst.cfg b/resources/variants/mingda/mingda_d2_1.0.inst.cfg index e37c306bc71..0fc96e5c064 100644 --- a/resources/variants/mingda/mingda_d2_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_d2_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.2.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.2.inst.cfg index 8e399533a3e..7f7853c0476 100644 --- a/resources/variants/mingda/mingda_d3pro_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.3.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.3.inst.cfg index 7be7d69a37f..f51c153ac6e 100644 --- a/resources/variants/mingda/mingda_d3pro_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.4.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.4.inst.cfg index a4141ea0d10..3b78e26d93b 100644 --- a/resources/variants/mingda/mingda_d3pro_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.5.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.5.inst.cfg index 44fb6f5afef..819d3651dfb 100644 --- a/resources/variants/mingda/mingda_d3pro_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.6.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.6.inst.cfg index 3e22aa033d3..b6ceb3d219c 100644 --- a/resources/variants/mingda/mingda_d3pro_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.8.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.8.inst.cfg index f426af89e5b..5a1796de7ea 100644 --- a/resources/variants/mingda/mingda_d3pro_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_1.0.inst.cfg b/resources/variants/mingda/mingda_d3pro_1.0.inst.cfg index 596418b7dfb..331e3c320b3 100644 --- a/resources/variants/mingda/mingda_d3pro_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.2.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.2.inst.cfg index b0578e5b48e..44f8f26bb79 100644 --- a/resources/variants/mingda/mingda_d4pro_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.3.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.3.inst.cfg index 9ae9d8878ac..43f510e304b 100644 --- a/resources/variants/mingda/mingda_d4pro_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.4.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.4.inst.cfg index 8c57a7aca61..50593d35e89 100644 --- a/resources/variants/mingda/mingda_d4pro_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.5.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.5.inst.cfg index 4ec36f2c5df..3727fb8c907 100644 --- a/resources/variants/mingda/mingda_d4pro_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.6.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.6.inst.cfg index 934329e29bf..e4dbd96907b 100644 --- a/resources/variants/mingda/mingda_d4pro_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.8.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.8.inst.cfg index 492fb69ce6a..8010b5cd712 100644 --- a/resources/variants/mingda/mingda_d4pro_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_1.0.inst.cfg b/resources/variants/mingda/mingda_d4pro_1.0.inst.cfg index b3cf883b0fc..8ab02e4b730 100644 --- a/resources/variants/mingda/mingda_d4pro_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.2.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.2.inst.cfg index 4fda39ef436..dc6281101d8 100644 --- a/resources/variants/mingda/mingda_magician_max_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.3.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.3.inst.cfg index 0aeacb4707d..27a268c2ce1 100644 --- a/resources/variants/mingda/mingda_magician_max_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.4.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.4.inst.cfg index bef2a46d78a..3d37b97f892 100644 --- a/resources/variants/mingda/mingda_magician_max_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.5.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.5.inst.cfg index cf9b29ab368..1b72c3ebe5d 100644 --- a/resources/variants/mingda/mingda_magician_max_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.6.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.6.inst.cfg index 37e46faec17..7808993454e 100644 --- a/resources/variants/mingda/mingda_magician_max_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.8.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.8.inst.cfg index 15685a39032..0d7f764ad79 100644 --- a/resources/variants/mingda/mingda_magician_max_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_1.0.inst.cfg b/resources/variants/mingda/mingda_magician_max_1.0.inst.cfg index bcd8277a499..11ef656d499 100644 --- a/resources/variants/mingda/mingda_magician_max_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.2.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.2.inst.cfg index c0531cc8527..d7ed29ccccf 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.3.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.3.inst.cfg index 6199ccfdc9a..07d83ef87fe 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.4.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.4.inst.cfg index 43b7ff34e6a..c4fc96a6ee8 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.5.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.5.inst.cfg index 0306b328636..62eb622e30e 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.6.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.6.inst.cfg index 6cf09ed8fe8..d2efcf7a548 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.8.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.8.inst.cfg index 319514c395a..1f790ea81b0 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_1.0.inst.cfg b/resources/variants/mingda/mingda_magician_pro_1.0.inst.cfg index cdd044af5c5..96784fcc423 100644 --- a/resources/variants/mingda/mingda_magician_pro_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.2.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.2.inst.cfg index 18e659950be..9b225512fdf 100644 --- a/resources/variants/mingda/mingda_magician_x_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.3.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.3.inst.cfg index a08f4aae645..e82d82deed7 100644 --- a/resources/variants/mingda/mingda_magician_x_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.4.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.4.inst.cfg index ee626d27c3d..3efa1acda7c 100644 --- a/resources/variants/mingda/mingda_magician_x_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.5.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.5.inst.cfg index a3c51043d52..141ec15e98e 100644 --- a/resources/variants/mingda/mingda_magician_x_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.6.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.6.inst.cfg index 283c1291714..6fbac0e0ece 100644 --- a/resources/variants/mingda/mingda_magician_x_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.8.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.8.inst.cfg index dede9bdcd89..7592d1b7e09 100644 --- a/resources/variants/mingda/mingda_magician_x_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_1.0.inst.cfg b/resources/variants/mingda/mingda_magician_x_1.0.inst.cfg index 69b8b21bea7..a6aac74b09d 100644 --- a/resources/variants/mingda/mingda_magician_x_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.2.inst.cfg b/resources/variants/mingda/mingda_rock3_0.2.inst.cfg index 468981aaadf..77dbeccb886 100644 --- a/resources/variants/mingda/mingda_rock3_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.3.inst.cfg b/resources/variants/mingda/mingda_rock3_0.3.inst.cfg index aaaad835767..6ff94a3e13b 100644 --- a/resources/variants/mingda/mingda_rock3_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.4.inst.cfg b/resources/variants/mingda/mingda_rock3_0.4.inst.cfg index c476451a989..6f4ad9490a1 100644 --- a/resources/variants/mingda/mingda_rock3_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.5.inst.cfg b/resources/variants/mingda/mingda_rock3_0.5.inst.cfg index a759c5471ab..41803b28847 100644 --- a/resources/variants/mingda/mingda_rock3_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.6.inst.cfg b/resources/variants/mingda/mingda_rock3_0.6.inst.cfg index fa03c399cf8..cbd52b2814a 100644 --- a/resources/variants/mingda/mingda_rock3_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.8.inst.cfg b/resources/variants/mingda/mingda_rock3_0.8.inst.cfg index 79083181cd7..9fb0b2b199c 100644 --- a/resources/variants/mingda/mingda_rock3_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_1.0.inst.cfg b/resources/variants/mingda/mingda_rock3_1.0.inst.cfg index 0c9f1ba2a29..e8f7d626726 100644 --- a/resources/variants/mingda/mingda_rock3_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_0.4.inst.cfg b/resources/variants/modix/modix_v3_base_0.4.inst.cfg index cb017ace963..a5f23659c78 100644 --- a/resources/variants/modix/modix_v3_base_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_0.6.inst.cfg b/resources/variants/modix/modix_v3_base_0.6.inst.cfg index 649d953823e..ec1144d4b1c 100644 --- a/resources/variants/modix/modix_v3_base_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_0.8.inst.cfg b/resources/variants/modix/modix_v3_base_0.8.inst.cfg index 5c0008601b3..b1074fc87b5 100644 --- a/resources/variants/modix/modix_v3_base_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_1.0.inst.cfg b/resources/variants/modix/modix_v3_base_1.0.inst.cfg index 272242aa7d4..bd4ffc1d0ec 100644 --- a/resources/variants/modix/modix_v3_base_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_1.2.inst.cfg b/resources/variants/modix/modix_v3_base_1.2.inst.cfg index 53ebdd056dc..08371bbe608 100644 --- a/resources/variants/modix/modix_v3_base_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_base_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_1.4.inst.cfg b/resources/variants/modix/modix_v3_base_1.4.inst.cfg index cfd9bdfd958..e9fa4ae5fcd 100644 --- a/resources/variants/modix/modix_v3_base_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_base_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_0.4.inst.cfg b/resources/variants/modix/modix_v3_big120X_0.4.inst.cfg index de4f6f39aab..93c61e90af2 100644 --- a/resources/variants/modix/modix_v3_big120X_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_0.6.inst.cfg b/resources/variants/modix/modix_v3_big120X_0.6.inst.cfg index 07dc1b5d1a3..3b77f922638 100644 --- a/resources/variants/modix/modix_v3_big120X_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_0.8.inst.cfg b/resources/variants/modix/modix_v3_big120X_0.8.inst.cfg index 84479b17f5f..ed33a502936 100644 --- a/resources/variants/modix/modix_v3_big120X_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_1.0.inst.cfg b/resources/variants/modix/modix_v3_big120X_1.0.inst.cfg index 1e47572d40b..31a29baaaa6 100644 --- a/resources/variants/modix/modix_v3_big120X_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_1.2.inst.cfg b/resources/variants/modix/modix_v3_big120X_1.2.inst.cfg index 642c348886b..67239ec5e89 100644 --- a/resources/variants/modix/modix_v3_big120X_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_1.4.inst.cfg b/resources/variants/modix/modix_v3_big120X_1.4.inst.cfg index cec17a4aa86..093d6b23673 100644 --- a/resources/variants/modix/modix_v3_big120X_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_0.4.inst.cfg b/resources/variants/modix/modix_v3_big120Z_0.4.inst.cfg index c0f50e57edf..e4094352be9 100644 --- a/resources/variants/modix/modix_v3_big120Z_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_0.6.inst.cfg b/resources/variants/modix/modix_v3_big120Z_0.6.inst.cfg index 06fb3b0f02f..19fdc4d8a20 100644 --- a/resources/variants/modix/modix_v3_big120Z_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_0.8.inst.cfg b/resources/variants/modix/modix_v3_big120Z_0.8.inst.cfg index ef87979b9f2..54a1d3f6d7d 100644 --- a/resources/variants/modix/modix_v3_big120Z_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_1.0.inst.cfg b/resources/variants/modix/modix_v3_big120Z_1.0.inst.cfg index 2f94e456cf2..1c11bb230c3 100644 --- a/resources/variants/modix/modix_v3_big120Z_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_1.2.inst.cfg b/resources/variants/modix/modix_v3_big120Z_1.2.inst.cfg index 113efb86102..e841cc98410 100644 --- a/resources/variants/modix/modix_v3_big120Z_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_1.4.inst.cfg b/resources/variants/modix/modix_v3_big120Z_1.4.inst.cfg index e6e6b6095de..522c6bddd57 100644 --- a/resources/variants/modix/modix_v3_big120Z_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_0.4.inst.cfg b/resources/variants/modix/modix_v3_big180X_0.4.inst.cfg index 0a1957e0e9f..9cc8cc91159 100644 --- a/resources/variants/modix/modix_v3_big180X_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_0.6.inst.cfg b/resources/variants/modix/modix_v3_big180X_0.6.inst.cfg index 85f48319d28..64538b559ac 100644 --- a/resources/variants/modix/modix_v3_big180X_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_0.8.inst.cfg b/resources/variants/modix/modix_v3_big180X_0.8.inst.cfg index e191ca93987..4961c0e72d5 100644 --- a/resources/variants/modix/modix_v3_big180X_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_1.0.inst.cfg b/resources/variants/modix/modix_v3_big180X_1.0.inst.cfg index d525a6ad832..dfec34fff20 100644 --- a/resources/variants/modix/modix_v3_big180X_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_1.2.inst.cfg b/resources/variants/modix/modix_v3_big180X_1.2.inst.cfg index 25f248964f5..8b97f86daf7 100644 --- a/resources/variants/modix/modix_v3_big180X_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_1.4.inst.cfg b/resources/variants/modix/modix_v3_big180X_1.4.inst.cfg index af6f22f9c36..b4c7ac89985 100644 --- a/resources/variants/modix/modix_v3_big180X_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_0.4.inst.cfg b/resources/variants/modix/modix_v3_big40_0.4.inst.cfg index 6de9e192572..7f610622eba 100644 --- a/resources/variants/modix/modix_v3_big40_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_0.6.inst.cfg b/resources/variants/modix/modix_v3_big40_0.6.inst.cfg index 2e838b6f611..86778410ab5 100644 --- a/resources/variants/modix/modix_v3_big40_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_0.8.inst.cfg b/resources/variants/modix/modix_v3_big40_0.8.inst.cfg index 1d3eb15e01b..08b13addbac 100644 --- a/resources/variants/modix/modix_v3_big40_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_1.0.inst.cfg b/resources/variants/modix/modix_v3_big40_1.0.inst.cfg index bd35c7a25c3..3b717733719 100644 --- a/resources/variants/modix/modix_v3_big40_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_1.2.inst.cfg b/resources/variants/modix/modix_v3_big40_1.2.inst.cfg index 1f95020a3ce..dd844eaad84 100644 --- a/resources/variants/modix/modix_v3_big40_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_1.4.inst.cfg b/resources/variants/modix/modix_v3_big40_1.4.inst.cfg index 7694865f216..9ebc22a2725 100644 --- a/resources/variants/modix/modix_v3_big40_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_0.4.inst.cfg b/resources/variants/modix/modix_v3_big60_0.4.inst.cfg index 513942ae114..2dc9247c3cc 100644 --- a/resources/variants/modix/modix_v3_big60_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_0.6.inst.cfg b/resources/variants/modix/modix_v3_big60_0.6.inst.cfg index 0ffce3eff8f..9b10cbf5ea3 100644 --- a/resources/variants/modix/modix_v3_big60_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_0.8.inst.cfg b/resources/variants/modix/modix_v3_big60_0.8.inst.cfg index 6c06692a931..bbdc550ae95 100644 --- a/resources/variants/modix/modix_v3_big60_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_1.0.inst.cfg b/resources/variants/modix/modix_v3_big60_1.0.inst.cfg index 564703d1143..a40f3641e6d 100644 --- a/resources/variants/modix/modix_v3_big60_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_1.2.inst.cfg b/resources/variants/modix/modix_v3_big60_1.2.inst.cfg index 60cedbe3ded..5d625d132e7 100644 --- a/resources/variants/modix/modix_v3_big60_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_1.4.inst.cfg b/resources/variants/modix/modix_v3_big60_1.4.inst.cfg index e34222a3db5..24e54939a5e 100644 --- a/resources/variants/modix/modix_v3_big60_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_0.4.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_0.4.inst.cfg index 426adc3082e..5f6eade7485 100644 --- a/resources/variants/modix/modix_v3_bigmeter_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_0.6.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_0.6.inst.cfg index 55c62d85b8a..f91a2591ecc 100644 --- a/resources/variants/modix/modix_v3_bigmeter_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_0.8.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_0.8.inst.cfg index fb8389e1e27..af13575ebba 100644 --- a/resources/variants/modix/modix_v3_bigmeter_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_1.0.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_1.0.inst.cfg index 61ef19159ba..e623a4ad3a2 100644 --- a/resources/variants/modix/modix_v3_bigmeter_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_1.2.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_1.2.inst.cfg index 710f713918c..4d0db841386 100644 --- a/resources/variants/modix/modix_v3_bigmeter_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_1.4.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_1.4.inst.cfg index 37b12893b50..dc5374c87c1 100644 --- a/resources/variants/modix/modix_v3_bigmeter_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_0.4.inst.cfg b/resources/variants/modix/modix_v4_base_0.4.inst.cfg index 41dbef049a0..968712e72e4 100644 --- a/resources/variants/modix/modix_v4_base_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_0.6.inst.cfg b/resources/variants/modix/modix_v4_base_0.6.inst.cfg index 854259e4e1f..f83f4e23a46 100644 --- a/resources/variants/modix/modix_v4_base_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_0.8.inst.cfg b/resources/variants/modix/modix_v4_base_0.8.inst.cfg index b20cd0f3ce8..ad87dfa4cc7 100644 --- a/resources/variants/modix/modix_v4_base_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_1.0.inst.cfg b/resources/variants/modix/modix_v4_base_1.0.inst.cfg index 49281a641f9..fdc01c05e6b 100644 --- a/resources/variants/modix/modix_v4_base_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_1.2.inst.cfg b/resources/variants/modix/modix_v4_base_1.2.inst.cfg index e9f38e4bcc3..a72ca947796 100644 --- a/resources/variants/modix/modix_v4_base_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_base_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_1.4.inst.cfg b/resources/variants/modix/modix_v4_base_1.4.inst.cfg index 156ad718016..62967ea303d 100644 --- a/resources/variants/modix/modix_v4_base_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_base_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_0.4.inst.cfg b/resources/variants/modix/modix_v4_big120X_0.4.inst.cfg index 4a1edc2e9aa..9b3b9b5024c 100644 --- a/resources/variants/modix/modix_v4_big120X_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_0.6.inst.cfg b/resources/variants/modix/modix_v4_big120X_0.6.inst.cfg index 502ec9d80b9..6046383104a 100644 --- a/resources/variants/modix/modix_v4_big120X_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_0.8.inst.cfg b/resources/variants/modix/modix_v4_big120X_0.8.inst.cfg index e32506f020c..d7cc3a4cdfd 100644 --- a/resources/variants/modix/modix_v4_big120X_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_1.0.inst.cfg b/resources/variants/modix/modix_v4_big120X_1.0.inst.cfg index 8014e1af367..963e9f8ac73 100644 --- a/resources/variants/modix/modix_v4_big120X_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_1.2.inst.cfg b/resources/variants/modix/modix_v4_big120X_1.2.inst.cfg index 63b898164c5..7e84bd034d7 100644 --- a/resources/variants/modix/modix_v4_big120X_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_1.4.inst.cfg b/resources/variants/modix/modix_v4_big120X_1.4.inst.cfg index a99530b13ae..73d57eedfab 100644 --- a/resources/variants/modix/modix_v4_big120X_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_0.4.inst.cfg b/resources/variants/modix/modix_v4_big120Z_0.4.inst.cfg index 8527d717a74..1c6672972c6 100644 --- a/resources/variants/modix/modix_v4_big120Z_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_0.6.inst.cfg b/resources/variants/modix/modix_v4_big120Z_0.6.inst.cfg index 8796b02d5e9..6f0d1c42ae1 100644 --- a/resources/variants/modix/modix_v4_big120Z_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_0.8.inst.cfg b/resources/variants/modix/modix_v4_big120Z_0.8.inst.cfg index 58a1a485669..36d79c6509f 100644 --- a/resources/variants/modix/modix_v4_big120Z_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_1.0.inst.cfg b/resources/variants/modix/modix_v4_big120Z_1.0.inst.cfg index 884f21be349..6a6a9de9bf9 100644 --- a/resources/variants/modix/modix_v4_big120Z_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_1.2.inst.cfg b/resources/variants/modix/modix_v4_big120Z_1.2.inst.cfg index d880f3ae96c..64955ea44f3 100644 --- a/resources/variants/modix/modix_v4_big120Z_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_1.4.inst.cfg b/resources/variants/modix/modix_v4_big120Z_1.4.inst.cfg index 5852ce2f760..8b9f425894e 100644 --- a/resources/variants/modix/modix_v4_big120Z_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_0.4.inst.cfg b/resources/variants/modix/modix_v4_big180X_0.4.inst.cfg index 3f10dc14ddb..64086a3a2b4 100644 --- a/resources/variants/modix/modix_v4_big180X_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_0.6.inst.cfg b/resources/variants/modix/modix_v4_big180X_0.6.inst.cfg index 4c0c019f721..5240e890859 100644 --- a/resources/variants/modix/modix_v4_big180X_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_0.8.inst.cfg b/resources/variants/modix/modix_v4_big180X_0.8.inst.cfg index 721629f3889..71d1f66537e 100644 --- a/resources/variants/modix/modix_v4_big180X_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_1.0.inst.cfg b/resources/variants/modix/modix_v4_big180X_1.0.inst.cfg index c8071626d88..5b69f2036c2 100644 --- a/resources/variants/modix/modix_v4_big180X_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_1.2.inst.cfg b/resources/variants/modix/modix_v4_big180X_1.2.inst.cfg index 86b37a4d4a4..f5d5004a373 100644 --- a/resources/variants/modix/modix_v4_big180X_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_1.4.inst.cfg b/resources/variants/modix/modix_v4_big180X_1.4.inst.cfg index dbb6dc9004c..5fee5b3ee9a 100644 --- a/resources/variants/modix/modix_v4_big180X_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_0.4.inst.cfg b/resources/variants/modix/modix_v4_big60_0.4.inst.cfg index 9a7c1b2c1f7..a04deb4f411 100644 --- a/resources/variants/modix/modix_v4_big60_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_0.6.inst.cfg b/resources/variants/modix/modix_v4_big60_0.6.inst.cfg index e0a946bb6a2..07ab30b98de 100644 --- a/resources/variants/modix/modix_v4_big60_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_0.8.inst.cfg b/resources/variants/modix/modix_v4_big60_0.8.inst.cfg index 4491035dd92..1d0c073349c 100644 --- a/resources/variants/modix/modix_v4_big60_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_1.0.inst.cfg b/resources/variants/modix/modix_v4_big60_1.0.inst.cfg index 1d5ca3e4489..540a57a2cad 100644 --- a/resources/variants/modix/modix_v4_big60_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_1.2.inst.cfg b/resources/variants/modix/modix_v4_big60_1.2.inst.cfg index e2d630a8c45..051131ac0ac 100644 --- a/resources/variants/modix/modix_v4_big60_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_1.4.inst.cfg b/resources/variants/modix/modix_v4_big60_1.4.inst.cfg index 1fd7f0bd4c4..c109c6e8eed 100644 --- a/resources/variants/modix/modix_v4_big60_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_0.4.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_0.4.inst.cfg index ed406c9ad72..1c132afabdc 100644 --- a/resources/variants/modix/modix_v4_bigmeter_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_0.6.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_0.6.inst.cfg index f0b40510d71..8258617bf81 100644 --- a/resources/variants/modix/modix_v4_bigmeter_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_0.8.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_0.8.inst.cfg index d69e9964bf8..1db24a8191e 100644 --- a/resources/variants/modix/modix_v4_bigmeter_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_1.0.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_1.0.inst.cfg index 814e94fb882..9cb4c333f1f 100644 --- a/resources/variants/modix/modix_v4_bigmeter_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_1.2.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_1.2.inst.cfg index 5d783782752..54ffc66c2b2 100644 --- a/resources/variants/modix/modix_v4_bigmeter_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_1.4.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_1.4.inst.cfg index 570c683c817..5cb242da14d 100644 --- a/resources/variants/modix/modix_v4_bigmeter_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/multicomp/multicomp_mcpi200_0.2.inst.cfg b/resources/variants/multicomp/multicomp_mcpi200_0.2.inst.cfg index eb96860dcb8..9164f9ea781 100644 --- a/resources/variants/multicomp/multicomp_mcpi200_0.2.inst.cfg +++ b/resources/variants/multicomp/multicomp_mcpi200_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/multicomp/multicomp_mcpi200_0.4.inst.cfg b/resources/variants/multicomp/multicomp_mcpi200_0.4.inst.cfg index b84fee233ed..e07fbeee220 100644 --- a/resources/variants/multicomp/multicomp_mcpi200_0.4.inst.cfg +++ b/resources/variants/multicomp/multicomp_mcpi200_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/multicomp/multicomp_mcpi200_0.6.inst.cfg b/resources/variants/multicomp/multicomp_mcpi200_0.6.inst.cfg index b9f32820640..1c3771a1ce2 100644 --- a/resources/variants/multicomp/multicomp_mcpi200_0.6.inst.cfg +++ b/resources/variants/multicomp/multicomp_mcpi200_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/multicomp/multicomp_mcpi200_0.8.inst.cfg b/resources/variants/multicomp/multicomp_mcpi200_0.8.inst.cfg index ca17db8e86b..74f748a20e7 100644 --- a/resources/variants/multicomp/multicomp_mcpi200_0.8.inst.cfg +++ b/resources/variants/multicomp/multicomp_mcpi200_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/multicomp/multicomp_mcpi200_1.0.inst.cfg b/resources/variants/multicomp/multicomp_mcpi200_1.0.inst.cfg index 7f71cd6c190..31e027a18ec 100644 --- a/resources/variants/multicomp/multicomp_mcpi200_1.0.inst.cfg +++ b/resources/variants/multicomp/multicomp_mcpi200_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/nwa3d/nwa3d_a31_04.inst.cfg b/resources/variants/nwa3d/nwa3d_a31_04.inst.cfg index 71595314b63..c46b934fb15 100644 --- a/resources/variants/nwa3d/nwa3d_a31_04.inst.cfg +++ b/resources/variants/nwa3d/nwa3d_a31_04.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = DragonJe hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/nwa3d/nwa3d_a31_06.inst.cfg b/resources/variants/nwa3d/nwa3d_a31_06.inst.cfg index ceaec2b6e16..3c31742b451 100644 --- a/resources/variants/nwa3d/nwa3d_a31_06.inst.cfg +++ b/resources/variants/nwa3d/nwa3d_a31_06.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = DragonJe hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_base_0.2.inst.cfg b/resources/variants/ratrig/ratrig_base_0.2.inst.cfg index bb337f309ad..553f869f011 100644 --- a/resources/variants/ratrig/ratrig_base_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_base_0.3.inst.cfg b/resources/variants/ratrig/ratrig_base_0.3.inst.cfg index ba4d9f74b9b..7aaabc34770 100644 --- a/resources/variants/ratrig/ratrig_base_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_base_0.4.inst.cfg b/resources/variants/ratrig/ratrig_base_0.4.inst.cfg index e7849987084..1e79ffca331 100644 --- a/resources/variants/ratrig/ratrig_base_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_base_0.6.inst.cfg b/resources/variants/ratrig/ratrig_base_0.6.inst.cfg index da6595ad28a..901033a2efd 100644 --- a/resources/variants/ratrig/ratrig_base_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_base_0.8.inst.cfg b/resources/variants/ratrig/ratrig_base_0.8.inst.cfg index d710879bd0e..59e891f8c15 100644 --- a/resources/variants/ratrig/ratrig_base_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_base_1.0.inst.cfg b/resources/variants/ratrig/ratrig_base_1.0.inst.cfg index 3a8241c15a4..19c37d17687 100644 --- a/resources/variants/ratrig/ratrig_base_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.2.inst.cfg index 495d2ba3a3d..6352cdb6bc1 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.3.inst.cfg index 890d7bf30f9..4a351bd9f45 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.4.inst.cfg index e640ef7adff..3a0200217ff 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.6.inst.cfg index b25e6ee64a5..44df8992219 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.8.inst.cfg index 9462fa77481..a0d8c925983 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_200_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_1.0.inst.cfg index f817ee13a87..0753222b539 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.2.inst.cfg index a39e02aab2a..f4c80c33894 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.3.inst.cfg index a49459aac39..f062f4c7c86 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.4.inst.cfg index e0bf634a2c3..1a67b8c307f 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.6.inst.cfg index c2026ce463f..2eca8c927ac 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.8.inst.cfg index 99d6d7e38b4..1a7ca3c932a 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_300_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_1.0.inst.cfg index 7ad21e8c092..1af12f82cd0 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.2.inst.cfg index bd02a121255..4b6f94ffba9 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.3.inst.cfg index 85a585d692b..c8f002caaa4 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.4.inst.cfg index 0bcee4f0115..baa8fe1efe7 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.6.inst.cfg index 0b7ea7fc2e0..645e14a199f 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.8.inst.cfg index e5baf012f09..48815a88976 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_400_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_1.0.inst.cfg index 4b13608cf1e..dc88ce1850e 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.2.inst.cfg index 3866031f655..cf77712b11c 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.3.inst.cfg index c3dcc2fa25d..80d7a6bbf0d 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.4.inst.cfg index 8c1911df415..0d3801a983f 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.6.inst.cfg index fa9170ee161..fba4902ba20 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.8.inst.cfg index ee71589ca25..f4e761ea367 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_500_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_1.0.inst.cfg index 6e91017f1e3..11de67bfdbc 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vminion_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.2.inst.cfg index 0f9433e1b2d..191326cae95 100644 --- a/resources/variants/ratrig/ratrig_vminion_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vminion_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.3.inst.cfg index 0faf86e4d0f..6e3619f095d 100644 --- a/resources/variants/ratrig/ratrig_vminion_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vminion_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.4.inst.cfg index 0d126748d18..5ea05dfa9b1 100644 --- a/resources/variants/ratrig/ratrig_vminion_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vminion_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.6.inst.cfg index 189218b1515..c2ee92e9442 100644 --- a/resources/variants/ratrig/ratrig_vminion_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vminion_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.8.inst.cfg index e8a6437abdd..a24e0c67233 100644 --- a/resources/variants/ratrig/ratrig_vminion_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vminion_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vminion_1.0.inst.cfg index 9a552948533..fbabf642fef 100644 --- a/resources/variants/ratrig/ratrig_vminion_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_basic3_0.2.inst.cfg b/resources/variants/renkforce/renkforce_basic3_0.2.inst.cfg index 60b83e57e4b..8681f4a8a10 100644 --- a/resources/variants/renkforce/renkforce_basic3_0.2.inst.cfg +++ b/resources/variants/renkforce/renkforce_basic3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_basic3_0.4.inst.cfg b/resources/variants/renkforce/renkforce_basic3_0.4.inst.cfg index 9091a6144c2..c3b364aa416 100644 --- a/resources/variants/renkforce/renkforce_basic3_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_basic3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_basic3_0.6.inst.cfg b/resources/variants/renkforce/renkforce_basic3_0.6.inst.cfg index 9f107a665aa..e1c5ce38c88 100644 --- a/resources/variants/renkforce/renkforce_basic3_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_basic3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_basic3_0.8.inst.cfg b/resources/variants/renkforce/renkforce_basic3_0.8.inst.cfg index f63ca79ed2b..4d5ee05f26d 100644 --- a/resources/variants/renkforce/renkforce_basic3_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_basic3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_basic3_1.0.inst.cfg b/resources/variants/renkforce/renkforce_basic3_1.0.inst.cfg index a8c515229ca..2c9a63fd2f0 100644 --- a/resources/variants/renkforce/renkforce_basic3_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_basic3_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_cubeone_0.7.inst.cfg b/resources/variants/renkforce/renkforce_cubeone_0.7.inst.cfg index 53d4d0a2792..28a7abf81a1 100644 --- a/resources/variants/renkforce/renkforce_cubeone_0.7.inst.cfg +++ b/resources/variants/renkforce/renkforce_cubeone_0.7.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro10plus_0.2.inst.cfg b/resources/variants/renkforce/renkforce_pro10plus_0.2.inst.cfg index e2a36778c66..7af87e50c4f 100644 --- a/resources/variants/renkforce/renkforce_pro10plus_0.2.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro10plus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro10plus_0.4.inst.cfg b/resources/variants/renkforce/renkforce_pro10plus_0.4.inst.cfg index aea6acc5e52..70ca42b4145 100644 --- a/resources/variants/renkforce/renkforce_pro10plus_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro10plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro10plus_0.6.inst.cfg b/resources/variants/renkforce/renkforce_pro10plus_0.6.inst.cfg index 228ea984256..7b253ecf4b7 100644 --- a/resources/variants/renkforce/renkforce_pro10plus_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro10plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro10plus_0.8.inst.cfg b/resources/variants/renkforce/renkforce_pro10plus_0.8.inst.cfg index c7b037a84d4..c4e1a6771e0 100644 --- a/resources/variants/renkforce/renkforce_pro10plus_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro10plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro10plus_1.0.inst.cfg b/resources/variants/renkforce/renkforce_pro10plus_1.0.inst.cfg index 2c1e6194ed6..e0ec053bda9 100644 --- a/resources/variants/renkforce/renkforce_pro10plus_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro10plus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro3_0.2.inst.cfg b/resources/variants/renkforce/renkforce_pro3_0.2.inst.cfg index 21ba3e3fa41..93ba24d86e6 100644 --- a/resources/variants/renkforce/renkforce_pro3_0.2.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro3_0.4.inst.cfg b/resources/variants/renkforce/renkforce_pro3_0.4.inst.cfg index 5b52a0479e3..707b302ed67 100644 --- a/resources/variants/renkforce/renkforce_pro3_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro3_0.6.inst.cfg b/resources/variants/renkforce/renkforce_pro3_0.6.inst.cfg index 89d204ff0bd..26d51c1bf05 100644 --- a/resources/variants/renkforce/renkforce_pro3_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro3_0.8.inst.cfg b/resources/variants/renkforce/renkforce_pro3_0.8.inst.cfg index 37d6d17c560..7d5eada60a8 100644 --- a/resources/variants/renkforce/renkforce_pro3_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro3_1.0.inst.cfg b/resources/variants/renkforce/renkforce_pro3_1.0.inst.cfg index 8ebb971022d..ecb5cb827f5 100644 --- a/resources/variants/renkforce/renkforce_pro3_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro3_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6_0.2.inst.cfg b/resources/variants/renkforce/renkforce_pro6_0.2.inst.cfg index 203cbb5b8d5..871a337348b 100644 --- a/resources/variants/renkforce/renkforce_pro6_0.2.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6_0.4.inst.cfg b/resources/variants/renkforce/renkforce_pro6_0.4.inst.cfg index b71d1b2d841..2c265e3b053 100644 --- a/resources/variants/renkforce/renkforce_pro6_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6_0.6.inst.cfg b/resources/variants/renkforce/renkforce_pro6_0.6.inst.cfg index 6796ef989a0..f1479e81993 100644 --- a/resources/variants/renkforce/renkforce_pro6_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6_0.8.inst.cfg b/resources/variants/renkforce/renkforce_pro6_0.8.inst.cfg index d9114dc05ae..287933123f8 100644 --- a/resources/variants/renkforce/renkforce_pro6_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6_1.0.inst.cfg b/resources/variants/renkforce/renkforce_pro6_1.0.inst.cfg index 83332acfa96..bade0df4bec 100644 --- a/resources/variants/renkforce/renkforce_pro6_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6plus_0.4.inst.cfg b/resources/variants/renkforce/renkforce_pro6plus_0.4.inst.cfg index 5e276f3584e..d8cd4cf3057 100644 --- a/resources/variants/renkforce/renkforce_pro6plus_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6plus_0.6.inst.cfg b/resources/variants/renkforce/renkforce_pro6plus_0.6.inst.cfg index 51b3389ea67..6162c38a7e0 100644 --- a/resources/variants/renkforce/renkforce_pro6plus_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6plus_0.8.inst.cfg b/resources/variants/renkforce/renkforce_pro6plus_0.8.inst.cfg index 7eb129d4d53..e3cde95994b 100644 --- a/resources/variants/renkforce/renkforce_pro6plus_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6plus_1.0.inst.cfg b/resources/variants/renkforce/renkforce_pro6plus_1.0.inst.cfg index 79f9ad7959c..427f6b3c07b 100644 --- a/resources/variants/renkforce/renkforce_pro6plus_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6plus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro7dual_0.2.inst.cfg b/resources/variants/renkforce/renkforce_pro7dual_0.2.inst.cfg index 703fc81fd3b..0972aeccb61 100755 --- a/resources/variants/renkforce/renkforce_pro7dual_0.2.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro7dual_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro7dual_0.4.inst.cfg b/resources/variants/renkforce/renkforce_pro7dual_0.4.inst.cfg index 64a558c3dd6..235a3a45587 100755 --- a/resources/variants/renkforce/renkforce_pro7dual_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro7dual_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro7dual_0.6.inst.cfg b/resources/variants/renkforce/renkforce_pro7dual_0.6.inst.cfg index e3f73d36449..c2af0c2532f 100755 --- a/resources/variants/renkforce/renkforce_pro7dual_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro7dual_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro7dual_0.8.inst.cfg b/resources/variants/renkforce/renkforce_pro7dual_0.8.inst.cfg index 7c060510e33..37c7b58f085 100755 --- a/resources/variants/renkforce/renkforce_pro7dual_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro7dual_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro7dual_1.0.inst.cfg b/resources/variants/renkforce/renkforce_pro7dual_1.0.inst.cfg index 1c9a155153c..b9c1fb3d955 100755 --- a/resources/variants/renkforce/renkforce_pro7dual_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro7dual_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.2.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.2.inst.cfg index cdc699ec08a..95676e994a3 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.3.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.3.inst.cfg index 6d61a4aab8d..7cfc3efc576 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.4.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.4.inst.cfg index 9b9c3448baf..4c49dec4027 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.5.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.5.inst.cfg index 599fdf099db..91bb80628e3 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.6.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.6.inst.cfg index 509e7f20258..9c0e6ecddcc 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.8.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.8.inst.cfg index eb2f8fa9fd4..b078d6089e7 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_1.0.inst.cfg b/resources/variants/sovol/sovol_base_bowden_1.0.inst.cfg index 0eedaad4a1a..40fcf0f5564 100644 --- a/resources/variants/sovol/sovol_base_bowden_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.2.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.2.inst.cfg index cdc699ec08a..95676e994a3 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.3.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.3.inst.cfg index 6d61a4aab8d..7cfc3efc576 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.4.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.4.inst.cfg index 9b9c3448baf..4c49dec4027 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.5.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.5.inst.cfg index 599fdf099db..91bb80628e3 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.6.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.6.inst.cfg index 509e7f20258..9c0e6ecddcc 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.8.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.8.inst.cfg index eb2f8fa9fd4..b078d6089e7 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_1.0.inst.cfg b/resources/variants/sovol/sovol_base_planetary_1.0.inst.cfg index 0eedaad4a1a..40fcf0f5564 100644 --- a/resources/variants/sovol/sovol_base_planetary_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.2.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.2.inst.cfg index cdc699ec08a..95676e994a3 100644 --- a/resources/variants/sovol/sovol_base_titan_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.3.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.3.inst.cfg index 6d61a4aab8d..7cfc3efc576 100644 --- a/resources/variants/sovol/sovol_base_titan_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.4.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.4.inst.cfg index 9b9c3448baf..4c49dec4027 100644 --- a/resources/variants/sovol/sovol_base_titan_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.5.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.5.inst.cfg index 599fdf099db..91bb80628e3 100644 --- a/resources/variants/sovol/sovol_base_titan_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.6.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.6.inst.cfg index 509e7f20258..9c0e6ecddcc 100644 --- a/resources/variants/sovol/sovol_base_titan_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.8.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.8.inst.cfg index eb2f8fa9fd4..b078d6089e7 100644 --- a/resources/variants/sovol/sovol_base_titan_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_1.0.inst.cfg b/resources/variants/sovol/sovol_base_titan_1.0.inst.cfg index 0eedaad4a1a..40fcf0f5564 100644 --- a/resources/variants/sovol/sovol_base_titan_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.2.inst.cfg b/resources/variants/sovol/sovol_sv01_0.2.inst.cfg index 8cb6eb9fd6c..4675382ac7f 100644 --- a/resources/variants/sovol/sovol_sv01_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.3.inst.cfg b/resources/variants/sovol/sovol_sv01_0.3.inst.cfg index 6c1cf8aa25e..1f4dc19dbc8 100644 --- a/resources/variants/sovol/sovol_sv01_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.4.inst.cfg b/resources/variants/sovol/sovol_sv01_0.4.inst.cfg index fcdd265d042..8a9ff336d63 100644 --- a/resources/variants/sovol/sovol_sv01_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.5.inst.cfg b/resources/variants/sovol/sovol_sv01_0.5.inst.cfg index 5fbd113f8e5..18cf8af2433 100644 --- a/resources/variants/sovol/sovol_sv01_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.6.inst.cfg b/resources/variants/sovol/sovol_sv01_0.6.inst.cfg index 1cb46e18f51..076b31f4ea7 100644 --- a/resources/variants/sovol/sovol_sv01_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.8.inst.cfg b/resources/variants/sovol/sovol_sv01_0.8.inst.cfg index 2aeab0e239c..02088701c9f 100644 --- a/resources/variants/sovol/sovol_sv01_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_1.0.inst.cfg b/resources/variants/sovol/sovol_sv01_1.0.inst.cfg index 4b822dc95bc..67c4921b418 100644 --- a/resources/variants/sovol/sovol_sv01_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.2.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.2.inst.cfg index cdbcdb33377..f7ef67df9a0 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.3.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.3.inst.cfg index d984439be4b..66418fccdde 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.4.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.4.inst.cfg index db9fe5749b4..b6651990277 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.5.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.5.inst.cfg index 9b34ca0a2e5..3ac09cd534a 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.6.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.6.inst.cfg index 247f3ac25cb..2b4ba7a8e69 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.8.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.8.inst.cfg index 12e667ae056..d19443e26a9 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_1.0.inst.cfg b/resources/variants/sovol/sovol_sv01pro_1.0.inst.cfg index ac71470ed67..79db65ef8c4 100644 --- a/resources/variants/sovol/sovol_sv01pro_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.2.inst.cfg b/resources/variants/sovol/sovol_sv03_0.2.inst.cfg index d8cb16668c8..b27c368ba7b 100644 --- a/resources/variants/sovol/sovol_sv03_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.3.inst.cfg b/resources/variants/sovol/sovol_sv03_0.3.inst.cfg index 068bdbc98ff..c0e0ea8e030 100644 --- a/resources/variants/sovol/sovol_sv03_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.4.inst.cfg b/resources/variants/sovol/sovol_sv03_0.4.inst.cfg index 8f60d5fe1fa..88fe704558b 100644 --- a/resources/variants/sovol/sovol_sv03_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.5.inst.cfg b/resources/variants/sovol/sovol_sv03_0.5.inst.cfg index 97cddbd75cb..aa3b6dcbd63 100644 --- a/resources/variants/sovol/sovol_sv03_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.6.inst.cfg b/resources/variants/sovol/sovol_sv03_0.6.inst.cfg index a89fe331f91..d42f878ed64 100644 --- a/resources/variants/sovol/sovol_sv03_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.8.inst.cfg b/resources/variants/sovol/sovol_sv03_0.8.inst.cfg index 27e6366a212..6eb0061d4c3 100644 --- a/resources/variants/sovol/sovol_sv03_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_1.0.inst.cfg b/resources/variants/sovol/sovol_sv03_1.0.inst.cfg index 3cb063e03ed..72800bf3a17 100644 --- a/resources/variants/sovol/sovol_sv03_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.2.inst.cfg b/resources/variants/sovol/sovol_sv05_0.2.inst.cfg index 17e45bc4eb6..bbb14c29613 100644 --- a/resources/variants/sovol/sovol_sv05_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.3.inst.cfg b/resources/variants/sovol/sovol_sv05_0.3.inst.cfg index 207bfe8750b..429aa180249 100644 --- a/resources/variants/sovol/sovol_sv05_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.4.inst.cfg b/resources/variants/sovol/sovol_sv05_0.4.inst.cfg index cb766a176f8..d3b71026062 100644 --- a/resources/variants/sovol/sovol_sv05_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.5.inst.cfg b/resources/variants/sovol/sovol_sv05_0.5.inst.cfg index 40877fe343b..398012ed4fa 100644 --- a/resources/variants/sovol/sovol_sv05_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.6.inst.cfg b/resources/variants/sovol/sovol_sv05_0.6.inst.cfg index 043f6621ab0..df3b34602a4 100644 --- a/resources/variants/sovol/sovol_sv05_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.8.inst.cfg b/resources/variants/sovol/sovol_sv05_0.8.inst.cfg index 1bf2de97a72..80b859c9fff 100644 --- a/resources/variants/sovol/sovol_sv05_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_1.0.inst.cfg b/resources/variants/sovol/sovol_sv05_1.0.inst.cfg index 2ccf5ce5b78..08a03569a58 100644 --- a/resources/variants/sovol/sovol_sv05_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.2.inst.cfg b/resources/variants/sovol/sovol_sv06_0.2.inst.cfg index 0feeee93b79..e8bb5f98236 100644 --- a/resources/variants/sovol/sovol_sv06_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.3.inst.cfg b/resources/variants/sovol/sovol_sv06_0.3.inst.cfg index f6badce3996..e56a618f9ef 100644 --- a/resources/variants/sovol/sovol_sv06_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.4.inst.cfg b/resources/variants/sovol/sovol_sv06_0.4.inst.cfg index 1ef526b59aa..729f0a80994 100644 --- a/resources/variants/sovol/sovol_sv06_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.5.inst.cfg b/resources/variants/sovol/sovol_sv06_0.5.inst.cfg index b702272de8a..697c0a8cbd7 100644 --- a/resources/variants/sovol/sovol_sv06_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.6.inst.cfg b/resources/variants/sovol/sovol_sv06_0.6.inst.cfg index cc2cfb918fe..76afaa41152 100644 --- a/resources/variants/sovol/sovol_sv06_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.8.inst.cfg b/resources/variants/sovol/sovol_sv06_0.8.inst.cfg index 645d9af3881..57aaba95d0e 100644 --- a/resources/variants/sovol/sovol_sv06_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_1.0.inst.cfg b/resources/variants/sovol/sovol_sv06_1.0.inst.cfg index f012540e97e..1def6c310d0 100644 --- a/resources/variants/sovol/sovol_sv06_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.2.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.2.inst.cfg index be7bcbab110..801913f2a8b 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.3.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.3.inst.cfg index 8cc510304bc..24746b4b005 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.4.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.4.inst.cfg index 470c5995549..36c4c01724a 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.5.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.5.inst.cfg index 26a940fa512..a4ab21f715b 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.6.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.6.inst.cfg index c891fafd9ff..d502887d21f 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.8.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.8.inst.cfg index 8bd7ba9c250..4d27ed19d4d 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_1.0.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_1.0.inst.cfg index 729ff0d845d..f45e0f73d05 100644 --- a/resources/variants/sovol/sovol_sv06_plus_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_brass_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_brass_04.inst.cfg index c4e2e42cf40..5e1ead766f9 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_brass_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_brass_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_brass_06.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_brass_06.inst.cfg index af86dfec839..87265e5a160 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_brass_06.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_brass_06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_brass_08.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_brass_08.inst.cfg index 5a769c4a081..9f04f01e67f 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_brass_08.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_brass_08.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_04.inst.cfg index 37e404e4fb8..4ef793240b5 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_06.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_06.inst.cfg index 4e803ccaf1c..fc5ace3f860 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_06.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_08.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_08.inst.cfg index fec8ced11d5..0c4514dfd59 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_08.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_08.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_hardened_steel_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_hardened_steel_04.inst.cfg index 8db5cf2a63b..4ed76619dd1 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_hardened_steel_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_hardened_steel_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_hardened_steel_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_hardened_steel_04.inst.cfg index 51a91a5aed7..0ffce60431b 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_hardened_steel_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_hardened_steel_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_04.inst.cfg index 29c92096474..3f71d274043 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_06.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_06.inst.cfg index 6659d54c3ea..5910177288c 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_06.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_08.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_08.inst.cfg index 45aa9d1f7d8..49688ae6f4a 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_08.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_08.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_hardened_steel_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_hardened_steel_04.inst.cfg index 1847a09a91d..92748d4d3dd 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_hardened_steel_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_hardened_steel_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg b/resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg index 4bf51a967ad..dd9958c48bc 100644 --- a/resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_standard_04.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_04.inst.cfg index 3d705453d87..37cf713a158 100644 --- a/resources/variants/strateo3d/strateo3d_standard_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_standard_06.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_06.inst.cfg index 3443f64531e..269c25aaa53 100644 --- a/resources/variants/strateo3d/strateo3d_standard_06.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_standard_08.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_08.inst.cfg index f436ce1fe74..58441eba1e3 100644 --- a/resources/variants/strateo3d/strateo3d_standard_08.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_08.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_standard_10.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_10.inst.cfg index b957d58d9fe..4ab3b3926d8 100644 --- a/resources/variants/strateo3d/strateo3d_standard_10.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_10.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_standard_12.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_12.inst.cfg index 3a35f9c4a20..94a250cae2c 100644 --- a/resources/variants/strateo3d/strateo3d_standard_12.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_12.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg index 634cb55aae4..a062e40eaa8 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg index 736dc65e3bd..4f7c872f83d 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg index e8c6ccbb37e..bac385cd611 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg index 2cb0ceec7d0..2200d028c1e 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg index dca75697a42..c82ea7b8ced 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg index b3313dfc25b..a3b6e8ab7a1 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg index a3290a298a3..6e59413f39b 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.2.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.2.inst.cfg index 4a3161ad318..c6f6a59cc9c 100644 --- a/resources/variants/tizyx/tizyx_evy_0.2.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.3.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.3.inst.cfg index bd492a22244..1bcc6f9f80d 100644 --- a/resources/variants/tizyx/tizyx_evy_0.3.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.4.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.4.inst.cfg index d92f9805418..0184650eac6 100644 --- a/resources/variants/tizyx/tizyx_evy_0.4.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.5.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.5.inst.cfg index 0c70e642fad..85f310a75cf 100644 --- a/resources/variants/tizyx/tizyx_evy_0.5.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.5.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.6.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.6.inst.cfg index a8f810227c3..c11278805fb 100644 --- a/resources/variants/tizyx/tizyx_evy_0.6.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.8.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.8.inst.cfg index 9d5134ba87d..db57e2489df 100644 --- a/resources/variants/tizyx/tizyx_evy_0.8.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_1.0.inst.cfg b/resources/variants/tizyx/tizyx_evy_1.0.inst.cfg index 040840898ad..25919c41cbc 100644 --- a/resources/variants/tizyx/tizyx_evy_1.0.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_1.0.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_dual_classic.inst.cfg b/resources/variants/tizyx/tizyx_evy_dual_classic.inst.cfg index 42c8a0cd1af..b74479ed9b7 100644 --- a/resources/variants/tizyx/tizyx_evy_dual_classic.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_dual_classic.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_dual_direct_drive.inst.cfg b/resources/variants/tizyx/tizyx_evy_dual_direct_drive.inst.cfg index e9174895d60..e423042abac 100644 --- a/resources/variants/tizyx/tizyx_evy_dual_direct_drive.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_dual_direct_drive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.2.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.2.inst.cfg index 1dac3325892..849ff5b5497 100644 --- a/resources/variants/tizyx/tizyx_k25_0.2.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.3.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.3.inst.cfg index 604408728f9..f21aaeb9c41 100644 --- a/resources/variants/tizyx/tizyx_k25_0.3.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.4.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.4.inst.cfg index 74446c4ef11..1b96c65430a 100644 --- a/resources/variants/tizyx/tizyx_k25_0.4.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.5.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.5.inst.cfg index cf952469089..5dd314fc6e0 100644 --- a/resources/variants/tizyx/tizyx_k25_0.5.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.6.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.6.inst.cfg index 3f700e6fc60..4d63f1e3156 100644 --- a/resources/variants/tizyx/tizyx_k25_0.6.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.8.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.8.inst.cfg index f384dbc5144..6eb8ad3808b 100644 --- a/resources/variants/tizyx/tizyx_k25_0.8.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_1.0.inst.cfg b/resources/variants/tizyx/tizyx_k25_1.0.inst.cfg index 85341749fa5..e28afbbd31d 100644 --- a/resources/variants/tizyx/tizyx_k25_1.0.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.2.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.2.inst.cfg index 40a1d23b469..4ebd9d8b253 100644 --- a/resources/variants/tronxy/tronxy_d01_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.3.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.3.inst.cfg index 9e04c916593..3350cbd4616 100644 --- a/resources/variants/tronxy/tronxy_d01_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.4.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.4.inst.cfg index a695a7b8987..bfc8757ad31 100644 --- a/resources/variants/tronxy/tronxy_d01_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.5.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.5.inst.cfg index 2fed2b9f4ce..34763768cbe 100644 --- a/resources/variants/tronxy/tronxy_d01_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.6.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.6.inst.cfg index 1c64d304f19..b8a463eb60a 100644 --- a/resources/variants/tronxy/tronxy_d01_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.8.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.8.inst.cfg index 6a19699f347..825d7601203 100644 --- a/resources/variants/tronxy/tronxy_d01_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.2.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.2.inst.cfg index 764aa1fe12a..c42982fa970 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.3.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.3.inst.cfg index fb79bbcc37e..518bd27d4fe 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.4.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.4.inst.cfg index 2367710a734..b5038480590 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.5.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.5.inst.cfg index 78de9fbbf89..c64ca108d27 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.6.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.6.inst.cfg index 902db8e3786..c02e91690dd 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.8.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.8.inst.cfg index 06cc0beb0ff..6b486043aaf 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.2.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.2.inst.cfg index 2789bd37149..5c037481a11 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.3.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.3.inst.cfg index 32dfae92e33..3c571bdb8da 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.4.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.4.inst.cfg index a135b895790..d84021788f6 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.5.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.5.inst.cfg index 76bbf7c4c25..f8b83d537fb 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.6.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.6.inst.cfg index 25aa27be373..1e9d8b78136 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.8.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.8.inst.cfg index efe536c1ce5..918b620ec58 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.2.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.2.inst.cfg index 987aebfbed3..151b1b04723 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.3.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.3.inst.cfg index 7c0dd2d6487..b479c964376 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.4.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.4.inst.cfg index 671ea01991a..bf8a8c41938 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.5.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.5.inst.cfg index a275d9d7d9e..0d1fc72a92a 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.6.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.6.inst.cfg index a46103edaa7..b90788f72b8 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.8.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.8.inst.cfg index c9ff4eee7bb..8671621b0d2 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.2.inst.cfg b/resources/variants/tronxy/tronxy_x_0.2.inst.cfg index 804ee11837e..a5a48065b7c 100644 --- a/resources/variants/tronxy/tronxy_x_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.3.inst.cfg b/resources/variants/tronxy/tronxy_x_0.3.inst.cfg index ed1a34ccd45..55be830f9a9 100644 --- a/resources/variants/tronxy/tronxy_x_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.4.inst.cfg b/resources/variants/tronxy/tronxy_x_0.4.inst.cfg index 30cdb91f79d..bca306577f1 100644 --- a/resources/variants/tronxy/tronxy_x_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.5.inst.cfg b/resources/variants/tronxy/tronxy_x_0.5.inst.cfg index 5b637198c30..da9038083f2 100644 --- a/resources/variants/tronxy/tronxy_x_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.6.inst.cfg b/resources/variants/tronxy/tronxy_x_0.6.inst.cfg index 6e48dc855e7..d235caf8bac 100644 --- a/resources/variants/tronxy/tronxy_x_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.8.inst.cfg b/resources/variants/tronxy/tronxy_x_0.8.inst.cfg index 8340de4d80c..6e6a213099e 100644 --- a/resources/variants/tronxy/tronxy_x_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.2.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.2.inst.cfg index c3f734e5c55..28a372882a1 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.3.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.3.inst.cfg index f2abb657ad9..bb0bc6c05d5 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.4.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.4.inst.cfg index 3f5a42d8e6a..6e1a243fcd3 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.5.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.5.inst.cfg index aa585f0f545..6f23af4befa 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.6.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.6.inst.cfg index 45edf499858..c4ac9172589 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.8.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.8.inst.cfg index 36f22177823..dd253d02b30 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.2.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.2.inst.cfg index e37c5d62ad0..997eeec9806 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.3.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.3.inst.cfg index 1b75373c943..b039c68bf99 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.4.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.4.inst.cfg index 8d7eea1d9aa..16a41c96f5b 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.5.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.5.inst.cfg index 8a3044a9d96..0d6fc5596a9 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.6.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.6.inst.cfg index 8630fdcc7d5..234f4967b55 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.8.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.8.inst.cfg index e8b980bc7e8..4f47a1d6bbe 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.2.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.2.inst.cfg index 821ef65fc0c..fa88c7cb80e 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.3.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.3.inst.cfg index c5bd4ce26ca..0fb159eb588 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.4.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.4.inst.cfg index 462cfdd08bb..8788191875f 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.5.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.5.inst.cfg index 12325f64743..89495854303 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.6.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.6.inst.cfg index cc667ce66ba..881c9cc12d9 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.8.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.8.inst.cfg index 706eba90f92..39730a67941 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.2.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.2.inst.cfg index 48a16c26864..b6d369887d4 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.3.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.3.inst.cfg index c3c9f85b98f..3938926d4ec 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.4.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.4.inst.cfg index db81b08c2af..1460fae8520 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.5.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.5.inst.cfg index 0cf66885ff3..465351877a1 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.6.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.6.inst.cfg index bee63cb6717..a61dfa6a41d 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.8.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.8.inst.cfg index b4b8fcaaf76..acf463f1a29 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.2.inst.cfg b/resources/variants/two_trees/two_trees_base_0.2.inst.cfg index b0b48054fa7..5d00116eb2e 100644 --- a/resources/variants/two_trees/two_trees_base_0.2.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.3.inst.cfg b/resources/variants/two_trees/two_trees_base_0.3.inst.cfg index bf4c206b70b..432c55a4b28 100644 --- a/resources/variants/two_trees/two_trees_base_0.3.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.4.inst.cfg b/resources/variants/two_trees/two_trees_base_0.4.inst.cfg index 50b64732fa3..70d24160302 100644 --- a/resources/variants/two_trees/two_trees_base_0.4.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.5.inst.cfg b/resources/variants/two_trees/two_trees_base_0.5.inst.cfg index dda348b557c..125370a2479 100644 --- a/resources/variants/two_trees/two_trees_base_0.5.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.6.inst.cfg b/resources/variants/two_trees/two_trees_base_0.6.inst.cfg index e5e503c2afa..2f580b6ed91 100644 --- a/resources/variants/two_trees/two_trees_base_0.6.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.8.inst.cfg b/resources/variants/two_trees/two_trees_base_0.8.inst.cfg index dd803465499..9bb89c1a052 100644 --- a/resources/variants/two_trees/two_trees_base_0.8.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_1.0.inst.cfg b/resources/variants/two_trees/two_trees_base_1.0.inst.cfg index 2f33edf8b3b..732abfd7914 100644 --- a/resources/variants/two_trees/two_trees_base_1.0.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.2.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.2.inst.cfg index 42273edd7ad..c0cf712a9ec 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.2.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.3.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.3.inst.cfg index c0a5591e09d..3630aecfe75 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.3.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.4.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.4.inst.cfg index 9e2c0077f75..faa479d6fa6 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.4.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.5.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.5.inst.cfg index 170fa9abb59..691bee192b8 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.5.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.6.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.6.inst.cfg index 008606f0b8a..c97ce33271c 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.6.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.8.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.8.inst.cfg index a25a5f275d0..e391ad8e202 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.8.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_1.0.inst.cfg b/resources/variants/two_trees/two_trees_bluer_1.0.inst.cfg index e6286486dec..7553db150ad 100644 --- a/resources/variants/two_trees/two_trees_bluer_1.0.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.2.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.2.inst.cfg index f3de8c6d994..b455cba30a8 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.2.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.3.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.3.inst.cfg index d7d8be1d687..abdd6c0a70d 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.3.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.4.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.4.inst.cfg index 25d8a264cab..ee171d1ca9b 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.4.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.5.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.5.inst.cfg index 92f0c6323c4..e9e702b4de2 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.5.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.6.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.6.inst.cfg index 4b0255019d2..2c123df75cf 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.6.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.8.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.8.inst.cfg index 9e6e78f7fcb..c0e271e76f3 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.8.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_1.0.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_1.0.inst.cfg index c8f50ab9264..42e4794f6de 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_1.0.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.2.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.2.inst.cfg index a2a849dd6af..e8efa941e0a 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.2.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.3.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.3.inst.cfg index 9e0ff0f8f19..bc8495b121d 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.3.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.4.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.4.inst.cfg index 7ec834604c7..49a3b37883d 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.4.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.5.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.5.inst.cfg index 0f254451872..750c72175f5 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.5.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.6.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.6.inst.cfg index ea4f869435a..7d65ea1195c 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.6.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.8.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.8.inst.cfg index 4d8a971361f..d2d2e961a2d 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.8.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_1.0.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_1.0.inst.cfg index 7366f7cef9e..59ecdce7215 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_1.0.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.2.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.2.inst.cfg index 09083d9c7de..3016320978e 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.2.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.3.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.3.inst.cfg index 4167cead959..73a9f123324 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.3.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.4.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.4.inst.cfg index 50fba07f50a..6f72dc5c888 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.4.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.5.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.5.inst.cfg index df8b31288ad..56140477f05 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.5.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.6.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.6.inst.cfg index b82025b8ae7..6e0aa7a76aa 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.6.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.8.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.8.inst.cfg index 775e46775df..dbe99001e18 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.8.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_1.0.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_1.0.inst.cfg index a6e66802091..9c9f41a21ae 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_1.0.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_olsson_0.25.inst.cfg b/resources/variants/ultimaker2_extended_olsson_0.25.inst.cfg index 0e6d8e2cf4c..2b41a131bf0 100644 --- a/resources/variants/ultimaker2_extended_olsson_0.25.inst.cfg +++ b/resources/variants/ultimaker2_extended_olsson_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_olsson_0.4.inst.cfg b/resources/variants/ultimaker2_extended_olsson_0.4.inst.cfg index 3edc01a2fa2..b9da9cb427d 100644 --- a/resources/variants/ultimaker2_extended_olsson_0.4.inst.cfg +++ b/resources/variants/ultimaker2_extended_olsson_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_olsson_0.6.inst.cfg b/resources/variants/ultimaker2_extended_olsson_0.6.inst.cfg index 2694d2b862b..d1435a038f9 100644 --- a/resources/variants/ultimaker2_extended_olsson_0.6.inst.cfg +++ b/resources/variants/ultimaker2_extended_olsson_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_olsson_0.8.inst.cfg b/resources/variants/ultimaker2_extended_olsson_0.8.inst.cfg index 66806f698de..7939329760f 100644 --- a/resources/variants/ultimaker2_extended_olsson_0.8.inst.cfg +++ b/resources/variants/ultimaker2_extended_olsson_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_plus_0.25.inst.cfg b/resources/variants/ultimaker2_extended_plus_0.25.inst.cfg index 79d87fc1249..f390522673a 100644 --- a/resources/variants/ultimaker2_extended_plus_0.25.inst.cfg +++ b/resources/variants/ultimaker2_extended_plus_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_plus_0.4.inst.cfg b/resources/variants/ultimaker2_extended_plus_0.4.inst.cfg index cfdb8d8cb37..fe1f3f7cf83 100644 --- a/resources/variants/ultimaker2_extended_plus_0.4.inst.cfg +++ b/resources/variants/ultimaker2_extended_plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_plus_0.6.inst.cfg b/resources/variants/ultimaker2_extended_plus_0.6.inst.cfg index 66aa764c603..7cf05dc5cef 100644 --- a/resources/variants/ultimaker2_extended_plus_0.6.inst.cfg +++ b/resources/variants/ultimaker2_extended_plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_plus_0.8.inst.cfg b/resources/variants/ultimaker2_extended_plus_0.8.inst.cfg index bccd63f423b..96bdd72b37c 100644 --- a/resources/variants/ultimaker2_extended_plus_0.8.inst.cfg +++ b/resources/variants/ultimaker2_extended_plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_olsson_0.25.inst.cfg b/resources/variants/ultimaker2_olsson_0.25.inst.cfg index 8b759962edc..7ac69be938d 100644 --- a/resources/variants/ultimaker2_olsson_0.25.inst.cfg +++ b/resources/variants/ultimaker2_olsson_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_olsson_0.4.inst.cfg b/resources/variants/ultimaker2_olsson_0.4.inst.cfg index 650782d9c99..b3bd76d2bb6 100644 --- a/resources/variants/ultimaker2_olsson_0.4.inst.cfg +++ b/resources/variants/ultimaker2_olsson_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_olsson_0.6.inst.cfg b/resources/variants/ultimaker2_olsson_0.6.inst.cfg index 646aba5b0b5..1ef825ce735 100644 --- a/resources/variants/ultimaker2_olsson_0.6.inst.cfg +++ b/resources/variants/ultimaker2_olsson_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_olsson_0.8.inst.cfg b/resources/variants/ultimaker2_olsson_0.8.inst.cfg index 77c689c8c36..78f9a448d9e 100644 --- a/resources/variants/ultimaker2_olsson_0.8.inst.cfg +++ b/resources/variants/ultimaker2_olsson_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_0.25.inst.cfg b/resources/variants/ultimaker2_plus_0.25.inst.cfg index 106a1cde2ab..8191646d70e 100644 --- a/resources/variants/ultimaker2_plus_0.25.inst.cfg +++ b/resources/variants/ultimaker2_plus_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_0.4.inst.cfg b/resources/variants/ultimaker2_plus_0.4.inst.cfg index 22ef7d78584..b93a69a37b1 100644 --- a/resources/variants/ultimaker2_plus_0.4.inst.cfg +++ b/resources/variants/ultimaker2_plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_0.6.inst.cfg b/resources/variants/ultimaker2_plus_0.6.inst.cfg index 41c589f8789..7d26c7235cb 100644 --- a/resources/variants/ultimaker2_plus_0.6.inst.cfg +++ b/resources/variants/ultimaker2_plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_0.8.inst.cfg b/resources/variants/ultimaker2_plus_0.8.inst.cfg index 5eeaef95769..dae23df0882 100644 --- a/resources/variants/ultimaker2_plus_0.8.inst.cfg +++ b/resources/variants/ultimaker2_plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_connect_0.25.inst.cfg b/resources/variants/ultimaker2_plus_connect_0.25.inst.cfg index dc909a71555..25a6d69377e 100644 --- a/resources/variants/ultimaker2_plus_connect_0.25.inst.cfg +++ b/resources/variants/ultimaker2_plus_connect_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_connect_0.4.inst.cfg b/resources/variants/ultimaker2_plus_connect_0.4.inst.cfg index f4da1e9bc87..4b031270187 100644 --- a/resources/variants/ultimaker2_plus_connect_0.4.inst.cfg +++ b/resources/variants/ultimaker2_plus_connect_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_connect_0.6.inst.cfg b/resources/variants/ultimaker2_plus_connect_0.6.inst.cfg index efb4f986092..12ed089c829 100644 --- a/resources/variants/ultimaker2_plus_connect_0.6.inst.cfg +++ b/resources/variants/ultimaker2_plus_connect_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_connect_0.8.inst.cfg b/resources/variants/ultimaker2_plus_connect_0.8.inst.cfg index a4306331f1e..b049720372a 100644 --- a/resources/variants/ultimaker2_plus_connect_0.8.inst.cfg +++ b/resources/variants/ultimaker2_plus_connect_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker3_aa0.25.inst.cfg b/resources/variants/ultimaker3_aa0.25.inst.cfg index 1f1152ba414..134d7d48061 100644 --- a/resources/variants/ultimaker3_aa0.25.inst.cfg +++ b/resources/variants/ultimaker3_aa0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker3_aa0.8.inst.cfg b/resources/variants/ultimaker3_aa0.8.inst.cfg index 4190aab0cd1..eb1ec461e71 100644 --- a/resources/variants/ultimaker3_aa0.8.inst.cfg +++ b/resources/variants/ultimaker3_aa0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker3_aa04.inst.cfg b/resources/variants/ultimaker3_aa04.inst.cfg index e9afd4620c8..85c2fcba1c4 100644 --- a/resources/variants/ultimaker3_aa04.inst.cfg +++ b/resources/variants/ultimaker3_aa04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker3_bb0.8.inst.cfg b/resources/variants/ultimaker3_bb0.8.inst.cfg index 62227f50f65..55a93ee5ccc 100644 --- a/resources/variants/ultimaker3_bb0.8.inst.cfg +++ b/resources/variants/ultimaker3_bb0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker3_bb04.inst.cfg b/resources/variants/ultimaker3_bb04.inst.cfg index b3ba87ac597..1c095aa2622 100644 --- a/resources/variants/ultimaker3_bb04.inst.cfg +++ b/resources/variants/ultimaker3_bb04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker3_extended_aa0.25.inst.cfg b/resources/variants/ultimaker3_extended_aa0.25.inst.cfg index 44b669e7811..26a65b4a11d 100644 --- a/resources/variants/ultimaker3_extended_aa0.25.inst.cfg +++ b/resources/variants/ultimaker3_extended_aa0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker3_extended_aa0.8.inst.cfg b/resources/variants/ultimaker3_extended_aa0.8.inst.cfg index 941634e3a61..bff1fd5469f 100644 --- a/resources/variants/ultimaker3_extended_aa0.8.inst.cfg +++ b/resources/variants/ultimaker3_extended_aa0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker3_extended_aa04.inst.cfg b/resources/variants/ultimaker3_extended_aa04.inst.cfg index ef66df6477a..f57f1f8bbd3 100644 --- a/resources/variants/ultimaker3_extended_aa04.inst.cfg +++ b/resources/variants/ultimaker3_extended_aa04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker3_extended_bb0.8.inst.cfg b/resources/variants/ultimaker3_extended_bb0.8.inst.cfg index 2a88f165e61..1db324d3955 100644 --- a/resources/variants/ultimaker3_extended_bb0.8.inst.cfg +++ b/resources/variants/ultimaker3_extended_bb0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker3_extended_bb04.inst.cfg b/resources/variants/ultimaker3_extended_bb04.inst.cfg index 1fa6241d201..92416cbe6f3 100644 --- a/resources/variants/ultimaker3_extended_bb04.inst.cfg +++ b/resources/variants/ultimaker3_extended_bb04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_methodx_1C.inst.cfg b/resources/variants/ultimaker_methodx_1C.inst.cfg index b2bd39e9067..83dd3e9ed8b 100644 --- a/resources/variants/ultimaker_methodx_1C.inst.cfg +++ b/resources/variants/ultimaker_methodx_1C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_c -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_methodx_1XA.inst.cfg b/resources/variants/ultimaker_methodx_1XA.inst.cfg index f63c2a4df76..8e940228e8f 100644 --- a/resources/variants/ultimaker_methodx_1XA.inst.cfg +++ b/resources/variants/ultimaker_methodx_1XA.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_hot -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_methodx_2XA.inst.cfg b/resources/variants/ultimaker_methodx_2XA.inst.cfg index 24461cd5ef4..d395d17d531 100644 --- a/resources/variants/ultimaker_methodx_2XA.inst.cfg +++ b/resources/variants/ultimaker_methodx_2XA.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_hot_s -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_methodx_LABS.inst.cfg b/resources/variants/ultimaker_methodx_LABS.inst.cfg index 2c667e37f10..a150a0df5d8 100644 --- a/resources/variants/ultimaker_methodx_LABS.inst.cfg +++ b/resources/variants/ultimaker_methodx_LABS.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_e -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_methodxl_1C.inst.cfg b/resources/variants/ultimaker_methodxl_1C.inst.cfg index 527415ca353..299d05d0296 100644 --- a/resources/variants/ultimaker_methodxl_1C.inst.cfg +++ b/resources/variants/ultimaker_methodxl_1C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_c -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_methodxl_1XA.inst.cfg b/resources/variants/ultimaker_methodxl_1XA.inst.cfg index 6da0eb3bb2e..77965ea5258 100644 --- a/resources/variants/ultimaker_methodxl_1XA.inst.cfg +++ b/resources/variants/ultimaker_methodxl_1XA.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_hot -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_methodxl_2XA.inst.cfg b/resources/variants/ultimaker_methodxl_2XA.inst.cfg index a64b66b89f6..4e929f2853c 100644 --- a/resources/variants/ultimaker_methodxl_2XA.inst.cfg +++ b/resources/variants/ultimaker_methodxl_2XA.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_hot_s -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_methodxl_LABS.inst.cfg b/resources/variants/ultimaker_methodxl_LABS.inst.cfg index fa726c02abb..c579f7f8e60 100644 --- a/resources/variants/ultimaker_methodxl_LABS.inst.cfg +++ b/resources/variants/ultimaker_methodxl_LABS.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_e -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s3_aa0.25.inst.cfg b/resources/variants/ultimaker_s3_aa0.25.inst.cfg index 97b303035c2..67d10fdd5f5 100644 --- a/resources/variants/ultimaker_s3_aa0.25.inst.cfg +++ b/resources/variants/ultimaker_s3_aa0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s3_aa0.8.inst.cfg b/resources/variants/ultimaker_s3_aa0.8.inst.cfg index e7d3487503e..68a3eb620d5 100644 --- a/resources/variants/ultimaker_s3_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s3_aa0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s3_aa04.inst.cfg b/resources/variants/ultimaker_s3_aa04.inst.cfg index 76992b58052..340c5d0f863 100644 --- a/resources/variants/ultimaker_s3_aa04.inst.cfg +++ b/resources/variants/ultimaker_s3_aa04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s3_bb0.8.inst.cfg b/resources/variants/ultimaker_s3_bb0.8.inst.cfg index d0f78ac3bd1..a4677452b4b 100644 --- a/resources/variants/ultimaker_s3_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s3_bb0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s3_bb04.inst.cfg b/resources/variants/ultimaker_s3_bb04.inst.cfg index 4e232cbb5e1..79f3f7e8c94 100644 --- a/resources/variants/ultimaker_s3_bb04.inst.cfg +++ b/resources/variants/ultimaker_s3_bb04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s3_cc04.inst.cfg b/resources/variants/ultimaker_s3_cc04.inst.cfg index 38f04547aa7..3c010ed5817 100644 --- a/resources/variants/ultimaker_s3_cc04.inst.cfg +++ b/resources/variants/ultimaker_s3_cc04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s3_cc06.inst.cfg b/resources/variants/ultimaker_s3_cc06.inst.cfg index e42817e8f8b..02d19fd112f 100644 --- a/resources/variants/ultimaker_s3_cc06.inst.cfg +++ b/resources/variants/ultimaker_s3_cc06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s3_dd04.inst.cfg b/resources/variants/ultimaker_s3_dd04.inst.cfg index bf93b66be78..803ae14982f 100644 --- a/resources/variants/ultimaker_s3_dd04.inst.cfg +++ b/resources/variants/ultimaker_s3_dd04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s5_aa0.25.inst.cfg b/resources/variants/ultimaker_s5_aa0.25.inst.cfg index 08ed6132f59..904c657549e 100644 --- a/resources/variants/ultimaker_s5_aa0.25.inst.cfg +++ b/resources/variants/ultimaker_s5_aa0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s5_aa0.8.inst.cfg b/resources/variants/ultimaker_s5_aa0.8.inst.cfg index 04a3a97d115..570f3357181 100644 --- a/resources/variants/ultimaker_s5_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s5_aa0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s5_aa04.inst.cfg b/resources/variants/ultimaker_s5_aa04.inst.cfg index fd4f1ff7789..fe44ba9d039 100644 --- a/resources/variants/ultimaker_s5_aa04.inst.cfg +++ b/resources/variants/ultimaker_s5_aa04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s5_aluminum.inst.cfg b/resources/variants/ultimaker_s5_aluminum.inst.cfg index b13d4b5c864..3d926cbfc58 100644 --- a/resources/variants/ultimaker_s5_aluminum.inst.cfg +++ b/resources/variants/ultimaker_s5_aluminum.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = buildplate -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s5_bb0.8.inst.cfg b/resources/variants/ultimaker_s5_bb0.8.inst.cfg index 07b556d2068..92953793fa5 100644 --- a/resources/variants/ultimaker_s5_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s5_bb0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s5_bb04.inst.cfg b/resources/variants/ultimaker_s5_bb04.inst.cfg index 7959fc75c2a..77dfccf3bf6 100644 --- a/resources/variants/ultimaker_s5_bb04.inst.cfg +++ b/resources/variants/ultimaker_s5_bb04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s5_cc04.inst.cfg b/resources/variants/ultimaker_s5_cc04.inst.cfg index 5510d0126fc..de9d490ad81 100644 --- a/resources/variants/ultimaker_s5_cc04.inst.cfg +++ b/resources/variants/ultimaker_s5_cc04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s5_cc06.inst.cfg b/resources/variants/ultimaker_s5_cc06.inst.cfg index a49c790e4f1..d4cd9c6616d 100644 --- a/resources/variants/ultimaker_s5_cc06.inst.cfg +++ b/resources/variants/ultimaker_s5_cc06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s5_dd04.inst.cfg b/resources/variants/ultimaker_s5_dd04.inst.cfg index bcf9dae1315..6c0be44f465 100644 --- a/resources/variants/ultimaker_s5_dd04.inst.cfg +++ b/resources/variants/ultimaker_s5_dd04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s5_glass.inst.cfg b/resources/variants/ultimaker_s5_glass.inst.cfg index dff0498792d..9cddb471957 100644 --- a/resources/variants/ultimaker_s5_glass.inst.cfg +++ b/resources/variants/ultimaker_s5_glass.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = buildplate -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s7_aa0.25.inst.cfg b/resources/variants/ultimaker_s7_aa0.25.inst.cfg index fc1bdcfef2a..2654143fb85 100644 --- a/resources/variants/ultimaker_s7_aa0.25.inst.cfg +++ b/resources/variants/ultimaker_s7_aa0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s7_aa0.8.inst.cfg b/resources/variants/ultimaker_s7_aa0.8.inst.cfg index b3253f7d258..ffe01b344a6 100644 --- a/resources/variants/ultimaker_s7_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s7_aa0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s7_aa04.inst.cfg b/resources/variants/ultimaker_s7_aa04.inst.cfg index 6aee6597e00..76162269642 100644 --- a/resources/variants/ultimaker_s7_aa04.inst.cfg +++ b/resources/variants/ultimaker_s7_aa04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s7_bb0.8.inst.cfg b/resources/variants/ultimaker_s7_bb0.8.inst.cfg index 010d5c7cf11..2f4fb50a8bd 100644 --- a/resources/variants/ultimaker_s7_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s7_bb0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s7_bb04.inst.cfg b/resources/variants/ultimaker_s7_bb04.inst.cfg index 1ec0dfab981..e44142b3ed3 100644 --- a/resources/variants/ultimaker_s7_bb04.inst.cfg +++ b/resources/variants/ultimaker_s7_bb04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s7_cc04.inst.cfg b/resources/variants/ultimaker_s7_cc04.inst.cfg index 6949c5be74d..30ffef58b6d 100644 --- a/resources/variants/ultimaker_s7_cc04.inst.cfg +++ b/resources/variants/ultimaker_s7_cc04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s7_cc06.inst.cfg b/resources/variants/ultimaker_s7_cc06.inst.cfg index 576701fc2b8..f752b63cf36 100644 --- a/resources/variants/ultimaker_s7_cc06.inst.cfg +++ b/resources/variants/ultimaker_s7_cc06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s7_dd04.inst.cfg b/resources/variants/ultimaker_s7_dd04.inst.cfg index a9c0bb66025..7ea915f610a 100644 --- a/resources/variants/ultimaker_s7_dd04.inst.cfg +++ b/resources/variants/ultimaker_s7_dd04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_200_0.30.inst.cfg b/resources/variants/uni/uni_200_0.30.inst.cfg index 8c5c61f1025..69ea894c630 100644 --- a/resources/variants/uni/uni_200_0.30.inst.cfg +++ b/resources/variants/uni/uni_200_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_200_0.40.inst.cfg b/resources/variants/uni/uni_200_0.40.inst.cfg index 34e44afa052..499866af300 100644 --- a/resources/variants/uni/uni_200_0.40.inst.cfg +++ b/resources/variants/uni/uni_200_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_200_0.50.inst.cfg b/resources/variants/uni/uni_200_0.50.inst.cfg index 0dbdc557963..e1948488d35 100644 --- a/resources/variants/uni/uni_200_0.50.inst.cfg +++ b/resources/variants/uni/uni_200_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_250_0.30.inst.cfg b/resources/variants/uni/uni_250_0.30.inst.cfg index f135aa31785..1e2d3e36901 100644 --- a/resources/variants/uni/uni_250_0.30.inst.cfg +++ b/resources/variants/uni/uni_250_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_250_0.40.inst.cfg b/resources/variants/uni/uni_250_0.40.inst.cfg index e2fde31e5e6..4ae51548abc 100644 --- a/resources/variants/uni/uni_250_0.40.inst.cfg +++ b/resources/variants/uni/uni_250_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_250_0.50.inst.cfg b/resources/variants/uni/uni_250_0.50.inst.cfg index 6e5d54e6af0..bd91f0063f3 100644 --- a/resources/variants/uni/uni_250_0.50.inst.cfg +++ b/resources/variants/uni/uni_250_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_300_0.30.inst.cfg b/resources/variants/uni/uni_300_0.30.inst.cfg index 322ed8c1334..920200412f6 100644 --- a/resources/variants/uni/uni_300_0.30.inst.cfg +++ b/resources/variants/uni/uni_300_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_300_0.40.inst.cfg b/resources/variants/uni/uni_300_0.40.inst.cfg index f9366b8a54a..3d808fc4c0e 100644 --- a/resources/variants/uni/uni_300_0.40.inst.cfg +++ b/resources/variants/uni/uni_300_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_300_0.50.inst.cfg b/resources/variants/uni/uni_300_0.50.inst.cfg index 3d264e83751..d3911215630 100644 --- a/resources/variants/uni/uni_300_0.50.inst.cfg +++ b/resources/variants/uni/uni_300_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_base_0.30.inst.cfg b/resources/variants/uni/uni_base_0.30.inst.cfg index 34424ef287d..e0fec2e1eb1 100644 --- a/resources/variants/uni/uni_base_0.30.inst.cfg +++ b/resources/variants/uni/uni_base_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_base_0.40.inst.cfg b/resources/variants/uni/uni_base_0.40.inst.cfg index 6449e280265..090dd0de50c 100644 --- a/resources/variants/uni/uni_base_0.40.inst.cfg +++ b/resources/variants/uni/uni_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_base_0.50.inst.cfg b/resources/variants/uni/uni_base_0.50.inst.cfg index 1106b4ba983..094826b97eb 100644 --- a/resources/variants/uni/uni_base_0.50.inst.cfg +++ b/resources/variants/uni/uni_base_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_mini_0.30.inst.cfg b/resources/variants/uni/uni_mini_0.30.inst.cfg index de0c0b6d719..66adcf18080 100644 --- a/resources/variants/uni/uni_mini_0.30.inst.cfg +++ b/resources/variants/uni/uni_mini_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_mini_0.40.inst.cfg b/resources/variants/uni/uni_mini_0.40.inst.cfg index 4b40d2bc777..0aa9d3e787d 100644 --- a/resources/variants/uni/uni_mini_0.40.inst.cfg +++ b/resources/variants/uni/uni_mini_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_mini_0.50.inst.cfg b/resources/variants/uni/uni_mini_0.50.inst.cfg index b6c96a0283f..68fd46d45f1 100644 --- a/resources/variants/uni/uni_mini_0.50.inst.cfg +++ b/resources/variants/uni/uni_mini_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex2plus_0.2.inst.cfg b/resources/variants/vivedino/vivedino_trex2plus_0.2.inst.cfg index c505c64831f..d3aead1fe3b 100644 --- a/resources/variants/vivedino/vivedino_trex2plus_0.2.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex2plus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex2plus_0.4.inst.cfg b/resources/variants/vivedino/vivedino_trex2plus_0.4.inst.cfg index cb67e87aaa0..ea89fd11109 100644 --- a/resources/variants/vivedino/vivedino_trex2plus_0.4.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex2plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex2plus_0.6.inst.cfg b/resources/variants/vivedino/vivedino_trex2plus_0.6.inst.cfg index c5ad54b52b9..c30afb6068c 100644 --- a/resources/variants/vivedino/vivedino_trex2plus_0.6.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex2plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex2plus_0.8.inst.cfg b/resources/variants/vivedino/vivedino_trex2plus_0.8.inst.cfg index dda1465bc1c..a4c832975e4 100644 --- a/resources/variants/vivedino/vivedino_trex2plus_0.8.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex2plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex3_0.2.inst.cfg b/resources/variants/vivedino/vivedino_trex3_0.2.inst.cfg index ce4a0daf5ef..e341327f845 100644 --- a/resources/variants/vivedino/vivedino_trex3_0.2.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex3_0.4.inst.cfg b/resources/variants/vivedino/vivedino_trex3_0.4.inst.cfg index c1e15ee4d86..db442efed85 100644 --- a/resources/variants/vivedino/vivedino_trex3_0.4.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex3_0.6.inst.cfg b/resources/variants/vivedino/vivedino_trex3_0.6.inst.cfg index 53e39a4842f..85e144fc677 100644 --- a/resources/variants/vivedino/vivedino_trex3_0.6.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex3_0.8.inst.cfg b/resources/variants/vivedino/vivedino_trex3_0.8.inst.cfg index 84d866c76bc..63bf4722b01 100644 --- a/resources/variants/vivedino/vivedino_trex3_0.8.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.25.inst.cfg b/resources/variants/voron/voron0_120_v6_0.25.inst.cfg index e2a29b5e2ea..1c050856b29 100644 --- a/resources/variants/voron/voron0_120_v6_0.25.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.30.inst.cfg b/resources/variants/voron/voron0_120_v6_0.30.inst.cfg index a22bb078c6c..be6ea9cbabe 100644 --- a/resources/variants/voron/voron0_120_v6_0.30.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.40.inst.cfg b/resources/variants/voron/voron0_120_v6_0.40.inst.cfg index fa8590cccaf..e1a6ac0585c 100644 --- a/resources/variants/voron/voron0_120_v6_0.40.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.50.inst.cfg b/resources/variants/voron/voron0_120_v6_0.50.inst.cfg index 07ebee11821..527524441e5 100644 --- a/resources/variants/voron/voron0_120_v6_0.50.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.60.inst.cfg b/resources/variants/voron/voron0_120_v6_0.60.inst.cfg index 8486c644e95..30e74385722 100644 --- a/resources/variants/voron/voron0_120_v6_0.60.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.80.inst.cfg b/resources/variants/voron/voron0_120_v6_0.80.inst.cfg index 0a84fa93200..dfd412c82bd 100644 --- a/resources/variants/voron/voron0_120_v6_0.80.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.25.inst.cfg b/resources/variants/voron/voron2_250_v6_0.25.inst.cfg index 003af1860be..115fb34cb56 100644 --- a/resources/variants/voron/voron2_250_v6_0.25.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.30.inst.cfg b/resources/variants/voron/voron2_250_v6_0.30.inst.cfg index dacf75fff76..6d4ac7b9d55 100644 --- a/resources/variants/voron/voron2_250_v6_0.30.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.35.inst.cfg b/resources/variants/voron/voron2_250_v6_0.35.inst.cfg index fe1bf4c7cd5..344b4857891 100644 --- a/resources/variants/voron/voron2_250_v6_0.35.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.40.inst.cfg b/resources/variants/voron/voron2_250_v6_0.40.inst.cfg index 0ddac759b12..d0f10145838 100644 --- a/resources/variants/voron/voron2_250_v6_0.40.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.50.inst.cfg b/resources/variants/voron/voron2_250_v6_0.50.inst.cfg index 17cbb0edc45..16723a1fe57 100644 --- a/resources/variants/voron/voron2_250_v6_0.50.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.60.inst.cfg b/resources/variants/voron/voron2_250_v6_0.60.inst.cfg index 1d037bf31fd..9e4c7061eb9 100644 --- a/resources/variants/voron/voron2_250_v6_0.60.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.80.inst.cfg b/resources/variants/voron/voron2_250_v6_0.80.inst.cfg index 9869adb2c78..9841269b467 100644 --- a/resources/variants/voron/voron2_250_v6_0.80.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_volcano_0.40.inst.cfg b/resources/variants/voron/voron2_250_volcano_0.40.inst.cfg index 371495b3161..700a55fecb3 100644 --- a/resources/variants/voron/voron2_250_volcano_0.40.inst.cfg +++ b/resources/variants/voron/voron2_250_volcano_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_volcano_0.60.inst.cfg b/resources/variants/voron/voron2_250_volcano_0.60.inst.cfg index a939c1ae211..c87b19d9956 100644 --- a/resources/variants/voron/voron2_250_volcano_0.60.inst.cfg +++ b/resources/variants/voron/voron2_250_volcano_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_volcano_0.80.inst.cfg b/resources/variants/voron/voron2_250_volcano_0.80.inst.cfg index 717907672ae..327bbb42a8f 100644 --- a/resources/variants/voron/voron2_250_volcano_0.80.inst.cfg +++ b/resources/variants/voron/voron2_250_volcano_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_volcano_1.00.inst.cfg b/resources/variants/voron/voron2_250_volcano_1.00.inst.cfg index f2ffb7771a6..8329f46a895 100644 --- a/resources/variants/voron/voron2_250_volcano_1.00.inst.cfg +++ b/resources/variants/voron/voron2_250_volcano_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_volcano_1.20.inst.cfg b/resources/variants/voron/voron2_250_volcano_1.20.inst.cfg index fda1a1341bc..dd51720e8ed 100644 --- a/resources/variants/voron/voron2_250_volcano_1.20.inst.cfg +++ b/resources/variants/voron/voron2_250_volcano_1.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.25.inst.cfg b/resources/variants/voron/voron2_300_v6_0.25.inst.cfg index 224e50eb853..bcac7fb2cb6 100644 --- a/resources/variants/voron/voron2_300_v6_0.25.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.30.inst.cfg b/resources/variants/voron/voron2_300_v6_0.30.inst.cfg index b8eeeec8b44..cb37b9bb504 100644 --- a/resources/variants/voron/voron2_300_v6_0.30.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.35.inst.cfg b/resources/variants/voron/voron2_300_v6_0.35.inst.cfg index f07bd3e7bec..334d665eb27 100644 --- a/resources/variants/voron/voron2_300_v6_0.35.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.40.inst.cfg b/resources/variants/voron/voron2_300_v6_0.40.inst.cfg index 1540fabec14..584f52bd6c5 100644 --- a/resources/variants/voron/voron2_300_v6_0.40.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.50.inst.cfg b/resources/variants/voron/voron2_300_v6_0.50.inst.cfg index 2f408ec6acd..ee394e8e02c 100644 --- a/resources/variants/voron/voron2_300_v6_0.50.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.60.inst.cfg b/resources/variants/voron/voron2_300_v6_0.60.inst.cfg index 2030eba596c..9b83eb69b45 100644 --- a/resources/variants/voron/voron2_300_v6_0.60.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.80.inst.cfg b/resources/variants/voron/voron2_300_v6_0.80.inst.cfg index 47cfe743f73..e0277458764 100644 --- a/resources/variants/voron/voron2_300_v6_0.80.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_volcano_0.40.inst.cfg b/resources/variants/voron/voron2_300_volcano_0.40.inst.cfg index 3b61c9c392e..0b905e7f387 100644 --- a/resources/variants/voron/voron2_300_volcano_0.40.inst.cfg +++ b/resources/variants/voron/voron2_300_volcano_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_volcano_0.60.inst.cfg b/resources/variants/voron/voron2_300_volcano_0.60.inst.cfg index d578191e1e5..e9788c559cc 100644 --- a/resources/variants/voron/voron2_300_volcano_0.60.inst.cfg +++ b/resources/variants/voron/voron2_300_volcano_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_volcano_0.80.inst.cfg b/resources/variants/voron/voron2_300_volcano_0.80.inst.cfg index f705c431087..ea1154d3682 100644 --- a/resources/variants/voron/voron2_300_volcano_0.80.inst.cfg +++ b/resources/variants/voron/voron2_300_volcano_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_volcano_1.00.inst.cfg b/resources/variants/voron/voron2_300_volcano_1.00.inst.cfg index 4bf563951bd..b1fe3067943 100644 --- a/resources/variants/voron/voron2_300_volcano_1.00.inst.cfg +++ b/resources/variants/voron/voron2_300_volcano_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_volcano_1.20.inst.cfg b/resources/variants/voron/voron2_300_volcano_1.20.inst.cfg index 97e8a3284b8..5d0d2bc2ba7 100644 --- a/resources/variants/voron/voron2_300_volcano_1.20.inst.cfg +++ b/resources/variants/voron/voron2_300_volcano_1.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.25.inst.cfg b/resources/variants/voron/voron2_350_v6_0.25.inst.cfg index 86c1c6f4ad8..747fc478ecb 100644 --- a/resources/variants/voron/voron2_350_v6_0.25.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.30.inst.cfg b/resources/variants/voron/voron2_350_v6_0.30.inst.cfg index 0e3d7acefda..4ed5b5f4780 100644 --- a/resources/variants/voron/voron2_350_v6_0.30.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.35.inst.cfg b/resources/variants/voron/voron2_350_v6_0.35.inst.cfg index 512153bedac..e4cefb26739 100644 --- a/resources/variants/voron/voron2_350_v6_0.35.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.40.inst.cfg b/resources/variants/voron/voron2_350_v6_0.40.inst.cfg index d6fe7433d63..cf3189d2d8c 100644 --- a/resources/variants/voron/voron2_350_v6_0.40.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.50.inst.cfg b/resources/variants/voron/voron2_350_v6_0.50.inst.cfg index b16e3b8e812..1d5840d1340 100644 --- a/resources/variants/voron/voron2_350_v6_0.50.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.60.inst.cfg b/resources/variants/voron/voron2_350_v6_0.60.inst.cfg index 477b72e0fa1..0f2f7987234 100644 --- a/resources/variants/voron/voron2_350_v6_0.60.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.80.inst.cfg b/resources/variants/voron/voron2_350_v6_0.80.inst.cfg index 40cb92eba59..092ebaf869a 100644 --- a/resources/variants/voron/voron2_350_v6_0.80.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_volcano_0.40.inst.cfg b/resources/variants/voron/voron2_350_volcano_0.40.inst.cfg index ec16aaa2698..c4e67a6e4ba 100644 --- a/resources/variants/voron/voron2_350_volcano_0.40.inst.cfg +++ b/resources/variants/voron/voron2_350_volcano_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_volcano_0.60.inst.cfg b/resources/variants/voron/voron2_350_volcano_0.60.inst.cfg index de966abb4e7..e214e4a39a0 100644 --- a/resources/variants/voron/voron2_350_volcano_0.60.inst.cfg +++ b/resources/variants/voron/voron2_350_volcano_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_volcano_0.80.inst.cfg b/resources/variants/voron/voron2_350_volcano_0.80.inst.cfg index fccb25f12b5..16fb67b22f7 100644 --- a/resources/variants/voron/voron2_350_volcano_0.80.inst.cfg +++ b/resources/variants/voron/voron2_350_volcano_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_volcano_1.00.inst.cfg b/resources/variants/voron/voron2_350_volcano_1.00.inst.cfg index f24c10015dd..603ca7f7f5b 100644 --- a/resources/variants/voron/voron2_350_volcano_1.00.inst.cfg +++ b/resources/variants/voron/voron2_350_volcano_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_volcano_1.20.inst.cfg b/resources/variants/voron/voron2_350_volcano_1.20.inst.cfg index 599c5064aae..e8289b75881 100644 --- a/resources/variants/voron/voron2_350_volcano_1.20.inst.cfg +++ b/resources/variants/voron/voron2_350_volcano_1.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.25.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.25.inst.cfg index a5869586f64..a640cb732de 100644 --- a/resources/variants/voron/voron2_custom_v6_0.25.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.30.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.30.inst.cfg index edb540b1a24..2574e3e45cc 100644 --- a/resources/variants/voron/voron2_custom_v6_0.30.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.35.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.35.inst.cfg index a2bb53398d8..26e7ac31493 100644 --- a/resources/variants/voron/voron2_custom_v6_0.35.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.40.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.40.inst.cfg index 749f18a3dd6..d6eb771afaa 100644 --- a/resources/variants/voron/voron2_custom_v6_0.40.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.50.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.50.inst.cfg index c6c21baaf04..310833dbc0b 100644 --- a/resources/variants/voron/voron2_custom_v6_0.50.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.60.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.60.inst.cfg index 8e8a1e79009..05aaa43d324 100644 --- a/resources/variants/voron/voron2_custom_v6_0.60.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.80.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.80.inst.cfg index 89bee318c72..e662fd7edf0 100644 --- a/resources/variants/voron/voron2_custom_v6_0.80.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_volcano_0.40.inst.cfg b/resources/variants/voron/voron2_custom_volcano_0.40.inst.cfg index daf4c54a063..61b74ca3130 100644 --- a/resources/variants/voron/voron2_custom_volcano_0.40.inst.cfg +++ b/resources/variants/voron/voron2_custom_volcano_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_volcano_0.60.inst.cfg b/resources/variants/voron/voron2_custom_volcano_0.60.inst.cfg index e0d62380f99..4b533d4b6a4 100644 --- a/resources/variants/voron/voron2_custom_volcano_0.60.inst.cfg +++ b/resources/variants/voron/voron2_custom_volcano_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_volcano_0.80.inst.cfg b/resources/variants/voron/voron2_custom_volcano_0.80.inst.cfg index 312908a37c8..2b66bd9a3c5 100644 --- a/resources/variants/voron/voron2_custom_volcano_0.80.inst.cfg +++ b/resources/variants/voron/voron2_custom_volcano_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_volcano_1.00.inst.cfg b/resources/variants/voron/voron2_custom_volcano_1.00.inst.cfg index 6f62852f179..ccb7fd07769 100644 --- a/resources/variants/voron/voron2_custom_volcano_1.00.inst.cfg +++ b/resources/variants/voron/voron2_custom_volcano_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_volcano_1.20.inst.cfg b/resources/variants/voron/voron2_custom_volcano_1.20.inst.cfg index c5d3452befc..0c83605ce16 100644 --- a/resources/variants/voron/voron2_custom_volcano_1.20.inst.cfg +++ b/resources/variants/voron/voron2_custom_volcano_1.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_250_0.25.inst.cfg b/resources/variants/voron/voron_trident_250_0.25.inst.cfg index 2ba2351c560..20c74f4145f 100644 --- a/resources/variants/voron/voron_trident_250_0.25.inst.cfg +++ b/resources/variants/voron/voron_trident_250_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_250_0.40.inst.cfg b/resources/variants/voron/voron_trident_250_0.40.inst.cfg index aea87773651..2c8a35bc3a8 100644 --- a/resources/variants/voron/voron_trident_250_0.40.inst.cfg +++ b/resources/variants/voron/voron_trident_250_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_250_0.50.inst.cfg b/resources/variants/voron/voron_trident_250_0.50.inst.cfg index deae0b748c2..ca6224ff72d 100644 --- a/resources/variants/voron/voron_trident_250_0.50.inst.cfg +++ b/resources/variants/voron/voron_trident_250_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_250_0.60.inst.cfg b/resources/variants/voron/voron_trident_250_0.60.inst.cfg index fe7ceef87e0..2487a87fa15 100644 --- a/resources/variants/voron/voron_trident_250_0.60.inst.cfg +++ b/resources/variants/voron/voron_trident_250_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_250_0.80.inst.cfg b/resources/variants/voron/voron_trident_250_0.80.inst.cfg index 911fd5bc235..c513b2ccb38 100644 --- a/resources/variants/voron/voron_trident_250_0.80.inst.cfg +++ b/resources/variants/voron/voron_trident_250_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_300_0.25.inst.cfg b/resources/variants/voron/voron_trident_300_0.25.inst.cfg index 99b00d76839..120e03f615a 100644 --- a/resources/variants/voron/voron_trident_300_0.25.inst.cfg +++ b/resources/variants/voron/voron_trident_300_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_300_0.40.inst.cfg b/resources/variants/voron/voron_trident_300_0.40.inst.cfg index 5d427352bb5..2c522afeb69 100644 --- a/resources/variants/voron/voron_trident_300_0.40.inst.cfg +++ b/resources/variants/voron/voron_trident_300_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_300_0.50.inst.cfg b/resources/variants/voron/voron_trident_300_0.50.inst.cfg index 5a9bde2f79e..3ab11833a53 100644 --- a/resources/variants/voron/voron_trident_300_0.50.inst.cfg +++ b/resources/variants/voron/voron_trident_300_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_300_0.60.inst.cfg b/resources/variants/voron/voron_trident_300_0.60.inst.cfg index 569e9ecc33a..1623f6c293c 100644 --- a/resources/variants/voron/voron_trident_300_0.60.inst.cfg +++ b/resources/variants/voron/voron_trident_300_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_300_0.80.inst.cfg b/resources/variants/voron/voron_trident_300_0.80.inst.cfg index d9d23712ae1..45aafd8265e 100644 --- a/resources/variants/voron/voron_trident_300_0.80.inst.cfg +++ b/resources/variants/voron/voron_trident_300_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_350_0.25.inst.cfg b/resources/variants/voron/voron_trident_350_0.25.inst.cfg index 8d124cca032..3ae6061c8ba 100644 --- a/resources/variants/voron/voron_trident_350_0.25.inst.cfg +++ b/resources/variants/voron/voron_trident_350_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_350_0.40.inst.cfg b/resources/variants/voron/voron_trident_350_0.40.inst.cfg index 8340efe9abd..dee2a7ba3d7 100644 --- a/resources/variants/voron/voron_trident_350_0.40.inst.cfg +++ b/resources/variants/voron/voron_trident_350_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_350_0.50.inst.cfg b/resources/variants/voron/voron_trident_350_0.50.inst.cfg index 896a12aee72..7a058f6d243 100644 --- a/resources/variants/voron/voron_trident_350_0.50.inst.cfg +++ b/resources/variants/voron/voron_trident_350_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_350_0.60.inst.cfg b/resources/variants/voron/voron_trident_350_0.60.inst.cfg index f93347b676d..910119a1ab5 100644 --- a/resources/variants/voron/voron_trident_350_0.60.inst.cfg +++ b/resources/variants/voron/voron_trident_350_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_350_0.80.inst.cfg b/resources/variants/voron/voron_trident_350_0.80.inst.cfg index cd5cbf44107..28780c78172 100644 --- a/resources/variants/voron/voron_trident_350_0.80.inst.cfg +++ b/resources/variants/voron/voron_trident_350_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.2.inst.cfg b/resources/variants/vzbot/vzbot_235_0.2.inst.cfg index fa2cb94114d..a9257c13309 100644 --- a/resources/variants/vzbot/vzbot_235_0.2.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.3.inst.cfg b/resources/variants/vzbot/vzbot_235_0.3.inst.cfg index a06febff04d..f7465c1b0fa 100644 --- a/resources/variants/vzbot/vzbot_235_0.3.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.4.inst.cfg b/resources/variants/vzbot/vzbot_235_0.4.inst.cfg index 8247a4d7087..5e6946a90ed 100644 --- a/resources/variants/vzbot/vzbot_235_0.4.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.5.inst.cfg b/resources/variants/vzbot/vzbot_235_0.5.inst.cfg index 564aecbf92f..431859e5379 100644 --- a/resources/variants/vzbot/vzbot_235_0.5.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.6.inst.cfg b/resources/variants/vzbot/vzbot_235_0.6.inst.cfg index c84d0f5c576..a1b50cd27d0 100644 --- a/resources/variants/vzbot/vzbot_235_0.6.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.8.inst.cfg b/resources/variants/vzbot/vzbot_235_0.8.inst.cfg index dfe232062f8..fe74be22a54 100644 --- a/resources/variants/vzbot/vzbot_235_0.8.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_1.0.inst.cfg b/resources/variants/vzbot/vzbot_235_1.0.inst.cfg index 1df83fd5323..05c82524339 100644 --- a/resources/variants/vzbot/vzbot_235_1.0.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.2.inst.cfg b/resources/variants/vzbot/vzbot_330_0.2.inst.cfg index 316e2a476ce..c24abe0c1e9 100644 --- a/resources/variants/vzbot/vzbot_330_0.2.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.3.inst.cfg b/resources/variants/vzbot/vzbot_330_0.3.inst.cfg index 431f262e63a..c660618cb62 100644 --- a/resources/variants/vzbot/vzbot_330_0.3.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.4.inst.cfg b/resources/variants/vzbot/vzbot_330_0.4.inst.cfg index bb954427a76..628179d0549 100644 --- a/resources/variants/vzbot/vzbot_330_0.4.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.5.inst.cfg b/resources/variants/vzbot/vzbot_330_0.5.inst.cfg index eac9b47c5e3..2cd10160359 100644 --- a/resources/variants/vzbot/vzbot_330_0.5.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.6.inst.cfg b/resources/variants/vzbot/vzbot_330_0.6.inst.cfg index 6ecac4a4e6d..b4dd2d553b4 100644 --- a/resources/variants/vzbot/vzbot_330_0.6.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.8.inst.cfg b/resources/variants/vzbot/vzbot_330_0.8.inst.cfg index 654970c4412..763c2896ef5 100644 --- a/resources/variants/vzbot/vzbot_330_0.8.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_1.0.inst.cfg b/resources/variants/vzbot/vzbot_330_1.0.inst.cfg index 0285df5ae54..81e8965c38f 100644 --- a/resources/variants/vzbot/vzbot_330_1.0.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.2.inst.cfg b/resources/variants/vzbot/vzbot_base_0.2.inst.cfg index 5be96194af5..8f222cf3b67 100644 --- a/resources/variants/vzbot/vzbot_base_0.2.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.3.inst.cfg b/resources/variants/vzbot/vzbot_base_0.3.inst.cfg index 05f66d75fe8..6d0ca279d48 100644 --- a/resources/variants/vzbot/vzbot_base_0.3.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.4.inst.cfg b/resources/variants/vzbot/vzbot_base_0.4.inst.cfg index 37bcf18c7a9..c96251e4dee 100644 --- a/resources/variants/vzbot/vzbot_base_0.4.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.5.inst.cfg b/resources/variants/vzbot/vzbot_base_0.5.inst.cfg index d212c38eb11..5f423faf6db 100644 --- a/resources/variants/vzbot/vzbot_base_0.5.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.6.inst.cfg b/resources/variants/vzbot/vzbot_base_0.6.inst.cfg index 85760340fa3..b6a7ba7cd2a 100644 --- a/resources/variants/vzbot/vzbot_base_0.6.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.8.inst.cfg b/resources/variants/vzbot/vzbot_base_0.8.inst.cfg index 86f2a6fc181..f1f8ce8dde1 100644 --- a/resources/variants/vzbot/vzbot_base_0.8.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_1.0.inst.cfg b/resources/variants/vzbot/vzbot_base_1.0.inst.cfg index 7466d2aa72b..d6e97c5dc67 100644 --- a/resources/variants/vzbot/vzbot_base_1.0.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.2.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.2.inst.cfg index d146c747929..842899a87da 100644 --- a/resources/variants/vzbot/vzbot_custom_0.2.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.3.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.3.inst.cfg index e0dd0299dbe..e4d1d430be6 100644 --- a/resources/variants/vzbot/vzbot_custom_0.3.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.4.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.4.inst.cfg index bf7d9d6117e..0deed9bddc4 100644 --- a/resources/variants/vzbot/vzbot_custom_0.4.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.5.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.5.inst.cfg index bf0da7276e8..2c1b78428da 100644 --- a/resources/variants/vzbot/vzbot_custom_0.5.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.6.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.6.inst.cfg index 3524f585de5..44975147887 100644 --- a/resources/variants/vzbot/vzbot_custom_0.6.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.8.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.8.inst.cfg index c8db19a83cc..8c9fc89fde6 100644 --- a/resources/variants/vzbot/vzbot_custom_0.8.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_1.0.inst.cfg b/resources/variants/vzbot/vzbot_custom_1.0.inst.cfg index df7635ecb5a..6c068f79b1e 100644 --- a/resources/variants/vzbot/vzbot_custom_1.0.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/weedo/weedo_x40_weedo_0.4.inst.cfg b/resources/variants/weedo/weedo_x40_weedo_0.4.inst.cfg index a350aa9eeff..9d05b2fb231 100644 --- a/resources/variants/weedo/weedo_x40_weedo_0.4.inst.cfg +++ b/resources/variants/weedo/weedo_x40_weedo_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/weedo/weedo_x40_weedo_0.6.inst.cfg b/resources/variants/weedo/weedo_x40_weedo_0.6.inst.cfg index 9f55df85c04..815369bc272 100644 --- a/resources/variants/weedo/weedo_x40_weedo_0.6.inst.cfg +++ b/resources/variants/weedo/weedo_x40_weedo_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/weedo/weedo_x40_weedo_0.8.inst.cfg b/resources/variants/weedo/weedo_x40_weedo_0.8.inst.cfg index 0deade08694..da97849b695 100644 --- a/resources/variants/weedo/weedo_x40_weedo_0.8.inst.cfg +++ b/resources/variants/weedo/weedo_x40_weedo_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_base_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_base_0.40.inst.cfg index 9181d019281..17e90ab90ed 100644 --- a/resources/variants/xyz_printing/xyzprinting_base_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_1p0_pro_copper_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_1p0_pro_copper_0.40.inst.cfg index 157baad8b46..020b6c5a436 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_1p0_pro_copper_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_1p0_pro_copper_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40.inst.cfg index 6d9f9123e0e..cf7cbea3471 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40.inst.cfg index 7d4c829d96a..9f40514694e 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40.inst.cfg index 40062a321a7..a6e75293f38 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40.inst.cfg index 0aaef4de4aa..70b3254b58e 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40.inst.cfg index 491861dfa76..9a064a3773c 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40.inst.cfg index 3c56030b110..bc19df88e04 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_hs_0.40.inst.cfg index a0f71419edb..b9d10157540 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_ss_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_ss_0.40.inst.cfg index 1b1ad1c1850..eb89d9c4347 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_ss_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_ss_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hs_0.40.inst.cfg index 78b5989c1c9..b2e4e94d330 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hsht_0.60.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hsht_0.60.inst.cfg index fc276f59978..13c4eadee72 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hsht_0.60.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hsht_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_super_copper_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_super_copper_0.40.inst.cfg index 7362bc75520..fab6b115f00 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_super_copper_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_super_copper_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_super_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_super_hs_0.40.inst.cfg index ae4bb645821..0614a7c60a7 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_super_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_super_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.20.inst.cfg b/resources/variants/zav/zav_base_0.20.inst.cfg index 4e44a094a29..ad0e738e39d 100644 --- a/resources/variants/zav/zav_base_0.20.inst.cfg +++ b/resources/variants/zav/zav_base_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.25.inst.cfg b/resources/variants/zav/zav_base_0.25.inst.cfg index a33ac4b63c2..f383c876ef9 100644 --- a/resources/variants/zav/zav_base_0.25.inst.cfg +++ b/resources/variants/zav/zav_base_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.30.inst.cfg b/resources/variants/zav/zav_base_0.30.inst.cfg index f00379132b4..65da7fa1428 100644 --- a/resources/variants/zav/zav_base_0.30.inst.cfg +++ b/resources/variants/zav/zav_base_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.35.inst.cfg b/resources/variants/zav/zav_base_0.35.inst.cfg index a89f471161e..a2dfed7389c 100644 --- a/resources/variants/zav/zav_base_0.35.inst.cfg +++ b/resources/variants/zav/zav_base_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.40.inst.cfg b/resources/variants/zav/zav_base_0.40.inst.cfg index d0c0e2aa072..8a9ae2ab915 100644 --- a/resources/variants/zav/zav_base_0.40.inst.cfg +++ b/resources/variants/zav/zav_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.45.inst.cfg b/resources/variants/zav/zav_base_0.45.inst.cfg index 717f95274dd..9df3434ecf4 100644 --- a/resources/variants/zav/zav_base_0.45.inst.cfg +++ b/resources/variants/zav/zav_base_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.50.inst.cfg b/resources/variants/zav/zav_base_0.50.inst.cfg index e9acba6ec19..4e94f54a22f 100644 --- a/resources/variants/zav/zav_base_0.50.inst.cfg +++ b/resources/variants/zav/zav_base_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.60.inst.cfg b/resources/variants/zav/zav_base_0.60.inst.cfg index 4eb3a28ecb0..5198dc479a3 100644 --- a/resources/variants/zav/zav_base_0.60.inst.cfg +++ b/resources/variants/zav/zav_base_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.80.inst.cfg b/resources/variants/zav/zav_base_0.80.inst.cfg index 936bcc18d52..4fc53197d47 100644 --- a/resources/variants/zav/zav_base_0.80.inst.cfg +++ b/resources/variants/zav/zav_base_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_base_1.00.inst.cfg b/resources/variants/zav/zav_base_1.00.inst.cfg index 3beda59b755..a4995d2ad0f 100644 --- a/resources/variants/zav/zav_base_1.00.inst.cfg +++ b/resources/variants/zav/zav_base_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.20.inst.cfg b/resources/variants/zav/zav_big_0.20.inst.cfg index 819d5f0ee56..10fd2eaf809 100644 --- a/resources/variants/zav/zav_big_0.20.inst.cfg +++ b/resources/variants/zav/zav_big_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.25.inst.cfg b/resources/variants/zav/zav_big_0.25.inst.cfg index 6fd29ce3946..d52f66eb51e 100644 --- a/resources/variants/zav/zav_big_0.25.inst.cfg +++ b/resources/variants/zav/zav_big_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.30.inst.cfg b/resources/variants/zav/zav_big_0.30.inst.cfg index 02d876e6412..70a15fb6a1e 100644 --- a/resources/variants/zav/zav_big_0.30.inst.cfg +++ b/resources/variants/zav/zav_big_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.35.inst.cfg b/resources/variants/zav/zav_big_0.35.inst.cfg index e9def8ef5ff..d57c6c0fef4 100644 --- a/resources/variants/zav/zav_big_0.35.inst.cfg +++ b/resources/variants/zav/zav_big_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.40.inst.cfg b/resources/variants/zav/zav_big_0.40.inst.cfg index b7086e0a4bd..bb82e0db549 100644 --- a/resources/variants/zav/zav_big_0.40.inst.cfg +++ b/resources/variants/zav/zav_big_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.45.inst.cfg b/resources/variants/zav/zav_big_0.45.inst.cfg index 676dce58dd3..904d4911e2b 100644 --- a/resources/variants/zav/zav_big_0.45.inst.cfg +++ b/resources/variants/zav/zav_big_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.50.inst.cfg b/resources/variants/zav/zav_big_0.50.inst.cfg index 34cba143edd..00de9e8790f 100644 --- a/resources/variants/zav/zav_big_0.50.inst.cfg +++ b/resources/variants/zav/zav_big_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.60.inst.cfg b/resources/variants/zav/zav_big_0.60.inst.cfg index 8ffe1f0474f..67c856f703b 100644 --- a/resources/variants/zav/zav_big_0.60.inst.cfg +++ b/resources/variants/zav/zav_big_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.80.inst.cfg b/resources/variants/zav/zav_big_0.80.inst.cfg index 362065f210b..0b18636938c 100644 --- a/resources/variants/zav/zav_big_0.80.inst.cfg +++ b/resources/variants/zav/zav_big_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_big_1.00.inst.cfg b/resources/variants/zav/zav_big_1.00.inst.cfg index df2a7450572..a726d9d05b3 100644 --- a/resources/variants/zav/zav_big_1.00.inst.cfg +++ b/resources/variants/zav/zav_big_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.20.inst.cfg b/resources/variants/zav/zav_bigplus_0.20.inst.cfg index 4fa17d9e1f0..331dd6f067c 100644 --- a/resources/variants/zav/zav_bigplus_0.20.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.25.inst.cfg b/resources/variants/zav/zav_bigplus_0.25.inst.cfg index e9a4d63228e..80974382326 100644 --- a/resources/variants/zav/zav_bigplus_0.25.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.30.inst.cfg b/resources/variants/zav/zav_bigplus_0.30.inst.cfg index 31c10f4b681..838d6f4394f 100644 --- a/resources/variants/zav/zav_bigplus_0.30.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.35.inst.cfg b/resources/variants/zav/zav_bigplus_0.35.inst.cfg index 0e0cff36db5..1525949e3bf 100644 --- a/resources/variants/zav/zav_bigplus_0.35.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.40.inst.cfg b/resources/variants/zav/zav_bigplus_0.40.inst.cfg index 5648641180d..b463d344add 100644 --- a/resources/variants/zav/zav_bigplus_0.40.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.45.inst.cfg b/resources/variants/zav/zav_bigplus_0.45.inst.cfg index 9365c882fb2..15b91bf090d 100644 --- a/resources/variants/zav/zav_bigplus_0.45.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.50.inst.cfg b/resources/variants/zav/zav_bigplus_0.50.inst.cfg index 6fa5aae4a30..7fbdcae3dc3 100644 --- a/resources/variants/zav/zav_bigplus_0.50.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.60.inst.cfg b/resources/variants/zav/zav_bigplus_0.60.inst.cfg index 1d56233594f..a017964412f 100644 --- a/resources/variants/zav/zav_bigplus_0.60.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.80.inst.cfg b/resources/variants/zav/zav_bigplus_0.80.inst.cfg index 38e0c446faf..7d05464c35c 100644 --- a/resources/variants/zav/zav_bigplus_0.80.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_1.00.inst.cfg b/resources/variants/zav/zav_bigplus_1.00.inst.cfg index b183720df79..9df217c9d28 100644 --- a/resources/variants/zav/zav_bigplus_1.00.inst.cfg +++ b/resources/variants/zav/zav_bigplus_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.20.inst.cfg b/resources/variants/zav/zav_l_0.20.inst.cfg index 570ad1e8045..36c221e17e2 100644 --- a/resources/variants/zav/zav_l_0.20.inst.cfg +++ b/resources/variants/zav/zav_l_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.25.inst.cfg b/resources/variants/zav/zav_l_0.25.inst.cfg index 0bb46590a29..5c70cc59e2e 100644 --- a/resources/variants/zav/zav_l_0.25.inst.cfg +++ b/resources/variants/zav/zav_l_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.30.inst.cfg b/resources/variants/zav/zav_l_0.30.inst.cfg index 2031947fe32..b3b27911ac9 100644 --- a/resources/variants/zav/zav_l_0.30.inst.cfg +++ b/resources/variants/zav/zav_l_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.35.inst.cfg b/resources/variants/zav/zav_l_0.35.inst.cfg index c94b03b5939..363456995d5 100644 --- a/resources/variants/zav/zav_l_0.35.inst.cfg +++ b/resources/variants/zav/zav_l_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.40.inst.cfg b/resources/variants/zav/zav_l_0.40.inst.cfg index a9439a74220..c6669ad9a44 100644 --- a/resources/variants/zav/zav_l_0.40.inst.cfg +++ b/resources/variants/zav/zav_l_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.45.inst.cfg b/resources/variants/zav/zav_l_0.45.inst.cfg index c2962b60bac..65db0556eaa 100644 --- a/resources/variants/zav/zav_l_0.45.inst.cfg +++ b/resources/variants/zav/zav_l_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.50.inst.cfg b/resources/variants/zav/zav_l_0.50.inst.cfg index d0ce3b7f886..e3f2ef936d7 100644 --- a/resources/variants/zav/zav_l_0.50.inst.cfg +++ b/resources/variants/zav/zav_l_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.60.inst.cfg b/resources/variants/zav/zav_l_0.60.inst.cfg index eec1d7d3a26..4931819d79e 100644 --- a/resources/variants/zav/zav_l_0.60.inst.cfg +++ b/resources/variants/zav/zav_l_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.80.inst.cfg b/resources/variants/zav/zav_l_0.80.inst.cfg index 9a151bc35bc..e142040df62 100644 --- a/resources/variants/zav/zav_l_0.80.inst.cfg +++ b/resources/variants/zav/zav_l_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_l_1.00.inst.cfg b/resources/variants/zav/zav_l_1.00.inst.cfg index 32e430d2093..32bd8bc3abc 100644 --- a/resources/variants/zav/zav_l_1.00.inst.cfg +++ b/resources/variants/zav/zav_l_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.20.inst.cfg b/resources/variants/zav/zav_max_0.20.inst.cfg index e02d20d6b50..b7d24f2b1b4 100644 --- a/resources/variants/zav/zav_max_0.20.inst.cfg +++ b/resources/variants/zav/zav_max_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.25.inst.cfg b/resources/variants/zav/zav_max_0.25.inst.cfg index 453ab07d8f6..d3b54f4cbd8 100644 --- a/resources/variants/zav/zav_max_0.25.inst.cfg +++ b/resources/variants/zav/zav_max_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.30.inst.cfg b/resources/variants/zav/zav_max_0.30.inst.cfg index cbc4dca202f..cc335e2d234 100644 --- a/resources/variants/zav/zav_max_0.30.inst.cfg +++ b/resources/variants/zav/zav_max_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.35.inst.cfg b/resources/variants/zav/zav_max_0.35.inst.cfg index bb82e132c5d..a5daa9a2669 100644 --- a/resources/variants/zav/zav_max_0.35.inst.cfg +++ b/resources/variants/zav/zav_max_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.40.inst.cfg b/resources/variants/zav/zav_max_0.40.inst.cfg index b3d86fc8e71..f0d48219f4c 100644 --- a/resources/variants/zav/zav_max_0.40.inst.cfg +++ b/resources/variants/zav/zav_max_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.45.inst.cfg b/resources/variants/zav/zav_max_0.45.inst.cfg index c94ba4c136e..1ec70c2d33c 100644 --- a/resources/variants/zav/zav_max_0.45.inst.cfg +++ b/resources/variants/zav/zav_max_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.50.inst.cfg b/resources/variants/zav/zav_max_0.50.inst.cfg index cd2deaa6111..6e3c61c1425 100644 --- a/resources/variants/zav/zav_max_0.50.inst.cfg +++ b/resources/variants/zav/zav_max_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.60.inst.cfg b/resources/variants/zav/zav_max_0.60.inst.cfg index d18e1b0f4c9..56dcfa5b4e4 100644 --- a/resources/variants/zav/zav_max_0.60.inst.cfg +++ b/resources/variants/zav/zav_max_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.80.inst.cfg b/resources/variants/zav/zav_max_0.80.inst.cfg index e65fcfa0693..7899a7d3215 100644 --- a/resources/variants/zav/zav_max_0.80.inst.cfg +++ b/resources/variants/zav/zav_max_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_max_1.00.inst.cfg b/resources/variants/zav/zav_max_1.00.inst.cfg index 4b75bb9fc02..c14b0b25a07 100644 --- a/resources/variants/zav/zav_max_1.00.inst.cfg +++ b/resources/variants/zav/zav_max_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.20.inst.cfg b/resources/variants/zav/zav_maxpro_0.20.inst.cfg index 0f250052ab2..2f693153e24 100644 --- a/resources/variants/zav/zav_maxpro_0.20.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.25.inst.cfg b/resources/variants/zav/zav_maxpro_0.25.inst.cfg index a9f2ec80583..07b3cbb2996 100644 --- a/resources/variants/zav/zav_maxpro_0.25.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.30.inst.cfg b/resources/variants/zav/zav_maxpro_0.30.inst.cfg index 0fcd6148289..becb97fbafe 100644 --- a/resources/variants/zav/zav_maxpro_0.30.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.35.inst.cfg b/resources/variants/zav/zav_maxpro_0.35.inst.cfg index e7d8de04df0..bf9ad26e28a 100644 --- a/resources/variants/zav/zav_maxpro_0.35.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.40.inst.cfg b/resources/variants/zav/zav_maxpro_0.40.inst.cfg index b8e7e3f5099..bd99c768857 100644 --- a/resources/variants/zav/zav_maxpro_0.40.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.45.inst.cfg b/resources/variants/zav/zav_maxpro_0.45.inst.cfg index 6b7bd64bf38..8848639582e 100644 --- a/resources/variants/zav/zav_maxpro_0.45.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.50.inst.cfg b/resources/variants/zav/zav_maxpro_0.50.inst.cfg index 7db70a401a5..9aba2b9fbbb 100644 --- a/resources/variants/zav/zav_maxpro_0.50.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.60.inst.cfg b/resources/variants/zav/zav_maxpro_0.60.inst.cfg index ba8e30d5b92..027a4fc96a4 100644 --- a/resources/variants/zav/zav_maxpro_0.60.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.80.inst.cfg b/resources/variants/zav/zav_maxpro_0.80.inst.cfg index e8fe9a1bf4f..1ef39b36630 100644 --- a/resources/variants/zav/zav_maxpro_0.80.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_1.00.inst.cfg b/resources/variants/zav/zav_maxpro_1.00.inst.cfg index 4c65159ccfc..15872422f6a 100644 --- a/resources/variants/zav/zav_maxpro_1.00.inst.cfg +++ b/resources/variants/zav/zav_maxpro_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.20.inst.cfg b/resources/variants/zav/zav_mini_0.20.inst.cfg index 10a6733a1b0..f66717ae192 100644 --- a/resources/variants/zav/zav_mini_0.20.inst.cfg +++ b/resources/variants/zav/zav_mini_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.25.inst.cfg b/resources/variants/zav/zav_mini_0.25.inst.cfg index 5b32e6cab09..fe43c80041c 100644 --- a/resources/variants/zav/zav_mini_0.25.inst.cfg +++ b/resources/variants/zav/zav_mini_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.30.inst.cfg b/resources/variants/zav/zav_mini_0.30.inst.cfg index e3680c1c009..d393760b573 100644 --- a/resources/variants/zav/zav_mini_0.30.inst.cfg +++ b/resources/variants/zav/zav_mini_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.35.inst.cfg b/resources/variants/zav/zav_mini_0.35.inst.cfg index b0b2dc4cb7a..f33ef12e6fa 100644 --- a/resources/variants/zav/zav_mini_0.35.inst.cfg +++ b/resources/variants/zav/zav_mini_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.40.inst.cfg b/resources/variants/zav/zav_mini_0.40.inst.cfg index 8ad44c42fb6..3d16bc3a110 100644 --- a/resources/variants/zav/zav_mini_0.40.inst.cfg +++ b/resources/variants/zav/zav_mini_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.45.inst.cfg b/resources/variants/zav/zav_mini_0.45.inst.cfg index 787f44e6da8..827aa1fe3bd 100644 --- a/resources/variants/zav/zav_mini_0.45.inst.cfg +++ b/resources/variants/zav/zav_mini_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.50.inst.cfg b/resources/variants/zav/zav_mini_0.50.inst.cfg index dfd4c5b36ef..70e5fe2fd74 100644 --- a/resources/variants/zav/zav_mini_0.50.inst.cfg +++ b/resources/variants/zav/zav_mini_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.60.inst.cfg b/resources/variants/zav/zav_mini_0.60.inst.cfg index 3588219551b..d7f4915d171 100644 --- a/resources/variants/zav/zav_mini_0.60.inst.cfg +++ b/resources/variants/zav/zav_mini_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.80.inst.cfg b/resources/variants/zav/zav_mini_0.80.inst.cfg index 18082058719..f1518d7e778 100644 --- a/resources/variants/zav/zav_mini_0.80.inst.cfg +++ b/resources/variants/zav/zav_mini_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_mini_1.00.inst.cfg b/resources/variants/zav/zav_mini_1.00.inst.cfg index f47f8777f3a..3e85f4c25fe 100644 --- a/resources/variants/zav/zav_mini_1.00.inst.cfg +++ b/resources/variants/zav/zav_mini_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] From 59d395a1217667bc0352d1d2d3ed6df445e8f658 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Fri, 15 Mar 2024 12:20:56 +0100 Subject: [PATCH 679/765] Added learn more button while saving and opening UCP CURA-11734 --- plugins/3MFReader/WorkspaceDialog.qml | 13 +++++++++++++ plugins/3MFWriter/UCPDialog.qml | 21 +++++++++++++++------ 2 files changed, 28 insertions(+), 6 deletions(-) diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index a8cdad92bdd..878b80db171 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -35,6 +35,19 @@ UM.Dialog anchors.topMargin: UM.Theme.getSize("default_margin").height anchors.leftMargin: UM.Theme.getSize("default_margin").height } + + Cura.TertiaryButton + { + id: learnMoreButton + visible: manager.isUcp + anchors.right: parent.right + anchors.topMargin: UM.Theme.getSize("default_margin").height + anchors.rightMargin: UM.Theme.getSize("default_margin").height + text: catalog.i18nc("@button", "Learn more") + iconSource: UM.Theme.getIcon("LinkExternal") + isIconOnRightSide: true + onClicked: Qt.openUrlExternally("https://support.ultimaker.com/s/article/000002979") + } } Rectangle diff --git a/plugins/3MFWriter/UCPDialog.qml b/plugins/3MFWriter/UCPDialog.qml index f90378a8ea3..5c85f7fe7da 100644 --- a/plugins/3MFWriter/UCPDialog.qml +++ b/plugins/3MFWriter/UCPDialog.qml @@ -35,14 +35,23 @@ UM.Dialog anchors.topMargin: UM.Theme.getSize("default_margin").height anchors.leftMargin: UM.Theme.getSize("default_margin").width anchors.rightMargin: anchors.leftMargin - - UM.Label + RowLayout { - id: titleLabel - text: catalog.i18nc("@action:title Don't translate 'Universal Cura Project'", "Summary - Universal Cura Project") - font: UM.Theme.getFont("large") + UM.Label + { + id: titleLabel + text: catalog.i18nc("@action:title Don't translate 'Universal Cura Project'", "Summary - Universal Cura Project") + font: UM.Theme.getFont("large") + } + Cura.TertiaryButton + { + id: learnMoreButton + text: catalog.i18nc("@button", "Learn more") + iconSource: UM.Theme.getIcon("LinkExternal") + isIconOnRightSide: true + onClicked: Qt.openUrlExternally("https://support.ultimaker.com/s/article/000002979") + } } - UM.Label { id: descriptionLabel From 80a28021e90b815df425246755caf76a3a2e476b Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 15 Mar 2024 13:09:54 +0100 Subject: [PATCH 680/765] Add blank line to split elements visually CURA-11734 --- plugins/3MFWriter/UCPDialog.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/3MFWriter/UCPDialog.qml b/plugins/3MFWriter/UCPDialog.qml index 5c85f7fe7da..25bbb49db0f 100644 --- a/plugins/3MFWriter/UCPDialog.qml +++ b/plugins/3MFWriter/UCPDialog.qml @@ -35,6 +35,7 @@ UM.Dialog anchors.topMargin: UM.Theme.getSize("default_margin").height anchors.leftMargin: UM.Theme.getSize("default_margin").width anchors.rightMargin: anchors.leftMargin + RowLayout { UM.Label From d42f894965fba80f1f4fad47b957e09a071509e2 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Fri, 15 Mar 2024 13:58:39 +0100 Subject: [PATCH 681/765] fixed blank lines for consistency CURA-11738 --- resources/texts/change_log.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/resources/texts/change_log.txt b/resources/texts/change_log.txt index 8861ee60ea1..78bffc4a3b0 100644 --- a/resources/texts/change_log.txt +++ b/resources/texts/change_log.txt @@ -1,4 +1,5 @@ [5.7] + * New features and improvements: - Introduced a way that you can open models from Thingiverse from your browser - Introduced Universal Cura Project files. They contain models and settings and can be shared with people who have different printers. @@ -15,7 +16,6 @@ - Introduced alternative camera navigation similar to FreeCAD Trackpad, contributed by @quarnster - Introduced a way to set print sequence manually when printing One at a time, contributed by @alexandr-vladimirov - * MethodX specific improvements - Enabled Print over Cloud for UltiMaker MethodX and Method XL printers - Introduced ASA, SR30, and Nylon12-CF profiles for MethodX and Method XL Printers @@ -45,7 +45,6 @@ - Added an error so LimitXYAccelJerk doesn't run unless Accel Control is enabled in Cura, contributed by @Gregvaliant - Some helpful code cleanup contributed by @dmitrygribenchuk - * Printer definitions, profiles and materials: - Introduced high-speed profiles for the layer heights <0.15mm for Ultimaker PLA, T-PLA, ABS and PETG. - Updated Initial Layer Speed settings for UltiMaker S3, and UltiMaker S5 From 826b2e42b229c9007407a2a614f11d79743119c9 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Fri, 15 Mar 2024 14:00:40 +0100 Subject: [PATCH 682/765] removed bug for signed out CURA-11738 --- resources/texts/change_log.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/resources/texts/change_log.txt b/resources/texts/change_log.txt index 78bffc4a3b0..3e0c1e114ee 100644 --- a/resources/texts/change_log.txt +++ b/resources/texts/change_log.txt @@ -35,7 +35,6 @@ - Reduced the amount of floating support in area's near the support overhang angle threshold - Fixed a bug with the Initial Extruder Number in the start gcode, resolves https://github.com/Ultimaker/Cura/issues/17501 - Fixed a bug where Z could be negative if Remove Empty Layers was enabled, resolves https://github.com/Ultimaker/Cura/issues/15975 -- Fixed a bug where you are signed out if you leave Cura open for a longer time or let the PC fall asleep. - Fixed tree support-related crashes if there are no overhangs, contributed by @thomasrahm - Pressing the Esc key now doesn't exiting full screen mode, contributed by @Sophist-UK, resolves https://github.com/Ultimaker/Cura/issues/7499 - Improved the OAuth protocol to improve signing in with plug-ins, contributed by @wawanbreton From b8e4251e6a2593aaeeb40f7ac536b17d36e86ccf Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Fri, 15 Mar 2024 14:27:26 +0100 Subject: [PATCH 683/765] Removed repeated line CURA-11738 --- resources/texts/change_log.txt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/resources/texts/change_log.txt b/resources/texts/change_log.txt index 3e0c1e114ee..c9ffcab4309 100644 --- a/resources/texts/change_log.txt +++ b/resources/texts/change_log.txt @@ -7,14 +7,13 @@ - Introduced an analyzing tool in the cura engine to better track slicing crashes, and started fixing the biggest reports coming in. - New Primetower option; Sparse, next to the current Bucket, contributed by @wawanbreton - Brim only on the inside setting -- Allowing to define print sequence manually, contributed by @alexandr-vladimirov (Github) +- Allowing to define print sequence manually when printing One at a time, contributed by @alexandr-vladimirov (Github) - Introduced a setting to apply Monotonic ordering to the Raft Top Surface - Introduced a Raft Wall Line Count for the Bottom, Middle and Top of the raft - The play speed of the nozzle in the preview is now closer to the movement of the printhead - Introduced an option to choose Drop Model to Buildplate every time a project file is loaded - Introduced DisplayInfoOnLCD Post Processing Script which combines DisplayFilenameAndLayerOnLCD with DisplayProgress, contributed by @GregValiant - Introduced alternative camera navigation similar to FreeCAD Trackpad, contributed by @quarnster -- Introduced a way to set print sequence manually when printing One at a time, contributed by @alexandr-vladimirov * MethodX specific improvements - Enabled Print over Cloud for UltiMaker MethodX and Method XL printers @@ -30,7 +29,7 @@ * Bug fixes: - Fixed significantly slower slicing for models with a lot of holes - Fixed a significant amount of crashes that are caused by self intersecting polygons -- FIxeda bug where Align to Buildplate did not work for grouped meshes, resolves https://github.com/Ultimaker/Cura/issues/14237 +- Fixed a bug where Align to Buildplate did not work for grouped meshes, resolves https://github.com/Ultimaker/Cura/issues/14237 - Fixed a bug where the models in a 3mf file would not load in their saved position, note that this also changes the behavior of the "import models" feature of a 3mf file, for this feature the saved model location will be ignored - Reduced the amount of floating support in area's near the support overhang angle threshold - Fixed a bug with the Initial Extruder Number in the start gcode, resolves https://github.com/Ultimaker/Cura/issues/17501 From 8e0127471dced608e06744d92877ac99d7651619 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 15 Mar 2024 14:34:51 +0100 Subject: [PATCH 684/765] Bumb setting version in fdmextruder and fdmprinter CURA-11526 --- resources/definitions/fdmextruder.def.json | 2 +- resources/definitions/fdmprinter.def.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/definitions/fdmextruder.def.json b/resources/definitions/fdmextruder.def.json index 006a6eac528..f60cf63360f 100644 --- a/resources/definitions/fdmextruder.def.json +++ b/resources/definitions/fdmextruder.def.json @@ -7,7 +7,7 @@ "author": "Ultimaker", "manufacturer": "Unknown", "position": "0", - "setting_version": 22, + "setting_version": 23, "type": "extruder" }, "settings": diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 3f8bc0d0616..83472631092 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6,7 +6,7 @@ "type": "machine", "author": "Unknown", "manufacturer": "Unknown", - "setting_version": 22, + "setting_version": 23, "file_formats": "text/x-gcode;model/stl;application/x-wavefront-obj;application/x3g", "visible": false, "has_materials": true, From e27432990de0e868c64ed98a4d3084168ac37c0c Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 15 Mar 2024 14:53:57 +0100 Subject: [PATCH 685/765] Prepare for 5.7.0-beta.1 release --- conandata.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/conandata.yml b/conandata.yml index 0d0452ebbe5..41dbe60574e 100644 --- a/conandata.yml +++ b/conandata.yml @@ -1,9 +1,9 @@ -version: "5.7.0-beta.0" +version: "5.7.0-beta.1" requirements: - - "uranium/(latest)@ultimaker/stable" - - "curaengine/(latest)@ultimaker/stable" - - "cura_binary_data/(latest)@ultimaker/stable" - - "fdm_materials/(latest)@ultimaker/stable" + - "uranium/5.7.0-beta.1@ultimaker/stable" + - "curaengine/5.7.0-beta.1@ultimaker/stable" + - "cura_binary_data/5.7.0-beta.1@ultimaker/stable" + - "fdm_materials/5.7.0-beta.1@ultimaker/stable" - "curaengine_plugin_gradual_flow/0.1.0-beta.3" - "dulcificum/latest@ultimaker/testing" - "pysavitar/5.3.0" From 0fec7bd3c786ff95701ea7b54e1f8226be8b51e3 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 15 Mar 2024 15:07:28 +0100 Subject: [PATCH 686/765] Properly pin dependancies --- conandata.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/conandata.yml b/conandata.yml index 41dbe60574e..2cceca52c7c 100644 --- a/conandata.yml +++ b/conandata.yml @@ -1,9 +1,9 @@ version: "5.7.0-beta.1" requirements: - - "uranium/5.7.0-beta.1@ultimaker/stable" - - "curaengine/5.7.0-beta.1@ultimaker/stable" - - "cura_binary_data/5.7.0-beta.1@ultimaker/stable" - - "fdm_materials/5.7.0-beta.1@ultimaker/stable" + - "uranium/5.7.0-beta.1" + - "curaengine/5.7.0-beta.1" + - "cura_binary_data/5.7.0-beta.1" + - "fdm_materials/5.7.0-beta.1" - "curaengine_plugin_gradual_flow/0.1.0-beta.3" - "dulcificum/latest@ultimaker/testing" - "pysavitar/5.3.0" From 836b54279d50689baa58a96d48621022e4f4b7be Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 15 Mar 2024 16:30:53 +0100 Subject: [PATCH 687/765] Cleared non-translated labels --- .../cs_CZ/gradual_flow_settings.def.json.po | 20 +++++++++---------- .../de_DE/gradual_flow_settings.def.json.po | 20 +++++++++---------- .../es_ES/gradual_flow_settings.def.json.po | 18 ++++++++--------- .../fi_FI/gradual_flow_settings.def.json.po | 18 ++++++++--------- .../fr_FR/gradual_flow_settings.def.json.po | 18 ++++++++--------- .../hu_HU/gradual_flow_settings.def.json.po | 20 +++++++++---------- .../it_IT/gradual_flow_settings.def.json.po | 20 +++++++++---------- .../ja_JP/gradual_flow_settings.def.json.po | 20 +++++++++---------- .../ko_KR/gradual_flow_settings.def.json.po | 20 +++++++++---------- .../nl_NL/gradual_flow_settings.def.json.po | 18 ++++++++--------- .../pl_PL/gradual_flow_settings.def.json.po | 20 +++++++++---------- .../pt_BR/gradual_flow_settings.def.json.po | 20 +++++++++---------- .../pt_PT/gradual_flow_settings.def.json.po | 20 +++++++++---------- .../ru_RU/gradual_flow_settings.def.json.po | 20 +++++++++---------- .../tr_TR/gradual_flow_settings.def.json.po | 20 +++++++++---------- .../zh_CN/gradual_flow_settings.def.json.po | 20 +++++++++---------- .../zh_TW/gradual_flow_settings.def.json.po | 20 +++++++++---------- 17 files changed, 166 insertions(+), 166 deletions(-) diff --git a/resources/i18n/cs_CZ/gradual_flow_settings.def.json.po b/resources/i18n/cs_CZ/gradual_flow_settings.def.json.po index 363b0994aa1..2529ed73e4f 100644 --- a/resources/i18n/cs_CZ/gradual_flow_settings.def.json.po +++ b/resources/i18n/cs_CZ/gradual_flow_settings.def.json.po @@ -15,40 +15,40 @@ msgstr "" msgctxt "gradual_flow_discretisation_step_size description" msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgstr "" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" msgctxt "gradual_flow_discretisation_step_size label" msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" +msgstr "" msgctxt "gradual_flow_enabled label" msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" +msgstr "" msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" -msgstr "Gradual flow max acceleration" +msgstr "" msgctxt "layer_0_max_flow_acceleration label" msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" +msgstr "" msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximum acceleration for gradual flow changes" +msgstr "" msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimum speed for gradual flow changes for the first layer" +msgstr "" msgctxt "reset_flow_duration label" msgid "Reset flow duration" -msgstr "Reset flow duration" +msgstr "" diff --git a/resources/i18n/de_DE/gradual_flow_settings.def.json.po b/resources/i18n/de_DE/gradual_flow_settings.def.json.po index 363b0994aa1..2529ed73e4f 100644 --- a/resources/i18n/de_DE/gradual_flow_settings.def.json.po +++ b/resources/i18n/de_DE/gradual_flow_settings.def.json.po @@ -15,40 +15,40 @@ msgstr "" msgctxt "gradual_flow_discretisation_step_size description" msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgstr "" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" msgctxt "gradual_flow_discretisation_step_size label" msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" +msgstr "" msgctxt "gradual_flow_enabled label" msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" +msgstr "" msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" -msgstr "Gradual flow max acceleration" +msgstr "" msgctxt "layer_0_max_flow_acceleration label" msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" +msgstr "" msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximum acceleration for gradual flow changes" +msgstr "" msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimum speed for gradual flow changes for the first layer" +msgstr "" msgctxt "reset_flow_duration label" msgid "Reset flow duration" -msgstr "Reset flow duration" +msgstr "" diff --git a/resources/i18n/es_ES/gradual_flow_settings.def.json.po b/resources/i18n/es_ES/gradual_flow_settings.def.json.po index 363b0994aa1..3078cba7bf4 100644 --- a/resources/i18n/es_ES/gradual_flow_settings.def.json.po +++ b/resources/i18n/es_ES/gradual_flow_settings.def.json.po @@ -15,39 +15,39 @@ msgstr "" msgctxt "gradual_flow_discretisation_step_size description" msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgstr "" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" msgctxt "gradual_flow_discretisation_step_size label" msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" +msgstr "" msgctxt "gradual_flow_enabled label" msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" +msgstr "" msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" -msgstr "Gradual flow max acceleration" +msgstr "" msgctxt "layer_0_max_flow_acceleration label" msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" +msgstr "" msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximum acceleration for gradual flow changes" +msgstr "" msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimum speed for gradual flow changes for the first layer" +msgstr "" msgctxt "reset_flow_duration label" msgid "Reset flow duration" diff --git a/resources/i18n/fi_FI/gradual_flow_settings.def.json.po b/resources/i18n/fi_FI/gradual_flow_settings.def.json.po index 363b0994aa1..3078cba7bf4 100644 --- a/resources/i18n/fi_FI/gradual_flow_settings.def.json.po +++ b/resources/i18n/fi_FI/gradual_flow_settings.def.json.po @@ -15,39 +15,39 @@ msgstr "" msgctxt "gradual_flow_discretisation_step_size description" msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgstr "" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" msgctxt "gradual_flow_discretisation_step_size label" msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" +msgstr "" msgctxt "gradual_flow_enabled label" msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" +msgstr "" msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" -msgstr "Gradual flow max acceleration" +msgstr "" msgctxt "layer_0_max_flow_acceleration label" msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" +msgstr "" msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximum acceleration for gradual flow changes" +msgstr "" msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimum speed for gradual flow changes for the first layer" +msgstr "" msgctxt "reset_flow_duration label" msgid "Reset flow duration" diff --git a/resources/i18n/fr_FR/gradual_flow_settings.def.json.po b/resources/i18n/fr_FR/gradual_flow_settings.def.json.po index 363b0994aa1..3078cba7bf4 100644 --- a/resources/i18n/fr_FR/gradual_flow_settings.def.json.po +++ b/resources/i18n/fr_FR/gradual_flow_settings.def.json.po @@ -15,39 +15,39 @@ msgstr "" msgctxt "gradual_flow_discretisation_step_size description" msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgstr "" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" msgctxt "gradual_flow_discretisation_step_size label" msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" +msgstr "" msgctxt "gradual_flow_enabled label" msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" +msgstr "" msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" -msgstr "Gradual flow max acceleration" +msgstr "" msgctxt "layer_0_max_flow_acceleration label" msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" +msgstr "" msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximum acceleration for gradual flow changes" +msgstr "" msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimum speed for gradual flow changes for the first layer" +msgstr "" msgctxt "reset_flow_duration label" msgid "Reset flow duration" diff --git a/resources/i18n/hu_HU/gradual_flow_settings.def.json.po b/resources/i18n/hu_HU/gradual_flow_settings.def.json.po index 363b0994aa1..2529ed73e4f 100644 --- a/resources/i18n/hu_HU/gradual_flow_settings.def.json.po +++ b/resources/i18n/hu_HU/gradual_flow_settings.def.json.po @@ -15,40 +15,40 @@ msgstr "" msgctxt "gradual_flow_discretisation_step_size description" msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgstr "" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" msgctxt "gradual_flow_discretisation_step_size label" msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" +msgstr "" msgctxt "gradual_flow_enabled label" msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" +msgstr "" msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" -msgstr "Gradual flow max acceleration" +msgstr "" msgctxt "layer_0_max_flow_acceleration label" msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" +msgstr "" msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximum acceleration for gradual flow changes" +msgstr "" msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimum speed for gradual flow changes for the first layer" +msgstr "" msgctxt "reset_flow_duration label" msgid "Reset flow duration" -msgstr "Reset flow duration" +msgstr "" diff --git a/resources/i18n/it_IT/gradual_flow_settings.def.json.po b/resources/i18n/it_IT/gradual_flow_settings.def.json.po index 363b0994aa1..2529ed73e4f 100644 --- a/resources/i18n/it_IT/gradual_flow_settings.def.json.po +++ b/resources/i18n/it_IT/gradual_flow_settings.def.json.po @@ -15,40 +15,40 @@ msgstr "" msgctxt "gradual_flow_discretisation_step_size description" msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgstr "" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" msgctxt "gradual_flow_discretisation_step_size label" msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" +msgstr "" msgctxt "gradual_flow_enabled label" msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" +msgstr "" msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" -msgstr "Gradual flow max acceleration" +msgstr "" msgctxt "layer_0_max_flow_acceleration label" msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" +msgstr "" msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximum acceleration for gradual flow changes" +msgstr "" msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimum speed for gradual flow changes for the first layer" +msgstr "" msgctxt "reset_flow_duration label" msgid "Reset flow duration" -msgstr "Reset flow duration" +msgstr "" diff --git a/resources/i18n/ja_JP/gradual_flow_settings.def.json.po b/resources/i18n/ja_JP/gradual_flow_settings.def.json.po index 363b0994aa1..2529ed73e4f 100644 --- a/resources/i18n/ja_JP/gradual_flow_settings.def.json.po +++ b/resources/i18n/ja_JP/gradual_flow_settings.def.json.po @@ -15,40 +15,40 @@ msgstr "" msgctxt "gradual_flow_discretisation_step_size description" msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgstr "" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" msgctxt "gradual_flow_discretisation_step_size label" msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" +msgstr "" msgctxt "gradual_flow_enabled label" msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" +msgstr "" msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" -msgstr "Gradual flow max acceleration" +msgstr "" msgctxt "layer_0_max_flow_acceleration label" msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" +msgstr "" msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximum acceleration for gradual flow changes" +msgstr "" msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimum speed for gradual flow changes for the first layer" +msgstr "" msgctxt "reset_flow_duration label" msgid "Reset flow duration" -msgstr "Reset flow duration" +msgstr "" diff --git a/resources/i18n/ko_KR/gradual_flow_settings.def.json.po b/resources/i18n/ko_KR/gradual_flow_settings.def.json.po index 363b0994aa1..2529ed73e4f 100644 --- a/resources/i18n/ko_KR/gradual_flow_settings.def.json.po +++ b/resources/i18n/ko_KR/gradual_flow_settings.def.json.po @@ -15,40 +15,40 @@ msgstr "" msgctxt "gradual_flow_discretisation_step_size description" msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgstr "" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" msgctxt "gradual_flow_discretisation_step_size label" msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" +msgstr "" msgctxt "gradual_flow_enabled label" msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" +msgstr "" msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" -msgstr "Gradual flow max acceleration" +msgstr "" msgctxt "layer_0_max_flow_acceleration label" msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" +msgstr "" msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximum acceleration for gradual flow changes" +msgstr "" msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimum speed for gradual flow changes for the first layer" +msgstr "" msgctxt "reset_flow_duration label" msgid "Reset flow duration" -msgstr "Reset flow duration" +msgstr "" diff --git a/resources/i18n/nl_NL/gradual_flow_settings.def.json.po b/resources/i18n/nl_NL/gradual_flow_settings.def.json.po index 363b0994aa1..3078cba7bf4 100644 --- a/resources/i18n/nl_NL/gradual_flow_settings.def.json.po +++ b/resources/i18n/nl_NL/gradual_flow_settings.def.json.po @@ -15,39 +15,39 @@ msgstr "" msgctxt "gradual_flow_discretisation_step_size description" msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgstr "" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" msgctxt "gradual_flow_discretisation_step_size label" msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" +msgstr "" msgctxt "gradual_flow_enabled label" msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" +msgstr "" msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" -msgstr "Gradual flow max acceleration" +msgstr "" msgctxt "layer_0_max_flow_acceleration label" msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" +msgstr "" msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximum acceleration for gradual flow changes" +msgstr "" msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimum speed for gradual flow changes for the first layer" +msgstr "" msgctxt "reset_flow_duration label" msgid "Reset flow duration" diff --git a/resources/i18n/pl_PL/gradual_flow_settings.def.json.po b/resources/i18n/pl_PL/gradual_flow_settings.def.json.po index 363b0994aa1..2529ed73e4f 100644 --- a/resources/i18n/pl_PL/gradual_flow_settings.def.json.po +++ b/resources/i18n/pl_PL/gradual_flow_settings.def.json.po @@ -15,40 +15,40 @@ msgstr "" msgctxt "gradual_flow_discretisation_step_size description" msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgstr "" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" msgctxt "gradual_flow_discretisation_step_size label" msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" +msgstr "" msgctxt "gradual_flow_enabled label" msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" +msgstr "" msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" -msgstr "Gradual flow max acceleration" +msgstr "" msgctxt "layer_0_max_flow_acceleration label" msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" +msgstr "" msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximum acceleration for gradual flow changes" +msgstr "" msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimum speed for gradual flow changes for the first layer" +msgstr "" msgctxt "reset_flow_duration label" msgid "Reset flow duration" -msgstr "Reset flow duration" +msgstr "" diff --git a/resources/i18n/pt_BR/gradual_flow_settings.def.json.po b/resources/i18n/pt_BR/gradual_flow_settings.def.json.po index 363b0994aa1..2529ed73e4f 100644 --- a/resources/i18n/pt_BR/gradual_flow_settings.def.json.po +++ b/resources/i18n/pt_BR/gradual_flow_settings.def.json.po @@ -15,40 +15,40 @@ msgstr "" msgctxt "gradual_flow_discretisation_step_size description" msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgstr "" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" msgctxt "gradual_flow_discretisation_step_size label" msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" +msgstr "" msgctxt "gradual_flow_enabled label" msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" +msgstr "" msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" -msgstr "Gradual flow max acceleration" +msgstr "" msgctxt "layer_0_max_flow_acceleration label" msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" +msgstr "" msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximum acceleration for gradual flow changes" +msgstr "" msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimum speed for gradual flow changes for the first layer" +msgstr "" msgctxt "reset_flow_duration label" msgid "Reset flow duration" -msgstr "Reset flow duration" +msgstr "" diff --git a/resources/i18n/pt_PT/gradual_flow_settings.def.json.po b/resources/i18n/pt_PT/gradual_flow_settings.def.json.po index 363b0994aa1..2529ed73e4f 100644 --- a/resources/i18n/pt_PT/gradual_flow_settings.def.json.po +++ b/resources/i18n/pt_PT/gradual_flow_settings.def.json.po @@ -15,40 +15,40 @@ msgstr "" msgctxt "gradual_flow_discretisation_step_size description" msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgstr "" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" msgctxt "gradual_flow_discretisation_step_size label" msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" +msgstr "" msgctxt "gradual_flow_enabled label" msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" +msgstr "" msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" -msgstr "Gradual flow max acceleration" +msgstr "" msgctxt "layer_0_max_flow_acceleration label" msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" +msgstr "" msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximum acceleration for gradual flow changes" +msgstr "" msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimum speed for gradual flow changes for the first layer" +msgstr "" msgctxt "reset_flow_duration label" msgid "Reset flow duration" -msgstr "Reset flow duration" +msgstr "" diff --git a/resources/i18n/ru_RU/gradual_flow_settings.def.json.po b/resources/i18n/ru_RU/gradual_flow_settings.def.json.po index 363b0994aa1..2529ed73e4f 100644 --- a/resources/i18n/ru_RU/gradual_flow_settings.def.json.po +++ b/resources/i18n/ru_RU/gradual_flow_settings.def.json.po @@ -15,40 +15,40 @@ msgstr "" msgctxt "gradual_flow_discretisation_step_size description" msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgstr "" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" msgctxt "gradual_flow_discretisation_step_size label" msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" +msgstr "" msgctxt "gradual_flow_enabled label" msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" +msgstr "" msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" -msgstr "Gradual flow max acceleration" +msgstr "" msgctxt "layer_0_max_flow_acceleration label" msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" +msgstr "" msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximum acceleration for gradual flow changes" +msgstr "" msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimum speed for gradual flow changes for the first layer" +msgstr "" msgctxt "reset_flow_duration label" msgid "Reset flow duration" -msgstr "Reset flow duration" +msgstr "" diff --git a/resources/i18n/tr_TR/gradual_flow_settings.def.json.po b/resources/i18n/tr_TR/gradual_flow_settings.def.json.po index 363b0994aa1..2529ed73e4f 100644 --- a/resources/i18n/tr_TR/gradual_flow_settings.def.json.po +++ b/resources/i18n/tr_TR/gradual_flow_settings.def.json.po @@ -15,40 +15,40 @@ msgstr "" msgctxt "gradual_flow_discretisation_step_size description" msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgstr "" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" msgctxt "gradual_flow_discretisation_step_size label" msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" +msgstr "" msgctxt "gradual_flow_enabled label" msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" +msgstr "" msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" -msgstr "Gradual flow max acceleration" +msgstr "" msgctxt "layer_0_max_flow_acceleration label" msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" +msgstr "" msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximum acceleration for gradual flow changes" +msgstr "" msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimum speed for gradual flow changes for the first layer" +msgstr "" msgctxt "reset_flow_duration label" msgid "Reset flow duration" -msgstr "Reset flow duration" +msgstr "" diff --git a/resources/i18n/zh_CN/gradual_flow_settings.def.json.po b/resources/i18n/zh_CN/gradual_flow_settings.def.json.po index 363b0994aa1..2529ed73e4f 100644 --- a/resources/i18n/zh_CN/gradual_flow_settings.def.json.po +++ b/resources/i18n/zh_CN/gradual_flow_settings.def.json.po @@ -15,40 +15,40 @@ msgstr "" msgctxt "gradual_flow_discretisation_step_size description" msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgstr "" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" msgctxt "gradual_flow_discretisation_step_size label" msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" +msgstr "" msgctxt "gradual_flow_enabled label" msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" +msgstr "" msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" -msgstr "Gradual flow max acceleration" +msgstr "" msgctxt "layer_0_max_flow_acceleration label" msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" +msgstr "" msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximum acceleration for gradual flow changes" +msgstr "" msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimum speed for gradual flow changes for the first layer" +msgstr "" msgctxt "reset_flow_duration label" msgid "Reset flow duration" -msgstr "Reset flow duration" +msgstr "" diff --git a/resources/i18n/zh_TW/gradual_flow_settings.def.json.po b/resources/i18n/zh_TW/gradual_flow_settings.def.json.po index 363b0994aa1..2529ed73e4f 100644 --- a/resources/i18n/zh_TW/gradual_flow_settings.def.json.po +++ b/resources/i18n/zh_TW/gradual_flow_settings.def.json.po @@ -15,40 +15,40 @@ msgstr "" msgctxt "gradual_flow_discretisation_step_size description" msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgstr "" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" msgctxt "gradual_flow_discretisation_step_size label" msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" +msgstr "" msgctxt "gradual_flow_enabled label" msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" +msgstr "" msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" -msgstr "Gradual flow max acceleration" +msgstr "" msgctxt "layer_0_max_flow_acceleration label" msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" +msgstr "" msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximum acceleration for gradual flow changes" +msgstr "" msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimum speed for gradual flow changes for the first layer" +msgstr "" msgctxt "reset_flow_duration label" msgid "Reset flow duration" -msgstr "Reset flow duration" +msgstr "" From acea7bdeece97c6a3eea7fc17480c47cef8a044b Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 15 Mar 2024 17:33:13 +0100 Subject: [PATCH 688/765] Clear more untranslated labels --- resources/i18n/es_ES/gradual_flow_settings.def.json.po | 2 +- resources/i18n/fi_FI/gradual_flow_settings.def.json.po | 2 +- resources/i18n/fr_FR/gradual_flow_settings.def.json.po | 2 +- resources/i18n/nl_NL/gradual_flow_settings.def.json.po | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/i18n/es_ES/gradual_flow_settings.def.json.po b/resources/i18n/es_ES/gradual_flow_settings.def.json.po index 3078cba7bf4..2529ed73e4f 100644 --- a/resources/i18n/es_ES/gradual_flow_settings.def.json.po +++ b/resources/i18n/es_ES/gradual_flow_settings.def.json.po @@ -51,4 +51,4 @@ msgstr "" msgctxt "reset_flow_duration label" msgid "Reset flow duration" -msgstr "Reset flow duration" +msgstr "" diff --git a/resources/i18n/fi_FI/gradual_flow_settings.def.json.po b/resources/i18n/fi_FI/gradual_flow_settings.def.json.po index 3078cba7bf4..2529ed73e4f 100644 --- a/resources/i18n/fi_FI/gradual_flow_settings.def.json.po +++ b/resources/i18n/fi_FI/gradual_flow_settings.def.json.po @@ -51,4 +51,4 @@ msgstr "" msgctxt "reset_flow_duration label" msgid "Reset flow duration" -msgstr "Reset flow duration" +msgstr "" diff --git a/resources/i18n/fr_FR/gradual_flow_settings.def.json.po b/resources/i18n/fr_FR/gradual_flow_settings.def.json.po index 3078cba7bf4..2529ed73e4f 100644 --- a/resources/i18n/fr_FR/gradual_flow_settings.def.json.po +++ b/resources/i18n/fr_FR/gradual_flow_settings.def.json.po @@ -51,4 +51,4 @@ msgstr "" msgctxt "reset_flow_duration label" msgid "Reset flow duration" -msgstr "Reset flow duration" +msgstr "" diff --git a/resources/i18n/nl_NL/gradual_flow_settings.def.json.po b/resources/i18n/nl_NL/gradual_flow_settings.def.json.po index 3078cba7bf4..2529ed73e4f 100644 --- a/resources/i18n/nl_NL/gradual_flow_settings.def.json.po +++ b/resources/i18n/nl_NL/gradual_flow_settings.def.json.po @@ -51,4 +51,4 @@ msgstr "" msgctxt "reset_flow_duration label" msgid "Reset flow duration" -msgstr "Reset flow duration" +msgstr "" From 57d8a2691a07c3305390958908a5166e63ef1311 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Mon, 18 Mar 2024 08:50:34 +0100 Subject: [PATCH 689/765] Add missing gradual flow translations --- .../de_DE/gradual_flow_settings.def.json.po | 20 +++++++++---------- .../es_ES/gradual_flow_settings.def.json.po | 20 +++++++++---------- .../fr_FR/gradual_flow_settings.def.json.po | 20 +++++++++---------- .../it_IT/gradual_flow_settings.def.json.po | 20 +++++++++---------- .../ja_JP/gradual_flow_settings.def.json.po | 20 +++++++++---------- .../ko_KR/gradual_flow_settings.def.json.po | 20 +++++++++---------- .../nl_NL/gradual_flow_settings.def.json.po | 20 +++++++++---------- .../pt_PT/gradual_flow_settings.def.json.po | 20 +++++++++---------- .../ru_RU/gradual_flow_settings.def.json.po | 20 +++++++++---------- .../tr_TR/gradual_flow_settings.def.json.po | 20 +++++++++---------- .../zh_CN/gradual_flow_settings.def.json.po | 20 +++++++++---------- 11 files changed, 110 insertions(+), 110 deletions(-) diff --git a/resources/i18n/de_DE/gradual_flow_settings.def.json.po b/resources/i18n/de_DE/gradual_flow_settings.def.json.po index dcb91f9dfe6..59cd3825c10 100644 --- a/resources/i18n/de_DE/gradual_flow_settings.def.json.po +++ b/resources/i18n/de_DE/gradual_flow_settings.def.json.po @@ -14,40 +14,40 @@ msgstr "" msgctxt "gradual_flow_enabled label" msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" +msgstr "Sukzessiver Durchfluss aktiviert" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Aktivieren Sie sukzessive Durchflussänderungen. Wenn diese Option aktiviert ist, wird der Durchfluss sukzessiv auf den angestrebten Durchfluss erhöht/verringert. Dies ist nützlich für Drucker mit einem Bowdenschlauch, bei denen der Durchfluss nicht sofort geändert wird, wenn der Extrudermotor startet/stoppt." msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" -msgstr "Gradual flow max acceleration" +msgstr "Maximale Beschleunigung bei sukzessivem Durchfluss" msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximum acceleration for gradual flow changes" +msgstr "Maximale Beschleunigung für sukzessive Durchflussänderungen" msgctxt "layer_0_max_flow_acceleration label" msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" +msgstr "Maximale Durchflussbeschleunigung bei der Anfangsschicht" msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimum speed for gradual flow changes for the first layer" +msgstr "Mindestgeschwindigkeit für sukzessive Durchflussänderungen bei der Anfangsschicht" msgctxt "gradual_flow_discretisation_step_size label" msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" +msgstr "Umfang des Diskretisierungsvorgangs bei sukzessivem Durchfluss" msgctxt "gradual_flow_discretisation_step_size description" msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgstr "Dauer jedes Schritts bei der sukzessiven Durchflusssänderung" msgctxt "reset_flow_duration label" msgid "Reset flow duration" -msgstr "Reset flow duration" +msgstr "Durchflussdauer zurücksetzen" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Für jede Verfahrbewegung, die länger als dieser Wert ist, wird der Materialfluss auf den Sollwegfluss zurückgesetzt." diff --git a/resources/i18n/es_ES/gradual_flow_settings.def.json.po b/resources/i18n/es_ES/gradual_flow_settings.def.json.po index 964aab219f6..a71e3b01cc9 100644 --- a/resources/i18n/es_ES/gradual_flow_settings.def.json.po +++ b/resources/i18n/es_ES/gradual_flow_settings.def.json.po @@ -14,40 +14,40 @@ msgstr "" msgctxt "gradual_flow_enabled label" msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" +msgstr "Flujo gradual habilitado" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Habilite cambios de flujo gradual. Al habilitarse, el flujo se incrementa/decrementa gradualmente hasta el flujo objetivo. Esto es útil para impresoras con tubo bowden en las que el flujo no cambia inmediatamente cuando el motor extrusor arranca o se detiene." msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" -msgstr "Gradual flow max acceleration" +msgstr "Flujo gradual de aceleración máxima" msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximum acceleration for gradual flow changes" +msgstr "Aceleración máxima para cambios graduales de flujo" msgctxt "layer_0_max_flow_acceleration label" msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" +msgstr "Aceleración máxima de flujo de capa inicial" msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimum speed for gradual flow changes for the first layer" +msgstr "Velocidad mínima para cambios graduales de flujo en la primera capa" msgctxt "gradual_flow_discretisation_step_size label" msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" +msgstr "Tamaño del intervalo para discretización de flujo gradual" msgctxt "gradual_flow_discretisation_step_size description" msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgstr "Duración de cada intervalo en el cambio de flujo gradual" msgctxt "reset_flow_duration label" msgid "Reset flow duration" -msgstr "Reset flow duration" +msgstr "Restablecer duración de flujo" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Para cualquier movimiento de desplazamiento superior a este valor, el flujo material se restablece al flujo objetivo de las trayectorias" diff --git a/resources/i18n/fr_FR/gradual_flow_settings.def.json.po b/resources/i18n/fr_FR/gradual_flow_settings.def.json.po index a0c76be033f..47ee220041d 100644 --- a/resources/i18n/fr_FR/gradual_flow_settings.def.json.po +++ b/resources/i18n/fr_FR/gradual_flow_settings.def.json.po @@ -14,40 +14,40 @@ msgstr "" msgctxt "gradual_flow_enabled label" msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" +msgstr "Débit progressif activé" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Activer les variations de débit progressives. Lorsque cette option est activée, le débit est augmenté ou réduit progressivement jusqu'au débit souhaité. Cette option est utile pour les imprimantes avec un tube bowden où le débit n'est pas modifié immédiatement lorsque le moteur de l'extrudeur démarre ou s'arrête." msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" -msgstr "Gradual flow max acceleration" +msgstr "Accélération progressive jusqu'au débit max" msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximum acceleration for gradual flow changes" +msgstr "Accélération maximale pour les variations de débit progressives" msgctxt "layer_0_max_flow_acceleration label" msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" +msgstr "Accélération maximale du débit lors de la première couche" msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimum speed for gradual flow changes for the first layer" +msgstr "Vitesse minimale pour les variations de débit progressives pour la première couche" msgctxt "gradual_flow_discretisation_step_size label" msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" +msgstr "Taille de pas de la discrétisation du débit progressif" msgctxt "gradual_flow_discretisation_step_size description" msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgstr "Durée de chaque pas dans la variation progressive du débit" msgctxt "reset_flow_duration label" msgid "Reset flow duration" -msgstr "Reset flow duration" +msgstr "Réinitialiser la durée du débit" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Pour tout déplacement supérieur à cette valeur, le débit de matière est réinitialisé au débit souhaité pour les trajectoires" diff --git a/resources/i18n/it_IT/gradual_flow_settings.def.json.po b/resources/i18n/it_IT/gradual_flow_settings.def.json.po index d028eedb585..0d646a0ebfc 100644 --- a/resources/i18n/it_IT/gradual_flow_settings.def.json.po +++ b/resources/i18n/it_IT/gradual_flow_settings.def.json.po @@ -14,40 +14,40 @@ msgstr "" msgctxt "gradual_flow_enabled label" msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" +msgstr "Flusso graduale abilitato" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Abilitare le variazioni graduali del flusso. Quando abilitate, il flusso viene aumentato/diminuito gradualmente fino al flusso target. Ciò è utile per le stampanti dotate di tubo bowden dove il flusso non viene modificato immediatamente all'avvio/arresto del motore dell'estrusore." msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" -msgstr "Gradual flow max acceleration" +msgstr "Accelerazione massima del flusso graduale" msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximum acceleration for gradual flow changes" +msgstr "Accelerazione massima per le variazioni graduali del flusso" msgctxt "layer_0_max_flow_acceleration label" msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" +msgstr "Accelerazione massima del flusso per lo strato iniziale" msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimum speed for gradual flow changes for the first layer" +msgstr "Velocità minima per le variazioni graduali del flusso per il primo strato." msgctxt "gradual_flow_discretisation_step_size label" msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" +msgstr "Dimensione del gradino di discretizzazione del flusso graduale" msgctxt "gradual_flow_discretisation_step_size description" msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgstr "Durata di ogni gradino per la variazione graduale del flusso" msgctxt "reset_flow_duration label" msgid "Reset flow duration" -msgstr "Reset flow duration" +msgstr "Reimpostare la durata del flusso" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Per ogni spostamento del percorso superiore a questo valore, il flusso del materiale viene reimpostato sul quello target dei percorsi." diff --git a/resources/i18n/ja_JP/gradual_flow_settings.def.json.po b/resources/i18n/ja_JP/gradual_flow_settings.def.json.po index 19a5836b839..20013f0ca69 100644 --- a/resources/i18n/ja_JP/gradual_flow_settings.def.json.po +++ b/resources/i18n/ja_JP/gradual_flow_settings.def.json.po @@ -14,40 +14,40 @@ msgstr "" msgctxt "gradual_flow_enabled label" msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" +msgstr "段階的なフローが有効" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "段階的なフローの変化を有効にします。有効にすると,フローは目標フローまで段階的に増減します。これは,押し出しモーターの始動/停止時にフローがすぐに変化しないボーデンチューブを備えたプリンターに便利です。" msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" -msgstr "Gradual flow max acceleration" +msgstr "段階的なフローの最大加速度" msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximum acceleration for gradual flow changes" +msgstr "フローを段階的に変化させるための最大加速度" msgctxt "layer_0_max_flow_acceleration label" msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" +msgstr "初期層の最大フロー加速度" msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimum speed for gradual flow changes for the first layer" +msgstr "第1層のフローを段階的に変化させるための最低速度" msgctxt "gradual_flow_discretisation_step_size label" msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" +msgstr "段階的なフローの離散化ステップのサイズ" msgctxt "gradual_flow_discretisation_step_size description" msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgstr "段階的なフローの変化におけるステップごとの継続時間" msgctxt "reset_flow_duration label" msgid "Reset flow duration" -msgstr "Reset flow duration" +msgstr "フローの継続時間をリセット" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "この値より長い移動の場合,素材フローはパスの目標フローにリセットされます。" diff --git a/resources/i18n/ko_KR/gradual_flow_settings.def.json.po b/resources/i18n/ko_KR/gradual_flow_settings.def.json.po index 37db148315f..dc35fb7caf6 100644 --- a/resources/i18n/ko_KR/gradual_flow_settings.def.json.po +++ b/resources/i18n/ko_KR/gradual_flow_settings.def.json.po @@ -14,40 +14,40 @@ msgstr "" msgctxt "gradual_flow_enabled label" msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" +msgstr "점진적 흐름 활성화됨" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "점진적 흐름 변경을 활성화합니다. 활성화하면 흐름이 목표 흐름까지 점진적으로 증가/감소합니다. 이는 압출기 모터가 시작/정지될 때 흐름이 즉시 변경되지 않는 보우덴 튜브가 있는 프린터에 유용합니다." msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" -msgstr "Gradual flow max acceleration" +msgstr "점진적 흐름 최대 가속" msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximum acceleration for gradual flow changes" +msgstr "점진적 흐름 변경에 대한 최대 가속" msgctxt "layer_0_max_flow_acceleration label" msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" +msgstr "초기 레이어 최대 흐름 가속" msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimum speed for gradual flow changes for the first layer" +msgstr "첫 번째 레이어의 점진적 흐름 변경에 대한 최소 속도" msgctxt "gradual_flow_discretisation_step_size label" msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" +msgstr "점진적 흐름 이산화 단계 크기" msgctxt "gradual_flow_discretisation_step_size description" msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgstr "점진적 흐름 변경에서 각 단계의 지속 시간" msgctxt "reset_flow_duration label" msgid "Reset flow duration" -msgstr "Reset flow duration" +msgstr "흐름 지속 시간 재설정" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "이 값보다 긴 이동에 대해서는 재료 흐름이 경로 목표 흐름으로 재설정됩니다" diff --git a/resources/i18n/nl_NL/gradual_flow_settings.def.json.po b/resources/i18n/nl_NL/gradual_flow_settings.def.json.po index 06fbc7add73..6e7f503e2cb 100644 --- a/resources/i18n/nl_NL/gradual_flow_settings.def.json.po +++ b/resources/i18n/nl_NL/gradual_flow_settings.def.json.po @@ -14,40 +14,40 @@ msgstr "" msgctxt "gradual_flow_enabled label" msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" +msgstr "Geleidelijke stroom ingeschakeld" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Geleidelijke stroomwijzigingen inschakelen. Als deze optie is ingeschakeld, wordt de stroom geleidelijk verhoogd/verlaagd tot de doelstroom. Dit is handig voor printers met een bowdenbuis waarbij de stroom niet onmiddellijk verandert wanneer de extrudermotor start/stopt." msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" -msgstr "Gradual flow max acceleration" +msgstr "Maximale versnelling voor geleidelijke stroom" msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximum acceleration for gradual flow changes" +msgstr "Maximale versnelling voor geleidelijke stroomveranderingen" msgctxt "layer_0_max_flow_acceleration label" msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" +msgstr "Maximale stroomversnelling eerste laag" msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimumsnelheid voor geleidelijke stroomveranderingen voor de eerste laag" msgctxt "gradual_flow_discretisation_step_size label" msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" +msgstr "Stapgrootte geleidelijke stroomdiscretisatie" msgctxt "gradual_flow_discretisation_step_size description" msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgstr "Duur van elke stap in de geleidelijke stroomverandering" msgctxt "reset_flow_duration label" msgid "Reset flow duration" -msgstr "Reset flow duration" +msgstr "Stroomduur opnieuw instellen" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Voor elke af te leggen afstand die langer is dan deze waarde, wordt de materiaalstroom opnieuw ingesteld op de doelstroom van de paden." diff --git a/resources/i18n/pt_PT/gradual_flow_settings.def.json.po b/resources/i18n/pt_PT/gradual_flow_settings.def.json.po index f1513e114cd..5f02a114f33 100644 --- a/resources/i18n/pt_PT/gradual_flow_settings.def.json.po +++ b/resources/i18n/pt_PT/gradual_flow_settings.def.json.po @@ -14,40 +14,40 @@ msgstr "" msgctxt "gradual_flow_enabled label" msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" +msgstr "Fluxo gradual ativado" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Ativar alterações graduais de fluxo. Quando ativado, o fluxo é gradualmente aumentado/diminuído para o fluxo alvo. Isto é útil para impressoras com um tubo bowden em que o fluxo não é imediatamente alterado quando o motor da extrusora arranca/para." msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" -msgstr "Gradual flow max acceleration" +msgstr "Aceleração máxima do fluxo gradual" msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximum acceleration for gradual flow changes" +msgstr "Aceleração máxima para mudanças graduais de fluxo" msgctxt "layer_0_max_flow_acceleration label" msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" +msgstr "Aceleração do fluxo máximo da camada inicial" msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimum speed for gradual flow changes for the first layer" +msgstr "Velocidade mínima para mudanças graduais de fluxo para a primeira camada" msgctxt "gradual_flow_discretisation_step_size label" msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" +msgstr "Tamanho do passo de discretização do fluxo gradual" msgctxt "gradual_flow_discretisation_step_size description" msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgstr "Duração de cada etapa da mudança gradual de fluxo" msgctxt "reset_flow_duration label" msgid "Reset flow duration" -msgstr "Reset flow duration" +msgstr "Redefinir a duração do fluxo" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Para qualquer deslocação superior a este valor, o fluxo de material é reposto no fluxo teórico das vias" diff --git a/resources/i18n/ru_RU/gradual_flow_settings.def.json.po b/resources/i18n/ru_RU/gradual_flow_settings.def.json.po index 5def481ad82..f4e98a6ebaa 100644 --- a/resources/i18n/ru_RU/gradual_flow_settings.def.json.po +++ b/resources/i18n/ru_RU/gradual_flow_settings.def.json.po @@ -14,40 +14,40 @@ msgstr "" msgctxt "gradual_flow_enabled label" msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" +msgstr "Плавный поток включен" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Включите изменения плавного потока. Если эта функция включена, поток постепенно увеличивается/уменьшается до целевого значения. Это полезно для принтеров с трубкой Боудена, где поток не меняется сразу при запуске/остановке двигателя экструдера." msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" -msgstr "Gradual flow max acceleration" +msgstr "Максимальное ускорение плавного потока" msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximum acceleration for gradual flow changes" +msgstr "Максимальное ускорение для изменения плавного потока" msgctxt "layer_0_max_flow_acceleration label" msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" +msgstr "Максимальное ускорение потока начального слоя" msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimum speed for gradual flow changes for the first layer" +msgstr "Минимальная скорость изменения плавного потока для первого слоя" msgctxt "gradual_flow_discretisation_step_size label" msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" +msgstr "Размер шага дискретизации плавного потока" msgctxt "gradual_flow_discretisation_step_size description" msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgstr "Продолжительность каждого шага изменения плавного потока" msgctxt "reset_flow_duration label" msgid "Reset flow duration" -msgstr "Reset flow duration" +msgstr "Сбросить продолжительность потока" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Для любого перемещения, превышающего это значение, поток материала сбрасывается до целевого потока пути." diff --git a/resources/i18n/tr_TR/gradual_flow_settings.def.json.po b/resources/i18n/tr_TR/gradual_flow_settings.def.json.po index 31b713cd290..025c28a10f3 100644 --- a/resources/i18n/tr_TR/gradual_flow_settings.def.json.po +++ b/resources/i18n/tr_TR/gradual_flow_settings.def.json.po @@ -14,40 +14,40 @@ msgstr "" msgctxt "gradual_flow_enabled label" msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" +msgstr "Kademeli akış etkinleştirildi" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Kademeli akış değişikliklerini etkinleştirin. Etkinleştirildiğinde akış, hedef akışa doğru kademeli olarak artırılır/azaltılır. Bu, akışın ekstrüder motoru çalıştığında/durduğunda hemen değişmediği bowden tüplü yazıcılar için kullanışlıdır." msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" -msgstr "Gradual flow max acceleration" +msgstr "Kademeli akış maksimum ivme" msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximum acceleration for gradual flow changes" +msgstr "Kademeli akış değişiklikleri için maksimum ivme" msgctxt "layer_0_max_flow_acceleration label" msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" +msgstr "İlk katman maksimum akış ivmesi" msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimum speed for gradual flow changes for the first layer" +msgstr "İlk katman için kademeli akış değişiklikleri için minimum hız" msgctxt "gradual_flow_discretisation_step_size label" msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" +msgstr "Kademeli akış ayrıklaştırma adım boyutu" msgctxt "gradual_flow_discretisation_step_size description" msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgstr "Kademeli akış değişimindeki her adımın süresi" msgctxt "reset_flow_duration label" msgid "Reset flow duration" -msgstr "Reset flow duration" +msgstr "Akış süresini sıfırla" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Bu değerden daha uzun herhangi bir seyahat hareketi için malzeme akışı, hedef akış yollarına sıfırlanır" diff --git a/resources/i18n/zh_CN/gradual_flow_settings.def.json.po b/resources/i18n/zh_CN/gradual_flow_settings.def.json.po index 4e50c5b731a..fa2197b3a12 100644 --- a/resources/i18n/zh_CN/gradual_flow_settings.def.json.po +++ b/resources/i18n/zh_CN/gradual_flow_settings.def.json.po @@ -14,40 +14,40 @@ msgstr "" msgctxt "gradual_flow_enabled label" msgid "Gradual flow enabled" -msgstr "Gradual flow enabled" +msgstr "启用渐变流量" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "启用渐变流量变化。启用之后,流量将会逐渐增加/减少到目标流量。这对于带有波登管的打印机非常有用,因为当挤出机电机启动/停止时,流量并不会立即改变。" msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" -msgstr "Gradual flow max acceleration" +msgstr "渐变流量最大加速度" msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximum acceleration for gradual flow changes" +msgstr "渐变流量变化的最大加速度" msgctxt "layer_0_max_flow_acceleration label" msgid "Initial layer max flow acceleration" -msgstr "Initial layer max flow acceleration" +msgstr "初始层最大流量加速" msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimum speed for gradual flow changes for the first layer" +msgstr "第一层渐变流量变化的最小速度" msgctxt "gradual_flow_discretisation_step_size label" msgid "Gradual flow discretisation step size" -msgstr "Gradual flow discretisation step size" +msgstr "渐变流量离散化步长" msgctxt "gradual_flow_discretisation_step_size description" msgid "Duration of each step in the gradual flow change" -msgstr "Duration of each step in the gradual flow change" +msgstr "渐变流量变化中每个步骤的持续时间" msgctxt "reset_flow_duration label" msgid "Reset flow duration" -msgstr "Reset flow duration" +msgstr "重置流量持续时间" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "对于任何长于此值的移动,材料流量将被重置为路径的目标流量" From 5a346e3ce648c63b154c69cceec15372b2b5f34a Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Mon, 18 Mar 2024 11:25:08 +0100 Subject: [PATCH 690/765] Optimized SettingInheritanceManager update Instead of getting all the settings and checking for their state, run only once through all the containers and gather only the keys having a User state. CURA-11475 --- cura/Settings/SettingInheritanceManager.py | 51 ++++++++++++---------- 1 file changed, 29 insertions(+), 22 deletions(-) diff --git a/cura/Settings/SettingInheritanceManager.py b/cura/Settings/SettingInheritanceManager.py index 5ae00ae2719..4455b24bdbe 100644 --- a/cura/Settings/SettingInheritanceManager.py +++ b/cura/Settings/SettingInheritanceManager.py @@ -1,6 +1,6 @@ # Copyright (c) 2017 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. -from typing import List, Optional, TYPE_CHECKING +from typing import List, Optional, Set, TYPE_CHECKING from PyQt6.QtCore import QObject, QTimer, pyqtProperty, pyqtSignal from UM.FlameProfiler import pyqtSlot @@ -168,27 +168,13 @@ def _recursiveCheck(self, definition: "SettingDefinition") -> bool: def settingsWithInheritanceWarning(self) -> List[str]: return self._settings_with_inheritance_warning - def _settingIsOverwritingInheritance(self, key: str, stack: ContainerStack = None) -> bool: - """Check if a setting has an inheritance function that is overwritten""" + def _userSettingIsOverwritingInheritance(self, key: str, stack: ContainerStack, all_keys: Set[str]) -> bool: + """Check if a setting known as having a User state has an inheritance function that is overwritten""" has_setting_function = False - if not stack: - stack = self._active_container_stack - if not stack: # No active container stack yet! - return False - - if self._active_container_stack is None: - return False - all_keys = self._active_container_stack.getAllKeys() containers = [] # type: List[ContainerInterface] - has_user_state = stack.getProperty(key, "state") == InstanceState.User - """Check if the setting has a user state. If not, it is never overwritten.""" - - if not has_user_state: - return False - # If a setting is not enabled, don't label it as overwritten (It's never visible anyway). if not stack.getProperty(key, "enabled"): return False @@ -229,17 +215,38 @@ def _settingIsOverwritingInheritance(self, key: str, stack: ContainerStack = Non break # There is a setting function somewhere, stop looking deeper. return has_setting_function and has_non_function_value + def _settingIsOverwritingInheritance(self, key: str, stack: ContainerStack = None) -> bool: + """Check if a setting has an inheritance function that is overwritten""" + + if not stack: + stack = self._active_container_stack + if not stack: # No active container stack yet! + return False + + if self._active_container_stack is None: + return False + + has_user_state = stack.getProperty(key, "state") == InstanceState.User + """Check if the setting has a user state. If not, it is never overwritten.""" + + if not has_user_state: + return False + + all_keys = self._active_container_stack.getAllKeys() + + return self._userSettingIsOverwritingInheritance(key, stack, all_keys) + def _update(self) -> None: self._settings_with_inheritance_warning = [] # Reset previous data. # Make sure that the GlobalStack is not None. sometimes the globalContainerChanged signal gets here late. - if self._global_container_stack is None: + if self._global_container_stack is None or self._active_container_stack is None: return - # Check all setting keys that we know of and see if they are overridden. - for setting_key in self._global_container_stack.getAllKeys(): - override = self._settingIsOverwritingInheritance(setting_key) - if override: + # Check all user setting keys that we know of and see if they are overridden. + all_keys = self._active_container_stack.getAllKeys() + for setting_key in self._active_container_stack.getAllKeysWithUserState(): + if self._userSettingIsOverwritingInheritance(setting_key, self._active_container_stack, all_keys): self._settings_with_inheritance_warning.append(setting_key) # Check all the categories if any of their children have their inheritance overwritten. From a58cd69b394d4f81d94644b1d2cb2ecea9b6d97d Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 18 Mar 2024 11:54:23 +0100 Subject: [PATCH 691/765] use notify to update `exportedSettingModel` --- plugins/3MFReader/SpecificSettingsModel.py | 6 +++++- plugins/3MFReader/WorkspaceDialog.py | 4 +++- plugins/3MFReader/WorkspaceDialog.qml | 1 - 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/plugins/3MFReader/SpecificSettingsModel.py b/plugins/3MFReader/SpecificSettingsModel.py index ac8e7af3ef0..ec4a68e3376 100644 --- a/plugins/3MFReader/SpecificSettingsModel.py +++ b/plugins/3MFReader/SpecificSettingsModel.py @@ -1,7 +1,7 @@ # Copyright (c) 2024 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. -from PyQt6.QtCore import Qt +from PyQt6.QtCore import Qt, pyqtSignal from UM.Logger import Logger from UM.Settings.SettingDefinition import SettingDefinition @@ -22,6 +22,8 @@ def __init__(self, parent = None): self._i18n_catalog = None self._update() + modelChanged = pyqtSignal() + def addSettingsFromStack(self, stack, category, settings): for setting, value in settings.items(): @@ -39,8 +41,10 @@ def addSettingsFromStack(self, stack, category, settings): "label": stack.getProperty(setting, "label"), "value": value }) + self.modelChanged.emit() def _update(self): Logger.debug(f"Updating {self.__class__.__name__}") self.setItems([]) + self.modelChanged.emit() return diff --git a/plugins/3MFReader/WorkspaceDialog.py b/plugins/3MFReader/WorkspaceDialog.py index 4b9f1eaa6f9..13851c041d5 100644 --- a/plugins/3MFReader/WorkspaceDialog.py +++ b/plugins/3MFReader/WorkspaceDialog.py @@ -77,6 +77,7 @@ def __init__(self, parent = None) -> None: self._is_compatible_machine = False self._allow_create_machine = True self._exported_settings_model = SpecificSettingsModel() + self._exported_settings_model.modelChanged.connect(self.exportedSettingModelChanged.emit) self._current_machine_pos_index = 0 self._is_ucp = False @@ -104,6 +105,7 @@ def __init__(self, parent = None) -> None: missingPackagesChanged = pyqtSignal() isCompatibleMachineChanged = pyqtSignal() isUcpChanged = pyqtSignal() + exportedSettingModelChanged = pyqtSignal() @pyqtProperty(bool, notify = isPrinterGroupChanged) def isPrinterGroup(self) -> bool: @@ -356,7 +358,7 @@ def setAllowCreatemachine(self, allow_create_machine): def allowCreateMachine(self): return self._allow_create_machine - @pyqtProperty(QObject) + @pyqtProperty(QObject, notify=exportedSettingModelChanged) def exportedSettingModel(self): return self._exported_settings_model diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index f0f74b60b76..95dce875c10 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -205,7 +205,6 @@ UM.Dialog { tableModel.clear() tableModel.rows = modelRows - numberOfOverrides.rightLabelText = catalog.i18ncp("@action:label", "%1 override", "%1 overrides", manager.exportedSettingModel.rowCount()).arg(manager.exportedSettingModel.rowCount()) } } From 4dd0113a784687c0fd0ed5397acb9a4bf01d428c Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 18 Mar 2024 12:14:58 +0100 Subject: [PATCH 692/765] Add dedicate functions for `exportedSettingModelItems` and `exportedSettingModelRowCount` --- plugins/3MFReader/WorkspaceDialog.py | 7 +++++++ plugins/3MFReader/WorkspaceDialog.qml | 11 ++--------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/plugins/3MFReader/WorkspaceDialog.py b/plugins/3MFReader/WorkspaceDialog.py index 13851c041d5..c3e4187652b 100644 --- a/plugins/3MFReader/WorkspaceDialog.py +++ b/plugins/3MFReader/WorkspaceDialog.py @@ -362,6 +362,13 @@ def allowCreateMachine(self): def exportedSettingModel(self): return self._exported_settings_model + @pyqtProperty("QVariantList", notify=exportedSettingModelChanged) + def exportedSettingModelItems(self): + return self._exported_settings_model.items + + @pyqtProperty(int, notify=exportedSettingModelChanged) + def exportedSettingModelRowCount(self): + return self._exported_settings_model.rowCount() @pyqtSlot() def closeBackend(self) -> None: """Close the backend: otherwise one could end up with "Slicing...""" diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index 95dce875c10..950c72a3d6d 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -173,7 +173,7 @@ UM.Dialog { id: numberOfOverrides leftLabelText: catalog.i18nc("@action:label", "Settings Loaded from UCP file") - rightLabelText: catalog.i18ncp("@action:label", "%1 override", "%1 overrides", manager.exportedSettingModel.rowCount()).arg(manager.exportedSettingModel.rowCount()) + rightLabelText: catalog.i18ncp("@action:label", "%1 override", "%1 overrides", manager.exportedSettingModelRowCount).arg(manager.exportedSettingModelRowCount) buttonText: tableViewSpecificSettings.shouldBeVisible ? catalog.i18nc("@action:button", "Hide settings") : catalog.i18nc("@action:button", "Show settings") onButtonClicked: tableViewSpecificSettings.shouldBeVisible = !tableViewSpecificSettings.shouldBeVisible } @@ -196,16 +196,9 @@ UM.Dialog { id: tableModel headers: ["category", "label", "value"] - rows: manager.exportedSettingModel.items + rows: manager.exportedSettingModelItems } } - - property var modelRows: manager.exportedSettingModel.items - onModelRowsChanged: - { - tableModel.clear() - tableModel.rows = modelRows - } } comboboxVisible: manager.qualityChangesConflict From 5eeee37f0ec2a2e3c0c716b96426fb9cc7b9c8d0 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Mon, 18 Mar 2024 12:32:20 +0100 Subject: [PATCH 693/765] Update visibility condition in WorkspaceDialog CURA-11700 --- plugins/3MFReader/WorkspaceDialog.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index 19ed31a1498..ac72f921878 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -119,7 +119,7 @@ UM.Dialog Cura.MachineSelector { id: machineSelector - visible: comboboxVisible + visible: workspaceDialog.visible && manager.updatableMachinesModel.count > 1 headerCornerSide: Cura.RoundedRectangle.Direction.All anchors.top: parent.top anchors.topMargin: UM.Theme.getSize("default_margin").width * 3 From 4da17d643d91cb10b0185770c550dfc0f147e38f Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Mon, 18 Mar 2024 12:46:10 +0100 Subject: [PATCH 694/765] Update model data handling in 3MFReader plugin partially revert 4dd0113a784687c0fd0ed5397acb9a4bf01d428c CURA-11720 --- plugins/3MFReader/WorkspaceDialog.py | 4 ---- plugins/3MFReader/WorkspaceDialog.qml | 9 ++++++++- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/plugins/3MFReader/WorkspaceDialog.py b/plugins/3MFReader/WorkspaceDialog.py index c3e4187652b..bc4581b749d 100644 --- a/plugins/3MFReader/WorkspaceDialog.py +++ b/plugins/3MFReader/WorkspaceDialog.py @@ -362,10 +362,6 @@ def allowCreateMachine(self): def exportedSettingModel(self): return self._exported_settings_model - @pyqtProperty("QVariantList", notify=exportedSettingModelChanged) - def exportedSettingModelItems(self): - return self._exported_settings_model.items - @pyqtProperty(int, notify=exportedSettingModelChanged) def exportedSettingModelRowCount(self): return self._exported_settings_model.rowCount() diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index d7e776411f4..febd082a4c6 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -209,9 +209,16 @@ UM.Dialog { id: tableModel headers: ["category", "label", "value"] - rows: manager.exportedSettingModelItems + rows: manager.exportedSettingModel.items } } + + property var modelRows: manager.exportedSettingModel.items + onModelRowsChanged: + { + tableModel.clear() + tableModel.rows = modelRows + } } comboboxVisible: manager.qualityChangesConflict From ce6642e9924c1421106bd604df9cdcd8ab452f1c Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Mon, 18 Mar 2024 13:24:52 +0100 Subject: [PATCH 695/765] Improve UI responsiveness Treat settings to check for errors one by one instead of by batch of 10, because this can take a few 100s of milliseconds, which makes the UI choppy and barely allows for user interactions CURA-11475 --- cura/Machines/MachineErrorChecker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/Machines/MachineErrorChecker.py b/cura/Machines/MachineErrorChecker.py index cc6560378d4..5edee0778fa 100644 --- a/cura/Machines/MachineErrorChecker.py +++ b/cura/Machines/MachineErrorChecker.py @@ -49,7 +49,7 @@ def __init__(self, parent: Optional[QObject] = None) -> None: self._keys_to_check = set() # type: Set[str] - self._num_keys_to_check_per_update = 10 + self._num_keys_to_check_per_update = 1 def initialize(self) -> None: self._error_check_timer.timeout.connect(self._rescheduleCheck) From 37dc9e5dcb7b37c9959eb91af6945cfc644511f9 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Mon, 18 Mar 2024 14:47:24 +0100 Subject: [PATCH 696/765] Update UI layering and MachineSelector properties in 3MFReader The z-index property of combobox and Loader elements in WorkspaceSection.qml was adjusted to ensure proper layering. CURA-11700 --- plugins/3MFReader/WorkspaceDialog.qml | 11 +++-------- plugins/3MFReader/WorkspaceSection.qml | 8 ++++++-- 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index ac72f921878..878b80db171 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -116,17 +116,12 @@ UM.Dialog comboboxTitle: catalog.i18nc("@action:label", "Open With") comboboxTooltipText: catalog.i18nc("@info:tooltip", "Printer settings will be updated to match the settings saved with the project.") comboboxVisible: workspaceDialog.visible && manager.updatableMachinesModel.count > 1 - Cura.MachineSelector + combobox: Cura.MachineSelector { id: machineSelector - visible: workspaceDialog.visible && manager.updatableMachinesModel.count > 1 headerCornerSide: Cura.RoundedRectangle.Direction.All - anchors.top: parent.top - anchors.topMargin: UM.Theme.getSize("default_margin").width * 3 - anchors.right: parent.right - anchors.rightMargin: UM.Theme.getSize("default_margin").width - width: Math.round(parent.width / 2.5) - height: UM.Theme.getSize("button").height + width: parent.width + height: parent.height machineListModel: manager.updatableMachinesModel machineName: manager.machineName diff --git a/plugins/3MFReader/WorkspaceSection.qml b/plugins/3MFReader/WorkspaceSection.qml index 7c8b01be7aa..83c96fa94ac 100644 --- a/plugins/3MFReader/WorkspaceSection.qml +++ b/plugins/3MFReader/WorkspaceSection.qml @@ -15,7 +15,11 @@ Item property Component content: Item { visible: false } property alias comboboxTitle: comboboxLabel.text - property Component combobox: Item { visible: false } + property Component combobox: Item + { + z: -1 + visible: false + } property string comboboxTooltipText: "" property bool comboboxVisible: false @@ -91,11 +95,11 @@ Item } } - Loader { width: parent.width height: content.height + z: -1 anchors.top: sectionTitleRow.bottom sourceComponent: content } From eac2d3b173e0819bddd8fd68e132932e9ad5617e Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Mon, 18 Mar 2024 14:51:55 +0100 Subject: [PATCH 697/765] removes the unnecessary 'z' attribute CURA-11700 --- plugins/3MFReader/WorkspaceSection.qml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/plugins/3MFReader/WorkspaceSection.qml b/plugins/3MFReader/WorkspaceSection.qml index 83c96fa94ac..b72fed47ef4 100644 --- a/plugins/3MFReader/WorkspaceSection.qml +++ b/plugins/3MFReader/WorkspaceSection.qml @@ -15,11 +15,7 @@ Item property Component content: Item { visible: false } property alias comboboxTitle: comboboxLabel.text - property Component combobox: Item - { - z: -1 - visible: false - } + property Component combobox: Item { visible: false } property string comboboxTooltipText: "" property bool comboboxVisible: false From d441130e3bbf3004434e4819ad16c553e298f1be Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Tue, 19 Mar 2024 10:43:11 +0100 Subject: [PATCH 698/765] Defensive programming: Fix current path can be None. should fix CURA-11741 (sentry cura '708') --- plugins/SimulationView/SimulationPass.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/SimulationView/SimulationPass.py b/plugins/SimulationView/SimulationPass.py index efe80162b5d..f7792242030 100644 --- a/plugins/SimulationView/SimulationPass.py +++ b/plugins/SimulationView/SimulationPass.py @@ -153,7 +153,7 @@ def render(self): # In the current layer, we show just the indicated paths if layer == self._layer_view._current_layer_num: # We look for the position of the head, searching the point of the current path - index = int(self._layer_view.getCurrentPath()) + index = int(self._layer_view.getCurrentPath()) if self._layer_view.getCurrentPath() else 0 for polygon in layer_data.getLayer(layer).polygons: # The size indicates all values in the two-dimension array, and the second dimension is # always size 3 because we have 3D points. From d16c7a84a929379b34d70c9fbc2a884b0592370e Mon Sep 17 00:00:00 2001 From: Casper Lamboo Date: Tue, 19 Mar 2024 11:37:04 +0100 Subject: [PATCH 699/765] Remove documenting comment in middle of function CURA-11475 --- cura/Settings/SettingInheritanceManager.py | 1 - 1 file changed, 1 deletion(-) diff --git a/cura/Settings/SettingInheritanceManager.py b/cura/Settings/SettingInheritanceManager.py index 4455b24bdbe..5004c0efb52 100644 --- a/cura/Settings/SettingInheritanceManager.py +++ b/cura/Settings/SettingInheritanceManager.py @@ -227,7 +227,6 @@ def _settingIsOverwritingInheritance(self, key: str, stack: ContainerStack = Non return False has_user_state = stack.getProperty(key, "state") == InstanceState.User - """Check if the setting has a user state. If not, it is never overwritten.""" if not has_user_state: return False From 70f18c11431b777623dd12d5ddd71d6f2d7ff002 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Tue, 19 Mar 2024 13:00:26 +0100 Subject: [PATCH 700/765] Apply code consistency suggestions CURA-11475 --- cura/Settings/SettingInheritanceManager.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/cura/Settings/SettingInheritanceManager.py b/cura/Settings/SettingInheritanceManager.py index 5004c0efb52..a49aa254fed 100644 --- a/cura/Settings/SettingInheritanceManager.py +++ b/cura/Settings/SettingInheritanceManager.py @@ -168,7 +168,7 @@ def _recursiveCheck(self, definition: "SettingDefinition") -> bool: def settingsWithInheritanceWarning(self) -> List[str]: return self._settings_with_inheritance_warning - def _userSettingIsOverwritingInheritance(self, key: str, stack: ContainerStack, all_keys: Set[str]) -> bool: + def _userSettingIsOverwritingInheritance(self, key: str, stack: ContainerStack, all_keys: Set[str] = set()) -> bool: """Check if a setting known as having a User state has an inheritance function that is overwritten""" has_setting_function = False @@ -180,11 +180,14 @@ def _userSettingIsOverwritingInheritance(self, key: str, stack: ContainerStack, return False user_container = stack.getTop() - """Also check if the top container is not a setting function (this happens if the inheritance is restored).""" + # Also check if the top container is not a setting function (this happens if the inheritance is restored). if user_container and isinstance(user_container.getProperty(key, "value"), SettingFunction): return False + if not all_keys: + all_keys = self._active_container_stack.getAllKeys() + ## Mash all containers for all the stacks together. while stack: containers.extend(stack.getContainers()) @@ -231,9 +234,7 @@ def _settingIsOverwritingInheritance(self, key: str, stack: ContainerStack = Non if not has_user_state: return False - all_keys = self._active_container_stack.getAllKeys() - - return self._userSettingIsOverwritingInheritance(key, stack, all_keys) + return self._userSettingIsOverwritingInheritance(key, stack) def _update(self) -> None: self._settings_with_inheritance_warning = [] # Reset previous data. From cb809406167619bc4d183ff62b19082a94fbd2be Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Tue, 19 Mar 2024 16:28:51 +0100 Subject: [PATCH 701/765] Restore missing label context --- resources/i18n/cura.pot | 1 + resources/i18n/de_DE/cura.po | 1 + resources/i18n/es_ES/cura.po | 1 + resources/i18n/fr_FR/cura.po | 1 + resources/i18n/it_IT/cura.po | 1 + resources/i18n/ja_JP/cura.po | 1 + resources/i18n/ko_KR/cura.po | 1 + resources/i18n/nl_NL/cura.po | 1 + resources/i18n/pt_PT/cura.po | 1 + resources/i18n/ru_RU/cura.po | 1 + resources/i18n/tr_TR/cura.po | 1 + resources/i18n/zh_CN/cura.po | 1 + 12 files changed, 12 insertions(+) diff --git a/resources/i18n/cura.pot b/resources/i18n/cura.pot index ecf7cf0b3cf..4141ac0f719 100644 --- a/resources/i18n/cura.pot +++ b/resources/i18n/cura.pot @@ -5154,6 +5154,7 @@ msgstr "" msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "" + msgctxt "description" msgid "Manages network connections to UltiMaker networked printers." msgstr "" diff --git a/resources/i18n/de_DE/cura.po b/resources/i18n/de_DE/cura.po index 5b740cb72c5..900fbb74903 100644 --- a/resources/i18n/de_DE/cura.po +++ b/resources/i18n/de_DE/cura.po @@ -5054,6 +5054,7 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Sie müssen das Programm beenden und neu starten {}, bevor Änderungen wirksam werden." +msgctxt "description" msgid "Manages network connections to UltiMaker networked printers." msgstr "Verwaltet Netzwerkverbindungen zu vernetzten UltiMaker-Druckern." diff --git a/resources/i18n/es_ES/cura.po b/resources/i18n/es_ES/cura.po index a4d723cea28..1895ad9bfb1 100644 --- a/resources/i18n/es_ES/cura.po +++ b/resources/i18n/es_ES/cura.po @@ -5055,6 +5055,7 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Error al descargar los complementos {}" +msgctxt "description" msgid "Manages network connections to UltiMaker networked printers." msgstr "Gestiona las conexiones de red con las impresoras en red UltiMaker." diff --git a/resources/i18n/fr_FR/cura.po b/resources/i18n/fr_FR/cura.po index 5e450c09d88..2831c14fb97 100644 --- a/resources/i18n/fr_FR/cura.po +++ b/resources/i18n/fr_FR/cura.po @@ -5054,6 +5054,7 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Échec de téléchargement des plugins {}" +msgctxt "description" msgid "Manages network connections to UltiMaker networked printers." msgstr "Gère les connexions réseau aux imprimantes UltiMaker en réseau." diff --git a/resources/i18n/it_IT/cura.po b/resources/i18n/it_IT/cura.po index 1c6127a1fe8..4a11c39a5ca 100644 --- a/resources/i18n/it_IT/cura.po +++ b/resources/i18n/it_IT/cura.po @@ -5056,6 +5056,7 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Impossibile scaricare i plugin {}" +msgctxt "description" msgid "Manages network connections to UltiMaker networked printers." msgstr "Gestisce le connessioni di rete per le stampanti interconnesse UltiMaker." diff --git a/resources/i18n/ja_JP/cura.po b/resources/i18n/ja_JP/cura.po index b34e409e878..ea4c92c62f8 100644 --- a/resources/i18n/ja_JP/cura.po +++ b/resources/i18n/ja_JP/cura.po @@ -5042,6 +5042,7 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "{}プラグインのダウンロードに失敗しました" +msgctxt "description" msgid "Manages network connections to UltiMaker networked printers." msgstr "UltiMakerネットワークプリンタへのネットワーク接続を管理します。" diff --git a/resources/i18n/ko_KR/cura.po b/resources/i18n/ko_KR/cura.po index c9e85a6c71a..635a7b1c1e8 100644 --- a/resources/i18n/ko_KR/cura.po +++ b/resources/i18n/ko_KR/cura.po @@ -5041,6 +5041,7 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "{}개의 플러그인을 다운로드하지 못했습니다" +msgctxt "description" msgid "Manages network connections to UltiMaker networked printers." msgstr "UltiMaker 네트워크 프린터에 대한 네트워크 연결을 관리합니다." diff --git a/resources/i18n/nl_NL/cura.po b/resources/i18n/nl_NL/cura.po index 41b6f47dabf..3211663a197 100644 --- a/resources/i18n/nl_NL/cura.po +++ b/resources/i18n/nl_NL/cura.po @@ -5053,6 +5053,7 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "{} plug-ins zijn niet gedownload" +msgctxt "description" msgid "Manages network connections to UltiMaker networked printers." msgstr "Beheert netwerkverbindingen naar UltiMaker-netwerkprinters." diff --git a/resources/i18n/pt_PT/cura.po b/resources/i18n/pt_PT/cura.po index 3b2c7abb02e..a8ca610fbcb 100644 --- a/resources/i18n/pt_PT/cura.po +++ b/resources/i18n/pt_PT/cura.po @@ -5055,6 +5055,7 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Falhou a transferência de {} plug-ins" +msgctxt "description" msgid "Manages network connections to UltiMaker networked printers." msgstr "Gere as ligações de rede a impressoras UltiMaker interconectadas." diff --git a/resources/i18n/ru_RU/cura.po b/resources/i18n/ru_RU/cura.po index c437f3b4704..77c9b9e293c 100644 --- a/resources/i18n/ru_RU/cura.po +++ b/resources/i18n/ru_RU/cura.po @@ -5094,6 +5094,7 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Встраиваемые модули ({} шт.) не загружены" +msgctxt "description" msgid "Manages network connections to UltiMaker networked printers." msgstr "Управляет сетевыми подключениями к сетевым принтерам UltiMaker." diff --git a/resources/i18n/tr_TR/cura.po b/resources/i18n/tr_TR/cura.po index 532daf35c3b..f2185d2100f 100644 --- a/resources/i18n/tr_TR/cura.po +++ b/resources/i18n/tr_TR/cura.po @@ -5056,6 +5056,7 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "{} eklenti indirilemedi" +msgctxt "description" msgid "Manages network connections to UltiMaker networked printers." msgstr "UltiMaker ağ bağlantılı yazıcılara olan ağ bağlantılarını yönetir." diff --git a/resources/i18n/zh_CN/cura.po b/resources/i18n/zh_CN/cura.po index 53af8653a1b..46c7e714973 100644 --- a/resources/i18n/zh_CN/cura.po +++ b/resources/i18n/zh_CN/cura.po @@ -5043,6 +5043,7 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "{} 个插件下载失败" +msgctxt "description" msgid "Manages network connections to UltiMaker networked printers." msgstr "管理与 UltiMaker 网络打印机的网络连接。" From 5aa2d31adc6fa9a4be1bf4fdae27c47a32de92a6 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Tue, 19 Mar 2024 16:37:47 +0100 Subject: [PATCH 702/765] Restore missing translation due to collision --- resources/i18n/de_DE/fdmprinter.def.json.po | 4 ++++ resources/i18n/es_ES/fdmprinter.def.json.po | 4 ++++ resources/i18n/fr_FR/fdmprinter.def.json.po | 4 ++++ resources/i18n/it_IT/fdmprinter.def.json.po | 4 ++++ resources/i18n/ja_JP/fdmprinter.def.json.po | 4 ++++ resources/i18n/ko_KR/fdmprinter.def.json.po | 4 ++++ resources/i18n/nl_NL/fdmprinter.def.json.po | 4 ++++ resources/i18n/pt_PT/fdmprinter.def.json.po | 4 ++++ resources/i18n/ru_RU/fdmprinter.def.json.po | 4 ++++ resources/i18n/tr_TR/fdmprinter.def.json.po | 4 ++++ resources/i18n/zh_CN/fdmprinter.def.json.po | 4 ++++ 11 files changed, 44 insertions(+) diff --git a/resources/i18n/de_DE/fdmprinter.def.json.po b/resources/i18n/de_DE/fdmprinter.def.json.po index 1552828808f..78217b35f8f 100644 --- a/resources/i18n/de_DE/fdmprinter.def.json.po +++ b/resources/i18n/de_DE/fdmprinter.def.json.po @@ -5691,3 +5691,7 @@ msgstr "Matrix Netzdrehung" msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Transformationsmatrix, die beim Laden aus der Datei auf das Modell angewandt wird." + +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Es werden Stützstrukturen platziert. Die Platzierung kann auf „Druckbett berühren“ oder „Überall“ eingestellt werden. Wenn „Überall“ eingestellt wird, werden die Stützstrukturen auch auf dem Modell gedruckt." diff --git a/resources/i18n/es_ES/fdmprinter.def.json.po b/resources/i18n/es_ES/fdmprinter.def.json.po index 6ac633ab415..af94274b3b9 100644 --- a/resources/i18n/es_ES/fdmprinter.def.json.po +++ b/resources/i18n/es_ES/fdmprinter.def.json.po @@ -5691,3 +5691,7 @@ msgstr "Matriz de rotación de la malla" msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Matriz de transformación que se aplicará al modelo cuando se cargue desde el archivo." + +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Ajusta la colocacin de las estructuras del soporte. La colocacin se puede establecer tocando la placa de impresión o en todas partes. Cuando se establece en todas partes, las estructuras del soporte tambin se imprimirn en el modelo." diff --git a/resources/i18n/fr_FR/fdmprinter.def.json.po b/resources/i18n/fr_FR/fdmprinter.def.json.po index 6be4e9bba12..1dce5a08184 100644 --- a/resources/i18n/fr_FR/fdmprinter.def.json.po +++ b/resources/i18n/fr_FR/fdmprinter.def.json.po @@ -5691,3 +5691,7 @@ msgstr "Matrice de rotation de la maille" msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Matrice de transformation à appliquer au modèle lors de son chargement depuis le fichier." + +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Ajuste le positionnement des supports. Le positionnement peut être défini pour toucher le plateau ou n'importe où. Lorsqu'il est défini sur n'importe où, les supports seront également imprimés sur le modèle." diff --git a/resources/i18n/it_IT/fdmprinter.def.json.po b/resources/i18n/it_IT/fdmprinter.def.json.po index 427c464b282..3ea126ad48e 100644 --- a/resources/i18n/it_IT/fdmprinter.def.json.po +++ b/resources/i18n/it_IT/fdmprinter.def.json.po @@ -5691,3 +5691,7 @@ msgstr "Matrice rotazione maglia" msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Matrice di rotazione da applicare al modello quando caricato dal file." + +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Regola il posizionamento delle strutture di supporto. Il posizionamento può essere impostato su contatto con il piano di stampa o in tutti i possibili punti. Quando impostato su tutti i possibili punti, le strutture di supporto verranno anche stampate sul modello." diff --git a/resources/i18n/ja_JP/fdmprinter.def.json.po b/resources/i18n/ja_JP/fdmprinter.def.json.po index c26da533832..0306054c01d 100644 --- a/resources/i18n/ja_JP/fdmprinter.def.json.po +++ b/resources/i18n/ja_JP/fdmprinter.def.json.po @@ -5693,3 +5693,7 @@ msgstr "メッシュ回転マトリックス" msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "ファイルから読み込むときに、モデルに適用するトランスフォーメーションマトリックス。" + +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "サポート材の配置を調整します。配置はTouching BuildplateまたはEveryWhereに設定することができます。EveryWhereに設定した場合、サポート材がモデルの上にもプリントされます。" diff --git a/resources/i18n/ko_KR/fdmprinter.def.json.po b/resources/i18n/ko_KR/fdmprinter.def.json.po index 9d84b463091..13f26531655 100644 --- a/resources/i18n/ko_KR/fdmprinter.def.json.po +++ b/resources/i18n/ko_KR/fdmprinter.def.json.po @@ -5691,3 +5691,7 @@ msgstr "메쉬 회전 행렬" msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "파일로부터 로드 하는 경유, 모델에 적용될 변환 행렬입니다." + +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "서포트 구조의 배치를 조정합니다. 배치는 빌드 플레이트 또는 모든 곳을 터치하도록 설정할 수 있습니다. 모든 곳에 설정하면 모델에 서포트 구조가 프린팅됩니다." diff --git a/resources/i18n/nl_NL/fdmprinter.def.json.po b/resources/i18n/nl_NL/fdmprinter.def.json.po index 26aebbe9ae5..e50fc3e0312 100644 --- a/resources/i18n/nl_NL/fdmprinter.def.json.po +++ b/resources/i18n/nl_NL/fdmprinter.def.json.po @@ -5691,3 +5691,7 @@ msgstr "Matrix rasterrotatie" msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Omzettingsmatrix die moet worden toegepast op het model wanneer dit wordt geladen vanuit een bestand." + +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Past de plaatsing van de supportstructuur aan. De plaatsing kan worden ingesteld op Platform aanraken of Overal. Wanneer deze optie ingesteld is op Overal, worden de supportstructuren ook op het model geprint." diff --git a/resources/i18n/pt_PT/fdmprinter.def.json.po b/resources/i18n/pt_PT/fdmprinter.def.json.po index 5ec89426ebe..36c9f759296 100644 --- a/resources/i18n/pt_PT/fdmprinter.def.json.po +++ b/resources/i18n/pt_PT/fdmprinter.def.json.po @@ -5691,3 +5691,7 @@ msgstr "Matriz Rotação do Objeto" msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Matriz de transformação a ser aplicada ao modelo quando abrir o ficheiro." + +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Ajusta a colocação das estruturas de suporte. A colocação pode ser definida para tocar na base de construção ou em todo o lado. Quando definida para tocar em todo o lado, as estruturas de suporte também serão impressas no modelo." diff --git a/resources/i18n/ru_RU/fdmprinter.def.json.po b/resources/i18n/ru_RU/fdmprinter.def.json.po index a1bd9de034c..a629762179d 100644 --- a/resources/i18n/ru_RU/fdmprinter.def.json.po +++ b/resources/i18n/ru_RU/fdmprinter.def.json.po @@ -5691,3 +5691,7 @@ msgstr "Матрица вращения объекта" msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Матрица преобразования, применяемая к модели при её загрузке из файла." + +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Настраивает размещение структур поддержки. Размещение может быть выбрано с касанием стола или везде. Для последнего случая структуры поддержки печатаются даже на самой модели." diff --git a/resources/i18n/tr_TR/fdmprinter.def.json.po b/resources/i18n/tr_TR/fdmprinter.def.json.po index 07be4791874..b7d6b866f2d 100644 --- a/resources/i18n/tr_TR/fdmprinter.def.json.po +++ b/resources/i18n/tr_TR/fdmprinter.def.json.po @@ -5691,3 +5691,7 @@ msgstr "Bileşim Rotasyon Matrisi" msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Modeli dosyadan indirirken modele uygulanacak olan dönüşüm matrisi." + +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Destek yapılarının yerleştirilmesini ayarlar. Yerleştirme, temas eden yapı levhasına veya her bölüme ayarlanabilir. Her bölüme ayarlandığında, destek yapıları da modelde yazdırılacaktır." diff --git a/resources/i18n/zh_CN/fdmprinter.def.json.po b/resources/i18n/zh_CN/fdmprinter.def.json.po index 9fe9a0489a6..80d51698477 100644 --- a/resources/i18n/zh_CN/fdmprinter.def.json.po +++ b/resources/i18n/zh_CN/fdmprinter.def.json.po @@ -5694,3 +5694,7 @@ msgstr "网格旋转矩阵" msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "在将模型从文件中载入时应用在模型上的转换矩阵。" + +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "调整支撑结构的放置。 放置可以设置为支撑打印平台或全部支撑。 当设置为全部支撑时,支撑结构也将在模型上打印。" From 47c906bb1659d3283d510a7d051b1395705306a0 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Wed, 20 Mar 2024 09:10:55 +0100 Subject: [PATCH 703/765] Restore missing translations due to collision --- resources/i18n/de_DE/fdmextruder.def.json.po | 73 ++++++++++++++++++++ resources/i18n/es_ES/fdmextruder.def.json.po | 73 ++++++++++++++++++++ resources/i18n/fr_FR/fdmextruder.def.json.po | 73 ++++++++++++++++++++ resources/i18n/it_IT/fdmextruder.def.json.po | 73 ++++++++++++++++++++ resources/i18n/ja_JP/fdmextruder.def.json.po | 73 ++++++++++++++++++++ resources/i18n/ko_KR/fdmextruder.def.json.po | 73 ++++++++++++++++++++ resources/i18n/nl_NL/fdmextruder.def.json.po | 73 ++++++++++++++++++++ resources/i18n/pt_PT/fdmextruder.def.json.po | 73 ++++++++++++++++++++ resources/i18n/ru_RU/fdmextruder.def.json.po | 73 ++++++++++++++++++++ resources/i18n/tr_TR/fdmextruder.def.json.po | 73 ++++++++++++++++++++ resources/i18n/zh_CN/fdmextruder.def.json.po | 73 ++++++++++++++++++++ 11 files changed, 803 insertions(+) diff --git a/resources/i18n/de_DE/fdmextruder.def.json.po b/resources/i18n/de_DE/fdmextruder.def.json.po index 57f835ec08d..9bf0c7595f7 100644 --- a/resources/i18n/de_DE/fdmextruder.def.json.po +++ b/resources/i18n/de_DE/fdmextruder.def.json.po @@ -1,3 +1,4 @@ +# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" @@ -12,6 +13,22 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Haftung" + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Der Durchmesser des verwendeten Filaments wird angepasst. Stellen Sie hier den Durchmesser des verwendeten Filaments ein." + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Druckplattenhaftung" + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Durchmesser" + msgctxt "extruder_nr label" msgid "Extruder" msgstr "Extruder" @@ -20,6 +37,14 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "Die für das Drucken verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Der Innendurchmesser der Düse. Verwenden Sie diese Einstellung, wenn Sie eine Düse einer Nicht-Standardgröße verwenden." + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Der Düsen-ID für eine Extruder-Einheit, z. B. „AA 0,4“ und „BB 0,8“." + msgctxt "machine_extruder_cooling_fan_number label" msgid "Extruder Print Cooling Fan" msgstr "Drucklüfter Extruder" @@ -64,6 +89,18 @@ msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Extruder-Endposition Y" +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "X-Position Extruder-Einzug" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Y-Position Extruder-Einzug" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Z-Position Extruder-Einzug" + msgctxt "machine_extruder_end_pos_y description" msgid "The y-coordinate of the ending position when turning the extruder off." msgstr "Die Y-Koordinate der Endposition beim Ausschalten des Extruders." @@ -76,6 +113,18 @@ msgctxt "machine_extruder_start_code description" msgid "Start g-code to execute when switching to this extruder." msgstr "Auszuführenden G-Code beim Umschalten auf diesen Extruder starten." +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Die X-Koordinate der Position, an der die Düse am Druckbeginn einzieht." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Die Y-Koordinate der Position, an der die Düse am Druckbeginn einzieht." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Die Z-Koordinate der Position, an der die Düse am Druckbeginn einzieht." + msgctxt "machine_extruder_start_code_duration label" msgid "Extruder Start G-Code Duration" msgstr "Extruder Start G-Code Dauer" @@ -92,6 +141,22 @@ msgctxt "machine_extruder_start_pos_abs description" msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." msgstr "Bevorzugen Sie eine absolute Startposition des Extruders anstelle einer relativen Position zur zuletzt bekannten Kopfposition." +msgctxt "material description" +msgid "Material" +msgstr "Material" + +msgctxt "material label" +msgid "Material" +msgstr "Material" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Düsendurchmesser" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Düsen-ID" + msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "X-Position Extruder-Start" @@ -104,6 +169,14 @@ msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "Y-Position Extruder-Start" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Gerät" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Gerätespezifische Einstellungen" + msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "Die Y-Koordinate der Startposition beim Einschalten des Extruders." diff --git a/resources/i18n/es_ES/fdmextruder.def.json.po b/resources/i18n/es_ES/fdmextruder.def.json.po index 5e7b73ffb7e..a8ea1ca255c 100644 --- a/resources/i18n/es_ES/fdmextruder.def.json.po +++ b/resources/i18n/es_ES/fdmextruder.def.json.po @@ -1,3 +1,4 @@ +# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" @@ -12,6 +13,22 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Adherencia" + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Ajusta el diámetro del filamento utilizado. Este valor debe coincidir con el diámetro del filamento utilizado." + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Adherencia de la placa de impresión" + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diámetro" + msgctxt "extruder_nr label" msgid "Extruder" msgstr "Extrusor" @@ -20,6 +37,14 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "El tren extrusor que se utiliza para imprimir. Se emplea en la extrusión múltiple." +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Diámetro interior de la tobera. Cambie este ajuste cuando utilice un tamaño de tobera no estándar." + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Id. de la tobera de un tren extrusor, como \"AA 0.4\" y \"BB 0.8\"." + msgctxt "machine_extruder_cooling_fan_number label" msgid "Extruder Print Cooling Fan" msgstr "Ventilador de refrigeración de impresión del extrusor" @@ -64,6 +89,18 @@ msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Posición de fin del extrusor sobre el eje Y" +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posición de preparación del extrusor sobre el eje X" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posición de preparación del extrusor sobre el eje Y" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posición de preparación del extrusor sobre el eje Z" + msgctxt "machine_extruder_end_pos_y description" msgid "The y-coordinate of the ending position when turning the extruder off." msgstr "Coordenada Y de la posición de fin cuando se apaga el extrusor." @@ -76,6 +113,18 @@ msgctxt "machine_extruder_start_code description" msgid "Start g-code to execute when switching to this extruder." msgstr "Iniciar GCode para ejecutarlo al cambiar a este extrusor." +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Coordenada X de la posición en la que la tobera se coloca al inicio de la impresión." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Coordenada Y de la posición en la que la tobera se coloca al inicio de la impresión." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Coordenada Z de la posición en la que la tobera queda preparada al inicio de la impresión." + msgctxt "machine_extruder_start_code_duration label" msgid "Extruder Start G-Code Duration" msgstr "Duración del código G de inicio del extrusor" @@ -92,6 +141,22 @@ msgctxt "machine_extruder_start_pos_abs description" msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." msgstr "El extrusor se coloca en la posición de inicio absoluta según la última ubicación conocida del cabezal." +msgctxt "material description" +msgid "Material" +msgstr "Material" + +msgctxt "material label" +msgid "Material" +msgstr "Material" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diámetro de la tobera" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Id. de la tobera" + msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "Posición de inicio del extrusor sobre el eje X" @@ -104,6 +169,14 @@ msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "Posición de inicio del extrusor sobre el eje Y" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Máquina" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Ajustes específicos de la máquina" + msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "Coordenada Y de la posición de inicio cuando se enciende el extrusor." diff --git a/resources/i18n/fr_FR/fdmextruder.def.json.po b/resources/i18n/fr_FR/fdmextruder.def.json.po index f0547e4ac74..c4b5ae47cf3 100644 --- a/resources/i18n/fr_FR/fdmextruder.def.json.po +++ b/resources/i18n/fr_FR/fdmextruder.def.json.po @@ -1,3 +1,4 @@ +# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" @@ -12,6 +13,22 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Adhérence" + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Ajuste le diamètre du filament utilisé. Faites correspondre cette valeur au diamètre du filament utilisé." + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Adhérence du plateau" + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diamètre" + msgctxt "extruder_nr label" msgid "Extruder" msgstr "Extrudeuse" @@ -20,6 +37,14 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "Le train d'extrudeuse utilisé pour l'impression. Cela est utilisé en multi-extrusion." +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Le diamètre intérieur de la buse. Modifiez ce paramètre si vous utilisez une taille de buse non standard." + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "ID buse pour un train d'extrudeuse, comme « AA 0.4 » et « BB 0.8 »." + msgctxt "machine_extruder_cooling_fan_number label" msgid "Extruder Print Cooling Fan" msgstr "Ventilateur de refroidissement d'impression de l'extrudeuse" @@ -64,6 +89,18 @@ msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Extrudeuse Position de fin Y" +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Extrudeuse Position d'amorçage X" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Extrudeuse Position d'amorçage Y" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Extrudeuse Position d'amorçage Z" + msgctxt "machine_extruder_end_pos_y description" msgid "The y-coordinate of the ending position when turning the extruder off." msgstr "Les coordonnées Y de la position de fin lors de l'arrêt de l'extrudeuse." @@ -76,6 +113,18 @@ msgctxt "machine_extruder_start_code description" msgid "Start g-code to execute when switching to this extruder." msgstr "Démarrer le G-Code à exécuter lors du passage à cette extrudeuse." +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Les coordonnées X de la position à laquelle la buse s'amorce au début de l'impression." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Les coordonnées Y de la position à laquelle la buse s'amorce au début de l'impression." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Les coordonnées Z de la position à laquelle la buse s'amorce au début de l'impression." + msgctxt "machine_extruder_start_code_duration label" msgid "Extruder Start G-Code Duration" msgstr "Durée du G-Code de démarrage de l'extrudeuse" @@ -92,6 +141,22 @@ msgctxt "machine_extruder_start_pos_abs description" msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." msgstr "Rendre la position de départ de l'extrudeuse absolue plutôt que relative à la dernière position connue de la tête." +msgctxt "material description" +msgid "Material" +msgstr "Matériau" + +msgctxt "material label" +msgid "Material" +msgstr "Matériau" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diamètre de la buse" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID buse" + msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "Extrudeuse Position de départ X" @@ -104,6 +169,14 @@ msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "Extrudeuse Position de départ Y" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Machine" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Paramètres spécifiques de la machine" + msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "Les coordonnées Y de la position de départ lors de la mise en marche de l'extrudeuse." diff --git a/resources/i18n/it_IT/fdmextruder.def.json.po b/resources/i18n/it_IT/fdmextruder.def.json.po index cc952da5318..23dfefec19f 100644 --- a/resources/i18n/it_IT/fdmextruder.def.json.po +++ b/resources/i18n/it_IT/fdmextruder.def.json.po @@ -1,3 +1,4 @@ +# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" @@ -12,6 +13,22 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Adesione" + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Regolare il diametro del filamento utilizzato. Abbinare questo valore al diametro del filamento utilizzato." + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Adesione piano di stampa" + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diametro" + msgctxt "extruder_nr label" msgid "Extruder" msgstr "Estrusore" @@ -20,6 +37,14 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "Treno estrusore utilizzato per la stampa. Utilizzato nell’estrusione multipla." +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Il diametro interno dell’ugello. Modificare questa impostazione quando si utilizza una dimensione ugello non standard." + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "ID ugello per un treno estrusore, come \"AA 0.4\" e \"BB 0.8\"." + msgctxt "machine_extruder_cooling_fan_number label" msgid "Extruder Print Cooling Fan" msgstr "Ventola di raffreddamento stampa estrusore" @@ -64,6 +89,18 @@ msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Posizione Y fine estrusore" +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posizione X innesco estrusore" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posizione Y innesco estrusore" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posizione Z innesco estrusore" + msgctxt "machine_extruder_end_pos_y description" msgid "The y-coordinate of the ending position when turning the extruder off." msgstr "La coordinata y della posizione di fine allo spegnimento dell’estrusore." @@ -76,6 +113,18 @@ msgctxt "machine_extruder_start_code description" msgid "Start g-code to execute when switching to this extruder." msgstr "Inizio codice G da eseguire quando si passa a questo estrusore." +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "La coordinata X della posizione in cui l’ugello si innesca all’avvio della stampa." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "La coordinata Y della posizione in cui l’ugello si innesca all’avvio della stampa." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Indica la coordinata Z della posizione in cui l’ugello si innesca all’avvio della stampa." + msgctxt "machine_extruder_start_code_duration label" msgid "Extruder Start G-Code Duration" msgstr "Durata del G-code di inizio dell'estrusore" @@ -92,6 +141,22 @@ msgctxt "machine_extruder_start_pos_abs description" msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." msgstr "Rende la posizione di partenza estrusore assoluta anziché relativa rispetto all’ultima posizione nota della testina." +msgctxt "material description" +msgid "Material" +msgstr "Materiale" + +msgctxt "material label" +msgid "Material" +msgstr "Materiale" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diametro ugello" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID ugello" + msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "X posizione avvio estrusore" @@ -104,6 +169,14 @@ msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "Y posizione avvio estrusore" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Macchina" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Impostazioni macchina specifiche" + msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "La coordinata y della posizione di partenza all’accensione dell’estrusore." diff --git a/resources/i18n/ja_JP/fdmextruder.def.json.po b/resources/i18n/ja_JP/fdmextruder.def.json.po index 514cbc8b98d..dc3115e0949 100644 --- a/resources/i18n/ja_JP/fdmextruder.def.json.po +++ b/resources/i18n/ja_JP/fdmextruder.def.json.po @@ -1,3 +1,4 @@ +# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" @@ -12,6 +13,22 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "密着性" + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "使用するフィラメントの太さの調整 この値を使用するフィラメントの太さと一致させてください。" + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "ビルドプレート密着性" + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "直径" + msgctxt "extruder_nr label" msgid "Extruder" msgstr "エクストルーダー" @@ -20,6 +37,14 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "エクストルーダーの列。デュアルノズル印刷時に使用。" +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "ノズルの内径。標準以外のノズルを使用する場合は、この設定を変更してください。" + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "\"AA 0.4\"や\"BB 0.8\"などのノズルID。" + msgctxt "machine_extruder_cooling_fan_number label" msgid "Extruder Print Cooling Fan" msgstr "エクストルーダープリント冷却ファン" @@ -64,6 +89,18 @@ msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "エクストルーダーエンド位置Y" +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "エクストルーダープライムX位置" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "エクストルーダープライムY位置" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "エクストルーダーのZ座標" + msgctxt "machine_extruder_end_pos_y description" msgid "The y-coordinate of the ending position when turning the extruder off." msgstr "エクストルーダーを切った際のY座標の最終位置。" @@ -76,6 +113,18 @@ msgctxt "machine_extruder_start_code description" msgid "Start g-code to execute when switching to this extruder." msgstr "このエクストルーダーに切り替えた時に G-Code の開始を実行します。" +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "プリント開始時のノズルの位置を表すX座標。" + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "プリント開始時にノズル位置を表すY座標。" + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "印刷開始時にノズルがポジションを確認するZ座標。" + msgctxt "machine_extruder_start_code_duration label" msgid "Extruder Start G-Code Duration" msgstr "エクストルーダー開始Gコードの時間" @@ -92,6 +141,22 @@ msgctxt "machine_extruder_start_pos_abs description" msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." msgstr "ヘッドの最後の既知位置からではなく、エクストルーダーのスタート位置を絶対位置にします。" +msgctxt "material description" +msgid "Material" +msgstr "マテリアル" + +msgctxt "material label" +msgid "Material" +msgstr "マテリアル" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "ノズル内径" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ノズルID" + msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "エクストルーダー スタート位置X" @@ -104,6 +169,14 @@ msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "エクストルーダースタート位置Y" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "プリンター" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "プリンター詳細設定" + msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "エクストルーダーのY座標のスタート位置。" diff --git a/resources/i18n/ko_KR/fdmextruder.def.json.po b/resources/i18n/ko_KR/fdmextruder.def.json.po index c0b23fc49e4..62b73e760b1 100644 --- a/resources/i18n/ko_KR/fdmextruder.def.json.po +++ b/resources/i18n/ko_KR/fdmextruder.def.json.po @@ -1,3 +1,4 @@ +# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" @@ -12,6 +13,22 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "고정" + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "사용 된 필라멘트의 직경을 조정합니다. 이 값을 사용 필라멘트의 직경과 일치시킵니다." + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "빌드 플레이트 고정" + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "직경" + msgctxt "extruder_nr label" msgid "Extruder" msgstr "익스트루더" @@ -20,6 +37,14 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "노즐의 내경. 비표준 노즐 크기를 사용할 때, 이 설정을 변경하십시오." + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "\"AA 0.4\"및 \"BB 0.8\"과 같은 익스트루더 트레인의 노즐 ID." + msgctxt "machine_extruder_cooling_fan_number label" msgid "Extruder Print Cooling Fan" msgstr "익스트루더 프린팅 냉각 팬" @@ -64,6 +89,18 @@ msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "익스트루더 끝 Y 위치" +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "익스트루더 프라임 X 위치" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "익스트루더 프라임 Y 위치" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "익스트루더 프라임 Z 위치" + msgctxt "machine_extruder_end_pos_y description" msgid "The y-coordinate of the ending position when turning the extruder off." msgstr "익스트루더를 끌 때 종료 위치의 y 좌표." @@ -76,6 +113,18 @@ msgctxt "machine_extruder_start_code description" msgid "Start g-code to execute when switching to this extruder." msgstr "이 익스트루더로 전환 시 실행할 G 코드를 시작하십시오." +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 X 좌표." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 Y 좌표." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 Z 좌표입니다." + msgctxt "machine_extruder_start_code_duration label" msgid "Extruder Start G-Code Duration" msgstr "압출기 시작 G-코드 지속 시간" @@ -92,6 +141,22 @@ msgctxt "machine_extruder_start_pos_abs description" msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." msgstr "익스트루더 시작 위치를 헤드의 마지막으로 알려진 위치에 상대적이 아닌 절대 위치로 만듭니다." +msgctxt "material description" +msgid "Material" +msgstr "재료" + +msgctxt "material label" +msgid "Material" +msgstr "재료" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "노즐 직경" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "노즐 ID" + msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "익스트루더 시작 X의 위치" @@ -104,6 +169,14 @@ msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "익스트루더 시작 위치 Y" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "기기" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "기기 세부 설정" + msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "익스트루더를 켤 때 시작 위치의 y 좌표." diff --git a/resources/i18n/nl_NL/fdmextruder.def.json.po b/resources/i18n/nl_NL/fdmextruder.def.json.po index a4e01cd1541..e157ab204d5 100644 --- a/resources/i18n/nl_NL/fdmextruder.def.json.po +++ b/resources/i18n/nl_NL/fdmextruder.def.json.po @@ -1,3 +1,4 @@ +# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" @@ -12,6 +13,22 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Hechting" + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Bepaalt de diameter van het gebruikte filament. Pas deze waarde aan de diameter van het gebruikte filament aan." + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Hechting aan Platform" + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diameter" + msgctxt "extruder_nr label" msgid "Extruder" msgstr "Extruder" @@ -20,6 +37,14 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "De extruder train die voor het printen wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "De binnendiameter van de nozzle. Verander deze instelling wanneer u een nozzle gebruikt die geen standaard formaat heeft." + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "De nozzle-ID voor een extruder train, bijvoorbeeld \"AA 0.4\" en \"BB 0.8\"." + msgctxt "machine_extruder_cooling_fan_number label" msgid "Extruder Print Cooling Fan" msgstr "Printkoelventilator van extruder" @@ -64,6 +89,18 @@ msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Y-eindpositie Extruder" +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "X-positie voor Primen Extruder" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Y-positie voor Primen Extruder" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Z-positie voor Primen Extruder" + msgctxt "machine_extruder_end_pos_y description" msgid "The y-coordinate of the ending position when turning the extruder off." msgstr "De Y-coördinaat van de eindpositie wanneer de extruder wordt uitgeschakeld." @@ -76,6 +113,18 @@ msgctxt "machine_extruder_start_code description" msgid "Start g-code to execute when switching to this extruder." msgstr "Start-g-code die wordt uitgevoerd wanneer naar deze extruder wordt gewisseld." +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "De X-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "De Y-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "De Z-coördinaat van de positie waar filament in de nozzle wordt teruggeduwd aan het begin van het printen." + msgctxt "machine_extruder_start_code_duration label" msgid "Extruder Start G-Code Duration" msgstr "Duur start G-Code extruder" @@ -92,6 +141,22 @@ msgctxt "machine_extruder_start_pos_abs description" msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." msgstr "Maak van de startpositie van de extruder de absolute startpositie, in plaats van de relatieve startpositie ten opzichte van de laatst bekende locatie van de printkop." +msgctxt "material description" +msgid "Material" +msgstr "Materiaal" + +msgctxt "material label" +msgid "Material" +msgstr "Materiaal" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Nozzlediameter" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Nozzle-ID" + msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "X-startpositie Extruder" @@ -104,6 +169,14 @@ msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "Y-startpositie Extruder" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Machine" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Instellingen van de machine" + msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "De Y-coördinaat van de startpositie wanneer de extruder wordt ingeschakeld." diff --git a/resources/i18n/pt_PT/fdmextruder.def.json.po b/resources/i18n/pt_PT/fdmextruder.def.json.po index 7b2e6d902ec..a201b0ea6b4 100644 --- a/resources/i18n/pt_PT/fdmextruder.def.json.po +++ b/resources/i18n/pt_PT/fdmextruder.def.json.po @@ -1,3 +1,4 @@ +# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" @@ -12,6 +13,22 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Aderência" + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Ajusta o diâmetro do filamento utilizado. Faça corresponder este valor com o diâmetro do filamento utilizado." + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Aderência à Base Construção" + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diâmetro" + msgctxt "extruder_nr label" msgid "Extruder" msgstr "Extrusor" @@ -20,6 +37,14 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "O núcleos de extrusão utilizado para imprimir. Definição usada com múltiplos extrusores." +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "O diâmetro interno do nozzle. Altere esta definição quando utilizar um nozzle com um tamanho não convencional." + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "O ID do nozzle de um núcleo de extrusão, tal como \"AA 0.4\" e \"BB 0.8\"." + msgctxt "machine_extruder_cooling_fan_number label" msgid "Extruder Print Cooling Fan" msgstr "Ventoinha de arrefecimento de impressão do Extrusor" @@ -64,6 +89,18 @@ msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Posição Y Final do Extrusor" +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posição X Preparação do Extrusor" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posição Y Preparação do Extrusor" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posição Z para Preparação do Extrusor" + msgctxt "machine_extruder_end_pos_y description" msgid "The y-coordinate of the ending position when turning the extruder off." msgstr "A coordenada Y da posição final ao desligar o extrusor." @@ -76,6 +113,18 @@ msgctxt "machine_extruder_start_code description" msgid "Start g-code to execute when switching to this extruder." msgstr "G-code inicial para executar ao mudar para este extrusor." +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "A coordenada X da posição onde o nozzle é preparado ao iniciar a impressão." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "A coordenada Y da posição onde o nozzle é preparado ao iniciar a impressão." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "A coordenada Z da posição onde o nozzle é preparado ao iniciar a impressão." + msgctxt "machine_extruder_start_code_duration label" msgid "Extruder Start G-Code Duration" msgstr "Duração do código G inicial da extrusora" @@ -92,6 +141,22 @@ msgctxt "machine_extruder_start_pos_abs description" msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." msgstr "Define a posição inicial do extrusor, de forma absoluta em vez, de relativa à última posição conhecida da cabeça de impressão." +msgctxt "material description" +msgid "Material" +msgstr "Material" + +msgctxt "material label" +msgid "Material" +msgstr "Material" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diâmetro do Nozzle" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID do Nozzle" + msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "Posição X Inicial do Extrusor" @@ -104,6 +169,14 @@ msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "Posição Y Inicial do Extrusor" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Máquina" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Definições específicas da máquina" + msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "A coordenada Y da posição inicial ao ligar o extrusor." diff --git a/resources/i18n/ru_RU/fdmextruder.def.json.po b/resources/i18n/ru_RU/fdmextruder.def.json.po index 7bc40d52c35..94d2f5b9450 100644 --- a/resources/i18n/ru_RU/fdmextruder.def.json.po +++ b/resources/i18n/ru_RU/fdmextruder.def.json.po @@ -1,3 +1,4 @@ +# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" @@ -12,6 +13,22 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Прилипание" + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Укажите диаметр используемой нити." + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Прилипание к столу" + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Диаметр" + msgctxt "extruder_nr label" msgid "Extruder" msgstr "Экструдер" @@ -20,6 +37,14 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "Экструдер, который используется для печати. Имеет значение при использовании нескольких экструдеров." +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Внутренний диаметр сопла. Измените этот параметр при использовании сопла нестандартного размера." + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Идентификатор сопла для экструдера, например \"AA 0.4\" и \"BB 0.8\"." + msgctxt "machine_extruder_cooling_fan_number label" msgid "Extruder Print Cooling Fan" msgstr "Охлаждающий вентилятор экструдера, используемый во время печати" @@ -64,6 +89,18 @@ msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Конечная Y позиция экструдера" +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Начальная X позиция экструдера" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Начальная Y позиция экструдера" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Z координата начала печати" + msgctxt "machine_extruder_end_pos_y description" msgid "The y-coordinate of the ending position when turning the extruder off." msgstr "Y координата конечной позиции при отключении экструдера." @@ -76,6 +113,18 @@ msgctxt "machine_extruder_start_code description" msgid "Start g-code to execute when switching to this extruder." msgstr "Стартовый G-код, запускающийся при переключении на данный экструдер." +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "X координата позиции, в которой сопло начинает печать." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Y координата позиции, в которой сопло начинает печать." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Позиция кончика сопла на оси Z при старте печати." + msgctxt "machine_extruder_start_code_duration label" msgid "Extruder Start G-Code Duration" msgstr "Продолжительность G-кода запуска экструдера" @@ -92,6 +141,22 @@ msgctxt "machine_extruder_start_pos_abs description" msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." msgstr "Устанавливает абсолютную стартовую позицию экструдера, а не относительно последней известной позиции головы." +msgctxt "material description" +msgid "Material" +msgstr "Материал" + +msgctxt "material label" +msgid "Material" +msgstr "Материал" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Диаметр сопла" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Идентификатор сопла" + msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "Стартовая X позиция экструдера" @@ -104,6 +169,14 @@ msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "Стартовая Y позиция экструдера" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Принтер" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Параметры, относящиеся к принтеру" + msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "Y координата стартовой позиции при включении экструдера." diff --git a/resources/i18n/tr_TR/fdmextruder.def.json.po b/resources/i18n/tr_TR/fdmextruder.def.json.po index 1aff2db5e21..737842eac8f 100644 --- a/resources/i18n/tr_TR/fdmextruder.def.json.po +++ b/resources/i18n/tr_TR/fdmextruder.def.json.po @@ -1,3 +1,4 @@ +# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" @@ -12,6 +13,22 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Yapıştırma" + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Kullanılan filamanın çapını ayarlar. Bu değeri kullanılan filaman çapı ile eşitleyin." + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Yapı Levhası Yapıştırması" + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Çap" + msgctxt "extruder_nr label" msgid "Extruder" msgstr "Ekstrüder" @@ -20,6 +37,14 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "Yazdırma için kullanılan ekstruder dişli çark. Çoklu ekstrüzyon işlemi için kullanılır." +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Nozül iç çapı. Standart olmayan nozül boyutu kullanırken bu ayarı değiştirin." + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Ekstruder dişli çarkı için nozül kimliği, “AA 0.4” ve “BB 0.8” gibi." + msgctxt "machine_extruder_cooling_fan_number label" msgid "Extruder Print Cooling Fan" msgstr "Ekstrüder Yazıcı Soğutma Fanı" @@ -64,6 +89,18 @@ msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Ekstruderin Y Bitiş Konumu" +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Extruder İlk X konumu" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Extruder İlk Y konumu" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Ekstruder İlk Z konumu" + msgctxt "machine_extruder_end_pos_y description" msgid "The y-coordinate of the ending position when turning the extruder off." msgstr "Ekstruder kapatılırken bitiş konumunun Y koordinatı." @@ -76,6 +113,18 @@ msgctxt "machine_extruder_start_code description" msgid "Start g-code to execute when switching to this extruder." msgstr "Bu ekstrüdere geçiş yaparken çalıştırmak üzere G Code’u başlatın." +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun X koordinatı." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Y koordinatı." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Z koordinatı." + msgctxt "machine_extruder_start_code_duration label" msgid "Extruder Start G-Code Duration" msgstr "Ekstruder Başlangıç ​​G Kodu Süresi" @@ -92,6 +141,22 @@ msgctxt "machine_extruder_start_pos_abs description" msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." msgstr "Ekstruder başlama konumunu, yazıcı başlığının son konumuna göre ayarlamak yerine mutlak olarak ayarlayın." +msgctxt "material description" +msgid "Material" +msgstr "Malzeme" + +msgctxt "material label" +msgid "Material" +msgstr "Malzeme" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Nozül Çapı" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Nozül Kimliği" + msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "Ekstruder X Başlangıç Konumu" @@ -104,6 +169,14 @@ msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "Ekstruder Y Başlangıç Konumu" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Makine" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Makine özel ayarları" + msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "Ekstruder açılırken başlangıç konumunun Y koordinatı." diff --git a/resources/i18n/zh_CN/fdmextruder.def.json.po b/resources/i18n/zh_CN/fdmextruder.def.json.po index a22f731aadf..0b372bfc900 100644 --- a/resources/i18n/zh_CN/fdmextruder.def.json.po +++ b/resources/i18n/zh_CN/fdmextruder.def.json.po @@ -1,3 +1,4 @@ +# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" @@ -12,6 +13,22 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "附着" + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "调整所用耗材的直径。 将此值与所用耗材的直径匹配。" + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "打印平台附着" + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "直径" + msgctxt "extruder_nr label" msgid "Extruder" msgstr "挤出机" @@ -20,6 +37,14 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "用于打印的挤出机,在多挤出机情况下适用。" +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "喷嘴内径,在使用非标准喷嘴尺寸时需更改此设置。" + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "挤出机组的喷嘴 ID,比如\"AA 0.4\"和\"BB 0.8\"。" + msgctxt "machine_extruder_cooling_fan_number label" msgid "Extruder Print Cooling Fan" msgstr "挤出机打印冷却风扇" @@ -64,6 +89,18 @@ msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "挤出机终点位置 Y 坐标" +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "挤出机 X 轴坐标" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "挤出机 Y 轴起始位置" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "挤出机初始 Z 轴位置" + msgctxt "machine_extruder_end_pos_y description" msgid "The y-coordinate of the ending position when turning the extruder off." msgstr "关闭挤出机时的终止位置的 Y 坐标。" @@ -76,6 +113,18 @@ msgctxt "machine_extruder_start_code description" msgid "Start g-code to execute when switching to this extruder." msgstr "在切换到此挤出机时执行的开始 G-code。" +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "打印开始时,喷头在 X 轴上初始位置。" + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "打印开始时,喷头在 Y 轴坐标上初始位置。" + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "打印开始时,喷头在 Z 轴坐标上的起始位置." + msgctxt "machine_extruder_start_code_duration label" msgid "Extruder Start G-Code Duration" msgstr "推料器开始 G 代码持续时间" @@ -92,6 +141,22 @@ msgctxt "machine_extruder_start_pos_abs description" msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." msgstr "令挤出机起始位置为绝对位置,而不根据打印头的最后位置来改变。" +msgctxt "material description" +msgid "Material" +msgstr "材料" + +msgctxt "material label" +msgid "Material" +msgstr "材料" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "喷嘴直径" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "喷嘴 ID" + msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "挤出机起始位置 X 坐标" @@ -104,6 +169,14 @@ msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "挤出机起始位置 Y 坐标" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "机器" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "机器详细设置" + msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "打开挤压机时的起始位置 Y 坐标。" From 39e257915317a06722bd57190d73c7f1d7e7491b Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Wed, 20 Mar 2024 09:59:48 +0100 Subject: [PATCH 704/765] Add script to check/fix missing translations --- scripts/check_missing_translations.py | 106 ++++++++++++++++++++++++++ 1 file changed, 106 insertions(+) create mode 100755 scripts/check_missing_translations.py diff --git a/scripts/check_missing_translations.py b/scripts/check_missing_translations.py new file mode 100755 index 00000000000..2b8f6b6db82 --- /dev/null +++ b/scripts/check_missing_translations.py @@ -0,0 +1,106 @@ +#! /usr/bin/python3 + +import polib +import git +import sys +import os +import tempfile +from collections import OrderedDict + + +missing_keys = {} + + +def list_entries(file): + entries = OrderedDict() + + for entry in file: + if not entry.obsolete: + msgctxt = entry.msgctxt + if msgctxt is None: + msgctxt = '' + + entries[(msgctxt, entry.msgid)] = entry + + return entries + +def process_file(actual_file_path, previous_version_file_path, restore_missing): + actual_file = polib.pofile(actual_file_path, wrapwidth=10000) + previous_file = polib.pofile(previous_version_file_path, wrapwidth=10000) + + previous_entries = list_entries(previous_file) + actual_entries = list_entries(actual_file) + changed = False + + for key, entry in previous_entries.items(): + if key not in actual_entries: + if key in missing_keys: + missing_keys[key].append(actual_file_path) + else: + missing_keys[key] = [actual_file_path] + + if restore_missing: + # Find the entry that was just before the one we need to re-insert + previous_entry = None + for entry_in_previous_file in previous_file: + if entry_in_previous_file == entry: + break + else: + previous_entry = entry_in_previous_file + + if previous_entry is None: + # The entry was at the very beginning + actual_file.insert(0, entry) + else: + # Now find the position in the new file and re-insert the missing entry + index = 0 + inserted = False + for entry_in_actual_file in actual_file: + if entry_in_actual_file.msgctxt == previous_entry.msgctxt and entry_in_actual_file.msgid == previous_entry.msgid: + actual_file.insert(index + 1, entry) + inserted = True + break + else: + index += 1 + + if not inserted: + actual_file.append(entry) + + changed = True + + if changed: + print(f"Fixed file {actual_file_path}") + actual_file.save() + + +try: + previous_version = sys.argv[1] + restore_missing = "--restore-missing" in sys.argv +except: + print("Compares the translations present in the current folder with the same files from an other commit/branch. This will write a report.csv file containing the missing translations and the locations where they were expected. Make sure to run this script at the root of Cura/Uranium") + print(f"How to use: {sys.argv[0]} previous_version [--restore-missing]") + print(" --restore-missing * Superbonus * This will also restore the translations missing from the previous file into the actual one") + sys.exit(1) + +repo = git.Repo('.') + +languages_dir = os.path.join('resources', 'i18n') + +language_dirs = [os.path.join(languages_dir, dir_path) for dir_path in os.listdir('resources/i18n')] +language_dirs = [language for language in language_dirs if os.path.isdir(language)] + +for language_dir in language_dirs: + for translation_file in os.listdir(language_dir): + if translation_file.endswith('.po'): + translation_file_path = os.path.join(language_dir, translation_file) + blob = repo.commit(previous_version).tree / translation_file_path + print(f'Processing file {translation_file_path}') + with tempfile.NamedTemporaryFile(suffix='.po') as tmp_file: + tmp_file.write(blob.data_stream.read()) + process_file(translation_file_path, tmp_file.name, restore_missing) + +with open('report.csv', 'w') as report_file: + for missing_key, files in missing_keys.items(): + report_file.write(';'.join(list(missing_key) + files)) + report_file.write('\n') + print(f"Saved report to {report_file.name}") From 1046b24ee5880279953bb87801fcf144ed8babf1 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Wed, 20 Mar 2024 11:14:16 +0100 Subject: [PATCH 705/765] Fix crash in similation view CURA-11758 --- plugins/SimulationView/SimulationPass.py | 3 ++- plugins/SimulationView/SimulationView.py | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/plugins/SimulationView/SimulationPass.py b/plugins/SimulationView/SimulationPass.py index f7792242030..080b02bd9e5 100644 --- a/plugins/SimulationView/SimulationPass.py +++ b/plugins/SimulationView/SimulationPass.py @@ -153,7 +153,8 @@ def render(self): # In the current layer, we show just the indicated paths if layer == self._layer_view._current_layer_num: # We look for the position of the head, searching the point of the current path - index = int(self._layer_view.getCurrentPath()) if self._layer_view.getCurrentPath() else 0 + index = int(self._layer_view.getCurrentPath()) if not math.isnan( + self._layer_view.getCurrentPath()) else 0 for polygon in layer_data.getLayer(layer).polygons: # The size indicates all values in the two-dimension array, and the second dimension is # always size 3 because we have 3D points. diff --git a/plugins/SimulationView/SimulationView.py b/plugins/SimulationView/SimulationView.py index 2573c84cb9e..10b68edaa09 100644 --- a/plugins/SimulationView/SimulationView.py +++ b/plugins/SimulationView/SimulationView.py @@ -1,5 +1,6 @@ # Copyright (c) 2021 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. +import math import sys from PyQt6.QtCore import Qt @@ -216,7 +217,8 @@ def setTime(self, time: float) -> None: Logger.warn( f"Binary search error (out of bounds): index {i}: left value {left_value} right value {right_value} and current time is {self._current_time}") - fractional_value = (self._current_time - left_value) / (right_value - left_value) + segment_duration = right_value - left_value + fractional_value = 0.0 if segment_duration == 0.0 else (self._current_time - left_value) / segment_duration self.setPath(i + fractional_value) From 0de9884295d00e4c9909da73fe1f428eb6aabb3d Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Wed, 20 Mar 2024 11:17:47 +0100 Subject: [PATCH 706/765] Tiny syntax fix --- conandata.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conandata.yml b/conandata.yml index 86e56e22c29..6d80830561c 100644 --- a/conandata.yml +++ b/conandata.yml @@ -9,7 +9,7 @@ requirements: - "pysavitar/5.3.0" - "pynest2d/5.3.0" - "curaengine_grpc_definitions/0.2.0" - - "native_cad_plugin/2.0.0" + - "native_cad_plugin/2.0.0" requirements_internal: - "fdm_materials/(latest)@internal/testing" - "cura_private_data/(latest)@internal/testing" From 9662aefa37b749b0725007240dc524e1b63eccda Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Wed, 20 Mar 2024 13:34:41 +0100 Subject: [PATCH 707/765] Revert "Update model data handling in 3MFReader plugin" This reverts commit 4da17d643d91cb10b0185770c550dfc0f147e38f. --- plugins/3MFReader/WorkspaceDialog.py | 4 ++++ plugins/3MFReader/WorkspaceDialog.qml | 9 +-------- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/plugins/3MFReader/WorkspaceDialog.py b/plugins/3MFReader/WorkspaceDialog.py index bc4581b749d..c3e4187652b 100644 --- a/plugins/3MFReader/WorkspaceDialog.py +++ b/plugins/3MFReader/WorkspaceDialog.py @@ -362,6 +362,10 @@ def allowCreateMachine(self): def exportedSettingModel(self): return self._exported_settings_model + @pyqtProperty("QVariantList", notify=exportedSettingModelChanged) + def exportedSettingModelItems(self): + return self._exported_settings_model.items + @pyqtProperty(int, notify=exportedSettingModelChanged) def exportedSettingModelRowCount(self): return self._exported_settings_model.rowCount() diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index febd082a4c6..d7e776411f4 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -209,16 +209,9 @@ UM.Dialog { id: tableModel headers: ["category", "label", "value"] - rows: manager.exportedSettingModel.items + rows: manager.exportedSettingModelItems } } - - property var modelRows: manager.exportedSettingModel.items - onModelRowsChanged: - { - tableModel.clear() - tableModel.rows = modelRows - } } comboboxVisible: manager.qualityChangesConflict From 35d3ff2b5c23dcc92c72fcb1fdeacbfcf4ece870 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Wed, 20 Mar 2024 13:35:24 +0100 Subject: [PATCH 708/765] Only emit model once when all items have been added CURA-11720 --- plugins/3MFReader/SpecificSettingsModel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/3MFReader/SpecificSettingsModel.py b/plugins/3MFReader/SpecificSettingsModel.py index ec4a68e3376..af203ad759f 100644 --- a/plugins/3MFReader/SpecificSettingsModel.py +++ b/plugins/3MFReader/SpecificSettingsModel.py @@ -41,7 +41,7 @@ def addSettingsFromStack(self, stack, category, settings): "label": stack.getProperty(setting, "label"), "value": value }) - self.modelChanged.emit() + self.modelChanged.emit() def _update(self): Logger.debug(f"Updating {self.__class__.__name__}") From bc64d8fa4ed5e2de0fa31a926b4c020ed65fb119 Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Wed, 20 Mar 2024 13:51:09 +0100 Subject: [PATCH 709/765] Fetch support extruder instead of the default. The (main) problem here was that the 'active extruder' was queried for the value, which isn't the same as the support-extruder. CURA-11725 --- .../Recommended/RecommendedSupportSelector.qml | 13 +++++++++++++ resources/qml/Widgets/SingleSettingComboBox.qml | 5 +++-- resources/qml/Widgets/SingleSettingSlider.qml | 3 ++- resources/qml/Widgets/SingleSettingTextField.qml | 1 + 4 files changed, 19 insertions(+), 3 deletions(-) diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml index 16f1e7cccd7..b3249bc5c06 100644 --- a/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml +++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml @@ -34,6 +34,15 @@ RecommendedSettingSection storeIndex: 0 } + UM.SettingPropertyProvider + { + id: supportExtruderProvider + key: "support_extruder_nr" + containerStack: Cura.MachineManager.activeMachine + watchedProperties: [ "value" ] + storeIndex: 0 + } + contents: [ RecommendedSettingItem { @@ -47,6 +56,8 @@ RecommendedSettingSection width: parent.width settingName: "support_structure" propertyRemoveUnusedValue: false + updateAllExtruders: true + defaultExtruderIndex: supportExtruderProvider.properties.value } }, RecommendedSettingItem @@ -75,6 +86,8 @@ RecommendedSettingSection { width: parent.width settingName: "support_type" + updateAllExtruders: true + defaultExtruderIndex: supportExtruderProvider.properties.value } } ] diff --git a/resources/qml/Widgets/SingleSettingComboBox.qml b/resources/qml/Widgets/SingleSettingComboBox.qml index fa150894f8c..d917dc27538 100644 --- a/resources/qml/Widgets/SingleSettingComboBox.qml +++ b/resources/qml/Widgets/SingleSettingComboBox.qml @@ -28,7 +28,7 @@ Cura.ComboBox { id: comboboxModel // The propertyProvider has not loaded the setting when this components onComplete triggers. Populating the model - // is defered until propertyProvider signals "onIsValueUsedChanged". The defered upate is triggered with this function. + // is deferred until propertyProvider signals "onIsValueUsedChanged". The deferred update is triggered with this function. function updateModel() { clear() @@ -68,7 +68,8 @@ Cura.ComboBox { { id: propertyProvider containerStackId: updateAllExtruders ? Cura.ExtruderManager.extruderIds[defaultExtruderIndex] : Cura.MachineManager.activeMachine.id - watchedProperties: ["value" , "options"] + removeUnusedValue: false + watchedProperties: ["value", "validationState", "resolve", "options"] } Connections diff --git a/resources/qml/Widgets/SingleSettingSlider.qml b/resources/qml/Widgets/SingleSettingSlider.qml index aac204970e6..638688186a2 100644 --- a/resources/qml/Widgets/SingleSettingSlider.qml +++ b/resources/qml/Widgets/SingleSettingSlider.qml @@ -34,7 +34,8 @@ UM.Slider { id: propertyProvider containerStackId: updateAllExtruders ? Cura.ExtruderManager.extruderIds[defaultExtruderIndex] : Cura.MachineManager.activeMachine.id - watchedProperties: ["value"] + watchedProperties: ["value", "validationState", "resolve"] + removeUnusedValue: false storeIndex: 0 } diff --git a/resources/qml/Widgets/SingleSettingTextField.qml b/resources/qml/Widgets/SingleSettingTextField.qml index 22c080ebf47..35bd6d10647 100644 --- a/resources/qml/Widgets/SingleSettingTextField.qml +++ b/resources/qml/Widgets/SingleSettingTextField.qml @@ -53,6 +53,7 @@ UM.TextField { id: propertyProvider watchedProperties: ["value", "validationState", "resolve"] + removeUnusedValue: false containerStackId: updateAllExtruders ? Cura.ExtruderManager.extruderIds[defaultExtruderIndex] : Cura.MachineManager.activeMachine.id } From 5039caa0f378fcaf1ee5c0d45dd0ae13d9713340 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Wed, 20 Mar 2024 13:53:31 +0100 Subject: [PATCH 710/765] Fix some Chinese translations Manually cherry-picked from e839fc85989b8db510c3c6d9b0ab0486569ef147 --- resources/i18n/zh_CN/cura.po | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/resources/i18n/zh_CN/cura.po b/resources/i18n/zh_CN/cura.po index 46c7e714973..8f1bffe45d9 100644 --- a/resources/i18n/zh_CN/cura.po +++ b/resources/i18n/zh_CN/cura.po @@ -202,8 +202,9 @@ msgstr "
                                    • OpenGL 版本: {version}
                                    • " msgctxt "@label crash message" msgid "

                                      A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

                                      \n

                                      Please use the \"Send report\" button to post a bug report automatically to our servers

                                      \n " -msgstr "

                                      Cura 发生了严重错误。请将这份错误报告发送给我们以便修复问题

                                      " -"

                                      请使用“发送报告”按钮将错误报告自动发布到我们的服务器

                                      " +msgstr "" +"

                                      Cura 发生了严重错误。请将这份错误报告发送给我们以便修复问题

                                      \n" +"

                                      请使用“发送报告”按钮将错误报告自动发送到我们的服务器

                                      \n" " " msgctxt "@label crash message" @@ -218,7 +219,7 @@ msgctxt "@info:status" msgid "

                                      One or more 3D models may not print optimally due to the model size and material configuration:

                                      \n

                                      {model_names}

                                      \n

                                      Find out how to ensure the best possible print quality and reliability.

                                      \n

                                      View print quality guide

                                      " msgstr "

                                      由于模型的大小和材质的配置,一个或多个3D模型可能无法最优地打印:

                                      " "

                                      {model_names}

                                      " -"

                                      找出如何确保最好的打印质量和可靠性.

                                      " +"

                                      找到确保最好的打印质量与可靠性的方法.

                                      \n" "

                                      查看打印质量指南

                                      " msgctxt "@label" @@ -1787,7 +1788,7 @@ msgstr "热床(官方版本或自制)" msgctxt "@label" msgid "Heated bed" -msgstr "加热床" +msgstr "热床" msgctxt "@label" msgid "Heated build volume" @@ -2452,7 +2453,7 @@ msgstr "网络错误" msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" -msgstr "新 %s 稳定固件可用" +msgstr "新 %s 稳定版固件可用" msgctxt "@textfield:placeholder" msgid "New Custom Profile" @@ -2565,7 +2566,7 @@ msgstr "正常模式" msgctxt "@info:title" msgid "Not a group host" -msgstr "非组中的主机" +msgstr "非位于组中的主机" msgctxt "@label:MonitorStatus" msgid "Not connected to a printer" @@ -4483,11 +4484,11 @@ msgstr "空驶" msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that is higher than the current version." -msgstr "尝试恢复的 Cura 备份版本高于当前版本。" +msgstr "尝试从高于当前版本的 Cura 备份恢复。" msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." -msgstr "试图在没有适当数据或元数据的情况下恢复Cura备份。" +msgstr "尝试在没有适当数据或元数据的情况下恢复Cura备份。" msgctxt "@button" msgid "Troubleshooting" @@ -4824,7 +4825,7 @@ msgstr "我们已经在您所选择的文件中找到一个或多个项目文件 msgctxt "@info" msgid "Webcam feeds for cloud printers cannot be viewed from UltiMaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam." -msgstr "无法从 UltiMaker Cura 中查看云打印机的网络摄像头馈送。请单击“管理打印机”以访问 Ultimaker Digital Factory 并查看此网络摄像头。" +msgstr "无法从 UltiMaker Cura 中查看云打印机的网络摄像头的反馈数据。请单击“管理打印机”以访问 UltiMaker Digital Factory 并查看此网络摄像头。" msgctxt "@button" msgid "Website" From 81001b60cfc5226de2e115b3c2659e881e3e3c7a Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Wed, 20 Mar 2024 14:32:22 +0100 Subject: [PATCH 711/765] GUID of material ASA was from generic ASA, now given Ultimaker ASA GUID CURA-11729 --- cura/PrinterOutput/Models/MaterialOutputModel.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cura/PrinterOutput/Models/MaterialOutputModel.py b/cura/PrinterOutput/Models/MaterialOutputModel.py index f2793584779..f9125278f08 100644 --- a/cura/PrinterOutput/Models/MaterialOutputModel.py +++ b/cura/PrinterOutput/Models/MaterialOutputModel.py @@ -25,9 +25,9 @@ def guid(self) -> str: def getMaterialFromDefinition(guid, type, brand, name): _MATERIAL_MAP = { "abs" :{"name" :"ABS" ,"guid": "2780b345-577b-4a24-a2c5-12e6aad3e690"}, - "abs-cf10": {"name": "ABS-CF", "guid": "495a0ce5-9daf-4a16-b7b2-06856d82394d"}, + "abs-cf10" :{"name": "ABS-CF" ,"guid": "495a0ce5-9daf-4a16-b7b2-06856d82394d"}, "abs-wss1" :{"name" :"ABS-R" ,"guid": "88c8919c-6a09-471a-b7b6-e801263d862d"}, - "asa" :{"name" :"ASA" ,"guid": "416eead4-0d8e-4f0b-8bfc-a91a519befa5"}, + "asa" :{"name" :"ASA" ,"guid": "f79bc612-21eb-482e-ad6c-87d75bdde066"}, "nylon12-cf":{"name": "Nylon 12 CF" ,"guid": "3c6f2877-71cc-4760-84e6-4b89ab243e3b"}, "nylon" :{"name" :"Nylon" ,"guid": "283d439a-3490-4481-920c-c51d8cdecf9c"}, "pc" :{"name" :"PC" ,"guid": "62414577-94d1-490d-b1e4-7ef3ec40db02"}, From 3f8dfa242fe1278fe6181d8056ef0010c91b568d Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Thu, 21 Mar 2024 08:48:15 +0100 Subject: [PATCH 712/765] Use argparse to parse the script arguments --- scripts/check_missing_translations.py | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/scripts/check_missing_translations.py b/scripts/check_missing_translations.py index 2b8f6b6db82..1ff678e56a8 100755 --- a/scripts/check_missing_translations.py +++ b/scripts/check_missing_translations.py @@ -5,6 +5,7 @@ import sys import os import tempfile +import argparse from collections import OrderedDict @@ -73,14 +74,11 @@ def process_file(actual_file_path, previous_version_file_path, restore_missing): actual_file.save() -try: - previous_version = sys.argv[1] - restore_missing = "--restore-missing" in sys.argv -except: - print("Compares the translations present in the current folder with the same files from an other commit/branch. This will write a report.csv file containing the missing translations and the locations where they were expected. Make sure to run this script at the root of Cura/Uranium") - print(f"How to use: {sys.argv[0]} previous_version [--restore-missing]") - print(" --restore-missing * Superbonus * This will also restore the translations missing from the previous file into the actual one") - sys.exit(1) +args_parser = argparse.ArgumentParser(description="Compares the translations present in the current folder with the same files from an other commit/branch. This will write a report.csv file containing the missing translations and the locations where they were expected. Make sure to run this script at the root of Cura/Uranium") +args_parser.add_argument("previous_version", help="Git branch or commit hash of the version to be compared with") +args_parser.add_argument("--restore-missing", action="store_true", help="* Superbonus * This will also restore the translations missing from the previous file into the actual one") + +args = args_parser.parse_args() repo = git.Repo('.') @@ -93,11 +91,11 @@ def process_file(actual_file_path, previous_version_file_path, restore_missing): for translation_file in os.listdir(language_dir): if translation_file.endswith('.po'): translation_file_path = os.path.join(language_dir, translation_file) - blob = repo.commit(previous_version).tree / translation_file_path + blob = repo.commit(args.previous_version).tree / translation_file_path print(f'Processing file {translation_file_path}') with tempfile.NamedTemporaryFile(suffix='.po') as tmp_file: tmp_file.write(blob.data_stream.read()) - process_file(translation_file_path, tmp_file.name, restore_missing) + process_file(translation_file_path, tmp_file.name, args.restore_missing) with open('report.csv', 'w') as report_file: for missing_key, files in missing_keys.items(): From 8f210ab5aacf4f6d03aecdfb087530f52206a686 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Thu, 21 Mar 2024 09:29:31 +0100 Subject: [PATCH 713/765] Include suggestions for Italian provided by @GMagician --- resources/i18n/it_IT/cura.po | 46 +++++++++---------- resources/i18n/it_IT/fdmextruder.def.json.po | 8 ++-- .../it_IT/gradual_flow_settings.def.json.po | 2 +- 3 files changed, 28 insertions(+), 28 deletions(-) diff --git a/resources/i18n/it_IT/cura.po b/resources/i18n/it_IT/cura.po index 4a11c39a5ca..4c66a59c95f 100644 --- a/resources/i18n/it_IT/cura.po +++ b/resources/i18n/it_IT/cura.po @@ -118,7 +118,7 @@ msgstr "&Salva progetto..." msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" msgid "&Save Universal Cura Project..." -msgstr "e salvare il progetto universale Cura..." +msgstr "&Salva il Universal Cura Project..." msgctxt "@title:menu menubar:toplevel" msgid "&Settings" @@ -1311,7 +1311,7 @@ msgstr "Bozza" msgctxt "@action:inmenu menubar:edit" msgid "Drop All Models to buildplate" -msgstr "Rilasciare tutti i modelli sulla piastra di costruzione" +msgstr "Rilasciare tutti i modelli sulla piano di stampa" msgctxt "@action:button" msgid "Duplicate" @@ -1435,7 +1435,7 @@ msgstr "Esporta selezione..." msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Export Universal Cura Project" -msgstr "Esportare il progetto universale Cura" +msgstr "Esportare il Universal Cura Project" msgctxt "@button" msgid "Export material archive" @@ -1810,7 +1810,7 @@ msgstr "Nascondi tutte le stampanti collegate" msgctxt "@action:button" msgid "Hide settings" -msgstr "Nascondere le impostazioni" +msgstr "Nascondi le impostazioni" msgctxt "@action:menu" msgid "Hide this setting" @@ -2686,11 +2686,11 @@ msgstr "Apri file progetto" msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Open Universal Cura Project (UCP)" -msgstr "Aprire il progetto universale Cura (UCP)" +msgstr "Aprire il Universal Cura Project (UCP)" msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Open Universal Cura Project (UCP) file" -msgstr "Aprire il file del progetto universale Cura (UCP)" +msgstr "Aprire il file del Universal Cura Project (UCP)" msgctxt "@action:label" msgid "Open With" @@ -3256,7 +3256,7 @@ msgstr "Coda piena" msgctxt "@label" msgid "Queued" -msgstr "Coda di stampa" +msgstr "Accodato" msgctxt "@info:button, %1 is the application name" msgid "Quit %1" @@ -3436,11 +3436,11 @@ msgstr "Salva progetto Cura" msgctxt "@option" msgid "Save Cura project and .makerbot print file" -msgstr "Salvare il progetto Cura e il file di stampa .makerbot" +msgstr "Salva il progetto Cura e il file di stampa .makerbot" msgctxt "@option" msgid "Save Cura project and .ufp print file" -msgstr "Salvare il progetto Cura e il file di stampa .ufp" +msgstr "Salva il progetto Cura e il file di stampa .ufp" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3468,11 +3468,11 @@ msgstr "Salva nuovo profilo" msgctxt "@action:button" msgid "Save project" -msgstr "Salvare il progetto" +msgstr "Salva il progetto" msgctxt "@text" msgid "Save the .umm file on a USB stick." -msgstr "Salvare il file .umm su una chiavetta USB." +msgstr "Salva il file .umm su una chiavetta USB." msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" @@ -3954,11 +3954,11 @@ msgstr "Profilo {0} importato correttamente." msgctxt "@action:label" msgid "Suggested Material settings" -msgstr "Impostazioni del materiale consigliate" +msgstr "Impostazioni consigliate del materiale" msgctxt "@action:label" msgid "Suggested Profile settings" -msgstr "Impostazioni del profilo consigliate" +msgstr "Impostazioni consigliate del profilo" msgctxt "@action:title" msgid "Summary - Cura Project" @@ -3966,11 +3966,11 @@ msgstr "Riepilogo - Progetto Cura" msgctxt "@action:title Don't translate 'Universal Cura Project'" msgid "Summary - Open Universal Cura Project (UCP)" -msgstr "Riepilogo - Aprire il progetto universale Cura (UCP)" +msgstr "Riepilogo - Aprire il Universal Cura Project (UCP)" msgctxt "@action:title Don't translate 'Universal Cura Project'" msgid "Summary - Universal Cura Project" -msgstr "Riepilogo - Progetto universale Cura" +msgstr "Riepilogo - Universal Cura Project" msgctxt "@label" msgid "Support" @@ -4337,7 +4337,7 @@ msgstr "Questa configurazione non è disponibile perché %1 non viene riconosciu msgctxt "@text:window" msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" -msgstr "Questo è un file del progetto universale Cura. Si desidera aprirlo come progetto Cura o progetto universale Cura o importare i modelli da esso?" +msgstr "Questo è un file del Universal Cura Project. Si desidera aprirlo come progetto Cura o Universal Cura Project o importare i modelli da esso?" msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" @@ -4419,11 +4419,11 @@ msgstr "Questa impostazione viene risolta dai valori in conflitto specifici dell msgctxt "@tooltip Don't translate 'Universal Cura Project'" msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." -msgstr "Questa impostazione potrebbe non funzionare bene durante l'esportazione nel progetto universale Cura. Gli utenti sono invitati ad aggiungerla a proprio rischio." +msgstr "Questa impostazione potrebbe non funzionare bene durante l'esportazione nel Universal Cura Project. Gli utenti sono invitati ad aggiungerla a proprio rischio." msgctxt "@tooltip Don't translate 'Universal Cura Project'" msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." -msgstr "Quest'impostazione potrebbe non funzionare bene durante l'esportazione nel progetto universale Cura. Gli utenti sono invitati ad aggiungerla a proprio rischio." +msgstr "Quest'impostazione potrebbe non funzionare bene durante l'esportazione nel Universal Cura Project. Gli utenti sono invitati ad aggiungerla a proprio rischio." msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" @@ -4644,11 +4644,11 @@ msgstr "Unità" msgctxt "@item:inlistbox" msgid "Universal Cura Project" -msgstr "Progetto universale Cura" +msgstr "Universal Cura Project" msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." -msgstr "I file del progetto universale Cura possono essere riprodotti su diverse stampanti 3D, mantenendo i dati di posizione e le impostazioni selezionate. Quando vengono esportati, tutti i modelli presenti sulla piastra di costruzione saranno inclusi con la posizione, l'orientamento e la scala attuali. È inoltre possibile selezionare che le impostazioni per estrusore o per modello siano incluse per garantire una stampa corretta." +msgstr "I file del Universal Cura Project possono essere riprodotti su diverse stampanti 3D, mantenendo i dati di posizione e le impostazioni selezionate. Quando vengono esportati, tutti i modelli presenti sulla piano di stampa saranno inclusi con la posizione, l'orientamento e la scala attuali. È inoltre possibile selezionare che le impostazioni per estrusore o per modello siano incluse per garantire una stampa corretta." msgctxt "@label Description for development tool" msgid "Universal build system configuration" @@ -4934,7 +4934,7 @@ msgstr "Si stanno per rimuovere tutte le stampanti da Cura. Questa azione non pu msgctxt "@label" msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgstr[0] "Si sta per rimuovere {0} stampante da Cura. Questa azione non può essere annullata.\nContinuare?" +msgstr[0] "Si sta per rimuovere la stampante {0} da Cura. Questa azione non può essere annullata.\nContinuare?" msgstr[1] "Si stanno per rimuovere {0} stampanti da Cura. Questa azione non può essere annullata.\nContinuare?" msgctxt "@info:status" @@ -5362,7 +5362,7 @@ msgstr "Lettore codice G" msgctxt "description" msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Invia informazioni su sezionamento anonime Può essere disabilitato tramite le preferenze." +msgstr "Invia informazioni anonime su sezionamento Può essere disabilitato tramite le preferenze." msgctxt "name" msgid "Slice info" @@ -5386,7 +5386,7 @@ msgstr "Cancellazione supporto" msgctxt "description" msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Controlla i modelli e la configurazione di stampa per eventuali problematiche di stampa e suggerimenti." +msgstr "Controlla i modelli e la configurazione di stampa per eventuali problematiche di stampa e dai alcuni suggerimenti." msgctxt "name" msgid "Model Checker" diff --git a/resources/i18n/it_IT/fdmextruder.def.json.po b/resources/i18n/it_IT/fdmextruder.def.json.po index 23dfefec19f..65cf3564edf 100644 --- a/resources/i18n/it_IT/fdmextruder.def.json.po +++ b/resources/i18n/it_IT/fdmextruder.def.json.po @@ -135,7 +135,7 @@ msgstr "Il tempo necessario per eseguire il G-code di inizio, quando si passa a msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" -msgstr "Assoluto posizione avvio estrusore" +msgstr "Posizione assoluta avvio estrusore" msgctxt "machine_extruder_start_pos_abs description" msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." @@ -159,7 +159,7 @@ msgstr "ID ugello" msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" -msgstr "X posizione avvio estrusore" +msgstr "Posizione X avvio estrusore" msgctxt "machine_extruder_start_pos_x description" msgid "The x-coordinate of the starting position when turning the extruder on." @@ -167,7 +167,7 @@ msgstr "La coordinata x della posizione di partenza all’accensione dell’estr msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" -msgstr "Y posizione avvio estrusore" +msgstr "Posizione Y avvio estrusore" msgctxt "machine_settings label" msgid "Machine" @@ -175,7 +175,7 @@ msgstr "Macchina" msgctxt "machine_settings description" msgid "Machine specific settings" -msgstr "Impostazioni macchina specifiche" +msgstr "Impostazioni specifiche della macchina" msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." diff --git a/resources/i18n/it_IT/gradual_flow_settings.def.json.po b/resources/i18n/it_IT/gradual_flow_settings.def.json.po index 0d646a0ebfc..795ac71b6f1 100644 --- a/resources/i18n/it_IT/gradual_flow_settings.def.json.po +++ b/resources/i18n/it_IT/gradual_flow_settings.def.json.po @@ -50,4 +50,4 @@ msgstr "Reimpostare la durata del flusso" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Per ogni spostamento del percorso superiore a questo valore, il flusso del materiale viene reimpostato sul quello target dei percorsi." +msgstr "Per ogni spostamento del percorso superiore a questo valore, il flusso del materiale viene reimpostato su quello target dei percorsi." From aaf7f0dc70e768f10ae307841a230e29fedf0986 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Thu, 21 Mar 2024 09:57:24 +0100 Subject: [PATCH 714/765] check_missing_translations for windows fixing the paths to be used correctly CURA-11732 --- scripts/check_missing_translations.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/check_missing_translations.py b/scripts/check_missing_translations.py index 1ff678e56a8..f7fff4b7e3b 100755 --- a/scripts/check_missing_translations.py +++ b/scripts/check_missing_translations.py @@ -82,15 +82,15 @@ def process_file(actual_file_path, previous_version_file_path, restore_missing): repo = git.Repo('.') -languages_dir = os.path.join('resources', 'i18n') +languages_dir = '/'.join(['resources', 'i18n']) -language_dirs = [os.path.join(languages_dir, dir_path) for dir_path in os.listdir('resources/i18n')] +language_dirs = ['/'.join([languages_dir, dir_path]) for dir_path in os.listdir('resources/i18n')] language_dirs = [language for language in language_dirs if os.path.isdir(language)] for language_dir in language_dirs: for translation_file in os.listdir(language_dir): if translation_file.endswith('.po'): - translation_file_path = os.path.join(language_dir, translation_file) + translation_file_path = '/'.join([language_dir, translation_file]) blob = repo.commit(args.previous_version).tree / translation_file_path print(f'Processing file {translation_file_path}') with tempfile.NamedTemporaryFile(suffix='.po') as tmp_file: From 71332716cc6ac19351798aae7fe48ab95088597b Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Thu, 21 Mar 2024 10:37:12 +0100 Subject: [PATCH 715/765] removed all generic materials Only materials available for method is available in the _material_map CURA-11729 --- cura/PrinterOutput/Models/MaterialOutputModel.py | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/cura/PrinterOutput/Models/MaterialOutputModel.py b/cura/PrinterOutput/Models/MaterialOutputModel.py index f9125278f08..02a2c12953c 100644 --- a/cura/PrinterOutput/Models/MaterialOutputModel.py +++ b/cura/PrinterOutput/Models/MaterialOutputModel.py @@ -24,22 +24,12 @@ def guid(self) -> str: @staticmethod def getMaterialFromDefinition(guid, type, brand, name): - _MATERIAL_MAP = { "abs" :{"name" :"ABS" ,"guid": "2780b345-577b-4a24-a2c5-12e6aad3e690"}, - "abs-cf10" :{"name": "ABS-CF" ,"guid": "495a0ce5-9daf-4a16-b7b2-06856d82394d"}, + _MATERIAL_MAP = { "abs-cf10" :{"name": "ABS-CF" ,"guid": "495a0ce5-9daf-4a16-b7b2-06856d82394d"}, "abs-wss1" :{"name" :"ABS-R" ,"guid": "88c8919c-6a09-471a-b7b6-e801263d862d"}, "asa" :{"name" :"ASA" ,"guid": "f79bc612-21eb-482e-ad6c-87d75bdde066"}, "nylon12-cf":{"name": "Nylon 12 CF" ,"guid": "3c6f2877-71cc-4760-84e6-4b89ab243e3b"}, - "nylon" :{"name" :"Nylon" ,"guid": "283d439a-3490-4481-920c-c51d8cdecf9c"}, - "pc" :{"name" :"PC" ,"guid": "62414577-94d1-490d-b1e4-7ef3ec40db02"}, - "petg" :{"name" :"PETG" ,"guid": "69386c85-5b6c-421a-bec5-aeb1fb33f060"}, - "pla" :{"name" :"PLA" ,"guid": "0ff92885-617b-4144-a03c-9989872454bc"}, - "pva" :{"name" :"PVA" ,"guid": "a4255da2-cb2a-4042-be49-4a83957a2f9a"}, "wss1" :{"name" :"RapidRinse" ,"guid": "a140ef8f-4f26-4e73-abe0-cfc29d6d1024"}, - "sr30" :{"name" :"SR-30" ,"guid": "77873465-83a9-4283-bc44-4e542b8eb3eb"}, - "bvoh" :{"name" :"BVOH" ,"guid": "923e604c-8432-4b09-96aa-9bbbd42207f4"}, - "cpe" :{"name" :"CPE" ,"guid": "da1872c1-b991-4795-80ad-bdac0f131726"}, - "hips" :{"name" :"HIPS" ,"guid": "a468d86a-220c-47eb-99a5-bbb47e514eb0"}, - "tpu" :{"name" :"TPU 95A" ,"guid": "19baa6a9-94ff-478b-b4a1-8157b74358d2"} + "sr30" :{"name" :"SR-30" ,"guid": "77873465-83a9-4283-bc44-4e542b8eb3eb"} } From a7329841e6a1ba2d2d8c633ffbe9aded2d66c167 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 21 Mar 2024 11:25:24 +0100 Subject: [PATCH 716/765] Revert "removed all generic materials" This reverts commit 71332716cc6ac19351798aae7fe48ab95088597b. --- cura/PrinterOutput/Models/MaterialOutputModel.py | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/cura/PrinterOutput/Models/MaterialOutputModel.py b/cura/PrinterOutput/Models/MaterialOutputModel.py index 02a2c12953c..f9125278f08 100644 --- a/cura/PrinterOutput/Models/MaterialOutputModel.py +++ b/cura/PrinterOutput/Models/MaterialOutputModel.py @@ -24,12 +24,22 @@ def guid(self) -> str: @staticmethod def getMaterialFromDefinition(guid, type, brand, name): - _MATERIAL_MAP = { "abs-cf10" :{"name": "ABS-CF" ,"guid": "495a0ce5-9daf-4a16-b7b2-06856d82394d"}, + _MATERIAL_MAP = { "abs" :{"name" :"ABS" ,"guid": "2780b345-577b-4a24-a2c5-12e6aad3e690"}, + "abs-cf10" :{"name": "ABS-CF" ,"guid": "495a0ce5-9daf-4a16-b7b2-06856d82394d"}, "abs-wss1" :{"name" :"ABS-R" ,"guid": "88c8919c-6a09-471a-b7b6-e801263d862d"}, "asa" :{"name" :"ASA" ,"guid": "f79bc612-21eb-482e-ad6c-87d75bdde066"}, "nylon12-cf":{"name": "Nylon 12 CF" ,"guid": "3c6f2877-71cc-4760-84e6-4b89ab243e3b"}, + "nylon" :{"name" :"Nylon" ,"guid": "283d439a-3490-4481-920c-c51d8cdecf9c"}, + "pc" :{"name" :"PC" ,"guid": "62414577-94d1-490d-b1e4-7ef3ec40db02"}, + "petg" :{"name" :"PETG" ,"guid": "69386c85-5b6c-421a-bec5-aeb1fb33f060"}, + "pla" :{"name" :"PLA" ,"guid": "0ff92885-617b-4144-a03c-9989872454bc"}, + "pva" :{"name" :"PVA" ,"guid": "a4255da2-cb2a-4042-be49-4a83957a2f9a"}, "wss1" :{"name" :"RapidRinse" ,"guid": "a140ef8f-4f26-4e73-abe0-cfc29d6d1024"}, - "sr30" :{"name" :"SR-30" ,"guid": "77873465-83a9-4283-bc44-4e542b8eb3eb"} + "sr30" :{"name" :"SR-30" ,"guid": "77873465-83a9-4283-bc44-4e542b8eb3eb"}, + "bvoh" :{"name" :"BVOH" ,"guid": "923e604c-8432-4b09-96aa-9bbbd42207f4"}, + "cpe" :{"name" :"CPE" ,"guid": "da1872c1-b991-4795-80ad-bdac0f131726"}, + "hips" :{"name" :"HIPS" ,"guid": "a468d86a-220c-47eb-99a5-bbb47e514eb0"}, + "tpu" :{"name" :"TPU 95A" ,"guid": "19baa6a9-94ff-478b-b4a1-8157b74358d2"} } From c1d57d4b0dacd6ba4dff603b40d27dee51598439 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Thu, 21 Mar 2024 14:01:40 +0100 Subject: [PATCH 717/765] Avoid using a temporary file to extract the old translations --- scripts/check_missing_translations.py | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/scripts/check_missing_translations.py b/scripts/check_missing_translations.py index f7fff4b7e3b..80a011589c5 100755 --- a/scripts/check_missing_translations.py +++ b/scripts/check_missing_translations.py @@ -2,9 +2,7 @@ import polib import git -import sys import os -import tempfile import argparse from collections import OrderedDict @@ -25,9 +23,9 @@ def list_entries(file): return entries -def process_file(actual_file_path, previous_version_file_path, restore_missing): +def process_file(actual_file_path, previous_version_file_data, restore_missing): actual_file = polib.pofile(actual_file_path, wrapwidth=10000) - previous_file = polib.pofile(previous_version_file_path, wrapwidth=10000) + previous_file = polib.pofile(previous_version_file_data, wrapwidth=10000) previous_entries = list_entries(previous_file) actual_entries = list_entries(actual_file) @@ -91,11 +89,9 @@ def process_file(actual_file_path, previous_version_file_path, restore_missing): for translation_file in os.listdir(language_dir): if translation_file.endswith('.po'): translation_file_path = '/'.join([language_dir, translation_file]) - blob = repo.commit(args.previous_version).tree / translation_file_path print(f'Processing file {translation_file_path}') - with tempfile.NamedTemporaryFile(suffix='.po') as tmp_file: - tmp_file.write(blob.data_stream.read()) - process_file(translation_file_path, tmp_file.name, args.restore_missing) + blob = repo.commit(args.previous_version).tree / translation_file_path + process_file(translation_file_path, blob.data_stream.read().decode('utf-8'), args.restore_missing) with open('report.csv', 'w') as report_file: for missing_key, files in missing_keys.items(): From d3b1294e8b16500e3b4e407b34328e18f9575ac1 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Fri, 22 Mar 2024 10:18:50 +0100 Subject: [PATCH 718/765] Added UCP as prefix in name while saving a UCP CURA-11762 --- plugins/3MFWriter/UCPDialog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/3MFWriter/UCPDialog.py b/plugins/3MFWriter/UCPDialog.py index 8f38f0bd0a8..649a6e07bf6 100644 --- a/plugins/3MFWriter/UCPDialog.py +++ b/plugins/3MFWriter/UCPDialog.py @@ -69,7 +69,7 @@ def save3mf(self): device.writeSuccess.connect(lambda: self._onSuccess()) device.writeFinished.connect(lambda: self._onFinished()) - file_name = CuraApplication.getInstance().getPrintInformation().baseName + file_name = f"UCP_{CuraApplication.getInstance().getPrintInformation().baseName}" try: device.requestWrite( From 100e4de8bfb326c3899c01d66dfa8ed79a4f338b Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 22 Mar 2024 15:28:42 +0100 Subject: [PATCH 719/765] Restored French translation for Universal Cura Project --- resources/i18n/fr_FR/cura.po | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/resources/i18n/fr_FR/cura.po b/resources/i18n/fr_FR/cura.po index 2831c14fb97..a8c8c77bc21 100644 --- a/resources/i18n/fr_FR/cura.po +++ b/resources/i18n/fr_FR/cura.po @@ -118,7 +118,7 @@ msgstr "&Enregistrer le projet..." msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" msgid "&Save Universal Cura Project..." -msgstr "&Enregistrer vers Universal Cura Project..." +msgstr "&Enregistrer en tant que Projet Universel Cura..." msgctxt "@title:menu menubar:toplevel" msgid "&Settings" @@ -1433,7 +1433,7 @@ msgstr "Exporter la sélection..." msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Export Universal Cura Project" -msgstr "Exporter vers Universal Cura Project" +msgstr "Exporter en tant que Projet Universel Cura" msgctxt "@button" msgid "Export material archive" @@ -2684,11 +2684,11 @@ msgstr "Ouvrir un fichier de projet" msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Open Universal Cura Project (UCP)" -msgstr "Ouverture du fichier Universal Cura Project (UCP)" +msgstr "Ouverture du fichier Projet Universel Cura (UCP)" msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Open Universal Cura Project (UCP) file" -msgstr "Ouvrir un fichier Universal Cura Project (UCP)" +msgstr "Ouvrir un fichier Projet Universel Cura (UCP)" msgctxt "@action:label" msgid "Open With" @@ -3964,11 +3964,11 @@ msgstr "Résumé - Projet Cura" msgctxt "@action:title Don't translate 'Universal Cura Project'" msgid "Summary - Open Universal Cura Project (UCP)" -msgstr "Résumé : Ouvrir Universal Cura Project (UCP)" +msgstr "Résumé : Ouvrir Projet Universel Cura (UCP)" msgctxt "@action:title Don't translate 'Universal Cura Project'" msgid "Summary - Universal Cura Project" -msgstr "Résumé : Universal Cura Project" +msgstr "Résumé : Projet Universel Cura" msgctxt "@label" msgid "Support" @@ -4335,7 +4335,7 @@ msgstr "Cette configuration n'est pas disponible car %1 n'est pas reconnu. Veuil msgctxt "@text:window" msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" -msgstr "Il s'agit d'un fichier de type Universal Cura Project. Souhaitez-vous l'ouvrir en tant que Universal Cura Project ou importer les modèles qu'il contient ?" +msgstr "Il s'agit d'un fichier de type Projet Universel Cura. Souhaitez-vous l'ouvrir en tant que Projet Universel Cura ou importer les modèles qu'il contient ?" msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" @@ -4417,11 +4417,11 @@ msgstr "Ce paramètre est résolu à partir de valeurs conflictuelles spécifiqu msgctxt "@tooltip Don't translate 'Universal Cura Project'" msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." -msgstr "Ce paramètre peut ne pas fonctionner correctement lors de l'exportation vers Universal Cura. Les utilisateurs sont invités à l'ajouter à leurs propres risques." +msgstr "Ce paramètre peut ne pas fonctionner correctement lors de l'exportation en Projet Universel Cura. Les utilisateurs sont invités à l'ajouter à leurs propres risques." msgctxt "@tooltip Don't translate 'Universal Cura Project'" msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." -msgstr "Ce paramètre peut ne pas fonctionner correctement lors de l'exportation vers un Universal Cura Project. Les utilisateurs sont invités à l'ajouter à leurs propres risques." +msgstr "Ce paramètre peut ne pas fonctionner correctement lors de l'exportation en Projet Universel Cura. Les utilisateurs sont invités à l'ajouter à leurs propres risques." msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" @@ -4642,11 +4642,11 @@ msgstr "Unité" msgctxt "@item:inlistbox" msgid "Universal Cura Project" -msgstr "Universal Cura Project" +msgstr "Projet Universel Cura" msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." -msgstr "Les fichiers Universal Cura Project peuvent être imprimés sur différentes imprimantes 3D tout en conservant les données de position et les paramètres sélectionnés. Lors de l'exportation, tous les modèles présents sur le plateau seront inclus avec leur position, leur orientation et leur échelle actuelles. Vous pouvez également sélectionner les paramètres par extrudeuse ou par modèle qui doivent être inclus pour garantir une impression correcte." +msgstr "Les fichiers Projet Universel Cura peuvent être imprimés sur différentes imprimantes 3D tout en conservant les données de position et les paramètres sélectionnés. Lors de l'exportation, tous les modèles présents sur le plateau seront inclus avec leur position, leur orientation et leur échelle actuelles. Vous pouvez également sélectionner les paramètres par extrudeuse ou par modèle qui doivent être inclus pour garantir une impression correcte." msgctxt "@label Description for development tool" msgid "Universal build system configuration" From 421ca02e7e604afa6abb17d864b52eed09566327 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 22 Mar 2024 15:30:51 +0100 Subject: [PATCH 720/765] Translate "Universal Cura Project" again --- plugins/3MFWriter/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/3MFWriter/__init__.py b/plugins/3MFWriter/__init__.py index 74a15d0c5ea..980aefdf851 100644 --- a/plugins/3MFWriter/__init__.py +++ b/plugins/3MFWriter/__init__.py @@ -45,7 +45,7 @@ def getMetaData(): }, { "extension": "3mf", - "description": "Universal Cura Project", + "description": i18n_catalog.i18nc("@item:inlistbox", "Universal Cura Project"), "mime_type": "application/x-ucp", "mode": ThreeMFWorkspaceWriter.ThreeMFWorkspaceWriter.OutputMode.BinaryMode } From d92c44cf643bca9346d1c169f91d03440029ec9c Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 22 Mar 2024 15:40:33 +0100 Subject: [PATCH 721/765] Restored Italian translation for Universal Cura Project --- resources/i18n/it_IT/cura.po | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/resources/i18n/it_IT/cura.po b/resources/i18n/it_IT/cura.po index 4c66a59c95f..830dc58b6c2 100644 --- a/resources/i18n/it_IT/cura.po +++ b/resources/i18n/it_IT/cura.po @@ -118,7 +118,7 @@ msgstr "&Salva progetto..." msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" msgid "&Save Universal Cura Project..." -msgstr "&Salva il Universal Cura Project..." +msgstr "&Salva il Progetto Universale Cura..." msgctxt "@title:menu menubar:toplevel" msgid "&Settings" @@ -1435,7 +1435,7 @@ msgstr "Esporta selezione..." msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Export Universal Cura Project" -msgstr "Esportare il Universal Cura Project" +msgstr "Esportare il Progetto Universale Cura" msgctxt "@button" msgid "Export material archive" @@ -2686,11 +2686,11 @@ msgstr "Apri file progetto" msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Open Universal Cura Project (UCP)" -msgstr "Aprire il Universal Cura Project (UCP)" +msgstr "Aprire il Progetto Universale Cura (UCP)" msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Open Universal Cura Project (UCP) file" -msgstr "Aprire il file del Universal Cura Project (UCP)" +msgstr "Aprire il file del Progetto Universale Cura (UCP)" msgctxt "@action:label" msgid "Open With" @@ -3966,11 +3966,11 @@ msgstr "Riepilogo - Progetto Cura" msgctxt "@action:title Don't translate 'Universal Cura Project'" msgid "Summary - Open Universal Cura Project (UCP)" -msgstr "Riepilogo - Aprire il Universal Cura Project (UCP)" +msgstr "Riepilogo - Aprire il Progetto Universale Cura (UCP)" msgctxt "@action:title Don't translate 'Universal Cura Project'" msgid "Summary - Universal Cura Project" -msgstr "Riepilogo - Universal Cura Project" +msgstr "Riepilogo - Progetto Universale Cura" msgctxt "@label" msgid "Support" @@ -4337,7 +4337,7 @@ msgstr "Questa configurazione non è disponibile perché %1 non viene riconosciu msgctxt "@text:window" msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" -msgstr "Questo è un file del Universal Cura Project. Si desidera aprirlo come progetto Cura o Universal Cura Project o importare i modelli da esso?" +msgstr "Questo è un file del Progetto Universale Cura. Si desidera aprirlo come progetto Cura o Progetto Universale Cura o importare i modelli da esso?" msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" @@ -4419,11 +4419,11 @@ msgstr "Questa impostazione viene risolta dai valori in conflitto specifici dell msgctxt "@tooltip Don't translate 'Universal Cura Project'" msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." -msgstr "Questa impostazione potrebbe non funzionare bene durante l'esportazione nel Universal Cura Project. Gli utenti sono invitati ad aggiungerla a proprio rischio." +msgstr "Questa impostazione potrebbe non funzionare bene durante l'esportazione nel Progetto Universale Cura. Gli utenti sono invitati ad aggiungerla a proprio rischio." msgctxt "@tooltip Don't translate 'Universal Cura Project'" msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." -msgstr "Quest'impostazione potrebbe non funzionare bene durante l'esportazione nel Universal Cura Project. Gli utenti sono invitati ad aggiungerla a proprio rischio." +msgstr "Quest'impostazione potrebbe non funzionare bene durante l'esportazione nel Progetto Universale Cura. Gli utenti sono invitati ad aggiungerla a proprio rischio." msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" @@ -4644,11 +4644,11 @@ msgstr "Unità" msgctxt "@item:inlistbox" msgid "Universal Cura Project" -msgstr "Universal Cura Project" +msgstr "Progetto Universale Cura" msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." -msgstr "I file del Universal Cura Project possono essere riprodotti su diverse stampanti 3D, mantenendo i dati di posizione e le impostazioni selezionate. Quando vengono esportati, tutti i modelli presenti sulla piano di stampa saranno inclusi con la posizione, l'orientamento e la scala attuali. È inoltre possibile selezionare che le impostazioni per estrusore o per modello siano incluse per garantire una stampa corretta." +msgstr "I file del Progetto Universale Cura possono essere riprodotti su diverse stampanti 3D, mantenendo i dati di posizione e le impostazioni selezionate. Quando vengono esportati, tutti i modelli presenti sulla piano di stampa saranno inclusi con la posizione, l'orientamento e la scala attuali. È inoltre possibile selezionare che le impostazioni per estrusore o per modello siano incluse per garantire una stampa corretta." msgctxt "@label Description for development tool" msgid "Universal build system configuration" From 5604ba528b8c9954b9a4a3afb3818dd9bea30024 Mon Sep 17 00:00:00 2001 From: Dmitry Gribenchuk Date: Fri, 22 Mar 2024 18:26:06 +0200 Subject: [PATCH 722/765] update ru_RU translation --- resources/i18n/ru_RU/cura.po | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/resources/i18n/ru_RU/cura.po b/resources/i18n/ru_RU/cura.po index 77c9b9e293c..699b65b7b85 100644 --- a/resources/i18n/ru_RU/cura.po +++ b/resources/i18n/ru_RU/cura.po @@ -476,14 +476,14 @@ msgstr "Фреймворк приложения" msgctxt "@title:column" msgid "Applies on" -msgstr "Applies on" +msgstr "Применить к" msgctxt "@label" msgid "Apply Extruder offsets to GCode" -msgstr "Применить смещения экструдера к GCode" +msgstr "Применить смещения экструдера к G-коду" msgctxt "@info:title" -msgid "Are you ready for cloud printing?" +msgid "Are you ready for cloud printing?"коду msgstr "Вы готовы к облачной печати?" msgctxt "@label %1 is the name of a print job." @@ -688,7 +688,7 @@ msgstr "Невозможно импортировать профиль из Date: Fri, 22 Mar 2024 21:31:00 +0200 Subject: [PATCH 723/765] bugfix for ru_RU translation --- resources/i18n/ru_RU/cura.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/i18n/ru_RU/cura.po b/resources/i18n/ru_RU/cura.po index 699b65b7b85..96474148c49 100644 --- a/resources/i18n/ru_RU/cura.po +++ b/resources/i18n/ru_RU/cura.po @@ -483,7 +483,7 @@ msgid "Apply Extruder offsets to GCode" msgstr "Применить смещения экструдера к G-коду" msgctxt "@info:title" -msgid "Are you ready for cloud printing?"коду +msgid "Are you ready for cloud printing?" msgstr "Вы готовы к облачной печати?" msgctxt "@label %1 is the name of a print job." From 99d9cf9aee42fc09d49e1dbfcc9d318785a14f09 Mon Sep 17 00:00:00 2001 From: Dmitry Gribenchuk Date: Mon, 25 Mar 2024 09:28:01 +0200 Subject: [PATCH 724/765] lexical fixes --- resources/i18n/ru_RU/cura.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/i18n/ru_RU/cura.po b/resources/i18n/ru_RU/cura.po index 96474148c49..ed37461df9b 100644 --- a/resources/i18n/ru_RU/cura.po +++ b/resources/i18n/ru_RU/cura.po @@ -612,7 +612,7 @@ msgstr "Вид снизу" msgctxt "@label" msgid "Brand" -msgstr "Брэнд" +msgstr "Бренд" msgctxt "@title" msgid "Build Plate Leveling" @@ -800,7 +800,7 @@ msgstr "Цветовая схема" msgctxt "@info" msgid "Compare and save." -msgstr "Сравнивайте и экономьте." +msgstr "Сравнить и сохранить." msgctxt "@label" msgid "Compatibility Mode" From f481a56ba0d93464006c54da448526064b5efdbd Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Mon, 25 Mar 2024 08:49:24 +0100 Subject: [PATCH 725/765] Last fixes recommended by @GMagician --- resources/i18n/it_IT/cura.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/i18n/it_IT/cura.po b/resources/i18n/it_IT/cura.po index 830dc58b6c2..8aecc93d59d 100644 --- a/resources/i18n/it_IT/cura.po +++ b/resources/i18n/it_IT/cura.po @@ -4214,9 +4214,9 @@ msgstr "L’ugello inserito in questo estrusore." msgctxt "@label" msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "La configurazione del materiale di riempimento della stampa:" -"Per stampe rapide di modelli non funzionali scegli linea, zig zag o riempimento fulmine." -"Per le parti funzionali non soggette a forti sollecitazioni, si consiglia griglia o triangolo o tri-esagonale." +msgstr "Il modello del materiale di riempimento della stampa:\n\n" +"Per stampe rapide di modelli non funzionali scegli linea, zig zag o riempimento fulmine.\n\n" +"Per le parti funzionali non soggette a forti sollecitazioni, si consiglia griglia o triangolo o tri-esagonale.\n\n" "Per le stampe 3D funzionali che richiedono un'elevata resistenza in più direzioni utilizzare cubico, suddivisione cubica, quarto cubico, ottetto e giroide." msgctxt "@info:tooltip" @@ -4935,7 +4935,7 @@ msgctxt "@label" msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" msgstr[0] "Si sta per rimuovere la stampante {0} da Cura. Questa azione non può essere annullata.\nContinuare?" -msgstr[1] "Si stanno per rimuovere {0} stampanti da Cura. Questa azione non può essere annullata.\nContinuare?" +msgstr[1] "Si sta per rimuovere le stampanti {0} da Cura. Questa azione non può essere annullata.\nContinuare?" msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." From bc5532dab302a16819903049c5e7e22bd1939e06 Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Tue, 26 Mar 2024 14:01:35 +0100 Subject: [PATCH 726/765] Prevent crash if the variants only have an 'empty' entry. Just get the one you'd get if no variant was asked (like in the other branch of the if) then. CURA-11772 --- plugins/3MFReader/ThreeMFWorkspaceReader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py index 164952f9f18..88c79f2b840 100755 --- a/plugins/3MFReader/ThreeMFWorkspaceReader.py +++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py @@ -1225,7 +1225,7 @@ def _applyVariants(self, global_stack, extruder_stack_dict): node = machine_node.variants.get(machine_node.preferred_variant_name, next(iter(machine_node.variants.values()))) else: variant_name = extruder_info.variant_info.parser["general"]["name"] - node = ContainerTree.getInstance().machines[global_stack.definition.getId()].variants[variant_name] + node = ContainerTree.getInstance().machines[global_stack.definition.getId()].variants.get(variant_name, next(iter(machine_node.variants.values()))) extruder_stack.variant = node.container def _applyMaterials(self, global_stack, extruder_stack_dict): From 44c7345f3b04210655317fa2914b7ae311618e12 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Tue, 26 Mar 2024 15:31:56 +0100 Subject: [PATCH 727/765] added catalog as an extra argument for translations translations of backend plugin such as gradual flow CURA-11732 --- cura/BackendPlugin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cura/BackendPlugin.py b/cura/BackendPlugin.py index 4a1cdfd83d2..5e885c3fd8a 100644 --- a/cura/BackendPlugin.py +++ b/cura/BackendPlugin.py @@ -18,8 +18,8 @@ class BackendPlugin(AdditionalSettingDefinitionsAppender, PluginObject): catalog = i18nCatalog("cura") settings_catalog = i18nCatalog("fdmprinter.def.json") - def __init__(self) -> None: - super().__init__(self.settings_catalog) + def __init__(self, catalog_i18n = settings_catalog) -> None: + super().__init__(catalog_i18n) self.__port: int = 0 self._plugin_address: str = "127.0.0.1" self._plugin_command: Optional[List[str]] = None From dc34fbc0474e17b3826cd6f4d989b9d190aa66be Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Tue, 26 Mar 2024 16:35:59 +0100 Subject: [PATCH 728/765] learn more button alligned in UCP CURA-11781 --- plugins/3MFReader/WorkspaceDialog.qml | 44 +++++++++++++-------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index d7e776411f4..41e9b006712 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -24,29 +24,29 @@ UM.Dialog { height: childrenRect.height + 2 * UM.Theme.getSize("default_margin").height color: UM.Theme.getColor("main_background") - - UM.Label - { - id: titleLabel - text: manager.isUcp? catalog.i18nc("@action:title Don't translate 'Universal Cura Project'", "Summary - Open Universal Cura Project (UCP)"): catalog.i18nc("@action:title", "Summary - Cura Project") - font: UM.Theme.getFont("large") - anchors.top: parent.top - anchors.left: parent.left - anchors.topMargin: UM.Theme.getSize("default_margin").height - anchors.leftMargin: UM.Theme.getSize("default_margin").height - } - - Cura.TertiaryButton + RowLayout { - id: learnMoreButton - visible: manager.isUcp - anchors.right: parent.right - anchors.topMargin: UM.Theme.getSize("default_margin").height - anchors.rightMargin: UM.Theme.getSize("default_margin").height - text: catalog.i18nc("@button", "Learn more") - iconSource: UM.Theme.getIcon("LinkExternal") - isIconOnRightSide: true - onClicked: Qt.openUrlExternally("https://support.ultimaker.com/s/article/000002979") + UM.Label + { + id: titleLabel + text: manager.isUcp? catalog.i18nc("@action:title Don't translate 'Universal Cura Project'", "Summary - Open Universal Cura Project (UCP)"): catalog.i18nc("@action:title", "Summary - Cura Project") + font: UM.Theme.getFont("large") + anchors.left: parent.left + anchors.topMargin: UM.Theme.getSize("default_margin").height + anchors.leftMargin: UM.Theme.getSize("default_margin").height + } + Cura.TertiaryButton + { + id: learnMoreButton + visible: manager.isUcp + text: catalog.i18nc("@button", "Learn more") + iconSource: UM.Theme.getIcon("LinkExternal") + anchors.left: titleLabel.right + anchors.topMargin: UM.Theme.getSize("default_margin").height + anchors.leftMargin: UM.Theme.getSize("default_margin").height + isIconOnRightSide: true + onClicked: Qt.openUrlExternally("https://support.ultimaker.com/s/article/000002979") + } } } From 6ddd96f914108c404398e05d985b515ead338a0b Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Tue, 26 Mar 2024 20:37:43 +0100 Subject: [PATCH 729/765] Add visibility control for settings in 3MFWriter plugin Introduced a new property 'show_in_menu' to control the visibility of individual settings in 3MFWriter plugin. Modified 'SettingExport' class constructor to store this visibility status. Also, updated the 'SettingsExportGroup' model to filter the settings based on visibility before presenting them in the GUI. CURA-11723 --- plugins/3MFWriter/SettingExport.py | 7 ++++++- plugins/3MFWriter/SettingsExportGroup.py | 9 +++++++++ plugins/3MFWriter/SettingsExportModel.py | 6 +++++- plugins/3MFWriter/SettingsSelectionGroup.qml | 7 +++---- 4 files changed, 23 insertions(+), 6 deletions(-) diff --git a/plugins/3MFWriter/SettingExport.py b/plugins/3MFWriter/SettingExport.py index 6702aa1f683..dca72ddffae 100644 --- a/plugins/3MFWriter/SettingExport.py +++ b/plugins/3MFWriter/SettingExport.py @@ -6,13 +6,14 @@ class SettingExport(QObject): - def __init__(self, id, name, value, selectable): + def __init__(self, id, name, value, selectable, show): super().__init__() self.id = id self._name = name self._value = value self._selected = selectable self._selectable = selectable + self._show_in_menu = show @pyqtProperty(str, constant=True) def name(self): @@ -36,3 +37,7 @@ def selected(self): @pyqtProperty(bool, constant=True) def selectable(self): return self._selectable + + @pyqtProperty(bool, constant=True) + def isVisible(self): + return self._show_in_menu diff --git a/plugins/3MFWriter/SettingsExportGroup.py b/plugins/3MFWriter/SettingsExportGroup.py index cc3fc7b4f54..0b5d9fcc794 100644 --- a/plugins/3MFWriter/SettingsExportGroup.py +++ b/plugins/3MFWriter/SettingsExportGroup.py @@ -23,6 +23,7 @@ def __init__(self, stack, name, category, settings, category_details = '', extru self._category_details = category_details self._extruder_index = extruder_index self._extruder_color = extruder_color + self._visible_settings = [] @pyqtProperty(str, constant=True) def name(self): @@ -32,6 +33,14 @@ def name(self): def settings(self): return self._settings + @pyqtProperty(list, constant=True) + def visibleSettings(self): + if self._visible_settings == []: + for item in self._settings: + if item.isVisible: + self._visible_settings.append(item) + return self._visible_settings + @pyqtProperty(int, constant=True) def category(self): return self._category diff --git a/plugins/3MFWriter/SettingsExportModel.py b/plugins/3MFWriter/SettingsExportModel.py index 674b0da287a..80eef4a0375 100644 --- a/plugins/3MFWriter/SettingsExportModel.py +++ b/plugins/3MFWriter/SettingsExportModel.py @@ -117,6 +117,9 @@ def _exportSettings(settings_stack): is_exportable = any(key in SettingsExportModel.PER_MODEL_EXPORTABLE_SETTINGS_KEYS for key in user_keys) for setting_to_export in user_keys: + show_in_menu = True + if setting_to_export in SettingsExportModel.PER_MODEL_EXPORTABLE_SETTINGS_KEYS: + show_in_menu = False label = settings_stack.getProperty(setting_to_export, "label") value = settings_stack.getProperty(setting_to_export, "value") unit = settings_stack.getProperty(setting_to_export, "unit") @@ -130,6 +133,7 @@ def _exportSettings(settings_stack): settings_export.append(SettingExport(setting_to_export, label, value, - is_exportable or setting_to_export in exportable_settings)) + is_exportable or setting_to_export in exportable_settings, + show_in_menu)) return settings_export diff --git a/plugins/3MFWriter/SettingsSelectionGroup.qml b/plugins/3MFWriter/SettingsSelectionGroup.qml index e77ba692bcb..9943b99ba8c 100644 --- a/plugins/3MFWriter/SettingsSelectionGroup.qml +++ b/plugins/3MFWriter/SettingsSelectionGroup.qml @@ -71,8 +71,8 @@ ColumnLayout Layout.fillWidth: true Layout.preferredHeight: contentHeight spacing: 0 - model: modelData.settings - visible: modelData.settings.length > 0 + model: modelData.visibleSettings + visible: modelData.visibleSettings.length > 0 delegate: SettingSelection { } } @@ -80,8 +80,7 @@ ColumnLayout UM.Label { UM.I18nCatalog { id: catalog; name: "cura" } - text: catalog.i18nc("@label", "No specific value has been set") - visible: modelData.settings.length === 0 + visible: modelData.visibleSettings.length === 0 } } From a19ebc638bc7a64ab4374e8bb0927db9cc60674c Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Wed, 27 Mar 2024 08:53:50 +0100 Subject: [PATCH 730/765] Apply suggested fix by @GMagician --- resources/i18n/it_IT/cura.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/i18n/it_IT/cura.po b/resources/i18n/it_IT/cura.po index 8aecc93d59d..d95f15080c1 100644 --- a/resources/i18n/it_IT/cura.po +++ b/resources/i18n/it_IT/cura.po @@ -4935,7 +4935,7 @@ msgctxt "@label" msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" msgstr[0] "Si sta per rimuovere la stampante {0} da Cura. Questa azione non può essere annullata.\nContinuare?" -msgstr[1] "Si sta per rimuovere le stampanti {0} da Cura. Questa azione non può essere annullata.\nContinuare?" +msgstr[1] "Si stanno per rimuovere {0} stampanti da Cura. Questa azione non può essere annullata.\nContinuare?" msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." From caa1fc8c67b7ab2e867b9cdd3296cbd5f315aa96 Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 31 Oct 2023 18:47:51 +0100 Subject: [PATCH 731/765] Move nozzle clean to designated area --- resources/definitions/creality_ender3v3se.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/creality_ender3v3se.def.json b/resources/definitions/creality_ender3v3se.def.json index 86d68181663..bf49d8dd1ba 100644 --- a/resources/definitions/creality_ender3v3se.def.json +++ b/resources/definitions/creality_ender3v3se.def.json @@ -45,7 +45,7 @@ "machine_max_feedrate_y": { "value": 500 }, "machine_max_feedrate_z": { "value": 30 }, "machine_name": { "default_value": "Creality Ender-3 V3 SE" }, - "machine_start_gcode": { "default_value": "M220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\n\nM420 S1; Use saved mesh leveling data\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nM190 S{material_bed_temperature_layer_0} ; Set bed temperature and wait\nM109 S{material_print_temperature_layer_0} ; Set hotend temperature and wait\nG1 X10.1 Y145.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y145.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 E-1.0000 F1800 ;Retract a bit\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 E0.0000 F1800 \n" }, + "machine_start_gcode": { "default_value": "M220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\n\nM420 S1; Use saved mesh leveling data\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X-3 Y20 Z0.28 F5000.0 ;Move to start position\nM190 S{material_bed_temperature_layer_0} ; Set bed temperature and wait\nM109 S{material_print_temperature_layer_0} ; Set hotend temperature and wait\nG1 X-3 Y100.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X-2 Y100.0 Z0.28 F5000.0 ;Move to side a little\nG1 X-2 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 E-1.0000 F1800 ;Retract a bit\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 E0.0000 F1800 \n" }, "machine_width": { "default_value": 220 }, "retraction_amount": { "value": 0.8 }, "retraction_speed": { "default_value": 40 }, From 646d4e5f854c514f6e83164f5ecc281de243b6a2 Mon Sep 17 00:00:00 2001 From: Saumya Jain <70144862+saumyaj3@users.noreply.github.com> Date: Wed, 27 Mar 2024 11:17:46 +0100 Subject: [PATCH 732/765] Update plugins/3MFWriter/SettingsExportModel.py Co-authored-by: Casper Lamboo --- plugins/3MFWriter/SettingsExportModel.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/plugins/3MFWriter/SettingsExportModel.py b/plugins/3MFWriter/SettingsExportModel.py index 80eef4a0375..10b7f8f775b 100644 --- a/plugins/3MFWriter/SettingsExportModel.py +++ b/plugins/3MFWriter/SettingsExportModel.py @@ -117,9 +117,7 @@ def _exportSettings(settings_stack): is_exportable = any(key in SettingsExportModel.PER_MODEL_EXPORTABLE_SETTINGS_KEYS for key in user_keys) for setting_to_export in user_keys: - show_in_menu = True - if setting_to_export in SettingsExportModel.PER_MODEL_EXPORTABLE_SETTINGS_KEYS: - show_in_menu = False + show_in_menu = setting_to_export not in SettingsExportModel.PER_MODEL_EXPORTABLE_SETTINGS_KEYS label = settings_stack.getProperty(setting_to_export, "label") value = settings_stack.getProperty(setting_to_export, "value") unit = settings_stack.getProperty(setting_to_export, "unit") From f4c15c47ce2eef3e961cb0d5e5773c679b685797 Mon Sep 17 00:00:00 2001 From: Saumya Jain <70144862+saumyaj3@users.noreply.github.com> Date: Wed, 27 Mar 2024 11:18:02 +0100 Subject: [PATCH 733/765] Update plugins/3MFWriter/SettingsExportGroup.py Co-authored-by: Casper Lamboo --- plugins/3MFWriter/SettingsExportGroup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/plugins/3MFWriter/SettingsExportGroup.py b/plugins/3MFWriter/SettingsExportGroup.py index 0b5d9fcc794..241b92acb3e 100644 --- a/plugins/3MFWriter/SettingsExportGroup.py +++ b/plugins/3MFWriter/SettingsExportGroup.py @@ -36,9 +36,7 @@ def settings(self): @pyqtProperty(list, constant=True) def visibleSettings(self): if self._visible_settings == []: - for item in self._settings: - if item.isVisible: - self._visible_settings.append(item) + self._visible_settings = list(filter(lambda item : item.isVisible, self._settings)) return self._visible_settings @pyqtProperty(int, constant=True) From 1bc8b90b56876c04029b80dbde354d2aff2561fe Mon Sep 17 00:00:00 2001 From: Frederic Meeuwissen <13856291+Frederic98@users.noreply.github.com> Date: Thu, 14 Mar 2024 11:46:59 +0100 Subject: [PATCH 734/765] Move definition ID to cloud name map to json file --- .../src/Cloud/CloudApiClient.py | 18 +++++++++++------- .../src/Cloud/machine_id_to_name.json | 5 +++++ 2 files changed, 16 insertions(+), 7 deletions(-) create mode 100644 plugins/UM3NetworkPrinting/src/Cloud/machine_id_to_name.json diff --git a/plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py b/plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py index e5524a2e45f..379d66f9bb8 100644 --- a/plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py +++ b/plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py @@ -5,6 +5,7 @@ from json import JSONDecodeError from time import time from typing import Callable, List, Type, TypeVar, Union, Optional, Tuple, Dict, Any, cast +from pathlib import Path from PyQt6.QtCore import QUrl from PyQt6.QtNetwork import QNetworkRequest, QNetworkReply @@ -30,6 +31,14 @@ """The generic type variable used to document the methods below.""" +try: + with open(Path(__file__).parent / "machine_id_to_name.json", "rt") as f: + MACHINE_ID_TO_NAME: Dict[str, str] = json.load(f) +except Exception as e: + Logger.logException("e", f"Could not load machine_id_to_name.json: '{e}'") + MACHINE_ID_TO_NAME = {} + + class CloudApiClient: """The cloud API client is responsible for handling the requests and responses from the cloud. @@ -84,13 +93,8 @@ def getClustersByMachineType(self, machine_type, on_finished: Callable[[List[Clo # conversion! # API points to "MakerBot Method" for a makerbot printertypes which we already changed to allign with other printer_type - method_x = { - "ultimaker_method":"MakerBot Method", - "ultimaker_methodx":"MakerBot Method X", - "ultimaker_methodxl":"MakerBot Method XL" - } - if machine_type in method_x: - machine_type = method_x[machine_type] + if machine_type in MACHINE_ID_TO_NAME: + machine_type = MACHINE_ID_TO_NAME[machine_type] else: machine_type = machine_type.replace("_plus", "+") machine_type = machine_type.replace("_", " ") diff --git a/plugins/UM3NetworkPrinting/src/Cloud/machine_id_to_name.json b/plugins/UM3NetworkPrinting/src/Cloud/machine_id_to_name.json new file mode 100644 index 00000000000..ccd76ab34b9 --- /dev/null +++ b/plugins/UM3NetworkPrinting/src/Cloud/machine_id_to_name.json @@ -0,0 +1,5 @@ +{ + "ultimaker_method": "MakerBot Method", + "ultimaker_methodx": "MakerBot Method X", + "ultimaker_methodxl": "MakerBot Method XL" +} From 8012df65181199d3020a155c5a04feb2ed73dd7f Mon Sep 17 00:00:00 2001 From: Frederic Meeuwissen <13856291+Frederic98@users.noreply.github.com> Date: Thu, 14 Mar 2024 16:29:40 +0100 Subject: [PATCH 735/765] Convert str.format to f-string --- plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py b/plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py index 379d66f9bb8..6fe44c90d40 100644 --- a/plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py +++ b/plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py @@ -47,8 +47,8 @@ class CloudApiClient: # The cloud URL to use for this remote cluster. ROOT_PATH = UltimakerCloudConstants.CuraCloudAPIRoot - CLUSTER_API_ROOT = "{}/connect/v1".format(ROOT_PATH) - CURA_API_ROOT = "{}/cura/v1".format(ROOT_PATH) + CLUSTER_API_ROOT = f"{ROOT_PATH}/connect/v1" + CURA_API_ROOT = f"{ROOT_PATH}/cura/v1" DEFAULT_REQUEST_TIMEOUT = 10 # seconds From 484cc6d42f17bc89ceff572e47447219fcf98765 Mon Sep 17 00:00:00 2001 From: Frederic Meeuwissen <13856291+Frederic98@users.noreply.github.com> Date: Thu, 14 Mar 2024 16:30:53 +0100 Subject: [PATCH 736/765] Clean up CloudApiClient.py --- .../src/Cloud/CloudApiClient.py | 46 ++++++++++--------- 1 file changed, 25 insertions(+), 21 deletions(-) diff --git a/plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py b/plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py index 6fe44c90d40..42538293ff4 100644 --- a/plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py +++ b/plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py @@ -82,10 +82,10 @@ def getClusters(self, on_finished: Callable[[List[CloudClusterResponse]], Any], url = f"{self.CLUSTER_API_ROOT}/clusters?status=active" self._http.get(url, - scope = self._scope, - callback = self._parseCallback(on_finished, CloudClusterResponse, failed), - error_callback = failed, - timeout = self.DEFAULT_REQUEST_TIMEOUT) + scope=self._scope, + callback=self._parseCallback(on_finished, CloudClusterResponse, failed), + error_callback=failed, + timeout=self.DEFAULT_REQUEST_TIMEOUT) def getClustersByMachineType(self, machine_type, on_finished: Callable[[List[CloudClusterWithConfigResponse]], Any], failed: Callable) -> None: # HACK: There is something weird going on with the API, as it reports printer types in formats like @@ -118,9 +118,9 @@ def getClusterStatus(self, cluster_id: str, on_finished: Callable[[CloudClusterS url = f"{self.CLUSTER_API_ROOT}/clusters/{cluster_id}/status" self._http.get(url, - scope = self._scope, - callback = self._parseCallback(on_finished, CloudClusterStatus), - timeout = self.DEFAULT_REQUEST_TIMEOUT) + scope=self._scope, + callback=self._parseCallback(on_finished, CloudClusterStatus), + timeout=self.DEFAULT_REQUEST_TIMEOUT) def requestUpload(self, request: CloudPrintJobUploadRequest, on_finished: Callable[[CloudPrintJobResponse], Any]) -> None: @@ -135,10 +135,10 @@ def requestUpload(self, request: CloudPrintJobUploadRequest, data = json.dumps({"data": request.toDict()}).encode() self._http.put(url, - scope = self._scope, - data = data, - callback = self._parseCallback(on_finished, CloudPrintJobResponse), - timeout = self.DEFAULT_REQUEST_TIMEOUT) + scope=self._scope, + data=data, + callback=self._parseCallback(on_finished, CloudPrintJobResponse), + timeout=self.DEFAULT_REQUEST_TIMEOUT) def uploadToolPath(self, print_job: CloudPrintJobResponse, mesh: bytes, on_finished: Callable[[], Any], on_progress: Callable[[int], Any], on_error: Callable[[], Any]): @@ -164,11 +164,11 @@ def uploadToolPath(self, print_job: CloudPrintJobResponse, mesh: bytes, on_finis def requestPrint(self, cluster_id: str, job_id: str, on_finished: Callable[[CloudPrintResponse], Any], on_error) -> None: url = f"{self.CLUSTER_API_ROOT}/clusters/{cluster_id}/print/{job_id}" self._http.post(url, - scope = self._scope, - data = b"", - callback = self._parseCallback(on_finished, CloudPrintResponse), - error_callback = on_error, - timeout = self.DEFAULT_REQUEST_TIMEOUT) + scope=self._scope, + data=b"", + callback=self._parseCallback(on_finished, CloudPrintResponse), + error_callback=on_error, + timeout=self.DEFAULT_REQUEST_TIMEOUT) def doPrintJobAction(self, cluster_id: str, cluster_job_id: str, action: str, data: Optional[Dict[str, Any]] = None) -> None: @@ -178,14 +178,15 @@ def doPrintJobAction(self, cluster_id: str, cluster_job_id: str, action: str, :param cluster_id: The ID of the cluster. :param cluster_job_id: The ID of the print job within the cluster. :param action: The name of the action to execute. + :param data: Optional data to send with the POST request """ body = json.dumps({"data": data}).encode() if data else b"" url = f"{self.CLUSTER_API_ROOT}/clusters/{cluster_id}/print_jobs/{cluster_job_id}/action/{action}" self._http.post(url, - scope = self._scope, - data = body, - timeout = self.DEFAULT_REQUEST_TIMEOUT) + scope=self._scope, + data=body, + timeout=self.DEFAULT_REQUEST_TIMEOUT) def _createEmptyRequest(self, path: str, content_type: Optional[str] = "application/json") -> QNetworkRequest: """We override _createEmptyRequest in order to add the user credentials. @@ -220,8 +221,11 @@ def _parseReply(reply: QNetworkReply) -> Tuple[int, Dict[str, Any]]: Logger.logException("e", "Could not parse the stardust response: %s", error.toDict()) return status_code, {"errors": [error.toDict()]} - def _parseResponse(self, response: Dict[str, Any], on_finished: Union[Callable[[CloudApiClientModel], Any], - Callable[[List[CloudApiClientModel]], Any]], model_class: Type[CloudApiClientModel]) -> None: + def _parseResponse(self, + response: Dict[str, Any], + on_finished: Union[Callable[[CloudApiClientModel], Any], + Callable[[List[CloudApiClientModel]], Any]], + model_class: Type[CloudApiClientModel]) -> None: """Parses the given response and calls the correct callback depending on the result. :param response: The response from the server, after being converted to a dict. From f665281a6a5dafa167382c84947e58dfcac7448f Mon Sep 17 00:00:00 2001 From: Frederic Meeuwissen <13856291+Frederic98@users.noreply.github.com> Date: Thu, 14 Mar 2024 16:54:16 +0100 Subject: [PATCH 737/765] Only load machine_id_to_name.json when it's needed for the first time --- .../src/Cloud/CloudApiClient.py | 27 ++++++++++++------- 1 file changed, 17 insertions(+), 10 deletions(-) diff --git a/plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py b/plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py index 42538293ff4..4feb77222af 100644 --- a/plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py +++ b/plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py @@ -31,14 +31,6 @@ """The generic type variable used to document the methods below.""" -try: - with open(Path(__file__).parent / "machine_id_to_name.json", "rt") as f: - MACHINE_ID_TO_NAME: Dict[str, str] = json.load(f) -except Exception as e: - Logger.logException("e", f"Could not load machine_id_to_name.json: '{e}'") - MACHINE_ID_TO_NAME = {} - - class CloudApiClient: """The cloud API client is responsible for handling the requests and responses from the cloud. @@ -55,6 +47,9 @@ class CloudApiClient: # In order to avoid garbage collection we keep the callbacks in this list. _anti_gc_callbacks = [] # type: List[Callable[[Any], None]] + # Custom machine definition ID to cloud cluster name mapping + _machine_id_to_name: Dict[str, str] = None + def __init__(self, app: CuraApplication, on_error: Callable[[List[CloudError]], None]) -> None: """Initializes a new cloud API client. @@ -93,8 +88,9 @@ def getClustersByMachineType(self, machine_type, on_finished: Callable[[List[Clo # conversion! # API points to "MakerBot Method" for a makerbot printertypes which we already changed to allign with other printer_type - if machine_type in MACHINE_ID_TO_NAME: - machine_type = MACHINE_ID_TO_NAME[machine_type] + machine_id_to_name = self.getMachineIDMap() + if machine_type in machine_id_to_name: + machine_type = machine_id_to_name[machine_type] else: machine_type = machine_type.replace("_plus", "+") machine_type = machine_type.replace("_", " ") @@ -284,3 +280,14 @@ def parse(reply: QNetworkReply) -> None: self._anti_gc_callbacks.append(parse) return parse + + @classmethod + def getMachineIDMap(cls) -> Dict[str, str]: + if cls._machine_id_to_name is None: + try: + with open(Path(__file__).parent / "machine_id_to_name.json", "rt") as f: + cls._machine_id_to_name = json.load(f) + except Exception as e: + Logger.logException("e", f"Could not load machine_id_to_name.json: '{e}'") + cls._machine_id_to_name = {} + return cls._machine_id_to_name From f2b2048b51d7a18b4b5cb15bb216376728c26cb1 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Wed, 27 Mar 2024 11:58:55 +0100 Subject: [PATCH 738/765] Update support extruder settings behavior Changed the settings in RecommendedSupportSelector.qml so that now all extruders will not be updated by default. However, when a user changes the selected index, a temporary update to all extruders will be triggered. This allows for specific user-directed changes to propagate correctly across all extruders. CURA-11776 --- .../Recommended/RecommendedSupportSelector.qml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml index b3249bc5c06..254ba477bf7 100644 --- a/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml +++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml @@ -56,7 +56,7 @@ RecommendedSettingSection width: parent.width settingName: "support_structure" propertyRemoveUnusedValue: false - updateAllExtruders: true + updateAllExtruders: false defaultExtruderIndex: supportExtruderProvider.properties.value } }, @@ -73,7 +73,12 @@ RecommendedSettingSection settingControl: Cura.SingleSettingExtruderSelectorBar { extruderSettingName: "support_extruder_nr" - onSelectedIndexChanged: support.forceUpdateSettings() + onSelectedIndexChanged: + { + support.updateAllExtruders = true + support.forceUpdateSettings() + support.updateAllExtruders = false + } } }, RecommendedSettingItem From 9310fff06fb76d26104445840fa77e247a4360f7 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Wed, 27 Mar 2024 12:32:14 +0100 Subject: [PATCH 739/765] Aligning with 5.7 --- resources/images/cura.png | Bin 260941 -> 337002 bytes resources/themes/cura-dark/theme.json | 159 ++------- resources/themes/cura-light/images/logo.svg | 124 +------ resources/themes/cura-light/theme.json | 367 ++++---------------- 4 files changed, 93 insertions(+), 557 deletions(-) diff --git a/resources/images/cura.png b/resources/images/cura.png index 3ea0fb5cfb4c631c82202d13d0b4317d07619d7c..b2f304fce3966cc5a07dd06bb1766ec6ec1938ae 100644 GIT binary patch literal 337002 zcmcFqMO2+lkj33yg1fuBJ>1>>AweIKkN^)4?k>UI9RdmN?i!rn8VJre|7>SJ%j#Zq zojz4{?yb5NrKO>WiAIJ70|SGptR$}k0|RFa0|Oh0g7n`B1ahwhgGkS#EH9(?8TS0A z-;TMx59ezQJ~e6>J%%-kowPOrfgXXPhciWEe5*lATkCS$>c_9{Oszkcx11@~H`blM zUU+}hcgd?3)-=-|46d4_)rF&xhO?uGO>X}6^TA}sDI@k2O?R*S}I> zF@8Q#>v?Uyl{*(F@6KdO9NDip#d`8LmSLyp2CS5yK|a)dGJY2DIs_SeUtx!mlriz- z%Oof;P0{oCM~Z*_oB)YQ(7H2?sAGXUqtd7KAjQJ_h`c$|cTe5yn>bD~%tz6pJIo); z6LEgDVI;wm2s$XtNyP^bQ@CPNX)qv>?KgXoXAPevCT%2loai(a|56MICn)sPxn!D; z6^b>&*^d(`+k$C%Zafnvu6>J8KU6&FQ6S_~^vkflcu&}VO3HsrdF@$3#0g|=w)J=b z(TVZ}K1&_q=6xXs-%8H-=92AK+g3mdZf8yMCoQ&5JxeY_GDHF_zU={cfouwtnS>ik z-&jQwl7NKpV{WY=TRTObHliOTt1JHE?r%LeoqLwKGo$$%UWm4&{QGjN-JSMtN_dxG zkJIlL(k1>_3`#h<>wGaGRsoHed>&i|F!EMmgl&cXy4uso-zKk82s3AG*HXKjl zbHBnH(qKD9L%t(Qsj_1u(eqtoB|gSq2d}n{oTuWYM}FXP_0Kcu2zYWn!rj(sc#Lo5 zgC8~JO>gPvt^I_4Hs}|^nd53x_shVoAz?45o$BQoJd+WBu+S5>Sz;RnR<}T@j2qc}MU#^=SkcqVCexcaf7rYKbjtc9_GNA>_+Zy@V`aDbS?VaFv>fQ&bY)D*>v-j9cd6~q}qO90?t)p))3&jr`NuL9T6DsufQw=} zhr9%kwvz!FcnDWBfMRo%Xnl#u^KA$HU^p)~zK&d2C2lNS3ZCWwfL_;Z%<&878Im_I zc_K8=FqT#`9g~1*ttgs;1*e=$E~u802jy-j>G{1*u653--hR^X0(8(3Pvlqx!dX1s zQJcC)=(k>Ood2-ph1v-o3-vrry&ct9?cUdKhh^jk@Szfs@F7UchQ+1w;iF11*kO^y zkKsaDVM>_QS|q(NrIp}ScjR~qIyUnf0sp=CEHVs8z48Y%<4T$z2H86Hq1gO=Ys2&A z;uMiBj$jhr(9U4DaA6RVz-x||Y8D18gXkfuoFeC>bq!vSUJ&v5bnc9tY@i10x@9TK z*qFgAre6t<%4nKf^a3e4+a;&p)1F8A2M%_WAR}z)Pqp5xep-P;! zUe#YUcvg1$d~F`btj48AO#2xRjRG|>>q5F@Xy*Q}-q9m;km&xVqoabPme;|jEb2n3 zv$H0sKZ*XWIzpYL=j7|*7eEft>op&u;ozOs1t5D*jSIf8HLdv9kGHqtJpd%_sLeM3 z5!JqY{G4~9=%ldtE!62yJ@=fi^OpWp?(e+`pPzEd7EavzUX{nc`^3ID zVsQmvLa)|a&pH%hh|D+NI$vGgyC~ehZcvDxuu|(zH9^#B>>8a`nkk%(_z~S#Hcn1# z!#NzJ226GW#_etMBC&tqDAhjAIqil){_o!k0Qy8Gm>{)r%QJe>`#Dv2d4yeVplaqb97P9mh?-&e{3bqO+ape&w# z%jdihp76Nc?3_T;&-D>*hD56BwwctcTnfLVL^{(lEW~-@rM15Ng<93z?=9T)tpZcw z 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

                                      vzqu3$g0hg~QmlZQCO~8A_vWWqaurJL2y( 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

                                      | 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

                                      0>SSPmPnuP^$YPVE!A(qQE97t{T9B+32a5Wjy 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%0A^pEG3E5I^9biyHBY2Gq%f%FIaw3*(WxrGMx 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LhMDOzF$bEh<^io??%d>w~t==9v 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

                                      8) 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 mmcI$zbmVj}nVty{!v7yY8Fa{7j_}t20000 - - - - - - - - - - - - - - - - - + + + + + diff --git a/resources/themes/cura-light/theme.json b/resources/themes/cura-light/theme.json index 260d0efcefa..8f3f9076c5c 100644 --- a/resources/themes/cura-light/theme.json +++ b/resources/themes/cura-light/theme.json @@ -197,66 +197,22 @@ "base_colors": { "background_1": [255, 255, 255, 255], - "background_2": [ - 230, - 238, - 244, - 255 - ], - "background_3": [ - 238, - 241, - 247, - 255 - ], - "background_4": [ - 22, - 25, - 47, - 255 - ], - "accent_1": [ - 89, - 123, - 175, - 255 - ], - "accent_2": [ - 58, - 80, - 114, - 255 - ], + "background_2": [243, 243, 243, 255], + "background_3": [232, 240, 253, 255], + "background_4": [3, 12, 66, 255], + + "accent_1": [25, 110, 240, 255], + "accent_2": [16, 70, 156, 255], "border_main": [212, 212, 212, 255], - "border_accent_1": [ - 89, - 123, - 175, - 255 - ], - "border_accent_2": [ - 58, - 80, - 114, - 255 - ], + "border_accent_1": [25, 110, 240, 255], + "border_accent_2": [16, 70, 156, 255], "border_field": [180, 180, 180, 255], "text_default": [0, 14, 26, 255], "text_disabled": [180, 180, 180, 255], "text_primary_button": [255, 255, 255, 255], - "text_secondary_button": [ - 89, - 123, - 175, - 255 - ], - "text_link_hover": [ - 58, - 80, - 114, - 255 - ], + "text_secondary_button": [25, 110, 240, 255], + "text_link_hover": [16, 70, 156, 255], "text_lighter": [108, 108, 108, 255], "um_green_1": [233, 245, 237, 255], @@ -277,122 +233,50 @@ "main_background": "background_1", "detail_background": "background_2", - "wide_lining": [ - 211, - 231, - 255, - 255 - ], + "wide_lining": [245, 245, 245, 255], "thick_lining": [180, 180, 180, 255], "lining": [192, 193, 194, 255], - "viewport_overlay": [ - 226, - 237, - 243, - 255 - ], + "viewport_overlay": [246, 246, 246, 255], "primary": "accent_1", - "primary_hover": [ - 103, - 156, - 176, - 255 - ], + "primary_hover": [48, 182, 231, 255], "primary_text": [255, 255, 255, 255], - "text_selection": [ - 186, - 201, - 255, - 127 - ], + "text_selection": [156, 195, 255, 127], "border": [127, 127, 127, 255], "border_field": [180, 180, 180, 255], "secondary": [240, 240, 240, 255], - "expandable_active": [ - 224, - 232, - 242, - 255 - ], + + "expandable_active": [240, 240, 240, 255], "expandable_hover": [232, 242, 252, 255], - "icon": [ - 24, - 24, - 46, - 255 - ], - "primary_button": [ - 89, - 175, - 123, - 255 - ], - "primary_button_hover": [ - 58, - 114, - 80, - 255 - ], + + "icon": [8, 7, 63, 255], + + "primary_button": "accent_1", + "primary_button_hover": [16, 70, 156, 255], "primary_button_text": [255, 255, 255, 255], "secondary_button": "background_1", "secondary_button_shadow": [216, 216, 216, 255], - "secondary_button_hover": [ - 238, - 241, - 247, - 255 - ], + "secondary_button_hover": [232, 240, 253, 255], "secondary_button_text": "accent_1", - "main_window_header_background": [ - 74, - 82, - 108, - 255 - ], + + "main_window_header_background": [8, 7, 63, 255], "main_window_header_background_gradient": [25, 23, 91, 255], - "main_window_header_button_text_active": [ - 24, - 24, - 46, - 255 - ], + "main_window_header_button_text_active": [8, 7, 63, 255], "main_window_header_button_text_inactive": [255, 255, 255, 255], "main_window_header_button_text_hovered": [255, 255, 255, 255], "main_window_header_button_background_active": [255, 255, 255, 255], "main_window_header_button_background_inactive": [255, 255, 255, 0], - "main_window_header_button_background_hovered": [ - 129, - 127, - 145, - 255 - ], - "account_widget_outline_active": [ - 86, - 84, - 108, - 255 - ], + "main_window_header_button_background_hovered": [117, 114, 159, 255], + + "account_widget_outline_active": [70, 66, 126, 255], "account_sync_state_icon": [25, 25, 25, 255], - "machine_selector_printer_icon": [ - 24, - 24, - 46, - 255 - ], - "action_panel_secondary": [ - 89, - 175, - 123, - 255 - ], - "first_run_shadow": [ - 111, - 111, - 193, - 255 - ], + + "machine_selector_printer_icon": [8, 7, 63, 255], + + "action_panel_secondary": "accent_1", + + "first_run_shadow": [50, 50, 50, 255], "toolbar_background": [255, 255, 255, 255], @@ -436,24 +320,9 @@ "action_button_shadow": [223, 223, 223, 255], "scrollbar_background": [255, 255, 255, 255], - "scrollbar_handle": [ - 30, - 30, - 58, - 255 - ], - "scrollbar_handle_hover": [ - 111, - 143, - 193, - 255 - ], - "scrollbar_handle_down": [ - 111, - 143, - 193, - 255 - ], + "scrollbar_handle": [10, 8, 80, 255], + "scrollbar_handle_hover": [50, 130, 255, 255], + "scrollbar_handle_down": [50, 130, 255, 255], "setting_category": "background_1", "setting_category_disabled": [255, 255, 255, 255], @@ -465,20 +334,10 @@ "setting_control": "background_2", "setting_control_highlight": "background_3", "setting_control_border": [199, 199, 199, 255], - "setting_control_border_highlight": [ - 111, - 143, - 193, - 255 - ], + "setting_control_border_highlight": [50, 130, 255, 255], "setting_control_text": [35, 35, 35, 255], "setting_control_button": [102, 102, 102, 255], - "setting_control_button_hover": [ - 24, - 24, - 46, - 255 - ], + "setting_control_button_hover": [8, 7, 63, 255], "setting_control_disabled": "background_2", "setting_control_disabled_text": [127, 127, 127, 255], "setting_control_disabled_border": [127, 127, 127, 255], @@ -492,22 +351,12 @@ "material_compatibility_warning": [243, 166, 59, 255], "progressbar_background": [245, 245, 245, 255], - "progressbar_control": [ - 136, - 148, - 168, - 255 - ], + "progressbar_control": [50, 130, 255, 255], "slider_groove": [223, 223, 223, 255], "slider_groove_fill": [8, 7, 63, 255], "slider_handle": [8, 7, 63, 255], - "slider_handle_active": [ - 111, - 143, - 193, - 255 - ], + "slider_handle_active": [50, 130, 255, 255], "slider_text_background": [255, 255, 255, 255], "quality_slider_unavailable": [179, 179, 179, 255], @@ -559,12 +408,7 @@ "message_close": [102, 102, 102, 255], "message_close_hover": [8, 7, 63, 255], "message_progressbar_background": [245, 245, 245, 255], - "message_progressbar_control": [ - 111, - 143, - 193, - 255 - ], + "message_progressbar_control": [50, 130, 255, 255], "message_success_icon": [255, 255, 255, 255], "message_warning_icon": [0, 0, 0, 255], "message_error_icon": [255, 255, 255, 255], @@ -573,53 +417,19 @@ "status_offline": [0, 0, 0, 255], "status_ready": [0, 205, 0, 255], - "status_busy": [ - 111, - 143, - 193, - 255 - ], + "status_busy": [50, 130, 255, 255], "status_paused": [255, 140, 0, 255], "status_stopped": [236, 82, 80, 255], "disabled_axis": [127, 127, 127, 255], - "x_axis": [ - 162, - 86, - 90, - 255 - ], - "y_axis": [ - 89, - 123, - 175, - 255 - ], - "z_axis": [ - 74, - 124, - 89, - 255 - ], + "x_axis": [218, 30, 40, 255], + "y_axis": [25, 110, 240, 255], + "z_axis": [36, 162, 73, 255], "all_axis": [255, 255, 255, 255], - "viewport_background": [ - 230, - 238, - 244, - 255 - ], - "volume_outline": [ - 111, - 143, - 193, - 255 - ], - "buildplate": [ - 230, - 238, - 255, - 255 - ], + + "viewport_background": [250, 250, 250, 255], + "volume_outline": [50, 130, 255, 255], + "buildplate": [244, 244, 244, 255], "buildplate_grid": [180, 180, 180, 255], "buildplate_grid_minor": [228, 228, 228, 255], @@ -630,79 +440,24 @@ "model_overhang": [255, 0, 0, 255], "model_unslicable": [122, 122, 122, 255], "model_unslicable_alt": [172, 172, 127, 255], - "model_selection_outline": [ - 111, - 143, - 193, - 255 - ], + "model_selection_outline": [50, 130, 255, 255], "model_non_printing": [122, 122, 122, 255], "xray": [26, 26, 62, 255], "layerview_ghost": [31, 31, 31, 95], "layerview_none": [255, 255, 255, 255], - "layerview_inset_0": [ - 161, - 69, - 69, - 255 - ], - "layerview_inset_x": [ - 69, - 161, - 69, - 255 - ], - "layerview_skin": [ - 161, - 161, - 69, - 255 - ], - "layerview_support": [ - 69, - 161, - 161, - 127 - ], - "layerview_skirt": [ - 69, - 161, - 161, - 255 - ], - "layerview_infill": [ - 161, - 115, - 69, - 255 - ], - "layerview_support_infill": [ - 69, - 161, - 161, - 127 - ], - "layerview_move_combing": [ - 69, - 69, - 161, - 255 - ], + "layerview_inset_0": [230, 0, 0, 255], + "layerview_inset_x": [0, 230, 0, 255], + "layerview_skin": [230, 230, 0, 255], + "layerview_support": [0, 230, 230, 127], + "layerview_skirt": [0, 230, 230, 255], + "layerview_infill": [230, 115, 0, 255], + "layerview_support_infill": [0, 230, 230, 127], + "layerview_move_combing": [0, 0, 255, 255], "layerview_move_retraction": [128, 127, 255, 255], - "layerview_support_interface": [ - 121, - 146, - 197, - 127 - ], - "layerview_prime_tower": [ - 77, - 178, - 179, - 255 - ], + "layerview_support_interface": [63, 127, 255, 127], + "layerview_prime_tower": [0, 255, 255, 255], "layerview_nozzle": [224, 192, 16, 64], "layerview_starts": [255, 255, 255, 255], From 8d34b259b9a5551af16299a0374f978cb96ecbdd Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Wed, 27 Mar 2024 13:35:31 +0100 Subject: [PATCH 740/765] Apply suggestions from code review Added new printing guideline link for method materials Co-authored-by: Saumya Jain <70144862+saumyaj3@users.noreply.github.com> --- resources/bundled_packages/cura.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/resources/bundled_packages/cura.json b/resources/bundled_packages/cura.json index 143dfd6f7d4..d23041cf734 100644 --- a/resources/bundled_packages/cura.json +++ b/resources/bundled_packages/cura.json @@ -1929,7 +1929,7 @@ "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", - "support_website": "https://support.makerbot.com/s/materials/method" + "support_website": "https://support.ultimaker.com/s/article/How-to-print-with-Method-ABS-CF" } } }, @@ -1948,7 +1948,7 @@ "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", - "support_website": "https://support.makerbot.com/s/materials/method" + "support_website": "https://support.ultimaker.com/s/article/How-to-print-with-Method-ABS-R" } } }, @@ -1967,7 +1967,7 @@ "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", - "support_website": "https://support.makerbot.com/s/materials/method" + "support_website": "https://support.ultimaker.com/s/article/How-to-print-with-Method-ASA" } } }, @@ -1986,7 +1986,7 @@ "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", - "support_website": "https://support.makerbot.com/s/materials/method" + "support_website": "https://support.ultimaker.com/s/article/How-to-print-with-Method-Nylon12-CF" } } }, @@ -2005,7 +2005,7 @@ "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", - "support_website": "https://support.makerbot.com/s/materials/method" + "support_website": "https://support.ultimaker.com/s/article/How-to-print-with-Method-RapidRinse" } } }, @@ -2024,7 +2024,7 @@ "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", - "support_website": "https://support.makerbot.com/s/materials/method" + "support_website": "https://support.ultimaker.com/s/article/How-to-print-with-Method-SR-30" } } }, From 07f9bffaf878870c34cf1ec2414b27a08110a8eb Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Wed, 27 Mar 2024 13:36:40 +0100 Subject: [PATCH 741/765] Fixed CPE plus links. PP-446 --- resources/bundled_packages/cura.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/bundled_packages/cura.json b/resources/bundled_packages/cura.json index d23041cf734..8eac12a5487 100644 --- a/resources/bundled_packages/cura.json +++ b/resources/bundled_packages/cura.json @@ -1732,14 +1732,14 @@ "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", "sdk_version": "8.6.0", - "website": "https://ultimaker.com/in/cura/materials/ultimaker-cpe-plus/printing-guidelines", + "website": "https://ultimaker.com/materials/s-series-cpe-plus/", "author": { "author_id": "UltimakerPackages", "display_name": "UltiMaker", "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", - "support_website": "https://ultimaker.com/en/resources/troubleshooting/materials" + "support_website": "https://ultimaker.com/in/cura/materials/ultimaker-cpe-plus/printing-guidelines" } } }, From 3011a1792507668d030eb00ba08012f046d5157d Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Wed, 27 Mar 2024 13:45:21 +0100 Subject: [PATCH 742/765] Clear last project name when platform empty. This should fix the reverting of project name to the previous one when the current project was not saved as a project (yet). CURA-8897 --- cura/CuraApplication.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 30497ce5f44..17dcb985be6 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -33,6 +33,7 @@ from UM.Operations.AddSceneNodeOperation import AddSceneNodeOperation from UM.Operations.GroupedOperation import GroupedOperation from UM.Operations.SetTransformOperation import SetTransformOperation +from UM.OutputDevice.ProjectOutputDevice import ProjectOutputDevice from UM.Platform import Platform from UM.PluginError import PluginNotFoundError from UM.Preferences import Preferences @@ -1457,7 +1458,11 @@ def updatePlatformActivity(self, node = None): self._scene_bounding_box = scene_bounding_box self.sceneBoundingBoxChanged.emit() - self._platform_activity = True if count > 0 else False + if count > 0: + ProjectOutputDevice.setLastOutputName(None) + self._platform_activity = True + else: + self._platform_activity = False self.activityChanged.emit() @pyqtSlot() From c3b0fa5bd3d7cb9604bb856f11f4f4c2c8f1a821 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Wed, 27 Mar 2024 16:42:45 +0100 Subject: [PATCH 743/765] Implement syncing feature for Ultimaker account Updated account syncing functionality for logged-in and non-logged-in sessions in Ultimaker. More specifically, syncing is now engaged when the UI becomes visible and stopped when adding a machine action is triggered. The modifications also include fallback to login if the user is not logged in. CURA-11465 --- cura/API/Account.py | 14 ++++++++++++++ resources/qml/Cura.qml | 2 ++ resources/qml/WelcomePages/AddUltimakerPrinter.qml | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) diff --git a/cura/API/Account.py b/cura/API/Account.py index 2651037e9e4..c6027acdb5f 100644 --- a/cura/API/Account.py +++ b/cura/API/Account.py @@ -190,6 +190,20 @@ def is_staging(self) -> bool: def isLoggedIn(self) -> bool: return self._logged_in + @pyqtSlot() + def stopSyncing(self) -> None: + Logger.debug(f"Stopping sync of cloud printers") + self._setManualSyncEnabled(True) + if self._update_timer.isActive(): + self._update_timer.stop() + + @pyqtSlot() + def startSyncing(self) -> None: + Logger.debug(f"Starting sync of cloud printers") + self._setManualSyncEnabled(False) + if not self._update_timer.isActive(): + self._update_timer.start() + def _onLoginStateChanged(self, logged_in: bool = False, error_message: Optional[str] = None) -> None: if error_message: if self._error_message: diff --git a/resources/qml/Cura.qml b/resources/qml/Cura.qml index 776417e15d7..678bf85c974 100644 --- a/resources/qml/Cura.qml +++ b/resources/qml/Cura.qml @@ -864,6 +864,7 @@ UM.MainWindow if(!visible) { wizardDialog = null + Cura.API.account.startSyncing() } } } @@ -891,6 +892,7 @@ UM.MainWindow target: Cura.Actions.addMachine function onTriggered() { + Cura.API.account.stopSyncing() wizardDialog = addMachineDialogLoader.createObject() wizardDialog.show() } diff --git a/resources/qml/WelcomePages/AddUltimakerPrinter.qml b/resources/qml/WelcomePages/AddUltimakerPrinter.qml index ff87a723302..0c9b7d4f7f5 100644 --- a/resources/qml/WelcomePages/AddUltimakerPrinter.qml +++ b/resources/qml/WelcomePages/AddUltimakerPrinter.qml @@ -133,7 +133,7 @@ Control text = catalog.i18nc("@button", "Waiting for new printers") busy = true; enabled = false; - Cura.API.account.login(); + Cura.API.account.isLoggedIn? Cura.API.account.sync():Cura.API.account.login(); } } } From cbe3afba94a48e82196029875c33b4dec7feabc6 Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Thu, 28 Mar 2024 08:48:01 +0100 Subject: [PATCH 744/765] Remove the name when there _isn't_ platform activity. Not the other way around, doh. part of CURA-8897 --- cura/CuraApplication.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 17dcb985be6..c8356e5727d 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -1459,9 +1459,9 @@ def updatePlatformActivity(self, node = None): self.sceneBoundingBoxChanged.emit() if count > 0: - ProjectOutputDevice.setLastOutputName(None) self._platform_activity = True else: + ProjectOutputDevice.setLastOutputName(None) self._platform_activity = False self.activityChanged.emit() From 55d4cd44c4519097e95f7fff86dfed1398db0592 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Thu, 28 Mar 2024 09:51:06 +0100 Subject: [PATCH 745/765] Aligning the title horizontally CURA-11781 --- plugins/3MFReader/WorkspaceDialog.qml | 45 +++++++++++++++------------ 1 file changed, 25 insertions(+), 20 deletions(-) diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index 41e9b006712..eeb33da4c7b 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -24,28 +24,33 @@ UM.Dialog { height: childrenRect.height + 2 * UM.Theme.getSize("default_margin").height color: UM.Theme.getColor("main_background") - RowLayout + ColumnLayout { - UM.Label - { - id: titleLabel - text: manager.isUcp? catalog.i18nc("@action:title Don't translate 'Universal Cura Project'", "Summary - Open Universal Cura Project (UCP)"): catalog.i18nc("@action:title", "Summary - Cura Project") - font: UM.Theme.getFont("large") - anchors.left: parent.left - anchors.topMargin: UM.Theme.getSize("default_margin").height - anchors.leftMargin: UM.Theme.getSize("default_margin").height - } - Cura.TertiaryButton + id: headerColumn + + anchors.top: parent.top + anchors.left: parent.left + anchors.right: parent.right + anchors.topMargin: UM.Theme.getSize("default_margin").height + anchors.leftMargin: UM.Theme.getSize("default_margin").width + anchors.rightMargin: anchors.leftMargin + RowLayout { - id: learnMoreButton - visible: manager.isUcp - text: catalog.i18nc("@button", "Learn more") - iconSource: UM.Theme.getIcon("LinkExternal") - anchors.left: titleLabel.right - anchors.topMargin: UM.Theme.getSize("default_margin").height - anchors.leftMargin: UM.Theme.getSize("default_margin").height - isIconOnRightSide: true - onClicked: Qt.openUrlExternally("https://support.ultimaker.com/s/article/000002979") + UM.Label + { + id: titleLabel + text: manager.isUcp? catalog.i18nc("@action:title Don't translate 'Universal Cura Project'", "Summary - Open Universal Cura Project (UCP)"): catalog.i18nc("@action:title", "Summary - Cura Project") + font: UM.Theme.getFont("large") + } + Cura.TertiaryButton + { + id: learnMoreButton + visible: manager.isUcp + text: catalog.i18nc("@button", "Learn more") + iconSource: UM.Theme.getIcon("LinkExternal") + isIconOnRightSide: true + onClicked: Qt.openUrlExternally("https://support.ultimaker.com/s/article/000002979") + } } } } From b34865e9c8db72436f1dc2971ef4f17d7288bb19 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Thu, 28 Mar 2024 11:54:54 +0100 Subject: [PATCH 746/765] Changed setting value to enum value while saving ucp CURA-11783 --- plugins/3MFWriter/SettingExport.py | 7 ++++++- plugins/3MFWriter/SettingSelection.qml | 2 +- plugins/3MFWriter/SettingsExportModel.py | 3 +++ 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/plugins/3MFWriter/SettingExport.py b/plugins/3MFWriter/SettingExport.py index dca72ddffae..61c7d91b545 100644 --- a/plugins/3MFWriter/SettingExport.py +++ b/plugins/3MFWriter/SettingExport.py @@ -6,11 +6,12 @@ class SettingExport(QObject): - def __init__(self, id, name, value, selectable, show): + def __init__(self, id, name, value, value_name, selectable, show): super().__init__() self.id = id self._name = name self._value = value + self._value_name = value_name self._selected = selectable self._selectable = selectable self._show_in_menu = show @@ -23,6 +24,10 @@ def name(self): def value(self): return self._value + @pyqtProperty(str, constant=True) + def valuename(self): + return str(self._value_name) + selectedChanged = pyqtSignal(bool) def setSelected(self, selected): diff --git a/plugins/3MFWriter/SettingSelection.qml b/plugins/3MFWriter/SettingSelection.qml index 53594153b7f..85c2f636aa5 100644 --- a/plugins/3MFWriter/SettingSelection.qml +++ b/plugins/3MFWriter/SettingSelection.qml @@ -24,7 +24,7 @@ RowLayout UM.Label { - text: modelData.value + text: modelData.valuename } UM.HelpIcon diff --git a/plugins/3MFWriter/SettingsExportModel.py b/plugins/3MFWriter/SettingsExportModel.py index 10b7f8f775b..0251a6c4fa1 100644 --- a/plugins/3MFWriter/SettingsExportModel.py +++ b/plugins/3MFWriter/SettingsExportModel.py @@ -121,6 +121,8 @@ def _exportSettings(settings_stack): label = settings_stack.getProperty(setting_to_export, "label") value = settings_stack.getProperty(setting_to_export, "value") unit = settings_stack.getProperty(setting_to_export, "unit") + options = settings_stack.getProperty(setting_to_export, "options") + value_name = value if options == {} else options[value] setting_type = settings_stack.getProperty(setting_to_export, "type") if setting_type is not None: @@ -131,6 +133,7 @@ def _exportSettings(settings_stack): settings_export.append(SettingExport(setting_to_export, label, value, + value_name, is_exportable or setting_to_export in exportable_settings, show_in_menu)) From 93861073d3a64a8fd1d244727a618d88f7016f88 Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Thu, 28 Mar 2024 17:00:57 +0100 Subject: [PATCH 747/765] Fix another open-file resulting in a crash. If the materials doesn't have the right key in it, just continue. It should be somewhere after all. part of CURA-11772 --- plugins/3MFReader/ThreeMFWorkspaceReader.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py index 88c79f2b840..0905b6fba9f 100755 --- a/plugins/3MFReader/ThreeMFWorkspaceReader.py +++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py @@ -1240,7 +1240,10 @@ def _applyMaterials(self, global_stack, extruder_stack_dict): root_material_id = extruder_info.root_material_id root_material_id = self._old_new_materials.get(root_material_id, root_material_id) - material_node = machine_node.variants[extruder_stack.variant.getName()].materials[root_material_id] + available_materials = machine_node.variants[extruder_stack.variant.getName()].materials + if root_material_id not in available_materials: + continue + material_node = available_materials[root_material_id] extruder_stack.material = material_node.container def _clearMachineSettings(self, global_stack, extruder_stack_dict): From cf61a78fbffa080d0cf38721fea189c1b627c2dc Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Thu, 28 Mar 2024 17:16:42 +0100 Subject: [PATCH 748/765] Added enumname while reading ucp Added a connection in WorkspaceDialog.qml to call function whenever the 'exportedSettingModel' changes. This ensures that any changes in the model will now be reflected in the UI table. Furthermore, an added adjustment in SpecificSettingsModel.py now correctly handles the enum type settings, retrieving the correct value from the options list. CURA-11783 --- plugins/3MFReader/SpecificSettingsModel.py | 4 ++++ plugins/3MFReader/WorkspaceDialog.qml | 10 ++++++++++ 2 files changed, 14 insertions(+) diff --git a/plugins/3MFReader/SpecificSettingsModel.py b/plugins/3MFReader/SpecificSettingsModel.py index af203ad759f..275b9c03ac2 100644 --- a/plugins/3MFReader/SpecificSettingsModel.py +++ b/plugins/3MFReader/SpecificSettingsModel.py @@ -33,6 +33,10 @@ def addSettingsFromStack(self, stack, category, settings): if setting_type is not None: # This is not very good looking, but will do for now value = str(SettingDefinition.settingValueToString(setting_type, value)) + " " + str(unit) + if setting_type == "enum": + options = stack.getProperty(setting, "options") + value = options[stack.getProperty(setting, "value")] + else: value = str(value) diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index eeb33da4c7b..adb070e8623 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -216,6 +216,16 @@ UM.Dialog headers: ["category", "label", "value"] rows: manager.exportedSettingModelItems } + + Connections + { + target: manager + function onExportedSettingModelChanged() + { + tableModel.clear() + tableModel.rows = manager.exportedSettingModelItems + } + } } } From 0d585f367fe8f4304b8988cdbbe6ede02460cb42 Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Thu, 28 Mar 2024 23:51:35 +0100 Subject: [PATCH 749/765] Reset entire scene around center for UCP. Since we can't rely on the build-volume --because we can't know on which printer we open-- the safest bet (and the thing alowed by 3mf if I recall) is to just center the entire scene on the buildplate for Universal Cura Project files. CURA-11703 --- plugins/3MFReader/ThreeMFWorkspaceReader.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py index 164952f9f18..6d7290cb9fa 100755 --- a/plugins/3MFReader/ThreeMFWorkspaceReader.py +++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py @@ -10,6 +10,8 @@ import xml.etree.ElementTree as ET +from UM.Math.AxisAlignedBox import AxisAlignedBox +from UM.Math.Vector import Vector from UM.Util import parseBool from UM.Workspace.WorkspaceReader import WorkspaceReader from UM.Application import Application @@ -936,6 +938,24 @@ def read(self, file_name): if nodes is None: nodes = [] + if self._is_ucp: + # We might be on a different printer than the one this project was made on. + # The offset to the printers' center isn't saved; instead, try to just fit everything on the buildplate. + full_extents = None # Don't initialize to 'Null'! + for node in nodes: + extents = node.getMeshData().getExtents() if node.getMeshData() else None + if extents is not None: + pos = node.getPosition() + node_box = AxisAlignedBox(extents.minimum + pos, extents.maximum + pos) + if full_extents is None: + full_extents = node_box + else: + full_extents = full_extents + node_box + if full_extents.isValid(): + for node in nodes: + pos = node.getPosition() + node.setPosition(Vector(pos.x - full_extents.center.x, pos.y, pos.z - full_extents.center.z)) + base_file_name = os.path.basename(file_name) self.setWorkspaceName(base_file_name) From 4c9b74edff087d9aea73cdf81699931767de0e42 Mon Sep 17 00:00:00 2001 From: Casper Lamboo Date: Fri, 29 Mar 2024 10:38:27 +0100 Subject: [PATCH 750/765] Remove unintuitive comment --- plugins/3MFReader/ThreeMFWorkspaceReader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py index 6d7290cb9fa..1962ba092a2 100755 --- a/plugins/3MFReader/ThreeMFWorkspaceReader.py +++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py @@ -941,7 +941,7 @@ def read(self, file_name): if self._is_ucp: # We might be on a different printer than the one this project was made on. # The offset to the printers' center isn't saved; instead, try to just fit everything on the buildplate. - full_extents = None # Don't initialize to 'Null'! + full_extents = None for node in nodes: extents = node.getMeshData().getExtents() if node.getMeshData() else None if extents is not None: From b2c0767165b978746472583a9b39aa07bd93b66f Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 29 Mar 2024 11:52:09 +0100 Subject: [PATCH 751/765] Add translations to enum values CURA-11783 --- plugins/3MFReader/SpecificSettingsModel.py | 12 ++++++++---- plugins/3MFWriter/SettingsExportModel.py | 6 +++++- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/plugins/3MFReader/SpecificSettingsModel.py b/plugins/3MFReader/SpecificSettingsModel.py index 275b9c03ac2..09efb453ed3 100644 --- a/plugins/3MFReader/SpecificSettingsModel.py +++ b/plugins/3MFReader/SpecificSettingsModel.py @@ -3,6 +3,7 @@ from PyQt6.QtCore import Qt, pyqtSignal +from UM import i18nCatalog from UM.Logger import Logger from UM.Settings.SettingDefinition import SettingDefinition from UM.Qt.ListModel import ListModel @@ -19,7 +20,7 @@ def __init__(self, parent = None): self.addRoleName(self.LabelRole, "label") self.addRoleName(self.ValueRole, "value") - self._i18n_catalog = None + self._i18n_catalog = i18nCatalog("cura") self._update() modelChanged = pyqtSignal() @@ -32,11 +33,14 @@ def addSettingsFromStack(self, stack, category, settings): setting_type = stack.getProperty(setting, "type") if setting_type is not None: # This is not very good looking, but will do for now - value = str(SettingDefinition.settingValueToString(setting_type, value)) + " " + str(unit) + value = str(SettingDefinition.settingValueToString(setting_type, value)) + if unit: + value += " " + str(unit) if setting_type == "enum": options = stack.getProperty(setting, "options") - value = options[stack.getProperty(setting, "value")] - + msgctxt = f"{str(setting)} option {str(value)}" + msgid = options[stack.getProperty(setting, "value")] + value = self._i18n_catalog.i18nc(msgctxt, msgid) else: value = str(value) diff --git a/plugins/3MFWriter/SettingsExportModel.py b/plugins/3MFWriter/SettingsExportModel.py index 0251a6c4fa1..e8e3e4a0dad 100644 --- a/plugins/3MFWriter/SettingsExportModel.py +++ b/plugins/3MFWriter/SettingsExportModel.py @@ -6,6 +6,7 @@ from PyQt6.QtCore import QObject, pyqtProperty +from UM import i18nCatalog from UM.Settings.SettingDefinition import SettingDefinition from UM.Settings.InstanceContainer import InstanceContainer from UM.Settings.SettingFunction import SettingFunction @@ -109,6 +110,7 @@ def settingsGroups(self) -> List[SettingsExportGroup]: @staticmethod def _exportSettings(settings_stack): + i18n_catalog = i18nCatalog("cura") user_settings_container = settings_stack.userChanges user_keys = user_settings_container.getAllKeys() exportable_settings = SettingsExportModel.EXPORTABLE_SETTINGS @@ -122,7 +124,9 @@ def _exportSettings(settings_stack): value = settings_stack.getProperty(setting_to_export, "value") unit = settings_stack.getProperty(setting_to_export, "unit") options = settings_stack.getProperty(setting_to_export, "options") - value_name = value if options == {} else options[value] + msgctxt = f"{setting_to_export} option {value}" + msgid = options.get(value, "") + value_name = i18n_catalog.i18nc(msgctxt, msgid) setting_type = settings_stack.getProperty(setting_to_export, "type") if setting_type is not None: From b2fea2c1b5d61110fe171c0946710f8a473c72da Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 29 Mar 2024 12:52:31 +0100 Subject: [PATCH 752/765] Point to correct catalog CURA-11783 --- plugins/3MFReader/SpecificSettingsModel.py | 4 ++-- plugins/3MFWriter/SettingsExportModel.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/3MFReader/SpecificSettingsModel.py b/plugins/3MFReader/SpecificSettingsModel.py index 09efb453ed3..b8c7ce0a96c 100644 --- a/plugins/3MFReader/SpecificSettingsModel.py +++ b/plugins/3MFReader/SpecificSettingsModel.py @@ -20,7 +20,7 @@ def __init__(self, parent = None): self.addRoleName(self.LabelRole, "label") self.addRoleName(self.ValueRole, "value") - self._i18n_catalog = i18nCatalog("cura") + self._settings_catalog = i18nCatalog("fdmprinter.def.json") self._update() modelChanged = pyqtSignal() @@ -40,7 +40,7 @@ def addSettingsFromStack(self, stack, category, settings): options = stack.getProperty(setting, "options") msgctxt = f"{str(setting)} option {str(value)}" msgid = options[stack.getProperty(setting, "value")] - value = self._i18n_catalog.i18nc(msgctxt, msgid) + value = self._settings_catalog.i18nc(msgctxt, msgid) else: value = str(value) diff --git a/plugins/3MFWriter/SettingsExportModel.py b/plugins/3MFWriter/SettingsExportModel.py index e8e3e4a0dad..b4442de196f 100644 --- a/plugins/3MFWriter/SettingsExportModel.py +++ b/plugins/3MFWriter/SettingsExportModel.py @@ -110,7 +110,7 @@ def settingsGroups(self) -> List[SettingsExportGroup]: @staticmethod def _exportSettings(settings_stack): - i18n_catalog = i18nCatalog("cura") + settings_catalog = i18nCatalog("fdmprinter.def.json") user_settings_container = settings_stack.userChanges user_keys = user_settings_container.getAllKeys() exportable_settings = SettingsExportModel.EXPORTABLE_SETTINGS @@ -126,7 +126,7 @@ def _exportSettings(settings_stack): options = settings_stack.getProperty(setting_to_export, "options") msgctxt = f"{setting_to_export} option {value}" msgid = options.get(value, "") - value_name = i18n_catalog.i18nc(msgctxt, msgid) + value_name = settings_catalog.i18nc(msgctxt, msgid) setting_type = settings_stack.getProperty(setting_to_export, "type") if setting_type is not None: From 0d01f7523e79d0fe2bb7bd643c11a5978b8aab49 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 29 Mar 2024 13:04:56 +0100 Subject: [PATCH 753/765] Also translate label CURA-11783 --- plugins/3MFReader/SpecificSettingsModel.py | 12 ++++++++---- plugins/3MFWriter/SettingsExportModel.py | 10 ++++++---- 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/plugins/3MFReader/SpecificSettingsModel.py b/plugins/3MFReader/SpecificSettingsModel.py index b8c7ce0a96c..1b1319d3915 100644 --- a/plugins/3MFReader/SpecificSettingsModel.py +++ b/plugins/3MFReader/SpecificSettingsModel.py @@ -38,15 +38,19 @@ def addSettingsFromStack(self, stack, category, settings): value += " " + str(unit) if setting_type == "enum": options = stack.getProperty(setting, "options") - msgctxt = f"{str(setting)} option {str(value)}" - msgid = options[stack.getProperty(setting, "value")] - value = self._settings_catalog.i18nc(msgctxt, msgid) + value_msgctxt = f"{str(setting)} option {str(value)}" + value_msgid = options[stack.getProperty(setting, "value")] + value = self._settings_catalog.i18nc(value_msgctxt, value_msgid) else: value = str(value) + label_msgctxt = f"{str(setting)} label" + label_msgid = stack.getProperty(setting, "label") + label = self._settings_catalog.i18nc(label_msgctxt, label_msgid) + self.appendItem({ "category": category, - "label": stack.getProperty(setting, "label"), + "label": label, "value": value }) self.modelChanged.emit() diff --git a/plugins/3MFWriter/SettingsExportModel.py b/plugins/3MFWriter/SettingsExportModel.py index b4442de196f..b0bb54a6a25 100644 --- a/plugins/3MFWriter/SettingsExportModel.py +++ b/plugins/3MFWriter/SettingsExportModel.py @@ -120,13 +120,15 @@ def _exportSettings(settings_stack): for setting_to_export in user_keys: show_in_menu = setting_to_export not in SettingsExportModel.PER_MODEL_EXPORTABLE_SETTINGS_KEYS - label = settings_stack.getProperty(setting_to_export, "label") + label_msgtxt = settings_stack.getProperty(setting_to_export, "label") + label_msgid = f"{str(setting_to_export)} label" + label = settings_catalog.i18nc(label_msgtxt, label_msgid) value = settings_stack.getProperty(setting_to_export, "value") unit = settings_stack.getProperty(setting_to_export, "unit") options = settings_stack.getProperty(setting_to_export, "options") - msgctxt = f"{setting_to_export} option {value}" - msgid = options.get(value, "") - value_name = settings_catalog.i18nc(msgctxt, msgid) + value_msgctxt = f"{setting_to_export} option {value}" + value_msgid = options.get(value, "") + value_name = settings_catalog.i18nc(value_msgctxt, value_msgid) setting_type = settings_stack.getProperty(setting_to_export, "type") if setting_type is not None: From 5301233322408e8d0435221b08cbfc8a94586ff1 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 29 Mar 2024 14:13:06 +0100 Subject: [PATCH 754/765] Fix label in save ucp CURA-11783 --- plugins/3MFWriter/SettingsExportModel.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/3MFWriter/SettingsExportModel.py b/plugins/3MFWriter/SettingsExportModel.py index b0bb54a6a25..0ee8885adaf 100644 --- a/plugins/3MFWriter/SettingsExportModel.py +++ b/plugins/3MFWriter/SettingsExportModel.py @@ -120,13 +120,13 @@ def _exportSettings(settings_stack): for setting_to_export in user_keys: show_in_menu = setting_to_export not in SettingsExportModel.PER_MODEL_EXPORTABLE_SETTINGS_KEYS - label_msgtxt = settings_stack.getProperty(setting_to_export, "label") - label_msgid = f"{str(setting_to_export)} label" + label_msgtxt = f"{str(setting_to_export)} label" + label_msgid = settings_stack.getProperty(setting_to_export, "label") label = settings_catalog.i18nc(label_msgtxt, label_msgid) value = settings_stack.getProperty(setting_to_export, "value") unit = settings_stack.getProperty(setting_to_export, "unit") options = settings_stack.getProperty(setting_to_export, "options") - value_msgctxt = f"{setting_to_export} option {value}" + value_msgctxt = f"{str(setting_to_export)} option {str(value)}" value_msgid = options.get(value, "") value_name = settings_catalog.i18nc(value_msgctxt, value_msgid) From 600f5cdaf649e75c748a7216b4b8eb3f5df0f1df Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 29 Mar 2024 16:23:38 +0100 Subject: [PATCH 755/765] Fix opening empty ucp files CURA-11703 --- plugins/3MFReader/ThreeMFWorkspaceReader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py index 6c33f652d97..3769db4d146 100755 --- a/plugins/3MFReader/ThreeMFWorkspaceReader.py +++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py @@ -951,7 +951,7 @@ def read(self, file_name): full_extents = node_box else: full_extents = full_extents + node_box - if full_extents.isValid(): + if full_extents and full_extents.isValid(): for node in nodes: pos = node.getPosition() node.setPosition(Vector(pos.x - full_extents.center.x, pos.y, pos.z - full_extents.center.z)) From b3d3c4d00a0bbe58cb56fd40cba59c98062ebc35 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Sat, 30 Mar 2024 16:16:27 +0100 Subject: [PATCH 756/765] Remove almost duplicate file CURA-11800 --- resources/qml/Cura.qml | 60 ++++-------- .../AskOpenAsProjectOrModelsDialog.qml | 17 +++- .../AskOpenAsProjectOrUcpOrImportModel.qml | 91 ------------------- 3 files changed, 33 insertions(+), 135 deletions(-) delete mode 100644 resources/qml/Dialogs/AskOpenAsProjectOrUcpOrImportModel.qml diff --git a/resources/qml/Cura.qml b/resources/qml/Cura.qml index 678bf85c974..77efc45fe8a 100644 --- a/resources/qml/Cura.qml +++ b/resources/qml/Cura.qml @@ -702,32 +702,23 @@ UM.MainWindow if (hasProjectFile) { var projectFile = projectFileUrlList[0] - var is_ucp = CuraApplication.isProjectUcp(projectFile); - if (is_ucp) + // check preference + var choice = UM.Preferences.getValue("cura/choice_on_open_project"); + if (choice == "open_as_project") { - askOpenAsProjectOrUcpOrImportModelsDialog.fileUrl = projectFile; - askOpenAsProjectOrUcpOrImportModelsDialog.addToRecent = true; - askOpenAsProjectOrUcpOrImportModelsDialog.show(); + openFilesIncludingProjectsDialog.loadProjectFile(projectFile); } - else + else if (choice == "open_as_model") { - // check preference - var choice = UM.Preferences.getValue("cura/choice_on_open_project"); - if (choice == "open_as_project") - { - openFilesIncludingProjectsDialog.loadProjectFile(projectFile); - } - else if (choice == "open_as_model") - { - openFilesIncludingProjectsDialog.loadModelFiles([projectFile].slice()); - } - else // always ask - { - // ask whether to open as project or as models - askOpenAsProjectOrModelsDialog.fileUrl = projectFile; - askOpenAsProjectOrModelsDialog.addToRecent = true; - askOpenAsProjectOrModelsDialog.show(); - } + openFilesIncludingProjectsDialog.loadModelFiles([projectFile].slice()); + } + else // always ask + { + // ask whether to open as project or as models + askOpenAsProjectOrModelsDialog.is_ucp = CuraApplication.isProjectUcp(projectFile); + askOpenAsProjectOrModelsDialog.fileUrl = projectFile; + askOpenAsProjectOrModelsDialog.addToRecent = true; + askOpenAsProjectOrModelsDialog.show(); } } else @@ -778,30 +769,15 @@ UM.MainWindow id: askOpenAsProjectOrModelsDialog } - AskOpenAsProjectOrUcpOrImportModel - { - id: askOpenAsProjectOrUcpOrImportModelsDialog - } - Connections { target: CuraApplication function onOpenProjectFile(project_file, add_to_recent_files) { - var is_ucp = CuraApplication.isProjectUcp(project_file); - if (is_ucp) - { - - askOpenAsProjectOrUcpOrImportModelsDialog.fileUrl = project_file; - askOpenAsProjectOrUcpOrImportModelsDialog.addToRecent = add_to_recent_files; - askOpenAsProjectOrUcpOrImportModelsDialog.show(); - } - else - { - askOpenAsProjectOrModelsDialog.fileUrl = project_file; - askOpenAsProjectOrModelsDialog.addToRecent = add_to_recent_files; - askOpenAsProjectOrModelsDialog.show(); - } + askOpenAsProjectOrModelsDialog.is_ucp = CuraApplication.isProjectUcp(project_file); + askOpenAsProjectOrModelsDialog.fileUrl = project_file; + askOpenAsProjectOrModelsDialog.addToRecent = add_to_recent_files; + askOpenAsProjectOrModelsDialog.show(); } } diff --git a/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml b/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml index cac23d34c1a..28784f5f822 100644 --- a/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml +++ b/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml @@ -14,7 +14,9 @@ UM.Dialog // This dialog asks the user whether he/she wants to open a project file as a project or import models. id: base - title: catalog.i18nc("@title:window", "Open project file") + title: base.is_ucp + ? catalog.i18nc("@title:window Don't translate 'Universal Cura Project'", "Open Universal Cura Project (UCP) file") + : catalog.i18nc("@title:window", "Open project file") width: UM.Theme.getSize("small_popup_dialog").width height: UM.Theme.getSize("small_popup_dialog").height backgroundColor: UM.Theme.getColor("main_background") @@ -28,6 +30,7 @@ UM.Dialog property var fileUrl property var addToRecent: true //Whether to add this file to the recent files list after reading it. + property bool is_ucp: false // load the entire project function loadProjectFile() { @@ -81,7 +84,9 @@ UM.Dialog { id: questionText width: parent.width - text: catalog.i18nc("@text:window", "This is a Cura project file. Would you like to open it as a project or import the models from it?") + text: base.is_ucp + ? catalog.i18nc("@text:window", "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?") + : catalog.i18nc("@text:window", "This is a Cura project file. Would you like to open it as a project or import the models from it?") wrapMode: Text.WordWrap } @@ -100,10 +105,18 @@ UM.Dialog rightButtons: [ + Cura.PrimaryButton + { + text: catalog.i18nc("@action:button", "Open as UCP") + iconSource: UM.Theme.getIcon("CuraShareIcon") + onClicked: loadProjectFile() + visible: base.is_ucp + }, Cura.PrimaryButton { text: catalog.i18nc("@action:button", "Open as project") onClicked: loadProjectFile() + visible: !base.is_ucp }, Cura.SecondaryButton { diff --git a/resources/qml/Dialogs/AskOpenAsProjectOrUcpOrImportModel.qml b/resources/qml/Dialogs/AskOpenAsProjectOrUcpOrImportModel.qml deleted file mode 100644 index 70e8e5740d6..00000000000 --- a/resources/qml/Dialogs/AskOpenAsProjectOrUcpOrImportModel.qml +++ /dev/null @@ -1,91 +0,0 @@ -// Copyright (c) 2022 Ultimaker B.V. -// Cura is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.2 -import QtQuick.Controls 2.1 -import QtQuick.Layouts 1.1 - -import UM 1.5 as UM -import Cura 1.0 as Cura - - -UM.Dialog -{ - // This dialog asks the user whether he/she wants to open a project file as a project or import models. - id: base - - title: catalog.i18nc("@title:window Don't translate 'Universal Cura Project'", "Open Universal Cura Project (UCP) file") - width: UM.Theme.getSize("small_popup_dialog").width - height: UM.Theme.getSize("small_popup_dialog").height - backgroundColor: UM.Theme.getColor("main_background") - - maximumHeight: height - maximumWidth: width - minimumHeight: maximumHeight - minimumWidth: maximumWidth - - modality: Qt.WindowModal - - property var fileUrl - property var addToRecent: true //Whether to add this file to the recent files list after reading it. - - - // load the project file as separated models - function loadModelFiles() { - CuraApplication.readLocalFile(base.fileUrl, "open_as_model", base.addToRecent) - - base.hide() - } - - // load the project file as Universal cura project - function loadUcpFiles() { - CuraApplication.readLocalUcpFile(base.fileUrl, base.addToRecent) - - base.hide() - } - - // override UM.Dialog accept - function accept () { - - // when hitting 'enter', we always open as project unless open_as_model was explicitly stored as preference - if (openAsPreference == "open_as_model") { - loadModelFiles() - } else{ - loadUcpFiles() - } - } - - Column - { - anchors.fill: parent - spacing: UM.Theme.getSize("default_margin").height - - UM.Label - { - id: questionText - width: parent.width - text: catalog.i18nc("@text:window", "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?") - wrapMode: Text.WordWrap - } - } - - onAccepted: loadUcpFile() - onRejected: loadModelFiles() - - buttonSpacing: UM.Theme.getSize("thin_margin").width - - rightButtons: - [ - Cura.PrimaryButton - { - text: catalog.i18nc("@action:button", "Open as UCP") - iconSource: UM.Theme.getIcon("CuraShareIcon") - onClicked: loadUcpFiles() - }, - Cura.SecondaryButton - { - text: catalog.i18nc("@action:button", "Import models") - onClicked: loadModelFiles() - } - ] -} From 40b9f2b909838e7abee84d8403def45e6b4fc514 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Sat, 30 Mar 2024 16:36:07 +0100 Subject: [PATCH 757/765] Change modal type to `ApplicationModal` this was causing issues on mac. You can only have a single `modal` open at all time. Some how mac though a modal was still open (event after it was being closed) and refused to open other dialogs (like file dialogs) CURA-11800 --- resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml | 2 +- resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml b/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml index 28784f5f822..cb1eca6373f 100644 --- a/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml +++ b/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml @@ -26,7 +26,7 @@ UM.Dialog minimumHeight: maximumHeight minimumWidth: maximumWidth - modality: Qt.WindowModal + modality: Qt.ApplicationModal property var fileUrl property var addToRecent: true //Whether to add this file to the recent files list after reading it. diff --git a/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml b/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml index 18891cebeee..3639122280a 100644 --- a/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml +++ b/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml @@ -22,7 +22,7 @@ UM.Dialog minimumHeight: height minimumWidth: width - modality: Qt.WindowModal + modality: Qt.ApplicationModal property var fileUrls: [] property var addToRecent: true From 479d4d0062712e7c75cf2cd3610274d5617709df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A1udio=20=27Patola=27=20Sampaio?= Date: Tue, 2 Apr 2024 02:34:34 +0200 Subject: [PATCH 758/765] Updated pt_BR strings for Cura 5.7 --- resources/i18n/pt_BR/cura.po | 108 +++++++-------- resources/i18n/pt_BR/fdmextruder.def.json.po | 12 +- resources/i18n/pt_BR/fdmprinter.def.json.po | 128 +++++++++--------- .../pt_BR/gradual_flow_settings.def.json.po | 29 ++-- 4 files changed, 141 insertions(+), 136 deletions(-) diff --git a/resources/i18n/pt_BR/cura.po b/resources/i18n/pt_BR/cura.po index 50157a02e35..a20b8755235 100644 --- a/resources/i18n/pt_BR/cura.po +++ b/resources/i18n/pt_BR/cura.po @@ -1,14 +1,14 @@ -# Cura -# Copyright (C) 2022 UltiMaker. -# This file is distributed under the same license as the Cura package. -# Ultimaker , 2022. -# +# Cura +# Copyright (C) 2022 UltiMaker. +# This file is distributed under the same license as the Cura package. +# Ultimaker , 2022. +# msgid "" msgstr "" "Project-Id-Version: Cura 5.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-03-13 09:02+0100\n" -"PO-Revision-Date: 2023-11-19 19:51+0100\n" +"PO-Revision-Date: 2024-04-02 02:31+0200\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" "Language: pt_BR\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.4.1\n" +"X-Generator: Poedit 3.4.2\n" #, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." @@ -125,7 +125,7 @@ msgstr "&Salvar Projeto..." msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" msgid "&Save Universal Cura Project..." -msgstr "" +msgstr "@Salvar Universal Cura Project..." msgctxt "@title:menu menubar:toplevel" msgid "&Settings" @@ -273,7 +273,7 @@ msgstr[1] "Conexão de nuvem não está disponível para algumas impressoras" msgctxt "@text" msgid "A highly dense and strong part but at a slower print time. Great for functional parts." -msgstr "" +msgstr "Uma parte muito densa e forte mas com tempo de impressão maior. Ótimo para partes funcionais." msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." @@ -511,7 +511,7 @@ msgstr "Anônimo" msgctxt "@option:radio" msgid "Anonymous crash reports" -msgstr "" +msgstr "Relatórios de falhas anônimos" msgctxt "@label Description for application component" msgid "Application framework" @@ -519,7 +519,7 @@ msgstr "Framework de Aplicações" msgctxt "@title:column" msgid "Applies on" -msgstr "" +msgstr "Se aplica a" msgctxt "@label" msgid "Apply Extruder offsets to GCode" @@ -709,7 +709,7 @@ msgstr "Calculado" msgctxt "@window:text" msgid "Camera navigation:" -msgstr "" +msgstr "Navegação de câmera:" msgctxt "@window:text" msgid "Camera rendering:" @@ -1448,7 +1448,7 @@ msgstr "Rascunho" msgctxt "@action:inmenu menubar:edit" msgid "Drop All Models to buildplate" -msgstr "" +msgstr "Largar Todos os Modelos na plataforma de impressão" msgctxt "@action:button" msgid "Duplicate" @@ -1578,7 +1578,7 @@ msgstr "Exportar Seleção..." msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Export Universal Cura Project" -msgstr "" +msgstr "Exportar Universal Cura Project" msgctxt "@button" msgid "Export material archive" @@ -1615,7 +1615,7 @@ msgstr "G-Code Final do Extrusor" msgctxt "@label" msgid "Extruder End G-code duration" -msgstr "" +msgstr "Duração do G-code Final do Extrusor" msgctxt "@title:label" msgid "Extruder Start G-code" @@ -1623,12 +1623,12 @@ msgstr "G-Code Inicial do Extrusor" msgctxt "@label" msgid "Extruder Start G-code duration" -msgstr "" +msgstr "Duração do G-code Inicial do Extrusor" #, python-brace-format msgctxt "@label" msgid "Extruder {0}" -msgstr "" +msgstr "Extrusor {0}" msgctxt "@info:title" msgid "Extruder(s) Disabled" @@ -1699,7 +1699,7 @@ msgstr "Falha em salvar o arquivo de materiais" #, python-brace-format msgctxt "@info:status" msgid "Failed writing to specific cloud printer: {0} not in remote clusters." -msgstr "" +msgstr "Falha ao escrever em impressora de nuvem específica: {0} não presente nos clusters remotos." msgctxt "@label:category menu label" msgid "Favorites" @@ -1843,7 +1843,7 @@ msgid "Force layer view compatibility mode (restart required)" msgstr "Forçar modo de compatibilidade da visão de camadas (requer reinício)" msgid "FreeCAD trackpad" -msgstr "" +msgstr "Trackpad do FreeCAD" msgctxt "@action:inmenu menubar:view" msgid "Front View" @@ -1935,7 +1935,7 @@ msgstr "Começar" msgctxt "@label" msgid "Global" -msgstr "" +msgstr "Global" msgctxt "@title:tab" msgid "Global Settings" @@ -1988,7 +1988,7 @@ msgstr "Omitir todas as impressoras conectadas" msgctxt "@action:button" msgid "Hide settings" -msgstr "" +msgstr "Omitir ajustes" msgctxt "@action:menu" msgid "Hide this setting" @@ -2068,7 +2068,7 @@ msgstr "Para usar o pacote você precisará reiniciar o Cura" msgctxt "@option:radio" msgid "Include UltiMaker account name" -msgstr "" +msgstr "Incluir nome de conta da Ultimaker" msgctxt "@label" msgid "Infill" @@ -2775,7 +2775,7 @@ msgstr "Não há resultados encontrados com o filtro atual" msgctxt "@label" msgid "No specific value has been set" -msgstr "" +msgstr "Nenhum valor específico foi definido" msgctxt "@label" msgid "No time estimation available" @@ -2880,7 +2880,7 @@ msgstr "Somente um arquivo G-Code pode ser carregado por vez. Pulando importaç msgctxt "@message" msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." -msgstr "" +msgstr "Oops! Encontramos um erro inesperado durante seu processo de fatiamento. Esteja assegurado que automaticamente recebemos os registros de falha para análise se você não disabilitou compartilhamento de dados nas suas preferências. Para nos assistir melhor, considere compartilhar detalhes do seu projeto em nosso rastreador de problemas." msgctxt "@action:button" msgid "Open" @@ -2912,11 +2912,11 @@ msgstr "Abrir Arquivo de Projeto" msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Open Universal Cura Project (UCP)" -msgstr "" +msgstr "Abrir Universal Cura Project (UCP)" msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Open Universal Cura Project (UCP) file" -msgstr "" +msgstr "Abrir arquivo de Universal Cura Project (UCP)" msgctxt "@action:label" msgid "Open With" @@ -2924,7 +2924,7 @@ msgstr "Abrir Com" msgctxt "@action:button" msgid "Open as UCP" -msgstr "" +msgstr "Abrir como UCP" msgctxt "@action:button" msgid "Open as project" @@ -3144,7 +3144,7 @@ msgstr "Por favor se logue para adquirir complementos e materiais verificados pa msgctxt "@info:tooltip" msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." -msgstr "" +msgstr "Por favor se conecte à sua conta Ultimaker para permitir o envio de dados não-anônimos." msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." @@ -3557,7 +3557,7 @@ msgstr "Provê suporta a ler arquivos de modelo." msgctxt "description" msgid "Provides support for writing 3MF and UCP files." -msgstr "" +msgstr "Provê suporte a escrever arquivos 3MF e UCP." msgctxt "description" msgid "Provides support for writing MakerBot Format Packages." @@ -3802,11 +3802,11 @@ msgstr "Salvar o projeto Cura" msgctxt "@option" msgid "Save Cura project and .makerbot print file" -msgstr "" +msgstr "Salvar projeto do Cura e arquivo de impressão .makerbot" msgctxt "@option" msgid "Save Cura project and .ufp print file" -msgstr "" +msgstr "Salvar projeto Cura e arquivo de impressão .ufp" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3834,7 +3834,7 @@ msgstr "Salvar novo perfil" msgctxt "@action:button" msgid "Save project" -msgstr "" +msgstr "Salvar projeto" msgctxt "@text" msgid "Save the .umm file on a USB stick." @@ -3941,15 +3941,15 @@ msgstr "Enviar relatório de falha à UltiMaker" msgctxt "@info:tooltip" msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." -msgstr "" +msgstr "Enviar relatórios de falha com sua conta registrado na Ultimaker e o nome do projeto para o Ultimaker Sentry. Nenhum dado real do modelo é enviado." msgctxt "@info:tooltip" msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." -msgstr "" +msgstr "Enviar relatórios de falha sem qualquer informação ou dados de modelos pessoalmente identificável para a Ultimaker." msgctxt "@option:check" msgid "Send engine crash reports" -msgstr "" +msgstr "Enviar relatórios de falha do engine" msgctxt "@action:button" msgid "Send report" @@ -4005,7 +4005,7 @@ msgstr "Ajustes" msgctxt "@action:label" msgid "Settings Loaded from UCP file" -msgstr "" +msgstr "Ajustes carregados do arquivo UCP" msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" @@ -4077,7 +4077,7 @@ msgstr "Arquivos da área de trabalho ou de aplicações externas devem ser aber msgctxt "@info:tooltip" msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." -msgstr "" +msgstr "Devem falhas de fatiamento serem automaticamente relatadas à Ultimaker? Nota, nenhum dado de modelos, endereços IP ou outros tipos de informação pessoalmente identificável é enviada ou armazenada a não ser que você dê permissão explícita." msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" @@ -4137,7 +4137,7 @@ msgstr "Exibir relatório de falha detalhado" msgctxt "@action:button" msgid "Show settings" -msgstr "" +msgstr "Exibir ajustes" msgctxt "@option:check" msgid "Show summary dialog when saving project" @@ -4225,7 +4225,7 @@ msgstr "Suavização" msgctxt "@label" msgid "Solid" -msgstr "" +msgstr "Sólido" msgctxt "name" msgid "Solid View" @@ -4354,11 +4354,11 @@ msgstr "Perfil {0} importado com sucesso." msgctxt "@action:label" msgid "Suggested Material settings" -msgstr "" +msgstr "Ajustes sugeridos de Material" msgctxt "@action:label" msgid "Suggested Profile settings" -msgstr "" +msgstr "Ajustes sugeridos de Perfil" msgctxt "@action:title" msgid "Summary - Cura Project" @@ -4366,11 +4366,11 @@ msgstr "Resumo - Projeto do Cura" msgctxt "@action:title Don't translate 'Universal Cura Project'" msgid "Summary - Open Universal Cura Project (UCP)" -msgstr "" +msgstr "Resumo - Abrir Universal Cura Project (UCP)" msgctxt "@action:title Don't translate 'Universal Cura Project'" msgid "Summary - Universal Cura Project" -msgstr "" +msgstr "Resumo - Universal Cura Project" msgctxt "@label" msgid "Support" @@ -4753,7 +4753,7 @@ msgstr "Esta configuração não está disponível porque %1 não foi reconhecid msgctxt "@text:window" msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" -msgstr "" +msgstr "Este é um arquivo de projeto Universal do Cura. Você gostaria de abri-lo como um projeto do Cura, ou Cura Universal Project, ou importar os modelos dele?" msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" @@ -4846,11 +4846,11 @@ msgstr "Este ajuste é resolvido dos valores conflitante específicos de extruso msgctxt "@tooltip Don't translate 'Universal Cura Project'" msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." -msgstr "" +msgstr "Este ajuste pode não ter bom desempenho ao exportar para Universal Cura Project, Usuários devem adicioná-lo assumindo o risco." msgctxt "@tooltip Don't translate 'Universal Cura Project'" msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." -msgstr "" +msgstr "Este ajuste pode não ter bom desempenho ao exportar para Universal Cura Projecto. Usuários devem adicioná-lo assumindo o risco." msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" @@ -5086,7 +5086,7 @@ msgstr "Não foi possível iniciar processo de login. Verifique se outra tentati #, python-brace-format msgctxt "@info:error" msgid "Unable to write to file: {0}" -msgstr "" +msgstr "Não foi possível escrever para arquivo: {0}" msgctxt "@label:status" msgid "Unavailable" @@ -5110,11 +5110,13 @@ msgstr "Unidade" msgctxt "@item:inlistbox" msgid "Universal Cura Project" -msgstr "" +msgstr "Universal Cura Project" msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" +"Arquivos Universal Cura Project podem ser impressos em impressoras 3D diferentes enquanto retêm dados posicionais e ajustes selecionados. Quando exportados, todos os modelos presentes na plataforma de impressão serão incluídos juntamente à sua posição, orientação e escala atuais. Você pode também selecionar quais ajustes por extrusor ou por modelo devem ser " +"incluídos para assegurar impressão apropriada." msgctxt "@label Description for development tool" msgid "Universal build system configuration" @@ -5307,7 +5309,7 @@ msgstr "Atualiza configurações do Cura 5.4 para o Cura 5.5." msgctxt "description" msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." -msgstr "" +msgstr "Atualiza configurações do Cura 5.6 para o Cura 5.7." msgctxt "@action:button" msgid "Upload custom Firmware" @@ -5343,7 +5345,7 @@ msgstr "Biblioteca de utilidade, incluindo geração Voronoi" msgctxt "@title:column" msgid "Value" -msgstr "" +msgstr "Valor" msgctxt "name" msgid "Version Upgrade 2.1 to 2.2" @@ -5451,7 +5453,7 @@ msgstr "Atualização de Versão de 5.4 para 5.5" msgctxt "name" msgid "Version Upgrade 5.6 to 5.7" -msgstr "" +msgstr "Atualização de Versão de 5.6 para 5.7" msgctxt "@button" msgid "View printers in Digital Factory" @@ -5532,7 +5534,7 @@ msgstr "Que impressora você gostaria de configurar?" msgctxt "@info:tooltip" msgid "What type of camera navigation should be used?" -msgstr "" +msgstr "Que tipo de navegação de câmera deve ser usada?" msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" @@ -5749,7 +5751,7 @@ msgstr "mm" msgctxt "@label" msgid "s" -msgstr "" +msgstr "s" msgctxt "@info:status" msgid "today" diff --git a/resources/i18n/pt_BR/fdmextruder.def.json.po b/resources/i18n/pt_BR/fdmextruder.def.json.po index 2df12e0e9bd..09f8e204252 100644 --- a/resources/i18n/pt_BR/fdmextruder.def.json.po +++ b/resources/i18n/pt_BR/fdmextruder.def.json.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" "POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: 2021-04-11 17:09+0200\n" +"PO-Revision-Date: 2024-04-01 22:39+0200\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" "Language: pt_BR\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 2.4.1\n" +"X-Generator: Poedit 3.4.2\n" msgctxt "platform_adhesion description" msgid "Adhesion" @@ -47,7 +47,7 @@ msgstr "G-Code Final do Extrusor" msgctxt "machine_extruder_end_code_duration label" msgid "Extruder End G-Code Duration" -msgstr "" +msgstr "Duração de G-Code Final do Extrusor" msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" @@ -83,7 +83,7 @@ msgstr "G-Code Inicial do Extrusor" msgctxt "machine_extruder_start_code_duration label" msgid "Extruder Start G-Code Duration" -msgstr "" +msgstr "Duração de G-Code Inicial do Extrusor" msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" @@ -171,11 +171,11 @@ msgstr "O número da ventoinha de refrigeração da impressão associada a este msgctxt "machine_extruder_end_code_duration description" msgid "The time it takes to execute the end g-code, when switching away from this extruder." -msgstr "" +msgstr "O tempo que se deve levar para executar o g-code final ao alternar deste extrusor." msgctxt "machine_extruder_start_code_duration description" msgid "The time it'll take to execute the start g-code, when switching to this extruder." -msgstr "" +msgstr "O tempo que se deve levar para executar o g-code inicial ao alternar para este extrusor." msgctxt "machine_extruder_end_pos_x description" msgid "The x-coordinate of the ending position when turning the extruder off." diff --git a/resources/i18n/pt_BR/fdmprinter.def.json.po b/resources/i18n/pt_BR/fdmprinter.def.json.po index 1fe85a5738d..9f1ed4f14ef 100644 --- a/resources/i18n/pt_BR/fdmprinter.def.json.po +++ b/resources/i18n/pt_BR/fdmprinter.def.json.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 5.0\n" +"Project-Id-Version: Cura 5.7\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" "POT-Creation-Date: 2024-03-12 15:10+0000\n" -"PO-Revision-Date: 2023-11-22 17:17+0100\n" +"PO-Revision-Date: 2024-04-02 02:04+0200\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" "Language: pt_BR\n" @@ -15,15 +15,15 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.4.1\n" +"X-Generator: Poedit 3.4.2\n" msgctxt "prime_tower_mode description" msgid "How to generate the prime tower:

                                      " -msgstr "" +msgstr "Como gerar a torre de purga:
                                      • Normal: cria-se um balde em que materiais secundários são purgados
                                      • Intercalados: cria-se uma torre de purga tão esparsa quanto possível. Isto salvará material e filamento, mas só é praticável se os materiais aderirem entre si
                                      " msgctxt "brim_inside_margin description" msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." -msgstr "" +msgstr "O brim em volta de um modelo pode tocar outro modelo onde você não deseja. Isto remove todo o brim dentro desta distância de modelos sem brim." msgctxt "ironing_inset description" msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." @@ -163,7 +163,7 @@ msgstr "Todos os ajustes que influenciam a resolução da impressão. Estes ajus msgctxt "user_defined_print_order_enabled description" msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." -msgstr "" +msgstr "Permite que você ordene a lista de objetos de forma a manualmente definir a sequência de impressão. O primeiro objeto da lista será impresso primeiro." msgctxt "alternate_extra_perimeter label" msgid "Alternate Extra Wall" @@ -415,7 +415,7 @@ msgstr "Brim" msgctxt "brim_inside_margin label" msgid "Brim Avoid Margin" -msgstr "" +msgstr "Margem de Prevenção de Brim" msgctxt "brim_gap label" msgid "Brim Distance" @@ -427,7 +427,7 @@ msgstr "Contagem de Linhas do Brim" msgctxt "brim_location label" msgid "Brim Location" -msgstr "" +msgstr "Localização do Brim" msgctxt "brim_replaces_support label" msgid "Brim Replaces Support" @@ -471,11 +471,11 @@ msgstr "Temperatura do Volume de Impressão" msgctxt "bv_temp_anomaly_limit label" msgid "Build Volume temperature Limit" -msgstr "" +msgstr "Limite de temperature do Volume de Construção" msgctxt "bv_temp_warn_limit label" msgid "Build Volume temperature Warning" -msgstr "" +msgstr "Aviso de temperatura do Volume de Construção" msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." @@ -891,7 +891,7 @@ msgstr "Habilitar Refrigeração de Impressão" msgctxt "ppr_enable label" msgid "Enable Print Process Reporting" -msgstr "" +msgstr "Habilitar Relatório de Processo de Impressão" msgctxt "retraction_enable label" msgid "Enable Retraction" @@ -927,7 +927,7 @@ msgstr "Habilita a cobertura exterior de escorrimento. Isso criará uma casca ou msgctxt "ppr_enable description" msgid "Enable print process reporting for setting threshold values for possible fault detection." -msgstr "" +msgstr "Habilita relatório de processo de impressão para definir valores-limite para possível detecção de falhas." msgctxt "small_skin_on_surface description" msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." @@ -963,7 +963,7 @@ msgstr "Força que o brim seja impresso em volta do modelo mesmo se este espaço msgctxt "brim_location option everywhere" msgid "Everywhere" -msgstr "" +msgstr "Em Todo Lugar" msgctxt "support_type option everywhere" msgid "Everywhere" @@ -1071,7 +1071,7 @@ msgstr "Raio de Equalização de Fluxo" msgctxt "flow_anomaly_limit label" msgid "Flow Limit" -msgstr "" +msgstr "Limite de Fluxo" msgctxt "flow_rate_extrusion_offset_factor label" msgid "Flow Rate Compensation Factor" @@ -1087,7 +1087,7 @@ msgstr "Gráfico de Fluxo de Temperatura" msgctxt "flow_warn_limit label" msgid "Flow Warning" -msgstr "" +msgstr "Aviso de Fluxo" msgctxt "material_flow_layer_0 description" msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." @@ -1483,7 +1483,7 @@ msgstr "Se for detectado que a cabeça de impressão estaria alternando em rápi msgctxt "raft_base_margin description" msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgstr "Se a base do raft estiver habilitada, esta é a área de raft extra em torno do modelo que também a terá. Aumentar esta margem criará um raft mais forte mas também usará mais material e deixará uma área menor para sua impressão." msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." @@ -1491,11 +1491,11 @@ msgstr "Se o Raft estiver habilitado, esta é a área extra do raft em volta do msgctxt "raft_interface_margin description" msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgstr "Se o meio do raft estiver habilitado, esta será a área extra de raft em torno do modelo que também o terá. Aumentar esta margem criará um raft mais forte mas também usará mais material e deixará uma área menor para a sua impressão." msgctxt "raft_surface_margin description" msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "" +msgstr "Se o topo do raft estiver habilitado, esta é a área extra de raft em torno do modelo que também o terá. Aumentar esta margem criará um raft mais forte mas usará mais material e deixará menos área para sua impressão." msgctxt "meshfix_union_all description" msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." @@ -1727,7 +1727,7 @@ msgstr "Penetração adicional aplicada ao caminho da parede externa. Se a pared msgctxt "brim_location option inside" msgid "Inside Only" -msgstr "" +msgstr "Dentro Somente" msgctxt "inset_direction option inside_out" msgid "Inside To Outside" @@ -1743,7 +1743,7 @@ msgstr "Interface preferida" msgctxt "prime_tower_mode option interleaved" msgid "Interleaved" -msgstr "" +msgstr "Intercalado" msgctxt "interlocking_beam_layer_count label" msgid "Interlocking Beam Layer Count" @@ -1887,27 +1887,27 @@ msgstr "Limita quão longe cada galho deve percorrer do ponto que ele suporta. I msgctxt "bv_temp_warn_limit description" msgid "Limit on Build Volume Temperature warning for detection." -msgstr "" +msgstr "Limite do aviso de Temperatura de Volume de Construção para detecção." msgctxt "bv_temp_anomaly_limit description" msgid "Limit on Build Volume temperature Anomaly for detection." -msgstr "" +msgstr "Limite da Anomalia da temperatura de Volume de Construção para detecção." msgctxt "print_temp_anomaly_limit description" msgid "Limit on Print Temperature anomaly for detection." -msgstr "" +msgstr "Limite da anomalia da Temperatura de Construção para detecção." msgctxt "print_temp_warn_limit description" msgid "Limit on Print temperature warning for detection." -msgstr "" +msgstr "Limite do aviso de temperatura de Impressão para detecção." msgctxt "flow_anomaly_limit description" msgid "Limit on flow anomaly for detection." -msgstr "" +msgstr "Limite da anomalia de fluxo para detecção." msgctxt "flow_warn_limit description" msgid "Limit on the flow warning for detection." -msgstr "" +msgstr "Limite do aviso de fluxo para detecção." msgctxt "cutting_mesh description" msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." @@ -2010,6 +2010,8 @@ msgid "" "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" "It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" msgstr "" +"Faz a primeira e segunda camadas do modelo se sobreporem na direção Z para compensar pelo filamento perdido no vão de ar. Todos os modelos sobre a primeira camada de modelo serão deslocados pra baixo por essa quantidade.\n" +"Deve ser notado que algumas vezes a segunda camada é impressa abaixo da camada inicial por causa deste ajuste. Este é o comportamento pretendido" msgctxt "meshfix description" msgid "Make the meshes more suited for 3D printing." @@ -2037,7 +2039,7 @@ msgstr "Material" msgctxt "material_brand label" msgid "Material Brand" -msgstr "" +msgstr "Marca do Material" msgctxt "material_guid label" msgid "Material GUID" @@ -2045,7 +2047,7 @@ msgstr "GUID do Material" msgctxt "material_type label" msgid "Material Type" -msgstr "" +msgstr "Tipo do Material" msgctxt "max_extrusion_before_wipe label" msgid "Material Volume Between Wipes" @@ -2325,7 +2327,7 @@ msgstr "Ordem de Passagem a Ferro Monotônica" msgctxt "raft_surface_monotonic label" msgid "Monotonic Raft Top Surface Order" -msgstr "" +msgstr "Ordem do Raft Monotônico da Superfície Superior" msgctxt "roofing_monotonic label" msgid "Monotonic Top Surface Order" @@ -2369,7 +2371,7 @@ msgstr "Normal" msgctxt "prime_tower_mode option normal" msgid "Normal" -msgstr "" +msgstr "Normal" msgctxt "support_structure option normal" msgid "Normal" @@ -2565,7 +2567,7 @@ msgstr "Paredes externas de ilhas diferentes na mesma camada são impressas em s msgctxt "brim_location option outside" msgid "Outside Only" -msgstr "" +msgstr "Fora Somente" msgctxt "inset_direction option outside_in" msgid "Outside To Inside" @@ -2649,7 +2651,7 @@ msgstr "Largura de Extrusão da Torre de Purga" msgctxt "prime_tower_max_bridging_distance label" msgid "Prime Tower Maximum Bridging Distance" -msgstr "" +msgstr "Distância Máxima de Ponte das Torres de Purga" msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" @@ -2669,7 +2671,7 @@ msgstr "Velocidade da Torre de Purga" msgctxt "prime_tower_mode label" msgid "Prime Tower Type" -msgstr "" +msgstr "Tipo da Torre de Purga" msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" @@ -2689,7 +2691,7 @@ msgstr "Jerk da Impressão" msgctxt "ppr label" msgid "Print Process Reporting" -msgstr "" +msgstr "Relatório do Processo de Impressão" msgctxt "print_sequence label" msgid "Print Sequence" @@ -2705,7 +2707,7 @@ msgstr "Imprimir Paredes Finas" msgctxt "brim_location description" msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." -msgstr "" +msgstr "Imprime um brim na parte de fora do modelo, de dentro, ou ambos. Dependendo do modelo, isto ajuda a reduzir a quantidade de brim que você precisa remover depois, ao mesmo tempo em que assegura aderência apropriada na plataforma." msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." @@ -2729,7 +2731,7 @@ msgstr "Imprime partes do modelo que são horizontalmente mais finas que o taman msgctxt "raft_surface_monotonic description" msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." -msgstr "" +msgstr "Imprime os filetes da superfície superior to raft em uma ordem que faz com que se sobreponham a filetes adjacentes na mesma direção. Isso leva um pouco mais de tempo para imprimir, mas faz a superfície parecer mais consistente, algo que também é visível na superfície inferior do modelo." msgctxt "bridge_skin_speed_2 description" msgid "Print speed to use when printing the second bridge skin layer." @@ -2741,11 +2743,11 @@ msgstr "Velocidade de impressão a usar quando imprimir a terceira camada de pon msgctxt "print_temp_anomaly_limit label" msgid "Print temperature Limit" -msgstr "" +msgstr "Limite de temperatura de impressão" msgctxt "print_temp_warn_limit label" msgid "Print temperature Warning" -msgstr "" +msgstr "Aviso de temperatura de impressão" msgctxt "infill_before_walls description" msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." @@ -2793,7 +2795,7 @@ msgstr "Vão Aéreo do Raft" msgctxt "raft_base_margin label" msgid "Raft Base Extra Margin" -msgstr "" +msgstr "Margem Extra da Base de Raft" msgctxt "raft_base_extruder_nr label" msgid "Raft Base Extruder" @@ -2825,7 +2827,7 @@ msgstr "Velocidade de Impressão da Base do Raft" msgctxt "raft_base_smoothing label" msgid "Raft Base Smoothing" -msgstr "" +msgstr "Suavização da Base de Raft" msgctxt "raft_base_thickness label" msgid "Raft Base Thickness" @@ -2845,7 +2847,7 @@ msgstr "Velocidade de Ventoinha no Raft" msgctxt "raft_interface_margin label" msgid "Raft Middle Extra Margin" -msgstr "" +msgstr "Margem Extra do Meio do Raft" msgctxt "raft_interface_extruder_nr label" msgid "Raft Middle Extruder" @@ -2877,7 +2879,7 @@ msgstr "Velocidade de Impressão do Meio do Raft" msgctxt "raft_interface_smoothing label" msgid "Raft Middle Smoothing" -msgstr "" +msgstr "Suavização do Meio do Raft" msgctxt "raft_interface_line_spacing label" msgid "Raft Middle Spacing" @@ -2889,7 +2891,7 @@ msgstr "Espessura do Meio do Raft" msgctxt "raft_interface_wall_count label" msgid "Raft Middle Wall Count" -msgstr "" +msgstr "Contagem de Paredes do Meio do Raft" msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" @@ -2909,7 +2911,7 @@ msgstr "Amaciamento do Raft" msgctxt "raft_surface_margin label" msgid "Raft Top Extra Margin" -msgstr "" +msgstr "Margem Extra do Topo do Raft" msgctxt "raft_surface_extruder_nr label" msgid "Raft Top Extruder" @@ -2945,7 +2947,7 @@ msgstr "Velocidade de Impressão do Topo do Raft" msgctxt "raft_surface_smoothing label" msgid "Raft Top Smoothing" -msgstr "" +msgstr "Suavização do Topo do Raft" msgctxt "raft_surface_line_spacing label" msgid "Raft Top Spacing" @@ -2953,11 +2955,11 @@ msgstr "Espaçamento Superior do Raft" msgctxt "raft_surface_wall_count label" msgid "Raft Top Wall Count" -msgstr "" +msgstr "Contagem de Paredes do Topo do Raft" msgctxt "raft_wall_count label" msgid "Raft Wall Count" -msgstr "" +msgstr "Contagem de Paredes do Raft" msgctxt "z_seam_type option random" msgid "Random" @@ -3013,7 +3015,7 @@ msgstr "Remover Interseções de Malha" msgctxt "raft_base_remove_inside_corners label" msgid "Remove Raft Base Inside Corners" -msgstr "" +msgstr "Remover Cantos Internos da Base do Raft" msgctxt "raft_remove_inside_corners label" msgid "Remove Raft Inside Corners" @@ -3021,11 +3023,11 @@ msgstr "Remover Cantos Internos de Raft" msgctxt "raft_interface_remove_inside_corners label" msgid "Remove Raft Middle Inside Corners" -msgstr "" +msgstr "Remover Cantos Internos do Meio do Raft" msgctxt "raft_surface_remove_inside_corners label" msgid "Remove Raft Top Inside Corners" -msgstr "" +msgstr "Remover Cantos Internos do Topo do Raft" msgctxt "carve_multiple_volumes description" msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." @@ -3037,15 +3039,15 @@ msgstr "Remove camadas vazias entre a primeira camada impressa se estiverem pres msgctxt "raft_base_remove_inside_corners description" msgid "Remove inside corners from the raft base, causing the raft to become convex." -msgstr "" +msgstr "Remove cantos interior da base do raft, fazendo com que o raft se torne convexo." msgctxt "raft_interface_remove_inside_corners description" msgid "Remove inside corners from the raft middle part, causing the raft to become convex." -msgstr "" +msgstr "Remove cantos internos da parte média do raft, fazendo com que o raft se torne convexo." msgctxt "raft_surface_remove_inside_corners description" msgid "Remove inside corners from the raft top part, causing the raft to become convex." -msgstr "" +msgstr "Remove cantos internos da parte superior do raft, fazendo com que o raft se torne convexo." msgctxt "raft_remove_inside_corners description" msgid "Remove inside corners from the raft, causing the raft to become convex." @@ -3069,7 +3071,7 @@ msgstr "Substitui a parte externa do padrão superior/inferir com um número de msgctxt "ppr description" msgid "Reporting events that go out of set thresholds" -msgstr "" +msgstr "Relatar eventos que saem dos limites estabelecidos" msgctxt "support_tree_rest_preference label" msgid "Rest Preference" @@ -3905,7 +3907,7 @@ msgstr "A distância média entre os pontos aleatórios introduzidos em cada seg msgctxt "material_brand description" msgid "The brand of material used." -msgstr "" +msgstr "A marca de material usado." msgctxt "machine_acceleration description" msgid "The default acceleration of print head movement." @@ -4386,7 +4388,7 @@ msgstr "A mudança instantânea máxima de velocidade em uma direção com que o msgctxt "prime_tower_max_bridging_distance description" msgid "The maximum length of the branches which may be printed over the air." -msgstr "" +msgstr "O comprimento máximo dos galhos que serão impressos no ar." msgctxt "machine_max_feedrate_x description" msgid "The maximum speed for the motor of the X-direction." @@ -4502,15 +4504,15 @@ msgstr "O número de contornos a serem impressos em volta do padrão linear na c msgctxt "raft_interface_wall_count description" msgid "The number of contours to print around the linear pattern in the middle layers of the raft." -msgstr "" +msgstr "O número de contornos a imprimir em torno do padrão linear nas camadas intermediárias do raft." msgctxt "raft_surface_wall_count description" msgid "The number of contours to print around the linear pattern in the top layers of the raft." -msgstr "" +msgstr "O número de contornos a imprimir em torno do padrão linear nas camadas superiores do raft." msgctxt "raft_wall_count description" msgid "The number of contours to print around the linear pattern of the raft." -msgstr "" +msgstr "O número de contornos a imprimir em torno do padrão linear do raft." msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." @@ -4905,7 +4907,7 @@ msgstr "O tipo de G-Code a ser gerado." msgctxt "material_type description" msgid "The type of material used." -msgstr "" +msgstr "O tipo de material usado." msgctxt "coasting_volume description" msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." @@ -4958,11 +4960,11 @@ msgstr "Este ajuste controla a distância que o extrusor deve parar de extrudar msgctxt "raft_base_smoothing description" msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgstr "Este ajuste controla quantos cantos internos no contorno da base do raft são arredondados. Cantos agudos são arredondados para um semicírculo com raio igual ao valor dado aqui. Este ajuste também remove furos no contorno do raft que sejam menores que tal círculo." msgctxt "raft_interface_smoothing description" msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgstr "Este ajuste controle quantos cantos internos no contorno do meio do raft são arredondados. Cantos agudos são arredondados para um semicírculo com raio igual ao valor dado aqui. Este ajuste também remove furos no contorno do raft que sejam menores que tal círculo." msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." @@ -4970,7 +4972,7 @@ msgstr "Este ajuste controla quanto os cantos internos do contorno do raft são msgctxt "raft_surface_smoothing description" msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "" +msgstr "Este ajuste controle quantos cantos internos no contorno do topo do raft são arredondados. Cantos agudos são arredondados para um semicírculo com raio igual ao valor dado aqui. Este ajuste também remove furos no contorno do raft que sejam menores que tal círculo." msgctxt "retraction_count_max description" msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." diff --git a/resources/i18n/pt_BR/gradual_flow_settings.def.json.po b/resources/i18n/pt_BR/gradual_flow_settings.def.json.po index 2529ed73e4f..24b118429c2 100644 --- a/resources/i18n/pt_BR/gradual_flow_settings.def.json.po +++ b/resources/i18n/pt_BR/gradual_flow_settings.def.json.po @@ -4,51 +4,52 @@ msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" "POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: 2024-03-11 11:28+0000\n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2024-04-01 22:35+0200\n" +"Last-Translator: Cláudio Sampaio \n" "Language-Team: none\n" -"Language: en\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 3.4.2\n" msgctxt "gradual_flow_discretisation_step_size description" msgid "Duration of each step in the gradual flow change" -msgstr "" +msgstr "Duração de cada passo na mudança gradual de fluxo" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "" +msgstr "Habilita mudanças graduais de fluxo. Quando habilitado, o fluxo é gradualmente aumentado ou diminuído ao fluxo-alvo. Isto é útil para impressoras com tubo bowden em que o fluxo não é imediatamente alterado quando o motor de extrusor para ou inicia." msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "" +msgstr "Para cada movimento de percurso menor que este valor, o fluxo de material é resetado para o fluxo-alvo dos caminhos" msgctxt "gradual_flow_discretisation_step_size label" msgid "Gradual flow discretisation step size" -msgstr "" +msgstr "Tamanho de passo de discretização gradual de fluxo" msgctxt "gradual_flow_enabled label" msgid "Gradual flow enabled" -msgstr "" +msgstr "Fluxo gradual habilitado" msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" -msgstr "" +msgstr "Aceleração máximo de fluxo gradual" msgctxt "layer_0_max_flow_acceleration label" msgid "Initial layer max flow acceleration" -msgstr "" +msgstr "Aceleração máxima de fluxo da camada inicial" msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" -msgstr "" +msgstr "Aceleração máxima para mudanças de fluxo gradual" msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "" +msgstr "Velocidade mínima para mudanças de fluxo gradual da primeira camada" msgctxt "reset_flow_duration label" msgid "Reset flow duration" -msgstr "" +msgstr "Duração de reset de fluxo" From 03a6d090dbf42e5540cd670cddb8342f0ed685c8 Mon Sep 17 00:00:00 2001 From: MariMakes <40423138+MariMakes@users.noreply.github.com> Date: Tue, 2 Apr 2024 11:40:00 +0200 Subject: [PATCH 759/765] Update Changelog for Stable Release Added the introduced bugfixes to the changelog --- resources/texts/change_log.txt | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/resources/texts/change_log.txt b/resources/texts/change_log.txt index c9ffcab4309..5cbaa2bb2bf 100644 --- a/resources/texts/change_log.txt +++ b/resources/texts/change_log.txt @@ -7,7 +7,7 @@ - Introduced an analyzing tool in the cura engine to better track slicing crashes, and started fixing the biggest reports coming in. - New Primetower option; Sparse, next to the current Bucket, contributed by @wawanbreton - Brim only on the inside setting -- Allowing to define print sequence manually when printing One at a time, contributed by @alexandr-vladimirov (Github) +- Allowing to define print sequence manually when printing One at a time, contributed by @alexandr-vladimirov - Introduced a setting to apply Monotonic ordering to the Raft Top Surface - Introduced a Raft Wall Line Count for the Bottom, Middle and Top of the raft - The play speed of the nozzle in the preview is now closer to the movement of the printhead @@ -43,6 +43,22 @@ - Added an error so LimitXYAccelJerk doesn't run unless Accel Control is enabled in Cura, contributed by @Gregvaliant - Some helpful code cleanup contributed by @dmitrygribenchuk +* Bugs resolved since the Beta Release +- Resolved some crashes when opening project files +- Resolved the biggest crashes coming in via the analyzing tool in the cura engine +- Added links to support pages for Method materials to help find the best material compatibility +- Introduced several visual improvements for the loading Universal Cura Projects window +- Universal Cura Projects will now be opened in the center of the buildplate +- The prime tower no longer primes extruders that are not being used +- Fixed file association for stl, obj, 3mf, gcode, and ufp for MacOS +- MacOS users can use the open menu multiple times in a row again +- The support type is now updated in recommended when it’s changed in custom +- The skirt height is now generated on the innermost skirt instead of the outermost skirt again +- Fixed the skirt distance for dual extrusion printers +- The Brim Only Inside setting will not generate a brim when it’s not defined +- Fixed a bug where the project name would accidentally revert after saving, resolves https://github.com/Ultimaker/Cura/issues/11276 +- Improved handling of a fractional layer with tree support, contributed by @ThomasRahm + * Printer definitions, profiles and materials: - Introduced high-speed profiles for the layer heights <0.15mm for Ultimaker PLA, T-PLA, ABS and PETG. - Updated Initial Layer Speed settings for UltiMaker S3, and UltiMaker S5 From 1a552af45083e5b53f2200380239ea6a6f1e597e Mon Sep 17 00:00:00 2001 From: Mariska <40423138+MariMakes@users.noreply.github.com> Date: Tue, 2 Apr 2024 11:47:13 +0200 Subject: [PATCH 760/765] Two corrections Removed a < Added the mention of Support for the brim inside only --- resources/texts/change_log.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/texts/change_log.txt b/resources/texts/change_log.txt index 5cbaa2bb2bf..cde238ed106 100644 --- a/resources/texts/change_log.txt +++ b/resources/texts/change_log.txt @@ -55,12 +55,12 @@ - The support type is now updated in recommended when it’s changed in custom - The skirt height is now generated on the innermost skirt instead of the outermost skirt again - Fixed the skirt distance for dual extrusion printers -- The Brim Only Inside setting will not generate a brim when it’s not defined +- The Brim Only Inside setting will not generate a brim on support when it’s not defined - Fixed a bug where the project name would accidentally revert after saving, resolves https://github.com/Ultimaker/Cura/issues/11276 - Improved handling of a fractional layer with tree support, contributed by @ThomasRahm * Printer definitions, profiles and materials: -- Introduced high-speed profiles for the layer heights <0.15mm for Ultimaker PLA, T-PLA, ABS and PETG. +- Introduced high-speed profiles for the layer heights smaller than 0.15mm for Ultimaker PLA, T-PLA, ABS and PETG. - Updated Initial Layer Speed settings for UltiMaker S3, and UltiMaker S5 - Updated the Shrinkage Factor for PET CF to improve dimensional accuracy - Renamed UltiMaker PP Transparent to UltiMaker PP Natural From 532dc0825bfbd4aa69ff6a80a1ca5631a013a0bd Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Tue, 2 Apr 2024 13:54:08 +0200 Subject: [PATCH 761/765] Values now shown while saving UCP For all the values even numericals were passed through the translations. so nothing came out for numbers. Now we filter it for enums and then translate it. CURA-11801 --- plugins/3MFWriter/SettingsExportModel.py | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/plugins/3MFWriter/SettingsExportModel.py b/plugins/3MFWriter/SettingsExportModel.py index 0ee8885adaf..906ea967ea6 100644 --- a/plugins/3MFWriter/SettingsExportModel.py +++ b/plugins/3MFWriter/SettingsExportModel.py @@ -125,12 +125,16 @@ def _exportSettings(settings_stack): label = settings_catalog.i18nc(label_msgtxt, label_msgid) value = settings_stack.getProperty(setting_to_export, "value") unit = settings_stack.getProperty(setting_to_export, "unit") - options = settings_stack.getProperty(setting_to_export, "options") - value_msgctxt = f"{str(setting_to_export)} option {str(value)}" - value_msgid = options.get(value, "") - value_name = settings_catalog.i18nc(value_msgctxt, value_msgid) - setting_type = settings_stack.getProperty(setting_to_export, "type") + value_name = str(SettingDefinition.settingValueToString(setting_type, value)) + if unit: + value_name += " " + str(unit) + if setting_type == "enum": + options = settings_stack.getProperty(setting_to_export, "options") + value_msgctxt = f"{str(setting_to_export)} option {str(value)}" + value_msgid = options.get(value, "") + value_name = settings_catalog.i18nc(value_msgctxt, value_msgid) + if setting_type is not None: value = f"{str(SettingDefinition.settingValueToString(setting_type, value))} {unit}" else: From bd5b4c374231938aea9283faee1b5b4cc7294de8 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Tue, 2 Apr 2024 14:10:48 +0200 Subject: [PATCH 762/765] Pin dependancies versions for 5.7.0 --- conandata.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/conandata.yml b/conandata.yml index ecd873dff35..ff48fd90371 100644 --- a/conandata.yml +++ b/conandata.yml @@ -1,11 +1,11 @@ version: "5.7.0-beta.1" requirements: - - "uranium/5.7.0-beta.1" - - "curaengine/5.7.0-beta.1" - - "cura_binary_data/5.7.0-beta.1" - - "fdm_materials/5.7.0-beta.1" + - "uranium/5.7.0" + - "curaengine/5.7.0" + - "cura_binary_data/5.7.0" + - "fdm_materials/5.7.0" - "curaengine_plugin_gradual_flow/0.1.0-beta.3" - - "dulcificum/latest@ultimaker/testing" + - "dulcificum/0.2.0-alpha.0" - "pysavitar/5.3.0" - "pynest2d/5.3.0" - "curaengine_grpc_definitions/0.2.0" From 40742565e7aa47e347b47bd4d879c9c507223c23 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Tue, 2 Apr 2024 14:11:08 +0200 Subject: [PATCH 763/765] Set proper 5.7.0 version --- conandata.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conandata.yml b/conandata.yml index ff48fd90371..00556fcc30f 100644 --- a/conandata.yml +++ b/conandata.yml @@ -1,4 +1,4 @@ -version: "5.7.0-beta.1" +version: "5.7.0" requirements: - "uranium/5.7.0" - "curaengine/5.7.0" From c1e5fe0a42ab0a3837e776776941604bbcde2987 Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Thu, 4 Apr 2024 13:19:32 +0200 Subject: [PATCH 764/765] Update MaterialNode initialization and metadata retrieval Although this is rare scenario.This allows for metadata retrieval from the container directly if one is provided, otherwise metadata is fetched using the container_id from the ContainerRegistry. Updated the MaterialNode creation in the VariantNode class(only one scenario) to pass the container. CURA-11748 --- cura/Machines/MaterialNode.py | 19 +++++++++++++------ cura/Machines/VariantNode.py | 2 +- 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/cura/Machines/MaterialNode.py b/cura/Machines/MaterialNode.py index 179451ff67b..a833ad04706 100644 --- a/cura/Machines/MaterialNode.py +++ b/cura/Machines/MaterialNode.py @@ -21,18 +21,25 @@ class MaterialNode(ContainerNode): Its subcontainers are quality profiles. """ - def __init__(self, container_id: str, variant: "VariantNode") -> None: + def __init__(self, container_id: str, variant: "VariantNode", *, container: ContainerInterface = None) -> None: super().__init__(container_id) self.variant = variant self.qualities = {} # type: Dict[str, QualityNode] # Mapping container IDs to quality profiles. self.materialChanged = Signal() # Triggered when the material is removed or its metadata is updated. container_registry = ContainerRegistry.getInstance() - my_metadata = container_registry.findContainersMetadata(id = container_id)[0] - self.base_file = my_metadata["base_file"] - self.material_type = my_metadata["material"] - self.brand = my_metadata["brand"] - self.guid = my_metadata["GUID"] + + if container is not None: + self.base_file = container.getMetaDataEntry("base_file") + self.material_type = container.getMetaDataEntry("material") + self.brand = container.getMetaDataEntry("brand") + self.guid = container.getMetaDataEntry("GUID") + else: + my_metadata = container_registry.findContainersMetadata(id = container_id)[0] + self.base_file = my_metadata["base_file"] + self.material_type = my_metadata["material"] + self.brand = my_metadata["brand"] + self.guid = my_metadata["GUID"] self._loadAll() container_registry.containerRemoved.connect(self._onRemoved) container_registry.containerMetaDataChanged.connect(self._onMetadataChanged) diff --git a/cura/Machines/VariantNode.py b/cura/Machines/VariantNode.py index 6c3e9359d02..b976841aa75 100644 --- a/cura/Machines/VariantNode.py +++ b/cura/Machines/VariantNode.py @@ -148,7 +148,7 @@ def _materialAdded(self, container: ContainerInterface) -> None: if "empty_material" in self.materials: del self.materials["empty_material"] - self.materials[base_file] = MaterialNode(container.getId(), variant = self) + self.materials[base_file] = MaterialNode(container.getId(), variant = self, container = container) self.materials[base_file].materialChanged.connect(self.materialsChanged) self.materialsChanged.emit(self.materials[base_file]) From 7a5c773e90ae97c7037d19f3077137a4c8aeb1dd Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Fri, 12 Apr 2024 11:08:35 +0200 Subject: [PATCH 765/765] Made printprocess reporting settings not settable per mesh --- resources/definitions/fdmprinter.def.json | 24 +++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 83472631092..6f9b4de7fdc 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -8559,7 +8559,9 @@ "enabled": "ppr_enable", "unit": "%", "type": "float", - "settable_per_extruder": true + "settable_per_extruder": true, + "settable_per_mesh": false, + "settable_per_meshgroup": false }, "flow_anomaly_limit": { @@ -8569,7 +8571,9 @@ "enabled": "ppr_enable", "unit": "%", "type": "float", - "settable_per_extruder": true + "settable_per_extruder": true, + "settable_per_mesh": false, + "settable_per_meshgroup": false }, "print_temp_warn_limit": { @@ -8579,7 +8583,9 @@ "type": "float", "default_value": 3.0, "enabled": "ppr_enable", - "settable_per_extruder": true + "settable_per_extruder": true, + "settable_per_mesh": false, + "settable_per_meshgroup": false }, "print_temp_anomaly_limit": { @@ -8589,7 +8595,9 @@ "type": "float", "default_value": 7.0, "enabled": "ppr_enable", - "settable_per_extruder": true + "settable_per_extruder": true, + "settable_per_mesh": false, + "settable_per_meshgroup": false }, "bv_temp_warn_limit": { @@ -8599,7 +8607,9 @@ "type": "float", "default_value": 7.5, "enabled": "ppr_enable", - "settable_per_extruder": false + "settable_per_extruder": false, + "settable_per_mesh": false, + "settable_per_meshgroup": false }, "bv_temp_anomaly_limit": { @@ -8609,7 +8619,9 @@ "type": "float", "default_value": 10.0, "enabled": "ppr_enable", - "settable_per_extruder": false + "settable_per_extruder": false, + "settable_per_mesh": false, + "settable_per_meshgroup": false } } },